From 6df4cee0c7ee1c7838633d83e6c58c649105af3f Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 4 Aug 2021 18:37:38 +0200 Subject: [PATCH 01/13] Fix Ligue2 2021 teams name --- .../out/InjuredSuspendedMaLigue2Client.java | 22 +- .../out/InjuredSuspendedWrapperClient.java | 2 +- .../InjuredSuspendedMaLigue2ClientTest.java | 47 +- ...joueurs-blesses-et-suspendus.20210804.html | 1092 +++++++++++++++++ 4 files changed, 1154 insertions(+), 9 deletions(-) create mode 100644 src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20210804.html diff --git a/src/main/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2Client.java b/src/main/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2Client.java index dc1e330..b5e062c 100644 --- a/src/main/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2Client.java +++ b/src/main/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2Client.java @@ -1,7 +1,9 @@ package org.blondin.mpg.out; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; +import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.blondin.mpg.AbstractClient; @@ -16,6 +18,15 @@ public class InjuredSuspendedMaLigue2Client extends AbstractClient { + private static final Map TEAM_NAME_WRAPPER = new HashMap<>(); + + static { + /* + * Team name "maligue2 -> MPG" wrapper + */ + TEAM_NAME_WRAPPER.put("QRM", "Quevilly Rouen"); + } + private List cache = null; private InjuredSuspendedMaLigue2Client(Config config) { @@ -28,7 +39,7 @@ public static InjuredSuspendedMaLigue2Client build(Config config) { public static InjuredSuspendedMaLigue2Client build(Config config, String urlOverride) { InjuredSuspendedMaLigue2Client client = new InjuredSuspendedMaLigue2Client(config); - client.setUrl(StringUtils.defaultString(urlOverride, "https://maligue2.fr/2019/08/05/joueurs-blesses-et-suspendus/")); + client.setUrl(StringUtils.defaultString(urlOverride, "https://maligue2.fr/2020/08/20/joueurs-blesses-et-suspendus/")); return client; } @@ -39,6 +50,13 @@ public List getPlayers() { return cache; } + static String getMpgTeamName(String name) { + if (TEAM_NAME_WRAPPER.containsKey(name)) { + return TEAM_NAME_WRAPPER.get(name); + } + return name; + } + public Player getPlayer(String playerName, String teamName) { // For composed lastName (highest priority than firstName composed), we replace space by '-' String lastName = playerName; @@ -87,7 +105,7 @@ private List parsePlayers(String team, Element e, OutType outType) { continue; } Player player = new Player(); - player.setTeam(team); + player.setTeam(getMpgTeamName(team)); player.setOutType(outType); player.setLength(""); player.setDescription(""); diff --git a/src/main/java/org/blondin/mpg/out/InjuredSuspendedWrapperClient.java b/src/main/java/org/blondin/mpg/out/InjuredSuspendedWrapperClient.java index 34b667d..4f1fe47 100644 --- a/src/main/java/org/blondin/mpg/out/InjuredSuspendedWrapperClient.java +++ b/src/main/java/org/blondin/mpg/out/InjuredSuspendedWrapperClient.java @@ -16,7 +16,7 @@ * Wrapper for:
* - https://www.sportsgambler.com/injuries/football
* - (Before February 2021: https://www.sportsgambler.com/football/injuries-suspensions)
- * - https://maligue2.fr/2019/08/05/joueurs-blesses-et-suspendus/
+ * - https://maligue2.fr/2020/08/20/joueurs-blesses-et-suspendus/
* - https://www.equipeactu.fr/blessures-et-suspensions/fodbold/
*/ public class InjuredSuspendedWrapperClient { diff --git a/src/test/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2ClientTest.java b/src/test/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2ClientTest.java index 4ca7066..59dd728 100644 --- a/src/test/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2ClientTest.java +++ b/src/test/java/org/blondin/mpg/out/InjuredSuspendedMaLigue2ClientTest.java @@ -25,7 +25,43 @@ public class InjuredSuspendedMaLigue2ClientTest extends AbstractMockTestClient { @Test - public void testCheckTeamsL2() throws Exception { + public void testCheckTeams2021L2() throws Exception { + List mpgTeams = Arrays.asList("Ajaccio", "Amiens", "Auxerre", "Bastia", "Caen", "Dijon", "Dunkerque", "Grenoble", "Guingamp", + "Le Havre", "Nancy", "Nîmes", "Niort", "Paris FC", "Pau", "Quevilly Rouen", "Rodez", "Sochaux", "Toulouse", "Valenciennes"); + Document doc = Jsoup.parse(FileUtils.readFileToString(new File(TESTFILES_BASE, "maligue2.joueurs-blesses-et-suspendus.20210804.html"), + Charset.forName("UTF-8"))); + List maLigue2Teams = new ArrayList<>(); + for (Element item : doc.select("tr")) { + if (item.selectFirst("th.column-1") != null && "Club".equals(item.selectFirst("th.column-1").text())) { + continue; + } + maLigue2Teams.add(InjuredSuspendedMaLigue2Client.getMpgTeamName(item.selectFirst("td.column-1").text())); + } + for (String mpgTeam : mpgTeams) { + boolean contains = false; + for (String maLigue2Team : maLigue2Teams) { + if (maLigue2Team.contains(mpgTeam)) { + contains = true; + } + } + Assert.assertTrue(mpgTeam, contains); + } + } + + @Test + public void testInjuriesSameName() throws Exception { + InjuredSuspendedMaLigue2Client client = spy(InjuredSuspendedMaLigue2Client.build(null)); + doReturn( + FileUtils.readFileToString(new File(TESTFILES_BASE, "maligue2.joueurs-blesses-et-suspendus.20210804.html"), Charset.forName("UTF-8"))) + .when(client).getHtmlContent(); + + Assert.assertNull("Ba from Niort is NOT injured", client.getPlayer("Ba", "Niort")); + Assert.assertNotNull("Ba from Dunkerque is injured", client.getPlayer("Ba", "Dunkerque")); + Assert.assertNotNull("Ba from Guingamp is injured", client.getPlayer("Ba", "Guingamp")); + } + + @Test + public void testCheckTeams2019L2() throws Exception { List mpgTeams = Arrays.asList("Ajaccio", "Auxerre", "Caen", "Chambly", "Châteauroux", "Clermont", "Grenoble", "Guingamp", "Le Havre", "Le Mans", "Lens", "Lorient", "Nancy", "Niort", "Orléans", "Paris", "Rodez", "Sochaux", "Troyes", "Valenciennes"); Document doc = Jsoup.parse(FileUtils.readFileToString(new File(TESTFILES_BASE, "maligue2.joueurs-blesses-et-suspendus.20190823.html"), @@ -64,7 +100,6 @@ public void testLocalMapping() throws Exception { @Test public void testFrenchAccent() throws Exception { - InjuredSuspendedMaLigue2Client client = spy(InjuredSuspendedMaLigue2Client.build(null)); doReturn( FileUtils.readFileToString(new File(TESTFILES_BASE, "maligue2.joueurs-blesses-et-suspendus.20201006.html"), Charset.forName("UTF-8"))) @@ -103,15 +138,15 @@ public void testSomeInjuries() throws Exception { @Test public void testMock() throws Exception { - stubFor(get("/2019/08/05/joueurs-blesses-et-suspendus/").willReturn( + stubFor(get("/2020/08/20/joueurs-blesses-et-suspendus/").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("maligue2.joueurs-blesses-et-suspendus.20190818.html"))); InjuredSuspendedMaLigue2Client injuredSuspendedClient = InjuredSuspendedMaLigue2Client.build(getConfig(), - "http://localhost:" + getServer().port() + "/2019/08/05/joueurs-blesses-et-suspendus/"); + "http://localhost:" + getServer().port() + "/2020/08/20/joueurs-blesses-et-suspendus/"); // Remove cache File tmpFile = InjuredSuspendedMaLigue2Client - .getCacheFile("http://localhost:" + getServer().port() + "/2019/08/05/joueurs-blesses-et-suspendus/", ""); + .getCacheFile("http://localhost:" + getServer().port() + "/2020/08/20/joueurs-blesses-et-suspendus/", ""); tmpFile.delete(); Assert.assertFalse(tmpFile.exists()); @@ -123,7 +158,7 @@ public void testMock() throws Exception { Assert.assertTrue(tmpFile.exists()); long cacheDate = tmpFile.lastModified(); injuredSuspendedClient = InjuredSuspendedMaLigue2Client.build(getConfig(), - "http://localhost:" + getServer().port() + "/2019/08/05/joueurs-blesses-et-suspendus/"); + "http://localhost:" + getServer().port() + "/2020/08/20/joueurs-blesses-et-suspendus/"); injuredSuspendedClient.getPlayers(); Assert.assertEquals(cacheDate, tmpFile.lastModified()); } diff --git a/src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20210804.html b/src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20210804.html new file mode 100644 index 0000000..238324a --- /dev/null +++ b/src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20210804.html @@ -0,0 +1,1092 @@ + + + + + + + + + + + + + + + + + + + + + + + + + Ligue 2 - Les joueurs blessés et suspendus - MaLigue2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Téléchargez notre application Ligue 2 +
+ + + + +
+
+ + + + + +
+
+
+ + +
+
+
+
+ +
+ +
+ + +
+ + +
+
+
+
+
+
+
+
+
+

Ligue 2 – Les joueurs blessés et suspendus

+ +
Championnat
+ +
+
+ + +
+
+ +
+
+ +
+
+ +
+ +
+

Retrouvez l’ensemble des joueurs blessés et suspendus durant toute la saison de Ligue 2. La page référence des joueurs de Ligue 2 blessés et suspendus pour composer ton équipe MPG les jours de matchs ! Plus aucune excuse si tu alignes des Rotaldo dans ton onze de départ…

+

Cette page est mise à jour chaque semaine, suite à l’annonce des groupes retenus pour la prochaine rencontre, mais aussi après les décisions de la commission de discipline ou encore les blessures potentielles à l’entraînement.

+

Certains clubs ne communiquant pas toujours sur les blessures médicales de leurs joueurs, nous avons ajouté une colonne Absent(s). Elle regroupe les joueurs non convoqués pour le prochain match de Ligue 2. Nous nous basons sur les joueurs sous contrat professionnel ou ayant déjà joué en Ligue 2 avec leur formation.

+

Dernière mise à jour le samedi 31 juillet à 07h45.
+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClubSuspendu(s)Blessé(s)Absent(s)
AC AjaccioCoutadeur
+Bayala
Diallo (JO)
+
Amiens SCOpoku
+Sangaré
+Lomotey
+Zungu
AJ AuxerreCamara
+Lloris
+Dugimont (?)
SC Bastia
SM CaenVandermersch
+Nsona
+Zady Sery
Gioacchini (Gold Cup)
+
Dijon FCOTraoré (J3)Le Bihan
+Marié
+Younoussa
+Touré
+Celina
+Arli
+Panzo
USL DunkerqueBa
+Bruneel
+Rocheteau
+Ketkeophomphone
+Kabamba
Grenoble FootDiallo
+Pérez
+Straalman
+Henen
EA GuingampBa
+Sivis
+Eboa Eboa
+Gaudin
+Pierrot
+Camara
Le Havre ACBen Mohamed
+Fontaine
+Gorgelin
+Mayembo
+Bentil
+Mahmoud
AS Nancy LorraineEl Kaoutari
+Ciss
+Basila
Nîmes Oly.Briançon
+Philibert
+Eliasson
Chamois NiortaisYongwa (J3)Michel
+Sissoko
+Paro
+Mendès
+Passi
+Bena
Paris FCNdiaye
+Bamba
+Belaud
+Caddy
+Demoncy
+Filipovic
+Kanté
+Bernauer
+Campanini
+Gambor
Pau FCKouassi (J3)Ndiaye
QRM
Rodez AFLeborgne (J3)Buni Jorge
FC Sochaux-MontbéliardKitala
+Ambri
+Viltard
Toulouse FCAdli (J3)Diakité
+Serber
+Pettersson
Valenciennes FCVandenabeele
+Chevalier
+Diliberto
+Linguet
+Spano-Rahou
+ +
+ +
+ +
+
+
+ +
+ +
+

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+ +

+

+ +

+ +
+ +
+ + + +
+ +
+ + +
+
+ +
+
+
+
+ +
+
+
+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +Activer les notifications
+ + \ No newline at end of file From a663e55de5e6349c402fc60f07b2819fbdd6f44e Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 4 Aug 2021 18:46:14 +0200 Subject: [PATCH 02/13] Validate client stats --- .../java/org/blondin/mpg/stats/MpgStatsClientTest.java | 9 +++++++++ src/test/resources/__files/mlnstats.builds.20210804.json | 1 + .../resources/__files/mlnstats.ligue-2.20210804.json | 1 + 3 files changed, 11 insertions(+) create mode 100644 src/test/resources/__files/mlnstats.builds.20210804.json create mode 100644 src/test/resources/__files/mlnstats.ligue-2.20210804.json diff --git a/src/test/java/org/blondin/mpg/stats/MpgStatsClientTest.java b/src/test/java/org/blondin/mpg/stats/MpgStatsClientTest.java index c7df553..b176e3c 100644 --- a/src/test/java/org/blondin/mpg/stats/MpgStatsClientTest.java +++ b/src/test/java/org/blondin/mpg/stats/MpgStatsClientTest.java @@ -18,6 +18,15 @@ public class MpgStatsClientTest extends AbstractMockTestClient { + @Test + public void testPlayersWithSameName() { + stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20210804.json"))); + stubFor(get("/leagues/Ligue-2") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.ligue-2.20210804.json"))); + MpgStatsClient mpgStatsClient = MpgStatsClient.build(getConfig(), "http://localhost:" + getServer().port()); + Assert.assertEquals(25, mpgStatsClient.getStats(ChampionshipStatsType.LIGUE_2).getPlayer("Ba Pape Ibnou").getPrice()); + } + @Test public void testEfficiencyRecentFocus() { stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.leagues.20190406.json"))); diff --git a/src/test/resources/__files/mlnstats.builds.20210804.json b/src/test/resources/__files/mlnstats.builds.20210804.json new file mode 100644 index 0000000..b5e7938 --- /dev/null +++ b/src/test/resources/__files/mlnstats.builds.20210804.json @@ -0,0 +1 @@ +{"1":"2021-08-02T05:15:44.239Z","2":"2021-08-01T08:49:59.641Z","3":"2021-07-28T05:27:18.459Z","4":"2021-08-04T05:30:24.470Z","5":"2021-07-28T05:27:48.010Z"} diff --git a/src/test/resources/__files/mlnstats.ligue-2.20210804.json b/src/test/resources/__files/mlnstats.ligue-2.20210804.json new file mode 100644 index 0000000..a322cb1 --- /dev/null +++ b/src/test/resources/__files/mlnstats.ligue-2.20210804.json @@ -0,0 +1 @@ +{"bD":"2021-08-04T05:30:24.470Z","mL":{"i":4,"n":"Ligue 2","cN":"Ligue-2","aS":{"i":20,"n":"Ligue 2 2021-2022","cN":"Ligue-2-2021-2022","mD":38,"cD":{"d":2,"lD":1,"p":1}},"lS":{"i":15,"n":"Ligue 2 2020-2021","cN":"Ligue-2-2020-2021","mD":38}},"le":[[4,"Ligue-2"],[1,"Ligue-1"],[3,"Liga"]],"p":[[348,{"n":"Leroy","f":"Benjamin","fp":"G","r":12,"c":88,"s":{"s":11,"n":2,"a":5.5,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":185,"On":36,"Oa":5.14,"Od":1.27,"Om":3201,"Oam":89,"Odm":6,"pg":36},"p":[[2,{"n":5.5,"q":null,"m":90,"e":10571}],[1,{"n":5.5,"q":null,"m":90,"e":10935}],[-38,{"n":6,"q":null,"m":90,"e":6209}],[-37,{"n":4,"q":null,"m":90,"e":6218}],[-36,{"n":5.5,"q":null,"m":90,"e":6236}],[-35,{"n":4,"q":null,"m":90,"e":6238}],[-34,{"n":4,"q":null,"m":90,"e":6254}],[-33,{"n":6,"q":null,"m":90,"e":6258}],[-32,{"n":5.5,"q":null,"m":90,"e":6271}],[-31,{"n":6.5,"q":null,"m":90,"e":6278}],[-30,{"n":4,"q":null,"m":90,"e":6289}],[-29,{"n":4.5,"q":null,"m":90,"e":6298}],[-28,{"n":6.5,"q":null,"m":90,"e":6308}],[-27,{"n":5.5,"q":null,"m":90,"e":6327}],[-26,{"n":5.5,"q":null,"m":90,"e":6328}],[-25,{"n":2.5,"q":null,"m":90,"e":6346}],[-21,{"n":2.5,"q":null,"m":51,"e":6381}],[-20,{"n":8,"q":null,"m":90,"e":6388}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-18,{"n":5,"q":null,"m":90,"e":6411}],[-17,{"n":5.5,"q":null,"m":90,"e":6418}],[-16,{"n":6,"q":null,"m":90,"e":6428}],[-15,{"n":4,"q":null,"m":90,"e":6443}],[-14,{"n":6.5,"q":null,"m":90,"e":6457}],[-13,{"n":4,"q":null,"m":90,"e":6467}],[-12,{"n":6,"q":null,"m":90,"e":6468}],[-11,{"n":5,"q":null,"m":90,"e":6481}],[-10,{"n":7,"q":null,"m":90,"e":6494}],[-9,{"n":3.5,"q":null,"m":90,"e":6498}],[-8,{"n":7,"q":null,"m":90,"e":6511}],[-7,{"n":5,"q":null,"m":90,"e":6518}],[-6,{"n":3,"q":null,"m":90,"e":6528}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[-5,{"n":5,"q":null,"m":90,"e":6538}],[-2,{"n":5.5,"q":null,"m":90,"e":6568}],[-1,{"n":4,"q":null,"m":90,"e":6579}]]}],[577,{"n":"Marchetti","f":"Vincent","fp":"MD","r":12,"c":88,"s":{"s":11,"n":2,"a":5.5,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":134.5,"On":26,"Oa":5.17,"Od":0.87,"Om":1535,"Oam":59,"Odm":37,"pm":25,"pa":1},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6209}],[-37,{"n":6,"q":null,"m":90,"e":6218}],[-36,{"n":5,"q":null,"m":90,"e":6236}],[-35,{"n":7,"q":null,"m":79,"e":6238}],[-34,{"n":4,"q":null,"m":90,"e":6254}],[-33,{"n":5.5,"q":null,"m":90,"e":6258}],[-32,{"n":5.5,"q":null,"m":90,"e":6271}],[-31,{"n":6.5,"q":null,"m":90,"e":6278}],[-30,{"n":5,"q":null,"m":5,"e":6289,"s":1}],[-29,{"n":4.5,"q":null,"m":14,"e":6298,"s":1}],[-27,{"n":4.5,"q":null,"m":9,"e":6327,"s":1}],[-25,{"n":4.5,"q":null,"m":7,"e":6346,"s":1}],[-20,{"n":5,"q":null,"m":6,"e":6388,"s":1}],[-19,{"n":5,"q":null,"m":65,"e":6406}],[-18,{"n":5,"q":null,"m":12,"e":6411,"s":1}],[-17,{"n":4.5,"q":null,"m":90,"e":6418}],[-16,{"n":6.5,"q":null,"m":90,"e":6428}],[-14,{"n":5,"q":null,"m":14,"e":6457,"s":1}],[-13,{"n":4.5,"q":null,"m":67,"e":6467}],[-12,{"n":4.5,"q":null,"m":19,"e":6468,"s":1}],[-11,{"n":5,"q":null,"m":7,"e":6481,"s":1}],[-9,{"n":3.5,"q":null,"m":90,"e":6498}],[-8,{"n":7,"q":null,"m":76,"e":6511}],[-7,{"n":4.5,"q":null,"m":75,"e":6518}],[2,{"n":5.5,"q":null,"m":90,"e":10571}],[1,{"n":5.5,"q":null,"m":90,"e":10935}]],"fo":[[6236,[{"t":"Y"}]],[6258,[{"t":"Y"}]],[6271,[{"t":"Y"}]]]}],[1220,{"n":"Gonzalez","f":"Oumar","fp":"DC","r":9,"c":88,"s":{"s":6,"n":1,"a":6,"m":85,"am":85,"Og":1,"Os":96.5,"On":20,"Oa":4.83,"Od":0.94,"Om":1635,"Oam":82,"Odm":22,"pd":20,"Omsn":5},"p":[[-38,{"n":4,"q":null,"m":90,"e":6215}],[-37,{"n":6,"q":null,"m":90,"e":6221}],[-36,{"n":6,"q":null,"m":90,"e":6232}],[-35,{"n":5,"q":null,"m":90,"e":6240}],[-34,{"n":4,"q":null,"m":90,"e":6252}],[-33,{"n":6,"q":null,"m":90,"e":6260}],[-21,{"n":4,"q":null,"m":90,"e":6382}],[-19,{"n":4.5,"q":null,"m":90,"e":6407}],[-18,{"n":4,"q":null,"m":90,"e":6405}],[-17,{"n":5,"q":null,"m":90,"e":6424,"g":1}],[-16,{"n":6,"q":null,"m":90,"e":6429}],[-15,{"n":4.5,"q":null,"m":90,"e":6438}],[-14,{"n":5,"q":null,"m":2,"e":6450,"s":1}],[-11,{"n":6,"q":null,"m":90,"e":6479}],[-10,{"n":5,"q":null,"m":90,"e":6497}],[-9,{"n":4.5,"q":null,"m":90,"e":6499}],[-8,{"n":3,"q":null,"m":90,"e":6508}],[-7,{"n":3.5,"q":null,"m":45,"e":6520}],[-12,{"n":4.5,"q":null,"m":63,"e":6468}],[2,{"n":6,"q":null,"m":85,"e":10571}]],"fo":[[6232,[{"t":"Y"}]],[6240,[{"t":"Y"}]],[10571,[{"t":"Y"}]]]}],[2638,{"n":"Vidal","f":"Clement","fp":"DC","r":10,"c":88,"s":{"s":3.5,"n":1,"a":3.5,"m":38,"am":38,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":38,"Sam":38,"Os":12.5,"On":3,"Oa":4.17,"Od":0.58,"Om":124,"Oam":41,"Odm":32,"pd":3},"p":[[-35,{"n":4.5,"q":null,"m":75,"e":5865}],[-34,{"n":4.5,"q":null,"m":11,"e":5873,"s":1}],[1,{"n":3.5,"q":null,"m":38,"e":10935}]]}],[2779,{"n":"Chabrolle","f":"Florian","fp":"MO","r":1,"c":88,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"Om":33,"Oam":17,"Odm":22,"pm":2},"p":[[-38,{"n":5,"q":null,"m":1,"e":6209,"s":1}],[-25,{"n":4.5,"q":null,"m":32,"e":6346,"s":1}]]}],[4834,{"n":"Huard","f":"Matthieu","fp":"DL","r":9,"c":88,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":117.5,"On":25,"Oa":4.7,"Od":0.74,"Om":1652,"Oam":66,"Odm":34,"pd":25},"p":[[-24,{"n":5,"q":null,"m":7,"e":6348,"s":1}],[-23,{"n":4.5,"q":null,"m":90,"e":6367}],[-38,{"n":5.5,"q":null,"m":90,"e":6209}],[-36,{"n":5,"q":null,"m":14,"e":6236,"s":1}],[-35,{"n":4.5,"q":null,"m":11,"e":6238,"s":1}],[-34,{"n":4.5,"q":null,"m":90,"e":6254}],[-31,{"n":5,"q":null,"m":16,"e":6278,"s":1}],[-30,{"n":4,"q":null,"m":90,"e":6289}],[-28,{"n":5.5,"q":null,"m":30,"e":6308,"s":1}],[-26,{"n":5,"q":null,"m":12,"e":6328,"s":1}],[-25,{"n":3,"q":null,"m":90,"e":6346}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-12,{"n":5.5,"q":null,"m":90,"e":6468}],[-11,{"n":4,"q":null,"m":90,"e":6481}],[-10,{"n":5,"q":null,"m":29,"e":6494,"s":1}],[-9,{"n":3,"q":null,"m":90,"e":6498}],[-8,{"n":5.5,"q":null,"m":90,"e":6511}],[-7,{"n":4.5,"q":null,"m":90,"e":6518}],[-6,{"n":4,"q":null,"m":90,"e":6528}],[-5,{"n":4,"q":null,"m":62,"e":6538}],[-3,{"n":5.5,"q":null,"m":32,"e":6558,"s":1}],[-2,{"n":5,"q":null,"m":89,"e":6568}],[2,{"n":5.5,"q":null,"m":90,"e":10571}],[-1,{"n":4.5,"q":null,"m":90,"e":6579}],[1,{"n":4.5,"q":null,"m":90,"e":10935}]],"fo":[[6278,[{"t":"Y"}]]]}],[4878,{"n":"El Idrissy","f":"Mounaim","fp":"A","r":7,"c":88,"s":{"s":4.5,"n":1,"a":4.5,"m":1,"am":1,"Og":1,"Os":120.5,"On":26,"Oa":4.63,"Od":0.73,"Om":1241,"Oam":48,"Odm":28,"pm":7,"pa":19,"Omsn":6},"p":[[-22,{"n":4.5,"q":null,"m":70,"e":6368}],[-4,{"n":4,"q":null,"m":26,"e":6552,"s":1}],[-34,{"n":3.5,"q":null,"m":67,"e":6254}],[-33,{"n":4.5,"q":null,"m":3,"e":6258,"s":1}],[-31,{"n":6,"q":null,"m":83,"e":6278}],[-29,{"n":4,"q":null,"m":59,"e":6298}],[-28,{"n":5.5,"q":null,"m":84,"e":6308}],[-26,{"n":4.5,"q":null,"m":59,"e":6328}],[-25,{"n":4.5,"q":null,"m":22,"e":6346,"s":1}],[-24,{"n":3.5,"q":null,"m":61,"e":6348}],[-23,{"n":4.5,"q":null,"m":9,"e":6367,"s":1}],[-21,{"n":4.5,"q":null,"m":45,"e":6381,"s":1}],[-20,{"n":5,"q":null,"m":74,"e":6388}],[-18,{"n":6,"q":null,"m":78,"e":6411,"g":1}],[-17,{"n":4.5,"q":null,"m":10,"e":6418,"s":1}],[-16,{"n":6,"q":null,"m":67,"e":6428}],[-15,{"n":4.5,"q":null,"m":16,"e":6443,"s":1}],[-14,{"n":4.5,"q":null,"m":14,"e":6457,"s":1}],[-12,{"n":4,"q":null,"m":18,"e":6468,"s":1}],[-9,{"n":4,"q":null,"m":63,"e":6498}],[-8,{"n":6,"q":null,"m":71,"e":6511}],[-7,{"n":4,"q":null,"m":90,"e":6518}],[-6,{"n":4.5,"q":null,"m":31,"e":6528,"s":1}],[-5,{"n":5,"q":null,"m":62,"e":6538}],[-3,{"n":4.5,"q":null,"m":58,"e":6558}],[2,{"n":4.5,"q":null,"m":1,"e":10571,"s":1}]],"fo":[[6308,[{"t":"Y"}]]]}],[4960,{"n":"Moussiti-Oko","f":"Bevic","fp":"A","r":15,"c":88,"s":{"g":1,"s":13,"n":2,"a":6.5,"d":0.71,"m":171,"am":86,"dm":6,"Ss":6,"Sn":1,"Sa":6,"Sm":81,"Sam":81,"Og":9,"Os":183,"On":36,"Oa":5.08,"Od":1.2,"Om":2517,"Oam":70,"Odm":25,"pm":4,"pa":32,"Smsn":7,"Omsn":5},"p":[[-38,{"n":4.5,"q":null,"m":75,"e":6209}],[-37,{"n":6,"q":null,"m":90,"e":6218,"g":1}],[-35,{"n":5,"q":null,"m":61,"e":6238,"g":1}],[-34,{"n":4,"q":null,"m":61,"e":6254,"s":1}],[-33,{"n":5.5,"q":null,"m":81,"e":6258}],[-32,{"n":5,"q":null,"m":72,"e":6271}],[-31,{"n":7.5,"q":null,"m":89,"e":6278,"g":1}],[-30,{"n":4.5,"q":null,"m":29,"e":6289,"s":1}],[-29,{"n":3.5,"q":null,"m":68,"e":6298}],[-28,{"n":5,"q":null,"m":80,"e":6308}],[-27,{"n":5.5,"q":null,"m":90,"e":6327}],[-26,{"n":4,"q":null,"m":78,"e":6328}],[-23,{"n":4.5,"q":null,"m":9,"e":6367,"s":1}],[-22,{"n":5.5,"q":null,"m":90,"e":6368}],[-21,{"n":3.5,"q":null,"m":90,"e":6381}],[-20,{"n":7,"q":null,"m":84,"e":6388,"g":1}],[-19,{"n":6,"q":null,"m":90,"e":6406,"g":1}],[-18,{"n":8,"q":null,"m":84,"e":6411,"g":1}],[-17,{"n":4,"q":null,"m":80,"e":6418}],[-16,{"n":6.5,"q":null,"m":90,"e":6428,"g":1}],[-15,{"n":4,"q":null,"m":81,"e":6443}],[-14,{"n":4.5,"q":null,"m":76,"e":6457}],[-13,{"n":5,"q":null,"m":84,"e":6467}],[-12,{"n":4,"q":null,"m":72,"e":6468}],[-11,{"n":7,"q":null,"m":79,"e":6481,"g":1}],[-10,{"n":5,"q":null,"m":87,"e":6494}],[-9,{"n":4.5,"q":null,"m":27,"e":6498,"s":1}],[-8,{"n":6,"q":null,"m":3,"e":6511,"s":1}],[-7,{"n":5,"q":null,"m":15,"e":6518,"s":1}],[-6,{"n":4,"q":null,"m":59,"e":6528}],[-5,{"n":4,"q":null,"m":28,"e":6538,"s":1}],[-4,{"n":3.5,"q":null,"m":64,"e":6552}],[-2,{"n":4.5,"q":null,"m":90,"e":6568}],[2,{"n":7,"q":null,"m":90,"e":10571,"g":1}],[-1,{"n":4,"q":null,"m":90,"e":6579}],[1,{"n":6,"q":null,"m":81,"e":10935}]],"fo":[[6238,[{"t":"Y"},{"t":"O"}]],[6278,[{"t":"Y"}]]]}],[4993,{"n":"Bayala","f":"Cyrille","fp":"MO","r":14,"c":88,"s":{"s":5,"n":1,"a":5,"m":52,"am":52,"Ss":5,"Sn":1,"Sa":5,"Sm":52,"Sam":52,"Og":1,"Os":73.5,"On":14,"Oa":5.25,"Od":0.78,"Om":1055,"Oam":75,"Odm":19,"pm":13,"pa":1,"Omsn":6},"p":[[-37,{"n":6.5,"q":null,"m":61,"e":6218}],[-34,{"n":5,"q":null,"m":29,"e":6254}],[-33,{"n":6,"q":null,"m":90,"e":6258}],[-32,{"n":5.5,"q":null,"m":72,"e":6271}],[-30,{"n":5,"q":null,"m":61,"e":6289}],[-29,{"n":4,"q":null,"m":90,"e":6298}],[-28,{"n":5,"q":null,"m":90,"e":6308}],[-27,{"n":5,"q":null,"m":90,"e":6327}],[-26,{"n":4.5,"q":null,"m":90,"e":6328}],[-25,{"n":4,"q":null,"m":90,"e":6346}],[-24,{"n":6,"q":null,"m":90,"e":6348}],[-23,{"n":6,"q":null,"m":72,"e":6367}],[-22,{"n":6,"q":null,"m":78,"e":6368,"g":1}],[1,{"n":5,"q":null,"m":52,"e":10935}]],"fo":[[6218,[{"t":"I"}]],[6254,[{"t":"I"}]],[6298,[{"t":"Y"}]],[6308,[{"t":"Y"}]],[6348,[{"t":"Y"}]]]}],[5039,{"n":"Laci","f":"Qazim","fp":"MD","r":21,"c":88,"s":{"g":2,"s":14,"n":2,"a":7,"d":1.41,"m":180,"am":90,"Sg":2,"Ss":8,"Sn":1,"Sa":8,"Sm":90,"Sam":90,"Og":3,"Os":205.5,"On":38,"Oa":5.41,"Od":0.98,"Om":3081,"Oam":81,"Odm":16,"pm":38,"Smsn":8,"Omsn":7},"p":[[-38,{"n":5.5,"q":null,"m":68,"e":6209}],[-37,{"n":5.5,"q":null,"m":87,"e":6218}],[-36,{"n":5,"q":null,"m":90,"e":6236}],[-35,{"n":5.5,"q":null,"m":79,"e":6238}],[-34,{"n":5.5,"q":null,"m":76,"e":6254}],[-33,{"n":7,"q":null,"m":85,"e":6258,"g":1}],[-32,{"n":6,"q":null,"m":90,"e":6271}],[-31,{"n":6,"q":null,"m":89,"e":6278}],[-30,{"n":6,"q":null,"m":90,"e":6289}],[-29,{"n":4,"q":null,"m":76,"e":6298}],[-27,{"n":6,"q":null,"m":81,"e":6327}],[-26,{"n":4.5,"q":null,"m":78,"e":6328}],[-25,{"n":4,"q":null,"m":83,"e":6346}],[-24,{"n":5.5,"q":null,"m":90,"e":6348}],[-23,{"n":6,"q":null,"m":81,"e":6367}],[-22,{"n":5.5,"q":null,"m":78,"e":6368}],[-21,{"n":4.5,"q":null,"m":90,"e":6381}],[-20,{"n":5.5,"q":null,"m":90,"e":6388}],[-19,{"n":4.5,"q":null,"m":90,"e":6406}],[-18,{"n":8,"q":null,"m":90,"e":6411}],[-17,{"n":5.5,"q":null,"m":90,"e":6418}],[-15,{"n":5,"q":null,"m":90,"e":6443}],[-14,{"n":5,"q":null,"m":76,"e":6457}],[-13,{"n":6,"q":null,"m":90,"e":6467}],[-12,{"n":5,"q":null,"m":71,"e":6468}],[-11,{"n":6.5,"q":null,"m":90,"e":6481}],[-10,{"n":6,"q":null,"m":90,"e":6494}],[-9,{"n":3.5,"q":null,"m":74,"e":6498}],[-8,{"n":6,"q":null,"m":90,"e":6511}],[-7,{"n":5,"q":null,"m":90,"e":6518}],[-6,{"n":4.5,"q":null,"m":45,"e":6528,"s":1}],[-5,{"n":5,"q":null,"m":90,"e":6538}],[-4,{"n":5,"q":null,"m":90,"e":6552}],[-3,{"n":4,"q":null,"m":45,"e":6558}],[-2,{"n":4.5,"q":null,"m":9,"e":6568,"s":1}],[2,{"n":6,"q":null,"m":90,"e":10571}],[-1,{"n":5,"q":null,"m":90,"e":6579}],[1,{"n":8,"q":null,"m":90,"e":10935,"g":2}]],"fo":[[6271,[{"t":"Y"}]],[6289,[{"t":"Y"}]]]}],[5044,{"n":"Coutadeur","f":"Mathieu","fp":"MD","r":17,"c":88,"s":{"Os":159.5,"On":29,"Oa":5.5,"Od":0.86,"Om":2379,"Oam":82,"Odm":22,"pm":29},"p":[[-37,{"n":5,"q":null,"m":14,"e":6218,"s":1}],[-36,{"n":6.5,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":24,"e":6238,"s":1}],[-30,{"n":4.5,"q":null,"m":90,"e":6289}],[-28,{"n":6,"q":null,"m":90,"e":6308}],[-27,{"n":4.5,"q":null,"m":90,"e":6327}],[-26,{"n":6,"q":null,"m":90,"e":6328}],[-25,{"n":4,"q":null,"m":90,"e":6346}],[-24,{"n":7,"q":null,"m":90,"e":6348}],[-23,{"n":7,"q":null,"m":90,"e":6367}],[-22,{"n":7,"q":null,"m":90,"e":6368}],[-21,{"n":4.5,"q":null,"m":79,"e":6381}],[-20,{"n":6,"q":null,"m":90,"e":6388}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-18,{"n":6,"q":null,"m":90,"e":6411}],[-17,{"n":6,"q":null,"m":90,"e":6418}],[-16,{"n":6,"q":null,"m":90,"e":6428}],[-15,{"n":4.5,"q":null,"m":90,"e":6443}],[-14,{"n":6,"q":null,"m":90,"e":6457}],[-13,{"n":5,"q":null,"m":90,"e":6467}],[-12,{"n":5.5,"q":null,"m":90,"e":6468}],[-11,{"n":5,"q":null,"m":83,"e":6481}],[-10,{"n":6,"q":null,"m":90,"e":6494}],[-6,{"n":4.5,"q":null,"m":90,"e":6528}],[-5,{"n":5.5,"q":null,"m":90,"e":6538}],[-4,{"n":4.5,"q":null,"m":90,"e":6552}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[-2,{"n":6,"q":null,"m":90,"e":6568}],[-1,{"n":4.5,"q":null,"m":19,"e":6579,"s":1}]],"fo":[[6238,[{"t":"Y"}]],[6327,[{"t":"Y"}]],[6346,[{"t":"Y"}]]]}],[5086,{"n":"Sollacaro","f":"Francois-Joseph","fp":"G","r":7,"c":88,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":1.24,"Om":396,"Oam":79,"Odm":24,"pg":5},"p":[[-24,{"n":6,"q":null,"m":90,"e":6348}],[-23,{"n":6.5,"q":null,"m":90,"e":6367}],[-22,{"n":4,"q":null,"m":90,"e":6368}],[-21,{"n":4,"q":null,"m":36,"e":6381,"s":1}],[-4,{"n":4,"q":null,"m":90,"e":6552}]]}],[5099,{"n":"Diallo","f":"Ismaël","fp":"DL","r":15,"c":88,"s":{"Og":1,"Os":150.5,"On":31,"Oa":4.85,"Od":1.05,"Om":2701,"Oam":87,"Odm":9,"pd":31,"Omsn":6},"p":[[-37,{"n":4.5,"q":null,"m":90,"e":6218}],[-36,{"n":5.5,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":90,"e":6238}],[-34,{"n":4,"q":null,"m":90,"e":6254}],[-33,{"n":6,"q":null,"m":90,"e":6258}],[-32,{"n":5.5,"q":null,"m":90,"e":6271}],[-31,{"n":6,"q":null,"m":74,"e":6278}],[-30,{"n":5,"q":null,"m":90,"e":6289}],[-29,{"n":5,"q":null,"m":90,"e":6298}],[-28,{"n":6,"q":null,"m":90,"e":6308}],[-27,{"n":5,"q":null,"m":81,"e":6327}],[-26,{"n":3,"q":null,"m":78,"e":6328}],[-24,{"n":5,"q":null,"m":83,"e":6348}],[-23,{"n":5,"q":null,"m":90,"e":6367}],[-22,{"n":5,"q":null,"m":90,"e":6368}],[-21,{"n":3.5,"q":null,"m":90,"e":6381}],[-20,{"n":6,"q":null,"m":90,"e":6388}],[-18,{"n":6,"q":null,"m":90,"e":6411,"g":1}],[-17,{"n":5.5,"q":null,"m":90,"e":6418}],[-16,{"n":6.5,"q":null,"m":90,"e":6428}],[-15,{"n":4,"q":null,"m":90,"e":6443}],[-14,{"n":5,"q":null,"m":90,"e":6457}],[-13,{"n":5,"q":null,"m":90,"e":6467}],[-11,{"n":4,"q":null,"m":90,"e":6481}],[-10,{"n":5,"q":null,"m":90,"e":6494}],[-7,{"n":3.5,"q":null,"m":90,"e":6518}],[-6,{"n":2,"q":null,"m":45,"e":6528}],[-5,{"n":5,"q":null,"m":90,"e":6538}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[-2,{"n":3,"q":null,"m":90,"e":6568}],[-1,{"n":5,"q":null,"m":90,"e":6579}]],"fo":[[6348,[{"t":"I"}]],[6298,[{"t":"Y"}]]]}],[5154,{"n":"N'Diaye","f":"Alassane","fp":"A","r":1,"c":88,"s":{"Os":33,"On":7,"Oa":4.71,"Od":0.39,"Om":234,"Oam":33,"Odm":33,"pm":7},"p":[[-24,{"n":5,"q":null,"m":20,"e":6348,"s":1}],[-22,{"n":5,"q":null,"m":12,"e":6368,"s":1}],[-21,{"n":4.5,"q":null,"m":11,"e":6381,"s":1}],[-17,{"n":5,"q":null,"m":2,"e":6418,"s":1}],[-16,{"n":5,"q":null,"m":32,"e":6428,"s":1}],[-2,{"n":4.5,"q":null,"m":67,"e":6568}],[-1,{"n":4,"q":null,"m":90,"e":6579}]]}],[5170,{"n":"Courtet","f":"Gaëtan","fp":"A","r":21,"c":88,"s":{"g":1,"s":11.5,"n":2,"a":5.75,"d":1.77,"m":132,"am":66,"dm":33,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":43,"Sam":43,"Og":9,"Os":164,"On":34,"Oa":4.82,"Od":1.01,"Om":2066,"Oam":61,"Odm":33,"pa":34,"Smsn":7,"Omsn":5.5},"p":[[-38,{"n":3,"q":null,"m":90,"e":6209}],[-37,{"n":5,"q":null,"m":90,"e":6218}],[-36,{"n":4,"q":null,"m":82,"e":6236}],[-35,{"n":5.5,"q":null,"m":90,"e":6238,"g":1}],[-34,{"n":5,"q":null,"m":76,"e":6254}],[-33,{"n":7,"q":null,"m":90,"e":6258,"g":2}],[-32,{"n":4.5,"q":null,"m":90,"e":6271}],[-31,{"n":7,"q":null,"m":90,"e":6278,"g":1}],[-30,{"n":6,"q":null,"m":90,"e":6289,"g":1}],[-29,{"n":5,"q":null,"m":22,"e":6298,"s":1}],[-28,{"n":4.5,"q":null,"m":10,"e":6308,"s":1}],[-26,{"n":4,"q":null,"m":12,"e":6328,"s":1}],[-25,{"n":3,"q":null,"m":90,"e":6346}],[-24,{"n":4.5,"q":null,"m":29,"e":6348,"s":1}],[-23,{"n":6,"q":null,"m":72,"e":6367,"g":1}],[-22,{"n":4.5,"q":null,"m":4,"e":6368,"s":1}],[-21,{"n":4,"q":null,"m":21,"e":6381,"s":1}],[-20,{"n":5,"q":null,"m":16,"e":6388,"s":1}],[-16,{"n":5,"q":null,"m":23,"e":6428,"s":1}],[-15,{"n":3.5,"q":null,"m":61,"e":6443}],[-14,{"n":5.5,"q":null,"m":33,"e":6457,"g":1,"s":1}],[-13,{"n":4.5,"q":null,"m":6,"e":6467,"s":1}],[-12,{"n":4,"q":null,"m":62,"e":6468}],[-11,{"n":5,"q":null,"m":90,"e":6481}],[-10,{"n":4.5,"q":null,"m":61,"e":6494}],[-9,{"n":3.5,"q":null,"m":90,"e":6498}],[-8,{"n":6,"q":null,"m":87,"e":6511,"g":1}],[-7,{"n":4,"q":null,"m":75,"e":6518}],[-6,{"n":4.5,"q":null,"m":13,"e":6528,"s":1}],[-5,{"n":5,"q":null,"m":89,"e":6538}],[-4,{"n":5,"q":null,"m":90,"e":6552}],[-3,{"n":5,"q":null,"m":90,"e":6558}],[2,{"n":7,"q":null,"m":89,"e":10571,"g":1}],[1,{"n":4.5,"q":null,"m":43,"e":10935}]],"fo":[[10571,[{"t":"I"}]],[6209,[{"t":"Y"}]]]}],[5174,{"n":"Barreto","f":"Michael","fp":"MO","r":26,"c":88,"s":{"s":12,"n":2,"a":6,"m":158,"am":79,"dm":4,"Ss":6,"Sn":1,"Sa":6,"Sm":82,"Sam":82,"Og":5,"Os":214.5,"On":37,"Oa":5.8,"Od":1,"Om":2933,"Oam":79,"Odm":17,"pm":35,"pa":2,"Omsn":7},"p":[[-38,{"n":6,"q":null,"m":68,"e":6209}],[-37,{"n":5,"q":null,"m":76,"e":6218}],[-36,{"n":5,"q":null,"m":45,"e":6236}],[-35,{"n":5,"q":null,"m":90,"e":6238}],[-34,{"n":5,"q":null,"m":90,"e":6254}],[-33,{"n":7,"q":null,"m":87,"e":6258}],[-32,{"n":7,"q":null,"m":90,"e":6271}],[-31,{"n":8,"q":null,"m":89,"e":6278,"g":1}],[-30,{"n":5.5,"q":null,"m":90,"e":6289}],[-29,{"n":4,"q":null,"m":90,"e":6298}],[-28,{"n":5.5,"q":null,"m":90,"e":6308}],[-27,{"n":5,"q":null,"m":90,"e":6327}],[-26,{"n":6,"q":null,"m":31,"e":6328,"s":1}],[-25,{"n":4,"q":null,"m":90,"e":6346}],[-24,{"n":6,"q":null,"m":90,"e":6348}],[-23,{"n":7,"q":null,"m":90,"e":6367,"g":1}],[-22,{"n":7,"q":null,"m":86,"e":6368,"g":1}],[-21,{"n":6,"q":null,"m":54,"e":6381}],[-20,{"n":6,"q":null,"m":27,"e":6388,"s":1}],[-19,{"n":5.5,"q":null,"m":74,"e":6406}],[-18,{"n":6.5,"q":null,"m":71,"e":6411}],[-17,{"n":6,"q":null,"m":72,"e":6418}],[-15,{"n":6,"q":null,"m":90,"e":6443}],[-14,{"n":6,"q":null,"m":90,"e":6457}],[-13,{"n":5.5,"q":null,"m":90,"e":6467}],[-12,{"n":5,"q":null,"m":90,"e":6468}],[-11,{"n":7,"q":null,"m":90,"e":6481}],[-10,{"n":6,"q":null,"m":90,"e":6494}],[-9,{"n":3,"q":null,"m":79,"e":6498}],[-8,{"n":6,"q":null,"m":90,"e":6511}],[-7,{"n":6,"q":null,"m":90,"e":6518}],[-6,{"n":4.5,"q":null,"m":77,"e":6528}],[-5,{"n":7,"q":null,"m":90,"e":6538,"g":1}],[-4,{"n":5.5,"q":null,"m":45,"e":6552,"s":1}],[-3,{"n":7,"q":null,"m":84,"e":6558,"g":1}],[2,{"n":6,"q":null,"m":76,"e":10571}],[1,{"n":6,"q":null,"m":82,"e":10935}]],"fo":[[6218,[{"t":"Y"}]],[6308,[{"t":"Y"}]]]}],[5206,{"n":"Youssouf","f":"Mohamed","fp":"DL","r":13,"c":88,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":163,"On":33,"Oa":4.94,"Od":0.72,"Om":2708,"Oam":82,"Odm":21,"pd":29,"pm":4},"p":[[-38,{"n":5,"q":null,"m":90,"e":6209}],[-37,{"n":5,"q":null,"m":90,"e":6218}],[-36,{"n":5.5,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":90,"e":6238}],[-33,{"n":5,"q":null,"m":90,"e":6258}],[-32,{"n":5,"q":null,"m":90,"e":6271}],[-31,{"n":7,"q":null,"m":90,"e":6278}],[-30,{"n":4.5,"q":null,"m":85,"e":6289}],[-29,{"n":5,"q":null,"m":90,"e":6298}],[-28,{"n":5.5,"q":null,"m":90,"e":6308}],[-27,{"n":5,"q":null,"m":90,"e":6327}],[-26,{"n":5,"q":null,"m":90,"e":6328}],[-25,{"n":3.5,"q":null,"m":90,"e":6346}],[-24,{"n":4,"q":null,"m":90,"e":6348}],[-22,{"n":5,"q":null,"m":90,"e":6368}],[-21,{"n":4,"q":null,"m":79,"e":6381}],[-20,{"n":5.5,"q":null,"m":90,"e":6388}],[-19,{"n":4,"q":null,"m":90,"e":6406}],[-18,{"n":5,"q":null,"m":90,"e":6411}],[-17,{"n":5,"q":null,"m":90,"e":6418}],[-16,{"n":5,"q":null,"m":90,"e":6428}],[-14,{"n":5,"q":null,"m":57,"e":6457}],[-13,{"n":5,"q":null,"m":23,"e":6467,"s":1}],[-12,{"n":5,"q":null,"m":90,"e":6468}],[-11,{"n":5,"q":null,"m":90,"e":6481}],[-10,{"n":5,"q":null,"m":90,"e":6494}],[-8,{"n":6,"q":null,"m":90,"e":6511}],[-6,{"n":3,"q":null,"m":90,"e":6528}],[-5,{"n":5,"q":null,"m":9,"e":6538,"s":1}],[-4,{"n":5,"q":null,"m":25,"e":6552,"s":1}],[-3,{"n":5,"q":null,"m":90,"e":6558}],[2,{"n":6,"q":null,"m":90,"e":10571}],[1,{"n":4.5,"q":null,"m":90,"e":10935}]],"fo":[[6218,[{"t":"Y"}]],[6328,[{"t":"Y"}]],[6348,[{"t":"Y"}]]]}],[5214,{"n":"Avinel","f":"Cédric","fp":"DC","r":10,"c":88,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":166,"On":34,"Oa":4.88,"Od":0.93,"Om":2941,"Oam":87,"Odm":16,"pd":34},"p":[[-38,{"n":5,"q":null,"m":1,"e":6209,"s":1}],[-37,{"n":5,"q":null,"m":90,"e":6218}],[-35,{"n":4.5,"q":null,"m":90,"e":6238}],[-33,{"n":6,"q":null,"m":90,"e":6258}],[-32,{"n":6,"q":null,"m":90,"e":6271}],[-31,{"n":6,"q":null,"m":90,"e":6278}],[-29,{"n":4,"q":null,"m":90,"e":6298}],[-28,{"n":5.5,"q":null,"m":60,"e":6308}],[-27,{"n":4.5,"q":null,"m":90,"e":6327}],[-26,{"n":4,"q":null,"m":90,"e":6328}],[-25,{"n":3.5,"q":null,"m":90,"e":6346}],[-24,{"n":6,"q":null,"m":90,"e":6348}],[-22,{"n":5.5,"q":null,"m":90,"e":6368}],[-21,{"n":3.5,"q":null,"m":90,"e":6381}],[-20,{"n":5.5,"q":null,"m":90,"e":6388}],[-19,{"n":5,"q":null,"m":90,"e":6406}],[-18,{"n":6,"q":null,"m":90,"e":6411}],[-17,{"n":5.5,"q":null,"m":90,"e":6418}],[-15,{"n":4.5,"q":null,"m":90,"e":6443}],[-14,{"n":4.5,"q":null,"m":90,"e":6457}],[-13,{"n":5.5,"q":null,"m":90,"e":6467}],[-12,{"n":5.5,"q":null,"m":90,"e":6468}],[-10,{"n":5.5,"q":null,"m":90,"e":6494}],[-9,{"n":3,"q":null,"m":90,"e":6498}],[-8,{"n":6,"q":null,"m":90,"e":6511}],[-7,{"n":5,"q":null,"m":90,"e":6518}],[-6,{"n":2.5,"q":null,"m":90,"e":6528}],[-5,{"n":4.5,"q":null,"m":90,"e":6538}],[-4,{"n":4,"q":null,"m":90,"e":6552}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[-2,{"n":5,"q":null,"m":90,"e":6568}],[2,{"n":5,"q":null,"m":90,"e":10571}],[-1,{"n":4.5,"q":null,"m":90,"e":6579}],[1,{"n":4,"q":null,"m":90,"e":10935}]],"fo":[[6308,[{"t":"I"}]],[10571,[{"t":"Y"}]]]}],[5979,{"n":"Kalulu","f":"Gédéon","fp":"DL","r":13,"c":88,"s":{"ao":1,"s":9.5,"n":2,"a":4.75,"d":0.35,"m":52,"am":26,"dm":30,"Sao":1,"Ss":5,"Sn":1,"Sa":5,"Sm":47,"Sam":47,"Oao":1,"Os":176.5,"On":36,"Oa":4.9,"Od":0.79,"Om":2991,"Oam":83,"Odm":20,"pd":36},"p":[[-38,{"n":5.5,"q":null,"m":89,"e":6209}],[-37,{"n":5.5,"q":null,"m":90,"e":6218}],[-36,{"n":6,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":90,"e":6238}],[-34,{"n":4.5,"q":null,"m":90,"e":6254}],[-33,{"n":6,"q":null,"m":90,"e":6258}],[-32,{"n":3,"q":null,"m":90,"e":6271}],[-31,{"n":6,"q":null,"m":90,"e":6278}],[-30,{"n":4.5,"q":null,"m":90,"e":6289}],[-29,{"n":5,"q":null,"m":90,"e":6298}],[-28,{"n":5.5,"q":null,"m":90,"e":6308}],[-27,{"n":4.5,"q":null,"m":90,"e":6327}],[-26,{"n":5,"q":null,"m":90,"e":6328}],[-25,{"n":4,"q":null,"m":90,"e":6346}],[-24,{"n":5.5,"q":null,"m":90,"e":6348}],[-23,{"n":5.5,"q":null,"m":90,"e":6367}],[-22,{"n":5,"q":null,"m":90,"e":6368}],[-21,{"n":3.5,"q":null,"m":90,"e":6381}],[-20,{"n":6,"q":null,"m":90,"e":6388}],[-19,{"n":4.5,"q":null,"m":90,"e":6406}],[-18,{"n":6,"q":null,"m":90,"e":6411}],[-17,{"n":4.5,"q":null,"m":90,"e":6418}],[-16,{"n":6,"q":null,"m":90,"e":6428}],[-15,{"n":5,"q":null,"m":90,"e":6443}],[-14,{"n":5,"q":null,"m":90,"e":6457}],[-13,{"n":5,"q":null,"m":90,"e":6467}],[-12,{"n":5.5,"q":null,"m":90,"e":6468}],[-11,{"n":3.5,"q":null,"m":90,"e":6481}],[-9,{"n":3.5,"q":null,"m":90,"e":6498}],[-7,{"n":5,"q":null,"m":89,"e":6518}],[-6,{"n":4,"q":null,"m":45,"e":6528,"s":1}],[-5,{"n":5,"q":null,"m":89,"e":6538}],[-4,{"n":4.5,"q":null,"m":83,"e":6552}],[2,{"n":4.5,"q":null,"m":5,"e":10571,"s":1}],[-1,{"n":4.5,"q":null,"m":24,"e":6579}],[1,{"n":5,"q":null,"m":47,"e":10935,"a":1,"s":1}]],"fo":[[6209,[{"t":"I"}]],[6271,[{"t":"Y"}]],[6327,[{"t":"Y"}]]]}],[6585,{"n":"Obissa","f":"Sidney","fp":"DC","r":1,"c":88}],[6831,{"n":"Cimignani","f":"Yanis","fp":"MO","r":7,"c":88,"s":{"g":1,"s":13,"n":2,"a":6.5,"d":1.41,"m":98,"am":49,"dm":58,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":8,"Sam":8,"Og":1,"Os":42.5,"On":8,"Oa":5.31,"Od":0.96,"Om":352,"Oam":44,"Odm":34,"pm":8,"Smsn":7.5,"Omsn":7.5},"p":[[-38,{"n":5.5,"q":null,"m":89,"e":6209}],[-37,{"n":5,"q":null,"m":29,"e":6218,"s":1}],[-36,{"n":5,"q":null,"m":28,"e":6236,"s":1}],[-4,{"n":4.5,"q":null,"m":45,"e":6552}],[-2,{"n":5,"q":null,"m":1,"e":6568,"s":1}],[2,{"n":7.5,"q":null,"m":90,"e":10571,"g":1}],[-1,{"n":4.5,"q":null,"m":62,"e":6579}],[1,{"n":5.5,"q":null,"m":8,"e":10935,"s":1}]]}],[7203,{"n":"Nouri","f":"Riad","fp":"MO","r":10,"c":88,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":52,"am":26,"dm":17,"Ss":5,"Sn":1,"Sa":5,"Sm":38,"Sam":38,"Og":4,"Os":150.5,"On":29,"Oa":5.19,"Od":1.04,"Om":1801,"Oam":62,"Odm":27,"pm":22,"pa":7,"Omsn":6.5},"p":[[-38,{"n":4.5,"q":null,"m":22,"e":6209,"s":1}],[-36,{"n":4.5,"q":null,"m":45,"e":6236,"s":1}],[-35,{"n":5,"q":null,"m":66,"e":6238}],[-30,{"n":4.5,"q":null,"m":76,"e":6289}],[-29,{"n":4.5,"q":null,"m":31,"e":6298,"s":1}],[-25,{"n":5,"q":null,"m":36,"e":6346}],[-24,{"n":5,"q":null,"m":70,"e":6348}],[-23,{"n":7,"q":null,"m":90,"e":6367}],[-22,{"n":4.5,"q":null,"m":20,"e":6368,"s":1}],[-20,{"n":7,"q":null,"m":90,"e":6388}],[-19,{"n":4.5,"q":null,"m":16,"e":6406,"s":1}],[-18,{"n":7,"q":null,"m":84,"e":6411,"g":1}],[-17,{"n":5,"q":null,"m":88,"e":6418}],[-16,{"n":5,"q":null,"m":58,"e":6428}],[-15,{"n":4,"q":null,"m":74,"e":6443}],[-14,{"n":6,"q":null,"m":86,"e":6457}],[-13,{"n":6,"q":null,"m":90,"e":6467}],[-12,{"n":5,"q":null,"m":72,"e":6468}],[-11,{"n":7,"q":null,"m":90,"e":6481,"g":1}],[-10,{"n":6.5,"q":null,"m":28,"e":6494,"g":1,"s":1}],[-9,{"n":3.5,"q":null,"m":90,"e":6498}],[-8,{"n":7,"q":null,"m":90,"e":6511,"g":1}],[-7,{"n":4,"q":null,"m":63,"e":6518}],[-6,{"n":5,"q":null,"m":45,"e":6528,"s":1}],[-5,{"n":5,"q":null,"m":81,"e":6538}],[-4,{"n":5,"q":null,"m":90,"e":6552}],[-3,{"n":4.5,"q":null,"m":58,"e":6558}],[2,{"n":4,"q":null,"m":14,"e":10571,"s":1}],[1,{"n":5,"q":null,"m":38,"e":10935,"s":1}]],"fo":[[6346,[{"t":"I"}]],[6298,[{"t":"Y"}]]]}],[7764,{"n":"Arconte","f":"Tairyk","fp":"A","r":9,"c":88,"s":{"Og":1,"Os":20.5,"On":4,"Oa":5.13,"Od":0.75,"Om":104,"Oam":26,"Odm":26,"pm":1,"pa":3,"Omsn":6},"p":[[-36,{"n":5.5,"q":null,"m":62,"e":6236}],[-34,{"n":4.5,"q":null,"m":23,"e":6254,"s":1}],[-32,{"n":6,"q":null,"m":18,"e":6271,"g":1,"s":1}],[-31,{"n":4.5,"q":null,"m":1,"e":6278,"s":1}]]}],[7796,{"n":"Botué Kouamé","f":"Jean Fiacre","fp":"MO","r":7,"c":88,"s":{"s":4.5,"n":1,"a":4.5,"m":9,"am":9,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":9,"Sam":9,"Os":29,"On":6,"Oa":4.83,"Od":0.52,"Om":58,"Oam":10,"Odm":4,"pm":1,"pa":5},"p":[[-38,{"n":5.5,"q":null,"m":15,"e":6209,"s":1}],[-37,{"n":4.5,"q":null,"m":3,"e":6218,"s":1}],[-36,{"n":4.5,"q":null,"m":8,"e":6236,"s":1}],[-34,{"n":4.5,"q":null,"m":14,"e":6254,"s":1}],[-33,{"n":5.5,"q":null,"m":9,"e":6258,"s":1}],[1,{"n":4.5,"q":null,"m":9,"e":10935,"s":1}]]}],[7994,{"n":"Quilichini","f":"Ghjuvanni","fp":"G","r":1,"c":88}],[7995,{"n":"Emmanuelli","f":"Theo","fp":"DL","r":2,"c":88}],[263,{"n":"Diakhaby","f":"Adama","fp":"A","r":11,"c":42,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":164,"am":82,"dm":11,"Ss":5,"Sn":1,"Sa":5,"Sm":74,"Sam":74,"Og":1,"Os":67.5,"On":14,"Oa":4.82,"Od":1.01,"Om":1041,"Oam":74,"Odm":17,"pm":4,"pa":10,"Omsn":6},"p":[[1,{"n":5,"q":null,"m":74,"e":10938}],[-38,{"n":4.5,"q":null,"m":81,"e":6211}],[-37,{"n":5.5,"q":null,"m":65,"e":6219}],[-36,{"n":4,"q":null,"m":85,"e":6237}],[-31,{"n":5,"q":null,"m":82,"e":6282}],[-34,{"n":5.5,"q":null,"m":73,"e":6248}],[-29,{"n":3.5,"q":null,"m":76,"e":6300}],[-32,{"n":6,"q":null,"m":86,"e":6268}],[-30,{"n":6,"q":null,"m":83,"e":6288}],[-28,{"n":5.5,"q":null,"m":83,"e":6309}],[-27,{"n":3,"q":null,"m":74,"e":6326}],[-35,{"n":6,"q":null,"m":20,"e":6238,"g":1,"s":1}],[-33,{"n":3.5,"q":null,"m":69,"e":6260}],[2,{"n":4.5,"q":null,"m":90,"e":10571}]],"fo":[[10571,[{"t":"Y"}]]]}],[353,{"n":"Lusamba","f":"Arnaud","fp":"MO","r":15,"c":42,"s":{"s":5,"n":1,"a":5,"m":90,"am":90,"Og":2,"Os":155.5,"On":29,"Oa":5.36,"Od":1,"Om":2457,"Oam":85,"Odm":19,"pm":16,"pa":13,"Omsn":6},"p":[[-26,{"n":5,"q":null,"m":90,"e":6329}],[-25,{"n":5,"q":null,"m":90,"e":6343}],[-24,{"n":5,"q":null,"m":90,"e":6349}],[-23,{"n":5,"q":null,"m":90,"e":6366}],[-22,{"n":5.5,"q":null,"m":90,"e":6369}],[-21,{"n":6.5,"q":null,"m":90,"e":6385}],[-20,{"n":5,"q":null,"m":90,"e":6389}],[-19,{"n":6.5,"q":null,"m":90,"e":6403}],[-18,{"n":6,"q":null,"m":90,"e":6412,"g":1}],[-16,{"n":7.5,"q":null,"m":90,"e":6437}],[-14,{"n":6.5,"q":null,"m":87,"e":6453}],[-12,{"n":4,"q":null,"m":89,"e":6477}],[-11,{"n":5,"q":null,"m":90,"e":6478}],[-10,{"n":5.5,"q":null,"m":90,"e":6488}],[-9,{"n":5.5,"q":null,"m":90,"e":6507}],[-37,{"n":3.5,"q":null,"m":14,"e":6219}],[-36,{"n":3.5,"q":null,"m":90,"e":6237}],[-35,{"n":5,"q":null,"m":20,"e":6238,"s":1}],[-34,{"n":7,"q":null,"m":87,"e":6248,"g":1}],[-33,{"n":5,"q":null,"m":90,"e":6260}],[-32,{"n":5,"q":null,"m":90,"e":6268}],[-31,{"n":5.5,"q":null,"m":90,"e":6282}],[-30,{"n":7,"q":null,"m":90,"e":6288}],[-29,{"n":4.5,"q":null,"m":90,"e":6300}],[-28,{"n":6,"q":null,"m":90,"e":6309}],[-27,{"n":4,"q":null,"m":90,"e":6326}],[-17,{"n":5,"q":null,"m":90,"e":6418}],[-15,{"n":6,"q":null,"m":90,"e":6438}],[2,{"n":5,"q":null,"m":90,"e":10571}]],"fo":[[6219,[{"t":"R"}]],[6248,[{"t":"Y"}]],[6268,[{"t":"Y"}]]]}],[1403,{"n":"Gurtner","f":"Régis","fp":"G","r":19,"c":42,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":177,"On":33,"Oa":5.36,"Od":1.06,"Om":2970,"Oam":90,"pg":33},"p":[[-13,{"n":6.5,"q":null,"m":90,"e":6458}],[-8,{"n":6,"q":null,"m":90,"e":6515}],[-7,{"n":7,"q":null,"m":90,"e":6519}],[-6,{"n":5,"q":null,"m":90,"e":6529}],[-5,{"n":6,"q":null,"m":90,"e":6539}],[-4,{"n":6,"q":null,"m":90,"e":6549}],[-3,{"n":5,"q":null,"m":90,"e":6559}],[-38,{"n":5,"q":null,"m":90,"e":6211}],[-37,{"n":6.5,"q":null,"m":90,"e":6219}],[-32,{"n":7,"q":null,"m":90,"e":6268}],[-30,{"n":5.5,"q":null,"m":90,"e":6288}],[-29,{"n":3,"q":null,"m":90,"e":6300}],[-28,{"n":5,"q":null,"m":90,"e":6309}],[-27,{"n":4,"q":null,"m":90,"e":6326}],[-26,{"n":5,"q":null,"m":90,"e":6329}],[-25,{"n":6,"q":null,"m":90,"e":6343}],[-24,{"n":5.5,"q":null,"m":90,"e":6349}],[-23,{"n":3.5,"q":null,"m":90,"e":6366}],[-22,{"n":6,"q":null,"m":90,"e":6369}],[-21,{"n":3,"q":null,"m":90,"e":6385}],[-20,{"n":6,"q":null,"m":90,"e":6389}],[-19,{"n":6,"q":null,"m":90,"e":6403}],[-18,{"n":4.5,"q":null,"m":90,"e":6412}],[-17,{"n":6,"q":null,"m":90,"e":6418}],[-16,{"n":6,"q":null,"m":90,"e":6437}],[-15,{"n":4.5,"q":null,"m":90,"e":6438}],[-14,{"n":6,"q":null,"m":90,"e":6453}],[-12,{"n":5,"q":null,"m":90,"e":6477}],[-11,{"n":6,"q":null,"m":90,"e":6478}],[-10,{"n":6,"q":null,"m":90,"e":6488}],[-9,{"n":6,"q":null,"m":90,"e":6507}],[2,{"n":3.5,"q":null,"m":90,"e":10571}],[1,{"n":5,"q":null,"m":90,"e":10938}]],"fo":[[6268,[{"t":"Y"}]]]}],[1538,{"n":"Zungu","f":"Bongani","fp":"MO","r":6,"c":42,"s":{"Os":9,"On":2,"Oa":4.5,"Od":0.71,"Om":98,"Oam":49,"Odm":47,"pm":2},"p":[[-6,{"n":4,"q":null,"m":82,"e":6529}],[-5,{"n":5,"q":null,"m":16,"e":6539,"s":1}]]}],[2041,{"n":"Khalid","f":"Driss","fp":"MO","r":2,"c":42,"s":{"Os":7,"On":2,"Oa":3.5,"Od":1.41,"Om":27,"Oam":14,"Odm":13,"pa":2},"p":[[-1,{"n":2.5,"q":null,"m":4,"e":6580,"s":1}],[-4,{"n":4.5,"q":null,"m":23,"e":6549,"s":1}]]}],[2605,{"n":"Alphonse","f":"Mickaël","fp":"DL","r":14,"c":42,"s":{"g":1,"s":9,"n":2,"a":4.5,"d":0.71,"m":180,"am":90,"Sg":1,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":4,"Os":178,"On":36,"Oa":4.94,"Od":0.98,"Om":3149,"Oam":87,"Odm":13,"pd":26,"pm":10,"Smsn":5,"Omsn":5},"p":[[-2,{"n":4.5,"q":null,"m":82,"e":6573}],[-37,{"n":5.5,"q":null,"m":90,"e":6219}],[-36,{"n":3.5,"q":null,"m":90,"e":6237}],[-35,{"n":5,"q":null,"m":12,"e":6238,"s":1}],[-34,{"n":7,"q":null,"m":90,"e":6248,"g":1}],[-33,{"n":3.5,"q":null,"m":90,"e":6260}],[-32,{"n":5,"q":null,"m":90,"e":6268}],[-31,{"n":5,"q":null,"m":90,"e":6282}],[-30,{"n":5,"q":null,"m":90,"e":6288}],[-29,{"n":3.5,"q":null,"m":90,"e":6300}],[-28,{"n":4.5,"q":null,"m":90,"e":6309}],[-27,{"n":3.5,"q":null,"m":90,"e":6326}],[-25,{"n":5.5,"q":null,"m":90,"e":6343}],[-24,{"n":5,"q":null,"m":90,"e":6349}],[-23,{"n":4,"q":null,"m":90,"e":6366}],[-22,{"n":6.5,"q":null,"m":90,"e":6369}],[-21,{"n":3,"q":null,"m":90,"e":6385}],[-20,{"n":5,"q":null,"m":90,"e":6389}],[-19,{"n":6.5,"q":null,"m":90,"e":6403}],[-18,{"n":5.5,"q":null,"m":90,"e":6412,"g":1}],[-17,{"n":5,"q":null,"m":90,"e":6418}],[-16,{"n":7,"q":null,"m":90,"e":6437,"g":1}],[-15,{"n":5,"q":null,"m":90,"e":6438}],[-14,{"n":6,"q":null,"m":90,"e":6453}],[-13,{"n":5.5,"q":null,"m":90,"e":6458}],[-12,{"n":4,"q":null,"m":90,"e":6477}],[-11,{"n":5,"q":null,"m":90,"e":6478}],[-10,{"n":4,"q":null,"m":86,"e":6488}],[-9,{"n":4.5,"q":null,"m":89,"e":6507}],[-8,{"n":6,"q":null,"m":90,"e":6515}],[-7,{"n":5.5,"q":null,"m":90,"e":6519}],[-6,{"n":5,"q":null,"m":90,"e":6529}],[-5,{"n":5,"q":null,"m":90,"e":6539}],[-4,{"n":5,"q":null,"m":90,"e":6549}],[2,{"n":4,"q":null,"m":90,"e":10571}],[1,{"n":5,"q":null,"m":90,"e":10938,"g":1}]],"fo":[[6260,[{"t":"Y"}]],[10938,[{"t":"Y"}]]]}],[2728,{"n":"Gnahore","f":"Eddy","fp":"MO","r":1,"c":42}],[2775,{"n":"Traore","f":"Gaoussou","fp":"MO","r":7,"c":42,"s":{"s":4,"n":1,"a":4,"m":67,"am":67,"Ss":4,"Sn":1,"Sa":4,"Sm":67,"Sam":67,"Os":38.5,"On":8,"Oa":4.81,"Od":0.65,"Om":378,"Oam":47,"Odm":35,"pm":8},"p":[[-20,{"n":5,"q":null,"m":12,"e":6389,"s":1}],[-19,{"n":5,"q":null,"m":26,"e":6403,"s":1}],[-18,{"n":6,"q":null,"m":79,"e":6412,"s":1}],[-14,{"n":5,"q":null,"m":12,"e":6453,"s":1}],[-13,{"n":5,"q":null,"m":10,"e":6458,"s":1}],[-12,{"n":4,"q":null,"m":84,"e":6477}],[-11,{"n":4.5,"q":null,"m":88,"e":6478}],[1,{"n":4,"q":null,"m":67,"e":10938}]]}],[2789,{"n":"Timité","f":"Cheick","fp":"A","r":10,"c":42,"s":{"Og":4,"Os":140,"On":29,"Oa":4.83,"Od":0.88,"Om":1048,"Oam":36,"Odm":27,"pm":22,"pa":7,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":9,"e":6211,"s":1}],[-37,{"n":5.5,"q":null,"m":65,"e":6219}],[-36,{"n":5,"q":null,"m":5,"e":6237,"s":1}],[-35,{"n":6,"q":null,"m":90,"e":6238,"g":1}],[-33,{"n":4,"q":null,"m":60,"e":6260,"s":1}],[-32,{"n":6,"q":null,"m":66,"e":6268,"g":1}],[-31,{"n":4.5,"q":null,"m":58,"e":6282}],[-30,{"n":4.5,"q":null,"m":70,"e":6288}],[-29,{"n":3.5,"q":null,"m":64,"e":6300}],[-28,{"n":4.5,"q":null,"m":7,"e":6309,"s":1}],[-27,{"n":3.5,"q":null,"m":74,"e":6326}],[-26,{"n":5,"q":null,"m":20,"e":6329,"s":1}],[-22,{"n":5,"q":null,"m":5,"e":6369,"s":1}],[-21,{"n":5,"q":null,"m":16,"e":6385,"s":1}],[-20,{"n":5,"q":null,"m":9,"e":6389,"s":1}],[-18,{"n":5,"q":null,"m":11,"e":6412,"s":1}],[-15,{"n":3.5,"q":null,"m":58,"e":6438}],[-14,{"n":5,"q":null,"m":3,"e":6453,"s":1}],[-13,{"n":5.5,"q":null,"m":80,"e":6458}],[-11,{"n":5,"q":null,"m":20,"e":6478,"s":1}],[-10,{"n":7,"q":null,"m":26,"e":6488,"g":1,"s":1}],[-9,{"n":5.5,"q":null,"m":26,"e":6507,"s":1}],[-8,{"n":6,"q":null,"m":19,"e":6515,"g":1,"s":1}],[-7,{"n":4,"q":null,"m":25,"e":6519,"s":1}],[-6,{"n":5,"q":null,"m":19,"e":6529,"s":1}],[-5,{"n":5,"q":null,"m":16,"e":6539,"s":1}],[-3,{"n":3,"q":null,"m":45,"e":6559}],[-2,{"n":4,"q":null,"m":67,"e":6573}],[-1,{"n":5,"q":null,"m":15,"e":6580,"s":1}]],"fo":[[6268,[{"t":"Y"}]]]}],[3515,{"n":"Gomis","f":"Iron","fp":"MD","r":10,"c":42,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":146,"am":73,"dm":1,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":74,"Sam":74,"Og":2,"Os":192.5,"On":37,"Oa":5.2,"Od":0.92,"Om":2761,"Oam":75,"Odm":18,"pm":35,"pa":2,"Omsn":7},"p":[[-38,{"n":6.5,"q":null,"m":90,"e":6211}],[-37,{"n":6.5,"q":null,"m":78,"e":6219}],[-36,{"n":4,"q":null,"m":62,"e":6237}],[-35,{"n":4.5,"q":null,"m":70,"e":6238}],[-34,{"n":6,"q":null,"m":90,"e":6248}],[-33,{"n":4,"q":null,"m":78,"e":6260}],[-32,{"n":5.5,"q":null,"m":45,"e":6268,"s":1}],[-31,{"n":5.5,"q":null,"m":32,"e":6282,"s":1}],[-30,{"n":7,"q":null,"m":89,"e":6288,"g":1}],[-29,{"n":4.5,"q":null,"m":90,"e":6300}],[-28,{"n":5,"q":null,"m":83,"e":6309}],[-27,{"n":4.5,"q":null,"m":16,"e":6326,"s":1}],[-25,{"n":5.5,"q":null,"m":79,"e":6343}],[-24,{"n":5.5,"q":null,"m":65,"e":6349}],[-23,{"n":5,"q":null,"m":29,"e":6366,"s":1}],[-22,{"n":5,"q":null,"m":85,"e":6369}],[-21,{"n":4,"q":null,"m":74,"e":6385}],[-20,{"n":5.5,"q":null,"m":69,"e":6389}],[-19,{"n":5,"q":null,"m":90,"e":6403}],[-18,{"n":4,"q":null,"m":90,"e":6412}],[-17,{"n":6,"q":null,"m":90,"e":6418}],[-16,{"n":7,"q":null,"m":90,"e":6437,"g":1}],[-14,{"n":5.5,"q":null,"m":65,"e":6453}],[-13,{"n":5.5,"q":null,"m":90,"e":6458}],[-11,{"n":3.5,"q":null,"m":77,"e":6478}],[-10,{"n":4.5,"q":null,"m":79,"e":6488}],[-9,{"n":4,"q":null,"m":82,"e":6507}],[-8,{"n":6,"q":null,"m":71,"e":6515}],[-7,{"n":6,"q":null,"m":90,"e":6519}],[-6,{"n":5,"q":null,"m":71,"e":6529}],[-5,{"n":5,"q":null,"m":74,"e":6539}],[-4,{"n":5,"q":null,"m":77,"e":6549}],[-3,{"n":4.5,"q":null,"m":90,"e":6559}],[-2,{"n":5.5,"q":null,"m":75,"e":6573}],[2,{"n":4,"q":null,"m":72,"e":10571}],[-1,{"n":7,"q":null,"m":90,"e":6580}],[1,{"n":5.5,"q":null,"m":74,"e":10938}]],"fo":[[10571,[{"t":"Y"}]]]}],[3759,{"n":"Lahne","f":"Jack","fp":"A","r":6,"c":42,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":85,"am":43,"dm":35,"Ss":4,"Sn":1,"Sa":4,"Sm":67,"Sam":67,"Os":26.5,"On":6,"Oa":4.42,"Od":0.38,"Om":133,"Oam":22,"Odm":23,"pa":6},"p":[[-4,{"n":4.5,"q":null,"m":13,"e":6549,"s":1}],[-3,{"n":4.5,"q":null,"m":22,"e":6559,"s":1}],[-2,{"n":4,"q":null,"m":8,"e":6573,"s":1}],[2,{"n":4.5,"q":null,"m":18,"e":10571,"s":1}],[-1,{"n":5,"q":null,"m":5,"e":6580,"s":1}],[1,{"n":4,"q":null,"m":67,"e":10938}]]}],[5193,{"n":"Thuram-Ulien","f":"Yohann","fp":"G","r":7,"c":42,"s":{"Os":22.5,"On":5,"Oa":4.5,"Od":0.61,"Om":450,"Oam":90,"pg":5},"p":[[-35,{"n":4,"q":null,"m":90,"e":6238}],[-34,{"n":4.5,"q":null,"m":90,"e":6248}],[-33,{"n":4,"q":null,"m":90,"e":6260}],[-2,{"n":4.5,"q":null,"m":90,"e":6573}],[-1,{"n":5.5,"q":null,"m":90,"e":6580}]]}],[6005,{"n":"Papeau","f":"Jayson","fp":"MO","r":9,"c":42,"s":{"s":10,"n":2,"a":5,"m":35,"am":18,"dm":2,"Ss":5,"Sn":1,"Sa":5,"Sm":16,"Sam":16,"Og":1,"Os":142.5,"On":28,"Oa":5.09,"Od":0.79,"Om":1018,"Oam":36,"Odm":29,"pd":1,"pm":25,"pa":2,"Omsn":7},"p":[[-38,{"n":5,"q":null,"m":67,"e":6211}],[-37,{"n":6.5,"q":null,"m":78,"e":6219}],[-36,{"n":4,"q":null,"m":57,"e":6237}],[-35,{"n":7,"q":null,"m":90,"e":6238}],[-33,{"n":5,"q":null,"m":21,"e":6260,"s":1}],[-32,{"n":4.5,"q":null,"m":4,"e":6268,"s":1}],[-31,{"n":7,"q":null,"m":71,"e":6282,"g":1}],[-30,{"n":5,"q":null,"m":7,"e":6288,"s":1}],[-29,{"n":5,"q":null,"m":14,"e":6300,"s":1}],[-22,{"n":4,"q":null,"m":29,"e":6369}],[-21,{"n":4.5,"q":null,"m":27,"e":6385,"s":1}],[-20,{"n":4.5,"q":null,"m":21,"e":6389,"s":1}],[-18,{"n":5.5,"q":null,"m":19,"e":6412,"s":1}],[-17,{"n":5,"q":null,"m":60,"e":6418}],[-15,{"n":5,"q":null,"m":12,"e":6438,"s":1}],[-12,{"n":5,"q":null,"m":6,"e":6477,"s":1}],[-11,{"n":5,"q":null,"m":2,"e":6478,"s":1}],[-10,{"n":4.5,"q":null,"m":64,"e":6488}],[-9,{"n":5,"q":null,"m":1,"e":6507,"s":1}],[-8,{"n":5,"q":null,"m":10,"e":6515,"s":1}],[-6,{"n":4,"q":null,"m":71,"e":6529}],[-5,{"n":6.5,"q":null,"m":90,"e":6539}],[-4,{"n":4.5,"q":null,"m":58,"e":6549}],[-3,{"n":5.5,"q":null,"m":22,"e":6559,"s":1}],[-2,{"n":5,"q":null,"m":23,"e":6573,"s":1}],[2,{"n":5,"q":null,"m":19,"e":10571,"s":1}],[-1,{"n":5,"q":null,"m":59,"e":6580}],[1,{"n":5,"q":null,"m":16,"e":10938,"s":1}]],"fo":[[6219,[{"t":"I"}]],[6237,[{"t":"Y"}]],[6268,[{"t":"Y"}]],[10571,[{"t":"Y"}]]]}],[6020,{"n":"Akolo","f":"Chadrac","fp":"MO","r":12,"c":42,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"m":162,"am":81,"dm":13,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Og":2,"Os":73,"On":15,"Oa":4.87,"Od":0.93,"Om":904,"Oam":60,"Odm":27,"pm":12,"pa":3,"Omsn":7.5},"p":[[-21,{"n":4,"q":null,"m":63,"e":6385}],[-20,{"n":4.5,"q":null,"m":90,"e":6389}],[-19,{"n":7.5,"q":null,"m":64,"e":6403,"g":2}],[-18,{"n":5,"q":null,"m":79,"e":6412}],[-17,{"n":5,"q":null,"m":30,"e":6418,"s":1}],[-15,{"n":5,"q":null,"m":83,"e":6438}],[-14,{"n":5,"q":null,"m":25,"e":6453,"s":1}],[-13,{"n":6,"q":null,"m":80,"e":6458}],[-12,{"n":4.5,"q":null,"m":45,"e":6477,"s":1}],[-11,{"n":4.5,"q":null,"m":2,"e":6478,"s":1}],[-3,{"n":4.5,"q":null,"m":68,"e":6559}],[-2,{"n":5,"q":null,"m":82,"e":6573}],[2,{"n":3.5,"q":null,"m":72,"e":10571}],[-1,{"n":5,"q":null,"m":31,"e":6580,"s":1}],[1,{"n":4,"q":null,"m":90,"e":10938}]]}],[6721,{"n":"Fofana","f":"Mamadou","fp":"MD","r":3,"c":42,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":30,"am":15,"dm":11,"Ss":5,"Sn":1,"Sa":5,"Sm":23,"Sam":23,"Og":1,"Os":61,"On":12,"Oa":5.08,"Od":0.63,"Om":243,"Oam":20,"Odm":24,"pm":12,"Omsn":6.5},"p":[[-38,{"n":6,"q":null,"m":90,"e":6214}],[-37,{"n":6.5,"q":null,"m":20,"e":6227,"g":1,"s":1}],[-12,{"n":4.5,"q":null,"m":21,"e":6472,"s":1}],[-7,{"n":5,"q":null,"m":18,"e":6521,"s":1}],[-6,{"n":5,"q":null,"m":1,"e":6534,"s":1}],[-3,{"n":5,"q":null,"m":9,"e":6562,"s":1}],[-1,{"n":4.5,"q":null,"m":1,"e":6587,"s":1}],[-20,{"n":5.5,"q":null,"m":18,"e":6389,"s":1}],[-18,{"n":5,"q":null,"m":1,"e":6405,"s":1}],[-2,{"n":4.5,"q":null,"m":34,"e":6573,"s":1}],[2,{"n":4.5,"q":null,"m":7,"e":10571,"s":1}],[1,{"n":5,"q":null,"m":23,"e":10938,"s":1}]]}],[6776,{"n":"Rafael Fonseca","f":"","fp":"DL","r":3,"c":42,"s":{"Os":8,"On":2,"Oa":4,"Od":1.41,"Om":99,"Oam":50,"Odm":6,"pd":1,"pm":1},"p":[[-37,{"n":5,"q":null,"m":54,"e":6219}],[-33,{"n":3,"q":null,"m":45,"e":6260}]]}],[6778,{"n":"Sy","f":"Harouna","fp":"DL","r":12,"c":42,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":173,"On":36,"Oa":4.81,"Od":0.82,"Om":3043,"Oam":85,"Odm":18,"pd":31,"pm":5},"p":[[1,{"n":5,"q":null,"m":90,"e":10936}],[-38,{"n":4,"q":null,"m":90,"e":6210}],[-36,{"n":5,"q":null,"m":9,"e":6230,"s":1}],[-35,{"n":5,"q":null,"m":30,"e":6239,"s":1}],[-34,{"n":5,"q":null,"m":79,"e":6249}],[-33,{"n":6,"q":null,"m":90,"e":6262}],[-32,{"n":5.5,"q":null,"m":90,"e":6269}],[-30,{"n":4.5,"q":null,"m":45,"e":6296}],[-29,{"n":5,"q":null,"m":90,"e":6301}],[-28,{"n":5,"q":null,"m":90,"e":6315}],[-26,{"n":5,"q":null,"m":90,"e":6331}],[-25,{"n":4.5,"q":null,"m":90,"e":6342}],[-24,{"n":6,"q":null,"m":90,"e":6351}],[-23,{"n":5,"q":null,"m":90,"e":6362}],[-22,{"n":5,"q":null,"m":90,"e":6377}],[-20,{"n":3,"q":null,"m":90,"e":6392}],[-18,{"n":4.5,"q":null,"m":90,"e":6414}],[-17,{"n":4.5,"q":null,"m":90,"e":6421}],[-16,{"n":3,"q":null,"m":90,"e":6433}],[-15,{"n":3,"q":null,"m":90,"e":6447}],[-14,{"n":5.5,"q":null,"m":90,"e":6452}],[-12,{"n":5.5,"q":null,"m":90,"e":6475}],[-10,{"n":5,"q":null,"m":90,"e":6492}],[-8,{"n":4,"q":null,"m":90,"e":6512}],[-7,{"n":4.5,"q":null,"m":90,"e":6522}],[-6,{"n":5.5,"q":null,"m":90,"e":6532}],[-5,{"n":4.5,"q":null,"m":90,"e":6544}],[-4,{"n":6.5,"q":null,"m":90,"e":6551}],[-2,{"n":4.5,"q":null,"m":90,"e":6571}],[-1,{"n":6,"q":null,"m":90,"e":6578}],[-31,{"n":4.5,"q":null,"m":90,"e":6282}],[-21,{"n":5,"q":null,"m":90,"e":6381}],[-13,{"n":4.5,"q":null,"m":90,"e":6458}],[-9,{"n":5.5,"q":null,"m":90,"e":6499}],[-3,{"n":5,"q":null,"m":90,"e":6558}],[2,{"n":3.5,"q":null,"m":90,"e":10571}]],"fo":[[6230,[{"t":"I"}]],[6315,[{"t":"Y"}]],[10936,[{"t":"Y"}]]]}],[6834,{"n":"Monzango","f":"Nathan","fp":"DC","r":10,"c":42,"s":{"s":3.5,"n":1,"a":3.5,"m":90,"am":90,"Oao":1,"Os":90,"On":20,"Oa":4.5,"Od":0.81,"Om":1530,"Oam":77,"Odm":21,"pd":20},"p":[[-38,{"n":3.5,"q":null,"m":90,"e":6211}],[-37,{"n":5,"q":null,"m":36,"e":6219,"s":1}],[-36,{"n":3,"q":null,"m":90,"e":6237}],[-35,{"n":4,"q":null,"m":78,"e":6238}],[-34,{"n":5.5,"q":null,"m":90,"e":6248}],[-32,{"n":5,"q":null,"m":10,"e":6268,"s":1}],[-29,{"n":3.5,"q":null,"m":75,"e":6300}],[-23,{"n":4,"q":null,"m":61,"e":6366}],[-18,{"n":4.5,"q":null,"m":71,"e":6412}],[-17,{"n":5,"q":null,"m":90,"e":6418}],[-16,{"n":6,"q":null,"m":90,"e":6437}],[-15,{"n":4.5,"q":null,"m":90,"e":6438}],[-14,{"n":5,"q":null,"m":90,"e":6453}],[-12,{"n":4.5,"q":null,"m":74,"e":6477,"s":1}],[-11,{"n":4.5,"q":null,"m":70,"e":6478}],[-7,{"n":5.5,"q":null,"m":65,"e":6519}],[-3,{"n":4,"q":null,"m":90,"e":6559}],[-2,{"n":4,"q":null,"m":90,"e":6573,"a":1}],[2,{"n":3.5,"q":null,"m":90,"e":10571}],[-1,{"n":5.5,"q":null,"m":90,"e":6580}]],"fo":[[6238,[{"t":"Y"}]]]}],[6844,{"n":"Ciss","f":"Amadou","fp":"MO","r":5,"c":42,"s":{"s":9,"n":2,"a":4.5,"m":41,"am":21,"dm":4,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":23,"Sam":23,"Og":3,"Os":115.5,"On":23,"Oa":5.02,"Od":1.03,"Om":991,"Oam":43,"Odm":35,"pm":18,"pa":5,"Omsn":6.5},"p":[[-30,{"n":4.5,"q":null,"m":20,"e":6288,"s":1}],[-27,{"n":3,"q":null,"m":65,"e":6326}],[-26,{"n":5,"q":null,"m":20,"e":6329,"s":1}],[-24,{"n":4.5,"q":null,"m":25,"e":6349,"s":1}],[-23,{"n":4,"q":null,"m":81,"e":6366}],[-22,{"n":4,"q":null,"m":85,"e":6369}],[-21,{"n":6.5,"q":null,"m":16,"e":6385,"g":1,"s":1}],[-17,{"n":5,"q":null,"m":80,"e":6418}],[-16,{"n":5,"q":null,"m":4,"e":6437,"s":1}],[-15,{"n":6.5,"q":null,"m":7,"e":6438,"g":1,"s":1}],[-14,{"n":5,"q":null,"m":3,"e":6453,"s":1}],[-13,{"n":5,"q":null,"m":1,"e":6458,"s":1}],[-12,{"n":4,"q":null,"m":45,"e":6477}],[-11,{"n":5.5,"q":null,"m":88,"e":6478}],[-10,{"n":4.5,"q":null,"m":90,"e":6488}],[-9,{"n":5,"q":null,"m":90,"e":6507}],[-8,{"n":7.5,"q":null,"m":90,"e":6515,"g":1}],[-7,{"n":7,"q":null,"m":90,"e":6519}],[-6,{"n":5,"q":null,"m":19,"e":6529,"s":1}],[-5,{"n":5,"q":null,"m":16,"e":6539,"s":1}],[-2,{"n":5,"q":null,"m":15,"e":6573,"s":1}],[2,{"n":4.5,"q":null,"m":18,"e":10571,"s":1}],[1,{"n":4.5,"q":null,"m":23,"e":10938,"s":1}]],"fo":[[6288,[{"t":"Y"}]]]}],[6847,{"n":"Gomez","f":"Charbel","fp":"A","r":3,"c":42,"s":{"s":5,"n":1,"a":5,"m":16,"am":16,"Ss":5,"Sn":1,"Sa":5,"Sm":16,"Sam":16,"Os":28.5,"On":6,"Oa":4.75,"Od":0.52,"Om":71,"Oam":12,"Odm":4,"pa":6},"p":[[-38,{"n":4.5,"q":null,"m":9,"e":6211,"s":1}],[-35,{"n":5,"q":null,"m":12,"e":6238,"s":1}],[-34,{"n":5.5,"q":null,"m":17,"e":6248,"s":1}],[-31,{"n":4,"q":null,"m":8,"e":6282,"s":1}],[-23,{"n":4.5,"q":null,"m":9,"e":6366,"s":1}],[1,{"n":5,"q":null,"m":16,"e":10938,"s":1}]]}],[6875,{"n":"Lomotey","f":"Emmanuel","fp":"MD","r":14,"c":42,"s":{"s":3.5,"n":1,"a":3.5,"m":85,"am":85,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":85,"Sam":85,"Og":2,"Os":139,"On":27,"Oa":5.15,"Od":1.05,"Om":2042,"Oam":76,"Odm":27,"pd":11,"pm":16,"Omsn":7},"p":[[-37,{"n":5.5,"q":null,"m":90,"e":6219}],[-36,{"n":4,"q":null,"m":90,"e":6237}],[-35,{"n":5.5,"q":null,"m":90,"e":6238}],[-34,{"n":6,"q":null,"m":90,"e":6248}],[-33,{"n":5,"q":null,"m":90,"e":6260}],[-31,{"n":5.5,"q":null,"m":90,"e":6282}],[-30,{"n":7,"q":null,"m":90,"e":6288,"g":1}],[-28,{"n":7,"q":null,"m":90,"e":6309,"g":1}],[-27,{"n":3.5,"q":null,"m":90,"e":6326}],[-26,{"n":5.5,"q":null,"m":90,"e":6329}],[-25,{"n":5.5,"q":null,"m":90,"e":6343}],[-24,{"n":5,"q":null,"m":90,"e":6349}],[-23,{"n":4,"q":null,"m":61,"e":6366}],[-22,{"n":5,"q":null,"m":90,"e":6369}],[-21,{"n":4.5,"q":null,"m":27,"e":6385,"s":1}],[-16,{"n":7.5,"q":null,"m":90,"e":6437}],[-15,{"n":4,"q":null,"m":90,"e":6438}],[-11,{"n":5,"q":null,"m":13,"e":6478,"s":1}],[-10,{"n":4,"q":null,"m":90,"e":6488}],[-8,{"n":5.5,"q":null,"m":90,"e":6515}],[-7,{"n":6.5,"q":null,"m":90,"e":6519}],[-6,{"n":4.5,"q":null,"m":8,"e":6529,"s":1}],[-5,{"n":4.5,"q":null,"m":60,"e":6539}],[-4,{"n":5,"q":null,"m":67,"e":6549}],[-3,{"n":4.5,"q":null,"m":11,"e":6559,"s":1}],[-1,{"n":6,"q":null,"m":90,"e":6580}],[1,{"n":3.5,"q":null,"m":85,"e":10938}]],"fo":[[6219,[{"t":"Y"}]],[6326,[{"t":"Y"}]],[6343,[{"t":"Y"}]],[10938,[{"t":"Y"}]]]}],[7482,{"n":"Assogba","f":"Youssouf","fp":"DL","r":3,"c":42,"s":{"Os":42.5,"On":9,"Oa":4.72,"Od":0.79,"Om":571,"Oam":63,"Odm":30,"pd":6,"pm":3},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6211}],[-24,{"n":4.5,"q":null,"m":65,"e":6349}],[-23,{"n":4.5,"q":null,"m":28,"e":6366,"s":1}],[-21,{"n":3,"q":null,"m":90,"e":6385}],[-20,{"n":5,"q":null,"m":69,"e":6389}],[-19,{"n":6,"q":null,"m":90,"e":6403}],[-18,{"n":5,"q":null,"m":19,"e":6412,"s":1}],[-17,{"n":5,"q":null,"m":30,"e":6418,"s":1}],[-13,{"n":5,"q":null,"m":90,"e":6458}]]}],[7524,{"n":"Sangaré","f":"Mustapha","fp":"A","r":1,"c":42,"s":{"Os":12.5,"On":3,"Oa":4.17,"Od":0.29,"Om":49,"Oam":16,"Odm":6,"pa":3},"p":[[-19,{"n":4.5,"q":null,"m":20,"e":6403,"s":1}],[-18,{"n":4,"q":null,"m":19,"e":6412,"s":1}],[-17,{"n":4,"q":null,"m":10,"e":6418,"s":1}]]}],[7701,{"n":"Lachuer","f":"Mathis","fp":"MD","r":10,"c":42,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":173,"am":87,"dm":5,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":62.5,"On":13,"Oa":4.81,"Od":0.75,"Om":673,"Oam":52,"Odm":38,"pm":13},"p":[[-38,{"n":5,"q":null,"m":90,"e":6211}],[-37,{"n":5,"q":null,"m":12,"e":6219,"s":1}],[-36,{"n":4.5,"q":null,"m":28,"e":6237,"s":1}],[-35,{"n":3.5,"q":null,"m":78,"e":6238}],[-34,{"n":6.5,"q":null,"m":90,"e":6248}],[-33,{"n":4,"q":null,"m":90,"e":6260}],[-31,{"n":5,"q":null,"m":19,"e":6282,"s":1}],[-30,{"n":5,"q":null,"m":1,"e":6288,"s":1}],[-29,{"n":5,"q":null,"m":15,"e":6300,"s":1}],[-28,{"n":5,"q":null,"m":7,"e":6309,"s":1}],[-26,{"n":4.5,"q":null,"m":70,"e":6329}],[2,{"n":4,"q":null,"m":83,"e":10571}],[1,{"n":5.5,"q":null,"m":90,"e":10938}]],"fo":[[6260,[{"t":"Y"}]],[10571,[{"t":"Y"}]]]}],[8018,{"n":"Xantippe","f":"Mattheo","fp":"DL","r":5,"c":42,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":101,"am":51,"dm":56,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"Om":101,"Oam":51,"Odm":56,"pd":2},"p":[[2,{"n":5,"q":null,"m":11,"e":10571,"s":1}],[1,{"n":4.5,"q":null,"m":90,"e":10938}]]}],[8027,{"n":"Arokodare","f":"Toluwalase Emmanuel","fp":"A","r":14,"c":42,"s":{"g":1,"s":4,"n":1,"a":4,"m":71,"am":71,"Og":1,"Os":4,"On":1,"Oa":4,"Om":71,"Oam":71,"pa":1,"Smsn":4,"Omsn":4},"p":[[2,{"n":4,"q":null,"m":71,"e":10571,"g":1}]]}],[8030,{"n":"Mendy","f":"Formose","fp":"DC","r":9,"c":42,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":84,"am":42,"dm":52,"Ss":5,"Sn":1,"Sa":5,"Sm":5,"Sam":5,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"Om":84,"Oam":42,"Odm":52,"pd":2},"p":[[2,{"n":4,"q":null,"m":79,"e":10571}],[1,{"n":5,"q":null,"m":5,"e":10938,"s":1}]],"fo":[[10571,[{"t":"I"}]]]}],[378,{"n":"Pellenard","f":"Théo","fp":"DL","r":7,"c":101,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":78,"On":17,"Oa":4.59,"Od":0.8,"Om":889,"Oam":49,"Odm":36,"pd":14,"pm":3},"p":[[2,{"n":6,"q":null,"m":90,"e":10579}],[-38,{"n":3,"q":null,"m":54,"e":6216}],[-33,{"n":4.5,"q":null,"m":2,"e":6267,"s":1}],[-30,{"n":5,"q":null,"m":28,"e":6297,"s":1}],[-29,{"n":4,"q":null,"m":90,"e":6303}],[-27,{"n":5,"q":null,"m":23,"e":6321,"s":1}],[-26,{"n":5,"q":null,"m":14,"e":6336,"s":1}],[-23,{"n":4.5,"q":null,"m":76,"e":6359}],[-18,{"n":4,"q":null,"m":69,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-15,{"n":4.5,"q":null,"m":90,"e":6441}],[-12,{"n":5,"q":null,"m":12,"e":6474,"s":1}],[-11,{"n":5,"q":null,"m":12,"e":6486,"s":1}],[-31,{"n":3,"q":null,"m":90,"e":6278}],[-22,{"n":5,"q":null,"m":13,"e":6377,"s":1}],[-16,{"n":4,"q":null,"m":46,"e":6437,"s":1}],[-14,{"n":5,"q":null,"m":90,"e":6450}],[1,{"n":5.5,"q":null,"m":90,"e":10938}]],"fo":[[6216,[{"t":"Y"}]],[6303,[{"t":"Y"}]]]}],[397,{"n":"Hein","f":"Gauthier","fp":"MO","r":16,"c":101,"s":{"g":2,"s":14.5,"n":2,"a":7.25,"d":0.35,"m":170,"am":85,"dm":7,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":6,"Os":190.5,"On":35,"Oa":5.44,"Od":0.95,"Om":2089,"Oam":60,"Odm":30,"pm":31,"pa":4,"Smsn":7,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":76,"e":6217,"g":1}],[-37,{"n":4.5,"q":null,"m":90,"e":6220}],[-36,{"n":6,"q":null,"m":90,"e":6228}],[-34,{"n":5,"q":null,"m":90,"e":6257}],[-33,{"n":6,"q":null,"m":90,"e":6259}],[-32,{"n":7.5,"q":null,"m":83,"e":6273,"g":1}],[-31,{"n":5,"q":null,"m":78,"e":6279}],[-29,{"n":5.5,"q":null,"m":67,"e":6299}],[-27,{"n":5.5,"q":null,"m":90,"e":6318}],[-25,{"n":4.5,"q":null,"m":22,"e":6338,"s":1}],[-22,{"n":4,"q":null,"m":65,"e":6376}],[-21,{"n":5,"q":null,"m":28,"e":6380,"s":1}],[-20,{"n":7,"q":null,"m":28,"e":6390,"g":1,"s":1}],[-18,{"n":3.5,"q":null,"m":14,"e":6404,"s":1}],[-16,{"n":5,"q":null,"m":2,"e":6431,"s":1}],[-15,{"n":5.5,"q":null,"m":67,"e":6444}],[-14,{"n":6,"q":null,"m":27,"e":6448,"g":1,"s":1}],[-13,{"n":6.5,"q":null,"m":90,"e":6462}],[-11,{"n":5,"q":null,"m":18,"e":6484,"s":1}],[-9,{"n":5,"q":null,"m":90,"e":6505}],[-7,{"n":5,"q":null,"m":25,"e":6527,"s":1}],[-3,{"n":4,"q":null,"m":68,"e":6560}],[-2,{"n":5,"q":null,"m":64,"e":6570}],[-1,{"n":4.5,"q":null,"m":67,"e":6581}],[-35,{"n":5,"q":null,"m":74,"e":6239}],[-30,{"n":6.5,"q":null,"m":75,"e":6297}],[-28,{"n":5.5,"q":null,"m":69,"e":6309}],[-24,{"n":5,"q":null,"m":28,"e":6348,"s":1}],[-17,{"n":5.5,"q":null,"m":86,"e":6421}],[-12,{"n":5.5,"q":null,"m":73,"e":6474}],[-10,{"n":5,"q":null,"m":3,"e":6488,"s":1}],[-8,{"n":6.5,"q":null,"m":73,"e":6508}],[-6,{"n":5,"q":null,"m":9,"e":6528,"s":1}],[2,{"n":7.5,"q":null,"m":80,"e":10579,"g":1}],[1,{"n":7,"q":null,"m":90,"e":10938,"g":1}]],"fo":[[10579,[{"t":"I"}]],[6257,[{"t":"Y"}]]]}],[494,{"n":"Georgen","f":"Alec","fp":"DL","r":6,"c":101,"s":{"s":4,"n":1,"a":4,"m":55,"am":55,"Ss":4,"Sn":1,"Sa":4,"Sm":55,"Sam":55,"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"Om":122,"Oam":61,"Odm":8,"pd":2},"p":[[-1,{"n":3.5,"q":null,"m":67,"e":6581}],[1,{"n":4,"q":null,"m":55,"e":10938}]],"fo":[[10938,[{"t":"Y"}]]]}],[495,{"n":"Lloris","f":"Gautier","fp":"DC","r":21,"c":101,"s":{"Og":4,"Oao":1,"Os":140,"On":26,"Oa":5.38,"Od":0.86,"Om":2334,"Oam":90,"Odm":1,"pd":26,"Omsn":6},"p":[[-26,{"n":5.5,"q":null,"m":90,"e":6330}],[-23,{"n":6,"q":null,"m":90,"e":6358}],[-19,{"n":5,"q":null,"m":90,"e":6400}],[-5,{"n":4.5,"q":null,"m":90,"e":6545}],[-4,{"n":5,"q":null,"m":90,"e":6557}],[-38,{"n":5,"q":null,"m":90,"e":6217}],[-37,{"n":5,"q":null,"m":90,"e":6220}],[-36,{"n":5,"q":null,"m":90,"e":6228}],[-35,{"n":5.5,"q":null,"m":90,"e":6239}],[-34,{"n":4.5,"q":null,"m":90,"e":6257}],[-33,{"n":6,"q":null,"m":90,"e":6259,"g":1}],[-32,{"n":8,"q":null,"m":90,"e":6273,"g":2}],[-30,{"n":6,"q":null,"m":90,"e":6297,"g":1}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":6.5,"q":null,"m":90,"e":6309}],[-25,{"n":4,"q":null,"m":90,"e":6338}],[-24,{"n":5,"q":null,"m":84,"e":6348}],[-21,{"n":6,"q":null,"m":90,"e":6380}],[-20,{"n":6,"q":null,"m":90,"e":6390}],[-18,{"n":5,"q":null,"m":90,"e":6404}],[-17,{"n":6,"q":null,"m":90,"e":6421}],[-13,{"n":4.5,"q":null,"m":90,"e":6462,"a":1}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":6,"q":null,"m":90,"e":6484}],[-10,{"n":5,"q":null,"m":90,"e":6488}],[-7,{"n":4,"q":null,"m":90,"e":6527}]],"fo":[[6257,[{"t":"Y"}]],[6330,[{"t":"Y"}]],[6348,[{"t":"Y"},{"t":"O"}]]]}],[511,{"n":"Perrin","f":"Gaetan","fp":"MO","r":8,"c":101,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":153,"am":77,"dm":11,"Ss":5,"Sn":1,"Sa":5,"Sm":84,"Sam":84,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"Om":153,"Oam":77,"Odm":11,"pm":2},"p":[[2,{"n":5.5,"q":null,"m":69,"e":10579}],[1,{"n":5,"q":null,"m":84,"e":10938}]],"fo":[[10938,[{"t":"Y"}]]]}],[519,{"n":"Arcus","f":"Carlens","fp":"DL","r":22,"c":101,"s":{"Os":207.5,"On":38,"Oa":5.46,"Od":0.79,"Om":3238,"Oam":85,"Odm":18,"pd":38},"p":[[-38,{"n":5,"q":null,"m":90,"e":6217}],[-37,{"n":6.5,"q":null,"m":90,"e":6220}],[-36,{"n":5,"q":null,"m":90,"e":6228}],[-35,{"n":5,"q":null,"m":90,"e":6239}],[-34,{"n":4,"q":null,"m":64,"e":6257}],[-33,{"n":6.5,"q":null,"m":90,"e":6259}],[-32,{"n":6.5,"q":null,"m":90,"e":6273}],[-31,{"n":5.5,"q":null,"m":90,"e":6279}],[-30,{"n":5,"q":null,"m":90,"e":6297}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":5,"q":null,"m":90,"e":6309}],[-27,{"n":5,"q":null,"m":90,"e":6318}],[-26,{"n":6,"q":null,"m":90,"e":6330}],[-25,{"n":4.5,"q":null,"m":90,"e":6338}],[-24,{"n":6,"q":null,"m":90,"e":6348}],[-23,{"n":6,"q":null,"m":90,"e":6358}],[-22,{"n":5,"q":null,"m":90,"e":6376}],[-21,{"n":5.5,"q":null,"m":90,"e":6380}],[-20,{"n":5,"q":null,"m":90,"e":6390}],[-19,{"n":5,"q":null,"m":90,"e":6400}],[-18,{"n":5.5,"q":null,"m":90,"e":6404}],[-17,{"n":6.5,"q":null,"m":90,"e":6421}],[-16,{"n":5,"q":null,"m":90,"e":6431}],[-15,{"n":4,"q":null,"m":90,"e":6444}],[-14,{"n":6.5,"q":null,"m":90,"e":6448}],[-13,{"n":5,"q":null,"m":4,"e":6462,"s":1}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":7,"q":null,"m":90,"e":6484}],[-10,{"n":6,"q":null,"m":90,"e":6488}],[-9,{"n":4.5,"q":null,"m":90,"e":6505}],[-8,{"n":6.5,"q":null,"m":90,"e":6508}],[-7,{"n":5,"q":null,"m":87,"e":6527}],[-6,{"n":5,"q":null,"m":90,"e":6528}],[-5,{"n":4.5,"q":null,"m":90,"e":6545}],[-4,{"n":7,"q":null,"m":90,"e":6557}],[-3,{"n":5,"q":null,"m":90,"e":6560}],[-2,{"n":6,"q":null,"m":90,"e":6570}],[-1,{"n":5.5,"q":null,"m":23,"e":6581,"s":1}]],"fo":[[6259,[{"t":"Y"}]],[6330,[{"t":"Y"}]]]}],[2689,{"n":"Ndom","f":"Aly","fp":"MD","r":6,"c":101,"s":{"s":10,"n":2,"a":5,"m":27,"am":14,"dm":11,"Ss":5,"Sn":1,"Sa":5,"Sm":6,"Sam":6,"Os":103.5,"On":21,"Oa":4.93,"Od":0.55,"Om":405,"Oam":19,"Odm":22,"pm":21},"p":[[-24,{"n":5,"q":null,"m":4,"e":6348,"s":1}],[-23,{"n":5,"q":null,"m":4,"e":6358,"s":1}],[-19,{"n":3.5,"q":null,"m":2,"e":6400,"s":1}],[-18,{"n":5,"q":null,"m":13,"e":6404,"s":1}],[-17,{"n":5,"q":null,"m":17,"e":6421,"s":1}],[-16,{"n":5,"q":null,"m":10,"e":6431,"s":1}],[-15,{"n":5,"q":null,"m":9,"e":6444,"s":1}],[-14,{"n":5.5,"q":null,"m":15,"e":6448,"s":1}],[-13,{"n":4,"q":null,"m":71,"e":6462}],[-12,{"n":5,"q":null,"m":17,"e":6474,"s":1}],[-11,{"n":5,"q":null,"m":5,"e":6484,"s":1}],[-10,{"n":4,"q":null,"m":17,"e":6488,"s":1}],[-8,{"n":5,"q":null,"m":25,"e":6508,"s":1}],[-7,{"n":4.5,"q":null,"m":3,"e":6527,"s":1}],[-6,{"n":6,"q":null,"m":19,"e":6528,"s":1}],[-5,{"n":5.5,"q":null,"m":19,"e":6545,"s":1}],[-3,{"n":5,"q":null,"m":90,"e":6560}],[-2,{"n":5.5,"q":null,"m":26,"e":6570,"s":1}],[2,{"n":5,"q":null,"m":21,"e":10579,"s":1}],[-1,{"n":5,"q":null,"m":12,"e":6581,"s":1}],[1,{"n":5,"q":null,"m":6,"e":10938,"s":1}]]}],[3808,{"n":"Léon","f":"Donovan","fp":"G","r":22,"c":101,"s":{"s":12,"n":2,"a":6,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":206.5,"On":38,"Oa":5.43,"Od":1.2,"Om":3314,"Oam":87,"Odm":12,"pg":38},"p":[[-38,{"n":4,"q":null,"m":90,"e":6217}],[-37,{"n":5,"q":null,"m":90,"e":6220}],[-36,{"n":7,"q":null,"m":90,"e":6228}],[-35,{"n":5,"q":null,"m":90,"e":6239}],[-34,{"n":2.5,"q":null,"m":90,"e":6257}],[-33,{"n":4.5,"q":null,"m":90,"e":6259}],[-32,{"n":8,"q":null,"m":90,"e":6273}],[-31,{"n":4.5,"q":null,"m":90,"e":6279}],[-30,{"n":5,"q":null,"m":90,"e":6297}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":6.5,"q":null,"m":90,"e":6309}],[-27,{"n":6,"q":null,"m":90,"e":6318}],[-26,{"n":6,"q":null,"m":90,"e":6330}],[-25,{"n":6,"q":null,"m":90,"e":6338}],[-24,{"n":6,"q":null,"m":90,"e":6348}],[-23,{"n":8,"q":null,"m":90,"e":6358}],[-22,{"n":3,"q":null,"m":90,"e":6376}],[-21,{"n":6.5,"q":null,"m":90,"e":6380}],[-20,{"n":5,"q":null,"m":90,"e":6390}],[-19,{"n":5.5,"q":null,"m":90,"e":6400}],[-18,{"n":5,"q":null,"m":90,"e":6404}],[-17,{"n":6,"q":null,"m":90,"e":6421}],[-16,{"n":5.5,"q":null,"m":90,"e":6431}],[-15,{"n":4.5,"q":null,"m":90,"e":6444}],[-14,{"n":6.5,"q":null,"m":90,"e":6448}],[-13,{"n":5,"q":null,"m":90,"e":6462}],[-12,{"n":5.5,"q":null,"m":90,"e":6474}],[-11,{"n":6,"q":null,"m":90,"e":6484}],[-10,{"n":5,"q":null,"m":90,"e":6488}],[-9,{"n":4.5,"q":null,"m":26,"e":6505}],[-8,{"n":7,"q":null,"m":90,"e":6508}],[-7,{"n":5,"q":null,"m":90,"e":6527}],[-6,{"n":5.5,"q":null,"m":90,"e":6528}],[-5,{"n":4.5,"q":null,"m":90,"e":6545}],[-4,{"n":6,"q":null,"m":90,"e":6557}],[2,{"n":6,"q":null,"m":90,"e":10579}],[-1,{"n":3,"q":null,"m":48,"e":6581}],[1,{"n":6,"q":null,"m":90,"e":10938}]]}],[3813,{"n":"Autret","f":"Mathias","fp":"MO","r":28,"c":101,"s":{"g":1,"s":12,"n":2,"a":6,"d":1.41,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":7,"Os":203,"On":36,"Oa":5.64,"Od":1.13,"Om":2931,"Oam":81,"Odm":13,"pm":35,"pa":1,"Smsn":7,"Omsn":6},"p":[[-38,{"n":6.5,"q":null,"m":90,"e":6217}],[-37,{"n":4.5,"q":null,"m":90,"e":6220}],[-36,{"n":6,"q":null,"m":90,"e":6228}],[-35,{"n":6.5,"q":null,"m":90,"e":6239}],[-34,{"n":3.5,"q":null,"m":87,"e":6257}],[-33,{"n":7,"q":null,"m":90,"e":6259}],[-32,{"n":6.5,"q":null,"m":89,"e":6273}],[-31,{"n":6,"q":null,"m":90,"e":6279}],[-30,{"n":5.5,"q":null,"m":29,"e":6297}],[-29,{"n":4.5,"q":null,"m":78,"e":6299}],[-25,{"n":5.5,"q":null,"m":68,"e":6338}],[-24,{"n":4.5,"q":null,"m":71,"e":6348}],[-23,{"n":6,"q":null,"m":74,"e":6358}],[-22,{"n":5,"q":null,"m":90,"e":6376}],[-21,{"n":4.5,"q":null,"m":90,"e":6380}],[-20,{"n":5,"q":null,"m":90,"e":6390}],[-19,{"n":6,"q":null,"m":74,"e":6400}],[-18,{"n":5.5,"q":null,"m":77,"e":6404}],[-16,{"n":5.5,"q":null,"m":90,"e":6431}],[-15,{"n":6,"q":null,"m":90,"e":6444,"g":1}],[-14,{"n":8,"q":null,"m":63,"e":6448,"g":1}],[-13,{"n":6.5,"q":null,"m":90,"e":6462,"g":1}],[-12,{"n":6,"q":null,"m":83,"e":6474,"g":1}],[-11,{"n":6,"q":null,"m":67,"e":6484}],[-10,{"n":4.5,"q":null,"m":56,"e":6488}],[-9,{"n":6,"q":null,"m":90,"e":6505,"g":1}],[-8,{"n":7,"q":null,"m":65,"e":6508}],[-7,{"n":4,"q":null,"m":90,"e":6527}],[-6,{"n":7.5,"q":null,"m":90,"e":6528}],[-5,{"n":3.5,"q":null,"m":83,"e":6545}],[-4,{"n":5.5,"q":null,"m":89,"e":6557}],[-3,{"n":5,"q":null,"m":80,"e":6560}],[-2,{"n":7.5,"q":null,"m":90,"e":6570,"g":1}],[2,{"n":7,"q":null,"m":90,"e":10579,"g":1}],[-1,{"n":4,"q":null,"m":78,"e":6581}],[1,{"n":5,"q":null,"m":90,"e":10938}]],"fo":[[6297,[{"t":"I"}]],[6279,[{"t":"Y"}]],[6299,[{"t":"Y"}]]]}],[4949,{"n":"Laiton","f":"Sonny","fp":"G","r":3,"c":101,"s":{"Os":20.5,"On":4,"Oa":5.13,"Od":0.25,"Om":284,"Oam":71,"Odm":24,"pg":4},"p":[[-9,{"n":5.5,"q":null,"m":64,"e":6505,"s":1}],[-3,{"n":5,"q":null,"m":90,"e":6560}],[-2,{"n":5,"q":null,"m":90,"e":6570}],[-1,{"n":5,"q":null,"m":40,"e":6581,"s":1}]]}],[5004,{"n":"Fortune","f":"Kévin","fp":"A","r":3,"c":101,"s":{"Og":3,"Os":119.5,"On":25,"Oa":4.78,"Od":0.63,"Om":921,"Oam":37,"Odm":28,"pm":4,"pa":21,"Omsn":5.5},"p":[[-30,{"n":4.5,"q":null,"m":15,"e":6297,"s":1}],[-29,{"n":4.5,"q":null,"m":12,"e":6299,"s":1}],[-28,{"n":4.5,"q":null,"m":12,"e":6309,"s":1}],[-27,{"n":5,"q":null,"m":9,"e":6318,"s":1}],[-26,{"n":4.5,"q":null,"m":11,"e":6330,"s":1}],[-25,{"n":4.5,"q":null,"m":59,"e":6338,"s":1}],[-24,{"n":5,"q":null,"m":62,"e":6348}],[-23,{"n":4.5,"q":null,"m":16,"e":6358,"s":1}],[-22,{"n":6.5,"q":null,"m":11,"e":6376,"g":1,"s":1}],[-21,{"n":5,"q":null,"m":63,"e":6380}],[-20,{"n":6.5,"q":null,"m":80,"e":6390,"g":1}],[-19,{"n":4.5,"q":null,"m":16,"e":6400,"s":1}],[-17,{"n":4,"q":null,"m":12,"e":6421,"s":1}],[-16,{"n":4,"q":null,"m":18,"e":6431,"s":1}],[-15,{"n":4.5,"q":null,"m":1,"e":6444,"s":1}],[-10,{"n":4.5,"q":null,"m":34,"e":6488,"s":1}],[-9,{"n":4,"q":null,"m":71,"e":6505}],[-8,{"n":4.5,"q":null,"m":25,"e":6508,"s":1}],[-7,{"n":4.5,"q":null,"m":24,"e":6527,"s":1}],[-6,{"n":5.5,"q":null,"m":38,"e":6528,"g":1,"s":1}],[-5,{"n":5,"q":null,"m":62,"e":6545}],[-4,{"n":5,"q":null,"m":85,"e":6557}],[-3,{"n":4.5,"q":null,"m":90,"e":6560}],[-2,{"n":5,"q":null,"m":72,"e":6570}],[-1,{"n":5,"q":null,"m":23,"e":6581,"s":1}]]}],[5109,{"n":"Sakhi","f":"Hamza","fp":"MO","r":29,"c":101,"s":{"g":2,"s":13.5,"n":2,"a":6.75,"d":0.35,"m":180,"am":90,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":7,"Os":220.5,"On":38,"Oa":5.8,"Od":1.22,"Om":3153,"Oam":83,"Odm":17,"pm":38,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5,"q":null,"m":90,"e":6217}],[-37,{"n":5.5,"q":null,"m":90,"e":6220}],[-36,{"n":5,"q":null,"m":10,"e":6228,"s":1}],[-35,{"n":7,"q":null,"m":90,"e":6239}],[-34,{"n":4,"q":null,"m":87,"e":6257}],[-33,{"n":6,"q":null,"m":87,"e":6259}],[-32,{"n":8.5,"q":null,"m":89,"e":6273}],[-31,{"n":5.5,"q":null,"m":90,"e":6279}],[-30,{"n":5,"q":null,"m":90,"e":6297}],[-29,{"n":5.5,"q":null,"m":90,"e":6299}],[-28,{"n":4,"q":null,"m":78,"e":6309}],[-27,{"n":4.5,"q":null,"m":90,"e":6318}],[-26,{"n":4.5,"q":null,"m":90,"e":6330}],[-25,{"n":5,"q":null,"m":90,"e":6338}],[-23,{"n":8,"q":null,"m":86,"e":6358}],[-22,{"n":6,"q":null,"m":90,"e":6376}],[-21,{"n":6,"q":null,"m":90,"e":6380}],[-20,{"n":7,"q":null,"m":88,"e":6390,"g":1}],[-19,{"n":7,"q":null,"m":90,"e":6400,"g":1}],[-18,{"n":5,"q":null,"m":90,"e":6404}],[-17,{"n":4.5,"q":null,"m":78,"e":6421}],[-16,{"n":5.5,"q":null,"m":80,"e":6431}],[-15,{"n":7,"q":null,"m":89,"e":6444,"g":1}],[-14,{"n":7.5,"q":null,"m":83,"e":6448,"g":1}],[-13,{"n":5,"q":null,"m":19,"e":6462,"s":1}],[-12,{"n":4,"q":null,"m":90,"e":6474}],[-11,{"n":7,"q":null,"m":90,"e":6484}],[-10,{"n":7,"q":null,"m":73,"e":6488,"g":1}],[-9,{"n":5.5,"q":null,"m":67,"e":6505}],[-8,{"n":7,"q":null,"m":90,"e":6508}],[-6,{"n":7,"q":null,"m":90,"e":6528}],[-5,{"n":4,"q":null,"m":90,"e":6545}],[-4,{"n":5.5,"q":null,"m":90,"e":6557}],[-3,{"n":5,"q":null,"m":80,"e":6560}],[-2,{"n":7,"q":null,"m":90,"e":6570}],[2,{"n":6.5,"q":null,"m":90,"e":10579,"g":1}],[-1,{"n":4.5,"q":null,"m":79,"e":6581}],[1,{"n":7,"q":null,"m":90,"e":10938,"g":1}]],"fo":[[6318,[{"t":"Y"}]]]}],[5137,{"n":"Touré","f":"Birama","fp":"MD","r":13,"c":101,"s":{"s":12,"n":2,"a":6,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":165.5,"On":30,"Oa":5.52,"Od":0.81,"Om":2629,"Oam":88,"Odm":6,"pm":30},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6217}],[-37,{"n":5.5,"q":null,"m":86,"e":6220}],[-35,{"n":5,"q":null,"m":84,"e":6239}],[-31,{"n":6,"q":null,"m":67,"e":6279}],[-30,{"n":3.5,"q":null,"m":90,"e":6297}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":4.5,"q":null,"m":90,"e":6309}],[-27,{"n":5,"q":null,"m":90,"e":6318}],[-26,{"n":6,"q":null,"m":90,"e":6330}],[-25,{"n":6,"q":null,"m":90,"e":6338}],[-24,{"n":5.5,"q":null,"m":90,"e":6348}],[-23,{"n":6,"q":null,"m":90,"e":6358}],[-22,{"n":4.5,"q":null,"m":90,"e":6376}],[-21,{"n":5,"q":null,"m":88,"e":6380}],[-20,{"n":6,"q":null,"m":90,"e":6390}],[-19,{"n":5,"q":null,"m":90,"e":6400}],[-18,{"n":6,"q":null,"m":90,"e":6404}],[-17,{"n":5,"q":null,"m":73,"e":6421}],[-16,{"n":5,"q":null,"m":90,"e":6431}],[-15,{"n":5,"q":null,"m":90,"e":6444}],[-14,{"n":7,"q":null,"m":90,"e":6448}],[-11,{"n":7,"q":null,"m":90,"e":6484}],[-9,{"n":5,"q":null,"m":90,"e":6505}],[-8,{"n":7,"q":null,"m":90,"e":6508}],[-7,{"n":5,"q":null,"m":90,"e":6527}],[-6,{"n":6.5,"q":null,"m":71,"e":6528}],[-2,{"n":5.5,"q":null,"m":90,"e":6570}],[2,{"n":6,"q":null,"m":90,"e":10579}],[-1,{"n":4.5,"q":null,"m":90,"e":6581}],[1,{"n":6,"q":null,"m":90,"e":10938}]],"fo":[[6239,[{"t":"Y"},{"t":"O"}]],[6297,[{"t":"Y"}]],[6330,[{"t":"Y"}]]]}],[5155,{"n":"Bernard","f":"Quentin","fp":"DL","r":11,"c":101,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":176.5,"On":36,"Oa":4.9,"Od":0.74,"Om":3084,"Oam":86,"Odm":14,"pd":36,"Omsn":6},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6217}],[-37,{"n":4.5,"q":null,"m":90,"e":6220}],[-36,{"n":4.5,"q":null,"m":90,"e":6228}],[-35,{"n":4,"q":null,"m":90,"e":6239}],[-34,{"n":5,"q":null,"m":26,"e":6257,"s":1}],[-33,{"n":5,"q":null,"m":90,"e":6259}],[-32,{"n":5.5,"q":null,"m":90,"e":6273}],[-31,{"n":5,"q":null,"m":90,"e":6279}],[-30,{"n":4,"q":null,"m":45,"e":6297}],[-29,{"n":5,"q":null,"m":90,"e":6299}],[-28,{"n":4.5,"q":null,"m":90,"e":6309}],[-26,{"n":5,"q":null,"m":90,"e":6330}],[-25,{"n":6,"q":null,"m":90,"e":6338,"g":1}],[-23,{"n":5,"q":null,"m":90,"e":6358}],[-22,{"n":4,"q":null,"m":90,"e":6376}],[-21,{"n":6,"q":null,"m":90,"e":6380}],[-20,{"n":4.5,"q":null,"m":90,"e":6390}],[-19,{"n":4.5,"q":null,"m":90,"e":6400}],[-18,{"n":4.5,"q":null,"m":90,"e":6404}],[-16,{"n":5,"q":null,"m":90,"e":6431}],[-15,{"n":5,"q":null,"m":90,"e":6444}],[-14,{"n":6,"q":null,"m":90,"e":6448}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":6,"q":null,"m":90,"e":6484}],[-10,{"n":5,"q":null,"m":90,"e":6488}],[-9,{"n":5,"q":null,"m":90,"e":6505}],[-8,{"n":4,"q":null,"m":53,"e":6508}],[-7,{"n":4,"q":null,"m":90,"e":6527}],[-6,{"n":6.5,"q":null,"m":90,"e":6528}],[-5,{"n":4,"q":null,"m":90,"e":6545}],[-4,{"n":5,"q":null,"m":90,"e":6557}],[-3,{"n":4.5,"q":null,"m":80,"e":6560}],[-2,{"n":5.5,"q":null,"m":90,"e":6570}],[2,{"n":6,"q":null,"m":90,"e":10579}],[-1,{"n":3,"q":null,"m":90,"e":6581}],[1,{"n":5,"q":null,"m":90,"e":10938}]],"fo":[[6338,[{"t":"Y"}]]]}],[5171,{"n":"Dugimont","f":"Rémy","fp":"A","r":28,"c":101,"s":{"Og":14,"Os":200.5,"On":35,"Oa":5.73,"Od":1.18,"Om":2366,"Oam":68,"Odm":28,"pm":24,"pa":11,"Omsn":6.5},"p":[[-38,{"n":7,"q":null,"m":90,"e":6217,"g":2}],[-37,{"n":5,"q":null,"m":61,"e":6220}],[-36,{"n":6,"q":null,"m":90,"e":6228}],[-35,{"n":6,"q":null,"m":86,"e":6239}],[-34,{"n":5,"q":null,"m":25,"e":6257,"s":1}],[-33,{"n":5,"q":null,"m":73,"e":6259}],[-32,{"n":6,"q":null,"m":68,"e":6273}],[-31,{"n":6.5,"q":null,"m":90,"e":6279,"g":1}],[-30,{"n":6,"q":null,"m":90,"e":6297}],[-29,{"n":5.5,"q":null,"m":90,"e":6299}],[-28,{"n":6,"q":null,"m":89,"e":6309}],[-27,{"n":3.5,"q":null,"m":81,"e":6318}],[-26,{"n":6.5,"q":null,"m":90,"e":6330,"g":1}],[-25,{"n":4.5,"q":null,"m":90,"e":6338}],[-24,{"n":5,"q":null,"m":19,"e":6348,"s":1}],[-23,{"n":8,"q":null,"m":90,"e":6358,"g":2}],[-22,{"n":6,"q":null,"m":25,"e":6376,"s":1}],[-21,{"n":5,"q":null,"m":62,"e":6380}],[-20,{"n":5.5,"q":null,"m":87,"e":6390}],[-18,{"n":7,"q":null,"m":90,"e":6404,"g":1}],[-17,{"n":6.5,"q":null,"m":90,"e":6421,"g":1}],[-16,{"n":7,"q":null,"m":90,"e":6431,"g":1}],[-15,{"n":5,"q":null,"m":23,"e":6444,"s":1}],[-14,{"n":6,"q":null,"m":90,"e":6448}],[-13,{"n":4.5,"q":null,"m":11,"e":6462,"s":1}],[-12,{"n":5.5,"q":null,"m":90,"e":6474}],[-11,{"n":7.5,"q":null,"m":85,"e":6484,"g":1}],[-10,{"n":6.5,"q":null,"m":87,"e":6488,"g":1}],[-9,{"n":4.5,"q":null,"m":19,"e":6505,"s":1}],[-8,{"n":7,"q":null,"m":65,"e":6508,"g":1}],[-7,{"n":4,"q":null,"m":66,"e":6527}],[-6,{"n":8.5,"q":null,"m":81,"e":6528,"g":2}],[-5,{"n":4.5,"q":null,"m":28,"e":6545,"s":1}],[-4,{"n":4,"q":null,"m":18,"e":6557,"s":1}],[-3,{"n":4.5,"q":null,"m":37,"e":6560,"s":1}]],"fo":[[6228,[{"t":"Y"}]]]}],[5369,{"n":"Camara","f":"Ousoumane","fp":"MD","r":8,"c":101,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":0.42,"Om":142,"Oam":28,"Odm":35,"pm":5},"p":[[-36,{"n":5.5,"q":null,"m":80,"e":6228}],[-34,{"n":5,"q":null,"m":3,"e":6257,"s":1}],[-32,{"n":5,"q":null,"m":7,"e":6273,"s":1}],[-20,{"n":4.5,"q":null,"m":2,"e":6390,"s":1}],[-1,{"n":4.5,"q":null,"m":50,"e":6581}]],"fo":[[6228,[{"t":"Y"}]]]}],[5378,{"n":"Coeff","f":"Alexandre","fp":"DC","r":13,"c":101,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":2,"Os":190,"On":37,"Oa":5.14,"Od":0.8,"Om":2821,"Oam":76,"Odm":28,"pd":24,"pm":13,"Omsn":7},"p":[[-38,{"n":5.5,"q":null,"m":14,"e":6217,"s":1}],[-37,{"n":5,"q":null,"m":29,"e":6220,"s":1}],[-36,{"n":6,"q":null,"m":90,"e":6228}],[-35,{"n":5,"q":null,"m":4,"e":6239,"s":1}],[-34,{"n":3.5,"q":null,"m":65,"e":6257}],[-33,{"n":7,"q":null,"m":90,"e":6259,"g":1}],[-32,{"n":7,"q":null,"m":83,"e":6273,"g":1}],[-31,{"n":4.5,"q":null,"m":90,"e":6279}],[-30,{"n":4.5,"q":null,"m":61,"e":6297,"s":1}],[-28,{"n":4,"q":null,"m":90,"e":6309}],[-27,{"n":5,"q":null,"m":90,"e":6318}],[-26,{"n":5.5,"q":null,"m":90,"e":6330}],[-25,{"n":5,"q":null,"m":2,"e":6338,"s":1}],[-24,{"n":5,"q":null,"m":90,"e":6348}],[-23,{"n":4,"q":null,"m":27,"e":6358,"s":1}],[-22,{"n":4,"q":null,"m":90,"e":6376}],[-21,{"n":5,"q":null,"m":90,"e":6380}],[-19,{"n":4.5,"q":null,"m":90,"e":6400}],[-17,{"n":5.5,"q":null,"m":90,"e":6421}],[-16,{"n":6,"q":null,"m":90,"e":6431}],[-15,{"n":5.5,"q":null,"m":90,"e":6444}],[-14,{"n":6,"q":null,"m":90,"e":6448}],[-13,{"n":5,"q":null,"m":90,"e":6462}],[-12,{"n":4.5,"q":null,"m":90,"e":6474}],[-11,{"n":4.5,"q":null,"m":23,"e":6484,"s":1}],[-10,{"n":4.5,"q":null,"m":90,"e":6488}],[-9,{"n":5.5,"q":null,"m":90,"e":6505}],[-8,{"n":5.5,"q":null,"m":90,"e":6508}],[-7,{"n":5,"q":null,"m":90,"e":6527}],[-6,{"n":6,"q":null,"m":90,"e":6528}],[-5,{"n":6,"q":null,"m":83,"e":6545}],[-4,{"n":6,"q":null,"m":90,"e":6557}],[-3,{"n":4.5,"q":null,"m":90,"e":6560}],[-2,{"n":5.5,"q":null,"m":90,"e":6570}],[2,{"n":5.5,"q":null,"m":90,"e":10579}],[-1,{"n":4,"q":null,"m":90,"e":6581}],[1,{"n":5,"q":null,"m":90,"e":10938}]],"fo":[[6279,[{"t":"Y"}]]]}],[6508,{"n":"Sinayoko","f":"Lassine","fp":"A","r":6,"c":101,"s":{"s":12,"n":2,"a":6,"m":121,"am":61,"dm":36,"Ss":6,"Sn":1,"Sa":6,"Sm":35,"Sam":35,"Os":21,"On":4,"Oa":5.25,"Od":0.87,"Om":125,"Oam":31,"Odm":40,"pa":4},"p":[[-34,{"n":4.5,"q":null,"m":3,"e":6257,"s":1}],[-32,{"n":4.5,"q":null,"m":1,"e":6273,"s":1}],[2,{"n":6,"q":null,"m":86,"e":10579}],[1,{"n":6,"q":null,"m":35,"e":10938,"s":1}]],"fo":[[10938,[{"t":"Y"}]]]}],[6872,{"n":"Chapelle","f":"Kryss","fp":"MO","r":1,"c":101}],[6873,{"n":"Ponti","f":"Ryan","fp":"MO","r":1,"c":101}],[7202,{"n":"Jubal","f":"","fp":"DC","r":25,"c":101,"s":{"s":11,"n":2,"a":5.5,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Og":2,"Oao":1,"Os":195.5,"On":36,"Oa":5.43,"Od":0.94,"Om":3240,"Oam":90,"pd":36,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":90,"e":6217}],[-37,{"n":4.5,"q":null,"m":90,"e":6220,"a":1}],[-35,{"n":5,"q":null,"m":90,"e":6239}],[-34,{"n":3,"q":null,"m":90,"e":6257}],[-33,{"n":6,"q":null,"m":90,"e":6259,"g":1}],[-32,{"n":7.5,"q":null,"m":90,"e":6273}],[-31,{"n":5.5,"q":null,"m":90,"e":6279}],[-30,{"n":5.5,"q":null,"m":90,"e":6297}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":5,"q":null,"m":90,"e":6309}],[-27,{"n":5.5,"q":null,"m":90,"e":6318}],[-26,{"n":6,"q":null,"m":90,"e":6330}],[-25,{"n":5.5,"q":null,"m":90,"e":6338}],[-24,{"n":6,"q":null,"m":90,"e":6348}],[-23,{"n":6,"q":null,"m":90,"e":6358}],[-22,{"n":4,"q":null,"m":90,"e":6376}],[-20,{"n":6.5,"q":null,"m":90,"e":6390}],[-19,{"n":4.5,"q":null,"m":90,"e":6400}],[-18,{"n":5,"q":null,"m":90,"e":6404}],[-17,{"n":6,"q":null,"m":90,"e":6421}],[-16,{"n":7,"q":null,"m":90,"e":6431,"g":1}],[-15,{"n":5,"q":null,"m":90,"e":6444}],[-14,{"n":7.5,"q":null,"m":90,"e":6448}],[-13,{"n":4.5,"q":null,"m":90,"e":6462}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":6,"q":null,"m":90,"e":6484}],[-10,{"n":6,"q":null,"m":90,"e":6488}],[-9,{"n":4.5,"q":null,"m":90,"e":6505}],[-8,{"n":6,"q":null,"m":90,"e":6508}],[-7,{"n":4,"q":null,"m":90,"e":6527}],[-6,{"n":5.5,"q":null,"m":90,"e":6528}],[-5,{"n":4.5,"q":null,"m":90,"e":6545}],[-4,{"n":5,"q":null,"m":90,"e":6557}],[-3,{"n":5,"q":null,"m":90,"e":6560}],[2,{"n":5.5,"q":null,"m":90,"e":10579}],[1,{"n":5.5,"q":null,"m":90,"e":10938}]],"fo":[[6259,[{"t":"Y"}]],[6279,[{"t":"Y"}]],[6338,[{"t":"Y"}]]]}],[7558,{"n":"De Percin","f":"Théo","fp":"G","r":5,"c":101}],[7623,{"n":"Joly","f":"Paul","fp":"DC","r":1,"c":101}],[7797,{"n":"Mercier","f":"Nicolas","fp":"MO","r":1,"c":101,"s":{"s":5,"n":1,"a":5,"m":10,"am":10,"Os":5,"On":1,"Oa":5,"Om":10,"Oam":10,"pm":1},"p":[[2,{"n":5,"q":null,"m":10,"e":10579,"s":1}]]}],[7827,{"n":"Ben Fredj","f":"Mohammed","fp":"A","r":3,"c":101,"s":{"s":4.5,"n":1,"a":4.5,"m":4,"am":4,"Os":4.5,"On":1,"Oa":4.5,"Om":4,"Oam":4,"pa":1},"p":[[2,{"n":4.5,"q":null,"m":4,"e":10579,"s":1}]]}],[8000,{"n":"Danois","f":"Kévin","fp":"A","r":1,"c":101}],[8492,{"n":"Mohamed","f":"Iyad","fp":"MD","r":5,"c":101}],[488,{"n":"Vincensini","f":"Thomas","fp":"G","r":16,"c":147,"s":{"s":6,"n":1,"a":6,"m":90,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":6,"On":1,"Oa":6,"Om":90,"Oam":90,"pg":1},"p":[[1,{"n":6,"q":null,"m":90,"e":10930}]]}],[1268,{"n":"Salles-Lamonge","f":"Sebastien","fp":"MO","r":10,"c":147}],[1405,{"n":"Saadi","f":"Idriss","fp":"A","r":15,"c":147,"s":{"s":4.5,"n":1,"a":4.5,"m":19,"am":19,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":19,"Sam":19,"Os":36,"On":8,"Oa":4.5,"Od":0.27,"Om":137,"Oam":17,"Odm":9,"pa":8},"p":[[-29,{"n":4.5,"q":null,"m":10,"e":5927,"s":1}],[-6,{"n":5,"q":null,"m":32,"e":6156,"s":1}],[-5,{"n":4.5,"q":null,"m":19,"e":6164,"s":1}],[-4,{"n":4,"q":null,"m":13,"e":6177,"s":1}],[-3,{"n":4.5,"q":null,"m":10,"e":6186,"s":1}],[-2,{"n":4.5,"q":null,"m":27,"e":6196,"s":1}],[-1,{"n":4.5,"q":null,"m":7,"e":6202,"s":1}],[1,{"n":4.5,"q":null,"m":19,"e":10930,"s":1}]]}],[2637,{"n":"Kaiboue","f":"Kylian","fp":"DL","r":8,"c":147,"s":{"s":4.5,"n":1,"a":4.5,"m":81,"am":81,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":81,"Sam":81,"Os":4.5,"On":1,"Oa":4.5,"Om":81,"Oam":81,"pm":1},"p":[[1,{"n":4.5,"q":null,"m":81,"e":10930}]]}],[2786,{"n":"Taoui","f":"Adil","fp":"A","r":14,"c":147,"s":{"s":4,"n":1,"a":4,"m":27,"am":27,"Ss":4,"Sn":1,"Sa":4,"Sm":27,"Sam":27,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"Om":46,"Oam":23,"Odm":6,"pa":2},"p":[[-1,{"n":4.5,"q":null,"m":19,"e":6578,"s":1}],[1,{"n":4,"q":null,"m":27,"e":10930,"s":1}]]}],[4865,{"n":"Ducrocq","f":"Tom","fp":"MD","r":14,"c":147,"s":{"s":5.5,"n":1,"a":5.5,"m":90,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":5.5,"On":1,"Oa":5.5,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":5.5,"q":null,"m":90,"e":10930}]],"fo":[[10930,[{"t":"Y"}]]]}],[5093,{"n":"Santelli","f":"Benjamin","fp":"A","r":12,"c":147,"s":{"s":5,"n":1,"a":5,"m":63,"am":63,"Ss":5,"Sn":1,"Sa":5,"Sm":63,"Sam":63,"Os":5,"On":1,"Oa":5,"Om":63,"Oam":63,"pa":1},"p":[[1,{"n":5,"q":null,"m":63,"e":10930}]]}],[5163,{"n":"Sainati","f":"Joris","fp":"DC","r":8,"c":147,"s":{"s":5,"n":1,"a":5,"m":90,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Oao":1,"Os":56.5,"On":12,"Oa":4.71,"Od":0.92,"Om":1033,"Oam":86,"Odm":10,"pd":12},"p":[[-38,{"n":5,"q":null,"m":90,"e":6209}],[-36,{"n":5,"q":null,"m":76,"e":6236}],[-34,{"n":4,"q":null,"m":90,"e":6254}],[-23,{"n":5.5,"q":null,"m":90,"e":6367}],[-16,{"n":5.5,"q":null,"m":90,"e":6428}],[-15,{"n":4,"q":null,"m":90,"e":6443,"a":1}],[-14,{"n":5,"q":null,"m":90,"e":6457}],[-13,{"n":5.5,"q":null,"m":90,"e":6467}],[-10,{"n":4,"q":null,"m":57,"e":6494}],[-9,{"n":2.5,"q":null,"m":90,"e":6498}],[-8,{"n":5.5,"q":null,"m":90,"e":6511}],[1,{"n":5,"q":null,"m":90,"e":10930}]],"fo":[[10930,[{"t":"Y"}]]]}],[6187,{"n":"Palun","f":"Lloyd","fp":"DL","r":10,"c":147,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":1,"Os":91,"On":18,"Oa":5.06,"Od":0.8,"Om":1247,"Oam":69,"Odm":35,"pd":18,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":90,"e":6213}],[-37,{"n":6.5,"q":null,"m":90,"e":6223}],[-35,{"n":5,"q":null,"m":27,"e":6242,"s":1}],[-31,{"n":4.5,"q":null,"m":90,"e":6287}],[-30,{"n":5,"q":null,"m":90,"e":6291}],[-28,{"n":5,"q":null,"m":12,"e":6311,"s":1}],[-23,{"n":5,"q":null,"m":6,"e":6363,"s":1}],[-17,{"n":3.5,"q":null,"m":90,"e":6426}],[-14,{"n":4,"q":null,"m":90,"e":6455}],[-9,{"n":5,"q":null,"m":22,"e":6500,"s":1}],[-36,{"n":6,"q":null,"m":90,"e":6237}],[-34,{"n":5,"q":null,"m":10,"e":6252,"s":1}],[-29,{"n":6,"q":null,"m":90,"e":6298}],[-24,{"n":5,"q":null,"m":90,"e":6351}],[-16,{"n":4,"q":null,"m":90,"e":6429}],[-15,{"n":5,"q":null,"m":90,"e":6441}],[-11,{"n":6,"q":null,"m":90,"e":6481,"g":1}],[1,{"n":4.5,"q":null,"m":90,"e":10930}]],"fo":[[6351,[{"t":"Y"}]]]}],[7982,{"n":"Diongue","f":"Maguette","fp":"MD","r":8,"c":147,"s":{"g":1,"s":6.5,"n":1,"a":6.5,"m":71,"am":71,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":71,"Sam":71,"Og":1,"Os":6.5,"On":1,"Oa":6.5,"Om":71,"Oam":71,"pm":1,"Smsn":6.5,"Omsn":6.5},"p":[[1,{"n":6.5,"q":null,"m":71,"e":10930,"g":1}]]}],[7987,{"n":"Bocognano","f":"Yohan","fp":"DC","r":10,"c":147}],[8006,{"n":"Quemper","f":"Stephen","fp":"DL","r":8,"c":147}],[8007,{"n":"Jourda","f":"Alexandre","fp":"DL","r":1,"c":147}],[8008,{"n":"Le Cardinal","f":"Julien","fp":"DC","r":12,"c":147,"s":{"s":4,"n":1,"a":4,"m":90,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":4,"On":1,"Oa":4,"Om":90,"Oam":90,"pd":1},"p":[[1,{"n":4,"q":null,"m":90,"e":10930}]]}],[8033,{"n":"Roncaglia","f":"Anthony","fp":"MD","r":5,"c":147,"s":{"s":5,"n":1,"a":5,"m":9,"am":9,"Ss":5,"Sn":1,"Sa":5,"Sm":9,"Sam":9,"Os":5,"On":1,"Oa":5,"Om":9,"Oam":9,"pm":1},"p":[[1,{"n":5,"q":null,"m":9,"e":10930,"s":1}]]}],[8043,{"n":"Guidi","f":"Dominique","fp":"DC","r":12,"c":147}],[8045,{"n":"Placide","f":"Johny","fp":"G","r":7,"c":147}],[8047,{"n":"Coulibaly","f":"Gary","fp":"MD","r":1,"c":147}],[8051,{"n":"Robic","f":"Antony","fp":"A","r":6,"c":147,"s":{"s":5.5,"n":1,"a":5.5,"m":90,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":5.5,"On":1,"Oa":5.5,"Om":90,"Oam":90,"pa":1},"p":[[1,{"n":5.5,"q":null,"m":90,"e":10930}]]}],[8054,{"n":"Guibert","f":"Samuel","fp":"DC","r":1,"c":147}],[8079,{"n":"Schur","f":"Kevin","fp":"MO","r":5,"c":147,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":4.5,"On":1,"Oa":4.5,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":4.5,"q":null,"m":90,"e":10930}]]}],[8080,{"n":"Vincent","f":"Christophe","fp":"MD","r":16,"c":147,"s":{"s":6,"n":1,"a":6,"m":90,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":6,"On":1,"Oa":6,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":6,"q":null,"m":90,"e":10930}]]}],[8081,{"n":"Ben Saada","f":"Chaouki","fp":"MO","r":5,"c":147}],[8899,{"n":"Angelini","f":"Anthony","fp":"MD","r":1,"c":147}],[78,{"n":"Oniangué","f":"Prince","fp":"MD","r":11,"c":5,"s":{"s":12,"n":2,"a":6,"d":0.71,"m":180,"am":90,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":90,"Sam":90,"Og":2,"Os":179,"On":35,"Oa":5.11,"Od":0.87,"Om":2821,"Oam":81,"Odm":19,"pd":17,"pm":18,"Omsn":6},"p":[[2,{"n":5.5,"q":null,"m":90,"e":10574}],[1,{"n":6.5,"q":null,"m":90,"e":10939}],[-38,{"n":6.5,"q":null,"m":90,"e":6208,"g":1}],[-37,{"n":4.5,"q":null,"m":23,"e":6225}],[-35,{"n":5.5,"q":null,"m":80,"e":6244}],[-32,{"n":4.5,"q":null,"m":65,"e":6270}],[-31,{"n":5.5,"q":null,"m":90,"e":6280}],[-30,{"n":4.5,"q":null,"m":90,"e":6290}],[-29,{"n":4,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":90,"e":6313}],[-27,{"n":3,"q":null,"m":90,"e":6319}],[-26,{"n":6,"q":null,"m":90,"e":6337,"g":1}],[-22,{"n":3.5,"q":null,"m":90,"e":6370}],[-21,{"n":5,"q":null,"m":59,"e":6378,"s":1}],[-19,{"n":4.5,"q":null,"m":90,"e":6410}],[-17,{"n":4.5,"q":null,"m":52,"e":6419}],[-13,{"n":4.5,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":90,"e":6469}],[-11,{"n":5.5,"q":null,"m":90,"e":6487}],[-10,{"n":6,"q":null,"m":90,"e":6489}],[-9,{"n":5.5,"q":null,"m":90,"e":6504}],[-8,{"n":5.5,"q":null,"m":90,"e":6509}],[-7,{"n":3.5,"q":null,"m":90,"e":6523}],[-5,{"n":4.5,"q":null,"m":76,"e":6547}],[-4,{"n":6,"q":null,"m":90,"e":6548}],[-3,{"n":7,"q":null,"m":90,"e":6564}],[-1,{"n":5.5,"q":null,"m":90,"e":6583}],[-36,{"n":5.5,"q":null,"m":90,"e":6228}],[-34,{"n":5,"q":null,"m":33,"e":6249,"s":1}],[-24,{"n":5.5,"q":null,"m":56,"e":6349}],[-23,{"n":5,"q":null,"m":90,"e":6359}],[-20,{"n":5,"q":null,"m":37,"e":6388}],[-18,{"n":5.5,"q":null,"m":90,"e":6404}],[-6,{"n":5.5,"q":null,"m":90,"e":6529}],[-2,{"n":5.5,"q":null,"m":90,"e":6568}]],"fo":[[6225,[{"t":"I"}]],[6349,[{"t":"I"}]],[6244,[{"t":"Y"}]]]}],[162,{"n":"Riou","f":"Rémy","fp":"G","r":12,"c":5,"s":{"s":13.5,"n":2,"a":6.75,"d":1.06,"m":180,"am":90,"Ss":7.5,"Sn":1,"Sa":7.5,"Sm":90,"Sam":90,"Oao":1,"Os":138,"On":25,"Oa":5.52,"Od":1.03,"Om":2248,"Oam":90,"pg":25},"p":[[-33,{"n":6,"q":null,"m":90,"e":6266}],[-15,{"n":6,"q":null,"m":90,"e":6439}],[-14,{"n":5,"q":null,"m":90,"e":6449}],[-34,{"n":3.5,"q":null,"m":88,"e":6249}],[-32,{"n":4,"q":null,"m":90,"e":6270}],[-31,{"n":4,"q":null,"m":90,"e":6280,"a":1}],[-30,{"n":6,"q":null,"m":90,"e":6290}],[-29,{"n":5,"q":null,"m":90,"e":6307}],[-21,{"n":5.5,"q":null,"m":90,"e":6378}],[-20,{"n":6.5,"q":null,"m":90,"e":6388}],[-19,{"n":5.5,"q":null,"m":90,"e":6410}],[-18,{"n":6,"q":null,"m":90,"e":6404}],[-13,{"n":4.5,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":90,"e":6469}],[-11,{"n":5,"q":null,"m":90,"e":6487}],[-8,{"n":6.5,"q":null,"m":90,"e":6509}],[-7,{"n":4,"q":null,"m":90,"e":6523}],[-6,{"n":7.5,"q":null,"m":90,"e":6529}],[-5,{"n":5,"q":null,"m":90,"e":6547}],[-4,{"n":6,"q":null,"m":90,"e":6548}],[-3,{"n":6,"q":null,"m":90,"e":6564}],[-2,{"n":6,"q":null,"m":90,"e":6568}],[2,{"n":6,"q":null,"m":90,"e":10574}],[-1,{"n":6,"q":null,"m":90,"e":6583}],[1,{"n":7.5,"q":null,"m":90,"e":10939}]],"fo":[[6249,[{"t":"R"}]]]}],[322,{"n":"Jeannot","f":"Benjamin","fp":"A","r":14,"c":5,"s":{"s":9,"n":2,"a":4.5,"m":29,"am":15,"dm":5,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":18,"Sam":18,"Og":4,"Os":161.5,"On":34,"Oa":4.75,"Od":0.81,"Om":941,"Oam":28,"Odm":25,"pm":4,"pa":30,"Omsn":6},"p":[[-38,{"n":6.5,"q":null,"m":25,"e":6208,"g":1,"s":1}],[-37,{"n":5,"q":null,"m":71,"e":6225}],[-36,{"n":5,"q":null,"m":80,"e":6228}],[-35,{"n":4.5,"q":null,"m":10,"e":6244,"s":1}],[-34,{"n":4,"q":null,"m":16,"e":6249,"s":1}],[-32,{"n":5,"q":null,"m":57,"e":6270}],[-31,{"n":5,"q":null,"m":67,"e":6280}],[-30,{"n":7.5,"q":null,"m":78,"e":6290,"g":2}],[-29,{"n":4.5,"q":null,"m":26,"e":6307,"s":1}],[-28,{"n":4,"q":null,"m":30,"e":6313,"s":1}],[-27,{"n":5,"q":null,"m":21,"e":6319,"s":1}],[-26,{"n":4.5,"q":null,"m":10,"e":6337,"s":1}],[-23,{"n":4.5,"q":null,"m":20,"e":6359,"s":1}],[-22,{"n":6,"q":null,"m":83,"e":6370}],[-21,{"n":4,"q":null,"m":61,"e":6378}],[-20,{"n":5,"q":null,"m":30,"e":6388,"s":1}],[-19,{"n":4,"q":null,"m":21,"e":6410,"s":1}],[-18,{"n":6,"q":null,"m":16,"e":6404,"g":1,"s":1}],[-16,{"n":3.5,"q":null,"m":7,"e":6433,"s":1}],[-15,{"n":4.5,"q":null,"m":9,"e":6439,"s":1}],[-14,{"n":4.5,"q":null,"m":28,"e":6449,"s":1}],[-13,{"n":4.5,"q":null,"m":11,"e":6466,"s":1}],[-12,{"n":4.5,"q":null,"m":7,"e":6469,"s":1}],[-10,{"n":4.5,"q":null,"m":1,"e":6489,"s":1}],[-9,{"n":4,"q":null,"m":16,"e":6504,"s":1}],[-8,{"n":4,"q":null,"m":4,"e":6509,"s":1}],[-7,{"n":4.5,"q":null,"m":9,"e":6523,"s":1}],[-5,{"n":4.5,"q":null,"m":30,"e":6547,"s":1}],[-4,{"n":4.5,"q":null,"m":45,"e":6548,"s":1}],[-3,{"n":6,"q":null,"m":7,"e":6564,"s":1}],[-2,{"n":4.5,"q":null,"m":9,"e":6568,"s":1}],[2,{"n":4.5,"q":null,"m":11,"e":10574,"s":1}],[-1,{"n":4.5,"q":null,"m":7,"e":6583,"s":1}],[1,{"n":4.5,"q":null,"m":18,"e":10939,"s":1}]],"fo":[[6270,[{"t":"I"}]],[6208,[{"t":"Y"}]]]}],[335,{"n":"Rivierez","f":"Jonathan","fp":"DL","r":10,"c":5,"s":{"s":12,"n":2,"a":6,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":159,"On":33,"Oa":4.82,"Od":0.86,"Om":2928,"Oam":89,"Odm":6,"pd":33},"p":[[-37,{"n":4.5,"q":null,"m":90,"e":6225}],[-36,{"n":5.5,"q":null,"m":90,"e":6228}],[-35,{"n":5,"q":null,"m":90,"e":6244}],[-34,{"n":4,"q":null,"m":90,"e":6249}],[-33,{"n":5,"q":null,"m":90,"e":6266}],[-32,{"n":3.5,"q":null,"m":90,"e":6270}],[-30,{"n":4,"q":null,"m":78,"e":6290}],[-29,{"n":4,"q":null,"m":90,"e":6307}],[-24,{"n":5,"q":null,"m":90,"e":6349}],[-23,{"n":5,"q":null,"m":90,"e":6359}],[-22,{"n":4,"q":null,"m":90,"e":6370}],[-21,{"n":3.5,"q":null,"m":90,"e":6378}],[-20,{"n":5,"q":null,"m":90,"e":6388}],[-19,{"n":5,"q":null,"m":90,"e":6410}],[-18,{"n":6,"q":null,"m":90,"e":6404}],[-17,{"n":3.5,"q":null,"m":90,"e":6419}],[-16,{"n":5,"q":null,"m":90,"e":6433}],[-15,{"n":5.5,"q":null,"m":90,"e":6439}],[-14,{"n":5,"q":null,"m":90,"e":6449}],[-13,{"n":4.5,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":90,"e":6469}],[-11,{"n":4.5,"q":null,"m":90,"e":6487}],[-9,{"n":2.5,"q":null,"m":60,"e":6504}],[-8,{"n":6,"q":null,"m":90,"e":6509}],[-7,{"n":4,"q":null,"m":90,"e":6523}],[-6,{"n":6,"q":null,"m":90,"e":6529}],[-5,{"n":5,"q":null,"m":90,"e":6547}],[-4,{"n":5.5,"q":null,"m":90,"e":6548}],[-3,{"n":5.5,"q":null,"m":90,"e":6564}],[-2,{"n":5.5,"q":null,"m":90,"e":6568}],[2,{"n":6,"q":null,"m":90,"e":10574}],[-1,{"n":5,"q":null,"m":90,"e":6583}],[1,{"n":6,"q":null,"m":90,"e":10939}]],"fo":[[6244,[{"t":"Y"}]],[6270,[{"t":"Y"}]],[6307,[{"t":"Y"}]],[6349,[{"t":"Y"}]]]}],[376,{"n":"Mendy","f":"Alexandre","fp":"A","r":15,"c":5,"s":{"g":4,"s":14.5,"n":2,"a":7.25,"d":1.77,"m":151,"am":76,"dm":5,"Sg":3,"Ss":8.5,"Sn":1,"Sa":8.5,"Sm":72,"Sam":72,"Og":8,"Os":152,"On":32,"Oa":4.75,"Od":1.1,"Om":1980,"Oam":62,"Odm":26,"pa":32,"Smsn":6,"Omsn":5},"p":[[-25,{"n":5,"q":null,"m":72,"e":6339}],[-38,{"n":5,"q":null,"m":45,"e":6208}],[-37,{"n":3.5,"q":null,"m":71,"e":6225}],[-36,{"n":5,"q":null,"m":10,"e":6228,"s":1}],[-35,{"n":5,"q":null,"m":21,"e":6244,"s":1}],[-34,{"n":4,"q":null,"m":57,"e":6249}],[-32,{"n":5,"q":null,"m":79,"e":6270}],[-31,{"n":6.5,"q":null,"m":82,"e":6280,"g":1}],[-30,{"n":4,"q":null,"m":24,"e":6290,"s":1}],[-29,{"n":4,"q":null,"m":72,"e":6307}],[-28,{"n":4,"q":null,"m":60,"e":6313}],[-27,{"n":3.5,"q":null,"m":69,"e":6319}],[-26,{"n":6.5,"q":null,"m":80,"e":6337,"g":1}],[-24,{"n":4,"q":null,"m":74,"e":6349}],[-23,{"n":4,"q":null,"m":90,"e":6359}],[-22,{"n":4.5,"q":null,"m":90,"e":6370}],[-21,{"n":5,"q":null,"m":90,"e":6378,"g":1}],[-20,{"n":4.5,"q":null,"m":90,"e":6388}],[-19,{"n":6,"q":null,"m":69,"e":6410,"g":1}],[-18,{"n":6,"q":null,"m":16,"e":6404,"s":1}],[-17,{"n":5,"q":null,"m":38,"e":6419,"s":1}],[-15,{"n":4.5,"q":null,"m":89,"e":6439}],[-14,{"n":4.5,"q":null,"m":72,"e":6449}],[-13,{"n":4,"q":null,"m":19,"e":6466,"s":1}],[-12,{"n":4,"q":null,"m":64,"e":6469}],[-11,{"n":4,"q":null,"m":25,"e":6487,"s":1}],[-10,{"n":4.5,"q":null,"m":80,"e":6489}],[-9,{"n":3,"q":null,"m":74,"e":6504}],[-8,{"n":5,"q":null,"m":86,"e":6509}],[-7,{"n":4,"q":null,"m":21,"e":6523,"s":1}],[2,{"n":6,"q":null,"m":79,"e":10574,"g":1}],[1,{"n":8.5,"q":null,"m":72,"e":10939,"g":3}]],"fo":[[6290,[{"t":"Y"}]]]}],[1431,{"n":"Gonçalves","f":"Anthony","fp":"MD","r":5,"c":5,"s":{"s":5.5,"n":1,"a":5.5,"m":7,"am":7,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":7,"Sam":7,"Os":130,"On":26,"Oa":5,"Od":0.69,"Om":1219,"Oam":47,"Odm":35,"pm":26},"p":[[-38,{"n":6,"q":null,"m":12,"e":6208,"s":1}],[-30,{"n":4.5,"q":null,"m":12,"e":6290,"s":1}],[-29,{"n":5.5,"q":null,"m":18,"e":6307,"s":1}],[-28,{"n":4.5,"q":null,"m":90,"e":6313}],[-26,{"n":4,"q":null,"m":90,"e":6337}],[-25,{"n":5,"q":null,"m":90,"e":6339}],[-24,{"n":5,"q":null,"m":16,"e":6349,"s":1}],[-23,{"n":4.5,"q":null,"m":64,"e":6359}],[-22,{"n":5.5,"q":null,"m":7,"e":6370,"s":1}],[-17,{"n":4.5,"q":null,"m":8,"e":6419,"s":1}],[-16,{"n":5,"q":null,"m":20,"e":6433,"s":1}],[-15,{"n":5,"q":null,"m":1,"e":6439,"s":1}],[-14,{"n":4,"q":null,"m":62,"e":6449}],[-12,{"n":5.5,"q":null,"m":63,"e":6469}],[-11,{"n":5,"q":null,"m":90,"e":6487}],[-10,{"n":5,"q":null,"m":25,"e":6489,"s":1}],[-9,{"n":4.5,"q":null,"m":26,"e":6504,"s":1}],[-8,{"n":5.5,"q":null,"m":86,"e":6509}],[-7,{"n":4,"q":null,"m":16,"e":6523,"s":1}],[-6,{"n":5,"q":null,"m":16,"e":6529,"s":1}],[-5,{"n":4,"q":null,"m":76,"e":6547}],[-4,{"n":5,"q":null,"m":73,"e":6548}],[-3,{"n":7,"q":null,"m":89,"e":6564}],[-2,{"n":5.5,"q":null,"m":90,"e":6568}],[-1,{"n":5.5,"q":null,"m":72,"e":6583,"s":1}],[1,{"n":5.5,"q":null,"m":7,"e":10939,"s":1}]],"fo":[[6290,[{"t":"Y"}]],[6313,[{"t":"Y"}]]]}],[2045,{"n":"Deminguet","f":"Jessy","fp":"MO","r":18,"c":5,"s":{"s":12.5,"n":2,"a":6.25,"d":1.77,"m":180,"am":90,"Ss":7.5,"Sn":1,"Sa":7.5,"Sm":90,"Sam":90,"Og":4,"Os":192,"On":36,"Oa":5.33,"Od":0.89,"Om":2691,"Oam":75,"Odm":25,"pm":36,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":90,"e":6208}],[-36,{"n":6,"q":null,"m":89,"e":6228}],[-35,{"n":5.5,"q":null,"m":90,"e":6244}],[-34,{"n":7,"q":null,"m":90,"e":6249,"g":1}],[-32,{"n":5,"q":null,"m":90,"e":6270}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[-30,{"n":6,"q":null,"m":90,"e":6290}],[-29,{"n":4.5,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":90,"e":6313}],[-27,{"n":4.5,"q":null,"m":69,"e":6319}],[-26,{"n":6.5,"q":null,"m":90,"e":6337}],[-25,{"n":6,"q":null,"m":90,"e":6339}],[-24,{"n":6,"q":null,"m":63,"e":6349}],[-23,{"n":5.5,"q":null,"m":90,"e":6359}],[-22,{"n":6,"q":null,"m":26,"e":6370,"g":1,"s":1}],[-21,{"n":5,"q":null,"m":90,"e":6378}],[-20,{"n":5,"q":null,"m":63,"e":6388}],[-19,{"n":4.5,"q":null,"m":90,"e":6410}],[-18,{"n":5.5,"q":null,"m":90,"e":6404}],[-17,{"n":3.5,"q":null,"m":82,"e":6419}],[-16,{"n":6,"q":null,"m":90,"e":6433}],[-15,{"n":5,"q":null,"m":21,"e":6439,"s":1}],[-12,{"n":5,"q":null,"m":27,"e":6469,"s":1}],[-11,{"n":5,"q":null,"m":65,"e":6487}],[-10,{"n":5,"q":null,"m":66,"e":6489}],[-9,{"n":5,"q":null,"m":12,"e":6504,"s":1}],[-8,{"n":6.5,"q":null,"m":4,"e":6509,"g":1,"s":1}],[-7,{"n":4,"q":null,"m":81,"e":6523}],[-6,{"n":5.5,"q":null,"m":89,"e":6529}],[-5,{"n":4,"q":null,"m":67,"e":6547}],[-4,{"n":4.5,"q":null,"m":89,"e":6548}],[-3,{"n":7,"q":null,"m":90,"e":6564,"g":1}],[-2,{"n":5.5,"q":null,"m":89,"e":6568}],[2,{"n":5,"q":null,"m":90,"e":10574}],[-1,{"n":5,"q":null,"m":69,"e":6583}],[1,{"n":7.5,"q":null,"m":90,"e":10939}]],"fo":[[6228,[{"t":"Y"}]],[6244,[{"t":"Y"}]],[6249,[{"t":"Y"}]],[6270,[{"t":"Y"}]]]}],[2078,{"n":"Armougom","f":"Yoel","fp":"DL","r":7,"c":5,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":120.5,"On":26,"Oa":4.63,"Od":0.89,"Om":2002,"Oam":77,"Odm":30,"pd":25,"pm":1},"p":[[-32,{"n":3,"q":null,"m":90,"e":6270}],[-30,{"n":3.5,"q":null,"m":90,"e":6290}],[-29,{"n":5,"q":null,"m":18,"e":6307,"s":1}],[-28,{"n":4,"q":null,"m":90,"e":6313}],[-27,{"n":5,"q":null,"m":5,"e":6319,"s":1}],[-25,{"n":5,"q":null,"m":1,"e":6339,"s":1}],[-22,{"n":3.5,"q":null,"m":79,"e":6370}],[-21,{"n":4,"q":null,"m":90,"e":6378}],[-19,{"n":5,"q":null,"m":9,"e":6410,"s":1}],[-17,{"n":3,"q":null,"m":90,"e":6419}],[-16,{"n":4.5,"q":null,"m":90,"e":6433}],[-15,{"n":4.5,"q":null,"m":90,"e":6439}],[-14,{"n":4,"q":null,"m":90,"e":6449}],[-13,{"n":4,"q":null,"m":90,"e":6466}],[-12,{"n":6,"q":null,"m":90,"e":6469}],[-11,{"n":5,"q":null,"m":90,"e":6487}],[-10,{"n":5,"q":null,"m":90,"e":6489}],[-7,{"n":3.5,"q":null,"m":90,"e":6523}],[-6,{"n":5.5,"q":null,"m":90,"e":6529}],[-5,{"n":5,"q":null,"m":90,"e":6547}],[-4,{"n":4.5,"q":null,"m":90,"e":6548}],[-3,{"n":6,"q":null,"m":90,"e":6564}],[-2,{"n":5.5,"q":null,"m":90,"e":6568}],[2,{"n":5,"q":null,"m":90,"e":10574}],[-1,{"n":5.5,"q":null,"m":90,"e":6583}],[1,{"n":6,"q":null,"m":90,"e":10939}]],"fo":[[6313,[{"t":"Y"}]]]}],[2081,{"n":"Clementia","f":"Yannis","fp":"G","r":5,"c":5}],[2156,{"n":"Stavitski","f":"Timo","fp":"A","r":1,"c":5}],[2940,{"n":"Joseph","f":"Evens","fp":"MO","r":1,"c":5}],[3793,{"n":"Shamal","f":"Steve","fp":"A","r":1,"c":5,"s":{"g":1,"s":12,"n":2,"a":6,"m":101,"am":51,"dm":35,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Sm":26,"Sam":26,"Og":1,"Os":12,"On":2,"Oa":6,"Om":101,"Oam":51,"Odm":35,"pa":2,"Smsn":6,"Omsn":6},"p":[[2,{"n":6,"q":null,"m":75,"e":10574}],[1,{"n":6,"q":null,"m":26,"e":10939,"g":1,"s":1}]]}],[3817,{"n":"Court","f":"Yoann","fp":"MO","r":11,"c":5,"s":{"s":13,"n":2,"a":6.5,"d":0.71,"m":173,"am":87,"dm":5,"Ss":7,"Sn":1,"Sa":7,"Sm":83,"Sam":83,"Og":3,"Os":155,"On":30,"Oa":5.17,"Od":1,"Om":2023,"Oam":67,"Odm":18,"pm":18,"pa":12,"Omsn":7},"p":[[-38,{"n":6,"q":null,"m":65,"e":6208}],[-37,{"n":3,"q":null,"m":61,"e":6225}],[-36,{"n":5.5,"q":null,"m":80,"e":6228}],[-34,{"n":5,"q":null,"m":58,"e":6249}],[-32,{"n":4.5,"q":null,"m":66,"e":6270}],[-31,{"n":5.5,"q":null,"m":59,"e":6280}],[-29,{"n":4.5,"q":null,"m":72,"e":6307}],[-28,{"n":5,"q":null,"m":60,"e":6313}],[-27,{"n":4.5,"q":null,"m":21,"e":6319,"s":1}],[-26,{"n":4.5,"q":null,"m":72,"e":6337}],[-25,{"n":5,"q":null,"m":72,"e":6339}],[-24,{"n":5,"q":null,"m":63,"e":6349}],[-23,{"n":4.5,"q":null,"m":20,"e":6359,"s":1}],[-19,{"n":5,"q":null,"m":43,"e":6410}],[-18,{"n":5,"q":null,"m":74,"e":6404}],[-17,{"n":4.5,"q":null,"m":52,"e":6419}],[-16,{"n":7,"q":null,"m":70,"e":6433,"g":1}],[-15,{"n":4.5,"q":null,"m":81,"e":6439}],[-14,{"n":7,"q":null,"m":89,"e":6449,"g":1}],[-13,{"n":4,"q":null,"m":45,"e":6466,"s":1}],[-12,{"n":6,"q":null,"m":90,"e":6469}],[-11,{"n":7,"q":null,"m":90,"e":6487,"g":1}],[-10,{"n":5.5,"q":null,"m":90,"e":6489}],[-9,{"n":4.5,"q":null,"m":64,"e":6504}],[-8,{"n":5.5,"q":null,"m":90,"e":6509}],[-7,{"n":4,"q":null,"m":69,"e":6523}],[-6,{"n":6,"q":null,"m":74,"e":6529}],[-5,{"n":4,"q":null,"m":60,"e":6547}],[2,{"n":6,"q":null,"m":90,"e":10574}],[1,{"n":7,"q":null,"m":83,"e":10939}]],"fo":[[6249,[{"t":"Y"}]],[6339,[{"t":"Y"}]]]}],[4882,{"n":"Zady Sery","f":"Caleb","fp":"A","r":10,"c":5,"s":{"s":7,"n":1,"a":7,"m":90,"am":90,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":1,"Os":121,"On":25,"Oa":4.84,"Od":0.85,"Om":1244,"Oam":50,"Odm":27,"pm":8,"pa":17,"Omsn":6},"p":[[-37,{"n":4.5,"q":null,"m":19,"e":6225,"s":1}],[-35,{"n":3.5,"q":null,"m":62,"e":6244}],[-34,{"n":4.5,"q":null,"m":80,"e":6249}],[-33,{"n":4,"q":null,"m":56,"e":6266}],[-32,{"n":4.5,"q":null,"m":24,"e":6270,"s":1}],[-31,{"n":5.5,"q":null,"m":90,"e":6280}],[-30,{"n":5,"q":null,"m":66,"e":6290}],[-29,{"n":4,"q":null,"m":45,"e":6307,"s":1}],[-28,{"n":5,"q":null,"m":77,"e":6313}],[-27,{"n":4.5,"q":null,"m":27,"e":6319,"s":1}],[-25,{"n":4.5,"q":null,"m":18,"e":6339,"s":1}],[-24,{"n":4.5,"q":null,"m":16,"e":6349,"s":1}],[-23,{"n":5,"q":null,"m":70,"e":6359}],[-22,{"n":6,"q":null,"m":64,"e":6370,"g":1}],[-21,{"n":4.5,"q":null,"m":19,"e":6378,"s":1}],[-20,{"n":4.5,"q":null,"m":60,"e":6388}],[-17,{"n":4.5,"q":null,"m":64,"e":6419}],[-16,{"n":7,"q":null,"m":64,"e":6433}],[-15,{"n":4.5,"q":null,"m":21,"e":6439,"s":1}],[-14,{"n":5.5,"q":null,"m":89,"e":6449}],[-13,{"n":4.5,"q":null,"m":11,"e":6466,"s":1}],[-12,{"n":5.5,"q":null,"m":64,"e":6469}],[-11,{"n":4.5,"q":null,"m":32,"e":6487,"s":1}],[-7,{"n":4,"q":null,"m":16,"e":6523,"s":1}],[1,{"n":7,"q":null,"m":90,"e":10939}]]}],[4952,{"n":"Wadja","f":"Franklin","fp":"MD","r":3,"c":5,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":108,"am":54,"dm":51,"Ss":5,"Sn":1,"Sa":5,"Sm":18,"Sam":18,"Os":30,"On":6,"Oa":5,"Od":0.32,"Om":137,"Oam":23,"Odm":34,"pm":6},"p":[[-28,{"n":4.5,"q":null,"m":1,"e":5933,"s":1}],[-5,{"n":5,"q":null,"m":1,"e":6162,"s":1}],[-4,{"n":5,"q":null,"m":8,"e":6168,"s":1}],[2,{"n":5.5,"q":null,"m":90,"e":10574}],[-1,{"n":5,"q":null,"m":19,"e":6202,"s":1}],[1,{"n":5,"q":null,"m":18,"e":10939,"s":1}]]}],[5353,{"n":"Vandermersch","f":"Hugo","fp":"DL","r":6,"c":5,"s":{"Os":144.5,"On":31,"Oa":4.66,"Od":0.75,"Om":2226,"Oam":72,"Odm":31,"pd":29,"pm":2},"p":[[-35,{"n":5.5,"q":null,"m":90,"e":6244}],[-34,{"n":6,"q":null,"m":90,"e":6249}],[-33,{"n":5.5,"q":null,"m":90,"e":6266}],[-32,{"n":4.5,"q":null,"m":90,"e":6270}],[-31,{"n":4.5,"q":null,"m":90,"e":6280}],[-28,{"n":4,"q":null,"m":77,"e":6313}],[-27,{"n":5,"q":null,"m":90,"e":6319}],[-26,{"n":4,"q":null,"m":90,"e":6337}],[-25,{"n":5.5,"q":null,"m":90,"e":6339}],[-24,{"n":5,"q":null,"m":90,"e":6349}],[-23,{"n":5,"q":null,"m":90,"e":6359}],[-22,{"n":3,"q":null,"m":90,"e":6370}],[-21,{"n":4.5,"q":null,"m":90,"e":6378}],[-20,{"n":4.5,"q":null,"m":90,"e":6388}],[-19,{"n":4,"q":null,"m":81,"e":6410}],[-18,{"n":4.5,"q":null,"m":90,"e":6404}],[-17,{"n":3.5,"q":null,"m":90,"e":6419}],[-15,{"n":5,"q":null,"m":90,"e":6439}],[-14,{"n":5,"q":null,"m":18,"e":6449,"s":1}],[-13,{"n":3.5,"q":null,"m":45,"e":6466}],[-11,{"n":5,"q":null,"m":90,"e":6487}],[-10,{"n":5,"q":null,"m":90,"e":6489}],[-9,{"n":4,"q":null,"m":78,"e":6504}],[-8,{"n":5.5,"q":null,"m":90,"e":6509}],[-7,{"n":3,"q":null,"m":74,"e":6523}],[-6,{"n":5.5,"q":null,"m":81,"e":6529}],[-5,{"n":5,"q":null,"m":23,"e":6547,"s":1}],[-4,{"n":5,"q":null,"m":17,"e":6548,"s":1}],[-3,{"n":5,"q":null,"m":14,"e":6564,"s":1}],[-2,{"n":5,"q":null,"m":1,"e":6568,"s":1}],[-1,{"n":4.5,"q":null,"m":7,"e":6583,"s":1}]],"fo":[[6313,[{"t":"Y"}]],[6319,[{"t":"Y"}]],[6339,[{"t":"Y"}]]]}],[5368,{"n":"Abdi","f":"Ali","fp":"DL","r":18,"c":5,"s":{"Og":9,"Os":175.5,"On":32,"Oa":5.48,"Od":1.13,"Om":2276,"Oam":71,"Odm":31,"pd":24,"pm":8,"Omsn":5},"p":[[-36,{"n":5.5,"q":null,"m":21,"e":6235,"s":1}],[-34,{"n":4.5,"q":null,"m":87,"e":6256}],[-33,{"n":4,"q":null,"m":90,"e":6263}],[-32,{"n":5.5,"q":null,"m":90,"e":6274}],[-31,{"n":7,"q":null,"m":90,"e":6285,"g":1}],[-30,{"n":5,"q":null,"m":90,"e":6295}],[-26,{"n":7.5,"q":null,"m":90,"e":6334,"g":1}],[-25,{"n":5,"q":null,"m":90,"e":6344,"g":1}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-23,{"n":7,"q":null,"m":90,"e":6365,"g":2}],[-22,{"n":5,"q":null,"m":85,"e":6372}],[-20,{"n":3.5,"q":null,"m":90,"e":6397}],[-18,{"n":5,"q":null,"m":61,"e":6415}],[-16,{"n":3.5,"q":null,"m":90,"e":6430}],[-15,{"n":7,"q":null,"m":90,"e":6445,"g":1}],[-14,{"n":4.5,"q":null,"m":9,"e":6456,"s":1}],[-13,{"n":5,"q":null,"m":90,"e":6465}],[-12,{"n":5.5,"q":null,"m":66,"e":6476}],[-8,{"n":4.5,"q":null,"m":18,"e":6510,"s":1}],[-7,{"n":5,"q":null,"m":1,"e":6524,"s":1}],[-5,{"n":5,"q":null,"m":27,"e":6543,"s":1}],[-38,{"n":6.5,"q":null,"m":89,"e":6215,"g":1}],[-37,{"n":6,"q":null,"m":86,"e":6218}],[-29,{"n":5,"q":null,"m":90,"e":6299}],[-28,{"n":8,"q":null,"m":90,"e":6315,"g":1}],[-27,{"n":6,"q":null,"m":90,"e":6319}],[-21,{"n":6,"q":null,"m":90,"e":6385}],[-19,{"n":4.5,"q":null,"m":34,"e":6406,"s":1}],[-10,{"n":5.5,"q":null,"m":89,"e":6492}],[-9,{"n":5,"q":null,"m":90,"e":6504}],[-6,{"n":7.5,"q":null,"m":67,"e":6534,"g":1}],[-3,{"n":5,"q":null,"m":6,"e":6559,"s":1}]],"fo":[[6215,[{"t":"Y"}]],[6256,[{"t":"Y"},{"t":"O"}]]]}],[6272,{"n":"Gioacchini","f":"Nicholas","fp":"A","r":9,"c":5,"s":{"Og":4,"Os":145.5,"On":30,"Oa":4.85,"Od":1.08,"Om":1995,"Oam":67,"Odm":28,"pm":7,"pa":23,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":45,"e":6208,"s":1}],[-35,{"n":4.5,"q":null,"m":28,"e":6244,"s":1}],[-33,{"n":5,"q":null,"m":34,"e":6266,"s":1}],[-32,{"n":4,"q":null,"m":90,"e":6270}],[-30,{"n":5,"q":null,"m":90,"e":6290}],[-29,{"n":5,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":30,"e":6313,"s":1}],[-27,{"n":5,"q":null,"m":90,"e":6319}],[-26,{"n":4.5,"q":null,"m":89,"e":6337}],[-25,{"n":5,"q":null,"m":18,"e":6339,"s":1}],[-22,{"n":3.5,"q":null,"m":32,"e":6370}],[-21,{"n":4.5,"q":null,"m":71,"e":6378}],[-20,{"n":4.5,"q":null,"m":30,"e":6388,"s":1}],[-19,{"n":4.5,"q":null,"m":47,"e":6410,"s":1}],[-18,{"n":4,"q":null,"m":74,"e":6404}],[-17,{"n":3.5,"q":null,"m":90,"e":6419}],[-16,{"n":7,"q":null,"m":83,"e":6433,"g":1}],[-15,{"n":5.5,"q":null,"m":90,"e":6439}],[-14,{"n":6.5,"q":null,"m":90,"e":6449}],[-13,{"n":5,"q":null,"m":90,"e":6466}],[-12,{"n":4,"q":null,"m":26,"e":6469,"s":1}],[-11,{"n":6,"q":null,"m":90,"e":6487}],[-10,{"n":6,"q":null,"m":10,"e":6489,"g":1,"s":1}],[-7,{"n":3,"q":null,"m":90,"e":6523}],[-6,{"n":7,"q":null,"m":90,"e":6529,"g":1}],[-5,{"n":3.5,"q":null,"m":90,"e":6547}],[-4,{"n":3.5,"q":null,"m":45,"e":6548}],[-3,{"n":7,"q":null,"m":89,"e":6564,"g":1}],[-2,{"n":4.5,"q":null,"m":81,"e":6568}],[-1,{"n":5,"q":null,"m":83,"e":6583}]],"fo":[[6290,[{"t":"Y"}]],[6319,[{"t":"Y"}]],[6337,[{"t":"Y"}]]]}],[6277,{"n":"Beka Beka","f":"Alexis","fp":"MD","r":8,"c":5,"s":{"Og":1,"Os":122,"On":25,"Oa":4.88,"Od":0.62,"Om":1546,"Oam":62,"Odm":32,"pd":12,"pm":13,"Omsn":5},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6208}],[-37,{"n":5,"q":null,"m":19,"e":6225,"s":1}],[-34,{"n":4.5,"q":null,"m":74,"e":6249}],[-33,{"n":5.5,"q":null,"m":90,"e":6266}],[-32,{"n":4.5,"q":null,"m":11,"e":6270,"s":1}],[-30,{"n":4.5,"q":null,"m":90,"e":6290}],[-28,{"n":4.5,"q":null,"m":90,"e":6313}],[-27,{"n":4.5,"q":null,"m":90,"e":6319}],[-26,{"n":4,"q":null,"m":90,"e":6337}],[-25,{"n":6,"q":null,"m":90,"e":6339}],[-24,{"n":5.5,"q":null,"m":27,"e":6349,"s":1}],[-23,{"n":5,"q":null,"m":1,"e":6359,"s":1}],[-22,{"n":4,"q":null,"m":64,"e":6370}],[-21,{"n":6,"q":null,"m":29,"e":6378,"s":1}],[-20,{"n":4.5,"q":null,"m":90,"e":6388}],[-17,{"n":5,"q":null,"m":52,"e":6419,"g":1}],[-16,{"n":5.5,"q":null,"m":83,"e":6433}],[-15,{"n":5.5,"q":null,"m":89,"e":6439}],[-14,{"n":5,"q":null,"m":90,"e":6449}],[-13,{"n":4.5,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":72,"e":6469}],[-10,{"n":5,"q":null,"m":24,"e":6489,"s":1}],[-9,{"n":3.5,"q":null,"m":26,"e":6504,"s":1}],[-8,{"n":4.5,"q":null,"m":57,"e":6509}],[-1,{"n":5,"q":null,"m":18,"e":6583}]],"fo":[[6290,[{"t":"Y"}]],[6349,[{"t":"Y"}]]]}],[6328,{"n":"Nsona","f":"Kelian","fp":"MO","r":10,"c":5,"s":{"Og":2,"Os":144,"On":30,"Oa":4.8,"Od":0.73,"Om":1810,"Oam":60,"Odm":29,"pm":12,"pa":18,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":78,"e":6208}],[-37,{"n":5,"q":null,"m":90,"e":6225}],[-36,{"n":5,"q":null,"m":90,"e":6228}],[-35,{"n":4,"q":null,"m":90,"e":6244}],[-34,{"n":4.5,"q":null,"m":32,"e":6249,"s":1}],[-33,{"n":5,"q":null,"m":76,"e":6266}],[-30,{"n":4.5,"q":null,"m":12,"e":6290,"s":1}],[-28,{"n":4.5,"q":null,"m":13,"e":6313,"s":1}],[-27,{"n":4,"q":null,"m":63,"e":6319}],[-26,{"n":4.5,"q":null,"m":1,"e":6337,"s":1}],[-21,{"n":4.5,"q":null,"m":29,"e":6378,"s":1}],[-20,{"n":4.5,"q":null,"m":60,"e":6388}],[-19,{"n":6.5,"q":null,"m":81,"e":6410,"g":1}],[-18,{"n":5,"q":null,"m":90,"e":6404}],[-17,{"n":4.5,"q":null,"m":26,"e":6419,"s":1}],[-16,{"n":6,"q":null,"m":26,"e":6433,"g":1,"s":1}],[-15,{"n":5,"q":null,"m":69,"e":6439}],[-14,{"n":4.5,"q":null,"m":18,"e":6449,"s":1}],[-13,{"n":3.5,"q":null,"m":45,"e":6466}],[-11,{"n":4.5,"q":null,"m":58,"e":6487}],[-10,{"n":5,"q":null,"m":24,"e":6489,"s":1}],[-9,{"n":5,"q":null,"m":64,"e":6504}],[-8,{"n":4,"q":null,"m":71,"e":6509}],[-7,{"n":3.5,"q":null,"m":74,"e":6523}],[-6,{"n":5.5,"q":null,"m":90,"e":6529}],[-5,{"n":4,"q":null,"m":90,"e":6547}],[-4,{"n":5,"q":null,"m":89,"e":6548}],[-3,{"n":6,"q":null,"m":89,"e":6564}],[-2,{"n":5.5,"q":null,"m":89,"e":6568}],[-1,{"n":5,"q":null,"m":83,"e":6583}]]}],[6829,{"n":"Jabbari","f":"Ayoub","fp":"A","r":1,"c":5}],[6830,{"n":"Hervieu","f":"Loup","fp":"MD","r":3,"c":5,"s":{"Os":28.5,"On":6,"Oa":4.75,"Od":0.69,"Om":104,"Oam":17,"Odm":15,"pd":1,"pm":5},"p":[[-38,{"n":3.5,"q":null,"m":38,"e":6208}],[-37,{"n":5,"q":null,"m":19,"e":6225,"s":1}],[-33,{"n":5.5,"q":null,"m":31,"e":6266,"s":1}],[-5,{"n":4.5,"q":null,"m":14,"e":6547,"s":1}],[-3,{"n":5,"q":null,"m":1,"e":6564,"s":1}],[-2,{"n":5,"q":null,"m":1,"e":6568,"s":1}]],"fo":[[6208,[{"t":"R"}]]]}],[6832,{"n":"Fouda","f":"Aloys","fp":"DL","r":8,"c":5,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":29.5,"On":6,"Oa":4.92,"Od":0.8,"Om":540,"Oam":90,"pd":6},"p":[[-38,{"n":5,"q":null,"m":90,"e":6208}],[-37,{"n":3.5,"q":null,"m":90,"e":6225}],[-36,{"n":5,"q":null,"m":90,"e":6228}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[2,{"n":5,"q":null,"m":90,"e":10574}],[1,{"n":6,"q":null,"m":90,"e":10939}]],"fo":[[6228,[{"t":"Y"}]]]}],[6839,{"n":"Ngouabi","f":"Jason","fp":"DC","r":1,"c":5,"s":{"Os":7,"On":2,"Oa":3.5,"Od":2.12,"Om":91,"Oam":46,"Odm":63,"pd":2},"p":[[-7,{"n":2,"q":null,"m":90,"e":6523}],[-4,{"n":5,"q":null,"m":1,"e":6548,"s":1}]]}],[6840,{"n":"Lepenant","f":"Johann","fp":"MD","r":8,"c":5,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":162,"am":81,"dm":13,"Ss":6,"Sn":1,"Sa":6,"Sm":72,"Sam":72,"Os":105,"On":21,"Oa":5,"Od":0.57,"Om":1175,"Oam":56,"Odm":33,"pm":21},"p":[[-38,{"n":6,"q":null,"m":78,"e":6208}],[-37,{"n":4.5,"q":null,"m":67,"e":6225,"s":1}],[-33,{"n":5,"q":null,"m":59,"e":6266}],[-32,{"n":4.5,"q":null,"m":25,"e":6270,"s":1}],[-31,{"n":5,"q":null,"m":81,"e":6280}],[-30,{"n":4.5,"q":null,"m":37,"e":6290,"s":1}],[-29,{"n":4,"q":null,"m":45,"e":6307}],[-28,{"n":5,"q":null,"m":77,"e":6313}],[-27,{"n":5,"q":null,"m":85,"e":6319}],[-26,{"n":4.5,"q":null,"m":89,"e":6337}],[-25,{"n":6,"q":null,"m":90,"e":6339}],[-24,{"n":6,"q":null,"m":90,"e":6349}],[-23,{"n":5,"q":null,"m":89,"e":6359}],[-22,{"n":5,"q":null,"m":26,"e":6370,"s":1}],[-21,{"n":4.5,"q":null,"m":61,"e":6378}],[-19,{"n":5,"q":null,"m":9,"e":6410,"s":1}],[-18,{"n":5,"q":null,"m":3,"e":6404,"s":1}],[-6,{"n":5,"q":null,"m":1,"e":6529,"s":1}],[-3,{"n":5,"q":null,"m":1,"e":6564,"s":1}],[2,{"n":4.5,"q":null,"m":90,"e":10574}],[1,{"n":6,"q":null,"m":72,"e":10939}]],"fo":[[6290,[{"t":"Y"}]],[10939,[{"t":"Y"}]]]}],[7241,{"n":"Inoussa","f":"Zeidane","fp":"MO","r":1,"c":5,"s":{"Os":10,"On":2,"Oa":5,"Om":15,"Oam":8,"Odm":9,"pm":2},"p":[[-5,{"n":5,"q":null,"m":14,"e":6547,"s":1}],[-4,{"n":5,"q":null,"m":1,"e":6548,"s":1}]]}],[7447,{"n":"Péan","f":"Sullivan","fp":"G","r":8,"c":5,"s":{"Os":65.5,"On":12,"Oa":5.46,"Od":1.23,"Om":1080,"Oam":90,"pg":12},"p":[[-38,{"n":7.5,"q":null,"m":90,"e":6208}],[-37,{"n":4,"q":null,"m":90,"e":6225}],[-36,{"n":6.5,"q":null,"m":90,"e":6228}],[-35,{"n":7,"q":null,"m":90,"e":6244}],[-28,{"n":4.5,"q":null,"m":90,"e":6313}],[-27,{"n":4,"q":null,"m":90,"e":6319}],[-26,{"n":5.5,"q":null,"m":90,"e":6337}],[-25,{"n":6,"q":null,"m":90,"e":6339}],[-24,{"n":6,"q":null,"m":90,"e":6349}],[-23,{"n":4.5,"q":null,"m":90,"e":6359}],[-10,{"n":6,"q":null,"m":90,"e":6489}],[-9,{"n":4,"q":null,"m":90,"e":6504}]]}],[7625,{"n":"Molchan","f":"Vladislav","fp":"DC","r":1,"c":5}],[7662,{"n":"Ewange","f":"Elive Stephen","fp":"DC","r":1,"c":5}],[7790,{"n":"Hountondji","f":"Andreas","fp":"A","r":9,"c":5,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":79,"am":40,"dm":35,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":64,"Sam":64,"Os":27,"On":6,"Oa":4.5,"Od":0.55,"Om":145,"Oam":24,"Odm":22,"pa":6},"p":[[-38,{"n":4.5,"q":null,"m":12,"e":6208,"s":1}],[-36,{"n":4.5,"q":null,"m":10,"e":6228,"s":1}],[-34,{"n":4,"q":null,"m":10,"e":6249,"s":1}],[-33,{"n":4.5,"q":null,"m":34,"e":6266,"s":1}],[2,{"n":4,"q":null,"m":15,"e":10574,"s":1}],[1,{"n":5.5,"q":null,"m":64,"e":10939}]],"fo":[[6249,[{"t":"Y"}]]]}],[7791,{"n":"Najim","f":"Ilyes","fp":"MO","r":3,"c":5,"s":{"Os":4,"On":1,"Oa":4,"Om":14,"Oam":14,"pa":1},"p":[[-33,{"n":4,"q":null,"m":14,"e":6266,"s":1}]]}],[8020,{"n":"Traoré","f":"Brahim","fp":"DC","r":1,"c":5}],[122,{"n":"Reynet","f":"Baptiste","fp":"G","r":17,"c":7,"s":{"s":10.5,"n":2,"a":5.25,"d":1.77,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":208.5,"On":40,"Oa":5.21,"Od":1.27,"Om":3600,"Oam":90,"pg":40},"p":[[2,{"n":6.5,"q":null,"m":90,"e":10570}],[1,{"n":4,"q":null,"m":90,"e":10933}],[-38,{"n":5,"q":null,"m":90,"e":5834}],[-37,{"n":4,"q":null,"m":90,"e":5846}],[-36,{"n":6,"q":null,"m":90,"e":5851}],[-35,{"n":6,"q":null,"m":90,"e":5866}],[-34,{"n":4.5,"q":null,"m":90,"e":5869}],[-33,{"n":6.5,"q":null,"m":90,"e":5886}],[-32,{"n":5,"q":null,"m":90,"e":5888}],[-31,{"n":4.5,"q":null,"m":90,"e":5905}],[-30,{"n":6,"q":null,"m":90,"e":5910}],[-29,{"n":6,"q":null,"m":90,"e":5924}],[-28,{"n":4,"q":null,"m":90,"e":5935}],[-27,{"n":4.5,"q":null,"m":90,"e":5944}],[-21,{"n":6.5,"q":null,"m":90,"e":6003}],[-26,{"n":7.5,"q":null,"m":90,"e":5954}],[-25,{"n":6.5,"q":null,"m":90,"e":5960}],[-24,{"n":3.5,"q":null,"m":90,"e":5975}],[-23,{"n":4,"q":null,"m":90,"e":5983}],[-22,{"n":3.5,"q":null,"m":90,"e":5988}],[-20,{"n":7,"q":null,"m":90,"e":6013}],[-19,{"n":5,"q":null,"m":90,"e":6024}],[-18,{"n":6,"q":null,"m":90,"e":6037}],[-17,{"n":3.5,"q":null,"m":90,"e":6045}],[-16,{"n":7,"q":null,"m":90,"e":6055}],[-15,{"n":5,"q":null,"m":90,"e":6064}],[-14,{"n":4,"q":null,"m":90,"e":6071}],[-13,{"n":4,"q":null,"m":90,"e":6085}],[-12,{"n":3.5,"q":null,"m":90,"e":6093}],[-11,{"n":7,"q":null,"m":90,"e":6106}],[-10,{"n":2.5,"q":null,"m":90,"e":6114}],[-9,{"n":6,"q":null,"m":90,"e":6124}],[-8,{"n":5,"q":null,"m":90,"e":6128}],[-7,{"n":6,"q":null,"m":90,"e":6144}],[-6,{"n":6,"q":null,"m":90,"e":6152}],[-5,{"n":5.5,"q":null,"m":90,"e":6165}],[-4,{"n":6.5,"q":null,"m":90,"e":6170}],[-3,{"n":3.5,"q":null,"m":90,"e":6185}],[-2,{"n":5,"q":null,"m":90,"e":6194}],[-1,{"n":6.5,"q":null,"m":90,"e":6206}]],"fo":[[6003,[{"t":"Y"}]]]}],[163,{"n":"Deaux","f":"Lucas","fp":"MD","r":15,"c":7,"s":{"Og":1,"Os":113.5,"On":25,"Oa":4.54,"Od":0.84,"Om":1754,"Oam":70,"Odm":30,"pd":4,"pm":21,"Omsn":5.5},"p":[[-37,{"n":4.5,"q":null,"m":15,"e":5846,"s":1}],[-36,{"n":5,"q":null,"m":6,"e":5851,"s":1}],[-35,{"n":4.5,"q":null,"m":85,"e":5866}],[-34,{"n":4,"q":null,"m":90,"e":5869}],[-33,{"n":4.5,"q":null,"m":90,"e":5886}],[-32,{"n":5,"q":null,"m":34,"e":5888,"s":1}],[-31,{"n":4.5,"q":null,"m":73,"e":5905}],[-30,{"n":5,"q":null,"m":13,"e":5910,"s":1}],[-29,{"n":5,"q":null,"m":18,"e":5924,"s":1}],[-25,{"n":6,"q":null,"m":90,"e":5960}],[-24,{"n":5.5,"q":null,"m":90,"e":5975,"g":1}],[-23,{"n":5,"q":null,"m":45,"e":5983,"s":1}],[-22,{"n":2.5,"q":null,"m":90,"e":5988}],[-20,{"n":5,"q":null,"m":90,"e":6013}],[-19,{"n":4,"q":null,"m":90,"e":6024}],[-18,{"n":3,"q":null,"m":90,"e":6037}],[-12,{"n":3.5,"q":null,"m":69,"e":6093}],[-10,{"n":3.5,"q":null,"m":90,"e":6114}],[-9,{"n":4,"q":null,"m":90,"e":6124}],[-8,{"n":4,"q":null,"m":90,"e":6128}],[-7,{"n":5,"q":null,"m":90,"e":6144}],[-6,{"n":6,"q":null,"m":90,"e":6152}],[-3,{"n":4.5,"q":null,"m":80,"e":6185}],[-2,{"n":5,"q":null,"m":90,"e":6194}],[-1,{"n":5,"q":null,"m":56,"e":6206}]],"fo":[[5905,[{"t":"I"}]]]}],[167,{"n":"Marié","f":"Jordan","fp":"MD","r":10,"c":7,"s":{"Os":110,"On":24,"Oa":4.58,"Od":0.8,"Om":1428,"Oam":60,"Odm":32,"pm":24},"p":[[-38,{"n":6,"q":null,"m":90,"e":5835}],[-37,{"n":3.5,"q":null,"m":90,"e":5839}],[-36,{"n":3.5,"q":null,"m":70,"e":5848}],[-35,{"n":3.5,"q":null,"m":90,"e":5860}],[-34,{"n":3,"q":null,"m":90,"e":5875}],[-33,{"n":6.5,"q":null,"m":90,"e":5885}],[-32,{"n":4,"q":null,"m":90,"e":5892}],[-31,{"n":5,"q":null,"m":90,"e":5902}],[-27,{"n":4.5,"q":null,"m":19,"e":5940,"s":1}],[-26,{"n":4,"q":null,"m":45,"e":5949}],[-23,{"n":4.5,"q":null,"m":10,"e":5979,"s":1}],[-22,{"n":5,"q":null,"m":67,"e":5990}],[-18,{"n":5,"q":null,"m":13,"e":6035,"s":1}],[-15,{"n":5,"q":null,"m":28,"e":6060,"s":1}],[-14,{"n":5.5,"q":null,"m":90,"e":6073}],[-12,{"n":5,"q":null,"m":5,"e":6094,"s":1}],[-11,{"n":4.5,"q":null,"m":64,"e":6100,"s":1}],[-9,{"n":4.5,"q":null,"m":90,"e":6119}],[-7,{"n":5,"q":null,"m":11,"e":6139,"s":1}],[-5,{"n":5,"q":null,"m":17,"e":6160,"s":1}],[-3,{"n":4.5,"q":null,"m":45,"e":6180}],[-2,{"n":4,"q":null,"m":71,"e":6188}],[-1,{"n":4.5,"q":null,"m":68,"e":6200}],[-4,{"n":4.5,"q":null,"m":85,"e":6177}]],"fo":[[5839,[{"t":"Y"}]]]}],[187,{"n":"Sammaritano","f":"Frédéric","fp":"MO","r":8,"c":7,"s":{"s":9,"n":2,"a":4.5,"m":22,"am":11,"dm":4,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":14,"Sam":14,"Os":155.5,"On":32,"Oa":4.86,"Od":0.63,"Om":1142,"Oam":36,"Odm":25,"pm":31,"pa":1},"p":[[-30,{"n":4.5,"q":null,"m":18,"e":5909,"s":1}],[-29,{"n":6,"q":null,"m":20,"e":5919,"s":1}],[-28,{"n":4,"q":null,"m":78,"e":5929}],[-24,{"n":5.5,"q":null,"m":27,"e":5972,"s":1}],[-20,{"n":6,"q":null,"m":72,"e":6011}],[-21,{"n":5,"q":null,"m":74,"e":5999}],[-19,{"n":5.5,"q":null,"m":25,"e":6019,"s":1}],[-16,{"n":5,"q":null,"m":11,"e":6049,"s":1}],[-13,{"n":5,"q":null,"m":27,"e":6080,"s":1}],[-6,{"n":5,"q":null,"m":8,"e":6148,"s":1}],[-36,{"n":3.5,"q":null,"m":70,"e":5848}],[-35,{"n":5,"q":null,"m":45,"e":5860,"s":1}],[-34,{"n":4.5,"q":null,"m":11,"e":5875,"s":1}],[-33,{"n":5,"q":null,"m":9,"e":5885,"s":1}],[-31,{"n":5,"q":null,"m":26,"e":5902,"s":1}],[-27,{"n":5,"q":null,"m":15,"e":5940,"s":1}],[-25,{"n":3.5,"q":null,"m":12,"e":5960,"s":1}],[-23,{"n":3.5,"q":null,"m":59,"e":5979}],[-22,{"n":5,"q":null,"m":23,"e":5990,"s":1}],[-18,{"n":5,"q":null,"m":25,"e":6035,"s":1}],[-17,{"n":5.5,"q":null,"m":72,"e":6045}],[-15,{"n":4.5,"q":null,"m":62,"e":6060}],[-14,{"n":5,"q":null,"m":87,"e":6073}],[-11,{"n":5.5,"q":null,"m":28,"e":6100,"s":1}],[-7,{"n":5,"q":null,"m":64,"e":6139}],[-5,{"n":5,"q":null,"m":7,"e":6160,"s":1}],[-4,{"n":4.5,"q":null,"m":61,"e":6177}],[-3,{"n":5,"q":null,"m":27,"e":6180,"s":1}],[-2,{"n":5.5,"q":null,"m":35,"e":6188,"s":1}],[2,{"n":4.5,"q":null,"m":8,"e":10570,"s":1}],[-1,{"n":4.5,"q":null,"m":22,"e":6200,"s":1}],[1,{"n":4.5,"q":null,"m":14,"e":10933,"s":1}]],"fo":[[5960,[{"t":"R"},{"t":"Y"}]]]}],[192,{"n":"Benzia","f":"Yassine","fp":"MO","r":15,"c":7,"s":{"s":12,"n":2,"a":6,"d":1.41,"m":105,"am":53,"dm":33,"Ss":5,"Sn":1,"Sa":5,"Sm":76,"Sam":76,"Og":2,"Os":47.5,"On":9,"Oa":5.28,"Od":1.18,"Om":515,"Oam":57,"Odm":27,"pm":6,"pa":3,"Omsn":5},"p":[[-34,{"n":5,"q":null,"m":79,"e":5875,"g":1}],[-33,{"n":7.5,"q":null,"m":81,"e":5885,"g":1}],[-32,{"n":4.5,"q":null,"m":73,"e":5892}],[-31,{"n":5,"q":null,"m":64,"e":5902}],[-30,{"n":4,"q":null,"m":72,"e":5909}],[-29,{"n":4.5,"q":null,"m":34,"e":5919,"s":1}],[-28,{"n":5,"q":null,"m":7,"e":5929,"s":1}],[2,{"n":7,"q":null,"m":29,"e":10570,"s":1}],[1,{"n":5,"q":null,"m":76,"e":10933}]],"fo":[[5902,[{"t":"Y"}]],[10933,[{"t":"Y"}]]]}],[197,{"n":"Congré","f":"Daniel","fp":"DC","r":18,"c":7,"s":{"s":5,"n":1,"a":5,"m":90,"am":90,"Og":2,"Os":194,"On":39,"Oa":4.97,"Od":0.99,"Om":3386,"Oam":87,"Odm":12,"pd":39,"Omsn":8},"p":[[-38,{"n":5,"q":null,"m":25,"e":5832}],[-37,{"n":5,"q":null,"m":90,"e":5844}],[-36,{"n":5,"q":null,"m":90,"e":5857}],[-33,{"n":6,"q":null,"m":90,"e":5880}],[-32,{"n":4.5,"q":null,"m":90,"e":5893}],[-31,{"n":5.5,"q":null,"m":90,"e":5898}],[-30,{"n":5.5,"q":null,"m":90,"e":5912}],[-27,{"n":6,"q":null,"m":90,"e":5945}],[-26,{"n":5.5,"q":null,"m":90,"e":5951}],[-25,{"n":5.5,"q":null,"m":90,"e":5962}],[-23,{"n":5,"q":null,"m":90,"e":5981}],[-22,{"n":3.5,"q":null,"m":90,"e":5994}],[-21,{"n":3.5,"q":null,"m":68,"e":6004}],[-20,{"n":3,"q":null,"m":90,"e":6014}],[-19,{"n":4.5,"q":null,"m":90,"e":6023}],[-18,{"n":3.5,"q":null,"m":90,"e":6032}],[-17,{"n":4.5,"q":null,"m":90,"e":6043}],[-16,{"n":4.5,"q":null,"m":83,"e":6048}],[-15,{"n":4.5,"q":null,"m":90,"e":6063}],[-14,{"n":5.5,"q":null,"m":90,"e":6069}],[-13,{"n":3.5,"q":null,"m":90,"e":6083}],[-12,{"n":6,"q":null,"m":90,"e":6089}],[-11,{"n":4.5,"q":null,"m":90,"e":6104}],[-10,{"n":6,"q":null,"m":90,"e":6108}],[-9,{"n":5,"q":null,"m":90,"e":6127}],[-8,{"n":4,"q":null,"m":90,"e":6134}],[-7,{"n":6.5,"q":null,"m":90,"e":6142}],[-4,{"n":5.5,"q":null,"m":90,"e":6173}],[-1,{"n":5.5,"q":null,"m":90,"e":6204}],[-3,{"n":8,"q":null,"m":90,"e":6184,"g":2}],[-2,{"n":4,"q":null,"m":90,"e":6189}],[-35,{"n":4.5,"q":null,"m":90,"e":5865}],[-34,{"n":3.5,"q":null,"m":60,"e":5873}],[-29,{"n":5,"q":null,"m":90,"e":5924}],[-28,{"n":5.5,"q":null,"m":90,"e":5933}],[-24,{"n":5.5,"q":null,"m":90,"e":5972}],[-6,{"n":5.5,"q":null,"m":90,"e":6152}],[-5,{"n":5.5,"q":null,"m":90,"e":6160}],[2,{"n":5,"q":null,"m":90,"e":10570}]],"fo":[[5832,[{"t":"I"}]]]}],[203,{"n":"Toure","f":"Zargo","fp":"DC","r":9,"c":7}],[311,{"n":"Pi","f":"Jessy","fp":"MD","r":10,"c":7,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":170,"am":85,"dm":7,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":80,"Sam":80,"Os":148,"On":30,"Oa":4.93,"Od":0.43,"Om":1545,"Oam":52,"Odm":30,"pm":30},"p":[[-36,{"n":4.5,"q":null,"m":24,"e":6228}],[-35,{"n":5,"q":null,"m":62,"e":6244}],[-34,{"n":5,"q":null,"m":57,"e":6249}],[-33,{"n":5,"q":null,"m":76,"e":6266}],[-31,{"n":5,"q":null,"m":9,"e":6280,"s":1}],[-30,{"n":4,"q":null,"m":53,"e":6290}],[-29,{"n":5,"q":null,"m":18,"e":6307,"s":1}],[-28,{"n":5,"q":null,"m":13,"e":6313,"s":1}],[-27,{"n":4.5,"q":null,"m":63,"e":6319}],[-26,{"n":5,"q":null,"m":18,"e":6337,"s":1}],[-24,{"n":5,"q":null,"m":27,"e":6349,"s":1}],[-22,{"n":5,"q":null,"m":64,"e":6370}],[-21,{"n":4.5,"q":null,"m":61,"e":6378}],[-20,{"n":5,"q":null,"m":90,"e":6388}],[-19,{"n":6,"q":null,"m":90,"e":6410}],[-18,{"n":5,"q":null,"m":87,"e":6404}],[-17,{"n":4.5,"q":null,"m":38,"e":6419,"s":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6433}],[-15,{"n":5,"q":null,"m":69,"e":6439}],[-14,{"n":5,"q":null,"m":1,"e":6449,"s":1}],[-13,{"n":4.5,"q":null,"m":79,"e":6466}],[-12,{"n":5,"q":null,"m":18,"e":6469,"s":1}],[-10,{"n":5.5,"q":null,"m":65,"e":6489}],[-9,{"n":4.5,"q":null,"m":64,"e":6504}],[-8,{"n":5.5,"q":null,"m":90,"e":6509}],[-7,{"n":5,"q":null,"m":9,"e":6523,"s":1}],[-5,{"n":5,"q":null,"m":23,"e":6547,"s":1}],[-4,{"n":5,"q":null,"m":17,"e":6548,"s":1}],[2,{"n":6,"q":null,"m":90,"e":10570}],[1,{"n":4.5,"q":null,"m":80,"e":10933}]],"fo":[[6228,[{"t":"I"}]]]}],[561,{"n":"Le Bihan","f":"Mickael","fp":"A","r":40,"c":7,"s":{"Og":19,"Os":198,"On":36,"Oa":5.5,"Od":1.26,"Om":3076,"Oam":85,"Odm":12,"pa":36,"Omsn":4.5},"p":[[-38,{"n":5,"q":null,"m":90,"e":6217}],[-37,{"n":6,"q":null,"m":90,"e":6220,"g":1}],[-36,{"n":4.5,"q":null,"m":90,"e":6228}],[-35,{"n":7,"q":null,"m":89,"e":6239,"g":2}],[-34,{"n":4.5,"q":null,"m":87,"e":6257}],[-33,{"n":5,"q":null,"m":90,"e":6259}],[-32,{"n":5,"q":null,"m":90,"e":6273}],[-31,{"n":5,"q":null,"m":90,"e":6279}],[-30,{"n":6,"q":null,"m":90,"e":6297,"g":1}],[-29,{"n":5,"q":null,"m":90,"e":6299}],[-28,{"n":6.5,"q":null,"m":90,"e":6309,"g":1}],[-27,{"n":4,"q":null,"m":90,"e":6318}],[-26,{"n":5.5,"q":null,"m":84,"e":6330}],[-25,{"n":4.5,"q":null,"m":31,"e":6338}],[-24,{"n":5,"q":null,"m":90,"e":6348}],[-23,{"n":5.5,"q":null,"m":86,"e":6358}],[-22,{"n":4,"q":null,"m":90,"e":6376}],[-21,{"n":5,"q":null,"m":90,"e":6380}],[-19,{"n":6,"q":null,"m":90,"e":6400,"g":1}],[-18,{"n":5,"q":null,"m":90,"e":6404}],[-17,{"n":6,"q":null,"m":90,"e":6421}],[-16,{"n":5.5,"q":null,"m":88,"e":6431}],[-15,{"n":6,"q":null,"m":90,"e":6444}],[-14,{"n":9,"q":null,"m":83,"e":6448,"g":3}],[-13,{"n":4,"q":null,"m":90,"e":6462}],[-12,{"n":4.5,"q":null,"m":90,"e":6474}],[-11,{"n":8,"q":null,"m":85,"e":6484,"g":2}],[-10,{"n":5,"q":null,"m":90,"e":6488}],[-9,{"n":4.5,"q":null,"m":90,"e":6505,"g":1}],[-8,{"n":8,"q":null,"m":73,"e":6508,"g":3}],[-7,{"n":3.5,"q":null,"m":78,"e":6527}],[-6,{"n":8,"q":null,"m":52,"e":6528,"g":2}],[-5,{"n":6,"q":null,"m":90,"e":6545,"g":1}],[-4,{"n":6.5,"q":null,"m":90,"e":6557,"g":1}],[-2,{"n":5,"q":null,"m":80,"e":6570}],[-1,{"n":4.5,"q":null,"m":90,"e":6581}]],"fo":[[6338,[{"t":"I"}]],[6318,[{"t":"Y"}]]]}],[905,{"n":"Ndong","f":"Didier","fp":"MD","r":6,"c":7,"s":{"Os":149.5,"On":29,"Oa":5.16,"Od":0.8,"Om":2610,"Oam":90,"pm":29},"p":[[-10,{"n":4.5,"q":null,"m":90,"e":6112}],[-8,{"n":4.5,"q":null,"m":90,"e":6136}],[-36,{"n":3.5,"q":null,"m":90,"e":5848}],[-30,{"n":5,"q":null,"m":90,"e":5909}],[-29,{"n":4,"q":null,"m":90,"e":5919}],[-28,{"n":5,"q":null,"m":90,"e":5929}],[-26,{"n":4.5,"q":null,"m":90,"e":5949}],[-25,{"n":5.5,"q":null,"m":90,"e":5960}],[-24,{"n":5,"q":null,"m":90,"e":5972}],[-23,{"n":7,"q":null,"m":90,"e":5979}],[-22,{"n":5,"q":null,"m":90,"e":5990}],[-21,{"n":5,"q":null,"m":90,"e":5999}],[-20,{"n":5,"q":null,"m":90,"e":6011}],[-19,{"n":6,"q":null,"m":90,"e":6019}],[-18,{"n":6,"q":null,"m":90,"e":6035}],[-17,{"n":6,"q":null,"m":90,"e":6045}],[-16,{"n":5,"q":null,"m":90,"e":6049}],[-15,{"n":4.5,"q":null,"m":90,"e":6060}],[-14,{"n":7,"q":null,"m":90,"e":6073}],[-13,{"n":5.5,"q":null,"m":90,"e":6080}],[-12,{"n":6,"q":null,"m":90,"e":6094}],[-11,{"n":5,"q":null,"m":90,"e":6100}],[-7,{"n":5.5,"q":null,"m":90,"e":6139}],[-6,{"n":4,"q":null,"m":90,"e":6148}],[-5,{"n":5,"q":null,"m":90,"e":6160}],[-4,{"n":5.5,"q":null,"m":90,"e":6177}],[-3,{"n":4.5,"q":null,"m":90,"e":6180}],[-2,{"n":5,"q":null,"m":90,"e":6188}],[-1,{"n":5.5,"q":null,"m":90,"e":6200}]],"fo":[[5909,[{"t":"Y"}]],[5919,[{"t":"Y"}]],[5960,[{"t":"Y"}]]]}],[1416,{"n":"Konaté","f":"Moussa","fp":"A","r":11,"c":7,"s":{"Og":5,"Os":134.5,"On":31,"Oa":4.34,"Od":1.04,"Om":1443,"Oam":47,"Odm":30,"pa":31,"Omsn":5.5},"p":[[-38,{"n":5,"q":null,"m":90,"e":5835}],[-37,{"n":3.5,"q":null,"m":90,"e":5839}],[-36,{"n":4.5,"q":null,"m":7,"e":5848,"s":1}],[-31,{"n":4,"q":null,"m":65,"e":5902}],[-30,{"n":4.5,"q":null,"m":17,"e":5909,"s":1}],[-29,{"n":6,"q":null,"m":20,"e":5919,"g":1,"s":1}],[-28,{"n":4.5,"q":null,"m":12,"e":5929,"s":1}],[-27,{"n":3.5,"q":null,"m":61,"e":5940}],[-26,{"n":4,"q":null,"m":45,"e":5949,"s":1}],[-25,{"n":4.5,"q":null,"m":13,"e":5960,"s":1}],[-24,{"n":5.5,"q":null,"m":6,"e":5972,"g":1,"s":1}],[-23,{"n":4,"q":null,"m":59,"e":5979}],[-22,{"n":5,"q":null,"m":9,"e":5990,"s":1}],[-21,{"n":4,"q":null,"m":31,"e":5999,"s":1}],[-20,{"n":3.5,"q":null,"m":90,"e":6011}],[-19,{"n":4,"q":null,"m":65,"e":6019}],[-18,{"n":4.5,"q":null,"m":6,"e":6035,"s":1}],[-17,{"n":8,"q":null,"m":29,"e":6045,"g":2,"s":1}],[-16,{"n":3,"q":null,"m":70,"e":6049}],[-15,{"n":4,"q":null,"m":72,"e":6060}],[-14,{"n":6,"q":null,"m":76,"e":6073,"g":1}],[-13,{"n":4.5,"q":null,"m":1,"e":6080,"s":1}],[-12,{"n":4,"q":null,"m":17,"e":6094,"s":1}],[-11,{"n":3.5,"q":null,"m":62,"e":6100}],[-10,{"n":5,"q":null,"m":27,"e":6112,"s":1}],[-9,{"n":4,"q":null,"m":84,"e":6119}],[-8,{"n":3,"q":null,"m":70,"e":6136}],[-6,{"n":4,"q":null,"m":61,"e":6529}],[-5,{"n":4,"q":null,"m":30,"e":6539,"s":1}],[-4,{"n":4.5,"q":null,"m":90,"e":6549}],[-3,{"n":2.5,"q":null,"m":68,"e":6559}]],"fo":[[5902,[{"t":"Y"}]]]}],[1548,{"n":"Ahlinvi","f":"Matteo","fp":"MD","r":5,"c":7,"s":{"s":8,"n":2,"a":4,"d":0.71,"m":172,"am":86,"dm":6,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":90,"Sam":90,"Og":2,"Os":102.5,"On":22,"Oa":4.66,"Od":0.75,"Om":1065,"Oam":48,"Odm":36,"pm":22,"Omsn":5},"p":[[-38,{"n":5,"q":null,"m":76,"e":5834}],[-37,{"n":5,"q":null,"m":4,"e":5846,"s":1}],[-36,{"n":5,"q":null,"m":1,"e":5851,"s":1}],[-35,{"n":4.5,"q":null,"m":5,"e":5866,"s":1}],[-34,{"n":5,"q":null,"m":3,"e":5869,"s":1}],[-26,{"n":5,"q":null,"m":13,"e":5954,"s":1}],[-23,{"n":3.5,"q":null,"m":45,"e":5983}],[-22,{"n":5,"q":null,"m":29,"e":5988,"s":1}],[-21,{"n":5,"q":null,"m":15,"e":6003,"s":1}],[-19,{"n":5,"q":null,"m":14,"e":6024,"s":1}],[-18,{"n":3,"q":null,"m":90,"e":6037}],[-17,{"n":5,"q":null,"m":90,"e":6045,"g":1}],[-16,{"n":6.5,"q":null,"m":90,"e":6055,"g":1}],[-15,{"n":4,"q":null,"m":90,"e":6064}],[-14,{"n":4,"q":null,"m":76,"e":6071}],[-13,{"n":4,"q":null,"m":61,"e":6085}],[-11,{"n":5,"q":null,"m":90,"e":6106}],[-8,{"n":5,"q":null,"m":65,"e":6128}],[-7,{"n":5,"q":null,"m":5,"e":6144,"s":1}],[-4,{"n":5,"q":null,"m":31,"e":6170,"s":1}],[2,{"n":4.5,"q":null,"m":82,"e":10570}],[1,{"n":3.5,"q":null,"m":90,"e":10933}]]}],[2155,{"n":"Rocchia","f":"Christopher","fp":"DL","r":10,"c":7,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"Om":200,"Oam":50,"Odm":46,"pd":4},"p":[[-22,{"n":4.5,"q":null,"m":9,"e":5993,"s":1}],[-1,{"n":5,"q":null,"m":11,"e":6198,"s":1}],[2,{"n":5,"q":null,"m":90,"e":10570}],[1,{"n":4.5,"q":null,"m":90,"e":10933}]],"fo":[[10933,[{"t":"Y"}]]]}],[2524,{"n":"Ecuele Manga","f":"Bruno","fp":"DC","r":18,"c":7,"s":{"s":3,"n":1,"a":3,"m":90,"am":90,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Og":2,"Os":189,"On":39,"Oa":4.85,"Od":1.22,"Om":3510,"Oam":90,"pd":39,"Omsn":5.5},"p":[[-38,{"n":6.5,"q":null,"m":90,"e":5835}],[-37,{"n":3,"q":null,"m":90,"e":5839}],[-36,{"n":4,"q":null,"m":90,"e":5848}],[-35,{"n":3,"q":null,"m":90,"e":5860}],[-34,{"n":2.5,"q":null,"m":90,"e":5875}],[-33,{"n":6.5,"q":null,"m":90,"e":5885}],[-32,{"n":3,"q":null,"m":90,"e":5892}],[-31,{"n":5,"q":null,"m":90,"e":5902}],[-30,{"n":5.5,"q":null,"m":90,"e":5909}],[-29,{"n":4,"q":null,"m":90,"e":5919}],[-28,{"n":4,"q":null,"m":90,"e":5929}],[-27,{"n":4,"q":null,"m":90,"e":5940}],[-26,{"n":5,"q":null,"m":90,"e":5949}],[-25,{"n":3.5,"q":null,"m":90,"e":5960}],[-24,{"n":3.5,"q":null,"m":90,"e":5972}],[-23,{"n":5.5,"q":null,"m":90,"e":5979}],[-22,{"n":5.5,"q":null,"m":90,"e":5990}],[-21,{"n":5.5,"q":null,"m":90,"e":5999}],[-20,{"n":5.5,"q":null,"m":90,"e":6011,"g":1}],[-19,{"n":5.5,"q":null,"m":90,"e":6019}],[-18,{"n":5.5,"q":null,"m":90,"e":6035}],[-17,{"n":6,"q":null,"m":90,"e":6045}],[-16,{"n":5,"q":null,"m":90,"e":6049}],[-15,{"n":4,"q":null,"m":90,"e":6060}],[-14,{"n":5.5,"q":null,"m":90,"e":6073}],[-13,{"n":6,"q":null,"m":90,"e":6080}],[-12,{"n":6.5,"q":null,"m":90,"e":6094}],[-11,{"n":6,"q":null,"m":90,"e":6100}],[-10,{"n":5.5,"q":null,"m":90,"e":6112}],[-9,{"n":7,"q":null,"m":90,"e":6119}],[-8,{"n":3.5,"q":null,"m":90,"e":6136}],[-7,{"n":5,"q":null,"m":90,"e":6139}],[-6,{"n":3.5,"q":null,"m":90,"e":6148}],[-5,{"n":7,"q":null,"m":90,"e":6160,"g":1}],[-4,{"n":5,"q":null,"m":90,"e":6177}],[-3,{"n":5,"q":null,"m":90,"e":6180}],[-2,{"n":4,"q":null,"m":90,"e":6188}],[-1,{"n":5.5,"q":null,"m":90,"e":6200}],[1,{"n":3,"q":null,"m":90,"e":10933}]],"fo":[[5839,[{"t":"Y"}]],[5892,[{"t":"Y"}]]]}],[2639,{"n":"Senou Coulibaly","f":"","fp":"DC","r":5,"c":7,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Og":2,"Os":103.5,"On":24,"Oa":4.31,"Od":1.31,"Om":2117,"Oam":88,"Odm":5,"pd":24,"Omsn":4},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":5835}],[-37,{"n":3,"q":null,"m":90,"e":5839}],[-35,{"n":2,"q":null,"m":90,"e":5860}],[-34,{"n":2.5,"q":null,"m":90,"e":5875}],[-33,{"n":6,"q":null,"m":90,"e":5885}],[-32,{"n":4,"q":null,"m":90,"e":5892}],[-31,{"n":3,"q":null,"m":90,"e":5902}],[-30,{"n":5,"q":null,"m":73,"e":5909}],[-29,{"n":3.5,"q":null,"m":90,"e":5919}],[-28,{"n":3,"q":null,"m":90,"e":5929}],[-27,{"n":3,"q":null,"m":90,"e":5940}],[-26,{"n":4,"q":null,"m":85,"e":5949}],[-25,{"n":3.5,"q":null,"m":90,"e":5960}],[-24,{"n":4,"q":null,"m":69,"e":5972,"g":1}],[-23,{"n":5,"q":null,"m":90,"e":5979}],[-21,{"n":7,"q":null,"m":90,"e":5999,"g":1}],[-20,{"n":3,"q":null,"m":90,"e":6011}],[-19,{"n":5.5,"q":null,"m":90,"e":6019}],[-18,{"n":6,"q":null,"m":90,"e":6035}],[-17,{"n":5,"q":null,"m":90,"e":6045}],[-11,{"n":5,"q":null,"m":90,"e":6100}],[-10,{"n":5.5,"q":null,"m":90,"e":6112}],[2,{"n":5.5,"q":null,"m":90,"e":10570}],[1,{"n":4,"q":null,"m":90,"e":10933}]],"fo":[[5875,[{"t":"Y"}]],[5902,[{"t":"Y"}]],[5919,[{"t":"Y"}]],[5972,[{"t":"Y"},{"t":"O"}]]]}],[2640,{"n":"Barbet","f":"Théo","fp":"DC","r":8,"c":7}],[2665,{"n":"Racioppi","f":"Anthony","fp":"G","r":1,"c":7,"s":{"Os":105,"On":21,"Oa":5,"Od":1.41,"Om":1890,"Oam":90,"pg":21},"p":[[-30,{"n":3.5,"q":null,"m":90,"e":5909}],[-29,{"n":4,"q":null,"m":90,"e":5919}],[-28,{"n":3,"q":null,"m":90,"e":5929}],[-27,{"n":3,"q":null,"m":90,"e":5940}],[-26,{"n":4.5,"q":null,"m":90,"e":5949}],[-25,{"n":4.5,"q":null,"m":90,"e":5960}],[-24,{"n":5,"q":null,"m":90,"e":5972}],[-23,{"n":7,"q":null,"m":90,"e":5979}],[-22,{"n":5,"q":null,"m":90,"e":5990}],[-21,{"n":5,"q":null,"m":90,"e":5999}],[-20,{"n":2.5,"q":null,"m":90,"e":6011}],[-19,{"n":7,"q":null,"m":90,"e":6019}],[-18,{"n":6,"q":null,"m":90,"e":6035}],[-17,{"n":4.5,"q":null,"m":90,"e":6045}],[-16,{"n":6,"q":null,"m":90,"e":6049}],[-15,{"n":4.5,"q":null,"m":90,"e":6060}],[-14,{"n":6,"q":null,"m":90,"e":6073}],[-13,{"n":6,"q":null,"m":90,"e":6080}],[-12,{"n":7,"q":null,"m":90,"e":6094}],[-11,{"n":4,"q":null,"m":90,"e":6100}],[-10,{"n":7,"q":null,"m":90,"e":6112}]]}],[2693,{"n":"Panzo","f":"Jonathan","fp":"DC","r":1,"c":7,"s":{"Os":103,"On":22,"Oa":4.68,"Od":1.11,"Om":1804,"Oam":82,"Odm":16,"pd":22},"p":[[-37,{"n":5,"q":null,"m":71,"e":5839}],[-36,{"n":4,"q":null,"m":90,"e":5848}],[-35,{"n":4.5,"q":null,"m":45,"e":5860}],[-34,{"n":2,"q":null,"m":90,"e":5875}],[-33,{"n":5.5,"q":null,"m":90,"e":5885}],[-30,{"n":4.5,"q":null,"m":72,"e":5909}],[-27,{"n":4,"q":null,"m":61,"e":5940}],[-26,{"n":4,"q":null,"m":90,"e":5949}],[-22,{"n":5.5,"q":null,"m":90,"e":5990}],[-16,{"n":5,"q":null,"m":90,"e":6049}],[-15,{"n":4,"q":null,"m":90,"e":6060}],[-14,{"n":4,"q":null,"m":90,"e":6073}],[-13,{"n":6,"q":null,"m":90,"e":6080}],[-12,{"n":7,"q":null,"m":90,"e":6094}],[-9,{"n":6,"q":null,"m":90,"e":6119}],[-8,{"n":3,"q":null,"m":90,"e":6136}],[-7,{"n":6,"q":null,"m":90,"e":6139}],[-6,{"n":4,"q":null,"m":90,"e":6148}],[-5,{"n":4.5,"q":null,"m":90,"e":6160}],[-4,{"n":5.5,"q":null,"m":90,"e":6177}],[-3,{"n":4.5,"q":null,"m":80,"e":6180}],[-2,{"n":4.5,"q":null,"m":35,"e":6188,"s":1}]],"fo":[[5875,[{"t":"Y"}]]]}],[2722,{"n":"Cheick Traoré","f":"","fp":"DL","r":5,"c":7,"s":{"s":6,"n":2,"a":3,"m":116,"am":58,"dm":45,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Os":15,"On":4,"Oa":3.75,"Od":0.96,"Om":153,"Oam":38,"Odm":35,"pd":4},"p":[[-37,{"n":4,"q":null,"m":24,"e":5838,"s":1}],[-32,{"n":5,"q":null,"m":13,"e":5889,"s":1}],[2,{"n":3,"q":null,"m":26,"e":10570}],[1,{"n":3,"q":null,"m":90,"e":10933}]]}],[2853,{"n":"Dobre","f":"Mihai-Alexandru","fp":"MO","r":5,"c":7,"s":{"Os":107,"On":22,"Oa":4.86,"Od":0.49,"Om":516,"Oam":23,"Odm":21,"pm":21,"pa":1},"p":[[-36,{"n":4,"q":null,"m":66,"e":5848}],[-35,{"n":4.5,"q":null,"m":15,"e":5860,"s":1}],[-34,{"n":4.5,"q":null,"m":23,"e":5875,"s":1}],[-33,{"n":5.5,"q":null,"m":15,"e":5885,"s":1}],[-32,{"n":4.5,"q":null,"m":6,"e":5892,"s":1}],[-31,{"n":4.5,"q":null,"m":25,"e":5902,"s":1}],[-27,{"n":4.5,"q":null,"m":29,"e":5940,"s":1}],[-26,{"n":5,"q":null,"m":5,"e":5949,"s":1}],[-24,{"n":5,"q":null,"m":26,"e":5972,"s":1}],[-22,{"n":5,"q":null,"m":10,"e":5990,"s":1}],[-20,{"n":5,"q":null,"m":2,"e":6011,"s":1}],[-19,{"n":5,"q":null,"m":12,"e":6019,"s":1}],[-18,{"n":5.5,"q":null,"m":64,"e":6035}],[-17,{"n":5.5,"q":null,"m":18,"e":6045,"s":1}],[-16,{"n":5.5,"q":null,"m":79,"e":6049}],[-15,{"n":5,"q":null,"m":18,"e":6060,"s":1}],[-14,{"n":5,"q":null,"m":14,"e":6073,"s":1}],[-13,{"n":5,"q":null,"m":11,"e":6080,"s":1}],[-7,{"n":5,"q":null,"m":1,"e":6139,"s":1}],[-3,{"n":3.5,"q":null,"m":45,"e":6180}],[-2,{"n":5,"q":null,"m":19,"e":6188,"s":1}],[-1,{"n":5,"q":null,"m":13,"e":6200,"s":1}]]}],[3755,{"n":"Bryan Soumaré","f":"Bryan","fp":"MO","r":17,"c":7,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":124,"am":62,"dm":1,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":63,"Sam":63,"Og":3,"Os":200.5,"On":37,"Oa":5.42,"Od":0.79,"Om":2613,"Oam":71,"Odm":23,"pm":37,"Omsn":5.5},"p":[[-37,{"n":5.5,"q":null,"m":60,"e":6222,"g":1}],[-34,{"n":5.5,"q":null,"m":90,"e":6251}],[-33,{"n":6,"q":null,"m":89,"e":6264}],[-32,{"n":5,"q":null,"m":11,"e":6272,"s":1}],[-30,{"n":5.5,"q":null,"m":88,"e":6292}],[-29,{"n":5,"q":null,"m":87,"e":6304}],[-28,{"n":5,"q":null,"m":19,"e":6314,"s":1}],[-27,{"n":4.5,"q":null,"m":62,"e":6325}],[-25,{"n":7,"q":null,"m":74,"e":6345}],[-24,{"n":5.5,"q":null,"m":82,"e":6350}],[-22,{"n":5.5,"q":null,"m":78,"e":6374}],[-21,{"n":6,"q":null,"m":90,"e":6387}],[-20,{"n":7,"q":null,"m":96,"e":6395,"g":1}],[-19,{"n":5,"q":null,"m":87,"e":6409}],[-16,{"n":6,"q":null,"m":58,"e":6434}],[-15,{"n":5,"q":null,"m":23,"e":6446,"s":1}],[-11,{"n":4.5,"q":null,"m":24,"e":6480,"s":1}],[-10,{"n":4,"q":null,"m":58,"e":6495}],[-7,{"n":5.5,"q":null,"m":84,"e":6526}],[-6,{"n":6.5,"q":null,"m":79,"e":6536}],[-3,{"n":5,"q":null,"m":67,"e":6565}],[-2,{"n":6,"q":null,"m":66,"e":6577}],[-38,{"n":5.5,"q":null,"m":90,"e":6217}],[-36,{"n":5.5,"q":null,"m":72,"e":6230}],[-35,{"n":5.5,"q":null,"m":85,"e":6244}],[-31,{"n":4.5,"q":null,"m":65,"e":6285}],[-26,{"n":5.5,"q":null,"m":90,"e":6329}],[-23,{"n":5,"q":null,"m":90,"e":6367}],[-18,{"n":5,"q":null,"m":87,"e":6414}],[-17,{"n":8,"q":null,"m":83,"e":6419,"g":1}],[-13,{"n":5,"q":null,"m":29,"e":6465,"s":1}],[-9,{"n":5,"q":null,"m":83,"e":6500}],[-8,{"n":4.5,"q":null,"m":70,"e":6515}],[-5,{"n":5.5,"q":null,"m":85,"e":6538}],[2,{"n":5.5,"q":null,"m":61,"e":10570}],[-1,{"n":5.5,"q":null,"m":88,"e":6581}],[1,{"n":4.5,"q":null,"m":63,"e":10933}]],"fo":[[6244,[{"t":"Y"}]]]}],[4931,{"n":"Scheidler","f":"Aurélien","fp":"A","r":19,"c":7,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"m":151,"am":76,"dm":21,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":90,"Sam":90,"Og":5,"Os":128.5,"On":27,"Oa":4.76,"Od":0.97,"Om":1691,"Oam":63,"Odm":32,"pa":27,"Omsn":5},"p":[[-37,{"n":4.5,"q":null,"m":71,"e":6224}],[-36,{"n":5,"q":null,"m":90,"e":6233}],[-31,{"n":3.5,"q":null,"m":90,"e":6286}],[-30,{"n":5,"q":null,"m":87,"e":6293}],[-29,{"n":7,"q":null,"m":69,"e":6306,"g":1}],[-27,{"n":7.5,"q":null,"m":69,"e":6320,"g":1}],[-26,{"n":4,"q":null,"m":85,"e":6332}],[-24,{"n":5,"q":null,"m":90,"e":6353}],[-23,{"n":4,"q":null,"m":61,"e":6364}],[-38,{"n":4,"q":null,"m":76,"e":6211}],[-34,{"n":5,"q":null,"m":75,"e":6254}],[-33,{"n":6,"q":null,"m":84,"e":6259,"g":1}],[-32,{"n":4.5,"q":null,"m":89,"e":6272}],[-28,{"n":6,"q":null,"m":77,"e":6313,"g":1}],[-22,{"n":5.5,"q":null,"m":90,"e":6372}],[-19,{"n":4.5,"q":null,"m":1,"e":6019,"s":1}],[-14,{"n":4,"q":null,"m":3,"e":6073,"s":1}],[-11,{"n":4.5,"q":null,"m":28,"e":6100,"s":1}],[-9,{"n":5,"q":null,"m":6,"e":6119,"s":1}],[-8,{"n":4.5,"q":null,"m":11,"e":6136,"s":1}],[-7,{"n":4,"q":null,"m":26,"e":6139,"s":1}],[-6,{"n":4,"q":null,"m":16,"e":6148,"s":1}],[-4,{"n":4,"q":null,"m":90,"e":6177}],[-2,{"n":5,"q":null,"m":79,"e":6188,"g":1}],[2,{"n":5,"q":null,"m":61,"e":10570}],[-1,{"n":4,"q":null,"m":77,"e":6200}],[1,{"n":3.5,"q":null,"m":90,"e":10933}]],"fo":[[6272,[{"t":"I"}]],[6306,[{"t":"Y"}]],[6332,[{"t":"Y"}]]]}],[5057,{"n":"Chouiar","f":"Mounir","fp":"MO","r":12,"c":7,"s":{"Os":106.5,"On":23,"Oa":4.63,"Od":0.64,"Om":1289,"Oam":56,"Odm":27,"pm":10,"pa":13},"p":[[-37,{"n":3.5,"q":null,"m":90,"e":5839}],[-36,{"n":4.5,"q":null,"m":20,"e":5848,"s":1}],[-35,{"n":4,"q":null,"m":15,"e":5860,"s":1}],[-26,{"n":5,"q":null,"m":45,"e":5949}],[-25,{"n":4,"q":null,"m":77,"e":5960}],[-24,{"n":4,"q":null,"m":63,"e":5972}],[-23,{"n":4.5,"q":null,"m":31,"e":5979,"s":1}],[-21,{"n":5,"q":null,"m":16,"e":5999,"s":1}],[-18,{"n":4.5,"q":null,"m":26,"e":6035,"s":1}],[-16,{"n":4,"q":null,"m":60,"e":6049}],[-15,{"n":5,"q":null,"m":90,"e":6060}],[-14,{"n":5,"q":null,"m":45,"e":6073,"s":1}],[-13,{"n":5,"q":null,"m":63,"e":6080}],[-12,{"n":4,"q":null,"m":85,"e":6094}],[-10,{"n":5.5,"q":null,"m":90,"e":6112}],[-9,{"n":5,"q":null,"m":32,"e":6119,"s":1}],[-8,{"n":5,"q":null,"m":90,"e":6136}],[-7,{"n":6.5,"q":null,"m":79,"e":6139}],[-6,{"n":4,"q":null,"m":82,"e":6148}],[-5,{"n":5,"q":null,"m":29,"e":6160,"s":1}],[-4,{"n":4.5,"q":null,"m":29,"e":6177,"s":1}],[-2,{"n":4.5,"q":null,"m":55,"e":6188}],[-1,{"n":4.5,"q":null,"m":77,"e":6200}]],"fo":[[5960,[{"t":"Y"}]]]}],[5079,{"n":"Jacob","f":"Valentin","fp":"MO","r":11,"c":7,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":108,"am":54,"dm":31,"Ss":4,"Sn":1,"Sa":4,"Sm":76,"Sam":76,"Og":3,"Os":152.5,"On":29,"Oa":5.26,"Od":1.08,"Om":2126,"Oam":71,"Odm":25,"pm":20,"pa":9,"Omsn":6},"p":[[-36,{"n":5,"q":null,"m":77,"e":6234}],[-35,{"n":6,"q":null,"m":21,"e":6247,"g":1,"s":1}],[-34,{"n":3,"q":null,"m":93,"e":6255}],[-31,{"n":7,"q":null,"m":90,"e":6281}],[-30,{"n":4,"q":null,"m":78,"e":6294}],[-27,{"n":5,"q":null,"m":33,"e":6323,"s":1}],[-26,{"n":5.5,"q":null,"m":76,"e":6333}],[-24,{"n":6,"q":null,"m":84,"e":6354}],[-22,{"n":5.5,"q":null,"m":75,"e":6373}],[-20,{"n":6,"q":null,"m":68,"e":6391}],[-21,{"n":5.5,"q":null,"m":45,"e":6384}],[-8,{"n":5,"q":null,"m":45,"e":6514}],[-6,{"n":4.5,"q":null,"m":90,"e":6530}],[-4,{"n":6.5,"q":null,"m":83,"e":6553}],[-3,{"n":6,"q":null,"m":73,"e":6563}],[-2,{"n":5,"q":null,"m":90,"e":6574}],[-1,{"n":5,"q":null,"m":89,"e":6584}],[-38,{"n":5.5,"q":null,"m":90,"e":6213}],[-37,{"n":5,"q":null,"m":90,"e":6219}],[-33,{"n":4,"q":null,"m":90,"e":6258}],[-32,{"n":4,"q":null,"m":90,"e":6273}],[-29,{"n":3.5,"q":null,"m":75,"e":6301}],[-28,{"n":4.5,"q":null,"m":27,"e":6314,"s":1}],[-25,{"n":5.5,"q":null,"m":80,"e":6339}],[-23,{"n":7,"q":null,"m":90,"e":6365,"g":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-7,{"n":7.5,"q":null,"m":87,"e":6523,"g":1}],[-5,{"n":6.5,"q":null,"m":89,"e":6543}],[2,{"n":5,"q":null,"m":32,"e":10570}],[1,{"n":4,"q":null,"m":76,"e":10933}]],"fo":[[6255,[{"t":"Y"}]],[6314,[{"t":"Y"}]]]}],[6198,{"n":"Philippe","f":"Rayan","fp":"A","r":3,"c":7,"s":{"Os":86,"On":19,"Oa":4.53,"Od":0.66,"Om":840,"Oam":44,"Odm":30,"pm":3,"pa":16},"p":[[-19,{"n":3.5,"q":null,"m":57,"e":6402}],[-11,{"n":4.5,"q":null,"m":27,"e":6482,"s":1}],[-14,{"n":4.5,"q":null,"m":25,"e":6454,"s":1}],[-13,{"n":3.5,"q":null,"m":87,"e":6463}],[-12,{"n":4,"q":null,"m":34,"e":6470,"s":1}],[-8,{"n":4,"q":null,"m":83,"e":6513}],[-9,{"n":6,"q":null,"m":68,"e":6502}],[-6,{"n":5,"q":null,"m":58,"e":6535}],[-38,{"n":4,"q":null,"m":14,"e":6211,"s":1}],[-27,{"n":5,"q":null,"m":11,"e":6320,"s":1}],[-26,{"n":4.5,"q":null,"m":5,"e":6332,"s":1}],[-16,{"n":5,"q":null,"m":38,"e":6428}],[-15,{"n":5,"q":null,"m":80,"e":6444}],[-10,{"n":3.5,"q":null,"m":90,"e":6489}],[-7,{"n":4.5,"q":null,"m":71,"e":6522}],[-4,{"n":5,"q":null,"m":5,"e":6177,"s":1}],[-3,{"n":4.5,"q":null,"m":63,"e":6180}],[-2,{"n":5,"q":null,"m":11,"e":6188,"s":1}],[-1,{"n":5,"q":null,"m":13,"e":6200,"s":1}]]}],[6306,{"n":"Ngouyamsa","f":"Ahmad Toure","fp":"DL","r":1,"c":7,"s":{"s":4.5,"n":1,"a":4.5,"m":58,"am":58,"Os":17,"On":4,"Oa":4.25,"Od":0.87,"Om":215,"Oam":54,"Odm":32,"pd":4},"p":[[-38,{"n":5,"q":null,"m":12,"e":5835,"s":1}],[-2,{"n":3,"q":null,"m":55,"e":6188}],[2,{"n":4.5,"q":null,"m":58,"e":10570,"s":1}],[-1,{"n":4.5,"q":null,"m":90,"e":6200}]]}],[6529,{"n":"Assalé","f":"Roger","fp":"A","r":14,"c":7,"s":{"g":2,"s":13.5,"n":2,"a":6.75,"d":0.35,"m":104,"am":52,"dm":54,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":14,"Sam":14,"Og":5,"Os":110.5,"On":22,"Oa":5.02,"Od":1.02,"Om":1021,"Oam":46,"Odm":26,"pm":6,"pa":16,"Smsn":6.5,"Omsn":6},"p":[[-38,{"n":6.5,"q":null,"m":35,"e":4312,"g":1,"s":1}],[-37,{"n":7,"q":null,"m":18,"e":4318,"g":1,"s":1}],[-35,{"n":4.5,"q":null,"m":8,"e":4341,"s":1}],[-34,{"n":4,"q":null,"m":32,"e":4351,"s":1}],[-34,{"n":4.5,"q":null,"m":67,"e":5875}],[-33,{"n":6,"q":null,"m":75,"e":5885}],[-32,{"n":4,"q":null,"m":17,"e":5892,"s":1}],[-30,{"n":4,"q":null,"m":58,"e":5909}],[-29,{"n":4.5,"q":null,"m":70,"e":5919}],[-28,{"n":6,"q":null,"m":78,"e":5929,"g":1}],[-27,{"n":4.5,"q":null,"m":29,"e":5940,"s":1}],[-22,{"n":5,"q":null,"m":25,"e":5990}],[-21,{"n":5,"q":null,"m":31,"e":5999,"s":1}],[-20,{"n":4.5,"q":null,"m":18,"e":6011,"s":1}],[-12,{"n":4.5,"q":null,"m":24,"e":6094,"s":1}],[-11,{"n":4.5,"q":null,"m":62,"e":6100}],[-10,{"n":5,"q":null,"m":63,"e":6112}],[-9,{"n":4.5,"q":null,"m":58,"e":6119}],[-6,{"n":3.5,"q":null,"m":59,"e":6148}],[-5,{"n":5,"q":null,"m":90,"e":6160}],[2,{"n":7,"q":null,"m":90,"e":10570,"g":1}],[1,{"n":6.5,"q":null,"m":14,"e":10933,"g":1,"s":1}]],"fo":[[5875,[{"t":"I"}]],[5909,[{"t":"I"}]]]}],[6802,{"n":"Yaya Soumaré","f":"Yaya","fp":"MO","r":15,"c":7,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":56,"am":28,"dm":1,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":27,"Sam":27,"Os":23.5,"On":5,"Oa":4.7,"Od":0.45,"Om":59,"Oam":12,"Odm":15,"pd":3,"pm":2},"p":[[-36,{"n":5,"q":null,"m":1,"e":5850,"s":1}],[-33,{"n":5,"q":null,"m":1,"e":5882,"s":1}],[-17,{"n":5,"q":null,"m":1,"e":6041,"s":1}],[2,{"n":4,"q":null,"m":29,"e":10570,"s":1}],[1,{"n":4.5,"q":null,"m":27,"e":10933,"s":1}]]}],[6860,{"n":"Younoussa","f":"Wilitty","fp":"MD","r":5,"c":7,"s":{"s":5.5,"n":1,"a":5.5,"m":10,"am":10,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":10,"Sam":10,"Os":20.5,"On":4,"Oa":5.13,"Od":0.48,"Om":86,"Oam":22,"Odm":26,"pm":4},"p":[[-38,{"n":5.5,"q":null,"m":61,"e":5835}],[-4,{"n":5,"q":null,"m":5,"e":6177,"s":1}],[-3,{"n":4.5,"q":null,"m":10,"e":6180,"s":1}],[1,{"n":5.5,"q":null,"m":10,"e":10933,"s":1}]]}],[6922,{"n":"Arli","f":"Amir","fp":"MO","r":1,"c":7}],[7270,{"n":"Celina","f":"Bersant","fp":"MO","r":6,"c":7,"s":{"Os":154.5,"On":31,"Oa":4.98,"Od":1.11,"Om":2257,"Oam":73,"Odm":25,"pm":29,"pa":2},"p":[[-38,{"n":7,"q":null,"m":89,"e":5835}],[-35,{"n":2.5,"q":null,"m":43,"e":5860}],[-34,{"n":3.5,"q":null,"m":90,"e":5875}],[-33,{"n":5.5,"q":null,"m":90,"e":5885}],[-32,{"n":3.5,"q":null,"m":90,"e":5892}],[-31,{"n":4.5,"q":null,"m":80,"e":5902}],[-30,{"n":5,"q":null,"m":90,"e":5909}],[-29,{"n":6.5,"q":null,"m":34,"e":5919,"s":1}],[-28,{"n":4,"q":null,"m":90,"e":5929}],[-27,{"n":3,"q":null,"m":90,"e":5940}],[-26,{"n":4.5,"q":null,"m":45,"e":5949,"s":1}],[-25,{"n":4,"q":null,"m":77,"e":5960}],[-24,{"n":5,"q":null,"m":64,"e":5972}],[-23,{"n":5.5,"q":null,"m":31,"e":5979,"s":1}],[-22,{"n":6,"q":null,"m":80,"e":5990}],[-21,{"n":4,"q":null,"m":59,"e":5999}],[-20,{"n":5,"q":null,"m":18,"e":6011,"s":1}],[-19,{"n":5.5,"q":null,"m":90,"e":6019}],[-18,{"n":5,"q":null,"m":90,"e":6035}],[-17,{"n":7,"q":null,"m":90,"e":6045}],[-16,{"n":6,"q":null,"m":90,"e":6049}],[-15,{"n":4,"q":null,"m":90,"e":6060}],[-14,{"n":5.5,"q":null,"m":90,"e":6073}],[-13,{"n":5.5,"q":null,"m":90,"e":6080}],[-12,{"n":5.5,"q":null,"m":90,"e":6094}],[-11,{"n":5.5,"q":null,"m":90,"e":6100}],[-10,{"n":5.5,"q":null,"m":90,"e":6112}],[-8,{"n":5,"q":null,"m":20,"e":6136,"s":1}],[-6,{"n":5,"q":null,"m":31,"e":6148,"s":1}],[-5,{"n":6.5,"q":null,"m":61,"e":6160}],[-4,{"n":4,"q":null,"m":85,"e":6177}]],"fo":[[5835,[{"t":"I"}]],[5860,[{"t":"R"}]],[5875,[{"t":"Y"}]],[5940,[{"t":"Y"}]]]}],[8019,{"n":"Belhadji","f":"Erwan","fp":"A","r":1,"c":7}],[477,{"n":"Ketkeophomphone","f":"Billy","fp":"A","r":9,"c":128,"s":{"Og":3,"Oao":1,"Os":103.5,"On":21,"Oa":4.93,"Od":0.62,"Om":1270,"Oam":60,"Odm":26,"pm":8,"pa":13,"Omsn":4.5},"p":[[-27,{"n":6,"q":null,"m":69,"e":6322}],[-36,{"n":5,"q":null,"m":45,"e":6230}],[-33,{"n":5,"q":null,"m":26,"e":6262,"s":1}],[-31,{"n":4,"q":null,"m":21,"e":6282,"s":1}],[-30,{"n":5,"q":null,"m":90,"e":6296,"g":1,"a":1}],[-29,{"n":5.5,"q":null,"m":89,"e":6301}],[-28,{"n":4,"q":null,"m":23,"e":6315,"s":1}],[-26,{"n":5,"q":null,"m":84,"e":6331}],[-25,{"n":5,"q":null,"m":73,"e":6342}],[-24,{"n":5,"q":null,"m":63,"e":6351}],[-23,{"n":5.5,"q":null,"m":73,"e":6362}],[-22,{"n":4,"q":null,"m":26,"e":6377,"s":1}],[-21,{"n":5,"q":null,"m":18,"e":6381,"s":1}],[-8,{"n":4.5,"q":null,"m":90,"e":6512}],[-7,{"n":5,"q":null,"m":66,"e":6522}],[-6,{"n":4.5,"q":null,"m":80,"e":6532}],[-5,{"n":4.5,"q":null,"m":76,"e":6544,"g":1}],[-4,{"n":5,"q":null,"m":89,"e":6551}],[-3,{"n":4.5,"q":null,"m":26,"e":6558,"s":1}],[-2,{"n":6.5,"q":null,"m":79,"e":6571,"g":1}],[-1,{"n":5,"q":null,"m":64,"e":6578}]],"fo":[[6301,[{"t":"Y"}]]]}],[2682,{"n":"Tchokounte","f":"Malik","fp":"A","r":18,"c":128,"s":{"g":1,"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":10,"Os":174,"On":35,"Oa":4.97,"Od":1.27,"Om":2746,"Oam":78,"Odm":20,"pa":35,"Smsn":6,"Omsn":6},"p":[[2,{"n":6,"q":null,"m":90,"e":10575,"g":1}],[-37,{"n":4.5,"q":null,"m":90,"e":6226}],[-19,{"n":3.5,"q":null,"m":90,"e":6399}],[-11,{"n":5.5,"q":null,"m":69,"e":6483}],[-38,{"n":6,"q":null,"m":90,"e":6210,"g":1}],[-36,{"n":6,"q":null,"m":90,"e":6230}],[-35,{"n":6,"q":null,"m":90,"e":6239,"g":1}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":7,"q":null,"m":90,"e":6269,"g":1}],[-31,{"n":6,"q":null,"m":90,"e":6282}],[-29,{"n":7,"q":null,"m":90,"e":6301,"g":1}],[-28,{"n":3.5,"q":null,"m":90,"e":6315}],[-27,{"n":5,"q":null,"m":90,"e":6322}],[-26,{"n":7,"q":null,"m":90,"e":6331,"g":1}],[-25,{"n":6,"q":null,"m":90,"e":6342,"g":1}],[-24,{"n":5,"q":null,"m":27,"e":6351,"s":1}],[-23,{"n":4,"q":null,"m":73,"e":6362}],[-22,{"n":5,"q":null,"m":79,"e":6377}],[-21,{"n":8,"q":null,"m":90,"e":6381,"g":2}],[-20,{"n":4.5,"q":null,"m":60,"e":6392}],[-18,{"n":3.5,"q":null,"m":90,"e":6414}],[-17,{"n":4,"q":null,"m":79,"e":6421}],[-16,{"n":4,"q":null,"m":90,"e":6433}],[-15,{"n":2.5,"q":null,"m":73,"e":6447}],[-14,{"n":6,"q":null,"m":90,"e":6452}],[-13,{"n":3,"q":null,"m":45,"e":6458}],[-12,{"n":6,"q":null,"m":90,"e":6475,"g":1}],[-10,{"n":4.5,"q":null,"m":70,"e":6492}],[-9,{"n":4,"q":null,"m":29,"e":6499,"s":1}],[-6,{"n":4.5,"q":null,"m":51,"e":6532}],[-5,{"n":4,"q":null,"m":21,"e":6544,"s":1}],[-3,{"n":4,"q":null,"m":90,"e":6558}],[-2,{"n":5,"q":null,"m":90,"e":6571}],[-1,{"n":4,"q":null,"m":90,"e":6578}],[1,{"n":4.5,"q":null,"m":90,"e":10936}]]}],[2793,{"n":"Cissé","f":"Ibrahim","fp":"DC","r":11,"c":128,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":171,"On":34,"Oa":5.03,"Od":0.82,"Om":3022,"Oam":89,"Odm":7,"pd":34},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6210}],[-37,{"n":4,"q":null,"m":90,"e":6226}],[-36,{"n":6,"q":null,"m":90,"e":6230}],[-35,{"n":4.5,"q":null,"m":90,"e":6239}],[-34,{"n":4.5,"q":null,"m":90,"e":6249}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":5,"q":null,"m":90,"e":6269}],[-31,{"n":4.5,"q":null,"m":90,"e":6282}],[-30,{"n":4,"q":null,"m":90,"e":6296}],[-29,{"n":6,"q":null,"m":90,"e":6301}],[-28,{"n":4.5,"q":null,"m":90,"e":6315}],[-27,{"n":6,"q":null,"m":90,"e":6322}],[-26,{"n":5,"q":null,"m":90,"e":6331}],[-24,{"n":5,"q":null,"m":90,"e":6351}],[-19,{"n":5.5,"q":null,"m":52,"e":6399}],[-18,{"n":5,"q":null,"m":90,"e":6414}],[-17,{"n":5.5,"q":null,"m":90,"e":6421}],[-16,{"n":4,"q":null,"m":90,"e":6433}],[-15,{"n":3,"q":null,"m":90,"e":6447}],[-14,{"n":5,"q":null,"m":90,"e":6452}],[-13,{"n":3.5,"q":null,"m":90,"e":6458}],[-12,{"n":5,"q":null,"m":90,"e":6475}],[-11,{"n":6,"q":null,"m":90,"e":6483}],[-10,{"n":5,"q":null,"m":90,"e":6492}],[-9,{"n":5.5,"q":null,"m":90,"e":6499}],[-8,{"n":5,"q":null,"m":90,"e":6512}],[-6,{"n":5.5,"q":null,"m":90,"e":6532}],[-5,{"n":4.5,"q":null,"m":90,"e":6544}],[-4,{"n":5,"q":null,"m":90,"e":6551}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[-2,{"n":5.5,"q":null,"m":90,"e":6571}],[2,{"n":5,"q":null,"m":90,"e":10575}],[-1,{"n":7,"q":null,"m":90,"e":6578}],[1,{"n":6,"q":null,"m":90,"e":10936}]],"fo":[[6262,[{"t":"Y"}]],[6331,[{"t":"Y"}]]]}],[3763,{"n":"Pierre","f":"Leverton","fp":"MD","r":9,"c":128,"s":{"s":4.5,"n":1,"a":4.5,"m":63,"am":63,"Og":1,"Os":148.5,"On":30,"Oa":4.95,"Od":0.66,"Om":1326,"Oam":44,"Odm":34,"pm":28,"pa":2,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":1,"e":6210,"s":1}],[-37,{"n":5.5,"q":null,"m":6,"e":6226,"s":1}],[-36,{"n":5,"q":null,"m":3,"e":6230,"s":1}],[-34,{"n":4.5,"q":null,"m":7,"e":6249,"s":1}],[-33,{"n":5,"q":null,"m":6,"e":6262,"s":1}],[-30,{"n":4,"q":null,"m":90,"e":6296}],[-29,{"n":6,"q":null,"m":13,"e":6301,"g":1,"s":1}],[-28,{"n":4.5,"q":null,"m":56,"e":6315,"s":1}],[-27,{"n":5.5,"q":null,"m":88,"e":6322}],[-26,{"n":6,"q":null,"m":75,"e":6331}],[-25,{"n":6,"q":null,"m":80,"e":6342}],[-24,{"n":5,"q":null,"m":85,"e":6351}],[-23,{"n":5,"q":null,"m":10,"e":6362,"s":1}],[-20,{"n":5.5,"q":null,"m":16,"e":6392,"s":1}],[-18,{"n":4.5,"q":null,"m":9,"e":6414,"s":1}],[-17,{"n":5.5,"q":null,"m":17,"e":6421,"s":1}],[-15,{"n":3,"q":null,"m":90,"e":6447}],[-13,{"n":4.5,"q":null,"m":19,"e":6458,"s":1}],[-12,{"n":5,"q":null,"m":18,"e":6475,"s":1}],[-11,{"n":5,"q":null,"m":21,"e":6483,"s":1}],[-10,{"n":5,"q":null,"m":90,"e":6492}],[-8,{"n":4,"q":null,"m":71,"e":6512}],[-7,{"n":5,"q":null,"m":56,"e":6522}],[-6,{"n":6,"q":null,"m":90,"e":6532}],[-5,{"n":5,"q":null,"m":14,"e":6544,"s":1}],[-4,{"n":4.5,"q":null,"m":90,"e":6551}],[-3,{"n":5,"q":null,"m":28,"e":6558,"s":1}],[-2,{"n":4.5,"q":null,"m":69,"e":6571}],[2,{"n":4.5,"q":null,"m":63,"e":10575}],[-1,{"n":5,"q":null,"m":45,"e":6578}]]}],[5142,{"n":"Vachoux","f":"Jérémy","fp":"G","r":7,"c":128,"s":{"Os":5.5,"On":1,"Oa":5.5,"Om":90,"Oam":90,"pg":1},"p":[[-10,{"n":5.5,"q":null,"m":90,"e":6492}]]}],[6275,{"n":"Ba","f":"Alioune","fp":"DC","r":10,"c":128,"s":{"s":5,"n":1,"a":5,"m":15,"am":15,"Ss":5,"Sn":1,"Sa":5,"Sm":15,"Sam":15,"Os":132,"On":26,"Oa":5.08,"Od":0.93,"Om":2054,"Oam":79,"Odm":25,"pd":26},"p":[[-38,{"n":5,"q":null,"m":90,"e":6210}],[-37,{"n":4.5,"q":null,"m":90,"e":6226}],[-35,{"n":3,"q":null,"m":90,"e":6239}],[-34,{"n":5.5,"q":null,"m":90,"e":6249}],[-31,{"n":4.5,"q":null,"m":45,"e":6282}],[-30,{"n":4.5,"q":null,"m":90,"e":6296}],[-29,{"n":6,"q":null,"m":90,"e":6301}],[-28,{"n":6,"q":null,"m":90,"e":6315}],[-27,{"n":5.5,"q":null,"m":90,"e":6322}],[-25,{"n":4,"q":null,"m":90,"e":6342}],[-24,{"n":6,"q":null,"m":90,"e":6351}],[-23,{"n":6,"q":null,"m":90,"e":6362}],[-22,{"n":5,"q":null,"m":90,"e":6377}],[-21,{"n":6,"q":null,"m":90,"e":6381}],[-20,{"n":3.5,"q":null,"m":90,"e":6392}],[-19,{"n":5.5,"q":null,"m":90,"e":6399}],[-18,{"n":4,"q":null,"m":90,"e":6414}],[-17,{"n":4.5,"q":null,"m":73,"e":6421}],[-10,{"n":5,"q":null,"m":17,"e":6492}],[-9,{"n":7,"q":null,"m":90,"e":6499}],[-8,{"n":5,"q":null,"m":90,"e":6512}],[-7,{"n":4,"q":null,"m":90,"e":6522}],[-6,{"n":6,"q":null,"m":90,"e":6532}],[-5,{"n":5,"q":null,"m":14,"e":6544,"s":1}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[1,{"n":5,"q":null,"m":15,"e":10936}]],"fo":[[10936,[{"t":"I"}]],[6239,[{"t":"Y"}]],[6351,[{"t":"Y"}]]]}],[6715,{"n":"Manuel Semedo","f":"","fp":"A","r":3,"c":128,"s":{"Os":13,"On":3,"Oa":4.33,"Od":0.29,"Om":17,"Oam":6,"Odm":4,"pa":3},"p":[[-4,{"n":4.5,"q":null,"m":1,"e":6556,"s":1}],[-35,{"n":4,"q":null,"m":9,"e":6244,"s":1}],[-17,{"n":4.5,"q":null,"m":7,"e":6419,"s":1}]]}],[6740,{"n":"Bruneel","f":"Nicolas","fp":"MD","r":10,"c":128,"s":{"s":5,"n":1,"a":5,"m":59,"am":59,"Ss":5,"Sn":1,"Sa":5,"Sm":59,"Sam":59,"Og":1,"Os":43,"On":8,"Oa":5.38,"Od":0.88,"Om":535,"Oam":67,"Odm":24,"pm":8,"Omsn":7},"p":[[-7,{"n":4,"q":null,"m":71,"e":6522}],[-6,{"n":6,"q":null,"m":90,"e":6532}],[-5,{"n":5.5,"q":null,"m":90,"e":6544}],[-4,{"n":5.5,"q":null,"m":84,"e":6551}],[-3,{"n":5,"q":null,"m":75,"e":6558}],[-2,{"n":5,"q":null,"m":21,"e":6571,"s":1}],[-1,{"n":7,"q":null,"m":45,"e":6578,"g":1,"s":1}],[1,{"n":5,"q":null,"m":59,"e":10936}]]}],[6741,{"n":"Boudaud","f":"Dimitri","fp":"MO","r":8,"c":128,"s":{"s":4.5,"n":1,"a":4.5,"m":9,"am":9,"Og":1,"Os":109,"On":23,"Oa":4.74,"Od":0.78,"Om":1088,"Oam":47,"Odm":28,"pm":19,"pa":4,"Omsn":7},"p":[[-38,{"n":7,"q":null,"m":65,"e":6210,"g":1}],[-37,{"n":4,"q":null,"m":22,"e":6226,"s":1}],[-35,{"n":4,"q":null,"m":73,"e":6239}],[-34,{"n":4.5,"q":null,"m":25,"e":6249,"s":1}],[-33,{"n":4,"q":null,"m":71,"e":6262}],[-32,{"n":4,"q":null,"m":81,"e":6269}],[-31,{"n":4,"q":null,"m":60,"e":6282}],[-30,{"n":4.5,"q":null,"m":15,"e":6296,"s":1}],[-29,{"n":5,"q":null,"m":1,"e":6301,"s":1}],[-24,{"n":4.5,"q":null,"m":62,"e":6351}],[-23,{"n":4.5,"q":null,"m":17,"e":6362,"s":1}],[-22,{"n":6,"q":null,"m":27,"e":6377,"s":1}],[-21,{"n":5,"q":null,"m":18,"e":6381,"s":1}],[-20,{"n":5,"q":null,"m":30,"e":6392,"s":1}],[-18,{"n":5,"q":null,"m":17,"e":6414,"s":1}],[-12,{"n":4.5,"q":null,"m":53,"e":6475}],[-11,{"n":6,"q":null,"m":81,"e":6483}],[-10,{"n":5,"q":null,"m":84,"e":6492}],[-9,{"n":5,"q":null,"m":71,"e":6499}],[-8,{"n":3.5,"q":null,"m":59,"e":6512}],[-2,{"n":4.5,"q":null,"m":79,"e":6571}],[2,{"n":4.5,"q":null,"m":9,"e":10575,"s":1}],[-1,{"n":5,"q":null,"m":68,"e":6578}]],"fo":[[6210,[{"t":"I"}]],[6239,[{"t":"Y"}]],[6262,[{"t":"Y"}]]]}],[6742,{"n":"Huysman","f":"Jeremy","fp":"DC","r":10,"c":128,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":58,"am":29,"dm":3,"Ss":5,"Sn":1,"Sa":5,"Sm":31,"Sam":31,"Og":2,"Os":107,"On":22,"Oa":4.86,"Od":0.69,"Om":679,"Oam":31,"Odm":30,"pd":16,"pm":6,"Omsn":6},"p":[[-38,{"n":4,"q":null,"m":80,"e":6210}],[-37,{"n":5,"q":null,"m":22,"e":6226,"s":1}],[-35,{"n":5,"q":null,"m":17,"e":6239,"s":1}],[-34,{"n":4,"q":null,"m":83,"e":6249}],[-33,{"n":6,"q":null,"m":71,"e":6262,"g":1}],[-32,{"n":7,"q":null,"m":68,"e":6269,"g":1}],[-31,{"n":4,"q":null,"m":83,"e":6282}],[-28,{"n":5,"q":null,"m":4,"e":6315,"s":1}],[-27,{"n":5,"q":null,"m":2,"e":6322,"s":1}],[-26,{"n":5,"q":null,"m":15,"e":6331,"s":1}],[-24,{"n":5.5,"q":null,"m":5,"e":6351,"s":1}],[-19,{"n":4.5,"q":null,"m":38,"e":6399,"s":1}],[-18,{"n":4.5,"q":null,"m":2,"e":6414,"s":1}],[-17,{"n":4,"q":null,"m":73,"e":6421}],[-16,{"n":4.5,"q":null,"m":3,"e":6433,"s":1}],[-14,{"n":5,"q":null,"m":6,"e":6452,"s":1}],[-13,{"n":5,"q":null,"m":10,"e":6458,"s":1}],[-9,{"n":5,"q":null,"m":19,"e":6499,"s":1}],[-7,{"n":4.5,"q":null,"m":19,"e":6522,"s":1}],[-4,{"n":5,"q":null,"m":1,"e":6551,"s":1}],[2,{"n":4.5,"q":null,"m":27,"e":10575,"s":1}],[1,{"n":5,"q":null,"m":31,"e":10936,"s":1}]],"fo":[[6331,[{"t":"Y"}]],[10575,[{"t":"Y"}]]]}],[6763,{"n":"Tchouatcha","f":"Jovanie","fp":"DL","r":1,"c":128}],[6767,{"n":"Vannoye","f":"Thomas","fp":"DC","r":9,"c":128,"s":{"s":9,"n":2,"a":4.5,"m":165,"am":83,"dm":11,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":75,"Sam":75,"Os":48.5,"On":10,"Oa":4.85,"Od":0.67,"Om":554,"Oam":55,"Odm":36,"pd":10},"p":[[-36,{"n":5,"q":null,"m":2,"e":6230,"s":1}],[-35,{"n":4.5,"q":null,"m":60,"e":6239}],[-34,{"n":5,"q":null,"m":7,"e":6249,"s":1}],[-32,{"n":5,"q":null,"m":9,"e":6269,"s":1}],[-23,{"n":5.5,"q":null,"m":90,"e":6362}],[-22,{"n":5,"q":null,"m":76,"e":6377}],[-21,{"n":6,"q":null,"m":90,"e":6381}],[-20,{"n":3.5,"q":null,"m":55,"e":6392,"s":1}],[2,{"n":4.5,"q":null,"m":90,"e":10575}],[1,{"n":4.5,"q":null,"m":75,"e":10936,"s":1}]]}],[6770,{"n":"Thiam","f":"Demba","fp":"DL","r":13,"c":128,"s":{"s":10,"n":2,"a":5,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":182.5,"On":36,"Oa":5.07,"Od":0.94,"Om":2902,"Oam":81,"Odm":23,"pd":35,"pm":1},"p":[[-38,{"n":6.5,"q":null,"m":90,"e":6210}],[-37,{"n":4,"q":null,"m":90,"e":6226}],[-36,{"n":5,"q":null,"m":88,"e":6230}],[-35,{"n":5,"q":null,"m":30,"e":6239,"s":1}],[-34,{"n":5,"q":null,"m":83,"e":6249}],[-33,{"n":5.5,"q":null,"m":84,"e":6262}],[-32,{"n":5.5,"q":null,"m":90,"e":6269}],[-31,{"n":5,"q":null,"m":90,"e":6282}],[-30,{"n":3.5,"q":null,"m":90,"e":6296}],[-29,{"n":5.5,"q":null,"m":90,"e":6301}],[-28,{"n":4.5,"q":null,"m":90,"e":6315}],[-27,{"n":6,"q":null,"m":90,"e":6322}],[-26,{"n":6,"q":null,"m":90,"e":6331}],[-25,{"n":4.5,"q":null,"m":88,"e":6342}],[-24,{"n":5.5,"q":null,"m":78,"e":6351}],[-20,{"n":5,"q":null,"m":35,"e":6392}],[-19,{"n":6,"q":null,"m":90,"e":6399}],[-18,{"n":4.5,"q":null,"m":81,"e":6414}],[-17,{"n":5,"q":null,"m":90,"e":6421}],[-16,{"n":4,"q":null,"m":82,"e":6433}],[-15,{"n":3,"q":null,"m":90,"e":6447}],[-14,{"n":7.5,"q":null,"m":90,"e":6452}],[-13,{"n":5,"q":null,"m":90,"e":6458}],[-12,{"n":5,"q":null,"m":90,"e":6475}],[-11,{"n":6.5,"q":null,"m":90,"e":6483}],[-10,{"n":5,"q":null,"m":83,"e":6492}],[-8,{"n":5,"q":null,"m":1,"e":6512,"s":1}],[-7,{"n":4,"q":null,"m":90,"e":6522}],[-6,{"n":5,"q":null,"m":9,"e":6532,"s":1}],[-5,{"n":3.5,"q":null,"m":90,"e":6544}],[-4,{"n":6.5,"q":null,"m":90,"e":6551}],[-3,{"n":4,"q":null,"m":90,"e":6558}],[-2,{"n":5,"q":null,"m":90,"e":6571}],[2,{"n":5,"q":null,"m":90,"e":10575}],[-1,{"n":6,"q":null,"m":90,"e":6578}],[1,{"n":5,"q":null,"m":90,"e":10936}]],"fo":[[6351,[{"t":"Y"}]]]}],[6771,{"n":"Salhi","f":"Dorian","fp":"G","r":3,"c":128}],[6772,{"n":"Kabamba Kalonji","f":"David","fp":"DC","r":1,"c":128}],[6774,{"n":"Gomis","f":"Adon","fp":"DC","r":12,"c":128,"s":{"g":1,"s":10.5,"n":2,"a":5.25,"d":1.77,"m":180,"am":90,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":90,"Sam":90,"Og":2,"Os":82.5,"On":17,"Oa":4.85,"Od":0.95,"Om":1304,"Oam":77,"Odm":17,"pd":17,"Smsn":6.5,"Omsn":6.5},"p":[[-37,{"n":4,"q":null,"m":68,"e":6226}],[-36,{"n":5,"q":null,"m":90,"e":6230}],[-35,{"n":4,"q":null,"m":60,"e":6239}],[-19,{"n":5,"q":null,"m":90,"e":6399}],[-17,{"n":4.5,"q":null,"m":57,"e":6421}],[-12,{"n":4,"q":null,"m":61,"e":6475}],[-11,{"n":5,"q":null,"m":30,"e":6483}],[-10,{"n":4,"q":null,"m":73,"e":6492,"s":1}],[-9,{"n":5,"q":null,"m":88,"e":6499}],[-7,{"n":4,"q":null,"m":66,"e":6522}],[-6,{"n":5,"q":null,"m":81,"e":6532}],[-5,{"n":4,"q":null,"m":90,"e":6544}],[-4,{"n":7,"q":null,"m":90,"e":6551,"g":1}],[-2,{"n":5.5,"q":null,"m":90,"e":6571}],[2,{"n":4,"q":null,"m":90,"e":10575}],[-1,{"n":6,"q":null,"m":90,"e":6578}],[1,{"n":6.5,"q":null,"m":90,"e":10936,"g":1}]],"fo":[[6239,[{"t":"Y"}]]]}],[6777,{"n":"Kerrouche","f":"Redouane","fp":"MD","r":13,"c":128,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":140,"am":70,"dm":16,"Ss":4,"Sn":1,"Sa":4,"Sm":59,"Sam":59,"Os":172.5,"On":35,"Oa":4.93,"Od":0.88,"Om":2500,"Oam":71,"Odm":24,"pm":35},"p":[[-38,{"n":5,"q":null,"m":10,"e":6210,"s":1}],[-37,{"n":4,"q":null,"m":68,"e":6226}],[-36,{"n":6,"q":null,"m":87,"e":6230}],[-35,{"n":5,"q":null,"m":73,"e":6239}],[-34,{"n":4.5,"q":null,"m":65,"e":6249}],[-33,{"n":5,"q":null,"m":19,"e":6262,"s":1}],[-31,{"n":5,"q":null,"m":21,"e":6282,"s":1}],[-30,{"n":5,"q":null,"m":90,"e":6296}],[-29,{"n":6,"q":null,"m":77,"e":6301}],[-28,{"n":5,"q":null,"m":86,"e":6315}],[-25,{"n":4.5,"q":null,"m":90,"e":6342}],[-24,{"n":5,"q":null,"m":12,"e":6351,"s":1}],[-23,{"n":6,"q":null,"m":80,"e":6362}],[-22,{"n":5.5,"q":null,"m":90,"e":6377}],[-21,{"n":5,"q":null,"m":83,"e":6381}],[-20,{"n":3,"q":null,"m":74,"e":6392}],[-19,{"n":6,"q":null,"m":90,"e":6399}],[-18,{"n":5.5,"q":null,"m":88,"e":6414}],[-16,{"n":3,"q":null,"m":87,"e":6433}],[-15,{"n":3.5,"q":null,"m":73,"e":6447}],[-14,{"n":6,"q":null,"m":84,"e":6452}],[-13,{"n":4.5,"q":null,"m":45,"e":6458,"s":1}],[-12,{"n":4,"q":null,"m":72,"e":6475}],[-11,{"n":6,"q":null,"m":90,"e":6483}],[-10,{"n":5,"q":null,"m":90,"e":6492}],[-9,{"n":5.5,"q":null,"m":71,"e":6499}],[-8,{"n":6,"q":null,"m":90,"e":6512}],[-7,{"n":4.5,"q":null,"m":34,"e":6522,"s":1}],[-5,{"n":4,"q":null,"m":90,"e":6544}],[-4,{"n":6,"q":null,"m":90,"e":6551}],[-3,{"n":4,"q":null,"m":61,"e":6558}],[-2,{"n":5,"q":null,"m":90,"e":6571}],[2,{"n":4.5,"q":null,"m":81,"e":10575}],[-1,{"n":6,"q":null,"m":90,"e":6578}],[1,{"n":4,"q":null,"m":59,"e":10936}]],"fo":[[6301,[{"t":"I"},{"t":"Y"}]],[6296,[{"t":"Y"}]]]}],[6779,{"n":"Kouagba","f":"Loic","fp":"DC","r":11,"c":128,"s":{"s":4,"n":1,"a":4,"m":73,"am":73,"Os":128,"On":27,"Oa":4.74,"Od":0.88,"Om":1999,"Oam":74,"Odm":27,"pd":27},"p":[[-37,{"n":3,"q":null,"m":90,"e":6226}],[-36,{"n":5.5,"q":null,"m":90,"e":6230}],[-35,{"n":5,"q":null,"m":60,"e":6239}],[-34,{"n":5,"q":null,"m":11,"e":6249,"s":1}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":5,"q":null,"m":90,"e":6269}],[-31,{"n":5,"q":null,"m":45,"e":6282,"s":1}],[-30,{"n":3.5,"q":null,"m":45,"e":6296,"s":1}],[-27,{"n":5,"q":null,"m":90,"e":6322}],[-26,{"n":4.5,"q":null,"m":90,"e":6331}],[-25,{"n":4,"q":null,"m":90,"e":6342}],[-24,{"n":5.5,"q":null,"m":90,"e":6351}],[-23,{"n":6,"q":null,"m":90,"e":6362}],[-22,{"n":5.5,"q":null,"m":90,"e":6377}],[-21,{"n":5.5,"q":null,"m":90,"e":6381}],[-20,{"n":3,"q":null,"m":90,"e":6392}],[-19,{"n":5,"q":null,"m":90,"e":6399}],[-18,{"n":4.5,"q":null,"m":81,"e":6414}],[-17,{"n":5,"q":null,"m":33,"e":6421,"s":1}],[-16,{"n":4,"q":null,"m":90,"e":6433}],[-15,{"n":3,"q":null,"m":90,"e":6447}],[-14,{"n":6,"q":null,"m":90,"e":6452}],[-13,{"n":4.5,"q":null,"m":90,"e":6458}],[-12,{"n":5,"q":null,"m":29,"e":6475,"s":1}],[-11,{"n":6,"q":null,"m":90,"e":6483}],[-9,{"n":5,"q":null,"m":2,"e":6499,"s":1}],[2,{"n":4,"q":null,"m":73,"e":10575}]]}],[6780,{"n":"Maraval","f":"Axel","fp":"G","r":17,"c":128,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":204.5,"On":39,"Oa":5.24,"Od":1.11,"Om":3510,"Oam":90,"pg":39},"p":[[-38,{"n":3.5,"q":null,"m":90,"e":6210}],[-37,{"n":6,"q":null,"m":90,"e":6226}],[-36,{"n":8,"q":null,"m":90,"e":6230}],[-35,{"n":5,"q":null,"m":90,"e":6239}],[-34,{"n":4,"q":null,"m":90,"e":6249}],[-33,{"n":4.5,"q":null,"m":90,"e":6262}],[-32,{"n":5,"q":null,"m":90,"e":6269}],[-31,{"n":5.5,"q":null,"m":90,"e":6282}],[-30,{"n":4,"q":null,"m":90,"e":6296}],[-29,{"n":6,"q":null,"m":90,"e":6301}],[-28,{"n":5,"q":null,"m":90,"e":6315}],[-27,{"n":4,"q":null,"m":90,"e":6322}],[-26,{"n":6,"q":null,"m":90,"e":6331}],[-25,{"n":5,"q":null,"m":90,"e":6342}],[-24,{"n":6,"q":null,"m":90,"e":6351}],[-23,{"n":5.5,"q":null,"m":90,"e":6362}],[-22,{"n":4,"q":null,"m":90,"e":6377}],[-21,{"n":5.5,"q":null,"m":90,"e":6381}],[-20,{"n":2.5,"q":null,"m":90,"e":6392}],[-19,{"n":7.5,"q":null,"m":90,"e":6399}],[-18,{"n":6,"q":null,"m":90,"e":6414}],[-17,{"n":5,"q":null,"m":90,"e":6421}],[-16,{"n":4,"q":null,"m":90,"e":6433}],[-15,{"n":2.5,"q":null,"m":90,"e":6447}],[-14,{"n":6,"q":null,"m":90,"e":6452}],[-13,{"n":5,"q":null,"m":90,"e":6458}],[-12,{"n":5,"q":null,"m":90,"e":6475}],[-11,{"n":6,"q":null,"m":90,"e":6483}],[-9,{"n":5.5,"q":null,"m":90,"e":6499}],[-8,{"n":5.5,"q":null,"m":90,"e":6512}],[-7,{"n":5.5,"q":null,"m":90,"e":6522}],[-6,{"n":5.5,"q":null,"m":90,"e":6532}],[-5,{"n":5,"q":null,"m":90,"e":6544}],[-4,{"n":6,"q":null,"m":90,"e":6551}],[-3,{"n":6,"q":null,"m":90,"e":6558}],[-2,{"n":6,"q":null,"m":90,"e":6571}],[2,{"n":5.5,"q":null,"m":90,"e":10575}],[-1,{"n":6,"q":null,"m":90,"e":6578}],[1,{"n":6,"q":null,"m":90,"e":10936}]],"fo":[[6210,[{"t":"Y"}]],[6351,[{"t":"Y"}]]]}],[6781,{"n":"Rocheteau","f":"Kevin","fp":"A","r":1,"c":128,"s":{"Os":4,"On":1,"Oa":4,"Om":7,"Oam":7,"pa":1},"p":[[-31,{"n":4,"q":null,"m":7,"e":6282,"s":1}]]}],[6782,{"n":"Dudouit","f":"Emeric","fp":"DL","r":21,"c":128,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":121,"am":61,"dm":42,"Ss":5,"Sn":1,"Sa":5,"Sm":31,"Sam":31,"Og":3,"Os":176.5,"On":33,"Oa":5.35,"Od":0.98,"Om":2754,"Oam":83,"Odm":16,"pd":6,"pm":27,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":90,"e":6210,"g":1}],[-37,{"n":4.5,"q":null,"m":84,"e":6226}],[-36,{"n":6.5,"q":null,"m":90,"e":6230}],[-35,{"n":4,"q":null,"m":90,"e":6239}],[-34,{"n":7,"q":null,"m":90,"e":6249,"g":1}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":6,"q":null,"m":90,"e":6269}],[-31,{"n":4.5,"q":null,"m":69,"e":6282}],[-29,{"n":6,"q":null,"m":90,"e":6301}],[-28,{"n":5,"q":null,"m":34,"e":6315}],[-27,{"n":6.5,"q":null,"m":90,"e":6322}],[-26,{"n":5.5,"q":null,"m":90,"e":6331}],[-24,{"n":5.5,"q":null,"m":75,"e":6351}],[-23,{"n":5,"q":null,"m":90,"e":6362}],[-22,{"n":5.5,"q":null,"m":90,"e":6377}],[-21,{"n":5.5,"q":null,"m":90,"e":6381}],[-19,{"n":7,"q":null,"m":90,"e":6399}],[-18,{"n":5.5,"q":null,"m":90,"e":6414}],[-17,{"n":5,"q":null,"m":90,"e":6421}],[-16,{"n":4,"q":null,"m":90,"e":6433}],[-14,{"n":7.5,"q":null,"m":90,"e":6452}],[-13,{"n":3.5,"q":null,"m":45,"e":6458}],[-12,{"n":4.5,"q":null,"m":90,"e":6475}],[-11,{"n":7,"q":null,"m":90,"e":6483}],[-10,{"n":5.5,"q":null,"m":90,"e":6492}],[-9,{"n":6,"q":null,"m":90,"e":6499,"g":1}],[-8,{"n":5,"q":null,"m":90,"e":6512}],[-7,{"n":4.5,"q":null,"m":90,"e":6522}],[-6,{"n":5,"q":null,"m":90,"e":6532}],[-5,{"n":4.5,"q":null,"m":76,"e":6544}],[-4,{"n":5,"q":null,"m":90,"e":6551}],[2,{"n":4,"q":null,"m":90,"e":10575}],[1,{"n":5,"q":null,"m":31,"e":10936,"s":1}]],"fo":[[6315,[{"t":"I"}]],[6351,[{"t":"R"}]],[6230,[{"t":"Y"}]],[6282,[{"t":"Y"}]],[10936,[{"t":"Y"}]]]}],[7296,{"n":"Cetiner","f":"Ozkan","fp":"MO","r":1,"c":128,"s":{"Os":5,"On":1,"Oa":5,"Om":22,"Oam":22,"pm":1},"p":[[-15,{"n":5,"q":null,"m":22,"e":6447,"s":1}]]}],[7620,{"n":"Loridan","f":"Théo","fp":"DC","r":1,"c":128}],[8010,{"n":"Ouadah","f":"Mohamed","fp":"MD","r":11,"c":128,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":90,"am":45,"dm":40,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":73,"Sam":73,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"Om":90,"Oam":45,"Odm":40,"pm":2},"p":[[2,{"n":5,"q":null,"m":17,"e":10575,"s":1}],[1,{"n":4.5,"q":null,"m":73,"e":10936}]],"fo":[[10936,[{"t":"Y"}]]]}],[8071,{"n":"Segbé Azankpo","f":"Désiré","fp":"A","r":11,"c":128,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"Om":180,"Oam":90,"pa":2},"p":[[2,{"n":4,"q":null,"m":90,"e":10575}],[1,{"n":5,"q":null,"m":90,"e":10936}]]}],[8491,{"n":"Bilal","f":"Brahimi","fp":"MO","r":6,"c":128,"s":{},"p":[[1,{"n":null,"q":null,"m":0,"e":10936}]]}],[405,{"n":"Gaspar","f":"Jordy","fp":"DL","r":10,"c":94,"s":{"s":4.5,"n":1,"a":4.5,"m":45,"am":45,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":45,"Sam":45,"Os":140,"On":28,"Oa":5,"Od":1.07,"Om":2134,"Oam":76,"Odm":22,"pd":28},"p":[[1,{"n":4.5,"q":null,"m":45,"e":10934}],[-38,{"n":6,"q":null,"m":82,"e":6212}],[-36,{"n":2.5,"q":null,"m":45,"e":6231}],[-35,{"n":4,"q":null,"m":90,"e":6246}],[-31,{"n":5,"q":null,"m":90,"e":6283}],[-29,{"n":5.5,"q":null,"m":90,"e":6302}],[-18,{"n":4,"q":null,"m":73,"e":6408}],[-17,{"n":6.5,"q":null,"m":90,"e":6420}],[-11,{"n":6,"q":null,"m":78,"e":6485}],[-10,{"n":5,"q":null,"m":90,"e":6493}],[-6,{"n":6,"q":null,"m":90,"e":6533}],[-5,{"n":4,"q":null,"m":81,"e":6541}],[-3,{"n":5,"q":null,"m":71,"e":6561}],[-2,{"n":4,"q":null,"m":90,"e":6572}],[-1,{"n":5,"q":null,"m":90,"e":6585}],[-37,{"n":5,"q":null,"m":41,"e":6220,"s":1}],[-34,{"n":5,"q":null,"m":8,"e":6251,"s":1}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":6,"q":null,"m":28,"e":6270,"s":1}],[-30,{"n":3.5,"q":null,"m":90,"e":6295}],[-27,{"n":5,"q":null,"m":89,"e":6323}],[-19,{"n":3,"q":null,"m":63,"e":6400}],[-16,{"n":5,"q":null,"m":90,"e":6434}],[-15,{"n":6.5,"q":null,"m":90,"e":6447}],[-14,{"n":5.5,"q":null,"m":90,"e":6449}],[-12,{"n":4.5,"q":null,"m":80,"e":6476}],[-8,{"n":6,"q":null,"m":90,"e":6513}],[-4,{"n":7,"q":null,"m":90,"e":6552}]],"fo":[[6323,[{"t":"I"}]],[6212,[{"t":"Y"}]],[6231,[{"t":"Y"}]],[6302,[{"t":"Y"}]]]}],[547,{"n":"Belmonte","f":"Anthony","fp":"MD","r":15,"c":94,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"m":180,"am":90,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":90,"Sam":90,"Og":2,"Os":108,"On":21,"Oa":5.14,"Od":0.73,"Om":1022,"Oam":49,"Odm":34,"pm":21,"Omsn":6},"p":[[-28,{"n":7,"q":null,"m":82,"e":6312,"g":1}],[-20,{"n":5,"q":null,"m":13,"e":6396,"s":1}],[-38,{"n":5.5,"q":null,"m":82,"e":6212}],[-37,{"n":5.5,"q":null,"m":88,"e":6220}],[-36,{"n":5,"q":null,"m":82,"e":6231}],[-35,{"n":6,"q":null,"m":69,"e":6246,"g":1}],[-34,{"n":5,"q":null,"m":21,"e":6251,"s":1}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":6.5,"q":null,"m":90,"e":6270}],[-31,{"n":5,"q":null,"m":3,"e":6283,"s":1}],[-29,{"n":5,"q":null,"m":61,"e":6302}],[-27,{"n":5,"q":null,"m":45,"e":6323,"s":1}],[-22,{"n":5,"q":null,"m":11,"e":6368,"s":1}],[-11,{"n":5,"q":null,"m":17,"e":6485,"s":1}],[-10,{"n":5,"q":null,"m":13,"e":6493,"s":1}],[-8,{"n":5,"q":null,"m":15,"e":6513,"s":1}],[-7,{"n":5,"q":null,"m":16,"e":6519,"s":1}],[-6,{"n":5,"q":null,"m":19,"e":6533,"s":1}],[-4,{"n":5,"q":null,"m":25,"e":6552,"s":1}],[2,{"n":4,"q":null,"m":90,"e":10579}],[1,{"n":3.5,"q":null,"m":90,"e":10934}]],"fo":[[6220,[{"t":"Y"}]]]}],[4841,{"n":"Goteni","f":"Chris-Vianney","fp":"DC","r":1,"c":94}],[4979,{"n":"Abdallah","f":"Abdel Hakim","fp":"DL","r":10,"c":94,"s":{"s":5,"n":1,"a":5,"m":21,"am":21,"Os":144,"On":28,"Oa":5.14,"Od":0.68,"Om":1256,"Oam":45,"Odm":40,"pd":28},"p":[[-24,{"n":6,"q":null,"m":90,"e":6357}],[-9,{"n":5.5,"q":null,"m":90,"e":6503}],[-13,{"n":5,"q":null,"m":90,"e":6460}],[-38,{"n":6.5,"q":null,"m":90,"e":6212}],[-37,{"n":4,"q":null,"m":90,"e":6220}],[-36,{"n":5,"q":null,"m":90,"e":6231}],[-35,{"n":5,"q":null,"m":9,"e":6246,"s":1}],[-34,{"n":6,"q":null,"m":90,"e":6251}],[-33,{"n":5,"q":null,"m":27,"e":6262,"s":1}],[-30,{"n":5,"q":null,"m":6,"e":6295,"s":1}],[-29,{"n":4.5,"q":null,"m":20,"e":6302,"s":1}],[-28,{"n":5.5,"q":null,"m":90,"e":6312}],[-27,{"n":5,"q":null,"m":13,"e":6323,"s":1}],[-21,{"n":5,"q":null,"m":1,"e":6382,"s":1}],[-20,{"n":3.5,"q":null,"m":90,"e":6396}],[-18,{"n":4.5,"q":null,"m":17,"e":6408,"s":1}],[-17,{"n":5,"q":null,"m":1,"e":6420,"s":1}],[-15,{"n":6,"q":null,"m":4,"e":6447,"s":1}],[-12,{"n":5,"q":null,"m":10,"e":6476,"s":1}],[-11,{"n":6,"q":null,"m":90,"e":6485}],[-8,{"n":5,"q":null,"m":1,"e":6513,"s":1}],[-7,{"n":4.5,"q":null,"m":90,"e":6519}],[-6,{"n":6.5,"q":null,"m":90,"e":6533}],[-5,{"n":5,"q":null,"m":9,"e":6541,"s":1}],[-4,{"n":5,"q":null,"m":9,"e":6552,"s":1}],[-3,{"n":5,"q":null,"m":19,"e":6561,"s":1}],[2,{"n":5,"q":null,"m":21,"e":10579,"s":1}],[-1,{"n":5,"q":null,"m":9,"e":6585,"s":1}]],"fo":[[6220,[{"t":"Y"}]],[6323,[{"t":"Y"}]]]}],[5072,{"n":"Pickel","f":"Charles","fp":"MD","r":9,"c":94,"s":{"Og":1,"Os":186,"On":35,"Oa":5.31,"Od":0.98,"Om":2995,"Oam":86,"Odm":12,"pm":35,"Omsn":8},"p":[[-38,{"n":6,"q":null,"m":90,"e":6212}],[-37,{"n":6,"q":null,"m":90,"e":6220}],[-36,{"n":4.5,"q":null,"m":90,"e":6231}],[-35,{"n":3.5,"q":null,"m":90,"e":6246}],[-34,{"n":6,"q":null,"m":90,"e":6251}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-32,{"n":8,"q":null,"m":90,"e":6270,"g":1}],[-31,{"n":5.5,"q":null,"m":90,"e":6283}],[-30,{"n":3.5,"q":null,"m":90,"e":6295}],[-29,{"n":5.5,"q":null,"m":90,"e":6302}],[-28,{"n":6,"q":null,"m":89,"e":6312}],[-26,{"n":4.5,"q":null,"m":90,"e":6332}],[-25,{"n":5.5,"q":null,"m":90,"e":6343}],[-24,{"n":6,"q":null,"m":90,"e":6357}],[-23,{"n":6.5,"q":null,"m":90,"e":6363}],[-21,{"n":5.5,"q":null,"m":90,"e":6382}],[-20,{"n":4.5,"q":null,"m":90,"e":6396}],[-19,{"n":5,"q":null,"m":63,"e":6400}],[-18,{"n":4.5,"q":null,"m":81,"e":6408}],[-17,{"n":6,"q":null,"m":90,"e":6420}],[-16,{"n":4.5,"q":null,"m":72,"e":6434}],[-15,{"n":7,"q":null,"m":90,"e":6447}],[-14,{"n":5.5,"q":null,"m":83,"e":6449}],[-13,{"n":6,"q":null,"m":90,"e":6460}],[-12,{"n":5.5,"q":null,"m":90,"e":6476}],[-11,{"n":5,"q":null,"m":27,"e":6485,"s":1}],[-9,{"n":4,"q":null,"m":76,"e":6503}],[-8,{"n":7,"q":null,"m":90,"e":6513}],[-7,{"n":5,"q":null,"m":74,"e":6519}],[-6,{"n":5,"q":null,"m":90,"e":6533}],[-5,{"n":4,"q":null,"m":90,"e":6541}],[-4,{"n":5,"q":null,"m":90,"e":6552}],[-3,{"n":5.5,"q":null,"m":90,"e":6561}],[-2,{"n":4.5,"q":null,"m":90,"e":6572}],[-1,{"n":5,"q":null,"m":90,"e":6585}]],"fo":[[6332,[{"t":"Y"}]]]}],[5088,{"n":"Salles","f":"Esteban","fp":"G","r":7,"c":94,"s":{"Os":75.5,"On":14,"Oa":5.39,"Od":0.92,"Om":1191,"Oam":85,"Odm":18,"pg":14},"p":[[-35,{"n":3.5,"q":null,"m":90,"e":6246}],[-34,{"n":6,"q":null,"m":90,"e":6251}],[-33,{"n":6,"q":null,"m":90,"e":6262}],[-32,{"n":6,"q":null,"m":90,"e":6270}],[-31,{"n":4,"q":null,"m":90,"e":6283}],[-30,{"n":5,"q":null,"m":90,"e":6295}],[-29,{"n":5,"q":null,"m":90,"e":6302}],[-28,{"n":7,"q":null,"m":90,"e":6312}],[-27,{"n":5,"q":null,"m":90,"e":6323}],[-26,{"n":5,"q":null,"m":90,"e":6332}],[-25,{"n":6,"q":null,"m":90,"e":6343}],[-24,{"n":6,"q":null,"m":90,"e":6357}],[-23,{"n":6,"q":null,"m":90,"e":6363}],[-22,{"n":5,"q":null,"m":21,"e":6368,"s":1}]]}],[5107,{"n":"Ondaan","f":"Terell","fp":"A","r":8,"c":94,"s":{"s":4.5,"n":1,"a":4.5,"m":69,"am":69,"Og":1,"Os":25,"On":5,"Oa":5,"Od":0.94,"Om":176,"Oam":35,"Odm":28,"pa":5,"Omsn":6.5},"p":[[-5,{"n":4,"q":null,"m":62,"e":6541,"s":1}],[-3,{"n":6.5,"q":null,"m":15,"e":6561,"g":1,"s":1}],[-2,{"n":5,"q":null,"m":14,"e":6572,"s":1}],[2,{"n":4.5,"q":null,"m":69,"e":10579}],[-1,{"n":5,"q":null,"m":16,"e":6585,"s":1}]]}],[5126,{"n":"Mombris","f":"Jerome","fp":"DL","r":15,"c":94,"s":{"s":6.5,"n":2,"a":3.25,"d":0.35,"m":159,"am":80,"dm":15,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Os":170.5,"On":34,"Oa":5.01,"Od":0.81,"Om":2628,"Oam":77,"Odm":27,"pd":33,"pm":1},"p":[[-38,{"n":5,"q":null,"m":8,"e":6212,"s":1}],[-35,{"n":4,"q":null,"m":81,"e":6246}],[-33,{"n":3.5,"q":null,"m":57,"e":6262}],[-32,{"n":6,"q":null,"m":90,"e":6270}],[-31,{"n":6,"q":null,"m":90,"e":6283}],[-30,{"n":4.5,"q":null,"m":90,"e":6295}],[-29,{"n":5.5,"q":null,"m":90,"e":6302}],[-28,{"n":5,"q":null,"m":64,"e":6312}],[-27,{"n":4.5,"q":null,"m":77,"e":6323}],[-26,{"n":5,"q":null,"m":90,"e":6332}],[-25,{"n":5,"q":null,"m":90,"e":6343}],[-23,{"n":6,"q":null,"m":90,"e":6363}],[-22,{"n":5,"q":null,"m":90,"e":6368}],[-21,{"n":5.5,"q":null,"m":90,"e":6382}],[-19,{"n":4.5,"q":null,"m":90,"e":6400}],[-18,{"n":4,"q":null,"m":90,"e":6408}],[-17,{"n":6,"q":null,"m":90,"e":6420}],[-16,{"n":5,"q":null,"m":90,"e":6434}],[-15,{"n":6,"q":null,"m":90,"e":6447}],[-14,{"n":5.5,"q":null,"m":90,"e":6449}],[-13,{"n":5,"q":null,"m":5,"e":6460,"s":1}],[-12,{"n":5,"q":null,"m":90,"e":6476}],[-11,{"n":5,"q":null,"m":12,"e":6485,"s":1}],[-10,{"n":5,"q":null,"m":90,"e":6493}],[-9,{"n":5,"q":null,"m":5,"e":6503,"s":1}],[-8,{"n":6.5,"q":null,"m":90,"e":6513}],[-7,{"n":4.5,"q":null,"m":90,"e":6519}],[-5,{"n":5,"q":null,"m":90,"e":6541}],[-4,{"n":6,"q":null,"m":90,"e":6552}],[-3,{"n":6,"q":null,"m":90,"e":6561}],[-2,{"n":4.5,"q":null,"m":90,"e":6572}],[2,{"n":3.5,"q":null,"m":69,"e":10579}],[-1,{"n":5,"q":null,"m":90,"e":6585}],[1,{"n":3,"q":null,"m":90,"e":10934}]],"fo":[[6262,[{"t":"R"}]],[6323,[{"t":"Y"}]]]}],[5127,{"n":"Correa","f":"Joris","fp":"A","r":16,"c":94,"s":{"Og":9,"Os":187,"On":36,"Oa":5.19,"Od":1.19,"Om":2565,"Oam":71,"Odm":25,"pm":11,"pa":25,"Omsn":6},"p":[[-32,{"n":5.5,"q":null,"m":21,"e":6276,"s":1}],[-31,{"n":4.5,"q":null,"m":45,"e":6284,"s":1}],[-29,{"n":4,"q":null,"m":90,"e":6305}],[-28,{"n":3.5,"q":null,"m":72,"e":6310}],[-25,{"n":5,"q":null,"m":90,"e":6341}],[-23,{"n":4.5,"q":null,"m":45,"e":6360}],[-13,{"n":6,"q":null,"m":72,"e":6459,"g":1}],[-5,{"n":7,"q":null,"m":21,"e":6540,"g":1,"s":1}],[-1,{"n":3.5,"q":null,"m":84,"e":6582}],[-38,{"n":5,"q":null,"m":31,"e":6215,"s":1}],[-37,{"n":7,"q":null,"m":70,"e":6221,"g":1}],[-36,{"n":7,"q":null,"m":90,"e":6232,"g":1}],[-35,{"n":6.5,"q":null,"m":88,"e":6240,"g":1}],[-34,{"n":5,"q":null,"m":90,"e":6252}],[-33,{"n":7,"q":null,"m":90,"e":6260}],[-30,{"n":5.5,"q":null,"m":77,"e":6289}],[-27,{"n":5,"q":null,"m":90,"e":6322}],[-26,{"n":5,"q":null,"m":90,"e":6330}],[-24,{"n":4,"q":null,"m":90,"e":6350}],[-22,{"n":4.5,"q":null,"m":20,"e":6370,"s":1}],[-21,{"n":2.5,"q":null,"m":90,"e":6382}],[-20,{"n":5,"q":null,"m":71,"e":6391}],[-19,{"n":8,"q":null,"m":74,"e":6407,"g":1}],[-18,{"n":4.5,"q":null,"m":83,"e":6405}],[-17,{"n":5,"q":null,"m":90,"e":6424}],[-16,{"n":6,"q":null,"m":86,"e":6429}],[-14,{"n":6.5,"q":null,"m":82,"e":6450,"g":1}],[-12,{"n":4.5,"q":null,"m":90,"e":6468}],[-11,{"n":5,"q":null,"m":90,"e":6479}],[-10,{"n":6.5,"q":null,"m":90,"e":6497,"g":1}],[-9,{"n":4,"q":null,"m":80,"e":6499}],[-8,{"n":5,"q":null,"m":34,"e":6508,"s":1}],[-6,{"n":6,"q":null,"m":83,"e":6536,"g":1}],[-4,{"n":4.5,"q":null,"m":11,"e":6548,"s":1}],[-3,{"n":4.5,"q":null,"m":74,"e":6561}],[-2,{"n":4.5,"q":null,"m":71,"e":6574}]],"fo":[[6260,[{"t":"Y"}]],[6322,[{"t":"Y"}]]]}],[5130,{"n":"Monfray","f":"Adrien","fp":"DC","r":11,"c":94,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":137,"am":69,"dm":30,"Ss":4,"Sn":1,"Sa":4,"Sm":47,"Sam":47,"Os":182,"On":35,"Oa":5.2,"Od":0.96,"Om":3091,"Oam":88,"Odm":8,"pd":35},"p":[[-38,{"n":6,"q":null,"m":90,"e":6212}],[-37,{"n":5.5,"q":null,"m":90,"e":6220}],[-36,{"n":4.5,"q":null,"m":90,"e":6231}],[-35,{"n":4,"q":null,"m":90,"e":6246}],[-34,{"n":6,"q":null,"m":90,"e":6251}],[-33,{"n":5,"q":null,"m":90,"e":6262}],[-31,{"n":3.5,"q":null,"m":74,"e":6283}],[-30,{"n":4,"q":null,"m":90,"e":6295}],[-28,{"n":6,"q":null,"m":90,"e":6312}],[-27,{"n":5,"q":null,"m":90,"e":6323}],[-26,{"n":5,"q":null,"m":90,"e":6332}],[-25,{"n":5.5,"q":null,"m":90,"e":6343}],[-24,{"n":6,"q":null,"m":90,"e":6357}],[-23,{"n":6,"q":null,"m":90,"e":6363}],[-22,{"n":4.5,"q":null,"m":90,"e":6368}],[-21,{"n":6,"q":null,"m":90,"e":6382}],[-20,{"n":4,"q":null,"m":90,"e":6396}],[-19,{"n":5,"q":null,"m":90,"e":6400}],[-18,{"n":3,"q":null,"m":90,"e":6408}],[-17,{"n":6.5,"q":null,"m":90,"e":6420}],[-15,{"n":6.5,"q":null,"m":90,"e":6447}],[-14,{"n":6,"q":null,"m":90,"e":6449}],[-12,{"n":5.5,"q":null,"m":90,"e":6476}],[-11,{"n":6,"q":null,"m":90,"e":6485}],[-10,{"n":6,"q":null,"m":90,"e":6493}],[-9,{"n":6,"q":null,"m":90,"e":6503}],[-8,{"n":6.5,"q":null,"m":90,"e":6513}],[-7,{"n":6,"q":null,"m":90,"e":6519}],[-5,{"n":4,"q":null,"m":90,"e":6541}],[-4,{"n":6,"q":null,"m":90,"e":6552}],[-3,{"n":5,"q":null,"m":90,"e":6561}],[-2,{"n":4,"q":null,"m":90,"e":6572}],[2,{"n":4.5,"q":null,"m":90,"e":10579}],[-1,{"n":5,"q":null,"m":90,"e":6585}],[1,{"n":4,"q":null,"m":47,"e":10934,"s":1}]],"fo":[[6283,[{"t":"Y"},{"t":"O"}]],[6323,[{"t":"Y"}]]]}],[5176,{"n":"Perez","f":"Manuel","fp":"MD","r":15,"c":94,"s":{"ao":1,"s":3,"n":1,"a":3,"m":57,"am":57,"Sao":1,"Ss":3,"Sn":1,"Sa":3,"Sm":57,"Sam":57,"Oao":1,"Os":131,"On":26,"Oa":5.04,"Od":0.8,"Om":1536,"Oam":59,"Odm":35,"pm":26},"p":[[-6,{"n":4.5,"q":null,"m":7,"e":6150,"s":1}],[-3,{"n":4.5,"q":null,"m":19,"e":6182,"s":1}],[-2,{"n":4.5,"q":null,"m":90,"e":6190}],[-27,{"n":4,"q":null,"m":45,"e":6323}],[-26,{"n":5,"q":null,"m":76,"e":6332}],[-25,{"n":5,"q":null,"m":7,"e":6343,"s":1}],[-24,{"n":5.5,"q":null,"m":90,"e":6357}],[-23,{"n":5,"q":null,"m":8,"e":6363,"s":1}],[-22,{"n":5.5,"q":null,"m":90,"e":6368}],[-21,{"n":5,"q":null,"m":70,"e":6382}],[-20,{"n":4,"q":null,"m":90,"e":6396}],[-19,{"n":6.5,"q":null,"m":90,"e":6400}],[-18,{"n":5,"q":null,"m":9,"e":6408,"s":1}],[-17,{"n":5,"q":null,"m":54,"e":6420}],[-16,{"n":4.5,"q":null,"m":18,"e":6434,"s":1}],[-15,{"n":6,"q":null,"m":78,"e":6447}],[-14,{"n":6.5,"q":null,"m":90,"e":6449}],[-13,{"n":5,"q":null,"m":15,"e":6460,"s":1}],[-12,{"n":5,"q":null,"m":90,"e":6476}],[-11,{"n":6.5,"q":null,"m":90,"e":6485}],[-10,{"n":5,"q":null,"m":90,"e":6493}],[-9,{"n":5.5,"q":null,"m":90,"e":6503}],[-8,{"n":5.5,"q":null,"m":90,"e":6513}],[-7,{"n":4.5,"q":null,"m":74,"e":6519}],[-5,{"n":5,"q":null,"m":9,"e":6165,"s":1}],[1,{"n":3,"q":null,"m":57,"e":10934,"a":1}]],"fo":[[10934,[{"t":"I"}]],[6343,[{"t":"Y"}]],[6357,[{"t":"Y"}]]]}],[5179,{"n":"Nery","f":"Loris","fp":"DL","r":8,"c":94,"s":{"s":7,"n":2,"a":3.5,"d":0.71,"m":135,"am":68,"dm":32,"Ss":3,"Sn":1,"Sa":3,"Sm":45,"Sam":45,"Os":67.5,"On":14,"Oa":4.82,"Od":0.75,"Om":1024,"Oam":73,"Odm":29,"pd":14},"p":[[-32,{"n":5,"q":null,"m":62,"e":6270}],[-28,{"n":5,"q":null,"m":90,"e":6312}],[-27,{"n":5,"q":null,"m":1,"e":6323,"s":1}],[-26,{"n":5,"q":null,"m":90,"e":6332}],[-25,{"n":5,"q":null,"m":90,"e":6343}],[-24,{"n":6,"q":null,"m":90,"e":6357}],[-22,{"n":4.5,"q":null,"m":90,"e":6368}],[-21,{"n":5,"q":null,"m":89,"e":6382}],[-20,{"n":4,"q":null,"m":90,"e":6396}],[-19,{"n":5.5,"q":null,"m":27,"e":6400,"s":1}],[-13,{"n":5,"q":null,"m":85,"e":6460}],[-9,{"n":5.5,"q":null,"m":85,"e":6503}],[2,{"n":4,"q":null,"m":90,"e":10579}],[1,{"n":3,"q":null,"m":45,"e":10934,"s":1}]],"fo":[[6357,[{"t":"Y"}]]]}],[5201,{"n":"Nestor","f":"Loic","fp":"DC","r":12,"c":94,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"m":180,"am":90,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Og":4,"Os":152,"On":30,"Oa":5.07,"Od":0.97,"Om":2646,"Oam":88,"Odm":8,"pd":30,"Omsn":5.5},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6212}],[-37,{"n":5.5,"q":null,"m":90,"e":6220}],[-36,{"n":4.5,"q":null,"m":90,"e":6231}],[-35,{"n":4,"q":null,"m":90,"e":6246}],[-33,{"n":5.5,"q":null,"m":90,"e":6262}],[-32,{"n":5,"q":null,"m":90,"e":6270}],[-31,{"n":4.5,"q":null,"m":90,"e":6283}],[-30,{"n":4,"q":null,"m":90,"e":6295}],[-29,{"n":5.5,"q":null,"m":90,"e":6302}],[-26,{"n":5.5,"q":null,"m":45,"e":6332}],[-25,{"n":5.5,"q":null,"m":90,"e":6343}],[-24,{"n":5,"q":null,"m":90,"e":6357}],[-19,{"n":5.5,"q":null,"m":90,"e":6400,"g":1}],[-18,{"n":3,"q":null,"m":90,"e":6408}],[-17,{"n":5.5,"q":null,"m":90,"e":6420}],[-16,{"n":5.5,"q":null,"m":90,"e":6434}],[-15,{"n":7.5,"q":null,"m":90,"e":6447,"g":1}],[-14,{"n":3.5,"q":null,"m":90,"e":6449}],[-13,{"n":5,"q":null,"m":90,"e":6460}],[-12,{"n":5.5,"q":null,"m":90,"e":6476}],[-11,{"n":7,"q":null,"m":90,"e":6485,"g":1}],[-10,{"n":5.5,"q":null,"m":90,"e":6493}],[-7,{"n":4.5,"q":null,"m":90,"e":6519}],[-6,{"n":5.5,"q":null,"m":90,"e":6533}],[-5,{"n":5.5,"q":null,"m":90,"e":6541}],[-4,{"n":5.5,"q":null,"m":81,"e":6552}],[-2,{"n":5.5,"q":null,"m":90,"e":6572,"g":1}],[2,{"n":4.5,"q":null,"m":90,"e":10579}],[-1,{"n":4.5,"q":null,"m":90,"e":6585}],[1,{"n":3,"q":null,"m":90,"e":10934}]]}],[5207,{"n":"Maubleu","f":"Brice","fp":"G","r":12,"c":94,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":148,"On":27,"Oa":5.48,"Od":0.96,"Om":2409,"Oam":89,"Odm":4,"pg":27},"p":[[-38,{"n":6,"q":null,"m":90,"e":6212}],[-37,{"n":7,"q":null,"m":90,"e":6220}],[-36,{"n":6.5,"q":null,"m":90,"e":6231}],[-22,{"n":3.5,"q":null,"m":69,"e":6368}],[-21,{"n":6,"q":null,"m":90,"e":6382}],[-20,{"n":4,"q":null,"m":90,"e":6396}],[-19,{"n":6.5,"q":null,"m":90,"e":6400}],[-18,{"n":4,"q":null,"m":90,"e":6408}],[-17,{"n":6,"q":null,"m":90,"e":6420}],[-16,{"n":5,"q":null,"m":90,"e":6434}],[-15,{"n":5.5,"q":null,"m":90,"e":6447}],[-14,{"n":5,"q":null,"m":90,"e":6449}],[-13,{"n":6,"q":null,"m":90,"e":6460}],[-12,{"n":5.5,"q":null,"m":90,"e":6476}],[-11,{"n":6.5,"q":null,"m":90,"e":6485}],[-10,{"n":5,"q":null,"m":90,"e":6493}],[-9,{"n":6,"q":null,"m":90,"e":6503}],[-8,{"n":6.5,"q":null,"m":90,"e":6513}],[-7,{"n":4.5,"q":null,"m":90,"e":6519}],[-6,{"n":6.5,"q":null,"m":90,"e":6533}],[-5,{"n":5,"q":null,"m":90,"e":6541}],[-4,{"n":6,"q":null,"m":90,"e":6552}],[-3,{"n":5.5,"q":null,"m":90,"e":6561}],[-2,{"n":6.5,"q":null,"m":90,"e":6572}],[2,{"n":4,"q":null,"m":90,"e":10579}],[-1,{"n":5,"q":null,"m":90,"e":6585}],[1,{"n":4.5,"q":null,"m":90,"e":10934}]]}],[5975,{"n":"Michel","f":"Florian","fp":"MO","r":7,"c":94,"s":{"Os":113,"On":23,"Oa":4.91,"Od":0.51,"Om":781,"Oam":34,"Odm":24,"pm":22,"pa":1},"p":[[-38,{"n":4.5,"q":null,"m":8,"e":6212,"s":1}],[-37,{"n":5,"q":null,"m":2,"e":6220,"s":1}],[-36,{"n":5,"q":null,"m":23,"e":6231,"s":1}],[-35,{"n":4.5,"q":null,"m":21,"e":6246,"s":1}],[-30,{"n":5,"q":null,"m":6,"e":6295,"s":1}],[-29,{"n":4.5,"q":null,"m":12,"e":6302,"s":1}],[-28,{"n":5.5,"q":null,"m":8,"e":6312,"s":1}],[-27,{"n":5,"q":null,"m":63,"e":6323}],[-26,{"n":4.5,"q":null,"m":45,"e":6332}],[-25,{"n":5.5,"q":null,"m":24,"e":6343,"s":1}],[-24,{"n":5,"q":null,"m":15,"e":6357,"s":1}],[-23,{"n":5,"q":null,"m":70,"e":6363}],[-22,{"n":4.5,"q":null,"m":26,"e":6368,"s":1}],[-21,{"n":6,"q":null,"m":20,"e":6382,"s":1}],[-19,{"n":5,"q":null,"m":27,"e":6400,"s":1}],[-18,{"n":3.5,"q":null,"m":70,"e":6408}],[-16,{"n":4.5,"q":null,"m":27,"e":6434,"s":1}],[-15,{"n":5,"q":null,"m":21,"e":6447,"s":1}],[-9,{"n":5,"q":null,"m":63,"e":6503}],[-5,{"n":4.5,"q":null,"m":28,"e":6541}],[-4,{"n":5.5,"q":null,"m":65,"e":6552}],[-3,{"n":5.5,"q":null,"m":75,"e":6561}],[-2,{"n":5,"q":null,"m":62,"e":6572}]]}],[6142,{"n":"Sylvestre-Brac","f":"Jules","fp":"DL","r":3,"c":94,"s":{"Os":15,"On":3,"Oa":5,"Om":12,"Oam":4,"Odm":4,"pd":3},"p":[[-38,{"n":5,"q":null,"m":3,"e":6212,"s":1}],[-34,{"n":5,"q":null,"m":8,"e":6251,"s":1}],[-28,{"n":5,"q":null,"m":1,"e":6312,"s":1}]]}],[6461,{"n":"Straalman","f":"Bart","fp":"DC","r":9,"c":94,"s":{"s":4.5,"n":1,"a":4.5,"m":43,"am":43,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":43,"Sam":43,"Og":1,"Os":101.5,"On":20,"Oa":5.08,"Od":0.69,"Om":1457,"Oam":73,"Odm":32,"pd":20,"Omsn":6},"p":[[-34,{"n":5.5,"q":null,"m":90,"e":6251}],[-32,{"n":6,"q":null,"m":90,"e":6270,"g":1}],[-31,{"n":5,"q":null,"m":9,"e":6283,"s":1}],[-29,{"n":4.5,"q":null,"m":90,"e":6302}],[-28,{"n":6,"q":null,"m":90,"e":6312}],[-27,{"n":5,"q":null,"m":90,"e":6323}],[-26,{"n":5,"q":null,"m":45,"e":6332,"s":1}],[-23,{"n":5,"q":null,"m":90,"e":6363}],[-22,{"n":3.5,"q":null,"m":90,"e":6368}],[-21,{"n":5.5,"q":null,"m":90,"e":6382}],[-20,{"n":4,"q":null,"m":90,"e":6396}],[-17,{"n":5,"q":null,"m":1,"e":6420,"s":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6434}],[-13,{"n":5.5,"q":null,"m":90,"e":6460}],[-9,{"n":5.5,"q":null,"m":90,"e":6503}],[-8,{"n":6,"q":null,"m":90,"e":6513}],[-6,{"n":6,"q":null,"m":90,"e":6533}],[-4,{"n":5,"q":null,"m":9,"e":6552,"s":1}],[-3,{"n":4.5,"q":null,"m":90,"e":6561}],[1,{"n":4.5,"q":null,"m":43,"e":10934}]],"fo":[[10934,[{"t":"I"}]]]}],[6760,{"n":"Diallo","f":"Mamadou Lamarana","fp":"MO","r":10,"c":94,"s":{"Og":4,"Os":177.5,"On":35,"Oa":5.07,"Od":0.93,"Om":1748,"Oam":50,"Odm":28,"pm":8,"pa":27,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":87,"e":6212}],[-37,{"n":5.5,"q":null,"m":69,"e":6220}],[-36,{"n":6,"q":null,"m":23,"e":6231,"s":1}],[-35,{"n":4.5,"q":null,"m":8,"e":6246,"s":1}],[-33,{"n":4.5,"q":null,"m":55,"e":6262}],[-32,{"n":6,"q":null,"m":73,"e":6270}],[-31,{"n":5,"q":null,"m":27,"e":6283,"s":1}],[-30,{"n":5,"q":null,"m":75,"e":6295}],[-29,{"n":4,"q":null,"m":70,"e":6302}],[-28,{"n":4.5,"q":null,"m":9,"e":6312,"s":1}],[-27,{"n":4.5,"q":null,"m":63,"e":6323}],[-26,{"n":5,"q":null,"m":90,"e":6332}],[-25,{"n":4.5,"q":null,"m":24,"e":6343,"s":1}],[-23,{"n":4,"q":null,"m":61,"e":6363}],[-22,{"n":4.5,"q":null,"m":26,"e":6368,"s":1}],[-21,{"n":4.5,"q":null,"m":20,"e":6382,"s":1}],[-20,{"n":4,"q":null,"m":66,"e":6396}],[-19,{"n":4.5,"q":null,"m":63,"e":6400}],[-18,{"n":4,"q":null,"m":70,"e":6408}],[-17,{"n":7.5,"q":null,"m":78,"e":6420,"g":1}],[-16,{"n":5,"q":null,"m":72,"e":6434}],[-15,{"n":6.5,"q":null,"m":86,"e":6447}],[-14,{"n":6,"q":null,"m":83,"e":6449}],[-13,{"n":6,"q":null,"m":22,"e":6460,"g":1,"s":1}],[-12,{"n":4,"q":null,"m":65,"e":6476}],[-11,{"n":5,"q":null,"m":17,"e":6485,"s":1}],[-10,{"n":5,"q":null,"m":19,"e":6493,"s":1}],[-9,{"n":4.5,"q":null,"m":28,"e":6503,"s":1}],[-8,{"n":7,"q":null,"m":89,"e":6513,"g":1}],[-6,{"n":7,"q":null,"m":71,"e":6533,"g":1}],[-5,{"n":4.5,"q":null,"m":8,"e":6541,"s":1}],[-4,{"n":4.5,"q":null,"m":25,"e":6552,"s":1}],[-3,{"n":4.5,"q":null,"m":27,"e":6561,"s":1}],[-2,{"n":5,"q":null,"m":14,"e":6572,"s":1}],[-1,{"n":5,"q":null,"m":65,"e":6585}]],"fo":[[6262,[{"t":"Y"},{"t":"O"}]]]}],[6766,{"n":"Ravet","f":"Yoric","fp":"A","r":12,"c":94,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Og":5,"Os":158,"On":29,"Oa":5.45,"Od":1.06,"Om":1939,"Oam":67,"Odm":27,"pm":14,"pa":15,"Omsn":6.5},"p":[[-38,{"n":5,"q":null,"m":22,"e":6212,"s":1}],[-37,{"n":5,"q":null,"m":21,"e":6220,"s":1}],[-36,{"n":5.5,"q":null,"m":67,"e":6231}],[-35,{"n":5,"q":null,"m":34,"e":6246,"s":1}],[-34,{"n":5,"q":null,"m":69,"e":6251}],[-33,{"n":5,"q":null,"m":63,"e":6262}],[-32,{"n":7.5,"q":null,"m":86,"e":6270,"g":1}],[-31,{"n":5.5,"q":null,"m":87,"e":6283}],[-30,{"n":4.5,"q":null,"m":84,"e":6295}],[-29,{"n":5,"q":null,"m":20,"e":6302,"s":1}],[-25,{"n":4.5,"q":null,"m":83,"e":6343}],[-24,{"n":5,"q":null,"m":24,"e":6357,"s":1}],[-23,{"n":7,"q":null,"m":81,"e":6363,"g":1}],[-22,{"n":3.5,"q":null,"m":79,"e":6368}],[-21,{"n":7,"q":null,"m":80,"e":6382,"g":1}],[-20,{"n":4.5,"q":null,"m":24,"e":6396,"s":1}],[-14,{"n":6.5,"q":null,"m":12,"e":6449,"g":1}],[-13,{"n":7,"q":null,"m":90,"e":6460}],[-12,{"n":4,"q":null,"m":80,"e":6476}],[-11,{"n":6,"q":null,"m":73,"e":6485}],[-10,{"n":6,"q":null,"m":71,"e":6493}],[-7,{"n":5,"q":null,"m":90,"e":6519}],[-6,{"n":7,"q":null,"m":90,"e":6533,"g":1}],[-5,{"n":4,"q":null,"m":82,"e":6541}],[-4,{"n":6,"q":null,"m":81,"e":6552}],[-3,{"n":5,"q":null,"m":90,"e":6561}],[-2,{"n":7,"q":null,"m":76,"e":6572}],[2,{"n":4.5,"q":null,"m":90,"e":10579}],[-1,{"n":5.5,"q":null,"m":90,"e":6585}]],"fo":[[6220,[{"t":"Y"}]],[6283,[{"t":"Y"}]]]}],[6845,{"n":"Bourdelle","f":"Paul","fp":"G","r":3,"c":94}],[6854,{"n":"Achille Anani","f":"","fp":"A","r":12,"c":94,"s":{"s":5.5,"n":2,"a":2.75,"d":0.35,"m":180,"am":90,"Ss":2.5,"Sn":1,"Sa":2.5,"Sm":90,"Sam":90,"Og":7,"Os":181.5,"On":39,"Oa":4.65,"Od":1.07,"Om":1689,"Oam":43,"Odm":28,"pa":39,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":22,"e":6212,"s":1}],[-37,{"n":4,"q":null,"m":20,"e":6220,"s":1}],[-36,{"n":4.5,"q":null,"m":26,"e":6231}],[-35,{"n":5,"q":null,"m":69,"e":6246}],[-34,{"n":5,"q":null,"m":33,"e":6251,"s":1}],[-33,{"n":6.5,"q":null,"m":79,"e":6262,"g":1}],[-32,{"n":4.5,"q":null,"m":18,"e":6270,"s":1}],[-31,{"n":4,"q":null,"m":27,"e":6283,"s":1}],[-30,{"n":4,"q":null,"m":90,"e":6295}],[-29,{"n":6,"q":null,"m":29,"e":6302,"g":1,"s":1}],[-28,{"n":4.5,"q":null,"m":26,"e":6312,"s":1}],[-27,{"n":5,"q":null,"m":27,"e":6323,"s":1}],[-25,{"n":2,"q":null,"m":13,"e":6343,"s":1}],[-24,{"n":4,"q":null,"m":15,"e":6357,"s":1}],[-23,{"n":4.5,"q":null,"m":90,"e":6363}],[-22,{"n":4,"q":null,"m":26,"e":6368,"s":1}],[-21,{"n":6,"q":null,"m":20,"e":6382,"g":1,"s":1}],[-20,{"n":4,"q":null,"m":66,"e":6396}],[-19,{"n":6.5,"q":null,"m":27,"e":6400,"g":1,"s":1}],[-18,{"n":4.5,"q":null,"m":20,"e":6408,"s":1}],[-17,{"n":4.5,"q":null,"m":12,"e":6420,"s":1}],[-16,{"n":4.5,"q":null,"m":12,"e":6434,"s":1}],[-15,{"n":6,"q":null,"m":21,"e":6447,"g":1,"s":1}],[-14,{"n":4.5,"q":null,"m":20,"e":6449,"s":1}],[-13,{"n":4.5,"q":null,"m":68,"e":6460}],[-12,{"n":4.5,"q":null,"m":25,"e":6476,"s":1}],[-11,{"n":5,"q":null,"m":27,"e":6485,"s":1}],[-10,{"n":3.5,"q":null,"m":71,"e":6493}],[-9,{"n":4,"q":null,"m":63,"e":6503}],[-8,{"n":4,"q":null,"m":66,"e":6513}],[-7,{"n":4,"q":null,"m":90,"e":6519}],[-6,{"n":6,"q":null,"m":71,"e":6533}],[-5,{"n":5,"q":null,"m":22,"e":6541,"s":1}],[-4,{"n":6,"q":null,"m":27,"e":6552}],[-3,{"n":6.5,"q":null,"m":26,"e":6561,"g":1,"s":1}],[-2,{"n":6.5,"q":null,"m":64,"e":6572,"g":1}],[2,{"n":3,"q":null,"m":90,"e":10579}],[-1,{"n":4,"q":null,"m":81,"e":6585}],[1,{"n":2.5,"q":null,"m":90,"e":10934}]],"fo":[[6231,[{"t":"I"}]],[6343,[{"t":"R"}]],[6246,[{"t":"Y"}]],[10934,[{"t":"Y"}]]]}],[6914,{"n":"Cissé","f":"Souleymane","fp":"MD","r":1,"c":94,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":44,"am":22,"dm":16,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":33,"Sam":33,"Os":19.5,"On":4,"Oa":4.88,"Od":0.48,"Om":224,"Oam":56,"Odm":40,"pm":4},"p":[[-6,{"n":5.5,"q":null,"m":90,"e":6533}],[-5,{"n":4.5,"q":null,"m":90,"e":6541}],[2,{"n":5,"q":null,"m":11,"e":10579,"s":1}],[1,{"n":4.5,"q":null,"m":33,"e":10934,"s":1}]]}],[7388,{"n":"Bouzit","f":"Aziz","fp":"MO","r":1,"c":94}],[7390,{"n":"Henen","f":"David","fp":"MO","r":9,"c":94,"s":{"s":3.5,"n":1,"a":3.5,"m":90,"am":90,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":90,"Sam":90,"Os":127,"On":26,"Oa":4.88,"Od":0.59,"Om":934,"Oam":36,"Odm":30,"pm":21,"pa":5},"p":[[-37,{"n":5,"q":null,"m":2,"e":6220,"s":1}],[-36,{"n":4,"q":null,"m":64,"e":6231,"s":1}],[-35,{"n":3.5,"q":null,"m":56,"e":6246}],[-34,{"n":5,"q":null,"m":21,"e":6251,"s":1}],[-31,{"n":5,"q":null,"m":3,"e":6283,"s":1}],[-30,{"n":4.5,"q":null,"m":63,"e":6295}],[-29,{"n":4.5,"q":null,"m":70,"e":6302}],[-28,{"n":6,"q":null,"m":26,"e":6312,"s":1}],[-27,{"n":5,"q":null,"m":90,"e":6323}],[-26,{"n":5.5,"q":null,"m":24,"e":6332,"s":1}],[-25,{"n":5,"q":null,"m":7,"e":6343,"s":1}],[-24,{"n":5,"q":null,"m":66,"e":6357}],[-23,{"n":6,"q":null,"m":9,"e":6363,"s":1}],[-19,{"n":5.5,"q":null,"m":24,"e":6400,"s":1}],[-18,{"n":4.5,"q":null,"m":20,"e":6408,"s":1}],[-17,{"n":5,"q":null,"m":12,"e":6420,"s":1}],[-16,{"n":5,"q":null,"m":78,"e":6434}],[-15,{"n":5,"q":null,"m":12,"e":6447,"s":1}],[-14,{"n":5,"q":null,"m":7,"e":6449,"s":1}],[-13,{"n":5,"q":null,"m":68,"e":6460}],[-12,{"n":5,"q":null,"m":10,"e":6476,"s":1}],[-10,{"n":4.5,"q":null,"m":1,"e":6493,"s":1}],[-9,{"n":5,"q":null,"m":62,"e":6503}],[-8,{"n":5,"q":null,"m":24,"e":6513,"s":1}],[-7,{"n":5,"q":null,"m":25,"e":6519,"s":1}],[1,{"n":3.5,"q":null,"m":90,"e":10934}]],"fo":[[6357,[{"t":"Y"}]]]}],[8021,{"n":"Boissy","f":"Olivier","fp":"A","r":15,"c":94,"s":{"s":7,"n":2,"a":3.5,"d":1.41,"m":66,"am":33,"dm":17,"Ss":2.5,"Sn":1,"Sa":2.5,"Sm":45,"Sam":45,"Os":7,"On":2,"Oa":3.5,"Od":1.41,"Om":66,"Oam":33,"Odm":17,"pa":2},"p":[[2,{"n":4.5,"q":null,"m":21,"e":10579,"s":1}],[1,{"n":2.5,"q":null,"m":45,"e":10934,"s":1}]]}],[8025,{"n":"Bunjaku","f":"Orges","fp":"MO","r":5,"c":94,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"m":135,"am":68,"dm":32,"Ss":4,"Sn":1,"Sa":4,"Sm":45,"Sam":45,"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"Om":135,"Oam":68,"Odm":32,"pm":2},"p":[[2,{"n":3.5,"q":null,"m":90,"e":10579}],[1,{"n":4,"q":null,"m":45,"e":10934,"s":1}]],"fo":[[10579,[{"t":"Y"}]],[10934,[{"t":"Y"}]]]}],[8048,{"n":"Marchand","f":"Yannick","fp":"MD","r":13,"c":94,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"m":124,"am":62,"dm":24,"Ss":4,"Sn":1,"Sa":4,"Sm":45,"Sam":45,"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"Om":124,"Oam":62,"Odm":24,"pm":2},"p":[[2,{"n":3.5,"q":null,"m":79,"e":10579}],[1,{"n":4,"q":null,"m":45,"e":10934}]]}],[8059,{"n":"Kokhreidze","f":"Giorgi","fp":"A","r":9,"c":94}],[8501,{"n":"Labyad","f":"Zinedine","fp":"A","r":2,"c":94,"s":{},"p":[[1,{"n":null,"q":null,"m":0,"e":10934}]]}],[8896,{"n":"Strazzeri","f":"Esteban","fp":"MD","r":2,"c":94}],[8903,{"n":"de Iriondo","f":"Manuel","fp":"MD","r":7,"c":94}],[479,{"n":"Barthelme","f":"Maxime","fp":"MO","r":10,"c":14,"s":{"s":11,"n":2,"a":5.5,"m":175,"am":88,"dm":1,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":88,"Sam":88,"Os":155.5,"On":31,"Oa":5.02,"Od":0.68,"Om":1587,"Oam":51,"Odm":28,"pm":26,"pa":5},"p":[[2,{"n":5.5,"q":null,"m":87,"e":10572}],[1,{"n":5.5,"q":null,"m":88,"e":10937}],[-36,{"n":5,"q":null,"m":58,"e":6229}],[-25,{"n":7,"q":null,"m":68,"e":6347}],[-24,{"n":5,"q":null,"m":18,"e":6356,"s":1}],[-23,{"n":4,"q":null,"m":59,"e":6361}],[-18,{"n":5,"q":null,"m":25,"e":6416,"s":1}],[-16,{"n":5,"q":null,"m":68,"e":6436}],[-13,{"n":6,"q":null,"m":90,"e":6461}],[-38,{"n":5,"q":null,"m":51,"e":6214}],[-37,{"n":5,"q":null,"m":54,"e":6226}],[-35,{"n":4.5,"q":null,"m":68,"e":6246}],[-34,{"n":5.5,"q":null,"m":93,"e":6255}],[-33,{"n":4.5,"q":null,"m":45,"e":6266,"s":1}],[-32,{"n":5,"q":null,"m":65,"e":6274}],[-31,{"n":4.5,"q":null,"m":23,"e":6287,"s":1}],[-30,{"n":4.5,"q":null,"m":4,"e":6288,"s":1}],[-29,{"n":4,"q":null,"m":90,"e":6306}],[-28,{"n":5.5,"q":null,"m":19,"e":6310,"s":1}],[-27,{"n":6,"q":null,"m":60,"e":6327}],[-26,{"n":5,"q":null,"m":64,"e":6336}],[-22,{"n":5.5,"q":null,"m":22,"e":6376,"s":1}],[-19,{"n":5,"q":null,"m":28,"e":6399}],[-17,{"n":4.5,"q":null,"m":10,"e":6420,"s":1}],[-15,{"n":4.5,"q":null,"m":75,"e":6439}],[-14,{"n":4.5,"q":null,"m":20,"e":6456,"s":1}],[-12,{"n":5.5,"q":null,"m":20,"e":6477,"s":1}],[-11,{"n":4.5,"q":null,"m":20,"e":6482,"s":1}],[-10,{"n":4,"q":null,"m":38,"e":6497,"s":1}],[-2,{"n":4.5,"q":null,"m":69,"e":6577}],[-1,{"n":6,"q":null,"m":88,"e":6587}]]}],[565,{"n":"Livolant","f":"Jeremy","fp":"MO","r":12,"c":14,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":142,"am":71,"dm":4,"Ss":6,"Sn":1,"Sa":6,"Sm":74,"Sam":74,"Og":2,"Os":191.5,"On":37,"Oa":5.18,"Od":0.61,"Om":1854,"Oam":50,"Odm":27,"pm":34,"pa":3,"Omsn":6},"p":[[-32,{"n":6,"q":null,"m":73,"e":6277,"g":1}],[-22,{"n":5,"q":null,"m":45,"e":6371}],[-21,{"n":4.5,"q":null,"m":22,"e":6383,"s":1}],[-20,{"n":5,"q":null,"m":22,"e":6393,"s":1}],[-12,{"n":4.5,"q":null,"m":16,"e":6471,"s":1}],[-10,{"n":5,"q":null,"m":80,"e":6491}],[-4,{"n":5,"q":null,"m":78,"e":6555}],[-2,{"n":5,"q":null,"m":7,"e":6569,"s":1}],[-38,{"n":5.5,"q":null,"m":21,"e":6213,"s":1}],[-35,{"n":5,"q":null,"m":27,"e":6242,"s":1}],[-34,{"n":5,"q":null,"m":62,"e":6252}],[-33,{"n":6,"q":null,"m":79,"e":6267}],[-31,{"n":5,"q":null,"m":23,"e":6287,"s":1}],[-30,{"n":5.5,"q":null,"m":77,"e":6291}],[-29,{"n":5.5,"q":null,"m":73,"e":6298}],[-28,{"n":5,"q":null,"m":35,"e":6311,"s":1}],[-27,{"n":5.5,"q":null,"m":90,"e":6325}],[-26,{"n":4.5,"q":null,"m":61,"e":6337}],[-25,{"n":5.5,"q":null,"m":63,"e":6338}],[-24,{"n":5,"q":null,"m":5,"e":6351,"s":1}],[-23,{"n":4.5,"q":null,"m":70,"e":6363}],[-18,{"n":5,"q":null,"m":9,"e":6412,"s":1}],[-17,{"n":4.5,"q":null,"m":74,"e":6426}],[-16,{"n":5,"q":null,"m":37,"e":6429,"s":1}],[-15,{"n":6,"q":null,"m":71,"e":6441}],[-14,{"n":5,"q":null,"m":33,"e":6455,"s":1}],[-13,{"n":5,"q":null,"m":64,"e":6461}],[-11,{"n":5.5,"q":null,"m":66,"e":6481}],[-9,{"n":5.5,"q":null,"m":75,"e":6500}],[-8,{"n":4.5,"q":null,"m":19,"e":6509,"s":1}],[-7,{"n":6.5,"q":null,"m":10,"e":6527,"g":1,"s":1}],[-6,{"n":5,"q":null,"m":66,"e":6532}],[-5,{"n":7,"q":null,"m":89,"e":6541}],[-3,{"n":5,"q":null,"m":25,"e":6562,"s":1}],[2,{"n":4.5,"q":null,"m":68,"e":10572}],[-1,{"n":4,"q":null,"m":45,"e":6584}],[1,{"n":6,"q":null,"m":74,"e":10937}]]}],[1236,{"n":"Eboa Eboa","f":"Félix","fp":"DC","r":10,"c":14,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":1.06,"Om":167,"Oam":84,"Odm":9,"pd":2},"p":[[-2,{"n":4,"q":null,"m":77,"e":6569}],[-1,{"n":5.5,"q":null,"m":90,"e":6584}]]}],[1257,{"n":"Pedro Rebocho","f":"","fp":"DL","r":10,"c":14,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Os":86,"On":17,"Oa":5.06,"Od":0.95,"Om":1504,"Oam":88,"Odm":6,"pd":16,"pm":1},"p":[[-17,{"n":3.5,"q":null,"m":90,"e":6426}],[-15,{"n":5,"q":null,"m":90,"e":6441}],[-14,{"n":4.5,"q":null,"m":90,"e":6455}],[-13,{"n":5,"q":null,"m":90,"e":6461}],[-12,{"n":5,"q":null,"m":90,"e":6471}],[-11,{"n":5,"q":null,"m":90,"e":6481}],[-10,{"n":5,"q":null,"m":90,"e":6491}],[-9,{"n":5.5,"q":null,"m":90,"e":6500}],[-8,{"n":5,"q":null,"m":90,"e":6509}],[-7,{"n":7,"q":null,"m":90,"e":6527}],[-6,{"n":5,"q":null,"m":90,"e":6532}],[-5,{"n":6,"q":null,"m":90,"e":6541}],[-4,{"n":7,"q":null,"m":90,"e":6555}],[-3,{"n":3.5,"q":null,"m":90,"e":6562}],[-2,{"n":5,"q":null,"m":90,"e":6569}],[2,{"n":4.5,"q":null,"m":90,"e":10572}],[-1,{"n":4.5,"q":null,"m":64,"e":6584}]]}],[2157,{"n":"Taha","f":"Ervin","fp":"A","r":1,"c":14}],[2688,{"n":"Sivis","f":"Maxime","fp":"DL","r":8,"c":14}],[2857,{"n":"Bilingi","f":"Yohan","fp":"DL","r":7,"c":14,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":10.5,"On":2,"Oa":5.25,"Od":1.06,"Om":180,"Oam":90,"pd":2},"p":[[2,{"n":4.5,"q":null,"m":90,"e":10572}],[1,{"n":6,"q":null,"m":90,"e":10937}]]}],[2949,{"n":"Phaeton","f":"Matthias","fp":"MO","r":7,"c":14,"s":{"s":4.5,"n":1,"a":4.5,"m":13,"am":13,"Og":3,"Os":131.5,"On":28,"Oa":4.7,"Od":0.64,"Om":787,"Oam":28,"Odm":24,"pm":3,"pa":25,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":20,"e":6213,"s":1}],[-37,{"n":4,"q":null,"m":13,"e":6223,"s":1}],[-36,{"n":4.5,"q":null,"m":17,"e":6237,"s":1}],[-35,{"n":4.5,"q":null,"m":6,"e":6242,"s":1}],[-34,{"n":4.5,"q":null,"m":21,"e":6252,"s":1}],[-32,{"n":4,"q":null,"m":17,"e":6277,"s":1}],[-31,{"n":4.5,"q":null,"m":18,"e":6287,"s":1}],[-30,{"n":4.5,"q":null,"m":13,"e":6291,"s":1}],[-29,{"n":4.5,"q":null,"m":8,"e":6298,"s":1}],[-28,{"n":4,"q":null,"m":55,"e":6311}],[-26,{"n":5,"q":null,"m":29,"e":6337,"s":1}],[-25,{"n":5,"q":null,"m":27,"e":6338,"s":1}],[-24,{"n":3.5,"q":null,"m":66,"e":6351}],[-23,{"n":4,"q":null,"m":90,"e":6363}],[-22,{"n":5.5,"q":null,"m":69,"e":6371}],[-21,{"n":5,"q":null,"m":13,"e":6383,"s":1}],[-20,{"n":5,"q":null,"m":33,"e":6393,"s":1}],[-18,{"n":5,"q":null,"m":89,"e":6412}],[-17,{"n":6,"q":null,"m":30,"e":6426,"g":1,"s":1}],[-16,{"n":4,"q":null,"m":37,"e":6429,"s":1}],[-8,{"n":5,"q":null,"m":24,"e":6509,"s":1}],[-7,{"n":5,"q":null,"m":20,"e":6527,"s":1}],[-6,{"n":4.5,"q":null,"m":24,"e":6532,"s":1}],[-5,{"n":4.5,"q":null,"m":1,"e":6541,"s":1}],[-4,{"n":4,"q":null,"m":1,"e":6555,"s":1}],[-3,{"n":6,"q":null,"m":26,"e":6562,"g":1,"s":1}],[-2,{"n":6,"q":null,"m":7,"e":6569,"g":1,"s":1}],[2,{"n":4.5,"q":null,"m":13,"e":10572,"s":1}]]}],[3124,{"n":"Merghem","f":"Mehdi","fp":"MO","r":10,"c":14,"s":{"s":5,"n":1,"a":5,"m":22,"am":22,"Os":46.5,"On":9,"Oa":5.17,"Od":0.71,"Om":334,"Oam":37,"Odm":21,"pm":8,"pa":1},"p":[[-36,{"n":4.5,"q":null,"m":23,"e":6233,"s":1}],[-35,{"n":4.5,"q":null,"m":59,"e":6240}],[-34,{"n":6.5,"q":null,"m":45,"e":6254,"s":1}],[-33,{"n":5,"q":null,"m":30,"e":6259,"s":1}],[-32,{"n":6,"q":null,"m":69,"e":6272}],[-31,{"n":4.5,"q":null,"m":56,"e":6286}],[-30,{"n":5.5,"q":null,"m":21,"e":6293,"s":1}],[-29,{"n":5,"q":null,"m":9,"e":6306,"s":1}],[2,{"n":5,"q":null,"m":22,"e":10572,"s":1}]],"fo":[[6293,[{"t":"Y"}]]]}],[4884,{"n":"Carnot","f":"Louis","fp":"MD","r":2,"c":14,"s":{"Os":18,"On":4,"Oa":4.5,"Od":0.71,"Om":172,"Oam":43,"Odm":24,"pm":4},"p":[[-18,{"n":5,"q":null,"m":25,"e":6412,"s":1}],[-5,{"n":5,"q":null,"m":22,"e":6541,"s":1}],[-2,{"n":4.5,"q":null,"m":71,"e":6569}],[-1,{"n":3.5,"q":null,"m":54,"e":6584}]]}],[5006,{"n":"Niakaté","f":"Sikou","fp":"DC","r":11,"c":14,"s":{"Og":1,"Os":151.5,"On":31,"Oa":4.89,"Od":0.83,"Om":2559,"Oam":83,"Odm":22,"pd":31,"Omsn":5.5},"p":[[-19,{"n":5,"q":null,"m":90,"e":6398}],[-38,{"n":5.5,"q":null,"m":90,"e":6213}],[-37,{"n":6,"q":null,"m":90,"e":6223}],[-36,{"n":5,"q":null,"m":1,"e":6237,"s":1}],[-35,{"n":5,"q":null,"m":63,"e":6242}],[-33,{"n":6,"q":null,"m":89,"e":6267}],[-32,{"n":5,"q":null,"m":90,"e":6277}],[-28,{"n":3,"q":null,"m":90,"e":6311}],[-27,{"n":5,"q":null,"m":90,"e":6325}],[-26,{"n":5.5,"q":null,"m":90,"e":6337,"g":1}],[-25,{"n":5,"q":null,"m":71,"e":6338}],[-24,{"n":6,"q":null,"m":90,"e":6351}],[-22,{"n":4,"q":null,"m":90,"e":6371}],[-21,{"n":4,"q":null,"m":90,"e":6383}],[-20,{"n":6,"q":null,"m":90,"e":6393}],[-18,{"n":4,"q":null,"m":90,"e":6412}],[-17,{"n":3.5,"q":null,"m":90,"e":6426}],[-15,{"n":4.5,"q":null,"m":90,"e":6441}],[-14,{"n":5,"q":null,"m":90,"e":6455}],[-13,{"n":4,"q":null,"m":90,"e":6461}],[-12,{"n":6,"q":null,"m":90,"e":6471}],[-11,{"n":4.5,"q":null,"m":90,"e":6481}],[-10,{"n":5,"q":null,"m":90,"e":6491}],[-9,{"n":5.5,"q":null,"m":90,"e":6500}],[-8,{"n":5,"q":null,"m":7,"e":6509,"s":1}],[-6,{"n":5.5,"q":null,"m":90,"e":6532}],[-5,{"n":6,"q":null,"m":90,"e":6541}],[-4,{"n":4.5,"q":null,"m":90,"e":6555}],[-3,{"n":4,"q":null,"m":90,"e":6562}],[-2,{"n":5,"q":null,"m":90,"e":6569}],[-1,{"n":3.5,"q":null,"m":78,"e":6584}]],"fo":[[6267,[{"t":"I"},{"t":"Y"}]],[6338,[{"t":"I"}]],[6242,[{"t":"Y"}]],[6277,[{"t":"Y"}]],[6325,[{"t":"Y"}]],[6337,[{"t":"Y"}]]]}],[5010,{"n":"Gomis","f":"Yannick","fp":"A","r":27,"c":14,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Og":9,"Os":197.5,"On":39,"Oa":5.06,"Od":1.02,"Om":2989,"Oam":77,"Odm":18,"pm":5,"pa":34,"Omsn":5.5},"p":[[-38,{"n":6,"q":null,"m":69,"e":6213,"g":1}],[-37,{"n":7.5,"q":null,"m":77,"e":6223}],[-36,{"n":6.5,"q":null,"m":90,"e":6237}],[-35,{"n":4.5,"q":null,"m":27,"e":6242,"s":1}],[-34,{"n":4.5,"q":null,"m":69,"e":6252}],[-33,{"n":5,"q":null,"m":90,"e":6267}],[-31,{"n":3.5,"q":null,"m":72,"e":6287}],[-30,{"n":5,"q":null,"m":88,"e":6291}],[-29,{"n":5.5,"q":null,"m":82,"e":6298}],[-28,{"n":3.5,"q":null,"m":69,"e":6311}],[-27,{"n":6,"q":null,"m":90,"e":6325}],[-26,{"n":4.5,"q":null,"m":90,"e":6337}],[-25,{"n":6,"q":null,"m":63,"e":6338,"g":1}],[-24,{"n":4.5,"q":null,"m":90,"e":6351}],[-23,{"n":6,"q":null,"m":84,"e":6363,"g":1}],[-22,{"n":6,"q":null,"m":45,"e":6371,"g":1,"s":1}],[-21,{"n":4.5,"q":null,"m":68,"e":6383}],[-20,{"n":4.5,"q":null,"m":57,"e":6393}],[-19,{"n":6,"q":null,"m":80,"e":6398}],[-18,{"n":7,"q":null,"m":81,"e":6412,"g":1}],[-17,{"n":6,"q":null,"m":86,"e":6426}],[-16,{"n":3.5,"q":null,"m":53,"e":6429}],[-15,{"n":5.5,"q":null,"m":71,"e":6441}],[-14,{"n":5.5,"q":null,"m":78,"e":6455,"g":1}],[-13,{"n":4.5,"q":null,"m":15,"e":6461,"s":1}],[-12,{"n":5,"q":null,"m":87,"e":6471}],[-11,{"n":6.5,"q":null,"m":90,"e":6481,"g":1}],[-10,{"n":4,"q":null,"m":84,"e":6491}],[-9,{"n":4,"q":null,"m":90,"e":6500}],[-8,{"n":4,"q":null,"m":66,"e":6509}],[-7,{"n":5,"q":null,"m":70,"e":6527}],[-6,{"n":4,"q":null,"m":90,"e":6532}],[-5,{"n":4,"q":null,"m":89,"e":6541}],[-4,{"n":5.5,"q":null,"m":89,"e":6555,"g":1}],[-3,{"n":4.5,"q":null,"m":90,"e":6562}],[-2,{"n":6,"q":null,"m":90,"e":6569,"g":1}],[2,{"n":4,"q":null,"m":90,"e":10572}],[-1,{"n":4,"q":null,"m":90,"e":6584}],[1,{"n":5.5,"q":null,"m":90,"e":10937}]]}],[5050,{"n":"Diarra","f":"Souleymane","fp":"MO","r":15,"c":14,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":61,"am":31,"dm":21,"Ss":5,"Sn":1,"Sa":5,"Sm":16,"Sam":16,"Os":95.5,"On":18,"Oa":5.31,"Od":0.73,"Om":1268,"Oam":70,"Odm":29,"pm":18},"p":[[-35,{"n":4.5,"q":null,"m":90,"e":6245}],[-32,{"n":5,"q":null,"m":90,"e":6275}],[-28,{"n":6,"q":null,"m":90,"e":6316}],[-27,{"n":5.5,"q":null,"m":90,"e":6324}],[-38,{"n":5,"q":null,"m":45,"e":6216,"s":1}],[-37,{"n":4.5,"q":null,"m":90,"e":6221}],[-36,{"n":6,"q":null,"m":83,"e":6236}],[-33,{"n":5.5,"q":null,"m":90,"e":6264}],[-31,{"n":6,"q":null,"m":90,"e":6280}],[-30,{"n":7,"q":null,"m":86,"e":6296}],[-29,{"n":5.5,"q":null,"m":90,"e":6302}],[-26,{"n":5.5,"q":null,"m":90,"e":6333}],[-25,{"n":6,"q":null,"m":90,"e":6344}],[-24,{"n":5,"q":null,"m":29,"e":6353,"s":1}],[-23,{"n":5,"q":null,"m":60,"e":6366}],[-22,{"n":4.5,"q":null,"m":4,"e":6371,"s":1}],[2,{"n":4,"q":null,"m":45,"e":10572}],[1,{"n":5,"q":null,"m":16,"e":10937,"s":1}]],"fo":[[6216,[{"t":"Y"}]],[6236,[{"t":"Y"}]],[6245,[{"t":"Y"}]],[6275,[{"t":"Y"}]],[6344,[{"t":"Y"}]],[10572,[{"t":"Y"}]]]}],[5078,{"n":"Lemonnier","f":"Pierre","fp":"DC","r":13,"c":14,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":10,"On":2,"Oa":5,"Od":0.71,"Om":180,"Oam":90,"pd":2},"p":[[2,{"n":4.5,"q":null,"m":90,"e":10572}],[1,{"n":5.5,"q":null,"m":90,"e":10937}]],"fo":[[10937,[{"t":"Y"}]]]}],[5145,{"n":"Youssouf M'Changama","f":"","fp":"MD","r":22,"c":14,"s":{"s":11,"n":2,"a":5.5,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Og":2,"Os":205.5,"On":38,"Oa":5.41,"Od":0.98,"Om":3219,"Oam":85,"Odm":17,"pm":36,"pa":2,"Omsn":8},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6213}],[-37,{"n":6,"q":null,"m":90,"e":6223}],[-36,{"n":8,"q":null,"m":90,"e":6237,"g":2}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-34,{"n":5.5,"q":null,"m":90,"e":6252}],[-33,{"n":6.5,"q":null,"m":90,"e":6267}],[-32,{"n":6,"q":null,"m":90,"e":6277}],[-31,{"n":5,"q":null,"m":90,"e":6287}],[-30,{"n":7,"q":null,"m":90,"e":6291}],[-29,{"n":7,"q":null,"m":90,"e":6298}],[-28,{"n":3,"q":null,"m":90,"e":6311}],[-27,{"n":6,"q":null,"m":90,"e":6325}],[-26,{"n":5,"q":null,"m":90,"e":6337}],[-25,{"n":5.5,"q":null,"m":90,"e":6338}],[-24,{"n":5,"q":null,"m":85,"e":6351}],[-23,{"n":5.5,"q":null,"m":90,"e":6363}],[-22,{"n":6,"q":null,"m":45,"e":6371,"s":1}],[-21,{"n":5.5,"q":null,"m":77,"e":6383}],[-20,{"n":4.5,"q":null,"m":33,"e":6393,"s":1}],[-19,{"n":5,"q":null,"m":10,"e":6398,"s":1}],[-18,{"n":5.5,"q":null,"m":90,"e":6412}],[-17,{"n":3.5,"q":null,"m":90,"e":6426}],[-16,{"n":4,"q":null,"m":90,"e":6429}],[-15,{"n":4.5,"q":null,"m":90,"e":6441}],[-14,{"n":4.5,"q":null,"m":90,"e":6455}],[-13,{"n":4,"q":null,"m":90,"e":6461}],[-12,{"n":6,"q":null,"m":90,"e":6471}],[-11,{"n":4.5,"q":null,"m":89,"e":6481}],[-10,{"n":6,"q":null,"m":90,"e":6491}],[-9,{"n":6,"q":null,"m":90,"e":6500}],[-6,{"n":4.5,"q":null,"m":90,"e":6532}],[-5,{"n":5.5,"q":null,"m":90,"e":6541}],[-4,{"n":6,"q":null,"m":90,"e":6555}],[-3,{"n":5.5,"q":null,"m":90,"e":6562}],[-2,{"n":6.5,"q":null,"m":90,"e":6569}],[2,{"n":5.5,"q":null,"m":90,"e":10572}],[-1,{"n":5,"q":null,"m":90,"e":6584}],[1,{"n":5.5,"q":null,"m":90,"e":10937}]],"fo":[[6298,[{"t":"Y"}]],[6351,[{"t":"Y"}]],[10572,[{"t":"Y"}]]]}],[5147,{"n":"Ba","f":"El-Hadji","fp":"MD","r":10,"c":14,"s":{"Os":74.5,"On":15,"Oa":4.97,"Od":0.67,"Om":663,"Oam":44,"Odm":31,"pm":15},"p":[[-38,{"n":5,"q":null,"m":56,"e":6213}],[-37,{"n":6.5,"q":null,"m":90,"e":6223}],[-36,{"n":5,"q":null,"m":11,"e":6237,"s":1}],[-35,{"n":6,"q":null,"m":90,"e":6242}],[-32,{"n":5,"q":null,"m":5,"e":6277,"s":1}],[-31,{"n":4.5,"q":null,"m":22,"e":6287}],[-30,{"n":4.5,"q":null,"m":77,"e":6291}],[-29,{"n":5,"q":null,"m":73,"e":6298}],[-24,{"n":4.5,"q":null,"m":57,"e":6351}],[-23,{"n":5,"q":null,"m":20,"e":6363,"s":1}],[-22,{"n":3.5,"q":null,"m":45,"e":6371}],[-21,{"n":5,"q":null,"m":9,"e":6383,"s":1}],[-20,{"n":5,"q":null,"m":33,"e":6393,"s":1}],[-19,{"n":5,"q":null,"m":10,"e":6398,"s":1}],[-18,{"n":5,"q":null,"m":65,"e":6412}]],"fo":[[6287,[{"t":"I"}]],[6298,[{"t":"Y"}]]]}],[5364,{"n":"Youfeigane","f":"Dominique","fp":"G","r":7,"c":14}],[6210,{"n":"Pierrot","f":"Frantzdy","fp":"A","r":18,"c":14,"s":{"Og":6,"Os":113.5,"On":23,"Oa":4.93,"Od":1.04,"Om":1271,"Oam":55,"Odm":31,"pa":23,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":70,"e":6213}],[-37,{"n":6,"q":null,"m":60,"e":6223,"g":1}],[-36,{"n":7,"q":null,"m":73,"e":6237,"g":1}],[-35,{"n":4.5,"q":null,"m":63,"e":6242}],[-34,{"n":4.5,"q":null,"m":28,"e":6252,"s":1}],[-33,{"n":4,"q":null,"m":11,"e":6267,"s":1}],[-32,{"n":4.5,"q":null,"m":90,"e":6277}],[-31,{"n":5,"q":null,"m":18,"e":6287,"s":1}],[-30,{"n":4,"q":null,"m":13,"e":6291,"s":1}],[-29,{"n":6.5,"q":null,"m":17,"e":6298,"g":1,"s":1}],[-28,{"n":4.5,"q":null,"m":35,"e":6311,"s":1}],[-27,{"n":4,"q":null,"m":81,"e":6325}],[-26,{"n":6.5,"q":null,"m":29,"e":6337,"g":1,"s":1}],[-25,{"n":4.5,"q":null,"m":27,"e":6338,"s":1}],[-24,{"n":4.5,"q":null,"m":90,"e":6351}],[-23,{"n":4,"q":null,"m":20,"e":6363,"s":1}],[-22,{"n":5,"q":null,"m":90,"e":6371}],[-21,{"n":4,"q":null,"m":90,"e":6383}],[-20,{"n":4.5,"q":null,"m":90,"e":6393}],[-19,{"n":7,"q":null,"m":90,"e":6398,"g":1}],[-18,{"n":6,"q":null,"m":89,"e":6412,"g":1}],[-17,{"n":3.5,"q":null,"m":60,"e":6426}],[-16,{"n":4.5,"q":null,"m":37,"e":6429,"s":1}]],"fo":[[6223,[{"t":"Y"}]],[6267,[{"t":"Y"}]],[6291,[{"t":"Y"}]]]}],[6747,{"n":"Ndenbe","f":"Logan","fp":"DL","r":7,"c":14,"s":{"s":5,"n":1,"a":5,"m":90,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":79,"On":16,"Oa":4.94,"Od":0.31,"Om":1026,"Oam":64,"Odm":34,"pd":16},"p":[[-34,{"n":5,"q":null,"m":80,"e":6252}],[-32,{"n":5,"q":null,"m":5,"e":6277,"s":1}],[-27,{"n":5,"q":null,"m":71,"e":6325}],[-26,{"n":5,"q":null,"m":90,"e":6337}],[-25,{"n":5,"q":null,"m":90,"e":6338}],[-24,{"n":5,"q":null,"m":33,"e":6351,"s":1}],[-23,{"n":4.5,"q":null,"m":90,"e":6363}],[-22,{"n":5,"q":null,"m":11,"e":6371,"s":1}],[-21,{"n":5.5,"q":null,"m":69,"e":6383}],[-20,{"n":5,"q":null,"m":90,"e":6393}],[-19,{"n":5,"q":null,"m":90,"e":6398}],[-18,{"n":5,"q":null,"m":90,"e":6412}],[-16,{"n":4,"q":null,"m":90,"e":6429}],[-3,{"n":5,"q":null,"m":11,"e":6562,"s":1}],[-1,{"n":5,"q":null,"m":26,"e":6584,"s":1}],[1,{"n":5,"q":null,"m":90,"e":10937}]],"fo":[[6325,[{"t":"I"}]]]}],[6759,{"n":"Philipe Sampaio","f":"","fp":"DC","r":16,"c":14,"s":{"g":1,"s":11,"n":2,"a":5.5,"d":1.41,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":1,"Os":152.5,"On":28,"Oa":5.45,"Od":0.94,"Om":2371,"Oam":85,"Odm":19,"pd":28,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6213}],[-37,{"n":5.5,"q":null,"m":89,"e":6223}],[-36,{"n":7,"q":null,"m":89,"e":6237}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-34,{"n":6,"q":null,"m":90,"e":6252}],[-33,{"n":6,"q":null,"m":90,"e":6267}],[-32,{"n":5,"q":null,"m":90,"e":6277}],[-31,{"n":5.5,"q":null,"m":90,"e":6287}],[-30,{"n":6,"q":null,"m":90,"e":6291}],[-29,{"n":6,"q":null,"m":90,"e":6298}],[-25,{"n":5.5,"q":null,"m":90,"e":6338}],[-24,{"n":7,"q":null,"m":90,"e":6351}],[-23,{"n":3.5,"q":null,"m":90,"e":6363}],[-22,{"n":3.5,"q":null,"m":90,"e":6371}],[-21,{"n":6.5,"q":null,"m":90,"e":6383}],[-19,{"n":5,"q":null,"m":1,"e":6398,"s":1}],[-18,{"n":5.5,"q":null,"m":90,"e":6412}],[-14,{"n":5.5,"q":null,"m":36,"e":6455}],[-13,{"n":4,"q":null,"m":86,"e":6461}],[-12,{"n":5,"q":null,"m":90,"e":6471}],[-11,{"n":5,"q":null,"m":90,"e":6481}],[-10,{"n":6,"q":null,"m":90,"e":6491}],[-9,{"n":5,"q":null,"m":90,"e":6500}],[-8,{"n":4.5,"q":null,"m":90,"e":6509}],[-7,{"n":7,"q":null,"m":90,"e":6527}],[2,{"n":6.5,"q":null,"m":90,"e":10572,"g":1}],[-1,{"n":5,"q":null,"m":90,"e":6584}],[1,{"n":4.5,"q":null,"m":90,"e":10937}]],"fo":[[6277,[{"t":"Y"}]],[6298,[{"t":"Y"}]],[10572,[{"t":"Y"}]],[10937,[{"t":"Y"}]]]}],[6761,{"n":"Basilio","f":"Enzo","fp":"G","r":12,"c":14,"s":{"s":11.5,"n":2,"a":5.75,"d":1.06,"m":180,"am":90,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":90,"Sam":90,"Os":184,"On":34,"Oa":5.41,"Od":1.15,"Om":3060,"Oam":90,"pg":34},"p":[[-38,{"n":6,"q":null,"m":90,"e":6213}],[-37,{"n":6,"q":null,"m":90,"e":6223}],[-36,{"n":6.5,"q":null,"m":90,"e":6237}],[-35,{"n":7.5,"q":null,"m":90,"e":6242}],[-34,{"n":6,"q":null,"m":90,"e":6252}],[-33,{"n":7,"q":null,"m":90,"e":6267}],[-32,{"n":5,"q":null,"m":90,"e":6277}],[-31,{"n":5.5,"q":null,"m":90,"e":6287}],[-30,{"n":4.5,"q":null,"m":90,"e":6291}],[-29,{"n":7.5,"q":null,"m":90,"e":6298}],[-28,{"n":2.5,"q":null,"m":90,"e":6311}],[-27,{"n":6.5,"q":null,"m":90,"e":6325}],[-26,{"n":4,"q":null,"m":90,"e":6337}],[-25,{"n":6,"q":null,"m":90,"e":6338}],[-24,{"n":5.5,"q":null,"m":90,"e":6351}],[-23,{"n":4.5,"q":null,"m":90,"e":6363}],[-22,{"n":4,"q":null,"m":90,"e":6371}],[-21,{"n":5,"q":null,"m":90,"e":6383}],[-20,{"n":5.5,"q":null,"m":90,"e":6393}],[-19,{"n":4.5,"q":null,"m":90,"e":6398}],[-18,{"n":5,"q":null,"m":90,"e":6412}],[-17,{"n":4,"q":null,"m":90,"e":6426}],[-16,{"n":4,"q":null,"m":90,"e":6429}],[-15,{"n":5,"q":null,"m":90,"e":6441}],[-14,{"n":4.5,"q":null,"m":90,"e":6455}],[-13,{"n":4,"q":null,"m":90,"e":6461}],[-12,{"n":5,"q":null,"m":90,"e":6471}],[-11,{"n":6,"q":null,"m":90,"e":6481}],[-10,{"n":7,"q":null,"m":90,"e":6491}],[-9,{"n":6.5,"q":null,"m":90,"e":6500}],[-8,{"n":6,"q":null,"m":90,"e":6509}],[-7,{"n":6,"q":null,"m":90,"e":6527}],[2,{"n":5,"q":null,"m":90,"e":10572}],[1,{"n":6.5,"q":null,"m":90,"e":10937}]]}],[6824,{"n":"Cathline","f":"Yoann","fp":"MO","r":1,"c":14,"s":{"s":10,"n":2,"a":5,"m":5,"am":3,"dm":1,"Ss":5,"Sn":1,"Sa":5,"Sm":2,"Sam":2,"Os":10,"On":2,"Oa":5,"Om":5,"Oam":3,"Odm":1,"pm":2},"p":[[2,{"n":5,"q":null,"m":3,"e":10572,"s":1}],[1,{"n":5,"q":null,"m":2,"e":10937,"s":1}]]}],[7044,{"n":"Roux","f":"Baptiste","fp":"DC","r":10,"c":14,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":135,"am":68,"dm":32,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Og":1,"Os":106,"On":21,"Oa":5.05,"Od":0.76,"Om":1322,"Oam":63,"Odm":34,"pd":9,"pm":12,"Omsn":6},"p":[[-25,{"n":4,"q":null,"m":90,"e":6338}],[-24,{"n":5.5,"q":null,"m":90,"e":6351}],[-22,{"n":6,"q":null,"m":79,"e":6371,"g":1}],[-21,{"n":6.5,"q":null,"m":90,"e":6383}],[-20,{"n":5,"q":null,"m":57,"e":6393}],[-19,{"n":5,"q":null,"m":90,"e":6398}],[-18,{"n":6,"q":null,"m":90,"e":6412}],[-17,{"n":4.5,"q":null,"m":4,"e":6426,"s":1}],[-16,{"n":4,"q":null,"m":90,"e":6429}],[-14,{"n":4.5,"q":null,"m":54,"e":6455,"s":1}],[-13,{"n":4,"q":null,"m":75,"e":6461}],[-12,{"n":5,"q":null,"m":23,"e":6471,"s":1}],[-11,{"n":5,"q":null,"m":1,"e":6481,"s":1}],[-10,{"n":5,"q":null,"m":90,"e":6491}],[-9,{"n":4,"q":null,"m":74,"e":6500}],[-8,{"n":5,"q":null,"m":83,"e":6509}],[-7,{"n":6,"q":null,"m":90,"e":6527}],[-5,{"n":5,"q":null,"m":1,"e":6541,"s":1}],[-4,{"n":5.5,"q":null,"m":16,"e":6555,"s":1}],[2,{"n":4.5,"q":null,"m":45,"e":10572,"s":1}],[1,{"n":6,"q":null,"m":90,"e":10937}]]}],[7629,{"n":"Muyumba Nkita","f":"Tristan","fp":"MD","r":7,"c":14,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":167,"am":84,"dm":9,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":30,"On":6,"Oa":5,"Od":0.63,"Om":236,"Oam":39,"Odm":36,"pm":6,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":34,"e":6213,"g":1,"s":1}],[-37,{"n":5,"q":null,"m":13,"e":6223,"s":1}],[-36,{"n":5,"q":null,"m":1,"e":6237,"s":1}],[-28,{"n":5,"q":null,"m":21,"e":6311,"s":1}],[2,{"n":4,"q":null,"m":77,"e":10572}],[1,{"n":5,"q":null,"m":90,"e":10937}]],"fo":[[6213,[{"t":"Y"}]],[10572,[{"t":"Y"}]]]}],[7762,{"n":"Didot","f":"Mathéo","fp":"MO","r":3,"c":14}],[7830,{"n":"Gaudin","f":"Jules","fp":"MO","r":1,"c":14}],[7996,{"n":"Le Normand","f":"Théo","fp":"MD","r":2,"c":14}],[7997,{"n":"Riou","f":"Matthis","fp":"MD","r":2,"c":14}],[8028,{"n":"Hugo Barbet","f":"","fp":"G","r":3,"c":14}],[255,{"n":"Gorgelin","f":"Mathieu","fp":"G","r":10,"c":89,"s":{"Os":180,"On":36,"Oa":5,"Od":1.16,"Om":3185,"Oam":88,"Odm":9,"pg":36},"p":[[-34,{"n":5,"q":null,"m":90,"e":6253}],[-35,{"n":4.5,"q":null,"m":90,"e":6243}],[-33,{"n":6,"q":null,"m":90,"e":6261}],[-25,{"n":6,"q":null,"m":90,"e":6340}],[-19,{"n":3.5,"q":null,"m":90,"e":6401}],[-17,{"n":4.5,"q":null,"m":90,"e":6423}],[-16,{"n":4.5,"q":null,"m":90,"e":6435}],[-15,{"n":5.5,"q":null,"m":90,"e":6442}],[-9,{"n":6,"q":null,"m":90,"e":6501}],[-5,{"n":6,"q":null,"m":90,"e":6542}],[-37,{"n":4.5,"q":null,"m":90,"e":6227}],[-36,{"n":3.5,"q":null,"m":90,"e":6232}],[-32,{"n":5.5,"q":null,"m":90,"e":6271}],[-31,{"n":5.5,"q":null,"m":90,"e":6279}],[-30,{"n":4,"q":null,"m":90,"e":6292}],[-29,{"n":7.5,"q":null,"m":90,"e":6307}],[-28,{"n":4,"q":null,"m":90,"e":6312}],[-27,{"n":4,"q":null,"m":90,"e":6324}],[-26,{"n":5,"q":null,"m":90,"e":6331}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-22,{"n":3.5,"q":null,"m":35,"e":6373}],[-21,{"n":4,"q":null,"m":90,"e":6383}],[-20,{"n":6,"q":null,"m":90,"e":6389}],[-18,{"n":6.5,"q":null,"m":90,"e":6405}],[-14,{"n":5.5,"q":null,"m":90,"e":6457}],[-13,{"n":4,"q":null,"m":90,"e":6462}],[-12,{"n":3,"q":null,"m":90,"e":6472}],[-11,{"n":4,"q":null,"m":90,"e":6487}],[-10,{"n":4,"q":null,"m":90,"e":6493}],[-8,{"n":6,"q":null,"m":90,"e":6512}],[-7,{"n":5.5,"q":null,"m":90,"e":6521}],[-6,{"n":3,"q":null,"m":90,"e":6534}],[-4,{"n":5,"q":null,"m":90,"e":6553}],[-3,{"n":5.5,"q":null,"m":90,"e":6562}],[-2,{"n":7.5,"q":null,"m":90,"e":6573}],[-1,{"n":6,"q":null,"m":90,"e":6587}]]}],[1453,{"n":"Cornette","f":"Quentin","fp":"MO","r":11,"c":89,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":162,"am":81,"dm":13,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Og":1,"Os":149,"On":29,"Oa":5.14,"Od":0.86,"Om":1465,"Oam":51,"Odm":26,"pm":14,"pa":15,"Omsn":7},"p":[[2,{"n":5.5,"q":null,"m":72,"e":10578}],[-37,{"n":7.5,"q":null,"m":70,"e":6227}],[-36,{"n":7,"q":null,"m":23,"e":6232,"g":1,"s":1}],[-35,{"n":5,"q":null,"m":61,"e":6243}],[-34,{"n":5,"q":null,"m":23,"e":6253,"s":1}],[-32,{"n":5.5,"q":null,"m":68,"e":6271}],[-31,{"n":6,"q":null,"m":77,"e":6279}],[-30,{"n":4,"q":null,"m":65,"e":6292}],[-28,{"n":4.5,"q":null,"m":17,"e":6312,"s":1}],[-27,{"n":5,"q":null,"m":6,"e":6324,"s":1}],[-23,{"n":5,"q":null,"m":9,"e":6364,"s":1}],[-19,{"n":4,"q":null,"m":61,"e":6401}],[-18,{"n":5.5,"q":null,"m":67,"e":6405}],[-17,{"n":4.5,"q":null,"m":4,"e":6423,"s":1}],[-16,{"n":3.5,"q":null,"m":45,"e":6435}],[-15,{"n":5,"q":null,"m":78,"e":6442}],[-14,{"n":5.5,"q":null,"m":81,"e":6457}],[-13,{"n":5,"q":null,"m":61,"e":6462}],[-12,{"n":5,"q":null,"m":29,"e":6472,"s":1}],[-10,{"n":4.5,"q":null,"m":23,"e":6493,"s":1}],[-9,{"n":4.5,"q":null,"m":45,"e":6501}],[-8,{"n":4,"q":null,"m":58,"e":6512}],[-7,{"n":5,"q":null,"m":21,"e":6521,"s":1}],[-6,{"n":5,"q":null,"m":61,"e":6534}],[-5,{"n":6,"q":null,"m":72,"e":6542}],[-4,{"n":5,"q":null,"m":75,"e":6553}],[-3,{"n":6,"q":null,"m":81,"e":6562}],[-2,{"n":5,"q":null,"m":22,"e":6573,"s":1}],[1,{"n":6,"q":null,"m":90,"e":10937}]],"fo":[[6227,[{"t":"I"}]],[6232,[{"t":"Y"}]]]}],[2708,{"n":"Mbemba","f":"Nolan","fp":"MD","r":8,"c":89,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":124.5,"On":25,"Oa":4.98,"Od":0.65,"Om":1195,"Oam":48,"Odm":30,"pm":25,"Omsn":6},"p":[[-35,{"n":5.5,"q":null,"m":61,"e":6243}],[-32,{"n":5,"q":null,"m":22,"e":6271,"s":1}],[-30,{"n":4,"q":null,"m":45,"e":6292}],[-29,{"n":5,"q":null,"m":45,"e":6307}],[-28,{"n":5,"q":null,"m":17,"e":6312,"s":1}],[-25,{"n":5.5,"q":null,"m":36,"e":6340,"s":1}],[-24,{"n":5,"q":null,"m":17,"e":6352,"s":1}],[-23,{"n":5,"q":null,"m":33,"e":6364,"s":1}],[-21,{"n":4.5,"q":null,"m":1,"e":6383,"s":1}],[-20,{"n":5,"q":null,"m":72,"e":6389}],[-19,{"n":5,"q":null,"m":16,"e":6401,"s":1}],[-18,{"n":5,"q":null,"m":6,"e":6405,"s":1}],[-16,{"n":5,"q":null,"m":11,"e":6435}],[-13,{"n":5,"q":null,"m":69,"e":6462}],[-12,{"n":3.5,"q":null,"m":69,"e":6472}],[-11,{"n":4.5,"q":null,"m":9,"e":6487,"s":1}],[-10,{"n":6,"q":null,"m":90,"e":6493,"g":1}],[-9,{"n":6,"q":null,"m":90,"e":6501}],[-8,{"n":5.5,"q":null,"m":58,"e":6512}],[-7,{"n":5.5,"q":null,"m":46,"e":6521,"s":1}],[-4,{"n":5,"q":null,"m":61,"e":6553}],[-2,{"n":3.5,"q":null,"m":53,"e":6573}],[2,{"n":6,"q":null,"m":90,"e":10578}],[-1,{"n":4.5,"q":null,"m":88,"e":6587}],[1,{"n":5,"q":null,"m":90,"e":10937}]]}],[4891,{"n":"Abdelli","f":"Himad","fp":"MO","r":10,"c":89,"s":{"Og":2,"Os":123,"On":25,"Oa":4.92,"Od":0.62,"Om":1389,"Oam":56,"Odm":32,"pm":16,"pa":9,"Omsn":6},"p":[[-36,{"n":5.5,"q":null,"m":90,"e":6232}],[-35,{"n":4.5,"q":null,"m":90,"e":6243}],[-34,{"n":5,"q":null,"m":67,"e":6253}],[-32,{"n":5,"q":null,"m":8,"e":6271,"s":1}],[-31,{"n":5,"q":null,"m":13,"e":6279,"s":1}],[-23,{"n":4,"q":null,"m":57,"e":6364}],[-22,{"n":5,"q":null,"m":18,"e":6373,"s":1}],[-21,{"n":5,"q":null,"m":1,"e":6383,"s":1}],[-19,{"n":5,"q":null,"m":11,"e":6401}],[-18,{"n":6,"q":null,"m":84,"e":6405,"g":1}],[-17,{"n":5,"q":null,"m":90,"e":6423}],[-16,{"n":4,"q":null,"m":90,"e":6435}],[-15,{"n":5,"q":null,"m":90,"e":6442}],[-13,{"n":3.5,"q":null,"m":65,"e":6462}],[-12,{"n":4,"q":null,"m":89,"e":6472}],[-11,{"n":6,"q":null,"m":73,"e":6487,"g":1}],[-10,{"n":5.5,"q":null,"m":24,"e":6493,"s":1}],[-9,{"n":5,"q":null,"m":25,"e":6501,"s":1}],[-7,{"n":5,"q":null,"m":21,"e":6521,"s":1}],[-6,{"n":4,"q":null,"m":61,"e":6534}],[-5,{"n":5,"q":null,"m":89,"e":6542}],[-4,{"n":5.5,"q":null,"m":33,"e":6553,"s":1}],[-3,{"n":5,"q":null,"m":89,"e":6562}],[-2,{"n":5,"q":null,"m":56,"e":6573}],[-1,{"n":5.5,"q":null,"m":55,"e":6587}]]}],[4951,{"n":"Fofana","f":"Yahia","fp":"G","r":9,"c":89,"s":{"s":12.5,"n":2,"a":6.25,"d":0.35,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":31.5,"On":5,"Oa":6.3,"Od":1.35,"Om":413,"Oam":83,"Odm":17,"pg":5},"p":[[-38,{"n":8.5,"q":null,"m":90,"e":6214}],[-23,{"n":5,"q":null,"m":90,"e":6364}],[-22,{"n":5.5,"q":null,"m":53,"e":6373,"s":1}],[2,{"n":6.5,"q":null,"m":90,"e":10578}],[1,{"n":6,"q":null,"m":90,"e":10937}]]}],[4995,{"n":"Mayembo","f":"Fernand","fp":"DC","r":15,"c":89,"s":{"Os":170,"On":33,"Oa":5.15,"Od":0.9,"Om":2892,"Oam":88,"Odm":10,"pd":33},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6214}],[-37,{"n":4,"q":null,"m":90,"e":6227}],[-36,{"n":3.5,"q":null,"m":67,"e":6232}],[-34,{"n":5,"q":null,"m":90,"e":6253}],[-33,{"n":5,"q":null,"m":90,"e":6261}],[-32,{"n":5,"q":null,"m":90,"e":6271}],[-30,{"n":4,"q":null,"m":90,"e":6292}],[-29,{"n":6.5,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":90,"e":6312}],[-27,{"n":4.5,"q":null,"m":90,"e":6324}],[-26,{"n":5.5,"q":null,"m":90,"e":6331}],[-25,{"n":6.5,"q":null,"m":90,"e":6340}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-23,{"n":5.5,"q":null,"m":90,"e":6364}],[-22,{"n":6,"q":null,"m":90,"e":6373}],[-21,{"n":6,"q":null,"m":90,"e":6383}],[-20,{"n":5.5,"q":null,"m":90,"e":6389}],[-19,{"n":4,"q":null,"m":90,"e":6401}],[-18,{"n":6,"q":null,"m":90,"e":6405}],[-17,{"n":5,"q":null,"m":90,"e":6423}],[-16,{"n":4,"q":null,"m":90,"e":6435}],[-15,{"n":5.5,"q":null,"m":90,"e":6442}],[-14,{"n":6,"q":null,"m":90,"e":6457}],[-13,{"n":5.5,"q":null,"m":90,"e":6462}],[-12,{"n":3.5,"q":null,"m":90,"e":6472}],[-11,{"n":4.5,"q":null,"m":90,"e":6487}],[-10,{"n":4.5,"q":null,"m":90,"e":6493}],[-9,{"n":7,"q":null,"m":90,"e":6501}],[-8,{"n":6,"q":null,"m":90,"e":6512}],[-4,{"n":5,"q":null,"m":90,"e":6553}],[-3,{"n":5,"q":null,"m":90,"e":6562}],[-2,{"n":6,"q":null,"m":90,"e":6573}],[-1,{"n":5,"q":null,"m":35,"e":6587,"s":1}]],"fo":[[6232,[{"t":"Y"}]],[6292,[{"t":"Y"}]]]}],[5119,{"n":"Lekhal","f":"Victor","fp":"MD","r":17,"c":89,"s":{"s":12,"n":2,"a":6,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":194,"On":36,"Oa":5.39,"Od":0.78,"Om":3181,"Oam":88,"Odm":6,"pd":1,"pm":35},"p":[[-37,{"n":6,"q":null,"m":90,"e":6227}],[-36,{"n":5,"q":null,"m":90,"e":6232}],[-35,{"n":5,"q":null,"m":90,"e":6243}],[-34,{"n":4.5,"q":null,"m":80,"e":6253}],[-33,{"n":5.5,"q":null,"m":90,"e":6261}],[-32,{"n":4.5,"q":null,"m":90,"e":6271}],[-31,{"n":6,"q":null,"m":90,"e":6279}],[-30,{"n":5,"q":null,"m":90,"e":6292}],[-29,{"n":7,"q":null,"m":90,"e":6307}],[-28,{"n":5.5,"q":null,"m":90,"e":6312}],[-27,{"n":5,"q":null,"m":90,"e":6324}],[-26,{"n":5,"q":null,"m":90,"e":6331}],[-25,{"n":6,"q":null,"m":90,"e":6340}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-23,{"n":5.5,"q":null,"m":90,"e":6364}],[-22,{"n":6,"q":null,"m":90,"e":6373}],[-21,{"n":5.5,"q":null,"m":90,"e":6383}],[-20,{"n":6.5,"q":null,"m":90,"e":6389}],[-19,{"n":4.5,"q":null,"m":74,"e":6401}],[-18,{"n":6,"q":null,"m":90,"e":6405}],[-17,{"n":5.5,"q":null,"m":90,"e":6423}],[-16,{"n":5,"q":null,"m":90,"e":6435}],[-15,{"n":6,"q":null,"m":90,"e":6442}],[-14,{"n":6,"q":null,"m":90,"e":6457}],[-12,{"n":3,"q":null,"m":90,"e":6472}],[-11,{"n":5,"q":null,"m":90,"e":6487}],[-10,{"n":5,"q":null,"m":90,"e":6493}],[-9,{"n":6,"q":null,"m":90,"e":6501}],[-8,{"n":6,"q":null,"m":90,"e":6512}],[-7,{"n":4.5,"q":null,"m":90,"e":6521}],[-4,{"n":4.5,"q":null,"m":57,"e":6553}],[-3,{"n":5.5,"q":null,"m":90,"e":6562}],[-2,{"n":6,"q":null,"m":90,"e":6573}],[2,{"n":6,"q":null,"m":90,"e":10578}],[-1,{"n":4,"q":null,"m":90,"e":6587}],[1,{"n":6,"q":null,"m":90,"e":10937}]],"fo":[[6253,[{"t":"Y"}]],[6312,[{"t":"Y"}]],[6340,[{"t":"Y"}]]]}],[5120,{"n":"Thiare","f":"Jamal","fp":"A","r":17,"c":89,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":7,"Os":182,"On":35,"Oa":5.2,"Od":1.1,"Om":2727,"Oam":78,"Odm":20,"pm":1,"pa":34,"Omsn":6},"p":[[-38,{"n":7,"q":null,"m":90,"e":6214,"g":1}],[-37,{"n":7,"q":null,"m":90,"e":6227,"g":1}],[-36,{"n":6.5,"q":null,"m":90,"e":6232}],[-35,{"n":5,"q":null,"m":29,"e":6243,"s":1}],[-34,{"n":5,"q":null,"m":90,"e":6253}],[-33,{"n":6,"q":null,"m":45,"e":6261,"g":1}],[-32,{"n":5,"q":null,"m":82,"e":6271}],[-31,{"n":6,"q":null,"m":68,"e":6279}],[-30,{"n":4,"q":null,"m":45,"e":6292,"s":1}],[-28,{"n":3,"q":null,"m":45,"e":6312}],[-27,{"n":4.5,"q":null,"m":90,"e":6324}],[-26,{"n":6,"q":null,"m":90,"e":6331}],[-25,{"n":6,"q":null,"m":90,"e":6340}],[-24,{"n":6,"q":null,"m":79,"e":6352,"g":1}],[-23,{"n":4.5,"q":null,"m":90,"e":6364}],[-22,{"n":5,"q":null,"m":72,"e":6373}],[-21,{"n":6,"q":null,"m":90,"e":6383,"g":1}],[-20,{"n":5.5,"q":null,"m":90,"e":6389}],[-19,{"n":4,"q":null,"m":90,"e":6401}],[-18,{"n":6,"q":null,"m":90,"e":6405}],[-16,{"n":4.5,"q":null,"m":75,"e":6435}],[-15,{"n":5,"q":null,"m":86,"e":6442}],[-14,{"n":5,"q":null,"m":90,"e":6457}],[-13,{"n":6,"q":null,"m":90,"e":6462}],[-12,{"n":3,"q":null,"m":69,"e":6472}],[-11,{"n":4.5,"q":null,"m":17,"e":6487,"s":1}],[-7,{"n":5,"q":null,"m":44,"e":6521}],[-6,{"n":3.5,"q":null,"m":90,"e":6534}],[-5,{"n":5,"q":null,"m":89,"e":6542}],[-4,{"n":5,"q":null,"m":90,"e":6553}],[-3,{"n":8,"q":null,"m":88,"e":6562,"g":2}],[-2,{"n":4.5,"q":null,"m":90,"e":6573}],[2,{"n":6,"q":null,"m":90,"e":10578}],[-1,{"n":4.5,"q":null,"m":84,"e":6587}],[1,{"n":4.5,"q":null,"m":90,"e":10937}]],"fo":[[6261,[{"t":"I"}]]]}],[5182,{"n":"Gibaud","f":"Pierre","fp":"DL","r":14,"c":89,"s":{"s":12,"n":2,"a":6,"d":0.71,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Og":2,"Os":188,"On":37,"Oa":5.08,"Od":0.92,"Om":2969,"Oam":80,"Odm":23,"pd":37,"Omsn":7},"p":[[-37,{"n":5,"q":null,"m":90,"e":6227}],[-36,{"n":4,"q":null,"m":90,"e":6232}],[-35,{"n":6,"q":null,"m":90,"e":6243}],[-34,{"n":5,"q":null,"m":90,"e":6253}],[-33,{"n":5,"q":null,"m":90,"e":6261}],[-32,{"n":5,"q":null,"m":90,"e":6271}],[-31,{"n":5.5,"q":null,"m":90,"e":6279}],[-30,{"n":4.5,"q":null,"m":90,"e":6292}],[-29,{"n":6,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":90,"e":6312}],[-27,{"n":4.5,"q":null,"m":90,"e":6324}],[-26,{"n":5,"q":null,"m":90,"e":6331}],[-25,{"n":5.5,"q":null,"m":54,"e":6340}],[-24,{"n":5.5,"q":null,"m":90,"e":6352}],[-23,{"n":5,"q":null,"m":90,"e":6364}],[-22,{"n":6,"q":null,"m":90,"e":6373}],[-21,{"n":4.5,"q":null,"m":90,"e":6383}],[-20,{"n":5.5,"q":null,"m":90,"e":6389}],[-19,{"n":4,"q":null,"m":90,"e":6401}],[-18,{"n":5,"q":null,"m":90,"e":6405}],[-17,{"n":4.5,"q":null,"m":22,"e":6423,"s":1}],[-16,{"n":3,"q":null,"m":45,"e":6435}],[-15,{"n":5,"q":null,"m":90,"e":6442}],[-14,{"n":7,"q":null,"m":90,"e":6457,"g":1}],[-13,{"n":5,"q":null,"m":90,"e":6462}],[-12,{"n":5,"q":null,"m":21,"e":6472,"s":1}],[-11,{"n":3.5,"q":null,"m":90,"e":6487}],[-10,{"n":4.5,"q":null,"m":90,"e":6493}],[-9,{"n":6,"q":null,"m":90,"e":6501}],[-8,{"n":6,"q":null,"m":90,"e":6512}],[-7,{"n":5.5,"q":null,"m":90,"e":6521}],[-6,{"n":3,"q":null,"m":90,"e":6534}],[-5,{"n":7,"q":null,"m":90,"e":6542,"g":1}],[-4,{"n":5,"q":null,"m":15,"e":6553,"s":1}],[-3,{"n":5,"q":null,"m":22,"e":6562,"s":1}],[2,{"n":6.5,"q":null,"m":90,"e":10578}],[1,{"n":5.5,"q":null,"m":90,"e":10937}]],"fo":[[6340,[{"t":"I"}]]]}],[5203,{"n":"Fontaine","f":"Jean-Pascal","fp":"MD","r":15,"c":89,"s":{"Os":153,"On":29,"Oa":5.28,"Od":0.9,"Om":2399,"Oam":83,"Odm":16,"pd":2,"pm":26,"pa":1},"p":[[-36,{"n":4,"q":null,"m":83,"e":6232}],[-35,{"n":5.5,"q":null,"m":90,"e":6243}],[-33,{"n":5,"q":null,"m":90,"e":6261}],[-32,{"n":5,"q":null,"m":90,"e":6271}],[-31,{"n":5,"q":null,"m":90,"e":6279}],[-30,{"n":6,"q":null,"m":90,"e":6292}],[-29,{"n":8,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":90,"e":6312}],[-27,{"n":6,"q":null,"m":90,"e":6324}],[-26,{"n":6,"q":null,"m":90,"e":6331}],[-25,{"n":5.5,"q":null,"m":90,"e":6340}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-23,{"n":4,"q":null,"m":57,"e":6364}],[-22,{"n":5.5,"q":null,"m":90,"e":6373}],[-21,{"n":4.5,"q":null,"m":89,"e":6383}],[-17,{"n":5,"q":null,"m":22,"e":6423,"s":1}],[-15,{"n":5,"q":null,"m":90,"e":6442}],[-14,{"n":6,"q":null,"m":90,"e":6457}],[-13,{"n":5.5,"q":null,"m":90,"e":6462}],[-12,{"n":4.5,"q":null,"m":61,"e":6472}],[-11,{"n":6,"q":null,"m":90,"e":6487}],[-10,{"n":5,"q":null,"m":67,"e":6493}],[-9,{"n":5,"q":null,"m":90,"e":6501}],[-7,{"n":5.5,"q":null,"m":69,"e":6521}],[-6,{"n":4,"q":null,"m":90,"e":6534}],[-5,{"n":7,"q":null,"m":90,"e":6542}],[-4,{"n":5,"q":null,"m":90,"e":6553}],[-3,{"n":5,"q":null,"m":90,"e":6562}],[-1,{"n":4,"q":null,"m":61,"e":6587}]]}],[5216,{"n":"Bonnet","f":"Alexandre","fp":"MO","r":26,"c":89,"s":{"s":10,"n":2,"a":5,"m":81,"am":41,"dm":32,"Ss":5,"Sn":1,"Sa":5,"Sm":63,"Sam":63,"Og":7,"Os":163.5,"On":31,"Oa":5.27,"Od":0.78,"Om":2106,"Oam":68,"Odm":29,"pm":24,"pa":7,"Omsn":5.5},"p":[[-36,{"n":6.5,"q":null,"m":90,"e":6232,"g":1}],[-34,{"n":4,"q":null,"m":60,"e":6253}],[-33,{"n":5,"q":null,"m":90,"e":6261}],[-32,{"n":6,"q":null,"m":90,"e":6271,"g":1}],[-31,{"n":6.5,"q":null,"m":90,"e":6279,"g":1}],[-30,{"n":5,"q":null,"m":90,"e":6292}],[-29,{"n":7,"q":null,"m":90,"e":6307,"g":1}],[-28,{"n":4.5,"q":null,"m":73,"e":6312}],[-27,{"n":5,"q":null,"m":84,"e":6324}],[-26,{"n":5.5,"q":null,"m":90,"e":6331,"g":1}],[-25,{"n":6,"q":null,"m":90,"e":6340,"g":1}],[-24,{"n":5,"q":null,"m":90,"e":6352}],[-23,{"n":5,"q":null,"m":90,"e":6364}],[-22,{"n":5.5,"q":null,"m":90,"e":6373}],[-21,{"n":5,"q":null,"m":90,"e":6383}],[-20,{"n":5.5,"q":null,"m":90,"e":6389}],[-19,{"n":5,"q":null,"m":90,"e":6401}],[-18,{"n":6,"q":null,"m":90,"e":6405}],[-17,{"n":5.5,"q":null,"m":86,"e":6423}],[-16,{"n":7,"q":null,"m":79,"e":6435,"g":1,"s":1}],[-12,{"n":5,"q":null,"m":21,"e":6472,"s":1}],[-11,{"n":5,"q":null,"m":9,"e":6487,"s":1}],[-10,{"n":4.5,"q":null,"m":66,"e":6493}],[-9,{"n":5,"q":null,"m":35,"e":6501,"s":1}],[-8,{"n":5,"q":null,"m":32,"e":6512,"s":1}],[-6,{"n":3.5,"q":null,"m":28,"e":6534,"s":1}],[-5,{"n":5,"q":null,"m":1,"e":6542,"s":1}],[-4,{"n":4.5,"q":null,"m":33,"e":6553,"s":1}],[-3,{"n":5.5,"q":null,"m":68,"e":6562}],[2,{"n":5,"q":null,"m":18,"e":10578,"s":1}],[1,{"n":5,"q":null,"m":63,"e":10937}]],"fo":[[6232,[{"t":"Y"}]],[6253,[{"t":"Y"},{"t":"O"}]],[6271,[{"t":"Y"}]],[6312,[{"t":"Y"}]]]}],[5349,{"n":"Meddah","f":"Daylam","fp":"MD","r":1,"c":89}],[5351,{"n":"Coulibaly","f":"Woyo","fp":"DC","r":11,"c":89,"s":{"s":5,"n":1,"a":5,"m":10,"am":10,"Ss":5,"Sn":1,"Sa":5,"Sm":10,"Sam":10,"Os":136,"On":27,"Oa":5.04,"Od":0.57,"Om":2121,"Oam":79,"Odm":20,"pd":22,"pm":5},"p":[[-37,{"n":6,"q":null,"m":90,"e":6227}],[-36,{"n":5,"q":null,"m":67,"e":6232}],[-35,{"n":5,"q":null,"m":61,"e":6243}],[-34,{"n":4,"q":null,"m":90,"e":6253}],[-33,{"n":5,"q":null,"m":90,"e":6261}],[-31,{"n":6,"q":null,"m":90,"e":6279}],[-30,{"n":4.5,"q":null,"m":45,"e":6292}],[-29,{"n":5.5,"q":null,"m":90,"e":6307}],[-27,{"n":4.5,"q":null,"m":68,"e":6324}],[-26,{"n":5,"q":null,"m":57,"e":6331}],[-25,{"n":5.5,"q":null,"m":90,"e":6340}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-23,{"n":5,"q":null,"m":81,"e":6364}],[-22,{"n":5,"q":null,"m":90,"e":6373}],[-17,{"n":5.5,"q":null,"m":68,"e":6423}],[-16,{"n":5,"q":null,"m":45,"e":6435,"s":1}],[-11,{"n":4,"q":null,"m":89,"e":6487}],[-9,{"n":5,"q":null,"m":90,"e":6501}],[-8,{"n":5.5,"q":null,"m":90,"e":6512}],[-7,{"n":5,"q":null,"m":90,"e":6521}],[-6,{"n":4,"q":null,"m":90,"e":6534}],[-5,{"n":5.5,"q":null,"m":90,"e":6542}],[-4,{"n":4.5,"q":null,"m":90,"e":6553}],[-3,{"n":5,"q":null,"m":90,"e":6562}],[-2,{"n":5.5,"q":null,"m":90,"e":6573}],[-1,{"n":4.5,"q":null,"m":90,"e":6587}],[1,{"n":5,"q":null,"m":10,"e":10937,"s":1}]],"fo":[[6261,[{"t":"Y"}]]]}],[6185,{"n":"Ben Mohamed","f":"Ayman","fp":"DL","r":5,"c":89,"s":{"Os":57.5,"On":12,"Oa":4.79,"Od":1.01,"Om":950,"Oam":79,"Odm":20,"pd":9,"pm":3},"p":[[-19,{"n":4,"q":null,"m":90,"e":6401}],[-18,{"n":5,"q":null,"m":23,"e":6405,"s":1}],[-12,{"n":3,"q":null,"m":69,"e":6472}],[-10,{"n":4.5,"q":null,"m":77,"e":6493}],[-8,{"n":5,"q":null,"m":90,"e":6512}],[-7,{"n":5,"q":null,"m":90,"e":6521}],[-6,{"n":4,"q":null,"m":61,"e":6534}],[-5,{"n":6,"q":null,"m":90,"e":6542}],[-4,{"n":4.5,"q":null,"m":90,"e":6553}],[-3,{"n":6.5,"q":null,"m":90,"e":6562}],[-2,{"n":6,"q":null,"m":90,"e":6573}],[-1,{"n":4,"q":null,"m":90,"e":6587}]]}],[6233,{"n":"Meras","f":"Umut","fp":"DL","r":13,"c":89,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":169,"am":85,"dm":8,"Ss":5,"Sn":1,"Sa":5,"Sm":79,"Sam":79,"Og":1,"Os":162,"On":33,"Oa":4.91,"Od":0.63,"Om":2823,"Oam":86,"Odm":14,"pd":27,"pm":6,"Omsn":4},"p":[[-37,{"n":5,"q":null,"m":90,"e":6227}],[-35,{"n":5,"q":null,"m":90,"e":6243}],[-34,{"n":5,"q":null,"m":25,"e":6253}],[-33,{"n":5.5,"q":null,"m":90,"e":6261}],[-32,{"n":4.5,"q":null,"m":90,"e":6271}],[-31,{"n":5,"q":null,"m":90,"e":6279}],[-30,{"n":4.5,"q":null,"m":90,"e":6292}],[-29,{"n":6,"q":null,"m":90,"e":6307}],[-28,{"n":4.5,"q":null,"m":90,"e":6312}],[-27,{"n":4,"q":null,"m":90,"e":6324}],[-26,{"n":5,"q":null,"m":90,"e":6331}],[-25,{"n":5.5,"q":null,"m":90,"e":6340}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-23,{"n":5,"q":null,"m":90,"e":6364}],[-22,{"n":5,"q":null,"m":90,"e":6373}],[-21,{"n":5,"q":null,"m":90,"e":6383}],[-20,{"n":5,"q":null,"m":90,"e":6389}],[-19,{"n":4.5,"q":null,"m":74,"e":6401}],[-18,{"n":5.5,"q":null,"m":89,"e":6405}],[-17,{"n":5,"q":null,"m":90,"e":6423}],[-16,{"n":4,"q":null,"m":90,"e":6435,"g":1}],[-15,{"n":6,"q":null,"m":90,"e":6442}],[-14,{"n":4,"q":null,"m":90,"e":6457}],[-13,{"n":5,"q":null,"m":90,"e":6462}],[-12,{"n":3.5,"q":null,"m":90,"e":6472}],[-11,{"n":5,"q":null,"m":90,"e":6487}],[-7,{"n":5,"q":null,"m":44,"e":6521}],[-6,{"n":3.5,"q":null,"m":90,"e":6534}],[-5,{"n":4.5,"q":null,"m":89,"e":6542}],[-2,{"n":5.5,"q":null,"m":89,"e":6573}],[2,{"n":5.5,"q":null,"m":90,"e":10578}],[-1,{"n":5,"q":null,"m":84,"e":6587}],[1,{"n":5,"q":null,"m":79,"e":10937}]],"fo":[[6253,[{"t":"I"}]],[6292,[{"t":"Y"}]]]}],[6720,{"n":"Mahmoud","f":"Elies","fp":"MO","r":8,"c":89,"s":{"Os":68,"On":14,"Oa":4.86,"Od":0.5,"Om":496,"Oam":35,"Odm":27,"pm":13,"pa":1},"p":[[-38,{"n":6,"q":null,"m":90,"e":6214}],[-37,{"n":4.5,"q":null,"m":3,"e":6227,"s":1}],[-36,{"n":4.5,"q":null,"m":23,"e":6232,"s":1}],[-35,{"n":5,"q":null,"m":29,"e":6243,"s":1}],[-34,{"n":4,"q":null,"m":67,"e":6253}],[-30,{"n":4.5,"q":null,"m":25,"e":6292,"s":1}],[-29,{"n":5.5,"q":null,"m":54,"e":6307,"s":1}],[-28,{"n":5,"q":null,"m":81,"e":6312}],[-26,{"n":4.5,"q":null,"m":33,"e":6331,"s":1}],[-24,{"n":5,"q":null,"m":11,"e":6352,"s":1}],[-23,{"n":5,"q":null,"m":20,"e":6364,"s":1}],[-10,{"n":5,"q":null,"m":13,"e":6493,"s":1}],[-6,{"n":4.5,"q":null,"m":29,"e":6534,"s":1}],[-5,{"n":5,"q":null,"m":18,"e":6542,"s":1}]],"fo":[[6307,[{"t":"Y"}]]]}],[6722,{"n":"Sangante","f":"Arouna","fp":"DC","r":1,"c":89,"s":{"s":12,"n":2,"a":6,"d":0.71,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":18.5,"On":3,"Oa":6.17,"Od":0.58,"Om":261,"Oam":87,"Odm":5,"pd":3},"p":[[-38,{"n":6.5,"q":null,"m":81,"e":6214}],[2,{"n":6.5,"q":null,"m":90,"e":10578}],[1,{"n":5.5,"q":null,"m":90,"e":10937}]]}],[6723,{"n":"Casimir","f":"Josué","fp":"A","r":3,"c":89,"s":{"Os":23.5,"On":5,"Oa":4.7,"Od":0.45,"Om":104,"Oam":21,"Odm":16,"pa":5},"p":[[-38,{"n":5,"q":null,"m":45,"e":6214,"s":1}],[-24,{"n":4,"q":null,"m":11,"e":6352,"s":1}],[-13,{"n":4.5,"q":null,"m":1,"e":6462,"s":1}],[-9,{"n":5,"q":null,"m":24,"e":6501,"s":1}],[-8,{"n":5,"q":null,"m":23,"e":6512,"s":1}]]}],[6849,{"n":"Alioui","f":"Nabil","fp":"A","r":9,"c":89,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":160,"am":80,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":80,"Sam":80,"Og":3,"Os":125.5,"On":26,"Oa":4.83,"Od":0.73,"Om":1395,"Oam":54,"Odm":30,"pm":7,"pa":19,"Omsn":6},"p":[[-38,{"n":6,"q":null,"m":22,"e":6214,"g":1,"s":1}],[-33,{"n":5.5,"q":null,"m":90,"e":6261}],[-32,{"n":5,"q":null,"m":82,"e":6271}],[-31,{"n":5.5,"q":null,"m":90,"e":6279}],[-29,{"n":6,"q":null,"m":36,"e":6307,"g":1}],[-28,{"n":4.5,"q":null,"m":45,"e":6312,"s":1}],[-27,{"n":4.5,"q":null,"m":22,"e":6324,"s":1}],[-26,{"n":4.5,"q":null,"m":33,"e":6331,"s":1}],[-25,{"n":4,"q":null,"m":76,"e":6340}],[-24,{"n":5.5,"q":null,"m":79,"e":6352}],[-23,{"n":4,"q":null,"m":33,"e":6364,"s":1}],[-19,{"n":3.5,"q":null,"m":79,"e":6401,"s":1}],[-18,{"n":6,"q":null,"m":67,"e":6405}],[-17,{"n":5.5,"q":null,"m":90,"e":6423}],[-16,{"n":6,"q":null,"m":45,"e":6435,"g":1,"s":1}],[-15,{"n":5,"q":null,"m":12,"e":6442,"s":1}],[-14,{"n":4.5,"q":null,"m":9,"e":6457,"s":1}],[-13,{"n":5,"q":null,"m":29,"e":6462,"s":1}],[-12,{"n":4,"q":null,"m":61,"e":6472}],[-11,{"n":4,"q":null,"m":81,"e":6487}],[-10,{"n":4.5,"q":null,"m":90,"e":6493}],[-5,{"n":4.5,"q":null,"m":1,"e":6542,"s":1}],[-4,{"n":4,"q":null,"m":57,"e":6553}],[2,{"n":5,"q":null,"m":80,"e":10578}],[-1,{"n":4.5,"q":null,"m":6,"e":6587,"s":1}],[1,{"n":4.5,"q":null,"m":80,"e":10937}]],"fo":[[6307,[{"t":"I"}]],[6271,[{"t":"Y"}]],[6340,[{"t":"Y"}]]]}],[6908,{"n":"Bentil","f":"Godwin Kobby","fp":"A","r":1,"c":89,"s":{"Og":2,"Os":35,"On":7,"Oa":5,"Od":1,"Om":314,"Oam":45,"Odm":33,"pa":7,"Omsn":5.5},"p":[[-10,{"n":4,"q":null,"m":77,"e":6493}],[-9,{"n":7,"q":null,"m":66,"e":6501,"g":1}],[-8,{"n":5,"q":null,"m":67,"e":6512}],[-7,{"n":5.5,"q":null,"m":72,"e":6521,"g":1}],[-6,{"n":4.5,"q":null,"m":29,"e":6534,"s":1}],[-5,{"n":4.5,"q":null,"m":1,"e":6542,"s":1}],[-3,{"n":4.5,"q":null,"m":2,"e":6562,"s":1}]]}],[7043,{"n":"Toure","f":"Souleymane","fp":"DC","r":1,"c":89,"s":{"s":5,"n":1,"a":5,"m":1,"am":1,"Os":5,"On":1,"Oa":5,"Om":1,"Oam":1,"pd":1},"p":[[2,{"n":5,"q":null,"m":1,"e":10578,"s":1}]]}],[7242,{"n":"Gomes","f":"Ylan","fp":"A","r":1,"c":89,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":21,"am":11,"dm":1,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":11,"Sam":11,"Os":29,"On":6,"Oa":4.83,"Od":0.88,"Om":132,"Oam":22,"Odm":23,"pm":1,"pa":5},"p":[[-38,{"n":6.5,"q":null,"m":68,"e":6214}],[-19,{"n":4.5,"q":null,"m":16,"e":6401,"s":1}],[-15,{"n":4,"q":null,"m":4,"e":6442,"s":1}],[-8,{"n":4.5,"q":null,"m":23,"e":6512,"s":1}],[2,{"n":5,"q":null,"m":10,"e":10578,"s":1}],[1,{"n":4.5,"q":null,"m":11,"e":10937,"s":1}]]}],[7391,{"n":"Boutaïb","f":"Khalid","fp":"A","r":10,"c":89,"s":{"g":2,"s":12.5,"n":2,"a":6.25,"d":1.77,"m":117,"am":59,"dm":45,"Ss":5,"Sn":1,"Sa":5,"Sm":27,"Sam":27,"Og":4,"Os":82.5,"On":17,"Oa":4.85,"Od":1.11,"Om":994,"Oam":58,"Odm":33,"pa":17,"Smsn":7.5,"Omsn":6},"p":[[-37,{"n":7.5,"q":null,"m":87,"e":6227,"g":1}],[-36,{"n":4,"q":null,"m":90,"e":6232}],[-35,{"n":6,"q":null,"m":90,"e":6243,"g":1}],[-34,{"n":4,"q":null,"m":10,"e":6253,"s":1}],[-33,{"n":4.5,"q":null,"m":45,"e":6261,"s":1}],[-32,{"n":4.5,"q":null,"m":8,"e":6271,"s":1}],[-31,{"n":4.5,"q":null,"m":22,"e":6279,"s":1}],[-30,{"n":4.5,"q":null,"m":45,"e":6292,"s":1}],[-28,{"n":4.5,"q":null,"m":90,"e":6312}],[-27,{"n":4,"q":null,"m":69,"e":6324}],[-26,{"n":4.5,"q":null,"m":90,"e":6331}],[-25,{"n":4.5,"q":null,"m":14,"e":6340,"s":1}],[-22,{"n":5,"q":null,"m":37,"e":6373}],[-21,{"n":4,"q":null,"m":90,"e":6383}],[-20,{"n":4,"q":null,"m":90,"e":6389}],[2,{"n":7.5,"q":null,"m":90,"e":10578,"g":2}],[1,{"n":5,"q":null,"m":27,"e":10937,"s":1}]],"fo":[[6253,[{"t":"Y"}]],[6312,[{"t":"Y"}]],[6324,[{"t":"Y"}]]]}],[7479,{"n":"Wahib","f":"Abdelwahed","fp":"DL","r":3,"c":89,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.58,"Om":117,"Oam":39,"Odm":29,"pd":3},"p":[[-36,{"n":5,"q":null,"m":7,"e":6232,"s":1}],[-34,{"n":4,"q":null,"m":65,"e":6253,"s":1}],[-29,{"n":5,"q":null,"m":45,"e":6307,"s":1}]],"fo":[[6307,[{"t":"Y"}]]]}],[7794,{"n":"Ba","f":"Abdoullah","fp":"MD","r":1,"c":89,"s":{"s":5,"n":1,"a":5,"m":63,"am":63,"Ss":5,"Sn":1,"Sa":5,"Sm":63,"Sam":63,"Og":1,"Os":22,"On":4,"Oa":5.5,"Od":1.08,"Om":257,"Oam":64,"Odm":30,"pm":4,"Omsn":7},"p":[[-38,{"n":7,"q":null,"m":81,"e":6214,"g":1}],[-37,{"n":5.5,"q":null,"m":90,"e":6227}],[-34,{"n":4.5,"q":null,"m":23,"e":6253,"s":1}],[1,{"n":5,"q":null,"m":63,"e":10937}]],"fo":[[10937,[{"t":"I"}]]]}],[8012,{"n":"Bodmer","f":"Mathéo","fp":"MD","r":1,"c":89}],[8014,{"n":"Richardson","f":"Amir","fp":"MO","r":1,"c":89,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":116,"am":58,"dm":44,"Ss":5,"Sn":1,"Sa":5,"Sm":27,"Sam":27,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"Om":116,"Oam":58,"Odm":44,"pm":2},"p":[[2,{"n":5.5,"q":null,"m":89,"e":10578}],[1,{"n":5,"q":null,"m":27,"e":10937,"s":1}]],"fo":[[10937,[{"t":"Y"}]]]}],[8016,{"n":"Bachelet","f":"Melvin","fp":"DC","r":1,"c":89}],[8026,{"n":"Balde","f":"Thierno","fp":"DL","r":8,"c":89}],[8029,{"n":"Kechta","f":"Yassine","fp":"MD","r":1,"c":89}],[8496,{"n":"Koné","f":"Mohamed","fp":"G","r":1,"c":89}],[338,{"n":"El Kaoutari","f":"Abdelhamid","fp":"DC","r":10,"c":17,"s":{"Os":121,"On":26,"Oa":4.65,"Od":0.85,"Om":2238,"Oam":86,"Odm":17,"pd":26},"p":[[-4,{"n":6.5,"q":null,"m":90,"e":6554}],[-36,{"n":3.5,"q":null,"m":90,"e":6233}],[-35,{"n":6,"q":null,"m":90,"e":6240}],[-34,{"n":5,"q":null,"m":7,"e":6254,"s":1}],[-33,{"n":3.5,"q":null,"m":90,"e":6259}],[-31,{"n":3,"q":null,"m":90,"e":6286}],[-30,{"n":5.5,"q":null,"m":90,"e":6293}],[-29,{"n":5.5,"q":null,"m":90,"e":6306}],[-25,{"n":5,"q":null,"m":90,"e":6342}],[-24,{"n":5.5,"q":null,"m":90,"e":6353}],[-23,{"n":4,"q":null,"m":90,"e":6364}],[-22,{"n":4.5,"q":null,"m":90,"e":6372}],[-19,{"n":4.5,"q":null,"m":90,"e":6402}],[-18,{"n":5,"q":null,"m":90,"e":6417}],[-17,{"n":4.5,"q":null,"m":90,"e":6424}],[-16,{"n":5,"q":null,"m":90,"e":6428}],[-15,{"n":4,"q":null,"m":90,"e":6444}],[-13,{"n":4,"q":null,"m":71,"e":6463}],[-12,{"n":4,"q":null,"m":90,"e":6470}],[-8,{"n":4,"q":null,"m":90,"e":6513}],[-7,{"n":5.5,"q":null,"m":90,"e":6522}],[-6,{"n":5.5,"q":null,"m":90,"e":6535}],[-5,{"n":4.5,"q":null,"m":90,"e":6542}],[-3,{"n":5,"q":null,"m":90,"e":6563}],[-2,{"n":4,"q":null,"m":90,"e":6569}],[-1,{"n":4,"q":null,"m":90,"e":6580}]],"fo":[[6259,[{"t":"Y"}]],[6353,[{"t":"Y"}]]]}],[1189,{"n":"Ciss","f":"Saliou","fp":"DL","r":14,"c":17,"s":{"Og":5,"Oao":1,"Os":134.5,"On":27,"Oa":4.98,"Od":1.28,"Om":2193,"Oam":81,"Odm":19,"pd":21,"pm":6,"Omsn":6.5},"p":[[-38,{"n":5,"q":null,"m":90,"e":6211}],[-37,{"n":5.5,"q":null,"m":90,"e":6224}],[-36,{"n":3.5,"q":null,"m":90,"e":6233}],[-35,{"n":5.5,"q":null,"m":90,"e":6240}],[-34,{"n":8,"q":null,"m":90,"e":6254,"g":2}],[-33,{"n":4,"q":null,"m":90,"e":6259}],[-32,{"n":4.5,"q":null,"m":90,"e":6272}],[-31,{"n":2,"q":null,"m":90,"e":6286,"a":1}],[-30,{"n":7.5,"q":null,"m":90,"e":6293,"g":1}],[-29,{"n":5,"q":null,"m":29,"e":6306,"s":1}],[-24,{"n":6.5,"q":null,"m":58,"e":6353,"g":1}],[-23,{"n":5.5,"q":null,"m":66,"e":6364}],[-22,{"n":5,"q":null,"m":27,"e":6372,"s":1}],[-21,{"n":5,"q":null,"m":90,"e":6384}],[-20,{"n":5,"q":null,"m":87,"e":6393}],[-19,{"n":3.5,"q":null,"m":90,"e":6402}],[-18,{"n":4.5,"q":null,"m":90,"e":6417}],[-17,{"n":5.5,"q":null,"m":90,"e":6424}],[-16,{"n":6,"q":null,"m":90,"e":6428}],[-15,{"n":3,"q":null,"m":90,"e":6444}],[-11,{"n":6.5,"q":null,"m":81,"e":6482,"g":1}],[-7,{"n":4.5,"q":null,"m":45,"e":6522}],[-5,{"n":4,"q":null,"m":90,"e":6542}],[-4,{"n":5.5,"q":null,"m":90,"e":6554}],[-3,{"n":5,"q":null,"m":90,"e":6563}],[-2,{"n":4.5,"q":null,"m":90,"e":6569}],[-1,{"n":4.5,"q":null,"m":90,"e":6580}]],"fo":[[6272,[{"t":"Y"}]]]}],[2230,{"n":"Trott","f":"Nathan","fp":"G","r":7,"c":17,"s":{"s":3.5,"n":1,"a":3.5,"m":90,"am":90,"Os":3.5,"On":1,"Oa":3.5,"Om":90,"Oam":90,"pg":1},"p":[[2,{"n":3.5,"q":null,"m":90,"e":10573}]]}],[2628,{"n":"Bertrand","f":"Dorian","fp":"A","r":3,"c":17,"s":{"s":4.5,"n":1,"a":4.5,"m":8,"am":8,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":8,"Sam":8,"Os":111,"On":23,"Oa":4.83,"Od":0.6,"Om":1230,"Oam":53,"Odm":24,"pm":13,"pa":10},"p":[[1,{"n":4.5,"q":null,"m":8,"e":10931,"s":1}],[-38,{"n":4.5,"q":null,"m":14,"e":6211,"s":1}],[-25,{"n":4,"q":null,"m":45,"e":6342}],[-22,{"n":5,"q":null,"m":63,"e":6372}],[-21,{"n":4.5,"q":null,"m":45,"e":6384,"s":1}],[-19,{"n":4.5,"q":null,"m":23,"e":6402,"s":1}],[-18,{"n":5,"q":null,"m":58,"e":6417}],[-17,{"n":5,"q":null,"m":70,"e":6424}],[-16,{"n":4,"q":null,"m":52,"e":6428,"s":1}],[-15,{"n":5.5,"q":null,"m":80,"e":6444}],[-14,{"n":6,"q":null,"m":90,"e":6454}],[-13,{"n":5.5,"q":null,"m":90,"e":6463}],[-12,{"n":4.5,"q":null,"m":56,"e":6470}],[-11,{"n":4.5,"q":null,"m":27,"e":6482,"s":1}],[-9,{"n":5,"q":null,"m":68,"e":6502}],[-8,{"n":5,"q":null,"m":73,"e":6513}],[-7,{"n":6,"q":null,"m":62,"e":6522}],[-6,{"n":5,"q":null,"m":34,"e":6535}],[-5,{"n":5.5,"q":null,"m":68,"e":6542}],[-4,{"n":5,"q":null,"m":80,"e":6554}],[-3,{"n":4,"q":null,"m":25,"e":6563,"s":1}],[-2,{"n":4.5,"q":null,"m":72,"e":6569}],[-1,{"n":4,"q":null,"m":27,"e":6580,"s":1}]]}],[2696,{"n":"Basila","f":"Thomas","fp":"DC","r":9,"c":17}],[2729,{"n":"Valette","f":"Baptiste","fp":"G","r":10,"c":17,"s":{"s":6,"n":1,"a":6,"m":90,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":142.5,"On":28,"Oa":5.09,"Od":0.97,"Om":2478,"Oam":89,"Odm":6,"pg":28},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6211}],[-37,{"n":5,"q":null,"m":90,"e":6224}],[-34,{"n":6,"q":null,"m":90,"e":6254}],[-31,{"n":3.5,"q":null,"m":90,"e":6286}],[-30,{"n":6.5,"q":null,"m":90,"e":6293}],[-29,{"n":5.5,"q":null,"m":90,"e":6306}],[-28,{"n":6,"q":null,"m":90,"e":6313}],[-27,{"n":5.5,"q":null,"m":76,"e":6320,"s":1}],[-21,{"n":4.5,"q":null,"m":90,"e":6384}],[-20,{"n":6,"q":null,"m":90,"e":6393}],[-19,{"n":5.5,"q":null,"m":90,"e":6402}],[-18,{"n":4,"q":null,"m":90,"e":6417}],[-17,{"n":4,"q":null,"m":90,"e":6424}],[-16,{"n":4.5,"q":null,"m":90,"e":6428}],[-15,{"n":6,"q":null,"m":90,"e":6444}],[-14,{"n":4,"q":null,"m":90,"e":6454}],[-13,{"n":3.5,"q":null,"m":90,"e":6463}],[-12,{"n":4.5,"q":null,"m":90,"e":6470}],[-11,{"n":4,"q":null,"m":90,"e":6482}],[-10,{"n":4,"q":null,"m":90,"e":6489}],[-9,{"n":6,"q":null,"m":90,"e":6502}],[-8,{"n":6,"q":null,"m":90,"e":6513}],[-7,{"n":6,"q":null,"m":90,"e":6522}],[-4,{"n":6,"q":null,"m":62,"e":6554}],[-3,{"n":5,"q":null,"m":90,"e":6563}],[-2,{"n":4,"q":null,"m":90,"e":6569}],[-1,{"n":6.5,"q":null,"m":90,"e":6580}],[1,{"n":6,"q":null,"m":90,"e":10931}]]}],[4872,{"n":"Triboulet","f":"Vinni","fp":"MO","r":12,"c":17,"s":{"s":4.5,"n":1,"a":4.5,"m":13,"am":13,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":13,"Sam":13,"Og":4,"Os":165,"On":34,"Oa":4.85,"Od":0.83,"Om":1529,"Oam":45,"Odm":33,"pm":3,"pa":31,"Omsn":6},"p":[[-37,{"n":5,"q":null,"m":19,"e":6224,"s":1}],[-36,{"n":5,"q":null,"m":22,"e":6233,"s":1}],[-35,{"n":6,"q":null,"m":87,"e":6240,"g":1}],[-34,{"n":4.5,"q":null,"m":45,"e":6254}],[-33,{"n":5.5,"q":null,"m":73,"e":6259}],[-32,{"n":4.5,"q":null,"m":21,"e":6272,"s":1}],[-31,{"n":4,"q":null,"m":34,"e":6286,"s":1}],[-30,{"n":5,"q":null,"m":21,"e":6293,"s":1}],[-29,{"n":7,"q":null,"m":21,"e":6306,"g":1,"s":1}],[-28,{"n":4.5,"q":null,"m":13,"e":6313,"s":1}],[-27,{"n":4,"q":null,"m":21,"e":6320,"s":1}],[-26,{"n":4.5,"q":null,"m":90,"e":6332}],[-25,{"n":6,"q":null,"m":89,"e":6342}],[-24,{"n":5,"q":null,"m":76,"e":6353}],[-23,{"n":4.5,"q":null,"m":29,"e":6364,"s":1}],[-22,{"n":5,"q":null,"m":87,"e":6372}],[-21,{"n":4,"q":null,"m":25,"e":6384,"s":1}],[-20,{"n":5,"q":null,"m":86,"e":6393}],[-19,{"n":6,"q":null,"m":90,"e":6402,"g":1}],[-18,{"n":6,"q":null,"m":32,"e":6417,"s":1}],[-17,{"n":6,"q":null,"m":20,"e":6424,"g":1,"s":1}],[-16,{"n":4.5,"q":null,"m":15,"e":6428,"s":1}],[-13,{"n":4.5,"q":null,"m":3,"e":6463,"s":1}],[-12,{"n":4,"q":null,"m":16,"e":6470,"s":1}],[-10,{"n":4.5,"q":null,"m":4,"e":6489,"s":1}],[-9,{"n":4.5,"q":null,"m":22,"e":6502,"s":1}],[-8,{"n":4.5,"q":null,"m":7,"e":6513,"s":1}],[-6,{"n":5.5,"q":null,"m":14,"e":6535,"s":1}],[-5,{"n":4.5,"q":null,"m":78,"e":6542}],[-4,{"n":6,"q":null,"m":86,"e":6554}],[-3,{"n":4,"q":null,"m":90,"e":6563}],[-2,{"n":4,"q":null,"m":90,"e":6569}],[-1,{"n":3,"q":null,"m":90,"e":6580}],[1,{"n":4.5,"q":null,"m":13,"e":10931,"s":1}]],"fo":[[6286,[{"t":"Y"}]]]}],[4873,{"n":"Bouzar Essaidi","f":"Samir","fp":"MD","r":1,"c":17,"s":{},"p":[[2,{"n":null,"q":null,"m":0,"e":10573}]]}],[4876,{"n":"Haag","f":"Giovanni","fp":"DC","r":15,"c":17,"s":{"s":4,"n":1,"a":4,"m":40,"am":40,"Ss":4,"Sn":1,"Sa":4,"Sm":40,"Sam":40,"Og":4,"Oao":1,"Os":167,"On":31,"Oa":5.39,"Od":1.04,"Om":2189,"Oam":71,"Odm":26,"pd":8,"pm":23,"Omsn":6},"p":[[-35,{"n":6,"q":null,"m":90,"e":6240}],[-34,{"n":6.5,"q":null,"m":90,"e":6254}],[-33,{"n":4.5,"q":null,"m":90,"e":6259}],[-32,{"n":6,"q":null,"m":90,"e":6272}],[-31,{"n":3,"q":null,"m":90,"e":6286}],[-29,{"n":7.5,"q":null,"m":90,"e":6306,"g":1,"a":1}],[-28,{"n":6,"q":null,"m":90,"e":6313}],[-27,{"n":5.5,"q":null,"m":90,"e":6320}],[-26,{"n":7,"q":null,"m":85,"e":6332,"g":1}],[-24,{"n":7,"q":null,"m":90,"e":6353}],[-23,{"n":5,"q":null,"m":29,"e":6364,"s":1}],[-22,{"n":5,"q":null,"m":90,"e":6372}],[-21,{"n":5.5,"q":null,"m":45,"e":6384,"s":1}],[-18,{"n":6,"q":null,"m":90,"e":6417}],[-17,{"n":6,"q":null,"m":32,"e":6424,"g":1,"s":1}],[-16,{"n":4.5,"q":null,"m":45,"e":6428}],[-15,{"n":5.5,"q":null,"m":4,"e":6444,"s":1}],[-14,{"n":4,"q":null,"m":65,"e":6454}],[-13,{"n":4.5,"q":null,"m":32,"e":6463,"s":1}],[-12,{"n":3.5,"q":null,"m":56,"e":6470}],[-11,{"n":5.5,"q":null,"m":81,"e":6482}],[-10,{"n":6.5,"q":null,"m":90,"e":6489}],[-9,{"n":6,"q":null,"m":90,"e":6502}],[-8,{"n":5,"q":null,"m":90,"e":6513}],[-7,{"n":6,"q":null,"m":62,"e":6522,"g":1}],[-6,{"n":5,"q":null,"m":76,"e":6535}],[-5,{"n":5,"q":null,"m":85,"e":6542}],[-4,{"n":6,"q":null,"m":90,"e":6554}],[-2,{"n":5,"q":null,"m":27,"e":6569,"s":1}],[-1,{"n":4.5,"q":null,"m":75,"e":6580}],[1,{"n":4,"q":null,"m":40,"e":10931}]]}],[4939,{"n":"Constant","f":"Hugo","fp":"G","r":3,"c":17,"s":{"Os":10,"On":2,"Oa":5,"Od":1.41,"Om":180,"Oam":90,"pg":2},"p":[[-33,{"n":4,"q":null,"m":90,"e":6259}],[-32,{"n":6,"q":null,"m":90,"e":6272}]]}],[4987,{"n":"Jung","f":"Andrew","fp":"A","r":9,"c":17,"s":{},"p":[[2,{"n":null,"q":null,"m":0,"e":10573}]]}],[5025,{"n":"Karamoko","f":"Souleymane","fp":"DL","r":10,"c":17,"s":{"s":7,"n":2,"a":3.5,"d":0.71,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Oao":1,"Os":168,"On":35,"Oa":4.8,"Od":0.72,"Om":2465,"Oam":70,"Odm":32,"pd":32,"pm":3},"p":[[-38,{"n":5,"q":null,"m":3,"e":6211,"s":1}],[-37,{"n":5,"q":null,"m":71,"e":6224}],[-36,{"n":3.5,"q":null,"m":83,"e":6233}],[-35,{"n":6,"q":null,"m":90,"e":6240}],[-34,{"n":6,"q":null,"m":90,"e":6254}],[-32,{"n":5,"q":null,"m":3,"e":6272,"s":1}],[-29,{"n":4.5,"q":null,"m":9,"e":6306,"s":1}],[-28,{"n":5.5,"q":null,"m":5,"e":6313,"s":1}],[-27,{"n":5,"q":null,"m":90,"e":6320}],[-26,{"n":4.5,"q":null,"m":90,"e":6332}],[-25,{"n":5,"q":null,"m":20,"e":6342,"s":1}],[-24,{"n":6,"q":null,"m":83,"e":6353}],[-23,{"n":5,"q":null,"m":14,"e":6364,"s":1}],[-22,{"n":4.5,"q":null,"m":90,"e":6372}],[-21,{"n":4.5,"q":null,"m":45,"e":6384}],[-20,{"n":5,"q":null,"m":90,"e":6393}],[-19,{"n":5,"q":null,"m":90,"e":6402}],[-18,{"n":6,"q":null,"m":32,"e":6417,"s":1}],[-17,{"n":4.5,"q":null,"m":57,"e":6424}],[-15,{"n":5,"q":null,"m":90,"e":6444}],[-14,{"n":4.5,"q":null,"m":90,"e":6454}],[-13,{"n":4,"q":null,"m":90,"e":6463}],[-11,{"n":4,"q":null,"m":90,"e":6482}],[-10,{"n":4.5,"q":null,"m":90,"e":6489}],[-9,{"n":5.5,"q":null,"m":90,"e":6502}],[-8,{"n":5.5,"q":null,"m":90,"e":6513}],[-7,{"n":5.5,"q":null,"m":90,"e":6522}],[-6,{"n":4.5,"q":null,"m":90,"e":6535,"a":1}],[-5,{"n":4.5,"q":null,"m":90,"e":6542}],[-4,{"n":5.5,"q":null,"m":90,"e":6554}],[-3,{"n":4,"q":null,"m":64,"e":6563}],[-2,{"n":4.5,"q":null,"m":86,"e":6569}],[2,{"n":3,"q":null,"m":90,"e":10573}],[-1,{"n":4,"q":null,"m":90,"e":6580}],[1,{"n":4,"q":null,"m":90,"e":10931}]],"fo":[[6320,[{"t":"Y"}]]]}],[5167,{"n":"Akichi","f":"Edmond","fp":"MD","r":9,"c":17,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":163,"On":33,"Oa":4.94,"Od":0.68,"Om":2222,"Oam":67,"Odm":32,"pd":2,"pm":31},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6211}],[-37,{"n":5,"q":null,"m":90,"e":6224}],[-36,{"n":5,"q":null,"m":10,"e":6233,"s":1}],[-33,{"n":4.5,"q":null,"m":60,"e":6259}],[-32,{"n":5,"q":null,"m":3,"e":6272,"s":1}],[-31,{"n":5,"q":null,"m":24,"e":6286,"s":1}],[-30,{"n":6,"q":null,"m":86,"e":6293}],[-28,{"n":5.5,"q":null,"m":90,"e":6313}],[-27,{"n":6.5,"q":null,"m":90,"e":6320}],[-26,{"n":6,"q":null,"m":90,"e":6332}],[-25,{"n":5.5,"q":null,"m":90,"e":6342}],[-23,{"n":5,"q":null,"m":90,"e":6364}],[-22,{"n":5,"q":null,"m":3,"e":6372,"s":1}],[-21,{"n":4,"q":null,"m":45,"e":6384}],[-20,{"n":5.5,"q":null,"m":90,"e":6393}],[-19,{"n":4.5,"q":null,"m":90,"e":6402}],[-18,{"n":5,"q":null,"m":8,"e":6417,"s":1}],[-17,{"n":4.5,"q":null,"m":7,"e":6424,"s":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6428}],[-15,{"n":4.5,"q":null,"m":90,"e":6444}],[-14,{"n":5,"q":null,"m":90,"e":6454}],[-13,{"n":4.5,"q":null,"m":90,"e":6463}],[-12,{"n":4.5,"q":null,"m":85,"e":6470}],[-11,{"n":5,"q":null,"m":46,"e":6482,"s":1}],[-10,{"n":6,"q":null,"m":90,"e":6489}],[-6,{"n":3.5,"q":null,"m":31,"e":6535}],[-5,{"n":5,"q":null,"m":68,"e":6542}],[-4,{"n":5.5,"q":null,"m":90,"e":6554}],[-3,{"n":5,"q":null,"m":90,"e":6563}],[-2,{"n":5.5,"q":null,"m":63,"e":6569}],[2,{"n":3.5,"q":null,"m":90,"e":10573}],[-1,{"n":5,"q":null,"m":63,"e":6580}],[1,{"n":4,"q":null,"m":90,"e":10931}]],"fo":[[6259,[{"t":"Y"}]]]}],[5357,{"n":"Delos","f":"Shaquil","fp":"DL","r":14,"c":17,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":3,"Os":169.5,"On":35,"Oa":4.84,"Od":0.86,"Om":1893,"Oam":54,"Odm":33,"pd":26,"pm":8,"pa":1,"Omsn":5},"p":[[-38,{"n":3.5,"q":null,"m":90,"e":6215}],[-37,{"n":6.5,"q":null,"m":90,"e":6221}],[-36,{"n":6,"q":null,"m":87,"e":6232}],[-34,{"n":4.5,"q":null,"m":45,"e":6252}],[-33,{"n":6.5,"q":null,"m":90,"e":6260}],[-32,{"n":5,"q":null,"m":82,"e":6276,"g":1}],[-31,{"n":6,"q":null,"m":45,"e":6284,"g":1,"s":1}],[-30,{"n":5,"q":null,"m":13,"e":6289,"s":1}],[-29,{"n":3,"q":null,"m":90,"e":6305}],[-28,{"n":4.5,"q":null,"m":90,"e":6310}],[-27,{"n":4.5,"q":null,"m":29,"e":6322,"s":1}],[-23,{"n":4,"q":null,"m":90,"e":6360}],[-22,{"n":6,"q":null,"m":37,"e":6370,"s":1}],[-21,{"n":4.5,"q":null,"m":90,"e":6382}],[-20,{"n":4.5,"q":null,"m":90,"e":6391}],[-19,{"n":5,"q":null,"m":90,"e":6407}],[-18,{"n":5.5,"q":null,"m":26,"e":6405,"s":1}],[-17,{"n":5,"q":null,"m":9,"e":6424,"s":1}],[-16,{"n":6,"q":null,"m":16,"e":6429,"g":1,"s":1}],[-15,{"n":5,"q":null,"m":24,"e":6438,"s":1}],[-14,{"n":5,"q":null,"m":8,"e":6450,"s":1}],[-13,{"n":5,"q":null,"m":45,"e":6459,"s":1}],[-12,{"n":5,"q":null,"m":62,"e":6468}],[-11,{"n":5,"q":null,"m":23,"e":6479,"s":1}],[-10,{"n":5,"q":null,"m":7,"e":6497,"s":1}],[-9,{"n":4.5,"q":null,"m":70,"e":6499}],[-8,{"n":3.5,"q":null,"m":56,"e":6508}],[-7,{"n":4.5,"q":null,"m":18,"e":6520,"s":1}],[-6,{"n":5,"q":null,"m":22,"e":6536,"s":1}],[-5,{"n":5.5,"q":null,"m":15,"e":6540,"s":1}],[-4,{"n":5,"q":null,"m":4,"e":6548,"s":1}],[-3,{"n":4,"q":null,"m":90,"e":6561}],[2,{"n":3,"q":null,"m":90,"e":10573}],[-1,{"n":4.5,"q":null,"m":70,"e":6582}],[1,{"n":4.5,"q":null,"m":90,"e":10931}]],"fo":[[6221,[{"t":"Y"}]]]}],[6184,{"n":"Lefebvre","f":"Grégoire","fp":"MD","r":7,"c":17,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":122,"On":25,"Oa":4.88,"Od":0.79,"Om":1240,"Oam":50,"Odm":36,"pd":6,"pm":19},"p":[[-38,{"n":4,"q":null,"m":87,"e":6211}],[-37,{"n":5,"q":null,"m":90,"e":6224}],[-33,{"n":4,"q":null,"m":90,"e":6259}],[-32,{"n":5.5,"q":null,"m":90,"e":6272}],[-31,{"n":4,"q":null,"m":34,"e":6286,"s":1}],[-30,{"n":4.5,"q":null,"m":4,"e":6293,"s":1}],[-29,{"n":5,"q":null,"m":61,"e":6306}],[-28,{"n":7,"q":null,"m":90,"e":6313}],[-27,{"n":6.5,"q":null,"m":90,"e":6320}],[-26,{"n":5,"q":null,"m":5,"e":6332,"s":1}],[-25,{"n":4.5,"q":null,"m":70,"e":6342}],[-24,{"n":4.5,"q":null,"m":14,"e":6353,"s":1}],[-23,{"n":6,"q":null,"m":76,"e":6364}],[-20,{"n":5,"q":null,"m":1,"e":6393,"s":1}],[-17,{"n":4,"q":null,"m":58,"e":6424}],[-16,{"n":5,"q":null,"m":45,"e":6428,"s":1}],[-12,{"n":3.5,"q":null,"m":56,"e":6470}],[-11,{"n":5,"q":null,"m":9,"e":6482,"s":1}],[-10,{"n":4.5,"q":null,"m":1,"e":6489,"s":1}],[-7,{"n":5,"q":null,"m":14,"e":6522,"s":1}],[-6,{"n":5.5,"q":null,"m":56,"e":6535,"s":1}],[-2,{"n":4.5,"q":null,"m":4,"e":6569,"s":1}],[2,{"n":4.5,"q":null,"m":90,"e":10573}],[-1,{"n":5,"q":null,"m":15,"e":6580,"s":1}],[1,{"n":5,"q":null,"m":90,"e":10931}]]}],[6822,{"n":"Bondo","f":"Warren","fp":"MO","r":5,"c":17,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":167,"am":84,"dm":9,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":77,"Sam":77,"Og":1,"Os":74.5,"On":15,"Oa":4.97,"Od":0.74,"Om":580,"Oam":39,"Odm":35,"pm":15,"Omsn":7},"p":[[-35,{"n":5,"q":null,"m":3,"e":6240,"s":1}],[-33,{"n":5,"q":null,"m":6,"e":6259,"s":1}],[-27,{"n":5,"q":null,"m":11,"e":6320,"s":1}],[-24,{"n":5,"q":null,"m":32,"e":6353,"s":1}],[-20,{"n":5,"q":null,"m":8,"e":6393,"s":1}],[-19,{"n":5,"q":null,"m":67,"e":6402}],[-18,{"n":5,"q":null,"m":82,"e":6417}],[-17,{"n":7,"q":null,"m":90,"e":6424,"g":1}],[-16,{"n":5,"q":null,"m":15,"e":6428,"s":1}],[-15,{"n":5,"q":null,"m":10,"e":6444,"s":1}],[-14,{"n":5,"q":null,"m":12,"e":6454,"s":1}],[-11,{"n":4,"q":null,"m":63,"e":6482}],[-8,{"n":3.5,"q":null,"m":14,"e":6513,"s":1}],[2,{"n":4.5,"q":null,"m":90,"e":10573}],[1,{"n":5.5,"q":null,"m":77,"e":10931}]],"fo":[[6353,[{"t":"Y"}]]]}],[6836,{"n":"Biron","f":"Mickaël","fp":"A","r":19,"c":17,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":12,"Os":174,"On":33,"Oa":5.27,"Od":1.23,"Om":2598,"Oam":79,"Odm":18,"pm":14,"pa":19,"Omsn":6},"p":[[-37,{"n":5,"q":null,"m":84,"e":6224}],[-36,{"n":4.5,"q":null,"m":80,"e":6233}],[-35,{"n":4.5,"q":null,"m":31,"e":6240,"s":1}],[-34,{"n":5,"q":null,"m":76,"e":6254}],[-33,{"n":4,"q":null,"m":17,"e":6259,"s":1}],[-30,{"n":4,"q":null,"m":69,"e":6293}],[-29,{"n":6,"q":null,"m":81,"e":6306}],[-28,{"n":5,"q":null,"m":85,"e":6313}],[-27,{"n":9,"q":null,"m":79,"e":6320,"g":3}],[-26,{"n":5,"q":null,"m":76,"e":6332}],[-25,{"n":8,"q":null,"m":90,"e":6342,"g":2}],[-23,{"n":4,"q":null,"m":76,"e":6364}],[-22,{"n":6,"q":null,"m":90,"e":6372,"g":1}],[-21,{"n":6,"q":null,"m":90,"e":6384,"g":1}],[-18,{"n":7,"q":null,"m":64,"e":6417,"g":1}],[-17,{"n":4.5,"q":null,"m":83,"e":6424}],[-15,{"n":5,"q":null,"m":90,"e":6444}],[-14,{"n":4.5,"q":null,"m":90,"e":6454}],[-13,{"n":6,"q":null,"m":90,"e":6463,"g":1}],[-12,{"n":5,"q":null,"m":34,"e":6470,"s":1}],[-11,{"n":5,"q":null,"m":90,"e":6482}],[-10,{"n":4.5,"q":null,"m":86,"e":6489}],[-9,{"n":5,"q":null,"m":90,"e":6502}],[-8,{"n":4,"q":null,"m":90,"e":6513}],[-7,{"n":5,"q":null,"m":90,"e":6522}],[-6,{"n":5.5,"q":null,"m":76,"e":6535}],[-5,{"n":4.5,"q":null,"m":90,"e":6542}],[-4,{"n":7,"q":null,"m":80,"e":6554,"g":1}],[-3,{"n":5,"q":null,"m":86,"e":6563}],[-2,{"n":7.5,"q":null,"m":90,"e":6569,"g":2}],[2,{"n":4,"q":null,"m":90,"e":10573}],[-1,{"n":4,"q":null,"m":75,"e":6580}],[1,{"n":5,"q":null,"m":90,"e":10931}]],"fo":[[6224,[{"t":"Y"}]],[6313,[{"t":"Y"}]]]}],[6852,{"n":"Latouchent","f":"Rosario","fp":"DL","r":9,"c":17,"s":{"s":6,"n":2,"a":3,"d":0.71,"m":180,"am":90,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":90,"Sam":90,"Os":132.5,"On":29,"Oa":4.57,"Od":0.81,"Om":2000,"Oam":69,"Odm":28,"pd":25,"pm":4},"p":[[-38,{"n":4,"q":null,"m":56,"e":6211}],[-37,{"n":5,"q":null,"m":74,"e":6224}],[-36,{"n":5,"q":null,"m":7,"e":6233,"s":1}],[-31,{"n":3.5,"q":null,"m":56,"e":6286}],[-30,{"n":6,"q":null,"m":90,"e":6293}],[-29,{"n":5,"q":null,"m":81,"e":6306}],[-28,{"n":5.5,"q":null,"m":90,"e":6313}],[-26,{"n":5,"q":null,"m":90,"e":6332}],[-25,{"n":5.5,"q":null,"m":90,"e":6342}],[-24,{"n":5,"q":null,"m":90,"e":6353}],[-23,{"n":5,"q":null,"m":24,"e":6364,"s":1}],[-22,{"n":4.5,"q":null,"m":90,"e":6372}],[-21,{"n":4.5,"q":null,"m":90,"e":6384}],[-20,{"n":5,"q":null,"m":90,"e":6393}],[-18,{"n":3,"q":null,"m":55,"e":6417}],[-17,{"n":5,"q":null,"m":33,"e":6424,"s":1}],[-16,{"n":5,"q":null,"m":90,"e":6428}],[-14,{"n":4.5,"q":null,"m":69,"e":6454}],[-13,{"n":4,"q":null,"m":87,"e":6463}],[-12,{"n":4.5,"q":null,"m":90,"e":6470}],[-11,{"n":3,"q":null,"m":90,"e":6482}],[-9,{"n":4.5,"q":null,"m":90,"e":6502}],[-8,{"n":4.5,"q":null,"m":90,"e":6513}],[-7,{"n":5,"q":null,"m":45,"e":6522,"s":1}],[-6,{"n":5,"q":null,"m":32,"e":6535,"s":1}],[-5,{"n":5,"q":null,"m":5,"e":6542,"s":1}],[-3,{"n":5,"q":null,"m":26,"e":6563,"s":1}],[2,{"n":2.5,"q":null,"m":90,"e":10573}],[1,{"n":3.5,"q":null,"m":90,"e":10931}]],"fo":[[6293,[{"t":"Y"}]],[6342,[{"t":"Y"}]]]}],[7352,{"n":"Giagnorio","f":"Marco Claude","fp":"G","r":1,"c":17}],[7478,{"n":"Nonnenmacher","f":"Maxime","fp":"MD","r":1,"c":17}],[7829,{"n":"Cisse","f":"Lamine","fp":"A","r":1,"c":17,"s":{"s":9,"n":2,"a":4.5,"d":2.12,"m":179,"am":90,"dm":1,"Ss":6,"Sn":1,"Sa":6,"Sm":89,"Sam":89,"Os":9,"On":2,"Oa":4.5,"Od":2.12,"Om":179,"Oam":90,"Odm":1,"pa":2},"p":[[2,{"n":3,"q":null,"m":90,"e":10573}],[1,{"n":6,"q":null,"m":89,"e":10931}]]}],[7993,{"n":"El Aynaoui","f":"Neil","fp":"MO","r":6,"c":17,"s":{"s":3.5,"n":1,"a":3.5,"m":45,"am":45,"Os":3.5,"On":1,"Oa":3.5,"Om":45,"Oam":45,"pm":1},"p":[[2,{"n":3.5,"q":null,"m":45,"e":10573,"s":1}]]}],[8064,{"n":"Thiam","f":"Mamadou","fp":"A","r":12,"c":17,"s":{"g":1,"s":9.5,"n":2,"a":4.75,"d":2.47,"m":153,"am":77,"dm":8,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":82,"Sam":82,"Og":1,"Os":9.5,"On":2,"Oa":4.75,"Od":2.47,"Om":153,"Oam":77,"Odm":8,"pa":2,"Smsn":6.5,"Omsn":6.5},"p":[[2,{"n":3,"q":null,"m":71,"e":10573}],[1,{"n":6.5,"q":null,"m":82,"e":10931,"g":1}]]}],[8493,{"n":"Francke","f":"Axel","fp":"A","r":6,"c":17}],[8494,{"n":"Mehenni","f":"Farés","fp":"A","r":5,"c":17,"s":{},"p":[[1,{"n":null,"q":null,"m":0,"e":10931}]]}],[447,{"n":"Burner","f":"Patrick","fp":"DL","r":5,"c":67,"s":{"s":9,"n":2,"a":4.5,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":116,"On":25,"Oa":4.64,"Od":0.6,"Om":1493,"Oam":60,"Odm":38,"pd":25},"p":[[-1,{"n":5,"q":null,"m":1,"e":6205,"s":1}],[-38,{"n":4,"q":null,"m":90,"e":5834}],[-37,{"n":3.5,"q":null,"m":45,"e":5846}],[-36,{"n":5,"q":null,"m":14,"e":5851,"s":1}],[-35,{"n":5,"q":null,"m":3,"e":5866,"s":1}],[-31,{"n":5,"q":null,"m":31,"e":5905,"s":1}],[-30,{"n":5,"q":null,"m":1,"e":5910,"s":1}],[-29,{"n":5,"q":null,"m":3,"e":5924,"s":1}],[-28,{"n":4.5,"q":null,"m":80,"e":5935}],[-27,{"n":5,"q":null,"m":2,"e":5944,"s":1}],[-26,{"n":5,"q":null,"m":32,"e":5954,"s":1}],[-23,{"n":4,"q":null,"m":89,"e":5983}],[-21,{"n":5.5,"q":null,"m":90,"e":6003}],[-15,{"n":5,"q":null,"m":89,"e":6064}],[-13,{"n":4,"q":null,"m":90,"e":6085}],[-12,{"n":4.5,"q":null,"m":90,"e":6093}],[-11,{"n":5.5,"q":null,"m":90,"e":6106}],[-10,{"n":3,"q":null,"m":90,"e":6114}],[-9,{"n":5,"q":null,"m":90,"e":6124}],[-8,{"n":4.5,"q":null,"m":90,"e":6128}],[-7,{"n":4,"q":null,"m":90,"e":6144}],[-6,{"n":5,"q":null,"m":90,"e":6152}],[-5,{"n":5,"q":null,"m":23,"e":6165,"s":1}],[2,{"n":4.5,"q":null,"m":90,"e":10570}],[1,{"n":4.5,"q":null,"m":90,"e":10930}]]}],[460,{"n":"Martinez","f":"Pablo","fp":"DC","r":10,"c":67,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":43.5,"On":9,"Oa":4.83,"Od":1.35,"Om":722,"Oam":80,"Odm":18,"pd":9},"p":[[-12,{"n":3.5,"q":null,"m":80,"e":6093}],[-11,{"n":6,"q":null,"m":90,"e":6106}],[-9,{"n":4,"q":null,"m":67,"e":6124}],[-7,{"n":4,"q":null,"m":36,"e":6144,"s":1}],[-3,{"n":3,"q":null,"m":90,"e":6185}],[-2,{"n":5.5,"q":null,"m":89,"e":6194}],[2,{"n":6,"q":null,"m":90,"e":10570}],[-1,{"n":7,"q":null,"m":90,"e":6206}],[1,{"n":4.5,"q":null,"m":90,"e":10930}]]}],[2651,{"n":"Guessoum","f":"Kelyan","fp":"DC","r":1,"c":67,"s":{"s":5,"n":1,"a":5,"m":6,"am":6,"Os":78.5,"On":16,"Oa":4.91,"Od":0.71,"Om":1133,"Oam":71,"Odm":32,"pd":15,"pm":1},"p":[[-38,{"n":5.5,"q":null,"m":19,"e":5834,"s":1}],[-34,{"n":5,"q":null,"m":90,"e":5869}],[-33,{"n":5,"q":null,"m":90,"e":5886}],[-31,{"n":4,"q":null,"m":73,"e":5905}],[-30,{"n":6,"q":null,"m":90,"e":5910}],[-28,{"n":4,"q":null,"m":90,"e":5935}],[-27,{"n":5,"q":null,"m":90,"e":5944}],[-26,{"n":6,"q":null,"m":90,"e":5954}],[-25,{"n":5.5,"q":null,"m":45,"e":5960,"s":1}],[-21,{"n":5,"q":null,"m":90,"e":6003}],[-19,{"n":5,"q":null,"m":7,"e":6024,"s":1}],[-17,{"n":4,"q":null,"m":90,"e":6045}],[-16,{"n":5.5,"q":null,"m":90,"e":6055}],[-15,{"n":4,"q":null,"m":83,"e":6064,"s":1}],[-14,{"n":4,"q":null,"m":90,"e":6071}],[2,{"n":5,"q":null,"m":6,"e":10570,"s":1}]],"fo":[[5935,[{"t":"Y"}]],[6003,[{"t":"Y"}]]]}],[2653,{"n":"Sainte-Luce","f":"Théo","fp":"MD","r":7,"c":67,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"Om":180,"Oam":90,"pm":2},"p":[[2,{"n":5.5,"q":null,"m":90,"e":10570}],[1,{"n":5,"q":null,"m":90,"e":10930}]]}],[2695,{"n":"Benrahou","f":"Yassine","fp":"MO","r":6,"c":67,"s":{"g":1,"s":14,"n":2,"a":7,"d":1.41,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Og":1,"Os":126,"On":25,"Oa":5.04,"Od":0.84,"Om":1423,"Oam":57,"Odm":32,"pm":24,"pa":1,"Smsn":8,"Omsn":8},"p":[[-35,{"n":5,"q":null,"m":64,"e":5866}],[-33,{"n":5.5,"q":null,"m":83,"e":5886}],[-32,{"n":5,"q":null,"m":23,"e":5888,"s":1}],[-31,{"n":5,"q":null,"m":31,"e":5905,"s":1}],[-29,{"n":5,"q":null,"m":73,"e":5924}],[-28,{"n":5,"q":null,"m":70,"e":5935}],[-27,{"n":4,"q":null,"m":90,"e":5944}],[-26,{"n":5.5,"q":null,"m":77,"e":5954}],[-25,{"n":6.5,"q":null,"m":88,"e":5960}],[-24,{"n":5,"q":null,"m":86,"e":5975}],[-23,{"n":5,"q":null,"m":6,"e":5983,"s":1}],[-22,{"n":4.5,"q":null,"m":1,"e":5988,"s":1}],[-21,{"n":5,"q":null,"m":90,"e":6003}],[-20,{"n":5,"q":null,"m":6,"e":6013,"s":1}],[-18,{"n":5,"q":null,"m":20,"e":6037,"s":1}],[-14,{"n":4.5,"q":null,"m":45,"e":6071}],[-10,{"n":4,"q":null,"m":90,"e":6114}],[-9,{"n":4.5,"q":null,"m":45,"e":6124,"s":1}],[-8,{"n":5,"q":null,"m":7,"e":6128,"s":1}],[-5,{"n":5,"q":null,"m":67,"e":6165}],[-3,{"n":4.5,"q":null,"m":80,"e":6185}],[-2,{"n":4,"q":null,"m":45,"e":6194}],[2,{"n":8,"q":null,"m":90,"e":10570,"g":1}],[-1,{"n":4.5,"q":null,"m":56,"e":6206}],[1,{"n":6,"q":null,"m":90,"e":10930}]],"fo":[[10930,[{"t":"Y"}]]]}],[2709,{"n":"Briançon","f":"Anthony","fp":"DC","r":20,"c":67,"s":{"Os":76,"On":16,"Oa":4.75,"Od":0.97,"Om":1225,"Oam":77,"Odm":28,"pd":16},"p":[[-31,{"n":5,"q":null,"m":17,"e":5905,"s":1}],[-26,{"n":5.5,"q":null,"m":36,"e":5954}],[-25,{"n":6,"q":null,"m":90,"e":5960}],[-24,{"n":3.5,"q":null,"m":90,"e":5975}],[-23,{"n":4,"q":null,"m":90,"e":5983}],[-22,{"n":3.5,"q":null,"m":90,"e":5988}],[-20,{"n":5.5,"q":null,"m":90,"e":6013}],[-19,{"n":5,"q":null,"m":83,"e":6024}],[-18,{"n":3.5,"q":null,"m":90,"e":6037}],[-10,{"n":3,"q":null,"m":90,"e":6114}],[-9,{"n":5,"q":null,"m":90,"e":6124}],[-8,{"n":4.5,"q":null,"m":90,"e":6128}],[-6,{"n":5.5,"q":null,"m":90,"e":6152}],[-5,{"n":5.5,"q":null,"m":89,"e":6165}],[-4,{"n":6,"q":null,"m":90,"e":6170}],[-3,{"n":5,"q":null,"m":10,"e":6185,"s":1}]],"fo":[[5954,[{"t":"I"}]],[5905,[{"t":"Y"}]]]}],[2716,{"n":"Paquiez","f":"Gaëtan","fp":"DL","r":12,"c":67,"s":{"Os":72,"On":16,"Oa":4.5,"Od":0.95,"Om":1044,"Oam":65,"Odm":34,"pd":16},"p":[[-36,{"n":5,"q":null,"m":76,"e":5851}],[-35,{"n":4,"q":null,"m":87,"e":5866}],[-34,{"n":5,"q":null,"m":10,"e":5869,"s":1}],[-29,{"n":5,"q":null,"m":45,"e":5924,"s":1}],[-28,{"n":5,"q":null,"m":10,"e":5935,"s":1}],[-18,{"n":5,"q":null,"m":5,"e":6037,"s":1}],[-17,{"n":3,"q":null,"m":90,"e":6045}],[-16,{"n":4,"q":null,"m":90,"e":6055}],[-15,{"n":4.5,"q":null,"m":90,"e":6064}],[-13,{"n":4,"q":null,"m":89,"e":6085}],[-12,{"n":3,"q":null,"m":90,"e":6093}],[-11,{"n":6,"q":null,"m":90,"e":6106}],[-8,{"n":4.5,"q":null,"m":25,"e":6128,"s":1}],[-7,{"n":3,"q":null,"m":90,"e":6144}],[-5,{"n":5,"q":null,"m":67,"e":6165}],[-4,{"n":6,"q":null,"m":90,"e":6170}]],"fo":[[5866,[{"t":"Y"}]]]}],[2957,{"n":"Dias","f":"Lucas","fp":"G","r":1,"c":67}],[3784,{"n":"Stojanovski","f":"Vlatko","fp":"A","r":5,"c":67,"s":{"Os":49,"On":11,"Oa":4.45,"Od":0.52,"Om":547,"Oam":50,"Odm":31,"pa":11},"p":[[-35,{"n":4.5,"q":null,"m":18,"e":6240,"s":1}],[-29,{"n":3.5,"q":null,"m":81,"e":6305}],[-28,{"n":4.5,"q":null,"m":9,"e":6310,"s":1}],[-25,{"n":5,"q":null,"m":83,"e":6341}],[-23,{"n":4.5,"q":null,"m":32,"e":6360,"s":1}],[-19,{"n":4.5,"q":null,"m":6,"e":6407,"s":1}],[-9,{"n":4,"q":null,"m":90,"e":6499}],[-8,{"n":4.5,"q":null,"m":45,"e":6508,"s":1}],[-6,{"n":4,"q":null,"m":45,"e":6536}],[-5,{"n":5.5,"q":null,"m":75,"e":6540}],[-4,{"n":4.5,"q":null,"m":63,"e":6548,"s":1}]]}],[3797,{"n":"Ferhat","f":"Zinedine","fp":"MO","r":30,"c":67,"s":{"s":5,"n":1,"a":5,"m":5,"am":5,"Og":6,"Os":194,"On":34,"Oa":5.71,"Od":1.09,"Om":2964,"Oam":87,"Odm":15,"pm":26,"pa":8,"Omsn":6},"p":[[-37,{"n":3.5,"q":null,"m":86,"e":5846}],[-36,{"n":8,"q":null,"m":89,"e":5851,"g":1}],[-35,{"n":7,"q":null,"m":90,"e":5866}],[-34,{"n":6,"q":null,"m":90,"e":5869,"g":1}],[-33,{"n":6,"q":null,"m":90,"e":5886}],[-32,{"n":6,"q":null,"m":90,"e":5888}],[-31,{"n":4.5,"q":null,"m":90,"e":5905}],[-30,{"n":7,"q":null,"m":90,"e":5910}],[-29,{"n":6.5,"q":null,"m":90,"e":5924}],[-28,{"n":5.5,"q":null,"m":90,"e":5935}],[-27,{"n":6,"q":null,"m":90,"e":5944}],[-26,{"n":6.5,"q":null,"m":90,"e":5954}],[-25,{"n":5.5,"q":null,"m":90,"e":5960}],[-24,{"n":7,"q":null,"m":90,"e":5975,"g":1}],[-23,{"n":5,"q":null,"m":84,"e":5983}],[-22,{"n":4.5,"q":null,"m":90,"e":5988}],[-20,{"n":6,"q":null,"m":90,"e":6013}],[-19,{"n":5.5,"q":null,"m":90,"e":6024}],[-18,{"n":4,"q":null,"m":90,"e":6037}],[-17,{"n":5,"q":null,"m":90,"e":6045}],[-16,{"n":5,"q":null,"m":90,"e":6055}],[-15,{"n":4.5,"q":null,"m":90,"e":6064}],[-14,{"n":4,"q":null,"m":90,"e":6071}],[-13,{"n":5,"q":null,"m":90,"e":6085}],[-12,{"n":4,"q":null,"m":90,"e":6093}],[-11,{"n":6.5,"q":null,"m":90,"e":6106}],[-10,{"n":5.5,"q":null,"m":90,"e":6114}],[-6,{"n":6,"q":null,"m":90,"e":6152}],[-5,{"n":6.5,"q":null,"m":90,"e":6165,"g":1}],[-4,{"n":6,"q":null,"m":90,"e":6170}],[-3,{"n":6.5,"q":null,"m":90,"e":6185,"g":1}],[-2,{"n":7,"q":null,"m":90,"e":6194,"g":1}],[2,{"n":5,"q":null,"m":5,"e":10570,"s":1}],[-1,{"n":7.5,"q":null,"m":90,"e":6206}]],"fo":[[5846,[{"t":"I"}]],[5960,[{"t":"Y"}]],[5975,[{"t":"Y"}]]]}],[4900,{"n":"Ponceau","f":"Julien","fp":"MO","r":10,"c":67,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":175,"am":88,"dm":4,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":91.5,"On":18,"Oa":5.08,"Od":0.67,"Om":793,"Oam":44,"Odm":35,"pm":18},"p":[[-34,{"n":5,"q":null,"m":4,"e":6250,"s":1}],[-24,{"n":6.5,"q":null,"m":89,"e":6355}],[-18,{"n":4.5,"q":null,"m":11,"e":6413,"s":1}],[-38,{"n":4.5,"q":null,"m":24,"e":6212,"s":1}],[-37,{"n":4.5,"q":null,"m":84,"e":6224}],[-36,{"n":5.5,"q":null,"m":80,"e":6234}],[-35,{"n":5,"q":null,"m":1,"e":6243,"s":1}],[-33,{"n":4,"q":null,"m":59,"e":6263}],[-32,{"n":5.5,"q":null,"m":15,"e":6268,"s":1}],[-31,{"n":5.5,"q":null,"m":81,"e":6284}],[-30,{"n":5,"q":null,"m":21,"e":6291,"s":1}],[-29,{"n":5,"q":null,"m":20,"e":6303,"s":1}],[-27,{"n":6,"q":null,"m":76,"e":6318}],[-23,{"n":4.5,"q":null,"m":19,"e":6362,"s":1}],[-22,{"n":4.5,"q":null,"m":12,"e":6374,"s":1}],[-19,{"n":4.5,"q":null,"m":22,"e":6402,"s":1}],[2,{"n":6,"q":null,"m":85,"e":10570}],[1,{"n":5.5,"q":null,"m":90,"e":10930}]]}],[5031,{"n":"Fomba","f":"Lamine","fp":"MD","r":18,"c":67,"s":{"g":2,"s":13,"n":2,"a":6.5,"m":180,"am":90,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":90,"Sam":90,"Og":3,"Os":171.5,"On":34,"Oa":5.04,"Od":1.02,"Om":2354,"Oam":69,"Odm":29,"pm":34,"Smsn":6.5,"Omsn":6.5},"p":[[-37,{"n":3.5,"q":null,"m":75,"e":5846}],[-36,{"n":7.5,"q":null,"m":90,"e":5851,"g":1}],[-35,{"n":5,"q":null,"m":45,"e":5866,"s":1}],[-34,{"n":4,"q":null,"m":80,"e":5869}],[-33,{"n":4.5,"q":null,"m":90,"e":5886}],[-32,{"n":5.5,"q":null,"m":90,"e":5888}],[-30,{"n":6,"q":null,"m":90,"e":5910}],[-29,{"n":5.5,"q":null,"m":90,"e":5924}],[-28,{"n":4.5,"q":null,"m":90,"e":5935}],[-27,{"n":5.5,"q":null,"m":90,"e":5944}],[-26,{"n":7,"q":null,"m":90,"e":5954}],[-25,{"n":5,"q":null,"m":2,"e":5960,"s":1}],[-24,{"n":4.5,"q":null,"m":18,"e":5975,"s":1}],[-23,{"n":3.5,"q":null,"m":90,"e":5983}],[-22,{"n":4,"q":null,"m":61,"e":5988}],[-21,{"n":6.5,"q":null,"m":90,"e":6003}],[-20,{"n":5,"q":null,"m":90,"e":6013}],[-19,{"n":4.5,"q":null,"m":76,"e":6024}],[-18,{"n":4.5,"q":null,"m":25,"e":6037,"s":1}],[-16,{"n":4.5,"q":null,"m":21,"e":6055,"s":1}],[-14,{"n":3.5,"q":null,"m":90,"e":6071}],[-13,{"n":5,"q":null,"m":29,"e":6085,"s":1}],[-12,{"n":4.5,"q":null,"m":45,"e":6093}],[-11,{"n":5.5,"q":null,"m":90,"e":6106}],[-9,{"n":3.5,"q":null,"m":45,"e":6124}],[-8,{"n":5,"q":null,"m":83,"e":6128}],[-7,{"n":4,"q":null,"m":85,"e":6144}],[-6,{"n":6,"q":null,"m":90,"e":6152}],[-5,{"n":5.5,"q":null,"m":90,"e":6165}],[-4,{"n":5.5,"q":null,"m":90,"e":6170}],[-3,{"n":5,"q":null,"m":10,"e":6185,"s":1}],[2,{"n":6.5,"q":null,"m":90,"e":10570,"g":1}],[-1,{"n":5,"q":null,"m":34,"e":6206,"s":1}],[1,{"n":6.5,"q":null,"m":90,"e":10930,"g":1}]],"fo":[[5851,[{"t":"Y"}]],[5888,[{"t":"Y"}]],[5924,[{"t":"Y"}]],[5935,[{"t":"Y"}]]]}],[5051,{"n":"Sarr","f":"Sidy","fp":"MD","r":10,"c":67,"s":{"Os":43.5,"On":9,"Oa":4.83,"Od":0.43,"Om":463,"Oam":51,"Odm":36,"pm":9},"p":[[-35,{"n":4.5,"q":null,"m":45,"e":5866}],[-34,{"n":5,"q":null,"m":87,"e":5869}],[-17,{"n":4.5,"q":null,"m":90,"e":6045}],[-16,{"n":4,"q":null,"m":69,"e":6055}],[-15,{"n":5.5,"q":null,"m":90,"e":6064}],[-14,{"n":5,"q":null,"m":14,"e":6071,"s":1}],[-4,{"n":5,"q":null,"m":59,"e":6170}],[-2,{"n":5,"q":null,"m":1,"e":6194,"s":1}],[-1,{"n":5,"q":null,"m":8,"e":6206,"s":1}]]}],[6259,{"n":"Valério","f":"Antoine","fp":"MO","r":1,"c":67,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":79,"am":40,"dm":50,"Ss":5,"Sn":1,"Sa":5,"Sm":4,"Sam":4,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"Om":150,"Oam":50,"Odm":40,"pm":3},"p":[[-38,{"n":4.5,"q":null,"m":71,"e":5834}],[2,{"n":4.5,"q":null,"m":75,"e":10570}],[1,{"n":5,"q":null,"m":4,"e":10930,"s":1}]]}],[6438,{"n":"Nazih","f":"Amjhad","fp":"G","r":1,"c":67}],[6507,{"n":"Koné","f":"Moussa","fp":"A","r":18,"c":67,"s":{"Og":9,"Os":155,"On":33,"Oa":4.7,"Od":1.02,"Om":1762,"Oam":53,"Odm":29,"pa":33,"Omsn":6},"p":[[-38,{"n":4,"q":null,"m":63,"e":5834}],[-37,{"n":7,"q":null,"m":81,"e":5846,"g":2}],[-36,{"n":5,"q":null,"m":83,"e":5851}],[-35,{"n":6,"q":null,"m":86,"e":5866,"g":1}],[-34,{"n":4,"q":null,"m":87,"e":5869}],[-33,{"n":4,"q":null,"m":89,"e":5886}],[-32,{"n":6,"q":null,"m":67,"e":5888,"g":1}],[-31,{"n":5,"q":null,"m":83,"e":5905}],[-30,{"n":6,"q":null,"m":77,"e":5910,"g":1}],[-29,{"n":6,"q":null,"m":72,"e":5924,"g":1}],[-28,{"n":4.5,"q":null,"m":70,"e":5935}],[-27,{"n":6,"q":null,"m":20,"e":5944,"g":1,"s":1}],[-26,{"n":4,"q":null,"m":58,"e":5954}],[-25,{"n":5,"q":null,"m":74,"e":5960}],[-24,{"n":4,"q":null,"m":66,"e":5975}],[-23,{"n":4.5,"q":null,"m":13,"e":5983,"s":1}],[-22,{"n":3.5,"q":null,"m":73,"e":5988}],[-21,{"n":3.5,"q":null,"m":75,"e":6003}],[-20,{"n":5.5,"q":null,"m":89,"e":6013}],[-19,{"n":4.5,"q":null,"m":7,"e":6024,"s":1}],[-18,{"n":3,"q":null,"m":45,"e":6037}],[-16,{"n":4.5,"q":null,"m":16,"e":6055,"s":1}],[-15,{"n":4,"q":null,"m":7,"e":6064,"s":1}],[-14,{"n":3.5,"q":null,"m":66,"e":6071}],[-13,{"n":4,"q":null,"m":29,"e":6085,"s":1}],[-11,{"n":4,"q":null,"m":55,"e":6106}],[-10,{"n":6.5,"q":null,"m":23,"e":6114,"g":1,"s":1}],[-9,{"n":3.5,"q":null,"m":67,"e":6124}],[-8,{"n":5,"q":null,"m":2,"e":6128,"s":1}],[-7,{"n":4.5,"q":null,"m":6,"e":6144,"s":1}],[-3,{"n":4.5,"q":null,"m":34,"e":6185,"s":1}],[-2,{"n":4,"q":null,"m":45,"e":6194,"s":1}],[-1,{"n":6,"q":null,"m":34,"e":6206,"g":1,"s":1}]],"fo":[[5834,[{"t":"I"}]],[5866,[{"t":"Y"}]],[5869,[{"t":"Y"}]]]}],[6869,{"n":"Cubas","f":"Adrián","fp":"MO","r":12,"c":67,"s":{"s":11,"n":2,"a":5.5,"m":106,"am":53,"dm":44,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":22,"Sam":22,"Og":1,"Os":153,"On":29,"Oa":5.28,"Od":1.1,"Om":2357,"Oam":81,"Odm":16,"pm":29,"Omsn":7},"p":[[-38,{"n":5,"q":null,"m":90,"e":5834}],[-37,{"n":4,"q":null,"m":90,"e":5846}],[-36,{"n":6.5,"q":null,"m":84,"e":5851}],[-32,{"n":4,"q":null,"m":56,"e":5888}],[-31,{"n":4.5,"q":null,"m":90,"e":5905}],[-30,{"n":6,"q":null,"m":90,"e":5910}],[-29,{"n":5.5,"q":null,"m":90,"e":5924}],[-28,{"n":4.5,"q":null,"m":90,"e":5935}],[-27,{"n":5,"q":null,"m":70,"e":5944}],[-25,{"n":6.5,"q":null,"m":90,"e":5960}],[-24,{"n":4.5,"q":null,"m":72,"e":5975}],[-23,{"n":4.5,"q":null,"m":90,"e":5983}],[-22,{"n":4.5,"q":null,"m":89,"e":5988}],[-20,{"n":5,"q":null,"m":90,"e":6013}],[-19,{"n":5.5,"q":null,"m":90,"e":6024}],[-18,{"n":3.5,"q":null,"m":70,"e":6037}],[-13,{"n":4,"q":null,"m":77,"e":6085}],[-12,{"n":4.5,"q":null,"m":90,"e":6093}],[-11,{"n":7,"q":null,"m":90,"e":6106}],[-10,{"n":3.5,"q":null,"m":67,"e":6114}],[-7,{"n":6,"q":null,"m":54,"e":6144}],[-6,{"n":7,"q":null,"m":90,"e":6152}],[-5,{"n":6,"q":null,"m":90,"e":6165}],[-4,{"n":6.5,"q":null,"m":90,"e":6170}],[-3,{"n":7,"q":null,"m":90,"e":6185,"g":1}],[-2,{"n":4.5,"q":null,"m":90,"e":6194}],[2,{"n":5.5,"q":null,"m":84,"e":10570}],[-1,{"n":7,"q":null,"m":82,"e":6206}],[1,{"n":5.5,"q":null,"m":22,"e":10930,"s":1}]],"fo":[[5905,[{"t":"Y"}]]]}],[7330,{"n":"Majouga","f":"Marco","fp":"A","r":1,"c":67,"s":{"Os":31.5,"On":7,"Oa":4.5,"Od":0.41,"Om":98,"Oam":14,"Odm":8,"pa":7},"p":[[-23,{"n":5,"q":null,"m":13,"e":5983,"s":1}],[-22,{"n":4,"q":null,"m":17,"e":5988,"s":1}],[-16,{"n":5,"q":null,"m":16,"e":6055,"s":1}],[-15,{"n":4.5,"q":null,"m":1,"e":6064,"s":1}],[-9,{"n":4.5,"q":null,"m":23,"e":6124,"s":1}],[-7,{"n":4,"q":null,"m":5,"e":6144,"s":1}],[-5,{"n":4.5,"q":null,"m":23,"e":6165,"s":1}]]}],[7410,{"n":"Aribi","f":"Karim","fp":"A","r":2,"c":67,"s":{"Os":54.5,"On":13,"Oa":4.19,"Od":0.52,"Om":286,"Oam":22,"Odm":19,"pa":13},"p":[[-33,{"n":4.5,"q":null,"m":1,"e":5886,"s":1}],[-32,{"n":4,"q":null,"m":23,"e":5888,"s":1}],[-31,{"n":5,"q":null,"m":7,"e":5905,"s":1}],[-26,{"n":3.5,"q":null,"m":19,"e":5954,"s":1}],[-20,{"n":4.5,"q":null,"m":1,"e":6013,"s":1}],[-17,{"n":3.5,"q":null,"m":65,"e":6045}],[-16,{"n":4,"q":null,"m":38,"e":6055,"s":1}],[-14,{"n":4.5,"q":null,"m":6,"e":6071,"s":1}],[-11,{"n":4.5,"q":null,"m":10,"e":6106,"s":1}],[-10,{"n":3.5,"q":null,"m":45,"e":6114}],[-9,{"n":5,"q":null,"m":23,"e":6124,"s":1}],[-8,{"n":4,"q":null,"m":25,"e":6128,"s":1}],[-7,{"n":4,"q":null,"m":23,"e":6144,"s":1}]]}],[7415,{"n":"Eliasson","f":"Niclas","fp":"MD","r":15,"c":67,"s":{"s":6,"n":1,"a":6,"m":68,"am":68,"Ss":6,"Sn":1,"Sa":6,"Sm":68,"Sam":68,"Og":4,"Os":161.5,"On":31,"Oa":5.21,"Od":1.03,"Om":1872,"Oam":60,"Odm":28,"pm":27,"pa":4,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":77,"e":5834}],[-37,{"n":3.5,"q":null,"m":76,"e":5846}],[-36,{"n":7,"q":null,"m":89,"e":5851}],[-35,{"n":5.5,"q":null,"m":26,"e":5866,"s":1}],[-34,{"n":6,"q":null,"m":62,"e":5869,"s":1}],[-33,{"n":5,"q":null,"m":7,"e":5886,"s":1}],[-32,{"n":5.5,"q":null,"m":67,"e":5888}],[-31,{"n":4.5,"q":null,"m":59,"e":5905}],[-30,{"n":7,"q":null,"m":89,"e":5910}],[-29,{"n":5,"q":null,"m":17,"e":5924,"s":1}],[-28,{"n":5,"q":null,"m":20,"e":5935,"s":1}],[-27,{"n":4.5,"q":null,"m":64,"e":5944}],[-26,{"n":6,"q":null,"m":54,"e":5954,"s":1}],[-25,{"n":6,"q":null,"m":16,"e":5960,"g":1,"s":1}],[-24,{"n":6,"q":null,"m":18,"e":5975,"g":1,"s":1}],[-22,{"n":4,"q":null,"m":61,"e":5988}],[-21,{"n":6,"q":null,"m":90,"e":6003}],[-20,{"n":8,"q":null,"m":84,"e":6013,"g":2}],[-19,{"n":4.5,"q":null,"m":70,"e":6024}],[-18,{"n":5,"q":null,"m":45,"e":6037,"s":1}],[-17,{"n":5,"q":null,"m":1,"e":6045,"s":1}],[-16,{"n":5,"q":null,"m":74,"e":6055}],[-15,{"n":5,"q":null,"m":89,"e":6064}],[-14,{"n":4.5,"q":null,"m":84,"e":6071}],[-13,{"n":6,"q":null,"m":89,"e":6085}],[-12,{"n":5,"q":null,"m":45,"e":6093,"s":1}],[-10,{"n":3.5,"q":null,"m":66,"e":6114}],[-9,{"n":5,"q":null,"m":90,"e":6124}],[-8,{"n":4,"q":null,"m":90,"e":6128}],[-7,{"n":4,"q":null,"m":85,"e":6144}],[1,{"n":6,"q":null,"m":68,"e":10930}]],"fo":[[10930,[{"t":"I"}]]]}],[7617,{"n":"Ueda","f":"Naomichi","fp":"DC","r":7,"c":67,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":51.5,"On":11,"Oa":4.68,"Od":0.93,"Om":891,"Oam":81,"Odm":24,"pd":11},"p":[[-38,{"n":3.5,"q":null,"m":71,"e":5834}],[-37,{"n":3,"q":null,"m":90,"e":5846}],[-36,{"n":5.5,"q":null,"m":90,"e":5851}],[-35,{"n":4,"q":null,"m":90,"e":5866}],[-32,{"n":5.5,"q":null,"m":90,"e":5888}],[-31,{"n":4,"q":null,"m":90,"e":5905}],[-30,{"n":5.5,"q":null,"m":90,"e":5910}],[-29,{"n":5.5,"q":null,"m":90,"e":5924}],[-28,{"n":5,"q":null,"m":10,"e":5935,"s":1}],[2,{"n":5.5,"q":null,"m":90,"e":10570}],[1,{"n":4.5,"q":null,"m":90,"e":10930}]]}],[7713,{"n":"Doucouré","f":"Mahamadou","fp":"A","r":1,"c":67,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":111,"am":56,"dm":43,"Ss":5,"Sn":1,"Sa":5,"Sm":86,"Sam":86,"Os":23,"On":5,"Oa":4.6,"Od":0.22,"Om":154,"Oam":31,"Odm":32,"pa":5},"p":[[-38,{"n":4.5,"q":null,"m":27,"e":5834,"s":1}],[-37,{"n":4.5,"q":null,"m":9,"e":5846,"s":1}],[-36,{"n":4.5,"q":null,"m":7,"e":5851,"s":1}],[2,{"n":4.5,"q":null,"m":25,"e":10570,"s":1}],[1,{"n":5,"q":null,"m":86,"e":10930}]],"fo":[[10930,[{"t":"I"}]]]}],[8076,{"n":"Bråtveit","f":"Per Kristian","fp":"G","r":10,"c":67,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"Om":180,"Oam":90,"pg":2},"p":[[2,{"n":5.5,"q":null,"m":90,"e":10570}],[1,{"n":5,"q":null,"m":90,"e":10930}]]}],[8502,{"n":"Zaidan","f":"Pierre","fp":"DL","r":1,"c":67}],[8503,{"n":"Delpech","f":"Leon","fp":"MD","r":2,"c":67,"s":{"s":4.5,"n":1,"a":4.5,"m":15,"am":8,"dm":11,"Os":4.5,"On":1,"Oa":4.5,"Om":15,"Oam":8,"Odm":11,"pm":1},"p":[[2,{"n":4.5,"q":null,"m":15,"e":10570,"s":1}],[1,{"n":null,"q":null,"m":0,"e":10930}]],"fo":[[10930,[{"t":"Y"}]]]}],[8747,{"n":"Ómarsson","f":"Elías Már","fp":"A","r":9,"c":67,"s":{"s":4,"n":1,"a":4,"m":65,"am":65,"Os":4,"On":1,"Oa":4,"Om":65,"Oam":65,"pa":1},"p":[[2,{"n":4,"q":null,"m":65,"e":10570}]]}],[107,{"n":"Michel","f":"Mathieu","fp":"G","r":3,"c":98,"s":{"Os":122,"On":23,"Oa":5.3,"Od":1.2,"Om":2070,"Oam":86,"Odm":18,"pg":23},"p":[[-13,{"n":6,"q":null,"m":90,"e":6464}],[-12,{"n":5,"q":null,"m":90,"e":6473}],[-30,{"n":6.5,"q":null,"m":90,"e":6294}],[-29,{"n":4,"q":null,"m":90,"e":6301}],[-28,{"n":3.5,"q":null,"m":90,"e":6314}],[-27,{"n":5.5,"q":null,"m":90,"e":6323}],[-26,{"n":5.5,"q":null,"m":90,"e":6333}],[-25,{"n":5,"q":null,"m":90,"e":6339}],[-24,{"n":6,"q":null,"m":90,"e":6354}],[-23,{"n":7,"q":null,"m":90,"e":6365}],[-22,{"n":6,"q":null,"m":90,"e":6373}],[-21,{"n":4.5,"q":null,"m":90,"e":6384}],[-20,{"n":4.5,"q":null,"m":90,"e":6391}],[-19,{"n":5,"q":null,"m":90,"e":6403}],[-18,{"n":5.5,"q":null,"m":90,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":7,"q":null,"m":90,"e":6436}],[-15,{"n":5.5,"q":null,"m":90,"e":6443}],[-14,{"n":2,"q":null,"m":90,"e":6448}],[-11,{"n":4,"q":null,"m":90,"e":6483}],[-10,{"n":5,"q":null,"m":90,"e":6495}],[-9,{"n":6,"q":null,"m":90,"e":6503}],[-8,{"n":7,"q":null,"m":90,"e":6514}],[-7,{"n":6,"q":null,"m":90,"e":6523}]],"fo":[[6314,[{"t":"Y"}]]]}],[446,{"n":"Passi","f":"Bryan","fp":"DC","r":10,"c":98,"s":{"Og":1,"Os":139.5,"On":28,"Oa":4.98,"Od":1.03,"Om":2369,"Oam":82,"Odm":22,"pd":28,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":74,"e":6213}],[-37,{"n":5.5,"q":null,"m":90,"e":6219}],[-36,{"n":6,"q":null,"m":90,"e":6234}],[-35,{"n":5.5,"q":null,"m":90,"e":6247}],[-34,{"n":4,"q":null,"m":93,"e":6255}],[-33,{"n":3.5,"q":null,"m":90,"e":6258}],[-32,{"n":2,"q":null,"m":78,"e":6273}],[-31,{"n":6,"q":null,"m":90,"e":6281}],[-30,{"n":6.5,"q":null,"m":90,"e":6294}],[-29,{"n":4,"q":null,"m":90,"e":6301}],[-28,{"n":4.5,"q":null,"m":90,"e":6314}],[-27,{"n":5.5,"q":null,"m":90,"e":6323}],[-26,{"n":6,"q":null,"m":90,"e":6333}],[-25,{"n":4.5,"q":null,"m":90,"e":6339}],[-24,{"n":5,"q":null,"m":90,"e":6354}],[-23,{"n":5,"q":null,"m":19,"e":6365,"s":1}],[-22,{"n":5,"q":null,"m":90,"e":6373}],[-21,{"n":4.5,"q":null,"m":90,"e":6384}],[-20,{"n":6,"q":null,"m":90,"e":6391,"g":1}],[-19,{"n":3.5,"q":null,"m":90,"e":6403}],[-18,{"n":6,"q":null,"m":90,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-15,{"n":5.5,"q":null,"m":90,"e":6443}],[-14,{"n":3.5,"q":null,"m":45,"e":6448}],[-13,{"n":5.5,"q":null,"m":90,"e":6464}],[-12,{"n":4.5,"q":null,"m":90,"e":6473}],[-3,{"n":5.5,"q":null,"m":80,"e":6563}],[-2,{"n":6,"q":null,"m":90,"e":6574}],[-1,{"n":5.5,"q":null,"m":90,"e":6584}]],"fo":[[6213,[{"t":"I"}]]]}],[529,{"n":"Ibrahima Sory Conté I","f":"","fp":"DC","r":9,"c":98,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Oao":1,"Os":94.5,"On":21,"Oa":4.5,"Od":0.99,"Om":1645,"Oam":75,"Odm":28,"pd":21},"p":[[1,{"n":5.5,"q":null,"m":90,"e":10932}],[-38,{"n":4,"q":null,"m":45,"e":6213}],[-35,{"n":5,"q":null,"m":90,"e":6247}],[-33,{"n":3,"q":null,"m":85,"e":6258}],[-32,{"n":3,"q":null,"m":90,"e":6273}],[-31,{"n":5.5,"q":null,"m":90,"e":6281}],[-29,{"n":4,"q":null,"m":78,"e":6301}],[-28,{"n":4,"q":null,"m":90,"e":6314}],[-27,{"n":5.5,"q":null,"m":90,"e":6323}],[-25,{"n":4.5,"q":null,"m":90,"e":6339}],[-24,{"n":4.5,"q":null,"m":90,"e":6354}],[-23,{"n":3,"q":null,"m":90,"e":6365}],[-22,{"n":6,"q":null,"m":90,"e":6373}],[-21,{"n":4,"q":null,"m":90,"e":6384,"a":1}],[-20,{"n":4,"q":null,"m":27,"e":6391}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5,"q":null,"m":90,"e":6436}],[-14,{"n":3,"q":null,"m":45,"e":6448,"s":1}],[-11,{"n":5,"q":null,"m":15,"e":6483,"s":1}],[-10,{"n":5.5,"q":null,"m":90,"e":6495}],[-9,{"n":6,"q":null,"m":90,"e":6503}],[2,{"n":4.5,"q":null,"m":90,"e":10574}]],"fo":[[6301,[{"t":"R"}]],[6354,[{"t":"Y"}]]]}],[582,{"n":"Braat","f":"Quentin","fp":"G","r":14,"c":98,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":51,"On":10,"Oa":5.1,"Od":1.15,"Om":903,"Oam":82,"Odm":27,"pg":10},"p":[[-38,{"n":4,"q":null,"m":90,"e":6213}],[-37,{"n":6,"q":null,"m":90,"e":6219}],[-36,{"n":6.5,"q":null,"m":90,"e":6234}],[-35,{"n":5,"q":null,"m":90,"e":6247}],[-34,{"n":5,"q":null,"m":93,"e":6255}],[-33,{"n":3.5,"q":null,"m":90,"e":6258}],[-32,{"n":3.5,"q":null,"m":90,"e":6273}],[-31,{"n":6.5,"q":null,"m":90,"e":6281}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[2,{"n":5,"q":null,"m":90,"e":10574}],[1,{"n":6,"q":null,"m":90,"e":10932}]]}],[3520,{"n":"Boutobba","f":"Bilal","fp":"MO","r":11,"c":98,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":169,"am":85,"dm":4,"Ss":6,"Sn":1,"Sa":6,"Sm":87,"Sam":87,"Og":3,"Os":194.5,"On":37,"Oa":5.26,"Od":1.02,"Om":2494,"Oam":66,"Odm":28,"pm":25,"pa":12,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":45,"e":6213,"s":1}],[-37,{"n":4.5,"q":null,"m":25,"e":6219,"s":1}],[-36,{"n":4.5,"q":null,"m":30,"e":6234,"s":1}],[-35,{"n":4.5,"q":null,"m":21,"e":6247,"s":1}],[-34,{"n":5.5,"q":null,"m":41,"e":6255,"s":1}],[-33,{"n":3,"q":null,"m":45,"e":6258}],[-32,{"n":4.5,"q":null,"m":90,"e":6273}],[-31,{"n":5.5,"q":null,"m":82,"e":6281}],[-30,{"n":5,"q":null,"m":83,"e":6294}],[-29,{"n":4,"q":null,"m":90,"e":6301}],[-28,{"n":5,"q":null,"m":90,"e":6314}],[-27,{"n":5,"q":null,"m":81,"e":6323}],[-26,{"n":6.5,"q":null,"m":89,"e":6333}],[-25,{"n":5.5,"q":null,"m":90,"e":6339}],[-24,{"n":7.5,"q":null,"m":90,"e":6354,"g":1}],[-23,{"n":6,"q":null,"m":58,"e":6365,"g":1,"s":1}],[-22,{"n":6,"q":null,"m":86,"e":6373}],[-21,{"n":6.5,"q":null,"m":74,"e":6384}],[-20,{"n":5,"q":null,"m":69,"e":6391}],[-19,{"n":4.5,"q":null,"m":90,"e":6403}],[-18,{"n":6,"q":null,"m":80,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":14,"e":6436,"s":1}],[-15,{"n":5.5,"q":null,"m":80,"e":6443}],[-14,{"n":3,"q":null,"m":82,"e":6448}],[-13,{"n":5.5,"q":null,"m":89,"e":6464}],[-12,{"n":4.5,"q":null,"m":8,"e":6473,"s":1}],[-11,{"n":5,"q":null,"m":90,"e":6483}],[-10,{"n":7.5,"q":null,"m":90,"e":6495,"g":1}],[-9,{"n":6,"q":null,"m":68,"e":6503}],[-8,{"n":6,"q":null,"m":72,"e":6514}],[-7,{"n":7,"q":null,"m":75,"e":6523}],[-6,{"n":4.5,"q":null,"m":90,"e":6530}],[-5,{"n":5,"q":null,"m":64,"e":6543}],[-4,{"n":5,"q":null,"m":37,"e":6553,"s":1}],[-3,{"n":4.5,"q":null,"m":17,"e":6563,"s":1}],[2,{"n":5.5,"q":null,"m":82,"e":10574}],[1,{"n":6,"q":null,"m":87,"e":10932}]],"fo":[[10932,[{"t":"Y"}]]]}],[4895,{"n":"Kilama","f":"Guy-Marcelin","fp":"DC","r":10,"c":98,"s":{"s":5.5,"n":1,"a":5.5,"m":90,"am":90,"Os":148,"On":32,"Oa":4.63,"Od":0.99,"Om":2558,"Oam":78,"Odm":28,"pd":32},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6213}],[-37,{"n":5.5,"q":null,"m":90,"e":6219}],[-36,{"n":4,"q":null,"m":90,"e":6234}],[-35,{"n":5.5,"q":null,"m":90,"e":6247}],[-34,{"n":4.5,"q":null,"m":93,"e":6255}],[-33,{"n":4,"q":null,"m":90,"e":6258}],[-32,{"n":5,"q":null,"m":12,"e":6273,"s":1}],[-30,{"n":5.5,"q":null,"m":90,"e":6294}],[-29,{"n":5,"q":null,"m":8,"e":6301,"s":1}],[-28,{"n":4,"q":null,"m":45,"e":6314}],[-26,{"n":5.5,"q":null,"m":90,"e":6333}],[-23,{"n":3,"q":null,"m":80,"e":6365}],[-22,{"n":5.5,"q":null,"m":85,"e":6373}],[-21,{"n":4.5,"q":null,"m":90,"e":6384}],[-20,{"n":5,"q":null,"m":90,"e":6391}],[-19,{"n":3.5,"q":null,"m":73,"e":6403}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-15,{"n":5.5,"q":null,"m":90,"e":6443}],[-14,{"n":2,"q":null,"m":90,"e":6448}],[-13,{"n":5,"q":null,"m":90,"e":6464}],[-12,{"n":4,"q":null,"m":88,"e":6473}],[-11,{"n":4,"q":null,"m":90,"e":6483}],[-10,{"n":3.5,"q":null,"m":90,"e":6495}],[-9,{"n":3.5,"q":null,"m":11,"e":6503}],[-8,{"n":3.5,"q":null,"m":90,"e":6514}],[-7,{"n":6,"q":null,"m":90,"e":6523}],[-6,{"n":4,"q":null,"m":90,"e":6530}],[-5,{"n":4,"q":null,"m":90,"e":6543}],[-4,{"n":5.5,"q":null,"m":90,"e":6553}],[-3,{"n":6,"q":null,"m":90,"e":6563}],[-2,{"n":6,"q":null,"m":83,"e":6574}],[2,{"n":5.5,"q":null,"m":90,"e":10574}],[-1,{"n":5.5,"q":null,"m":90,"e":6584}]],"fo":[[6255,[{"t":"Y"}]],[6294,[{"t":"Y"}]]]}],[4911,{"n":"Sissoko","f":"Ibrahim","fp":"A","r":1,"c":98,"s":{},"p":[[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}]]}],[4977,{"n":"Merdji","f":"Yanis","fp":"A","r":7,"c":98,"s":{"s":9,"n":2,"a":4.5,"m":46,"am":23,"dm":16,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":12,"Sam":12,"Og":2,"Os":90,"On":20,"Oa":4.5,"Od":0.58,"Om":693,"Oam":35,"Odm":32,"pa":20,"Omsn":5.5},"p":[[-35,{"n":5,"q":null,"m":40,"e":6241,"s":1}],[-17,{"n":4.5,"q":null,"m":81,"e":6422}],[-16,{"n":4.5,"q":null,"m":23,"e":6432,"s":1}],[-15,{"n":4,"q":null,"m":78,"e":6440}],[-34,{"n":4,"q":null,"m":5,"e":6250,"s":1}],[-32,{"n":4.5,"q":null,"m":3,"e":6269,"s":1}],[-28,{"n":4.5,"q":null,"m":3,"e":6316,"s":1}],[-27,{"n":3,"q":null,"m":65,"e":6320}],[-26,{"n":4.5,"q":null,"m":3,"e":6334,"s":1}],[-25,{"n":4.5,"q":null,"m":7,"e":6340,"s":1}],[-23,{"n":6,"q":null,"m":6,"e":6360,"g":1,"s":1}],[-22,{"n":4.5,"q":null,"m":27,"e":6369,"s":1}],[-20,{"n":5.5,"q":null,"m":78,"e":6390,"g":1}],[-19,{"n":4.5,"q":null,"m":26,"e":6398,"s":1}],[-18,{"n":4.5,"q":null,"m":3,"e":6416,"s":1}],[-14,{"n":4,"q":null,"m":90,"e":6452}],[-13,{"n":4.5,"q":null,"m":81,"e":6460}],[-12,{"n":4.5,"q":null,"m":28,"e":6469,"s":1}],[2,{"n":4.5,"q":null,"m":34,"e":10574,"s":1}],[1,{"n":4.5,"q":null,"m":12,"e":10932,"s":1}]],"fo":[[6241,[{"t":"I"}]],[6250,[{"t":"Y"}]]]}],[4991,{"n":"Bena","f":"Quentin","fp":"MD","r":1,"c":98,"s":{"Os":23.5,"On":5,"Oa":4.7,"Od":0.45,"Om":112,"Oam":19,"Odm":35,"pd":1,"pm":4},"p":[[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-10,{"n":5,"q":null,"m":5,"e":6495,"s":1}],[-8,{"n":5,"q":null,"m":6,"e":6514,"s":1}],[-6,{"n":4,"q":null,"m":90,"e":6530}],[-4,{"n":4.5,"q":null,"m":1,"e":6553,"s":1}],[-3,{"n":5,"q":null,"m":10,"e":6563,"s":1}]]}],[4994,{"n":"Paro","f":"Issouf","fp":"DC","r":3,"c":98,"s":{"Os":86.5,"On":17,"Oa":5.09,"Od":0.92,"Om":1285,"Oam":71,"Odm":33,"pd":17},"p":[[-20,{"n":5,"q":null,"m":6,"e":6391,"s":1}],[-19,{"n":4,"q":null,"m":90,"e":6403}],[-18,{"n":6,"q":null,"m":90,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6436}],[-15,{"n":6,"q":null,"m":90,"e":6443}],[-14,{"n":3.5,"q":null,"m":45,"e":6448}],[-13,{"n":6,"q":null,"m":90,"e":6464}],[-12,{"n":4,"q":null,"m":90,"e":6473}],[-11,{"n":5,"q":null,"m":90,"e":6483}],[-9,{"n":6,"q":null,"m":90,"e":6503}],[-8,{"n":4,"q":null,"m":20,"e":6514}],[-7,{"n":6,"q":null,"m":90,"e":6523}],[-5,{"n":5,"q":null,"m":44,"e":6543}],[-4,{"n":6,"q":null,"m":90,"e":6553}],[-3,{"n":5.5,"q":null,"m":90,"e":6563}],[-2,{"n":4,"q":null,"m":90,"e":6574}],[-1,{"n":6,"q":null,"m":90,"e":6584}]]}],[5073,{"n":"Louiserre","f":"Dylan","fp":"MD","r":11,"c":98,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Og":2,"Os":186,"On":36,"Oa":5.17,"Od":0.97,"Om":3073,"Oam":83,"Odm":19,"pm":36,"Omsn":7.5},"p":[[-38,{"n":5,"q":null,"m":81,"e":6213}],[-37,{"n":5.5,"q":null,"m":90,"e":6219}],[-36,{"n":5.5,"q":null,"m":90,"e":6234}],[-35,{"n":5.5,"q":null,"m":90,"e":6247}],[-34,{"n":4,"q":null,"m":93,"e":6255}],[-33,{"n":4,"q":null,"m":85,"e":6258}],[-32,{"n":3,"q":null,"m":78,"e":6273}],[-31,{"n":5.5,"q":null,"m":90,"e":6281}],[-30,{"n":7,"q":null,"m":90,"e":6294}],[-29,{"n":5,"q":null,"m":90,"e":6301}],[-28,{"n":4.5,"q":null,"m":90,"e":6314}],[-27,{"n":5,"q":null,"m":90,"e":6323}],[-26,{"n":5.5,"q":null,"m":90,"e":6333}],[-22,{"n":5,"q":null,"m":45,"e":6373}],[-21,{"n":5,"q":null,"m":90,"e":6384}],[-20,{"n":4.5,"q":null,"m":90,"e":6391}],[-19,{"n":4.5,"q":null,"m":90,"e":6403}],[-18,{"n":5.5,"q":null,"m":90,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5,"q":null,"m":35,"e":6436,"s":1}],[-15,{"n":5.5,"q":null,"m":90,"e":6443}],[-14,{"n":2.5,"q":null,"m":90,"e":6448}],[-13,{"n":6,"q":null,"m":90,"e":6464}],[-12,{"n":5,"q":null,"m":64,"e":6473}],[-11,{"n":5.5,"q":null,"m":90,"e":6483}],[-10,{"n":7.5,"q":null,"m":90,"e":6495,"g":2}],[-9,{"n":6,"q":null,"m":90,"e":6503}],[-8,{"n":4,"q":null,"m":84,"e":6514}],[-7,{"n":6,"q":null,"m":90,"e":6523}],[-6,{"n":4.5,"q":null,"m":90,"e":6530}],[-5,{"n":6,"q":null,"m":90,"e":6543}],[-4,{"n":6,"q":null,"m":90,"e":6553}],[-3,{"n":6,"q":null,"m":90,"e":6563}],[-2,{"n":5,"q":null,"m":90,"e":6574}],[2,{"n":4.5,"q":null,"m":90,"e":10574}],[-1,{"n":5.5,"q":null,"m":78,"e":6584}],[1,{"n":6,"q":null,"m":90,"e":10932}]],"fo":[[6213,[{"t":"R"}]],[6281,[{"t":"Y"}]],[6333,[{"t":"Y"}]],[10932,[{"t":"Y"}]]]}],[5175,{"n":"Joseph Mendes","f":"","fp":"A","r":8,"c":98,"s":{"Og":1,"Os":99,"On":23,"Oa":4.3,"Od":0.54,"Om":645,"Oam":27,"Odm":31,"pm":1,"pa":22,"Omsn":6},"p":[[-36,{"n":4,"q":null,"m":8,"e":6234,"s":1}],[-34,{"n":4,"q":null,"m":19,"e":6255,"s":1}],[-33,{"n":4,"q":null,"m":45,"e":6258,"s":1}],[-32,{"n":4.5,"q":null,"m":12,"e":6273,"s":1}],[-31,{"n":4,"q":null,"m":1,"e":6281,"s":1}],[-29,{"n":4.5,"q":null,"m":15,"e":6301,"s":1}],[-28,{"n":6,"q":null,"m":63,"e":6314,"g":1}],[-27,{"n":4.5,"q":null,"m":1,"e":6323,"s":1}],[-26,{"n":4.5,"q":null,"m":1,"e":6333,"s":1}],[-25,{"n":4.5,"q":null,"m":10,"e":6339,"s":1}],[-24,{"n":4.5,"q":null,"m":2,"e":6354,"s":1}],[-23,{"n":4.5,"q":null,"m":1,"e":6365,"s":1}],[-22,{"n":4.5,"q":null,"m":31,"e":6373,"s":1}],[-21,{"n":4.5,"q":null,"m":7,"e":6384,"s":1}],[-19,{"n":4.5,"q":null,"m":17,"e":6403,"s":1}],[-18,{"n":5,"q":null,"m":90,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4,"q":null,"m":90,"e":6436}],[-14,{"n":3,"q":null,"m":71,"e":6448}],[-13,{"n":4,"q":null,"m":19,"e":6464,"s":1}],[-12,{"n":4,"q":null,"m":90,"e":6473}],[-11,{"n":4,"q":null,"m":32,"e":6483,"s":1}],[-10,{"n":4,"q":null,"m":11,"e":6495,"s":1}],[-9,{"n":4,"q":null,"m":9,"e":6503,"s":1}]],"fo":[[6234,[{"t":"I"}]],[6255,[{"t":"Y"}]]]}],[5977,{"n":"Doukansy","f":"Brahima","fp":"MD","r":9,"c":98,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":69,"am":35,"dm":45,"Ss":5,"Sn":1,"Sa":5,"Sm":3,"Sam":3,"Og":1,"Os":143,"On":30,"Oa":4.77,"Od":0.61,"Om":1633,"Oam":53,"Odm":33,"pm":30,"Omsn":5.5},"p":[[-38,{"n":4,"q":null,"m":45,"e":6213}],[-37,{"n":5,"q":null,"m":1,"e":6219,"s":1}],[-35,{"n":4.5,"q":null,"m":69,"e":6247}],[-34,{"n":5,"q":null,"m":13,"e":6255,"s":1}],[-33,{"n":4.5,"q":null,"m":70,"e":6258}],[-32,{"n":5,"q":null,"m":12,"e":6273,"s":1}],[-30,{"n":5,"q":null,"m":1,"e":6294,"s":1}],[-29,{"n":4,"q":null,"m":58,"e":6301}],[-28,{"n":4.5,"q":null,"m":40,"e":6314,"s":1}],[-27,{"n":4,"q":null,"m":57,"e":6323}],[-26,{"n":5,"q":null,"m":76,"e":6333}],[-25,{"n":5,"q":null,"m":80,"e":6339}],[-24,{"n":6.5,"q":null,"m":90,"e":6354}],[-23,{"n":4.5,"q":null,"m":90,"e":6365}],[-22,{"n":4.5,"q":null,"m":90,"e":6373}],[-21,{"n":3.5,"q":null,"m":45,"e":6384}],[-18,{"n":5,"q":null,"m":10,"e":6413,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5.5,"q":null,"m":88,"e":6436}],[-15,{"n":5,"q":null,"m":10,"e":6443,"s":1}],[-14,{"n":4,"q":null,"m":90,"e":6448}],[-12,{"n":5,"q":null,"m":82,"e":6473}],[-11,{"n":4.5,"q":null,"m":75,"e":6483}],[-10,{"n":5.5,"q":null,"m":90,"e":6495}],[-9,{"n":4.5,"q":null,"m":9,"e":6503,"s":1}],[-8,{"n":5.5,"q":null,"m":90,"e":6514,"g":1}],[-7,{"n":5.5,"q":null,"m":65,"e":6523}],[-2,{"n":4,"q":null,"m":54,"e":6574}],[2,{"n":4.5,"q":null,"m":66,"e":10574}],[-1,{"n":5,"q":null,"m":64,"e":6584}],[1,{"n":5,"q":null,"m":3,"e":10932,"s":1}]],"fo":[[6258,[{"t":"Y"}]],[6301,[{"t":"Y"}]],[6323,[{"t":"Y"}]]]}],[6273,{"n":"Yongwa Ngameni","f":"Darline Zidane","fp":"DL","r":9,"c":98,"s":{"s":9.5,"n":2,"a":4.75,"d":2.47,"m":154,"am":77,"dm":18,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":90,"Sam":90,"Os":136.5,"On":29,"Oa":4.71,"Od":1.03,"Om":2394,"Oam":80,"Odm":21,"pd":28,"pm":1},"p":[[-38,{"n":4,"q":null,"m":45,"e":6213,"s":1}],[-36,{"n":4.5,"q":null,"m":90,"e":6234}],[-32,{"n":3.5,"q":null,"m":90,"e":6273}],[-30,{"n":5.5,"q":null,"m":90,"e":6294}],[-28,{"n":2.5,"q":null,"m":58,"e":6314}],[-25,{"n":4.5,"q":null,"m":90,"e":6339}],[-24,{"n":5,"q":null,"m":90,"e":6354}],[-23,{"n":4.5,"q":null,"m":45,"e":6365,"s":1}],[-22,{"n":5.5,"q":null,"m":90,"e":6373}],[-21,{"n":4,"q":null,"m":90,"e":6384}],[-20,{"n":4.5,"q":null,"m":90,"e":6391}],[-18,{"n":4.5,"q":null,"m":86,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":76,"e":6436}],[-15,{"n":6,"q":null,"m":90,"e":6443}],[-14,{"n":3,"q":null,"m":90,"e":6448}],[-13,{"n":5,"q":null,"m":90,"e":6464}],[-12,{"n":4.5,"q":null,"m":90,"e":6473}],[-11,{"n":4,"q":null,"m":90,"e":6483}],[-10,{"n":6,"q":null,"m":85,"e":6495}],[-9,{"n":5,"q":null,"m":90,"e":6503}],[-8,{"n":4.5,"q":null,"m":45,"e":6514}],[-7,{"n":5.5,"q":null,"m":90,"e":6523}],[-6,{"n":4,"q":null,"m":90,"e":6530}],[-4,{"n":6.5,"q":null,"m":90,"e":6553}],[-3,{"n":4.5,"q":null,"m":90,"e":6563}],[-2,{"n":6.5,"q":null,"m":90,"e":6574}],[2,{"n":3,"q":null,"m":64,"e":10574}],[-1,{"n":5,"q":null,"m":90,"e":6584}],[1,{"n":6.5,"q":null,"m":90,"e":10932}]],"fo":[[6314,[{"t":"R"}]],[6339,[{"t":"Y"}]]]}],[6414,{"n":"Renel","f":"Samuel","fp":"MO","r":1,"c":98,"s":{"s":5,"n":1,"a":5,"m":8,"am":8,"Os":18.5,"On":4,"Oa":4.63,"Od":0.75,"Om":144,"Oam":29,"Odm":30,"pm":4},"p":[[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-8,{"n":5,"q":null,"m":45,"e":6514,"s":1}],[-6,{"n":3.5,"q":null,"m":72,"e":6530}],[-2,{"n":5,"q":null,"m":19,"e":6574,"s":1}],[2,{"n":5,"q":null,"m":8,"e":10574,"s":1}]]}],[6798,{"n":"Benchama","f":"Samy","fp":"MD","r":8,"c":98,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":0.22,"Om":38,"Oam":8,"Odm":6,"pm":5},"p":[[-38,{"n":5,"q":null,"m":7,"e":5832,"s":1}],[-37,{"n":5,"q":null,"m":1,"e":5844,"s":1}],[-36,{"n":5,"q":null,"m":13,"e":5857,"s":1}],[-35,{"n":5,"q":null,"m":15,"e":5865,"s":1}],[-2,{"n":4.5,"q":null,"m":2,"e":6189,"s":1}]],"fo":[[5865,[{"t":"Y"}]]]}],[6820,{"n":"Moutachy","f":"Joris","fp":"DL","r":9,"c":98,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":157,"On":33,"Oa":4.76,"Od":0.73,"Om":2523,"Oam":74,"Odm":29,"pd":31,"pm":2},"p":[[-38,{"n":5,"q":null,"m":89,"e":6213}],[-37,{"n":4.5,"q":null,"m":90,"e":6219}],[-36,{"n":4.5,"q":null,"m":60,"e":6234}],[-32,{"n":3,"q":null,"m":90,"e":6273}],[-31,{"n":5.5,"q":null,"m":90,"e":6281}],[-30,{"n":6,"q":null,"m":90,"e":6294}],[-29,{"n":4.5,"q":null,"m":90,"e":6301}],[-28,{"n":5,"q":null,"m":45,"e":6314,"s":1}],[-27,{"n":5,"q":null,"m":90,"e":6323}],[-26,{"n":5,"q":null,"m":90,"e":6333}],[-25,{"n":4,"q":null,"m":90,"e":6339}],[-24,{"n":5,"q":null,"m":90,"e":6354}],[-23,{"n":4,"q":null,"m":90,"e":6365}],[-22,{"n":4.5,"q":null,"m":5,"e":6373,"s":1}],[-20,{"n":5,"q":null,"m":57,"e":6391,"s":1}],[-19,{"n":4,"q":null,"m":90,"e":6403}],[-18,{"n":5,"q":null,"m":90,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":6.5,"q":null,"m":90,"e":6436}],[-14,{"n":3,"q":null,"m":90,"e":6448}],[-13,{"n":4,"q":null,"m":33,"e":6464,"s":1}],[-12,{"n":5,"q":null,"m":90,"e":6473}],[-11,{"n":4.5,"q":null,"m":90,"e":6483}],[-10,{"n":4.5,"q":null,"m":90,"e":6495}],[-9,{"n":5,"q":null,"m":74,"e":6503,"s":1}],[-8,{"n":4.5,"q":null,"m":73,"e":6514}],[-7,{"n":5,"q":null,"m":90,"e":6523}],[-6,{"n":5.5,"q":null,"m":90,"e":6530}],[-5,{"n":5,"q":null,"m":90,"e":6543}],[-4,{"n":4,"q":null,"m":90,"e":6553}],[-3,{"n":5.5,"q":null,"m":10,"e":6563,"s":1}],[-2,{"n":5,"q":null,"m":7,"e":6574,"s":1}],[2,{"n":5,"q":null,"m":90,"e":10574}],[1,{"n":5.5,"q":null,"m":90,"e":10932}]],"fo":[[6294,[{"t":"Y"}]]]}],[6821,{"n":"Ba","f":"Pape Ibnou","fp":"A","r":25,"c":98,"s":{"s":8,"n":2,"a":4,"m":172,"am":86,"dm":6,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Og":14,"Os":191.5,"On":38,"Oa":5.04,"Od":1.32,"Om":3258,"Oam":84,"Odm":16,"pa":38,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":90,"e":6213}],[-37,{"n":4,"q":null,"m":90,"e":6219}],[-36,{"n":5,"q":null,"m":90,"e":6234}],[-35,{"n":4,"q":null,"m":90,"e":6247}],[-34,{"n":4,"q":null,"m":93,"e":6255}],[-33,{"n":4,"q":null,"m":85,"e":6258}],[-32,{"n":3,"q":null,"m":78,"e":6273}],[-31,{"n":2.5,"q":null,"m":89,"e":6281}],[-30,{"n":6.5,"q":null,"m":90,"e":6294,"g":1}],[-29,{"n":4,"q":null,"m":90,"e":6301}],[-28,{"n":5.5,"q":null,"m":90,"e":6314}],[-27,{"n":6,"q":null,"m":89,"e":6323,"g":1}],[-26,{"n":6.5,"q":null,"m":89,"e":6333,"g":1}],[-25,{"n":3.5,"q":null,"m":90,"e":6339}],[-24,{"n":4.5,"q":null,"m":88,"e":6354}],[-23,{"n":6,"q":null,"m":89,"e":6365,"g":1}],[-22,{"n":4.5,"q":null,"m":90,"e":6373}],[-21,{"n":7.5,"q":null,"m":83,"e":6384,"g":2}],[-20,{"n":4.5,"q":null,"m":90,"e":6391}],[-19,{"n":3.5,"q":null,"m":90,"e":6403}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5,"q":null,"m":90,"e":6436}],[-15,{"n":6,"q":null,"m":90,"e":6443,"g":1}],[-14,{"n":3.5,"q":null,"m":45,"e":6448,"s":1}],[-13,{"n":6.5,"q":null,"m":71,"e":6464,"g":1}],[-12,{"n":6.5,"q":null,"m":90,"e":6473,"g":1}],[-11,{"n":6,"q":null,"m":90,"e":6483,"g":1}],[-10,{"n":8,"q":null,"m":79,"e":6495,"g":1}],[-9,{"n":5.5,"q":null,"m":81,"e":6503}],[-8,{"n":4,"q":null,"m":90,"e":6514}],[-7,{"n":7,"q":null,"m":90,"e":6523,"g":1}],[-6,{"n":4,"q":null,"m":90,"e":6530}],[-5,{"n":6,"q":null,"m":64,"e":6543}],[-4,{"n":4.5,"q":null,"m":90,"e":6553}],[-3,{"n":6.5,"q":null,"m":73,"e":6563,"g":1}],[-2,{"n":4.5,"q":null,"m":90,"e":6574}],[2,{"n":4,"q":null,"m":82,"e":10574}],[-1,{"n":6,"q":null,"m":90,"e":6584,"g":1}],[1,{"n":4,"q":null,"m":90,"e":10932}]],"fo":[[6281,[{"t":"Y"}]]]}],[6848,{"n":"Lebeau","f":"Tom","fp":"MO","r":7,"c":98,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":125,"am":63,"dm":9,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":69,"Sam":69,"Os":58.5,"On":12,"Oa":4.88,"Od":0.53,"Om":378,"Oam":29,"Odm":27,"pm":11,"pa":1},"p":[[-34,{"n":3.5,"q":null,"m":93,"e":6255}],[-33,{"n":4.5,"q":null,"m":20,"e":6258,"s":1}],[-32,{"n":5,"q":null,"m":23,"e":6273,"s":1}],[-31,{"n":4.5,"q":null,"m":23,"e":6281,"s":1}],[-30,{"n":5,"q":null,"m":7,"e":6294,"s":1}],[-28,{"n":5,"q":null,"m":5,"e":6314,"s":1}],[-25,{"n":5.5,"q":null,"m":13,"e":6339,"s":1}],[-24,{"n":5,"q":null,"m":35,"e":6354,"s":1}],[-22,{"n":5,"q":null,"m":15,"e":6373,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-14,{"n":5,"q":null,"m":19,"e":6448,"s":1}],[2,{"n":5,"q":null,"m":56,"e":10574}],[1,{"n":5.5,"q":null,"m":69,"e":10932}]],"fo":[[6339,[{"t":"Y"}]]]}],[6913,{"n":"Benhattab","f":"Yassine","fp":"MO","r":1,"c":98,"s":{"Os":4.5,"On":1,"Oa":4.5,"Om":2,"Oam":1,"Odm":1,"pm":1},"p":[[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":2,"e":6436,"s":1}]]}],[7351,{"n":"Matufueni M'bondo","f":"Bradley","fp":"DC","r":5,"c":98,"s":{"s":6,"n":1,"a":6,"m":90,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Og":1,"Os":41,"On":8,"Oa":5.13,"Od":0.69,"Om":474,"Oam":53,"Odm":38,"pd":8,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":16,"e":6213,"s":1}],[-37,{"n":4.5,"q":null,"m":65,"e":6219}],[-36,{"n":6,"q":null,"m":90,"e":6234,"g":1}],[-35,{"n":5,"q":null,"m":69,"e":6247}],[-34,{"n":4,"q":null,"m":93,"e":6255}],[-33,{"n":5,"q":null,"m":5,"e":6258,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-5,{"n":5.5,"q":null,"m":46,"e":6543,"s":1}],[1,{"n":6,"q":null,"m":90,"e":10932}]],"fo":[[6219,[{"t":"Y"}]],[6247,[{"t":"Y"}]]]}],[7354,{"n":"Vallier","f":"Lenny","fp":"DL","r":10,"c":98,"s":{"s":11,"n":2,"a":5.5,"d":1.41,"m":168,"am":84,"dm":8,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":78,"Sam":78,"Os":117.5,"On":25,"Oa":4.7,"Od":0.99,"Om":1549,"Oam":60,"Odm":33,"pd":21,"pm":3,"pa":1},"p":[[-38,{"n":4.5,"q":null,"m":66,"e":6213}],[-37,{"n":5,"q":null,"m":90,"e":6219}],[-35,{"n":5,"q":null,"m":90,"e":6247}],[-34,{"n":4,"q":null,"m":93,"e":6255}],[-33,{"n":3,"q":null,"m":90,"e":6258}],[-31,{"n":5,"q":null,"m":90,"e":6281}],[-30,{"n":5,"q":null,"m":12,"e":6294,"s":1}],[-29,{"n":3.5,"q":null,"m":90,"e":6301}],[-27,{"n":5.5,"q":null,"m":90,"e":6323}],[-26,{"n":6,"q":null,"m":90,"e":6333}],[-24,{"n":5,"q":null,"m":6,"e":6354,"s":1}],[-23,{"n":3,"q":null,"m":45,"e":6365}],[-20,{"n":4.5,"q":null,"m":21,"e":6391,"s":1}],[-19,{"n":4.5,"q":null,"m":90,"e":6403}],[-18,{"n":6,"q":null,"m":67,"e":6413}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":35,"e":6436,"s":1}],[-14,{"n":2.5,"q":null,"m":45,"e":6448,"s":1}],[-13,{"n":4.5,"q":null,"m":57,"e":6464}],[-11,{"n":4,"q":null,"m":31,"e":6483}],[-10,{"n":6,"q":null,"m":90,"e":6495}],[-8,{"n":5,"q":null,"m":45,"e":6514,"s":1}],[-7,{"n":5,"q":null,"m":3,"e":6523,"s":1}],[-5,{"n":5.5,"q":null,"m":45,"e":6543,"s":1}],[2,{"n":6.5,"q":null,"m":90,"e":10574}],[1,{"n":4.5,"q":null,"m":78,"e":10932}]],"fo":[[6255,[{"t":"Y"}]],[6301,[{"t":"Y"}]],[6333,[{"t":"Y"}]],[10932,[{"t":"Y"}]]]}],[7386,{"n":"Maronne","f":"Yanis","fp":"G","r":3,"c":98,"s":{},"p":[[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}]]}],[7793,{"n":"Cassubie","f":"Yohan","fp":"MD","r":1,"c":98,"s":{"s":10,"n":2,"a":5,"m":45,"am":23,"dm":2,"Ss":5,"Sn":1,"Sa":5,"Sm":21,"Sam":21,"Os":10,"On":2,"Oa":5,"Om":45,"Oam":23,"Odm":2,"pm":2},"p":[[2,{"n":5,"q":null,"m":24,"e":10574,"s":1}],[1,{"n":5,"q":null,"m":21,"e":10932,"s":1}]]}],[8055,{"n":"Louchet","f":"Jean","fp":"G","r":1,"c":98}],[8497,{"n":"Cissé","f":"Sidi","fp":"MO","r":5,"c":98,"s":{"s":5,"n":1,"a":5,"m":8,"am":8,"Os":5,"On":1,"Oa":5,"Om":8,"Oam":8,"pm":1},"p":[[2,{"n":5,"q":null,"m":8,"e":10574,"s":1}]]}],[2144,{"n":"Diaby","f":"Mohamed Lamine","fp":"A","r":7,"c":107,"s":{"s":4.5,"n":1,"a":4.5,"m":1,"am":1,"Os":30.5,"On":7,"Oa":4.36,"Od":0.24,"Om":124,"Oam":18,"Odm":15,"pa":7},"p":[[-38,{"n":4.5,"q":null,"m":47,"e":6215,"s":1}],[-37,{"n":4.5,"q":null,"m":23,"e":6218,"s":1}],[-36,{"n":4,"q":null,"m":21,"e":6235,"s":1}],[-32,{"n":4.5,"q":null,"m":18,"e":6274,"s":1}],[-31,{"n":4.5,"q":null,"m":3,"e":6285,"s":1}],[-4,{"n":4,"q":null,"m":11,"e":6554,"s":1}],[2,{"n":4.5,"q":null,"m":1,"e":10575,"s":1}]],"fo":[[6215,[{"t":"Y"}]]]}],[2625,{"n":"N'Diaye","f":"Youssoupha","fp":"DC","r":5,"c":107,"s":{"Os":83,"On":16,"Oa":5.19,"Od":0.95,"Om":1129,"Oam":71,"Odm":29,"pd":16},"p":[[-2,{"n":5.5,"q":null,"m":60,"e":6575}],[-38,{"n":6,"q":null,"m":90,"e":6215}],[-32,{"n":5,"q":null,"m":90,"e":6274}],[-31,{"n":4.5,"q":null,"m":26,"e":6285,"s":1}],[-26,{"n":5.5,"q":null,"m":90,"e":6334}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-18,{"n":5.5,"q":null,"m":29,"e":6415,"s":1}],[-17,{"n":5,"q":null,"m":11,"e":6426,"s":1}],[-16,{"n":3.5,"q":null,"m":90,"e":6430}],[-13,{"n":5.5,"q":null,"m":90,"e":6465}],[-11,{"n":3.5,"q":null,"m":90,"e":6484}],[-8,{"n":5,"q":null,"m":35,"e":6510,"s":1}],[-7,{"n":6,"q":null,"m":90,"e":6524}],[-6,{"n":6,"q":null,"m":90,"e":6534}],[-5,{"n":4,"q":null,"m":68,"e":6543,"s":1}],[-1,{"n":7,"q":null,"m":90,"e":6582}]]}],[3791,{"n":"Gakpa","f":"Marvin","fp":"MO","r":13,"c":107,"s":{"g":1,"s":14.5,"n":2,"a":7.25,"d":0.35,"m":179,"am":90,"dm":1,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":3,"Os":153.5,"On":28,"Oa":5.48,"Od":0.99,"Om":1709,"Oam":61,"Odm":28,"pm":23,"pa":5,"Smsn":7.5,"Omsn":6.5},"p":[[-37,{"n":5,"q":null,"m":4,"e":6218,"s":1}],[-36,{"n":5,"q":null,"m":21,"e":6235,"s":1}],[-35,{"n":5,"q":null,"m":1,"e":6242,"s":1}],[-34,{"n":4.5,"q":null,"m":61,"e":6256}],[-33,{"n":5.5,"q":null,"m":90,"e":6263}],[-32,{"n":6,"q":null,"m":72,"e":6274}],[-31,{"n":6,"q":null,"m":64,"e":6285}],[-30,{"n":7,"q":null,"m":88,"e":6295}],[-29,{"n":5.5,"q":null,"m":77,"e":6299}],[-28,{"n":4.5,"q":null,"m":63,"e":6315}],[-27,{"n":6,"q":null,"m":78,"e":6319}],[-26,{"n":4.5,"q":null,"m":12,"e":6334,"s":1}],[-25,{"n":4,"q":null,"m":70,"e":6344}],[-23,{"n":5,"q":null,"m":53,"e":6365}],[-22,{"n":5.5,"q":null,"m":74,"e":6372}],[-21,{"n":6.5,"q":null,"m":67,"e":6385,"g":1}],[-20,{"n":4.5,"q":null,"m":64,"e":6397}],[-19,{"n":5,"q":null,"m":34,"e":6406,"s":1}],[-18,{"n":5,"q":null,"m":61,"e":6415}],[-17,{"n":8,"q":null,"m":90,"e":6426,"g":1}],[-16,{"n":5,"q":null,"m":90,"e":6430}],[-15,{"n":5.5,"q":null,"m":90,"e":6445}],[-14,{"n":4.5,"q":null,"m":64,"e":6456}],[-13,{"n":5,"q":null,"m":21,"e":6465,"s":1}],[-12,{"n":6,"q":null,"m":76,"e":6476}],[-11,{"n":5,"q":null,"m":45,"e":6484,"s":1}],[2,{"n":7.5,"q":null,"m":89,"e":10575,"g":1}],[1,{"n":7,"q":null,"m":90,"e":10934}]],"fo":[[6295,[{"t":"Y"}]]]}],[4859,{"n":"Chergui","f":"Samir Sophian","fp":"MO","r":3,"c":107,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":29.5,"On":6,"Oa":4.92,"Od":0.58,"Om":295,"Oam":49,"Odm":45,"pd":1,"pm":5},"p":[[-23,{"n":4.5,"q":null,"m":90,"e":6365}],[-21,{"n":5,"q":null,"m":5,"e":6385,"s":1}],[-20,{"n":4.5,"q":null,"m":16,"e":6397,"s":1}],[-19,{"n":5,"q":null,"m":4,"e":6406,"s":1}],[2,{"n":4.5,"q":null,"m":90,"e":10575}],[1,{"n":6,"q":null,"m":90,"e":10934}]]}],[4913,{"n":"Kanté","f":"Ousmane","fp":"DC","r":22,"c":107,"s":{"Og":3,"Os":172,"On":32,"Oa":5.38,"Od":1,"Om":2785,"Oam":87,"Odm":12,"pd":32,"Omsn":6.5},"p":[[-37,{"n":4,"q":null,"m":27,"e":6218}],[-36,{"n":6,"q":null,"m":90,"e":6235}],[-35,{"n":6,"q":null,"m":90,"e":6242}],[-34,{"n":5,"q":null,"m":90,"e":6256}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-31,{"n":4,"q":null,"m":58,"e":6285}],[-30,{"n":6.5,"q":null,"m":90,"e":6295}],[-29,{"n":5.5,"q":null,"m":90,"e":6299}],[-28,{"n":6,"q":null,"m":90,"e":6315}],[-27,{"n":6,"q":null,"m":90,"e":6319}],[-26,{"n":5.5,"q":null,"m":90,"e":6334}],[-25,{"n":5.5,"q":null,"m":90,"e":6344}],[-24,{"n":6,"q":null,"m":90,"e":6352}],[-22,{"n":5,"q":null,"m":90,"e":6372}],[-21,{"n":7,"q":null,"m":90,"e":6385,"g":1}],[-20,{"n":4,"q":null,"m":90,"e":6397}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-18,{"n":5,"q":null,"m":90,"e":6415}],[-17,{"n":4.5,"q":null,"m":90,"e":6426}],[-15,{"n":5,"q":null,"m":90,"e":6445}],[-14,{"n":4,"q":null,"m":90,"e":6456}],[-12,{"n":5.5,"q":null,"m":90,"e":6476}],[-11,{"n":3,"q":null,"m":90,"e":6484}],[-10,{"n":6,"q":null,"m":90,"e":6492}],[-9,{"n":7.5,"q":null,"m":90,"e":6504,"g":1}],[-8,{"n":4.5,"q":null,"m":90,"e":6510}],[-7,{"n":6,"q":null,"m":90,"e":6524}],[-6,{"n":6,"q":null,"m":90,"e":6534}],[-5,{"n":6.5,"q":null,"m":90,"e":6543,"g":1}],[-4,{"n":4,"q":null,"m":90,"e":6554}],[-3,{"n":6,"q":null,"m":90,"e":6559}],[-2,{"n":6,"q":null,"m":90,"e":6575}]],"fo":[[6218,[{"t":"R"}]],[6242,[{"t":"Y"}]],[6285,[{"t":"Y"},{"t":"O"}]],[6334,[{"t":"Y"}]]]}],[4942,{"n":"Bamba","f":"Axel","fp":"DC","r":18,"c":107,"s":{"Og":1,"Os":165.5,"On":33,"Oa":5.02,"Od":0.91,"Om":2863,"Oam":87,"Odm":14,"pd":33,"Omsn":7.5},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6215}],[-37,{"n":5.5,"q":null,"m":90,"e":6218}],[-36,{"n":5.5,"q":null,"m":90,"e":6235}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-34,{"n":5,"q":null,"m":90,"e":6256}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-32,{"n":5.5,"q":null,"m":90,"e":6274}],[-31,{"n":5.5,"q":null,"m":90,"e":6285}],[-30,{"n":6,"q":null,"m":90,"e":6295}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":6,"q":null,"m":90,"e":6315}],[-27,{"n":7.5,"q":null,"m":90,"e":6319,"g":1}],[-25,{"n":5.5,"q":null,"m":90,"e":6344}],[-24,{"n":4,"q":null,"m":90,"e":6352}],[-23,{"n":4,"q":null,"m":90,"e":6365}],[-22,{"n":5.5,"q":null,"m":90,"e":6372}],[-21,{"n":4.5,"q":null,"m":90,"e":6385}],[-20,{"n":4,"q":null,"m":90,"e":6397}],[-18,{"n":4,"q":null,"m":57,"e":6415}],[-17,{"n":4.5,"q":null,"m":90,"e":6426}],[-16,{"n":4,"q":null,"m":90,"e":6430}],[-15,{"n":5,"q":null,"m":90,"e":6445}],[-14,{"n":4.5,"q":null,"m":90,"e":6456}],[-13,{"n":5,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6476}],[-11,{"n":3,"q":null,"m":90,"e":6484}],[-10,{"n":5.5,"q":null,"m":90,"e":6492}],[-9,{"n":5,"q":null,"m":90,"e":6504}],[-8,{"n":5,"q":null,"m":90,"e":6510}],[-5,{"n":3.5,"q":null,"m":16,"e":6543}],[-4,{"n":4,"q":null,"m":90,"e":6554}],[-3,{"n":4.5,"q":null,"m":90,"e":6559}],[-1,{"n":6,"q":null,"m":90,"e":6582}]],"fo":[[6352,[{"t":"Y"}]]]}],[5013,{"n":"Desprez","f":"Didier","fp":"G","r":5,"c":107,"s":{"Os":11,"On":2,"Oa":5.5,"Od":0.71,"Om":180,"Oam":90,"pg":2},"p":[[-29,{"n":6,"q":null,"m":90,"e":6299}],[-24,{"n":5,"q":null,"m":90,"e":6352}]]}],[5023,{"n":"Mandouki","f":"Cyril","fp":"MD","r":17,"c":107,"s":{"s":12,"n":2,"a":6,"d":1.41,"m":180,"am":90,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":1,"Oao":1,"Os":186.5,"On":35,"Oa":5.33,"Od":0.76,"Om":2933,"Oam":84,"Odm":15,"pm":35,"Omsn":6.5},"p":[[-38,{"n":6.5,"q":null,"m":90,"e":6215,"g":1}],[-37,{"n":4.5,"q":null,"m":90,"e":6218}],[-36,{"n":6,"q":null,"m":90,"e":6235}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-34,{"n":5,"q":null,"m":90,"e":6256}],[-33,{"n":5,"q":null,"m":90,"e":6263,"a":1}],[-32,{"n":5.5,"q":null,"m":90,"e":6274}],[-31,{"n":7,"q":null,"m":90,"e":6285}],[-29,{"n":5.5,"q":null,"m":90,"e":6299}],[-28,{"n":5.5,"q":null,"m":90,"e":6315}],[-27,{"n":6,"q":null,"m":90,"e":6319}],[-26,{"n":5.5,"q":null,"m":90,"e":6334}],[-25,{"n":6,"q":null,"m":90,"e":6344}],[-23,{"n":4.5,"q":null,"m":53,"e":6365}],[-22,{"n":5.5,"q":null,"m":90,"e":6372}],[-21,{"n":6.5,"q":null,"m":90,"e":6385}],[-20,{"n":4.5,"q":null,"m":74,"e":6397}],[-19,{"n":4.5,"q":null,"m":90,"e":6406}],[-18,{"n":5,"q":null,"m":90,"e":6415}],[-17,{"n":5.5,"q":null,"m":90,"e":6426}],[-16,{"n":4,"q":null,"m":60,"e":6430}],[-15,{"n":5.5,"q":null,"m":82,"e":6445}],[-14,{"n":4.5,"q":null,"m":90,"e":6456}],[-13,{"n":4.5,"q":null,"m":69,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6476}],[-11,{"n":4.5,"q":null,"m":90,"e":6484}],[-10,{"n":5.5,"q":null,"m":90,"e":6492}],[-9,{"n":5.5,"q":null,"m":90,"e":6504}],[-8,{"n":5.5,"q":null,"m":90,"e":6510}],[-7,{"n":5,"q":null,"m":45,"e":6524,"s":1}],[-4,{"n":4,"q":null,"m":90,"e":6554}],[-3,{"n":5.5,"q":null,"m":90,"e":6559}],[-2,{"n":5,"q":null,"m":30,"e":6575,"s":1}],[2,{"n":5,"q":null,"m":90,"e":10575}],[1,{"n":7,"q":null,"m":90,"e":10934}]]}],[5047,{"n":"Demoncy","f":"Yohan","fp":"MD","r":8,"c":107}],[5138,{"n":"Lopez","f":"Julien","fp":"MO","r":17,"c":107,"s":{"s":4.5,"n":1,"a":4.5,"m":11,"am":11,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":11,"Sam":11,"Og":7,"Os":183,"On":33,"Oa":5.55,"Od":1.06,"Om":2322,"Oam":70,"Odm":24,"pm":20,"pa":13,"Omsn":6},"p":[[-38,{"n":7,"q":null,"m":32,"e":6215,"g":1,"s":1}],[-34,{"n":4.5,"q":null,"m":61,"e":6256}],[-33,{"n":7,"q":null,"m":90,"e":6263}],[-32,{"n":6.5,"q":null,"m":57,"e":6274,"g":1}],[-31,{"n":6,"q":null,"m":87,"e":6285}],[-30,{"n":6,"q":null,"m":73,"e":6295}],[-29,{"n":5.5,"q":null,"m":88,"e":6299}],[-28,{"n":5,"q":null,"m":62,"e":6315}],[-27,{"n":5.5,"q":null,"m":87,"e":6319}],[-26,{"n":6,"q":null,"m":90,"e":6334}],[-25,{"n":5,"q":null,"m":81,"e":6344}],[-24,{"n":4,"q":null,"m":78,"e":6352}],[-23,{"n":7,"q":null,"m":90,"e":6365}],[-22,{"n":5,"q":null,"m":15,"e":6372,"s":1}],[-21,{"n":5,"q":null,"m":23,"e":6385,"s":1}],[-20,{"n":4,"q":null,"m":77,"e":6397}],[-17,{"n":5.5,"q":null,"m":50,"e":6426}],[-16,{"n":6.5,"q":null,"m":90,"e":6430,"g":1}],[-14,{"n":4,"q":null,"m":81,"e":6456}],[-13,{"n":5,"q":null,"m":33,"e":6465,"s":1}],[-12,{"n":5.5,"q":null,"m":90,"e":6476}],[-11,{"n":4,"q":null,"m":90,"e":6484}],[-10,{"n":5,"q":null,"m":71,"e":6492}],[-9,{"n":8,"q":null,"m":84,"e":6504,"g":1}],[-8,{"n":5,"q":null,"m":87,"e":6510}],[-7,{"n":5,"q":null,"m":89,"e":6524}],[-6,{"n":8,"q":null,"m":89,"e":6534,"g":2}],[-5,{"n":6,"q":null,"m":63,"e":6543}],[-4,{"n":5,"q":null,"m":85,"e":6554}],[-3,{"n":6,"q":null,"m":62,"e":6559,"g":1}],[-2,{"n":5,"q":null,"m":85,"e":6575}],[-1,{"n":6,"q":null,"m":71,"e":6582}],[1,{"n":4.5,"q":null,"m":11,"e":10934,"s":1}]],"fo":[[6295,[{"t":"Y"}]],[6344,[{"t":"Y"}]]]}],[5173,{"n":"Demarconnay","f":"Vincent","fp":"G","r":12,"c":107,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":202,"On":38,"Oa":5.32,"Od":0.9,"Om":3420,"Oam":90,"pg":38},"p":[[-38,{"n":6,"q":null,"m":90,"e":6215}],[-37,{"n":5.5,"q":null,"m":90,"e":6218}],[-36,{"n":4.5,"q":null,"m":90,"e":6235}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-34,{"n":4.5,"q":null,"m":90,"e":6256}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-32,{"n":6,"q":null,"m":90,"e":6274}],[-31,{"n":6,"q":null,"m":90,"e":6285}],[-30,{"n":5.5,"q":null,"m":90,"e":6295}],[-28,{"n":6,"q":null,"m":90,"e":6315}],[-27,{"n":6.5,"q":null,"m":90,"e":6319}],[-26,{"n":5.5,"q":null,"m":90,"e":6334}],[-25,{"n":4.5,"q":null,"m":90,"e":6344}],[-23,{"n":4,"q":null,"m":90,"e":6365}],[-22,{"n":5,"q":null,"m":90,"e":6372}],[-21,{"n":5,"q":null,"m":90,"e":6385}],[-20,{"n":4,"q":null,"m":90,"e":6397}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-18,{"n":6,"q":null,"m":90,"e":6415}],[-17,{"n":5,"q":null,"m":90,"e":6426}],[-16,{"n":4,"q":null,"m":90,"e":6430}],[-15,{"n":5.5,"q":null,"m":90,"e":6445}],[-14,{"n":4,"q":null,"m":90,"e":6456}],[-13,{"n":5.5,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6476}],[-11,{"n":4,"q":null,"m":90,"e":6484}],[-10,{"n":6,"q":null,"m":90,"e":6492}],[-9,{"n":7,"q":null,"m":90,"e":6504}],[-8,{"n":5,"q":null,"m":90,"e":6510}],[-7,{"n":7,"q":null,"m":90,"e":6524}],[-6,{"n":6.5,"q":null,"m":90,"e":6534}],[-5,{"n":5,"q":null,"m":90,"e":6543}],[-4,{"n":3,"q":null,"m":90,"e":6554}],[-3,{"n":5,"q":null,"m":90,"e":6559}],[-2,{"n":6,"q":null,"m":90,"e":6575}],[2,{"n":5,"q":null,"m":90,"e":10575}],[-1,{"n":6,"q":null,"m":90,"e":6582}],[1,{"n":6,"q":null,"m":90,"e":10934}]]}],[5515,{"n":"Belaud","f":"Gaëtan","fp":"DL","r":10,"c":107,"s":{"Os":125,"On":24,"Oa":5.21,"Od":0.53,"Om":1872,"Oam":78,"Odm":22,"pd":24},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6215}],[-37,{"n":5.5,"q":null,"m":90,"e":6218}],[-36,{"n":5,"q":null,"m":90,"e":6235}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-28,{"n":5,"q":null,"m":90,"e":6315}],[-27,{"n":5,"q":null,"m":1,"e":6319,"s":1}],[-25,{"n":5,"q":null,"m":90,"e":6344}],[-24,{"n":5,"q":null,"m":38,"e":6352}],[-22,{"n":5,"q":null,"m":90,"e":6372}],[-21,{"n":5,"q":null,"m":90,"e":6385}],[-19,{"n":5,"q":null,"m":86,"e":6406}],[-18,{"n":5.5,"q":null,"m":90,"e":6415}],[-17,{"n":5.5,"q":null,"m":64,"e":6426}],[-15,{"n":5,"q":null,"m":82,"e":6445}],[-14,{"n":4.5,"q":null,"m":90,"e":6456}],[-12,{"n":4.5,"q":null,"m":90,"e":6476}],[-8,{"n":5,"q":null,"m":55,"e":6510}],[-7,{"n":6,"q":null,"m":90,"e":6524}],[-6,{"n":6.5,"q":null,"m":90,"e":6534}],[-5,{"n":5,"q":null,"m":63,"e":6543}],[-4,{"n":4.5,"q":null,"m":62,"e":6554}],[-3,{"n":5,"q":null,"m":90,"e":6559}],[-2,{"n":6.5,"q":null,"m":90,"e":6575}],[-1,{"n":5,"q":null,"m":71,"e":6582}]],"fo":[[6352,[{"t":"I"}]],[6215,[{"t":"Y"}]],[6242,[{"t":"Y"}]],[6315,[{"t":"Y"}]],[6344,[{"t":"Y"}]]]}],[6229,{"n":"Kikonda","f":"Mario Jason","fp":"MD","r":10,"c":107,"s":{"s":10,"n":2,"a":5,"m":21,"am":11,"dm":8,"Ss":5,"Sn":1,"Sa":5,"Sm":16,"Sam":16,"Os":130.5,"On":26,"Oa":5.02,"Od":0.52,"Om":751,"Oam":29,"Odm":29,"pm":26},"p":[[-38,{"n":5,"q":null,"m":1,"e":6215,"s":1}],[-35,{"n":4.5,"q":null,"m":29,"e":6242,"s":1}],[-34,{"n":5,"q":null,"m":7,"e":6256,"s":1}],[-31,{"n":4.5,"q":null,"m":2,"e":6285,"s":1}],[-30,{"n":5,"q":null,"m":2,"e":6295,"s":1}],[-27,{"n":5,"q":null,"m":12,"e":6319,"s":1}],[-24,{"n":5,"q":null,"m":69,"e":6352}],[-23,{"n":4.5,"q":null,"m":85,"e":6365}],[-22,{"n":4.5,"q":null,"m":21,"e":6372,"s":1}],[-21,{"n":5,"q":null,"m":16,"e":6385,"s":1}],[-20,{"n":5.5,"q":null,"m":26,"e":6397,"s":1}],[-19,{"n":5,"q":null,"m":76,"e":6406}],[-18,{"n":5,"q":null,"m":45,"e":6415,"s":1}],[-17,{"n":5,"q":null,"m":79,"e":6426}],[-16,{"n":5,"q":null,"m":30,"e":6430,"s":1}],[-15,{"n":6,"q":null,"m":8,"e":6445,"s":1}],[-14,{"n":5,"q":null,"m":26,"e":6456,"s":1}],[-13,{"n":5,"q":null,"m":2,"e":6465,"s":1}],[-8,{"n":5,"q":null,"m":3,"e":6510,"s":1}],[-7,{"n":5,"q":null,"m":65,"e":6524}],[-6,{"n":7,"q":null,"m":88,"e":6534}],[-5,{"n":4.5,"q":null,"m":5,"e":6543,"s":1}],[-2,{"n":4.5,"q":null,"m":5,"e":6575,"s":1}],[2,{"n":5,"q":null,"m":5,"e":10575,"s":1}],[-1,{"n":5,"q":null,"m":28,"e":6582,"s":1}],[1,{"n":5,"q":null,"m":16,"e":10934,"s":1}]],"fo":[[6352,[{"t":"Y"}]]]}],[6432,{"n":"Nkambadio","f":"Obed","fp":"G","r":5,"c":107}],[6725,{"n":"Name","f":"Moustapha","fp":"MO","r":19,"c":107,"s":{"g":1,"s":13,"n":2,"a":6.5,"d":2.12,"m":180,"am":90,"Sg":1,"Ss":8,"Sn":1,"Sa":8,"Sm":90,"Sam":90,"Og":5,"Os":189,"On":33,"Oa":5.73,"Od":1.14,"Om":2331,"Oam":71,"Odm":27,"pm":33,"Smsn":8,"Omsn":6.5},"p":[[-38,{"n":7.5,"q":null,"m":90,"e":6215}],[-37,{"n":5.5,"q":null,"m":87,"e":6218}],[-36,{"n":8,"q":null,"m":90,"e":6235,"g":1}],[-35,{"n":6,"q":null,"m":90,"e":6242}],[-32,{"n":4,"q":null,"m":38,"e":6274}],[-31,{"n":7,"q":null,"m":88,"e":6285}],[-30,{"n":5.5,"q":null,"m":90,"e":6295}],[-29,{"n":6,"q":null,"m":90,"e":6299}],[-28,{"n":6,"q":null,"m":90,"e":6315}],[-27,{"n":6,"q":null,"m":90,"e":6319}],[-26,{"n":6.5,"q":null,"m":78,"e":6334}],[-25,{"n":5,"q":null,"m":70,"e":6344}],[-24,{"n":4.5,"q":null,"m":21,"e":6352,"s":1}],[-23,{"n":5.5,"q":null,"m":37,"e":6365,"s":1}],[-22,{"n":5,"q":null,"m":16,"e":6372,"s":1}],[-21,{"n":5,"q":null,"m":23,"e":6385,"s":1}],[-20,{"n":4.5,"q":null,"m":64,"e":6397}],[-18,{"n":4.5,"q":null,"m":45,"e":6415}],[-17,{"n":6.5,"q":null,"m":11,"e":6426,"g":1,"s":1}],[-16,{"n":4,"q":null,"m":59,"e":6430}],[-15,{"n":5,"q":null,"m":76,"e":6445}],[-14,{"n":7,"q":null,"m":45,"e":6456,"g":1,"s":1}],[-13,{"n":5.5,"q":null,"m":88,"e":6465}],[-12,{"n":5,"q":null,"m":90,"e":6476}],[-11,{"n":3.5,"q":null,"m":45,"e":6484}],[-10,{"n":5.5,"q":null,"m":90,"e":6492}],[-5,{"n":6,"q":null,"m":90,"e":6543}],[-4,{"n":5.5,"q":null,"m":90,"e":6554}],[-3,{"n":6.5,"q":null,"m":90,"e":6559,"g":1}],[-2,{"n":6.5,"q":null,"m":90,"e":6575}],[2,{"n":5,"q":null,"m":90,"e":10575}],[-1,{"n":7.5,"q":null,"m":90,"e":6582}],[1,{"n":8,"q":null,"m":90,"e":10934,"g":1}]],"fo":[[6274,[{"t":"R"}]],[6235,[{"t":"Y"}]]]}],[6749,{"n":"Campanini","f":"Thibault","fp":"DL","r":1,"c":107,"s":{"s":5,"n":1,"a":5,"m":11,"am":11,"Ss":5,"Sn":1,"Sa":5,"Sm":11,"Sam":11,"Os":10,"On":2,"Oa":5,"Om":30,"Oam":15,"Odm":6,"pd":2},"p":[[-1,{"n":5,"q":null,"m":19,"e":6582,"s":1}],[1,{"n":5,"q":null,"m":11,"e":10934,"s":1}]]}],[6816,{"n":"Gambor","f":"Hugo","fp":"DC","r":1,"c":107}],[6817,{"n":"Laura","f":"Gaetan","fp":"A","r":19,"c":107,"s":{"g":1,"s":11,"n":2,"a":5.5,"d":2.83,"m":164,"am":82,"dm":4,"Sg":1,"Ss":7.5,"Sn":1,"Sa":7.5,"Sm":79,"Sam":79,"Og":9,"Os":185.5,"On":35,"Oa":5.3,"Od":1.32,"Om":2816,"Oam":80,"Odm":20,"pm":7,"pa":28,"Smsn":7.5,"Omsn":6.5},"p":[[-36,{"n":5,"q":null,"m":73,"e":6235}],[-35,{"n":4.5,"q":null,"m":90,"e":6242}],[-34,{"n":5,"q":null,"m":90,"e":6256}],[-33,{"n":8,"q":null,"m":90,"e":6263,"g":1}],[-32,{"n":5.5,"q":null,"m":83,"e":6274}],[-31,{"n":7,"q":null,"m":33,"e":6285,"g":1}],[-30,{"n":6,"q":null,"m":90,"e":6295}],[-29,{"n":5,"q":null,"m":90,"e":6299}],[-28,{"n":3.5,"q":null,"m":90,"e":6315}],[-27,{"n":6.5,"q":null,"m":89,"e":6319,"g":1}],[-26,{"n":4.5,"q":null,"m":90,"e":6334}],[-25,{"n":5,"q":null,"m":90,"e":6344}],[-24,{"n":3.5,"q":null,"m":78,"e":6352}],[-23,{"n":3.5,"q":null,"m":90,"e":6365}],[-22,{"n":4,"q":null,"m":90,"e":6372}],[-21,{"n":8,"q":null,"m":74,"e":6385,"g":1}],[-20,{"n":5,"q":null,"m":90,"e":6397}],[-19,{"n":6,"q":null,"m":90,"e":6406}],[-18,{"n":5,"q":null,"m":90,"e":6415}],[-17,{"n":7,"q":null,"m":80,"e":6426,"g":1}],[-16,{"n":5,"q":null,"m":90,"e":6430}],[-15,{"n":5,"q":null,"m":90,"e":6445}],[-14,{"n":4,"q":null,"m":90,"e":6456}],[-13,{"n":4,"q":null,"m":33,"e":6465,"s":1}],[-12,{"n":4,"q":null,"m":14,"e":6476,"s":1}],[-8,{"n":6.5,"q":null,"m":88,"e":6510,"g":1}],[-7,{"n":6,"q":null,"m":90,"e":6524}],[-6,{"n":5,"q":null,"m":90,"e":6534}],[-5,{"n":5,"q":null,"m":27,"e":6543,"s":1}],[-4,{"n":4,"q":null,"m":90,"e":6554}],[-3,{"n":4.5,"q":null,"m":90,"e":6559}],[-2,{"n":7,"q":null,"m":90,"e":6575,"g":1}],[2,{"n":3.5,"q":null,"m":85,"e":10575}],[-1,{"n":7,"q":null,"m":90,"e":6582,"g":1}],[1,{"n":7.5,"q":null,"m":79,"e":10934,"g":1}]],"fo":[[6285,[{"t":"I"}]],[6315,[{"t":"Y"}]]]}],[6818,{"n":"Guilavogui","f":"Morgan","fp":"A","r":3,"c":107,"s":{"g":1,"s":12,"n":2,"a":6,"d":1.41,"m":164,"am":82,"dm":11,"Ss":7,"Sn":1,"Sa":7,"Sm":74,"Sam":74,"Og":1,"Os":94,"On":19,"Oa":4.95,"Od":0.78,"Om":1054,"Oam":55,"Odm":27,"pm":4,"pa":15,"Smsn":5,"Omsn":5},"p":[[-38,{"n":5,"q":null,"m":1,"e":6215,"s":1}],[-19,{"n":5,"q":null,"m":86,"e":6406}],[-18,{"n":5,"q":null,"m":29,"e":6415,"s":1}],[-17,{"n":4.5,"q":null,"m":40,"e":6426,"s":1}],[-16,{"n":4.5,"q":null,"m":31,"e":6430,"s":1}],[-14,{"n":4,"q":null,"m":45,"e":6456}],[-13,{"n":4.5,"q":null,"m":21,"e":6465,"s":1}],[-12,{"n":4,"q":null,"m":76,"e":6476}],[-11,{"n":3.5,"q":null,"m":45,"e":6484}],[-10,{"n":5.5,"q":null,"m":71,"e":6492}],[-9,{"n":5.5,"q":null,"m":63,"e":6504}],[-8,{"n":5,"q":null,"m":72,"e":6510}],[-7,{"n":5,"q":null,"m":45,"e":6524}],[-6,{"n":6,"q":null,"m":23,"e":6534,"s":1}],[-5,{"n":5.5,"q":null,"m":90,"e":6543}],[-4,{"n":4.5,"q":null,"m":90,"e":6554}],[-3,{"n":5,"q":null,"m":62,"e":6559}],[2,{"n":5,"q":null,"m":90,"e":10575,"g":1}],[1,{"n":7,"q":null,"m":74,"e":10934}]]}],[6838,{"n":"Arab","f":"Saïd","fp":"MO","r":9,"c":107,"s":{"Og":3,"Os":139,"On":27,"Oa":5.15,"Od":0.63,"Om":616,"Oam":23,"Odm":22,"pm":26,"pa":1,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":31,"e":6215,"s":1}],[-37,{"n":5.5,"q":null,"m":23,"e":6218,"s":1}],[-36,{"n":6,"q":null,"m":17,"e":6235,"g":1,"s":1}],[-35,{"n":5,"q":null,"m":10,"e":6242,"s":1}],[-34,{"n":5,"q":null,"m":7,"e":6256,"s":1}],[-33,{"n":5.5,"q":null,"m":22,"e":6263,"s":1}],[-27,{"n":4.5,"q":null,"m":1,"e":6319,"s":1}],[-25,{"n":5,"q":null,"m":2,"e":6344,"s":1}],[-24,{"n":5,"q":null,"m":12,"e":6352,"s":1}],[-23,{"n":4.5,"q":null,"m":5,"e":6365,"s":1}],[-21,{"n":5,"q":null,"m":16,"e":6385,"s":1}],[-20,{"n":4.5,"q":null,"m":63,"e":6397}],[-19,{"n":6,"q":null,"m":14,"e":6406,"g":1,"s":1}],[-17,{"n":5.5,"q":null,"m":10,"e":6426,"s":1}],[-16,{"n":5,"q":null,"m":10,"e":6430,"s":1}],[-15,{"n":5,"q":null,"m":32,"e":6445,"s":1}],[-13,{"n":4,"q":null,"m":57,"e":6465}],[-10,{"n":5,"q":null,"m":19,"e":6492,"s":1}],[-9,{"n":5,"q":null,"m":27,"e":6504,"s":1}],[-8,{"n":5,"q":null,"m":3,"e":6510,"s":1}],[-7,{"n":7,"q":null,"m":45,"e":6524,"g":1,"s":1}],[-6,{"n":5,"q":null,"m":2,"e":6534,"s":1}],[-5,{"n":5.5,"q":null,"m":5,"e":6543,"s":1}],[-4,{"n":5,"q":null,"m":5,"e":6554,"s":1}],[-3,{"n":5.5,"q":null,"m":28,"e":6559,"s":1}],[-2,{"n":4,"q":null,"m":61,"e":6575}],[-1,{"n":6,"q":null,"m":89,"e":6582}]]}],[6876,{"n":"Hanin","f":"Florent","fp":"DL","r":16,"c":107,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":175,"am":88,"dm":4,"Ss":6,"Sn":1,"Sa":6,"Sm":85,"Sam":85,"Og":1,"Os":187,"On":36,"Oa":5.19,"Od":0.94,"Om":3189,"Oam":89,"Odm":8,"pd":36,"Omsn":8},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6215}],[-37,{"n":6,"q":null,"m":90,"e":6218}],[-36,{"n":5.5,"q":null,"m":90,"e":6235}],[-35,{"n":5.5,"q":null,"m":90,"e":6242}],[-34,{"n":5,"q":null,"m":90,"e":6256}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-32,{"n":5,"q":null,"m":90,"e":6274}],[-31,{"n":6.5,"q":null,"m":90,"e":6285}],[-30,{"n":8,"q":null,"m":90,"e":6295,"g":1}],[-29,{"n":5,"q":null,"m":90,"e":6299}],[-27,{"n":5,"q":null,"m":89,"e":6319}],[-26,{"n":6,"q":null,"m":90,"e":6334}],[-24,{"n":5,"q":null,"m":45,"e":6352}],[-23,{"n":4,"q":null,"m":90,"e":6365}],[-22,{"n":5,"q":null,"m":90,"e":6372}],[-20,{"n":4,"q":null,"m":90,"e":6397}],[-19,{"n":5.5,"q":null,"m":90,"e":6406}],[-18,{"n":4,"q":null,"m":90,"e":6415}],[-17,{"n":5,"q":null,"m":90,"e":6426}],[-16,{"n":3.5,"q":null,"m":90,"e":6430}],[-15,{"n":5.5,"q":null,"m":90,"e":6445}],[-14,{"n":3,"q":null,"m":90,"e":6456}],[-13,{"n":4.5,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6476}],[-11,{"n":4,"q":null,"m":90,"e":6484}],[-10,{"n":5.5,"q":null,"m":90,"e":6492}],[-9,{"n":6,"q":null,"m":90,"e":6504}],[-8,{"n":6,"q":null,"m":90,"e":6510}],[-7,{"n":5,"q":null,"m":90,"e":6524}],[-6,{"n":6,"q":null,"m":90,"e":6534}],[-5,{"n":5,"q":null,"m":90,"e":6543}],[-4,{"n":4,"q":null,"m":90,"e":6554}],[-3,{"n":6,"q":null,"m":90,"e":6559}],[-2,{"n":5.5,"q":null,"m":90,"e":6575}],[2,{"n":5,"q":null,"m":90,"e":10575}],[1,{"n":6,"q":null,"m":85,"e":10934}]],"fo":[[6319,[{"t":"Y"}]]]}],[6911,{"n":"Camara","f":"Ousmane","fp":"MD","r":1,"c":107,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":26.5,"On":5,"Oa":5.3,"Od":0.45,"Om":212,"Oam":42,"Odm":44,"pm":5},"p":[[-9,{"n":5.5,"q":null,"m":6,"e":6504,"s":1}],[-2,{"n":5,"q":null,"m":25,"e":6575,"s":1}],[2,{"n":5,"q":null,"m":90,"e":10575}],[-1,{"n":5,"q":null,"m":1,"e":6582,"s":1}],[1,{"n":6,"q":null,"m":90,"e":10934}]]}],[6912,{"n":"Hadjam","f":"Jaouen","fp":"DL","r":3,"c":107,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":95,"am":48,"dm":60,"Ss":5,"Sn":1,"Sa":5,"Sm":5,"Sam":5,"Os":41,"On":8,"Oa":5.13,"Od":0.58,"Om":334,"Oam":42,"Odm":35,"pd":8},"p":[[-37,{"n":5.5,"q":null,"m":57,"e":6218,"s":1}],[-24,{"n":5,"q":null,"m":45,"e":6352,"s":1}],[-20,{"n":5,"q":null,"m":13,"e":6397,"s":1}],[-17,{"n":4,"q":null,"m":26,"e":6426,"s":1}],[-15,{"n":5,"q":null,"m":8,"e":6445,"s":1}],[2,{"n":6,"q":null,"m":90,"e":10575}],[-1,{"n":5.5,"q":null,"m":90,"e":6582}],[1,{"n":5,"q":null,"m":5,"e":10934,"s":1}]]}],[7465,{"n":"Caddy","f":"Warren","fp":"A","r":13,"c":107,"s":{"Og":4,"Os":115.5,"On":24,"Oa":4.81,"Od":1.02,"Om":1373,"Oam":57,"Odm":30,"pa":24,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":42,"e":6215}],[-37,{"n":6.5,"q":null,"m":67,"e":6218,"g":1}],[-36,{"n":5,"q":null,"m":69,"e":6235}],[-35,{"n":5,"q":null,"m":80,"e":6242}],[-34,{"n":4,"q":null,"m":83,"e":6256}],[-33,{"n":6.5,"q":null,"m":77,"e":6263,"g":1}],[-32,{"n":5,"q":null,"m":72,"e":6274}],[-31,{"n":6,"q":null,"m":87,"e":6285}],[-30,{"n":5,"q":null,"m":80,"e":6295}],[-29,{"n":4,"q":null,"m":76,"e":6299}],[-28,{"n":4,"q":null,"m":34,"e":6315,"s":1}],[-27,{"n":4,"q":null,"m":3,"e":6319,"s":1}],[-26,{"n":4.5,"q":null,"m":90,"e":6334}],[-25,{"n":6,"q":null,"m":20,"e":6344,"s":1}],[-24,{"n":4,"q":null,"m":52,"e":6352,"s":1}],[-23,{"n":4,"q":null,"m":37,"e":6365,"s":1}],[-22,{"n":4.5,"q":null,"m":5,"e":6372,"s":1}],[-14,{"n":4,"q":null,"m":45,"e":6456,"s":1}],[-13,{"n":3.5,"q":null,"m":69,"e":6465}],[-12,{"n":4,"q":null,"m":24,"e":6476,"s":1}],[-11,{"n":3.5,"q":null,"m":82,"e":6484}],[-10,{"n":6,"q":null,"m":87,"e":6492,"g":1}],[-9,{"n":7,"q":null,"m":90,"e":6504,"g":1}],[-8,{"n":5,"q":null,"m":2,"e":6510,"s":1}]],"fo":[[6215,[{"t":"I"}]],[6334,[{"t":"Y"}]]]}],[7559,{"n":"Diakité","f":"Check-Oumar","fp":"MD","r":7,"c":107,"s":{"s":10,"n":2,"a":5,"d":2.12,"m":129,"am":65,"dm":13,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":74,"Sam":74,"Os":76,"On":15,"Oa":5.07,"Od":0.73,"Om":710,"Oam":47,"Odm":28,"pm":15},"p":[[-37,{"n":5,"q":null,"m":3,"e":6218,"s":1}],[-34,{"n":5,"q":null,"m":29,"e":6256,"s":1}],[-32,{"n":5,"q":null,"m":33,"e":6274,"s":1}],[-30,{"n":6,"q":null,"m":69,"e":6295}],[-29,{"n":5,"q":null,"m":2,"e":6299,"s":1}],[-28,{"n":5,"q":null,"m":27,"e":6315,"s":1}],[-26,{"n":6,"q":null,"m":32,"e":6334,"s":1}],[-25,{"n":4.5,"q":null,"m":20,"e":6344,"s":1}],[-24,{"n":4.5,"q":null,"m":90,"e":6352}],[-22,{"n":4.5,"q":null,"m":69,"e":6372}],[-21,{"n":5.5,"q":null,"m":74,"e":6385}],[-19,{"n":5,"q":null,"m":56,"e":6406}],[-18,{"n":5,"q":null,"m":77,"e":6415}],[2,{"n":3.5,"q":null,"m":55,"e":10575}],[1,{"n":6.5,"q":null,"m":74,"e":10934}]],"fo":[[6295,[{"t":"R"}]]]}],[7622,{"n":"Tattevin","f":"Arnaud","fp":"A","r":1,"c":107}],[8022,{"n":"Alfarela","f":"Migouel","fp":"A","r":8,"c":107,"s":{"g":1,"s":12,"n":2,"a":6,"d":0.71,"m":51,"am":26,"dm":13,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":16,"Sam":16,"Og":1,"Os":12,"On":2,"Oa":6,"Od":0.71,"Om":51,"Oam":26,"Odm":13,"pa":2,"Smsn":6.5,"Omsn":6.5},"p":[[2,{"n":5.5,"q":null,"m":35,"e":10575,"s":1}],[1,{"n":6.5,"q":null,"m":16,"e":10934,"g":1,"s":1}]]}],[8070,{"n":"Bernauer","f":"Maxime","fp":"MD","r":4,"c":107,"s":{"s":6.5,"n":1,"a":6.5,"m":79,"am":79,"Ss":6.5,"Sn":1,"Sa":6.5,"Sm":79,"Sam":79,"Os":6.5,"On":1,"Oa":6.5,"Om":79,"Oam":79,"pm":1},"p":[[1,{"n":6.5,"q":null,"m":79,"e":10934}]]}],[8897,{"n":"Koré","f":"Yoan","fp":"DL","r":3,"c":107}],[8901,{"n":"Filipovic","f":"Ivan","fp":"G","r":7,"c":107}],[492,{"n":"Koffi","f":"Erwin","fp":"DC","r":15,"c":129,"s":{"s":10,"n":2,"a":5,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":186,"On":36,"Oa":5.17,"Od":0.83,"Om":2856,"Oam":79,"Odm":26,"pd":34,"pm":2,"Omsn":6},"p":[[2,{"n":5,"q":null,"m":90,"e":10577}],[-21,{"n":5.5,"q":null,"m":90,"e":6386}],[-20,{"n":5,"q":null,"m":84,"e":6394}],[-17,{"n":4,"q":null,"m":90,"e":6427}],[-14,{"n":4,"q":null,"m":90,"e":6451}],[-10,{"n":8,"q":null,"m":90,"e":6490}],[-3,{"n":5,"q":null,"m":8,"e":6566,"s":1}],[-1,{"n":4.5,"q":null,"m":45,"e":6586}],[-38,{"n":4.5,"q":null,"m":90,"e":6216}],[-37,{"n":5,"q":null,"m":90,"e":6221}],[-36,{"n":5.5,"q":null,"m":90,"e":6236}],[-35,{"n":6,"q":null,"m":90,"e":6245,"g":1}],[-34,{"n":6,"q":null,"m":90,"e":6257}],[-33,{"n":5,"q":null,"m":12,"e":6264,"s":1}],[-32,{"n":5,"q":null,"m":12,"e":6275}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[-30,{"n":6,"q":null,"m":90,"e":6296}],[-28,{"n":7,"q":null,"m":90,"e":6316}],[-27,{"n":6.5,"q":null,"m":90,"e":6324}],[-26,{"n":5,"q":null,"m":90,"e":6333}],[-25,{"n":5,"q":null,"m":90,"e":6344}],[-24,{"n":4.5,"q":null,"m":90,"e":6353}],[-23,{"n":6,"q":null,"m":90,"e":6366}],[-22,{"n":5,"q":null,"m":90,"e":6371}],[-19,{"n":4.5,"q":null,"m":71,"e":6407}],[-18,{"n":4,"q":null,"m":90,"e":6411}],[-16,{"n":5,"q":null,"m":90,"e":6431}],[-15,{"n":4.5,"q":null,"m":90,"e":6446}],[-13,{"n":5.5,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":90,"e":6475}],[-11,{"n":4.5,"q":null,"m":90,"e":6485}],[-9,{"n":4.5,"q":null,"m":90,"e":6501}],[-8,{"n":5.5,"q":null,"m":90,"e":6514}],[-7,{"n":5,"q":null,"m":90,"e":6524}],[-4,{"n":5,"q":null,"m":14,"e":6555,"s":1}],[1,{"n":5,"q":null,"m":90,"e":10931}]],"fo":[[6275,[{"t":"I"},{"t":"Y"}]]]}],[499,{"n":"Olliero","f":"Alexandre","fp":"G","r":17,"c":129,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":205,"On":38,"Oa":5.39,"Od":1.07,"Om":3420,"Oam":90,"pg":38},"p":[[-2,{"n":6.5,"q":null,"m":90,"e":6576}],[-37,{"n":5.5,"q":null,"m":90,"e":6221}],[-36,{"n":6,"q":null,"m":90,"e":6236}],[-35,{"n":4,"q":null,"m":90,"e":6245}],[-34,{"n":6.5,"q":null,"m":90,"e":6257}],[-33,{"n":4.5,"q":null,"m":90,"e":6264}],[-32,{"n":6,"q":null,"m":90,"e":6275}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[-30,{"n":5.5,"q":null,"m":90,"e":6296}],[-29,{"n":4.5,"q":null,"m":90,"e":6302}],[-28,{"n":6.5,"q":null,"m":90,"e":6316}],[-27,{"n":7,"q":null,"m":90,"e":6324}],[-26,{"n":4,"q":null,"m":90,"e":6333}],[-25,{"n":6,"q":null,"m":90,"e":6344}],[-24,{"n":4.5,"q":null,"m":90,"e":6353}],[-23,{"n":6,"q":null,"m":90,"e":6366}],[-22,{"n":6,"q":null,"m":90,"e":6371}],[-21,{"n":6,"q":null,"m":90,"e":6386}],[-20,{"n":4.5,"q":null,"m":90,"e":6394}],[-18,{"n":3,"q":null,"m":90,"e":6411}],[-17,{"n":4,"q":null,"m":90,"e":6427}],[-16,{"n":7,"q":null,"m":90,"e":6431}],[-15,{"n":6,"q":null,"m":90,"e":6446}],[-14,{"n":7,"q":null,"m":90,"e":6451}],[-13,{"n":6,"q":null,"m":90,"e":6466}],[-12,{"n":3.5,"q":null,"m":90,"e":6475}],[-11,{"n":3.5,"q":null,"m":90,"e":6485}],[-10,{"n":6.5,"q":null,"m":90,"e":6490}],[-9,{"n":5.5,"q":null,"m":90,"e":6501}],[-8,{"n":6,"q":null,"m":90,"e":6514}],[-7,{"n":6,"q":null,"m":90,"e":6524}],[-6,{"n":4.5,"q":null,"m":90,"e":6535}],[-5,{"n":6,"q":null,"m":90,"e":6539}],[-4,{"n":5.5,"q":null,"m":90,"e":6555}],[-3,{"n":5,"q":null,"m":90,"e":6566}],[2,{"n":6,"q":null,"m":90,"e":10577}],[-1,{"n":4,"q":null,"m":90,"e":6586}],[1,{"n":5.5,"q":null,"m":90,"e":10931}]]}],[2946,{"n":"Sylvestre","f":"Eddy","fp":"MO","r":9,"c":129,"s":{"s":10,"n":2,"a":5,"d":0.71,"m":23,"am":12,"dm":1,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":12,"Sam":12,"Os":30.5,"On":6,"Oa":5.08,"Od":0.38,"Om":119,"Oam":20,"Odm":24,"pm":5,"pa":1},"p":[[-4,{"n":5,"q":null,"m":32,"e":6175,"s":1}],[-3,{"n":5,"q":null,"m":1,"e":6184,"s":1}],[-2,{"n":5.5,"q":null,"m":62,"e":6196}],[2,{"n":4.5,"q":null,"m":11,"e":10577,"s":1}],[-1,{"n":5,"q":null,"m":1,"e":6205,"s":1}],[1,{"n":5.5,"q":null,"m":12,"e":10931,"s":1}]]}],[4957,{"n":"Gomis","f":"David","fp":"A","r":9,"c":129,"s":{"s":10,"n":2,"a":5,"m":40,"am":20,"dm":11,"Ss":5,"Sn":1,"Sa":5,"Sm":12,"Sam":12,"Os":146,"On":29,"Oa":5.03,"Od":0.46,"Om":1107,"Oam":38,"Odm":26,"pm":21,"pa":8},"p":[[-6,{"n":5,"q":null,"m":13,"e":6531}],[-5,{"n":5,"q":null,"m":90,"e":6546}],[-4,{"n":5,"q":null,"m":43,"e":6550}],[-38,{"n":4.5,"q":null,"m":17,"e":6208,"s":1}],[-37,{"n":4,"q":null,"m":28,"e":6222,"s":1}],[-36,{"n":4.5,"q":null,"m":16,"e":6231,"s":1}],[-35,{"n":4.5,"q":null,"m":21,"e":6241,"s":1}],[-34,{"n":4.5,"q":null,"m":12,"e":6256,"s":1}],[-33,{"n":5,"q":null,"m":71,"e":6261}],[-32,{"n":4.5,"q":null,"m":17,"e":6275,"s":1}],[-31,{"n":5.5,"q":null,"m":14,"e":6281,"s":1}],[-30,{"n":5,"q":null,"m":14,"e":6293,"s":1}],[-29,{"n":5,"q":null,"m":61,"e":6300}],[-28,{"n":5.5,"q":null,"m":53,"e":6311,"s":1}],[-27,{"n":5.5,"q":null,"m":30,"e":6321,"s":1}],[-26,{"n":5,"q":null,"m":15,"e":6328,"s":1}],[-18,{"n":5,"q":null,"m":12,"e":6408,"s":1}],[-17,{"n":5,"q":null,"m":34,"e":6422,"s":1}],[-16,{"n":5.5,"q":null,"m":69,"e":6430}],[-15,{"n":4.5,"q":null,"m":26,"e":6442,"s":1}],[-14,{"n":5,"q":null,"m":60,"e":6451}],[-13,{"n":5,"q":null,"m":19,"e":6464,"s":1}],[-12,{"n":5.5,"q":null,"m":68,"e":6470}],[-11,{"n":6,"q":null,"m":24,"e":6478,"s":1}],[-3,{"n":6,"q":null,"m":81,"e":6560}],[-2,{"n":5.5,"q":null,"m":79,"e":6571}],[2,{"n":5,"q":null,"m":28,"e":10577,"s":1}],[-1,{"n":5,"q":null,"m":80,"e":6583}],[1,{"n":5,"q":null,"m":12,"e":10931,"s":1}]],"fo":[[6300,[{"t":"Y"}]],[6311,[{"t":"Y"}]]]}],[5070,{"n":"Boto","f":"Kenji-Van","fp":"DL","r":5,"c":129,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":177,"am":89,"dm":2,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":67,"On":14,"Oa":4.79,"Od":0.43,"Om":901,"Oam":64,"Odm":37,"pd":14},"p":[[-34,{"n":3.5,"q":null,"m":90,"e":6257}],[-32,{"n":5,"q":null,"m":1,"e":6273,"s":1}],[-30,{"n":5,"q":null,"m":45,"e":6297,"s":1}],[-28,{"n":5,"q":null,"m":1,"e":6309,"s":1}],[-27,{"n":4.5,"q":null,"m":90,"e":6318}],[-24,{"n":5,"q":null,"m":90,"e":6348}],[-17,{"n":5,"q":null,"m":90,"e":6421}],[-13,{"n":5,"q":null,"m":90,"e":6462}],[-8,{"n":5,"q":null,"m":37,"e":6508,"s":1}],[-3,{"n":5,"q":null,"m":10,"e":6560,"s":1}],[-2,{"n":5,"q":null,"m":90,"e":6570}],[2,{"n":4.5,"q":null,"m":87,"e":10577}],[-1,{"n":4.5,"q":null,"m":90,"e":6581}],[1,{"n":5,"q":null,"m":90,"e":10931}]]}],[5116,{"n":"Assifuah","f":"Ebenezer","fp":"A","r":7,"c":129,"s":{"g":1,"s":10.5,"n":2,"a":5.25,"d":2.47,"m":147,"am":74,"dm":9,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":67,"Sam":67,"Og":7,"Os":181.5,"On":36,"Oa":5.04,"Od":1.1,"Om":1982,"Oam":55,"Odm":31,"pm":12,"pa":24,"Smsn":7,"Omsn":6.5},"p":[[-38,{"n":7.5,"q":null,"m":65,"e":6216,"g":1}],[-37,{"n":4.5,"q":null,"m":14,"e":6221,"s":1}],[-36,{"n":5,"q":null,"m":22,"e":6236,"s":1}],[-35,{"n":6.5,"q":null,"m":27,"e":6245,"g":1,"s":1}],[-34,{"n":4,"q":null,"m":11,"e":6257,"s":1}],[-33,{"n":5,"q":null,"m":2,"e":6264,"s":1}],[-31,{"n":5,"q":null,"m":62,"e":6280}],[-30,{"n":4.5,"q":null,"m":4,"e":6296,"s":1}],[-28,{"n":4.5,"q":null,"m":45,"e":6316,"s":1}],[-26,{"n":5,"q":null,"m":18,"e":6333,"s":1}],[-25,{"n":5,"q":null,"m":25,"e":6344,"s":1}],[-24,{"n":4.5,"q":null,"m":30,"e":6353,"s":1}],[-23,{"n":5,"q":null,"m":60,"e":6366}],[-22,{"n":6.5,"q":null,"m":20,"e":6371,"g":1,"s":1}],[-21,{"n":4.5,"q":null,"m":25,"e":6386,"s":1}],[-20,{"n":4,"q":null,"m":16,"e":6394,"s":1}],[-19,{"n":4.5,"q":null,"m":90,"e":6407}],[-18,{"n":4.5,"q":null,"m":28,"e":6411,"s":1}],[-17,{"n":3,"q":null,"m":69,"e":6427}],[-16,{"n":4,"q":null,"m":62,"e":6431}],[-15,{"n":5,"q":null,"m":86,"e":6446}],[-14,{"n":5,"q":null,"m":45,"e":6451,"s":1}],[-12,{"n":5,"q":null,"m":72,"e":6475}],[-11,{"n":6,"q":null,"m":90,"e":6485}],[-10,{"n":8,"q":null,"m":90,"e":6490,"g":2}],[-9,{"n":5,"q":null,"m":90,"e":6501}],[-8,{"n":7,"q":null,"m":90,"e":6514,"g":1}],[-7,{"n":5.5,"q":null,"m":78,"e":6524}],[-6,{"n":5,"q":null,"m":61,"e":6535}],[-5,{"n":4.5,"q":null,"m":89,"e":6539}],[-4,{"n":5.5,"q":null,"m":90,"e":6555}],[-3,{"n":4,"q":null,"m":90,"e":6566}],[-2,{"n":4.5,"q":null,"m":90,"e":6576}],[2,{"n":3.5,"q":null,"m":80,"e":10577}],[-1,{"n":4,"q":null,"m":79,"e":6586}],[1,{"n":7,"q":null,"m":67,"e":10931,"g":1}]],"fo":[[6216,[{"t":"I"}]],[6316,[{"t":"Y"}]],[6344,[{"t":"Y"}]]]}],[5209,{"n":"Armand","f":"Romain","fp":"A","r":18,"c":129,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":157,"am":79,"dm":1,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":78,"Sam":78,"Og":7,"Os":180.5,"On":36,"Oa":5.01,"Od":1.28,"Om":2657,"Oam":74,"Odm":24,"pm":6,"pa":30,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":45,"e":6216,"s":1}],[-37,{"n":5,"q":null,"m":90,"e":6221}],[-36,{"n":6,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":63,"e":6245}],[-34,{"n":7,"q":null,"m":89,"e":6257}],[-33,{"n":6,"q":null,"m":88,"e":6264}],[-32,{"n":7,"q":null,"m":90,"e":6275}],[-31,{"n":5,"q":null,"m":74,"e":6280}],[-30,{"n":4.5,"q":null,"m":15,"e":6296,"s":1}],[-29,{"n":6,"q":null,"m":16,"e":6302,"g":1,"s":1}],[-26,{"n":3.5,"q":null,"m":48,"e":6333}],[-25,{"n":4,"q":null,"m":88,"e":6344}],[-24,{"n":4,"q":null,"m":90,"e":6353}],[-23,{"n":6,"q":null,"m":81,"e":6366}],[-22,{"n":7.5,"q":null,"m":81,"e":6371,"g":2}],[-21,{"n":4.5,"q":null,"m":90,"e":6386}],[-20,{"n":4,"q":null,"m":90,"e":6394}],[-19,{"n":4.5,"q":null,"m":90,"e":6407}],[-18,{"n":4,"q":null,"m":90,"e":6411}],[-17,{"n":4,"q":null,"m":90,"e":6427}],[-16,{"n":4,"q":null,"m":88,"e":6431}],[-14,{"n":3,"q":null,"m":68,"e":6451}],[-13,{"n":6.5,"q":null,"m":89,"e":6466,"g":1}],[-12,{"n":6.5,"q":null,"m":90,"e":6475,"g":1}],[-11,{"n":3.5,"q":null,"m":90,"e":6485}],[-10,{"n":8,"q":null,"m":90,"e":6490,"g":1}],[-8,{"n":7,"q":null,"m":38,"e":6514,"g":1,"s":1}],[-7,{"n":4.5,"q":null,"m":12,"e":6524,"s":1}],[-6,{"n":4.5,"q":null,"m":80,"e":6535}],[-5,{"n":5,"q":null,"m":90,"e":6539}],[-4,{"n":4.5,"q":null,"m":25,"e":6555,"s":1}],[-3,{"n":4,"q":null,"m":82,"e":6566}],[-2,{"n":3.5,"q":null,"m":90,"e":6576}],[2,{"n":5,"q":null,"m":79,"e":10577}],[-1,{"n":3.5,"q":null,"m":70,"e":6586}],[1,{"n":5.5,"q":null,"m":78,"e":10931}]],"fo":[[6353,[{"t":"Y"}]]]}],[6016,{"n":"Essende","f":"Samuel","fp":"A","r":8,"c":129,"s":{"s":8,"n":2,"a":4,"m":33,"am":17,"dm":9,"Ss":4,"Sn":1,"Sa":4,"Sm":23,"Sam":23,"Os":8,"On":2,"Oa":4,"Om":33,"Oam":17,"Odm":9,"pa":2},"p":[[2,{"n":4,"q":null,"m":10,"e":10577,"s":1}],[1,{"n":4,"q":null,"m":23,"e":10931,"s":1}]]}],[6235,{"n":"Dembélé","f":"Mahamadou","fp":"DC","r":7,"c":129,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":63,"On":13,"Oa":4.85,"Od":0.43,"Om":664,"Oam":51,"Odm":39,"pd":13},"p":[[-38,{"n":4.5,"q":null,"m":82,"e":6216}],[-35,{"n":4.5,"q":null,"m":90,"e":6245}],[-33,{"n":4.5,"q":null,"m":78,"e":6264}],[-32,{"n":5,"q":null,"m":78,"e":6275,"s":1}],[-29,{"n":5,"q":null,"m":90,"e":6302}],[-28,{"n":5.5,"q":null,"m":2,"e":6316,"s":1}],[-27,{"n":5.5,"q":null,"m":6,"e":6324,"s":1}],[-26,{"n":4,"q":null,"m":90,"e":6333}],[-21,{"n":5,"q":null,"m":26,"e":6386,"s":1}],[-17,{"n":5,"q":null,"m":9,"e":6420,"s":1}],[-10,{"n":5,"q":null,"m":11,"e":6497,"s":1}],[-9,{"n":5,"q":null,"m":12,"e":6498,"s":1}],[1,{"n":4.5,"q":null,"m":90,"e":10931}]],"fo":[[6245,[{"t":"Y"}]]]}],[6727,{"n":"Ndiaye","f":"Abdourahmane","fp":"MD","r":7,"c":129,"s":{"Os":86,"On":18,"Oa":4.78,"Od":0.55,"Om":413,"Oam":23,"Odm":27,"pm":18},"p":[[-38,{"n":5,"q":null,"m":90,"e":6216}],[-36,{"n":5.5,"q":null,"m":16,"e":6236,"s":1}],[-35,{"n":5,"q":null,"m":2,"e":6245,"s":1}],[-34,{"n":5,"q":null,"m":7,"e":6257,"s":1}],[-30,{"n":4.5,"q":null,"m":4,"e":6296,"s":1}],[-29,{"n":5,"q":null,"m":1,"e":6302,"s":1}],[-27,{"n":5,"q":null,"m":6,"e":6324,"s":1}],[-23,{"n":5,"q":null,"m":30,"e":6366,"s":1}],[-18,{"n":4.5,"q":null,"m":19,"e":6411,"s":1}],[-15,{"n":5,"q":null,"m":59,"e":6446}],[-11,{"n":5,"q":null,"m":11,"e":6485,"s":1}],[-10,{"n":5,"q":null,"m":8,"e":6490,"s":1}],[-9,{"n":5,"q":null,"m":17,"e":6501,"s":1}],[-8,{"n":4.5,"q":null,"m":12,"e":6514,"s":1}],[-5,{"n":5,"q":null,"m":1,"e":6539,"s":1}],[-4,{"n":4,"q":null,"m":76,"e":6555}],[-3,{"n":5,"q":null,"m":8,"e":6566,"s":1}],[-1,{"n":3,"q":null,"m":46,"e":6586,"s":1}]]}],[6730,{"n":"Bury","f":"Louis","fp":"DC","r":3,"c":129,"s":{"Os":13,"On":3,"Oa":4.33,"Od":0.76,"Om":182,"Oam":61,"Odm":46,"pd":3},"p":[[-38,{"n":5,"q":null,"m":8,"e":6216,"s":1}],[-20,{"n":4.5,"q":null,"m":84,"e":6394}],[-18,{"n":3.5,"q":null,"m":90,"e":6411}]]}],[6736,{"n":"Beusnard","f":"Steeve","fp":"MO","r":14,"c":129,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":140,"am":70,"dm":11,"Ss":6,"Sn":1,"Sa":6,"Sm":78,"Sam":78,"Og":3,"Os":171.5,"On":34,"Oa":5.04,"Od":0.84,"Om":1612,"Oam":47,"Odm":29,"pm":16,"pa":18,"Omsn":6},"p":[[-37,{"n":5.5,"q":null,"m":26,"e":6221,"s":1}],[-36,{"n":6,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":10,"e":6245,"s":1}],[-34,{"n":7.5,"q":null,"m":90,"e":6257}],[-33,{"n":5,"q":null,"m":12,"e":6264,"s":1}],[-32,{"n":6,"q":null,"m":8,"e":6275,"g":1,"s":1}],[-31,{"n":5,"q":null,"m":4,"e":6280,"s":1}],[-30,{"n":5.5,"q":null,"m":61,"e":6296}],[-29,{"n":4.5,"q":null,"m":29,"e":6302,"s":1}],[-28,{"n":4.5,"q":null,"m":25,"e":6316,"s":1}],[-27,{"n":6,"q":null,"m":15,"e":6324,"g":1,"s":1}],[-26,{"n":4.5,"q":null,"m":11,"e":6333,"s":1}],[-25,{"n":5,"q":null,"m":65,"e":6344}],[-24,{"n":4,"q":null,"m":30,"e":6353,"s":1}],[-23,{"n":6.5,"q":null,"m":30,"e":6366,"g":1,"s":1}],[-22,{"n":5,"q":null,"m":70,"e":6371}],[-21,{"n":5,"q":null,"m":65,"e":6386}],[-20,{"n":5,"q":null,"m":69,"e":6394}],[-18,{"n":4.5,"q":null,"m":45,"e":6411,"s":1}],[-17,{"n":4.5,"q":null,"m":21,"e":6427,"s":1}],[-16,{"n":4.5,"q":null,"m":28,"e":6431,"s":1}],[-15,{"n":5,"q":null,"m":67,"e":6446}],[-14,{"n":3,"q":null,"m":45,"e":6451}],[-13,{"n":5.5,"q":null,"m":81,"e":6466}],[-12,{"n":4.5,"q":null,"m":21,"e":6475,"s":1}],[-11,{"n":4,"q":null,"m":79,"e":6485}],[-10,{"n":5,"q":null,"m":90,"e":6490}],[-9,{"n":5,"q":null,"m":80,"e":6501}],[-8,{"n":6,"q":null,"m":78,"e":6514}],[-7,{"n":4,"q":null,"m":90,"e":6524}],[-6,{"n":4.5,"q":null,"m":9,"e":6535,"s":1}],[-5,{"n":5,"q":null,"m":28,"e":6539,"s":1}],[2,{"n":5,"q":null,"m":62,"e":10577}],[1,{"n":6,"q":null,"m":78,"e":10931}]],"fo":[[6221,[{"t":"Y"}]],[6344,[{"t":"Y"}]],[6353,[{"t":"Y"}]]]}],[6748,{"n":"Daubin","f":"Quentin","fp":"MD","r":15,"c":129,"s":{"s":10,"n":2,"a":5,"d":1.41,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":176.5,"On":34,"Oa":5.19,"Od":0.97,"Om":2556,"Oam":75,"Odm":22,"pm":34},"p":[[-38,{"n":5.5,"q":null,"m":45,"e":6216}],[-37,{"n":6,"q":null,"m":76,"e":6221}],[-35,{"n":6,"q":null,"m":90,"e":6245}],[-34,{"n":6,"q":null,"m":83,"e":6257}],[-33,{"n":6,"q":null,"m":90,"e":6264}],[-32,{"n":6,"q":null,"m":90,"e":6275}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[-30,{"n":6.5,"q":null,"m":90,"e":6296}],[-29,{"n":6,"q":null,"m":90,"e":6302}],[-28,{"n":6,"q":null,"m":88,"e":6316}],[-27,{"n":7,"q":null,"m":84,"e":6324}],[-26,{"n":4,"q":null,"m":79,"e":6333}],[-25,{"n":5.5,"q":null,"m":88,"e":6344}],[-24,{"n":4.5,"q":null,"m":60,"e":6353}],[-22,{"n":4.5,"q":null,"m":86,"e":6371}],[-21,{"n":4.5,"q":null,"m":90,"e":6386}],[-20,{"n":5.5,"q":null,"m":90,"e":6394}],[-19,{"n":5.5,"q":null,"m":60,"e":6407,"s":1}],[-18,{"n":4,"q":null,"m":62,"e":6411}],[-17,{"n":4,"q":null,"m":60,"e":6427}],[-16,{"n":4,"q":null,"m":78,"e":6431}],[-14,{"n":3.5,"q":null,"m":90,"e":6451}],[-13,{"n":5.5,"q":null,"m":90,"e":6466}],[-12,{"n":6,"q":null,"m":69,"e":6475}],[-11,{"n":5,"q":null,"m":48,"e":6485,"s":1}],[-10,{"n":6.5,"q":null,"m":82,"e":6490}],[-8,{"n":5,"q":null,"m":31,"e":6514,"s":1}],[-6,{"n":5.5,"q":null,"m":90,"e":6535}],[-5,{"n":5.5,"q":null,"m":90,"e":6539}],[-3,{"n":3,"q":null,"m":89,"e":6566}],[-2,{"n":5,"q":null,"m":10,"e":6576,"s":1}],[2,{"n":4,"q":null,"m":90,"e":10577}],[-1,{"n":4,"q":null,"m":18,"e":6586}],[1,{"n":6,"q":null,"m":90,"e":10931}]],"fo":[[6245,[{"t":"Y"}]],[6257,[{"t":"Y"}]],[6275,[{"t":"Y"}]],[6316,[{"t":"Y"}]]]}],[6757,{"n":"Batisse","f":"Antoine","fp":"DC","r":19,"c":129,"s":{"s":4,"n":1,"a":4,"m":90,"am":90,"Og":3,"Os":172.5,"On":36,"Oa":4.79,"Od":1,"Om":3235,"Oam":90,"Odm":1,"pd":34,"pm":2,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6216}],[-37,{"n":3,"q":null,"m":90,"e":6221}],[-36,{"n":5.5,"q":null,"m":90,"e":6236}],[-35,{"n":5,"q":null,"m":90,"e":6245}],[-34,{"n":6,"q":null,"m":90,"e":6257}],[-33,{"n":6,"q":null,"m":90,"e":6264,"g":1}],[-32,{"n":5.5,"q":null,"m":90,"e":6275}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[-30,{"n":7.5,"q":null,"m":90,"e":6296,"g":1}],[-29,{"n":5,"q":null,"m":90,"e":6302}],[-28,{"n":6,"q":null,"m":90,"e":6316}],[-27,{"n":5.5,"q":null,"m":90,"e":6324}],[-25,{"n":5,"q":null,"m":90,"e":6344}],[-24,{"n":4,"q":null,"m":90,"e":6353}],[-23,{"n":5.5,"q":null,"m":90,"e":6366}],[-22,{"n":4,"q":null,"m":90,"e":6371}],[-21,{"n":4.5,"q":null,"m":90,"e":6386}],[-20,{"n":5,"q":null,"m":90,"e":6394}],[-19,{"n":5,"q":null,"m":90,"e":6407}],[-18,{"n":3,"q":null,"m":90,"e":6411}],[-17,{"n":2.5,"q":null,"m":90,"e":6427}],[-16,{"n":6,"q":null,"m":90,"e":6431,"g":1}],[-15,{"n":5,"q":null,"m":90,"e":6446}],[-14,{"n":3.5,"q":null,"m":90,"e":6451}],[-13,{"n":5,"q":null,"m":90,"e":6466}],[-12,{"n":4,"q":null,"m":90,"e":6475}],[-9,{"n":4.5,"q":null,"m":85,"e":6501}],[-8,{"n":6,"q":null,"m":90,"e":6514}],[-7,{"n":4,"q":null,"m":90,"e":6524}],[-6,{"n":5,"q":null,"m":90,"e":6535}],[-5,{"n":5,"q":null,"m":90,"e":6539}],[-4,{"n":4.5,"q":null,"m":90,"e":6555}],[-3,{"n":4,"q":null,"m":90,"e":6566}],[-2,{"n":5,"q":null,"m":90,"e":6576}],[2,{"n":4,"q":null,"m":90,"e":10577}],[-1,{"n":4,"q":null,"m":90,"e":6586}]],"fo":[[6221,[{"t":"Y"}]],[6275,[{"t":"Y"}]],[6280,[{"t":"Y"}]],[6353,[{"t":"Y"}]]]}],[6764,{"n":"Bertrand","f":"Benjamin","fp":"G","r":7,"c":129,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":1.06,"Om":180,"Oam":90,"pg":2},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6216}],[-19,{"n":4,"q":null,"m":90,"e":6407}]]}],[6843,{"n":"Lobry","f":"Victor","fp":"MD","r":17,"c":129,"s":{"g":1,"s":11.5,"n":2,"a":5.75,"d":1.77,"m":180,"am":90,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":4,"Os":196,"On":39,"Oa":5.03,"Od":0.99,"Om":3339,"Oam":86,"Odm":9,"pm":23,"pa":16,"Smsn":7,"Omsn":6},"p":[[-38,{"n":6.5,"q":null,"m":90,"e":6216,"g":1}],[-37,{"n":4,"q":null,"m":76,"e":6221}],[-36,{"n":4.5,"q":null,"m":68,"e":6236}],[-35,{"n":4,"q":null,"m":88,"e":6245}],[-34,{"n":7,"q":null,"m":82,"e":6257,"g":1}],[-33,{"n":5.5,"q":null,"m":78,"e":6264}],[-32,{"n":4.5,"q":null,"m":82,"e":6275}],[-31,{"n":5,"q":null,"m":90,"e":6280}],[-30,{"n":6,"q":null,"m":90,"e":6296,"g":1}],[-29,{"n":5,"q":null,"m":89,"e":6302}],[-28,{"n":5.5,"q":null,"m":90,"e":6316}],[-27,{"n":6,"q":null,"m":90,"e":6324}],[-26,{"n":4.5,"q":null,"m":90,"e":6333}],[-25,{"n":5.5,"q":null,"m":90,"e":6344}],[-24,{"n":5,"q":null,"m":90,"e":6353}],[-23,{"n":7,"q":null,"m":90,"e":6366}],[-22,{"n":7,"q":null,"m":90,"e":6371}],[-21,{"n":5,"q":null,"m":82,"e":6386}],[-20,{"n":5,"q":null,"m":90,"e":6394}],[-19,{"n":4,"q":null,"m":90,"e":6407}],[-18,{"n":5,"q":null,"m":81,"e":6411}],[-17,{"n":3.5,"q":null,"m":90,"e":6427}],[-16,{"n":4.5,"q":null,"m":88,"e":6431}],[-15,{"n":5,"q":null,"m":90,"e":6446}],[-14,{"n":3.5,"q":null,"m":84,"e":6451}],[-13,{"n":6,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":90,"e":6475}],[-11,{"n":4,"q":null,"m":90,"e":6485}],[-9,{"n":5.5,"q":null,"m":90,"e":6501}],[-8,{"n":4.5,"q":null,"m":59,"e":6514}],[-7,{"n":5,"q":null,"m":90,"e":6524}],[-6,{"n":5,"q":null,"m":90,"e":6535}],[-5,{"n":5,"q":null,"m":90,"e":6539}],[-4,{"n":4.5,"q":null,"m":90,"e":6555}],[-3,{"n":4,"q":null,"m":52,"e":6566,"s":1}],[-2,{"n":5,"q":null,"m":80,"e":6576}],[2,{"n":4.5,"q":null,"m":90,"e":10577}],[-1,{"n":3,"q":null,"m":90,"e":6586}],[1,{"n":7,"q":null,"m":90,"e":10931,"g":1}]],"fo":[[6280,[{"t":"Y"}]]]}],[6871,{"n":"Meliande","f":"Paul","fp":"MD","r":1,"c":129,"s":{"Os":32,"On":7,"Oa":4.57,"Od":0.67,"Om":155,"Oam":22,"Odm":24,"pm":6,"pa":1},"p":[[-38,{"n":5.5,"q":null,"m":11,"e":6216,"s":1}],[-19,{"n":5,"q":null,"m":19,"e":6407,"s":1}],[-18,{"n":4.5,"q":null,"m":9,"e":6411,"s":1}],[-16,{"n":4.5,"q":null,"m":2,"e":6431,"s":1}],[-15,{"n":5,"q":null,"m":4,"e":6446,"s":1}],[-4,{"n":3.5,"q":null,"m":65,"e":6555}],[-1,{"n":4,"q":null,"m":45,"e":6586,"s":1}]]}],[6943,{"n":"Evans","f":"Jean Lambert","fp":"DL","r":10,"c":129,"s":{"s":5,"n":1,"a":5,"m":3,"am":3,"Os":5,"On":1,"Oa":5,"Om":3,"Oam":3,"pd":1},"p":[[2,{"n":5,"q":null,"m":3,"e":10577,"s":1}]]}],[7297,{"n":"Kouassi","f":"Xavier","fp":"MD","r":14,"c":129,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":165,"am":83,"dm":11,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":172.5,"On":33,"Oa":5.23,"Od":0.79,"Om":2803,"Oam":85,"Odm":8,"pd":12,"pm":21},"p":[[-38,{"n":5,"q":null,"m":90,"e":6216}],[-37,{"n":6,"q":null,"m":90,"e":6221}],[-36,{"n":6,"q":null,"m":90,"e":6236}],[-35,{"n":4,"q":null,"m":90,"e":6245}],[-34,{"n":6.5,"q":null,"m":90,"e":6257}],[-33,{"n":5,"q":null,"m":90,"e":6264}],[-32,{"n":6,"q":null,"m":90,"e":6275}],[-31,{"n":5.5,"q":null,"m":90,"e":6280}],[-30,{"n":5.5,"q":null,"m":90,"e":6296}],[-29,{"n":5,"q":null,"m":90,"e":6302}],[-28,{"n":6,"q":null,"m":90,"e":6316}],[-27,{"n":5.5,"q":null,"m":90,"e":6324}],[-26,{"n":5.5,"q":null,"m":90,"e":6333}],[-24,{"n":4.5,"q":null,"m":74,"e":6353}],[-23,{"n":6.5,"q":null,"m":90,"e":6366}],[-22,{"n":5.5,"q":null,"m":90,"e":6371}],[-21,{"n":5,"q":null,"m":65,"e":6386}],[-20,{"n":4.5,"q":null,"m":74,"e":6394}],[-19,{"n":4,"q":null,"m":90,"e":6407}],[-16,{"n":5,"q":null,"m":83,"e":6431}],[-15,{"n":5.5,"q":null,"m":90,"e":6446}],[-14,{"n":3.5,"q":null,"m":68,"e":6451}],[-13,{"n":6,"q":null,"m":90,"e":6466}],[-12,{"n":5,"q":null,"m":90,"e":6475}],[-11,{"n":5,"q":null,"m":73,"e":6485}],[-10,{"n":6.5,"q":null,"m":89,"e":6490}],[-9,{"n":4.5,"q":null,"m":73,"e":6501}],[-8,{"n":6,"q":null,"m":78,"e":6514}],[-7,{"n":4,"q":null,"m":88,"e":6524}],[-6,{"n":4.5,"q":null,"m":90,"e":6535}],[-5,{"n":6,"q":null,"m":73,"e":6539}],[2,{"n":4.5,"q":null,"m":75,"e":10577}],[1,{"n":5,"q":null,"m":90,"e":10931}]],"fo":[[6216,[{"t":"Y"}]]]}],[8056,{"n":"Nisic","f":"Jovan","fp":"MD","r":11,"c":129,"s":{"s":10,"n":2,"a":5,"m":47,"am":24,"dm":6,"Ss":5,"Sn":1,"Sa":5,"Sm":19,"Sam":19,"Os":10,"On":2,"Oa":5,"Om":47,"Oam":24,"Odm":6,"pm":2},"p":[[2,{"n":5,"q":null,"m":28,"e":10577,"s":1}],[1,{"n":5,"q":null,"m":19,"e":10931,"s":1}]]}],[8065,{"n":"Dianessy","f":"Djibril","fp":"A","r":12,"c":129,"s":{"s":11,"n":2,"a":5.5,"m":133,"am":67,"dm":6,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":71,"Sam":71,"Os":11,"On":2,"Oa":5.5,"Om":133,"Oam":67,"Odm":6,"pa":2},"p":[[2,{"n":5.5,"q":null,"m":62,"e":10577}],[1,{"n":5.5,"q":null,"m":71,"e":10931}]]}],[2694,{"n":"Lemaitre","f":"Nicolas","fp":"G","r":14,"c":163,"s":{"s":5.5,"n":1,"a":5.5,"m":90,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":5.5,"On":1,"Oa":5.5,"Om":90,"Oam":90,"pg":1},"p":[[1,{"n":5.5,"q":null,"m":90,"e":10936}]]}],[2820,{"n":"Pelletier","f":"Louis","fp":"G","r":1,"c":163}],[3519,{"n":"Cissokho","f":"Till","fp":"DC","r":1,"c":163,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":4.5,"On":1,"Oa":4.5,"Om":90,"Oam":90,"pd":1},"p":[[1,{"n":4.5,"q":null,"m":90,"e":10936}]]}],[3526,{"n":"Tégar","f":"Alexandre","fp":"DC","r":2,"c":163}],[5115,{"n":"Boé-Kane","f":"Yann","fp":"MD","r":12,"c":163}],[5118,{"n":"Padovani","f":"Romain","fp":"MD","r":6,"c":163,"s":{"s":5,"n":1,"a":5,"m":90,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":5,"On":1,"Oa":5,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":5,"q":null,"m":90,"e":10936}]]}],[5135,{"n":"Lambese","f":"Stéphane","fp":"DL","r":8,"c":163}],[6729,{"n":"Bansais","f":"Damon","fp":"DL","r":5,"c":163,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":1,"Os":37,"On":8,"Oa":4.63,"Od":1.03,"Om":628,"Oam":79,"Odm":29,"pd":6,"pm":2,"Omsn":6},"p":[[-20,{"n":5,"q":null,"m":6,"e":6394,"s":1}],[-6,{"n":5,"q":null,"m":90,"e":6535}],[-5,{"n":5,"q":null,"m":90,"e":6539}],[-4,{"n":5,"q":null,"m":90,"e":6555}],[-3,{"n":4,"q":null,"m":82,"e":6566}],[-2,{"n":6,"q":null,"m":90,"e":6576,"g":1}],[-1,{"n":2.5,"q":null,"m":90,"e":6586}],[1,{"n":4.5,"q":null,"m":90,"e":10936}]]}],[6750,{"n":"Diaby","f":"Alassane","fp":"DC","r":2,"c":163,"s":{"s":5.5,"n":1,"a":5.5,"m":90,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":5.5,"On":1,"Oa":5.5,"Om":90,"Oam":90,"pd":1},"p":[[1,{"n":5.5,"q":null,"m":90,"e":10936}]]}],[6842,{"n":"Zabou","f":"Cyril","fp":"MO","r":10,"c":163,"s":{"Os":99,"On":21,"Oa":4.71,"Od":0.93,"Om":867,"Oam":41,"Odm":33,"pm":15,"pa":6},"p":[[-38,{"n":4,"q":null,"m":59,"e":6215}],[-37,{"n":5,"q":null,"m":85,"e":6221}],[-36,{"n":7,"q":null,"m":45,"e":6232,"s":1}],[-35,{"n":4.5,"q":null,"m":2,"e":6240,"s":1}],[-33,{"n":5,"q":null,"m":1,"e":6260,"s":1}],[-32,{"n":5,"q":null,"m":7,"e":6276,"s":1}],[-31,{"n":3.5,"q":null,"m":45,"e":6284}],[-30,{"n":4,"q":null,"m":65,"e":6289}],[-24,{"n":3,"q":null,"m":83,"e":6350}],[-23,{"n":5,"q":null,"m":9,"e":6360,"s":1}],[-22,{"n":4,"q":null,"m":53,"e":6370}],[-20,{"n":5,"q":null,"m":84,"e":6391}],[-19,{"n":5.5,"q":null,"m":90,"e":6407}],[-18,{"n":5,"q":null,"m":7,"e":6405,"s":1}],[-17,{"n":6.5,"q":null,"m":10,"e":6424,"s":1}],[-16,{"n":5,"q":null,"m":4,"e":6429,"s":1}],[-9,{"n":4.5,"q":null,"m":71,"e":6499}],[-8,{"n":4.5,"q":null,"m":52,"e":6508,"s":1}],[-7,{"n":3.5,"q":null,"m":72,"e":6520}],[-6,{"n":5,"q":null,"m":7,"e":6536,"s":1}],[-3,{"n":4.5,"q":null,"m":16,"e":6561,"s":1}]]}],[7991,{"n":"Lejeune","f":"Romain","fp":"G","r":7,"c":163}],[8001,{"n":"Bahassa","f":"Yassine","fp":"A","r":17,"c":163,"s":{"s":6,"n":1,"a":6,"m":90,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":6,"On":1,"Oa":6,"Om":90,"Oam":90,"pa":1},"p":[[1,{"n":6,"q":null,"m":90,"e":10936}]],"fo":[[10936,[{"t":"Y"}]]]}],[8002,{"n":"Dadoune","f":"Ottman","fp":"A","r":10,"c":163}],[8003,{"n":"Rotsen","f":"Johan","fp":"MD","r":5,"c":163,"s":{"s":4,"n":1,"a":4,"m":90,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":4,"On":1,"Oa":4,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":4,"q":null,"m":90,"e":10936}]]}],[8004,{"n":"Demouchy","f":"Albin","fp":"DC","r":8,"c":163}],[8011,{"n":"Sangare","f":"Gustavo Fabrice","fp":"MD","r":6,"c":163,"s":{"s":5,"n":1,"a":5,"m":90,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":5,"On":1,"Oa":5,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":5,"q":null,"m":90,"e":10936}]]}],[8031,{"n":"Belkorchia","f":"Sami","fp":"DC","r":11,"c":163}],[8042,{"n":"Taillan","f":"Robin","fp":"DL","r":11,"c":163}],[8049,{"n":"Hadded","f":"Mannoubi","fp":"A","r":10,"c":163,"s":{"g":1,"s":7,"n":1,"a":7,"m":90,"am":90,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":1,"Os":7,"On":1,"Oa":7,"Om":90,"Oam":90,"pa":1,"Smsn":7,"Omsn":7},"p":[[1,{"n":7,"q":null,"m":90,"e":10936,"g":1}]]}],[8058,{"n":"Dekoke","f":"Nathan","fp":"DL","r":6,"c":163,"s":{"s":4,"n":1,"a":4,"m":90,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":4,"On":1,"Oa":4,"Om":90,"Oam":90,"pd":1},"p":[[1,{"n":4,"q":null,"m":90,"e":10936}]]}],[8066,{"n":"Gbelle","f":"Garland","fp":"MO","r":1,"c":163,"s":{"s":4.5,"n":1,"a":4.5,"m":90,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":4.5,"On":1,"Oa":4.5,"Om":90,"Oam":90,"pm":1},"p":[[1,{"n":4.5,"q":null,"m":90,"e":10936}]]}],[8495,{"n":"Koumba","f":"Moise","fp":"A","r":1,"c":163}],[8504,{"n":"Metelus","f":"Rénald","fp":"MD","r":2,"c":163}],[8900,{"n":"Cissé","f":"Souleymane Djimou","fp":"DC","r":5,"c":163}],[8902,{"n":"Nazon","f":"Duckens","fp":"A","r":7,"c":163}],[490,{"n":"Leborgne","f":"Jordan","fp":"MD","r":17,"c":100,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"m":125,"am":63,"dm":15,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":73,"Sam":73,"Og":3,"Os":154.5,"On":31,"Oa":4.98,"Od":0.66,"Om":1999,"Oam":64,"Odm":32,"pm":31,"Omsn":5},"p":[[-26,{"n":5.5,"q":null,"m":89,"e":6335}],[-8,{"n":4,"q":null,"m":79,"e":6516}],[-7,{"n":5.5,"q":null,"m":88,"e":6525}],[-38,{"n":5,"q":null,"m":90,"e":6212}],[-36,{"n":5,"q":null,"m":80,"e":6234}],[-35,{"n":5.5,"q":null,"m":89,"e":6243,"g":1}],[-34,{"n":5.5,"q":null,"m":86,"e":6250}],[-33,{"n":5,"q":null,"m":31,"e":6263,"s":1}],[-32,{"n":5,"q":null,"m":79,"e":6268}],[-31,{"n":4.5,"q":null,"m":89,"e":6284}],[-30,{"n":5,"q":null,"m":89,"e":6291,"g":1}],[-29,{"n":6,"q":null,"m":90,"e":6303}],[-28,{"n":5,"q":null,"m":83,"e":6308}],[-27,{"n":7,"q":null,"m":87,"e":6318,"g":1}],[-25,{"n":4.5,"q":null,"m":90,"e":6347}],[-24,{"n":5.5,"q":null,"m":90,"e":6355}],[-22,{"n":5,"q":null,"m":59,"e":6374}],[-21,{"n":5.5,"q":null,"m":79,"e":6378}],[-20,{"n":5.5,"q":null,"m":89,"e":6394}],[-19,{"n":4.5,"q":null,"m":68,"e":6402}],[-18,{"n":4.5,"q":null,"m":90,"e":6413}],[-17,{"n":5,"q":null,"m":28,"e":6423,"s":1}],[-15,{"n":4.5,"q":null,"m":8,"e":6445,"s":1}],[-14,{"n":5,"q":null,"m":85,"e":6453}],[-11,{"n":5,"q":null,"m":3,"e":6486,"s":1}],[-10,{"n":5,"q":null,"m":12,"e":6494,"s":1}],[-9,{"n":5,"q":null,"m":3,"e":6505,"s":1}],[-3,{"n":4,"q":null,"m":14,"e":6564,"s":1}],[2,{"n":4,"q":null,"m":52,"e":10577}],[-1,{"n":5,"q":null,"m":7,"e":6585,"s":1}],[1,{"n":3.5,"q":null,"m":73,"e":10939}]],"fo":[[6243,[{"t":"Y"}]],[6291,[{"t":"Y"}]],[6335,[{"t":"Y"}]]]}],[1438,{"n":"Obiang","f":"Johann","fp":"DL","r":7,"c":100,"s":{"s":12,"n":2,"a":6,"d":1.41,"m":107,"am":54,"dm":52,"Ss":5,"Sn":1,"Sa":5,"Sm":17,"Sam":17,"Os":115,"On":23,"Oa":5,"Od":0.83,"Om":1614,"Oam":70,"Odm":30,"pd":8,"pm":15},"p":[[-38,{"n":5,"q":null,"m":90,"e":6212}],[-37,{"n":6,"q":null,"m":27,"e":6224,"s":1}],[-34,{"n":5,"q":null,"m":90,"e":6250}],[-30,{"n":5,"q":null,"m":9,"e":6291,"s":1}],[-28,{"n":5,"q":null,"m":86,"e":6308}],[-27,{"n":5,"q":null,"m":3,"e":6318,"s":1}],[-25,{"n":3.5,"q":null,"m":70,"e":6347}],[-24,{"n":5,"q":null,"m":90,"e":6355}],[-20,{"n":6,"q":null,"m":67,"e":6394}],[-19,{"n":4.5,"q":null,"m":76,"e":6402}],[-18,{"n":5,"q":null,"m":26,"e":6413,"s":1}],[-16,{"n":5.5,"q":null,"m":90,"e":6432}],[-15,{"n":5,"q":null,"m":90,"e":6445}],[-14,{"n":4,"q":null,"m":90,"e":6453}],[-12,{"n":5.5,"q":null,"m":90,"e":6471}],[-11,{"n":4.5,"q":null,"m":90,"e":6486}],[-10,{"n":5.5,"q":null,"m":74,"e":6494}],[-4,{"n":5,"q":null,"m":79,"e":6556}],[-3,{"n":3,"q":null,"m":90,"e":6564}],[-2,{"n":4.5,"q":null,"m":90,"e":6576}],[2,{"n":7,"q":null,"m":90,"e":10577}],[-1,{"n":5.5,"q":null,"m":90,"e":6585}],[1,{"n":5,"q":null,"m":17,"e":10939,"s":1}]]}],[2654,{"n":"Buades","f":"Lucas","fp":"MO","r":1,"c":100,"s":{"g":1,"s":6.5,"n":1,"a":6.5,"m":88,"am":88,"Og":1,"Os":15.5,"On":3,"Oa":5.17,"Od":1.15,"Om":108,"Oam":36,"Odm":46,"pm":1,"pa":2,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":4.5,"q":null,"m":19,"e":5834,"s":1}],[-4,{"n":4.5,"q":null,"m":1,"e":6170,"s":1}],[2,{"n":6.5,"q":null,"m":88,"e":10577,"g":1}]]}],[2699,{"n":"Depres","f":"Clement","fp":"A","r":1,"c":100,"s":{"s":8,"n":2,"a":4,"d":1.41,"m":128,"am":64,"dm":7,"Ss":3,"Sn":1,"Sa":3,"Sm":69,"Sam":69,"Os":12.5,"On":3,"Oa":4.17,"Od":1.04,"Om":142,"Oam":47,"Odm":29,"pa":3},"p":[[-38,{"n":4.5,"q":null,"m":14,"e":5834,"s":1}],[2,{"n":5,"q":null,"m":59,"e":10577}],[1,{"n":3,"q":null,"m":69,"e":10939}]]}],[4842,{"n":"Secchi","f":"Thomas","fp":"G","r":1,"c":100,"s":{"Os":6,"On":1,"Oa":6,"Om":90,"Oam":90,"pg":1},"p":[[-38,{"n":6,"q":null,"m":90,"e":6212}]]}],[4843,{"n":"Coelho","f":"Grégory","fp":"DC","r":1,"c":100,"s":{"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"Om":265,"Oam":88,"Odm":3,"pm":3},"p":[[-38,{"n":5,"q":null,"m":85,"e":6212}],[-15,{"n":5,"q":null,"m":90,"e":6445}],[-7,{"n":4.5,"q":null,"m":90,"e":6525}]]}],[4847,{"n":"Bonnet","f":"Ugo","fp":"A","r":19,"c":100,"s":{"s":8,"n":2,"a":4,"d":1.41,"m":180,"am":90,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Og":8,"Os":186,"On":39,"Oa":4.77,"Od":1.01,"Om":2793,"Oam":72,"Odm":26,"pa":39,"Omsn":5},"p":[[-38,{"n":4.5,"q":null,"m":24,"e":6212,"s":1}],[-37,{"n":6,"q":null,"m":90,"e":6224,"g":1}],[-36,{"n":4,"q":null,"m":90,"e":6234}],[-35,{"n":5,"q":null,"m":90,"e":6243}],[-34,{"n":4.5,"q":null,"m":21,"e":6250,"s":1}],[-33,{"n":5,"q":null,"m":89,"e":6263}],[-32,{"n":4,"q":null,"m":75,"e":6268}],[-31,{"n":6.5,"q":null,"m":89,"e":6284,"g":1}],[-30,{"n":4,"q":null,"m":68,"e":6291}],[-29,{"n":7,"q":null,"m":70,"e":6303,"g":1}],[-28,{"n":4.5,"q":null,"m":20,"e":6308,"s":1}],[-27,{"n":5,"q":null,"m":72,"e":6318}],[-26,{"n":6.5,"q":null,"m":75,"e":6335,"g":1}],[-25,{"n":4,"q":null,"m":71,"e":6347}],[-24,{"n":5.5,"q":null,"m":88,"e":6355}],[-23,{"n":4.5,"q":null,"m":12,"e":6362,"s":1}],[-22,{"n":4,"q":null,"m":59,"e":6374}],[-21,{"n":4.5,"q":null,"m":20,"e":6378,"s":1}],[-20,{"n":4.5,"q":null,"m":58,"e":6394}],[-19,{"n":4,"q":null,"m":22,"e":6402,"s":1}],[-18,{"n":4,"q":null,"m":80,"e":6413}],[-17,{"n":4.5,"q":null,"m":81,"e":6423}],[-16,{"n":5,"q":null,"m":90,"e":6432}],[-15,{"n":5.5,"q":null,"m":83,"e":6445}],[-14,{"n":6,"q":null,"m":90,"e":6453,"g":1}],[-13,{"n":4,"q":null,"m":90,"e":6459}],[-12,{"n":5.5,"q":null,"m":90,"e":6471}],[-10,{"n":4,"q":null,"m":62,"e":6494}],[-9,{"n":6.5,"q":null,"m":90,"e":6505,"g":1}],[-8,{"n":4.5,"q":null,"m":27,"e":6516,"s":1}],[-7,{"n":2.5,"q":null,"m":90,"e":6525}],[-6,{"n":3.5,"q":null,"m":90,"e":6531}],[-5,{"n":6.5,"q":null,"m":90,"e":6544,"g":1}],[-4,{"n":5,"q":null,"m":89,"e":6556}],[-3,{"n":4,"q":null,"m":90,"e":6564}],[-2,{"n":5,"q":null,"m":89,"e":6576,"g":1}],[2,{"n":5,"q":null,"m":90,"e":10577}],[-1,{"n":4.5,"q":null,"m":89,"e":6585}],[1,{"n":3,"q":null,"m":90,"e":10939}]],"fo":[[6263,[{"t":"Y"}]]]}],[4850,{"n":"Ouammou","f":"Nassim","fp":"MO","r":11,"c":100,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":121,"am":61,"dm":42,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":143,"On":29,"Oa":4.93,"Od":0.61,"Om":1713,"Oam":59,"Odm":31,"pd":1,"pm":23,"pa":5},"p":[[-38,{"n":5,"q":null,"m":5,"e":6212,"s":1}],[-37,{"n":5,"q":null,"m":63,"e":6224}],[-36,{"n":4.5,"q":null,"m":89,"e":6234}],[-35,{"n":5,"q":null,"m":89,"e":6243}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-32,{"n":4,"q":null,"m":79,"e":6268}],[-31,{"n":5,"q":null,"m":75,"e":6284}],[-30,{"n":5,"q":null,"m":81,"e":6291}],[-29,{"n":6.5,"q":null,"m":85,"e":6303}],[-28,{"n":5,"q":null,"m":4,"e":6308,"s":1}],[-27,{"n":6.5,"q":null,"m":87,"e":6318}],[-26,{"n":4.5,"q":null,"m":90,"e":6335}],[-25,{"n":5,"q":null,"m":20,"e":6347,"s":1}],[-23,{"n":4.5,"q":null,"m":71,"e":6362}],[-22,{"n":4,"q":null,"m":90,"e":6374}],[-21,{"n":5.5,"q":null,"m":79,"e":6378}],[-20,{"n":5,"q":null,"m":23,"e":6394,"s":1}],[-19,{"n":4.5,"q":null,"m":14,"e":6402,"s":1}],[-18,{"n":4.5,"q":null,"m":64,"e":6413}],[-17,{"n":6,"q":null,"m":28,"e":6423,"s":1}],[-13,{"n":5,"q":null,"m":89,"e":6459}],[-8,{"n":5,"q":null,"m":30,"e":6516}],[-7,{"n":5,"q":null,"m":24,"e":6525,"s":1}],[-6,{"n":4.5,"q":null,"m":58,"e":6531}],[-5,{"n":5,"q":null,"m":90,"e":6544}],[-4,{"n":5,"q":null,"m":11,"e":6556,"s":1}],[-3,{"n":4.5,"q":null,"m":64,"e":6564}],[2,{"n":5,"q":null,"m":31,"e":10577,"s":1}],[1,{"n":4,"q":null,"m":90,"e":10939}]]}],[4959,{"n":"Dembélé","f":"Malaly","fp":"A","r":10,"c":100,"s":{"s":4.5,"n":1,"a":4.5,"m":17,"am":17,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":17,"Sam":17,"Og":2,"Os":140.5,"On":33,"Oa":4.26,"Od":0.71,"Om":1464,"Oam":44,"Odm":31,"pa":33,"Omsn":6},"p":[[-38,{"n":4,"q":null,"m":90,"e":6212}],[-37,{"n":4.5,"q":null,"m":27,"e":6224,"s":1}],[-36,{"n":3,"q":null,"m":65,"e":6234}],[-35,{"n":4,"q":null,"m":76,"e":6243}],[-34,{"n":4,"q":null,"m":21,"e":6250,"s":1}],[-33,{"n":5,"q":null,"m":73,"e":6263}],[-32,{"n":4,"q":null,"m":22,"e":6268,"s":1}],[-31,{"n":4,"q":null,"m":75,"e":6284}],[-30,{"n":4,"q":null,"m":21,"e":6291,"s":1}],[-29,{"n":5.5,"q":null,"m":20,"e":6303,"s":1}],[-28,{"n":3.5,"q":null,"m":69,"e":6308}],[-27,{"n":5,"q":null,"m":18,"e":6318,"s":1}],[-26,{"n":4,"q":null,"m":90,"e":6335}],[-25,{"n":6,"q":null,"m":19,"e":6347,"g":1,"s":1}],[-24,{"n":5,"q":null,"m":2,"e":6355,"s":1}],[-23,{"n":3.5,"q":null,"m":78,"e":6362}],[-22,{"n":4,"q":null,"m":24,"e":6374,"s":1}],[-21,{"n":4.5,"q":null,"m":20,"e":6378,"s":1}],[-20,{"n":4.5,"q":null,"m":23,"e":6394,"s":1}],[-19,{"n":4.5,"q":null,"m":68,"e":6402}],[-18,{"n":4,"q":null,"m":10,"e":6413,"s":1}],[-17,{"n":4.5,"q":null,"m":9,"e":6423,"s":1}],[-15,{"n":4,"q":null,"m":30,"e":6445,"s":1}],[-14,{"n":3.5,"q":null,"m":74,"e":6453}],[-13,{"n":4,"q":null,"m":67,"e":6459}],[-12,{"n":4,"q":null,"m":20,"e":6471,"s":1}],[-11,{"n":4,"q":null,"m":78,"e":6486}],[-8,{"n":3.5,"q":null,"m":64,"e":6516}],[-7,{"n":4.5,"q":null,"m":2,"e":6525,"s":1}],[-6,{"n":3,"q":null,"m":85,"e":6531}],[-5,{"n":6,"q":null,"m":90,"e":6544,"g":1}],[-4,{"n":4.5,"q":null,"m":17,"e":6556,"s":1}],[1,{"n":4.5,"q":null,"m":17,"e":10939,"s":1}]]}],[4964,{"n":"Rajot","f":"Lorenzo","fp":"MO","r":9,"c":100,"s":{"s":8,"n":2,"a":4,"d":0.71,"m":71,"am":36,"dm":47,"Ss":3.5,"Sn":1,"Sa":3.5,"Sm":69,"Sam":69,"Os":101,"On":21,"Oa":4.81,"Od":0.43,"Om":480,"Oam":23,"Odm":27,"pm":21},"p":[[-9,{"n":5.5,"q":null,"m":28,"e":6506,"s":1}],[-36,{"n":5,"q":null,"m":48,"e":6231,"s":1}],[-35,{"n":5,"q":null,"m":9,"e":6241,"s":1}],[-34,{"n":4.5,"q":null,"m":7,"e":6256,"s":1}],[-33,{"n":5,"q":null,"m":90,"e":6261}],[-30,{"n":4.5,"q":null,"m":5,"e":6293,"s":1}],[-29,{"n":5,"q":null,"m":29,"e":6300,"s":1}],[-28,{"n":5,"q":null,"m":13,"e":6311,"s":1}],[-27,{"n":4.5,"q":null,"m":20,"e":6321,"s":1}],[-25,{"n":5.5,"q":null,"m":80,"e":6341}],[-23,{"n":4.5,"q":null,"m":1,"e":6361,"s":1}],[-21,{"n":5,"q":null,"m":1,"e":6380,"s":1}],[-20,{"n":5,"q":null,"m":31,"e":6392,"s":1}],[-19,{"n":5,"q":null,"m":11,"e":6409,"s":1}],[-13,{"n":4.5,"q":null,"m":9,"e":6464,"s":1}],[-8,{"n":5,"q":null,"m":9,"e":6511,"s":1}],[-7,{"n":5,"q":null,"m":5,"e":6520,"s":1}],[-5,{"n":5,"q":null,"m":8,"e":6546,"s":1}],[-2,{"n":4.5,"q":null,"m":5,"e":6571,"s":1}],[2,{"n":4.5,"q":null,"m":2,"e":10577,"s":1}],[1,{"n":3.5,"q":null,"m":69,"e":10939}]],"fo":[[6231,[{"t":"Y"}]]]}],[5075,{"n":"M'Pasi N'Zau","f":"Lionel","fp":"G","r":19,"c":100,"s":{"s":9.5,"n":2,"a":4.75,"d":2.47,"m":180,"am":90,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Os":126.5,"On":23,"Oa":5.5,"Od":0.99,"Om":2070,"Oam":90,"pg":23},"p":[[-37,{"n":6.5,"q":null,"m":90,"e":6224}],[-36,{"n":6,"q":null,"m":90,"e":6234}],[-35,{"n":7,"q":null,"m":90,"e":6243}],[-34,{"n":4,"q":null,"m":90,"e":6250}],[-33,{"n":6,"q":null,"m":90,"e":6263}],[-32,{"n":4.5,"q":null,"m":90,"e":6268}],[-31,{"n":4.5,"q":null,"m":90,"e":6284}],[-30,{"n":5,"q":null,"m":90,"e":6291}],[-29,{"n":6.5,"q":null,"m":90,"e":6303}],[-28,{"n":6,"q":null,"m":90,"e":6308}],[-27,{"n":6.5,"q":null,"m":90,"e":6318}],[-26,{"n":6,"q":null,"m":90,"e":6335}],[-25,{"n":5,"q":null,"m":90,"e":6347}],[-24,{"n":6,"q":null,"m":90,"e":6355}],[-23,{"n":6,"q":null,"m":90,"e":6362}],[-22,{"n":5.5,"q":null,"m":90,"e":6374}],[-21,{"n":5,"q":null,"m":90,"e":6378}],[-20,{"n":6,"q":null,"m":90,"e":6394}],[-19,{"n":4.5,"q":null,"m":90,"e":6402}],[-18,{"n":6,"q":null,"m":90,"e":6413}],[-17,{"n":4.5,"q":null,"m":90,"e":6423}],[2,{"n":6.5,"q":null,"m":90,"e":10577}],[1,{"n":3,"q":null,"m":90,"e":10939}]]}],[5090,{"n":"David","f":"Florian","fp":"MO","r":15,"c":100,"s":{"s":5,"n":1,"a":5,"m":21,"am":21,"Ss":5,"Sn":1,"Sa":5,"Sm":21,"Sam":21,"Og":4,"Os":124,"On":26,"Oa":4.77,"Od":0.98,"Om":1196,"Oam":46,"Odm":29,"pm":5,"pa":21,"Omsn":5.5},"p":[[-37,{"n":3.5,"q":null,"m":63,"e":6224}],[-36,{"n":4.5,"q":null,"m":10,"e":6234,"s":1}],[-35,{"n":5,"q":null,"m":14,"e":6243,"s":1}],[-34,{"n":4,"q":null,"m":69,"e":6250}],[-33,{"n":5,"q":null,"m":17,"e":6263,"s":1}],[-32,{"n":4,"q":null,"m":68,"e":6268}],[-30,{"n":4.5,"q":null,"m":69,"e":6291}],[-29,{"n":7.5,"q":null,"m":76,"e":6303,"g":2}],[-28,{"n":5,"q":null,"m":21,"e":6308,"s":1}],[-27,{"n":6,"q":null,"m":72,"e":6318}],[-25,{"n":3.5,"q":null,"m":70,"e":6347}],[-24,{"n":7,"q":null,"m":88,"e":6355,"g":1}],[-23,{"n":4,"q":null,"m":19,"e":6362,"s":1}],[-22,{"n":4,"q":null,"m":66,"e":6374}],[-21,{"n":5,"q":null,"m":70,"e":6378}],[-20,{"n":6,"q":null,"m":67,"e":6394}],[-19,{"n":4,"q":null,"m":76,"e":6402}],[-18,{"n":5.5,"q":null,"m":26,"e":6413,"g":1,"s":1}],[-17,{"n":4,"q":null,"m":67,"e":6423}],[-14,{"n":4.5,"q":null,"m":1,"e":6450,"s":1}],[-11,{"n":4,"q":null,"m":61,"e":6479}],[-10,{"n":5,"q":null,"m":55,"e":6497}],[-7,{"n":4.5,"q":null,"m":6,"e":6520,"s":1}],[-4,{"n":4.5,"q":null,"m":4,"e":6548,"s":1}],[-1,{"n":4.5,"q":null,"m":20,"e":6582,"s":1}],[1,{"n":5,"q":null,"m":21,"e":10939,"s":1}]]}],[5095,{"n":"Boissier","f":"Remy","fp":"MD","r":18,"c":100,"s":{"s":10,"n":2,"a":5,"d":1.41,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Og":7,"Os":186.5,"On":35,"Oa":5.33,"Od":0.92,"Om":2846,"Oam":81,"Odm":15,"pm":35,"Omsn":5.5},"p":[[-38,{"n":5,"q":null,"m":14,"e":6212,"s":1}],[-37,{"n":5.5,"q":null,"m":90,"e":6224}],[-36,{"n":7,"q":null,"m":90,"e":6234}],[-35,{"n":5,"q":null,"m":90,"e":6243}],[-34,{"n":6,"q":null,"m":85,"e":6250,"g":1}],[-33,{"n":5.5,"q":null,"m":90,"e":6263,"g":1}],[-32,{"n":4.5,"q":null,"m":75,"e":6268}],[-31,{"n":4,"q":null,"m":90,"e":6284}],[-30,{"n":5,"q":null,"m":69,"e":6291}],[-29,{"n":5.5,"q":null,"m":70,"e":6303}],[-28,{"n":4.5,"q":null,"m":90,"e":6308}],[-26,{"n":5.5,"q":null,"m":90,"e":6335}],[-25,{"n":4,"q":null,"m":76,"e":6347}],[-23,{"n":4.5,"q":null,"m":90,"e":6362}],[-22,{"n":6,"q":null,"m":78,"e":6374}],[-21,{"n":6,"q":null,"m":90,"e":6378}],[-20,{"n":5,"q":null,"m":90,"e":6394}],[-19,{"n":6,"q":null,"m":89,"e":6402,"g":1}],[-17,{"n":6,"q":null,"m":81,"e":6423}],[-16,{"n":7,"q":null,"m":90,"e":6432,"g":1}],[-15,{"n":7,"q":null,"m":90,"e":6445,"g":1}],[-13,{"n":5,"q":null,"m":66,"e":6459}],[-12,{"n":5,"q":null,"m":90,"e":6471}],[-11,{"n":6,"q":null,"m":90,"e":6486}],[-10,{"n":4.5,"q":null,"m":78,"e":6494}],[-9,{"n":5,"q":null,"m":76,"e":6505}],[-8,{"n":4.5,"q":null,"m":79,"e":6516}],[-6,{"n":4.5,"q":null,"m":58,"e":6531}],[-5,{"n":6,"q":null,"m":75,"e":6544}],[-4,{"n":7,"q":null,"m":89,"e":6556,"g":2}],[-3,{"n":3.5,"q":null,"m":75,"e":6564}],[-2,{"n":5,"q":null,"m":90,"e":6576}],[2,{"n":6,"q":null,"m":90,"e":10577}],[-1,{"n":6,"q":null,"m":83,"e":6585}],[1,{"n":4,"q":null,"m":90,"e":10939}]],"fo":[[6291,[{"t":"I"}]],[6224,[{"t":"Y"}]],[6335,[{"t":"Y"}]],[6347,[{"t":"Y"}]]]}],[5096,{"n":"Chougrani","f":"Joris","fp":"DC","r":11,"c":100,"s":{"s":10,"n":2,"a":5,"d":1.41,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Os":144.5,"On":30,"Oa":4.82,"Od":0.8,"Om":2370,"Oam":79,"Odm":26,"pd":28,"pm":2},"p":[[-37,{"n":5,"q":null,"m":90,"e":6224}],[-36,{"n":6,"q":null,"m":90,"e":6234}],[-35,{"n":5,"q":null,"m":90,"e":6243}],[-33,{"n":4.5,"q":null,"m":90,"e":6263}],[-32,{"n":3.5,"q":null,"m":90,"e":6268}],[-31,{"n":5,"q":null,"m":15,"e":6284,"s":1}],[-30,{"n":4.5,"q":null,"m":90,"e":6291}],[-29,{"n":6,"q":null,"m":90,"e":6303}],[-27,{"n":6,"q":null,"m":90,"e":6318}],[-26,{"n":5.5,"q":null,"m":90,"e":6335}],[-24,{"n":6,"q":null,"m":90,"e":6355}],[-23,{"n":5,"q":null,"m":19,"e":6362,"s":1}],[-22,{"n":5,"q":null,"m":90,"e":6374}],[-21,{"n":5,"q":null,"m":11,"e":6378,"s":1}],[-19,{"n":4,"q":null,"m":90,"e":6402}],[-17,{"n":4,"q":null,"m":62,"e":6423}],[-16,{"n":4.5,"q":null,"m":90,"e":6432}],[-14,{"n":4.5,"q":null,"m":90,"e":6453}],[-13,{"n":5,"q":null,"m":13,"e":6459,"s":1}],[-10,{"n":5,"q":null,"m":90,"e":6494}],[-9,{"n":4,"q":null,"m":90,"e":6505}],[-8,{"n":3,"q":null,"m":90,"e":6516}],[-6,{"n":3.5,"q":null,"m":90,"e":6531}],[-5,{"n":5.5,"q":null,"m":90,"e":6544}],[-4,{"n":4.5,"q":null,"m":90,"e":6556}],[-3,{"n":4.5,"q":null,"m":90,"e":6564}],[-2,{"n":5,"q":null,"m":90,"e":6576}],[2,{"n":6,"q":null,"m":90,"e":10577}],[-1,{"n":5.5,"q":null,"m":90,"e":6585}],[1,{"n":4,"q":null,"m":90,"e":10939}]],"fo":[[6263,[{"t":"Y"}]]]}],[5097,{"n":"Bardy","f":"Pierre","fp":"DL","r":20,"c":100,"s":{"s":4,"n":1,"a":4,"m":79,"am":79,"Ss":4,"Sn":1,"Sa":4,"Sm":79,"Sam":79,"Og":3,"Os":192,"On":37,"Oa":5.19,"Od":0.88,"Om":3150,"Oam":85,"Odm":16,"pd":37,"Omsn":6.5},"p":[[-38,{"n":5.5,"q":null,"m":45,"e":6212,"s":1}],[-37,{"n":5,"q":null,"m":90,"e":6224}],[-36,{"n":6.5,"q":null,"m":90,"e":6234,"g":1}],[-34,{"n":5,"q":null,"m":90,"e":6250}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-32,{"n":5,"q":null,"m":90,"e":6268}],[-31,{"n":5,"q":null,"m":90,"e":6284}],[-30,{"n":5,"q":null,"m":90,"e":6291}],[-29,{"n":6.5,"q":null,"m":90,"e":6303}],[-27,{"n":6,"q":null,"m":90,"e":6318}],[-26,{"n":5,"q":null,"m":90,"e":6335}],[-25,{"n":4,"q":null,"m":90,"e":6347}],[-24,{"n":6,"q":null,"m":90,"e":6355}],[-23,{"n":5,"q":null,"m":8,"e":6362,"s":1}],[-22,{"n":5,"q":null,"m":90,"e":6374}],[-21,{"n":8,"q":null,"m":90,"e":6378,"g":2}],[-20,{"n":6,"q":null,"m":90,"e":6394}],[-19,{"n":5,"q":null,"m":90,"e":6402}],[-18,{"n":5.5,"q":null,"m":90,"e":6413}],[-17,{"n":5.5,"q":null,"m":90,"e":6423}],[-16,{"n":4.5,"q":null,"m":90,"e":6432}],[-15,{"n":5.5,"q":null,"m":67,"e":6445}],[-14,{"n":5,"q":null,"m":90,"e":6453}],[-13,{"n":5,"q":null,"m":90,"e":6459}],[-12,{"n":4.5,"q":null,"m":90,"e":6471}],[-11,{"n":5.5,"q":null,"m":90,"e":6486}],[-10,{"n":4.5,"q":null,"m":90,"e":6494}],[-9,{"n":4,"q":null,"m":90,"e":6505}],[-8,{"n":4,"q":null,"m":90,"e":6516}],[-7,{"n":5.5,"q":null,"m":90,"e":6525}],[-6,{"n":3,"q":null,"m":90,"e":6531}],[-5,{"n":6,"q":null,"m":81,"e":6544}],[-4,{"n":5.5,"q":null,"m":90,"e":6556}],[-3,{"n":4.5,"q":null,"m":80,"e":6564}],[-2,{"n":5.5,"q":null,"m":90,"e":6576}],[-1,{"n":6,"q":null,"m":90,"e":6585}],[1,{"n":4,"q":null,"m":79,"e":10939}]],"fo":[[10939,[{"t":"Y"}]]]}],[5200,{"n":"Sanaia","f":"Amiran","fp":"DC","r":12,"c":100,"s":{"Oao":1,"Os":101.5,"On":20,"Oa":5.08,"Od":0.67,"Om":1410,"Oam":71,"Odm":35,"pd":20},"p":[[-36,{"n":5,"q":null,"m":1,"e":6234,"s":1}],[-35,{"n":5,"q":null,"m":1,"e":6243,"s":1}],[-34,{"n":6,"q":null,"m":90,"e":6250}],[-32,{"n":5,"q":null,"m":11,"e":6268,"s":1}],[-31,{"n":4,"q":null,"m":90,"e":6284}],[-29,{"n":5,"q":null,"m":5,"e":6303,"s":1}],[-28,{"n":5,"q":null,"m":90,"e":6308}],[-26,{"n":6,"q":null,"m":90,"e":6335}],[-25,{"n":4.5,"q":null,"m":90,"e":6347}],[-23,{"n":5.5,"q":null,"m":90,"e":6362}],[-22,{"n":6,"q":null,"m":90,"e":6374}],[-21,{"n":5.5,"q":null,"m":90,"e":6378}],[-20,{"n":5.5,"q":null,"m":90,"e":6394}],[-18,{"n":4,"q":null,"m":90,"e":6413,"a":1}],[-16,{"n":5,"q":null,"m":90,"e":6432}],[-15,{"n":5,"q":null,"m":90,"e":6445}],[-13,{"n":5,"q":null,"m":77,"e":6459}],[-12,{"n":5.5,"q":null,"m":90,"e":6471}],[-11,{"n":5.5,"q":null,"m":90,"e":6486}],[-9,{"n":3.5,"q":null,"m":55,"e":6505}]],"fo":[[6308,[{"t":"Y"}]],[6335,[{"t":"Y"}]]]}],[6756,{"n":"Danger","f":"Bradley","fp":"DC","r":9,"c":100,"s":{"s":6,"n":1,"a":6,"m":90,"am":90,"Og":2,"Os":160.5,"On":33,"Oa":4.86,"Od":1.08,"Om":2366,"Oam":72,"Odm":28,"pd":16,"pm":17,"Omsn":4.5},"p":[[-38,{"n":3.5,"q":null,"m":70,"e":6215}],[-37,{"n":5.5,"q":null,"m":90,"e":6221}],[-36,{"n":5,"q":null,"m":10,"e":6232,"s":1}],[-35,{"n":5,"q":null,"m":18,"e":6240,"s":1}],[-32,{"n":5.5,"q":null,"m":82,"e":6276}],[-31,{"n":4.5,"q":null,"m":90,"e":6284}],[-30,{"n":7.5,"q":null,"m":82,"e":6289,"g":1}],[-28,{"n":3.5,"q":null,"m":38,"e":6310}],[-24,{"n":4,"q":null,"m":77,"e":6350}],[-23,{"n":3.5,"q":null,"m":90,"e":6360}],[-22,{"n":4.5,"q":null,"m":20,"e":6370,"s":1}],[-21,{"n":4.5,"q":null,"m":90,"e":6382}],[-20,{"n":4,"q":null,"m":72,"e":6391}],[-19,{"n":5,"q":null,"m":84,"e":6407}],[-18,{"n":6,"q":null,"m":90,"e":6405}],[-17,{"n":4.5,"q":null,"m":80,"e":6424}],[-16,{"n":8,"q":null,"m":90,"e":6429}],[-15,{"n":5.5,"q":null,"m":90,"e":6438}],[-14,{"n":5,"q":null,"m":2,"e":6450,"s":1}],[-13,{"n":5,"q":null,"m":64,"e":6459}],[-12,{"n":5,"q":null,"m":6,"e":6468,"s":1}],[-11,{"n":5.5,"q":null,"m":90,"e":6479}],[-10,{"n":4.5,"q":null,"m":90,"e":6497}],[-9,{"n":5,"q":null,"m":71,"e":6499}],[-8,{"n":3,"q":null,"m":66,"e":6508}],[-7,{"n":3.5,"q":null,"m":84,"e":6520}],[-6,{"n":4.5,"q":null,"m":90,"e":6536,"g":1}],[-5,{"n":6,"q":null,"m":90,"e":6540}],[-4,{"n":5,"q":null,"m":90,"e":6548}],[-3,{"n":4.5,"q":null,"m":90,"e":6561}],[-2,{"n":5,"q":null,"m":90,"e":6574}],[2,{"n":6,"q":null,"m":90,"e":10577}],[-1,{"n":3.5,"q":null,"m":90,"e":6582}]],"fo":[[6310,[{"t":"R"}]],[6215,[{"t":"Y"}]]]}],[6811,{"n":"Gueye","f":"Daouda","fp":"A","r":5,"c":100,"s":{"Os":34.5,"On":8,"Oa":4.31,"Od":0.37,"Om":355,"Oam":44,"Odm":29,"pa":8},"p":[[-16,{"n":4.5,"q":null,"m":23,"e":6432,"s":1}],[-15,{"n":4,"q":null,"m":60,"e":6445}],[-14,{"n":4,"q":null,"m":62,"e":6453}],[-13,{"n":4,"q":null,"m":24,"e":6459,"s":1}],[-12,{"n":5,"q":null,"m":70,"e":6471}],[-11,{"n":4,"q":null,"m":87,"e":6486}],[-10,{"n":4.5,"q":null,"m":28,"e":6494,"s":1}],[-4,{"n":4.5,"q":null,"m":1,"e":6556,"s":1}]]}],[6850,{"n":"Kerouedan","f":"Alan","fp":"MO","r":5,"c":100,"s":{"s":3,"n":1,"a":3,"m":73,"am":73,"Ss":3,"Sn":1,"Sa":3,"Sm":73,"Sam":73,"Os":84,"On":18,"Oa":4.67,"Od":0.71,"Om":975,"Oam":54,"Odm":37,"pm":7,"pa":11},"p":[[-37,{"n":5,"q":null,"m":90,"e":6224}],[-33,{"n":4.5,"q":null,"m":90,"e":6263}],[-31,{"n":4.5,"q":null,"m":1,"e":6284,"s":1}],[-24,{"n":4.5,"q":null,"m":79,"e":6355}],[-20,{"n":5,"q":null,"m":90,"e":6394}],[-19,{"n":6,"q":null,"m":90,"e":6402}],[-16,{"n":4,"q":null,"m":67,"e":6432}],[-15,{"n":5,"q":null,"m":82,"e":6445}],[-14,{"n":5,"q":null,"m":5,"e":6453,"s":1}],[-12,{"n":5,"q":null,"m":89,"e":6471}],[-11,{"n":6,"q":null,"m":90,"e":6486}],[-9,{"n":4,"q":null,"m":14,"e":6505,"s":1}],[-6,{"n":4.5,"q":null,"m":5,"e":6531,"s":1}],[-5,{"n":5,"q":null,"m":65,"e":6544}],[-4,{"n":4.5,"q":null,"m":1,"e":6556,"s":1}],[-2,{"n":4.5,"q":null,"m":22,"e":6576,"s":1}],[-1,{"n":4,"q":null,"m":22,"e":6585,"s":1}],[1,{"n":3,"q":null,"m":73,"e":10939}]]}],[7562,{"n":"Malanda","f":"Adilson","fp":"DC","r":1,"c":100,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":101,"am":51,"dm":56,"Ss":5,"Sn":1,"Sa":5,"Sm":11,"Sam":11,"Os":11,"On":2,"Oa":5.5,"Od":0.71,"Om":101,"Oam":51,"Odm":56,"pd":2},"p":[[2,{"n":6,"q":null,"m":90,"e":10577}],[1,{"n":5,"q":null,"m":11,"e":10939,"s":1}]]}],[7628,{"n":"Celestine","f":"Julien","fp":"DC","r":15,"c":100,"s":{"s":9,"n":2,"a":4.5,"d":2.12,"m":180,"am":90,"Ss":3,"Sn":1,"Sa":3,"Sm":90,"Sam":90,"Os":75,"On":15,"Oa":5,"Od":0.76,"Om":1349,"Oam":90,"pd":15},"p":[[-37,{"n":4.5,"q":null,"m":90,"e":6224}],[-36,{"n":5,"q":null,"m":90,"e":6234}],[-35,{"n":5.5,"q":null,"m":90,"e":6243}],[-34,{"n":5,"q":null,"m":90,"e":6250}],[-33,{"n":5,"q":null,"m":90,"e":6263}],[-32,{"n":5,"q":null,"m":90,"e":6268}],[-31,{"n":5,"q":null,"m":90,"e":6284}],[-30,{"n":5,"q":null,"m":90,"e":6291}],[-29,{"n":5.5,"q":null,"m":90,"e":6303}],[-28,{"n":5,"q":null,"m":90,"e":6308}],[-27,{"n":5.5,"q":null,"m":90,"e":6318}],[-25,{"n":4,"q":null,"m":89,"e":6347}],[-24,{"n":6,"q":null,"m":90,"e":6355}],[2,{"n":6,"q":null,"m":90,"e":10577}],[1,{"n":3,"q":null,"m":90,"e":10939}]],"fo":[[6224,[{"t":"Y"}]],[6284,[{"t":"Y"}]],[6347,[{"t":"Y"},{"t":"O"}]],[10939,[{"t":"Y"}]]]}],[7998,{"n":"Far","f":"Hatim","fp":"A","r":1,"c":100}],[7999,{"n":"Buni Jorge","f":"Plamedi","fp":"MO","r":3,"c":100}],[8009,{"n":"Corredor","f":"Kilian","fp":"A","r":3,"c":100}],[8068,{"n":"Zidane","f":"Enzo","fp":"MO","r":13,"c":100,"s":{"s":4.5,"n":1,"a":4.5,"m":21,"am":21,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":21,"Sam":21,"Os":4.5,"On":1,"Oa":4.5,"Om":21,"Oam":21,"pm":1},"p":[[1,{"n":4.5,"q":null,"m":21,"e":10939,"s":1}]]}],[90,{"n":"Pogba","f":"Florentin","fp":"DC","r":10,"c":102,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":160,"On":32,"Oa":5,"Od":0.75,"Om":2703,"Oam":84,"Odm":20,"pd":32},"p":[[-38,{"n":3.5,"q":null,"m":90,"e":6217}],[-37,{"n":3.5,"q":null,"m":90,"e":6222}],[-35,{"n":5,"q":null,"m":10,"e":6244,"s":1}],[-34,{"n":5,"q":null,"m":90,"e":6251}],[-33,{"n":5,"q":null,"m":90,"e":6264}],[-32,{"n":5.5,"q":null,"m":90,"e":6272}],[-31,{"n":4,"q":null,"m":90,"e":6285}],[-30,{"n":6.5,"q":null,"m":90,"e":6292}],[-29,{"n":5,"q":null,"m":90,"e":6304}],[-28,{"n":5,"q":null,"m":90,"e":6314}],[-27,{"n":5,"q":null,"m":90,"e":6325}],[-26,{"n":5,"q":null,"m":15,"e":6329,"s":1}],[-21,{"n":4,"q":null,"m":62,"e":6387}],[-20,{"n":5.5,"q":null,"m":96,"e":6395}],[-19,{"n":6,"q":null,"m":90,"e":6409}],[-18,{"n":6,"q":null,"m":90,"e":6414}],[-17,{"n":5.5,"q":null,"m":90,"e":6419}],[-16,{"n":4,"q":null,"m":90,"e":6434}],[-15,{"n":5.5,"q":null,"m":90,"e":6446}],[-14,{"n":5,"q":null,"m":90,"e":6454}],[-13,{"n":5.5,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6472}],[-11,{"n":4.5,"q":null,"m":90,"e":6480}],[-9,{"n":5.5,"q":null,"m":90,"e":6500}],[-8,{"n":4,"q":null,"m":90,"e":6515}],[-7,{"n":5,"q":null,"m":90,"e":6526}],[-6,{"n":5.5,"q":null,"m":90,"e":6536}],[-5,{"n":5,"q":null,"m":90,"e":6538}],[-2,{"n":4.5,"q":null,"m":90,"e":6577}],[2,{"n":4,"q":null,"m":90,"e":10578}],[-1,{"n":5.5,"q":null,"m":90,"e":6581}],[1,{"n":5.5,"q":null,"m":90,"e":10933}]],"fo":[[10933,[{"t":"Y"}]]]}],[521,{"n":"Kaabouni","f":"Younes","fp":"MD","r":12,"c":102,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":30,"am":15,"dm":11,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":23,"Sam":23,"Os":144.5,"On":28,"Oa":5.16,"Od":0.62,"Om":1471,"Oam":53,"Odm":36,"pm":28},"p":[[-38,{"n":5,"q":null,"m":7,"e":6217}],[-37,{"n":5,"q":null,"m":90,"e":6222}],[-36,{"n":4.5,"q":null,"m":71,"e":6230}],[-35,{"n":4.5,"q":null,"m":22,"e":6244,"s":1}],[-34,{"n":4.5,"q":null,"m":73,"e":6251}],[-33,{"n":6,"q":null,"m":90,"e":6264}],[-32,{"n":6,"q":null,"m":90,"e":6272}],[-31,{"n":5,"q":null,"m":66,"e":6285}],[-30,{"n":5,"q":null,"m":87,"e":6292}],[-29,{"n":5,"q":null,"m":90,"e":6304}],[-27,{"n":5,"q":null,"m":90,"e":6325}],[-26,{"n":6,"q":null,"m":90,"e":6329}],[-25,{"n":5,"q":null,"m":90,"e":6345}],[-24,{"n":6,"q":null,"m":90,"e":6350}],[-22,{"n":6,"q":null,"m":66,"e":6374}],[-20,{"n":5,"q":null,"m":37,"e":6395,"s":1}],[-19,{"n":5,"q":null,"m":7,"e":6409,"s":1}],[-18,{"n":5,"q":null,"m":7,"e":6414,"s":1}],[-17,{"n":5,"q":null,"m":7,"e":6419,"s":1}],[-14,{"n":5,"q":null,"m":40,"e":6454}],[-13,{"n":5.5,"q":null,"m":90,"e":6465}],[-12,{"n":7,"q":null,"m":86,"e":6472}],[-11,{"n":4.5,"q":null,"m":24,"e":6480,"s":1}],[-10,{"n":4.5,"q":null,"m":18,"e":6495,"s":1}],[-8,{"n":4.5,"q":null,"m":8,"e":6515,"s":1}],[-7,{"n":4.5,"q":null,"m":5,"e":6526,"s":1}],[2,{"n":5,"q":null,"m":7,"e":10578,"s":1}],[1,{"n":5.5,"q":null,"m":23,"e":10933,"s":1}]],"fo":[[6217,[{"t":"I"}]],[6292,[{"t":"Y"}]],[6350,[{"t":"Y"}]]]}],[1395,{"n":"Niane","f":"Adama","fp":"A","r":9,"c":102,"s":{"s":4.5,"n":1,"a":4.5,"m":7,"am":7,"Og":4,"Os":135,"On":30,"Oa":4.5,"Od":0.97,"Om":1123,"Oam":37,"Odm":26,"pm":1,"pa":29,"Omsn":6},"p":[[-36,{"n":4.5,"q":null,"m":2,"e":6230,"s":1}],[-34,{"n":3.5,"q":null,"m":63,"e":6251}],[-33,{"n":4.5,"q":null,"m":17,"e":6264,"s":1}],[-32,{"n":4,"q":null,"m":64,"e":6272}],[-31,{"n":4,"q":null,"m":24,"e":6285,"s":1}],[-30,{"n":5,"q":null,"m":71,"e":6292}],[-29,{"n":4.5,"q":null,"m":15,"e":6304,"s":1}],[-28,{"n":6.5,"q":null,"m":71,"e":6314,"g":1}],[-27,{"n":4.5,"q":null,"m":9,"e":6325,"s":1}],[-26,{"n":4,"q":null,"m":20,"e":6329,"s":1}],[-25,{"n":6,"q":null,"m":16,"e":6345,"g":1,"s":1}],[-23,{"n":2.5,"q":null,"m":31,"e":6367,"s":1}],[-22,{"n":3,"q":null,"m":59,"e":6374}],[-21,{"n":4,"q":null,"m":78,"e":6387}],[-20,{"n":4.5,"q":null,"m":33,"e":6395,"s":1}],[-19,{"n":4,"q":null,"m":59,"e":6409}],[-18,{"n":4.5,"q":null,"m":84,"e":6414}],[-17,{"n":7.5,"q":null,"m":83,"e":6419,"g":1}],[-16,{"n":4.5,"q":null,"m":21,"e":6434,"s":1}],[-15,{"n":5,"q":null,"m":67,"e":6446}],[-14,{"n":4.5,"q":null,"m":22,"e":6454,"s":1}],[-13,{"n":4,"q":null,"m":29,"e":6465,"s":1}],[-12,{"n":4,"q":null,"m":18,"e":6472,"s":1}],[-11,{"n":4.5,"q":null,"m":20,"e":6480,"s":1}],[-10,{"n":4,"q":null,"m":32,"e":6495,"s":1}],[-9,{"n":4.5,"q":null,"m":7,"e":6500,"s":1}],[-8,{"n":4,"q":null,"m":63,"e":6515}],[-7,{"n":4.5,"q":null,"m":21,"e":6526,"s":1}],[-6,{"n":6,"q":null,"m":17,"e":6536,"g":1,"s":1}],[2,{"n":4.5,"q":null,"m":7,"e":10578,"s":1}]]}],[1413,{"n":"Ndour","f":"Abdallah","fp":"DL","r":12,"c":102,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":150.5,"On":30,"Oa":5.02,"Od":0.81,"Om":2420,"Oam":81,"Odm":22,"pd":30},"p":[[-36,{"n":4.5,"q":null,"m":66,"e":6230}],[-35,{"n":6,"q":null,"m":90,"e":6244}],[-34,{"n":4,"q":null,"m":90,"e":6251}],[-32,{"n":5,"q":null,"m":90,"e":6272}],[-31,{"n":4,"q":null,"m":90,"e":6285}],[-30,{"n":6.5,"q":null,"m":90,"e":6292}],[-29,{"n":5.5,"q":null,"m":90,"e":6304}],[-27,{"n":5.5,"q":null,"m":90,"e":6325}],[-26,{"n":5,"q":null,"m":84,"e":6329}],[-25,{"n":6,"q":null,"m":90,"e":6345}],[-24,{"n":5,"q":null,"m":90,"e":6350}],[-23,{"n":5,"q":null,"m":90,"e":6367}],[-22,{"n":6,"q":null,"m":90,"e":6374}],[-21,{"n":3.5,"q":null,"m":90,"e":6387}],[-20,{"n":5,"q":null,"m":38,"e":6395,"s":1}],[-19,{"n":5,"q":null,"m":90,"e":6409}],[-18,{"n":5.5,"q":null,"m":90,"e":6414}],[-14,{"n":5,"q":null,"m":22,"e":6454}],[-13,{"n":5,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":80,"e":6472}],[-11,{"n":4,"q":null,"m":90,"e":6480}],[-10,{"n":4.5,"q":null,"m":90,"e":6495}],[-8,{"n":3,"q":null,"m":89,"e":6515}],[-7,{"n":5.5,"q":null,"m":90,"e":6526}],[-6,{"n":5,"q":null,"m":90,"e":6536}],[-5,{"n":5,"q":null,"m":1,"e":6538,"s":1}],[-2,{"n":5,"q":null,"m":60,"e":6577}],[2,{"n":4,"q":null,"m":90,"e":10578}],[-1,{"n":6,"q":null,"m":90,"e":6581}],[1,{"n":5.5,"q":null,"m":90,"e":10933}]],"fo":[[6329,[{"t":"I"}]],[6230,[{"t":"R"}]],[6285,[{"t":"Y"}]],[6350,[{"t":"Y"}]]]}],[2077,{"n":"Aaneba","f":"Ismaël","fp":"DC","r":10,"c":102,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":21,"On":4,"Oa":5.25,"Od":0.5,"Om":189,"Oam":47,"Odm":49,"pd":4},"p":[[-13,{"n":5,"q":null,"m":6,"e":6084,"s":1}],[-12,{"n":5,"q":null,"m":3,"e":6097,"s":1}],[2,{"n":5,"q":null,"m":90,"e":10578}],[1,{"n":6,"q":null,"m":90,"e":10933}]]}],[4996,{"n":"Ambri","f":"Steve","fp":"A","r":11,"c":102,"s":{"Og":3,"Os":148.5,"On":28,"Oa":5.3,"Od":0.75,"Om":1647,"Oam":59,"Odm":29,"pm":26,"pa":2,"Omsn":6},"p":[[-37,{"n":4.5,"q":null,"m":30,"e":6222,"s":1}],[-36,{"n":5,"q":null,"m":61,"e":6230}],[-35,{"n":5,"q":null,"m":68,"e":6244}],[-34,{"n":4,"q":null,"m":73,"e":6251}],[-33,{"n":6,"q":null,"m":72,"e":6264,"g":1}],[-32,{"n":6,"q":null,"m":86,"e":6272}],[-28,{"n":6.5,"q":null,"m":63,"e":6314,"g":1}],[-25,{"n":5.5,"q":null,"m":89,"e":6345}],[-24,{"n":5,"q":null,"m":81,"e":6350}],[-22,{"n":4.5,"q":null,"m":24,"e":6374,"s":1}],[-21,{"n":5,"q":null,"m":18,"e":6387,"s":1}],[-20,{"n":5,"q":null,"m":96,"e":6395}],[-19,{"n":5,"q":null,"m":31,"e":6409,"s":1}],[-18,{"n":5,"q":null,"m":83,"e":6414}],[-17,{"n":7,"q":null,"m":90,"e":6419}],[-16,{"n":5.5,"q":null,"m":32,"e":6434,"s":1}],[-15,{"n":6,"q":null,"m":90,"e":6446}],[-14,{"n":5,"q":null,"m":22,"e":6454,"s":1}],[-13,{"n":5,"q":null,"m":61,"e":6465}],[-12,{"n":6,"q":null,"m":87,"e":6472}],[-8,{"n":5,"q":null,"m":7,"e":6515,"s":1}],[-7,{"n":5,"q":null,"m":61,"e":6526}],[-6,{"n":4.5,"q":null,"m":73,"e":6536}],[-5,{"n":7,"q":null,"m":89,"e":6538,"g":1}],[-4,{"n":4.5,"q":null,"m":89,"e":6556}],[-3,{"n":5,"q":null,"m":45,"e":6565,"s":1}],[-2,{"n":6,"q":null,"m":24,"e":6577,"s":1}],[-1,{"n":5,"q":null,"m":2,"e":6581,"s":1}]],"fo":[[6230,[{"t":"I"}]],[6350,[{"t":"I"}]],[6222,[{"t":"Y"}]],[6251,[{"t":"Y"}]],[6314,[{"t":"Y"}]]]}],[5005,{"n":"Weissbeck","f":"Gaëtan","fp":"MO","r":31,"c":102,"s":{"g":1,"s":11.5,"n":2,"a":5.75,"d":1.77,"m":173,"am":87,"dm":5,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":83,"Sam":83,"Og":11,"Os":224,"On":38,"Oa":5.89,"Od":1,"Om":3296,"Oam":87,"Odm":9,"pm":38,"Smsn":7,"Omsn":5.5},"p":[[-38,{"n":5,"q":null,"m":90,"e":6217}],[-37,{"n":4.5,"q":null,"m":76,"e":6222}],[-36,{"n":5.5,"q":null,"m":90,"e":6230}],[-35,{"n":5.5,"q":null,"m":90,"e":6244}],[-34,{"n":5.5,"q":null,"m":90,"e":6251}],[-32,{"n":5.5,"q":null,"m":79,"e":6272}],[-31,{"n":5.5,"q":null,"m":90,"e":6285}],[-30,{"n":6.5,"q":null,"m":90,"e":6292}],[-29,{"n":5.5,"q":null,"m":90,"e":6304}],[-28,{"n":7.5,"q":null,"m":90,"e":6314,"g":1}],[-27,{"n":5.5,"q":null,"m":90,"e":6325}],[-26,{"n":4.5,"q":null,"m":69,"e":6329}],[-25,{"n":7.5,"q":null,"m":89,"e":6345,"g":1}],[-23,{"n":5.5,"q":null,"m":45,"e":6367}],[-22,{"n":5,"q":null,"m":90,"e":6374}],[-21,{"n":5.5,"q":null,"m":90,"e":6387}],[-20,{"n":5,"q":null,"m":96,"e":6395}],[-19,{"n":6,"q":null,"m":90,"e":6409}],[-18,{"n":7,"q":null,"m":90,"e":6414,"g":1}],[-17,{"n":5.5,"q":null,"m":79,"e":6419}],[-16,{"n":5,"q":null,"m":90,"e":6434}],[-15,{"n":6.5,"q":null,"m":90,"e":6446}],[-14,{"n":5.5,"q":null,"m":90,"e":6454}],[-13,{"n":5,"q":null,"m":80,"e":6465}],[-12,{"n":7.5,"q":null,"m":90,"e":6472,"g":1}],[-11,{"n":5.5,"q":null,"m":90,"e":6480}],[-10,{"n":8,"q":null,"m":90,"e":6495,"g":2}],[-9,{"n":5,"q":null,"m":83,"e":6500}],[-8,{"n":5.5,"q":null,"m":90,"e":6515}],[-7,{"n":7,"q":null,"m":90,"e":6526}],[-6,{"n":8,"q":null,"m":89,"e":6536,"g":2}],[-5,{"n":6,"q":null,"m":90,"e":6538}],[-4,{"n":5.5,"q":null,"m":90,"e":6556,"g":1}],[-3,{"n":5,"q":null,"m":88,"e":6565}],[-2,{"n":7,"q":null,"m":90,"e":6577,"g":1}],[2,{"n":4.5,"q":null,"m":90,"e":10578}],[-1,{"n":7,"q":null,"m":90,"e":6581}],[1,{"n":7,"q":null,"m":83,"e":10933,"g":1}]],"fo":[[6230,[{"t":"Y"}]],[6285,[{"t":"Y"}]],[6314,[{"t":"Y"}]],[6329,[{"t":"Y"}]],[10578,[{"t":"Y"}]]]}],[5016,{"n":"Henry","f":"Valentin","fp":"DL","r":13,"c":102,"s":{"s":11,"n":2,"a":5.5,"d":2.12,"m":180,"am":90,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":1,"Os":167.5,"On":34,"Oa":4.93,"Od":0.86,"Om":2912,"Oam":86,"Odm":17,"pd":5,"pm":29,"Omsn":6},"p":[[-36,{"n":5,"q":null,"m":90,"e":6234}],[-35,{"n":6,"q":null,"m":90,"e":6243}],[-34,{"n":5.5,"q":null,"m":90,"e":6250}],[-32,{"n":4.5,"q":null,"m":89,"e":6268}],[-31,{"n":4.5,"q":null,"m":90,"e":6284}],[-30,{"n":4,"q":null,"m":90,"e":6291}],[-29,{"n":6.5,"q":null,"m":90,"e":6303}],[-28,{"n":5,"q":null,"m":86,"e":6308}],[-27,{"n":6,"q":null,"m":90,"e":6318}],[-26,{"n":5,"q":null,"m":90,"e":6335}],[-25,{"n":3.5,"q":null,"m":90,"e":6347}],[-24,{"n":5,"q":null,"m":11,"e":6355,"s":1}],[-23,{"n":5,"q":null,"m":90,"e":6362}],[-22,{"n":5,"q":null,"m":90,"e":6374}],[-21,{"n":5.5,"q":null,"m":90,"e":6378}],[-18,{"n":4.5,"q":null,"m":90,"e":6413}],[-17,{"n":4.5,"q":null,"m":90,"e":6423}],[-16,{"n":4.5,"q":null,"m":90,"e":6432}],[-14,{"n":5.5,"q":null,"m":90,"e":6453}],[-13,{"n":4.5,"q":null,"m":90,"e":6459}],[-12,{"n":6,"q":null,"m":90,"e":6471,"g":1}],[-11,{"n":5,"q":null,"m":90,"e":6486}],[-10,{"n":5,"q":null,"m":90,"e":6494}],[-9,{"n":5,"q":null,"m":90,"e":6505}],[-8,{"n":3.5,"q":null,"m":90,"e":6516}],[-7,{"n":4.5,"q":null,"m":90,"e":6525}],[-6,{"n":3,"q":null,"m":90,"e":6531}],[-5,{"n":6,"q":null,"m":90,"e":6544}],[-4,{"n":5,"q":null,"m":90,"e":6556}],[-3,{"n":4,"q":null,"m":26,"e":6564,"s":1}],[-2,{"n":4.5,"q":null,"m":90,"e":6576}],[2,{"n":4,"q":null,"m":90,"e":10578}],[-1,{"n":5.5,"q":null,"m":90,"e":6585}],[1,{"n":7,"q":null,"m":90,"e":10933}]],"fo":[[6243,[{"t":"Y"}]],[6268,[{"t":"Y"},{"t":"O"}]],[10578,[{"t":"Y"}]]]}],[5028,{"n":"Prevot","f":"Maxence","fp":"G","r":18,"c":102,"s":{"s":8,"n":2,"a":4,"d":1.41,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":210.5,"On":38,"Oa":5.54,"Od":0.91,"Om":3426,"Oam":90,"Odm":1,"pg":38},"p":[[-36,{"n":6,"q":null,"m":90,"e":6230}],[-35,{"n":6,"q":null,"m":90,"e":6244}],[-34,{"n":4,"q":null,"m":90,"e":6251}],[-33,{"n":6,"q":null,"m":90,"e":6264}],[-32,{"n":6.5,"q":null,"m":90,"e":6272}],[-31,{"n":5,"q":null,"m":90,"e":6285}],[-30,{"n":6.5,"q":null,"m":90,"e":6292}],[-29,{"n":6,"q":null,"m":90,"e":6304}],[-28,{"n":5.5,"q":null,"m":90,"e":6314}],[-27,{"n":6.5,"q":null,"m":90,"e":6325}],[-26,{"n":6,"q":null,"m":90,"e":6329}],[-25,{"n":6,"q":null,"m":90,"e":6345}],[-24,{"n":5,"q":null,"m":90,"e":6350}],[-23,{"n":5,"q":null,"m":90,"e":6367}],[-22,{"n":4,"q":null,"m":90,"e":6374}],[-21,{"n":7,"q":null,"m":90,"e":6387}],[-20,{"n":6,"q":null,"m":96,"e":6395}],[-19,{"n":6,"q":null,"m":90,"e":6409}],[-18,{"n":6,"q":null,"m":90,"e":6414}],[-17,{"n":5,"q":null,"m":90,"e":6419}],[-16,{"n":6,"q":null,"m":90,"e":6434}],[-15,{"n":6,"q":null,"m":90,"e":6446}],[-14,{"n":5,"q":null,"m":90,"e":6454}],[-13,{"n":5.5,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6472}],[-11,{"n":6,"q":null,"m":90,"e":6480}],[-10,{"n":3,"q":null,"m":90,"e":6495}],[-9,{"n":6,"q":null,"m":90,"e":6500}],[-8,{"n":6,"q":null,"m":90,"e":6515}],[-7,{"n":6,"q":null,"m":90,"e":6526}],[-6,{"n":5.5,"q":null,"m":90,"e":6536}],[-5,{"n":5.5,"q":null,"m":90,"e":6538}],[-4,{"n":4,"q":null,"m":90,"e":6556}],[-3,{"n":6,"q":null,"m":90,"e":6565}],[-2,{"n":6,"q":null,"m":90,"e":6577}],[2,{"n":3,"q":null,"m":90,"e":10578}],[-1,{"n":6,"q":null,"m":90,"e":6581}],[1,{"n":5,"q":null,"m":90,"e":10933}]]}],[5074,{"n":"Mauricio","f":"Tony","fp":"MO","r":12,"c":102,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":173,"am":87,"dm":5,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":144,"On":28,"Oa":5.14,"Od":0.38,"Om":656,"Oam":23,"Odm":24,"pm":27,"pa":1},"p":[[-36,{"n":5,"q":null,"m":5,"e":5849,"s":1}],[-35,{"n":5,"q":null,"m":14,"e":5867,"s":1}],[-31,{"n":4.5,"q":null,"m":1,"e":5900,"s":1}],[-28,{"n":5.5,"q":null,"m":75,"e":5936}],[-27,{"n":5,"q":null,"m":5,"e":5938,"s":1}],[-25,{"n":5,"q":null,"m":3,"e":5966,"s":1}],[-23,{"n":5,"q":null,"m":8,"e":5980,"s":1}],[-21,{"n":5,"q":null,"m":16,"e":6000,"s":1}],[-9,{"n":5,"q":null,"m":17,"e":6121,"s":1}],[-20,{"n":6,"q":null,"m":11,"e":6015,"s":1}],[-16,{"n":5,"q":null,"m":6,"e":6052,"s":1}],[-15,{"n":5.5,"q":null,"m":33,"e":6062,"s":1}],[-13,{"n":5,"q":null,"m":19,"e":6087,"s":1}],[-12,{"n":5,"q":null,"m":15,"e":6088,"s":1}],[-8,{"n":5,"q":null,"m":24,"e":6130,"s":1}],[-10,{"n":5.5,"q":null,"m":63,"e":6110}],[-7,{"n":5,"q":null,"m":30,"e":6140,"s":1}],[-4,{"n":4.5,"q":null,"m":3,"e":6169,"s":1}],[-37,{"n":4.5,"q":null,"m":10,"e":5838,"s":1}],[-34,{"n":5.5,"q":null,"m":23,"e":5869,"s":1}],[-26,{"n":5.5,"q":null,"m":16,"e":5949,"s":1}],[-22,{"n":5,"q":null,"m":18,"e":5994,"s":1}],[-6,{"n":5.5,"q":null,"m":20,"e":6150,"s":1}],[-3,{"n":5.5,"q":null,"m":19,"e":6182,"s":1}],[-2,{"n":5,"q":null,"m":7,"e":6190,"s":1}],[2,{"n":5,"q":null,"m":83,"e":10578}],[-1,{"n":5,"q":null,"m":22,"e":6205,"s":1}],[1,{"n":6,"q":null,"m":90,"e":10933}]],"fo":[[10933,[{"t":"Y"}]]]}],[5105,{"n":"Diédhiou","f":"Christophe","fp":"DC","r":12,"c":102,"s":{"s":5,"n":1,"a":5,"m":1,"am":1,"Ss":5,"Sn":1,"Sa":5,"Sm":1,"Sam":1,"Og":1,"Os":123,"On":24,"Oa":5.13,"Od":1.05,"Om":1859,"Oam":77,"Odm":25,"pd":24,"Omsn":7.5},"p":[[-38,{"n":4,"q":null,"m":32,"e":6217,"s":1}],[-36,{"n":5,"q":null,"m":90,"e":6230}],[-35,{"n":7,"q":null,"m":90,"e":6244}],[-34,{"n":5,"q":null,"m":90,"e":6251}],[-33,{"n":5.5,"q":null,"m":90,"e":6264}],[-26,{"n":5.5,"q":null,"m":75,"e":6329}],[-23,{"n":3,"q":null,"m":44,"e":6367}],[-22,{"n":5.5,"q":null,"m":90,"e":6374}],[-21,{"n":5.5,"q":null,"m":28,"e":6387,"s":1}],[-14,{"n":4,"q":null,"m":59,"e":6454}],[-13,{"n":6,"q":null,"m":90,"e":6465}],[-12,{"n":6,"q":null,"m":90,"e":6472}],[-11,{"n":5,"q":null,"m":90,"e":6480}],[-10,{"n":3,"q":null,"m":90,"e":6495}],[-9,{"n":5,"q":null,"m":90,"e":6500}],[-8,{"n":4.5,"q":null,"m":90,"e":6515}],[-7,{"n":5.5,"q":null,"m":90,"e":6526}],[-6,{"n":4.5,"q":null,"m":90,"e":6536}],[-5,{"n":6,"q":null,"m":90,"e":6538}],[-4,{"n":4.5,"q":null,"m":90,"e":6556}],[-3,{"n":5.5,"q":null,"m":90,"e":6565}],[-2,{"n":5,"q":null,"m":90,"e":6577}],[-1,{"n":7.5,"q":null,"m":90,"e":6581,"g":1}],[1,{"n":5,"q":null,"m":1,"e":10933,"s":1}]]}],[5160,{"n":"Lopy","f":"Joseph","fp":"MD","r":19,"c":102,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Oao":1,"Os":184.5,"On":33,"Oa":5.59,"Od":0.91,"Om":2972,"Oam":90,"Odm":1,"pd":12,"pm":21,"Omsn":8},"p":[[-36,{"n":6.5,"q":null,"m":88,"e":6230}],[-35,{"n":6,"q":null,"m":90,"e":6244}],[-31,{"n":4.5,"q":null,"m":88,"e":6285}],[-30,{"n":6,"q":null,"m":90,"e":6292}],[-29,{"n":5.5,"q":null,"m":90,"e":6304}],[-28,{"n":5.5,"q":null,"m":90,"e":6314}],[-27,{"n":5,"q":null,"m":90,"e":6325}],[-26,{"n":5.5,"q":null,"m":90,"e":6329}],[-25,{"n":5,"q":null,"m":90,"e":6345}],[-24,{"n":6,"q":null,"m":90,"e":6350,"a":1}],[-23,{"n":6,"q":null,"m":90,"e":6367}],[-21,{"n":5.5,"q":null,"m":90,"e":6387}],[-20,{"n":3.5,"q":null,"m":96,"e":6395}],[-19,{"n":6,"q":null,"m":90,"e":6409}],[-18,{"n":6,"q":null,"m":90,"e":6414}],[-17,{"n":5.5,"q":null,"m":90,"e":6419}],[-16,{"n":5.5,"q":null,"m":90,"e":6434}],[-15,{"n":5.5,"q":null,"m":90,"e":6446}],[-14,{"n":5.5,"q":null,"m":90,"e":6454}],[-13,{"n":5,"q":null,"m":90,"e":6465}],[-12,{"n":7.5,"q":null,"m":90,"e":6472}],[-11,{"n":5.5,"q":null,"m":90,"e":6480}],[-10,{"n":3.5,"q":null,"m":90,"e":6495}],[-9,{"n":5.5,"q":null,"m":90,"e":6500}],[-8,{"n":5.5,"q":null,"m":90,"e":6515}],[-7,{"n":6,"q":null,"m":90,"e":6526}],[-6,{"n":5.5,"q":null,"m":90,"e":6536}],[-5,{"n":6,"q":null,"m":90,"e":6538}],[-3,{"n":5.5,"q":null,"m":90,"e":6565}],[-2,{"n":8,"q":null,"m":90,"e":6577,"g":1}],[2,{"n":4.5,"q":null,"m":90,"e":10578}],[-1,{"n":7,"q":null,"m":90,"e":6581}],[1,{"n":5,"q":null,"m":90,"e":10933}]],"fo":[[6345,[{"t":"Y"}]]]}],[5168,{"n":"Jeannin","f":"Mehdi","fp":"G","r":7,"c":102,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":1.06,"Om":180,"Oam":90,"pg":2},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6217}],[-37,{"n":4,"q":null,"m":90,"e":6222}]]}],[5372,{"n":"Thioune","f":"Ousseynou","fp":"MD","r":10,"c":102,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"m":147,"am":74,"dm":22,"Ss":5,"Sn":1,"Sa":5,"Sm":89,"Sam":89,"Os":159,"On":32,"Oa":4.97,"Od":0.79,"Om":2135,"Oam":67,"Odm":29,"pm":32},"p":[[-37,{"n":5,"q":null,"m":45,"e":6222}],[-36,{"n":4.5,"q":null,"m":19,"e":6230,"s":1}],[-35,{"n":6,"q":null,"m":68,"e":6244}],[-34,{"n":4.5,"q":null,"m":88,"e":6251}],[-33,{"n":5.5,"q":null,"m":89,"e":6264}],[-32,{"n":5,"q":null,"m":90,"e":6272}],[-31,{"n":5.5,"q":null,"m":2,"e":6285,"s":1}],[-30,{"n":5,"q":null,"m":19,"e":6292,"s":1}],[-29,{"n":3.5,"q":null,"m":75,"e":6304}],[-28,{"n":5.5,"q":null,"m":90,"e":6314}],[-27,{"n":5.5,"q":null,"m":9,"e":6325,"s":1}],[-26,{"n":4,"q":null,"m":21,"e":6329,"s":1}],[-25,{"n":4.5,"q":null,"m":16,"e":6345,"s":1}],[-24,{"n":4,"q":null,"m":45,"e":6350}],[-23,{"n":5,"q":null,"m":59,"e":6367}],[-21,{"n":4.5,"q":null,"m":72,"e":6387}],[-20,{"n":4.5,"q":null,"m":96,"e":6395}],[-19,{"n":5,"q":null,"m":90,"e":6409}],[-18,{"n":5.5,"q":null,"m":90,"e":6414}],[-17,{"n":6.5,"q":null,"m":90,"e":6419}],[-16,{"n":5.5,"q":null,"m":90,"e":6434}],[-15,{"n":6,"q":null,"m":90,"e":6446}],[-10,{"n":3,"q":null,"m":76,"e":6495}],[-9,{"n":5,"q":null,"m":90,"e":6500}],[-8,{"n":5.5,"q":null,"m":82,"e":6515}],[-7,{"n":5.5,"q":null,"m":85,"e":6526}],[-6,{"n":5,"q":null,"m":90,"e":6536}],[-3,{"n":4.5,"q":null,"m":77,"e":6565}],[-2,{"n":6,"q":null,"m":90,"e":6577}],[2,{"n":3.5,"q":null,"m":58,"e":10578}],[-1,{"n":5.5,"q":null,"m":45,"e":6581,"s":1}],[1,{"n":5,"q":null,"m":89,"e":10933}]],"fo":[[6222,[{"t":"Y"}]],[6230,[{"t":"Y"}]],[6264,[{"t":"Y"}]],[6304,[{"t":"Y"}]],[10578,[{"t":"Y"}]]]}],[5460,{"n":"Kitala","f":"Yann","fp":"A","r":1,"c":102,"s":{"Og":1,"Os":6.5,"On":1,"Oa":6.5,"Om":55,"Oam":55,"pa":1,"Omsn":6.5},"p":[[-1,{"n":6.5,"q":null,"m":55,"e":6581,"g":1}]]}],[6182,{"n":"Ndiaye","f":"Rassoul","fp":"MD","r":7,"c":102,"s":{"Os":123.5,"On":25,"Oa":4.94,"Od":0.36,"Om":778,"Oam":31,"Odm":30,"pm":25},"p":[[-38,{"n":4,"q":null,"m":71,"e":6217}],[-37,{"n":5.5,"q":null,"m":45,"e":6222,"s":1}],[-36,{"n":5,"q":null,"m":2,"e":6230,"s":1}],[-34,{"n":5,"q":null,"m":2,"e":6251,"s":1}],[-33,{"n":5,"q":null,"m":18,"e":6264,"s":1}],[-28,{"n":5,"q":null,"m":19,"e":6314}],[-27,{"n":5,"q":null,"m":28,"e":6325,"s":1}],[-26,{"n":5,"q":null,"m":6,"e":6329,"s":1}],[-25,{"n":5,"q":null,"m":1,"e":6345,"s":1}],[-24,{"n":4.5,"q":null,"m":45,"e":6350,"s":1}],[-23,{"n":5.5,"q":null,"m":90,"e":6367}],[-22,{"n":4.5,"q":null,"m":24,"e":6374,"s":1}],[-20,{"n":5.5,"q":null,"m":17,"e":6395,"s":1}],[-18,{"n":5,"q":null,"m":3,"e":6414,"s":1}],[-17,{"n":5,"q":null,"m":11,"e":6419,"s":1}],[-16,{"n":5,"q":null,"m":32,"e":6434,"s":1}],[-15,{"n":5,"q":null,"m":8,"e":6446,"s":1}],[-14,{"n":4.5,"q":null,"m":50,"e":6454,"s":1}],[-11,{"n":5.5,"q":null,"m":66,"e":6480}],[-10,{"n":5,"q":null,"m":14,"e":6495,"s":1}],[-6,{"n":5,"q":null,"m":1,"e":6536,"s":1}],[-5,{"n":5,"q":null,"m":89,"e":6538}],[-4,{"n":5,"q":null,"m":89,"e":6556}],[-3,{"n":4.5,"q":null,"m":2,"e":6565,"s":1}],[-1,{"n":4.5,"q":null,"m":45,"e":6581}]],"fo":[[6314,[{"t":"I"}]]]}],[6716,{"n":"Virginius","f":"Alan","fp":"A","r":5,"c":102,"s":{"g":1,"s":10,"n":2,"a":5,"d":1.41,"m":39,"am":20,"dm":18,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Sm":7,"Sam":7,"Og":4,"Os":85.5,"On":17,"Oa":5.03,"Od":1.21,"Om":552,"Oam":32,"Odm":20,"pm":3,"pa":14,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"q":null,"m":33,"e":6217,"s":1}],[-37,{"n":3,"q":null,"m":45,"e":6222}],[-32,{"n":4.5,"q":null,"m":26,"e":6272,"s":1}],[-31,{"n":4.5,"q":null,"m":25,"e":6285,"s":1}],[-30,{"n":4.5,"q":null,"m":2,"e":6292,"s":1}],[-29,{"n":5.5,"q":null,"m":62,"e":6304}],[-28,{"n":5.5,"q":null,"m":71,"e":6314}],[-27,{"n":4.5,"q":null,"m":22,"e":6325,"s":1}],[-24,{"n":8,"q":null,"m":66,"e":6350,"g":2}],[-23,{"n":4,"q":null,"m":45,"e":6367,"s":1}],[-14,{"n":7,"q":null,"m":45,"e":6454,"g":1,"s":1}],[-13,{"n":4.5,"q":null,"m":10,"e":6465,"s":1}],[-12,{"n":5,"q":null,"m":18,"e":6472,"s":1}],[-10,{"n":6,"q":null,"m":18,"e":6495,"s":1}],[-4,{"n":4.5,"q":null,"m":25,"e":6556,"s":1}],[2,{"n":4,"q":null,"m":32,"e":10578,"s":1}],[1,{"n":6,"q":null,"m":7,"e":10933,"g":1,"s":1}]],"fo":[[6350,[{"t":"I"}]]]}],[6717,{"n":"Zohoré","f":"Nathan","fp":"DC","r":1,"c":102}],[7293,{"n":"Faraj","f":"Samy","fp":"MO","r":1,"c":102}],[7294,{"n":"Aubin Diagne","f":"Sidy Mamadou","fp":"MD","r":1,"c":102}],[7521,{"n":"Viltard","f":"Malcolm","fp":"MD","r":1,"c":102}],[7560,{"n":"Camele","f":"Killian","fp":"DC","r":1,"c":102}],[7621,{"n":"Delphis","f":"Adrien","fp":"MO","r":1,"c":102}],[7828,{"n":"Tebily","f":"Hermann","fp":"A","r":3,"c":102,"s":{"s":9,"n":2,"a":4.5,"m":19,"am":10,"dm":4,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":7,"Sam":7,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"Om":98,"Oam":25,"Odm":24,"pa":4},"p":[[-38,{"n":5,"q":null,"m":19,"e":6217,"s":1}],[-37,{"n":5,"q":null,"m":60,"e":6222}],[2,{"n":4.5,"q":null,"m":12,"e":10578,"s":1}],[1,{"n":4.5,"q":null,"m":7,"e":10933,"s":1}]]}],[7992,{"n":"Galvez Diarra","f":"Quentin","fp":"G","r":1,"c":102}],[8063,{"n":"Kalulu","f":"Aldo","fp":"A","r":16,"c":102,"s":{"g":1,"s":11,"n":2,"a":5.5,"d":2.12,"m":166,"am":83,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Sm":83,"Sam":83,"Og":1,"Os":11,"On":2,"Oa":5.5,"Od":2.12,"Om":166,"Oam":83,"pa":2,"Smsn":7,"Omsn":7},"p":[[2,{"n":4,"q":null,"m":83,"e":10578}],[1,{"n":7,"q":null,"m":83,"e":10933,"g":1}]]}],[8069,{"n":"Do Couto Teixeira","f":"Maxime","fp":"A","r":9,"c":102,"s":{"s":11,"n":2,"a":5.5,"m":145,"am":73,"dm":8,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":67,"Sam":67,"Os":11,"On":2,"Oa":5.5,"Om":145,"Oam":73,"Odm":8,"pa":2},"p":[[2,{"n":5.5,"q":null,"m":78,"e":10578}],[1,{"n":5.5,"q":null,"m":67,"e":10933}]],"fo":[[10578,[{"t":"I"}]]]}],[144,{"n":"Issiaga Sylla","f":"","fp":"DL","r":9,"c":10,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":111,"On":22,"Oa":5.05,"Od":0.86,"Om":1298,"Oam":59,"Odm":35,"pd":9,"pm":13,"Omsn":7.5},"p":[[-33,{"n":5,"q":null,"m":72,"e":5879}],[-24,{"n":5,"q":null,"m":90,"e":5969}],[-19,{"n":5,"q":null,"m":90,"e":6020}],[-18,{"n":5.5,"q":null,"m":18,"e":6031,"s":1}],[-34,{"n":3.5,"q":null,"m":24,"e":5869}],[-26,{"n":5,"q":null,"m":1,"e":5949,"s":1}],[-25,{"n":5,"q":null,"m":8,"e":5966,"s":1}],[-16,{"n":4,"q":null,"m":56,"e":6052}],[-15,{"n":7.5,"q":null,"m":72,"e":6062,"g":1}],[-14,{"n":3.5,"q":null,"m":77,"e":6069}],[-13,{"n":4.5,"q":null,"m":90,"e":6087}],[-12,{"n":5,"q":null,"m":37,"e":6088,"s":1}],[-11,{"n":6,"q":null,"m":90,"e":6100}],[-10,{"n":4.5,"q":null,"m":27,"e":6110,"s":1}],[-8,{"n":6,"q":null,"m":84,"e":6130}],[-5,{"n":4.5,"q":null,"m":90,"e":6165}],[-4,{"n":5,"q":null,"m":90,"e":6169}],[-3,{"n":5,"q":null,"m":5,"e":6182,"s":1}],[-2,{"n":5.5,"q":null,"m":84,"e":6190}],[2,{"n":5.5,"q":null,"m":90,"e":10573}],[-1,{"n":5.5,"q":null,"m":13,"e":6205,"s":1}],[1,{"n":5,"q":null,"m":90,"e":10935}]],"fo":[[5869,[{"t":"R"}]],[10573,[{"t":"Y"}]]]}],[246,{"n":"Dupé","f":"Maxime","fp":"G","r":17,"c":10,"s":{"s":11.5,"n":2,"a":5.75,"d":1.06,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Os":216,"On":39,"Oa":5.54,"Od":1.24,"Om":3510,"Oam":90,"pg":39},"p":[[-33,{"n":6,"q":null,"m":90,"e":6265}],[-28,{"n":4,"q":null,"m":90,"e":6317}],[-22,{"n":5.5,"q":null,"m":90,"e":6375}],[-10,{"n":3,"q":null,"m":90,"e":6496}],[-6,{"n":7,"q":null,"m":90,"e":6537}],[-38,{"n":4.5,"q":null,"m":90,"e":6210}],[-37,{"n":7,"q":null,"m":90,"e":6225}],[-35,{"n":4.5,"q":null,"m":90,"e":6245}],[-34,{"n":6,"q":null,"m":90,"e":6253}],[-32,{"n":4.5,"q":null,"m":90,"e":6277}],[-31,{"n":5,"q":null,"m":90,"e":6286}],[-30,{"n":4.5,"q":null,"m":90,"e":6294}],[-29,{"n":5.5,"q":null,"m":90,"e":6305}],[-27,{"n":6,"q":null,"m":90,"e":6326}],[-26,{"n":4.5,"q":null,"m":90,"e":6335}],[-25,{"n":6,"q":null,"m":90,"e":6346}],[-24,{"n":8,"q":null,"m":90,"e":6356}],[-23,{"n":4,"q":null,"m":90,"e":6358}],[-21,{"n":7.5,"q":null,"m":90,"e":6387}],[-20,{"n":6.5,"q":null,"m":90,"e":6396}],[-19,{"n":4,"q":null,"m":90,"e":6410}],[-18,{"n":7.5,"q":null,"m":90,"e":6415}],[-17,{"n":6,"q":null,"m":90,"e":6427}],[-16,{"n":4.5,"q":null,"m":90,"e":6435}],[-15,{"n":7,"q":null,"m":90,"e":6440}],[-14,{"n":4.5,"q":null,"m":90,"e":6455}],[-13,{"n":5.5,"q":null,"m":90,"e":6463}],[-12,{"n":5,"q":null,"m":90,"e":6473}],[-11,{"n":6,"q":null,"m":90,"e":6479}],[-9,{"n":7,"q":null,"m":90,"e":6507}],[-8,{"n":6,"q":null,"m":90,"e":6516}],[-7,{"n":6.5,"q":null,"m":90,"e":6518}],[-5,{"n":6,"q":null,"m":90,"e":6545}],[-4,{"n":5.5,"q":null,"m":90,"e":6550}],[-3,{"n":6,"q":null,"m":90,"e":6565}],[-2,{"n":2.5,"q":null,"m":90,"e":6572}],[2,{"n":6.5,"q":null,"m":90,"e":10573}],[-1,{"n":5.5,"q":null,"m":90,"e":6578}],[1,{"n":5,"q":null,"m":90,"e":10935}]]}],[2586,{"n":"Healey","f":"Rhys","fp":"A","r":23,"c":10,"s":{"g":3,"s":14,"n":2,"a":7,"d":1.41,"m":145,"am":73,"dm":5,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Sm":69,"Sam":69,"Og":17,"Os":187,"On":34,"Oa":5.5,"Od":1.39,"Om":1826,"Oam":54,"Odm":32,"pa":34,"Smsn":6,"Omsn":6},"p":[[-38,{"n":8.5,"q":null,"m":90,"e":6210,"g":3}],[-37,{"n":4,"q":null,"m":14,"e":6225,"s":1}],[-36,{"n":4,"q":null,"m":17,"e":6235,"s":1}],[-35,{"n":4.5,"q":null,"m":26,"e":6245,"s":1}],[-34,{"n":4.5,"q":null,"m":61,"e":6253}],[-33,{"n":6,"q":null,"m":76,"e":6265}],[-32,{"n":6.5,"q":null,"m":90,"e":6277,"g":1}],[-31,{"n":5,"q":null,"m":90,"e":6286}],[-30,{"n":3.5,"q":null,"m":29,"e":6294,"s":1}],[-29,{"n":5,"q":null,"m":65,"e":6305}],[-28,{"n":4.5,"q":null,"m":18,"e":6317,"s":1}],[-27,{"n":7,"q":null,"m":83,"e":6326,"g":1}],[-25,{"n":5,"q":null,"m":83,"e":6346}],[-24,{"n":4.5,"q":null,"m":77,"e":6356}],[-23,{"n":6,"q":null,"m":90,"e":6358,"g":1}],[-22,{"n":4,"q":null,"m":27,"e":6375,"s":1}],[-21,{"n":4,"q":null,"m":19,"e":6387,"s":1}],[-18,{"n":6,"q":null,"m":82,"e":6415}],[-17,{"n":7,"q":null,"m":74,"e":6427,"g":1}],[-16,{"n":7.5,"q":null,"m":87,"e":6435,"g":2}],[-15,{"n":7.5,"q":null,"m":90,"e":6440,"g":1}],[-14,{"n":7,"q":null,"m":79,"e":6455,"g":1}],[-13,{"n":7.5,"q":null,"m":75,"e":6463,"g":1}],[-12,{"n":6,"q":null,"m":90,"e":6473,"g":1}],[-11,{"n":4,"q":null,"m":10,"e":6479,"s":1}],[-10,{"n":4,"q":null,"m":35,"e":6496,"s":1}],[-9,{"n":4.5,"q":null,"m":2,"e":6507,"s":1}],[-8,{"n":6,"q":null,"m":20,"e":6516,"s":1}],[-6,{"n":4.5,"q":null,"m":12,"e":6537,"s":1}],[-5,{"n":6,"q":null,"m":20,"e":6545,"g":1,"s":1}],[-4,{"n":5,"q":null,"m":23,"e":6550,"s":1}],[-3,{"n":4,"q":null,"m":27,"e":6565,"s":1}],[2,{"n":8,"q":null,"m":76,"e":10573,"g":2}],[1,{"n":6,"q":null,"m":69,"e":10935,"g":1}]],"fo":[[6286,[{"t":"Y"}]],[6356,[{"t":"Y"}]]]}],[2942,{"n":"N'Goumou Minpole","f":"Nathan","fp":"A","r":5,"c":10,"s":{"s":8,"n":1,"a":8,"m":90,"am":90,"Og":2,"Os":55.5,"On":10,"Oa":5.55,"Od":1.09,"Om":366,"Oam":37,"Odm":32,"pm":8,"pa":2,"Omsn":6.5},"p":[[-38,{"n":5,"q":null,"m":90,"e":6210}],[-37,{"n":6.5,"q":null,"m":10,"e":6225,"g":1,"s":1}],[-35,{"n":5,"q":null,"m":26,"e":6245,"s":1}],[-33,{"n":5,"q":null,"m":45,"e":6265}],[-26,{"n":5,"q":null,"m":17,"e":6335,"s":1}],[-20,{"n":5,"q":null,"m":7,"e":6396,"s":1}],[-19,{"n":6.5,"q":null,"m":17,"e":6410,"g":1,"s":1}],[-13,{"n":4.5,"q":null,"m":8,"e":6463,"s":1}],[2,{"n":8,"q":null,"m":90,"e":10573}],[-1,{"n":5,"q":null,"m":56,"e":6578}]]}],[2960,{"n":"Diakité","f":"Bafodé","fp":"DC","r":8,"c":10,"s":{"Og":2,"Os":111.5,"On":22,"Oa":5.07,"Od":1.04,"Om":1715,"Oam":78,"Odm":26,"pd":22,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":90,"e":6210}],[-36,{"n":3.5,"q":null,"m":90,"e":6235}],[-27,{"n":6,"q":null,"m":90,"e":6326}],[-24,{"n":5,"q":null,"m":90,"e":6356}],[-23,{"n":4,"q":null,"m":64,"e":6358}],[-22,{"n":4,"q":null,"m":90,"e":6375}],[-21,{"n":7,"q":null,"m":90,"e":6387,"g":1}],[-20,{"n":6.5,"q":null,"m":90,"e":6396}],[-19,{"n":6,"q":null,"m":90,"e":6410,"g":1}],[-18,{"n":5.5,"q":null,"m":52,"e":6415,"s":1}],[-17,{"n":5,"q":null,"m":1,"e":6427,"s":1}],[-16,{"n":4,"q":null,"m":90,"e":6435}],[-15,{"n":6,"q":null,"m":90,"e":6440}],[-14,{"n":5,"q":null,"m":90,"e":6455}],[-13,{"n":5,"q":null,"m":15,"e":6463,"s":1}],[-12,{"n":5.5,"q":null,"m":90,"e":6473}],[-6,{"n":3.5,"q":null,"m":53,"e":6537}],[-5,{"n":5,"q":null,"m":90,"e":6545}],[-4,{"n":5.5,"q":null,"m":90,"e":6550}],[-3,{"n":6,"q":null,"m":90,"e":6565}],[-2,{"n":3,"q":null,"m":90,"e":6572}],[-1,{"n":5.5,"q":null,"m":90,"e":6578}]],"fo":[[6235,[{"t":"Y"}]]]}],[3753,{"n":"Diarra","f":"Moussa","fp":"DC","r":8,"c":10,"s":{"s":11.5,"n":2,"a":5.75,"d":1.77,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":97.5,"On":19,"Oa":5.13,"Od":0.74,"Om":731,"Oam":38,"Odm":40,"pd":17,"pm":2},"p":[[-38,{"n":5,"q":null,"m":90,"e":6210}],[-37,{"n":5,"q":null,"m":63,"e":6225}],[-36,{"n":3.5,"q":null,"m":90,"e":6235}],[-34,{"n":6,"q":null,"m":90,"e":6253}],[-31,{"n":5,"q":null,"m":9,"e":6286,"s":1}],[-29,{"n":5,"q":null,"m":2,"e":6305,"s":1}],[-27,{"n":6.5,"q":null,"m":8,"e":6326,"s":1}],[-26,{"n":4.5,"q":null,"m":63,"e":6335}],[-25,{"n":5,"q":null,"m":7,"e":6346,"s":1}],[-23,{"n":5,"q":null,"m":10,"e":6358,"s":1}],[-22,{"n":5,"q":null,"m":2,"e":6375,"s":1}],[-21,{"n":5,"q":null,"m":3,"e":6387,"s":1}],[-18,{"n":5,"q":null,"m":12,"e":6415,"s":1}],[-17,{"n":5,"q":null,"m":1,"e":6427,"s":1}],[-15,{"n":5,"q":null,"m":3,"e":6440,"s":1}],[-13,{"n":5,"q":null,"m":8,"e":6463,"s":1}],[2,{"n":7,"q":null,"m":90,"e":10573}],[-1,{"n":5.5,"q":null,"m":90,"e":6578}],[1,{"n":4.5,"q":null,"m":90,"e":10935}]]}],[6155,{"n":"Zobo","f":"Stéphane","fp":"A","r":1,"c":10,"s":{"s":5,"n":1,"a":5,"m":10,"am":10,"Ss":5,"Sn":1,"Sa":5,"Sm":10,"Sam":10,"Os":5,"On":1,"Oa":5,"Om":10,"Oam":10,"pa":1},"p":[[1,{"n":5,"q":null,"m":10,"e":10935,"s":1}]]}],[6156,{"n":"Adli","f":"Amine","fp":"MO","r":14,"c":10,"s":{"s":4.5,"n":1,"a":4.5,"m":89,"am":89,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":89,"Sam":89,"Og":8,"Os":183.5,"On":34,"Oa":5.4,"Od":1.3,"Om":2608,"Oam":77,"Odm":20,"pm":8,"pa":26,"Omsn":6.5},"p":[[-37,{"n":6.5,"q":null,"m":80,"e":6225}],[-36,{"n":3.5,"q":null,"m":90,"e":6235}],[-35,{"n":3,"q":null,"m":64,"e":6245}],[-34,{"n":6,"q":null,"m":79,"e":6253}],[-31,{"n":6.5,"q":null,"m":90,"e":6286,"g":1}],[-30,{"n":2.5,"q":null,"m":90,"e":6294}],[-29,{"n":6,"q":null,"m":90,"e":6305}],[-28,{"n":4.5,"q":null,"m":90,"e":6317}],[-27,{"n":6.5,"q":null,"m":70,"e":6326}],[-26,{"n":3.5,"q":null,"m":90,"e":6335}],[-25,{"n":7,"q":null,"m":90,"e":6346,"g":1}],[-24,{"n":7,"q":null,"m":90,"e":6356,"g":1}],[-23,{"n":3.5,"q":null,"m":81,"e":6358}],[-22,{"n":6.5,"q":null,"m":88,"e":6375}],[-21,{"n":5,"q":null,"m":90,"e":6387}],[-20,{"n":7,"q":null,"m":90,"e":6396,"g":1}],[-19,{"n":5.5,"q":null,"m":90,"e":6410}],[-18,{"n":6,"q":null,"m":90,"e":6415}],[-17,{"n":6.5,"q":null,"m":83,"e":6427}],[-16,{"n":7,"q":null,"m":68,"e":6435,"g":1}],[-15,{"n":5,"q":null,"m":66,"e":6440}],[-14,{"n":5.5,"q":null,"m":70,"e":6455}],[-13,{"n":6.5,"q":null,"m":24,"e":6463,"g":1,"s":1}],[-12,{"n":5,"q":null,"m":81,"e":6473}],[-11,{"n":4,"q":null,"m":72,"e":6479}],[-10,{"n":7.5,"q":null,"m":90,"e":6496,"g":2}],[-9,{"n":6,"q":null,"m":88,"e":6507}],[-8,{"n":5,"q":null,"m":90,"e":6516}],[-6,{"n":4.5,"q":null,"m":25,"e":6537,"s":1}],[-4,{"n":4,"q":null,"m":44,"e":6550,"s":1}],[-3,{"n":5.5,"q":null,"m":63,"e":6565}],[-2,{"n":5.5,"q":null,"m":23,"e":6572,"s":1}],[-1,{"n":5.5,"q":null,"m":90,"e":6578}],[1,{"n":4.5,"q":null,"m":89,"e":10935}]],"fo":[[6235,[{"t":"Y"}]],[6335,[{"t":"Y"}]],[6346,[{"t":"Y"}]]]}],[6157,{"n":"Rouault","f":"Anthony","fp":"DC","r":8,"c":10,"s":{"g":1,"s":13,"n":2,"a":6.5,"d":2.12,"m":135,"am":68,"dm":32,"Ss":5,"Sn":1,"Sa":5,"Sm":45,"Sam":45,"Og":1,"Os":87.5,"On":17,"Oa":5.15,"Od":1.38,"Om":1257,"Oam":74,"Odm":28,"pd":17,"Smsn":8,"Omsn":8},"p":[[-38,{"n":3.5,"q":null,"m":90,"e":6210}],[-36,{"n":3.5,"q":null,"m":90,"e":6235}],[-34,{"n":5.5,"q":null,"m":90,"e":6253}],[-30,{"n":5,"q":null,"m":90,"e":6294}],[-28,{"n":5,"q":null,"m":90,"e":6317}],[-18,{"n":3.5,"q":null,"m":32,"e":6415}],[-17,{"n":7,"q":null,"m":90,"e":6427}],[-16,{"n":5,"q":null,"m":21,"e":6435,"s":1}],[-13,{"n":5,"q":null,"m":70,"e":6463}],[-12,{"n":5,"q":null,"m":9,"e":6473,"s":1}],[-11,{"n":6,"q":null,"m":90,"e":6479}],[-10,{"n":2.5,"q":null,"m":90,"e":6496}],[-9,{"n":5.5,"q":null,"m":90,"e":6507}],[-8,{"n":6.5,"q":null,"m":90,"e":6516}],[-7,{"n":6,"q":null,"m":90,"e":6518}],[2,{"n":8,"q":null,"m":90,"e":10573,"g":1}],[1,{"n":5,"q":null,"m":45,"e":10935}]]}],[6159,{"n":"Sanna","f":"Sam","fp":"DL","r":9,"c":10,"s":{"s":5,"n":1,"a":5,"m":7,"am":7,"Os":99.5,"On":21,"Oa":4.74,"Od":0.72,"Om":1188,"Oam":57,"Odm":37,"pd":7,"pm":14},"p":[[-38,{"n":4,"q":null,"m":90,"e":6210}],[-37,{"n":5.5,"q":null,"m":27,"e":6225,"s":1}],[-35,{"n":5,"q":null,"m":4,"e":6245,"s":1}],[-33,{"n":5,"q":null,"m":10,"e":6265,"s":1}],[-32,{"n":5,"q":null,"m":90,"e":6277}],[-31,{"n":5.5,"q":null,"m":90,"e":6286}],[-29,{"n":5,"q":null,"m":2,"e":6305,"s":1}],[-26,{"n":3.5,"q":null,"m":73,"e":6335}],[-23,{"n":4,"q":null,"m":64,"e":6358}],[-20,{"n":5.5,"q":null,"m":90,"e":6396}],[-17,{"n":5,"q":null,"m":89,"e":6427}],[-13,{"n":4.5,"q":null,"m":82,"e":6463}],[-9,{"n":4.5,"q":null,"m":1,"e":6507,"s":1}],[-8,{"n":4.5,"q":null,"m":8,"e":6516,"s":1}],[-7,{"n":6.5,"q":null,"m":90,"e":6518}],[-6,{"n":5,"q":null,"m":56,"e":6537}],[-5,{"n":4.5,"q":null,"m":90,"e":6545}],[-4,{"n":4,"q":null,"m":45,"e":6550}],[-3,{"n":4.5,"q":null,"m":90,"e":6565}],[-2,{"n":3.5,"q":null,"m":90,"e":6572}],[2,{"n":5,"q":null,"m":7,"e":10573,"s":1}]],"fo":[[6210,[{"t":"Y"}]],[6277,[{"t":"Y"}]]]}],[6164,{"n":"Bloch","f":"Florentin","fp":"G","r":3,"c":10}],[6394,{"n":"Gabrielsen","f":"Ruben","fp":"DC","r":20,"c":10,"s":{"g":1,"s":12,"n":2,"a":6,"d":2.12,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Og":2,"Os":177,"On":33,"Oa":5.36,"Od":0.96,"Om":2928,"Oam":89,"Odm":5,"pd":33,"Smsn":7.5,"Omsn":6.5},"p":[[-37,{"n":6.5,"q":null,"m":87,"e":6225}],[-36,{"n":4,"q":null,"m":90,"e":6235}],[-35,{"n":4.5,"q":null,"m":72,"e":6245}],[-34,{"n":5.5,"q":null,"m":90,"e":6253}],[-33,{"n":6,"q":null,"m":90,"e":6265}],[-32,{"n":5,"q":null,"m":90,"e":6277}],[-31,{"n":6.5,"q":null,"m":90,"e":6286,"g":1}],[-30,{"n":5,"q":null,"m":90,"e":6294}],[-29,{"n":5.5,"q":null,"m":90,"e":6305}],[-26,{"n":5,"q":null,"m":90,"e":6335}],[-25,{"n":6,"q":null,"m":90,"e":6346}],[-24,{"n":5,"q":null,"m":90,"e":6356}],[-23,{"n":4,"q":null,"m":90,"e":6358}],[-22,{"n":5.5,"q":null,"m":90,"e":6375}],[-21,{"n":6,"q":null,"m":90,"e":6387}],[-20,{"n":6,"q":null,"m":90,"e":6396}],[-16,{"n":4.5,"q":null,"m":69,"e":6435}],[-15,{"n":6,"q":null,"m":90,"e":6440}],[-14,{"n":5.5,"q":null,"m":90,"e":6455}],[-13,{"n":5.5,"q":null,"m":90,"e":6463}],[-12,{"n":5,"q":null,"m":90,"e":6473}],[-11,{"n":5,"q":null,"m":90,"e":6479}],[-10,{"n":3,"q":null,"m":90,"e":6496}],[-9,{"n":6,"q":null,"m":90,"e":6507}],[-8,{"n":6,"q":null,"m":90,"e":6516}],[-6,{"n":5.5,"q":null,"m":90,"e":6537}],[-5,{"n":6,"q":null,"m":90,"e":6545}],[-4,{"n":6,"q":null,"m":90,"e":6550}],[-3,{"n":6,"q":null,"m":90,"e":6565}],[-2,{"n":3,"q":null,"m":90,"e":6572}],[2,{"n":7.5,"q":null,"m":90,"e":10573,"g":1}],[-1,{"n":6,"q":null,"m":90,"e":6578}],[1,{"n":4.5,"q":null,"m":90,"e":10935}]],"fo":[[6245,[{"t":"Y"}]],[6253,[{"t":"Y"}]],[6286,[{"t":"Y"}]],[6346,[{"t":"Y"}]]]}],[6563,{"n":"Antiste","f":"Janis","fp":"A","r":9,"c":10,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":107,"am":54,"dm":37,"Ss":5,"Sn":1,"Sa":5,"Sm":80,"Sam":80,"Og":6,"Os":153,"On":32,"Oa":4.78,"Od":1.01,"Om":1244,"Oam":39,"Odm":31,"pa":32,"Omsn":6},"p":[[-38,{"n":5,"q":null,"m":90,"e":6210}],[-35,{"n":4.5,"q":null,"m":18,"e":6245,"s":1}],[-34,{"n":4.5,"q":null,"m":11,"e":6253,"s":1}],[-33,{"n":4.5,"q":null,"m":14,"e":6265,"s":1}],[-32,{"n":4,"q":null,"m":65,"e":6277}],[-31,{"n":7,"q":null,"m":73,"e":6286,"g":1}],[-30,{"n":4.5,"q":null,"m":5,"e":6294,"s":1}],[-29,{"n":4.5,"q":null,"m":15,"e":6305,"s":1}],[-27,{"n":4.5,"q":null,"m":7,"e":6326,"s":1}],[-26,{"n":4,"q":null,"m":27,"e":6335,"s":1}],[-23,{"n":4.5,"q":null,"m":9,"e":6358,"s":1}],[-22,{"n":4,"q":null,"m":2,"e":6375,"s":1}],[-20,{"n":4.5,"q":null,"m":60,"e":6396}],[-19,{"n":4,"q":null,"m":73,"e":6410}],[-18,{"n":4.5,"q":null,"m":8,"e":6415,"s":1}],[-17,{"n":5,"q":null,"m":16,"e":6427,"s":1}],[-16,{"n":6,"q":null,"m":22,"e":6435,"s":1}],[-15,{"n":5.5,"q":null,"m":24,"e":6440,"s":1}],[-14,{"n":6,"q":null,"m":20,"e":6455,"g":1,"s":1}],[-13,{"n":4,"q":null,"m":24,"e":6463,"s":1}],[-12,{"n":4,"q":null,"m":67,"e":6473}],[-11,{"n":6,"q":null,"m":90,"e":6479,"g":1}],[-10,{"n":6,"q":null,"m":35,"e":6496,"g":1,"s":1}],[-7,{"n":2,"q":null,"m":8,"e":6518}],[-6,{"n":5,"q":null,"m":90,"e":6537}],[-5,{"n":4.5,"q":null,"m":70,"e":6545}],[-4,{"n":6,"q":null,"m":90,"e":6550,"g":1}],[-3,{"n":4,"q":null,"m":10,"e":6565,"s":1}],[-2,{"n":7,"q":null,"m":23,"e":6572,"g":1,"s":1}],[2,{"n":4.5,"q":null,"m":27,"e":10573,"s":1}],[-1,{"n":4,"q":null,"m":71,"e":6578}],[1,{"n":5,"q":null,"m":80,"e":10935}]]}],[6853,{"n":"van den Boomen","f":"Branco","fp":"MO","r":20,"c":10,"s":{"s":15.5,"n":2,"a":7.75,"d":1.06,"m":180,"am":90,"Ss":7,"Sn":1,"Sa":7,"Sm":90,"Sam":90,"Og":5,"Os":208,"On":37,"Oa":5.62,"Od":1.15,"Om":2612,"Oam":71,"Odm":27,"pm":37,"Omsn":6.5},"p":[[-38,{"n":5,"q":null,"m":19,"e":6210,"s":1}],[-37,{"n":6,"q":null,"m":45,"e":6225,"s":1}],[-36,{"n":6,"q":null,"m":73,"e":6235}],[-35,{"n":6,"q":null,"m":90,"e":6245}],[-34,{"n":6,"q":null,"m":90,"e":6253}],[-32,{"n":5.5,"q":null,"m":90,"e":6277}],[-31,{"n":5,"q":null,"m":17,"e":6286,"s":1}],[-30,{"n":3.5,"q":null,"m":61,"e":6294}],[-29,{"n":6.5,"q":null,"m":75,"e":6305,"g":1}],[-28,{"n":4,"q":null,"m":72,"e":6317}],[-27,{"n":5,"q":null,"m":82,"e":6326}],[-26,{"n":4.5,"q":null,"m":90,"e":6335}],[-25,{"n":7,"q":null,"m":90,"e":6346}],[-24,{"n":5.5,"q":null,"m":90,"e":6356}],[-23,{"n":5,"q":null,"m":80,"e":6358}],[-22,{"n":8,"q":null,"m":90,"e":6375,"g":2}],[-21,{"n":6,"q":null,"m":87,"e":6387}],[-20,{"n":5,"q":null,"m":11,"e":6396,"s":1}],[-19,{"n":5,"q":null,"m":90,"e":6410}],[-18,{"n":5.5,"q":null,"m":90,"e":6415}],[-17,{"n":7.5,"q":null,"m":89,"e":6427}],[-16,{"n":5,"q":null,"m":90,"e":6435}],[-15,{"n":7,"q":null,"m":90,"e":6440}],[-14,{"n":6,"q":null,"m":79,"e":6455}],[-12,{"n":7.5,"q":null,"m":81,"e":6473,"g":1}],[-11,{"n":5,"q":null,"m":90,"e":6479}],[-10,{"n":4.5,"q":null,"m":12,"e":6496,"s":1}],[-9,{"n":4.5,"q":null,"m":10,"e":6507,"s":1}],[-8,{"n":4.5,"q":null,"m":31,"e":6516,"s":1}],[-6,{"n":4.5,"q":null,"m":65,"e":6537}],[-5,{"n":6.5,"q":null,"m":82,"e":6545,"g":1}],[-4,{"n":5,"q":null,"m":67,"e":6550}],[-3,{"n":5,"q":null,"m":90,"e":6565}],[-2,{"n":5,"q":null,"m":90,"e":6572}],[2,{"n":8.5,"q":null,"m":90,"e":10573}],[-1,{"n":5,"q":null,"m":34,"e":6578,"s":1}],[1,{"n":7,"q":null,"m":90,"e":10935}]],"fo":[[6253,[{"t":"Y"}]],[6326,[{"t":"Y"}]]]}],[7298,{"n":"Dejaegere","f":"Brecht","fp":"MO","r":22,"c":10,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":160,"am":80,"dm":4,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":77,"Sam":77,"Og":3,"Os":193,"On":33,"Oa":5.85,"Od":0.9,"Om":2484,"Oam":75,"Odm":19,"pm":33,"Omsn":6},"p":[[-37,{"n":6,"q":null,"m":45,"e":6225,"g":1}],[-35,{"n":5,"q":null,"m":86,"e":6245}],[-33,{"n":6.5,"q":null,"m":90,"e":6265}],[-32,{"n":5,"q":null,"m":90,"e":6277}],[-31,{"n":6.5,"q":null,"m":66,"e":6286}],[-30,{"n":4,"q":null,"m":90,"e":6294}],[-29,{"n":7,"q":null,"m":76,"e":6305}],[-28,{"n":5,"q":null,"m":90,"e":6317}],[-27,{"n":5.5,"q":null,"m":60,"e":6326}],[-25,{"n":6,"q":null,"m":83,"e":6346}],[-24,{"n":6,"q":null,"m":66,"e":6356}],[-23,{"n":7,"q":null,"m":27,"e":6358,"s":1}],[-22,{"n":5.5,"q":null,"m":56,"e":6375}],[-21,{"n":5,"q":null,"m":90,"e":6387}],[-20,{"n":7,"q":null,"m":83,"e":6396}],[-19,{"n":5,"q":null,"m":90,"e":6410}],[-18,{"n":5.5,"q":null,"m":78,"e":6415}],[-17,{"n":6.5,"q":null,"m":74,"e":6427}],[-16,{"n":6,"q":null,"m":68,"e":6435}],[-15,{"n":7,"q":null,"m":83,"e":6440}],[-14,{"n":6.5,"q":null,"m":90,"e":6455}],[-13,{"n":7.5,"q":null,"m":82,"e":6463}],[-12,{"n":5,"q":null,"m":9,"e":6473,"s":1}],[-11,{"n":4,"q":null,"m":90,"e":6479}],[-10,{"n":6.5,"q":null,"m":90,"e":6496,"g":1}],[-9,{"n":6.5,"q":null,"m":89,"e":6507}],[-8,{"n":7,"q":null,"m":82,"e":6516,"g":1}],[-7,{"n":6,"q":null,"m":77,"e":6518}],[-6,{"n":5.5,"q":null,"m":64,"e":6537}],[-5,{"n":5.5,"q":null,"m":70,"e":6545}],[-4,{"n":5.5,"q":null,"m":90,"e":6550}],[2,{"n":6,"q":null,"m":83,"e":10573}],[1,{"n":4.5,"q":null,"m":77,"e":10935}]],"fo":[[6356,[{"t":"Y"}]],[10573,[{"t":"Y"}]]]}],[7389,{"n":"Spierings","f":"Stijn","fp":"MD","r":25,"c":10,"s":{"s":10,"n":2,"a":5,"m":27,"am":14,"dm":1,"Ss":5,"Sn":1,"Sa":5,"Sm":13,"Sam":13,"Og":9,"Os":176,"On":29,"Oa":6.07,"Od":1.21,"Om":2247,"Oam":77,"Odm":24,"pm":29,"Omsn":7},"p":[[-38,{"n":5,"q":null,"m":71,"e":6210}],[-37,{"n":7,"q":null,"m":90,"e":6225}],[-36,{"n":5,"q":null,"m":90,"e":6235}],[-34,{"n":5.5,"q":null,"m":90,"e":6253}],[-31,{"n":4.5,"q":null,"m":24,"e":6286,"s":1}],[-30,{"n":5,"q":null,"m":61,"e":6294}],[-29,{"n":6.5,"q":null,"m":90,"e":6305}],[-28,{"n":4,"q":null,"m":45,"e":6317}],[-27,{"n":8,"q":null,"m":90,"e":6326,"g":1}],[-25,{"n":6,"q":null,"m":63,"e":6346}],[-24,{"n":5.5,"q":null,"m":90,"e":6356}],[-23,{"n":4,"q":null,"m":90,"e":6358}],[-22,{"n":7,"q":null,"m":88,"e":6375,"g":1}],[-21,{"n":6,"q":null,"m":71,"e":6387}],[-20,{"n":6,"q":null,"m":90,"e":6396}],[-19,{"n":6,"q":null,"m":90,"e":6410}],[-18,{"n":7,"q":null,"m":90,"e":6415,"g":1}],[-17,{"n":7,"q":null,"m":90,"e":6427}],[-16,{"n":7,"q":null,"m":90,"e":6435,"g":1}],[-15,{"n":8,"q":null,"m":87,"e":6440,"g":1}],[-14,{"n":5.5,"q":null,"m":90,"e":6455}],[-13,{"n":7.5,"q":null,"m":90,"e":6463,"g":1}],[-12,{"n":6,"q":null,"m":90,"e":6473}],[-10,{"n":4.5,"q":null,"m":90,"e":6496}],[-9,{"n":7.5,"q":null,"m":90,"e":6507,"g":1}],[-8,{"n":7,"q":null,"m":90,"e":6516,"g":1}],[-7,{"n":8,"q":null,"m":90,"e":6518,"g":1}],[2,{"n":5,"q":null,"m":14,"e":10573,"s":1}],[1,{"n":5,"q":null,"m":13,"e":10935,"s":1}]],"fo":[[6235,[{"t":"Y"}]],[6253,[{"t":"Y"}]],[6286,[{"t":"Y"}]],[6356,[{"t":"Y"}]]]}],[7663,{"n":"Pettersson","f":"Isak","fp":"G","r":7,"c":10,"s":{"Os":3,"On":1,"Oa":3,"Om":90,"Oam":90,"pg":1},"p":[[-36,{"n":3,"q":null,"m":90,"e":6235}]]}],[7708,{"n":"Skyttä","f":"Naatan","fp":"MO","r":6,"c":10,"s":{"s":5.5,"n":1,"a":5.5,"m":21,"am":21,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":21,"Sam":21,"Os":5.5,"On":1,"Oa":5.5,"Om":21,"Oam":21,"pm":1},"p":[[1,{"n":5.5,"q":null,"m":21,"e":10935,"s":1}]]}],[7770,{"n":"Rapnouil","f":"Tom","fp":"DL","r":1,"c":10}],[7786,{"n":"Bangré","f":"Mamady","fp":"MO","r":3,"c":10,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"Om":73,"Oam":37,"Odm":12,"pm":2},"p":[[-38,{"n":4.5,"q":null,"m":28,"e":6210,"s":1}],[-33,{"n":5,"q":null,"m":45,"e":6265,"s":1}]]}],[7787,{"n":"Himeur","f":"Thomas","fp":"G","r":1,"c":10}],[8057,{"n":"Onaiwu","f":"Ado","fp":"A","r":9,"c":10,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":108,"am":54,"dm":13,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":45,"Sam":45,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"Om":108,"Oam":54,"Odm":13,"pa":2},"p":[[2,{"n":4,"q":null,"m":63,"e":10573}],[1,{"n":4.5,"q":null,"m":45,"e":10935,"s":1}]]}],[8075,{"n":"Desler","f":"Mikkel","fp":"DL","r":9,"c":10,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":180,"am":90,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":90,"Sam":90,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"Om":180,"Oam":90,"pd":2},"p":[[2,{"n":5,"q":null,"m":90,"e":10573}],[1,{"n":4.5,"q":null,"m":90,"e":10935}]]}],[8898,{"n":"Restes","f":"Guillaume","fp":"G","r":1,"c":10}],[389,{"n":"Cuffaut","f":"Joffrey","fp":"DL","r":20,"c":91,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":10,"Os":191,"On":35,"Oa":5.46,"Od":1.14,"Om":3011,"Oam":84,"Odm":19,"pd":30,"pm":5,"Omsn":5},"p":[[-21,{"n":7,"q":null,"m":90,"e":6379,"g":2}],[-8,{"n":5,"q":null,"m":90,"e":6517}],[-3,{"n":6,"q":null,"m":90,"e":6567}],[-37,{"n":5,"q":null,"m":45,"e":6227,"g":1,"s":1}],[-35,{"n":5.5,"q":null,"m":55,"e":6247}],[-34,{"n":5.5,"q":null,"m":90,"e":6248,"g":1}],[-33,{"n":6,"q":null,"m":90,"e":6267}],[-32,{"n":6,"q":null,"m":90,"e":6276}],[-30,{"n":7,"q":null,"m":90,"e":6297,"g":1}],[-29,{"n":3,"q":null,"m":90,"e":6303}],[-28,{"n":6,"q":null,"m":90,"e":6317}],[-27,{"n":4,"q":null,"m":90,"e":6321}],[-26,{"n":5.5,"q":null,"m":90,"e":6336}],[-25,{"n":4,"q":null,"m":90,"e":6345}],[-24,{"n":4,"q":null,"m":90,"e":6357}],[-23,{"n":5,"q":null,"m":76,"e":6359}],[-22,{"n":6,"q":null,"m":90,"e":6377}],[-20,{"n":7.5,"q":null,"m":90,"e":6397,"g":1}],[-19,{"n":6,"q":null,"m":90,"e":6401}],[-18,{"n":4.5,"q":null,"m":45,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4,"q":null,"m":90,"e":6437}],[-15,{"n":5,"q":null,"m":90,"e":6441}],[-14,{"n":5,"q":null,"m":90,"e":6450}],[-13,{"n":5.5,"q":null,"m":90,"e":6467}],[-12,{"n":5.5,"q":null,"m":90,"e":6474}],[-11,{"n":6,"q":null,"m":90,"e":6486}],[-10,{"n":8.5,"q":null,"m":90,"e":6496,"g":4}],[-9,{"n":4,"q":null,"m":90,"e":6506}],[-6,{"n":5,"q":null,"m":90,"e":6533}],[-5,{"n":7,"q":null,"m":90,"e":6547}],[-4,{"n":4.5,"q":null,"m":90,"e":6551}],[-2,{"n":5,"q":null,"m":90,"e":6575}],[2,{"n":6,"q":null,"m":90,"e":10572}],[-1,{"n":6.5,"q":null,"m":90,"e":6586}],[1,{"n":5,"q":null,"m":90,"e":10932}]],"fo":[[6247,[{"t":"I"}]],[6303,[{"t":"Y"}]],[6357,[{"t":"Y"}]]]}],[1169,{"n":"Guillaume","f":"Baptiste","fp":"A","r":19,"c":91,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Og":11,"Os":159.5,"On":31,"Oa":5.15,"Od":1.06,"Om":2608,"Oam":82,"Odm":20,"pa":31,"Omsn":6},"p":[[-35,{"n":5,"q":null,"m":80,"e":6247}],[-34,{"n":6,"q":null,"m":89,"e":6248}],[-33,{"n":4.5,"q":null,"m":90,"e":6267}],[-32,{"n":5,"q":null,"m":90,"e":6276}],[-31,{"n":3.5,"q":null,"m":90,"e":6278}],[-30,{"n":6.5,"q":null,"m":90,"e":6297,"g":1}],[-29,{"n":3.5,"q":null,"m":90,"e":6303}],[-28,{"n":6,"q":null,"m":90,"e":6317,"g":1}],[-27,{"n":5,"q":null,"m":61,"e":6321}],[-26,{"n":6.5,"q":null,"m":90,"e":6336,"g":1}],[-25,{"n":4,"q":null,"m":90,"e":6345}],[-24,{"n":4,"q":null,"m":90,"e":6357}],[-22,{"n":5,"q":null,"m":90,"e":6377}],[-21,{"n":4,"q":null,"m":90,"e":6379}],[-20,{"n":6,"q":null,"m":85,"e":6397}],[-19,{"n":7,"q":null,"m":90,"e":6401,"g":1}],[-18,{"n":6,"q":null,"m":90,"e":6417,"g":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5,"q":null,"m":90,"e":6437}],[-15,{"n":6,"q":null,"m":90,"e":6441,"g":1}],[-14,{"n":6,"q":null,"m":90,"e":6450,"g":1}],[-13,{"n":6.5,"q":null,"m":90,"e":6467,"g":1}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":6.5,"q":null,"m":90,"e":6486,"g":1}],[-10,{"n":4.5,"q":null,"m":90,"e":6496}],[-9,{"n":4,"q":null,"m":90,"e":6506}],[-4,{"n":3.5,"q":null,"m":58,"e":6551}],[-3,{"n":6,"q":null,"m":68,"e":6567,"g":1}],[-2,{"n":4,"q":null,"m":55,"e":6575}],[2,{"n":5,"q":null,"m":90,"e":10572}],[-1,{"n":6,"q":null,"m":42,"e":6586,"g":1}],[1,{"n":4,"q":null,"m":90,"e":10932}]],"fo":[[6248,[{"t":"I"},{"t":"Y"}]],[6247,[{"t":"Y"}]]]}],[3769,{"n":"Masson","f":"Julien","fp":"MD","r":3,"c":91,"s":{"s":12.5,"n":2,"a":6.25,"d":1.06,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Oao":1,"Os":103,"On":20,"Oa":5.15,"Od":0.76,"Om":1466,"Oam":70,"Odm":29,"pm":20},"p":[[-30,{"n":6,"q":null,"m":36,"e":6297,"s":1}],[-19,{"n":5,"q":null,"m":45,"e":6401}],[-18,{"n":5,"q":null,"m":34,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6437}],[-15,{"n":4.5,"q":null,"m":90,"e":6441}],[-14,{"n":5.5,"q":null,"m":82,"e":6450}],[-13,{"n":4.5,"q":null,"m":90,"e":6467,"a":1}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":5.5,"q":null,"m":90,"e":6486}],[-10,{"n":5,"q":null,"m":90,"e":6496}],[-8,{"n":4.5,"q":null,"m":68,"e":6517}],[-7,{"n":4.5,"q":null,"m":90,"e":6526}],[-6,{"n":4.5,"q":null,"m":90,"e":6533}],[-5,{"n":6.5,"q":null,"m":86,"e":6547}],[-4,{"n":5,"q":null,"m":58,"e":6551}],[-3,{"n":5,"q":null,"m":12,"e":6567,"s":1}],[-2,{"n":4,"q":null,"m":55,"e":6575}],[2,{"n":7,"q":null,"m":90,"e":10572}],[-1,{"n":6,"q":null,"m":90,"e":6586}],[1,{"n":5.5,"q":null,"m":90,"e":10932}]],"fo":[[6297,[{"t":"Y"}]],[10572,[{"t":"Y"}]]]}],[4874,{"n":"Linguet","f":"Allan","fp":"MD","r":10,"c":91,"s":{"Og":1,"Os":66.5,"On":14,"Oa":4.75,"Od":1.17,"Om":978,"Oam":65,"Odm":36,"pd":12,"pm":2,"Omsn":7},"p":[[-38,{"n":3,"q":null,"m":90,"e":6216}],[-37,{"n":3,"q":null,"m":90,"e":6227}],[-36,{"n":4.5,"q":null,"m":90,"e":6233}],[-35,{"n":4.5,"q":null,"m":90,"e":6247}],[-34,{"n":4,"q":null,"m":90,"e":6248}],[-33,{"n":4.5,"q":null,"m":90,"e":6267}],[-32,{"n":7,"q":null,"m":90,"e":6276,"g":1}],[-30,{"n":6,"q":null,"m":54,"e":6297,"s":1}],[-19,{"n":6.5,"q":null,"m":90,"e":6401}],[-18,{"n":4,"q":null,"m":73,"e":6417,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-14,{"n":5,"q":null,"m":1,"e":6450,"s":1}],[-13,{"n":4.5,"q":null,"m":34,"e":6467,"s":1}],[-9,{"n":4.5,"q":null,"m":6,"e":6506,"s":1}],[-7,{"n":5.5,"q":null,"m":90,"e":6526}]]}],[4890,{"n":"Arib","f":"Gaetan","fp":"DC","r":1,"c":91}],[4933,{"n":"Elogo","f":"Arsene","fp":"MO","r":9,"c":91,"s":{"Og":1,"Os":154.5,"On":32,"Oa":4.83,"Od":0.59,"Om":1344,"Oam":41,"Odm":28,"pm":32,"Omsn":6},"p":[[-38,{"n":3.5,"q":null,"m":54,"e":6216}],[-37,{"n":4.5,"q":null,"m":45,"e":6227,"s":1}],[-36,{"n":5,"q":null,"m":15,"e":6233,"s":1}],[-35,{"n":5,"q":null,"m":2,"e":6247,"s":1}],[-34,{"n":3.5,"q":null,"m":76,"e":6248}],[-33,{"n":5,"q":null,"m":67,"e":6267}],[-32,{"n":6,"q":null,"m":90,"e":6276,"g":1}],[-31,{"n":5,"q":null,"m":21,"e":6278,"s":1}],[-29,{"n":5,"q":null,"m":11,"e":6303,"s":1}],[-28,{"n":4.5,"q":null,"m":13,"e":6317,"s":1}],[-27,{"n":5,"q":null,"m":29,"e":6321,"s":1}],[-24,{"n":5,"q":null,"m":22,"e":6357,"s":1}],[-23,{"n":4.5,"q":null,"m":55,"e":6359}],[-22,{"n":5,"q":null,"m":13,"e":6377,"s":1}],[-21,{"n":4.5,"q":null,"m":45,"e":6379}],[-20,{"n":4.5,"q":null,"m":12,"e":6397,"s":1}],[-19,{"n":5,"q":null,"m":18,"e":6401,"s":1}],[-18,{"n":4.5,"q":null,"m":69,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5,"q":null,"m":63,"e":6437}],[-15,{"n":5,"q":null,"m":45,"e":6441,"s":1}],[-14,{"n":5,"q":null,"m":23,"e":6450,"s":1}],[-13,{"n":4,"q":null,"m":55,"e":6467}],[-12,{"n":5,"q":null,"m":66,"e":6474}],[-11,{"n":6,"q":null,"m":78,"e":6486}],[-10,{"n":5.5,"q":null,"m":87,"e":6496}],[-9,{"n":4,"q":null,"m":73,"e":6506}],[-8,{"n":6,"q":null,"m":88,"e":6517}],[-7,{"n":4.5,"q":null,"m":15,"e":6526,"s":1}],[-6,{"n":5,"q":null,"m":23,"e":6533}],[-5,{"n":5,"q":null,"m":4,"e":6547,"s":1}],[-4,{"n":5,"q":null,"m":32,"e":6551,"s":1}],[-3,{"n":4.5,"q":null,"m":35,"e":6567,"s":1}]],"fo":[[6267,[{"t":"I"}]]]}],[4965,{"n":"Robail","f":"Gaëtan","fp":"MO","r":10,"c":91,"s":{"g":1,"s":12,"n":2,"a":6,"d":1.41,"m":172,"am":86,"dm":6,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":128,"On":25,"Oa":5.12,"Od":0.98,"Om":1678,"Oam":67,"Odm":25,"pm":10,"pa":15,"Smsn":7,"Omsn":7},"p":[[-33,{"n":5.5,"q":null,"m":88,"e":6267}],[-32,{"n":5.5,"q":null,"m":82,"e":6276}],[-31,{"n":3.5,"q":null,"m":90,"e":6278}],[-30,{"n":4.5,"q":null,"m":63,"e":6297}],[-29,{"n":3.5,"q":null,"m":85,"e":6303}],[-28,{"n":5,"q":null,"m":84,"e":6317}],[-27,{"n":6,"q":null,"m":61,"e":6321}],[-26,{"n":5,"q":null,"m":86,"e":6336}],[-25,{"n":5,"q":null,"m":90,"e":6345}],[-24,{"n":5,"q":null,"m":68,"e":6357}],[-23,{"n":4,"q":null,"m":35,"e":6359,"s":1}],[-22,{"n":6,"q":null,"m":77,"e":6377}],[-21,{"n":7,"q":null,"m":45,"e":6379,"s":1}],[-20,{"n":5,"q":null,"m":78,"e":6397}],[-15,{"n":5,"q":null,"m":19,"e":6441,"s":1}],[-14,{"n":3.5,"q":null,"m":57,"e":6455}],[-13,{"n":4.5,"q":null,"m":4,"e":6461,"s":1}],[-12,{"n":4.5,"q":null,"m":16,"e":6471,"s":1}],[-11,{"n":5.5,"q":null,"m":67,"e":6481}],[-10,{"n":5,"q":null,"m":75,"e":6491}],[-9,{"n":5.5,"q":null,"m":85,"e":6500}],[-8,{"n":5,"q":null,"m":71,"e":6509}],[-7,{"n":7,"q":null,"m":80,"e":6527}],[2,{"n":7,"q":null,"m":82,"e":10572,"g":1}],[1,{"n":5,"q":null,"m":90,"e":10932}]],"fo":[[6303,[{"t":"Y"}]]]}],[5069,{"n":"Allagbé","f":"Saturnin","fp":"G","r":14,"c":91,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Os":93,"On":19,"Oa":4.89,"Od":1.51,"Om":1710,"Oam":90,"pg":19},"p":[[-38,{"n":7,"q":null,"m":90,"e":5835}],[-37,{"n":2.5,"q":null,"m":90,"e":5839}],[-36,{"n":2.5,"q":null,"m":90,"e":5848}],[-35,{"n":2.5,"q":null,"m":90,"e":5860}],[-34,{"n":3.5,"q":null,"m":90,"e":5875}],[-33,{"n":6,"q":null,"m":90,"e":5885}],[-32,{"n":7,"q":null,"m":90,"e":5892}],[-31,{"n":4,"q":null,"m":90,"e":5902}],[-9,{"n":4.5,"q":null,"m":90,"e":6119}],[-8,{"n":4.5,"q":null,"m":90,"e":6136}],[-7,{"n":5,"q":null,"m":90,"e":6139}],[-6,{"n":4,"q":null,"m":90,"e":6148}],[-5,{"n":5.5,"q":null,"m":90,"e":6543}],[-4,{"n":7,"q":null,"m":90,"e":6553}],[-3,{"n":6,"q":null,"m":90,"e":6563}],[-2,{"n":4.5,"q":null,"m":90,"e":6574}],[2,{"n":4.5,"q":null,"m":90,"e":10572}],[-1,{"n":6.5,"q":null,"m":90,"e":6584}],[1,{"n":6,"q":null,"m":90,"e":10932}]]}],[5080,{"n":"Konate","f":"Hillel","fp":"G","r":7,"c":91,"s":{"Os":24,"On":5,"Oa":4.8,"Od":1.82,"Om":450,"Oam":75,"Odm":37,"pg":5},"p":[[-38,{"n":3,"q":null,"m":90,"e":6216}],[-37,{"n":3.5,"q":null,"m":90,"e":6227}],[-36,{"n":6.5,"q":null,"m":90,"e":6233}],[-35,{"n":7,"q":null,"m":90,"e":6247}],[-34,{"n":4,"q":null,"m":90,"e":6248}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}]]}],[5084,{"n":"Spano","f":"Maxime","fp":"DC","r":5,"c":91,"s":{"Os":118.5,"On":24,"Oa":4.94,"Od":0.88,"Om":1920,"Oam":77,"Odm":28,"pd":24},"p":[[-38,{"n":3.5,"q":null,"m":80,"e":6216}],[-37,{"n":5,"q":null,"m":11,"e":6227,"s":1}],[-29,{"n":4.5,"q":null,"m":90,"e":6303}],[-25,{"n":5,"q":null,"m":9,"e":6345,"s":1}],[-24,{"n":5,"q":null,"m":90,"e":6357}],[-23,{"n":4,"q":null,"m":90,"e":6359}],[-22,{"n":6,"q":null,"m":90,"e":6377}],[-20,{"n":6,"q":null,"m":90,"e":6397}],[-18,{"n":3.5,"q":null,"m":89,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-15,{"n":5,"q":null,"m":67,"e":6441}],[-14,{"n":6,"q":null,"m":90,"e":6450}],[-13,{"n":5,"q":null,"m":90,"e":6467}],[-12,{"n":5,"q":null,"m":90,"e":6474}],[-11,{"n":5,"q":null,"m":90,"e":6486}],[-10,{"n":3.5,"q":null,"m":90,"e":6496}],[-9,{"n":4,"q":null,"m":90,"e":6506}],[-8,{"n":5,"q":null,"m":44,"e":6517}],[-7,{"n":6,"q":null,"m":90,"e":6526}],[-6,{"n":4,"q":null,"m":90,"e":6533}],[-5,{"n":6,"q":null,"m":90,"e":6547}],[-4,{"n":5,"q":null,"m":90,"e":6551}],[-3,{"n":5.5,"q":null,"m":90,"e":6567}],[-2,{"n":4.5,"q":null,"m":90,"e":6575}],[-1,{"n":6.5,"q":null,"m":90,"e":6586}]]}],[5111,{"n":"Dos Santos","f":"Laurent","fp":"DL","r":11,"c":91,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"m":180,"am":90,"Ss":4,"Sn":1,"Sa":4,"Sm":90,"Sam":90,"Og":1,"Os":110.5,"On":23,"Oa":4.8,"Od":1.03,"Om":1506,"Oam":63,"Odm":35,"pd":16,"pm":7,"Omsn":7},"p":[[-38,{"n":7,"q":null,"m":36,"e":6216,"g":1,"s":1}],[-37,{"n":3,"q":null,"m":79,"e":6227}],[-36,{"n":6,"q":null,"m":90,"e":6233}],[-35,{"n":6.5,"q":null,"m":90,"e":6247}],[-34,{"n":4.5,"q":null,"m":3,"e":6248,"s":1}],[-33,{"n":4.5,"q":null,"m":90,"e":6267}],[-32,{"n":5,"q":null,"m":90,"e":6276}],[-31,{"n":3,"q":null,"m":90,"e":6278}],[-29,{"n":4,"q":null,"m":19,"e":6303,"s":1}],[-28,{"n":5,"q":null,"m":18,"e":6317,"s":1}],[-27,{"n":3.5,"q":null,"m":45,"e":6321,"s":1}],[-18,{"n":4.5,"q":null,"m":21,"e":6417,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-9,{"n":5.5,"q":null,"m":64,"e":6506}],[-8,{"n":5,"q":null,"m":90,"e":6517}],[-7,{"n":4.5,"q":null,"m":90,"e":6526}],[-6,{"n":4,"q":null,"m":90,"e":6533}],[-5,{"n":5,"q":null,"m":90,"e":6547}],[-4,{"n":5,"q":null,"m":6,"e":6551,"s":1}],[-3,{"n":5,"q":null,"m":90,"e":6567}],[-2,{"n":4.5,"q":null,"m":45,"e":6575}],[2,{"n":5,"q":null,"m":90,"e":10572}],[-1,{"n":6.5,"q":null,"m":90,"e":6586}],[1,{"n":4,"q":null,"m":90,"e":10932}]],"fo":[[6216,[{"t":"Y"}]]]}],[5141,{"n":"Vandenabeele","f":"Eric","fp":"DC","r":9,"c":91,"s":{"Og":2,"Os":98,"On":21,"Oa":4.67,"Od":1.14,"Om":1491,"Oam":68,"Odm":30,"pd":21,"Omsn":4},"p":[[-38,{"n":4,"q":null,"m":90,"e":6216,"g":1}],[-37,{"n":2.5,"q":null,"m":45,"e":6227}],[-35,{"n":3,"q":null,"m":40,"e":6247}],[-34,{"n":4.5,"q":null,"m":90,"e":6248}],[-33,{"n":5,"q":null,"m":90,"e":6267}],[-32,{"n":5,"q":null,"m":73,"e":6276}],[-30,{"n":4.5,"q":null,"m":36,"e":6297}],[-29,{"n":3.5,"q":null,"m":71,"e":6303}],[-28,{"n":6,"q":null,"m":90,"e":6317}],[-27,{"n":3.5,"q":null,"m":90,"e":6321}],[-26,{"n":7,"q":null,"m":90,"e":6336,"g":1}],[-23,{"n":5,"q":null,"m":90,"e":6359}],[-22,{"n":6,"q":null,"m":90,"e":6377}],[-21,{"n":3.5,"q":null,"m":90,"e":6379}],[-20,{"n":6,"q":null,"m":90,"e":6397}],[-18,{"n":5.5,"q":null,"m":17,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6437}],[-15,{"n":5,"q":null,"m":23,"e":6441,"s":1}],[-12,{"n":5.5,"q":null,"m":34,"e":6474}],[-11,{"n":5,"q":null,"m":90,"e":6486}],[-10,{"n":3.5,"q":null,"m":72,"e":6496}]],"fo":[[6297,[{"t":"I"}]],[6247,[{"t":"R"}]],[6227,[{"t":"Y"}]],[6336,[{"t":"Y"}]]]}],[5143,{"n":"Ntim","f":"Emmanuel","fp":"DL","r":10,"c":91,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"m":180,"am":90,"Ss":6,"Sn":1,"Sa":6,"Sm":90,"Sam":90,"Og":3,"Oao":2,"Os":133,"On":27,"Oa":4.93,"Od":1.04,"Om":2173,"Oam":78,"Odm":27,"pd":27,"Omsn":4},"p":[[-37,{"n":2.5,"q":null,"m":90,"e":6227}],[-36,{"n":5,"q":null,"m":90,"e":6233}],[-35,{"n":6.5,"q":null,"m":90,"e":6247,"g":1}],[-27,{"n":3.5,"q":null,"m":6,"e":6321}],[-25,{"n":4,"q":null,"m":81,"e":6345}],[-24,{"n":3.5,"q":null,"m":90,"e":6357,"a":1}],[-23,{"n":5.5,"q":null,"m":90,"e":6359}],[-22,{"n":6,"q":null,"m":90,"e":6377}],[-21,{"n":4,"q":null,"m":90,"e":6379,"g":1,"a":1}],[-20,{"n":4.5,"q":null,"m":90,"e":6397}],[-19,{"n":6,"q":null,"m":90,"e":6401}],[-18,{"n":4.5,"q":null,"m":90,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4.5,"q":null,"m":90,"e":6437}],[-15,{"n":6,"q":null,"m":90,"e":6441}],[-14,{"n":6,"q":null,"m":90,"e":6450}],[-13,{"n":5.5,"q":null,"m":90,"e":6467}],[-10,{"n":5,"q":null,"m":18,"e":6496,"s":1}],[-9,{"n":5,"q":null,"m":84,"e":6506}],[-8,{"n":5,"q":null,"m":90,"e":6517}],[-7,{"n":5,"q":null,"m":90,"e":6526}],[-6,{"n":4,"q":null,"m":45,"e":6533}],[-5,{"n":7,"q":null,"m":90,"e":6547,"g":1}],[-4,{"n":4,"q":null,"m":84,"e":6551}],[-3,{"n":5,"q":null,"m":55,"e":6567}],[-2,{"n":4,"q":null,"m":90,"e":6575}],[2,{"n":5.5,"q":null,"m":90,"e":10572}],[1,{"n":6,"q":null,"m":90,"e":10932}]],"fo":[[6345,[{"t":"I"}]],[6321,[{"t":"R"}]],[6227,[{"t":"Y"}]],[6233,[{"t":"Y"}]],[6357,[{"t":"Y"}]]]}],[5373,{"n":"D'Almeida","f":"Sessi","fp":"MD","r":10,"c":91,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"m":180,"am":90,"Ss":5.5,"Sn":1,"Sa":5.5,"Sm":90,"Sam":90,"Os":121,"On":25,"Oa":4.84,"Od":0.94,"Om":1588,"Oam":61,"Odm":27,"pm":25},"p":[[-36,{"n":5,"q":null,"m":55,"e":6233}],[-35,{"n":5,"q":null,"m":34,"e":6247,"s":1}],[-34,{"n":4.5,"q":null,"m":1,"e":6248,"s":1}],[-31,{"n":2.5,"q":null,"m":73,"e":6278}],[-29,{"n":2.5,"q":null,"m":70,"e":6303}],[-28,{"n":5,"q":null,"m":72,"e":6317}],[-27,{"n":5,"q":null,"m":45,"e":6321}],[-26,{"n":4,"q":null,"m":67,"e":6336}],[-21,{"n":4.5,"q":null,"m":64,"e":6379}],[-19,{"n":5.5,"q":null,"m":72,"e":6401}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-15,{"n":4.5,"q":null,"m":45,"e":6441}],[-14,{"n":5.5,"q":null,"m":67,"e":6450}],[-12,{"n":5.5,"q":null,"m":24,"e":6474,"s":1}],[-11,{"n":4.5,"q":null,"m":50,"e":6486}],[-10,{"n":5.5,"q":null,"m":68,"e":6496}],[-9,{"n":5,"q":null,"m":90,"e":6506}],[-8,{"n":5,"q":null,"m":22,"e":6517,"s":1}],[-6,{"n":5,"q":null,"m":61,"e":6533}],[-5,{"n":6,"q":null,"m":90,"e":6547}],[-4,{"n":5,"q":null,"m":90,"e":6551}],[-3,{"n":5,"q":null,"m":68,"e":6567}],[-2,{"n":4.5,"q":null,"m":90,"e":6575}],[2,{"n":4,"q":null,"m":90,"e":10572}],[-1,{"n":7,"q":null,"m":90,"e":6586}],[1,{"n":5.5,"q":null,"m":90,"e":10932}]],"fo":[[6278,[{"t":"R"},{"t":"Y"}]],[6303,[{"t":"Y"}]],[10572,[{"t":"Y"}]],[10932,[{"t":"Y"}]]]}],[6014,{"n":"Ouattara","f":"Abou","fp":"A","r":10,"c":91,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"m":59,"am":30,"dm":6,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":25,"Sam":25,"Os":57,"On":13,"Oa":4.38,"Od":0.36,"Om":441,"Oam":34,"Odm":22,"pm":1,"pa":12},"p":[[-38,{"n":4,"q":null,"m":23,"e":6211,"s":1}],[-37,{"n":4.5,"q":null,"m":25,"e":6219,"s":1}],[-36,{"n":4,"q":null,"m":63,"e":6237}],[-35,{"n":4.5,"q":null,"m":78,"e":6238}],[-34,{"n":5,"q":null,"m":72,"e":6248}],[-32,{"n":4,"q":null,"m":24,"e":6268,"s":1}],[-31,{"n":4,"q":null,"m":20,"e":6282,"s":1}],[-29,{"n":4.5,"q":null,"m":26,"e":6300,"s":1}],[-28,{"n":4.5,"q":null,"m":15,"e":6309,"s":1}],[-27,{"n":5,"q":null,"m":25,"e":6326,"s":1}],[-25,{"n":4.5,"q":null,"m":11,"e":6343,"s":1}],[2,{"n":4,"q":null,"m":34,"e":10572,"s":1}],[1,{"n":4.5,"q":null,"m":25,"e":10932,"s":1}]]}],[6325,{"n":"Boutoutaou","f":"Aymen","fp":"MO","r":13,"c":91,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"m":145,"am":73,"dm":23,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":89,"Sam":89,"Og":3,"Os":90.5,"On":18,"Oa":5.03,"Od":0.92,"Om":878,"Oam":46,"Odm":39,"pm":14,"pa":4,"Omsn":6},"p":[[-38,{"n":5.5,"q":null,"m":90,"e":6216}],[-37,{"n":6,"q":null,"m":90,"e":6227,"g":1}],[-36,{"n":7.5,"q":null,"m":83,"e":6233,"g":2}],[-35,{"n":5,"q":null,"m":88,"e":6247}],[-34,{"n":4,"q":null,"m":90,"e":6248}],[-33,{"n":3.5,"q":null,"m":90,"e":6267}],[-32,{"n":6,"q":null,"m":82,"e":6276}],[-31,{"n":4.5,"q":null,"m":18,"e":6278,"s":1}],[-30,{"n":4.5,"q":null,"m":36,"e":6297,"s":1}],[-29,{"n":5,"q":null,"m":5,"e":6303,"s":1}],[-26,{"n":5,"q":null,"m":4,"e":6336,"s":1}],[-25,{"n":5.5,"q":null,"m":9,"e":6345,"s":1}],[-20,{"n":5,"q":null,"m":2,"e":6397,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-13,{"n":4,"q":null,"m":23,"e":6467,"s":1}],[-11,{"n":5.5,"q":null,"m":12,"e":6486,"s":1}],[2,{"n":5,"q":null,"m":56,"e":10572}],[-1,{"n":4.5,"q":null,"m":11,"e":6586,"s":1}],[1,{"n":4.5,"q":null,"m":89,"e":10932}]],"fo":[[10932,[{"t":"I"}]]]}],[6359,{"n":"Diliberto","f":"Noah","fp":"MD","r":11,"c":91,"s":{"Os":170,"On":34,"Oa":5,"Od":0.71,"Om":2490,"Oam":71,"Odm":24,"pm":34},"p":[[-38,{"n":4.5,"q":null,"m":90,"e":6216}],[-37,{"n":3.5,"q":null,"m":90,"e":6227}],[-36,{"n":5.5,"q":null,"m":75,"e":6233}],[-35,{"n":5,"q":null,"m":56,"e":6247}],[-31,{"n":4,"q":null,"m":90,"e":6278}],[-30,{"n":5,"q":null,"m":54,"e":6297}],[-29,{"n":4.5,"q":null,"m":79,"e":6303}],[-28,{"n":5.5,"q":null,"m":77,"e":6317}],[-27,{"n":5,"q":null,"m":29,"e":6321,"s":1}],[-26,{"n":5,"q":null,"m":23,"e":6336,"s":1}],[-25,{"n":4,"q":null,"m":81,"e":6345}],[-24,{"n":4.5,"q":null,"m":68,"e":6357}],[-23,{"n":5,"q":null,"m":55,"e":6359}],[-22,{"n":4.5,"q":null,"m":29,"e":6377,"s":1}],[-21,{"n":5,"q":null,"m":74,"e":6379}],[-20,{"n":6,"q":null,"m":90,"e":6397}],[-19,{"n":6,"q":null,"m":90,"e":6401}],[-18,{"n":6,"q":null,"m":90,"e":6417}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":4,"q":null,"m":90,"e":6437}],[-15,{"n":5.5,"q":null,"m":90,"e":6441}],[-14,{"n":5.5,"q":null,"m":90,"e":6450}],[-13,{"n":5,"q":null,"m":90,"e":6467}],[-12,{"n":4.5,"q":null,"m":90,"e":6474}],[-11,{"n":5,"q":null,"m":90,"e":6486}],[-10,{"n":7,"q":null,"m":90,"e":6496}],[-9,{"n":4,"q":null,"m":85,"e":6506}],[-8,{"n":5,"q":null,"m":45,"e":6517,"s":1}],[-7,{"n":5.5,"q":null,"m":81,"e":6526}],[-6,{"n":4.5,"q":null,"m":90,"e":6533}],[-5,{"n":5,"q":null,"m":90,"e":6547}],[-4,{"n":5,"q":null,"m":58,"e":6551}],[-3,{"n":5.5,"q":null,"m":78,"e":6567}],[-2,{"n":5.5,"q":null,"m":45,"e":6575,"s":1}],[-1,{"n":5,"q":null,"m":48,"e":6586,"s":1}]]}],[6460,{"n":"Abeid","f":"Aly","fp":"DL","r":8,"c":91,"s":{"s":5,"n":1,"a":5,"m":55,"am":55,"Os":121.5,"On":26,"Oa":4.67,"Od":0.87,"Om":1934,"Oam":72,"Odm":25,"pd":20,"pm":6},"p":[[-35,{"n":5,"q":null,"m":35,"e":6247,"s":1}],[-34,{"n":3.5,"q":null,"m":87,"e":6248}],[-31,{"n":3,"q":null,"m":85,"e":6278}],[-30,{"n":4,"q":null,"m":62,"e":6297}],[-28,{"n":5,"q":null,"m":90,"e":6317}],[-26,{"n":5,"q":null,"m":76,"e":6336}],[-25,{"n":3.5,"q":null,"m":90,"e":6345}],[-24,{"n":4,"q":null,"m":90,"e":6357}],[-23,{"n":5,"q":null,"m":14,"e":6359,"s":1}],[-22,{"n":4.5,"q":null,"m":77,"e":6377}],[-21,{"n":4,"q":null,"m":90,"e":6379}],[-20,{"n":5,"q":null,"m":90,"e":6397}],[-19,{"n":6.5,"q":null,"m":90,"e":6401}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-16,{"n":5,"q":null,"m":44,"e":6437}],[-13,{"n":4,"q":null,"m":56,"e":6467}],[-12,{"n":5,"q":null,"m":78,"e":6474}],[-11,{"n":5,"q":null,"m":78,"e":6486}],[-10,{"n":3.5,"q":null,"m":90,"e":6496}],[-9,{"n":5,"q":null,"m":64,"e":6506}],[-8,{"n":4.5,"q":null,"m":88,"e":6517}],[-5,{"n":6,"q":null,"m":57,"e":6547}],[-4,{"n":4.5,"q":null,"m":78,"e":6551}],[-3,{"n":6,"q":null,"m":90,"e":6567}],[-2,{"n":4,"q":null,"m":90,"e":6575}],[2,{"n":5,"q":null,"m":55,"e":10572}],[-1,{"n":6,"q":null,"m":90,"e":6586}]],"fo":[[6248,[{"t":"Y"}]],[6278,[{"t":"Y"},{"t":"O"}]]]}],[6745,{"n":"Picouleau","f":"Mathis","fp":"MD","r":9,"c":91,"s":{"s":10,"n":2,"a":5,"m":180,"am":90,"Ss":5,"Sn":1,"Sa":5,"Sm":90,"Sam":90,"Og":1,"Os":142,"On":30,"Oa":4.73,"Od":0.69,"Om":1556,"Oam":50,"Odm":29,"pm":30,"Omsn":7},"p":[[-38,{"n":4,"q":null,"m":90,"e":6216}],[-37,{"n":4,"q":null,"m":79,"e":6227}],[-35,{"n":5,"q":null,"m":56,"e":6247}],[-34,{"n":4.5,"q":null,"m":90,"e":6248}],[-33,{"n":4,"q":null,"m":90,"e":6267}],[-32,{"n":4.5,"q":null,"m":53,"e":6276}],[-31,{"n":4.5,"q":null,"m":45,"e":6278,"s":1}],[-30,{"n":4.5,"q":null,"m":54,"e":6297}],[-29,{"n":4.5,"q":null,"m":20,"e":6303,"s":1}],[-27,{"n":3.5,"q":null,"m":67,"e":6321}],[-26,{"n":5.5,"q":null,"m":67,"e":6336}],[-25,{"n":4,"q":null,"m":45,"e":6345}],[-24,{"n":4.5,"q":null,"m":78,"e":6357}],[-23,{"n":4.5,"q":null,"m":35,"e":6359,"s":1}],[-22,{"n":5,"q":null,"m":61,"e":6377}],[-21,{"n":5,"q":null,"m":16,"e":6379,"s":1}],[-20,{"n":6,"q":null,"m":90,"e":6397}],[-19,{"n":7,"q":null,"m":45,"e":6401,"g":1,"s":1}],[-18,{"n":5,"q":null,"m":56,"e":6417,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-11,{"n":5,"q":null,"m":40,"e":6486,"s":1}],[-10,{"n":5,"q":null,"m":3,"e":6496,"s":1}],[-9,{"n":4.5,"q":null,"m":5,"e":6506,"s":1}],[-8,{"n":5,"q":null,"m":2,"e":6517,"s":1}],[-6,{"n":3.5,"q":null,"m":67,"e":6533,"s":1}],[-5,{"n":4.5,"q":null,"m":33,"e":6547,"s":1}],[-4,{"n":5,"q":null,"m":32,"e":6551,"s":1}],[-3,{"n":5,"q":null,"m":22,"e":6567,"s":1}],[-2,{"n":5,"q":null,"m":35,"e":6575,"s":1}],[2,{"n":5,"q":null,"m":90,"e":10572}],[1,{"n":5,"q":null,"m":90,"e":10932}]],"fo":[[6267,[{"t":"Y"}]],[6345,[{"t":"Y"}]]]}],[6865,{"n":"Chevalier","f":"Lucas","fp":"G","r":3,"c":91}],[6870,{"n":"Doukoure","f":"Ismael","fp":"DC","r":11,"c":91,"s":{"Os":84.5,"On":19,"Oa":4.45,"Od":0.83,"Om":1071,"Oam":54,"Odm":35,"pd":18,"pm":1},"p":[[-38,{"n":5,"q":null,"m":10,"e":6216,"s":1}],[-37,{"n":3,"q":null,"m":45,"e":6227}],[-36,{"n":5.5,"q":null,"m":90,"e":6233}],[-35,{"n":5,"q":null,"m":34,"e":6247,"s":1}],[-34,{"n":4,"q":null,"m":90,"e":6248}],[-32,{"n":5,"q":null,"m":17,"e":6276,"s":1}],[-31,{"n":3.5,"q":null,"m":45,"e":6278}],[-30,{"n":3.5,"q":null,"m":90,"e":6297}],[-29,{"n":4,"q":null,"m":80,"e":6303}],[-28,{"n":5.5,"q":null,"m":90,"e":6317}],[-27,{"n":3,"q":null,"m":90,"e":6321}],[-26,{"n":5,"q":null,"m":90,"e":6336}],[-25,{"n":3.5,"q":null,"m":90,"e":6345}],[-23,{"n":5,"q":null,"m":14,"e":6359,"s":1}],[-17,{"n":null,"q":null,"m":0,"e":6425,"d":1}],[-12,{"n":5,"q":null,"m":56,"e":6474,"s":1}],[-10,{"n":5,"q":null,"m":22,"e":6496,"s":1}],[-9,{"n":4,"q":null,"m":26,"e":6506,"s":1}],[-8,{"n":5,"q":null,"m":2,"e":6517,"s":1}],[-7,{"n":5,"q":null,"m":90,"e":6526}]],"fo":[[6227,[{"t":"Y"}]],[6248,[{"t":"Y"}]],[6297,[{"t":"Y"}]]]}],[7736,{"n":"Yatabaré","f":"Sambou","fp":"MD","r":7,"c":91,"s":{"s":4.5,"n":1,"a":4.5,"m":35,"am":35,"Os":24,"On":5,"Oa":4.8,"Od":0.45,"Om":163,"Oam":33,"Odm":25,"pm":5},"p":[[-38,{"n":5.5,"q":null,"m":66,"e":6211}],[-37,{"n":4.5,"q":null,"m":12,"e":6219,"s":1}],[-36,{"n":5,"q":null,"m":5,"e":6237,"s":1}],[-32,{"n":4.5,"q":null,"m":45,"e":6268}],[2,{"n":4.5,"q":null,"m":35,"e":10572,"s":1}]],"fo":[[6211,[{"t":"Y"}]]]}],[7788,{"n":"Soudani","f":"Iliès","fp":"MO","r":1,"c":91}],[8017,{"n":"Haouari","f":"Yassine","fp":"A","r":1,"c":91,"s":{"s":4.5,"n":1,"a":4.5,"m":1,"am":1,"Ss":4.5,"Sn":1,"Sa":4.5,"Sm":1,"Sam":1,"Os":4.5,"On":1,"Oa":4.5,"Om":1,"Oam":1,"pa":1},"p":[[1,{"n":4.5,"q":null,"m":1,"e":10932,"s":1}]]}],[8498,{"n":"Hamache","f":"Ilyes","fp":"A","r":4,"c":91}],[8499,{"n":"Penin","f":"Alois","fp":"DL","r":3,"c":91}],[8500,{"n":"Kaba","f":"Mohamed","fp":"MD","r":6,"c":91,"s":{"s":5,"n":1,"a":5,"m":8,"am":4,"dm":6,"Os":5,"On":1,"Oa":5,"Om":8,"Oam":4,"Odm":6,"pm":1},"p":[[2,{"n":5,"q":null,"m":8,"e":10572,"s":1}],[1,{"n":null,"q":null,"m":0,"e":10932}]],"fo":[[10932,[{"t":"Y"}]]]}]],"np":541,"c":[[88,{"n":"Ajaccio","rn":"AC Ajaccio","cn":"Ajaccio","crn":"AC-Ajaccio","a":"ACA","el":1071,"s":{"w":1,"l":0,"d":1,"pl":2,"GA":2,"GS":5,"GT":3,"p":4},"nm":[[10562,0.706],[10550,0.621]],"pM":[null,10935,10571,6558,6552,6538,6528,6518,6511,6498,6494,6481,6468,6467,6457,6443,6428,6418,6411,6406,6388,6381,6368,6367,6348,6346,6328,6327,6308,6298,6289,6278,6271,6258,6254,6238,6236,6218,6209],"DMI":[6528,6348,6388,6568]}],[42,{"n":"Amiens","rn":"Amiens SC","cn":"Amiens","crn":"Amiens-SC","a":"AMI","el":1000,"nm":[[10561,0.5],[10551,0.513]],"pM":[null,6580,6573,6559,6549,6539,6529,6519,6515,6507,6488,6478,6477,6458,6453,6438,6437,6418,6412,6403,6389,6385,6369,6366,6349,6343,6329,6326,6309,6300,6288,6282,6268,6260,6248,6238,6237,6219,6211],"DMI":[6237,6412]}],[101,{"n":"Auxerre","rn":"AJ Auxerre","cn":"Auxerre","crn":"AJ-Auxerre","a":"AUX","el":919,"s":{"w":2,"l":0,"d":0,"pl":2,"GA":4,"GS":5,"GT":1,"p":6},"nm":[[10562,0.294],[10555,0.544]],"pM":[null,6581,6570,6560,6557,6545,6528,6527,6508,6505,6488,6484,6474,6462,6448,6444,6431,6421,6404,6400,6390,6380,6376,6358,6348,6338,6330,6318,6309,6299,6297,6279,6273,6259,6257,6239,6228,6220,6217],"DMI":[6528,6348,6299,6484]}],[147,{"n":"Bastia","rn":"Bastia","cn":"Bastia","crn":"Bastia","a":"BAS","el":1000,"s":{"w":0,"l":0,"d":1,"pl":1,"GA":0,"GS":1,"GT":1,"p":1},"nm":[[10576,0.5],[10569,0.434],[10559,0.5]],"pM":[null,10930],"DMI":[]}],[5,{"n":"Caen","rn":"SM Caen","cn":"Caen","crn":"SM-Caen","a":"CAE","el":985,"s":{"w":2,"l":0,"d":0,"pl":2,"GA":5,"GS":5,"GT":0,"p":6},"nm":[[10550,0.379],[10560,0.453]],"pM":[null,10939,10574,6564,6548,6547,6529,6523,6509,6504,6489,6487,6469,6466,6449,6439,6433,6419,6404,6410,6388,6378,6370,6359,6349,6339,6337,6319,6313,6307,6290,6280,6270,6266,6249,6244,6228,6225,6208],"DMI":[6244,6419,6388,6568]}],[7,{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon","crn":"Dijon-FCO","a":"DIJ","el":1000,"nm":[[10563,0.609],[10556,0.5]],"pM":[null,10933,10570,6180,6177,6160,6148,6139,6136,6119,6112,6100,6094,6080,6073,6060,6049,6045,6035,6019,6011,5999,5990,5979,5972,5960,5949,5940,5929,5919,5909,5902,5892,5885,5875,5860,5848,5839,5835],"DMI":[]}],[128,{"n":"Dunkerque","rn":"USL Dunkerque","cn":"Dunkerque","crn":"USL-Dunkerque","a":"DKE","el":1000,"s":{"w":0,"l":1,"d":1,"pl":2,"GA":-1,"GS":2,"GT":3,"p":1},"nm":[[10564,0.715],[10558,0.474]],"pM":[null,10936,10575,6558,6551,6544,6532,6522,6512,6499,6492,6483,6475,6458,6452,6447,6433,6421,6414,6399,6392,6381,6377,6362,6351,6342,6331,6322,6315,6301,6296,6282,6269,6262,6249,6239,6230,6226,6210],"DMI":[6301,6483,6230,6414]}],[94,{"n":"Grenoble","rn":"Grenoble Foot 38","cn":"Grenoble","crn":"Grenoble-Foot-38","a":"GRN","el":1012,"nm":[[10565,0.53],[10553,0.729]],"pM":[null,10934,6572,6561,6552,6541,6533,6519,6513,6503,6493,6485,6476,6460,6449,6447,6434,6420,6408,6400,6396,6382,6368,6363,6357,6343,6332,6323,6312,6302,6295,6283,6270,6262,6251,6246,6231,6220,6212],"DMI":[6363,6541,6323,6503]}],[14,{"n":"Guingamp","rn":"EA Guingamp","cn":"Guingamp","crn":"EA-Guingamp","a":"GUI","el":991,"s":{"w":0,"l":0,"d":2,"pl":2,"GA":0,"GS":1,"GT":1,"p":2},"nm":[[10551,0.487],[10565,0.47]],"pM":[null,10937,6569,6562,6555,6541,6532,6527,6509,6500,6491,6481,6471,6461,6455,6441,6429,6426,6412,6398,6393,6383,6371,6363,6351,6338,6337,6325,6311,6298,6291,6287,6277,6267,6252,6242,6237,6223,6213],"DMI":[6363,6541,6237,6412]}],[89,{"n":"Le Havre","rn":"Le Havre AC","cn":"Le-Havre","crn":"Le-Havre-AC","a":"LHV","el":1031,"s":{"w":1,"l":0,"d":1,"pl":2,"GA":2,"GS":2,"GT":0,"p":4},"nm":[[10566,0.695],[10557,0.651]],"pM":[null,10937,10578,6562,6553,6542,6534,6521,6512,6501,6493,6487,6472,6462,6457,6442,6435,6423,6405,6401,6389,6383,6373,6364,6352,6340,6331,6324,6312,6307,6292,6279,6271,6261,6253,6243,6232,6227,6214],"DMI":[6534,6352,6243,6423]}],[17,{"n":"Nancy","rn":"AS Nancy Lorraine","cn":"Nancy","crn":"AS-Nancy-Lorraine","a":"NAC","el":1046,"nm":[[10569,0.566],[10552,0.539]],"pM":[null,10931,10573,6563,6554,6542,6535,6522,6513,6502,6489,6482,6470,6463,6454,6444,6428,6424,6417,6402,6393,6384,6372,6364,6353,6342,6332,6320,6313,6306,6293,6286,6272,6259,6254,6240,6233,6224,6211],"DMI":[6417,6233]}],[67,{"n":"Nîmes","rn":"Nîmes Olympique","cn":"Nimes","crn":"Nimes-Olympique","a":"NMS","el":1000,"s":{"w":1,"l":0,"d":1,"pl":2,"GA":1,"GS":3,"GT":2,"p":4},"nm":[[10568,0.473],[10554,0.5]],"pM":[null,10930,10570,6185,6170,6165,6152,6144,6128,6124,6114,6106,6093,6085,6071,6064,6055,6045,6037,6024,6013,6003,5988,5983,5975,5960,5954,5944,5935,5924,5910,5905,5888,5886,5869,5866,5851,5846,5834],"DMI":[]}],[98,{"n":"Niort","rn":"Chamois Niortais FC","cn":"Niort","crn":"Chamois-Niortais-FC","a":"NIO","el":840,"s":{"w":0,"l":1,"d":1,"pl":2,"GA":-1,"GS":0,"GT":1,"p":1},"nm":[[10564,0.285],[10553,0.271]],"pM":[null,10932,6574,6563,6553,6543,6530,6523,6514,6503,6495,6483,6473,6464,6448,6443,6436,6425,6413,6403,6391,6384,6373,6365,6354,6339,6333,6323,6314,6301,6294,6281,6273,6258,6255,6247,6234,6219,6213],"DMI":[6301,6483,6323,6503]}],[107,{"n":"Paris FC","rn":"Paris FC","cn":"Paris-FC","crn":"Paris-FC","a":"PFC","el":888,"s":{"w":2,"l":0,"d":0,"pl":2,"GA":5,"GS":6,"GT":1,"p":6},"nm":[[10555,0.456],[10566,0.305]],"pM":[null,6582,6575,6559,6554,6543,6534,6524,6510,6504,6492,6484,6476,6465,6456,6445,6430,6426,6415,6406,6397,6385,6372,6365,6352,6344,6334,6319,6315,6299,6295,6285,6274,6263,6256,6242,6235,6218,6215],"DMI":[6534,6352,6299,6484]}],[129,{"n":"Pau","rn":"Pau FC","cn":"Pau","crn":"Pau-FC","a":"PAU","el":1000,"s":{"w":1,"l":1,"d":0,"pl":2,"GA":0,"GS":2,"GT":2,"p":3},"nm":[[10554,0.5],[10567,0.5]],"pM":[null,6586,6576,6566,6555,6539,6535,6524,6514,6501,6490,6485,6475,6466,6451,6446,6431,6427,6411,6407,6394,6386,6371,6366,6353,6344,6333,6324,6316,6302,6296,6280,6275,6264,6257,6245,6236,6221,6216],"DMI":[6245,6427]}],[163,{"n":"Quevilly Rouen","rn":"Quevilly Rouen","cn":"Quevilly-Rouen","crn":"Quevilly-Rouen","a":"QLY","el":1000,"s":{"w":0,"l":0,"d":1,"pl":1,"GA":0,"GS":1,"GT":1,"p":1},"nm":[[10561,0.5],[10576,0.5],[10556,0.5]],"pM":[null,10936],"DMI":[]}],[100,{"n":"Rodez","rn":"Rodez Aveyron Football","cn":"Rodez","crn":"Rodez-Aveyron-Football","a":"ROD","el":923,"s":{"w":1,"l":1,"d":0,"pl":2,"GA":-3,"GS":1,"GT":4,"p":3},"nm":[[10563,0.391],[10557,0.349]],"pM":[null,6585,6576,6564,6556,6544,6531,6525,6516,6505,6494,6486,6471,6459,6453,6445,6432,6423,6413,6402,6394,6378,6374,6362,6355,6347,6335,6318,6308,6303,6291,6284,6268,6263,6250,6243,6234,6224,6212],"DMI":[6243,6423]}],[102,{"n":"Sochaux","rn":"FC Sochaux-Montbéliard","cn":"Sochaux","crn":"FC-Sochaux-Montbeliard","a":"SOC","el":1018,"s":{"w":1,"l":1,"d":0,"pl":2,"GA":0,"GS":3,"GT":3,"p":3},"nm":[[10560,0.547],[10558,0.526]],"pM":[null,10933,10578,6565,6556,6538,6536,6526,6515,6500,6495,6480,6472,6465,6454,6446,6434,6419,6414,6409,6395,6387,6374,6367,6350,6345,6329,6325,6314,6304,6292,6285,6272,6264,6251,6244,6230,6222,6217],"DMI":[6244,6419,6230,6414]}],[10,{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse","crn":"Toulouse-FC","a":"TOU","el":1000,"s":{"w":1,"l":0,"d":1,"pl":2,"GA":4,"GS":6,"GT":2,"p":4},"nm":[[10567,0.5],[10559,0.5]],"pM":[null,6578,10573,6565,6550,6545,6537,6518,6516,6507,6496,6479,6473,6463,6455,6440,6435,6427,6415,6410,6396,6387,6375,6358,6356,6346,6335,6326,6317,6305,6294,6286,6277,6265,6253,6245,6235,6225,6210],"DMI":[6245,6427]}],[91,{"n":"Valenciennes","rn":"Valentiennes FC","cn":"Valenciennes","crn":"Valentiennes-FC","a":"VCN","el":1019,"s":{"w":0,"l":0,"d":2,"pl":2,"GA":0,"GS":1,"GT":1,"p":2},"nm":[[10552,0.461],[10568,0.527]],"pM":[null,6586,6575,6567,6551,6547,6533,6526,6517,6506,6496,6486,6474,6467,6450,6441,6437,6425,6417,6401,6397,6379,6377,6359,6357,6345,6336,6321,6317,6303,6297,6278,6276,6267,6248,6247,6233,6227,6216],"DMI":[6417,6233]}]],"nc":20,"op":[[93,{"n":"Châteauroux"}],[90,{"n":"Chambly"}],[43,{"n":"Troyes"}],[92,{"n":"Clermont"}],[15,{"n":"Montpellier"}],[4,{"n":"St Etienne"}],[19,{"n":"Nice"}],[20,{"n":"Rennes"}],[41,{"n":"Strasbourg"}],[12,{"n":"Lille"}],[13,{"n":"Monaco"}],[6,{"n":"Lorient"}],[18,{"n":"Lyon"}],[75,{"n":"Brest"}],[11,{"n":"Metz"}],[68,{"n":"Reims"}],[104,{"n":"Lens"}],[8,{"n":"Nantes"}],[3,{"n":"Bordeaux"}],[2,{"n":"Paris"}],[16,{"n":"Angers"}],[9,{"n":"Marseille"}],[47,{"n":"Leganés"}],[62,{"n":"Real Madrid"}],[57,{"n":"Bilbao"}],[66,{"n":"Eibar"}],[56,{"n":"Espanyol"}]],"Ne":[[10562,{"d":3,"dB":1628355600,"t1":101,"t2":88,"o":{"h":2.24,"d":3.22,"a":3.35}}],[10550,{"d":4,"dB":1628960400,"t1":88,"t2":5,"o":{"h":0,"d":0,"a":0}}],[10561,{"d":3,"dB":1628355600,"t1":42,"t2":163,"o":{"h":2.05,"d":3.2,"a":4}}],[10551,{"d":4,"dB":1628960400,"t1":14,"t2":42,"o":{"h":0,"d":0,"a":0}}],[10555,{"d":4,"dB":1628960400,"t1":107,"t2":101,"o":{"h":0,"d":0,"a":0}}],[10576,{"d":2,"dB":1629306000,"t1":163,"t2":147,"o":{"h":2.88,"d":3.25,"a":2.52}}],[10569,{"d":3,"dB":1628701200,"t1":147,"t2":17,"o":{"h":0,"d":0,"a":0}}],[10560,{"d":3,"dB":1628341200,"t1":5,"t2":102,"o":{"h":2.55,"d":3,"a":3.08}}],[10563,{"d":3,"dB":1628355600,"t1":7,"t2":100,"o":{"h":2.3,"d":3.12,"a":3.28}}],[10556,{"d":4,"dB":1628960400,"t1":163,"t2":7,"o":{"h":0,"d":0,"a":0}}],[10564,{"d":3,"dB":1628355600,"t1":128,"t2":98,"o":{"h":2.35,"d":2.98,"a":3.45}}],[10558,{"d":4,"dB":1628960400,"t1":102,"t2":128,"o":{"h":0,"d":0,"a":0}}],[10565,{"d":3,"dB":1628355600,"t1":94,"t2":14,"o":{"h":2.62,"d":3.3,"a":2.72}}],[10553,{"d":4,"dB":1628960400,"t1":98,"t2":94,"o":{"h":0,"d":0,"a":0}}],[10566,{"d":3,"dB":1628355600,"t1":89,"t2":107,"o":{"h":3.08,"d":3.2,"a":2.41}}],[10557,{"d":4,"dB":1628960400,"t1":100,"t2":89,"o":{"h":0,"d":0,"a":0}}],[10552,{"d":4,"dB":1628960400,"t1":17,"t2":91,"o":{"h":0,"d":0,"a":0}}],[10568,{"d":3,"dB":1628355600,"t1":91,"t2":67,"o":{"h":2.7,"d":3.05,"a":2.85}}],[10554,{"d":4,"dB":1628960400,"t1":67,"t2":129,"o":{"h":0,"d":0,"a":0}}],[10567,{"d":3,"dB":1628355600,"t1":129,"t2":10,"o":{"h":3.8,"d":3.2,"a":2.1}}],[10559,{"d":4,"dB":1628960400,"t1":10,"t2":147,"o":{"h":0,"d":0,"a":0}}]],"e":[[6209,{"d":38,"dB":1621101600,"t1s":0,"t2s":0,"t1":93,"t2":88}],[6218,{"d":37,"dB":1620496800,"t1s":1,"t2s":1,"t1":88,"t2":107}],[6236,{"d":36,"dB":1619892000,"t1s":0,"t2s":0,"t1":129,"t2":88}],[6238,{"d":35,"dB":1619287200,"t1s":2,"t2s":2,"t1":88,"t2":42}],[6254,{"d":34,"dB":1618941600,"t1s":2,"t2s":0,"t1":17,"t2":88}],[6258,{"d":33,"dB":1618682400,"t1s":3,"t2s":0,"t1":88,"t2":98}],[6271,{"d":32,"dB":1618077600,"t1s":1,"t2s":1,"t1":89,"t2":88}],[6278,{"d":31,"dB":1617472800,"t1s":3,"t2s":0,"t1":88,"t2":91}],[6289,{"d":30,"dB":1616176800,"t1s":2,"t2s":1,"t1":90,"t2":88}],[6298,{"d":29,"dB":1615662000,"t1s":0,"t2s":2,"t1":88,"t2":14}],[6308,{"d":28,"dB":1614711600,"t1s":1,"t2s":0,"t1":88,"t2":100}],[6327,{"d":27,"dB":1614434400,"t1s":1,"t2s":0,"t1":43,"t2":88}],[6328,{"d":26,"dB":1613844000,"t1s":0,"t2s":2,"t1":88,"t2":92}],[6346,{"d":25,"dB":1613418300,"t1s":3,"t2s":0,"t1":10,"t2":88}],[6381,{"d":21,"dB":1611424800,"t1s":3,"t2s":1,"t1":128,"t2":88}],[6388,{"d":20,"dB":1610820000,"t1s":1,"t2s":0,"t1":88,"t2":5}],[6406,{"d":19,"dB":1610132400,"t1s":1,"t2s":1,"t1":107,"t2":88}],[6411,{"d":18,"dB":1609873200,"t1s":4,"t2s":1,"t1":88,"t2":129}],[6418,{"d":17,"dB":1608663600,"t1s":0,"t2s":0,"t1":42,"t2":88}],[6428,{"d":16,"dB":1608318000,"t1s":1,"t2s":0,"t1":88,"t2":17}],[6443,{"d":15,"dB":1607796000,"t1s":2,"t2s":0,"t1":98,"t2":88}],[6457,{"d":14,"dB":1607370300,"t1s":1,"t2s":1,"t1":88,"t2":89}],[6467,{"d":13,"dB":1606845600,"t1s":1,"t2s":1,"t1":91,"t2":88}],[6468,{"d":12,"dB":1606586400,"t1s":0,"t2s":0,"t1":88,"t2":90}],[6481,{"d":11,"dB":1606160700,"t1s":2,"t2s":2,"t1":14,"t2":88}],[6494,{"d":10,"dB":1604772000,"t1s":0,"t2s":1,"t1":100,"t2":88}],[6498,{"d":9,"dB":1604167200,"t1s":0,"t2s":4,"t1":88,"t2":43}],[6511,{"d":8,"dB":1603558800,"t1s":0,"t2s":2,"t1":92,"t2":88}],[6518,{"d":7,"dB":1602954000,"t1s":0,"t2s":1,"t1":88,"t2":10}],[6528,{"d":6,"dB":1601744400,"t1s":5,"t2s":1,"t1":101,"t2":88}],[6538,{"d":5,"dB":1601139600,"t1s":1,"t2s":1,"t1":88,"t2":102}],[6558,{"d":3,"dB":1601485200,"t1s":1,"t2s":0,"t1":88,"t2":128}],[6568,{"d":2,"dB":1598706000,"t1s":1,"t2s":0,"t1":5,"t2":88}],[6579,{"d":1,"dB":1598115600,"t1s":0,"t2s":1,"t1":88,"t2":93}],[10571,{"d":2,"dB":1627750800,"t1s":3,"t2s":1,"t1":88,"t2":42}],[10935,{"d":1,"dB":1627146000,"t1s":2,"t2s":2,"t1":10,"t2":88}],[6215,{"d":38,"dB":1621101600,"t1s":3,"t2s":0,"t1":107,"t2":90}],[6221,{"d":37,"dB":1620496800,"t1s":1,"t2s":0,"t1":90,"t2":129}],[6232,{"d":36,"dB":1619892000,"t1s":2,"t2s":4,"t1":89,"t2":90}],[6240,{"d":35,"dB":1619287200,"t1s":1,"t2s":1,"t1":90,"t2":17}],[6252,{"d":34,"dB":1618941600,"t1s":1,"t2s":0,"t1":14,"t2":90}],[6260,{"d":33,"dB":1618682400,"t1s":2,"t2s":0,"t1":90,"t2":42}],[6382,{"d":21,"dB":1611424800,"t1s":2,"t2s":0,"t1":94,"t2":90}],[6405,{"d":18,"dB":1609873200,"t1s":0,"t2s":1,"t1":90,"t2":89}],[6407,{"d":19,"dB":1610132400,"t1s":1,"t2s":3,"t1":129,"t2":90}],[6424,{"d":17,"dB":1608663600,"t1s":3,"t2s":3,"t1":17,"t2":90}],[6429,{"d":16,"dB":1608318000,"t1s":3,"t2s":0,"t1":90,"t2":14}],[6438,{"d":15,"dB":1607796000,"t1s":1,"t2s":1,"t1":42,"t2":90}],[6450,{"d":14,"dB":1607191200,"t1s":1,"t2s":2,"t1":90,"t2":91}],[6479,{"d":11,"dB":1605981600,"t1s":1,"t2s":1,"t1":90,"t2":10}],[6497,{"d":10,"dB":1604772000,"t1s":2,"t2s":2,"t1":43,"t2":90}],[6499,{"d":9,"dB":1604167200,"t1s":0,"t2s":1,"t1":90,"t2":128}],[6508,{"d":8,"dB":1603558800,"t1s":4,"t2s":0,"t1":101,"t2":90}],[6520,{"d":7,"dB":1602867600,"t1s":0,"t2s":3,"t1":90,"t2":92}],[5865,{"d":35,"dB":1619967900,"t1s":1,"t2s":2,"t1":15,"t2":4}],[5873,{"d":34,"dB":1619348400,"t1s":3,"t2s":1,"t1":19,"t2":15}],[6348,{"d":24,"dB":1612551600,"t1s":0,"t2s":0,"t1":88,"t2":101}],[6367,{"d":23,"dB":1612292400,"t1s":0,"t2s":2,"t1":102,"t2":88}],[6368,{"d":22,"dB":1612029600,"t1s":2,"t2s":1,"t1":88,"t2":94}],[6552,{"d":4,"dB":1600534800,"t1s":2,"t2s":0,"t1":94,"t2":88}],[6211,{"d":38,"dB":1621101600,"t1s":2,"t2s":2,"t1":17,"t2":42}],[6219,{"d":37,"dB":1620496800,"t1s":0,"t2s":0,"t1":42,"t2":98}],[6237,{"d":36,"dB":1619892000,"t1s":0,"t2s":3,"t1":42,"t2":14}],[6248,{"d":34,"dB":1618941600,"t1s":3,"t2s":1,"t1":42,"t2":91}],[6268,{"d":32,"dB":1618160400,"t1s":1,"t2s":0,"t1":42,"t2":100}],[6282,{"d":31,"dB":1619629200,"t1s":1,"t2s":1,"t1":128,"t2":42}],[6288,{"d":30,"dB":1616248800,"t1s":3,"t2s":1,"t1":42,"t2":43}],[6300,{"d":29,"dB":1618419600,"t1s":3,"t2s":0,"t1":92,"t2":42}],[6309,{"d":28,"dB":1614711600,"t1s":1,"t2s":1,"t1":42,"t2":101}],[6326,{"d":27,"dB":1614434400,"t1s":3,"t2s":0,"t1":10,"t2":42}],[10938,{"d":1,"dB":1627146000,"t1s":1,"t2s":2,"t1":42,"t2":101}],[6329,{"d":26,"dB":1613844000,"t1s":0,"t2s":1,"t1":42,"t2":102}],[6343,{"d":25,"dB":1613239200,"t1s":0,"t2s":0,"t1":94,"t2":42}],[6349,{"d":24,"dB":1612551600,"t1s":0,"t2s":0,"t1":42,"t2":5}],[6366,{"d":23,"dB":1612292400,"t1s":2,"t2s":0,"t1":129,"t2":42}],[6369,{"d":22,"dB":1612029600,"t1s":1,"t2s":0,"t1":42,"t2":93}],[6385,{"d":21,"dB":1611424800,"t1s":4,"t2s":2,"t1":107,"t2":42}],[6389,{"d":20,"dB":1610820000,"t1s":0,"t2s":0,"t1":42,"t2":89}],[6403,{"d":19,"dB":1610132400,"t1s":0,"t2s":2,"t1":98,"t2":42}],[6412,{"d":18,"dB":1609873200,"t1s":2,"t2s":2,"t1":14,"t2":42}],[6437,{"d":16,"dB":1608318000,"t1s":0,"t2s":2,"t1":91,"t2":42}],[6453,{"d":14,"dB":1607191200,"t1s":1,"t2s":2,"t1":100,"t2":42}],[6477,{"d":12,"dB":1606586400,"t1s":2,"t2s":1,"t1":43,"t2":42}],[6478,{"d":11,"dB":1605981600,"t1s":1,"t2s":1,"t1":42,"t2":92}],[6488,{"d":10,"dB":1604772000,"t1s":2,"t2s":1,"t1":101,"t2":42}],[6507,{"d":9,"dB":1604346300,"t1s":0,"t2s":1,"t1":42,"t2":10}],[6458,{"d":13,"dB":1606845600,"t1s":1,"t2s":0,"t1":42,"t2":128}],[6515,{"d":8,"dB":1603741500,"t1s":0,"t2s":2,"t1":102,"t2":42}],[6519,{"d":7,"dB":1602954000,"t1s":1,"t2s":0,"t1":42,"t2":94}],[6529,{"d":6,"dB":1601731800,"t1s":1,"t2s":0,"t1":5,"t2":42}],[6539,{"d":5,"dB":1601139600,"t1s":0,"t2s":0,"t1":42,"t2":129}],[6549,{"d":4,"dB":1600534800,"t1s":0,"t2s":0,"t1":93,"t2":42}],[6559,{"d":3,"dB":1599930000,"t1s":1,"t2s":2,"t1":42,"t2":107}],[6580,{"d":1,"dB":1598115600,"t1s":1,"t2s":0,"t1":42,"t2":17}],[6573,{"d":2,"dB":1598720400,"t1s":1,"t2s":0,"t1":89,"t2":42}],[6214,{"d":38,"dB":1621101600,"t1s":3,"t2s":2,"t1":89,"t2":43}],[6227,{"d":37,"dB":1620496800,"t1s":3,"t2s":5,"t1":91,"t2":89}],[6472,{"d":12,"dB":1606586400,"t1s":4,"t2s":0,"t1":102,"t2":89}],[6521,{"d":7,"dB":1602954000,"t1s":1,"t2s":1,"t1":89,"t2":93}],[6534,{"d":6,"dB":1601744400,"t1s":3,"t2s":0,"t1":107,"t2":89}],[6562,{"d":3,"dB":1599915600,"t1s":1,"t2s":3,"t1":14,"t2":89}],[6587,{"d":1,"dB":1598294700,"t1s":2,"t2s":0,"t1":43,"t2":89}],[6210,{"d":38,"dB":1621101600,"t1s":3,"t2s":3,"t1":128,"t2":10}],[6230,{"d":36,"dB":1619892000,"t1s":1,"t2s":0,"t1":128,"t2":102}],[6239,{"d":35,"dB":1619287200,"t1s":2,"t2s":1,"t1":101,"t2":128}],[6249,{"d":34,"dB":1618941600,"t1s":1,"t2s":1,"t1":5,"t2":128}],[6262,{"d":33,"dB":1618682400,"t1s":1,"t2s":1,"t1":128,"t2":94}],[6269,{"d":32,"dB":1618077600,"t1s":1,"t2s":2,"t1":93,"t2":128}],[6296,{"d":30,"dB":1616266800,"t1s":3,"t2s":1,"t1":129,"t2":128}],[6301,{"d":29,"dB":1615662000,"t1s":2,"t2s":0,"t1":128,"t2":98}],[6315,{"d":28,"dB":1614711600,"t1s":1,"t2s":0,"t1":107,"t2":128}],[6331,{"d":26,"dB":1613844000,"t1s":1,"t2s":1,"t1":89,"t2":128}],[6342,{"d":25,"dB":1613239200,"t1s":1,"t2s":2,"t1":128,"t2":17}],[6351,{"d":24,"dB":1612551600,"t1s":0,"t2s":0,"t1":14,"t2":128}],[6362,{"d":23,"dB":1612292400,"t1s":0,"t2s":0,"t1":128,"t2":100}],[6377,{"d":22,"dB":1612029600,"t1s":1,"t2s":0,"t1":91,"t2":128}],[6392,{"d":20,"dB":1610820000,"t1s":5,"t2s":0,"t1":92,"t2":128}],[6414,{"d":18,"dB":1609873200,"t1s":1,"t2s":0,"t1":102,"t2":128}],[6421,{"d":17,"dB":1608663600,"t1s":0,"t2s":1,"t1":128,"t2":101}],[6433,{"d":16,"dB":1608318000,"t1s":2,"t2s":3,"t1":128,"t2":5}],[6447,{"d":15,"dB":1607796000,"t1s":4,"t2s":0,"t1":94,"t2":128}],[6452,{"d":14,"dB":1607191200,"t1s":2,"t2s":0,"t1":128,"t2":93}],[6475,{"d":12,"dB":1606586400,"t1s":2,"t2s":2,"t1":128,"t2":129}],[6492,{"d":10,"dB":1604772000,"t1s":0,"t2s":1,"t1":128,"t2":107}],[6512,{"d":8,"dB":1603558800,"t1s":0,"t2s":1,"t1":128,"t2":89}],[6522,{"d":7,"dB":1602954000,"t1s":2,"t2s":1,"t1":17,"t2":128}],[6532,{"d":6,"dB":1601744400,"t1s":1,"t2s":0,"t1":128,"t2":14}],[6544,{"d":5,"dB":1601139600,"t1s":2,"t2s":1,"t1":100,"t2":128}],[6551,{"d":4,"dB":1600534800,"t1s":1,"t2s":0,"t1":128,"t2":91}],[6571,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":128,"t2":92}],[6578,{"d":1,"dB":1598101200,"t1s":0,"t2s":1,"t1":10,"t2":128}],[10936,{"d":1,"dB":1627146000,"t1s":1,"t2s":1,"t1":128,"t2":163}],[6216,{"d":38,"dB":1621101600,"t1s":4,"t2s":3,"t1":129,"t2":91}],[6267,{"d":33,"dB":1618682400,"t1s":0,"t2s":1,"t1":91,"t2":14}],[6297,{"d":30,"dB":1616266800,"t1s":2,"t2s":2,"t1":91,"t2":101}],[6303,{"d":29,"dB":1615662000,"t1s":3,"t2s":0,"t1":100,"t2":91}],[6321,{"d":27,"dB":1614448800,"t1s":4,"t2s":0,"t1":92,"t2":91}],[6336,{"d":26,"dB":1613829600,"t1s":2,"t2s":2,"t1":91,"t2":43}],[6359,{"d":23,"dB":1612292400,"t1s":1,"t2s":1,"t1":5,"t2":91}],[6417,{"d":18,"dB":1609873200,"t1s":2,"t2s":3,"t1":91,"t2":17}],[6425,{"d":17,"dB":1608663600,"dl":1,"t1s":null,"t2s":null,"t1":98,"t2":91}],[6441,{"d":15,"dB":1607796000,"t1s":1,"t2s":1,"t1":14,"t2":91}],[6474,{"d":12,"dB":1606586400,"t1s":1,"t2s":1,"t1":101,"t2":91}],[6486,{"d":11,"dB":1605981600,"t1s":1,"t2s":1,"t1":91,"t2":100}],[10579,{"d":2,"dB":1627929900,"t1s":3,"t2s":0,"t1":101,"t2":94}],[6217,{"d":38,"dB":1621101600,"t1s":2,"t2s":3,"t1":102,"t2":101}],[6220,{"d":37,"dB":1620496800,"t1s":1,"t2s":1,"t1":101,"t2":94}],[6228,{"d":36,"dB":1619892000,"t1s":0,"t2s":0,"t1":5,"t2":101}],[6257,{"d":34,"dB":1618941600,"t1s":3,"t2s":0,"t1":129,"t2":101}],[6259,{"d":33,"dB":1618682400,"t1s":3,"t2s":2,"t1":101,"t2":17}],[6273,{"d":32,"dB":1618077600,"t1s":0,"t2s":4,"t1":98,"t2":101}],[6279,{"d":31,"dB":1617648300,"t1s":1,"t2s":1,"t1":101,"t2":89}],[6299,{"d":29,"dB":1615644000,"t1s":0,"t2s":0,"t1":101,"t2":107}],[6318,{"d":27,"dB":1614448800,"t1s":0,"t2s":1,"t1":101,"t2":100}],[6338,{"d":25,"dB":1613224800,"t1s":1,"t2s":1,"t1":101,"t2":14}],[6376,{"d":22,"dB":1612015200,"t1s":3,"t2s":1,"t1":43,"t2":101}],[6380,{"d":21,"dB":1611410400,"t1s":1,"t2s":0,"t1":92,"t2":101}],[6390,{"d":20,"dB":1610820000,"t1s":4,"t2s":1,"t1":101,"t2":93}],[6404,{"d":18,"dB":1609873200,"t1s":1,"t2s":1,"t1":101,"t2":5}],[6431,{"d":16,"dB":1608318000,"t1s":2,"t2s":1,"t1":101,"t2":129}],[6444,{"d":15,"dB":1607796000,"t1s":2,"t2s":2,"t1":17,"t2":101}],[6448,{"d":14,"dB":1607191200,"t1s":6,"t2s":0,"t1":101,"t2":98}],[6462,{"d":13,"dB":1606845600,"t1s":1,"t2s":1,"t1":89,"t2":101}],[6484,{"d":11,"dB":1605981600,"t1s":0,"t2s":3,"t1":107,"t2":101}],[6505,{"d":9,"dB":1604167200,"t1s":2,"t2s":2,"t1":100,"t2":101}],[6527,{"d":7,"dB":1603133100,"t1s":2,"t2s":0,"t1":14,"t2":101}],[6560,{"d":3,"dB":1599930000,"t1s":0,"t2s":1,"t1":101,"t2":92}],[6570,{"d":2,"dB":1598720400,"t1s":1,"t2s":2,"t1":93,"t2":101}],[6581,{"d":1,"dB":1598115600,"t1s":0,"t2s":2,"t1":101,"t2":102}],[6330,{"d":26,"dB":1613844000,"t1s":0,"t2s":1,"t1":90,"t2":101}],[6358,{"d":23,"dB":1612292400,"t1s":3,"t2s":1,"t1":101,"t2":10}],[6400,{"d":19,"dB":1610200800,"t1s":2,"t2s":2,"t1":94,"t2":101}],[6545,{"d":5,"dB":1601125200,"t1s":3,"t2s":1,"t1":10,"t2":101}],[6557,{"d":4,"dB":1600713900,"t1s":2,"t2s":1,"t1":101,"t2":43}],[10930,{"d":1,"dB":1627131600,"t1s":1,"t2s":1,"t1":147,"t2":67}],[5927,{"d":29,"dB":1615730400,"t1s":1,"t2s":0,"t1":20,"t2":41}],[6156,{"d":6,"dB":1601816400,"t1s":0,"t2s":3,"t1":41,"t2":12}],[6164,{"d":5,"dB":1601211600,"t1s":3,"t2s":2,"t1":13,"t2":41}],[6177,{"d":4,"dB":1600606800,"t1s":1,"t2s":0,"t1":41,"t2":7}],[6186,{"d":3,"dB":1599937200,"t1s":2,"t2s":0,"t1":4,"t2":41}],[6196,{"d":2,"dB":1598727600,"t1s":0,"t2s":2,"t1":41,"t2":19}],[6202,{"d":1,"dB":1598187600,"t1s":3,"t2s":1,"t1":6,"t2":41}],[6213,{"d":38,"dB":1621101600,"t1s":0,"t2s":2,"t1":98,"t2":14}],[6223,{"d":37,"dB":1620496800,"t1s":2,"t2s":0,"t1":14,"t2":93}],[6242,{"d":35,"dB":1619287200,"t1s":0,"t2s":0,"t1":14,"t2":107}],[6287,{"d":31,"dB":1617472800,"t1s":1,"t2s":0,"t1":43,"t2":14}],[6291,{"d":30,"dB":1616266800,"t1s":1,"t2s":1,"t1":14,"t2":100}],[6311,{"d":28,"dB":1614711600,"t1s":0,"t2s":5,"t1":14,"t2":92}],[6363,{"d":23,"dB":1612292400,"t1s":2,"t2s":1,"t1":94,"t2":14}],[6426,{"d":17,"dB":1608663600,"t1s":3,"t2s":2,"t1":107,"t2":14}],[6455,{"d":14,"dB":1607191200,"t1s":2,"t2s":2,"t1":10,"t2":14}],[6500,{"d":9,"dB":1604167200,"t1s":0,"t2s":0,"t1":14,"t2":102}],[6208,{"d":38,"dB":1621101600,"t1s":2,"t2s":1,"t1":5,"t2":92}],[6225,{"d":37,"dB":1620496800,"t1s":3,"t2s":0,"t1":10,"t2":5}],[6244,{"d":35,"dB":1619287200,"t1s":1,"t2s":0,"t1":102,"t2":5}],[6270,{"d":32,"dB":1618077600,"t1s":3,"t2s":1,"t1":94,"t2":5}],[6280,{"d":31,"dB":1617472800,"t1s":1,"t2s":1,"t1":5,"t2":129}],[6290,{"d":30,"dB":1616266800,"t1s":2,"t2s":2,"t1":93,"t2":5}],[6307,{"d":29,"dB":1615837500,"t1s":0,"t2s":2,"t1":5,"t2":89}],[6313,{"d":28,"dB":1614711600,"t1s":1,"t2s":0,"t1":17,"t2":5}],[6319,{"d":27,"dB":1614448800,"t1s":0,"t2s":2,"t1":5,"t2":107}],[6337,{"d":26,"dB":1614023100,"t1s":2,"t2s":2,"t1":14,"t2":5}],[6370,{"d":22,"dB":1612029600,"t1s":4,"t2s":2,"t1":90,"t2":5}],[6378,{"d":21,"dB":1611424800,"t1s":1,"t2s":2,"t1":5,"t2":100}],[6410,{"d":19,"dB":1610394300,"t1s":2,"t2s":2,"t1":5,"t2":10}],[6419,{"d":17,"dB":1608663600,"t1s":1,"t2s":4,"t1":5,"t2":102}],[6466,{"d":13,"dB":1606845600,"t1s":1,"t2s":0,"t1":129,"t2":5}],[6469,{"d":12,"dB":1606586400,"t1s":1,"t2s":1,"t1":5,"t2":93}],[6487,{"d":11,"dB":1605967200,"t1s":1,"t2s":2,"t1":89,"t2":5}],[6489,{"d":10,"dB":1604772000,"t1s":2,"t2s":1,"t1":5,"t2":17}],[6504,{"d":9,"dB":1604152800,"t1s":3,"t2s":1,"t1":107,"t2":5}],[6509,{"d":8,"dB":1603544400,"t1s":1,"t2s":0,"t1":5,"t2":14}],[6523,{"d":7,"dB":1602954000,"t1s":3,"t2s":0,"t1":98,"t2":5}],[6547,{"d":5,"dB":1601139600,"t1s":1,"t2s":0,"t1":91,"t2":5}],[6548,{"d":4,"dB":1600534800,"t1s":0,"t2s":0,"t1":5,"t2":90}],[6564,{"d":3,"dB":1599930000,"t1s":0,"t2s":3,"t1":100,"t2":5}],[6583,{"d":1,"dB":1598115600,"t1s":0,"t2s":0,"t1":92,"t2":5}],[10574,{"d":2,"dB":1627750800,"t1s":0,"t2s":1,"t1":98,"t2":5}],[10939,{"d":1,"dB":1627146000,"t1s":4,"t2s":0,"t1":5,"t2":100}],[6266,{"d":33,"dB":1618664400,"t1s":1,"t2s":0,"t1":43,"t2":5}],[6439,{"d":15,"dB":1607781600,"t1s":0,"t2s":0,"t1":5,"t2":43}],[6449,{"d":14,"dB":1607191200,"t1s":1,"t2s":1,"t1":5,"t2":94}],[6339,{"d":25,"dB":1613239200,"t1s":1,"t2s":0,"t1":5,"t2":98}],[5933,{"d":28,"dB":1614801600,"t1s":1,"t2s":1,"t1":15,"t2":6}],[6162,{"d":5,"dB":1601218800,"t1s":1,"t2s":1,"t1":6,"t2":18}],[6168,{"d":4,"dB":1600606800,"t1s":3,"t2s":2,"t1":75,"t2":6}],[6235,{"d":36,"dB":1619874000,"t1s":3,"t2s":1,"t1":107,"t2":10}],[6256,{"d":34,"dB":1618941600,"t1s":0,"t2s":1,"t1":107,"t2":92}],[6263,{"d":33,"dB":1618682400,"t1s":2,"t2s":2,"t1":100,"t2":107}],[6274,{"d":32,"dB":1618059600,"t1s":1,"t2s":1,"t1":107,"t2":43}],[6285,{"d":31,"dB":1617472800,"t1s":1,"t2s":2,"t1":102,"t2":107}],[6295,{"d":30,"dB":1616266800,"t1s":2,"t2s":0,"t1":107,"t2":94}],[6334,{"d":26,"dB":1613844000,"t1s":1,"t2s":0,"t1":107,"t2":93}],[6344,{"d":25,"dB":1613239200,"t1s":1,"t2s":1,"t1":129,"t2":107}],[6352,{"d":24,"dB":1612620000,"t1s":1,"t2s":0,"t1":89,"t2":107}],[6365,{"d":23,"dB":1612292400,"t1s":3,"t2s":3,"t1":107,"t2":98}],[6372,{"d":22,"dB":1612029600,"t1s":1,"t2s":1,"t1":17,"t2":107}],[6397,{"d":20,"dB":1611684000,"t1s":2,"t2s":0,"t1":91,"t2":107}],[6415,{"d":18,"dB":1609873200,"t1s":1,"t2s":0,"t1":10,"t2":107}],[6430,{"d":16,"dB":1608386400,"t1s":3,"t2s":2,"t1":92,"t2":107}],[6445,{"d":15,"dB":1607796000,"t1s":1,"t2s":1,"t1":107,"t2":100}],[6456,{"d":14,"dB":1607176800,"t1s":2,"t2s":1,"t1":43,"t2":107}],[6465,{"d":13,"dB":1606845600,"t1s":0,"t2s":0,"t1":107,"t2":102}],[6476,{"d":12,"dB":1606572000,"t1s":0,"t2s":0,"t1":94,"t2":107}],[6510,{"d":8,"dB":1603558800,"t1s":1,"t2s":2,"t1":93,"t2":107}],[6524,{"d":7,"dB":1602954000,"t1s":1,"t2s":0,"t1":107,"t2":129}],[6543,{"d":5,"dB":1601139600,"t1s":2,"t2s":2,"t1":98,"t2":107}],[5834,{"d":38,"dB":1621796400,"t1s":2,"t2s":0,"t1":20,"t2":67}],[5846,{"d":37,"dB":1621191600,"t1s":2,"t2s":5,"t1":67,"t2":18}],[5851,{"d":36,"dB":1620565200,"t1s":0,"t2s":3,"t1":11,"t2":67}],[5866,{"d":35,"dB":1619960400,"t1s":2,"t2s":2,"t1":67,"t2":68}],[5869,{"d":34,"dB":1619355600,"t1s":2,"t2s":1,"t1":104,"t2":67}],[5886,{"d":33,"dB":1618750800,"t1s":1,"t2s":1,"t1":67,"t2":41}],[5888,{"d":32,"dB":1618146000,"t1s":1,"t2s":1,"t1":75,"t2":67}],[5905,{"d":31,"dB":1617548700,"t1s":0,"t2s":2,"t1":67,"t2":4}],[5910,{"d":30,"dB":1616342700,"t1s":1,"t2s":2,"t1":12,"t2":67}],[5924,{"d":29,"dB":1615723200,"t1s":1,"t2s":1,"t1":67,"t2":15}],[5935,{"d":28,"dB":1614794400,"t1s":2,"t2s":1,"t1":19,"t2":67}],[5944,{"d":27,"dB":1614520800,"t1s":1,"t2s":1,"t1":67,"t2":8}],[5954,{"d":26,"dB":1613916000,"t1s":2,"t2s":0,"t1":67,"t2":3}],[5960,{"d":25,"dB":1613311200,"t1s":0,"t2s":2,"t1":7,"t2":67}],[5975,{"d":24,"dB":1612706400,"t1s":3,"t2s":4,"t1":67,"t2":13}],[5983,{"d":23,"dB":1612382400,"t1s":3,"t2s":0,"t1":2,"t2":67}],[5988,{"d":22,"dB":1612101600,"t1s":3,"t2s":1,"t1":16,"t2":67}],[6003,{"d":21,"dB":1614189600,"t1s":1,"t2s":0,"t1":67,"t2":6}],[6013,{"d":20,"dB":1610812800,"t1s":1,"t2s":2,"t1":9,"t2":67}],[6024,{"d":19,"dB":1610222400,"t1s":0,"t2s":1,"t1":67,"t2":12}],[6037,{"d":18,"dB":1609956000,"t1s":5,"t2s":0,"t1":41,"t2":67}],[6045,{"d":17,"dB":1608746400,"t1s":1,"t2s":3,"t1":67,"t2":7}],[6055,{"d":16,"dB":1608472800,"t1s":2,"t2s":2,"t1":4,"t2":67}],[6064,{"d":15,"dB":1608141600,"t1s":0,"t2s":2,"t1":67,"t2":19}],[6071,{"d":14,"dB":1607868000,"t1s":3,"t2s":0,"t1":6,"t2":67}],[6085,{"d":13,"dB":1607112000,"t1s":0,"t2s":2,"t1":67,"t2":9}],[6093,{"d":12,"dB":1606658400,"t1s":3,"t2s":0,"t1":13,"t2":67}],[6106,{"d":11,"dB":1606053600,"t1s":0,"t2s":1,"t1":68,"t2":67}],[6114,{"d":10,"dB":1604844000,"t1s":1,"t2s":5,"t1":67,"t2":16}],[6124,{"d":9,"dB":1604239200,"t1s":0,"t2s":1,"t1":67,"t2":11}],[6128,{"d":8,"dB":1603634400,"t1s":2,"t2s":0,"t1":3,"t2":67}],[6144,{"d":7,"dB":1602874800,"t1s":0,"t2s":4,"t1":67,"t2":2}],[6152,{"d":6,"dB":1601809200,"t1s":0,"t2s":1,"t1":15,"t2":67}],[6165,{"d":5,"dB":1601211600,"t1s":1,"t2s":1,"t1":67,"t2":104}],[6170,{"d":4,"dB":1600455600,"t1s":0,"t2s":0,"t1":18,"t2":67}],[6185,{"d":3,"dB":1600002000,"t1s":2,"t2s":4,"t1":67,"t2":20}],[6194,{"d":2,"dB":1598792400,"t1s":2,"t2s":1,"t1":8,"t2":67}],[6206,{"d":1,"dB":1598187600,"t1s":4,"t2s":0,"t1":67,"t2":75}],[10570,{"d":2,"dB":1627736400,"t1s":2,"t2s":1,"t1":67,"t2":7}],[10933,{"d":1,"dB":1627325100,"t1s":1,"t2s":3,"t1":7,"t2":102}],[5835,{"d":38,"dB":1621796400,"t1s":0,"t2s":1,"t1":4,"t2":7}],[5839,{"d":37,"dB":1621191600,"t1s":0,"t2s":4,"t1":7,"t2":8}],[5848,{"d":36,"dB":1620565200,"t1s":3,"t2s":0,"t1":16,"t2":7}],[5860,{"d":35,"dB":1619960400,"t1s":1,"t2s":5,"t1":7,"t2":11}],[5875,{"d":34,"dB":1619355600,"t1s":5,"t2s":1,"t1":20,"t2":7}],[5885,{"d":33,"dB":1618750800,"t1s":2,"t2s":0,"t1":7,"t2":19}],[5892,{"d":32,"dB":1618153500,"t1s":3,"t2s":0,"t1":13,"t2":7}],[5902,{"d":31,"dB":1617562800,"t1s":2,"t2s":0,"t1":9,"t2":7}],[5940,{"d":27,"dB":1614441600,"t1s":0,"t2s":4,"t1":7,"t2":2}],[5949,{"d":26,"dB":1613916000,"t1s":2,"t2s":1,"t1":104,"t2":7}],[5979,{"d":23,"dB":1612382400,"t1s":0,"t2s":1,"t1":7,"t2":18}],[5990,{"d":22,"dB":1612108800,"t1s":1,"t2s":0,"t1":12,"t2":7}],[6035,{"d":18,"dB":1609963200,"t1s":0,"t2s":0,"t1":68,"t2":7}],[6060,{"d":15,"dB":1608141600,"t1s":0,"t2s":2,"t1":7,"t2":12}],[6073,{"d":14,"dB":1607868000,"t1s":1,"t2s":1,"t1":8,"t2":7}],[6094,{"d":12,"dB":1606665600,"t1s":1,"t2s":3,"t1":19,"t2":7}],[6100,{"d":11,"dB":1606053600,"t1s":0,"t2s":1,"t1":7,"t2":104}],[6119,{"d":9,"dB":1604239200,"t1s":0,"t2s":0,"t1":7,"t2":6}],[6139,{"d":7,"dB":1602867600,"t1s":1,"t2s":1,"t1":7,"t2":20}],[6160,{"d":5,"dB":1601211600,"t1s":2,"t2s":2,"t1":7,"t2":15}],[6180,{"d":3,"dB":1600002000,"t1s":0,"t2s":2,"t1":7,"t2":75}],[6188,{"d":2,"dB":1598641200,"t1s":4,"t2s":1,"t1":18,"t2":7}],[6200,{"d":1,"dB":1598108400,"t1s":0,"t2s":1,"t1":7,"t2":16}],[5909,{"d":30,"dB":1616335200,"t1s":0,"t2s":1,"t1":7,"t2":68}],[5919,{"d":29,"dB":1615730400,"t1s":1,"t2s":3,"t1":7,"t2":3}],[5929,{"d":28,"dB":1614794400,"t1s":3,"t2s":1,"t1":75,"t2":7}],[5972,{"d":24,"dB":1612706400,"t1s":4,"t2s":2,"t1":15,"t2":7}],[5999,{"d":21,"dB":1611496800,"t1s":1,"t2s":1,"t1":7,"t2":41}],[6011,{"d":20,"dB":1611777600,"t1s":3,"t2s":2,"t1":6,"t2":7}],[6019,{"d":19,"dB":1610222400,"t1s":0,"t2s":0,"t1":7,"t2":9}],[6049,{"d":16,"dB":1608472800,"t1s":0,"t2s":1,"t1":7,"t2":13}],[6080,{"d":13,"dB":1607263200,"t1s":0,"t2s":0,"t1":7,"t2":4}],[6148,{"d":6,"dB":1601816400,"t1s":3,"t2s":0,"t1":3,"t2":7}],[5832,{"d":38,"dB":1621796400,"t1s":1,"t2s":2,"t1":8,"t2":15}],[5844,{"d":37,"dB":1621191600,"t1s":0,"t2s":0,"t1":15,"t2":75}],[5857,{"d":36,"dB":1620565200,"t1s":2,"t2s":3,"t1":41,"t2":15}],[5880,{"d":33,"dB":1618599600,"t1s":1,"t2s":1,"t1":12,"t2":15}],[5893,{"d":32,"dB":1618081200,"t1s":3,"t2s":3,"t1":15,"t2":9}],[5898,{"d":31,"dB":1617534000,"t1s":1,"t2s":1,"t1":16,"t2":15}],[5912,{"d":30,"dB":1616335200,"t1s":3,"t2s":1,"t1":15,"t2":3}],[5945,{"d":27,"dB":1614520800,"t1s":0,"t2s":0,"t1":68,"t2":15}],[5951,{"d":26,"dB":1613908800,"t1s":2,"t2s":1,"t1":15,"t2":20}],[5962,{"d":25,"dB":1613246400,"t1s":1,"t2s":2,"t1":18,"t2":15}],[5981,{"d":23,"dB":1612375200,"t1s":1,"t2s":1,"t1":11,"t2":15}],[5994,{"d":22,"dB":1612022400,"t1s":1,"t2s":2,"t1":15,"t2":104}],[6004,{"d":21,"dB":1611345600,"t1s":4,"t2s":0,"t1":2,"t2":15}],[6014,{"d":20,"dB":1610740800,"t1s":2,"t2s":3,"t1":15,"t2":13}],[6023,{"d":19,"dB":1610222400,"t1s":1,"t2s":1,"t1":15,"t2":8}],[6032,{"d":18,"dB":1609963200,"t1s":3,"t2s":1,"t1":9,"t2":15}],[6043,{"d":17,"dB":1608753600,"t1s":2,"t2s":3,"t1":15,"t2":12}],[6048,{"d":16,"dB":1608465600,"t1s":2,"t2s":2,"t1":75,"t2":15}],[6063,{"d":15,"dB":1608141600,"t1s":0,"t2s":2,"t1":15,"t2":11}],[6069,{"d":14,"dB":1607803200,"t1s":2,"t2s":3,"t1":104,"t2":15}],[6083,{"d":13,"dB":1607198400,"t1s":1,"t2s":3,"t1":15,"t2":2}],[6089,{"d":12,"dB":1606658400,"t1s":0,"t2s":1,"t1":6,"t2":15}],[6104,{"d":11,"dB":1606053600,"t1s":4,"t2s":3,"t1":15,"t2":41}],[6108,{"d":10,"dB":1604764800,"t1s":0,"t2s":2,"t1":3,"t2":15}],[6127,{"d":9,"dB":1604232000,"t1s":0,"t2s":1,"t1":4,"t2":15}],[6134,{"d":8,"dB":1603634400,"t1s":0,"t2s":4,"t1":15,"t2":68}],[6142,{"d":7,"dB":1603026000,"t1s":1,"t2s":1,"t1":13,"t2":15}],[6173,{"d":4,"dB":1600606800,"t1s":4,"t2s":1,"t1":15,"t2":16}],[6184,{"d":3,"dB":1599922800,"t1s":3,"t2s":1,"t1":15,"t2":19}],[6189,{"d":2,"dB":1598713200,"t1s":2,"t2s":1,"t1":20,"t2":15}],[6204,{"d":1,"dB":1600196400,"t1s":2,"t2s":1,"t1":15,"t2":18}],[6112,{"d":10,"dB":1604844000,"t1s":1,"t2s":1,"t1":11,"t2":7}],[6136,{"d":8,"dB":1603566000,"t1s":4,"t2s":0,"t1":2,"t2":7}],[5993,{"d":22,"dB":1615399200,"t1s":1,"t2s":0,"t1":9,"t2":20}],[6198,{"d":1,"dB":1600369200,"t1s":0,"t2s":2,"t1":9,"t2":4}],[5838,{"d":37,"dB":1621191600,"t1s":3,"t2s":0,"t1":3,"t2":104}],[5889,{"d":32,"dB":1618146000,"t1s":4,"t2s":1,"t1":104,"t2":6}],[6222,{"d":37,"dB":1620496800,"t1s":3,"t2s":1,"t1":92,"t2":102}],[6251,{"d":34,"dB":1618941600,"t1s":2,"t2s":0,"t1":94,"t2":102}],[6264,{"d":33,"dB":1618682400,"t1s":1,"t2s":1,"t1":102,"t2":129}],[6272,{"d":32,"dB":1618077600,"t1s":0,"t2s":0,"t1":17,"t2":102}],[6292,{"d":30,"dB":1616266800,"t1s":0,"t2s":2,"t1":89,"t2":102}],[6304,{"d":29,"dB":1615662000,"t1s":0,"t2s":0,"t1":102,"t2":93}],[6314,{"d":28,"dB":1614711600,"t1s":1,"t2s":3,"t1":98,"t2":102}],[6325,{"d":27,"dB":1614448800,"t1s":0,"t2s":0,"t1":102,"t2":14}],[6345,{"d":25,"dB":1613412000,"t1s":2,"t2s":0,"t1":102,"t2":91}],[6350,{"d":24,"dB":1612551600,"t1s":1,"t2s":4,"t1":90,"t2":102}],[6374,{"d":22,"dB":1612029600,"t1s":1,"t2s":1,"t1":100,"t2":102}],[6387,{"d":21,"dB":1611603900,"t1s":0,"t2s":1,"t1":102,"t2":10}],[6395,{"d":20,"dB":1610805600,"t1s":2,"t2s":1,"t1":43,"t2":102}],[6409,{"d":19,"dB":1610132400,"t1s":0,"t2s":0,"t1":102,"t2":92}],[6434,{"d":16,"dB":1608318000,"t1s":1,"t2s":1,"t1":102,"t2":94}],[6446,{"d":15,"dB":1608058800,"t1s":0,"t2s":0,"t1":129,"t2":102}],[6480,{"d":11,"dB":1605981600,"t1s":2,"t2s":1,"t1":93,"t2":102}],[6495,{"d":10,"dB":1604772000,"t1s":3,"t2s":4,"t1":102,"t2":98}],[6526,{"d":7,"dB":1602939600,"t1s":0,"t2s":0,"t1":91,"t2":102}],[6536,{"d":6,"dB":1601744400,"t1s":3,"t2s":2,"t1":102,"t2":90}],[6565,{"d":3,"dB":1600109100,"t1s":0,"t2s":0,"t1":10,"t2":102}],[6577,{"d":2,"dB":1598720400,"t1s":2,"t2s":1,"t1":102,"t2":43}],[6224,{"d":37,"dB":1620496800,"t1s":1,"t2s":1,"t1":100,"t2":17}],[6233,{"d":36,"dB":1619892000,"t1s":1,"t2s":3,"t1":17,"t2":91}],[6286,{"d":31,"dB":1617454800,"t1s":4,"t2s":1,"t1":10,"t2":17}],[6293,{"d":30,"dB":1616266800,"t1s":1,"t2s":0,"t1":17,"t2":92}],[6306,{"d":29,"dB":1615662000,"t1s":1,"t2s":5,"t1":43,"t2":17}],[6320,{"d":27,"dB":1614448800,"t1s":1,"t2s":4,"t1":93,"t2":17}],[6332,{"d":26,"dB":1613844000,"t1s":1,"t2s":2,"t1":17,"t2":94}],[6353,{"d":24,"dB":1612551600,"t1s":1,"t2s":0,"t1":17,"t2":129}],[6364,{"d":23,"dB":1612292400,"t1s":1,"t2s":1,"t1":89,"t2":17}],[6234,{"d":36,"dB":1619892000,"t1s":1,"t2s":1,"t1":98,"t2":100}],[6247,{"d":35,"dB":1619287200,"t1s":1,"t2s":1,"t1":91,"t2":98}],[6255,{"d":34,"dB":1618941600,"t1s":0,"t2s":3,"t1":98,"t2":43}],[6281,{"d":31,"dB":1617472800,"t1s":0,"t2s":0,"t1":92,"t2":98}],[6294,{"d":30,"dB":1616266800,"t1s":1,"t2s":0,"t1":98,"t2":10}],[6323,{"d":27,"dB":1614448800,"t1s":1,"t2s":1,"t1":94,"t2":98}],[6333,{"d":26,"dB":1613844000,"t1s":2,"t2s":1,"t1":98,"t2":129}],[6354,{"d":24,"dB":1612551600,"t1s":1,"t2s":1,"t1":98,"t2":93}],[6373,{"d":22,"dB":1612029600,"t1s":0,"t2s":0,"t1":98,"t2":89}],[6384,{"d":21,"dB":1611424800,"t1s":2,"t2s":2,"t1":17,"t2":98}],[6391,{"d":20,"dB":1611770400,"t1s":1,"t2s":1,"t1":90,"t2":98}],[6514,{"d":8,"dB":1603558800,"t1s":4,"t2s":1,"t1":129,"t2":98}],[6530,{"d":6,"dB":1601744400,"t1s":2,"t2s":0,"t1":93,"t2":98}],[6553,{"d":4,"dB":1600534800,"t1s":0,"t2s":1,"t1":89,"t2":98}],[6563,{"d":3,"dB":1599930000,"t1s":1,"t2s":0,"t1":98,"t2":17}],[6574,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":98,"t2":90}],[6584,{"d":1,"dB":1598115600,"t1s":0,"t2s":1,"t1":14,"t2":98}],[6402,{"d":19,"dB":1610132400,"t1s":2,"t2s":2,"t1":17,"t2":100}],[6454,{"d":14,"dB":1607191200,"t1s":1,"t2s":1,"t1":102,"t2":17}],[6463,{"d":13,"dB":1606845600,"t1s":1,"t2s":3,"t1":17,"t2":10}],[6470,{"d":12,"dB":1606586400,"t1s":2,"t2s":0,"t1":92,"t2":17}],[6482,{"d":11,"dB":1608058800,"t1s":2,"t2s":3,"t1":17,"t2":43}],[6502,{"d":9,"dB":1604167200,"t1s":2,"t2s":1,"t1":17,"t2":93}],[6513,{"d":8,"dB":1606240800,"t1s":1,"t2s":0,"t1":94,"t2":17}],[6535,{"d":6,"dB":1601744400,"t1s":1,"t2s":1,"t1":129,"t2":17}],[4312,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":47,"t2":62}],[4318,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":57,"t2":47}],[4341,{"d":35,"dB":1594315800,"t1s":0,"t2s":0,"t1":66,"t2":47}],[4351,{"d":34,"dB":1593961200,"t1s":0,"t2s":1,"t1":56,"t2":47}],[5850,{"d":36,"dB":1620486000,"t1s":4,"t2s":1,"t1":18,"t2":6}],[5882,{"d":33,"dB":1618772400,"t1s":1,"t2s":2,"t1":8,"t2":18}],[6041,{"d":17,"dB":1608753600,"t1s":3,"t2s":0,"t1":18,"t2":8}],[6322,{"d":27,"dB":1614448800,"t1s":1,"t2s":1,"t1":128,"t2":90}],[6226,{"d":37,"dB":1620496800,"t1s":2,"t2s":0,"t1":43,"t2":128}],[6399,{"d":19,"dB":1610132400,"t1s":0,"t2s":0,"t1":128,"t2":43}],[6483,{"d":11,"dB":1605981600,"t1s":1,"t2s":2,"t1":98,"t2":128}],[10575,{"d":2,"dB":1627750800,"t1s":2,"t2s":1,"t1":107,"t2":128}],[6556,{"d":4,"dB":1600534800,"t1s":2,"t2s":2,"t1":102,"t2":100}],[6212,{"d":38,"dB":1621101600,"t1s":1,"t2s":0,"t1":94,"t2":100}],[6231,{"d":36,"dB":1620067500,"t1s":1,"t2s":2,"t1":94,"t2":92}],[6246,{"d":35,"dB":1619269200,"t1s":3,"t2s":1,"t1":43,"t2":94}],[6283,{"d":31,"dB":1617472800,"t1s":2,"t2s":2,"t1":94,"t2":93}],[6302,{"d":29,"dB":1615662000,"t1s":1,"t2s":1,"t1":94,"t2":129}],[6408,{"d":18,"dB":1609873200,"t1s":3,"t2s":0,"t1":92,"t2":94}],[6420,{"d":17,"dB":1608663600,"t1s":2,"t2s":0,"t1":94,"t2":43}],[6485,{"d":11,"dB":1605981600,"t1s":0,"t2s":2,"t1":129,"t2":94}],[6493,{"d":10,"dB":1604757600,"t1s":2,"t2s":1,"t1":94,"t2":89}],[6533,{"d":6,"dB":1601744400,"t1s":2,"t2s":0,"t1":94,"t2":91}],[6541,{"d":5,"dB":1601139600,"t1s":1,"t2s":0,"t1":14,"t2":94}],[6561,{"d":3,"dB":1599930000,"t1s":1,"t2s":2,"t1":90,"t2":94}],[6572,{"d":2,"dB":1598720400,"t1s":5,"t2s":3,"t1":94,"t2":10}],[6585,{"d":1,"dB":1598115600,"t1s":1,"t2s":0,"t1":100,"t2":94}],[10934,{"d":1,"dB":1627146000,"t1s":0,"t2s":4,"t1":94,"t2":107}],[6312,{"d":28,"dB":1614711600,"t1s":0,"t2s":2,"t1":89,"t2":94}],[6396,{"d":20,"dB":1610805600,"t1s":2,"t2s":0,"t1":10,"t2":94}],[6357,{"d":24,"dB":1612551600,"t1s":0,"t2s":1,"t1":91,"t2":94}],[6460,{"d":13,"dB":1606845600,"t1s":0,"t2s":1,"t1":93,"t2":94}],[6503,{"d":9,"dB":1608058800,"t1s":0,"t2s":0,"t1":98,"t2":94}],[6276,{"d":32,"dB":1618077600,"t1s":2,"t2s":1,"t1":91,"t2":90}],[6284,{"d":31,"dB":1617472800,"t1s":2,"t2s":2,"t1":100,"t2":90}],[6305,{"d":29,"dB":1615662000,"t1s":4,"t2s":0,"t1":10,"t2":90}],[6310,{"d":28,"dB":1614711600,"t1s":0,"t2s":3,"t1":90,"t2":43}],[6341,{"d":25,"dB":1613239200,"t1s":1,"t2s":0,"t1":92,"t2":90}],[6360,{"d":23,"dB":1612292400,"t1s":4,"t2s":0,"t1":93,"t2":90}],[6459,{"d":13,"dB":1606845600,"t1s":1,"t2s":0,"t1":90,"t2":100}],[6540,{"d":5,"dB":1601139600,"t1s":2,"t2s":1,"t1":90,"t2":93}],[6582,{"d":1,"dB":1598115600,"t1s":0,"t2s":3,"t1":90,"t2":107}],[6150,{"d":6,"dB":1601737200,"t1s":2,"t2s":0,"t1":104,"t2":4}],[6182,{"d":3,"dB":1600002000,"t1s":2,"t2s":3,"t1":6,"t2":104}],[6190,{"d":2,"dB":1599764400,"t1s":1,"t2s":0,"t1":104,"t2":2}],[6229,{"d":36,"dB":1619892000,"t1s":1,"t2s":2,"t1":93,"t2":43}],[6347,{"d":25,"dB":1613239200,"t1s":2,"t2s":1,"t1":43,"t2":100}],[6356,{"d":24,"dB":1612620000,"t1s":1,"t2s":1,"t1":43,"t2":10}],[6361,{"d":23,"dB":1612292400,"t1s":2,"t2s":1,"t1":92,"t2":43}],[6416,{"d":18,"dB":1609873200,"t1s":2,"t2s":0,"t1":43,"t2":93}],[6436,{"d":16,"dB":1608318000,"t1s":1,"t2s":0,"t1":43,"t2":98}],[6461,{"d":13,"dB":1606845600,"t1s":1,"t2s":2,"t1":14,"t2":43}],[10572,{"d":2,"dB":1627750800,"t1s":1,"t2s":1,"t1":14,"t2":91}],[10937,{"d":1,"dB":1627146000,"t1s":0,"t2s":0,"t1":89,"t2":14}],[6277,{"d":32,"dB":1618253100,"t1s":1,"t2s":1,"t1":14,"t2":10}],[6371,{"d":22,"dB":1612029600,"t1s":2,"t2s":3,"t1":14,"t2":129}],[6383,{"d":21,"dB":1611424800,"t1s":1,"t2s":1,"t1":89,"t2":14}],[6393,{"d":20,"dB":1610820000,"t1s":0,"t2s":0,"t1":14,"t2":17}],[6471,{"d":12,"dB":1606586400,"t1s":1,"t2s":1,"t1":100,"t2":14}],[6491,{"d":10,"dB":1604757600,"t1s":0,"t2s":0,"t1":92,"t2":14}],[6555,{"d":4,"dB":1600534800,"t1s":0,"t2s":1,"t1":129,"t2":14}],[6569,{"d":2,"dB":1598706000,"t1s":2,"t2s":2,"t1":17,"t2":14}],[6398,{"d":19,"dB":1610132400,"t1s":2,"t2s":3,"t1":93,"t2":14}],[6245,{"d":35,"dB":1620838800,"t1s":2,"t2s":2,"t1":10,"t2":129}],[6275,{"d":32,"dB":1618077600,"t1s":2,"t2s":1,"t1":129,"t2":92}],[6316,{"d":28,"dB":1614711600,"t1s":1,"t2s":0,"t1":129,"t2":93}],[6324,{"d":27,"dB":1614448800,"t1s":2,"t2s":0,"t1":129,"t2":89}],[6243,{"d":35,"dB":1619287200,"t1s":1,"t2s":1,"t1":100,"t2":89}],[6253,{"d":34,"dB":1620147600,"t1s":0,"t2s":1,"t1":89,"t2":10}],[6261,{"d":33,"dB":1618664400,"t1s":1,"t2s":1,"t1":92,"t2":89}],[6340,{"d":25,"dB":1613239200,"t1s":0,"t2s":1,"t1":93,"t2":89}],[6401,{"d":19,"dB":1610132400,"t1s":0,"t2s":2,"t1":89,"t2":91}],[6423,{"d":17,"dB":1608663600,"t1s":1,"t2s":1,"t1":89,"t2":100}],[6435,{"d":16,"dB":1608386400,"t1s":4,"t2s":3,"t1":10,"t2":89}],[6442,{"d":15,"dB":1607975100,"t1s":0,"t2s":0,"t1":89,"t2":92}],[6501,{"d":9,"dB":1604167200,"t1s":1,"t2s":0,"t1":89,"t2":129}],[6542,{"d":5,"dB":1601139600,"t1s":0,"t2s":1,"t1":17,"t2":89}],[10578,{"d":2,"dB":1627750800,"t1s":0,"t2s":2,"t1":102,"t2":89}],[6554,{"d":4,"dB":1600534800,"t1s":0,"t2s":2,"t1":107,"t2":17}],[10573,{"d":2,"dB":1627750800,"t1s":0,"t2s":4,"t1":17,"t2":10}],[10931,{"d":1,"dB":1627146000,"t1s":2,"t2s":1,"t1":129,"t2":17}],[6205,{"d":1,"dB":1598194800,"t1s":2,"t2s":1,"t1":19,"t2":104}],[6250,{"d":34,"dB":1618941600,"t1s":1,"t2s":1,"t1":93,"t2":100}],[6355,{"d":24,"dB":1612551600,"t1s":2,"t2s":0,"t1":100,"t2":92}],[6413,{"d":18,"dB":1609873200,"t1s":1,"t2s":1,"t1":100,"t2":98}],[6464,{"d":13,"dB":1606845600,"t1s":1,"t2s":0,"t1":98,"t2":92}],[6473,{"d":12,"dB":1606572000,"t1s":2,"t2s":1,"t1":10,"t2":98}],[10932,{"d":1,"dB":1627146000,"t1s":0,"t2s":0,"t1":91,"t2":98}],[6241,{"d":35,"dB":1619462700,"t1s":2,"t2s":1,"t1":92,"t2":93}],[6422,{"d":17,"dB":1608663600,"t1s":0,"t2s":1,"t1":93,"t2":92}],[6432,{"d":16,"dB":1608318000,"t1s":1,"t2s":1,"t1":100,"t2":93}],[6440,{"d":15,"dB":1607796000,"t1s":0,"t2s":3,"t1":93,"t2":10}],[6575,{"d":2,"dB":1598720400,"t1s":1,"t2s":0,"t1":107,"t2":91}],[6386,{"d":21,"dB":1611424800,"t1s":0,"t2s":1,"t1":129,"t2":43}],[6394,{"d":20,"dB":1610820000,"t1s":1,"t2s":0,"t1":100,"t2":129}],[6427,{"d":17,"dB":1608663600,"t1s":0,"t2s":3,"t1":129,"t2":10}],[6451,{"d":14,"dB":1607191200,"t1s":3,"t2s":0,"t1":92,"t2":129}],[6490,{"d":10,"dB":1604772000,"t1s":0,"t2s":3,"t1":93,"t2":129}],[6566,{"d":3,"dB":1599930000,"t1s":2,"t2s":0,"t1":43,"t2":129}],[6586,{"d":1,"dB":1598115600,"t1s":3,"t2s":0,"t1":91,"t2":129}],[10577,{"d":2,"dB":1627750800,"t1s":1,"t2s":0,"t1":100,"t2":129}],[6576,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":129,"t2":100}],[6175,{"d":4,"dB":1600599600,"t1s":0,"t2s":3,"t1":19,"t2":2}],[6531,{"d":6,"dB":1601744400,"t1s":3,"t2s":0,"t1":92,"t2":100}],[6546,{"d":5,"dB":1601318700,"t1s":1,"t2s":0,"t1":43,"t2":92}],[6550,{"d":4,"dB":1600520400,"t1s":1,"t2s":1,"t1":92,"t2":10}],[6335,{"d":26,"dB":1613844000,"t1s":1,"t2s":0,"t1":100,"t2":10}],[6516,{"d":8,"dB":1603558800,"t1s":3,"t2s":0,"t1":10,"t2":100}],[6525,{"d":7,"dB":1602954000,"t1s":0,"t2s":1,"t1":100,"t2":43}],[6506,{"d":9,"dB":1604167200,"t1s":1,"t2s":3,"t1":91,"t2":92}],[6084,{"d":13,"dB":1607263200,"t1s":0,"t2s":4,"t1":8,"t2":41}],[6097,{"d":12,"dB":1606507200,"t1s":1,"t2s":1,"t1":41,"t2":20}],[5849,{"d":36,"dB":1620414000,"t1s":0,"t2s":3,"t1":104,"t2":12}],[5867,{"d":35,"dB":1619881200,"t1s":2,"t2s":1,"t1":2,"t2":104}],[5900,{"d":31,"dB":1617476400,"t1s":1,"t2s":1,"t1":104,"t2":18}],[5936,{"d":28,"dB":1614794400,"t1s":2,"t2s":3,"t1":4,"t2":104}],[5938,{"d":27,"dB":1614520800,"t1s":2,"t2s":2,"t1":16,"t2":104}],[5966,{"d":25,"dB":1613239200,"t1s":1,"t2s":1,"t1":68,"t2":104}],[5980,{"d":23,"dB":1612382400,"t1s":2,"t2s":2,"t1":104,"t2":9}],[6000,{"d":21,"dB":1611417600,"t1s":0,"t2s":1,"t1":104,"t2":19}],[6015,{"d":20,"dB":1610892000,"t1s":1,"t2s":1,"t1":8,"t2":104}],[6052,{"d":16,"dB":1608393600,"t1s":2,"t2s":0,"t1":11,"t2":104}],[6062,{"d":15,"dB":1608148800,"t1s":0,"t2s":3,"t1":13,"t2":104}],[6087,{"d":13,"dB":1607184000,"t1s":0,"t2s":2,"t1":20,"t2":104}],[6088,{"d":12,"dB":1606658400,"t1s":1,"t2s":3,"t1":104,"t2":16}],[6110,{"d":10,"dB":1604844000,"t1s":4,"t2s":4,"t1":104,"t2":68}],[6121,{"d":9,"dB":1611172800,"t1s":0,"t2s":1,"t1":9,"t2":104}],[6130,{"d":8,"dB":1606327200,"t1s":1,"t2s":1,"t1":104,"t2":8}],[6140,{"d":7,"dB":1603047600,"t1s":4,"t2s":0,"t1":12,"t2":104}],[6169,{"d":4,"dB":1600527600,"t1s":2,"t2s":1,"t1":104,"t2":3}],[5879,{"d":33,"dB":1618750800,"t1s":1,"t2s":1,"t1":75,"t2":104}],[5969,{"d":24,"dB":1612641600,"t1s":0,"t2s":0,"t1":104,"t2":20}],[6020,{"d":19,"dB":1610222400,"t1s":0,"t2s":1,"t1":104,"t2":41}],[6031,{"d":18,"dB":1609963200,"t1s":3,"t2s":2,"t1":18,"t2":104}],[6265,{"d":33,"dB":1618682400,"t1s":1,"t2s":0,"t1":10,"t2":93}],[6317,{"d":28,"dB":1614711600,"t1s":1,"t2s":0,"t1":91,"t2":10}],[6375,{"d":22,"dB":1612015200,"t1s":3,"t2s":2,"t1":10,"t2":92}],[6496,{"d":10,"dB":1604772000,"t1s":4,"t2s":5,"t1":10,"t2":91}],[6537,{"d":6,"dB":1601730000,"t1s":0,"t2s":0,"t1":10,"t2":43}],[6379,{"d":21,"dB":1611424800,"t1s":3,"t2s":3,"t1":93,"t2":91}],[6517,{"d":8,"dB":1603558800,"t1s":1,"t2s":1,"t1":43,"t2":91}],[6567,{"d":3,"dB":1599930000,"t1s":1,"t2s":0,"t1":91,"t2":93}]]} \ No newline at end of file From c948fc30d0f6610d2c8c1e1d0b054754f9906699 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 4 Aug 2021 18:47:06 +0200 Subject: [PATCH 03/13] Remove ObjectMapper which allow removing root ; not used anymore --- .../java/org/blondin/mpg/AbstractClient.java | 41 ++++++++----------- .../mpg/ObjectMapperContextResolver.java | 22 ---------- 2 files changed, 16 insertions(+), 47 deletions(-) delete mode 100644 src/main/java/org/blondin/mpg/ObjectMapperContextResolver.java diff --git a/src/main/java/org/blondin/mpg/AbstractClient.java b/src/main/java/org/blondin/mpg/AbstractClient.java index 55b76fd..f471078 100644 --- a/src/main/java/org/blondin/mpg/AbstractClient.java +++ b/src/main/java/org/blondin/mpg/AbstractClient.java @@ -84,43 +84,35 @@ protected void setUrl(String url) { } protected T get(String path, Class entityResponse) { - return get(path, null, entityResponse, false); + return get(path, null, entityResponse, -1); } protected T get(String path, Class entityResponse, long cacheTimeMilliSecond) { - return get(path, null, entityResponse, false, cacheTimeMilliSecond); + return get(path, null, entityResponse, cacheTimeMilliSecond); } protected T get(String path, MultivaluedMap headers, Class entityResponse) { - return get(path, headers, entityResponse, false, -1); + return get(path, headers, entityResponse, -1); } protected T get(String path, MultivaluedMap headers, Class entityResponse, long cacheTimeMilliSecond) { - return get(path, headers, entityResponse, false, cacheTimeMilliSecond); - } - - protected T get(String path, MultivaluedMap headers, Class entityResponse, boolean wrapRoot) { - return call(path, headers, null, entityResponse, wrapRoot, -1); - } - - protected T get(String path, MultivaluedMap headers, Class entityResponse, boolean wrapRoot, long cacheTimeMilliSecond) { - return call(path, headers, null, entityResponse, wrapRoot, cacheTimeMilliSecond); + return call(path, headers, null, entityResponse, cacheTimeMilliSecond, false); } protected T post(String path, Object entityRequest, Class entityResponse) { - return post(path, null, entityRequest, entityResponse, false); + return post(path, null, entityRequest, entityResponse); } protected T post(String path, MultivaluedMap headers, Object entityRequest, Class entityResponse) { - return post(path, headers, entityRequest, entityResponse, false); + return call(path, headers, entityRequest, entityResponse, -1, false); } - protected T post(String path, MultivaluedMap headers, Object entityRequest, Class entityResponse, boolean wrapRoot) { - return call(path, headers, entityRequest, entityResponse, wrapRoot, -1); + protected T put(String path, MultivaluedMap headers, Object entityRequest, Class entityResponse) { + return call(path, headers, entityRequest, entityResponse, -1, true); } - private T call(String path, MultivaluedMap headers, Object entityRequest, Class entityResponse, boolean wrapRoot, - long cacheTimeMilliSecond) { + private T call(String path, MultivaluedMap headers, Object entityRequest, Class entityResponse, long cacheTimeMilliSecond, + boolean entityRequestPut) { long start = System.currentTimeMillis(); try { LOG.debug("Call URL: {}/{} (cache duration ms: {})", url, path, cacheTimeMilliSecond); @@ -146,14 +138,11 @@ private T call(String path, MultivaluedMap headers, Object e } Client client = clientBuilder.build(); - if (wrapRoot) { - client = client.register(ObjectMapperContextResolver.class); - } WebTarget webTarget = client.target(url).path(path); Invocation.Builder invocationBuilder = webTarget.request(MediaType.APPLICATION_JSON).headers(headers); waitBeforeNextRequest(); - Response response = invokeWithRetry(invocationBuilder, entityRequest, url, path, 0); + Response response = invokeWithRetry(invocationBuilder, entityRequest, entityRequestPut, url, path, 0); if (Response.Status.FORBIDDEN.getStatusCode() == response.getStatus()) { throw new UrlForbiddenException(String.format("Forbidden URL: %s", url)); } @@ -181,12 +170,14 @@ private T call(String path, MultivaluedMap headers, Object e } } - private static Response invokeWithRetry(Invocation.Builder invocationBuilder, Object entityRequest, final String url, final String path, - int retryCount) { + private static Response invokeWithRetry(Invocation.Builder invocationBuilder, Object entityRequest, boolean entityRequestPut, final String url, + final String path, int retryCount) { Response response = null; try { if (entityRequest == null) { response = invocationBuilder.get(); + } else if (entityRequestPut) { + response = invocationBuilder.put(Entity.entity(entityRequest, MediaType.APPLICATION_JSON)); } else { response = invocationBuilder.post(Entity.entity(entityRequest, MediaType.APPLICATION_JSON)); } @@ -198,7 +189,7 @@ private static Response invokeWithRetry(Invocation.Builder invocationBuilder, Ob } catch (InterruptedException e1) { // NOSONAR : Sleep wanted throw new UnsupportedOperationException(e1); } - return invokeWithRetry(invocationBuilder, entityRequest, url, path, ++retryCount); + return invokeWithRetry(invocationBuilder, entityRequest, entityRequestPut, url, path, ++retryCount); } throw e; } diff --git a/src/main/java/org/blondin/mpg/ObjectMapperContextResolver.java b/src/main/java/org/blondin/mpg/ObjectMapperContextResolver.java deleted file mode 100644 index 27b5162..0000000 --- a/src/main/java/org/blondin/mpg/ObjectMapperContextResolver.java +++ /dev/null @@ -1,22 +0,0 @@ -package org.blondin.mpg; - -import javax.ws.rs.ext.ContextResolver; -import javax.ws.rs.ext.Provider; - -import com.fasterxml.jackson.databind.DeserializationFeature; -import com.fasterxml.jackson.databind.ObjectMapper; - -@Provider -public class ObjectMapperContextResolver implements ContextResolver { - private ObjectMapper mapper = null; - - public ObjectMapperContextResolver() { - super(); - mapper = new ObjectMapper().enable(DeserializationFeature.UNWRAP_ROOT_VALUE); - } - - @Override - public ObjectMapper getContext(Class type) { - return mapper; - } -} From b8827c56a027bd5361efacea8b786666aa596298 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 4 Aug 2021 18:47:58 +0200 Subject: [PATCH 04/13] Initiate new URLs --- .github/ISSUE_TEMPLATE/bug_report.md | 14 +- .../java/org/blondin/mpg/root/MpgClient.java | 26 +- .../org/blondin/mpg/root/model/Dashboard.java | 4 +- .../org/blondin/mpg/root/model/League.java | 12 +- src/test/java/org/blondin/mpg/MainTest.java | 79 ++- .../org/blondin/mpg/root/MpgClientTest.java | 29 +- src/test/resources/__files/README.md | 29 +- .../resources/__files/mpg.coach.20180926.json | 624 ------------------ .../__files/mpg.coach.MLEFEX6G.20210804.json | 88 +++ .../mpg.dashboard.KLGXSSUG-status-4.json | 19 - .../mpg.dashboard.MLEFEX6G-status-4.json | 224 +++++++ .../__files/mpg.user-signIn.fake.json | 2 +- 12 files changed, 425 insertions(+), 725 deletions(-) delete mode 100644 src/test/resources/__files/mpg.coach.20180926.json create mode 100644 src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json delete mode 100644 src/test/resources/__files/mpg.dashboard.KLGXSSUG-status-4.json create mode 100644 src/test/resources/__files/mpg.dashboard.MLEFEX6G-status-4.json diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e0bebb8..d0cba17 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -15,12 +15,12 @@ A clear and concise description of what the bug is, with a copy/paste of Java ex Depending your championship, join data files set in attachment. -1. The [MPG](https://mpg.football/) JSon *Response* of these *Request* on https://api.monpetitgazon.com (use the browser network monitor - F12, see wiki [Get MPG data for opening a bug](https://github.com/axel3rd/mpg-coach-bot/wiki/Get-MPG-data-for-opening-a-bug) for more details): +1. The MPG Mobile App JSon *Response* of these *Request* on https://api.mpg.football (use the browser network monitor - F12, see wiki [Get MPG data for opening a bug](https://github.com/axel3rd/mpg-coach-bot/wiki/Get-MPG-data-for-opening-a-bug) for more details): -- From home : `GET /user/dashboard` -- From coach: `GET /league/[yourLeagueId]/coach` -- From transfer : `GET /league/[yourLeagueId]/transfer/buy` -- From mercato : `GET /league/[yourLeagueId]/mercato` +- From home : `GET /dashboard/leagues` +- From coach: `GET /division/['divisionId' from previous, start with 'mpg_division_']/coach` +- From transfer : `GET /division/['divisionId' from previous, start with 'mpg_division_']/available-players` +- From mercato : `GET TODO` 2. The [Players statistics](https://www.mpgstats.fr/) data, one JSon from: @@ -34,7 +34,7 @@ Depending your championship, join data files set in attachment. 4. The [Injury / Suspended](https://www.sportsgambler.com/injuries/football/) data, one full HTML from: -- https://maligue2.fr/2019/08/05/joueurs-blesses-et-suspendus/ +- https://maligue2.fr/2020/08/20/joueurs-blesses-et-suspendus/ - https://www.sportsgambler.com/injuries/football/france-ligue-1/ - https://www.sportsgambler.com/injuries/football/england-premier-league/ - https://www.sportsgambler.com/injuries/football/spain-la-liga/ @@ -44,4 +44,4 @@ Depending your championship, join data files set in attachment. A clear and concise description of what you expected to happen. -If problem on *update team* feature, please join the *Request* and *Response* of `POST /league/[yourLeagueId]/coach` when you save your team in [MPG](https://mpg.football/). +If problem on *update team* feature, please join the *Request* and *Response* of `PUT /match-team-formation/['matchTeamFormation.id' from 'coach' request, start with 'mpg_match_team_formation_']` when you save your team in MPG Mobile App. diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index 452ba0b..a28f0ed 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -29,9 +29,7 @@ */ public class MpgClient extends AbstractClient { - public static final String MPG_CLIENT_VERSION = "6.9.1"; - - private static final String PATH_LEAGUE = "league/"; + public static final String MPG_CLIENT_VERSION = "8.2.0"; private final MultivaluedMap headers = new MultivaluedHashMap<>(); @@ -45,19 +43,19 @@ public static MpgClient build(Config config) { public static MpgClient build(Config config, String urlOverride) { MpgClient client = new MpgClient(config); - client.setUrl(StringUtils.defaultString(urlOverride, "https://api.monpetitgazon.com")); + client.setUrl(StringUtils.defaultString(urlOverride, "https://api.mpg.football")); client.signIn(config.getLogin(), config.getPassword()); return client; } public Coach getCoach(String league) { - final String path = PATH_LEAGUE + league + "/coach"; + final String path = "division/" + league + "/coach"; try { - return get(path, headers, Coach.class, true); + return get(path, headers, Coach.class); } catch (ProcessingException e) { if (e.getCause() instanceof JsonMappingException && e.getCause().getMessage().contains("Root name 'success' does not match expected ('data')")) { - String response = get(path, headers, String.class, true); + String response = get(path, headers, String.class); if (response.contains("noMoreGames")) { throw new NoMoreGamesException(); } @@ -68,7 +66,7 @@ public Coach getCoach(String league) { } public Dashboard getDashboard() { - return get("user/dashboard", headers, Dashboard.class, true); + return get("dashboard/leagues", headers, Dashboard.class); } public Mercato getMercato(ChampionshipType championship) { @@ -76,25 +74,25 @@ public Mercato getMercato(ChampionshipType championship) { } public Mercato getMercato(String league) { - return get(PATH_LEAGUE + league + "/mercato", headers, MercatoLeague.class); + return get("todo-currently-not-found/" + league + "/mercato", headers, MercatoLeague.class); } public TransferBuy getTransferBuy(String league) { - return get(PATH_LEAGUE + league + "/transfer/buy", headers, TransferBuy.class); + return get("division/" + league + "/available-players", headers, TransferBuy.class); } private void signIn(String login, String password) { Map entity = new HashMap<>(); - entity.put("email", login); + entity.put("login", login); entity.put("password", password); entity.put("language", "fr-FR"); - String token = post("user/signIn", entity, UserSignIn.class).getToken(); + String token = post("user/sign-in", entity, UserSignIn.class).getToken(); headers.add("authorization", token); - headers.add("client-version", MPG_CLIENT_VERSION); + // headers.add("client-version", MPG_CLIENT_VERSION); } public void updateCoach(League league, CoachRequest coachRequest) { - String result = post(PATH_LEAGUE + league.getId() + "/coach", headers, coachRequest, String.class); + String result = put("/match-team-formation/mpg_match_team_formation_LEAGUE_ID_X_Y_Z", headers, coachRequest, String.class); if (!"{\"success\":\"teamSaved\"}".equals(result)) { throw new UnsupportedOperationException(String.format("The team has been updated, result message: %s", result)); } diff --git a/src/main/java/org/blondin/mpg/root/model/Dashboard.java b/src/main/java/org/blondin/mpg/root/model/Dashboard.java index 6e55143..8872c8c 100644 --- a/src/main/java/org/blondin/mpg/root/model/Dashboard.java +++ b/src/main/java/org/blondin/mpg/root/model/Dashboard.java @@ -3,12 +3,12 @@ import java.util.List; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; -import com.fasterxml.jackson.annotation.JsonRootName; +import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) -@JsonRootName(value = "data") public class Dashboard { + @JsonProperty("leaguesDivisionsItems") private List leagues; public List getLeagues() { diff --git a/src/main/java/org/blondin/mpg/root/model/League.java b/src/main/java/org/blondin/mpg/root/model/League.java index 6a7188f..325d4e0 100644 --- a/src/main/java/org/blondin/mpg/root/model/League.java +++ b/src/main/java/org/blondin/mpg/root/model/League.java @@ -1,12 +1,16 @@ package org.blondin.mpg.root.model; +import org.apache.commons.lang3.StringUtils; + import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) public class League { - private String id; + @JsonProperty("leagueId") + private String leagueId; + private String divisionId; private String name; private ChampionshipType championship; private LeagueStatus leagueStatus; @@ -18,7 +22,11 @@ public class League { private League subLeague; public String getId() { - return id; + return StringUtils.removeStart(leagueId, "mpg_league_"); + } + + public String getDivisionId() { + return divisionId; } public String getName() { diff --git a/src/test/java/org/blondin/mpg/MainTest.java b/src/test/java/org/blondin/mpg/MainTest.java index c03727d..599c5bd 100644 --- a/src/test/java/org/blondin/mpg/MainTest.java +++ b/src/test/java/org/blondin/mpg/MainTest.java @@ -66,7 +66,7 @@ public void testRealIfCredentials() throws Exception { Main.main(new String[] { config }); } } catch (ProcessingException e) { - Assert.assertEquals("No network", "java.net.UnknownHostException: api.monpetitgazon.com", e.getMessage()); + Assert.assertEquals("No network", "java.net.UnknownHostException: api.mpg.football", e.getMessage()); } } @@ -82,10 +82,23 @@ public void testRealWithBadCredentials() throws Exception { e.getMessage()); } catch (ProcessingException e) { // Proxy not configured or real URL not accessible - Assert.assertEquals("No network", "java.net.UnknownHostException: api.monpetitgazon.com", e.getMessage()); + Assert.assertEquals("No network", "java.net.UnknownHostException: api.mpg.football", e.getMessage()); } } + @Test + public void testMobileAppApiSimpleAfter20210719() throws Exception { + prepareMainFrenchLigue2Mocks("MLEFEX6G-status-4", "20210804", "20210804", "20210804"); + Config config = spy(getConfig()); + doReturn(false).when(config).isTeampUpdate(); + doReturn(false).when(config).isUseBonus(); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1/coach") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.json"))); + executeMainProcess(config); + Assert.assertTrue(getLogOut(), getLogOut().contains("Ba")); + Assert.assertFalse(getLogOut(), getLogOut().contains("Updating team")); + } + @Test public void testBonusUberEatsUpdate() throws Exception { prepareMainFrenchLigue1Mocks("KLGXSSUG-status-4", "20181114", "20181114", "20181114"); @@ -103,10 +116,10 @@ public void testBonusUberEatsUpdate() throws Exception { @Test public void testTransactionsProposalIndexOutOfBoundsException() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20200106.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json"))); stubFor(get("/league/MN7VSYBM/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MN7VSYBM.20210406.json"))); @@ -137,7 +150,7 @@ public void testTransactionsProposalIndexOutOfBoundsException() throws Exception @Test public void testInjuredLigue2ServiceUnavailable() throws Exception { prepareMainFrenchLigue2Mocks("MLAX7HMK-MLEFEX6G", "20201006", "20201006", null); - stubFor(get("/2019/08/05/joueurs-blesses-et-suspendus/") + stubFor(get("/2020/08/20/joueurs-blesses-et-suspendus/") .willReturn(aResponse().withStatus(Response.Status.SERVICE_UNAVAILABLE.getStatusCode()))); stubFor(get("/league/MLEFEX6G/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20201006.json"))); @@ -238,17 +251,17 @@ public void testInjuredLigue2FrenchAccent() throws Exception { @Test public void testConnectionReset() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); // CONNECTION_RESET_BY_PEER doesn't work on Windows (block response), EMPTY_RESPONSE throws a SocketException too final String scenario = "Retry Scenario Connection Reset"; - stubFor(get("/user/dashboard").inScenario(scenario).whenScenarioStateIs(Scenario.STARTED).willSetStateTo("SocketException") + stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs(Scenario.STARTED).willSetStateTo("SocketException") .willReturn(aResponse().withFault(Fault.EMPTY_RESPONSE))); // Don't understand why too fault request necessary to have only one :/ - stubFor(get("/user/dashboard").inScenario(scenario).whenScenarioStateIs("SocketException").willSetStateTo("ValidResponse") + stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs("SocketException").willSetStateTo("ValidResponse") .willReturn(aResponse().withFault(Fault.EMPTY_RESPONSE))); - stubFor(get("/user/dashboard").inScenario(scenario).whenScenarioStateIs("ValidResponse").willReturn( + stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs("ValidResponse").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); Config config = spy(getConfig()); @@ -260,9 +273,9 @@ public void testConnectionReset() throws Exception { @Test public void testTransactionProposalWithoutStatsFullyReached() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); stubFor(get("/league/LJT3FXDF/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); @@ -287,9 +300,9 @@ public void testTransactionProposalWithoutStatsFullyReached() throws Exception { @Test public void testLeagueStartPlayerToKept() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LJV92C9Y-LH9HKBTD-status-6.json"))); Config config = spy(getConfig()); @@ -300,9 +313,9 @@ public void testLeagueStartPlayerToKept() throws Exception { @Test public void testPlayersStatsLeagueRefreshDateInvalid() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); stubFor(get("/league/LJT3FXDF/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); @@ -323,9 +336,9 @@ public void testPlayersStatsLeagueRefreshDateInvalid() throws Exception { @Test public void testMlnstatsEfficiencyRecentFocus() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); stubFor(get("/league/LJT3FXDF/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); @@ -364,9 +377,9 @@ public void testMlnstatsEfficiencyRecentFocus() throws Exception { @Test public void testMlnstatsEfficiencyYearAverage() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); stubFor(get("/league/LJT3FXDF/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); @@ -405,9 +418,9 @@ public void testMlnstatsEfficiencyYearAverage() throws Exception { @Test public void testUseBonusInt0() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); stubFor(get("/league/LJT3FXDF/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191220.json"))); @@ -688,9 +701,9 @@ public void testNoblankOnSubstitutesBench() throws Exception { @Test public void testMercatoEnding() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.qyOG7BuuZcv-status-3-teamStatus-2.json"))); executeMainProcess(); Assert.assertTrue(getLogOut().contains("Mercato will be ending, ready for your first match")); @@ -698,9 +711,9 @@ public void testMercatoEnding() throws Exception { @Test public void testUpdateTeamPremierLeague532WithTransactionProposalButNotEnabled() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard") + stubFor(get("/dashboard/leagues") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.KJVB6L7C-status-4.json"))); stubFor(get("/league/KJVB6L7C/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.KJVB6L7C.20190807.json"))); @@ -744,9 +757,9 @@ public void testMercatoLeagueStartHeaderClientRequired() throws Exception { @Test public void testSerieASupportSeasonStart() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard") + stubFor(get("/dashboard/leagues") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.XXXXXXXX-status-1.json"))); stubFor(get("/mercato/5") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.serie-a.20190805.json"))); @@ -764,9 +777,9 @@ public void testSerieASupportSeasonStart() throws Exception { @Test public void testMercatoSeasonStart() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard") + stubFor(get("/dashboard/leagues") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LJT3FXDF-status-1.json"))); stubFor(get("/mercato/2") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.premier-league.20190805.json"))); @@ -1166,7 +1179,7 @@ private void executeMainProcess(MpgClient mpgClient, MpgStatsClient mpgStatsClie if (injuredSuspendedClientLocal == null) { injuredSuspendedClientLocal = InjuredSuspendedWrapperClient.build(c, "http://localhost:" + getServer().port() + "/injuries/football/", "http://localhost:" + getServer().port() + "/blessures-et-suspensions/fodbold/", - "http://localhost:" + getServer().port() + "/2019/08/05/joueurs-blesses-et-suspendus/"); + "http://localhost:" + getServer().port() + "/2020/08/20/joueurs-blesses-et-suspendus/"); } Main.process(ApiClients.build(mpgClientLocal, mpgStatsClientLocal, injuredSuspendedClientLocal), c); } @@ -1198,10 +1211,10 @@ private static void prepareMainFrenchLigue2Mocks(String fileRootDashboard, Strin private static void prepareMainFrenchLigueMocks(String fileRootDashboard, String fileStatsLeagues, int ligue, String dataFileStats, String dataFileSportsGambler, String dataFileEquipeActu, String dataFileMaLigue2) { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); if (StringUtils.isNotBlank(fileRootDashboard)) { - stubFor(get("/user/dashboard").willReturn( + stubFor(get("/dashboard/leagues").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard." + fileRootDashboard + ".json"))); } if (StringUtils.isNotBlank(fileStatsLeagues)) { @@ -1225,7 +1238,7 @@ private static void prepareMainFrenchLigueMocks(String fileRootDashboard, String .willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); } if (StringUtils.isNotBlank(dataFileMaLigue2)) { - stubFor(get("/2019/08/05/joueurs-blesses-et-suspendus/").willReturn(aResponse().withHeader("Content-Type", "application/json") + stubFor(get("/2020/08/20/joueurs-blesses-et-suspendus/").willReturn(aResponse().withHeader("Content-Type", "application/json") .withBodyFile("maligue2.joueurs-blesses-et-suspendus." + dataFileMaLigue2 + ".html"))); } } diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index 967889e..033425b 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -19,7 +19,7 @@ public class MpgClientTest extends AbstractMockTestClient { @Test public void testMockSignInKo() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withStatus(401).withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.bad.json"))); Config config = getConfig(); String url = "http://localhost:" + server.port(); @@ -34,21 +34,21 @@ public void testMockSignInKo() throws Exception { @Test public void testMockSignInOk() throws Exception { - stubFor(post("/user/signIn") - .withRequestBody(equalToJson("{\"email\":\"firstName.lastName@gmail.com\",\"password\":\"foobar\",\"language\":\"fr-FR\"}")) + stubFor(post("/user/sign-in") + .withRequestBody(equalToJson("{\"login\":\"firstName.lastName@gmail.com\",\"password\":\"foobar\",\"language\":\"fr-FR\"}")) .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); MpgClient.build(getConfig(), "http://localhost:" + server.port()); Assert.assertTrue(true); } @Test - public void testMockCoach() throws Exception { - stubFor(post("/user/signIn") + public void testMockCoachMobileApp() throws Exception { + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/league/KLGXSSUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20180926.json"))); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1/coach") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); - Coach coach = mpgClient.getCoach("KLGXSSUG"); + Coach coach = mpgClient.getCoach("MLEFEX6G"); Assert.assertNotNull(coach); Assert.assertNotNull(coach.getPlayers()); Assert.assertTrue(coach.getPlayers().size() > 10); @@ -66,21 +66,22 @@ public void testMockCoach() throws Exception { @Test public void testMockDashboard() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/user/dashboard") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.KLGXSSUG-status-4.json"))); + stubFor(get("/dashboard/leagues") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLEFEX6G-status-4.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); Dashboard dashboard = mpgClient.getDashboard(); Assert.assertNotNull(dashboard); Assert.assertNotNull(dashboard.getLeagues()); - Assert.assertEquals("KLGXSSUG", dashboard.getLeagues().get(0).getId()); - Assert.assertEquals("Rock on the grass", dashboard.getLeagues().get(0).getName()); + Assert.assertEquals("MLEFEX6G", dashboard.getLeagues().get(0).getId()); + Assert.assertEquals("mpg_division_MLEFEX6G_3_1", dashboard.getLeagues().get(0).getDivisionId()); + Assert.assertEquals("Ligue 2 Fous", dashboard.getLeagues().get(0).getName()); } @Test public void testMockTransferBuy() throws Exception { - stubFor(post("/user/signIn") + stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); stubFor(get("/league/KX24XMUG/transfer/buy") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.KX24XMUG.20190202.json"))); diff --git a/src/test/resources/__files/README.md b/src/test/resources/__files/README.md index 66bcd4b..bf7ffaa 100644 --- a/src/test/resources/__files/README.md +++ b/src/test/resources/__files/README.md @@ -8,16 +8,16 @@ See [Bug Report](../../../../.github/ISSUE_TEMPLATE/bug_report.md) for details. The `XXX` should be replaced by a use case scenario (like data, some league, ...). -### Mpg +### Mpg Mobile App | **File** | **URL** | **Description** | | --- | --- | --- | -| `mpg.coach.XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/coach | MPG league **coach**, `GET` requests | -| `mpg.coach.XXX-Request-XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/coach | MPG league **coach**, `POST` requests | -| `mpg.dashboard.XXX.json` | https://api.monpetitgazon.com/user/dashboard | MPG **dashboard** | -| `mpg.mercato.XXX.json` | https://api.monpetitgazon.com | MPG league **mercato** | -| `mpg.transfer.buy.XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/transfer/buy | MPG league **transfer** | -| `mpg.user-signIn.XXX.json` | https://api.monpetitgazon.com/user/signIn | **Login** | +| `mpg.coach.XXX.json` | https://api.mpg.football/TODO | MPG league **coach**, `GET` requests | +| `mpg.coach.XXX-Request-XXX.json` | https://api.mpg.football/match-team-formation/[matchTeamFormation.id] | MPG league **coach**, `PUT` requests | +| `mpg.dashboard.XXX.json` | https://api.mpg.football/dashboard/leagues | MPG **dashboard** | +| `mpg.mercato.XXX.json` | https://api.mpg.football/TODO | MPG league **mercato** | +| `mpg.transfer.buy.XXX.json` | https://api.mpg.football/division/[divisionId]/available-players | MPG league **transfer** | +| `mpg.user-signIn.XXX.json` | https://api.mpg.football/user/sign-in | **Login** | ### Players statistics @@ -40,7 +40,7 @@ The `XXX` should be replaced by a use case scenario (like data, some league, ... | **File** | **URL** | **Description** | | --- | --- | --- | -| `maligue2.joueurs-blesses-et-suspendus.XXX.html` | https://maligue2.fr/2019/08/05/joueurs-blesses-et-suspendus/ | Injury / Suspended players for **Ligue 2 (France)** | +| `maligue2.joueurs-blesses-et-suspendus.XXX.html` | https://maligue2.fr/2020/08/20/joueurs-blesses-et-suspendus/ | Injury / Suspended players for **Ligue 2 (France)** | | `sportsgambler.liga.XXX.html` | https://www.sportsgambler.com/injuries/football/spain-la-liga/ | Injury / Suspended players for **Liga (Spain)** | | `sportsgambler.ligue-1.XXX.html` | https://www.sportsgambler.com/injuries/football/france-ligue-1/ | Injury / Suspended players for **Ligue 1 (France)** | | `sportsgambler.premier-league.XXX.html` | https://www.sportsgambler.com/injuries/football/england-premier-league/ | Injury / Suspended players for **Premiere League (England)** | @@ -49,4 +49,15 @@ The `XXX` should be replaced by a use case scenario (like data, some league, ... | `equipeactu.ligue-1.XXX.html` | https://www.equipeactu.fr/blessures-et-suspensions/fodbold/france/ligue-1 | **Deprecated since October 20, 2020** ([#169](https://github.com/axel3rd/mpg-coach-bot/issues/169)). Injury / Suspended players for **Ligue 1 (France)** | | `equipeactu.premier-league.XXX.html` | https://www.equipeactu.fr/blessures-et-suspensions/fodbold/angleterre/premier-league | **Deprecated since October 20, 2020** ([#169](https://github.com/axel3rd/mpg-coach-bot/issues/169)). Injury / Suspended players for **Premiere League (England)** | | `equipeactu.serie-a.XXX.html` | https://www.equipeactu.fr/blessures-et-suspensions/fodbold/italie/serie-a | **Deprecated since October 20, 2020** ([#169](https://github.com/axel3rd/mpg-coach-bot/issues/169)). Injury / Suspended players for **Seria A (Italia)** | -| `equipeactu.ligue-2.XXX.html` | | **Not used**, see below and [#99](https://github.com/axel3rd/mpg-coach-bot/issues/99), EquipeActu Website doesn't contain Ligue 2 (France) | \ No newline at end of file +| `equipeactu.ligue-2.XXX.html` | | **Not used**, see below and [#99](https://github.com/axel3rd/mpg-coach-bot/issues/99), EquipeActu Website doesn't contain Ligue 2 (France) | + +### Mpg WebSite (deprecated since 19 July 2021) + +| **File** | **URL** | **Description** | +| --- | --- | --- | +| `mpg.coach.XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/coach | MPG league **coach**, `GET` requests | +| `mpg.coach.XXX-Request-XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/coach | MPG league **coach**, `POST` requests | +| `mpg.dashboard.XXX.json` | https://api.monpetitgazon.com/user/dashboard | MPG **dashboard** | +| `mpg.mercato.XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/mercato | MPG league **mercato** | +| `mpg.transfer.buy.XXX.json` | https://api.monpetitgazon.com/league/[leagueId]/transfer/buy | MPG league **transfer** | +| `mpg.user-signIn.XXX.json` | https://api.monpetitgazon.com/user/signIn | **Login** | \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.20180926.json b/src/test/resources/__files/mpg.coach.20180926.json deleted file mode 100644 index 79d8b88..0000000 --- a/src/test/resources/__files/mpg.coach.20180926.json +++ /dev/null @@ -1,624 +0,0 @@ -{ - "data": { - "tds": { - "update": "2018-09-25T13:14:00.696Z", - "player_201392": { - "injured": 1 - }, - "player_202857": { - "injured": 1 - }, - "player_199663": { - "injured": 1 - }, - "player_67272": { - "pending": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_161472": { - "injured": 1 - }, - "player_189542": { - "injured": 1 - }, - "player_41795": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_457242": { - "injured": 1 - }, - "player_60582": { - "injured": 1 - }, - "player_250510": { - }, - "player_15780": { - "injured": 1 - }, - "player_173085": { - "injured": 1 - }, - "player_178492": { - "pending": 1 - }, - "player_167054": { - }, - "player_161039": { - "pending": 1 - }, - "player_447389": { - "injured": 1 - }, - "player_44199": { - "pending": 1 - }, - "player_116627": { - "pending": 1 - }, - "player_192785": { - "pending": 1 - }, - "player_54413": { - "injured": 1 - }, - "player_54771": { - }, - "player_111291": { - "injured": 1 - }, - "player_141109": { - "injured": 1 - }, - "player_435731": { - }, - "player_197022": { - "injured": 1 - }, - "player_433771": { - "injured": 1 - }, - "player_457230": { - "pending": 1 - }, - "player_51850": { - "injured": 1 - }, - "player_184449": { - "injured": 1 - }, - "player_40833": { - "pending": 1 - }, - "player_228361": { - "injured": 1 - }, - "player_154770": { - "injured": 1 - }, - "player_168539": { - "pending": 1 - }, - "player_45076": { - "injured": 1 - }, - "player_89068": { - "injured": 1 - }, - "player_93498": { - "injured": 1 - }, - "player_37776": { - }, - "player_423870": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_102732": { - "injured": 1 - }, - "player_209335": { - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - "injured": 1 - }, - "player_102743": { - "injured": 1 - }, - "player_55711": { - }, - "player_220074": { - "injured": 1 - }, - "player_50996": { - "injured": 1 - }, - "player_216065": { - "pending": 1 - }, - "player_39294": { - "injured": 1 - }, - "player_109653": { - "injured": 1 - }, - "player_50442": { - "injured": 1 - }, - "player_44413": { - }, - "player_116152": { - "injured": 1 - }, - "player_451005": { - "injured": 1 - }, - "player_107685": { - "pending": 1 - }, - "player_85548": { - }, - "player_195982": { - "injured": 1 - }, - "player_242894": { - "injured": 1 - }, - "player_115851": { - "injured": 1 - }, - "player_80711": { - "injured": 1 - }, - "player_143685": { - "suspended": 1 - }, - "player_102744": { - "suspended": 1 - }, - "player_102636": { - "suspended": 1 - }, - "player_220160": { - "suspended": 1 - }, - "player_42493": { - "injured": 1 - }, - "player_60165": { - "suspended": 1 - }, - "player_27334": { - "injured": 1 - }, - "player_165659": { - "suspended": 1 - }, - "player_42518": { - "injured": 1 - }, - "player_218666": { - "injured": 1 - }, - "player_83758": { - "injured": 1 - }, - "player_440114": { - "injured": 1 - }, - "player_192292": { - "injured": 1 - }, - "player_159039": { - "injured": 1 - }, - "player_174272": { - "injured": 1 - }, - "player_58309": { - "injured": 1 - }, - "player_160985": { - }, - "player_208987": { - "injured": 1 - }, - "player_95527": { - "injured": 1 - }, - "player_176441": { - "injured": 1 - }, - "player_74299": { - "injured": 1 - }, - "player_461384": { - "injured": 1 - }, - "player_105706": { - "injured": 1 - }, - "player_194302": { - "injured": 1 - }, - "player_423955": { - "injured": 1 - }, - "player_242896": { - "injured": 1 - }, - "player_45136": { - "injured": 1 - }, - "player_112323": { - "injured": 1 - }, - "player_97443": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_228291": { - "pending": 1 - }, - "player_8747": { - "pending": 1 - }, - "player_61738": { - "injured": 1 - }, - "player_145212": { - "injured": 1 - }, - "player_173271": { - "suspended": 1 - }, - "player_42484": { - "injured": 1 - }, - "player_20468": { - "injured": 1 - }, - "player_149519": { - "injured": 1 - }, - "player_206255": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Reims" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Nantes" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Lille" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Saint Etienne" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Nîmes" - }, - "149": { - "name": "Paris", - "status": "away", - "against": "Nice" - }, - "150": { - "name": "Rennes", - "status": "home", - "against": "Toulouse" - }, - "152": { - "name": "Saint Etienne", - "status": "home", - "against": "Monaco" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Dijon" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Rennes" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Angers" - }, - "429": { - "name": "Lille", - "status": "home", - "against": "Marseille" - }, - "430": { - "name": "Nantes", - "status": "away", - "against": "Lyon" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Amiens" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Paris" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Bordeaux" - }, - "1430": { - "name": "Amiens", - "status": "away", - "against": "Caen" - }, - "2128": { - "name": "Angers", - "status": "home", - "against": "Guingamp" - }, - "2130": { - "name": "Dijon", - "status": "away", - "against": "Strasbourg" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Montpellier" - } - }, - "champid": 1, - "matchId": "mpg_match_KLGXSSUG_1_5_2", - "realday": 8, - "stadium": "Le Cul du Diable", - "dateMatch": 1538160300000, - "timetogame": 261749445, - "teamHome": { - "id": "mpg_team_KLGXSSUG$$mpg_user_953561", - "name": "Puissance Olympique Patate", - "abbr": "POP", - "coach": "Mansuy", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#ff2626" - } - } - }, - "teamAway": { - "id": "mpg_team_KLGXSSUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 5, - "zones": { - "z8": "#ff2626", - "z2": "#ffffff", - "z3": "#4054CC", - "z4": "#ff2626", - "z5": "#ffffff", - "z6": "#4054CC", - "z7": "#ffffff", - "z1": "#4054cc", - "z9": "#ff2626" - }, - "sponsor": 6 - } - }, - "players": [ - { - "firstname": "Benoit", - "lastname": "Costil", - "playerid": "player_42713", - "teamid": "140", - "position": 1 - }, - { - "firstname": "Antonio", - "lastname": "Barreca", - "playerid": "player_159039", - "teamid": "146", - "position": 2 - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2 - }, - { - "firstname": "Boubacar", - "lastname": "Kamara", - "playerid": "player_226944", - "teamid": "144", - "position": 2 - }, - { - "firstname": null, - "lastname": "Marquinhos", - "playerid": "player_116406", - "teamid": "149", - "position": 2 - }, - { - "firstname": "Thomas", - "lastname": "Meunier", - "playerid": "player_93605", - "teamid": "149", - "position": 2 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3 - }, - { - "firstname": "Romain", - "lastname": "Del Castillo", - "playerid": "player_219873", - "teamid": "150", - "position": 3 - }, - { - "firstname": "Dimitri", - "lastname": "Lienard", - "playerid": "player_228322", - "teamid": "153", - "position": 3 - }, - { - "firstname": null, - "lastname": "Lucas Evangelista", - "playerid": "player_163562", - "teamid": "430", - "position": 3 - }, - { - "firstname": null, - "lastname": "Luiz Gustavo", - "playerid": "player_47654", - "teamid": "144", - "position": 3 - }, - { - "firstname": "Christopher", - "lastname": "Nkunku", - "playerid": "player_213198", - "teamid": "149", - "position": 3 - }, - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3 - }, - { - "firstname": "Aaron", - "lastname": "Leya Iseka", - "playerid": "player_185727", - "teamid": "427", - "position": 4 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4 - }, - { - "firstname": "Juan Ferney", - "lastname": "Otero", - "playerid": "player_192785", - "teamid": "1430", - "position": 4 - }, - { - "firstname": "Nicolas", - "lastname": "Pepe", - "playerid": "player_195735", - "teamid": "429", - "position": 4 - }, - { - "firstname": "Emiliano", - "lastname": "Sala", - "playerid": "player_103124", - "teamid": "430", - "position": 4 - }, - { - "firstname": "Malik", - "lastname": "Tchokounte", - "playerid": "player_220943", - "teamid": "1028", - "position": 4 - }, - { - "firstname": "Damien", - "lastname": "Le Tallec", - "playerid": "player_52782", - "teamid": "147", - "position": 2 - }, - { - "firstname": "Yoan", - "lastname": "Cardinale", - "playerid": "player_115851", - "teamid": "1395", - "position": 1 - } - ], - "bonus": { - "1": 1, - "2": 0, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "composition": 343, - "playersOnPitch": { - "1": "player_42713", - "2": "player_93605", - "3": "player_116406", - "4": "player_183779", - "5": "player_95434", - "6": "player_231961", - "7": "player_163562", - "8": "player_47654", - "9": "player_195735", - "10": "player_61278", - "11": "player_103124" - }, - "tacticalsubstitutes": [ - ], - "nbPlayers": 8 - } -} diff --git a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json new file mode 100644 index 0000000..2a750d1 --- /dev/null +++ b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json @@ -0,0 +1,88 @@ +{ + "divisionMatch": { + "id": "mpg_division_match_MLEFEX6G_3_1_2_2_3_2", + "type": "mpg_division_match", + "divisionId": "mpg_division_MLEFEX6G_3_1", + "home": { + "teamId": "mpg_team_MLEFEX6G_3_1_3" + }, + "away": { + "teamId": "mpg_team_MLEFEX6G_3_1_2" + } + }, + "matchTeamFormation": { + "id": "mpg_match_team_formation_MLEFEX6G_3_1_2_2_2", + "type": "mpg_match_team_formation", + "composition": "343", + "playersOnPitch": { + "1": "mpg_championship_player_220359", + "2": "mpg_championship_player_209171", + "3": "mpg_championship_player_245485", + "4": "mpg_championship_player_235708", + "5": "mpg_championship_player_167454", + "6": "mpg_championship_player_92353", + "7": "mpg_championship_player_204405", + "8": "mpg_championship_player_177449", + "9": "mpg_championship_player_228313", + "10": "mpg_championship_player_511596", + "11": "mpg_championship_player_423064", + "12": "mpg_championship_player_512711", + "13": "mpg_championship_player_509285", + "14": "mpg_championship_player_454964", + "15": "mpg_championship_player_437503", + "16": "mpg_championship_player_173242", + "17": "mpg_championship_player_149035", + "18": "mpg_championship_player_102724" + }, + "tacticalSubs": [ + { + "rating": 4, + "starterId": "mpg_championship_player_511596", + "subId": "mpg_championship_player_149035" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_512711", + "starterId": "mpg_championship_player_209171" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_509285", + "starterId": "mpg_championship_player_245485" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_437503", + "starterId": "mpg_championship_player_167454" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_454964", + "starterId": "mpg_championship_player_235708" + } + ], + "selectedBonus": { + "name": "boostOnePlayer", + "playerId": "mpg_championship_player_92353" + }, + "captain": "mpg_championship_player_167454" + }, + "nextGameWeek": { + "gameWeekNumber": 3, + "startDate": "2021-08-07T13:00:00Z", + "endDate": "2021-08-11T17:00:00Z", + "startIn": 252464, + "matchesIds": [ + "mpg_championship_match_2216751", + "mpg_championship_match_2216748", + "mpg_championship_match_2216749", + "mpg_championship_match_2216752", + "mpg_championship_match_2216753", + "mpg_championship_match_2216754", + "mpg_championship_match_2216755", + "mpg_championship_match_2216756", + "mpg_championship_match_2216757", + "mpg_championship_match_2216750" + ] + } +} diff --git a/src/test/resources/__files/mpg.dashboard.KLGXSSUG-status-4.json b/src/test/resources/__files/mpg.dashboard.KLGXSSUG-status-4.json deleted file mode 100644 index 46a97dc..0000000 --- a/src/test/resources/__files/mpg.dashboard.KLGXSSUG-status-4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "data": { - "follow": [ - ], - "leagues": [ - { - "id": "KLGXSSUG", - "admin_mpg_user_id": "mpg_user_963519", - "current_mpg_user": "mpg_user_955966", - "name": "Rock on the grass", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "url": "assets/public/img/league/3.jpg" - } - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.MLEFEX6G-status-4.json b/src/test/resources/__files/mpg.dashboard.MLEFEX6G-status-4.json new file mode 100644 index 0000000..7c88bd9 --- /dev/null +++ b/src/test/resources/__files/mpg.dashboard.MLEFEX6G-status-4.json @@ -0,0 +1,224 @@ +{ + "leaguesDivisionsItems": [ + { + "leagueId": "mpg_league_MLEFEX6G", + "name": "Ligue 2 Fous", + "adminId": "user_953561", + "status": 4, + "season": 3, + "mode": 2, + "createdAt": "2020-08-23T16:35:09Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 4, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/b7b4327b-7cfb-4df3-becc-2b16c9d5381b.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "divisionNumber": 1, + "nextRealGameWeekDate": "2021-08-07T13:00:00Z", + "currentTeamRanking": 9, + "currentTeamVariation": -1, + "divisionStatus": 4, + "divisionId": "mpg_division_MLEFEX6G_3_1", + "divisionTotalUsers": 10, + "liveState": { + "currentGameWeek": 2, + "firstRealGameWeek": 2, + "formationsStatuses": { + "mpg_team_MLEFEX6G_3_1_0": 1, + "mpg_team_MLEFEX6G_3_1_1": 1, + "mpg_team_MLEFEX6G_3_1_2": 2, + "mpg_team_MLEFEX6G_3_1_3": 1, + "mpg_team_MLEFEX6G_3_1_4": 1, + "mpg_team_MLEFEX6G_3_1_5": 2, + "mpg_team_MLEFEX6G_3_1_6": 2, + "mpg_team_MLEFEX6G_3_1_7": 2, + "mpg_team_MLEFEX6G_3_1_8": 1, + "mpg_team_MLEFEX6G_3_1_9": 1 + }, + "liveAt": "2021-07-30T06:34:57Z", + "totalGameWeeks": 18, + "standings": { + "mpg_team_MLEFEX6G_3_1_5": { + "rank": 1, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_7": { + "rank": 2, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_8": { + "rank": 3, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_1": { + "rank": 4, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_4": { + "rank": 5, + "variation": 0 + }, + "mpg_team_MLEFEX6G_3_1_9": { + "rank": 6, + "variation": 0 + }, + "mpg_team_MLEFEX6G_3_1_6": { + "rank": 7, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_0": { + "rank": 8, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_2": { + "rank": 9, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_3": { + "rank": 10, + "variation": -1 + } + } + }, + "currentFormationStatus": 2 + }, + { + "leagueId": "mpg_league_MN7VSYBM", + "name": "Giro Far Breton", + "adminId": "user_600737", + "status": 5, + "season": 2, + "mode": 2, + "createdAt": "2020-09-14T11:12:30Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 5, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/bb817a04-6bca-403d-86f8-87077cb95112.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "finishedState": { + "seasonEndDate": "2021-07-19T06:24:57Z", + "winner": { + "firstName": "Celine", + "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1598369796008.png", + "team": { + "abbreviation": "FZA", + "gear": { + "home": { + "jerseyId": "mpg_jersey_0_1598369796008" + } + }, + "id": "mpg_team_MN7VSYBM_2_1_0", + "name": "Forza" + }, + "userId": "user_600737", + "username": "Celine#KBN2" + } + }, + "divisionNumber": 1, + "currentTeamRanking": 6, + "currentTeamVariation": -1, + "divisionStatus": 5, + "divisionId": "mpg_division_MN7VSYBM_2_1", + "divisionTotalUsers": 10 + }, + { + "leagueId": "mpg_league_MLMHBPCB", + "name": "Invariant Brits", + "adminId": "user_35635", + "status": 5, + "season": 2, + "mode": 2, + "createdAt": "2020-08-26T08:50:30Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 2, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/906387dc-2dbe-464d-a21e-a16f0cff5001.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "finishedState": { + "seasonEndDate": "2021-07-19T06:24:43Z", + "winner": { + "firstName": "Bertrand", + "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0.png", + "team": { + "abbreviation": "🔴⚪", + "gear": { + "home": { + "jerseyId": "mpg_jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0" + } + }, + "id": "mpg_team_MLMHBPCB_2_1_0", + "name": "North London" + }, + "userId": "user_35635", + "username": "Bertrand#23TL" + } + }, + "divisionNumber": 1, + "currentTeamRanking": 3, + "currentTeamVariation": 0, + "divisionStatus": 5, + "divisionId": "mpg_division_MLMHBPCB_2_1", + "divisionTotalUsers": 10 + }, + { + "leagueId": "mpg_league_MLAX7HMK", + "name": "Du Tyran 🐐", + "adminId": "user_953561", + "status": 5, + "season": 2, + "mode": 2, + "createdAt": "2020-08-22T08:22:40Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 1, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/162a6145-03c5-4895-8456-6855a9bd4c15.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "finishedState": { + "seasonEndDate": "2021-07-19T06:24:48Z", + "winner": { + "firstName": "Maxime", + "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1621516312011.png", + "team": { + "abbreviation": "RFC", + "gear": { + "home": { + "jerseyId": "mpg_jersey_0_1621516312011" + } + }, + "id": "mpg_team_MLAX7HMK_2_1_7", + "name": "ROAZHON FC" + }, + "userId": "user_2237823", + "username": "Maxime#35ACZ" + } + }, + "divisionNumber": 1, + "currentTeamRanking": 6, + "currentTeamVariation": -1, + "divisionStatus": 5, + "divisionId": "mpg_division_MLAX7HMK_2_1", + "divisionTotalUsers": 10 + } + ], + "defaultOrder": true +} diff --git a/src/test/resources/__files/mpg.user-signIn.fake.json b/src/test/resources/__files/mpg.user-signIn.fake.json index 9760d96..886627a 100644 --- a/src/test/resources/__files/mpg.user-signIn.fake.json +++ b/src/test/resources/__files/mpg.user-signIn.fake.json @@ -1 +1 @@ -{"token":"token.fake","userId":"mpg_user_xxxxx","language":"fr-FR","action":"signIn","onboarded":true,"oid":"xxxx","createdAt":"2018-06-07T17:51:58Z"} \ No newline at end of file +{ "token": "token.fake", "userId": "user_xxxx", "language": "fr-FR" } \ No newline at end of file From d8e333347c8d78ccaed03e5da1e2f282667c2177 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 4 Aug 2021 23:43:55 +0200 Subject: [PATCH 05/13] MpgClientMock implementations --- .github/ISSUE_TEMPLATE/bug_report.md | 14 +- src/main/java/org/blondin/mpg/Main.java | 14 +- .../java/org/blondin/mpg/root/MpgClient.java | 71 +- .../blondin/mpg/root/model/BonusSelected.java | 37 +- .../java/org/blondin/mpg/root/model/Club.java | 15 + .../org/blondin/mpg/root/model/Coach.java | 58 +- .../org/blondin/mpg/root/model/Division.java | 22 + .../org/blondin/mpg/root/model/League.java | 16 +- .../mpg/root/model/MatchTeamFormation.java | 13 + .../org/blondin/mpg/root/model/Player.java | 21 +- .../blondin/mpg/root/model/PoolPlayers.java | 20 + .../java/org/blondin/mpg/root/model/Team.java | 16 +- .../blondin/mpg/root/model/TransferBuy.java | 9 - .../blondin/mpg/root/model/UserSignIn.java | 6 + .../org/blondin/mpg/root/MpgClientTest.java | 110 +- src/test/resources/__files/README.md | 9 +- ...4-Complete-BoostInjuredPlayer-Request.json | 56 - ....20181114-Complete-BoostInjuredPlayer.json | 666 - ...20181114-Complete-BoostPlayer-Request.json | 56 - ...g.coach.20181114-Complete-BoostPlayer.json | 666 - ...ch.20181114-Complete-NoOption-Request.json | 54 - .../mpg.coach.20181114-Complete-NoOption.json | 664 - ...181114-noPlayers-MiroirOption-Request.json | 55 - ...coach.20181114-noPlayers-MiroirOption.json | 640 - ...4-noSubstitutes-RotaldoOption-Request.json | 55 - ....20181114-noSubstitutes-RotaldoOption.json | 640 - .../resources/__files/mpg.coach.20181212.json | 1 - .../__files/mpg.coach.20190123-Request.json | 29 - .../resources/__files/mpg.coach.20190123.json | 582 - .../resources/__files/mpg.coach.20190202.json | 981 - .../__files/mpg.coach.20190211-Request.json | 29 - .../resources/__files/mpg.coach.20190211.json | 535 - .../resources/__files/mpg.coach.20190217.json | 664 - .../mpg.coach.KJVB6L7C.20190807-Request.json | 29 - .../__files/mpg.coach.KJVB6L7C.20190807.json | 525 - .../__files/mpg.coach.LH9HKBTD.20190724.json | 485 - .../__files/mpg.coach.LH9HKBTD.20190806.json | 1058 - ...mpg.coach.LH9HKBTD.20190818-Request-1.json | 29 - ...mpg.coach.LH9HKBTD.20190818-Request-2.json | 29 - .../__files/mpg.coach.LH9HKBTD.20190818.json | 1373 - .../mpg.coach.LH9HKBTD.20191212-Request.json | 55 - .../__files/mpg.coach.LH9HKBTD.20191212.json | 2267 -- ...ach.LH9HKBTD.20191212.redbull-Request.json | 56 - .../mpg.coach.LH9HKBTD.20191212.redbull.json | 2267 -- .../mpg.coach.LJT3FXDF.20190818-Request.json | 29 - .../__files/mpg.coach.LJT3FXDF.20190818.json | 686 - .../mpg.coach.LJT3FXDF.20191212-Request.json | 55 - .../__files/mpg.coach.LJT3FXDF.20191212.json | 1736 - .../mpg.coach.LJT3FXDF.20191220-Request.json | 55 - .../__files/mpg.coach.LJT3FXDF.20191220.json | 1849 - .../mpg.coach.LJV92C9Y.20190818-Request.json | 29 - .../__files/mpg.coach.LJV92C9Y.20190818.json | 735 - .../mpg.coach.LJV92C9Y.20191212-Request.json | 55 - .../__files/mpg.coach.LJV92C9Y.20191212.json | 1975 - .../__files/mpg.coach.MLAX7HMK.20201006.json | 1 - .../__files/mpg.coach.MLAX7HMK.20201021.json | 1 - .../__files/mpg.coach.MLEFEX6G.20201006.json | 1 - .../mpg.coach.MLEFEX6G.20210804-Request.json | 53 + .../mpg.coach.MLEFEX6G.20210804.empty.json | 58 + .../__files/mpg.coach.MLEFEX6G.20210804.json | 88 - .../__files/mpg.coach.MLMHBPCB.20201021.json | 1 - .../__files/mpg.coach.MN7VSYBM.20201021.json | 1 - .../__files/mpg.coach.MN7VSYBM.20210406.json | 1 - .../__files/mpg.coach.noMoreGames.json | 1 - .../__files/mpg.coach.post.success.json | 1 - .../mpg.dashboard.KJVB6L7C-status-4.json | 20 - ...d.KX24XMUG-status-1-KLGXSSUG-status-5.json | 30 - ...KX24XMUG-status-3+1-KLGXSSUG-status-5.json | 30 - ...d.KX24XMUG-status-3-KLGXSSUG-status-5.json | 30 - .../mpg.dashboard.KX24XMUG-status-4.json | 32 - ....dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json | 44 - ...oard.LH9HKBTD-status-1-championship-4.json | 19 - ...oard.LH9HKBTD-status-4-championship-4.json | 20 - .../mpg.dashboard.LJT3FXDF-status-1.json | 19 - ....dashboard.LJV92C9Y-LH9HKBTD-status-6.json | 44 - ....dashboard.LJV92C9Y.LJT3FXDF-status-4.json | 32 - .../__files/mpg.dashboard.LM65L48T.json | 20 - ...d.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json | 64 - .../mpg.dashboard.MLAX7HMK-MLEFEX6G.json | 32 - .../mpg.dashboard.XXXXXXXX-status-1.json | 19 - .../mpg.dashboard.multiple-divisions.json | 84 - ...ard.qyOG7BuuZcv-status-3-teamStatus-2.json | 20 - .../mpg.dashboard.qyOG7BuuZcv-status-3.json | 19 - .../__files/mpg.division.MLEFEX6G.json | 140 + .../mpg.mercato.KX24XMUG.20181220.json | 6274 ---- .../__files/mpg.mercato.ligue-1.20181220.json | 6260 ---- .../__files/mpg.mercato.ligue-2.20190718.json | 5813 --- .../mpg.mercato.premier-league.20190805.json | 7310 ---- .../mpg.mercato.qyOG7BuuZcv.20190807.json | 1 - .../__files/mpg.mercato.serie-a.20190805.json | 8091 ----- .../__files/mpg.poolPlayers.2.2021.json | 28506 +++++++++++++++ .../__files/mpg.team.MLEFEX6G.20210804.json | 148 + .../mpg.trading.buy.MLEFEX6G.20210804.json | 29800 ++++++++++++++++ .../mpg.transfer.buy.KX24XMUG.20190202.json | 4460 --- .../mpg.transfer.buy.KX24XMUG.20190217.json | 4337 --- .../mpg.transfer.buy.LJT3FXDF.20200217.json | 1 - .../mpg.transfer.buy.MN7VSYBM.20210406.json | 1 - .../mpg.transfer.buy.error.normal.mode.json | 5 - .../__files/mpg.user-signIn.fake.json | 2 +- 99 files changed, 59040 insertions(+), 65095 deletions(-) create mode 100644 src/main/java/org/blondin/mpg/root/model/Club.java create mode 100644 src/main/java/org/blondin/mpg/root/model/Division.java create mode 100644 src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java create mode 100644 src/main/java/org/blondin/mpg/root/model/PoolPlayers.java delete mode 100644 src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-Complete-NoOption-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-Complete-NoOption.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption.json delete mode 100644 src/test/resources/__files/mpg.coach.20181212.json delete mode 100644 src/test/resources/__files/mpg.coach.20190123-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20190123.json delete mode 100644 src/test/resources/__files/mpg.coach.20190202.json delete mode 100644 src/test/resources/__files/mpg.coach.20190211-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.20190211.json delete mode 100644 src/test/resources/__files/mpg.coach.20190217.json delete mode 100644 src/test/resources/__files/mpg.coach.KJVB6L7C.20190807-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.KJVB6L7C.20190807.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20190724.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20190806.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-1.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-2.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20190818.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20191212-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull.json delete mode 100644 src/test/resources/__files/mpg.coach.LJT3FXDF.20190818-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LJT3FXDF.20190818.json delete mode 100644 src/test/resources/__files/mpg.coach.LJT3FXDF.20191212-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LJT3FXDF.20191212.json delete mode 100644 src/test/resources/__files/mpg.coach.LJT3FXDF.20191220-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LJT3FXDF.20191220.json delete mode 100644 src/test/resources/__files/mpg.coach.LJV92C9Y.20190818-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LJV92C9Y.20190818.json delete mode 100644 src/test/resources/__files/mpg.coach.LJV92C9Y.20191212-Request.json delete mode 100644 src/test/resources/__files/mpg.coach.LJV92C9Y.20191212.json delete mode 100644 src/test/resources/__files/mpg.coach.MLAX7HMK.20201006.json delete mode 100644 src/test/resources/__files/mpg.coach.MLAX7HMK.20201021.json delete mode 100644 src/test/resources/__files/mpg.coach.MLEFEX6G.20201006.json create mode 100644 src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json create mode 100644 src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.empty.json delete mode 100644 src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json delete mode 100644 src/test/resources/__files/mpg.coach.MLMHBPCB.20201021.json delete mode 100644 src/test/resources/__files/mpg.coach.MN7VSYBM.20201021.json delete mode 100644 src/test/resources/__files/mpg.coach.MN7VSYBM.20210406.json delete mode 100644 src/test/resources/__files/mpg.coach.noMoreGames.json delete mode 100644 src/test/resources/__files/mpg.coach.post.success.json delete mode 100644 src/test/resources/__files/mpg.dashboard.KJVB6L7C-status-4.json delete mode 100644 src/test/resources/__files/mpg.dashboard.KX24XMUG-status-1-KLGXSSUG-status-5.json delete mode 100644 src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3+1-KLGXSSUG-status-5.json delete mode 100644 src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3-KLGXSSUG-status-5.json delete mode 100644 src/test/resources/__files/mpg.dashboard.KX24XMUG-status-4.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-1-championship-4.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-4-championship-4.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LJT3FXDF-status-1.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LJV92C9Y-LH9HKBTD-status-6.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LJV92C9Y.LJT3FXDF-status-4.json delete mode 100644 src/test/resources/__files/mpg.dashboard.LM65L48T.json delete mode 100644 src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json delete mode 100644 src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G.json delete mode 100644 src/test/resources/__files/mpg.dashboard.XXXXXXXX-status-1.json delete mode 100644 src/test/resources/__files/mpg.dashboard.multiple-divisions.json delete mode 100644 src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3-teamStatus-2.json delete mode 100644 src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3.json create mode 100644 src/test/resources/__files/mpg.division.MLEFEX6G.json delete mode 100644 src/test/resources/__files/mpg.mercato.KX24XMUG.20181220.json delete mode 100644 src/test/resources/__files/mpg.mercato.ligue-1.20181220.json delete mode 100644 src/test/resources/__files/mpg.mercato.ligue-2.20190718.json delete mode 100644 src/test/resources/__files/mpg.mercato.premier-league.20190805.json delete mode 100644 src/test/resources/__files/mpg.mercato.qyOG7BuuZcv.20190807.json delete mode 100644 src/test/resources/__files/mpg.mercato.serie-a.20190805.json create mode 100644 src/test/resources/__files/mpg.poolPlayers.2.2021.json create mode 100644 src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json create mode 100644 src/test/resources/__files/mpg.trading.buy.MLEFEX6G.20210804.json delete mode 100644 src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190202.json delete mode 100644 src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190217.json delete mode 100644 src/test/resources/__files/mpg.transfer.buy.LJT3FXDF.20200217.json delete mode 100644 src/test/resources/__files/mpg.transfer.buy.MN7VSYBM.20210406.json delete mode 100644 src/test/resources/__files/mpg.transfer.buy.error.normal.mode.json diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d0cba17..54262fe 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -17,10 +17,16 @@ Depending your championship, join data files set in attachment. 1. The MPG Mobile App JSon *Response* of these *Request* on https://api.mpg.football (use the browser network monitor - F12, see wiki [Get MPG data for opening a bug](https://github.com/axel3rd/mpg-coach-bot/wiki/Get-MPG-data-for-opening-a-bug) for more details): -- From home : `GET /dashboard/leagues` -- From coach: `GET /division/['divisionId' from previous, start with 'mpg_division_']/coach` -- From transfer : `GET /division/['divisionId' from previous, start with 'mpg_division_']/available-players` -- From mercato : `GET TODO` +| Feature | URL | Reason | +| --- | --- | --- | +| login | `GET /user/sign-in` | Retrieve **userId** | +| dashboard | `GET /dashboard/leagues` | Retrieve **divisionId** (~ `mpg_division_MLEXXXXX_3_1`) | +| division | `GET /division/mpg_division_MLEXXXXX_3_1` | Retrieve `mpg_team_MLEXXXXX_3_1_2` team for user league | +| team | `GET /team/mpg_team_MLEXXXXX_3_1_2` | Retrieve Team and Bonus for team | +| poolPlayer | `GET /championship-players-pool/X` | Retrieve league players details (With `X`: 1=Ligue-1 / 2=Premier-League / 3=Liga / 4=Ligue-2 / 5=Serie-A) | +| coach | `GET /division/mpg_division_MLEXXXXX_3_1/coach` | Retrieve formation | +| transfer | `GET /division/mpg_division_MLEXXXXX_3_1/available-players` | Retrieve available players | +| mercato | `GET TODO` | Retrieves players details for incoming mercato | 2. The [Players statistics](https://www.mpgstats.fr/) data, one JSon from: diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 1c72e13..65a3739 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -21,6 +21,7 @@ import org.blondin.mpg.root.model.Bonus; import org.blondin.mpg.root.model.BonusSelected; import org.blondin.mpg.root.model.ChampionshipType; +import org.blondin.mpg.root.model.Club; import org.blondin.mpg.root.model.Coach; import org.blondin.mpg.root.model.CoachRequest; import org.blondin.mpg.root.model.League; @@ -30,7 +31,6 @@ import org.blondin.mpg.root.model.PlayerStatus; import org.blondin.mpg.root.model.Position; import org.blondin.mpg.root.model.TacticalSubstitute; -import org.blondin.mpg.root.model.Team; import org.blondin.mpg.root.model.TransferBuy; import org.blondin.mpg.stats.ChampionshipStatsType; import org.blondin.mpg.stats.MpgStatsClient; @@ -72,10 +72,12 @@ public static void main(String[] args) { // NOSONAR : args used as file option, static void process(ApiClients apiClients, Config config) { for (League leagueOptionalMaster : apiClients.getMpg().getDashboard().getLeagues()) { League league = leagueOptionalMaster; - if (league.isMasterLeague()) { + + // TODO: Waiting feedback about Multiple division leagues + if (false && league.isMasterLeague()) { league = league.getSubLeague(); } - if (LeagueStatus.TERMINATED.equals(league.getLeagueStatus()) + if (LeagueStatus.TERMINATED.equals(league.getStatus()) || (!config.getLeaguesInclude().isEmpty() && !config.getLeaguesInclude().contains(league.getId())) || (!config.getLeaguesExclude().isEmpty() && config.getLeaguesExclude().contains(league.getId()))) { // Don't display any logs @@ -91,7 +93,7 @@ static void processLeague(League league, ApiClients apiClients, Config config) { LOG.info("\nSorry, Champions League is currently not supported.\n"); return; } - switch (league.getLeagueStatus()) { + switch (league.getStatus()) { case TERMINATED: // Already managed previously case KEEP: @@ -221,9 +223,9 @@ static void processGames(League league, ApiClients apiClients, Config config) { /** * Players retrieved from "Coach" has only a teamId. Club (Team name) should be completed manually. */ - static void completePlayersClubs(List players, Map teams) { + static void completePlayersClubs(List players, Map teams) { for (Player player : players) { - Team team = teams.get(player.getTeamId()); + Club team = teams.get(player.getTeamId()); if (team == null) { throw new UnsupportedOperationException( String.format("Team can not be found for player: %s (teamId: %s)", player.getName(), player.getTeamId())); diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index a28f0ed..288c060 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -1,29 +1,29 @@ package org.blondin.mpg.root; +import java.util.EnumMap; import java.util.HashMap; import java.util.Map; -import javax.ws.rs.ProcessingException; import javax.ws.rs.core.MultivaluedHashMap; import javax.ws.rs.core.MultivaluedMap; import org.apache.commons.lang3.StringUtils; import org.blondin.mpg.AbstractClient; import org.blondin.mpg.config.Config; -import org.blondin.mpg.root.exception.NoMoreGamesException; import org.blondin.mpg.root.model.ChampionshipType; import org.blondin.mpg.root.model.Coach; import org.blondin.mpg.root.model.CoachRequest; import org.blondin.mpg.root.model.Dashboard; +import org.blondin.mpg.root.model.Division; import org.blondin.mpg.root.model.League; import org.blondin.mpg.root.model.Mercato; import org.blondin.mpg.root.model.MercatoChampionship; import org.blondin.mpg.root.model.MercatoLeague; +import org.blondin.mpg.root.model.PoolPlayers; +import org.blondin.mpg.root.model.Team; import org.blondin.mpg.root.model.TransferBuy; import org.blondin.mpg.root.model.UserSignIn; -import com.fasterxml.jackson.databind.JsonMappingException; - /** * Client for https://www.mpgstats.fr/ */ @@ -33,6 +33,10 @@ public class MpgClient extends AbstractClient { private final MultivaluedMap headers = new MultivaluedHashMap<>(); + private EnumMap cache = new EnumMap<>(ChampionshipType.class); + + private String userId; + private MpgClient(Config config) { super(config); } @@ -48,27 +52,38 @@ public static MpgClient build(Config config, String urlOverride) { return client; } - public Coach getCoach(String league) { - final String path = "division/" + league + "/coach"; - try { - return get(path, headers, Coach.class); - } catch (ProcessingException e) { - if (e.getCause() instanceof JsonMappingException - && e.getCause().getMessage().contains("Root name 'success' does not match expected ('data')")) { - String response = get(path, headers, String.class); - if (response.contains("noMoreGames")) { - throw new NoMoreGamesException(); - } - throw new UnsupportedOperationException(String.format("Coach response not supported: %s", response)); - } - throw e; + public String getUserId() { + if (StringUtils.isBlank(userId)) { + throw new UnsupportedOperationException("Please sigin first"); } + return userId; } public Dashboard getDashboard() { return get("dashboard/leagues", headers, Dashboard.class); } + public Division getDivision(String leagueDivisionId) { + if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { + throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); + } + return get("division/" + leagueDivisionId + "", headers, Division.class); + } + + public Team getTeam(String leagueTeamId) { + if (!StringUtils.startsWith(leagueTeamId, "mpg_team_")) { + throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_team_'", leagueTeamId)); + } + return get("/team/" + leagueTeamId, headers, Team.class); + } + + public Coach getCoach(String leagueDivisionId) { + if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { + throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); + } + return get("division/" + leagueDivisionId + "/coach", headers, Coach.class); + } + public Mercato getMercato(ChampionshipType championship) { return get("mercato/" + championship.value(), headers, MercatoChampionship.class); } @@ -77,8 +92,19 @@ public Mercato getMercato(String league) { return get("todo-currently-not-found/" + league + "/mercato", headers, MercatoLeague.class); } - public TransferBuy getTransferBuy(String league) { - return get("division/" + league + "/available-players", headers, TransferBuy.class); + public TransferBuy getTransferBuy(String leagueDivisionId) { + if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { + throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); + } + return get("division/" + leagueDivisionId + "/available-players", headers, TransferBuy.class); + } + + public PoolPlayers getPoolPlayers(ChampionshipType championship) { + if (!cache.containsKey(championship)) { + PoolPlayers pool = get("championship-players-pool/" + championship.value(), headers, PoolPlayers.class); + cache.put(championship, pool); + } + return cache.get(championship); } private void signIn(String login, String password) { @@ -86,8 +112,9 @@ private void signIn(String login, String password) { entity.put("login", login); entity.put("password", password); entity.put("language", "fr-FR"); - String token = post("user/sign-in", entity, UserSignIn.class).getToken(); - headers.add("authorization", token); + UserSignIn usi = post("user/sign-in", entity, UserSignIn.class); + this.userId = usi.getUserId(); + headers.add("authorization", usi.getToken()); // headers.add("client-version", MPG_CLIENT_VERSION); } diff --git a/src/main/java/org/blondin/mpg/root/model/BonusSelected.java b/src/main/java/org/blondin/mpg/root/model/BonusSelected.java index 3457781..844bbe2 100644 --- a/src/main/java/org/blondin/mpg/root/model/BonusSelected.java +++ b/src/main/java/org/blondin/mpg/root/model/BonusSelected.java @@ -2,34 +2,41 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; -import com.fasterxml.jackson.annotation.JsonProperty; +/** + * On mobile App:
+ * - Wallet: removeGoal
+ * - UberEats: boostOnePlayer ('playerId' required)
+ * - Suarez: nerfGoalkeeper
+ * - Pat: blockTacticalSubs
+ * - Zahia: boostAllPlayers
+ * - Mirror: mirror
+ * - Chapron: removeRandomPlayer
+ * - + */ public class BonusSelected { - @JsonProperty("type") + // TODO: Order bonus by priority !! + @JsonInclude(Include.NON_NULL) - private Integer type; + private String name; - @JsonProperty("playerid") @JsonInclude(Include.NON_NULL) private String playerId; - public Integer getType() { - if (type != null && type == 0) { - return null; - } - return type; - } - public String getPlayerId() { return playerId; } - public void setType(int type) { - this.type = type; - } - public void setPlayerId(String playerId) { this.playerId = playerId; } + + public Integer getType() { + throw new UnsupportedOperationException("Now it is name"); + } + + public void setType(int t) { + throw new UnsupportedOperationException("Now it is name"); + } } diff --git a/src/main/java/org/blondin/mpg/root/model/Club.java b/src/main/java/org/blondin/mpg/root/model/Club.java new file mode 100644 index 0000000..f01294c --- /dev/null +++ b/src/main/java/org/blondin/mpg/root/model/Club.java @@ -0,0 +1,15 @@ +package org.blondin.mpg.root.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class Club { + + @JsonProperty("name") + private String name; + + public String getName() { + return this.name; + } +} diff --git a/src/main/java/org/blondin/mpg/root/model/Coach.java b/src/main/java/org/blondin/mpg/root/model/Coach.java index ac5fbdb..9fc1ed9 100644 --- a/src/main/java/org/blondin/mpg/root/model/Coach.java +++ b/src/main/java/org/blondin/mpg/root/model/Coach.java @@ -5,24 +5,26 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.annotation.JsonRootName; @JsonIgnoreProperties(ignoreUnknown = true) -@JsonRootName(value = "data") public class Coach { + private String captain; + + @JsonProperty("matchTeamFormation") + private MatchTeamFormation matchTeamFormation; + + @JsonProperty("selectedBonus") + private BonusSelected bonusSelected; + + // Useless below parameters ? + @JsonProperty("players") private List players; - @JsonProperty("composition") - private int composition; - @JsonProperty("bonus") private Bonus bonus; - @JsonProperty("bonusSelected") - private BonusSelected bonusSelected; - @JsonProperty("matchId") private String matchId; @@ -34,37 +36,57 @@ public class Coach { private int realDay; @JsonProperty("teams") - private Map teams; + private Map teams; - public List getPlayers() { - return players; + public int getComposition() { + return matchTeamFormation.getComposition(); } - public int getComposition() { - return composition; + public BonusSelected getBonusSelected() { + return bonusSelected; } - public Bonus getBonus() { - return bonus; + // Useless below functions ? + + public List getPlayers() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } + return players; } - public BonusSelected getBonusSelected() { - return bonusSelected; + public Bonus getBonus() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } + return bonus; } public String getMatchId() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return matchId; } public int getNbPlayers() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return nbPlayers; } public int getRealDay() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return realDay; } - public Map getTeams() { + public Map getTeams() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return teams; } diff --git a/src/main/java/org/blondin/mpg/root/model/Division.java b/src/main/java/org/blondin/mpg/root/model/Division.java new file mode 100644 index 0000000..7820bae --- /dev/null +++ b/src/main/java/org/blondin/mpg/root/model/Division.java @@ -0,0 +1,22 @@ +package org.blondin.mpg.root.model; + +import java.util.Map; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class Division { + + private Map usersTeams; + + public Map getUsersTeams() { + return usersTeams; + } + + public String getTeam(String userId) { + if (!getUsersTeams().containsKey(userId)) { + throw new UnsupportedOperationException(String.format("No team for user: %s", userId)); + } + return getUsersTeams().get(userId); + } +} diff --git a/src/main/java/org/blondin/mpg/root/model/League.java b/src/main/java/org/blondin/mpg/root/model/League.java index 325d4e0..234355b 100644 --- a/src/main/java/org/blondin/mpg/root/model/League.java +++ b/src/main/java/org/blondin/mpg/root/model/League.java @@ -12,8 +12,9 @@ public class League { private String leagueId; private String divisionId; private String name; + @JsonProperty("championshipId") private ChampionshipType championship; - private LeagueStatus leagueStatus; + private LeagueStatus status; private Mode mode; private int teamStatus; @JsonProperty("isMasterLeague") @@ -37,8 +38,8 @@ public ChampionshipType getChampionship() { return championship; } - public LeagueStatus getLeagueStatus() { - return leagueStatus; + public LeagueStatus getStatus() { + return status; } public Mode getMode() { @@ -46,14 +47,23 @@ public Mode getMode() { } public int getTeamStatus() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return teamStatus; } public boolean isMasterLeague() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return isMasterLeague; } public League getSubLeague() { + if (true) { + throw new UnsupportedOperationException("Usage should be analysed"); + } return subLeague; } } diff --git a/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java b/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java new file mode 100644 index 0000000..67bf58b --- /dev/null +++ b/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java @@ -0,0 +1,13 @@ +package org.blondin.mpg.root.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class MatchTeamFormation { + + private int composition; + + public int getComposition() { + return composition; + } +} diff --git a/src/main/java/org/blondin/mpg/root/model/Player.java b/src/main/java/org/blondin/mpg/root/model/Player.java index 5872ed5..3274572 100644 --- a/src/main/java/org/blondin/mpg/root/model/Player.java +++ b/src/main/java/org/blondin/mpg/root/model/Player.java @@ -8,15 +8,14 @@ @JsonIgnoreProperties(ignoreUnknown = true) public class Player { - @JsonProperty("playerid") private String id; - @JsonProperty("firstname") private String firstName; - @JsonProperty("lastname") private String lastName; private Position position; private int quotation; + @JsonProperty("price") private int pricePaid; + @JsonProperty("teamid") private int teamId; @JsonProperty("club") @@ -49,7 +48,14 @@ public int getQuotation() { return quotation; } + public int getPricePaid() { + return pricePaid; + } + public int getTeamId() { + if (true) { + throw new UnsupportedOperationException("Usage should be checked"); + } return teamId; } @@ -62,6 +68,9 @@ public void setEfficiency(double efficiency) { } public String getClub() { + if (true) { + throw new UnsupportedOperationException("Usage should be checked"); + } return club; } @@ -70,10 +79,10 @@ public void setClub(String club) { } public PlayerStatus getStatus() { + if (true) { + throw new UnsupportedOperationException("Usage should be checked"); + } return status; } - public int getPricePaid() { - return pricePaid; - } } diff --git a/src/main/java/org/blondin/mpg/root/model/PoolPlayers.java b/src/main/java/org/blondin/mpg/root/model/PoolPlayers.java new file mode 100644 index 0000000..50ca2b5 --- /dev/null +++ b/src/main/java/org/blondin/mpg/root/model/PoolPlayers.java @@ -0,0 +1,20 @@ +package org.blondin.mpg.root.model; + +import java.util.List; + +import com.fasterxml.jackson.annotation.JsonProperty; + +public class PoolPlayers { + + @JsonProperty("poolPlayers") + private List players; + + public List getPlayers() { + return players; + } + + public Player getPlayer(String id) { + return getPlayers().stream().filter(p -> p.getId().equals(id)).findFirst() + .orElseThrow(() -> new UnsupportedOperationException(String.format("Player with id '%s' cannot found", id))); + } +} diff --git a/src/main/java/org/blondin/mpg/root/model/Team.java b/src/main/java/org/blondin/mpg/root/model/Team.java index 803a3f4..dce1fe4 100644 --- a/src/main/java/org/blondin/mpg/root/model/Team.java +++ b/src/main/java/org/blondin/mpg/root/model/Team.java @@ -1,15 +1,25 @@ package org.blondin.mpg.root.model; +import java.util.Map; + import com.fasterxml.jackson.annotation.JsonIgnoreProperties; -import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) public class Team { - @JsonProperty("name") private String name; + private int budget; + private Map squad; public String getName() { - return this.name; + return name; + } + + public int getBudget() { + return budget; + } + + public Map getSquad() { + return squad; } } diff --git a/src/main/java/org/blondin/mpg/root/model/TransferBuy.java b/src/main/java/org/blondin/mpg/root/model/TransferBuy.java index 785470b..0eca72f 100644 --- a/src/main/java/org/blondin/mpg/root/model/TransferBuy.java +++ b/src/main/java/org/blondin/mpg/root/model/TransferBuy.java @@ -8,19 +8,10 @@ @JsonIgnoreProperties(ignoreUnknown = true) public class TransferBuy { - private int budget; private List availablePlayers; - private List userPlayers; - - public int getBudget() { - return budget; - } public List getAvailablePlayers() { return availablePlayers; } - public List getUserPlayers() { - return userPlayers; - } } diff --git a/src/main/java/org/blondin/mpg/root/model/UserSignIn.java b/src/main/java/org/blondin/mpg/root/model/UserSignIn.java index ea449e2..29263dc 100644 --- a/src/main/java/org/blondin/mpg/root/model/UserSignIn.java +++ b/src/main/java/org/blondin/mpg/root/model/UserSignIn.java @@ -4,9 +4,15 @@ @JsonIgnoreProperties(ignoreUnknown = true) public class UserSignIn { + private String token; + private String userId; public String getToken() { return token; } + + public String getUserId() { + return userId; + } } diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index 033425b..6ddc606 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -8,9 +8,17 @@ import org.blondin.mpg.AbstractMockTestClient; import org.blondin.mpg.config.Config; +import org.blondin.mpg.root.model.ChampionshipType; import org.blondin.mpg.root.model.Coach; import org.blondin.mpg.root.model.Dashboard; +import org.blondin.mpg.root.model.Division; +import org.blondin.mpg.root.model.League; +import org.blondin.mpg.root.model.LeagueStatus; +import org.blondin.mpg.root.model.Mode; import org.blondin.mpg.root.model.Player; +import org.blondin.mpg.root.model.PoolPlayers; +import org.blondin.mpg.root.model.Position; +import org.blondin.mpg.root.model.Team; import org.blondin.mpg.root.model.TransferBuy; import org.junit.Assert; import org.junit.Test; @@ -42,52 +50,98 @@ public void testMockSignInOk() throws Exception { } @Test - public void testMockCoachMobileApp() throws Exception { + public void testMockDashboard() throws Exception { + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/dashboard/leagues") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLEFEX6G-status-4.json"))); + MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); + Dashboard dashboard = mpgClient.getDashboard(); + Assert.assertNotNull(dashboard); + Assert.assertNotNull(dashboard.getLeagues()); + League l = dashboard.getLeagues().get(0); + Assert.assertEquals("MLEFEX6G", l.getId()); + Assert.assertEquals("mpg_division_MLEFEX6G_3_1", l.getDivisionId()); + Assert.assertEquals("Ligue 2 Fous", l.getName()); + Assert.assertEquals(ChampionshipType.LIGUE_2, l.getChampionship()); + Assert.assertEquals(Mode.EXPERT, l.getMode()); + Assert.assertEquals(LeagueStatus.GAMES, l.getStatus()); + } + + @Test + public void testMockDivision() throws Exception { + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.MLEFEX6G.json"))); + MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); + Division division = mpgClient.getDivision("mpg_division_MLEFEX6G_3_1"); + Assert.assertNotNull(division); + Assert.assertNotNull(division.getUsersTeams()); + Assert.assertTrue(division.getUsersTeams().size() > 0); + Assert.assertEquals("mpg_team_MLEFEX6G_3_1_2", division.getTeam(mpgClient.getUserId())); + } + + @Test + public void testMockTeam() throws Exception { + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/team/mpg_team_MLEFEX6G_3_1_2") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.team.MLEFEX6G.20210804.json"))); + MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); + Team team = mpgClient.getTeam("mpg_team_MLEFEX6G_3_1_2"); + Assert.assertNotNull(team); + Assert.assertEquals("Axel Football Club", team.getName()); + Assert.assertEquals(0, team.getBudget()); + Assert.assertNotNull(team.getSquad()); + Assert.assertEquals(20, team.getSquad().size()); + Player p = team.getSquad().get("mpg_championship_player_220359"); + Assert.assertNotNull(p); + Assert.assertEquals(32, p.getPricePaid()); + } + + @Test + public void testMockCoach() throws Exception { stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); stubFor(get("/division/mpg_division_MLEFEX6G_3_1/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.json"))); + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.empty.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); - Coach coach = mpgClient.getCoach("MLEFEX6G"); + Coach coach = mpgClient.getCoach("mpg_division_MLEFEX6G_3_1"); Assert.assertNotNull(coach); - Assert.assertNotNull(coach.getPlayers()); - Assert.assertTrue(coach.getPlayers().size() > 10); - for (Player player : coach.getPlayers()) { - Assert.assertNotNull(player); - Assert.assertNotNull(player.getId()); - Assert.assertNotNull(player.getPosition()); - Assert.assertNotNull(player.getName(), player.getFirstName()); - Assert.assertNotNull(player.getName(), player.getLastName()); - Assert.assertNotNull(player.getName()); - Assert.assertEquals(player.getName(), (player.getLastName() + " " + player.getFirstName()).trim()); - Assert.assertFalse(player.getName(), player.getName().contains("null")); - } + Assert.assertTrue(coach.getComposition() > 0); } @Test - public void testMockDashboard() throws Exception { + public void testMockPoolPlayers() throws Exception { stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLEFEX6G-status-4.json"))); + stubFor(get("/championship-players-pool/4") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.poolPlayers.2.2021.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); - Dashboard dashboard = mpgClient.getDashboard(); - Assert.assertNotNull(dashboard); - Assert.assertNotNull(dashboard.getLeagues()); - Assert.assertEquals("MLEFEX6G", dashboard.getLeagues().get(0).getId()); - Assert.assertEquals("mpg_division_MLEFEX6G_3_1", dashboard.getLeagues().get(0).getDivisionId()); - Assert.assertEquals("Ligue 2 Fous", dashboard.getLeagues().get(0).getName()); + PoolPlayers pool = mpgClient.getPoolPlayers(ChampionshipType.LIGUE_2); + Assert.assertNotNull(pool); + Assert.assertNotNull(pool.getPlayers()); + Assert.assertTrue(pool.getPlayers().size() > 40); + + Player p = mpgClient.getPoolPlayers(ChampionshipType.LIGUE_2).getPlayer("mpg_championship_player_220359"); + Assert.assertNotNull(p); + Assert.assertEquals("Prevot Maxence", p.getName()); + Assert.assertEquals("Prevot", p.getLastName()); + Assert.assertEquals("Maxence", p.getFirstName()); + Assert.assertEquals(Position.G, p.getPosition()); + Assert.assertEquals(18, p.getQuotation()); + Assert.assertEquals("mpg_championship_player_220359", p.getId()); } @Test public void testMockTransferBuy() throws Exception { stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/league/KX24XMUG/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.KX24XMUG.20190202.json"))); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1/available-players") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.trading.buy.MLEFEX6G.20210804.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); - TransferBuy tb = mpgClient.getTransferBuy("KX24XMUG"); - Assert.assertEquals(1, tb.getBudget()); + TransferBuy tb = mpgClient.getTransferBuy("mpg_division_MLEFEX6G_3_1"); Assert.assertTrue(tb.getAvailablePlayers().size() > 10); } } diff --git a/src/test/resources/__files/README.md b/src/test/resources/__files/README.md index bf7ffaa..f7765cc 100644 --- a/src/test/resources/__files/README.md +++ b/src/test/resources/__files/README.md @@ -12,11 +12,14 @@ The `XXX` should be replaced by a use case scenario (like data, some league, ... | **File** | **URL** | **Description** | | --- | --- | --- | -| `mpg.coach.XXX.json` | https://api.mpg.football/TODO | MPG league **coach**, `GET` requests | +| `mpg.dashboard.XXX.json` | https://api.mpg.football/dashboard/leagues | **Dashboard / Home** | +| `mpg.division.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1 | **User->Team association** | +| `mpg.team.XXX.json` | https://api.mpg.football/team/mpg_team_MLEXXXXX_3_1_2 | **Current User Team** | +| `mpg.poolPlayers.X.YYYY.json` | https://api.mpg.football/championship-players-pool/X | **League Pool Player** | +| `mpg.coach.XXX.json` | https://api.mpg.football/TODO | **coach**, `GET` requests | | `mpg.coach.XXX-Request-XXX.json` | https://api.mpg.football/match-team-formation/[matchTeamFormation.id] | MPG league **coach**, `PUT` requests | -| `mpg.dashboard.XXX.json` | https://api.mpg.football/dashboard/leagues | MPG **dashboard** | | `mpg.mercato.XXX.json` | https://api.mpg.football/TODO | MPG league **mercato** | -| `mpg.transfer.buy.XXX.json` | https://api.mpg.football/division/[divisionId]/available-players | MPG league **transfer** | +| `mpg.trading.buy.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1/available-players | MPG league **transfer** | | `mpg.user-signIn.XXX.json` | https://api.mpg.football/user/sign-in | **Login** | ### Players statistics diff --git a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer-Request.json b/src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer-Request.json deleted file mode 100644 index 56adbef..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer-Request.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - } - ], - "bonusSelected": { - "type": 4, - "playerid": "player_95434" - }, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14 -} diff --git a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer.json b/src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer.json deleted file mode 100644 index fbc0334..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostInjuredPlayer.json +++ /dev/null @@ -1,666 +0,0 @@ -{ - "data": { - "tds": { - "update": "2018-11-09T16:29:45.643Z", - "player_465299": { - }, - "player_67272": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_133632": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_458250": { - }, - "player_102747": { - }, - "player_60582": { - "pending": 1 - }, - "player_15780": { - "injured": 1 - }, - "player_50326": { - }, - "player_449718": { - }, - "player_161039": { - }, - "player_44199": { - "pending": 1 - }, - "player_54413": { - "pending": 1 - }, - "player_141109": { - }, - "player_160985": { - "pending": 1 - }, - "player_197022": { - }, - "player_71797": { - "pending": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_210462": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_93127": { - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "pending": 1 - }, - "player_154770": { - "injured": 1 - }, - "player_168539": { - "injured": 1 - }, - "player_45084": { - "pending": 1 - }, - "player_441575": { - "injured": 1 - }, - "player_183779": { - "pending": 1 - }, - "player_89068": { - "injured": 1 - }, - "player_461908": { - }, - "player_93498": { - }, - "player_37776": { - "pending": 1 - }, - "player_98746": { - "pending": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_104613": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_102732": { - }, - "player_199734": { - }, - "player_51525": { - "pending": 1 - }, - "player_461840": { - }, - "player_212325": { - "injured": 1 - }, - "player_209335": { - "pending": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - }, - "player_193537": { - "injured": 1 - }, - "player_448514": { - "pending": 1 - }, - "player_86158": { - "pending": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_50996": { - "pending": 1 - }, - "player_39294": { - }, - "player_109653": { - "pending": 1 - }, - "player_225997": { - }, - "player_50442": { - "pending": 1 - }, - "player_225702": { - }, - "player_116152": { - "injured": 1 - }, - "player_451005": { - "injured": 1 - }, - "player_18574": { - "pending": 1 - }, - "player_85548": { - "pending": 1 - }, - "player_464192": { - }, - "player_242894": { - "pending": 1 - }, - "player_193409": { - "injured": 1 - }, - "player_27669": { - "pending": 1 - }, - "player_164474": { - }, - "player_80711": { - "pending": 1 - }, - "player_205880": { - }, - "player_42416": { - "suspended": 1 - }, - "player_15930": { - "suspended": 1 - }, - "player_48768": { - "suspended": 1 - }, - "player_184095": { - "injured": 1 - }, - "player_189542": { - "injured": 1 - }, - "player_37758": { - "injured": 1 - }, - "player_107641": { - "pending": 1 - }, - "player_56995": { - "pending": 1 - }, - "player_71403": { - "pending": 1 - }, - "player_161950": { - "pending": 1 - }, - "player_198065": { - "pending": 1 - }, - "player_106821": { - "suspended": 1 - }, - "player_184215": { - "injured": 1 - }, - "player_32367": { - "suspended": 1 - }, - "player_244754": { - "pending": 1 - }, - "player_232240": { - "suspended": 1 - }, - "player_92527": { - "injured": 1 - }, - "player_462116": { - "injured": 1 - }, - "player_166989": { - "suspended": 1 - }, - "player_228345": { - "injured": 1 - }, - "player_102385": { - "injured": 1 - }, - "player_226597": { - "injured": 1 - }, - "player_180124": { - "injured": 1 - }, - "player_38419": { - "injured": 1 - }, - "player_19739": { - "injured": 1 - }, - "player_166552": { - "injured": 1 - }, - "player_180562": { - "injured": 1 - }, - "player_170137": { - "injured": 1 - }, - "player_245496": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Dijon" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Saint Etienne" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Amiens" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Caen" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Rennes" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Toulouse" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Montpellier" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Lyon" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Nîmes" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Paris" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Nice" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Angers" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Monaco" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Lille" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Guingamp" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Marseille" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Nantes" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Bordeaux" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Strasbourg" - } - }, - "champid": 1, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14, - "stadium": "The place to be arena", - "dateMatch": 1543002300000, - "timetogame": 780343263, - "teamHome": { - "id": "mpg_team_KLGXSSUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 5, - "zones": { - "z8": "#ff2626", - "z2": "#ffffff", - "z3": "#4054CC", - "z4": "#ff2626", - "z5": "#ffffff", - "z6": "#4054CC", - "z7": "#ffffff", - "z1": "#4054cc", - "z9": "#ff2626" - }, - "sponsor": 6 - } - }, - "teamAway": { - "id": "mpg_team_KLGXSSUG$$mpg_user_1298752", - "name": "Kouks FC", - "abbr": "KFC", - "coach": "Momo", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#00b6af" - } - } - }, - "players": [ - { - "firstname": "Benoit", - "lastname": "Costil", - "playerid": "player_42713", - "teamid": "140", - "position": 1, - "quotation": 20 - }, - { - "firstname": "Jerome", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "140", - "position": 1, - "quotation": 7 - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Boubacar", - "lastname": "Kamara", - "playerid": "player_226944", - "teamid": "144", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Damien", - "lastname": "Le Tallec", - "playerid": "player_52782", - "teamid": "147", - "position": 2, - "quotation": 23 - }, - { - "firstname": null, - "lastname": "Marquinhos", - "playerid": "player_116406", - "teamid": "149", - "position": 2, - "quotation": 25 - }, - { - "firstname": "Thomas", - "lastname": "Meunier", - "playerid": "player_93605", - "teamid": "149", - "position": 2, - "quotation": 24 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25 - }, - { - "firstname": "Dimitri", - "lastname": "Lienard", - "playerid": "player_228322", - "teamid": "153", - "position": 3, - "quotation": 12 - }, - { - "firstname": null, - "lastname": "Lucas Evangelista", - "playerid": "player_163562", - "teamid": "430", - "position": 3, - "quotation": 8 - }, - { - "firstname": null, - "lastname": "Luiz Gustavo", - "playerid": "player_47654", - "teamid": "144", - "position": 3, - "quotation": 15 - }, - { - "firstname": "Christopher", - "lastname": "Nkunku", - "playerid": "player_213198", - "teamid": "149", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 38 - }, - { - "firstname": "Aaron", - "lastname": "Leya Iseka", - "playerid": "player_185727", - "teamid": "427", - "position": 4, - "quotation": 10 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4, - "quotation": 52 - }, - { - "firstname": "Nicolas", - "lastname": "Pepe", - "playerid": "player_195735", - "teamid": "429", - "position": 4, - "quotation": 36 - }, - { - "firstname": "Emiliano", - "lastname": "Sala", - "playerid": "player_103124", - "teamid": "430", - "position": 4, - "quotation": 30 - }, - { - "firstname": null, - "lastname": "Ambroise Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 16 - }, - { - "firstname": "Gaetan", - "lastname": "Laborde", - "playerid": "player_167443", - "teamid": "147", - "position": 4, - "quotation": 24 - }, - { - "firstname": "Youri", - "lastname": "Tielemans", - "playerid": "player_166989", - "teamid": "146", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Lois", - "lastname": "Diony", - "playerid": "player_147577", - "teamid": "152", - "position": 4, - "quotation": 15 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 17 - } - ], - "bonus": { - "1": 0, - "2": 0, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "composition": 343, - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - } - ], - "bonusSelected": { - "type": 4, - "playerid": "player_231961" - }, - "nbPlayers": 8 - } -} diff --git a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer-Request.json b/src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer-Request.json deleted file mode 100644 index 7a8a30a..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer-Request.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - } - ], - "bonusSelected": { - "type": 4, - "playerid": "player_61278" - }, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14 -} diff --git a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer.json b/src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer.json deleted file mode 100644 index 2052ee0..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-Complete-BoostPlayer.json +++ /dev/null @@ -1,666 +0,0 @@ -{ - "data": { - "tds": { - "update": "2018-11-09T16:29:45.643Z", - "player_465299": { - }, - "player_67272": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_133632": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_458250": { - }, - "player_102747": { - }, - "player_60582": { - "pending": 1 - }, - "player_15780": { - "injured": 1 - }, - "player_50326": { - }, - "player_449718": { - }, - "player_161039": { - }, - "player_44199": { - "pending": 1 - }, - "player_54413": { - "pending": 1 - }, - "player_141109": { - }, - "player_160985": { - "pending": 1 - }, - "player_197022": { - }, - "player_71797": { - "pending": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_210462": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_93127": { - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "pending": 1 - }, - "player_154770": { - "injured": 1 - }, - "player_168539": { - "injured": 1 - }, - "player_45084": { - "pending": 1 - }, - "player_441575": { - "injured": 1 - }, - "player_183779": { - "pending": 1 - }, - "player_89068": { - "injured": 1 - }, - "player_461908": { - }, - "player_93498": { - }, - "player_37776": { - "pending": 1 - }, - "player_98746": { - "pending": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_104613": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_102732": { - }, - "player_199734": { - }, - "player_51525": { - "pending": 1 - }, - "player_461840": { - }, - "player_212325": { - "injured": 1 - }, - "player_209335": { - "pending": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - }, - "player_193537": { - "injured": 1 - }, - "player_448514": { - "pending": 1 - }, - "player_86158": { - "pending": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_50996": { - "pending": 1 - }, - "player_39294": { - }, - "player_109653": { - "pending": 1 - }, - "player_225997": { - }, - "player_50442": { - "pending": 1 - }, - "player_225702": { - }, - "player_116152": { - "injured": 1 - }, - "player_451005": { - "injured": 1 - }, - "player_18574": { - "pending": 1 - }, - "player_85548": { - "pending": 1 - }, - "player_464192": { - }, - "player_242894": { - "pending": 1 - }, - "player_193409": { - "injured": 1 - }, - "player_27669": { - "pending": 1 - }, - "player_164474": { - }, - "player_80711": { - "pending": 1 - }, - "player_205880": { - }, - "player_42416": { - "suspended": 1 - }, - "player_15930": { - "suspended": 1 - }, - "player_48768": { - "suspended": 1 - }, - "player_184095": { - "injured": 1 - }, - "player_189542": { - "injured": 1 - }, - "player_37758": { - "injured": 1 - }, - "player_107641": { - "pending": 1 - }, - "player_56995": { - "pending": 1 - }, - "player_71403": { - "pending": 1 - }, - "player_161950": { - "pending": 1 - }, - "player_198065": { - "pending": 1 - }, - "player_106821": { - "suspended": 1 - }, - "player_184215": { - "injured": 1 - }, - "player_32367": { - "suspended": 1 - }, - "player_244754": { - "pending": 1 - }, - "player_232240": { - "suspended": 1 - }, - "player_92527": { - "injured": 1 - }, - "player_462116": { - "injured": 1 - }, - "player_166989": { - "suspended": 1 - }, - "player_228345": { - "injured": 1 - }, - "player_102385": { - "injured": 1 - }, - "player_226597": { - "injured": 1 - }, - "player_180124": { - "injured": 1 - }, - "player_38419": { - "injured": 1 - }, - "player_19739": { - "injured": 1 - }, - "player_166552": { - "injured": 1 - }, - "player_180562": { - "injured": 1 - }, - "player_170137": { - "injured": 1 - }, - "player_245496": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Dijon" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Saint Etienne" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Amiens" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Caen" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Rennes" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Toulouse" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Montpellier" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Lyon" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Nîmes" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Paris" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Nice" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Angers" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Monaco" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Lille" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Guingamp" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Marseille" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Nantes" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Bordeaux" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Strasbourg" - } - }, - "champid": 1, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14, - "stadium": "The place to be arena", - "dateMatch": 1543002300000, - "timetogame": 780343263, - "teamHome": { - "id": "mpg_team_KLGXSSUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 5, - "zones": { - "z8": "#ff2626", - "z2": "#ffffff", - "z3": "#4054CC", - "z4": "#ff2626", - "z5": "#ffffff", - "z6": "#4054CC", - "z7": "#ffffff", - "z1": "#4054cc", - "z9": "#ff2626" - }, - "sponsor": 6 - } - }, - "teamAway": { - "id": "mpg_team_KLGXSSUG$$mpg_user_1298752", - "name": "Kouks FC", - "abbr": "KFC", - "coach": "Momo", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#00b6af" - } - } - }, - "players": [ - { - "firstname": "Benoit", - "lastname": "Costil", - "playerid": "player_42713", - "teamid": "140", - "position": 1, - "quotation": 20 - }, - { - "firstname": "Jerome", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "140", - "position": 1, - "quotation": 7 - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Boubacar", - "lastname": "Kamara", - "playerid": "player_226944", - "teamid": "144", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Damien", - "lastname": "Le Tallec", - "playerid": "player_52782", - "teamid": "147", - "position": 2, - "quotation": 23 - }, - { - "firstname": null, - "lastname": "Marquinhos", - "playerid": "player_116406", - "teamid": "149", - "position": 2, - "quotation": 25 - }, - { - "firstname": "Thomas", - "lastname": "Meunier", - "playerid": "player_93605", - "teamid": "149", - "position": 2, - "quotation": 24 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25 - }, - { - "firstname": "Dimitri", - "lastname": "Lienard", - "playerid": "player_228322", - "teamid": "153", - "position": 3, - "quotation": 12 - }, - { - "firstname": null, - "lastname": "Lucas Evangelista", - "playerid": "player_163562", - "teamid": "430", - "position": 3, - "quotation": 8 - }, - { - "firstname": null, - "lastname": "Luiz Gustavo", - "playerid": "player_47654", - "teamid": "144", - "position": 3, - "quotation": 15 - }, - { - "firstname": "Christopher", - "lastname": "Nkunku", - "playerid": "player_213198", - "teamid": "149", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 38 - }, - { - "firstname": "Aaron", - "lastname": "Leya Iseka", - "playerid": "player_185727", - "teamid": "427", - "position": 4, - "quotation": 10 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4, - "quotation": 52 - }, - { - "firstname": "Nicolas", - "lastname": "Pepe", - "playerid": "player_195735", - "teamid": "429", - "position": 4, - "quotation": 36 - }, - { - "firstname": "Emiliano", - "lastname": "Sala", - "playerid": "player_103124", - "teamid": "430", - "position": 4, - "quotation": 30 - }, - { - "firstname": null, - "lastname": "Ambroise Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 16 - }, - { - "firstname": "Gaetan", - "lastname": "Laborde", - "playerid": "player_167443", - "teamid": "147", - "position": 4, - "quotation": 24 - }, - { - "firstname": "Youri", - "lastname": "Tielemans", - "playerid": "player_166989", - "teamid": "146", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Lois", - "lastname": "Diony", - "playerid": "player_147577", - "teamid": "152", - "position": 4, - "quotation": 15 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 17 - } - ], - "bonus": { - "1": 0, - "2": 0, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "composition": 343, - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - } - ], - "bonusSelected": { - "type": 4, - "playerid": "player_61278" - }, - "nbPlayers": 8 - } -} diff --git a/src/test/resources/__files/mpg.coach.20181114-Complete-NoOption-Request.json b/src/test/resources/__files/mpg.coach.20181114-Complete-NoOption-Request.json deleted file mode 100644 index 0e803af..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-Complete-NoOption-Request.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - } - ], - "bonusSelected": { - }, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14 -} diff --git a/src/test/resources/__files/mpg.coach.20181114-Complete-NoOption.json b/src/test/resources/__files/mpg.coach.20181114-Complete-NoOption.json deleted file mode 100644 index 594b63f..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-Complete-NoOption.json +++ /dev/null @@ -1,664 +0,0 @@ -{ - "data": { - "tds": { - "update": "2018-11-09T16:29:45.643Z", - "player_465299": { - }, - "player_67272": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_133632": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_458250": { - }, - "player_102747": { - }, - "player_60582": { - "pending": 1 - }, - "player_15780": { - "injured": 1 - }, - "player_50326": { - }, - "player_449718": { - }, - "player_161039": { - }, - "player_44199": { - "pending": 1 - }, - "player_54413": { - "pending": 1 - }, - "player_141109": { - }, - "player_160985": { - "pending": 1 - }, - "player_197022": { - }, - "player_71797": { - "pending": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_210462": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_93127": { - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "pending": 1 - }, - "player_154770": { - "injured": 1 - }, - "player_168539": { - "injured": 1 - }, - "player_45084": { - "pending": 1 - }, - "player_441575": { - "injured": 1 - }, - "player_183779": { - "pending": 1 - }, - "player_89068": { - "injured": 1 - }, - "player_461908": { - }, - "player_93498": { - }, - "player_37776": { - "pending": 1 - }, - "player_98746": { - "pending": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_104613": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_102732": { - }, - "player_199734": { - }, - "player_51525": { - "pending": 1 - }, - "player_461840": { - }, - "player_212325": { - "injured": 1 - }, - "player_209335": { - "pending": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - }, - "player_193537": { - "injured": 1 - }, - "player_448514": { - "pending": 1 - }, - "player_86158": { - "pending": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_50996": { - "pending": 1 - }, - "player_39294": { - }, - "player_109653": { - "pending": 1 - }, - "player_225997": { - }, - "player_50442": { - "pending": 1 - }, - "player_225702": { - }, - "player_116152": { - "injured": 1 - }, - "player_451005": { - "injured": 1 - }, - "player_18574": { - "pending": 1 - }, - "player_85548": { - "pending": 1 - }, - "player_464192": { - }, - "player_242894": { - "pending": 1 - }, - "player_193409": { - "injured": 1 - }, - "player_27669": { - "pending": 1 - }, - "player_164474": { - }, - "player_80711": { - "pending": 1 - }, - "player_205880": { - }, - "player_42416": { - "suspended": 1 - }, - "player_15930": { - "suspended": 1 - }, - "player_48768": { - "suspended": 1 - }, - "player_184095": { - "injured": 1 - }, - "player_189542": { - "injured": 1 - }, - "player_37758": { - "injured": 1 - }, - "player_107641": { - "pending": 1 - }, - "player_56995": { - "pending": 1 - }, - "player_71403": { - "pending": 1 - }, - "player_161950": { - "pending": 1 - }, - "player_198065": { - "pending": 1 - }, - "player_106821": { - "suspended": 1 - }, - "player_184215": { - "injured": 1 - }, - "player_32367": { - "suspended": 1 - }, - "player_244754": { - "pending": 1 - }, - "player_232240": { - "suspended": 1 - }, - "player_92527": { - "injured": 1 - }, - "player_462116": { - "injured": 1 - }, - "player_166989": { - "suspended": 1 - }, - "player_228345": { - "injured": 1 - }, - "player_102385": { - "injured": 1 - }, - "player_226597": { - "injured": 1 - }, - "player_180124": { - "injured": 1 - }, - "player_38419": { - "injured": 1 - }, - "player_19739": { - "injured": 1 - }, - "player_166552": { - "injured": 1 - }, - "player_180562": { - "injured": 1 - }, - "player_170137": { - "injured": 1 - }, - "player_245496": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Dijon" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Saint Etienne" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Amiens" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Caen" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Rennes" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Toulouse" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Montpellier" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Lyon" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Nîmes" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Paris" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Nice" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Angers" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Monaco" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Lille" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Guingamp" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Marseille" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Nantes" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Bordeaux" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Strasbourg" - } - }, - "champid": 1, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14, - "stadium": "The place to be arena", - "dateMatch": 1543002300000, - "timetogame": 776621704, - "teamHome": { - "id": "mpg_team_KLGXSSUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 5, - "zones": { - "z8": "#ff2626", - "z2": "#ffffff", - "z3": "#4054CC", - "z4": "#ff2626", - "z5": "#ffffff", - "z6": "#4054CC", - "z7": "#ffffff", - "z1": "#4054cc", - "z9": "#ff2626" - }, - "sponsor": 6 - } - }, - "teamAway": { - "id": "mpg_team_KLGXSSUG$$mpg_user_1298752", - "name": "Kouks FC", - "abbr": "KFC", - "coach": "Momo", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#00b6af" - } - } - }, - "players": [ - { - "firstname": "Benoit", - "lastname": "Costil", - "playerid": "player_42713", - "teamid": "140", - "position": 1, - "quotation": 20 - }, - { - "firstname": "Jerome", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "140", - "position": 1, - "quotation": 7 - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Boubacar", - "lastname": "Kamara", - "playerid": "player_226944", - "teamid": "144", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Damien", - "lastname": "Le Tallec", - "playerid": "player_52782", - "teamid": "147", - "position": 2, - "quotation": 23 - }, - { - "firstname": null, - "lastname": "Marquinhos", - "playerid": "player_116406", - "teamid": "149", - "position": 2, - "quotation": 25 - }, - { - "firstname": "Thomas", - "lastname": "Meunier", - "playerid": "player_93605", - "teamid": "149", - "position": 2, - "quotation": 24 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25 - }, - { - "firstname": "Dimitri", - "lastname": "Lienard", - "playerid": "player_228322", - "teamid": "153", - "position": 3, - "quotation": 12 - }, - { - "firstname": null, - "lastname": "Lucas Evangelista", - "playerid": "player_163562", - "teamid": "430", - "position": 3, - "quotation": 8 - }, - { - "firstname": null, - "lastname": "Luiz Gustavo", - "playerid": "player_47654", - "teamid": "144", - "position": 3, - "quotation": 15 - }, - { - "firstname": "Christopher", - "lastname": "Nkunku", - "playerid": "player_213198", - "teamid": "149", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 38 - }, - { - "firstname": "Aaron", - "lastname": "Leya Iseka", - "playerid": "player_185727", - "teamid": "427", - "position": 4, - "quotation": 10 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4, - "quotation": 52 - }, - { - "firstname": "Nicolas", - "lastname": "Pepe", - "playerid": "player_195735", - "teamid": "429", - "position": 4, - "quotation": 36 - }, - { - "firstname": "Emiliano", - "lastname": "Sala", - "playerid": "player_103124", - "teamid": "430", - "position": 4, - "quotation": 30 - }, - { - "firstname": null, - "lastname": "Ambroise Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 16 - }, - { - "firstname": "Gaetan", - "lastname": "Laborde", - "playerid": "player_167443", - "teamid": "147", - "position": 4, - "quotation": 24 - }, - { - "firstname": "Youri", - "lastname": "Tielemans", - "playerid": "player_166989", - "teamid": "146", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Lois", - "lastname": "Diony", - "playerid": "player_147577", - "teamid": "152", - "position": 4, - "quotation": 15 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 17 - } - ], - "bonus": { - "1": 0, - "2": 0, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "composition": 343, - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5.0 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5.0 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5.0 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6.0 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6.0 - } - ], - "bonusSelected": { - }, - "nbPlayers": 8 - } -} diff --git a/src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption-Request.json b/src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption-Request.json deleted file mode 100644 index a2f943e..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption-Request.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - } - ], - "bonusSelected": { - "type": 5 - }, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14 -} diff --git a/src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption.json b/src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption.json deleted file mode 100644 index 3c495bb..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-noPlayers-MiroirOption.json +++ /dev/null @@ -1,640 +0,0 @@ -{ - "data": { - "tds": { - "update": "2018-11-09T16:29:45.643Z", - "player_465299": { - }, - "player_67272": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_133632": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_458250": { - }, - "player_102747": { - }, - "player_60582": { - "pending": 1 - }, - "player_15780": { - "injured": 1 - }, - "player_50326": { - }, - "player_449718": { - }, - "player_161039": { - }, - "player_44199": { - "pending": 1 - }, - "player_54413": { - "pending": 1 - }, - "player_141109": { - }, - "player_160985": { - "pending": 1 - }, - "player_197022": { - }, - "player_71797": { - "pending": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_210462": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_93127": { - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "pending": 1 - }, - "player_154770": { - "injured": 1 - }, - "player_168539": { - "injured": 1 - }, - "player_45084": { - "pending": 1 - }, - "player_441575": { - "injured": 1 - }, - "player_183779": { - "pending": 1 - }, - "player_89068": { - "injured": 1 - }, - "player_461908": { - }, - "player_93498": { - }, - "player_37776": { - "pending": 1 - }, - "player_98746": { - "pending": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_104613": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_102732": { - }, - "player_199734": { - }, - "player_51525": { - "pending": 1 - }, - "player_461840": { - }, - "player_212325": { - "injured": 1 - }, - "player_209335": { - "pending": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - }, - "player_193537": { - "injured": 1 - }, - "player_448514": { - "pending": 1 - }, - "player_86158": { - "pending": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_50996": { - "pending": 1 - }, - "player_39294": { - }, - "player_109653": { - "pending": 1 - }, - "player_225997": { - }, - "player_50442": { - "pending": 1 - }, - "player_225702": { - }, - "player_116152": { - "injured": 1 - }, - "player_451005": { - "injured": 1 - }, - "player_18574": { - "pending": 1 - }, - "player_85548": { - "pending": 1 - }, - "player_464192": { - }, - "player_242894": { - "pending": 1 - }, - "player_193409": { - "injured": 1 - }, - "player_27669": { - "pending": 1 - }, - "player_164474": { - }, - "player_80711": { - "pending": 1 - }, - "player_205880": { - }, - "player_42416": { - "suspended": 1 - }, - "player_15930": { - "suspended": 1 - }, - "player_48768": { - "suspended": 1 - }, - "player_184095": { - "injured": 1 - }, - "player_189542": { - "injured": 1 - }, - "player_37758": { - "injured": 1 - }, - "player_107641": { - "pending": 1 - }, - "player_56995": { - "pending": 1 - }, - "player_71403": { - "pending": 1 - }, - "player_161950": { - "pending": 1 - }, - "player_198065": { - "pending": 1 - }, - "player_106821": { - "suspended": 1 - }, - "player_184215": { - "injured": 1 - }, - "player_32367": { - "suspended": 1 - }, - "player_244754": { - "pending": 1 - }, - "player_232240": { - "suspended": 1 - }, - "player_92527": { - "injured": 1 - }, - "player_462116": { - "injured": 1 - }, - "player_166989": { - "suspended": 1 - }, - "player_228345": { - "injured": 1 - }, - "player_102385": { - "injured": 1 - }, - "player_226597": { - "injured": 1 - }, - "player_180124": { - "injured": 1 - }, - "player_38419": { - "injured": 1 - }, - "player_19739": { - "injured": 1 - }, - "player_166552": { - "injured": 1 - }, - "player_180562": { - "injured": 1 - }, - "player_170137": { - "injured": 1 - }, - "player_245496": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Dijon" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Saint Etienne" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Amiens" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Caen" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Rennes" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Toulouse" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Montpellier" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Lyon" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Nîmes" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Paris" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Nice" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Angers" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Monaco" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Lille" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Guingamp" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Marseille" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Nantes" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Bordeaux" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Strasbourg" - } - }, - "champid": 1, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14, - "stadium": "The place to be arena", - "dateMatch": 1543002300000, - "timetogame": 781007386, - "teamHome": { - "id": "mpg_team_KLGXSSUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 5, - "zones": { - "z8": "#ff2626", - "z2": "#ffffff", - "z3": "#4054CC", - "z4": "#ff2626", - "z5": "#ffffff", - "z6": "#4054CC", - "z7": "#ffffff", - "z1": "#4054cc", - "z9": "#ff2626" - }, - "sponsor": 6 - } - }, - "teamAway": { - "id": "mpg_team_KLGXSSUG$$mpg_user_1298752", - "name": "Kouks FC", - "abbr": "KFC", - "coach": "Momo", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#00b6af" - } - } - }, - "players": [ - { - "firstname": "Benoit", - "lastname": "Costil", - "playerid": "player_42713", - "teamid": "140", - "position": 1, - "quotation": 20 - }, - { - "firstname": "Jerome", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "140", - "position": 1, - "quotation": 7 - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Boubacar", - "lastname": "Kamara", - "playerid": "player_226944", - "teamid": "144", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Damien", - "lastname": "Le Tallec", - "playerid": "player_52782", - "teamid": "147", - "position": 2, - "quotation": 23 - }, - { - "firstname": null, - "lastname": "Marquinhos", - "playerid": "player_116406", - "teamid": "149", - "position": 2, - "quotation": 25 - }, - { - "firstname": "Thomas", - "lastname": "Meunier", - "playerid": "player_93605", - "teamid": "149", - "position": 2, - "quotation": 24 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25 - }, - { - "firstname": "Dimitri", - "lastname": "Lienard", - "playerid": "player_228322", - "teamid": "153", - "position": 3, - "quotation": 12 - }, - { - "firstname": null, - "lastname": "Lucas Evangelista", - "playerid": "player_163562", - "teamid": "430", - "position": 3, - "quotation": 8 - }, - { - "firstname": null, - "lastname": "Luiz Gustavo", - "playerid": "player_47654", - "teamid": "144", - "position": 3, - "quotation": 15 - }, - { - "firstname": "Christopher", - "lastname": "Nkunku", - "playerid": "player_213198", - "teamid": "149", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 38 - }, - { - "firstname": "Aaron", - "lastname": "Leya Iseka", - "playerid": "player_185727", - "teamid": "427", - "position": 4, - "quotation": 10 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4, - "quotation": 52 - }, - { - "firstname": "Nicolas", - "lastname": "Pepe", - "playerid": "player_195735", - "teamid": "429", - "position": 4, - "quotation": 36 - }, - { - "firstname": "Emiliano", - "lastname": "Sala", - "playerid": "player_103124", - "teamid": "430", - "position": 4, - "quotation": 30 - }, - { - "firstname": null, - "lastname": "Ambroise Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 16 - }, - { - "firstname": "Gaetan", - "lastname": "Laborde", - "playerid": "player_167443", - "teamid": "147", - "position": 4, - "quotation": 24 - }, - { - "firstname": "Youri", - "lastname": "Tielemans", - "playerid": "player_166989", - "teamid": "146", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Lois", - "lastname": "Diony", - "playerid": "player_147577", - "teamid": "152", - "position": 4, - "quotation": 15 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 17 - } - ], - "bonus": { - "1": 0, - "2": 0, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "composition": 343, - "playersOnPitch": { - "1": null, - "2": null, - "3": null, - "4": null, - "5": null, - "6": null, - "7": null, - "8": null, - "9": null, - "10": null, - "11": null, - "12": null, - "13": null, - "14": null, - "15": null, - "16": null, - "17": null, - "18": null - }, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - "type": 5 - }, - "nbPlayers": 8 - } -} diff --git a/src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption-Request.json b/src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption-Request.json deleted file mode 100644 index f7b1c07..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption-Request.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": "player_226944", - "13": "player_183779", - "14": "player_47654", - "15": "player_228322", - "16": "player_167443", - "17": "player_147577", - "18": "player_181439" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_226944", - "start": "player_116406", - "rating": 5 - }, - { - "subs": "player_47654", - "start": "player_163562", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_213198", - "rating": 5 - }, - { - "subs": "player_167443", - "start": "player_195735", - "rating": 6 - }, - { - "subs": "player_147577", - "start": "player_61278", - "rating": 6 - } - ], - "bonusSelected": { - "type": 6 - }, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14 -} diff --git a/src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption.json b/src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption.json deleted file mode 100644 index fdc4620..0000000 --- a/src/test/resources/__files/mpg.coach.20181114-noSubstitutes-RotaldoOption.json +++ /dev/null @@ -1,640 +0,0 @@ -{ - "data": { - "tds": { - "update": "2018-11-09T16:29:45.643Z", - "player_465299": { - }, - "player_67272": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_133632": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_458250": { - }, - "player_102747": { - }, - "player_60582": { - "pending": 1 - }, - "player_15780": { - "injured": 1 - }, - "player_50326": { - }, - "player_449718": { - }, - "player_161039": { - }, - "player_44199": { - "pending": 1 - }, - "player_54413": { - "pending": 1 - }, - "player_141109": { - }, - "player_160985": { - "pending": 1 - }, - "player_197022": { - }, - "player_71797": { - "pending": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_210462": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_93127": { - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "pending": 1 - }, - "player_154770": { - "injured": 1 - }, - "player_168539": { - "injured": 1 - }, - "player_45084": { - "pending": 1 - }, - "player_441575": { - "injured": 1 - }, - "player_183779": { - "pending": 1 - }, - "player_89068": { - "injured": 1 - }, - "player_461908": { - }, - "player_93498": { - }, - "player_37776": { - "pending": 1 - }, - "player_98746": { - "pending": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_104613": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_102732": { - }, - "player_199734": { - }, - "player_51525": { - "pending": 1 - }, - "player_461840": { - }, - "player_212325": { - "injured": 1 - }, - "player_209335": { - "pending": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - }, - "player_193537": { - "injured": 1 - }, - "player_448514": { - "pending": 1 - }, - "player_86158": { - "pending": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_50996": { - "pending": 1 - }, - "player_39294": { - }, - "player_109653": { - "pending": 1 - }, - "player_225997": { - }, - "player_50442": { - "pending": 1 - }, - "player_225702": { - }, - "player_116152": { - "injured": 1 - }, - "player_451005": { - "injured": 1 - }, - "player_18574": { - "pending": 1 - }, - "player_85548": { - "pending": 1 - }, - "player_464192": { - }, - "player_242894": { - "pending": 1 - }, - "player_193409": { - "injured": 1 - }, - "player_27669": { - "pending": 1 - }, - "player_164474": { - }, - "player_80711": { - "pending": 1 - }, - "player_205880": { - }, - "player_42416": { - "suspended": 1 - }, - "player_15930": { - "suspended": 1 - }, - "player_48768": { - "suspended": 1 - }, - "player_184095": { - "injured": 1 - }, - "player_189542": { - "injured": 1 - }, - "player_37758": { - "injured": 1 - }, - "player_107641": { - "pending": 1 - }, - "player_56995": { - "pending": 1 - }, - "player_71403": { - "pending": 1 - }, - "player_161950": { - "pending": 1 - }, - "player_198065": { - "pending": 1 - }, - "player_106821": { - "suspended": 1 - }, - "player_184215": { - "injured": 1 - }, - "player_32367": { - "suspended": 1 - }, - "player_244754": { - "pending": 1 - }, - "player_232240": { - "suspended": 1 - }, - "player_92527": { - "injured": 1 - }, - "player_462116": { - "injured": 1 - }, - "player_166989": { - "suspended": 1 - }, - "player_228345": { - "injured": 1 - }, - "player_102385": { - "injured": 1 - }, - "player_226597": { - "injured": 1 - }, - "player_180124": { - "injured": 1 - }, - "player_38419": { - "injured": 1 - }, - "player_19739": { - "injured": 1 - }, - "player_166552": { - "injured": 1 - }, - "player_180562": { - "injured": 1 - }, - "player_170137": { - "injured": 1 - }, - "player_245496": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Dijon" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Saint Etienne" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Amiens" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Caen" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Rennes" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Toulouse" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Montpellier" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Lyon" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Nîmes" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Paris" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Nice" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Angers" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Monaco" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Lille" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Guingamp" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Marseille" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Nantes" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Bordeaux" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Strasbourg" - } - }, - "champid": 1, - "matchId": "mpg_match_KLGXSSUG_1_11_4", - "realday": 14, - "stadium": "The place to be arena", - "dateMatch": 1543002300000, - "timetogame": 780153824, - "teamHome": { - "id": "mpg_team_KLGXSSUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 5, - "zones": { - "z8": "#ff2626", - "z2": "#ffffff", - "z3": "#4054CC", - "z4": "#ff2626", - "z5": "#ffffff", - "z6": "#4054CC", - "z7": "#ffffff", - "z1": "#4054cc", - "z9": "#ff2626" - }, - "sponsor": 6 - } - }, - "teamAway": { - "id": "mpg_team_KLGXSSUG$$mpg_user_1298752", - "name": "Kouks FC", - "abbr": "KFC", - "coach": "Momo", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#00b6af" - } - } - }, - "players": [ - { - "firstname": "Benoit", - "lastname": "Costil", - "playerid": "player_42713", - "teamid": "140", - "position": 1, - "quotation": 20 - }, - { - "firstname": "Jerome", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "140", - "position": 1, - "quotation": 7 - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Boubacar", - "lastname": "Kamara", - "playerid": "player_226944", - "teamid": "144", - "position": 2, - "quotation": 11 - }, - { - "firstname": "Damien", - "lastname": "Le Tallec", - "playerid": "player_52782", - "teamid": "147", - "position": 2, - "quotation": 23 - }, - { - "firstname": null, - "lastname": "Marquinhos", - "playerid": "player_116406", - "teamid": "149", - "position": 2, - "quotation": 25 - }, - { - "firstname": "Thomas", - "lastname": "Meunier", - "playerid": "player_93605", - "teamid": "149", - "position": 2, - "quotation": 24 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25 - }, - { - "firstname": "Dimitri", - "lastname": "Lienard", - "playerid": "player_228322", - "teamid": "153", - "position": 3, - "quotation": 12 - }, - { - "firstname": null, - "lastname": "Lucas Evangelista", - "playerid": "player_163562", - "teamid": "430", - "position": 3, - "quotation": 8 - }, - { - "firstname": null, - "lastname": "Luiz Gustavo", - "playerid": "player_47654", - "teamid": "144", - "position": 3, - "quotation": 15 - }, - { - "firstname": "Christopher", - "lastname": "Nkunku", - "playerid": "player_213198", - "teamid": "149", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 38 - }, - { - "firstname": "Aaron", - "lastname": "Leya Iseka", - "playerid": "player_185727", - "teamid": "427", - "position": 4, - "quotation": 10 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4, - "quotation": 52 - }, - { - "firstname": "Nicolas", - "lastname": "Pepe", - "playerid": "player_195735", - "teamid": "429", - "position": 4, - "quotation": 36 - }, - { - "firstname": "Emiliano", - "lastname": "Sala", - "playerid": "player_103124", - "teamid": "430", - "position": 4, - "quotation": 30 - }, - { - "firstname": null, - "lastname": "Ambroise Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 16 - }, - { - "firstname": "Gaetan", - "lastname": "Laborde", - "playerid": "player_167443", - "teamid": "147", - "position": 4, - "quotation": 24 - }, - { - "firstname": "Youri", - "lastname": "Tielemans", - "playerid": "player_166989", - "teamid": "146", - "position": 3, - "quotation": 13 - }, - { - "firstname": "Lois", - "lastname": "Diony", - "playerid": "player_147577", - "teamid": "152", - "position": 4, - "quotation": 15 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 17 - } - ], - "bonus": { - "1": 0, - "2": 0, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "composition": 343, - "playersOnPitch": { - "1": "player_42713", - "2": "player_52782", - "3": "player_93605", - "4": "player_116406", - "5": "player_95434", - "6": "player_166989", - "7": "player_213198", - "8": "player_163562", - "9": "player_103124", - "10": "player_61278", - "11": "player_195735", - "12": null, - "13": null, - "14": null, - "15": null, - "16": null, - "17": null, - "18": null - }, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - "type": 6 - }, - "nbPlayers": 8 - } -} diff --git a/src/test/resources/__files/mpg.coach.20181212.json b/src/test/resources/__files/mpg.coach.20181212.json deleted file mode 100644 index 8d6d70f..0000000 --- a/src/test/resources/__files/mpg.coach.20181212.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"tds":{"update":"2018-12-10T14:08:16.943Z","player_143685":{"injured":1},"player_67272":{"injured":1},"player_247400":{"injured":1},"player_133632":{"injured":1},"player_103155":{"injured":1},"player_192292":{"injured":1},"player_198065":{"injured":1},"player_468488":{"injured":1},"player_174846":{"injured":1},"player_458250":{"injured":1},"player_38265":{"injured":1},"player_102747":{"injured":1},"player_60582":{"injured":1},"player_50326":{"injured":1},"player_449718":{"injured":1},"player_161039":{"injured":1},"player_447389":{"injured":1},"player_141109":{"injured":1},"player_197022":{"injured":1},"player_79917":{"injured":1},"player_210462":{"injured":1},"player_174908":{"injured":1},"player_80904":{"injured":1},"player_194300":{"injured":1},"player_227163":{"injured":1},"player_228361":{"injured":1},"player_218796":{"injured":1},"player_154770":{"injured":1},"player_86413":{"injured":1},"player_45084":{"injured":1},"player_20468":{"injured":1},"player_183779":{"injured":1},"player_19670":{"injured":1},"player_93498":{"injured":1},"player_433640":{"injured":1},"player_37776":{"injured":1},"player_149519":{"injured":1},"player_39905":{"injured":1},"player_174892":{"injured":1},"player_115357":{"injured":1},"player_104613":{"injured":1},"player_83279":{"injured":1},"player_208556":{"injured":1},"player_461910":{"injured":1},"player_74299":{"injured":1},"player_210494":{"injured":1},"player_89038":{"injured":1},"player_195908":{"injured":1},"player_51525":{"injured":1},"player_61278":{"injured":1},"player_461840":{"injured":1},"player_72177":{"injured":1},"player_209335":{"injured":1},"player_51394":{"injured":1},"player_220110":{"injured":1},"player_193537":{"injured":1},"player_184215":{"injured":1},"player_37938":{"injured":1},"player_44357":{"injured":1},"player_226949":{"injured":1},"player_67276":{"injured":1},"player_165112":{"injured":1},"player_460265":{"injured":1},"player_109653":{"injured":1},"player_454964":{"injured":1},"player_226194":{"injured":1},"player_50442":{"injured":1},"player_225702":{"injured":1},"player_141921":{"injured":1},"player_168104":{"injured":1},"player_54518":{"injured":1},"player_85548":{"injured":1},"player_242894":{"injured":1},"player_58309":{"injured":1},"player_115851":{"injured":1},"player_27669":{"injured":1},"player_80711":{"injured":1}},"teams":{"140":{"name":"Bordeaux","status":"away","against":"Marseille"},"143":{"name":"Lyon","status":"home","against":"Monaco"},"144":{"name":"Marseille","status":"home","against":"Bordeaux"},"146":{"name":"Monaco","status":"away","against":"Lyon"},"147":{"name":"Montpellier","status":"away","against":"Nantes"},"149":{"name":"Paris","status":"away","against":"Dijon"},"150":{"name":"Rennes","status":"away","against":"Guingamp"},"152":{"name":"Saint Etienne","status":"away","against":"Nice"},"153":{"name":"Strasbourg","status":"away","against":"Reims"},"427":{"name":"Toulouse","status":"away","against":"Caen"},"428":{"name":"Guingamp","status":"home","against":"Rennes"},"429":{"name":"Lille","status":"away","against":"Nîmes"},"430":{"name":"Nantes","status":"home","against":"Montpellier"},"1028":{"name":"Caen","status":"home","against":"Toulouse"},"1395":{"name":"Nice","status":"home","against":"Saint Etienne"},"1423":{"name":"Reims","status":"home","against":"Strasbourg"},"1430":{"name":"Amiens","status":"home","against":"Angers"},"2128":{"name":"Angers","status":"away","against":"Amiens"},"2130":{"name":"Dijon","status":"home","against":"Paris"},"2336":{"name":"Nîmes","status":"home","against":"Lille"}},"champid":1,"matchId":"mpg_match_KLGXSSUG_1_14_3","realday":18,"stadium":"The place to be arena","dateMatch":1544816700000,"timetogame":172232664,"teamHome":{"id":"mpg_team_KLGXSSUG$$mpg_user_955966","name":"Axel3rd Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":5,"zones":{"z8":"#ff2626","z2":"#ffffff","z3":"#4054CC","z4":"#ff2626","z5":"#ffffff","z6":"#4054CC","z7":"#ffffff","z1":"#4054cc","z9":"#ff2626"},"sponsor":6}},"teamAway":{"id":"mpg_team_KLGXSSUG$$mpg_user_960403","name":"sporting cska bruno fc","abbr":"bub","coach":"Bruno","jersey":{"id":0,"sponsor":3,"zones":{"z1":"#00b6af"}}},"players":[{"firstname":"Benoit","lastname":"Costil","playerid":"player_42713","teamid":"140","position":1,"quotation":19},{"firstname":"Jerome","lastname":"Prior","playerid":"player_181439","teamid":"140","position":1,"quotation":7},{"firstname":"Léo","lastname":"Dubois","playerid":"player_183779","teamid":"143","position":2,"quotation":8},{"firstname":"Boubacar","lastname":"Kamara","playerid":"player_226944","teamid":"144","position":2,"quotation":11},{"firstname":"Damien","lastname":"Le Tallec","playerid":"player_52782","teamid":"147","position":2,"quotation":22},{"firstname":null,"lastname":"Marquinhos","playerid":"player_116406","teamid":"149","position":2,"quotation":24},{"firstname":"Thomas","lastname":"Meunier","playerid":"player_93605","teamid":"149","position":2,"quotation":24},{"firstname":"Houssem","lastname":"Aouar","playerid":"player_231961","teamid":"143","position":3,"quotation":23},{"firstname":"Dimitri","lastname":"Lienard","playerid":"player_228322","teamid":"153","position":3,"quotation":13},{"firstname":null,"lastname":"Lucas Evangelista","playerid":"player_163562","teamid":"430","position":3,"quotation":8},{"firstname":null,"lastname":"Luiz Gustavo","playerid":"player_47654","teamid":"144","position":3,"quotation":15},{"firstname":"Christopher","lastname":"Nkunku","playerid":"player_213198","teamid":"149","position":3,"quotation":12},{"firstname":"Florian","lastname":"Thauvin","playerid":"player_95434","teamid":"144","position":3,"quotation":41},{"firstname":"Aaron","lastname":"Leya Iseka","playerid":"player_185727","teamid":"427","position":4,"quotation":11},{"firstname":null,"lastname":"Neymar","playerid":"player_61278","teamid":"149","position":4,"quotation":52},{"firstname":"Nicolas","lastname":"Pepe","playerid":"player_195735","teamid":"429","position":4,"quotation":38},{"firstname":"Emiliano","lastname":"Sala","playerid":"player_103124","teamid":"430","position":4,"quotation":30},{"firstname":"Ambroise","lastname":"Oyongo","playerid":"player_180562","teamid":"147","position":2,"quotation":14},{"firstname":"Gaetan","lastname":"Laborde","playerid":"player_167443","teamid":"147","position":4,"quotation":22},{"firstname":"Youri","lastname":"Tielemans","playerid":"player_166989","teamid":"146","position":3,"quotation":17},{"firstname":"Lois","lastname":"Diony","playerid":"player_147577","teamid":"152","position":4,"quotation":15},{"firstname":"Renaud","lastname":"Ripart","playerid":"player_121150","teamid":"2336","position":4,"quotation":17}],"bonus":{"1":0,"2":0,"3":1,"4":2,"5":1,"6":1,"7":1},"nanardpaid":0,"money":0,"composition":343,"playersOnPitch":{"1":"player_42713","2":"player_52782","3":"player_93605","4":"player_180562","5":"player_231961","6":"player_166989","7":"player_213198","8":"player_163562","9":"player_195735","10":"player_103124","11":"player_167443","12":"player_116406","13":"player_226944","14":"player_47654","15":"player_228322","16":"player_147577","17":"player_121150","18":"player_181439"},"tacticalsubstitutes":[{"subs":"player_116406","start":"player_180562","rating":5},{"subs":"player_47654","start":"player_163562","rating":5},{"subs":"player_228322","start":"player_213198","rating":5},{"subs":"player_147577","start":"player_167443","rating":6},{"subs":"player_121150","start":"player_103124","rating":6}],"bonusSelected":{"type":3},"nbPlayers":8}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.20190123-Request.json b/src/test/resources/__files/mpg.coach.20190123-Request.json deleted file mode 100644 index 0f5661d..0000000 --- a/src/test/resources/__files/mpg.coach.20190123-Request.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_121709", - "2": "player_92527", - "3": "player_180562", - "4": "player_38265", - "5": "player_95434", - "6": "player_231961", - "7": "player_112580", - "8": "player_120743", - "9": "player_193512", - "10": "player_121150", - "11": null, - "12": null, - "13": null, - "14": null, - "15": null, - "16": null, - "17": null, - "18": null - }, - "composition": 343, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_KX24XMUG_1_2_4", - "realday": 22 -} diff --git a/src/test/resources/__files/mpg.coach.20190123.json b/src/test/resources/__files/mpg.coach.20190123.json deleted file mode 100644 index dcce185..0000000 --- a/src/test/resources/__files/mpg.coach.20190123.json +++ /dev/null @@ -1,582 +0,0 @@ -{ - "data": { - "champid": 1, - "matchId": "mpg_match_KX24XMUG_1_2_4", - "realday": 22, - "stadium": "HOULOULOU", - "dateMatch": 1548445500000, - "timetogame": 162335276, - "teamHome": { - "id": "mpg_team_KX24XMUG$$mpg_user_1653904", - "name": "Cheh FC", - "abbr": "CFC", - "coach": "Eireen Antoine Quentin", - "jersey": { - "id": 0, - "sponsor": 4, - "zones": { - "z1": "#00b6af" - } - } - }, - "teamAway": { - "id": "mpg_team_KX24XMUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#000000" - } - } - }, - "players": [ - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 37, - "ultraPosition": 32 - }, - { - "firstname": "Kenny", - "lastname": "Lala", - "playerid": "player_92527", - "teamid": "153", - "position": 2, - "quotation": 19, - "ultraPosition": 21 - }, - { - "firstname": null, - "lastname": "Neymar", - "playerid": "player_61278", - "teamid": "149", - "position": 4, - "quotation": 45, - "ultraPosition": 40 - }, - { - "firstname": "Christophe", - "lastname": "Jallet", - "playerid": "player_38265", - "teamid": "1395", - "position": 2, - "quotation": 9, - "ultraPosition": 21 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 22, - "ultraPosition": 32 - }, - { - "firstname": "François", - "lastname": "Kamano", - "playerid": "player_193512", - "teamid": "140", - "position": 4, - "quotation": 20, - "ultraPosition": 40 - }, - { - "firstname": "Walter", - "lastname": "Benítez", - "playerid": "player_121709", - "teamid": "1395", - "position": 1, - "quotation": 25, - "ultraPosition": 10 - }, - { - "firstname": null, - "lastname": "Pablo", - "playerid": "player_116504", - "teamid": "140", - "position": 2, - "quotation": 17, - "ultraPosition": 20 - }, - { - "firstname": "Marco", - "lastname": "Verratti", - "playerid": "player_61170", - "teamid": "149", - "position": 3, - "quotation": 18, - "ultraPosition": 31 - }, - { - "firstname": "Ambroise", - "lastname": "Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 14, - "ultraPosition": 21 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 15, - "ultraPosition": 40 - }, - { - "firstname": "Pierrick", - "lastname": "Capelle", - "playerid": "player_112580", - "teamid": "2128", - "position": 3, - "quotation": 15, - "ultraPosition": 32 - }, - { - "firstname": "Adrien", - "lastname": "Rabiot", - "playerid": "player_120743", - "teamid": "149", - "position": 3, - "quotation": 10, - "ultraPosition": 31 - }, - { - "firstname": "Mouez", - "lastname": "Hassen", - "playerid": "player_115357", - "teamid": "1395", - "position": 1, - "quotation": 2, - "ultraPosition": 10 - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tds": { - "update": "2019-01-18T10:56:54.200Z", - "player_79625": { - "pending": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_161472": { - "pending": 1 - }, - "player_133632": { - }, - "player_217319": { - "injured": 1 - }, - "player_15930": { - "injured": 1 - }, - "player_219292": { - "injured": 1 - }, - "player_192292": { - "injured": 1 - }, - "player_198065": { - "injured": 1 - }, - "player_73667": { - "pending": 1 - }, - "player_245496": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_458250": { - "pending": 1 - }, - "player_40511": { - }, - "player_161039": { - }, - "player_44199": { - }, - "player_54413": { - "pending": 1 - }, - "player_4126": { - "pending": 1 - }, - "player_141109": { - "injured": 1 - }, - "player_197022": { - "injured": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_80904": { - "injured": 1 - }, - "player_194300": { - "injured": 1 - }, - "player_227163": { - "injured": 1 - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "injured": 1 - }, - "player_86413": { - }, - "player_20468": { - "injured": 1 - }, - "player_230337": { - "injured": 1 - }, - "player_93498": { - }, - "player_37776": { - "injured": 1 - }, - "player_27334": { - "pending": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_193400": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_104613": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_208556": { - "injured": 1 - }, - "player_51634": { - "pending": 1 - }, - "player_461910": { - }, - "player_74299": { - }, - "player_210494": { - "pending": 1 - }, - "player_89038": { - "pending": 1 - }, - "player_54908": { - "injured": 1 - }, - "player_468430": { - }, - "player_461840": { - }, - "player_129479": { - "injured": 1 - }, - "player_212325": { - "injured": 1 - }, - "player_40808": { - "injured": 1 - }, - "player_209335": { - "injured": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_116504": { - "injured": 1 - }, - "player_220110": { - "injured": 1 - }, - "player_193537": { - "injured": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_220074": { - "injured": 1 - }, - "player_54772": { - "injured": 1 - }, - "player_58476": { - "injured": 1 - }, - "player_27671": { - "injured": 1 - }, - "player_105706": { - "pending": 1 - }, - "player_168104": { - "pending": 1 - }, - "player_78541": { - "injured": 1 - }, - "player_85548": { - "injured": 1 - }, - "player_228170": { - "pending": 1 - }, - "player_242894": { - "injured": 1 - }, - "player_242600": { - }, - "player_58309": { - "injured": 1 - }, - "player_115851": { - "injured": 1 - }, - "player_27669": { - "pending": 1 - }, - "player_48768": { - "injured": 1 - }, - "player_244182": { - "injured": 1 - }, - "player_171435": { - "suspended": 1 - }, - "player_461833": { - "injured": 1 - }, - "player_49502": { - "suspended": 1 - }, - "player_205836": { - "injured": 1 - }, - "player_86873": { - "injured": 1 - }, - "player_42416": { - "pending": 1 - }, - "player_193512": { - "pending": 1 - }, - "player_169427": { - "injured": 1 - }, - "player_109404": { - "injured": 1 - }, - "player_41795": { - "pending": 1 - }, - "player_60582": { - "pending": 1 - }, - "player_50442": { - "injured": 1 - }, - "player_42518": { - "injured": 1 - }, - "player_106320": { - "suspended": 1 - }, - "player_42493": { - "pending": 1 - }, - "player_228321": { - "suspended": 1 - }, - "player_120743": { - "injured": 1 - }, - "player_93127": { - "pending": 1 - }, - "player_244754": { - "pending": 1 - }, - "player_184961": { - "pending": 1 - }, - "player_86446": { - "pending": 1 - }, - "player_103124": { - "pending": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Strasbourg" - }, - "143": { - "name": "Lyon", - "status": "away", - "against": "Amiens" - }, - "144": { - "name": "Marseille", - "status": "home", - "against": "Lille" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Dijon" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Caen" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Rennes" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Paris" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Nantes" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Bordeaux" - }, - "427": { - "name": "Toulouse", - "status": "home", - "against": "Angers" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Marseille" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Saint Etienne" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Montpellier" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Nîmes" - }, - "1423": { - "name": "Reims", - "status": "away", - "against": "Guingamp" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Lyon" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Toulouse" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Monaco" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Nice" - } - }, - "composition": 343, - "playersOnPitch": { - "1": "player_121709", - "2": "player_92527", - "3": "player_180562", - "4": "player_38265", - "5": "player_95434", - "6": "player_231961", - "7": "player_112580", - "8": "player_120743", - "9": "player_193512", - "10": "player_121150", - "11": null, - "12": null, - "13": null, - "14": null, - "15": null, - "16": null, - "17": null, - "18": null - }, - "tacticalsubstitutes": [ - ], - "bonusSelected": null, - "nbPlayers": 10 - } -} diff --git a/src/test/resources/__files/mpg.coach.20190202.json b/src/test/resources/__files/mpg.coach.20190202.json deleted file mode 100644 index a74a86a..0000000 --- a/src/test/resources/__files/mpg.coach.20190202.json +++ /dev/null @@ -1,981 +0,0 @@ -{ - "data": { - "champid": 1, - "matchId": "mpg_match_KX24XMUG_1_4_5", - "realday": 24, - "stadium": "Gwenn ha du", - "dateMatch": 1549655100000, - "timetogame": 524296174, - "teamHome": { - "id": "mpg_team_KX24XMUG$$mpg_user_600737", - "name": "Ruz ha du", - "abbr": "RHD", - "coach": "Celine", - "jersey": { - "id": 0, - "sponsor": 3, - "zones": { - "z1": "#ff2626" - } - } - }, - "teamAway": { - "id": "mpg_team_KX24XMUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#000000" - } - } - }, - "players": [ - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 37, - "ultraPosition": 32 - }, - { - "firstname": "Kenny", - "lastname": "Lala", - "playerid": "player_92527", - "teamid": "153", - "position": 2, - "quotation": 19, - "ultraPosition": 21 - }, - { - "firstname": "Christophe", - "lastname": "Jallet", - "playerid": "player_38265", - "teamid": "1395", - "position": 2, - "quotation": 9, - "ultraPosition": 21 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 22, - "ultraPosition": 32 - }, - { - "firstname": "François", - "lastname": "Kamano", - "playerid": "player_193512", - "teamid": "140", - "position": 4, - "quotation": 20, - "ultraPosition": 40 - }, - { - "firstname": "Walter", - "lastname": "Benítez", - "playerid": "player_121709", - "teamid": "1395", - "position": 1, - "quotation": 25, - "ultraPosition": 10 - }, - { - "firstname": null, - "lastname": "Pablo", - "playerid": "player_116504", - "teamid": "140", - "position": 2, - "quotation": 17, - "ultraPosition": 20 - }, - { - "firstname": "Marco", - "lastname": "Verratti", - "playerid": "player_61170", - "teamid": "149", - "position": 3, - "quotation": 18, - "ultraPosition": 31 - }, - { - "firstname": "Ambroise", - "lastname": "Oyongo", - "playerid": "player_180562", - "teamid": "147", - "position": 2, - "quotation": 14, - "ultraPosition": 21 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 15, - "ultraPosition": 40 - }, - { - "firstname": "Pierrick", - "lastname": "Capelle", - "playerid": "player_112580", - "teamid": "2128", - "position": 3, - "quotation": 15, - "ultraPosition": 32 - }, - { - "firstname": "Adrien", - "lastname": "Rabiot", - "playerid": "player_120743", - "teamid": "149", - "position": 3, - "quotation": 10, - "ultraPosition": 31 - }, - { - "firstname": "Mouez", - "lastname": "Hassen", - "playerid": "player_115357", - "teamid": "1395", - "position": 1, - "quotation": 2, - "ultraPosition": 10 - }, - { - "firstname": "Virgile", - "lastname": "Pinson", - "playerid": "player_464192", - "teamid": "1423", - "position": 4, - "quotation": 3, - "ultraPosition": 40 - }, - { - "firstname": "Clement", - "lastname": "Depres", - "playerid": "player_200671", - "teamid": "2336", - "position": 4, - "quotation": 12, - "ultraPosition": 40 - }, - { - "firstname": null, - "lastname": "Thiago Maia", - "playerid": "player_199409", - "teamid": "429", - "position": 3, - "quotation": 16, - "ultraPosition": 31 - }, - { - "firstname": "Bouna", - "lastname": "Sarr", - "playerid": "player_102760", - "teamid": "144", - "position": 3, - "quotation": 16, - "ultraPosition": 32 - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tds": { - "update": "2019-02-01T08:35:41.706Z", - "player_79625": { - "pending": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_217319": { - "reported": 1 - }, - "player_15930": { - "injured": 1 - }, - "player_41795": { - "pending": 1 - }, - "player_219292": { - "reported": 1 - }, - "player_192292": { - "injured": 1 - }, - "player_461833": { - "injured": 1 - }, - "player_198065": { - "injured": 1 - }, - "player_73667": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_44898": { - "reported": 1 - }, - "player_37901": { - "injured": 1 - }, - "player_161039": { - "injured": 1 - }, - "player_100954": { - "injured": 1 - }, - "player_54413": { - "injured": 1 - }, - "player_244642": { - "injured": 1 - }, - "player_160985": { - }, - "player_197022": { - "injured": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_42416": { - "pending": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_80904": { - "injured": 1 - }, - "player_84366": { - "injured": 1 - }, - "player_194300": { - "injured": 1 - }, - "player_227163": { - "injured": 1 - }, - "player_217596": { - "injured": 1 - }, - "player_228361": { - "injured": 1 - }, - "player_218796": { - "injured": 1 - }, - "player_86413": { - }, - "player_20468": { - "injured": 1 - }, - "player_37776": { - "injured": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_193400": { - "injured": 1 - }, - "player_83279": { - "injured": 1 - }, - "player_461910": { - }, - "player_61170": { - "injured": 1 - }, - "player_74299": { - }, - "player_80357": { - }, - "player_54908": { - "injured": 1 - }, - "player_73879": { - "reported": 1 - }, - "player_61278": { - "injured": 1 - }, - "player_112580": { - "pending": 1 - }, - "player_40808": { - "reported": 1 - }, - "player_209335": { - "injured": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_116504": { - "reported": 1 - }, - "player_220110": { - "reported": 1 - }, - "player_193537": { - "injured": 1 - }, - "player_189791": { - "pending": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_44357": { - "reported": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_54772": { - "injured": 1 - }, - "player_50442": { - "injured": 1 - }, - "player_199409": { - }, - "player_85548": { - "pending": 1 - }, - "player_228170": { - "injured": 1 - }, - "player_242894": { - "injured": 1 - }, - "player_214472": { - }, - "player_58309": { - "injured": 1 - }, - "player_115851": { - "injured": 1 - }, - "player_164474": { - "reported": 1 - }, - "player_244182": { - "reported": 1 - }, - "player_86158": { - }, - "player_102744": { - "reported": 1 - }, - "player_102836": { - "reported": 1 - }, - "player_112654": { - "reported": 1 - }, - "player_120770": { - "reported": 1 - }, - "player_143685": { - "reported": 1 - }, - "player_169427": { - "reported": 1 - }, - "player_176501": { - "reported": 1 - }, - "player_178492": { - "reported": 1 - }, - "player_193409": { - "reported": 1 - }, - "player_203368": { - "reported": 1 - }, - "player_208569": { - "reported": 1 - }, - "player_216438": { - "reported": 1 - }, - "player_220943": { - "reported": 1 - }, - "player_226183": { - "reported": 1 - }, - "player_37758": { - "reported": 1 - }, - "player_37995": { - "reported": 1 - }, - "player_40809": { - "reported": 1 - }, - "player_436658": { - "reported": 1 - }, - "player_439711": { - "reported": 1 - }, - "player_457225": { - "reported": 1 - }, - "player_471213": { - "reported": 1 - }, - "player_472187": { - "reported": 1 - }, - "player_50326": { - "reported": 1 - }, - "player_60189": { - "reported": 1 - }, - "player_89179": { - "reported": 1 - }, - "player_92724": { - "reported": 1 - }, - "player_97443": { - "reported": 1 - }, - "player_114517": { - "reported": 1 - }, - "player_12057": { - "reported": 1 - }, - "player_121524": { - "reported": 1 - }, - "player_166965": { - "reported": 1 - }, - "player_174892": { - "reported": 1 - }, - "player_176443": { - "reported": 1 - }, - "player_180835": { - "reported": 1 - }, - "player_181439": { - "reported": 1 - }, - "player_184095": { - "reported": 1 - }, - "player_193512": { - "reported": 1 - }, - "player_195982": { - "reported": 1 - }, - "player_204715": { - "reported": 1 - }, - "player_204742": { - "reported": 1 - }, - "player_207756": { - "reported": 1 - }, - "player_210228": { - "reported": 1 - }, - "player_212851": { - "reported": 1 - }, - "player_220325": { - "reported": 1 - }, - "player_225702": { - "reported": 1 - }, - "player_27675": { - "reported": 1 - }, - "player_42713": { - "reported": 1 - }, - "player_433830": { - "reported": 1 - }, - "player_439205": { - "reported": 1 - }, - "player_457234": { - "reported": 1 - }, - "player_457235": { - "reported": 1 - }, - "player_48768": { - "reported": 1 - }, - "player_71797": { - "reported": 1 - }, - "player_102739": { - "reported": 1 - }, - "player_107925": { - "reported": 1 - }, - "player_12179": { - "reported": 1 - }, - "player_129478": { - "reported": 1 - }, - "player_144660": { - "reported": 1 - }, - "player_152865": { - "reported": 1 - }, - "player_156692": { - "reported": 1 - }, - "player_165803": { - "reported": 1 - }, - "player_189542": { - "reported": 1 - }, - "player_201562": { - "reported": 1 - }, - "player_205880": { - "reported": 1 - }, - "player_213200": { - "reported": 1 - }, - "player_213940": { - "reported": 1 - }, - "player_228292": { - "reported": 1 - }, - "player_232252": { - "reported": 1 - }, - "player_40511": { - "reported": 1 - }, - "player_423870": { - "reported": 1 - }, - "player_42714": { - "reported": 1 - }, - "player_45084": { - "reported": 1 - }, - "player_461827": { - "reported": 1 - }, - "player_464193": { - "reported": 1 - }, - "player_468490": { - "reported": 1 - }, - "player_468496": { - "reported": 1 - }, - "player_469319": { - "reported": 1 - }, - "player_50996": { - "reported": 1 - }, - "player_51525": { - "reported": 1 - }, - "player_55313": { - "reported": 1 - }, - "player_61741": { - "reported": 1 - }, - "player_68157": { - "reported": 1 - }, - "player_76008": { - "reported": 1 - }, - "player_80935": { - "reported": 1 - }, - "player_89038": { - "reported": 1 - }, - "player_103124": { - }, - "player_106320": { - "reported": 1 - }, - "player_116536": { - "reported": 1 - }, - "player_158496": { - "reported": 1 - }, - "player_163562": { - "reported": 1 - }, - "player_163793": { - "reported": 1 - }, - "player_165659": { - "reported": 1 - }, - "player_170409": { - "reported": 1 - }, - "player_172987": { - "reported": 1 - }, - "player_184449": { - "reported": 1 - }, - "player_193539": { - "reported": 1 - }, - "player_200722": { - "reported": 1 - }, - "player_204719": { - "reported": 1 - }, - "player_215046": { - "reported": 1 - }, - "player_216610": { - "reported": 1 - }, - "player_217872": { - "reported": 1 - }, - "player_219286": { - "reported": 1 - }, - "player_242890": { - "reported": 1 - }, - "player_247693": { - "reported": 1 - }, - "player_42518": { - "reported": 1 - }, - "player_432489": { - "reported": 1 - }, - "player_443202": { - "reported": 1 - }, - "player_460630": { - "reported": 1 - }, - "player_469192": { - "reported": 1 - }, - "player_471471": { - "reported": 1 - }, - "player_54771": { - "reported": 1 - }, - "player_60070": { - "reported": 1 - }, - "player_82184": { - "reported": 1 - }, - "player_82313": { - "reported": 1 - }, - "player_83758": { - "reported": 1 - }, - "player_88931": { - "reported": 1 - }, - "player_97288": { - "reported": 1 - }, - "player_228321": { - "injured": 1 - }, - "player_115357": { - "injured": 1 - }, - "player_141109": { - "injured": 1 - }, - "player_204120": { - "injured": 1 - }, - "player_20690": { - "suspended": 1 - }, - "player_95434": { - "suspended": 1 - }, - "player_205836": { - "injured": 1 - }, - "player_116152": { - "suspended": 1 - }, - "player_165112": { - "pending": 1 - }, - "player_176441": { - "injured": 1 - }, - "player_167074": { - "pending": 1 - }, - "player_111291": { - "pending": 1 - }, - "player_47434": { - "injured": 1 - }, - "player_109404": { - "injured": 1 - }, - "player_159039": { - "injured": 1 - }, - "player_166989": { - "injured": 1 - }, - "player_40815": { - "suspended": 1 - }, - "player_115327": { - "suspended": 1 - }, - "player_200671": { - "injured": 1 - }, - "player_120743": { - "injured": 1 - }, - "player_93127": { - "injured": 1 - }, - "player_85659": { - "injured": 1 - }, - "player_244842": { - "injured": 1 - }, - "player_51850": { - "injured": 1 - }, - "player_174528": { - "suspended": 1 - }, - "player_49396": { - "suspended": 1 - }, - "player_200958": { - "injured": 1 - }, - "player_462116": { - "injured": 1 - }, - "player_468489": { - "suspended": 1 - }, - "player_44138": { - "suspended": 1 - }, - "player_27671": { - "injured": 1 - }, - "player_105706": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Paris" - }, - "143": { - "name": "Lyon", - "status": "away", - "against": "Nice" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Dijon" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Montpellier" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Monaco" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Bordeaux" - }, - "150": { - "name": "Rennes", - "status": "home", - "against": "Saint Etienne" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Rennes" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Angers" - }, - "427": { - "name": "Toulouse", - "status": "home", - "against": "Reims" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Lille" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Guingamp" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Nîmes" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Amiens" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Lyon" - }, - "1423": { - "name": "Reims", - "status": "away", - "against": "Toulouse" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Caen" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Strasbourg" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Marseille" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Nantes" - } - }, - "composition": 343, - "playersOnPitch": { - "1": "player_121709", - "2": "player_92527", - "3": "player_180562", - "4": "player_116504", - "5": "player_95434", - "6": "player_231961", - "7": "player_120743", - "8": "player_102760", - "9": "player_193512", - "10": "player_200671", - "11": "player_121150", - "12": "player_38265", - "13": null, - "14": "player_199409", - "15": null, - "16": "player_464192", - "17": null, - "18": null - }, - "tacticalsubstitutes": [ - { - "subs": "player_38265", - "start": "player_116504", - "rating": 5 - }, - { - "subs": "player_199409", - "start": "player_102760", - "rating": 5 - }, - { - "subs": "player_464192", - "start": "player_121150", - "rating": 6 - } - ], - "bonusSelected": { - }, - "nbPlayers": 10 - } -} diff --git a/src/test/resources/__files/mpg.coach.20190211-Request.json b/src/test/resources/__files/mpg.coach.20190211-Request.json deleted file mode 100644 index 37e163a..0000000 --- a/src/test/resources/__files/mpg.coach.20190211-Request.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_121709", - "2": "player_92527", - "3": "player_92258", - "4": "player_241398", - "5": "player_95434", - "6": "player_231961", - "7": "player_217597", - "8": "player_120743", - "9": "player_193512", - "10": "player_200671", - "11": "player_96764", - "12": "player_45505", - "13": null, - "14": null, - "15": null, - "16": "player_121150", - "17": null, - "18": "player_115357" - }, - "composition": 343, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_KX24XMUG_1_5_4", - "realday": 25 -} diff --git a/src/test/resources/__files/mpg.coach.20190211.json b/src/test/resources/__files/mpg.coach.20190211.json deleted file mode 100644 index 8462766..0000000 --- a/src/test/resources/__files/mpg.coach.20190211.json +++ /dev/null @@ -1,535 +0,0 @@ -{ - "data": { - "champid": 1, - "matchId": "mpg_match_KX24XMUG_1_5_4", - "realday": 25, - "stadium": "The place to be arena", - "dateMatch": 1550259900000, - "timetogame": 338799366, - "teamHome": { - "id": "mpg_team_KX24XMUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#000000" - } - } - }, - "teamAway": { - "id": "mpg_team_KX24XMUG$$mpg_user_1662232", - "name": "Youyoufc", - "abbr": "YFC", - "coach": "Youenn", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#FFFFFF" - } - } - }, - "players": [ - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 29, - "ultraPosition": 32 - }, - { - "firstname": "Kenny", - "lastname": "Lala", - "playerid": "player_92527", - "teamid": "153", - "position": 2, - "quotation": 24, - "ultraPosition": 21 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25, - "ultraPosition": 32 - }, - { - "firstname": "François", - "lastname": "Kamano", - "playerid": "player_193512", - "teamid": "140", - "position": 4, - "quotation": 17, - "ultraPosition": 40 - }, - { - "firstname": "Walter", - "lastname": "Benítez", - "playerid": "player_121709", - "teamid": "1395", - "position": 1, - "quotation": 24, - "ultraPosition": 10 - }, - { - "firstname": "Marco", - "lastname": "Verratti", - "playerid": "player_61170", - "teamid": "149", - "position": 3, - "quotation": 15, - "ultraPosition": 31 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 15, - "ultraPosition": 40 - }, - { - "firstname": "Pierrick", - "lastname": "Capelle", - "playerid": "player_112580", - "teamid": "2128", - "position": 3, - "quotation": 14, - "ultraPosition": 32 - }, - { - "firstname": "Adrien", - "lastname": "Rabiot", - "playerid": "player_120743", - "teamid": "149", - "position": 3, - "quotation": 8, - "ultraPosition": 31 - }, - { - "firstname": "Mouez", - "lastname": "Hassen", - "playerid": "player_115357", - "teamid": "1395", - "position": 1, - "quotation": 2, - "ultraPosition": 10 - }, - { - "firstname": "Clement", - "lastname": "Depres", - "playerid": "player_200671", - "teamid": "2336", - "position": 4, - "quotation": 12, - "ultraPosition": 40 - }, - { - "firstname": "M'Baye", - "lastname": "Niang", - "playerid": "player_96764", - "teamid": "150", - "position": 4, - "quotation": 13, - "ultraPosition": 40 - }, - { - "firstname": "Oussama", - "lastname": "Haddadi", - "playerid": "player_241398", - "teamid": "2130", - "position": 2, - "quotation": 12, - "ultraPosition": 21 - }, - { - "firstname": "Mathieu", - "lastname": "Cafaro", - "playerid": "player_217597", - "teamid": "1423", - "position": 3, - "quotation": 17, - "ultraPosition": 32 - }, - { - "firstname": "Loïck", - "lastname": "Landre", - "playerid": "player_92258", - "teamid": "2336", - "position": 2, - "quotation": 14, - "ultraPosition": 20 - }, - { - "firstname": "Romain", - "lastname": "Thomas", - "playerid": "player_45505", - "teamid": "2128", - "position": 2, - "quotation": 15, - "ultraPosition": 20 - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tds": { - "update": "2019-02-11T08:13:53.107Z", - "player_79625": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_217319": { - "injured": 1 - }, - "player_15930": { - "injured": 1 - }, - "player_41795": { - "injured": 1 - }, - "player_461833": { - "injured": 1 - }, - "player_55948": { - "injured": 1 - }, - "player_73667": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_200671": { - "injured": 1 - }, - "player_37901": { - "injured": 1 - }, - "player_173085": { - "injured": 1 - }, - "player_12179": { - "injured": 1 - }, - "player_102385": { - "injured": 1 - }, - "player_161039": { - "injured": 1 - }, - "player_116627": { - "injured": 1 - }, - "player_100954": { - "injured": 1 - }, - "player_192785": { - "injured": 1 - }, - "player_154011": { - "injured": 1 - }, - "player_244642": { - "injured": 1 - }, - "player_141109": { - "injured": 1 - }, - "player_79917": { - "injured": 1 - }, - "player_228321": { - "injured": 1 - }, - "player_174908": { - "injured": 1 - }, - "player_80904": { - "injured": 1 - }, - "player_129478": { - "injured": 1 - }, - "player_51850": { - "injured": 1 - }, - "player_244842": { - "injured": 1 - }, - "player_199666": { - "injured": 1 - }, - "player_84366": { - "injured": 1 - }, - "player_194300": { - "injured": 1 - }, - "player_227163": { - "injured": 1 - }, - "player_217596": { - "injured": 1 - }, - "player_228361": { - "injured": 1 - }, - "player_61741": { - "injured": 1 - }, - "player_86413": { - "injured": 1 - }, - "player_37776": { - "injured": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_193400": { - "injured": 1 - }, - "player_461910": { - "injured": 1 - }, - "player_173046": { - "injured": 1 - }, - "player_74299": { - "injured": 1 - }, - "player_54908": { - "injured": 1 - }, - "player_61278": { - "injured": 1 - }, - "player_112580": { - "injured": 1 - }, - "player_85659": { - "injured": 1 - }, - "player_209335": { - "injured": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - "injured": 1 - }, - "player_193537": { - "injured": 1 - }, - "player_189791": { - "injured": 1 - }, - "player_37938": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_54772": { - "injured": 1 - }, - "player_50442": { - "injured": 1 - }, - "player_228170": { - "injured": 1 - }, - "player_242894": { - "injured": 1 - }, - "player_437505": { - "injured": 1 - }, - "player_58309": { - "injured": 1 - }, - "player_439711": { - "injured": 1 - }, - "player_425614": { - "injured": 1 - }, - "player_115851": { - "injured": 1 - }, - "player_68157": { - "injured": 1 - }, - "player_244182": { - "injured": 1 - }, - "player_80935": { - "suspended": 1 - }, - "player_40720": { - "injured": 1 - }, - "player_93605": { - "injured": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "home", - "against": "Toulouse" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Guingamp" - }, - "144": { - "name": "Marseille", - "status": "home", - "against": "Amiens" - }, - "146": { - "name": "Monaco", - "status": "home", - "against": "Nantes" - }, - "147": { - "name": "Montpellier", - "status": "away", - "against": "Lille" - }, - "149": { - "name": "Paris", - "status": "away", - "against": "Saint Etienne" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Reims" - }, - "152": { - "name": "Saint Etienne", - "status": "home", - "against": "Paris" - }, - "153": { - "name": "Strasbourg", - "status": "away", - "against": "Caen" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Bordeaux" - }, - "428": { - "name": "Guingamp", - "status": "away", - "against": "Lyon" - }, - "429": { - "name": "Lille", - "status": "home", - "against": "Montpellier" - }, - "430": { - "name": "Nantes", - "status": "away", - "against": "Monaco" - }, - "1028": { - "name": "Caen", - "status": "home", - "against": "Strasbourg" - }, - "1395": { - "name": "Nice", - "status": "away", - "against": "Angers" - }, - "1423": { - "name": "Reims", - "status": "home", - "against": "Rennes" - }, - "1430": { - "name": "Amiens", - "status": "away", - "against": "Marseille" - }, - "2128": { - "name": "Angers", - "status": "home", - "against": "Nice" - }, - "2130": { - "name": "Dijon", - "status": "away", - "against": "Nîmes" - }, - "2336": { - "name": "Nîmes", - "status": "home", - "against": "Dijon" - } - }, - "composition": 343, - "playersOnPitch": { - "1": "player_121709", - "2": "player_92527", - "3": "player_92258", - "4": "player_241398", - "5": "player_95434", - "6": "player_231961", - "7": "player_217597", - "8": "player_120743", - "9": "player_193512", - "10": "player_200671", - "11": "player_96764", - "12": "player_45505", - "13": null, - "14": null, - "15": null, - "16": "player_121150", - "17": null, - "18": "player_115357" - }, - "tacticalsubstitutes": [ - { - "subs": "player_121150", - "start": "player_200671", - "rating": 5 - }, - { - "subs": "player_45505", - "start": "player_92258", - "rating": 5 - } - ], - "bonusSelected": { - }, - "nbPlayers": 10 - } -} diff --git a/src/test/resources/__files/mpg.coach.20190217.json b/src/test/resources/__files/mpg.coach.20190217.json deleted file mode 100644 index 18784b0..0000000 --- a/src/test/resources/__files/mpg.coach.20190217.json +++ /dev/null @@ -1,664 +0,0 @@ -{ - "data": { - "champid": 1, - "matchId": "mpg_match_KX24XMUG_1_6_1", - "realday": 26, - "stadium": "Entoucahonteuleussouhaite Arena", - "dateMatch": 1550858400000, - "timetogame": 428264869, - "teamHome": { - "id": "mpg_team_KX24XMUG$$mpg_user_35635", - "name": "Seum 81", - "abbr": "😤", - "coach": "Bertrand", - "jersey": { - "id": 3, - "zones": { - "z7": "#FFFFFF", - "z2": "#ff2626", - "z3": "#1f0078", - "z4": "#FFFFFF", - "z5": "#ff2626", - "z6": "#1f0078", - "z1": "#ff2626", - "z8": "#ff2626", - "z9": "#1f0078" - }, - "sponsor": 4 - } - }, - "teamAway": { - "id": "mpg_team_KX24XMUG$$mpg_user_955966", - "name": "Axel3rd Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 7, - "zones": { - "z1": "#000000" - } - } - }, - "players": [ - { - "firstname": "Florian", - "lastname": "Thauvin", - "playerid": "player_95434", - "teamid": "144", - "position": 3, - "quotation": 29, - "ultraPosition": 32 - }, - { - "firstname": "Kenny", - "lastname": "Lala", - "playerid": "player_92527", - "teamid": "153", - "position": 2, - "quotation": 24, - "ultraPosition": 21 - }, - { - "firstname": "Houssem", - "lastname": "Aouar", - "playerid": "player_231961", - "teamid": "143", - "position": 3, - "quotation": 25, - "ultraPosition": 32 - }, - { - "firstname": "François", - "lastname": "Kamano", - "playerid": "player_193512", - "teamid": "140", - "position": 4, - "quotation": 17, - "ultraPosition": 40 - }, - { - "firstname": "Walter", - "lastname": "Benítez", - "playerid": "player_121709", - "teamid": "1395", - "position": 1, - "quotation": 24, - "ultraPosition": 10 - }, - { - "firstname": "Marco", - "lastname": "Verratti", - "playerid": "player_61170", - "teamid": "149", - "position": 3, - "quotation": 15, - "ultraPosition": 31 - }, - { - "firstname": "Renaud", - "lastname": "Ripart", - "playerid": "player_121150", - "teamid": "2336", - "position": 4, - "quotation": 15, - "ultraPosition": 40 - }, - { - "firstname": "Pierrick", - "lastname": "Capelle", - "playerid": "player_112580", - "teamid": "2128", - "position": 3, - "quotation": 14, - "ultraPosition": 32 - }, - { - "firstname": "Mouez", - "lastname": "Hassen", - "playerid": "player_115357", - "teamid": "1395", - "position": 1, - "quotation": 2, - "ultraPosition": 10 - }, - { - "firstname": "Clement", - "lastname": "Depres", - "playerid": "player_200671", - "teamid": "2336", - "position": 4, - "quotation": 12, - "ultraPosition": 40 - }, - { - "firstname": "M'Baye", - "lastname": "Niang", - "playerid": "player_96764", - "teamid": "150", - "position": 4, - "quotation": 13, - "ultraPosition": 40 - }, - { - "firstname": "Oussama", - "lastname": "Haddadi", - "playerid": "player_241398", - "teamid": "2130", - "position": 2, - "quotation": 12, - "ultraPosition": 21 - }, - { - "firstname": "Mathieu", - "lastname": "Cafaro", - "playerid": "player_217597", - "teamid": "1423", - "position": 3, - "quotation": 17, - "ultraPosition": 32 - }, - { - "firstname": "Loïck", - "lastname": "Landre", - "playerid": "player_92258", - "teamid": "2336", - "position": 2, - "quotation": 14, - "ultraPosition": 20 - }, - { - "firstname": "Romain", - "lastname": "Thomas", - "playerid": "player_45505", - "teamid": "2128", - "position": 2, - "quotation": 15, - "ultraPosition": 20 - }, - { - "firstname": "Jimmy", - "lastname": "Durmaz", - "playerid": "player_61704", - "teamid": "427", - "position": 3, - "quotation": 10, - "ultraPosition": 32 - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tds": { - "update": "2019-02-15T14:40:16.144Z", - "player_232240": { - "pending": 1 - }, - "player_79625": { - "injured": 1 - }, - "player_247400": { - "injured": 1 - }, - "player_217319": { - "injured": 1 - }, - "player_15930": { - "pending": 1 - }, - "player_41795": { - "pending": 1 - }, - "player_461833": { - }, - "player_55948": { - }, - "player_73667": { - "injured": 1 - }, - "player_174846": { - "injured": 1 - }, - "player_200671": { - "injured": 1 - }, - "player_37901": { - "pending": 1 - }, - "player_173085": { - "injured": 1 - }, - "player_12179": { - }, - "player_50326": { - "injured": 1 - }, - "player_161039": { - }, - "player_116627": { - }, - "player_100954": { - "pending": 1 - }, - "player_192785": { - }, - "player_154011": { - "pending": 1 - }, - "player_244642": { - "injured": 1 - }, - "player_141109": { - }, - "player_79917": { - "injured": 1 - }, - "player_228321": { - "injured": 1 - }, - "player_174908": { - "pending": 1 - }, - "player_80904": { - "injured": 1 - }, - "player_129478": { - "injured": 1 - }, - "player_51850": { - "pending": 1 - }, - "player_244842": { - "pending": 1 - }, - "player_199666": { - }, - "player_84366": { - "injured": 1 - }, - "player_194300": { - }, - "player_227163": { - "injured": 1 - }, - "player_217596": { - "pending": 1 - }, - "player_228361": { - "injured": 1 - }, - "player_61741": { - }, - "player_92527": { - "pending": 1 - }, - "player_86413": { - "injured": 1 - }, - "player_37776": { - "injured": 1 - }, - "player_39905": { - "injured": 1 - }, - "player_193400": { - "injured": 1 - }, - "player_461910": { - "injured": 1 - }, - "player_173046": { - "injured": 1 - }, - "player_74299": { - }, - "player_54908": { - "pending": 1 - }, - "player_61278": { - "injured": 1 - }, - "player_112580": { - "injured": 1 - }, - "player_85659": { - "injured": 1 - }, - "player_209335": { - "injured": 1 - }, - "player_51394": { - "injured": 1 - }, - "player_220110": { - "injured": 1 - }, - "player_193537": { - "injured": 1 - }, - "player_189791": { - }, - "player_37938": { - "injured": 1 - }, - "player_226949": { - "injured": 1 - }, - "player_54772": { - "injured": 1 - }, - "player_50442": { - "injured": 1 - }, - "player_228170": { - "injured": 1 - }, - "player_242894": { - }, - "player_437505": { - }, - "player_58309": { - "injured": 1 - }, - "player_425614": { - "injured": 1 - }, - "player_115851": { - }, - "player_68157": { - "injured": 1 - }, - "player_244182": { - }, - "player_80935": { - "suspended": 1 - }, - "player_37832": { - "injured": 1 - }, - "player_219296": { - "injured": 1 - }, - "player_432649": { - "injured": 1 - }, - "player_44488": { - "injured": 1 - }, - "player_102739": { - "injured": 1 - }, - "player_50996": { - "injured": 1 - }, - "player_40511": { - "injured": 1 - }, - "player_55313": { - "injured": 1 - }, - "player_228292": { - "injured": 1 - }, - "player_461827": { - "injured": 1 - }, - "player_244136": { - "injured": 1 - }, - "player_102732": { - "injured": 1 - }, - "player_88036": { - "injured": 1 - }, - "player_97442": { - "injured": 1 - }, - "player_82642": { - "injured": 1 - }, - "player_92559": { - "injured": 1 - }, - "player_54413": { - "injured": 1 - }, - "player_449718": { - "injured": 1 - }, - "player_456355": { - "injured": 1 - }, - "player_199375": { - "injured": 1 - }, - "player_225702": { - "suspended": 1 - }, - "player_162654": { - "suspended": 1 - }, - "player_51090": { - }, - "player_26894": { - }, - "player_197022": { - "injured": 1 - }, - "player_85548": { - "pending": 1 - }, - "player_184095": { - "pending": 1 - }, - "player_116504": { - "injured": 1 - }, - "player_436658": { - "injured": 1 - }, - "player_44357": { - "injured": 1 - }, - "player_49887": { - "pending": 1 - }, - "player_40815": { - "injured": 1 - }, - "player_161950": { - "pending": 1 - }, - "player_170409": { - "suspended": 1 - }, - "player_40720": { - "injured": 1 - }, - "player_20468": { - "injured": 1 - }, - "player_120743": { - "pending": 1 - }, - "player_93605": { - "pending": 1 - }, - "player_159967": { - }, - "player_232185": { - "pending": 1 - }, - "player_210456": { - "pending": 1 - }, - "player_147577": { - "pending": 1 - }, - "player_228322": { - "pending": 1 - }, - "player_145221": { - "suspended": 1 - }, - "player_204123": { - "injured": 1 - }, - "player_172987": { - "suspended": 1 - }, - "player_103155": { - "suspended": 1 - }, - "player_195982": { - "injured": 1 - }, - "player_73965": { - "injured": 1 - }, - "player_68862": { - "pending": 1 - }, - "player_115327": { - "pending": 1 - } - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Nantes" - }, - "143": { - "name": "Lyon", - "status": "away", - "against": "Monaco" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Rennes" - }, - "146": { - "name": "Monaco", - "status": "home", - "against": "Lyon" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Reims" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Nîmes" - }, - "150": { - "name": "Rennes", - "status": "home", - "against": "Marseille" - }, - "152": { - "name": "Saint Etienne", - "status": "away", - "against": "Dijon" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Lille" - }, - "427": { - "name": "Toulouse", - "status": "home", - "against": "Caen" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Angers" - }, - "429": { - "name": "Lille", - "status": "away", - "against": "Strasbourg" - }, - "430": { - "name": "Nantes", - "status": "home", - "against": "Bordeaux" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Toulouse" - }, - "1395": { - "name": "Nice", - "status": "away", - "against": "Amiens" - }, - "1423": { - "name": "Reims", - "status": "away", - "against": "Montpellier" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Nice" - }, - "2128": { - "name": "Angers", - "status": "away", - "against": "Guingamp" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Saint Etienne" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Paris" - } - }, - "composition": 343, - "playersOnPitch": { - "1": "player_121709", - "2": "player_92527", - "3": "player_92258", - "4": "player_45505", - "5": "player_95434", - "6": "player_231961", - "7": "player_217597", - "8": "player_61704", - "9": "player_193512", - "10": "player_200671", - "11": "player_96764", - "12": null, - "13": null, - "14": null, - "15": null, - "16": "player_121150", - "17": null, - "18": "player_115357" - }, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "nbPlayers": 10 - } -} diff --git a/src/test/resources/__files/mpg.coach.KJVB6L7C.20190807-Request.json b/src/test/resources/__files/mpg.coach.KJVB6L7C.20190807-Request.json deleted file mode 100644 index 695db57..0000000 --- a/src/test/resources/__files/mpg.coach.KJVB6L7C.20190807-Request.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_37096", - "2": "player_40868", - "3": "player_219924", - "4": "player_108156", - "5": "player_203368", - "6": "player_54484", - "7": "player_217593", - "8": "player_206325", - "9": "player_116216", - "10": "player_102057", - "11": "player_94924", - "12": "player_58822", - "13": "player_39487", - "14": "player_184341", - "15": "player_89274", - "16": "player_44346", - "17": "player_213345", - "18": "player_38533" - }, - "composition": 532, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_KJVB6L7C_3_1_1", - "realday": 1 -} diff --git a/src/test/resources/__files/mpg.coach.KJVB6L7C.20190807.json b/src/test/resources/__files/mpg.coach.KJVB6L7C.20190807.json deleted file mode 100644 index f938d66..0000000 --- a/src/test/resources/__files/mpg.coach.KJVB6L7C.20190807.json +++ /dev/null @@ -1,525 +0,0 @@ -{ - "data": { - "realday": 1, - "dateMatch": 1565377200000, - "timetogame": 185108661, - "champid": 2, - "matchId": "mpg_match_KJVB6L7C_3_1_1", - "stadium": "At The Pyramids", - "teamHome": { - "id": "mpg_team_KJVB6L7C$$mpg_user_306874", - "userId": "mpg_user_306874", - "name": "Salah Pas Fait", - "abbr": "SPF", - "coach": "Nico", - "jersey": { - "id": 2, - "zones": { - "z6": "#FFFFFF", - "z2": "#ff2626", - "z3": "#FFFFFF", - "z4": "#ff2626", - "z5": "#FFFFFF", - "z1": "#ff2626", - "z7": "#ff2626" - }, - "sponsor": 3 - }, - "jerseyHome": "jersey_backup_2_ed9bb436b2cd08fc7953a80408970e77", - "jerseyAway": "jersey_0_1561646533972", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_2_ed9bb436b2cd08fc7953a80408970e77.png" - }, - "teamAway": { - "id": "mpg_team_KJVB6L7C$$mpg_user_1450718", - "userId": "mpg_user_1450718", - "name": "Dukes of Hazard", - "abbr": "DOH", - "coach": "Sid", - "jersey": { - "id": 0, - "sponsor": 10, - "zones": { - "z1": "#ff2626" - } - }, - "jerseyHome": "jersey_backup_0_8728634eb58bcbfabe2bffc2f68c44f5", - "jerseyAway": "jersey_backup_0_8728634eb58bcbfabe2bffc2f68c44f5", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_0_8728634eb58bcbfabe2bffc2f68c44f5.png" - }, - "nbPlayers": 10, - "players": [ - { - "firstname": "Gerard", - "lastname": "Deulofeu", - "playerid": "player_94924", - "teamid": "57", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Mateo", - "lastname": "Kovacic", - "playerid": "player_91651", - "teamid": "8", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Jota", - "playerid": "player_89274", - "teamid": "7", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Josip", - "lastname": "Drmic", - "playerid": "player_81048", - "teamid": "45", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Olivier", - "lastname": "Giroud", - "playerid": "player_44346", - "teamid": "8", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Moussa", - "lastname": "Djenepo", - "playerid": "player_431131", - "teamid": "20", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Erik", - "lastname": "Pieters", - "playerid": "player_39487", - "teamid": "90", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Rui Patrício", - "playerid": "player_38533", - "teamid": "39", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "lastFiveRate": { - } - }, - { - "firstname": "Lukasz", - "lastname": "Fabianski", - "playerid": "player_37096", - "teamid": "21", - "position": 1, - "quotation": 25, - "ultraPosition": 10, - "lastFiveRate": { - } - }, - { - "firstname": "Tanguy", - "lastname": "Ndombele", - "playerid": "player_231372", - "teamid": "6", - "position": 3, - "quotation": 22, - "ultraPosition": 31, - "lastFiveRate": { - } - }, - { - "firstname": "Issa", - "lastname": "Diop", - "playerid": "player_219924", - "teamid": "21", - "position": 2, - "quotation": 21, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": "Pablo", - "lastname": "Fornals", - "playerid": "player_217593", - "teamid": "21", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Wesley", - "playerid": "player_213345", - "teamid": "7", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Tom", - "lastname": "Heaton", - "playerid": "player_21205", - "teamid": "7", - "position": 1, - "quotation": 18, - "ultraPosition": 10, - "lastFiveRate": { - } - }, - { - "firstname": "Oleksandr", - "lastname": "Zinchenko", - "playerid": "player_206325", - "teamid": "43", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "lastFiveRate": { - } - }, - { - "firstname": "Frederic", - "lastname": "Guilbert", - "playerid": "player_203368", - "teamid": "7", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Daniel", - "lastname": "James", - "playerid": "player_200617", - "teamid": "1", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Anwar", - "lastname": "El Ghazi", - "playerid": "player_193488", - "teamid": "7", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Mason", - "lastname": "Mount", - "playerid": "player_184341", - "teamid": "8", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Angeliño", - "playerid": "player_145235", - "teamid": "43", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Leandro", - "lastname": "Trossard", - "playerid": "player_116216", - "teamid": "36", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Raúl", - "lastname": "Jiménez", - "playerid": "player_102057", - "teamid": "39", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Jannik", - "lastname": "Vestergaard", - "playerid": "player_93100", - "teamid": "20", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Cédric Soares", - "playerid": "player_58822", - "teamid": "20", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Cuco Martina", - "playerid": "player_56192", - "teamid": "11", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Kiko Femenía", - "playerid": "player_54484", - "teamid": "57", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "José", - "lastname": "Holebas", - "playerid": "player_40868", - "teamid": "57", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Björn", - "lastname": "Engels", - "playerid": "player_108156", - "teamid": "7", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": "Craig", - "lastname": "Dawson", - "playerid": "player_60232", - "teamid": "57", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": "Richard", - "lastname": "Stearman", - "playerid": "player_18832", - "teamid": "49", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - } - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 50, - "fridayBrief": true, - "tacticalsubstitutes": [ - ], - "composition": 532, - "playersOnPitch": { - "1": "player_21205", - "2": "player_203368", - "3": "player_56192", - "4": "player_39487", - "5": "player_54484", - "6": "player_40868", - "7": "player_431131", - "8": "player_217593", - "9": "player_91651", - "10": "player_102057", - "11": "player_94924", - "12": null, - "13": null, - "14": null, - "15": null, - "16": null, - "17": null, - "18": null - }, - "bonusSelected": { - }, - "teams": { - "1": { - "name": "Man. United", - "status": "home", - "against": "Chelsea" - }, - "3": { - "name": "Arsenal", - "status": "away", - "against": "Newcastle" - }, - "4": { - "name": "Newcastle", - "status": "home", - "against": "Arsenal" - }, - "6": { - "name": "Tottenham", - "status": "home", - "against": "Aston Villa" - }, - "7": { - "name": "Aston Villa", - "status": "away", - "against": "Tottenham" - }, - "8": { - "name": "Chelsea", - "status": "away", - "against": "Man. United" - }, - "11": { - "name": "Everton", - "status": "away", - "against": "Crystal Palace" - }, - "13": { - "name": "Leicester", - "status": "home", - "against": "Wolverhampton" - }, - "14": { - "name": "Liverpool", - "status": "home", - "against": "Norwich" - }, - "20": { - "name": "Southampton", - "status": "away", - "against": "Burnley" - }, - "21": { - "name": "West Ham", - "status": "home", - "against": "Man. City" - }, - "31": { - "name": "Crystal Palace", - "status": "home", - "against": "Everton" - }, - "36": { - "name": "Brighton", - "status": "away", - "against": "Watford" - }, - "39": { - "name": "Wolverhampton", - "status": "away", - "against": "Leicester" - }, - "43": { - "name": "Man. City", - "status": "away", - "against": "West Ham" - }, - "45": { - "name": "Norwich", - "status": "away", - "against": "Liverpool" - }, - "49": { - "name": "Sheffield", - "status": "away", - "against": "Bournemouth" - }, - "57": { - "name": "Watford", - "status": "home", - "against": "Brighton" - }, - "90": { - "name": "Burnley", - "status": "home", - "against": "Southampton" - }, - "91": { - "name": "Bournemouth", - "status": "home", - "against": "Sheffield" - } - }, - "tds": { - "update": "2019-07-15T13:06:56.421Z" - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190724.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20190724.json deleted file mode 100644 index b2cd82e..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190724.json +++ /dev/null @@ -1,485 +0,0 @@ -{ - "data": { - "realday": 1, - "dateMatch": 1564164000000, - "timetogame": 190308630, - "champid": 4, - "matchId": "mpg_match_LH9HKBTD_1_1_3", - "stadium": "Square des Princesses", - "teamHome": { - "id": "mpg_team_LH9HKBTD$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Minus Football Club", - "abbr": "AMC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_0_7acc667ae9a3132fe126aa180efed4ce", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "teamAway": { - "id": "mpg_team_LH9HKBTD$$mpg_user_1567579", - "userId": "mpg_user_1567579", - "name": "Poney Football Club", - "abbr": "⚽🐎", - "coach": "Mat", - "jersey": { - "id": 0, - "sponsor": 0, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_0_684a79e30211d104fa665657255e1256", - "jerseyAway": "jersey_backup_0_684a79e30211d104fa665657255e1256", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_0_684a79e30211d104fa665657255e1256.png" - }, - "nbPlayers": 10, - "players": [ - { - "firstname": "Matteo", - "lastname": "Tramoni", - "playerid": "player_429453", - "teamid": "1163", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Valentin", - "lastname": "Wojtkowiak", - "playerid": "player_234771", - "teamid": "142", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": "Rayan", - "lastname": "Senhadji", - "playerid": "player_229480", - "teamid": "693", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": "Valentin", - "lastname": "Jacob", - "playerid": "player_193276", - "teamid": "1245", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Abdoulkader", - "lastname": "Thiam", - "playerid": "player_184083", - "teamid": "6785", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "lastFiveRate": { - } - }, - { - "firstname": "Gauthier", - "lastname": "Gallon", - "playerid": "player_167455", - "teamid": "154", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "lastFiveRate": { - } - }, - { - "firstname": "Jerome", - "lastname": "Phojo", - "playerid": "player_116596", - "teamid": "1983", - "position": 2, - "quotation": 20, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Laurent", - "lastname": "Abergel", - "playerid": "player_107258", - "teamid": "148", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Florian", - "lastname": "Martin", - "playerid": "player_84462", - "teamid": "2338", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Ronny", - "lastname": "Rodelin", - "playerid": "player_50996", - "teamid": "428", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Leo", - "lastname": "Leroy", - "playerid": "player_477368", - "teamid": "921", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Oussama", - "lastname": "Abdeldjelil", - "playerid": "player_474860", - "teamid": "2338", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Ibrahim", - "lastname": "Sissoko", - "playerid": "player_454702", - "teamid": "1245", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "David", - "lastname": "Gomis", - "playerid": "player_430993", - "teamid": "1983", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Hicham", - "lastname": "Benkaid", - "playerid": "player_245637", - "teamid": "6785", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Oualid", - "lastname": "El Hajjam", - "playerid": "player_228291", - "teamid": "154", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": null, - "lastname": "Vincent Thill", - "playerid": "player_225190", - "teamid": "6785", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "lastFiveRate": { - } - }, - { - "firstname": "Arial", - "lastname": "Mendy", - "playerid": "player_222853", - "teamid": "142", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Simon", - "lastname": "Banza", - "playerid": "player_219969", - "teamid": "142", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Tinotenda", - "lastname": "Kadewere", - "playerid": "player_215669", - "teamid": "141", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Sidy", - "lastname": "Sarr", - "playerid": "player_210187", - "teamid": "921", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "lastFiveRate": { - } - }, - { - "firstname": "Alois", - "lastname": "Confais", - "playerid": "player_209172", - "teamid": "920", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "lastFiveRate": { - } - }, - { - "firstname": "Kenji-Van", - "lastname": "Boto", - "playerid": "player_199519", - "teamid": "138", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "lastFiveRate": { - } - }, - { - "firstname": "Remy", - "lastname": "Boissier", - "playerid": "player_177449", - "teamid": "920", - "position": 3, - "quotation": 4, - "ultraPosition": 31, - "lastFiveRate": { - } - }, - { - "firstname": "Adrian", - "lastname": "Grbic", - "playerid": "player_173235", - "teamid": "1983", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Joris", - "lastname": "Correa", - "playerid": "player_149993", - "teamid": "6785", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - } - }, - { - "firstname": "Jérémy", - "lastname": "Vachoux", - "playerid": "player_115326", - "teamid": "6785", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "lastFiveRate": { - } - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - ], - "composition": 343, - "playersOnPitch": { - "1": "player_167455", - "2": "player_116596", - "3": "player_199519", - "4": "player_107258", - "5": "player_193276", - "6": "player_84462", - "7": "player_429453", - "8": "player_210187", - "9": "player_245637", - "10": "player_215669", - "11": "player_50996", - "12": "player_454702", - "13": "player_149993", - "14": "player_222853", - "15": "player_474860", - "16": "player_430993", - "17": "player_219969", - "18": "player_115326" - }, - "bonusSelected": { - }, - "teams": { - "138": { - "name": "Auxerre", - "status": "away", - "against": "Rodez" - }, - "141": { - "name": "Le Havre", - "status": "away", - "against": "Ajaccio" - }, - "142": { - "name": "Lens", - "status": "away", - "against": "Le Mans" - }, - "148": { - "name": "Nancy", - "status": "home", - "against": "Orléans" - }, - "154": { - "name": "Troyes", - "status": "away", - "against": "Niort" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Grenoble" - }, - "693": { - "name": "Sochaux", - "status": "home", - "against": "Caen" - }, - "694": { - "name": "Lorient", - "status": "home", - "against": "Paris" - }, - "920": { - "name": "Le Mans", - "status": "home", - "against": "Lens" - }, - "921": { - "name": "Châteauroux", - "status": "away", - "against": "Clermont" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Sochaux" - }, - "1163": { - "name": "Ajaccio", - "status": "home", - "against": "Le Havre" - }, - "1245": { - "name": "Niort", - "status": "home", - "against": "Troyes" - }, - "1272": { - "name": "Grenoble", - "status": "away", - "against": "Guingamp" - }, - "1983": { - "name": "Clermont", - "status": "home", - "against": "Châteauroux" - }, - "1996": { - "name": "Valenciennes", - "status": "away", - "against": "Chambly" - }, - "2338": { - "name": "Paris", - "status": "away", - "against": "Lorient" - }, - "3308": { - "name": "Rodez", - "status": "home", - "against": "Auxerre" - }, - "6783": { - "name": "Chambly", - "status": "home", - "against": "Valenciennes" - }, - "6785": { - "name": "Orléans", - "status": "away", - "against": "Nancy" - } - }, - "tds": { - "update": "2019-07-15T13:06:51.477Z" - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190806.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20190806.json deleted file mode 100644 index ad6985e..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190806.json +++ /dev/null @@ -1,1058 +0,0 @@ -{ - "data": { - "realday": 3, - "dateMatch": 1565373600000, - "timetogame": 293940478, - "champid": 4, - "matchId": "mpg_match_LH9HKBTD_1_3_3", - "stadium": "Square des Princesses", - "teamHome": { - "id": "mpg_team_LH9HKBTD$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Minus Football Club", - "abbr": "AMC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_0_7acc667ae9a3132fe126aa180efed4ce", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "teamAway": { - "id": "mpg_team_LH9HKBTD$$mpg_user_1781796", - "userId": "mpg_user_1781796", - "name": "Camaleon FC", - "abbr": "CML", - "coach": "Jeremy", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561646533972", - "jerseyAway": "jersey_0_1561644646429", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561644646429.png" - }, - "nbPlayers": 10, - "players": [ - { - "firstname": "Matteo", - "lastname": "Tramoni", - "playerid": "player_429453", - "teamid": "1163", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060915_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060924_stats", - "day": 2, - "rate": 4.5 - } - } - }, - { - "firstname": "Valentin", - "lastname": "Jacob", - "playerid": "player_193276", - "teamid": "1245", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 4 - }, - "2": { - "matchId": "match_1060926_stats", - "day": 2, - "rate": 7 - } - } - }, - { - "firstname": "Gauthier", - "lastname": "Gallon", - "playerid": "player_167455", - "teamid": "154", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Jerome", - "lastname": "Phojo", - "playerid": "player_116596", - "teamid": "1983", - "position": 2, - "quotation": 20, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Florian", - "lastname": "Martin", - "playerid": "player_84462", - "teamid": "2338", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060917_stats", - "day": 1, - "rate": 4 - }, - "2": { - "matchId": "match_1060920_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Ronny", - "lastname": "Rodelin", - "playerid": "player_50996", - "teamid": "428", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 4.5 - } - } - }, - { - "firstname": "Ibrahim", - "lastname": "Sissoko", - "playerid": "player_454702", - "teamid": "1245", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "-", - "day": 2 - } - } - }, - { - "firstname": "David", - "lastname": "Gomis", - "playerid": "player_430993", - "teamid": "1983", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 7 - } - } - }, - { - "firstname": "Hicham", - "lastname": "Benkaid", - "playerid": "player_245637", - "teamid": "6785", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060918_stats", - "day": 1, - "rate": 5 - }, - "2": { - "matchId": "-", - "day": 2 - } - } - }, - { - "firstname": "Oualid", - "lastname": "El Hajjam", - "playerid": "player_228291", - "teamid": "154", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Vincent", - "lastname": "Thill", - "playerid": "player_225190", - "teamid": "6785", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060918_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 4.5 - } - } - }, - { - "firstname": "Arial", - "lastname": "Mendy", - "playerid": "player_222853", - "teamid": "142", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 6.5 - } - } - }, - { - "firstname": "Simon", - "lastname": "Banza", - "playerid": "player_219969", - "teamid": "142", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060911_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Tinotenda", - "lastname": "Kadewere", - "playerid": "player_215669", - "teamid": "141", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060915_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060926_stats", - "day": 2, - "rate": 6 - } - } - }, - { - "firstname": "Sidy", - "lastname": "Sarr", - "playerid": "player_210187", - "teamid": "921", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 3.5 - }, - "2": { - "matchId": "match_1060925_stats", - "day": 2, - "rate": 4.5 - } - } - }, - { - "firstname": "Kenji-Van", - "lastname": "Boto", - "playerid": "player_199519", - "teamid": "138", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "-", - "day": 2 - } - } - }, - { - "firstname": "Remy", - "lastname": "Boissier", - "playerid": "player_177449", - "teamid": "920", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060911_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060922_stats", - "day": 2, - "rate": 4 - } - } - }, - { - "firstname": "Adrian", - "lastname": "Grbic", - "playerid": "player_173235", - "teamid": "1983", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 8 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Joris", - "lastname": "Correa", - "playerid": "player_149993", - "teamid": "6785", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 4.5 - } - } - }, - { - "firstname": "Jérémy", - "lastname": "Vachoux", - "playerid": "player_115326", - "teamid": "6785", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060918_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 5 - } - } - }, - { - "firstname": "Matthieu", - "lastname": "Saunier", - "playerid": "player_73500", - "teamid": "694", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060917_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060921_stats", - "day": 2, - "rate": 5.5 - } - } - }, - { - "firstname": "Terell", - "lastname": "Ondaan", - "playerid": "player_168027", - "teamid": "1272", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 6.5 - }, - "2": { - "matchId": "match_1060924_stats", - "day": 2, - "rate": 3.5 - } - } - }, - { - "firstname": "Mehdi", - "lastname": "Jeannin", - "playerid": "player_102724", - "teamid": "1983", - "position": 1, - "quotation": 11, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "-", - "day": 2 - } - } - }, - { - "firstname": "Jeremy", - "lastname": "Mellot", - "playerid": "player_487109", - "teamid": "428", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 4.5 - } - } - }, - { - "firstname": "Oumar", - "lastname": "Gonzalez", - "playerid": "player_219145", - "teamid": "6783", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060912_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 5.5 - } - } - }, - { - "firstname": "Johan", - "lastname": "Gastien", - "playerid": "player_50148", - "teamid": "1983", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 6 - } - } - }, - { - "firstname": "Jérôme", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "1996", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060912_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060929_stats", - "day": 2, - "rate": 6.5 - } - } - }, - { - "firstname": "David", - "lastname": "Douline", - "playerid": "player_151868", - "teamid": "3308", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060913_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060925_stats", - "day": 2, - "rate": 5.5 - } - } - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 1, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - ], - "composition": 343, - "playersOnPitch": { - "1": "player_167455", - "2": "player_487109", - "3": "player_219145", - "4": "player_116596", - "5": "player_193276", - "6": "player_429453", - "7": "player_225190", - "8": "player_177449", - "9": "player_215669", - "10": "player_173235", - "11": "player_430993", - "12": "player_228291", - "13": "player_73500", - "14": "player_210187", - "15": "player_84462", - "16": "player_219969", - "17": "player_50996", - "18": "player_115326" - }, - "bonusSelected": { - }, - "teams": { - "138": { - "name": "Auxerre", - "status": "away", - "against": "Sochaux" - }, - "141": { - "name": "Le Havre", - "status": "away", - "against": "Troyes" - }, - "142": { - "name": "Lens", - "status": "away", - "against": "Clermont" - }, - "148": { - "name": "Nancy", - "status": "home", - "against": "Lorient" - }, - "154": { - "name": "Troyes", - "status": "home", - "against": "Le Havre" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Orléans" - }, - "693": { - "name": "Sochaux", - "status": "home", - "against": "Auxerre" - }, - "694": { - "name": "Lorient", - "status": "away", - "against": "Nancy" - }, - "920": { - "name": "Le Mans", - "status": "home", - "against": "Valenciennes" - }, - "921": { - "name": "Châteauroux", - "status": "away", - "against": "Niort" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Ajaccio" - }, - "1163": { - "name": "Ajaccio", - "status": "home", - "against": "Caen" - }, - "1245": { - "name": "Niort", - "status": "home", - "against": "Châteauroux" - }, - "1272": { - "name": "Grenoble", - "status": "away", - "against": "Chambly" - }, - "1983": { - "name": "Clermont", - "status": "home", - "against": "Lens" - }, - "1996": { - "name": "Valenciennes", - "status": "away", - "against": "Le Mans" - }, - "2338": { - "name": "Paris", - "status": "away", - "against": "Rodez" - }, - "3308": { - "name": "Rodez", - "status": "home", - "against": "Paris" - }, - "6783": { - "name": "Chambly", - "status": "home", - "against": "Grenoble" - }, - "6785": { - "name": "Orléans", - "status": "away", - "against": "Guingamp" - } - }, - "tds": { - "update": "2019-08-02T08:26:58.963Z", - "player_170861": { - "injured": 1 - }, - "player_225046": { - "injured": 1 - }, - "player_433895": { - "injured": 1 - }, - "player_110132": { - "injured": 1 - }, - "player_488367": { - "injured": 1 - }, - "player_488395": { - "injured": 1 - }, - "player_111086": { - "injured": 1 - }, - "player_164031": { - "injured": 1 - }, - "player_165443": { - "injured": 1 - }, - "player_167450": { - "injured": 1 - }, - "player_228294": { - "injured": 1 - }, - "player_488370": { - "injured": 1 - }, - "player_114534": { - "injured": 1 - }, - "player_129482": { - "injured": 1 - }, - "player_105719": { - "suspended": 1 - }, - "player_202971": { - "injured": 1 - }, - "player_38260": { - "injured": 1 - }, - "player_242514": { - "injured": 1 - }, - "player_477368": { - "injured": 1 - }, - "player_453108": { - "injured": 1 - }, - "player_60484": { - "injured": 1 - }, - "player_487395": { - "injured": 1 - }, - "player_210531": { - "injured": 1 - }, - "player_462707": { - "injured": 1 - }, - "player_120811": { - "injured": 1 - }, - "player_241700": { - "suspended": 1 - }, - "player_157822": { - "injured": 1 - }, - "player_119426": { - "injured": 1 - }, - "player_209170": { - "injured": 1 - }, - "player_40826": { - "injured": 1 - }, - "player_106600": { - "injured": 1 - }, - "player_229222": { - "injured": 1 - }, - "player_105408": { - "suspended": 1 - }, - "player_423954": { - "injured": 1 - }, - "player_441584": { - "injured": 1 - }, - "player_220646": { - "injured": 1 - }, - "player_228320": { - "injured": 1 - }, - "player_165855": { - "injured": 1 - }, - "player_422474": { - "injured": 1 - }, - "player_424930": { - "injured": 1 - }, - "player_458335": { - "injured": 1 - }, - "player_471470": { - "injured": 1 - }, - "player_111315": { - "injured": 1 - }, - "player_454702": { - "injured": 1 - }, - "player_460590": { - "injured": 1 - }, - "player_454668": { - "injured": 1 - }, - "player_454670": { - "injured": 1 - }, - "player_431424": { - }, - "player_463746": { - "injured": 1 - }, - "player_477370": { - "injured": 1 - }, - "player_192706": { - "injured": 1 - }, - "player_442707": { - "injured": 1 - }, - "player_245637": { - "injured": 1 - }, - "player_454677": { - "injured": 1 - }, - "player_431650": { - "injured": 1 - }, - "player_213576": { - "suspended": 1 - }, - "player_49057": { - "injured": 1 - }, - "player_216702": { - "injured": 1 - }, - "player_462567": { - "injured": 1 - }, - "player_473244": { - "injured": 1 - }, - "player_198987": { - "injured": 1 - }, - "player_44085": { - "injured": 1 - }, - "player_107259": { - "injured": 1 - }, - "player_212333": { - "injured": 1 - }, - "player_52750": { - "injured": 1 - }, - "player_202985": { - "injured": 1 - }, - "player_434828": { - "injured": 1 - }, - "player_482380": { - "injured": 1 - }, - "player_448403": { - "injured": 1 - }, - "player_244794": { - "injured": 1 - }, - "player_184514": { - "injured": 1 - }, - "player_488437": { - "injured": 1 - }, - "player_155962": { - "injured": 1 - }, - "player_248086": { - "injured": 1 - }, - "player_430993": { - "injured": 1 - }, - "player_219287": { - "injured": 1 - }, - "player_176569": { - "injured": 1 - }, - "player_458316": { - "injured": 1 - }, - "player_478862": { - "injured": 1 - }, - "player_193425": { - "injured": 1 - }, - "player_444944": { - "injured": 1 - }, - "player_73539": { - "injured": 1 - }, - "player_204513": { - "injured": 1 - }, - "player_245726": { - "injured": 1 - }, - "player_487534": { - "injured": 1 - }, - "player_487533": { - "injured": 1 - }, - "player_184203": { - "injured": 1 - }, - "player_488067": { - "injured": 1 - }, - "player_444772": { - "injured": 1 - }, - "player_220359": { - "injured": 1 - }, - "player_195095": { - "injured": 1 - }, - "player_51929": { - "injured": 1 - }, - "player_215362": { - "injured": 1 - }, - "player_244591": { - "injured": 1 - }, - "player_462623": { - "injured": 1 - }, - "player_245026": { - "injured": 1 - }, - "player_471141": { - "injured": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-1.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-1.json deleted file mode 100644 index a02def0..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-1.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_181439", - "2": "player_73500", - "3": "player_487109", - "4": "player_439124", - "5": "player_198189", - "6": "player_193276", - "7": "player_198381", - "8": "player_116592", - "9": "player_215669", - "10": "player_173235", - "11": "player_50996", - "12": "player_219145", - "13": "player_116596", - "14": "player_50148", - "15": "player_429453", - "16": "player_44499", - "17": "player_430993", - "18": "player_115326" - }, - "composition": 343, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_LH9HKBTD_1_5_4", - "realday": 5 -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-2.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-2.json deleted file mode 100644 index 25ef726..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818-Request-2.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_181439", - "2": "player_73500", - "3": "player_487109", - "4": "player_439124", - "5": "player_198189", - "6": "player_193276", - "7": "player_198381", - "8": "player_116592", - "9": "player_215669", - "10": "player_173235", - "11": "player_50996", - "12": "player_219145", - "13": "player_116596", - "14": "player_429453", - "15": "player_84462", - "16": "player_44499", - "17": "player_454702", - "18": "player_115326" - }, - "composition": 343, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_LH9HKBTD_1_5_4", - "realday": 5 -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818.json deleted file mode 100644 index 1185c8c..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20190818.json +++ /dev/null @@ -1,1373 +0,0 @@ -{ - "data": { - "realday": 5, - "dateMatch": 1566583200000, - "timetogame": 422824072, - "champid": 4, - "matchId": "mpg_match_LH9HKBTD_1_5_4", - "stadium": "Square des Princesses", - "teamHome": { - "id": "mpg_team_LH9HKBTD$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Minus Football Club", - "abbr": "AMC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_0_7acc667ae9a3132fe126aa180efed4ce", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "teamAway": { - "id": "mpg_team_LH9HKBTD$$mpg_user_35635", - "userId": "mpg_user_35635", - "name": "Noms Rigolos FC", - "abbr": "NRF", - "coach": "Bertrand", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0", - "jerseyAway": "jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0.png" - }, - "nbPlayers": 10, - "players": [ - { - "firstname": "Matteo", - "lastname": "Tramoni", - "playerid": "player_429453", - "teamid": "1163", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060915_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060924_stats", - "day": 2, - "rate": 4.5 - }, - "3": { - "matchId": "match_1060936_stats", - "day": 3, - "rate": 4.5 - } - } - }, - { - "firstname": "Valentin", - "lastname": "Jacob", - "playerid": "player_193276", - "teamid": "1245", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 4 - }, - "2": { - "matchId": "match_1060926_stats", - "day": 2, - "rate": 7 - }, - "3": { - "matchId": "match_1060930_stats", - "day": 3, - "rate": 5.5 - } - } - }, - { - "firstname": "Gauthier", - "lastname": "Gallon", - "playerid": "player_167455", - "teamid": "154", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060932_stats", - "day": 3, - "rate": 4.5 - } - } - }, - { - "firstname": "Jerome", - "lastname": "Phojo", - "playerid": "player_116596", - "teamid": "1983", - "position": 2, - "quotation": 20, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060937_stats", - "day": 3, - "rate": 5 - } - } - }, - { - "firstname": "Florian", - "lastname": "Martin", - "playerid": "player_84462", - "teamid": "2338", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060917_stats", - "day": 1, - "rate": 4 - }, - "2": { - "matchId": "match_1060920_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060934_stats", - "day": 3, - "rate": 5.5 - } - } - }, - { - "firstname": "Ronny", - "lastname": "Rodelin", - "playerid": "player_50996", - "teamid": "428", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 4.5 - }, - "3": { - "matchId": "match_1060935_stats", - "day": 3, - "rate": 6 - } - } - }, - { - "firstname": "Ibrahim", - "lastname": "Sissoko", - "playerid": "player_454702", - "teamid": "1245", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "-", - "day": 2 - }, - "3": { - "matchId": "match_1060930_stats", - "day": 3, - "rate": 7.5 - } - } - }, - { - "firstname": "David", - "lastname": "Gomis", - "playerid": "player_430993", - "teamid": "1983", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 7 - }, - "3": { - "matchId": "-", - "day": 3 - } - } - }, - { - "firstname": "Hicham", - "lastname": "Benkaid", - "playerid": "player_245637", - "teamid": "6785", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060918_stats", - "day": 1, - "rate": 5 - }, - "2": { - "matchId": "-", - "day": 2 - }, - "3": { - "matchId": "match_1060935_stats", - "day": 3, - "rate": 4 - } - } - }, - { - "firstname": "Oualid", - "lastname": "El Hajjam", - "playerid": "player_228291", - "teamid": "154", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060932_stats", - "day": 3, - "rate": 5 - } - } - }, - { - "firstname": "Vincent", - "lastname": "Thill", - "playerid": "player_225190", - "teamid": "6785", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060918_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 4.5 - }, - "3": { - "matchId": "match_1060935_stats", - "day": 3, - "rate": 4 - } - } - }, - { - "firstname": "Arial", - "lastname": "Mendy", - "playerid": "player_222853", - "teamid": "142", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 6.5 - }, - "3": { - "matchId": "match_1060937_stats", - "day": 3, - "rate": 6 - } - } - }, - { - "firstname": "Simon", - "lastname": "Banza", - "playerid": "player_219969", - "teamid": "142", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060911_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060937_stats", - "day": 3, - "rate": 5 - } - } - }, - { - "firstname": "Tinotenda", - "lastname": "Kadewere", - "playerid": "player_215669", - "teamid": "141", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060915_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060926_stats", - "day": 2, - "rate": 6 - }, - "3": { - "matchId": "match_1060932_stats", - "day": 3, - "rate": 6 - } - } - }, - { - "firstname": "Remy", - "lastname": "Boissier", - "playerid": "player_177449", - "teamid": "920", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060911_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060922_stats", - "day": 2, - "rate": 4 - }, - "3": { - "matchId": "match_1060931_stats", - "day": 3, - "rate": 6 - } - } - }, - { - "firstname": "Adrian", - "lastname": "Grbic", - "playerid": "player_173235", - "teamid": "1983", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 8 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060937_stats", - "day": 3, - "rate": 6 - } - } - }, - { - "firstname": "Joris", - "lastname": "Correa", - "playerid": "player_149993", - "teamid": "6785", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 4.5 - }, - "3": { - "matchId": "match_1060935_stats", - "day": 3, - "rate": 4.5 - } - } - }, - { - "firstname": "Jérémy", - "lastname": "Vachoux", - "playerid": "player_115326", - "teamid": "6785", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060918_stats", - "day": 1, - "rate": 5.5 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060935_stats", - "day": 3, - "rate": 6 - } - } - }, - { - "firstname": "Matthieu", - "lastname": "Saunier", - "playerid": "player_73500", - "teamid": "694", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060917_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060921_stats", - "day": 2, - "rate": 5.5 - }, - "3": { - "matchId": "match_1060938_stats", - "day": 3, - "rate": 4.5 - } - } - }, - { - "firstname": "Terell", - "lastname": "Ondaan", - "playerid": "player_168027", - "teamid": "1272", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 6.5 - }, - "2": { - "matchId": "match_1060924_stats", - "day": 2, - "rate": 3.5 - }, - "3": { - "matchId": "match_1060933_stats", - "day": 3, - "rate": 4 - } - } - }, - { - "firstname": "Jeremy", - "lastname": "Mellot", - "playerid": "player_487109", - "teamid": "428", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060927_stats", - "day": 2, - "rate": 4.5 - }, - "3": { - "matchId": "match_1060935_stats", - "day": 3, - "rate": 5 - } - } - }, - { - "firstname": "Oumar", - "lastname": "Gonzalez", - "playerid": "player_219145", - "teamid": "6783", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060912_stats", - "day": 1, - "rate": 7 - }, - "2": { - "matchId": "match_1060928_stats", - "day": 2, - "rate": 5.5 - }, - "3": { - "matchId": "match_1060933_stats", - "day": 3, - "rate": 5 - } - } - }, - { - "firstname": "Johan", - "lastname": "Gastien", - "playerid": "player_50148", - "teamid": "1983", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060916_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 6 - }, - "3": { - "matchId": "match_1060937_stats", - "day": 3, - "rate": 3.5 - } - } - }, - { - "firstname": "Jérôme", - "lastname": "Prior", - "playerid": "player_181439", - "teamid": "1996", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060912_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060929_stats", - "day": 2, - "rate": 6.5 - }, - "3": { - "matchId": "match_1060931_stats", - "day": 3, - "rate": 7 - } - } - }, - { - "firstname": "David", - "lastname": "Douline", - "playerid": "player_151868", - "teamid": "3308", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060913_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060925_stats", - "day": 2, - "rate": 5.5 - }, - "3": { - "matchId": "match_1060934_stats", - "day": 3, - "rate": 5.5 - } - } - }, - { - "firstname": "Romain", - "lastname": "Armand", - "playerid": "player_44499", - "teamid": "2338", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060917_stats", - "day": 1, - "rate": 3.5 - }, - "2": { - "matchId": "match_1060920_stats", - "day": 2, - "rate": 5.5 - }, - "3": { - "matchId": "match_1060934_stats", - "day": 3, - "rate": 7 - } - } - }, - { - "firstname": "Axel", - "lastname": "Bamba", - "playerid": "player_439124", - "teamid": "2338", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060917_stats", - "day": 1, - "rate": 4 - }, - "2": { - "matchId": "match_1060920_stats", - "day": 2, - "rate": 6 - }, - "3": { - "matchId": "match_1060934_stats", - "day": 3, - "rate": 4.5 - } - } - }, - { - "firstname": "Charles", - "lastname": "Pickel", - "playerid": "player_198381", - "teamid": "1272", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060914_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060924_stats", - "day": 2, - "rate": 4 - }, - "3": { - "matchId": "match_1060933_stats", - "day": 3, - "rate": 5 - } - } - }, - { - "firstname": "Dylan", - "lastname": "Louiserre", - "playerid": "player_198189", - "teamid": "1245", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 4.5 - }, - "2": { - "matchId": "match_1060926_stats", - "day": 2, - "rate": 6 - }, - "3": { - "matchId": "match_1060930_stats", - "day": 3, - "rate": 7.5 - } - } - }, - { - "firstname": "Florian", - "lastname": "Tardieu", - "playerid": "player_116592", - "teamid": "154", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1060919_stats", - "day": 1, - "rate": 6 - }, - "2": { - "matchId": "match_1060923_stats", - "day": 2, - "rate": 5 - }, - "3": { - "matchId": "match_1060932_stats", - "day": 3, - "rate": 7 - } - } - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 1, - "4": 2, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - ], - "composition": 343, - "playersOnPitch": { - "1": "player_181439", - "2": "player_73500", - "3": "player_487109", - "4": "player_439124", - "5": "player_198189", - "6": "player_193276", - "7": "player_198381", - "8": "player_116592", - "9": "player_215669", - "10": "player_173235", - "11": "player_50996", - "12": "player_219145", - "13": "player_116596", - "14": "player_50148", - "15": "player_177449", - "16": "player_44499", - "17": "player_430993", - "18": "player_115326" - }, - "bonusSelected": { - }, - "teams": { - "138": { - "name": "Auxerre", - "status": "away", - "against": "Clermont" - }, - "141": { - "name": "Le Havre", - "status": "home", - "against": "Grenoble" - }, - "142": { - "name": "Lens", - "status": "away", - "against": "Troyes" - }, - "148": { - "name": "Nancy", - "status": "away", - "against": "Sochaux" - }, - "154": { - "name": "Troyes", - "status": "home", - "against": "Lens" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Valenciennes" - }, - "693": { - "name": "Sochaux", - "status": "home", - "against": "Nancy" - }, - "694": { - "name": "Lorient", - "status": "away", - "against": "Le Mans" - }, - "920": { - "name": "Le Mans", - "status": "home", - "against": "Lorient" - }, - "921": { - "name": "Châteauroux", - "status": "away", - "against": "Chambly" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Niort" - }, - "1163": { - "name": "Ajaccio", - "status": "home", - "against": "Paris" - }, - "1245": { - "name": "Niort", - "status": "home", - "against": "Caen" - }, - "1272": { - "name": "Grenoble", - "status": "away", - "against": "Le Havre" - }, - "1983": { - "name": "Clermont", - "status": "home", - "against": "Auxerre" - }, - "1996": { - "name": "Valenciennes", - "status": "away", - "against": "Guingamp" - }, - "2338": { - "name": "Paris", - "status": "away", - "against": "Ajaccio" - }, - "3308": { - "name": "Rodez", - "status": "home", - "against": "Orléans" - }, - "6783": { - "name": "Chambly", - "status": "home", - "against": "Châteauroux" - }, - "6785": { - "name": "Orléans", - "status": "away", - "against": "Rodez" - } - }, - "tds": { - "update": "2019-08-16T07:54:55.916Z", - "player_170861": { - }, - "player_225046": { - "injured": 1 - }, - "player_433895": { - }, - "player_110132": { - }, - "player_488367": { - }, - "player_488395": { - }, - "player_111086": { - "injured": 1 - }, - "player_164031": { - }, - "player_165443": { - "injured": 1 - }, - "player_167450": { - }, - "player_228294": { - }, - "player_488370": { - "injured": 1 - }, - "player_114534": { - }, - "player_129482": { - "injured": 1 - }, - "player_105719": { - }, - "player_202971": { - "injured": 1 - }, - "player_38260": { - "injured": 1 - }, - "player_242514": { - "injured": 1 - }, - "player_477368": { - }, - "player_453108": { - "injured": 1 - }, - "player_60484": { - }, - "player_487395": { - "injured": 1 - }, - "player_210531": { - "injured": 1 - }, - "player_462707": { - "injured": 1 - }, - "player_120811": { - }, - "player_241700": { - }, - "player_157822": { - "injured": 1 - }, - "player_119426": { - }, - "player_209170": { - }, - "player_40826": { - }, - "player_106600": { - "injured": 1 - }, - "player_229222": { - "injured": 1 - }, - "player_105408": { - }, - "player_423954": { - "injured": 1 - }, - "player_441584": { - "injured": 1 - }, - "player_220646": { - "injured": 1 - }, - "player_228320": { - }, - "player_165855": { - "injured": 1 - }, - "player_422474": { - "injured": 1 - }, - "player_424930": { - }, - "player_458335": { - "injured": 1 - }, - "player_471470": { - "injured": 1 - }, - "player_111315": { - }, - "player_454702": { - }, - "player_460590": { - }, - "player_454668": { - "injured": 1 - }, - "player_454670": { - "injured": 1 - }, - "player_431424": { - }, - "player_463746": { - "injured": 1 - }, - "player_477370": { - "injured": 1 - }, - "player_192706": { - "injured": 1 - }, - "player_442707": { - }, - "player_245637": { - }, - "player_454677": { - "injured": 1 - }, - "player_431650": { - }, - "player_213576": { - }, - "player_49057": { - "injured": 1 - }, - "player_216702": { - }, - "player_462567": { - "injured": 1 - }, - "player_473244": { - "injured": 1 - }, - "player_198987": { - }, - "player_44085": { - "injured": 1 - }, - "player_107259": { - "injured": 1 - }, - "player_212333": { - "injured": 1 - }, - "player_52750": { - "injured": 1 - }, - "player_202985": { - }, - "player_434828": { - }, - "player_482380": { - }, - "player_448403": { - }, - "player_244794": { - }, - "player_184514": { - }, - "player_488437": { - }, - "player_155962": { - }, - "player_248086": { - "injured": 1 - }, - "player_430993": { - }, - "player_219287": { - }, - "player_176569": { - }, - "player_458316": { - }, - "player_478862": { - }, - "player_193425": { - }, - "player_444944": { - }, - "player_73539": { - }, - "player_204513": { - }, - "player_245726": { - }, - "player_487534": { - }, - "player_487533": { - }, - "player_184203": { - }, - "player_488067": { - }, - "player_444772": { - }, - "player_220359": { - }, - "player_195095": { - }, - "player_51929": { - }, - "player_215362": { - }, - "player_244591": { - }, - "player_462623": { - "injured": 1 - }, - "player_245026": { - "injured": 1 - }, - "player_471141": { - "injured": 1 - }, - "player_45108": { - }, - "player_132227": { - }, - "player_467098": { - }, - "player_459414": { - }, - "player_91019": { - }, - "player_203342": { - }, - "player_119691": { - }, - "player_217319": { - "injured": 1 - }, - "player_86811": { - }, - "player_216438": { - "injured": 1 - }, - "player_226183": { - }, - "player_176501": { - }, - "player_457225": { - }, - "player_208569": { - }, - "player_40808": { - }, - "player_476791": { - }, - "player_166476": { - }, - "player_102765": { - }, - "player_82831": { - "injured": 1 - }, - "player_49050": { - "injured": 1 - }, - "player_461831": { - }, - "player_242881": { - }, - "player_461827": { - }, - "player_152865": { - }, - "player_229959": { - }, - "player_464193": { - }, - "player_469319": { - }, - "player_465153": { - }, - "player_232252": { - }, - "player_487952": { - }, - "player_468490": { - }, - "player_47104": { - }, - "player_45058": { - }, - "player_210460": { - }, - "player_247120": { - }, - "player_50881": { - "suspended": 1 - }, - "player_442673": { - }, - "player_247049": { - "injured": 1 - }, - "player_184083": { - }, - "player_214042": { - }, - "player_488581": { - }, - "player_488068": { - }, - "player_60810": { - }, - "player_224299": { - }, - "player_176737": { - }, - "player_421128": { - }, - "player_221626": { - }, - "player_49367": { - }, - "player_444465": { - }, - "player_487448": { - "injured": 1 - }, - "player_193080": { - "injured": 1 - }, - "player_102836": { - "injured": 1 - }, - "player_102739": { - "suspended": 1 - }, - "player_113817": { - "suspended": 1 - }, - "player_191792": { - "injured": 1 - }, - "player_214251": { - "injured": 1 - }, - "player_246451": { - "injured": 1 - }, - "player_86281": { - "injured": 1 - }, - "player_28140": { - "injured": 1 - }, - "player_218357": { - "injured": 1 - }, - "player_471469": { - "injured": 1 - }, - "player_103122": { - "injured": 1 - }, - "player_43024": { - "injured": 1 - }, - "player_227300": { - "injured": 1 - }, - "player_482995": { - "injured": 1 - }, - "player_13395": { - "injured": 1 - }, - "player_220560": { - "injured": 1 - }, - "player_106884": { - "injured": 1 - }, - "player_488203": { - "injured": 1 - }, - "player_122268": { - "injured": 1 - }, - "player_454694": { - "injured": 1 - }, - "player_92610": { - "injured": 1 - }, - "player_250333": { - }, - "player_454671": { - "injured": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212-Request.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212-Request.json deleted file mode 100644 index 35d1ce2..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212-Request.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_181439", - "2": "player_247403", - "3": "player_441576", - "4": "player_95527", - "5": "player_214282", - "6": "player_230458", - "7": "player_429453", - "8": "player_220560", - "9": "player_215669", - "10": "player_454702", - "11": "player_80905", - "12": "player_229959", - "13": "player_85682", - "14": "player_228321", - "15": "player_116592", - "16": "player_173182", - "17": "player_442673", - "18": "player_167455" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_229959", - "start": "player_95527", - "rating": 5 - }, - { - "subs": "player_228321", - "start": "player_220560", - "rating": 5 - }, - { - "subs": "player_116592", - "start": "player_429453", - "rating": 5 - }, - { - "subs": "player_173182", - "start": "player_80905", - "rating": 6 - }, - { - "subs": "player_442673", - "start": "player_454702", - "rating": 6 - } - ], - "bonusSelected": { - "type": 2 - }, - "matchId": "mpg_match_LH9HKBTD_1_18_2", - "realday": 18 -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.json deleted file mode 100644 index d39132b..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.json +++ /dev/null @@ -1,2267 +0,0 @@ -{ - "data": { - "realday": 18, - "dateMatch": 1576263600000, - "timetogame": 73886588, - "champid": 4, - "matchId": "mpg_match_LH9HKBTD_1_18_2", - "stadium": "Doudou Park", - "teamHome": { - "id": "mpg_team_LH9HKBTD$$mpg_user_1662232", - "userId": "mpg_user_1662232", - "name": "Doudou FC", - "abbr": "DFC", - "coach": "Youenn", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561644814925", - "jerseyAway": "jersey_0_1561644646429", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561644814925.png" - }, - "teamAway": { - "id": "mpg_team_LH9HKBTD$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Minus Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "nbPlayers": 10, - "players": [ - { - "playerid": "player_167455", - "firstname": "Gauthier", - "lastname": "Gallon", - "status": 2, - "teamid": "154", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_454702", - "firstname": "Ibrahim", - "lastname": "Sissoko", - "status": 2, - "teamid": "1245", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 2.5 - }, - "14": { - "matchId": "match_1061044_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061057_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1061065_stats", - "day": 16, - "rate": 3.5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_215669", - "firstname": "Tinotenda", - "lastname": "Kadewere", - "status": 2, - "teamid": "141", - "position": 4, - "quotation": 38, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061037_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061055_stats", - "day": 15, - "rate": 7 - }, - "16": { - "matchId": "match_1061063_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061075_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_173235", - "firstname": "Adrian", - "lastname": "Grbic", - "status": 2, - "teamid": "1983", - "position": 4, - "quotation": 31, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061042_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1061065_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 6.5 - } - } - }, - { - "playerid": "player_115326", - "firstname": "Jérémy", - "lastname": "Vachoux", - "status": 2, - "teamid": "6785", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_73500", - "firstname": "Matthieu", - "lastname": "Saunier", - "status": 2, - "teamid": "694", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1061029_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1061044_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061054_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061066_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1061069_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_168027", - "firstname": "Terell", - "lastname": "Ondaan", - "status": 2, - "teamid": "1272", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061033_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061052_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1061066_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_487109", - "firstname": "Jeremy", - "lastname": "Mellot", - "status": 2, - "teamid": "428", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1061032_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "match_1061064_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1061078_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_181439", - "firstname": "Jérôme", - "lastname": "Prior", - "status": 2, - "teamid": "1996", - "position": 1, - "quotation": 23, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061048_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1061058_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1061068_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061071_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_198381", - "firstname": "Charles", - "lastname": "Pickel", - "status": 2, - "teamid": "1272", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061033_stats", - "day": 13, - "rate": 3.5 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1061052_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1061066_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_116592", - "firstname": "Florian", - "lastname": "Tardieu", - "status": 2, - "teamid": "154", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 7 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 2.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_80905", - "firstname": "Vincent Kevin", - "lastname": "Créhin", - "status": 2, - "teamid": "920", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061036_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1061050_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061060_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_230458", - "firstname": "Gaetan", - "lastname": "Weissbeck", - "status": 2, - "teamid": "693", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061074_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_220560", - "firstname": "Gaetan", - "lastname": "Perrin", - "status": 2, - "teamid": "6785", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061030_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061046_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061058_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061061_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1061069_stats", - "day": 17, - "rate": 3.5 - } - } - }, - { - "playerid": "player_442673", - "firstname": "Aurelien", - "lastname": "Scheidler", - "status": 2, - "teamid": "6785", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061030_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061046_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1061058_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061061_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061069_stats", - "day": 17, - "rate": 3 - } - } - }, - { - "playerid": "player_225510", - "firstname": "Hugo", - "lastname": "Cuypers", - "status": 2, - "teamid": "1163", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061077_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_216530", - "firstname": "Brahim", - "lastname": "Konaté", - "status": 2, - "teamid": "1245", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1061057_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061065_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_95527", - "firstname": "Saliou", - "lastname": "Ciss", - "status": 2, - "teamid": "148", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1061052_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061067_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061070_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_229959", - "firstname": "Sikou", - "lastname": "Niakaté", - "status": 2, - "teamid": "428", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061055_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061064_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1061078_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_438015", - "firstname": "Lenny", - "lastname": "Pintor", - "status": 2, - "teamid": "154", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_247403", - "firstname": "Gedeon", - "lastname": "Kalulu Kyatengwa", - "status": 2, - "teamid": "1163", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061077_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_165413", - "firstname": "Yann", - "lastname": "Boé-Kane", - "status": 2, - "teamid": "920", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061036_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061050_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061060_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061075_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_429453", - "firstname": "Matteo", - "lastname": "Tramoni", - "status": 2, - "teamid": "1163", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_85682", - "firstname": "Zakaria", - "lastname": "Diallo", - "status": 2, - "teamid": "142", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1061029_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061043_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1061068_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061076_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_82831", - "firstname": "Pierre", - "lastname": "Gibaud", - "status": 2, - "teamid": "1272", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061033_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_57734", - "firstname": "Pape", - "lastname": "Paye", - "status": 2, - "teamid": "693", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 3 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_228321", - "firstname": "Ihsan", - "lastname": "Sacko", - "status": 2, - "teamid": "154", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_214282", - "firstname": "Qazim", - "lastname": "Laci", - "status": 2, - "teamid": "1163", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 8 - }, - "17": { - "matchId": "match_1061077_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_173182", - "firstname": "Chris Vianney", - "lastname": "Bédia", - "status": 2, - "teamid": "154", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_441576", - "firstname": "Christopher", - "lastname": "Rocchia", - "status": 2, - "teamid": "693", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 3 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061074_stats", - "day": 17, - "rate": 5 - } - } - } - ], - "bonus": { - "1": 0, - "2": 1, - "3": 0, - "4": 0, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - { - "subs": "player_229959", - "start": "player_95527", - "rating": 5 - }, - { - "subs": "player_228321", - "start": "player_220560", - "rating": 5 - }, - { - "subs": "player_116592", - "start": "player_429453", - "rating": 5 - }, - { - "subs": "player_173182", - "start": "player_80905", - "rating": 6 - }, - { - "subs": "player_442673", - "start": "player_454702", - "rating": 6 - } - ], - "composition": 343, - "playersOnPitch": { - "1": "player_181439", - "2": "player_247403", - "3": "player_441576", - "4": "player_95527", - "5": "player_214282", - "6": "player_230458", - "7": "player_429453", - "8": "player_220560", - "9": "player_215669", - "10": "player_454702", - "11": "player_80905", - "12": "player_229959", - "13": "player_85682", - "14": "player_228321", - "15": "player_116592", - "16": "player_173182", - "17": "player_442673", - "18": "player_167455" - }, - "bonusSelected": { - }, - "teams": { - "138": { - "name": "Auxerre", - "status": "away", - "against": "Lorient" - }, - "141": { - "name": "Le Havre", - "status": "away", - "against": "Clermont" - }, - "142": { - "name": "Lens", - "status": "away", - "against": "Ajaccio" - }, - "148": { - "name": "Nancy", - "status": "home", - "against": "Châteauroux" - }, - "154": { - "name": "Troyes", - "status": "away", - "against": "Guingamp" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Troyes" - }, - "693": { - "name": "Sochaux", - "status": "home", - "against": "Grenoble" - }, - "694": { - "name": "Lorient", - "status": "home", - "against": "Auxerre" - }, - "920": { - "name": "Le Mans", - "status": "home", - "against": "Orléans" - }, - "921": { - "name": "Châteauroux", - "status": "away", - "against": "Nancy" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Rodez" - }, - "1163": { - "name": "Ajaccio", - "status": "home", - "against": "Lens" - }, - "1245": { - "name": "Niort", - "status": "away", - "against": "Chambly" - }, - "1272": { - "name": "Grenoble", - "status": "away", - "against": "Sochaux" - }, - "1983": { - "name": "Clermont", - "status": "home", - "against": "Le Havre" - }, - "1996": { - "name": "Valenciennes", - "status": "home", - "against": "Paris" - }, - "2338": { - "name": "Paris", - "status": "away", - "against": "Valenciennes" - }, - "3308": { - "name": "Rodez", - "status": "home", - "against": "Caen" - }, - "6783": { - "name": "Chambly", - "status": "home", - "against": "Niort" - }, - "6785": { - "name": "Orléans", - "status": "away", - "against": "Le Mans" - } - }, - "tds": { - "update": "2019-12-02T13:35:06.869Z", - "player_170861": { - }, - "player_225046": { - }, - "player_433895": { - "pending": 1 - }, - "player_110132": { - "pending": 1 - }, - "player_488367": { - "pending": 1 - }, - "player_488395": { - }, - "player_111086": { - "injured": 1 - }, - "player_164031": { - }, - "player_165443": { - }, - "player_167450": { - }, - "player_228294": { - "pending": 1 - }, - "player_488370": { - }, - "player_114534": { - "pending": 1 - }, - "player_129482": { - "pending": 1 - }, - "player_105719": { - }, - "player_202971": { - }, - "player_38260": { - "injured": 1 - }, - "player_242514": { - }, - "player_477368": { - }, - "player_453108": { - "injured": 1 - }, - "player_60484": { - }, - "player_487395": { - }, - "player_210531": { - }, - "player_462707": { - }, - "player_120811": { - }, - "player_241700": { - }, - "player_157822": { - "injured": 1 - }, - "player_119426": { - }, - "player_209170": { - "injured": 1 - }, - "player_40826": { - "injured": 1 - }, - "player_106600": { - "injured": 1 - }, - "player_229222": { - "injured": 1 - }, - "player_105408": { - }, - "player_423954": { - }, - "player_441584": { - "injured": 1 - }, - "player_220646": { - }, - "player_228320": { - }, - "player_165855": { - "injured": 1 - }, - "player_422474": { - }, - "player_424930": { - "injured": 1 - }, - "player_458335": { - "injured": 1 - }, - "player_471470": { - }, - "player_111315": { - }, - "player_454702": { - "suspended": 1 - }, - "player_460590": { - "injured": 1 - }, - "player_454668": { - }, - "player_454670": { - }, - "player_431424": { - }, - "player_463746": { - }, - "player_477370": { - }, - "player_192706": { - }, - "player_442707": { - }, - "player_245637": { - "injured": 1 - }, - "player_454677": { - }, - "player_431650": { - }, - "player_213576": { - }, - "player_49057": { - }, - "player_216702": { - }, - "player_462567": { - "injured": 1 - }, - "player_473244": { - "injured": 1 - }, - "player_198987": { - }, - "player_44085": { - }, - "player_107259": { - }, - "player_212333": { - "injured": 1 - }, - "player_52750": { - "injured": 1 - }, - "player_202985": { - }, - "player_434828": { - }, - "player_482380": { - }, - "player_448403": { - }, - "player_244794": { - }, - "player_184514": { - }, - "player_488437": { - }, - "player_155962": { - }, - "player_248086": { - }, - "player_430993": { - }, - "player_219287": { - }, - "player_176569": { - }, - "player_458316": { - }, - "player_478862": { - }, - "player_193425": { - }, - "player_444944": { - }, - "player_73539": { - }, - "player_204513": { - "injured": 1 - }, - "player_245726": { - }, - "player_487534": { - }, - "player_487533": { - }, - "player_184203": { - }, - "player_488067": { - }, - "player_444772": { - }, - "player_220359": { - "injured": 1 - }, - "player_195095": { - }, - "player_51929": { - }, - "player_215362": { - }, - "player_244591": { - }, - "player_462623": { - }, - "player_245026": { - "injured": 1 - }, - "player_471141": { - "injured": 1 - }, - "player_45108": { - }, - "player_132227": { - "injured": 1 - }, - "player_467098": { - }, - "player_459414": { - }, - "player_91019": { - }, - "player_203342": { - }, - "player_119691": { - }, - "player_217319": { - }, - "player_86811": { - }, - "player_216438": { - "injured": 1 - }, - "player_226183": { - "injured": 1 - }, - "player_176501": { - }, - "player_457225": { - "injured": 1 - }, - "player_208569": { - }, - "player_40808": { - }, - "player_476791": { - }, - "player_166476": { - }, - "player_102765": { - }, - "player_82831": { - }, - "player_49050": { - }, - "player_461831": { - }, - "player_242881": { - }, - "player_461827": { - }, - "player_152865": { - }, - "player_229959": { - }, - "player_464193": { - }, - "player_469319": { - }, - "player_465153": { - }, - "player_232252": { - }, - "player_487952": { - }, - "player_468490": { - }, - "player_47104": { - }, - "player_45058": { - }, - "player_210460": { - "injured": 1 - }, - "player_247120": { - "injured": 1 - }, - "player_50881": { - }, - "player_442673": { - }, - "player_247049": { - }, - "player_184083": { - "injured": 1 - }, - "player_214042": { - }, - "player_488581": { - }, - "player_488068": { - }, - "player_60810": { - }, - "player_224299": { - }, - "player_176737": { - "injured": 1 - }, - "player_421128": { - }, - "player_221626": { - }, - "player_49367": { - }, - "player_444465": { - }, - "player_487448": { - }, - "player_193080": { - }, - "player_102836": { - "injured": 1 - }, - "player_102739": { - }, - "player_113817": { - "injured": 1 - }, - "player_191792": { - "injured": 1 - }, - "player_214251": { - }, - "player_246451": { - }, - "player_86281": { - "injured": 1 - }, - "player_28140": { - "injured": 1 - }, - "player_218357": { - }, - "player_471469": { - }, - "player_103122": { - }, - "player_43024": { - }, - "player_227300": { - "injured": 1 - }, - "player_482995": { - }, - "player_13395": { - }, - "player_220560": { - }, - "player_106884": { - "injured": 1 - }, - "player_488203": { - }, - "player_122268": { - }, - "player_454694": { - }, - "player_92610": { - }, - "player_250333": { - }, - "player_454671": { - }, - "player_94181": { - }, - "player_50148": { - }, - "player_177449": { - }, - "player_120773": { - }, - "player_89084": { - }, - "player_230801": { - "suspended": 1 - }, - "player_83542": { - }, - "player_488580": { - }, - "player_488351": { - "injured": 1 - }, - "player_476987": { - }, - "player_104464": { - }, - "player_422897": { - }, - "player_465347": { - }, - "player_110982": { - }, - "player_167454": { - }, - "player_121596": { - }, - "player_55254": { - }, - "player_224077": { - }, - "player_143670": { - }, - "player_220001": { - }, - "player_230718": { - "injured": 1 - }, - "player_45103": { - }, - "player_442650": { - }, - "player_442649": { - }, - "player_472187": { - "injured": 1 - }, - "player_440114": { - "injured": 1 - }, - "player_240084": { - }, - "player_171419": { - }, - "player_488440": { - }, - "player_140055": { - }, - "player_184962": { - }, - "player_488285": { - "pending": 1 - }, - "player_473389": { - }, - "player_225510": { - }, - "player_146668": { - "injured": 1 - }, - "player_429453": { - }, - "player_485009": { - }, - "player_488582": { - }, - "player_458311": { - }, - "player_160985": { - }, - "player_154093": { - }, - "player_220022": { - }, - "player_454684": { - }, - "player_490330": { - }, - "player_209874": { - "injured": 1 - }, - "player_111078": { - }, - "player_205569": { - }, - "player_151868": { - }, - "player_487510": { - }, - "player_482381": { - }, - "player_192699": { - }, - "player_216530": { - }, - "player_101368": { - }, - "player_429522": { - }, - "player_484421": { - "injured": 1 - }, - "player_458455": { - }, - "player_438015": { - }, - "player_171646": { - "injured": 1 - }, - "player_439124": { - }, - "player_214282": { - }, - "player_442261": { - }, - "player_220943": { - }, - "player_420962": { - "injured": 1 - }, - "player_168434": { - }, - "player_105706": { - }, - "player_161275": { - }, - "player_110307": { - }, - "player_454687": { - "injured": 1 - }, - "player_112467": { - }, - "player_42714": { - }, - "player_214946": { - }, - "player_58616": { - "injured": 1 - }, - "player_246402": { - }, - "player_488441": { - }, - "player_119577": { - }, - "player_193285": { - }, - "player_213579": { - }, - "player_244490": { - }, - "player_208554": { - }, - "player_487683": { - }, - "player_95527": { - }, - "player_129481": { - }, - "player_180299": { - }, - "player_213196": { - }, - "player_44499": { - }, - "player_454689": { - }, - "player_492034": { - }, - "player_223393": { - }, - "player_226672": { - }, - "player_487509": { - }, - "player_220374": { - "injured": 1 - }, - "player_185482": { - "suspended": 1 - }, - "player_243689": { - }, - "player_489492": { - }, - "player_229480": { - }, - "player_232242": { - }, - "player_438420": { - }, - "player_226945": { - "injured": 1 - }, - "player_110350": { - }, - "player_465345": { - }, - "player_488362": { - }, - "player_488363": { - }, - "player_176439": { - }, - "player_115149": { - }, - "player_12269": { - }, - "player_472710": { - }, - "player_468427": { - }, - "player_37743": { - "injured": 1 - }, - "player_245914": { - }, - "player_199519": { - }, - "player_110303": { - "injured": 1 - }, - "player_246453": { - }, - "player_177864": { - "injured": 1 - }, - "player_213320": { - }, - "player_84767": { - }, - "player_226114": { - "injured": 1 - }, - "player_490105": { - }, - "player_51525": { - }, - "player_422453": { - }, - "player_462609": { - }, - "player_78319": { - }, - "player_441582": { - }, - "player_107258": { - }, - "player_202963": { - }, - "player_204728": { - }, - "player_429441": { - }, - "player_241337": { - "injured": 1 - }, - "player_431422": { - }, - "player_440852": { - }, - "player_443276": { - }, - "player_462573": { - }, - "player_83279": { - }, - "player_51524": { - }, - "player_219145": { - }, - "player_244753": { - }, - "player_213200": { - }, - "player_245915": { - }, - "player_193276": { - "injured": 1 - }, - "player_221455": { - }, - "player_245750": { - }, - "player_119582": { - }, - "player_177445": { - }, - "player_62226": { - }, - "player_228319": { - }, - "player_228254": { - }, - "player_481665": { - "injured": 1 - }, - "player_471213": { - "injured": 1 - }, - "player_488423": { - }, - "player_227763": { - "injured": 1 - }, - "player_476790": { - }, - "player_458320": { - }, - "player_93174": { - }, - "player_490109": { - }, - "player_110351": { - }, - "player_168567": { - }, - "player_483164": { - }, - "player_485338": { - }, - "player_168104": { - "injured": 1 - }, - "player_73678": { - }, - "player_444394": { - }, - "player_454688": { - }, - "player_242768": { - }, - "player_488547": { - }, - "player_50996": { - }, - "player_202068": { - }, - "player_488397": { - }, - "player_107925": { - "injured": 1 - }, - "player_156692": { - }, - "player_93591": { - }, - "player_67272": { - }, - "player_432462": { - "injured": 1 - }, - "player_439364": { - "injured": 1 - }, - "player_151314": { - }, - "player_152487": { - }, - "player_457230": { - }, - "player_474131": { - }, - "player_51394": { - }, - "player_244949": { - }, - "player_37939": { - }, - "player_84462": { - }, - "player_112962": { - }, - "player_442646": { - }, - "player_487508": { - }, - "player_488548": { - }, - "player_165572": { - }, - "player_173242": { - }, - "player_172870": { - }, - "player_45110": { - }, - "player_493211": { - "injured": 1 - }, - "player_202961": { - }, - "player_85597": { - }, - "player_168116": { - }, - "player_88036": { - }, - "player_462425": { - "injured": 1 - }, - "player_454669": { - }, - "player_49322": { - }, - "player_228291": { - "injured": 1 - }, - "player_42383": { - }, - "player_73667": { - }, - "player_476511": { - }, - "player_458310": { - }, - "player_173235": { - }, - "player_489486": { - }, - "player_68157": { - "suspended": 1 - }, - "player_52777": { - "injured": 1 - }, - "player_492731": { - }, - "player_447547": { - }, - "player_467095": { - }, - "player_219289": { - }, - "player_444397": { - }, - "player_73665": { - "injured": 1 - }, - "player_92353": { - }, - "player_51634": { - "injured": 1 - }, - "player_231373": { - "pending": 1 - }, - "player_213400": { - "injured": 1 - }, - "player_116596": { - "injured": 1 - }, - "player_438309": { - }, - "player_235708": { - }, - "player_205552": { - "injured": 1 - }, - "player_38007": { - }, - "player_488439": { - }, - "player_79228": { - }, - "player_228321": { - }, - "player_201644": { - "injured": 1 - }, - "player_242111": { - "injured": 1 - }, - "player_209171": { - }, - "player_102744": { - "injured": 1 - }, - "player_198381": { - }, - "player_220924": { - }, - "player_488263": { - }, - "player_440300": { - }, - "player_119738": { - }, - "player_433857": { - }, - "player_244135": { - }, - "player_487506": { - "injured": 1 - }, - "player_222388": { - }, - "player_157728": { - }, - "player_487109": { - }, - "player_116593": { - "injured": 1 - }, - "player_103199": { - }, - "player_178814": { - }, - "player_235862": { - }, - "player_468496": { - }, - "player_488284": { - }, - "player_198189": { - }, - "player_222853": { - }, - "player_67346": { - }, - "player_487507": { - }, - "player_111001": { - "injured": 1 - }, - "player_164500": { - }, - "player_429188": { - "injured": 1 - }, - "player_168212": { - "suspended": 1 - }, - "player_221542": { - "injured": 1 - }, - "player_245137": { - "suspended": 1 - }, - "player_214244": { - "suspended": 1 - }, - "player_149918": { - "injured": 1 - }, - "player_92170": { - "suspended": 1 - }, - "player_44138": { - "suspended": 1 - }, - "player_107656": { - "suspended": 1 - }, - "player_437499": { - "injured": 1 - }, - "player_88035": { - "injured": 1 - }, - "player_243155": { - "injured": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull-Request.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull-Request.json deleted file mode 100644 index a89e481..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull-Request.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_181439", - "2": "player_247403", - "3": "player_441576", - "4": "player_95527", - "5": "player_214282", - "6": "player_230458", - "7": "player_429453", - "8": "player_220560", - "9": "player_215669", - "10": "player_454702", - "11": "player_80905", - "12": "player_229959", - "13": "player_85682", - "14": "player_228321", - "15": "player_116592", - "16": "player_173182", - "17": "player_442673", - "18": "player_167455" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_229959", - "start": "player_95527", - "rating": 5 - }, - { - "subs": "player_228321", - "start": "player_220560", - "rating": 5 - }, - { - "subs": "player_116592", - "start": "player_429453", - "rating": 5 - }, - { - "subs": "player_173182", - "start": "player_80905", - "rating": 6 - }, - { - "subs": "player_442673", - "start": "player_454702", - "rating": 6 - } - ], - "bonusSelected": { - "type": 4, - "playerid": "player_214282" - }, - "matchId": "mpg_match_LH9HKBTD_1_18_2", - "realday": 18 -} diff --git a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull.json b/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull.json deleted file mode 100644 index 3062ce5..0000000 --- a/src/test/resources/__files/mpg.coach.LH9HKBTD.20191212.redbull.json +++ /dev/null @@ -1,2267 +0,0 @@ -{ - "data": { - "realday": 18, - "dateMatch": 1576263600000, - "timetogame": 73886588, - "champid": 4, - "matchId": "mpg_match_LH9HKBTD_1_18_2", - "stadium": "Doudou Park", - "teamHome": { - "id": "mpg_team_LH9HKBTD$$mpg_user_1662232", - "userId": "mpg_user_1662232", - "name": "Doudou FC", - "abbr": "DFC", - "coach": "Youenn", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561644814925", - "jerseyAway": "jersey_0_1561644646429", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561644814925.png" - }, - "teamAway": { - "id": "mpg_team_LH9HKBTD$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Minus Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "nbPlayers": 10, - "players": [ - { - "playerid": "player_167455", - "firstname": "Gauthier", - "lastname": "Gallon", - "status": 2, - "teamid": "154", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_454702", - "firstname": "Ibrahim", - "lastname": "Sissoko", - "status": 2, - "teamid": "1245", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 2.5 - }, - "14": { - "matchId": "match_1061044_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061057_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1061065_stats", - "day": 16, - "rate": 3.5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_215669", - "firstname": "Tinotenda", - "lastname": "Kadewere", - "status": 2, - "teamid": "141", - "position": 4, - "quotation": 38, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061037_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061055_stats", - "day": 15, - "rate": 7 - }, - "16": { - "matchId": "match_1061063_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061075_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_173235", - "firstname": "Adrian", - "lastname": "Grbic", - "status": 2, - "teamid": "1983", - "position": 4, - "quotation": 31, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061042_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1061065_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 6.5 - } - } - }, - { - "playerid": "player_115326", - "firstname": "Jérémy", - "lastname": "Vachoux", - "status": 2, - "teamid": "6785", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_73500", - "firstname": "Matthieu", - "lastname": "Saunier", - "status": 2, - "teamid": "694", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1061029_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1061044_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061054_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061066_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1061069_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_168027", - "firstname": "Terell", - "lastname": "Ondaan", - "status": 2, - "teamid": "1272", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061033_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061052_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1061066_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_487109", - "firstname": "Jeremy", - "lastname": "Mellot", - "status": 2, - "teamid": "428", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1061032_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "match_1061064_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1061078_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_181439", - "firstname": "Jérôme", - "lastname": "Prior", - "status": 2, - "teamid": "1996", - "position": 1, - "quotation": 23, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061048_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1061058_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1061068_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061071_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_198381", - "firstname": "Charles", - "lastname": "Pickel", - "status": 2, - "teamid": "1272", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061033_stats", - "day": 13, - "rate": 3.5 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1061052_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1061066_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_116592", - "firstname": "Florian", - "lastname": "Tardieu", - "status": 2, - "teamid": "154", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 7 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 2.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_80905", - "firstname": "Vincent Kevin", - "lastname": "Créhin", - "status": 2, - "teamid": "920", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061036_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1061050_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061060_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_230458", - "firstname": "Gaetan", - "lastname": "Weissbeck", - "status": 2, - "teamid": "693", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061074_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_220560", - "firstname": "Gaetan", - "lastname": "Perrin", - "status": 2, - "teamid": "6785", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061030_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061046_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061058_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061061_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1061069_stats", - "day": 17, - "rate": 3.5 - } - } - }, - { - "playerid": "player_442673", - "firstname": "Aurelien", - "lastname": "Scheidler", - "status": 2, - "teamid": "6785", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061030_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061046_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1061058_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061061_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061069_stats", - "day": 17, - "rate": 3 - } - } - }, - { - "playerid": "player_225510", - "firstname": "Hugo", - "lastname": "Cuypers", - "status": 2, - "teamid": "1163", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061077_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_216530", - "firstname": "Brahim", - "lastname": "Konaté", - "status": 2, - "teamid": "1245", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1061057_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061065_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_95527", - "firstname": "Saliou", - "lastname": "Ciss", - "status": 2, - "teamid": "148", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1061052_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061067_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061070_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_229959", - "firstname": "Sikou", - "lastname": "Niakaté", - "status": 2, - "teamid": "428", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061055_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061064_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1061078_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_438015", - "firstname": "Lenny", - "lastname": "Pintor", - "status": 2, - "teamid": "154", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_247403", - "firstname": "Gedeon", - "lastname": "Kalulu Kyatengwa", - "status": 2, - "teamid": "1163", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1061077_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_165413", - "firstname": "Yann", - "lastname": "Boé-Kane", - "status": 2, - "teamid": "920", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061036_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061050_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061060_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1061075_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_429453", - "firstname": "Matteo", - "lastname": "Tramoni", - "status": 2, - "teamid": "1163", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_85682", - "firstname": "Zakaria", - "lastname": "Diallo", - "status": 2, - "teamid": "142", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1061029_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1061043_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1061068_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061076_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_82831", - "firstname": "Pierre", - "lastname": "Gibaud", - "status": 2, - "teamid": "1272", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061033_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1061040_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1061073_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_57734", - "firstname": "Pape", - "lastname": "Paye", - "status": 2, - "teamid": "693", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 3 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_228321", - "firstname": "Ihsan", - "lastname": "Sacko", - "status": 2, - "teamid": "154", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_214282", - "firstname": "Qazim", - "lastname": "Laci", - "status": 2, - "teamid": "1163", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1061034_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1061039_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1061053_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1061062_stats", - "day": 16, - "rate": 8 - }, - "17": { - "matchId": "match_1061077_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_173182", - "firstname": "Chris Vianney", - "lastname": "Bédia", - "status": 2, - "teamid": "154", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1061031_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1061045_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1061051_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1061072_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_441576", - "firstname": "Christopher", - "lastname": "Rocchia", - "status": 2, - "teamid": "693", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1061038_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1061047_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1061056_stats", - "day": 15, - "rate": 3 - }, - "16": { - "matchId": "match_1061059_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1061074_stats", - "day": 17, - "rate": 5 - } - } - } - ], - "bonus": { - "1": 0, - "2": 0, - "3": 0, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - { - "subs": "player_229959", - "start": "player_95527", - "rating": 5 - }, - { - "subs": "player_228321", - "start": "player_220560", - "rating": 5 - }, - { - "subs": "player_116592", - "start": "player_429453", - "rating": 5 - }, - { - "subs": "player_173182", - "start": "player_80905", - "rating": 6 - }, - { - "subs": "player_442673", - "start": "player_454702", - "rating": 6 - } - ], - "composition": 343, - "playersOnPitch": { - "1": "player_181439", - "2": "player_247403", - "3": "player_441576", - "4": "player_95527", - "5": "player_214282", - "6": "player_230458", - "7": "player_429453", - "8": "player_220560", - "9": "player_215669", - "10": "player_454702", - "11": "player_80905", - "12": "player_229959", - "13": "player_85682", - "14": "player_228321", - "15": "player_116592", - "16": "player_173182", - "17": "player_442673", - "18": "player_167455" - }, - "bonusSelected": { - }, - "teams": { - "138": { - "name": "Auxerre", - "status": "away", - "against": "Lorient" - }, - "141": { - "name": "Le Havre", - "status": "away", - "against": "Clermont" - }, - "142": { - "name": "Lens", - "status": "away", - "against": "Ajaccio" - }, - "148": { - "name": "Nancy", - "status": "home", - "against": "Châteauroux" - }, - "154": { - "name": "Troyes", - "status": "away", - "against": "Guingamp" - }, - "428": { - "name": "Guingamp", - "status": "home", - "against": "Troyes" - }, - "693": { - "name": "Sochaux", - "status": "home", - "against": "Grenoble" - }, - "694": { - "name": "Lorient", - "status": "home", - "against": "Auxerre" - }, - "920": { - "name": "Le Mans", - "status": "home", - "against": "Orléans" - }, - "921": { - "name": "Châteauroux", - "status": "away", - "against": "Nancy" - }, - "1028": { - "name": "Caen", - "status": "away", - "against": "Rodez" - }, - "1163": { - "name": "Ajaccio", - "status": "home", - "against": "Lens" - }, - "1245": { - "name": "Niort", - "status": "away", - "against": "Chambly" - }, - "1272": { - "name": "Grenoble", - "status": "away", - "against": "Sochaux" - }, - "1983": { - "name": "Clermont", - "status": "home", - "against": "Le Havre" - }, - "1996": { - "name": "Valenciennes", - "status": "home", - "against": "Paris" - }, - "2338": { - "name": "Paris", - "status": "away", - "against": "Valenciennes" - }, - "3308": { - "name": "Rodez", - "status": "home", - "against": "Caen" - }, - "6783": { - "name": "Chambly", - "status": "home", - "against": "Niort" - }, - "6785": { - "name": "Orléans", - "status": "away", - "against": "Le Mans" - } - }, - "tds": { - "update": "2019-12-02T13:35:06.869Z", - "player_170861": { - }, - "player_225046": { - }, - "player_433895": { - "pending": 1 - }, - "player_110132": { - "pending": 1 - }, - "player_488367": { - "pending": 1 - }, - "player_488395": { - }, - "player_111086": { - "injured": 1 - }, - "player_164031": { - }, - "player_165443": { - }, - "player_167450": { - }, - "player_228294": { - "pending": 1 - }, - "player_488370": { - }, - "player_114534": { - "pending": 1 - }, - "player_129482": { - "pending": 1 - }, - "player_105719": { - }, - "player_202971": { - }, - "player_38260": { - "injured": 1 - }, - "player_242514": { - }, - "player_477368": { - }, - "player_453108": { - "injured": 1 - }, - "player_60484": { - }, - "player_487395": { - }, - "player_210531": { - }, - "player_462707": { - }, - "player_120811": { - }, - "player_241700": { - }, - "player_157822": { - "injured": 1 - }, - "player_119426": { - }, - "player_209170": { - "injured": 1 - }, - "player_40826": { - "injured": 1 - }, - "player_106600": { - "injured": 1 - }, - "player_229222": { - "injured": 1 - }, - "player_105408": { - }, - "player_423954": { - }, - "player_441584": { - "injured": 1 - }, - "player_220646": { - }, - "player_228320": { - }, - "player_165855": { - "injured": 1 - }, - "player_422474": { - }, - "player_424930": { - "injured": 1 - }, - "player_458335": { - "injured": 1 - }, - "player_471470": { - }, - "player_111315": { - }, - "player_454702": { - "suspended": 1 - }, - "player_460590": { - "injured": 1 - }, - "player_454668": { - }, - "player_454670": { - }, - "player_431424": { - }, - "player_463746": { - }, - "player_477370": { - }, - "player_192706": { - }, - "player_442707": { - }, - "player_245637": { - "injured": 1 - }, - "player_454677": { - }, - "player_431650": { - }, - "player_213576": { - }, - "player_49057": { - }, - "player_216702": { - }, - "player_462567": { - "injured": 1 - }, - "player_473244": { - "injured": 1 - }, - "player_198987": { - }, - "player_44085": { - }, - "player_107259": { - }, - "player_212333": { - "injured": 1 - }, - "player_52750": { - "injured": 1 - }, - "player_202985": { - }, - "player_434828": { - }, - "player_482380": { - }, - "player_448403": { - }, - "player_244794": { - }, - "player_184514": { - }, - "player_488437": { - }, - "player_155962": { - }, - "player_248086": { - }, - "player_430993": { - }, - "player_219287": { - }, - "player_176569": { - }, - "player_458316": { - }, - "player_478862": { - }, - "player_193425": { - }, - "player_444944": { - }, - "player_73539": { - }, - "player_204513": { - "injured": 1 - }, - "player_245726": { - }, - "player_487534": { - }, - "player_487533": { - }, - "player_184203": { - }, - "player_488067": { - }, - "player_444772": { - }, - "player_220359": { - "injured": 1 - }, - "player_195095": { - }, - "player_51929": { - }, - "player_215362": { - }, - "player_244591": { - }, - "player_462623": { - }, - "player_245026": { - "injured": 1 - }, - "player_471141": { - "injured": 1 - }, - "player_45108": { - }, - "player_132227": { - "injured": 1 - }, - "player_467098": { - }, - "player_459414": { - }, - "player_91019": { - }, - "player_203342": { - }, - "player_119691": { - }, - "player_217319": { - }, - "player_86811": { - }, - "player_216438": { - "injured": 1 - }, - "player_226183": { - "injured": 1 - }, - "player_176501": { - }, - "player_457225": { - "injured": 1 - }, - "player_208569": { - }, - "player_40808": { - }, - "player_476791": { - }, - "player_166476": { - }, - "player_102765": { - }, - "player_82831": { - }, - "player_49050": { - }, - "player_461831": { - }, - "player_242881": { - }, - "player_461827": { - }, - "player_152865": { - }, - "player_229959": { - }, - "player_464193": { - }, - "player_469319": { - }, - "player_465153": { - }, - "player_232252": { - }, - "player_487952": { - }, - "player_468490": { - }, - "player_47104": { - }, - "player_45058": { - }, - "player_210460": { - "injured": 1 - }, - "player_247120": { - "injured": 1 - }, - "player_50881": { - }, - "player_442673": { - }, - "player_247049": { - }, - "player_184083": { - "injured": 1 - }, - "player_214042": { - }, - "player_488581": { - }, - "player_488068": { - }, - "player_60810": { - }, - "player_224299": { - }, - "player_176737": { - "injured": 1 - }, - "player_421128": { - }, - "player_221626": { - }, - "player_49367": { - }, - "player_444465": { - }, - "player_487448": { - }, - "player_193080": { - }, - "player_102836": { - "injured": 1 - }, - "player_102739": { - }, - "player_113817": { - "injured": 1 - }, - "player_191792": { - "injured": 1 - }, - "player_214251": { - }, - "player_246451": { - }, - "player_86281": { - "injured": 1 - }, - "player_28140": { - "injured": 1 - }, - "player_218357": { - }, - "player_471469": { - }, - "player_103122": { - }, - "player_43024": { - }, - "player_227300": { - "injured": 1 - }, - "player_482995": { - }, - "player_13395": { - }, - "player_220560": { - }, - "player_106884": { - "injured": 1 - }, - "player_488203": { - }, - "player_122268": { - }, - "player_454694": { - }, - "player_92610": { - }, - "player_250333": { - }, - "player_454671": { - }, - "player_94181": { - }, - "player_50148": { - }, - "player_177449": { - }, - "player_120773": { - }, - "player_89084": { - }, - "player_230801": { - "suspended": 1 - }, - "player_83542": { - }, - "player_488580": { - }, - "player_488351": { - "injured": 1 - }, - "player_476987": { - }, - "player_104464": { - }, - "player_422897": { - }, - "player_465347": { - }, - "player_110982": { - }, - "player_167454": { - }, - "player_121596": { - }, - "player_55254": { - }, - "player_224077": { - }, - "player_143670": { - }, - "player_220001": { - }, - "player_230718": { - "injured": 1 - }, - "player_45103": { - }, - "player_442650": { - }, - "player_442649": { - }, - "player_472187": { - "injured": 1 - }, - "player_440114": { - "injured": 1 - }, - "player_240084": { - }, - "player_171419": { - }, - "player_488440": { - }, - "player_140055": { - }, - "player_184962": { - }, - "player_488285": { - "pending": 1 - }, - "player_473389": { - }, - "player_225510": { - }, - "player_146668": { - "injured": 1 - }, - "player_429453": { - }, - "player_485009": { - }, - "player_488582": { - }, - "player_458311": { - }, - "player_160985": { - }, - "player_154093": { - }, - "player_220022": { - }, - "player_454684": { - }, - "player_490330": { - }, - "player_209874": { - "injured": 1 - }, - "player_111078": { - }, - "player_205569": { - }, - "player_151868": { - }, - "player_487510": { - }, - "player_482381": { - }, - "player_192699": { - }, - "player_216530": { - }, - "player_101368": { - }, - "player_429522": { - }, - "player_484421": { - "injured": 1 - }, - "player_458455": { - }, - "player_438015": { - }, - "player_171646": { - "injured": 1 - }, - "player_439124": { - }, - "player_214282": { - }, - "player_442261": { - }, - "player_220943": { - }, - "player_420962": { - "injured": 1 - }, - "player_168434": { - }, - "player_105706": { - }, - "player_161275": { - }, - "player_110307": { - }, - "player_454687": { - "injured": 1 - }, - "player_112467": { - }, - "player_42714": { - }, - "player_214946": { - }, - "player_58616": { - "injured": 1 - }, - "player_246402": { - }, - "player_488441": { - }, - "player_119577": { - }, - "player_193285": { - }, - "player_213579": { - }, - "player_244490": { - }, - "player_208554": { - }, - "player_487683": { - }, - "player_95527": { - }, - "player_129481": { - }, - "player_180299": { - }, - "player_213196": { - }, - "player_44499": { - }, - "player_454689": { - }, - "player_492034": { - }, - "player_223393": { - }, - "player_226672": { - }, - "player_487509": { - }, - "player_220374": { - "injured": 1 - }, - "player_185482": { - "suspended": 1 - }, - "player_243689": { - }, - "player_489492": { - }, - "player_229480": { - }, - "player_232242": { - }, - "player_438420": { - }, - "player_226945": { - "injured": 1 - }, - "player_110350": { - }, - "player_465345": { - }, - "player_488362": { - }, - "player_488363": { - }, - "player_176439": { - }, - "player_115149": { - }, - "player_12269": { - }, - "player_472710": { - }, - "player_468427": { - }, - "player_37743": { - "injured": 1 - }, - "player_245914": { - }, - "player_199519": { - }, - "player_110303": { - "injured": 1 - }, - "player_246453": { - }, - "player_177864": { - "injured": 1 - }, - "player_213320": { - }, - "player_84767": { - }, - "player_226114": { - "injured": 1 - }, - "player_490105": { - }, - "player_51525": { - }, - "player_422453": { - }, - "player_462609": { - }, - "player_78319": { - }, - "player_441582": { - }, - "player_107258": { - }, - "player_202963": { - }, - "player_204728": { - }, - "player_429441": { - }, - "player_241337": { - "injured": 1 - }, - "player_431422": { - }, - "player_440852": { - }, - "player_443276": { - }, - "player_462573": { - }, - "player_83279": { - }, - "player_51524": { - }, - "player_219145": { - }, - "player_244753": { - }, - "player_213200": { - }, - "player_245915": { - }, - "player_193276": { - "injured": 1 - }, - "player_221455": { - }, - "player_245750": { - }, - "player_119582": { - }, - "player_177445": { - }, - "player_62226": { - }, - "player_228319": { - }, - "player_228254": { - }, - "player_481665": { - "injured": 1 - }, - "player_471213": { - "injured": 1 - }, - "player_488423": { - }, - "player_227763": { - "injured": 1 - }, - "player_476790": { - }, - "player_458320": { - }, - "player_93174": { - }, - "player_490109": { - }, - "player_110351": { - }, - "player_168567": { - }, - "player_483164": { - }, - "player_485338": { - }, - "player_168104": { - "injured": 1 - }, - "player_73678": { - }, - "player_444394": { - }, - "player_454688": { - }, - "player_242768": { - }, - "player_488547": { - }, - "player_50996": { - }, - "player_202068": { - }, - "player_488397": { - }, - "player_107925": { - "injured": 1 - }, - "player_156692": { - }, - "player_93591": { - }, - "player_67272": { - }, - "player_432462": { - "injured": 1 - }, - "player_439364": { - "injured": 1 - }, - "player_151314": { - }, - "player_152487": { - }, - "player_457230": { - }, - "player_474131": { - }, - "player_51394": { - }, - "player_244949": { - }, - "player_37939": { - }, - "player_84462": { - }, - "player_112962": { - }, - "player_442646": { - }, - "player_487508": { - }, - "player_488548": { - }, - "player_165572": { - }, - "player_173242": { - }, - "player_172870": { - }, - "player_45110": { - }, - "player_493211": { - "injured": 1 - }, - "player_202961": { - }, - "player_85597": { - }, - "player_168116": { - }, - "player_88036": { - }, - "player_462425": { - "injured": 1 - }, - "player_454669": { - }, - "player_49322": { - }, - "player_228291": { - "injured": 1 - }, - "player_42383": { - }, - "player_73667": { - }, - "player_476511": { - }, - "player_458310": { - }, - "player_173235": { - }, - "player_489486": { - }, - "player_68157": { - "suspended": 1 - }, - "player_52777": { - "injured": 1 - }, - "player_492731": { - }, - "player_447547": { - }, - "player_467095": { - }, - "player_219289": { - }, - "player_444397": { - }, - "player_73665": { - "injured": 1 - }, - "player_92353": { - }, - "player_51634": { - "injured": 1 - }, - "player_231373": { - "pending": 1 - }, - "player_213400": { - "injured": 1 - }, - "player_116596": { - "injured": 1 - }, - "player_438309": { - }, - "player_235708": { - }, - "player_205552": { - "injured": 1 - }, - "player_38007": { - }, - "player_488439": { - }, - "player_79228": { - }, - "player_228321": { - }, - "player_201644": { - "injured": 1 - }, - "player_242111": { - "injured": 1 - }, - "player_209171": { - }, - "player_102744": { - "injured": 1 - }, - "player_198381": { - }, - "player_220924": { - }, - "player_488263": { - }, - "player_440300": { - }, - "player_119738": { - }, - "player_433857": { - }, - "player_244135": { - }, - "player_487506": { - "injured": 1 - }, - "player_222388": { - }, - "player_157728": { - }, - "player_487109": { - }, - "player_116593": { - "injured": 1 - }, - "player_103199": { - }, - "player_178814": { - }, - "player_235862": { - }, - "player_468496": { - }, - "player_488284": { - }, - "player_198189": { - }, - "player_222853": { - }, - "player_67346": { - }, - "player_487507": { - }, - "player_111001": { - "injured": 1 - }, - "player_164500": { - }, - "player_429188": { - "injured": 1 - }, - "player_168212": { - "suspended": 1 - }, - "player_221542": { - "injured": 1 - }, - "player_245137": { - "suspended": 1 - }, - "player_214244": { - "suspended": 1 - }, - "player_149918": { - "injured": 1 - }, - "player_92170": { - "suspended": 1 - }, - "player_44138": { - "suspended": 1 - }, - "player_107656": { - "suspended": 1 - }, - "player_437499": { - "injured": 1 - }, - "player_88035": { - "injured": 1 - }, - "player_243155": { - "injured": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LJT3FXDF.20190818-Request.json b/src/test/resources/__files/mpg.coach.LJT3FXDF.20190818-Request.json deleted file mode 100644 index 2b5fcd6..0000000 --- a/src/test/resources/__files/mpg.coach.LJT3FXDF.20190818-Request.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_17745", - "2": "player_74230", - "3": "player_59949", - "4": "player_41270", - "5": "player_172780", - "6": "player_166989", - "7": "player_95715", - "8": "player_66975", - "9": "player_168580", - "10": "player_110979", - "11": "player_101668", - "12": null, - "13": null, - "14": "player_101537", - "15": "player_178871", - "16": "player_20452", - "17": null, - "18": "player_40836" - }, - "composition": 343, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_LJT3FXDF_1_3_4", - "realday": 3 -} diff --git a/src/test/resources/__files/mpg.coach.LJT3FXDF.20190818.json b/src/test/resources/__files/mpg.coach.LJT3FXDF.20190818.json deleted file mode 100644 index 029fa6d..0000000 --- a/src/test/resources/__files/mpg.coach.LJT3FXDF.20190818.json +++ /dev/null @@ -1,686 +0,0 @@ -{ - "data": { - "realday": 3, - "dateMatch": 1566586800000, - "timetogame": 435806368, - "champid": 2, - "matchId": "mpg_match_LJT3FXDF_1_3_4", - "stadium": "The Middle", - "teamHome": { - "id": "mpg_team_LJT3FXDF$$mpg_user_953561", - "userId": "mpg_user_953561", - "name": "Football United Kings", - "abbr": "FUK", - "coach": "Mansuy", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1562339458158", - "jerseyAway": "jersey_backup_0_8ea82740d8faf4fed3cd01fe95827cd2", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1562339458158.png", - "targetMan": true - }, - "teamAway": { - "id": "mpg_team_LJT3FXDF$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561646533972", - "jerseyAway": "jersey_0_1561646533972", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561646533972.png" - }, - "nbPlayers": 10, - "players": [ - { - "firstname": null, - "lastname": "Lucas Moura", - "playerid": "player_95715", - "teamid": "6", - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1059707_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Matt", - "lastname": "Doherty", - "playerid": "player_87835", - "teamid": "39", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1059706_stats", - "day": 1, - "rate": 4 - } - } - }, - { - "firstname": "Patrick", - "lastname": "van Aanholt", - "playerid": "player_74230", - "teamid": "31", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1059705_stats", - "day": 1, - "rate": 5.5 - } - } - }, - { - "firstname": "Luka", - "lastname": "Milivojevic", - "playerid": "player_66975", - "teamid": "31", - "position": 3, - "quotation": 27, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "match_1059705_stats", - "day": 1, - "rate": 4 - } - } - }, - { - "firstname": null, - "lastname": "Aleix García", - "playerid": "player_178871", - "teamid": "43", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - }, - { - "firstname": null, - "lastname": "Ayoze Pérez", - "playerid": "player_168580", - "teamid": "13", - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1059706_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": "Youri", - "lastname": "Tielemans", - "playerid": "player_166989", - "teamid": "13", - "position": 3, - "quotation": 21, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1059706_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Sadio", - "lastname": "Mané", - "playerid": "player_110979", - "teamid": "14", - "position": 4, - "quotation": 50, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1059702_stats", - "day": 1, - "rate": 4.5 - } - } - }, - { - "firstname": "Jamie", - "lastname": "Vardy", - "playerid": "player_101668", - "teamid": "13", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1059706_stats", - "day": 1, - "rate": 4.5 - } - } - }, - { - "firstname": null, - "lastname": "Felipe Anderson", - "playerid": "player_101537", - "teamid": "21", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1059709_stats", - "day": 1, - "rate": 3 - } - } - }, - { - "firstname": "Séamus", - "lastname": "Coleman", - "playerid": "player_59949", - "teamid": "11", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1059705_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": null, - "lastname": "David Luiz", - "playerid": "player_41270", - "teamid": "3", - "position": 2, - "quotation": 29, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - }, - { - "firstname": "Vicente", - "lastname": "Guaita", - "playerid": "player_40836", - "teamid": "31", - "position": 1, - "quotation": 18, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1059705_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Shane", - "lastname": "Long", - "playerid": "player_20452", - "teamid": "20", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - }, - { - "firstname": "Kasper", - "lastname": "Schmeichel", - "playerid": "player_17745", - "teamid": "13", - "position": 1, - "quotation": 19, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1059706_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "James", - "lastname": "Maddison", - "playerid": "player_172780", - "teamid": "13", - "position": 3, - "quotation": 24, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1059706_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Aaron", - "lastname": "Wan-Bissaka", - "playerid": "player_214590", - "teamid": "1", - "position": 2, - "quotation": 22, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1059710_stats", - "day": 1, - "rate": 7 - } - } - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - ], - "composition": 343, - "playersOnPitch": { - "1": "player_17745", - "2": "player_214590", - "3": "player_74230", - "4": "player_59949", - "5": "player_172780", - "6": "player_166989", - "7": "player_95715", - "8": "player_66975", - "9": "player_168580", - "10": "player_110979", - "11": "player_101668", - "12": "player_87835", - "13": "player_41270", - "14": "player_101537", - "15": "player_178871", - "16": "player_20452", - "17": null, - "18": "player_40836" - }, - "bonusSelected": { - }, - "teams": { - "1": { - "name": "Man. United", - "status": "home", - "against": "Crystal Palace" - }, - "3": { - "name": "Arsenal", - "status": "away", - "against": "Liverpool" - }, - "4": { - "name": "Newcastle", - "status": "away", - "against": "Tottenham" - }, - "6": { - "name": "Tottenham", - "status": "home", - "against": "Newcastle" - }, - "7": { - "name": "Aston Villa", - "status": "home", - "against": "Everton" - }, - "8": { - "name": "Chelsea", - "status": "away", - "against": "Norwich" - }, - "11": { - "name": "Everton", - "status": "away", - "against": "Aston Villa" - }, - "13": { - "name": "Leicester", - "status": "away", - "against": "Sheffield" - }, - "14": { - "name": "Liverpool", - "status": "home", - "against": "Arsenal" - }, - "20": { - "name": "Southampton", - "status": "away", - "against": "Brighton" - }, - "21": { - "name": "West Ham", - "status": "away", - "against": "Watford" - }, - "31": { - "name": "Crystal Palace", - "status": "away", - "against": "Man. United" - }, - "36": { - "name": "Brighton", - "status": "home", - "against": "Southampton" - }, - "39": { - "name": "Wolverhampton", - "status": "home", - "against": "Burnley" - }, - "43": { - "name": "Man. City", - "status": "away", - "against": "Bournemouth" - }, - "45": { - "name": "Norwich", - "status": "home", - "against": "Chelsea" - }, - "49": { - "name": "Sheffield", - "status": "home", - "against": "Leicester" - }, - "57": { - "name": "Watford", - "status": "home", - "against": "West Ham" - }, - "90": { - "name": "Burnley", - "status": "away", - "against": "Wolverhampton" - }, - "91": { - "name": "Bournemouth", - "status": "home", - "against": "Man. City" - } - }, - "tds": { - "update": "2019-08-16T08:07:36.917Z", - "player_98745": { - "injured": 1 - }, - "player_156074": { - "injured": 1 - }, - "player_80254": { - "injured": 1 - }, - "player_59966": { - }, - "player_43252": { - "injured": 1 - }, - "player_111317": { - "injured": 1 - }, - "player_155408": { - "injured": 1 - }, - "player_41320": { - }, - "player_40387": { - "injured": 1 - }, - "player_15149": { - "injured": 1 - }, - "player_56917": { - }, - "player_235530": { - "injured": 1 - }, - "player_56872": { - "injured": 1 - }, - "player_90517": { - "injured": 1 - }, - "player_39847": { - "injured": 1 - }, - "player_227127": { - "injured": 1 - }, - "player_167473": { - "injured": 1 - }, - "player_209046": { - "injured": 1 - }, - "player_116594": { - }, - "player_126187": { - "injured": 1 - }, - "player_102380": { - "pending": 1 - }, - "player_47431": { - "pending": 1 - }, - "player_40784": { - "injured": 1 - }, - "player_49413": { - "injured": 1 - }, - "player_12745": { - "pending": 1 - }, - "player_41823": { - "injured": 1 - }, - "player_86881": { - "pending": 1 - }, - "player_146941": { - }, - "player_182156": { - "injured": 1 - }, - "player_102826": { - "pending": 1 - }, - "player_197365": { - "injured": 1 - }, - "player_58771": { - "pending": 1 - }, - "player_77359": { - "injured": 1 - }, - "player_56983": { - "pending": 1 - }, - "player_151119": { - "injured": 1 - }, - "player_18665": { - "injured": 1 - }, - "player_84384": { - "injured": 1 - }, - "player_192303": { - "injured": 1 - }, - "player_59614": { - "injured": 1 - }, - "player_80226": { - }, - "player_108823": { - "injured": 1 - }, - "player_115556": { - "pending": 1 - }, - "player_93264": { - }, - "player_234908": { - "suspended": 1 - }, - "player_85971": { - "suspended": 1 - }, - "player_54756": { - }, - "player_89085": { - }, - "player_216058": { - }, - "player_18073": { - "injured": 1 - }, - "player_87835": { - "pending": 1 - }, - "player_222531": { - }, - "player_153256": { - "pending": 1 - }, - "player_111457": { - "pending": 1 - }, - "player_233963": { - "injured": 1 - }, - "player_37605": { - "pending": 1 - }, - "player_192895": { - "injured": 1 - }, - "player_209289": { - "injured": 1 - }, - "player_84450": { - "pending": 1 - }, - "player_123354": { - "injured": 1 - }, - "player_54764": { - "injured": 1 - }, - "player_74375": { - "injured": 1 - }, - "player_220307": { - "pending": 1 - }, - "player_61603": { - "injured": 1 - }, - "player_225796": { - "injured": 1 - }, - "player_167767": { - }, - "player_86417": { - "injured": 1 - }, - "player_120250": { - "pending": 1 - }, - "player_42774": { - "suspended": 1 - }, - "player_116535": { - "injured": 1 - }, - "player_38454": { - "pending": 1 - }, - "player_175592": { - "pending": 1 - }, - "player_37265": { - "pending": 1 - }, - "player_50232": { - "pending": 1 - }, - "player_40142": { - "injured": 1 - }, - "player_128348": { - "injured": 1 - }, - "player_184349": { - "injured": 1 - }, - "player_50175": { - "pending": 1 - }, - "player_232185": { - "pending": 1 - }, - "player_103123": { - "pending": 1 - }, - "player_101537": { - "pending": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191212-Request.json b/src/test/resources/__files/mpg.coach.LJT3FXDF.20191212-Request.json deleted file mode 100644 index 1ce35dc..0000000 --- a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191212-Request.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_17745", - "2": "player_92159", - "3": "player_87835", - "4": "player_41270", - "5": "player_172780", - "6": "player_114283", - "7": "player_166989", - "8": "player_47247", - "9": "player_101668", - "10": "player_110979", - "11": "player_73426", - "12": "player_55459", - "13": "player_83314", - "14": "player_203341", - "15": "player_122806", - "16": "player_213345", - "17": "player_233425", - "18": "player_98747" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_55459", - "start": "player_41270", - "rating": 5 - }, - { - "subs": "player_203341", - "start": "player_47247", - "rating": 5 - }, - { - "subs": "player_122806", - "start": "player_166989", - "rating": 5 - }, - { - "subs": "player_213345", - "start": "player_73426", - "rating": 6 - }, - { - "subs": "player_233425", - "start": "player_110979", - "rating": 6 - } - ], - "bonusSelected": { - "type": 5 - }, - "matchId": "mpg_match_LJT3FXDF_1_17_1", - "realday": 17 -} diff --git a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191212.json b/src/test/resources/__files/mpg.coach.LJT3FXDF.20191212.json deleted file mode 100644 index c7d9a61..0000000 --- a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191212.json +++ /dev/null @@ -1,1736 +0,0 @@ -{ - "data": { - "realday": 17, - "dateMatch": 1576326600000, - "timetogame": 137984128, - "champid": 2, - "matchId": "mpg_match_LJT3FXDF_1_17_1", - "stadium": "Princes Park", - "teamHome": { - "id": "mpg_team_LJT3FXDF$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "teamAway": { - "id": "mpg_team_LJT3FXDF$$mpg_user_1570437", - "userId": "mpg_user_1570437", - "name": "ARSENAL", - "abbr": "ARS", - "coach": "Tony", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561646533972", - "jerseyAway": "jersey_0_1561646533972", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561646533972.png", - "targetMan": true - }, - "nbPlayers": 10, - "players": [ - { - "playerid": "player_74230", - "firstname": "Patrick", - "lastname": "van Aanholt", - "status": 2, - "teamid": "31", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "lastFiveRate": { - "12": { - "matchId": "match_1059813_stats", - "day": 12, - "rate": 4 - }, - "13": { - "matchId": "match_1059826_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1059832_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059849_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "-", - "day": 16 - } - } - }, - { - "playerid": "player_166989", - "firstname": "Youri", - "lastname": "Tielemans", - "status": 2, - "teamid": "13", - "position": 3, - "quotation": 24, - "ultraPosition": 32, - "lastFiveRate": { - "12": { - "matchId": "match_1059814_stats", - "day": 12, - "rate": 7 - }, - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 5.5 - } - } - }, - { - "playerid": "player_110979", - "firstname": "Sadio", - "lastname": "Mané", - "status": 2, - "teamid": "14", - "position": 4, - "quotation": 53, - "ultraPosition": 40, - "lastFiveRate": { - "12": { - "matchId": "match_1059815_stats", - "day": 12, - "rate": 6.5 - }, - "13": { - "matchId": "match_1059826_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1059835_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1059850_stats", - "day": 15, - "rate": 8 - }, - "16": { - "matchId": "-", - "day": 16 - } - } - }, - { - "playerid": "player_101668", - "firstname": "Jamie", - "lastname": "Vardy", - "status": 2, - "teamid": "13", - "position": 4, - "quotation": 50, - "ultraPosition": 40, - "lastFiveRate": { - "12": { - "matchId": "match_1059814_stats", - "day": 12, - "rate": 7.5 - }, - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 8 - } - } - }, - { - "playerid": "player_41270", - "firstname": null, - "lastname": "David Luiz", - "status": 2, - "teamid": "3", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "lastFiveRate": { - "12": { - "matchId": "match_1059814_stats", - "day": 12, - "rate": 4 - }, - "13": { - "matchId": "match_1059823_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059838_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1059842_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "-", - "day": 16 - } - } - }, - { - "playerid": "player_17745", - "firstname": "Kasper", - "lastname": "Schmeichel", - "status": 2, - "teamid": "13", - "position": 1, - "quotation": 24, - "ultraPosition": 10, - "lastFiveRate": { - "12": { - "matchId": "match_1059814_stats", - "day": 12, - "rate": 6 - }, - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 5 - } - } - }, - { - "playerid": "player_172780", - "firstname": "James", - "lastname": "Maddison", - "status": 2, - "teamid": "13", - "position": 3, - "quotation": 35, - "ultraPosition": 32, - "lastFiveRate": { - "12": { - "matchId": "match_1059814_stats", - "day": 12, - "rate": 7 - }, - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 7.5 - } - } - }, - { - "playerid": "player_213345", - "firstname": null, - "lastname": "Wesley", - "status": 2, - "teamid": "7", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "lastFiveRate": { - "12": { - "matchId": "match_1059821_stats", - "day": 12, - "rate": 4.5 - }, - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 3.5 - } - } - }, - { - "playerid": "player_98747", - "firstname": "Nick", - "lastname": "Pope", - "status": 2, - "teamid": "90", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "lastFiveRate": { - "12": { - "matchId": "match_1059812_stats", - "day": 12, - "rate": 6.5 - }, - "13": { - "matchId": "match_1059830_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059832_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1059843_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1059859_stats", - "day": 16, - "rate": 3.5 - } - } - }, - { - "playerid": "player_56377", - "firstname": "Andriy", - "lastname": "Yarmolenko", - "status": 2, - "teamid": "21", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "lastFiveRate": { - "12": { - "matchId": "match_1059812_stats", - "day": 12, - "rate": 3.5 - }, - "13": { - "matchId": "match_1059831_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1059833_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "-", - "day": 16 - } - } - }, - { - "playerid": "player_122806", - "firstname": "John", - "lastname": "McGinn", - "status": 2, - "teamid": "7", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "lastFiveRate": { - "12": { - "matchId": "match_1059821_stats", - "day": 12, - "rate": 5.5 - }, - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 4 - } - } - }, - { - "playerid": "player_87835", - "firstname": "Matt", - "lastname": "Doherty", - "status": 2, - "teamid": "39", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "lastFiveRate": { - "12": { - "matchId": "match_1059821_stats", - "day": 12, - "rate": 5.5 - }, - "13": { - "matchId": "match_1059822_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059841_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059854_stats", - "day": 16, - "rate": 4 - } - } - }, - { - "playerid": "player_114283", - "firstname": "Jack", - "lastname": "Grealish", - "status": 2, - "teamid": "7", - "position": 3, - "quotation": 26, - "ultraPosition": 32, - "lastFiveRate": { - "12": { - "matchId": "-", - "day": 12 - }, - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 7.5 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 6 - } - } - }, - { - "playerid": "player_233425", - "firstname": "Aaron", - "lastname": "Connolly", - "status": 2, - "teamid": "36", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "12": { - "matchId": "match_1059816_stats", - "day": 12, - "rate": 3 - }, - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1059835_stats", - "day": 14, - "rate": 3.5 - }, - "15": { - "matchId": "match_1059842_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "-", - "day": 16 - } - } - }, - { - "playerid": "player_203341", - "firstname": null, - "lastname": "Wilfred Ndidi", - "status": 2, - "teamid": "13", - "position": 3, - "quotation": 27, - "ultraPosition": 31, - "lastFiveRate": { - "12": { - "matchId": "match_1059814_stats", - "day": 12, - "rate": 7 - }, - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 6 - } - } - }, - { - "playerid": "player_55459", - "firstname": "Aaron", - "lastname": "Cresswell", - "status": 2, - "teamid": "21", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "lastFiveRate": { - "12": { - "matchId": "match_1059812_stats", - "day": 12, - "rate": 3.5 - }, - "13": { - "matchId": "match_1059831_stats", - "day": 13, - "rate": 3.5 - }, - "14": { - "matchId": "match_1059833_stats", - "day": 14, - "rate": 7 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1059861_stats", - "day": 16, - "rate": 5 - } - } - }, - { - "playerid": "player_83314", - "firstname": "Jeff", - "lastname": "Hendrick", - "status": 2, - "teamid": "90", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "12": { - "matchId": "match_1059812_stats", - "day": 12, - "rate": 6.5 - }, - "13": { - "matchId": "match_1059830_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1059832_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059843_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1059859_stats", - "day": 16, - "rate": 3 - } - } - }, - { - "playerid": "player_194794", - "firstname": "Fikayo", - "lastname": "Tomori", - "status": 2, - "teamid": "8", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "lastFiveRate": { - "12": { - "matchId": "match_1059813_stats", - "day": 12, - "rate": 6 - }, - "13": { - "matchId": "match_1059828_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1059833_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - } - } - }, - { - "playerid": "player_92159", - "firstname": "Jetro", - "lastname": "Willems", - "status": 2, - "teamid": "4", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "12": { - "matchId": "match_1059817_stats", - "day": 12, - "rate": 6.5 - }, - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1059837_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059846_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059857_stats", - "day": 16, - "rate": 5 - } - } - }, - { - "playerid": "player_73426", - "firstname": "Andre", - "lastname": "Gray", - "status": 2, - "teamid": "57", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "12": { - "matchId": "match_1059818_stats", - "day": 12, - "rate": 6 - }, - "13": { - "matchId": "match_1059830_stats", - "day": 13, - "rate": 3 - }, - "14": { - "matchId": "match_1059839_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1059860_stats", - "day": 16, - "rate": 4.5 - } - } - }, - { - "playerid": "player_47247", - "firstname": "John", - "lastname": "Fleck", - "status": 2, - "teamid": "49", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "lastFiveRate": { - "12": { - "matchId": "match_1059820_stats", - "day": 12, - "rate": 5.5 - }, - "13": { - "matchId": "match_1059829_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1059841_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059846_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1059858_stats", - "day": 16, - "rate": 5.5 - } - } - }, - { - "playerid": "player_149484", - "firstname": "Tyrone", - "lastname": "Mings", - "status": 2, - "teamid": "7", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "lastFiveRate": { - "12": { - "matchId": "match_1059821_stats", - "day": 12, - "rate": 4.5 - }, - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 4.5 - } - } - } - ], - "bonus": { - "1": 0, - "2": 1, - "3": 0, - "4": 0, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - { - "subs": "player_55459", - "start": "player_41270", - "rating": 5 - }, - { - "subs": "player_203341", - "start": "player_47247", - "rating": 5 - }, - { - "subs": "player_122806", - "start": "player_166989", - "rating": 5 - }, - { - "subs": "player_213345", - "start": "player_73426", - "rating": 6 - }, - { - "subs": "player_233425", - "start": "player_110979", - "rating": 6 - } - ], - "composition": 343, - "playersOnPitch": { - "1": "player_17745", - "2": "player_92159", - "3": "player_87835", - "4": "player_41270", - "5": "player_172780", - "6": "player_114283", - "7": "player_166989", - "8": "player_47247", - "9": "player_101668", - "10": "player_110979", - "11": "player_73426", - "12": "player_55459", - "13": "player_83314", - "14": "player_203341", - "15": "player_122806", - "16": "player_213345", - "17": "player_233425", - "18": "player_98747" - }, - "bonusSelected": { - }, - "teams": { - "1": { - "name": "Man. United", - "status": "home", - "against": "Everton" - }, - "3": { - "name": "Arsenal", - "status": "home", - "against": "Man. City" - }, - "4": { - "name": "Newcastle", - "status": "away", - "against": "Burnley" - }, - "6": { - "name": "Tottenham", - "status": "away", - "against": "Wolverhampton" - }, - "7": { - "name": "Aston Villa", - "status": "away", - "against": "Sheffield" - }, - "8": { - "name": "Chelsea", - "status": "home", - "against": "Bournemouth" - }, - "11": { - "name": "Everton", - "status": "away", - "against": "Man. United" - }, - "13": { - "name": "Leicester", - "status": "home", - "against": "Norwich" - }, - "14": { - "name": "Liverpool", - "status": "home", - "against": "Watford" - }, - "20": { - "name": "Southampton", - "status": "home", - "against": "West Ham" - }, - "21": { - "name": "West Ham", - "status": "away", - "against": "Southampton" - }, - "31": { - "name": "Crystal Palace", - "status": "home", - "against": "Brighton" - }, - "36": { - "name": "Brighton", - "status": "away", - "against": "Crystal Palace" - }, - "39": { - "name": "Wolverhampton", - "status": "home", - "against": "Tottenham" - }, - "43": { - "name": "Man. City", - "status": "away", - "against": "Arsenal" - }, - "45": { - "name": "Norwich", - "status": "away", - "against": "Leicester" - }, - "49": { - "name": "Sheffield", - "status": "home", - "against": "Aston Villa" - }, - "57": { - "name": "Watford", - "status": "away", - "against": "Liverpool" - }, - "90": { - "name": "Burnley", - "status": "home", - "against": "Newcastle" - }, - "91": { - "name": "Bournemouth", - "status": "away", - "against": "Chelsea" - } - }, - "tds": { - "update": "2019-12-12T17:31:07.667Z", - "player_98745": { - }, - "player_156074": { - "injured": 1 - }, - "player_80254": { - "injured": 1 - }, - "player_59966": { - }, - "player_43252": { - }, - "player_111317": { - "injured": 1 - }, - "player_155408": { - }, - "player_41320": { - "injured": 1 - }, - "player_40387": { - }, - "player_15149": { - }, - "player_56917": { - "injured": 1 - }, - "player_235530": { - "pending": 1 - }, - "player_56872": { - "injured": 1 - }, - "player_90517": { - }, - "player_39847": { - "injured": 1 - }, - "player_227127": { - }, - "player_167473": { - "injured": 1 - }, - "player_209046": { - }, - "player_116594": { - }, - "player_126187": { - "injured": 1 - }, - "player_102380": { - }, - "player_47431": { - }, - "player_40784": { - "suspended": 1 - }, - "player_49413": { - }, - "player_12745": { - }, - "player_41823": { - "injured": 1 - }, - "player_86881": { - }, - "player_146941": { - "injured": 1 - }, - "player_182156": { - "injured": 1 - }, - "player_102826": { - }, - "player_197365": { - "injured": 1 - }, - "player_58771": { - "pending": 1 - }, - "player_77359": { - }, - "player_56983": { - "injured": 1 - }, - "player_151119": { - "pending": 1 - }, - "player_18665": { - }, - "player_84384": { - "injured": 1 - }, - "player_192303": { - }, - "player_59614": { - "injured": 1 - }, - "player_80226": { - }, - "player_108823": { - }, - "player_115556": { - "injured": 1 - }, - "player_93264": { - }, - "player_234908": { - }, - "player_85971": { - }, - "player_54756": { - }, - "player_89085": { - }, - "player_216058": { - }, - "player_18073": { - }, - "player_87835": { - }, - "player_222531": { - "pending": 1 - }, - "player_153256": { - }, - "player_111457": { - }, - "player_233963": { - }, - "player_37605": { - }, - "player_192895": { - "injured": 1 - }, - "player_209289": { - }, - "player_84450": { - "injured": 1 - }, - "player_123354": { - }, - "player_54764": { - }, - "player_74375": { - }, - "player_220307": { - }, - "player_61603": { - }, - "player_225796": { - }, - "player_167767": { - }, - "player_86417": { - "injured": 1 - }, - "player_120250": { - "injured": 1 - }, - "player_42774": { - }, - "player_116535": { - }, - "player_38454": { - "pending": 1 - }, - "player_175592": { - }, - "player_37265": { - "pending": 1 - }, - "player_50232": { - }, - "player_40142": { - }, - "player_128348": { - }, - "player_184349": { - }, - "player_50175": { - "injured": 1 - }, - "player_232185": { - }, - "player_103123": { - }, - "player_101537": { - }, - "player_172850": { - }, - "player_97299": { - "injured": 1 - }, - "player_104953": { - }, - "player_104547": { - }, - "player_180974": { - }, - "player_170137": { - "pending": 1 - }, - "player_81048": { - "injured": 1 - }, - "player_90440": { - }, - "player_89470": { - }, - "player_47247": { - }, - "player_194401": { - }, - "player_48717": { - }, - "player_169359": { - "pending": 1 - }, - "player_93284": { - "suspended": 1 - }, - "player_60586": { - "injured": 1 - }, - "player_184341": { - }, - "player_49579": { - }, - "player_160987": { - "injured": 1 - }, - "player_203341": { - }, - "player_15033": { - }, - "player_61604": { - "injured": 1 - }, - "player_205651": { - }, - "player_148225": { - }, - "player_106760": { - "pending": 1 - }, - "player_179018": { - }, - "player_111773": { - }, - "player_92159": { - }, - "player_109638": { - }, - "player_40146": { - }, - "player_220598": { - }, - "player_431131": { - }, - "player_158534": { - }, - "player_231372": { - "pending": 1 - }, - "player_41725": { - }, - "player_57531": { - }, - "player_200089": { - }, - "player_198849": { - }, - "player_148508": { - }, - "player_52484": { - }, - "player_116216": { - }, - "player_223911": { - }, - "player_54469": { - "injured": 1 - }, - "player_44699": { - "pending": 1 - }, - "player_433154": { - }, - "player_91651": { - }, - "player_19188": { - }, - "player_58786": { - }, - "player_57513": { - }, - "player_57328": { - "injured": 1 - }, - "player_59859": { - }, - "player_74208": { - "pending": 1 - }, - "player_214590": { - }, - "player_109322": { - "pending": 1 - }, - "player_216051": { - "pending": 1 - }, - "player_232980": { - }, - "player_83428": { - "injured": 1 - }, - "player_27436": { - }, - "player_171975": { - }, - "player_135720": { - }, - "player_83283": { - }, - "player_173904": { - }, - "player_200826": { - }, - "player_38439": { - }, - "player_41338": { - }, - "player_90585": { - "injured": 1 - }, - "player_107613": { - }, - "player_165210": { - }, - "player_209362": { - }, - "player_109533": { - }, - "player_55037": { - }, - "player_50471": { - }, - "player_59125": { - }, - "player_152760": { - }, - "player_209244": { - }, - "player_200617": { - }, - "player_223175": { - }, - "player_119471": { - }, - "player_87396": { - }, - "player_37614": { - }, - "player_18867": { - }, - "player_173514": { - }, - "player_105717": { - }, - "player_61933": { - }, - "player_109345": { - "injured": 1 - }, - "player_135363": { - }, - "player_82660": { - }, - "player_44346": { - "pending": 1 - }, - "player_172780": { - }, - "player_110979": { - }, - "player_176297": { - }, - "player_76359": { - }, - "player_201084": { - "injured": 1 - }, - "player_20480": { - }, - "player_28082": { - }, - "player_86934": { - "injured": 1 - }, - "player_81012": { - }, - "player_428610": { - }, - "player_153682": { - }, - "player_90105": { - }, - "player_66242": { - }, - "player_40145": { - }, - "player_66975": { - }, - "player_68312": { - }, - "player_60914": { - "injured": 1 - }, - "player_61366": { - }, - "player_153127": { - }, - "player_194799": { - }, - "player_58822": { - }, - "player_58376": { - }, - "player_108413": { - }, - "player_37096": { - "injured": 1 - }, - "player_194634": { - }, - "player_37915": { - "injured": 1 - }, - "player_200641": { - }, - "player_89274": { - }, - "player_59949": { - "injured": 1 - }, - "player_118748": { - }, - "player_444884": { - }, - "player_51940": { - }, - "player_220688": { - }, - "player_198826": { - }, - "player_193111": { - }, - "player_78607": { - }, - "player_169432": { - }, - "player_80607": { - }, - "player_41945": { - "injured": 1 - }, - "player_151589": { - }, - "player_247632": { - }, - "player_74471": { - }, - "player_152551": { - }, - "player_60689": { - "pending": 1 - }, - "player_88894": { - }, - "player_40836": { - }, - "player_66838": { - }, - "player_164511": { - "injured": 1 - }, - "player_169187": { - }, - "player_122798": { - }, - "player_220566": { - }, - "player_206325": { - }, - "player_180804": { - }, - "player_62398": { - }, - "player_40868": { - "injured": 1 - }, - "player_61566": { - }, - "player_55459": { - "pending": 1 - }, - "player_41727": { - }, - "player_114283": { - }, - "player_221239": { - "injured": 1 - }, - "player_17997": { - "pending": 1 - }, - "player_100649": { - }, - "player_97032": { - }, - "player_184667": { - }, - "player_95658": { - }, - "player_180135": { - }, - "player_38290": { - }, - "player_62974": { - "injured": 1 - }, - "player_43250": { - "injured": 1 - }, - "player_54102": { - "pending": 1 - }, - "player_182539": { - "injured": 1 - }, - "player_203368": { - }, - "player_110735": { - }, - "player_15237": { - }, - "player_85955": { - }, - "player_60252": { - }, - "player_56979": { - }, - "player_121160": { - "pending": 1 - }, - "player_20664": { - "pending": 1 - }, - "player_209041": { - }, - "player_195851": { - }, - "player_18892": { - }, - "player_108416": { - }, - "player_39194": { - }, - "player_108156": { - }, - "player_21205": { - }, - "player_79852": { - "injured": 1 - }, - "player_83299": { - }, - "player_233425": { - "pending": 1 - }, - "player_78007": { - "injured": 1 - }, - "player_81183": { - }, - "player_176413": { - }, - "player_82403": { - }, - "player_55494": { - "injured": 1 - }, - "player_37642": { - }, - "player_171287": { - }, - "player_200720": { - }, - "player_165809": { - }, - "player_58845": { - "pending": 1 - }, - "player_101148": { - "injured": 1 - }, - "player_45268": { - }, - "player_39215": { - "injured": 1 - }, - "player_85624": { - }, - "player_159533": { - }, - "player_216054": { - }, - "player_223340": { - }, - "player_168991": { - }, - "player_154566": { - }, - "player_60551": { - "pending": 1 - }, - "player_173879": { - }, - "player_116643": { - "injured": 1 - }, - "player_37572": { - "injured": 1 - }, - "player_58893": { - "injured": 1 - }, - "player_178304": { - }, - "player_128198": { - "pending": 1 - }, - "player_91047": { - }, - "player_60232": { - "injured": 1 - }, - "player_52940": { - "injured": 1 - }, - "player_219924": { - }, - "player_41270": { - }, - "player_69140": { - }, - "player_193488": { - }, - "player_39487": { - }, - "player_103914": { - "pending": 1 - }, - "player_19419": { - }, - "player_20467": { - "pending": 1 - }, - "player_172632": { - }, - "player_54484": { - }, - "player_154506": { - }, - "player_41674": { - "injured": 1 - }, - "player_74230": { - "injured": 1 - }, - "player_141020": { - "pending": 1 - }, - "player_18987": { - }, - "player_195735": { - "pending": 1 - }, - "player_149484": { - "pending": 1 - }, - "player_40845": { - "suspended": 1 - }, - "player_75115": { - "pending": 1 - }, - "player_194794": { - "pending": 1 - }, - "player_101188": { - "pending": 1 - }, - "player_39155": { - "pending": 1 - }, - "player_213482": { - "injured": 1 - }, - "player_157668": { - "pending": 1 - }, - "player_56377": { - "pending": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191220-Request.json b/src/test/resources/__files/mpg.coach.LJT3FXDF.20191220-Request.json deleted file mode 100644 index 686362d..0000000 --- a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191220-Request.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_17745", - "2": "player_92159", - "3": "player_87835", - "4": "player_114128", - "5": "player_172780", - "6": "player_18987", - "7": "player_114283", - "8": "player_166989", - "9": "player_101668", - "10": "player_110979", - "11": "player_220688", - "12": "player_55459", - "13": "player_110735", - "14": "player_203341", - "15": "player_122806", - "16": "player_73426", - "17": "player_213345", - "18": "player_98747" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_55459", - "start": "player_114128", - "rating": 5 - }, - { - "subs": "player_203341", - "start": "player_166989", - "rating": 5 - }, - { - "subs": "player_122806", - "start": "player_114283", - "rating": 5 - }, - { - "subs": "player_73426", - "start": "player_220688", - "rating": 6 - }, - { - "subs": "player_213345", - "start": "player_110979", - "rating": 6 - } - ], - "bonusSelected": { - "type": 2 - }, - "matchId": "mpg_match_LJT3FXDF_1_18_3", - "realday": 18 -} diff --git a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191220.json b/src/test/resources/__files/mpg.coach.LJT3FXDF.20191220.json deleted file mode 100644 index 9b2d8d5..0000000 --- a/src/test/resources/__files/mpg.coach.LJT3FXDF.20191220.json +++ /dev/null @@ -1,1849 +0,0 @@ -{ - "data": { - "realday": 18, - "dateMatch": 1576931400000, - "timetogame": 75723817, - "champid": 2, - "matchId": "mpg_match_LJT3FXDF_1_18_3", - "stadium": "Poudlard", - "teamHome": { - "id": "mpg_team_LJT3FXDF$$mpg_user_600737", - "userId": "mpg_user_600737", - "name": "HOGWARTS FC", - "abbr": "HFC", - "coach": "Celine", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561646533972", - "jerseyAway": "jersey_0_1561646533972", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561646533972.png" - }, - "teamAway": { - "id": "mpg_team_LJT3FXDF$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png", - "targetMan": true - }, - "nbPlayers": 10, - "players": [ - { - "playerid": "player_166989", - "firstname": "Youri", - "lastname": "Tielemans", - "status": 2, - "teamid": "13", - "position": 3, - "quotation": 24, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1059866_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_110979", - "firstname": "Sadio", - "lastname": "Mané", - "status": 2, - "teamid": "14", - "position": 4, - "quotation": 53, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1059826_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1059835_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1059850_stats", - "day": 15, - "rate": 8 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1059867_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_101668", - "firstname": "Jamie", - "lastname": "Vardy", - "status": 2, - "teamid": "13", - "position": 4, - "quotation": 50, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 8 - }, - "17": { - "matchId": "match_1059866_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_41270", - "firstname": null, - "lastname": "David Luiz", - "status": 2, - "teamid": "3", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1059823_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059838_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1059842_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_17745", - "firstname": "Kasper", - "lastname": "Schmeichel", - "status": 2, - "teamid": "13", - "position": 1, - "quotation": 24, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1059866_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_172780", - "firstname": "James", - "lastname": "Maddison", - "status": 2, - "teamid": "13", - "position": 3, - "quotation": 35, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 7.5 - }, - "17": { - "matchId": "match_1059866_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_213345", - "firstname": null, - "lastname": "Wesley", - "status": 2, - "teamid": "7", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 3.5 - }, - "17": { - "matchId": "match_1059869_stats", - "day": 17, - "rate": 4 - } - } - }, - { - "playerid": "player_98747", - "firstname": "Nick", - "lastname": "Pope", - "status": 2, - "teamid": "90", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1059830_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1059832_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1059843_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1059859_stats", - "day": 16, - "rate": 3.5 - }, - "17": { - "matchId": "match_1059863_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_56377", - "firstname": "Andriy", - "lastname": "Yarmolenko", - "status": 2, - "teamid": "21", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1059831_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1059833_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1059870_stats", - "day": 17, - "rate": 4 - } - } - }, - { - "playerid": "player_122806", - "firstname": "John", - "lastname": "McGinn", - "status": 2, - "teamid": "7", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1059869_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_87835", - "firstname": "Matt", - "lastname": "Doherty", - "status": 2, - "teamid": "39", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1059822_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059841_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059854_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1059871_stats", - "day": 17, - "rate": 3.5 - } - } - }, - { - "playerid": "player_114283", - "firstname": "Jack", - "lastname": "Grealish", - "status": 2, - "teamid": "7", - "position": 3, - "quotation": 26, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 7.5 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1059848_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1059869_stats", - "day": 17, - "rate": 2.5 - } - } - }, - { - "playerid": "player_203341", - "firstname": null, - "lastname": "Wilfred Ndidi", - "status": 2, - "teamid": "13", - "position": 3, - "quotation": 27, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059834_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059853_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1059866_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_55459", - "firstname": "Aaron", - "lastname": "Cresswell", - "status": 2, - "teamid": "21", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1059831_stats", - "day": 13, - "rate": 3.5 - }, - "14": { - "matchId": "match_1059833_stats", - "day": 14, - "rate": 7 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1059861_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1059870_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_83314", - "firstname": "Jeff", - "lastname": "Hendrick", - "status": 2, - "teamid": "90", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1059830_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1059832_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059843_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1059859_stats", - "day": 16, - "rate": 3 - }, - "17": { - "matchId": "match_1059863_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_92159", - "firstname": "Jetro", - "lastname": "Willems", - "status": 2, - "teamid": "4", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1059824_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1059837_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059846_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1059857_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1059863_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_73426", - "firstname": "Andre", - "lastname": "Gray", - "status": 2, - "teamid": "57", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1059830_stats", - "day": 13, - "rate": 3 - }, - "14": { - "matchId": "match_1059839_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1059844_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1059860_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1059867_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_47247", - "firstname": "John", - "lastname": "Fleck", - "status": 2, - "teamid": "49", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1059829_stats", - "day": 13, - "rate": 6.5 - }, - "14": { - "matchId": "match_1059841_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059846_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1059858_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1059869_stats", - "day": 17, - "rate": 8 - } - } - }, - { - "playerid": "player_114128", - "firstname": null, - "lastname": "Jonny", - "status": 2, - "teamid": "39", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1059822_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1059841_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1059854_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1059871_stats", - "day": 17, - "rate": 4 - } - } - }, - { - "playerid": "player_220688", - "firstname": "Mason", - "lastname": "Greenwood", - "status": 2, - "teamid": "1", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1059829_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059836_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1059845_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1059868_stats", - "day": 17, - "rate": 6 - } - } - }, - { - "playerid": "player_18987", - "firstname": "Robert", - "lastname": "Snodgrass", - "status": 2, - "teamid": "21", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1059831_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1059833_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1059847_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1059861_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1059870_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_110735", - "firstname": "Adam", - "lastname": "Webster", - "status": 2, - "teamid": "36", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1059825_stats", - "day": 13, - "rate": 3 - }, - "14": { - "matchId": "match_1059835_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1059842_stats", - "day": 15, - "rate": 7.5 - }, - "16": { - "matchId": "match_1059854_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1059865_stats", - "day": 17, - "rate": 4.5 - } - } - } - ], - "bonus": { - "1": 0, - "2": 1, - "3": 0, - "4": 0, - "5": 0, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - { - "subs": "player_55459", - "start": "player_114128", - "rating": 5 - }, - { - "subs": "player_203341", - "start": "player_166989", - "rating": 5 - }, - { - "subs": "player_122806", - "start": "player_114283", - "rating": 5 - }, - { - "subs": "player_73426", - "start": "player_220688", - "rating": 6 - }, - { - "subs": "player_213345", - "start": "player_110979", - "rating": 6 - } - ], - "composition": 343, - "playersOnPitch": { - "1": "player_17745", - "2": "player_92159", - "3": "player_87835", - "4": "player_114128", - "5": "player_172780", - "6": "player_18987", - "7": "player_114283", - "8": "player_166989", - "9": "player_101668", - "10": "player_110979", - "11": "player_220688", - "12": "player_55459", - "13": "player_110735", - "14": "player_203341", - "15": "player_122806", - "16": "player_73426", - "17": "player_213345", - "18": "player_98747" - }, - "bonusSelected": { - "type": null - }, - "teams": { - "1": { - "name": "Man. United", - "status": "away", - "against": "Watford" - }, - "3": { - "name": "Arsenal", - "status": "away", - "against": "Everton" - }, - "4": { - "name": "Newcastle", - "status": "home", - "against": "Crystal Palace" - }, - "6": { - "name": "Tottenham", - "status": "home", - "against": "Chelsea" - }, - "7": { - "name": "Aston Villa", - "status": "home", - "against": "Southampton" - }, - "8": { - "name": "Chelsea", - "status": "away", - "against": "Tottenham" - }, - "11": { - "name": "Everton", - "status": "home", - "against": "Arsenal" - }, - "13": { - "name": "Leicester", - "status": "away", - "against": "Man. City" - }, - "14": { - "name": "Liverpool", - "status": "away", - "against": "West Ham" - }, - "20": { - "name": "Southampton", - "status": "away", - "against": "Aston Villa" - }, - "21": { - "name": "West Ham", - "status": "home", - "against": "Liverpool" - }, - "31": { - "name": "Crystal Palace", - "status": "away", - "against": "Newcastle" - }, - "36": { - "name": "Brighton", - "status": "home", - "against": "Sheffield" - }, - "39": { - "name": "Wolverhampton", - "status": "away", - "against": "Norwich" - }, - "43": { - "name": "Man. City", - "status": "home", - "against": "Leicester" - }, - "45": { - "name": "Norwich", - "status": "home", - "against": "Wolverhampton" - }, - "49": { - "name": "Sheffield", - "status": "away", - "against": "Brighton" - }, - "57": { - "name": "Watford", - "status": "home", - "against": "Man. United" - }, - "90": { - "name": "Burnley", - "status": "away", - "against": "Bournemouth" - }, - "91": { - "name": "Bournemouth", - "status": "home", - "against": "Burnley" - } - }, - "tds": { - "update": "2019-12-20T14:41:07.783Z", - "player_98745": { - "pending": 1 - }, - "player_156074": { - "pending": 1 - }, - "player_80254": { - "injured": 1 - }, - "player_59966": { - }, - "player_43252": { - }, - "player_111317": { - "injured": 1 - }, - "player_155408": { - }, - "player_41320": { - "injured": 1 - }, - "player_40387": { - }, - "player_15149": { - }, - "player_56917": { - "injured": 1 - }, - "player_235530": { - "injured": 1 - }, - "player_56872": { - }, - "player_90517": { - }, - "player_39847": { - "injured": 1 - }, - "player_227127": { - }, - "player_167473": { - "injured": 1 - }, - "player_209046": { - }, - "player_116594": { - }, - "player_126187": { - "injured": 1 - }, - "player_102380": { - }, - "player_47431": { - }, - "player_40784": { - "suspended": 1 - }, - "player_49413": { - }, - "player_12745": { - }, - "player_41823": { - "pending": 1 - }, - "player_86881": { - }, - "player_146941": { - "injured": 1 - }, - "player_182156": { - "injured": 1 - }, - "player_102826": { - }, - "player_197365": { - "injured": 1 - }, - "player_58771": { - "pending": 1 - }, - "player_77359": { - }, - "player_56983": { - "injured": 1 - }, - "player_151119": { - }, - "player_18665": { - }, - "player_84384": { - "injured": 1 - }, - "player_192303": { - }, - "player_59614": { - "injured": 1 - }, - "player_80226": { - }, - "player_108823": { - }, - "player_115556": { - "injured": 1 - }, - "player_93264": { - }, - "player_234908": { - }, - "player_85971": { - }, - "player_54756": { - }, - "player_89085": { - }, - "player_216058": { - }, - "player_18073": { - "reported": 1 - }, - "player_87835": { - }, - "player_222531": { - "pending": 1 - }, - "player_153256": { - }, - "player_111457": { - "injured": 1 - }, - "player_233963": { - }, - "player_37605": { - "pending": 1 - }, - "player_192895": { - "injured": 1 - }, - "player_209289": { - }, - "player_84450": { - }, - "player_123354": { - }, - "player_54764": { - }, - "player_74375": { - }, - "player_220307": { - }, - "player_61603": { - }, - "player_225796": { - }, - "player_167767": { - }, - "player_86417": { - "injured": 1 - }, - "player_120250": { - "injured": 1 - }, - "player_42774": { - "injured": 1 - }, - "player_116535": { - "reported": 1 - }, - "player_38454": { - "reported": 1 - }, - "player_175592": { - "reported": 1 - }, - "player_37265": { - "pending": 1 - }, - "player_50232": { - "pending": 1 - }, - "player_40142": { - }, - "player_128348": { - }, - "player_184349": { - }, - "player_50175": { - "injured": 1 - }, - "player_232185": { - }, - "player_103123": { - "reported": 1 - }, - "player_101537": { - }, - "player_172850": { - }, - "player_97299": { - "pending": 1 - }, - "player_104953": { - }, - "player_104547": { - }, - "player_180974": { - }, - "player_170137": { - "injured": 1 - }, - "player_81048": { - "injured": 1 - }, - "player_90440": { - }, - "player_89470": { - }, - "player_47247": { - "suspended": 1 - }, - "player_194401": { - }, - "player_48717": { - "reported": 1 - }, - "player_169359": { - }, - "player_93284": { - "suspended": 1 - }, - "player_60586": { - "injured": 1 - }, - "player_184341": { - }, - "player_49579": { - }, - "player_160987": { - "injured": 1 - }, - "player_203341": { - }, - "player_15033": { - }, - "player_61604": { - "injured": 1 - }, - "player_205651": { - }, - "player_148225": { - }, - "player_106760": { - }, - "player_179018": { - "pending": 1 - }, - "player_111773": { - }, - "player_92159": { - }, - "player_109638": { - }, - "player_40146": { - }, - "player_220598": { - }, - "player_431131": { - "injured": 1 - }, - "player_158534": { - }, - "player_231372": { - "pending": 1 - }, - "player_41725": { - }, - "player_57531": { - "reported": 1 - }, - "player_200089": { - }, - "player_198849": { - }, - "player_148508": { - }, - "player_52484": { - }, - "player_116216": { - }, - "player_223911": { - }, - "player_54469": { - "injured": 1 - }, - "player_44699": { - }, - "player_433154": { - }, - "player_91651": { - }, - "player_19188": { - "pending": 1 - }, - "player_58786": { - }, - "player_57513": { - }, - "player_57328": { - "reported": 1 - }, - "player_59859": { - }, - "player_74208": { - "injured": 1 - }, - "player_214590": { - }, - "player_109322": { - }, - "player_216051": { - "pending": 1 - }, - "player_232980": { - }, - "player_83428": { - "pending": 1 - }, - "player_27436": { - }, - "player_171975": { - }, - "player_135720": { - "pending": 1 - }, - "player_83283": { - }, - "player_173904": { - }, - "player_200826": { - }, - "player_38439": { - }, - "player_41338": { - }, - "player_90585": { - "injured": 1 - }, - "player_107613": { - }, - "player_165210": { - }, - "player_209362": { - }, - "player_109533": { - }, - "player_55037": { - }, - "player_50471": { - }, - "player_59125": { - }, - "player_152760": { - "reported": 1 - }, - "player_209244": { - }, - "player_200617": { - }, - "player_223175": { - }, - "player_119471": { - }, - "player_87396": { - }, - "player_37614": { - }, - "player_18867": { - }, - "player_173514": { - }, - "player_105717": { - "reported": 1 - }, - "player_61933": { - }, - "player_109345": { - "injured": 1 - }, - "player_135363": { - }, - "player_82660": { - }, - "player_44346": { - }, - "player_172780": { - }, - "player_110979": { - "reported": 1 - }, - "player_176297": { - }, - "player_76359": { - }, - "player_201084": { - "injured": 1 - }, - "player_20480": { - }, - "player_28082": { - }, - "player_86934": { - "reported": 1 - }, - "player_81012": { - "reported": 1 - }, - "player_428610": { - }, - "player_153682": { - "pending": 1 - }, - "player_90105": { - }, - "player_66242": { - }, - "player_40145": { - }, - "player_66975": { - }, - "player_68312": { - "reported": 1 - }, - "player_60914": { - "reported": 1 - }, - "player_61366": { - }, - "player_153127": { - }, - "player_194799": { - }, - "player_58822": { - }, - "player_58376": { - }, - "player_108413": { - }, - "player_37096": { - "reported": 1 - }, - "player_194634": { - }, - "player_37915": { - "injured": 1 - }, - "player_200641": { - }, - "player_89274": { - }, - "player_59949": { - }, - "player_118748": { - "reported": 1 - }, - "player_444884": { - "reported": 1 - }, - "player_51940": { - }, - "player_220688": { - }, - "player_198826": { - "injured": 1 - }, - "player_193111": { - }, - "player_78607": { - }, - "player_169432": { - }, - "player_80607": { - }, - "player_41945": { - "injured": 1 - }, - "player_151589": { - }, - "player_247632": { - }, - "player_74471": { - }, - "player_152551": { - }, - "player_60689": { - "pending": 1 - }, - "player_88894": { - }, - "player_40836": { - }, - "player_66838": { - }, - "player_164511": { - }, - "player_169187": { - "reported": 1 - }, - "player_122798": { - "reported": 1 - }, - "player_220566": { - }, - "player_206325": { - }, - "player_180804": { - }, - "player_62398": { - }, - "player_40868": { - "injured": 1 - }, - "player_61566": { - "pending": 1 - }, - "player_55459": { - "reported": 1 - }, - "player_41727": { - }, - "player_114283": { - }, - "player_221239": { - "injured": 1 - }, - "player_17997": { - }, - "player_100649": { - }, - "player_97032": { - "reported": 1 - }, - "player_184667": { - }, - "player_95658": { - }, - "player_180135": { - }, - "player_38290": { - }, - "player_62974": { - "injured": 1 - }, - "player_43250": { - "injured": 1 - }, - "player_54102": { - "reported": 1 - }, - "player_182539": { - "injured": 1 - }, - "player_203368": { - }, - "player_110735": { - }, - "player_15237": { - "pending": 1 - }, - "player_85955": { - }, - "player_60252": { - "injured": 1 - }, - "player_56979": { - "reported": 1 - }, - "player_121160": { - }, - "player_20664": { - "pending": 1 - }, - "player_209041": { - }, - "player_195851": { - }, - "player_18892": { - }, - "player_108416": { - }, - "player_39194": { - }, - "player_108156": { - }, - "player_21205": { - }, - "player_79852": { - "injured": 1 - }, - "player_83299": { - }, - "player_233425": { - }, - "player_78007": { - "pending": 1 - }, - "player_81183": { - }, - "player_176413": { - }, - "player_82403": { - }, - "player_55494": { - "injured": 1 - }, - "player_37642": { - }, - "player_171287": { - "reported": 1 - }, - "player_200720": { - "reported": 1 - }, - "player_165809": { - }, - "player_58845": { - "injured": 1 - }, - "player_101148": { - "injured": 1 - }, - "player_45268": { - }, - "player_39215": { - "pending": 1 - }, - "player_85624": { - }, - "player_159533": { - }, - "player_216054": { - }, - "player_223340": { - }, - "player_168991": { - }, - "player_154566": { - }, - "player_60551": { - "pending": 1 - }, - "player_173879": { - }, - "player_116643": { - "reported": 1 - }, - "player_37572": { - "pending": 1 - }, - "player_58893": { - "injured": 1 - }, - "player_178304": { - }, - "player_128198": { - "pending": 1 - }, - "player_91047": { - }, - "player_60232": { - }, - "player_52940": { - "injured": 1 - }, - "player_219924": { - "reported": 1 - }, - "player_41270": { - }, - "player_69140": { - }, - "player_193488": { - }, - "player_39487": { - }, - "player_103914": { - "pending": 1 - }, - "player_19419": { - "injured": 1 - }, - "player_20467": { - "injured": 1 - }, - "player_172632": { - }, - "player_54484": { - }, - "player_154506": { - }, - "player_41674": { - "pending": 1 - }, - "player_74230": { - "pending": 1 - }, - "player_141020": { - }, - "player_18987": { - "reported": 1 - }, - "player_195735": { - }, - "player_149484": { - "injured": 1 - }, - "player_40845": { - }, - "player_75115": { - "pending": 1 - }, - "player_194794": { - }, - "player_101188": { - "pending": 1 - }, - "player_39155": { - "reported": 1 - }, - "player_213482": { - "injured": 1 - }, - "player_157668": { - }, - "player_56377": { - "reported": 1 - }, - "player_126184": { - "injured": 1 - }, - "player_155651": { - "pending": 1 - }, - "player_39476": { - "suspended": 1 - }, - "player_173954": { - "pending": 1 - }, - "player_102747": { - "pending": 1 - }, - "player_55422": { - "pending": 1 - }, - "player_41733": { - "reported": 1 - }, - "player_195473": { - "reported": 1 - }, - "player_76542": { - "injured": 1 - }, - "player_166640": { - "reported": 1 - }, - "player_181008": { - "reported": 1 - }, - "player_19194": { - "reported": 1 - }, - "player_204480": { - "reported": 1 - }, - "player_20658": { - "reported": 1 - }, - "player_217593": { - "reported": 1 - }, - "player_222017": { - "reported": 1 - }, - "player_222018": { - "reported": 1 - }, - "player_40669": { - "reported": 1 - }, - "player_40694": { - "reported": 1 - }, - "player_42824": { - "reported": 1 - }, - "player_459373": { - "reported": 1 - }, - "player_11948": { - "reported": 1 - }, - "player_15157": { - "reported": 1 - }, - "player_174254": { - "reported": 1 - }, - "player_206915": { - "reported": 1 - }, - "player_441271": { - "reported": 1 - }, - "player_444765": { - "reported": 1 - }, - "player_60706": { - "reported": 1 - }, - "player_81880": { - "reported": 1 - }, - "player_92217": { - "reported": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LJV92C9Y.20190818-Request.json b/src/test/resources/__files/mpg.coach.LJV92C9Y.20190818-Request.json deleted file mode 100644 index ca3ac68..0000000 --- a/src/test/resources/__files/mpg.coach.LJV92C9Y.20190818-Request.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_42766", - "2": "player_26894", - "3": "player_183779", - "4": "player_92527", - "5": "player_80565", - "6": "player_59964", - "7": "player_216227", - "8": "player_172987", - "9": "player_215473", - "10": "player_106320", - "11": "player_177840", - "12": "player_158494", - "13": "player_38002", - "14": "player_232176", - "15": "player_161950", - "16": "player_83912", - "17": "player_45505", - "18": "player_86873" - }, - "composition": 343, - "tacticalsubstitutes": [ - ], - "bonusSelected": { - }, - "matchId": "mpg_match_LJV92C9Y_1_3_5", - "realday": 3 -} diff --git a/src/test/resources/__files/mpg.coach.LJV92C9Y.20190818.json b/src/test/resources/__files/mpg.coach.LJV92C9Y.20190818.json deleted file mode 100644 index eb690bc..0000000 --- a/src/test/resources/__files/mpg.coach.LJV92C9Y.20190818.json +++ /dev/null @@ -1,735 +0,0 @@ -{ - "data": { - "realday": 3, - "dateMatch": 1566669600000, - "timetogame": 518668318, - "champid": 1, - "matchId": "mpg_match_LJV92C9Y_1_3_5", - "stadium": "Parc des Princes", - "teamHome": { - "id": "mpg_team_LJV92C9Y$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1561646533972", - "jerseyAway": "jersey_0_1561646533972", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561646533972.png" - }, - "teamAway": { - "id": "mpg_team_LJV92C9Y$$mpg_user_35635", - "userId": "mpg_user_35635", - "name": "AS POISSIRÈNE", - "abbr": "🧜‍", - "coach": "Bertrand", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0", - "jerseyAway": "jersey_backup_4_222cc2931a18237efd7ed0dfdcbaaa94", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_4_222cc2931a18237efd7ed0dfdcbaaa94.png" - }, - "nbPlayers": 10, - "players": [ - { - "firstname": "Kenny", - "lastname": "Lala", - "playerid": "player_92527", - "teamid": "153", - "position": 2, - "quotation": 25, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1060532_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": "Mathias", - "lastname": "Autret", - "playerid": "player_80565", - "teamid": "862", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060537_stats", - "day": 1, - "rate": 7 - } - } - }, - { - "firstname": "Yoann", - "lastname": "Court", - "playerid": "player_59964", - "teamid": "862", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060537_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Timothy", - "lastname": "Weah", - "playerid": "player_215473", - "teamid": "429", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060535_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": "Jean-Charles", - "lastname": "Castelletto", - "playerid": "player_158494", - "teamid": "862", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060537_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": "Benjamin", - "lastname": "Lecomte", - "playerid": "player_86873", - "teamid": "146", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060538_stats", - "day": 1, - "rate": 3 - } - } - }, - { - "firstname": "Régis", - "lastname": "Gurtner", - "playerid": "player_42766", - "teamid": "1430", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "lastFiveRate": { - "1": { - "matchId": "match_1060531_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Daniel", - "lastname": "Congré", - "playerid": "player_38002", - "teamid": "147", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060533_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": null, - "lastname": "Dante", - "playerid": "player_26894", - "teamid": "1395", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060531_stats", - "day": 1, - "rate": 7.5 - } - } - }, - { - "firstname": "Martin", - "lastname": "Terrier", - "playerid": "player_232176", - "teamid": "143", - "position": 3, - "quotation": 20, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - }, - { - "firstname": "Mathieu", - "lastname": "Cafaro", - "playerid": "player_217597", - "teamid": "1423", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - }, - { - "firstname": "Denis", - "lastname": "Bouanga", - "playerid": "player_216227", - "teamid": "152", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060529_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": "Léo", - "lastname": "Dubois", - "playerid": "player_183779", - "teamid": "143", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "lastFiveRate": { - "1": { - "matchId": "match_1060538_stats", - "day": 1, - "rate": 6 - } - } - }, - { - "firstname": "Aleksandr", - "lastname": "Golovin", - "playerid": "player_161950", - "teamid": "146", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - }, - { - "firstname": "Romain", - "lastname": "Thomas", - "playerid": "player_45505", - "teamid": "2128", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060534_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": "James", - "lastname": "Bond", - "playerid": "player_00000", - "teamid": "2128", - "position": 3, - "quotation": 7, - "ultraPosition": 20, - "lastFiveRate": { - "1": { - "matchId": "match_1060534_stats", - "day": 1, - "rate": 1 - } - } - }, - { - "firstname": null, - "lastname": "Nuno da Costa", - "playerid": "player_177840", - "teamid": "153", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060532_stats", - "day": 1, - "rate": 4 - } - } - }, - { - "firstname": "Gabriel", - "lastname": "Boschilia", - "playerid": "player_172987", - "teamid": "146", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "lastFiveRate": { - "1": { - "matchId": "match_1060538_stats", - "day": 1, - "rate": 5 - } - } - }, - { - "firstname": null, - "lastname": "Kalifa Coulibaly", - "playerid": "player_106320", - "teamid": "430", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "match_1060535_stats", - "day": 1, - "rate": 4 - } - } - }, - { - "firstname": "Wissam", - "lastname": "Ben Yedder", - "playerid": "player_83912", - "teamid": "146", - "position": 4, - "quotation": 21, - "ultraPosition": 40, - "lastFiveRate": { - "1": { - "matchId": "-", - "day": 1 - } - } - } - ], - "bonus": { - "1": 1, - "2": 1, - "3": 2, - "4": 3, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - ], - "composition": 343, - "playersOnPitch": { - "1": "player_42766", - "2": "player_26894", - "3": "player_183779", - "4": "player_92527", - "5": "player_80565", - "6": "player_59964", - "7": "player_216227", - "8": "player_172987", - "9": "player_215473", - "10": "player_106320", - "11": "player_177840", - "12": "player_158494", - "13": "player_38002", - "14": "player_232176", - "15": "player_161950", - "16": "player_83912", - "17": null, - "18": "player_86873" - }, - "bonusSelected": { - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "away", - "against": "Dijon" - }, - "143": { - "name": "Lyon", - "status": "away", - "against": "Montpellier" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Nice" - }, - "145": { - "name": "Metz", - "status": "away", - "against": "Angers" - }, - "146": { - "name": "Monaco", - "status": "home", - "against": "Nîmes" - }, - "147": { - "name": "Montpellier", - "status": "home", - "against": "Lyon" - }, - "149": { - "name": "Paris", - "status": "home", - "against": "Toulouse" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Strasbourg" - }, - "152": { - "name": "Saint-Étienne", - "status": "away", - "against": "Lille" - }, - "153": { - "name": "Strasbourg", - "status": "home", - "against": "Rennes" - }, - "427": { - "name": "Toulouse", - "status": "away", - "against": "Paris" - }, - "429": { - "name": "Lille", - "status": "home", - "against": "Saint-Étienne" - }, - "430": { - "name": "Nantes", - "status": "away", - "against": "Amiens" - }, - "862": { - "name": "Brest", - "status": "home", - "against": "Reims" - }, - "1395": { - "name": "Nice", - "status": "home", - "against": "Marseille" - }, - "1423": { - "name": "Reims", - "status": "away", - "against": "Brest" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Nantes" - }, - "2128": { - "name": "Angers", - "status": "home", - "against": "Metz" - }, - "2130": { - "name": "Dijon", - "status": "home", - "against": "Bordeaux" - }, - "2336": { - "name": "Nîmes", - "status": "away", - "against": "Monaco" - } - }, - "tds": { - "update": "2019-08-16T13:17:16.922Z", - "player_126177": { - "injured": 1 - }, - "player_38261": { - "injured": 1 - }, - "player_50442": { - "injured": 1 - }, - "player_116152": { - "injured": 1 - }, - "player_218524": { - }, - "player_8747": { - }, - "player_153014": { - "injured": 1 - }, - "player_451005": { - }, - "player_85565": { - }, - "player_242600": { - "pending": 1 - }, - "player_214245": { - }, - "player_209335": { - "injured": 1 - }, - "player_60582": { - "pending": 1 - }, - "player_242894": { - "injured": 1 - }, - "player_116627": { - "injured": 1 - }, - "player_456194": { - }, - "player_102636": { - "injured": 1 - }, - "player_141109": { - }, - "player_121709": { - "injured": 1 - }, - "player_425614": { - "injured": 1 - }, - "player_173085": { - "injured": 1 - }, - "player_441575": { - "injured": 1 - }, - "player_200671": { - "pending": 1 - }, - "player_111291": { - "injured": 1 - }, - "player_106212": { - }, - "player_95434": { - "injured": 1 - }, - "player_47654": { - }, - "player_59846": { - "injured": 1 - }, - "player_244642": { - }, - "player_464192": { - "pending": 1 - }, - "player_177885": { - "injured": 1 - }, - "player_228286": { - "pending": 1 - }, - "player_200958": { - "pending": 1 - }, - "player_158208": { - "injured": 1 - }, - "player_161472": { - "injured": 1 - }, - "player_48847": { - }, - "player_161950": { - }, - "player_156708": { - }, - "player_102747": { - "injured": 1 - }, - "player_38419": { - }, - "player_149519": { - }, - "player_180124": { - }, - "player_223908": { - "suspended": 1 - }, - "player_174528": { - }, - "player_204123": { - }, - "player_96764": { - }, - "player_159967": { - }, - "player_213965": { - "pending": 1 - }, - "player_217597": { - "injured": 1 - }, - "player_433312": { - "injured": 1 - }, - "player_232185": { - "injured": 1 - }, - "player_111773": { - "injured": 1 - }, - "player_48897": { - "injured": 1 - }, - "player_226597": { - "injured": 1 - }, - "player_103155": { - "injured": 1 - }, - "player_487352": { - }, - "player_489230": { - "pending": 1 - }, - "player_111181": { - "suspended": 1 - }, - "player_202857": { - "injured": 1 - }, - "player_437504": { - "pending": 1 - }, - "player_73985": { - "pending": 1 - }, - "player_490031": { - "injured": 1 - }, - "player_489661": { - "pending": 1 - }, - "player_17878": { - "suspended": 1 - }, - "player_197017": { - "pending": 1 - }, - "player_201562": { - "injured": 1 - }, - "player_210187": { - "pending": 1 - }, - "player_54772": { - "injured": 1 - }, - "player_49887": { - "pending": 1 - }, - "player_201057": { - "injured": 1 - }, - "player_154011": { - "suspended": 1 - }, - "player_462424": { - "pending": 1 - }, - "player_232240": { - "pending": 1 - }, - "player_461913": { - "injured": 1 - }, - "player_244701": { - "injured": 1 - }, - "player_26896": { - "injured": 1 - }, - "player_165112": { - "pending": 1 - }, - "player_202858": { - "pending": 1 - }, - "player_98746": { - "injured": 1 - }, - "player_103127": { - "pending": 1 - }, - "player_129479": { - "pending": 1 - }, - "player_61278": { - "pending": 1 - }, - "player_80801": { - "pending": 1 - }, - "player_208987": { - "suspended": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.LJV92C9Y.20191212-Request.json b/src/test/resources/__files/mpg.coach.LJV92C9Y.20191212-Request.json deleted file mode 100644 index b244c51..0000000 --- a/src/test/resources/__files/mpg.coach.LJV92C9Y.20191212-Request.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "playersOnPitch": { - "1": "player_104407", - "2": "player_115380", - "3": "player_83233", - "4": "player_158494", - "5": "player_216227", - "6": "player_213940", - "7": "player_18574", - "8": "player_102760", - "9": "player_83912", - "10": "player_230337", - "11": "player_189542", - "12": "player_173271", - "13": "player_45505", - "14": "player_158496", - "15": "player_228322", - "16": "player_226194", - "17": "player_106320", - "18": "player_42766" - }, - "composition": 343, - "tacticalsubstitutes": [ - { - "subs": "player_173271", - "start": "player_158494", - "rating": 5 - }, - { - "subs": "player_158496", - "start": "player_102760", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_18574", - "rating": 5 - }, - { - "subs": "player_226194", - "start": "player_189542", - "rating": 6 - }, - { - "subs": "player_106320", - "start": "player_230337", - "rating": 6 - } - ], - "bonusSelected": { - "type": 1 - }, - "matchId": "mpg_match_LJV92C9Y_1_18_1", - "realday": 18 -} diff --git a/src/test/resources/__files/mpg.coach.LJV92C9Y.20191212.json b/src/test/resources/__files/mpg.coach.LJV92C9Y.20191212.json deleted file mode 100644 index 6a0971e..0000000 --- a/src/test/resources/__files/mpg.coach.LJV92C9Y.20191212.json +++ /dev/null @@ -1,1975 +0,0 @@ -{ - "data": { - "realday": 18, - "dateMatch": 1576266300000, - "timetogame": 77769682, - "champid": 1, - "matchId": "mpg_match_LJV92C9Y_1_18_1", - "stadium": "Parc des Princes", - "teamHome": { - "id": "mpg_team_LJV92C9Y$$mpg_user_955966", - "userId": "mpg_user_955966", - "name": "Axel Football Club", - "abbr": "AFC", - "coach": "Alix", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyAway": "jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png" - }, - "teamAway": { - "id": "mpg_team_LJV92C9Y$$mpg_user_1662232", - "userId": "mpg_user_1662232", - "name": "Youyou fc", - "abbr": "YFC", - "coach": "Youenn", - "jersey": { - "id": 0, - "sponsor": 1, - "zones": { - "z1": "#fff" - } - }, - "jerseyHome": "jersey_0_1564569810640", - "jerseyAway": "jersey_0_1561644646429", - "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561644646429.png" - }, - "nbPlayers": 10, - "players": [ - { - "playerid": "player_92527", - "firstname": "Kenny", - "lastname": "Lala", - "status": 2, - "teamid": "153", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1060657_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1060666_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1060669_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060695_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_42766", - "firstname": "Régis", - "lastname": "Gurtner", - "status": 2, - "teamid": "1430", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1060653_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1060666_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1060676_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060697_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_216227", - "firstname": "Denis", - "lastname": "Bouanga", - "status": 2, - "teamid": "152", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1060658_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1060665_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1060674_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1060681_stats", - "day": 16, - "rate": 8.5 - }, - "17": { - "matchId": "match_1060693_stats", - "day": 17, - "rate": 3.5 - } - } - }, - { - "playerid": "player_161950", - "firstname": "Aleksandr", - "lastname": "Golovin", - "status": 2, - "teamid": "146", - "position": 3, - "quotation": 20, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1060652_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1060663_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "match_1060687_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1060697_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_45505", - "firstname": "Romain", - "lastname": "Thomas", - "status": 2, - "teamid": "2128", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1060656_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1060667_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1060678_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "match_1060685_stats", - "day": 16, - "rate": 3 - }, - "17": { - "matchId": "match_1060692_stats", - "day": 17, - "rate": 3.5 - } - } - }, - { - "playerid": "player_106320", - "firstname": "Kalifa", - "lastname": "Coulibaly", - "status": 2, - "teamid": "430", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1060658_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1060662_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1060673_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060694_stats", - "day": 17, - "rate": 4 - } - } - }, - { - "playerid": "player_83912", - "firstname": "Wissam", - "lastname": "Ben Yedder", - "status": 2, - "teamid": "146", - "position": 4, - "quotation": 34, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1060652_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1060663_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "match_1060687_stats", - "day": 16, - "rate": 7 - }, - "17": { - "matchId": "match_1060697_stats", - "day": 17, - "rate": 7.5 - } - } - }, - { - "playerid": "player_162275", - "firstname": "Serhou", - "lastname": "Guirassy", - "status": 2, - "teamid": "1430", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1060653_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1060666_stats", - "day": 14, - "rate": 3.5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060697_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_226194", - "firstname": "Samuel", - "lastname": "Grandsir", - "status": 2, - "teamid": "862", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1060655_stats", - "day": 13, - "rate": 7 - }, - "14": { - "matchId": "match_1060662_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1060675_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060698_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_220960", - "firstname": "Bakaye", - "lastname": "Dibassy", - "status": 2, - "teamid": "1430", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1060653_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1060666_stats", - "day": 14, - "rate": 3 - }, - "15": { - "matchId": "match_1060676_stats", - "day": 15, - "rate": 3.5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060697_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_185727", - "firstname": "Aaron", - "lastname": "Leya Iseka", - "status": 2, - "teamid": "427", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "-", - "day": 13 - }, - "14": { - "matchId": "match_1060659_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1060673_stats", - "day": 15, - "rate": 5.5 - }, - "16": { - "matchId": "match_1060687_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1060695_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_150172", - "firstname": "Romain", - "lastname": "Philippoteaux", - "status": 2, - "teamid": "2336", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1060657_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "match_1060667_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1060672_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060689_stats", - "day": 17, - "rate": 4 - } - } - }, - { - "playerid": "player_104407", - "firstname": "Predrag", - "lastname": "Rajkovic", - "status": 2, - "teamid": "1423", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "lastFiveRate": { - "13": { - "matchId": "match_1060656_stats", - "day": 13, - "rate": 6 - }, - "14": { - "matchId": "match_1060664_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1060670_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060693_stats", - "day": 17, - "rate": 5.5 - } - } - }, - { - "playerid": "player_158496", - "firstname": "Abdoulaye", - "lastname": "Touré", - "status": 2, - "teamid": "430", - "position": 3, - "quotation": 20, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1060658_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1060662_stats", - "day": 14, - "rate": 5.5 - }, - "15": { - "matchId": "match_1060673_stats", - "day": 15, - "rate": 7 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "match_1060694_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_173271", - "firstname": "Duje", - "lastname": "Caleta-Car", - "status": 2, - "teamid": "144", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1060649_stats", - "day": 13, - "rate": 5.5 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1060675_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1060685_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1060696_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_158494", - "firstname": "Jean-Charles", - "lastname": "Castelletto", - "status": 2, - "teamid": "862", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1060655_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1060662_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1060675_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1060686_stats", - "day": 16, - "rate": 6 - }, - "17": { - "matchId": "match_1060698_stats", - "day": 17, - "rate": 5 - } - } - }, - { - "playerid": "player_26896", - "firstname": "Mathieu", - "lastname": "Bodmer", - "status": 2, - "teamid": "1430", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1060653_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1060666_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "-", - "day": 15 - }, - "16": { - "matchId": "-", - "day": 16 - }, - "17": { - "matchId": "-", - "day": 17 - } - } - }, - { - "playerid": "player_228322", - "firstname": "Dimitri", - "lastname": "Lienard", - "status": 2, - "teamid": "153", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1060657_stats", - "day": 13, - "rate": 8 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1060669_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1060686_stats", - "day": 16, - "rate": 4 - }, - "17": { - "matchId": "match_1060695_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_189542", - "firstname": "Alexandre", - "lastname": "Mendy", - "status": 2, - "teamid": "862", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1060655_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1060662_stats", - "day": 14, - "rate": 4.5 - }, - "15": { - "matchId": "match_1060675_stats", - "day": 15, - "rate": 4 - }, - "16": { - "matchId": "match_1060686_stats", - "day": 16, - "rate": 6.5 - }, - "17": { - "matchId": "match_1060698_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_213940", - "firstname": "Ludovic", - "lastname": "Blas", - "status": 2, - "teamid": "430", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1060658_stats", - "day": 13, - "rate": 7.5 - }, - "14": { - "matchId": "match_1060662_stats", - "day": 14, - "rate": 5 - }, - "15": { - "matchId": "match_1060673_stats", - "day": 15, - "rate": 6.5 - }, - "16": { - "matchId": "match_1060679_stats", - "day": 16, - "rate": 5 - }, - "17": { - "matchId": "match_1060694_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_230337", - "firstname": "Lebo", - "lastname": "Mothiba", - "status": 2, - "teamid": "153", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "lastFiveRate": { - "13": { - "matchId": "match_1060657_stats", - "day": 13, - "rate": 8 - }, - "14": { - "matchId": "match_1060666_stats", - "day": 14, - "rate": 6 - }, - "15": { - "matchId": "match_1060669_stats", - "day": 15, - "rate": 4.5 - }, - "16": { - "matchId": "match_1060686_stats", - "day": 16, - "rate": 3 - }, - "17": { - "matchId": "match_1060695_stats", - "day": 17, - "rate": 7 - } - } - }, - { - "playerid": "player_18574", - "firstname": "Thomas", - "lastname": "Mangani", - "status": 2, - "teamid": "2128", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "lastFiveRate": { - "13": { - "matchId": "match_1060656_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "match_1060667_stats", - "day": 14, - "rate": 7 - }, - "15": { - "matchId": "match_1060678_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1060685_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1060692_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_102760", - "firstname": "Bouna", - "lastname": "Sarr", - "status": 2, - "teamid": "144", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "lastFiveRate": { - "13": { - "matchId": "match_1060649_stats", - "day": 13, - "rate": 4.5 - }, - "14": { - "matchId": "match_1060659_stats", - "day": 14, - "rate": 6.5 - }, - "15": { - "matchId": "match_1060675_stats", - "day": 15, - "rate": 6 - }, - "16": { - "matchId": "match_1060685_stats", - "day": 16, - "rate": 5.5 - }, - "17": { - "matchId": "match_1060696_stats", - "day": 17, - "rate": 4.5 - } - } - }, - { - "playerid": "player_83233", - "firstname": "Nicolas", - "lastname": "Isimat-Mirin", - "status": 2, - "teamid": "427", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "lastFiveRate": { - "13": { - "matchId": "match_1060650_stats", - "day": 13, - "rate": 4 - }, - "14": { - "matchId": "match_1060659_stats", - "day": 14, - "rate": 4 - }, - "15": { - "matchId": "match_1060673_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1060687_stats", - "day": 16, - "rate": 4.5 - }, - "17": { - "matchId": "match_1060695_stats", - "day": 17, - "rate": 4 - } - } - }, - { - "playerid": "player_115380", - "firstname": "Jordan", - "lastname": "Amavi", - "status": 2, - "teamid": "144", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "lastFiveRate": { - "13": { - "matchId": "match_1060649_stats", - "day": 13, - "rate": 5 - }, - "14": { - "matchId": "-", - "day": 14 - }, - "15": { - "matchId": "match_1060675_stats", - "day": 15, - "rate": 5 - }, - "16": { - "matchId": "match_1060685_stats", - "day": 16, - "rate": 6.5 - }, - "17": { - "matchId": "match_1060696_stats", - "day": 17, - "rate": 6.5 - } - } - } - ], - "bonus": { - "1": 1, - "2": 0, - "3": 1, - "4": 0, - "5": 1, - "6": 1, - "7": 1 - }, - "nanardpaid": 0, - "money": 0, - "tacticalsubstitutes": [ - { - "subs": "player_45505", - "start": "player_173271", - "rating": 5 - }, - { - "subs": "player_158496", - "start": "player_102760", - "rating": 5 - }, - { - "subs": "player_228322", - "start": "player_18574", - "rating": 5 - }, - { - "subs": "player_226194", - "start": "player_189542", - "rating": 6 - }, - { - "subs": "player_106320", - "start": "player_230337", - "rating": 6 - } - ], - "composition": 343, - "playersOnPitch": { - "1": "player_104407", - "2": "player_115380", - "3": "player_83233", - "4": "player_173271", - "5": "player_216227", - "6": "player_213940", - "7": "player_18574", - "8": "player_102760", - "9": "player_83912", - "10": "player_230337", - "11": "player_189542", - "12": "player_45505", - "13": "player_92527", - "14": "player_158496", - "15": "player_228322", - "16": "player_226194", - "17": "player_106320", - "18": "player_42766" - }, - "bonusSelected": { - }, - "teams": { - "140": { - "name": "Bordeaux", - "status": "home", - "against": "Strasbourg" - }, - "143": { - "name": "Lyon", - "status": "home", - "against": "Rennes" - }, - "144": { - "name": "Marseille", - "status": "away", - "against": "Metz" - }, - "145": { - "name": "Metz", - "status": "home", - "against": "Marseille" - }, - "146": { - "name": "Monaco", - "status": "away", - "against": "Angers" - }, - "147": { - "name": "Montpellier", - "status": "away", - "against": "Lille" - }, - "149": { - "name": "Paris", - "status": "away", - "against": "Saint-Étienne" - }, - "150": { - "name": "Rennes", - "status": "away", - "against": "Lyon" - }, - "152": { - "name": "Saint-Étienne", - "status": "home", - "against": "Paris" - }, - "153": { - "name": "Strasbourg", - "status": "away", - "against": "Bordeaux" - }, - "427": { - "name": "Toulouse", - "status": "home", - "against": "Reims" - }, - "429": { - "name": "Lille", - "status": "home", - "against": "Montpellier" - }, - "430": { - "name": "Nantes", - "status": "away", - "against": "Nîmes" - }, - "862": { - "name": "Brest", - "status": "home", - "against": "Nice" - }, - "1395": { - "name": "Nice", - "status": "away", - "against": "Brest" - }, - "1423": { - "name": "Reims", - "status": "away", - "against": "Toulouse" - }, - "1430": { - "name": "Amiens", - "status": "home", - "against": "Dijon" - }, - "2128": { - "name": "Angers", - "status": "home", - "against": "Monaco" - }, - "2130": { - "name": "Dijon", - "status": "away", - "against": "Amiens" - }, - "2336": { - "name": "Nîmes", - "status": "home", - "against": "Nantes" - } - }, - "tds": { - "update": "2019-12-12T17:03:41.218Z", - "player_232240": { - }, - "player_200958": { - }, - "player_202857": { - }, - "player_161472": { - }, - "player_244701": { - }, - "player_177885": { - "injured": 1 - }, - "player_59846": { - "pending": 1 - }, - "player_200671": { - "injured": 1 - }, - "player_126177": { - }, - "player_60582": { - }, - "player_173085": { - }, - "player_174655": { - }, - "player_95434": { - "injured": 1 - }, - "player_111291": { - }, - "player_158208": { - "injured": 1 - }, - "player_100632": { - }, - "player_171099": { - }, - "player_197022": { - }, - "player_226451": { - }, - "player_92985": { - }, - "player_153014": { - "injured": 1 - }, - "player_420962": { - }, - "player_111265": { - "pending": 1 - }, - "player_38261": { - "injured": 1 - }, - "player_441575": { - }, - "player_26896": { - "pending": 1 - }, - "player_217597": { - "pending": 1 - }, - "player_201562": { - "injured": 1 - }, - "player_48847": { - }, - "player_50442": { - "injured": 1 - }, - "player_116152": { - "pending": 1 - }, - "player_201057": { - }, - "player_102636": { - }, - "player_215473": { - "injured": 1 - }, - "player_242894": { - "injured": 1 - }, - "player_462424": { - "injured": 1 - }, - "player_242600": { - }, - "player_437504": { - }, - "player_461913": { - }, - "player_40720": { - }, - "player_220160": { - }, - "player_221987": { - }, - "player_490032": { - }, - "player_429188": { - "injured": 1 - }, - "player_226946": { - }, - "player_458346": { - }, - "player_217486": { - }, - "player_489661": { - }, - "player_178478": { - }, - "player_61278": { - }, - "player_208559": { - }, - "player_220960": { - }, - "player_98798": { - "injured": 1 - }, - "player_164474": { - }, - "player_97433": { - }, - "player_73667": { - "injured": 1 - }, - "player_38419": { - }, - "player_180124": { - "injured": 1 - }, - "player_180167": { - }, - "player_115327": { - }, - "player_17878": { - }, - "player_162654": { - }, - "player_197017": { - }, - "player_204727": { - }, - "player_208556": { - }, - "player_153649": { - }, - "player_154011": { - }, - "player_444463": { - }, - "player_185441": { - }, - "player_133632": { - "pending": 1 - }, - "player_205836": { - "suspended": 1 - }, - "player_165112": { - }, - "player_192785": { - "suspended": 1 - }, - "player_242879": { - }, - "player_68791": { - }, - "player_490031": { - }, - "player_250588": { - "injured": 1 - }, - "player_116536": { - "injured": 1 - }, - "player_223140": { - }, - "player_57266": { - }, - "player_454964": { - "injured": 1 - }, - "player_220734": { - }, - "player_158047": { - }, - "player_160729": { - }, - "player_209335": { - "injured": 1 - }, - "player_26894": { - }, - "player_113541": { - "injured": 1 - }, - "player_103457": { - }, - "player_204184": { - }, - "player_107685": { - }, - "player_174908": { - }, - "player_207756": { - }, - "player_433640": { - }, - "player_210462": { - }, - "player_184232": { - }, - "player_214472": { - }, - "player_240145": { - }, - "player_54413": { - "pending": 1 - }, - "player_435731": { - }, - "player_96764": { - }, - "player_225183": { - "pending": 1 - }, - "player_104613": { - }, - "player_447389": { - "injured": 1 - }, - "player_48768": { - }, - "player_68260": { - }, - "player_73879": { - }, - "player_37776": { - }, - "player_194326": { - }, - "player_109404": { - }, - "player_83912": { - }, - "player_149828": { - }, - "player_225997": { - }, - "player_88484": { - }, - "player_458250": { - }, - "player_244642": { - "injured": 1 - }, - "player_44287": { - }, - "player_486847": { - }, - "player_141109": { - }, - "player_430510": { - }, - "player_98826": { - }, - "player_38265": { - "injured": 1 - }, - "player_216438": { - "injured": 1 - }, - "player_96084": { - }, - "player_37901": { - }, - "player_226944": { - }, - "player_106821": { - "suspended": 1 - }, - "player_107641": { - "injured": 1 - }, - "player_217872": { - }, - "player_106109": { - }, - "player_61170": { - }, - "player_209608": { - }, - "player_242882": { - "injured": 1 - }, - "player_20690": { - }, - "player_192291": { - }, - "player_437726": { - }, - "player_172987": { - }, - "player_245496": { - }, - "player_242887": { - }, - "player_456355": { - }, - "player_451005": { - }, - "player_449718": { - }, - "player_490190": { - }, - "player_56995": { - }, - "player_37990": { - }, - "player_115961": { - }, - "player_183779": { - "injured": 1 - }, - "player_52573": { - "pending": 1 - }, - "player_92527": { - }, - "player_38314": { - }, - "player_42564": { - }, - "player_98828": { - }, - "player_218005": { - }, - "player_204534": { - "pending": 1 - }, - "player_167074": { - }, - "player_219230": { - }, - "player_174272": { - }, - "player_152338": { - }, - "player_115851": { - }, - "player_465203": { - }, - "player_486845": { - }, - "player_485337": { - }, - "player_228563": { - "injured": 1 - }, - "player_199409": { - }, - "player_37758": { - }, - "player_209330": { - }, - "player_121524": { - }, - "player_212851": { - }, - "player_481667": { - }, - "player_107330": { - }, - "player_247957": { - }, - "player_242885": { - }, - "player_465691": { - }, - "player_8747": { - }, - "player_204744": { - }, - "player_231875": { - }, - "player_195386": { - }, - "player_176495": { - }, - "player_432662": { - }, - "player_482140": { - }, - "player_432649": { - }, - "player_44488": { - }, - "player_219296": { - }, - "player_477411": { - }, - "player_184449": { - }, - "player_486792": { - }, - "player_107254": { - }, - "player_162316": { - }, - "player_215710": { - }, - "player_243741": { - }, - "player_489230": { - }, - "player_423955": { - }, - "player_487352": { - }, - "player_247629": { - }, - "player_490209": { - }, - "player_437724": { - }, - "player_198065": { - }, - "player_475767": { - }, - "player_176443": { - }, - "player_465299": { - }, - "player_489601": { - }, - "player_429234": { - }, - "player_49887": { - }, - "player_162275": { - }, - "player_78275": { - }, - "player_67276": { - }, - "player_193537": { - }, - "player_80565": { - }, - "player_216100": { - }, - "player_119679": { - }, - "player_149519": { - "pending": 1 - }, - "player_115380": { - }, - "player_214254": { - }, - "player_124148": { - }, - "player_229273": { - }, - "player_93605": { - }, - "player_489963": { - }, - "player_228286": { - }, - "player_475561": { - }, - "player_200848": { - }, - "player_161950": { - }, - "player_55948": { - }, - "player_425614": { - "injured": 1 - }, - "player_59964": { - }, - "player_143685": { - }, - "player_112945": { - }, - "player_232174": { - }, - "player_203237": { - }, - "player_171319": { - }, - "player_122775": { - }, - "player_225897": { - }, - "player_154310": { - }, - "player_82313": { - }, - "player_54771": { - "injured": 1 - }, - "player_45084": { - "injured": 1 - }, - "player_200666": { - }, - "player_105046": { - }, - "player_230337": { - }, - "player_106824": { - }, - "player_471471": { - }, - "player_80801": { - "injured": 1 - }, - "player_96616": { - }, - "player_174846": { - }, - "player_448514": { - }, - "player_105345": { - }, - "player_244560": { - }, - "player_171435": { - }, - "player_110504": { - }, - "player_73965": { - }, - "player_60070": { - }, - "player_84424": { - }, - "player_119404": { - }, - "player_216137": { - }, - "player_180303": { - }, - "player_84366": { - "pending": 1 - }, - "player_468489": { - }, - "player_141017": { - }, - "player_225905": { - "injured": 1 - }, - "player_80357": { - }, - "player_51507": { - }, - "player_210494": { - "injured": 1 - }, - "player_54409": { - }, - "player_11973": { - "injured": 1 - }, - "player_103127": { - }, - "player_151873": { - }, - "player_184961": { - }, - "player_51850": { - "injured": 1 - }, - "player_55305": { - }, - "player_37836": { - }, - "player_27341": { - "pending": 1 - }, - "player_45076": { - }, - "player_161034": { - }, - "player_489995": { - }, - "player_209914": { - }, - "player_489887": { - }, - "player_461384": { - "injured": 1 - }, - "player_489888": { - }, - "player_94753": { - }, - "player_154048": { - }, - "player_218329": { - }, - "player_38580": { - }, - "player_184215": { - }, - "player_244136": { - }, - "player_19670": { - }, - "player_92559": { - }, - "player_51090": { - }, - "player_472778": { - "injured": 1 - }, - "player_230443": { - "injured": 1 - }, - "player_218357": { - }, - "player_437501": { - "injured": 1 - }, - "player_480779": { - }, - "player_116504": { - }, - "player_112580": { - }, - "player_105727": { - }, - "player_72177": { - }, - "player_232176": { - }, - "player_203349": { - }, - "player_80342": { - }, - "player_218796": { - "pending": 1 - }, - "player_169102": { - }, - "player_228361": { - }, - "player_116627": { - }, - "player_119770": { - }, - "player_193400": { - }, - "player_468488": { - }, - "player_49396": { - }, - "player_106551": { - }, - "player_231961": { - }, - "player_210207": { - }, - "player_155895": { - }, - "player_180835": { - }, - "player_210228": { - }, - "player_225902": { - }, - "player_199672": { - }, - "player_173271": { - }, - "player_46483": { - }, - "player_71403": { - }, - "player_428989": { - "injured": 1 - }, - "player_170409": { - }, - "player_159967": { - }, - "player_40815": { - }, - "player_103155": { - }, - "player_195883": { - }, - "player_446029": { - }, - "player_54518": { - }, - "player_193512": { - }, - "player_193411": { - }, - "player_115918": { - }, - "player_422631": { - "injured": 1 - }, - "player_214245": { - }, - "player_209218": { - }, - "player_218366": { - "injured": 1 - }, - "player_476892": { - }, - "player_40560": { - }, - "player_60165": { - "injured": 1 - }, - "player_27675": { - }, - "player_232197": { - }, - "player_89068": { - }, - "player_42416": { - }, - "player_27334": { - }, - "player_228322": { - }, - "player_73985": { - }, - "player_221024": { - }, - "player_471437": { - }, - "player_461397": { - }, - "player_476884": { - }, - "player_219292": { - }, - "player_144660": { - }, - "player_434399": { - "pending": 1 - }, - "player_32367": { - }, - "player_80711": { - }, - "player_244182": { - }, - "player_38002": { - }, - "player_129479": { - "injured": 1 - }, - "player_217596": { - }, - "player_488448": { - }, - "player_467625": { - }, - "player_44898": { - "pending": 1 - }, - "player_247400": { - }, - "player_444151": { - }, - "player_461833": { - }, - "player_226194": { - }, - "player_245491": { - }, - "player_19739": { - }, - "player_80904": { - }, - "player_488336": { - }, - "player_436644": { - }, - "player_488337": { - }, - "player_92258": { - "injured": 1 - }, - "player_106320": { - }, - "player_217992": { - "injured": 1 - }, - "player_439122": { - }, - "player_210187": { - }, - "player_92216": { - "pending": 1 - }, - "player_45123": { - "pending": 1 - }, - "player_158496": { - }, - "player_85565": { - "injured": 1 - }, - "player_54772": { - "pending": 1 - }, - "player_106212": { - "pending": 1 - }, - "player_202459": { - }, - "player_37765": { - "suspended": 1 - }, - "player_194624": { - "suspended": 1 - }, - "player_169860": { - "suspended": 1 - }, - "player_57136": { - "suspended": 1 - }, - "player_231057": { - "pending": 1 - }, - "player_185727": { - "injured": 1 - }, - "player_59741": { - "injured": 1 - }, - "player_49730": { - "pending": 1 - }, - "player_83233": { - "suspended": 1 - } - } - } -} diff --git a/src/test/resources/__files/mpg.coach.MLAX7HMK.20201006.json b/src/test/resources/__files/mpg.coach.MLAX7HMK.20201006.json deleted file mode 100644 index 07fdb1e..0000000 --- a/src/test/resources/__files/mpg.coach.MLAX7HMK.20201006.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"realday":7,"dateMatch":1602867600000,"timetogame":886882380,"champid":1,"matchId":"mpg_match_MLAX7HMK_1_6_2","stadium":"Parc des Princes","teamHome":{"id":"mpg_team_MLAX7HMK$$mpg_user_955966","userId":"mpg_user_955966","name":"Axel Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyAway":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png"},"teamAway":{"id":"mpg_team_MLAX7HMK$$mpg_user_1520001","userId":"mpg_user_1520001","name":"Barbie TuriK","abbr":"BTK","coach":"Typhaine","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_0_1561646082093","jerseyAway":"jersey_0_1561646082093","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561646082093.png"},"nbPlayers":10,"players":[{"playerid":"player_73965","firstname":"Andy","lastname":"Delort","status":2,"teamid":"147","position":4,"quotation":21,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"match_2094667_stats","day":3,"rate":7.5},"4":{"matchId":"match_2094676_stats","day":4,"rate":8},"5":{"matchId":"match_2094683_stats","day":5,"rate":7},"6":{"matchId":"match_2094696_stats","day":6,"rate":4}}},{"playerid":"player_61170","firstname":"Marco","lastname":"Verratti","status":2,"teamid":"149","position":3,"quotation":22,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2094653_stats","day":2,"rate":6},"3":{"matchId":"match_2094669_stats","day":3,"rate":3.5},"4":{"matchId":"match_2094678_stats","day":4,"rate":6.5},"5":{"matchId":"match_2094689_stats","day":5,"rate":5},"6":{"matchId":"match_2094698_stats","day":6,"rate":7.5}}},{"playerid":"player_476411","firstname":null,"lastname":"Dialy Ndiaye","status":2,"teamid":"1423","position":1,"quotation":3,"ultraPosition":10,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6}}},{"playerid":"player_28136","firstname":null,"lastname":"Hilton","status":2,"teamid":"147","position":2,"quotation":17,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"match_2094667_stats","day":3,"rate":5.5},"4":{"matchId":"-","day":4},"5":{"matchId":"match_2094683_stats","day":5,"rate":4},"6":{"matchId":"match_2094696_stats","day":6,"rate":5}}},{"playerid":"player_219296","firstname":"Maxence","lastname":"Caqueret","status":2,"teamid":"143","position":3,"quotation":11,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2094654_stats","day":2,"rate":6},"3":{"matchId":"match_2094662_stats","day":3,"rate":5.5},"4":{"matchId":"match_2094673_stats","day":4,"rate":4.5},"5":{"matchId":"-","day":5},"6":{"matchId":"match_2094694_stats","day":6,"rate":5}}},{"playerid":"player_115961","firstname":"Adrien","lastname":"Thomasson","status":2,"teamid":"153","position":3,"quotation":25,"ultraPosition":32,"lastFiveRate":{"2":{"matchId":"match_2094660_stats","day":2,"rate":4.5},"3":{"matchId":"match_2094670_stats","day":3,"rate":4.5},"4":{"matchId":"match_2094680_stats","day":4,"rate":5.5},"5":{"matchId":"match_2094687_stats","day":5,"rate":4},"6":{"matchId":"match_2094700_stats","day":6,"rate":5}}},{"playerid":"player_106263","firstname":"Yunis","lastname":"Abdelhamid","status":2,"teamid":"1423","position":2,"quotation":21,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"match_2094657_stats","day":2,"rate":4},"3":{"matchId":"-","day":3},"4":{"matchId":"match_2094675_stats","day":4,"rate":3},"5":{"matchId":"match_2094689_stats","day":5,"rate":5},"6":{"matchId":"match_2094699_stats","day":6,"rate":5.5}}},{"playerid":"player_104407","firstname":"Predrag","lastname":"Rajkovic","status":2,"teamid":"1423","position":1,"quotation":24,"ultraPosition":10,"lastFiveRate":{"2":{"matchId":"match_2094657_stats","day":2,"rate":5},"3":{"matchId":"match_2094661_stats","day":3,"rate":8},"4":{"matchId":"match_2094675_stats","day":4,"rate":4.5},"5":{"matchId":"match_2094689_stats","day":5,"rate":6},"6":{"matchId":"match_2094699_stats","day":6,"rate":4}}},{"playerid":"player_216227","firstname":"Denis","lastname":"Bouanga","status":2,"teamid":"152","position":3,"quotation":29,"ultraPosition":32,"lastFiveRate":{"2":{"matchId":"match_2094659_stats","day":2,"rate":4.5},"3":{"matchId":"match_2094670_stats","day":3,"rate":7},"4":{"matchId":"match_2094677_stats","day":4,"rate":4},"5":{"matchId":"match_2094690_stats","day":5,"rate":4},"6":{"matchId":"match_2094693_stats","day":6,"rate":5}}},{"playerid":"player_168539","firstname":"Ludovic","lastname":"Ajorque","status":2,"teamid":"153","position":4,"quotation":17,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2094660_stats","day":2,"rate":4},"3":{"matchId":"match_2094670_stats","day":3,"rate":4},"4":{"matchId":"match_2094680_stats","day":4,"rate":4.5},"5":{"matchId":"match_2094687_stats","day":5,"rate":6},"6":{"matchId":"match_2094700_stats","day":6,"rate":4}}},{"playerid":"player_27675","firstname":"Jimmy","lastname":"Briand","status":2,"teamid":"140","position":4,"quotation":9,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2094651_stats","day":2,"rate":4},"3":{"matchId":"match_2094662_stats","day":3,"rate":4},"4":{"matchId":"match_2094672_stats","day":4,"rate":5},"5":{"matchId":"match_2094682_stats","day":5,"rate":5},"6":{"matchId":"match_2094691_stats","day":6,"rate":4.5}}},{"playerid":"player_229605","firstname":"Clement","lastname":"Michelin","status":2,"teamid":"142","position":2,"quotation":16,"ultraPosition":21,"lastFiveRate":{"2":{"matchId":"match_2094653_stats","day":2,"rate":6},"3":{"matchId":"match_2094665_stats","day":3,"rate":5},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6}}},{"playerid":"player_173253","firstname":"Habib","lastname":"Maïga","status":2,"teamid":"145","position":3,"quotation":20,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2094655_stats","day":2,"rate":4.5},"3":{"matchId":"match_2094664_stats","day":3,"rate":5.5},"4":{"matchId":"match_2094675_stats","day":4,"rate":6},"5":{"matchId":"match_2094686_stats","day":5,"rate":5.5},"6":{"matchId":"match_2094695_stats","day":6,"rate":7.5}}},{"playerid":"player_102743","firstname":"Rachid","lastname":"Alioui","status":2,"teamid":"2128","position":4,"quotation":10,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6}}},{"playerid":"player_166286","firstname":"Renaud","lastname":"Emond","status":2,"teamid":"430","position":4,"quotation":8,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2094656_stats","day":2,"rate":5},"3":{"matchId":"match_2094666_stats","day":3,"rate":4.5},"4":{"matchId":"match_2094677_stats","day":4,"rate":6},"5":{"matchId":"match_2094684_stats","day":5,"rate":4.5},"6":{"matchId":"match_2094697_stats","day":6,"rate":4.5}}},{"playerid":"player_49382","firstname":"Bruno","lastname":"Ecuele Manga","status":2,"teamid":"2130","position":2,"quotation":12,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"match_2094654_stats","day":2,"rate":4},"3":{"matchId":"match_2094663_stats","day":3,"rate":5},"4":{"matchId":"match_2094680_stats","day":4,"rate":5},"5":{"matchId":"match_2094683_stats","day":5,"rate":7},"6":{"matchId":"match_2094691_stats","day":6,"rate":3.5}}},{"playerid":"player_212851","firstname":"Toma","lastname":"Basic","status":2,"teamid":"140","position":3,"quotation":15,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2094651_stats","day":2,"rate":7},"3":{"matchId":"match_2094662_stats","day":3,"rate":5},"4":{"matchId":"match_2094672_stats","day":4,"rate":5},"5":{"matchId":"match_2094682_stats","day":5,"rate":6},"6":{"matchId":"match_2094691_stats","day":6,"rate":7}}},{"playerid":"player_202858","firstname":"Sada","lastname":"Thioub","status":2,"teamid":"2128","position":4,"quotation":13,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2094651_stats","day":2,"rate":5.5},"3":{"matchId":"match_2094661_stats","day":3,"rate":4},"4":{"matchId":"match_2094676_stats","day":4,"rate":5},"5":{"matchId":"match_2094681_stats","day":5,"rate":6},"6":{"matchId":"match_2094698_stats","day":6,"rate":4}}}],"bonus":{"1":1,"2":1,"3":2,"4":3,"5":0,"6":1,"7":1},"nanardpaid":0,"money":0,"tacticalsubstitutes":[{"subs":"player_229605","start":"player_28136","rating":5},{"subs":"player_115961","start":"player_61170","rating":5},{"subs":"player_219296","start":"player_173253","rating":5},{"subs":"player_166286","start":"player_168539","rating":6},{"subs":"player_27675","start":"player_202858","rating":6}],"composition":343,"playersOnPitch":{"1":"player_104407","2":"player_49382","3":"player_106263","4":"player_28136","5":"player_212851","6":"player_216227","7":"player_173253","8":"player_61170","9":"player_73965","10":"player_202858","11":"player_168539","12":"player_229605","13":"player_102743","14":"player_115961","15":"player_219296","16":"player_166286","17":"player_27675","18":"player_476411"},"bonusSelected":{},"teams":{"140":{"name":"Bordeaux","status":"away","against":"Marseille"},"142":{"name":"Lens","status":"away","against":"Lille"},"143":{"name":"Lyon","status":"away","against":"Strasbourg"},"144":{"name":"Marseille","status":"home","against":"Bordeaux"},"145":{"name":"Metz","status":"away","against":"Angers"},"146":{"name":"Monaco","status":"home","against":"Montpellier"},"147":{"name":"Montpellier","status":"away","against":"Monaco"},"149":{"name":"Paris","status":"away","against":"Nîmes"},"150":{"name":"Rennes","status":"away","against":"Dijon"},"152":{"name":"Saint-Étienne","status":"home","against":"Nice"},"153":{"name":"Strasbourg","status":"home","against":"Lyon"},"429":{"name":"Lille","status":"home","against":"Lens"},"430":{"name":"Nantes","status":"home","against":"Brest"},"694":{"name":"Lorient","status":"away","against":"Reims"},"862":{"name":"Brest","status":"away","against":"Nantes"},"1395":{"name":"Nice","status":"away","against":"Saint-Étienne"},"1423":{"name":"Reims","status":"home","against":"Lorient"},"2128":{"name":"Angers","status":"home","against":"Metz"},"2130":{"name":"Dijon","status":"home","against":"Rennes"},"2336":{"name":"Nîmes","status":"home","against":"Paris"}},"tds":{"update":"2020-10-02T16:24:50.437Z","player_232240":{},"player_200958":{},"player_202857":{},"player_161472":{},"player_244701":{"injured":1},"player_177885":{},"player_59846":{},"player_200671":{},"player_126177":{},"player_60582":{},"player_173085":{"injured":1},"player_174655":{},"player_95434":{},"player_111291":{},"player_158208":{"injured":1},"player_100632":{"injured":1},"player_171099":{},"player_197022":{},"player_226451":{},"player_92985":{},"player_153014":{},"player_420962":{},"player_111265":{"injured":1},"player_38261":{},"player_441575":{},"player_26896":{"injured":1},"player_217597":{},"player_201562":{},"player_48847":{},"player_50442":{},"player_116152":{},"player_201057":{},"player_102636":{},"player_215473":{},"player_242894":{},"player_462424":{},"player_242600":{},"player_437504":{},"player_461913":{},"player_40720":{},"player_220160":{},"player_221987":{},"player_490032":{"injured":1},"player_429188":{},"player_226946":{},"player_458346":{},"player_217486":{},"player_489661":{},"player_178478":{},"player_61278":{},"player_208559":{},"player_220960":{},"player_98798":{"injured":1},"player_164474":{},"player_97433":{"injured":1},"player_73667":{"injured":1},"player_38419":{},"player_180124":{},"player_180167":{},"player_115327":{},"player_17878":{},"player_162654":{},"player_197017":{},"player_204727":{},"player_208556":{},"player_153649":{"injured":1},"player_154011":{},"player_444463":{"injured":1},"player_185441":{},"player_133632":{"injured":1},"player_205836":{},"player_165112":{},"player_192785":{},"player_242879":{"injured":1},"player_68791":{},"player_490031":{"injured":1},"player_250588":{},"player_116536":{"injured":1},"player_223140":{"injured":1},"player_57266":{},"player_454964":{},"player_220734":{},"player_158047":{},"player_160729":{},"player_209335":{},"player_26894":{},"player_113541":{"injured":1},"player_103457":{"injured":1},"player_204184":{},"player_107685":{},"player_174908":{},"player_207756":{},"player_433640":{},"player_210462":{},"player_184232":{},"player_214472":{},"player_240145":{},"player_54413":{},"player_435731":{"injured":1},"player_96764":{},"player_225183":{"injured":1},"player_104613":{},"player_447389":{"injured":1},"player_48768":{},"player_68260":{},"player_73879":{},"player_37776":{},"player_194326":{},"player_109404":{},"player_83912":{},"player_149828":{},"player_225997":{"injured":1},"player_88484":{},"player_458250":{},"player_244642":{},"player_44287":{},"player_486847":{},"player_141109":{"injured":1},"player_430510":{},"player_98826":{},"player_38265":{},"player_216438":{"injured":1},"player_96084":{},"player_37901":{},"player_226944":{},"player_106821":{},"player_107641":{},"player_217872":{},"player_106109":{},"player_61170":{},"player_209608":{},"player_242882":{},"player_20690":{},"player_192291":{"injured":1},"player_437726":{},"player_172987":{},"player_245496":{},"player_242887":{},"player_456355":{},"player_451005":{"injured":1},"player_449718":{},"player_490190":{},"player_56995":{"injured":1},"player_37990":{},"player_115961":{},"player_183779":{},"player_52573":{},"player_92527":{},"player_38314":{"injured":1},"player_42564":{},"player_98828":{},"player_218005":{},"player_204534":{},"player_167074":{},"player_219230":{},"player_174272":{"injured":1},"player_152338":{},"player_115851":{},"player_465203":{},"player_486845":{"injured":1},"player_485337":{},"player_228563":{},"player_199409":{"injured":1},"player_37758":{},"player_209330":{},"player_121524":{},"player_212851":{},"player_481667":{},"player_107330":{},"player_247957":{},"player_242885":{},"player_465691":{"injured":1},"player_8747":{"injured":1},"player_204744":{},"player_231875":{},"player_195386":{"injured":1},"player_176495":{},"player_432662":{},"player_482140":{"injured":1},"player_432649":{"injured":1},"player_44488":{"injured":1},"player_219296":{"pending":1},"player_477411":{},"player_184449":{},"player_486792":{},"player_107254":{},"player_162316":{},"player_215710":{"injured":1},"player_243741":{},"player_489230":{},"player_423955":{},"player_487352":{"injured":1},"player_247629":{},"player_490209":{},"player_437724":{"injured":1},"player_198065":{},"player_475767":{"injured":1},"player_176443":{},"player_465299":{},"player_489601":{"injured":1},"player_429234":{"injured":1},"player_49887":{},"player_162275":{},"player_78275":{},"player_67276":{},"player_193537":{"injured":1},"player_80565":{},"player_216100":{},"player_119679":{},"player_149519":{"pending":1},"player_115380":{},"player_214254":{},"player_124148":{},"player_229273":{},"player_93605":{},"player_489963":{},"player_228286":{"injured":1},"player_475561":{},"player_200848":{},"player_161950":{"injured":1},"player_55948":{},"player_425614":{"injured":1},"player_59964":{},"player_143685":{},"player_112945":{},"player_232174":{},"player_203237":{},"player_171319":{},"player_122775":{},"player_225897":{"injured":1},"player_154310":{},"player_82313":{},"player_54771":{},"player_45084":{},"player_200666":{},"player_105046":{"injured":1},"player_230337":{"injured":1},"player_106824":{},"player_471471":{},"player_80801":{},"player_96616":{},"player_174846":{},"player_448514":{},"player_105345":{},"player_244560":{},"player_171435":{},"player_110504":{"injured":1},"player_73965":{},"player_60070":{},"player_84424":{},"player_119404":{"injured":1},"player_216137":{},"player_180303":{},"player_84366":{},"player_468489":{"injured":1},"player_141017":{},"player_225905":{"injured":1},"player_80357":{},"player_51507":{},"player_210494":{},"player_54409":{},"player_11973":{"injured":1},"player_103127":{},"player_151873":{"injured":1},"player_184961":{},"player_51850":{"injured":1},"player_55305":{},"player_37836":{},"player_27341":{},"player_45076":{"injured":1},"player_161034":{},"player_489995":{},"player_209914":{},"player_489887":{"injured":1},"player_461384":{"injured":1},"player_489888":{"injured":1},"player_94753":{"injured":1},"player_154048":{},"player_218329":{},"player_38580":{},"player_184215":{},"player_244136":{},"player_19670":{},"player_92559":{},"player_51090":{},"player_472778":{"injured":1},"player_230443":{},"player_218357":{"injured":1},"player_437501":{},"player_480779":{"injured":1},"player_116504":{},"player_112580":{},"player_105727":{"injured":1},"player_72177":{},"player_232176":{},"player_203349":{},"player_80342":{"pending":1},"player_218796":{"injured":1},"player_169102":{},"player_228361":{},"player_116627":{},"player_119770":{},"player_193400":{"injured":1},"player_468488":{},"player_49396":{"injured":1},"player_106551":{},"player_231961":{},"player_210207":{},"player_155895":{"injured":1},"player_180835":{"suspended":1},"player_210228":{},"player_225902":{},"player_199672":{},"player_173271":{},"player_46483":{},"player_71403":{},"player_428989":{},"player_170409":{},"player_159967":{},"player_40815":{},"player_103155":{},"player_195883":{},"player_446029":{},"player_54518":{},"player_193512":{},"player_193411":{},"player_115918":{},"player_422631":{},"player_214245":{},"player_209218":{},"player_218366":{},"player_476892":{},"player_40560":{},"player_60165":{},"player_27675":{},"player_232197":{},"player_89068":{"suspended":1},"player_42416":{},"player_27334":{"injured":1},"player_228322":{},"player_73985":{},"player_221024":{},"player_471437":{},"player_461397":{},"player_476884":{},"player_219292":{"suspended":1},"player_144660":{},"player_434399":{},"player_32367":{},"player_80711":{},"player_244182":{},"player_38002":{},"player_129479":{},"player_217596":{},"player_488448":{},"player_467625":{},"player_44898":{},"player_247400":{},"player_444151":{},"player_461833":{},"player_226194":{},"player_245491":{"injured":1},"player_19739":{},"player_80904":{"injured":1},"player_488336":{"injured":1},"player_436644":{},"player_488337":{},"player_92258":{},"player_106320":{},"player_217992":{},"player_439122":{},"player_210187":{"injured":1},"player_92216":{},"player_45123":{},"player_158496":{},"player_85565":{},"player_54772":{},"player_106212":{},"player_202459":{"injured":1},"player_37765":{},"player_194624":{},"player_169860":{},"player_57136":{},"player_231057":{},"player_185727":{},"player_59741":{},"player_49730":{},"player_83233":{},"player_477699":{},"player_173046":{},"player_59325":{},"player_201440":{},"player_40833":{},"player_208987":{"injured":1},"player_44413":{},"player_206340":{},"player_214473":{"injured":1},"player_461910":{},"player_85548":{},"player_195480":{},"player_58625":{},"player_458681":{},"player_240149":{"injured":1},"player_443202":{},"player_433771":{},"player_435615":{},"player_73889":{"injured":1},"player_242893":{},"player_147577":{},"player_216227":{},"player_177840":{"injured":1},"player_481616":{},"player_210456":{"injured":1},"player_226949":{},"player_463067":{},"player_128376":{},"player_229230":{},"player_447579":{},"player_240143":{},"player_102760":{"injured":1},"player_156708":{"injured":1},"player_121150":{},"player_116406":{},"player_174528":{},"player_55264":{},"player_193417":{"injured":1},"player_493984":{},"player_465158":{},"player_59957":{},"player_102743":{"injured":1},"player_476502":{"injured":1},"player_106921":{},"player_433312":{},"player_37832":{},"player_132197":{"injured":1},"player_88931":{"injured":1},"player_129510":{},"player_204719":{},"player_216610":{},"player_219286":{},"player_469192":{"injured":1},"player_210202":{},"player_111181":{},"player_225702":{},"player_56491":{},"player_477711":{"pending":1},"player_235050":{},"player_439363":{},"player_465676":{},"player_204739":{},"player_49323":{},"player_158494":{},"player_240860":{},"player_219961":{},"player_489600":{"injured":1},"player_204454":{"injured":1},"player_68545":{},"player_215046":{},"player_226597":{"injured":1},"player_166286":{},"player_499658":{},"player_150172":{},"player_86446":{},"player_86413":{},"player_88175":{},"player_195908":{},"player_173253":{},"player_114531":{"suspended":1},"player_93622":{},"player_93619":{},"player_242896":{"injured":1},"player_61983":{},"player_499209":{"injured":1},"player_466052":{},"player_437721":{},"player_54405":{},"player_116628":{"injured":1},"player_18574":{},"player_244842":{"injured":1},"player_492825":{},"player_245918":{},"player_11382":{},"player_231399":{},"player_28411":{},"player_46497":{"suspended":1},"player_465680":{},"player_91080":{},"player_94248":{},"player_168539":{},"player_194188":{},"player_461908":{},"player_489841":{"injured":1},"player_82184":{"pending":1},"player_85633":{"injured":1},"player_490135":{},"player_495542":{"injured":1},"player_169427":{},"player_485176":{},"player_185621":{"injured":1},"player_502457":{"injured":1},"player_504215":{"injured":1},"player_492925":{},"player_181978":{},"player_232191":{"injured":1},"player_442261":{},"player_437754":{},"player_490191":{},"player_93122":{"injured":1},"player_247385":{},"player_437497":{},"player_465540":{},"player_466041":{},"player_492975":{},"player_465154":{},"player_466043":{"injured":1},"player_468430":{"injured":1},"player_444204":{},"player_469318":{},"player_480778":{},"player_244007":{"injured":1},"player_422248":{"injured":1},"player_449689":{"injured":1},"player_485098":{"injured":1},"player_220494":{},"player_242891":{"injured":1},"player_469323":{"injured":1},"player_485100":{"injured":1},"player_489889":{"injured":1},"player_503184":{"injured":1},"player_498382":{"injured":1},"player_497278":{},"player_461415":{"injured":1},"player_461418":{"injured":1},"player_442307":{"injured":1},"player_461428":{"injured":1},"player_437950":{"injured":1},"player_485341":{"injured":1},"player_489606":{"injured":1},"player_469267":{},"player_501441":{"injured":1},"player_171173":{},"player_501797":{},"player_477085":{},"player_501796":{"injured":1},"player_505193":{},"player_471924":{},"player_456193":{},"player_477730":{},"player_199665":{"injured":1},"player_456194":{"injured":1},"player_456195":{},"player_476889":{},"player_495476":{},"player_423870":{},"player_433731":{},"player_502435":{},"player_226948":{},"player_496523":{},"player_488695":{},"player_488697":{},"player_488698":{},"player_488699":{},"player_240153":{},"player_476893":{},"player_242878":{},"player_465057":{"injured":1},"player_245742":{"injured":1},"player_469266":{},"player_472779":{},"player_83577":{"injured":1},"player_442264":{},"player_465151":{},"player_489573":{},"player_498406":{},"player_500222":{},"player_501599":{},"player_192021":{"injured":1},"player_428373":{},"player_445956":{"injured":1},"player_464192":{},"player_40511":{},"player_200722":{},"player_242890":{},"player_460630":{"injured":1},"player_424146":{},"player_45505":{},"player_28136":{},"player_456300":{},"player_174874":{},"player_502951":{},"player_476489":{},"player_465702":{},"player_510881":{},"player_465684":{},"player_493345":{},"player_493349":{},"player_493362":{},"player_496630":{},"player_93127":{},"player_107925":{},"player_100207":{},"player_218240":{},"player_231058":{},"player_104662":{},"player_221542":{},"player_225190":{},"player_244490":{},"player_501334":{},"player_250694":{},"player_458345":{},"player_458455":{},"player_103777":{},"player_167443":{},"player_180562":{},"player_186796":{},"player_446006":{},"player_477720":{},"player_477729":{},"player_52782":{},"player_68862":{},"player_122399":{},"player_193454":{},"player_208706":{},"player_215669":{},"player_466038":{},"player_469847":{},"player_193539":{},"player_213965":{},"player_37769":{},"player_422453":{},"player_441576":{},"player_446682":{},"player_47434":{},"player_476890":{},"player_485180":{},"player_510299":{},"player_510310":{},"player_510312":{},"player_510314":{},"player_97041":{},"player_241099":{},"player_247146":{},"player_424920":{},"player_489571":{},"player_152865":{"injured":1},"player_202858":{},"player_488351":{"injured":1},"player_59229":{"injured":1},"player_98746":{},"player_213940":{},"player_247693":{},"player_454671":{},"player_433830":{},"player_511568":{},"player_154344":{"injured":1},"player_92170":{},"player_224297":{},"player_245090":{},"player_202520":{},"player_230801":{"injured":1},"player_180736":{"injured":1},"player_511226":{},"player_51525":{},"player_204123":{},"player_505834":{},"player_242167":{},"player_86873":{},"player_120947":{},"player_490340":{},"player_218218":{},"player_201865":{},"player_500267":{},"player_90436":{},"player_168985":{"injured":1},"player_220074":{},"player_209035":{},"player_106263":{},"player_197498":{},"player_229605":{"injured":1},"player_449431":{"injured":1},"player_173235":{},"player_220362":{"suspended":1},"player_86158":{"injured":1},"player_145221":{"pending":1},"player_73500":{"injured":1},"player_478270":{},"player_155335":{"injured":1},"player_494521":{},"player_230971":{"injured":1}}}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.MLAX7HMK.20201021.json b/src/test/resources/__files/mpg.coach.MLAX7HMK.20201021.json deleted file mode 100644 index 04ccf68..0000000 --- a/src/test/resources/__files/mpg.coach.MLAX7HMK.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"realday":8,"dateMatch":1603479600000,"timetogame":163307558,"champid":1,"matchId":"mpg_match_MLAX7HMK_1_7_2","stadium":"L'arenanard","teamHome":{"id":"mpg_team_MLAX7HMK$$mpg_user_953561","userId":"mpg_user_953561","name":"Le Doublé","abbr":"DOU","coach":"Mansuy","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_0_1598020949483","jerseyAway":"jersey_0_1572518212698","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1598020949483.png"},"teamAway":{"id":"mpg_team_MLAX7HMK$$mpg_user_955966","userId":"mpg_user_955966","name":"Axel Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyAway":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png"},"nbPlayers":10,"players":[{"playerid":"player_73965","firstname":"Andy","lastname":"Delort","status":2,"teamid":"147","position":4,"quotation":25,"ultraPosition":40,"lastFiveRate":{"3":{"matchId":"match_2094667_stats","day":3,"rate":7.5},"4":{"matchId":"match_2094676_stats","day":4,"rate":8},"5":{"matchId":"match_2094683_stats","day":5,"rate":7},"6":{"matchId":"match_2094696_stats","day":6,"rate":4},"7":{"matchId":"match_2094705_stats","day":7,"rate":5}}},{"playerid":"player_61170","firstname":"Marco","lastname":"Verratti","status":2,"teamid":"149","position":3,"quotation":23,"ultraPosition":31,"lastFiveRate":{"3":{"matchId":"match_2094669_stats","day":3,"rate":3.5},"4":{"matchId":"match_2094678_stats","day":4,"rate":6.5},"5":{"matchId":"match_2094689_stats","day":5,"rate":5},"6":{"matchId":"match_2094698_stats","day":6,"rate":7.5},"7":{"matchId":"-","day":7}}},{"playerid":"player_476411","firstname":null,"lastname":"Dialy Ndiaye","status":2,"teamid":"1423","position":1,"quotation":1,"ultraPosition":10,"lastFiveRate":{"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6},"7":{"matchId":"-","day":7}}},{"playerid":"player_28136","firstname":null,"lastname":"Hilton","status":2,"teamid":"147","position":2,"quotation":15,"ultraPosition":20,"lastFiveRate":{"3":{"matchId":"match_2094667_stats","day":3,"rate":5.5},"4":{"matchId":"-","day":4},"5":{"matchId":"match_2094683_stats","day":5,"rate":4},"6":{"matchId":"match_2094696_stats","day":6,"rate":5},"7":{"matchId":"match_2094705_stats","day":7,"rate":7}}},{"playerid":"player_219296","firstname":"Maxence","lastname":"Caqueret","status":2,"teamid":"143","position":3,"quotation":11,"ultraPosition":31,"lastFiveRate":{"3":{"matchId":"match_2094662_stats","day":3,"rate":5.5},"4":{"matchId":"match_2094673_stats","day":4,"rate":4.5},"5":{"matchId":"-","day":5},"6":{"matchId":"match_2094694_stats","day":6,"rate":5},"7":{"matchId":"-","day":7}}},{"playerid":"player_115961","firstname":"Adrien","lastname":"Thomasson","status":2,"teamid":"153","position":3,"quotation":19,"ultraPosition":32,"lastFiveRate":{"3":{"matchId":"match_2094670_stats","day":3,"rate":4.5},"4":{"matchId":"match_2094680_stats","day":4,"rate":5.5},"5":{"matchId":"match_2094687_stats","day":5,"rate":4},"6":{"matchId":"match_2094700_stats","day":6,"rate":5},"7":{"matchId":"match_2094710_stats","day":7,"rate":4}}},{"playerid":"player_106263","firstname":"Yunis","lastname":"Abdelhamid","status":2,"teamid":"1423","position":2,"quotation":21,"ultraPosition":20,"lastFiveRate":{"3":{"matchId":"-","day":3},"4":{"matchId":"match_2094675_stats","day":4,"rate":3},"5":{"matchId":"match_2094689_stats","day":5,"rate":5},"6":{"matchId":"match_2094699_stats","day":6,"rate":5.5},"7":{"matchId":"match_2094708_stats","day":7,"rate":4}}},{"playerid":"player_104407","firstname":"Predrag","lastname":"Rajkovic","status":2,"teamid":"1423","position":1,"quotation":24,"ultraPosition":10,"lastFiveRate":{"3":{"matchId":"match_2094661_stats","day":3,"rate":8},"4":{"matchId":"match_2094675_stats","day":4,"rate":4.5},"5":{"matchId":"match_2094689_stats","day":5,"rate":6},"6":{"matchId":"match_2094699_stats","day":6,"rate":4},"7":{"matchId":"match_2094708_stats","day":7,"rate":2.5}}},{"playerid":"player_216227","firstname":"Denis","lastname":"Bouanga","status":2,"teamid":"152","position":3,"quotation":29,"ultraPosition":32,"lastFiveRate":{"3":{"matchId":"match_2094670_stats","day":3,"rate":7},"4":{"matchId":"match_2094677_stats","day":4,"rate":4},"5":{"matchId":"match_2094690_stats","day":5,"rate":4},"6":{"matchId":"match_2094693_stats","day":6,"rate":5},"7":{"matchId":"match_2094709_stats","day":7,"rate":4.5}}},{"playerid":"player_168539","firstname":"Ludovic","lastname":"Ajorque","status":2,"teamid":"153","position":4,"quotation":14,"ultraPosition":40,"lastFiveRate":{"3":{"matchId":"match_2094670_stats","day":3,"rate":4},"4":{"matchId":"match_2094680_stats","day":4,"rate":4.5},"5":{"matchId":"match_2094687_stats","day":5,"rate":6},"6":{"matchId":"match_2094700_stats","day":6,"rate":4},"7":{"matchId":"match_2094710_stats","day":7,"rate":4.5}}},{"playerid":"player_27675","firstname":"Jimmy","lastname":"Briand","status":2,"teamid":"140","position":4,"quotation":8,"ultraPosition":40,"lastFiveRate":{"3":{"matchId":"match_2094662_stats","day":3,"rate":4},"4":{"matchId":"match_2094672_stats","day":4,"rate":5},"5":{"matchId":"match_2094682_stats","day":5,"rate":5},"6":{"matchId":"match_2094691_stats","day":6,"rate":4.5},"7":{"matchId":"match_2094704_stats","day":7,"rate":5.5}}},{"playerid":"player_229605","firstname":"Clement","lastname":"Michelin","status":2,"teamid":"142","position":2,"quotation":9,"ultraPosition":21,"lastFiveRate":{"3":{"matchId":"match_2094665_stats","day":3,"rate":5},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6},"7":{"matchId":"match_2094703_stats","day":7,"rate":3.5}}},{"playerid":"player_173253","firstname":"Habib","lastname":"Maïga","status":2,"teamid":"145","position":3,"quotation":23,"ultraPosition":31,"lastFiveRate":{"3":{"matchId":"match_2094664_stats","day":3,"rate":5.5},"4":{"matchId":"match_2094675_stats","day":4,"rate":6},"5":{"matchId":"match_2094686_stats","day":5,"rate":5.5},"6":{"matchId":"match_2094695_stats","day":6,"rate":7.5},"7":{"matchId":"-","day":7}}},{"playerid":"player_102743","firstname":"Rachid","lastname":"Alioui","status":2,"teamid":"2128","position":4,"quotation":8,"ultraPosition":40,"lastFiveRate":{"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6},"7":{"matchId":"match_2094701_stats","day":7,"rate":4.5}}},{"playerid":"player_166286","firstname":"Renaud","lastname":"Emond","status":2,"teamid":"430","position":4,"quotation":8,"ultraPosition":40,"lastFiveRate":{"3":{"matchId":"match_2094666_stats","day":3,"rate":4.5},"4":{"matchId":"match_2094677_stats","day":4,"rate":6},"5":{"matchId":"match_2094684_stats","day":5,"rate":4.5},"6":{"matchId":"match_2094697_stats","day":6,"rate":4.5},"7":{"matchId":"-","day":7}}},{"playerid":"player_49382","firstname":"Bruno","lastname":"Ecuele Manga","status":2,"teamid":"2130","position":2,"quotation":13,"ultraPosition":20,"lastFiveRate":{"3":{"matchId":"match_2094663_stats","day":3,"rate":5},"4":{"matchId":"match_2094680_stats","day":4,"rate":5},"5":{"matchId":"match_2094683_stats","day":5,"rate":7},"6":{"matchId":"match_2094691_stats","day":6,"rate":3.5},"7":{"matchId":"match_2094702_stats","day":7,"rate":5}}},{"playerid":"player_212851","firstname":"Toma","lastname":"Basic","status":2,"teamid":"140","position":3,"quotation":17,"ultraPosition":31,"lastFiveRate":{"3":{"matchId":"match_2094662_stats","day":3,"rate":5},"4":{"matchId":"match_2094672_stats","day":4,"rate":5},"5":{"matchId":"match_2094682_stats","day":5,"rate":6},"6":{"matchId":"match_2094691_stats","day":6,"rate":7},"7":{"matchId":"match_2094704_stats","day":7,"rate":4}}},{"playerid":"player_202858","firstname":"Sada","lastname":"Thioub","status":2,"teamid":"2128","position":4,"quotation":11,"ultraPosition":40,"lastFiveRate":{"3":{"matchId":"match_2094661_stats","day":3,"rate":4},"4":{"matchId":"match_2094676_stats","day":4,"rate":5},"5":{"matchId":"match_2094681_stats","day":5,"rate":6},"6":{"matchId":"match_2094698_stats","day":6,"rate":4},"7":{"matchId":"match_2094701_stats","day":7,"rate":4.5}}},{"playerid":"player_112945","firstname":null,"lastname":"Stefan Mitrovic","status":2,"teamid":"153","position":2,"quotation":11,"ultraPosition":20,"lastFiveRate":{"3":{"matchId":"match_2094670_stats","day":3,"rate":5.5},"4":{"matchId":"match_2094680_stats","day":4,"rate":7.5},"5":{"matchId":"match_2094687_stats","day":5,"rate":4},"6":{"matchId":"match_2094700_stats","day":6,"rate":4},"7":{"matchId":"match_2094710_stats","day":7,"rate":5.5}}}],"bonus":{"1":1,"2":1,"3":2,"4":3,"5":0,"6":1,"7":1},"nanardpaid":0,"money":0,"tacticalsubstitutes":[{"subs":"player_28136","start":"player_106263","rating":5},{"subs":"player_166286","start":"player_168539","rating":6},{"subs":"player_27675","start":"player_202858","rating":6}],"composition":343,"playersOnPitch":{"1":"player_104407","2":"player_49382","3":"player_112945","4":"player_106263","5":"player_212851","6":"player_216227","7":"player_173253","8":"player_115961","9":"player_73965","10":"player_202858","11":"player_168539","12":"player_28136","13":"player_229605","14":"player_102743","15":null,"16":"player_166286","17":"player_27675","18":"player_476411"},"bonusSelected":{},"teams":{"140":{"name":"Bordeaux","status":"home","against":"Nîmes"},"142":{"name":"Lens","status":"home","against":"Nantes"},"143":{"name":"Lyon","status":"home","against":"Monaco"},"144":{"name":"Marseille","status":"away","against":"Lorient"},"145":{"name":"Metz","status":"home","against":"Saint-Étienne"},"146":{"name":"Monaco","status":"away","against":"Lyon"},"147":{"name":"Montpellier","status":"home","against":"Reims"},"149":{"name":"Paris","status":"home","against":"Dijon"},"150":{"name":"Rennes","status":"home","against":"Angers"},"152":{"name":"Saint-Étienne","status":"away","against":"Metz"},"153":{"name":"Strasbourg","status":"away","against":"Brest"},"429":{"name":"Lille","status":"away","against":"Nice"},"430":{"name":"Nantes","status":"away","against":"Lens"},"694":{"name":"Lorient","status":"home","against":"Marseille"},"862":{"name":"Brest","status":"home","against":"Strasbourg"},"1395":{"name":"Nice","status":"home","against":"Lille"},"1423":{"name":"Reims","status":"away","against":"Montpellier"},"2128":{"name":"Angers","status":"away","against":"Rennes"},"2130":{"name":"Dijon","status":"away","against":"Paris"},"2336":{"name":"Nîmes","status":"away","against":"Bordeaux"}},"tds":{"update":"2020-10-16T14:25:49.151Z","player_232240":{},"player_200958":{},"player_202857":{},"player_161472":{},"player_244701":{"injured":1},"player_177885":{},"player_59846":{"injured":1},"player_200671":{},"player_126177":{},"player_60582":{},"player_173085":{},"player_174655":{},"player_95434":{},"player_111291":{},"player_158208":{"injured":1},"player_100632":{"pending":1},"player_171099":{},"player_197022":{},"player_226451":{},"player_92985":{"injured":1},"player_153014":{},"player_420962":{},"player_111265":{"injured":1},"player_38261":{},"player_441575":{},"player_26896":{"injured":1},"player_217597":{},"player_201562":{},"player_48847":{},"player_50442":{},"player_116152":{},"player_201057":{"injured":1},"player_102636":{"injured":1},"player_215473":{},"player_242894":{},"player_462424":{},"player_242600":{},"player_437504":{},"player_461913":{},"player_40720":{},"player_220160":{"pending":1},"player_221987":{},"player_490032":{"injured":1},"player_429188":{},"player_226946":{},"player_458346":{},"player_217486":{},"player_489661":{},"player_178478":{},"player_61278":{"injured":1},"player_208559":{},"player_220960":{},"player_98798":{"injured":1},"player_164474":{},"player_97433":{"injured":1},"player_73667":{"injured":1},"player_38419":{},"player_180124":{},"player_180167":{},"player_115327":{},"player_17878":{},"player_162654":{},"player_197017":{},"player_204727":{},"player_208556":{},"player_153649":{"injured":1},"player_154011":{},"player_444463":{"injured":1},"player_185441":{},"player_133632":{"injured":1},"player_205836":{},"player_165112":{},"player_192785":{},"player_242879":{"injured":1},"player_68791":{},"player_490031":{"injured":1},"player_250588":{},"player_116536":{"injured":1},"player_223140":{},"player_57266":{},"player_454964":{},"player_220734":{},"player_158047":{},"player_160729":{},"player_209335":{},"player_26894":{},"player_113541":{},"player_103457":{},"player_204184":{},"player_107685":{},"player_174908":{},"player_207756":{},"player_433640":{},"player_210462":{},"player_184232":{},"player_214472":{},"player_240145":{},"player_54413":{},"player_435731":{"injured":1},"player_96764":{"injured":1},"player_225183":{"injured":1},"player_104613":{},"player_447389":{"injured":1},"player_48768":{},"player_68260":{},"player_73879":{},"player_37776":{},"player_194326":{},"player_109404":{},"player_83912":{},"player_149828":{},"player_225997":{},"player_88484":{},"player_458250":{"pending":1},"player_244642":{},"player_44287":{"suspended":1},"player_486847":{},"player_141109":{"injured":1},"player_430510":{},"player_98826":{},"player_38265":{},"player_216438":{"injured":1},"player_96084":{},"player_37901":{"suspended":1},"player_226944":{},"player_106821":{"injured":1},"player_107641":{},"player_217872":{},"player_106109":{"injured":1},"player_61170":{"injured":1},"player_209608":{},"player_242882":{},"player_20690":{},"player_192291":{"injured":1},"player_437726":{},"player_172987":{},"player_245496":{},"player_242887":{},"player_456355":{},"player_451005":{"injured":1},"player_449718":{},"player_490190":{},"player_56995":{"injured":1},"player_37990":{},"player_115961":{},"player_183779":{},"player_52573":{},"player_92527":{},"player_38314":{"injured":1},"player_42564":{},"player_98828":{"suspended":1},"player_218005":{},"player_204534":{},"player_167074":{},"player_219230":{},"player_174272":{"injured":1},"player_152338":{},"player_115851":{},"player_465203":{},"player_486845":{"injured":1},"player_485337":{},"player_228563":{},"player_199409":{"injured":1},"player_37758":{},"player_209330":{},"player_121524":{},"player_212851":{},"player_481667":{},"player_107330":{},"player_247957":{},"player_242885":{},"player_465691":{"injured":1},"player_8747":{"injured":1},"player_204744":{},"player_231875":{},"player_195386":{"injured":1},"player_176495":{},"player_432662":{},"player_482140":{"injured":1},"player_432649":{"injured":1},"player_44488":{"injured":1},"player_219296":{"pending":1},"player_477411":{},"player_184449":{},"player_486792":{},"player_107254":{},"player_162316":{},"player_215710":{"injured":1},"player_243741":{},"player_489230":{},"player_423955":{},"player_487352":{"injured":1},"player_247629":{},"player_490209":{},"player_437724":{"injured":1},"player_198065":{},"player_475767":{"injured":1},"player_176443":{},"player_465299":{},"player_489601":{"injured":1},"player_429234":{"injured":1},"player_49887":{},"player_162275":{},"player_78275":{},"player_67276":{},"player_193537":{"injured":1},"player_80565":{},"player_216100":{},"player_119679":{},"player_149519":{"pending":1},"player_115380":{},"player_214254":{},"player_124148":{},"player_229273":{},"player_93605":{},"player_489963":{},"player_228286":{"injured":1},"player_475561":{},"player_200848":{},"player_161950":{},"player_55948":{},"player_425614":{"injured":1},"player_59964":{},"player_143685":{"suspended":1},"player_112945":{},"player_232174":{},"player_203237":{},"player_171319":{},"player_122775":{},"player_225897":{"injured":1},"player_154310":{},"player_82313":{},"player_54771":{},"player_45084":{},"player_200666":{},"player_105046":{"injured":1},"player_230337":{"injured":1},"player_106824":{},"player_471471":{},"player_80801":{},"player_96616":{},"player_174846":{},"player_448514":{},"player_105345":{},"player_244560":{},"player_171435":{},"player_110504":{"injured":1},"player_73965":{"injured":1},"player_60070":{},"player_84424":{},"player_119404":{"injured":1},"player_216137":{},"player_180303":{"injured":1},"player_84366":{"pending":1},"player_468489":{"injured":1},"player_141017":{},"player_225905":{"injured":1},"player_80357":{"injured":1},"player_51507":{"pending":1},"player_210494":{"pending":1},"player_54409":{},"player_11973":{"injured":1},"player_103127":{},"player_151873":{"injured":1},"player_184961":{"suspended":1},"player_51850":{"injured":1},"player_55305":{},"player_37836":{"pending":1},"player_27341":{},"player_45076":{"injured":1},"player_161034":{},"player_489995":{},"player_209914":{"pending":1},"player_489887":{"injured":1},"player_461384":{"injured":1},"player_489888":{"injured":1},"player_94753":{"injured":1},"player_154048":{},"player_218329":{},"player_38580":{"pending":1},"player_184215":{},"player_244136":{},"player_19670":{},"player_92559":{},"player_51090":{},"player_472778":{"pending":1},"player_230443":{"injured":1},"player_218357":{"injured":1},"player_437501":{},"player_480779":{},"player_116504":{},"player_112580":{},"player_105727":{"injured":1},"player_72177":{"injured":1},"player_232176":{},"player_203349":{},"player_80342":{"pending":1},"player_218796":{"injured":1},"player_169102":{},"player_228361":{},"player_116627":{},"player_119770":{},"player_193400":{"pending":1},"player_468488":{},"player_49396":{"injured":1},"player_106551":{},"player_231961":{},"player_210207":{},"player_155895":{"injured":1},"player_180835":{},"player_210228":{},"player_225902":{},"player_199672":{},"player_173271":{},"player_46483":{},"player_71403":{},"player_428989":{"injured":1},"player_170409":{"suspended":1},"player_159967":{},"player_40815":{},"player_103155":{},"player_195883":{},"player_446029":{},"player_54518":{},"player_193512":{},"player_193411":{},"player_115918":{},"player_422631":{},"player_214245":{},"player_209218":{"injured":1},"player_218366":{},"player_476892":{},"player_40560":{},"player_60165":{"suspended":1},"player_27675":{},"player_232197":{},"player_89068":{"suspended":1},"player_42416":{},"player_27334":{"pending":1},"player_228322":{},"player_73985":{},"player_221024":{},"player_471437":{},"player_461397":{},"player_476884":{},"player_219292":{},"player_144660":{},"player_434399":{},"player_32367":{},"player_80711":{},"player_244182":{},"player_38002":{"injured":1},"player_129479":{},"player_217596":{},"player_488448":{},"player_467625":{},"player_44898":{},"player_247400":{},"player_444151":{},"player_461833":{},"player_226194":{},"player_245491":{"injured":1},"player_19739":{},"player_80904":{"injured":1},"player_488336":{"injured":1},"player_436644":{},"player_488337":{},"player_92258":{},"player_106320":{},"player_217992":{},"player_439122":{},"player_210187":{"injured":1},"player_92216":{"injured":1},"player_45123":{},"player_158496":{},"player_85565":{},"player_54772":{},"player_106212":{},"player_202459":{"injured":1},"player_37765":{},"player_194624":{},"player_169860":{},"player_57136":{"suspended":1},"player_231057":{},"player_185727":{},"player_59741":{},"player_49730":{},"player_83233":{},"player_477699":{},"player_173046":{},"player_59325":{},"player_201440":{},"player_40833":{},"player_208987":{"injured":1},"player_44413":{},"player_206340":{},"player_214473":{"injured":1},"player_461910":{},"player_85548":{},"player_195480":{},"player_58625":{},"player_458681":{},"player_240149":{"injured":1},"player_443202":{},"player_433771":{"injured":1},"player_435615":{},"player_73889":{"injured":1},"player_242893":{},"player_147577":{},"player_216227":{},"player_177840":{"injured":1},"player_481616":{"injured":1},"player_210456":{},"player_226949":{},"player_463067":{},"player_128376":{},"player_229230":{},"player_447579":{},"player_240143":{},"player_102760":{"injured":1},"player_156708":{"injured":1},"player_121150":{},"player_116406":{"suspended":1},"player_174528":{},"player_55264":{},"player_193417":{"injured":1},"player_493984":{},"player_465158":{},"player_59957":{"pending":1},"player_102743":{},"player_476502":{"injured":1},"player_106921":{},"player_433312":{"suspended":1},"player_37832":{},"player_132197":{"injured":1},"player_88931":{},"player_129510":{},"player_204719":{},"player_216610":{},"player_219286":{},"player_469192":{"injured":1},"player_210202":{},"player_111181":{},"player_225702":{"injured":1},"player_56491":{},"player_477711":{},"player_235050":{},"player_439363":{},"player_465676":{},"player_204739":{},"player_49323":{"suspended":1},"player_158494":{},"player_240860":{},"player_219961":{},"player_489600":{"injured":1},"player_204454":{"injured":1},"player_68545":{},"player_215046":{},"player_226597":{"injured":1},"player_166286":{},"player_499658":{},"player_150172":{},"player_86446":{},"player_86413":{},"player_88175":{},"player_195908":{},"player_173253":{"suspended":1},"player_114531":{},"player_93622":{},"player_93619":{},"player_242896":{"injured":1},"player_61983":{},"player_499209":{"injured":1},"player_466052":{},"player_437721":{},"player_54405":{},"player_116628":{"injured":1},"player_18574":{},"player_244842":{"injured":1},"player_492825":{},"player_245918":{},"player_11382":{},"player_231399":{},"player_28411":{},"player_46497":{"suspended":1},"player_465680":{},"player_91080":{},"player_94248":{},"player_168539":{},"player_194188":{},"player_461908":{},"player_489841":{"injured":1},"player_82184":{},"player_85633":{"injured":1},"player_490135":{},"player_495542":{"injured":1},"player_169427":{},"player_485176":{},"player_185621":{"injured":1},"player_502457":{"injured":1},"player_504215":{"injured":1},"player_492925":{},"player_181978":{},"player_232191":{"injured":1},"player_442261":{},"player_437754":{},"player_490191":{},"player_93122":{"injured":1},"player_247385":{},"player_437497":{"pending":1},"player_465540":{},"player_466041":{},"player_492975":{},"player_465154":{},"player_466043":{"injured":1},"player_468430":{"injured":1},"player_444204":{},"player_469318":{},"player_480778":{},"player_244007":{"injured":1},"player_422248":{"injured":1},"player_449689":{"injured":1},"player_485098":{"injured":1},"player_220494":{},"player_242891":{"injured":1},"player_469323":{"injured":1},"player_485100":{"injured":1},"player_489889":{"injured":1},"player_503184":{"injured":1},"player_498382":{"injured":1},"player_497278":{},"player_461415":{"injured":1},"player_461418":{"injured":1},"player_442307":{"injured":1},"player_461428":{"injured":1},"player_437950":{"injured":1},"player_485341":{"injured":1},"player_489606":{"injured":1},"player_469267":{},"player_501441":{"injured":1},"player_171173":{},"player_501797":{},"player_477085":{},"player_501796":{"injured":1},"player_505193":{},"player_471924":{},"player_456193":{},"player_477730":{},"player_199665":{"injured":1},"player_456194":{"injured":1},"player_456195":{},"player_476889":{},"player_495476":{},"player_423870":{},"player_433731":{},"player_502435":{},"player_226948":{},"player_496523":{},"player_488695":{},"player_488697":{},"player_488698":{},"player_488699":{},"player_240153":{},"player_476893":{},"player_242878":{},"player_465057":{"injured":1},"player_245742":{"injured":1},"player_469266":{},"player_472779":{},"player_83577":{"injured":1},"player_442264":{},"player_465151":{},"player_489573":{},"player_498406":{},"player_500222":{},"player_501599":{},"player_192021":{"injured":1},"player_428373":{},"player_445956":{"injured":1},"player_464192":{},"player_40511":{},"player_200722":{},"player_242890":{},"player_460630":{"injured":1},"player_424146":{},"player_45505":{},"player_28136":{"injured":1},"player_456300":{},"player_174874":{},"player_502951":{"injured":1},"player_476489":{},"player_465702":{},"player_510881":{},"player_465684":{},"player_493345":{},"player_493349":{},"player_493362":{},"player_496630":{},"player_93127":{},"player_107925":{},"player_100207":{},"player_218240":{"injured":1},"player_231058":{},"player_104662":{},"player_221542":{"injured":1},"player_225190":{},"player_244490":{},"player_501334":{},"player_250694":{"injured":1},"player_458345":{},"player_458455":{},"player_103777":{},"player_167443":{},"player_180562":{},"player_186796":{"injured":1},"player_446006":{},"player_477720":{},"player_477729":{},"player_52782":{},"player_68862":{},"player_122399":{},"player_193454":{},"player_208706":{"suspended":1},"player_215669":{},"player_466038":{},"player_469847":{},"player_193539":{},"player_213965":{},"player_37769":{},"player_422453":{},"player_441576":{},"player_446682":{},"player_47434":{},"player_476890":{},"player_485180":{},"player_510299":{},"player_510310":{},"player_510312":{},"player_510314":{},"player_97041":{},"player_241099":{},"player_247146":{"suspended":1},"player_424920":{},"player_489571":{},"player_152865":{"injured":1},"player_202858":{},"player_488351":{},"player_59229":{"injured":1},"player_98746":{},"player_213940":{},"player_247693":{},"player_454671":{},"player_433830":{},"player_511568":{},"player_154344":{"injured":1},"player_92170":{},"player_224297":{},"player_245090":{},"player_202520":{},"player_230801":{},"player_180736":{"pending":1},"player_511226":{},"player_51525":{},"player_204123":{},"player_505834":{"injured":1},"player_242167":{},"player_86873":{},"player_120947":{},"player_490340":{},"player_218218":{},"player_201865":{"injured":1},"player_500267":{},"player_90436":{},"player_168985":{"injured":1},"player_220074":{},"player_209035":{},"player_106263":{},"player_197498":{},"player_229605":{},"player_449431":{"injured":1},"player_173235":{},"player_220362":{"suspended":1},"player_86158":{"injured":1},"player_145221":{"injured":1},"player_73500":{"pending":1},"player_478270":{},"player_155335":{"injured":1},"player_494521":{},"player_230971":{},"player_215047":{"injured":1},"player_224868":{"suspended":1},"player_156003":{"pending":1},"player_87668":{"pending":1}}}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.MLEFEX6G.20201006.json b/src/test/resources/__files/mpg.coach.MLEFEX6G.20201006.json deleted file mode 100644 index 2e29c75..0000000 --- a/src/test/resources/__files/mpg.coach.MLEFEX6G.20201006.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"realday":7,"dateMatch":1602939600000,"timetogame":958854236,"champid":4,"matchId":"mpg_match_MLEFEX6G_1_6_4","stadium":"Parc des Princesses","teamHome":{"id":"mpg_team_MLEFEX6G$$mpg_user_955966","userId":"mpg_user_955966","name":"Axel Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyAway":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png"},"teamAway":{"id":"mpg_team_MLEFEX6G$$mpg_user_953561","userId":"mpg_user_953561","name":"Le Doublé","abbr":"DOU","coach":"Mansuy","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_0_1598020949483","jerseyAway":"jersey_0_1572518212698","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1572518212698.png"},"nbPlayers":10,"players":[{"playerid":"player_94181","firstname":"Chaker","lastname":"Alhadhur","status":2,"teamid":"921","position":2,"quotation":11,"ultraPosition":21,"lastFiveRate":{"2":{"matchId":"match_2095036_stats","day":2,"rate":4.5},"3":{"matchId":"match_2095054_stats","day":3,"rate":5},"4":{"matchId":"match_2095057_stats","day":4,"rate":6},"5":{"matchId":"match_2095067_stats","day":5,"rate":5},"6":{"matchId":"match_2095077_stats","day":6,"rate":6}}},{"playerid":"player_86443","firstname":"Florent","lastname":"Ogier","status":2,"teamid":"1983","position":2,"quotation":12,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"match_2095037_stats","day":2,"rate":4.5},"3":{"matchId":"match_2095047_stats","day":3,"rate":6},"4":{"matchId":"match_2095058_stats","day":4,"rate":5},"5":{"matchId":"match_2095073_stats","day":5,"rate":4.5},"6":{"matchId":"match_2095078_stats","day":6,"rate":6}}},{"playerid":"player_62226","firstname":"Maxime","lastname":"Barthelme","status":2,"teamid":"154","position":3,"quotation":22,"ultraPosition":32,"lastFiveRate":{"2":{"matchId":"match_2095044_stats","day":2,"rate":4.5},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6}}},{"playerid":"player_488439","firstname":null,"lastname":"Woyo Coulibaly","status":2,"teamid":"141","position":2,"quotation":8,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"match_2095039_stats","day":2,"rate":5.5},"3":{"matchId":"match_2095049_stats","day":3,"rate":5},"4":{"matchId":"match_2095061_stats","day":4,"rate":4.5},"5":{"matchId":"match_2095069_stats","day":5,"rate":5.5},"6":{"matchId":"match_2095081_stats","day":6,"rate":4}}},{"playerid":"player_437503","firstname":"Mathis","lastname":"Picouleau","status":2,"teamid":"1996","position":3,"quotation":3,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2095042_stats","day":2,"rate":5},"3":{"matchId":"match_2095054_stats","day":3,"rate":5},"4":{"matchId":"match_2095059_stats","day":4,"rate":5},"5":{"matchId":"match_2095074_stats","day":5,"rate":4.5},"6":{"matchId":"match_2095080_stats","day":6,"rate":3.5}}},{"playerid":"player_38260","firstname":"Abdoulrazak","lastname":"Boukari","status":2,"teamid":"921","position":3,"quotation":1,"ultraPosition":32,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"match_2095054_stats","day":3,"rate":4.5},"4":{"matchId":"match_2095057_stats","day":4,"rate":5.5},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6}}},{"playerid":"player_214282","firstname":"Qazim","lastname":"Laci","status":2,"teamid":"1163","position":3,"quotation":23,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2095035_stats","day":2,"rate":4.5},"3":{"matchId":"match_2095045_stats","day":3,"rate":4},"4":{"matchId":"match_2095060_stats","day":4,"rate":5},"5":{"matchId":"match_2095065_stats","day":5,"rate":5},"6":{"matchId":"match_2095075_stats","day":6,"rate":4.5}}},{"playerid":"player_184962","firstname":"Akim","lastname":"Zedadka","status":2,"teamid":"1983","position":2,"quotation":19,"ultraPosition":21,"lastFiveRate":{"2":{"matchId":"match_2095037_stats","day":2,"rate":7},"3":{"matchId":"match_2095047_stats","day":3,"rate":6},"4":{"matchId":"match_2095058_stats","day":4,"rate":4.5},"5":{"matchId":"match_2095073_stats","day":5,"rate":5.5},"6":{"matchId":"match_2095078_stats","day":6,"rate":6}}},{"playerid":"player_181439","firstname":"Jérôme","lastname":"Prior","status":2,"teamid":"1996","position":1,"quotation":24,"ultraPosition":10,"lastFiveRate":{"2":{"matchId":"match_2095042_stats","day":2,"rate":5.5},"3":{"matchId":"match_2095054_stats","day":3,"rate":6},"4":{"matchId":"match_2095059_stats","day":4,"rate":5.5},"5":{"matchId":"match_2095074_stats","day":5,"rate":6},"6":{"matchId":"match_2095080_stats","day":6,"rate":4}}},{"playerid":"player_107254","firstname":"Julien","lastname":"Fabri","status":2,"teamid":"921","position":1,"quotation":17,"ultraPosition":10,"lastFiveRate":{"2":{"matchId":"match_2095036_stats","day":2,"rate":5.5},"3":{"matchId":"match_2095054_stats","day":3,"rate":6},"4":{"matchId":"match_2095057_stats","day":4,"rate":6.5},"5":{"matchId":"match_2095067_stats","day":5,"rate":5},"6":{"matchId":"match_2095077_stats","day":6,"rate":6}}},{"playerid":"player_60426","firstname":"Romain","lastname":"Grange","status":2,"teamid":"921","position":3,"quotation":14,"ultraPosition":32,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"match_2095067_stats","day":5,"rate":5.5},"6":{"matchId":"match_2095077_stats","day":6,"rate":5.5}}},{"playerid":"player_193409","firstname":"Yacine","lastname":"Bammou","status":2,"teamid":"1028","position":4,"quotation":18,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095035_stats","day":2,"rate":5.5},"3":{"matchId":"match_2095051_stats","day":3,"rate":6},"4":{"matchId":"match_2095056_stats","day":4,"rate":3},"5":{"matchId":"-","day":5},"6":{"matchId":"match_2095076_stats","day":6,"rate":4.5}}},{"playerid":"player_168116","firstname":"Bryan","lastname":"Pelé","status":2,"teamid":"428","position":3,"quotation":16,"ultraPosition":32,"lastFiveRate":{"2":{"matchId":"match_2095040_stats","day":2,"rate":5},"3":{"matchId":"match_2095049_stats","day":3,"rate":4.5},"4":{"matchId":"-","day":4},"5":{"matchId":"match_2095068_stats","day":5,"rate":5},"6":{"matchId":"match_2095079_stats","day":6,"rate":4.5}}},{"playerid":"player_149993","firstname":"Joris","lastname":"Correa","status":2,"teamid":"6783","position":4,"quotation":15,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095041_stats","day":2,"rate":4.5},"3":{"matchId":"match_2095048_stats","day":3,"rate":4.5},"4":{"matchId":"match_2095056_stats","day":4,"rate":4.5},"5":{"matchId":"match_2095067_stats","day":5,"rate":7},"6":{"matchId":"match_2095083_stats","day":6,"rate":6}}},{"playerid":"player_503184","firstname":"Janis","lastname":"Antiste","status":2,"teamid":"427","position":4,"quotation":5,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095038_stats","day":2,"rate":7},"3":{"matchId":"match_2095052_stats","day":3,"rate":4},"4":{"matchId":"match_2095058_stats","day":4,"rate":6},"5":{"matchId":"match_2095072_stats","day":5,"rate":4.5},"6":{"matchId":"match_2095084_stats","day":6,"rate":5}}},{"playerid":"player_457977","firstname":"Amir","lastname":"Nouri","status":2,"teamid":"921","position":3,"quotation":12,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2095036_stats","day":2,"rate":5},"3":{"matchId":"match_2095054_stats","day":3,"rate":5.5},"4":{"matchId":"match_2095057_stats","day":4,"rate":5.5},"5":{"matchId":"match_2095067_stats","day":5,"rate":4},"6":{"matchId":"match_2095077_stats","day":6,"rate":5}}},{"playerid":"player_210464","firstname":"Vakoun Issouf","lastname":"Bayo","status":2,"teamid":"427","position":4,"quotation":12,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095038_stats","day":2,"rate":7.5},"3":{"matchId":"match_2095052_stats","day":3,"rate":4},"4":{"matchId":"match_2095058_stats","day":4,"rate":4},"5":{"matchId":"match_2095072_stats","day":5,"rate":6.5},"6":{"matchId":"match_2095084_stats","day":6,"rate":5}}},{"playerid":"player_151908","firstname":null,"lastname":"Achille Anani","status":2,"teamid":"1272","position":4,"quotation":11,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095038_stats","day":2,"rate":6.5},"3":{"matchId":"match_2095048_stats","day":3,"rate":6.5},"4":{"matchId":"match_2095060_stats","day":4,"rate":6},"5":{"matchId":"match_2095068_stats","day":5,"rate":5},"6":{"matchId":"match_2095080_stats","day":6,"rate":6}}},{"playerid":"player_84767","firstname":"Rémi","lastname":"Mulumba","status":2,"teamid":"921","position":3,"quotation":14,"ultraPosition":31,"lastFiveRate":{"2":{"matchId":"match_2095036_stats","day":2,"rate":7},"3":{"matchId":"match_2095054_stats","day":3,"rate":6},"4":{"matchId":"match_2095057_stats","day":4,"rate":6.5},"5":{"matchId":"match_2095067_stats","day":5,"rate":5},"6":{"matchId":"match_2095077_stats","day":6,"rate":8}}},{"playerid":"player_511596","firstname":"Pape Ibnou","lastname":"Ba","status":2,"teamid":"1245","position":4,"quotation":10,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095041_stats","day":2,"rate":4.5},"3":{"matchId":"match_2095050_stats","day":3,"rate":6.5},"4":{"matchId":"match_2095061_stats","day":4,"rate":4.5},"5":{"matchId":"match_2095070_stats","day":5,"rate":6},"6":{"matchId":"match_2095077_stats","day":6,"rate":4}}},{"playerid":"player_460590","firstname":"Guy-Marcelin","lastname":"Kilama","status":2,"teamid":"1245","position":2,"quotation":14,"ultraPosition":21,"lastFiveRate":{"2":{"matchId":"match_2095041_stats","day":2,"rate":6},"3":{"matchId":"match_2095050_stats","day":3,"rate":6},"4":{"matchId":"match_2095061_stats","day":4,"rate":5.5},"5":{"matchId":"match_2095070_stats","day":5,"rate":4},"6":{"matchId":"match_2095077_stats","day":6,"rate":4}}},{"playerid":"player_245694","firstname":"Medhy","lastname":"Guezoui","status":2,"teamid":"6783","position":4,"quotation":9,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"match_2095041_stats","day":2,"rate":5},"3":{"matchId":"match_2095048_stats","day":3,"rate":6},"4":{"matchId":"match_2095056_stats","day":4,"rate":4.5},"5":{"matchId":"-","day":5},"6":{"matchId":"-","day":6}}},{"playerid":"player_511176","firstname":"Adon","lastname":"Gomis","status":2,"teamid":"3288","position":2,"quotation":10,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"match_2095037_stats","day":2,"rate":5.5},"3":{"matchId":"-","day":3},"4":{"matchId":"match_2095059_stats","day":4,"rate":7},"5":{"matchId":"match_2095071_stats","day":5,"rate":4},"6":{"matchId":"match_2095079_stats","day":6,"rate":5}}},{"playerid":"player_49050","firstname":"Loic","lastname":"Nestor","status":2,"teamid":"1272","position":2,"quotation":11,"ultraPosition":20,"lastFiveRate":{"2":{"matchId":"match_2095038_stats","day":2,"rate":5.5},"3":{"matchId":"-","day":3},"4":{"matchId":"match_2095060_stats","day":4,"rate":5.5},"5":{"matchId":"match_2095068_stats","day":5,"rate":5.5},"6":{"matchId":"match_2095080_stats","day":6,"rate":5.5}}},{"playerid":"player_424930","firstname":"Yanis","lastname":"Barka","status":2,"teamid":"148","position":4,"quotation":3,"ultraPosition":40,"lastFiveRate":{"2":{"matchId":"-","day":2},"3":{"matchId":"match_2095050_stats","day":3,"rate":4.5},"4":{"matchId":"match_2095062_stats","day":4,"rate":6},"5":{"matchId":"match_2095069_stats","day":5,"rate":4.5},"6":{"matchId":"match_2095082_stats","day":6,"rate":6}}}],"bonus":{"1":1,"2":1,"3":2,"4":3,"5":1,"6":1,"7":1},"nanardpaid":0,"money":0,"tacticalsubstitutes":[],"composition":343,"playersOnPitch":{"1":"player_107254","2":"player_184962","3":"player_86443","4":"player_94181","5":"player_84767","6":"player_457977","7":"player_214282","8":"player_437503","9":"player_151908","10":"player_511596","11":"player_503184","12":"player_460590","13":"player_488439","14":"player_168116","15":"player_60426","16":"player_149993","17":"player_210464","18":"player_181439"},"bonusSelected":{},"teams":{"138":{"name":"Auxerre","status":"away","against":"Guingamp"},"141":{"name":"Le Havre","status":"home","against":"Châteauroux"},"148":{"name":"Nancy","status":"home","against":"Dunkerque"},"154":{"name":"Troyes","status":"away","against":"Rodez"},"427":{"name":"Toulouse","status":"away","against":"Ajaccio"},"428":{"name":"Guingamp","status":"home","against":"Auxerre"},"693":{"name":"Sochaux","status":"away","against":"Valenciennes"},"921":{"name":"Châteauroux","status":"away","against":"Le Havre"},"1028":{"name":"Caen","status":"away","against":"Niort"},"1163":{"name":"Ajaccio","status":"home","against":"Toulouse"},"1245":{"name":"Niort","status":"home","against":"Caen"},"1272":{"name":"Grenoble","status":"away","against":"Amiens"},"1430":{"name":"Amiens","status":"home","against":"Grenoble"},"1983":{"name":"Clermont","status":"away","against":"Chambly"},"1996":{"name":"Valenciennes","status":"home","against":"Sochaux"},"2338":{"name":"Paris","status":"home","against":"Pau"},"3288":{"name":"Dunkerque","status":"away","against":"Nancy"},"3308":{"name":"Rodez","status":"home","against":"Troyes"},"5420":{"name":"Pau","status":"away","against":"Paris"},"6783":{"name":"Chambly","status":"home","against":"Clermont"}},"tds":{"update":"2020-10-02T08:02:25.542Z","player_170861":{},"player_225046":{},"player_433895":{},"player_110132":{"injured":1},"player_488367":{},"player_488395":{"injured":1},"player_111086":{},"player_164031":{},"player_165443":{},"player_167450":{},"player_228294":{"injured":1},"player_488370":{},"player_114534":{"injured":1},"player_129482":{},"player_105719":{},"player_202971":{},"player_38260":{},"player_242514":{},"player_477368":{},"player_453108":{},"player_60484":{},"player_487395":{},"player_210531":{},"player_462707":{},"player_120811":{"injured":1},"player_241700":{},"player_157822":{},"player_119426":{},"player_209170":{},"player_40826":{"injured":1},"player_106600":{"injured":1},"player_229222":{},"player_105408":{},"player_423954":{},"player_441584":{"injured":1},"player_220646":{},"player_228320":{"suspended":1},"player_165855":{"injured":1},"player_422474":{},"player_424930":{},"player_458335":{"injured":1},"player_471470":{},"player_111315":{},"player_454702":{"injured":1},"player_460590":{},"player_454668":{},"player_454670":{},"player_431424":{"suspended":1},"player_463746":{},"player_477370":{},"player_192706":{},"player_442707":{},"player_245637":{"injured":1},"player_454677":{},"player_431650":{"injured":1},"player_213576":{},"player_49057":{},"player_216702":{},"player_462567":{"injured":1},"player_473244":{},"player_198987":{},"player_44085":{},"player_107259":{"injured":1},"player_212333":{"injured":1},"player_52750":{"injured":1},"player_202985":{"injured":1},"player_434828":{},"player_482380":{},"player_448403":{},"player_244794":{"injured":1},"player_184514":{},"player_488437":{"injured":1},"player_155962":{},"player_248086":{"injured":1},"player_430993":{},"player_219287":{},"player_176569":{},"player_458316":{},"player_478862":{},"player_193425":{"injured":1},"player_444944":{},"player_73539":{},"player_204513":{"injured":1},"player_245726":{},"player_487534":{},"player_487533":{},"player_184203":{},"player_488067":{},"player_444772":{},"player_220359":{},"player_195095":{},"player_51929":{},"player_215362":{},"player_244591":{},"player_462623":{},"player_245026":{},"player_471141":{"injured":1},"player_45108":{},"player_132227":{"injured":1},"player_467098":{},"player_459414":{},"player_91019":{},"player_203342":{},"player_119691":{},"player_217319":{},"player_86811":{},"player_216438":{"injured":1},"player_226183":{},"player_176501":{},"player_457225":{},"player_208569":{},"player_40808":{},"player_476791":{},"player_166476":{},"player_102765":{},"player_82831":{},"player_49050":{},"player_461831":{},"player_242881":{},"player_461827":{},"player_152865":{},"player_229959":{},"player_464193":{},"player_469319":{},"player_465153":{},"player_232252":{"injured":1},"player_487952":{},"player_468490":{},"player_47104":{},"player_45058":{"injured":1},"player_210460":{},"player_247120":{},"player_50881":{},"player_442673":{"suspended":1},"player_247049":{},"player_184083":{},"player_214042":{"injured":1},"player_488581":{},"player_488068":{},"player_60810":{},"player_224299":{},"player_176737":{},"player_421128":{},"player_221626":{"injured":1},"player_49367":{"injured":1},"player_444465":{},"player_487448":{},"player_193080":{},"player_102836":{"injured":1},"player_102739":{},"player_113817":{},"player_191792":{},"player_214251":{},"player_246451":{},"player_86281":{},"player_28140":{"injured":1},"player_218357":{},"player_471469":{"injured":1},"player_103122":{},"player_43024":{},"player_227300":{"injured":1},"player_482995":{"injured":1},"player_13395":{},"player_220560":{},"player_106884":{"injured":1},"player_488203":{"injured":1},"player_122268":{},"player_454694":{"injured":1},"player_92610":{},"player_250333":{},"player_454671":{},"player_94181":{},"player_50148":{},"player_177449":{},"player_120773":{"injured":1},"player_89084":{},"player_230801":{},"player_83542":{},"player_488580":{},"player_488351":{},"player_476987":{},"player_104464":{"injured":1},"player_422897":{},"player_465347":{"injured":1},"player_110982":{"injured":1},"player_167454":{},"player_121596":{},"player_55254":{"injured":1},"player_224077":{},"player_143670":{},"player_220001":{},"player_230718":{},"player_45103":{},"player_442650":{},"player_442649":{},"player_472187":{},"player_440114":{},"player_240084":{},"player_171419":{},"player_488440":{},"player_140055":{},"player_184962":{},"player_488285":{},"player_473389":{},"player_225510":{},"player_146668":{},"player_429453":{},"player_485009":{},"player_488582":{},"player_458311":{},"player_160985":{"injured":1},"player_154093":{},"player_220022":{},"player_454684":{},"player_490330":{},"player_209874":{},"player_111078":{},"player_205569":{},"player_151868":{},"player_487510":{},"player_482381":{},"player_192699":{},"player_216530":{"injured":1},"player_101368":{},"player_429522":{},"player_484421":{},"player_458455":{},"player_438015":{},"player_171646":{"injured":1},"player_439124":{"suspended":1},"player_214282":{},"player_442261":{},"player_220943":{},"player_420962":{"injured":1},"player_168434":{},"player_105706":{},"player_161275":{},"player_110307":{},"player_454687":{},"player_112467":{"injured":1},"player_42714":{},"player_214946":{},"player_58616":{"injured":1},"player_246402":{},"player_488441":{},"player_119577":{},"player_193285":{"suspended":1},"player_213579":{},"player_244490":{"injured":1},"player_208554":{},"player_487683":{},"player_95527":{"suspended":1},"player_129481":{},"player_180299":{},"player_213196":{"injured":1},"player_44499":{},"player_454689":{},"player_492034":{},"player_223393":{},"player_226672":{},"player_487509":{},"player_220374":{"injured":1},"player_185482":{"injured":1},"player_243689":{},"player_489492":{},"player_229480":{},"player_232242":{},"player_438420":{},"player_226945":{},"player_110350":{},"player_465345":{},"player_488362":{},"player_488363":{},"player_176439":{},"player_115149":{},"player_12269":{},"player_472710":{},"player_468427":{},"player_37743":{},"player_245914":{},"player_199519":{},"player_110303":{},"player_246453":{},"player_177864":{"injured":1},"player_213320":{},"player_84767":{},"player_226114":{},"player_490105":{},"player_51525":{},"player_422453":{},"player_462609":{},"player_78319":{"injured":1},"player_441582":{},"player_107258":{},"player_202963":{},"player_204728":{},"player_429441":{},"player_241337":{},"player_431422":{},"player_440852":{"injured":1},"player_443276":{},"player_462573":{},"player_83279":{},"player_51524":{},"player_219145":{"injured":1},"player_244753":{},"player_213200":{"injured":1},"player_245915":{},"player_193276":{},"player_221455":{"injured":1},"player_245750":{"injured":1},"player_119582":{},"player_177445":{},"player_62226":{},"player_228319":{},"player_228254":{"injured":1},"player_481665":{},"player_471213":{},"player_488423":{},"player_227763":{},"player_476790":{},"player_458320":{},"player_93174":{},"player_490109":{},"player_110351":{"injured":1},"player_168567":{},"player_483164":{},"player_485338":{},"player_168104":{},"player_73678":{},"player_444394":{},"player_454688":{},"player_242768":{"injured":1},"player_488547":{},"player_50996":{},"player_202068":{},"player_488397":{},"player_107925":{},"player_156692":{"injured":1},"player_93591":{},"player_67272":{},"player_432462":{},"player_439364":{},"player_151314":{},"player_152487":{"injured":1},"player_457230":{},"player_474131":{},"player_51394":{},"player_244949":{},"player_37939":{},"player_84462":{},"player_112962":{},"player_442646":{},"player_487508":{},"player_488548":{},"player_165572":{},"player_173242":{},"player_172870":{},"player_45110":{},"player_493211":{},"player_202961":{},"player_85597":{},"player_168116":{},"player_88036":{},"player_462425":{},"player_454669":{},"player_49322":{},"player_228291":{},"player_42383":{},"player_73667":{},"player_476511":{"injured":1},"player_458310":{},"player_173235":{},"player_489486":{},"player_68157":{},"player_52777":{},"player_492731":{"injured":1},"player_447547":{},"player_467095":{},"player_219289":{},"player_444397":{"injured":1},"player_73665":{},"player_92353":{},"player_51634":{"injured":1},"player_231373":{},"player_213400":{},"player_116596":{"injured":1},"player_438309":{},"player_235708":{"injured":1},"player_205552":{},"player_38007":{},"player_488439":{},"player_79228":{},"player_228321":{},"player_201644":{},"player_242111":{},"player_209171":{},"player_102744":{},"player_198381":{},"player_220924":{},"player_488263":{},"player_440300":{},"player_119738":{"injured":1},"player_433857":{},"player_244135":{},"player_487506":{},"player_222388":{"injured":1},"player_157728":{"suspended":1},"player_487109":{},"player_116593":{},"player_103199":{},"player_178814":{},"player_235862":{},"player_468496":{},"player_488284":{},"player_198189":{},"player_222853":{},"player_67346":{},"player_487507":{},"player_111001":{},"player_164500":{},"player_429188":{},"player_168212":{},"player_221542":{"injured":1},"player_245137":{},"player_214244":{},"player_149918":{},"player_92170":{"injured":1},"player_44138":{},"player_107656":{},"player_437499":{},"player_88035":{},"player_243155":{},"player_57734":{},"player_235069":{},"player_166468":{"injured":1},"player_42720":{},"player_245485":{},"player_441575":{"injured":1},"player_227326":{},"player_18168":{},"player_42771":{},"player_149993":{},"player_225190":{},"player_218524":{},"player_50301":{},"player_436658":{},"player_487110":{},"player_467094":{},"player_422089":{},"player_156274":{},"player_245694":{"injured":1},"player_484420":{},"player_86443":{},"player_149588":{"suspended":1},"player_219969":{"suspended":1},"player_86875":{},"player_55265":{},"player_457242":{},"player_37777":{},"player_247403":{},"player_60189":{},"player_489605":{},"player_60426":{},"player_209172":{},"player_427213":{},"player_224297":{},"player_487664":{"injured":1},"player_46141":{"injured":1},"player_177442":{},"player_60658":{},"player_43553":{},"player_176503":{},"player_220922":{},"player_115326":{},"player_19500":{"injured":1},"player_218666":{},"player_198067":{},"player_469268":{},"player_502607":{},"player_215669":{},"player_228292":{},"player_90436":{},"player_177833":{},"player_431649":{},"player_116592":{},"player_445970":{},"player_493212":{},"player_471850":{},"player_73500":{},"player_55134":{},"player_232175":{},"player_181439":{},"player_235163":{},"player_482379":{},"player_477699":{},"player_44280":{"suspended":1},"player_66589":{},"player_423064":{"injured":1},"player_497241":{},"player_177222":{},"player_77831":{},"player_173182":{},"player_498355":{"injured":1},"player_75987":{},"player_78541":{},"player_229605":{},"player_151912":{},"player_85416":{},"player_107254":{},"player_423151":{"injured":1},"player_232182":{"injured":1},"player_447032":{"injured":1},"player_167929":{"injured":1},"player_442748":{"injured":1},"player_511186":{},"player_511178":{},"player_450381":{},"player_193537":{},"player_193823":{},"player_220936":{"injured":1},"player_511605":{},"player_68166":{},"player_161034":{"injured":1},"player_225183":{},"player_449689":{},"player_141017":{},"player_461384":{},"player_489887":{},"player_242891":{},"player_468489":{},"player_469323":{},"player_485100":{},"player_48897":{},"player_482454":{},"player_210464":{},"player_456046":{},"player_474110":{},"player_491720":{},"player_511297":{},"player_504701":{},"player_103116":{},"player_501678":{},"player_437950":{},"player_218116":{"injured":1},"player_162275":{"injured":1},"player_96616":{"injured":1},"player_141109":{},"player_220110":{"injured":1},"player_422249":{},"player_202459":{"injured":1},"player_511603":{},"player_501675":{},"player_222866":{},"player_457982":{},"player_511652":{},"player_511975":{},"player_424149":{},"player_92559":{},"player_98798":{},"player_473703":{"injured":1},"player_430855":{},"player_179776":{"injured":1},"player_192021":{"suspended":1},"player_485966":{"injured":1},"player_213335":{},"player_82727":{"injured":1},"player_235709":{},"player_493900":{},"player_455732":{},"player_441434":{"injured":1},"player_216137":{},"player_489497":{},"player_144056":{"injured":1},"player_90126":{"injured":1},"player_458269":{"suspended":1},"player_512126":{},"player_230448":{},"player_512746":{},"player_167455":{},"player_193409":{},"player_216288":{},"player_442750":{"injured":1},"player_473329":{},"player_220962":{},"player_206761":{},"player_231876":{"injured":1},"player_501680":{"suspended":1},"player_154481":{},"player_79237":{},"player_473550":{},"player_489888":{},"player_219628":{"suspended":1},"player_199663":{"injured":1},"player_512123":{"injured":1},"player_220941":{"injured":1},"player_149410":{"injured":1}}}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json new file mode 100644 index 0000000..2944702 --- /dev/null +++ b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json @@ -0,0 +1,53 @@ +{ + "composition": "343", + "playersOnPitch": { + "1": "mpg_championship_player_220359", + "2": "mpg_championship_player_209171", + "3": "mpg_championship_player_245485", + "4": "mpg_championship_player_235708", + "5": "mpg_championship_player_167454", + "6": "mpg_championship_player_92353", + "7": "mpg_championship_player_204405", + "8": "mpg_championship_player_177449", + "9": "mpg_championship_player_228313", + "10": "mpg_championship_player_511596", + "11": "mpg_championship_player_423064", + "12": "mpg_championship_player_512711", + "13": "mpg_championship_player_509285", + "14": "mpg_championship_player_454964", + "15": "mpg_championship_player_437503", + "16": "mpg_championship_player_173242", + "17": "mpg_championship_player_149035", + "18": "mpg_championship_player_102724" + }, + "tacticalSubs": [ + { + "rating": 4, + "starterId": "mpg_championship_player_511596", + "subId": "mpg_championship_player_149035" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_512711", + "starterId": "mpg_championship_player_209171" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_509285", + "starterId": "mpg_championship_player_245485" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_437503", + "starterId": "mpg_championship_player_167454" + }, + { + "rating": 5.5, + "subId": "mpg_championship_player_454964", + "starterId": "mpg_championship_player_235708" + } + ], + "selectedBonus": { + "name": "boostAllPlayers" + } +} diff --git a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.empty.json b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.empty.json new file mode 100644 index 0000000..59d927a --- /dev/null +++ b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.empty.json @@ -0,0 +1,58 @@ +{ + "divisionMatch": { + "id": "mpg_division_match_MLEFEX6G_3_1_2_2_3_2", + "type": "mpg_division_match", + "divisionId": "mpg_division_MLEFEX6G_3_1", + "home": { + "teamId": "mpg_team_MLEFEX6G_3_1_3" + }, + "away": { + "teamId": "mpg_team_MLEFEX6G_3_1_2" + } + }, + "matchTeamFormation": { + "id": "mpg_match_team_formation_MLEFEX6G_3_1_2_2_2", + "type": "mpg_match_team_formation", + "composition": "343", + "playersOnPitch": { + "1": null, + "2": null, + "3": null, + "4": null, + "5": null, + "6": null, + "7": null, + "8": null, + "9": null, + "10": null, + "11": null, + "12": null, + "13": null, + "14": null, + "15": null, + "16": null, + "17": null, + "18": null + }, + "tacticalSubs": [ + ] + }, + "nextGameWeek": { + "gameWeekNumber": 3, + "startDate": "2021-08-07T13:00:00Z", + "endDate": "2021-08-11T17:00:00Z", + "startIn": 231667, + "matchesIds": [ + "mpg_championship_match_2216751", + "mpg_championship_match_2216748", + "mpg_championship_match_2216749", + "mpg_championship_match_2216752", + "mpg_championship_match_2216753", + "mpg_championship_match_2216754", + "mpg_championship_match_2216755", + "mpg_championship_match_2216756", + "mpg_championship_match_2216757", + "mpg_championship_match_2216750" + ] + } +} diff --git a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json deleted file mode 100644 index 2a750d1..0000000 --- a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "divisionMatch": { - "id": "mpg_division_match_MLEFEX6G_3_1_2_2_3_2", - "type": "mpg_division_match", - "divisionId": "mpg_division_MLEFEX6G_3_1", - "home": { - "teamId": "mpg_team_MLEFEX6G_3_1_3" - }, - "away": { - "teamId": "mpg_team_MLEFEX6G_3_1_2" - } - }, - "matchTeamFormation": { - "id": "mpg_match_team_formation_MLEFEX6G_3_1_2_2_2", - "type": "mpg_match_team_formation", - "composition": "343", - "playersOnPitch": { - "1": "mpg_championship_player_220359", - "2": "mpg_championship_player_209171", - "3": "mpg_championship_player_245485", - "4": "mpg_championship_player_235708", - "5": "mpg_championship_player_167454", - "6": "mpg_championship_player_92353", - "7": "mpg_championship_player_204405", - "8": "mpg_championship_player_177449", - "9": "mpg_championship_player_228313", - "10": "mpg_championship_player_511596", - "11": "mpg_championship_player_423064", - "12": "mpg_championship_player_512711", - "13": "mpg_championship_player_509285", - "14": "mpg_championship_player_454964", - "15": "mpg_championship_player_437503", - "16": "mpg_championship_player_173242", - "17": "mpg_championship_player_149035", - "18": "mpg_championship_player_102724" - }, - "tacticalSubs": [ - { - "rating": 4, - "starterId": "mpg_championship_player_511596", - "subId": "mpg_championship_player_149035" - }, - { - "rating": 5.5, - "subId": "mpg_championship_player_512711", - "starterId": "mpg_championship_player_209171" - }, - { - "rating": 5.5, - "subId": "mpg_championship_player_509285", - "starterId": "mpg_championship_player_245485" - }, - { - "rating": 5.5, - "subId": "mpg_championship_player_437503", - "starterId": "mpg_championship_player_167454" - }, - { - "rating": 5.5, - "subId": "mpg_championship_player_454964", - "starterId": "mpg_championship_player_235708" - } - ], - "selectedBonus": { - "name": "boostOnePlayer", - "playerId": "mpg_championship_player_92353" - }, - "captain": "mpg_championship_player_167454" - }, - "nextGameWeek": { - "gameWeekNumber": 3, - "startDate": "2021-08-07T13:00:00Z", - "endDate": "2021-08-11T17:00:00Z", - "startIn": 252464, - "matchesIds": [ - "mpg_championship_match_2216751", - "mpg_championship_match_2216748", - "mpg_championship_match_2216749", - "mpg_championship_match_2216752", - "mpg_championship_match_2216753", - "mpg_championship_match_2216754", - "mpg_championship_match_2216755", - "mpg_championship_match_2216756", - "mpg_championship_match_2216757", - "mpg_championship_match_2216750" - ] - } -} diff --git a/src/test/resources/__files/mpg.coach.MLMHBPCB.20201021.json b/src/test/resources/__files/mpg.coach.MLMHBPCB.20201021.json deleted file mode 100644 index af0c225..0000000 --- a/src/test/resources/__files/mpg.coach.MLMHBPCB.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"realday":6,"dateMatch":1603479600000,"timetogame":162620790,"champid":2,"matchId":"mpg_match_MLMHBPCB_1_5_2","stadium":"AKYO STADIUM","teamHome":{"id":"mpg_team_MLMHBPCB$$mpg_user_1570437","userId":"mpg_user_1570437","name":"GWADA BOYS","abbr":"GDA","coach":"Tony","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_0_1561646533972","jerseyAway":"jersey_0_1561646533972","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1561646533972.png"},"teamAway":{"id":"mpg_team_MLMHBPCB$$mpg_user_955966","userId":"mpg_user_955966","name":"Axel Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyAway":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png"},"nbPlayers":10,"players":[{"playerid":"player_95463","firstname":"Danny","lastname":"Ward","status":2,"teamid":"13","position":1,"quotation":7,"ultraPosition":10,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"-","day":5}}},{"playerid":"player_82403","firstname":"Wilfried","lastname":"Zaha","status":2,"teamid":"31","position":4,"quotation":17,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"match_2128287_stats","day":1,"rate":6},"2":{"matchId":"match_2128302_stats","day":2,"rate":8},"3":{"matchId":"match_2128308_stats","day":3,"rate":5},"4":{"matchId":"match_2128318_stats","day":4,"rate":3.5},"5":{"matchId":"match_2128327_stats","day":5,"rate":5}}},{"playerid":"player_17761","firstname":"James","lastname":"Tarkowski","status":2,"teamid":"90","position":2,"quotation":17,"ultraPosition":20,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"match_2128323_stats","day":4,"rate":4.5},"5":{"matchId":"match_2128335_stats","day":5,"rate":6}}},{"playerid":"player_17745","firstname":"Kasper","lastname":"Schmeichel","status":2,"teamid":"13","position":1,"quotation":24,"ultraPosition":10,"lastFiveRate":{"1":{"matchId":"match_2128292_stats","day":1,"rate":6},"2":{"matchId":"match_2128301_stats","day":2,"rate":5.5},"3":{"matchId":"match_2128311_stats","day":3,"rate":6},"4":{"matchId":"match_2128321_stats","day":4,"rate":4},"5":{"matchId":"match_2128330_stats","day":5,"rate":5.5}}},{"playerid":"player_114283","firstname":"Jack","lastname":"Grealish","status":2,"teamid":"7","position":3,"quotation":37,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"match_2128297_stats","day":2,"rate":6},"3":{"matchId":"match_2128309_stats","day":3,"rate":7},"4":{"matchId":"match_2128317_stats","day":4,"rate":9},"5":{"matchId":"match_2128330_stats","day":5,"rate":7}}},{"playerid":"player_101668","firstname":"Jamie","lastname":"Vardy","status":2,"teamid":"13","position":4,"quotation":42,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"match_2128292_stats","day":1,"rate":7},"2":{"matchId":"match_2128301_stats","day":2,"rate":5},"3":{"matchId":"match_2128311_stats","day":3,"rate":8.5},"4":{"matchId":"match_2128321_stats","day":4,"rate":3},"5":{"matchId":"-","day":5}}},{"playerid":"player_91651","firstname":"Mateo","lastname":"Kovacic","status":2,"teamid":"8","position":3,"quotation":11,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"match_2128298_stats","day":2,"rate":5},"3":{"matchId":"match_2128314_stats","day":3,"rate":4.5},"4":{"matchId":"match_2128318_stats","day":4,"rate":4.5},"5":{"matchId":"-","day":5}}},{"playerid":"player_56979","firstname":"Jordan","lastname":"Henderson","status":2,"teamid":"14","position":3,"quotation":12,"ultraPosition":31,"lastFiveRate":{"1":{"matchId":"match_2128289_stats","day":1,"rate":5},"2":{"matchId":"match_2128298_stats","day":2,"rate":4},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4},"5":{"matchId":"match_2128328_stats","day":5,"rate":5.5}}},{"playerid":"player_220566","firstname":null,"lastname":"Rodrigo","status":2,"teamid":"43","position":3,"quotation":22,"ultraPosition":31,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"match_2128305_stats","day":2,"rate":5},"3":{"matchId":"match_2128311_stats","day":3,"rate":4.5},"4":{"matchId":"match_2128320_stats","day":4,"rate":6},"5":{"matchId":"match_2128331_stats","day":5,"rate":6.5}}},{"playerid":"player_177815","firstname":"Dominic","lastname":"Calvert-Lewin","status":2,"teamid":"11","position":4,"quotation":35,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"match_2128291_stats","day":1,"rate":7},"2":{"matchId":"match_2128299_stats","day":2,"rate":8},"3":{"matchId":"match_2128308_stats","day":3,"rate":6},"4":{"matchId":"match_2128319_stats","day":4,"rate":7},"5":{"matchId":"match_2128328_stats","day":5,"rate":6.5}}},{"playerid":"player_173879","firstname":"Tammy","lastname":"Abraham","status":2,"teamid":"8","position":4,"quotation":29,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"match_2128298_stats","day":2,"rate":5},"3":{"matchId":"match_2128314_stats","day":3,"rate":6},"4":{"matchId":"match_2128318_stats","day":4,"rate":6.5},"5":{"matchId":"match_2128326_stats","day":5,"rate":4.5}}},{"playerid":"player_172850","firstname":"Ben","lastname":"Chilwell","status":2,"teamid":"8","position":2,"quotation":24,"ultraPosition":21,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"match_2128318_stats","day":4,"rate":7.5},"5":{"matchId":"match_2128326_stats","day":5,"rate":4}}},{"playerid":"player_110735","firstname":"Adam","lastname":"Webster","status":2,"teamid":"36","position":2,"quotation":16,"ultraPosition":20,"lastFiveRate":{"1":{"matchId":"match_2128294_stats","day":1,"rate":4},"2":{"matchId":"match_2128303_stats","day":2,"rate":5.5},"3":{"matchId":"match_2128306_stats","day":3,"rate":4.5},"4":{"matchId":"match_2128319_stats","day":4,"rate":2.5},"5":{"matchId":"match_2128327_stats","day":5,"rate":5.5}}},{"playerid":"player_220627","firstname":"James","lastname":"Justin","status":2,"teamid":"13","position":2,"quotation":11,"ultraPosition":21,"lastFiveRate":{"1":{"matchId":"match_2128292_stats","day":1,"rate":6.5},"2":{"matchId":"match_2128301_stats","day":2,"rate":5},"3":{"matchId":"match_2128311_stats","day":3,"rate":6},"4":{"matchId":"match_2128321_stats","day":4,"rate":3},"5":{"matchId":"match_2128330_stats","day":5,"rate":4.5}}},{"playerid":"player_107613","firstname":"Romain","lastname":"Saïss","status":2,"teamid":"39","position":2,"quotation":14,"ultraPosition":20,"lastFiveRate":{"1":{"matchId":"match_2128295_stats","day":1,"rate":7.5},"2":{"matchId":"match_2128305_stats","day":2,"rate":3},"3":{"matchId":"match_2128315_stats","day":3,"rate":3},"4":{"matchId":"match_2128325_stats","day":4,"rate":5.5},"5":{"matchId":"match_2128329_stats","day":5,"rate":5.5}}},{"playerid":"player_83314","firstname":"Jeff","lastname":"Hendrick","status":2,"teamid":"4","position":3,"quotation":12,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"match_2128293_stats","day":1,"rate":8},"2":{"matchId":"match_2128303_stats","day":2,"rate":3.5},"3":{"matchId":"match_2128313_stats","day":3,"rate":5.5},"4":{"matchId":"match_2128323_stats","day":4,"rate":5},"5":{"matchId":"match_2128332_stats","day":5,"rate":4.5}}},{"playerid":"player_109345","firstname":"Solly","lastname":"March","status":2,"teamid":"36","position":3,"quotation":10,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"match_2128294_stats","day":1,"rate":4},"2":{"matchId":"match_2128303_stats","day":2,"rate":5.5},"3":{"matchId":"match_2128306_stats","day":3,"rate":7},"4":{"matchId":"match_2128319_stats","day":4,"rate":3},"5":{"matchId":"match_2128327_stats","day":5,"rate":5}}}],"bonus":{"1":1,"2":1,"3":2,"4":3,"5":1,"6":1,"7":1},"nanardpaid":0,"money":0,"tacticalsubstitutes":[{"subs":"player_110735","start":"player_172850","rating":5},{"subs":"player_56979","start":"player_220566","rating":5},{"subs":"player_91651","start":"player_109345","rating":5}],"composition":343,"playersOnPitch":{"1":"player_17745","2":"player_220627","3":"player_107613","4":"player_172850","5":"player_114283","6":"player_83314","7":"player_109345","8":"player_220566","9":"player_177815","10":"player_82403","11":"player_173879","12":"player_110735","13":"player_17761","14":"player_56979","15":"player_91651","16":null,"17":null,"18":"player_95463"},"bonusSelected":{},"teams":{"1":{"name":"Man. United","status":"home","against":"Chelsea"},"2":{"name":"Leeds","status":"away","against":"Aston Villa"},"3":{"name":"Arsenal","status":"home","against":"Leicester"},"4":{"name":"Newcastle","status":"away","against":"Wolverhampton"},"6":{"name":"Tottenham","status":"away","against":"Burnley"},"7":{"name":"Aston Villa","status":"home","against":"Leeds"},"8":{"name":"Chelsea","status":"away","against":"Man. United"},"11":{"name":"Everton","status":"away","against":"Southampton"},"13":{"name":"Leicester","status":"away","against":"Arsenal"},"14":{"name":"Liverpool","status":"home","against":"Sheffield"},"20":{"name":"Southampton","status":"home","against":"Everton"},"21":{"name":"West Ham","status":"home","against":"Man. City"},"31":{"name":"Crystal Palace","status":"away","against":"Fulham"},"35":{"name":"West Bromwich","status":"away","against":"Brighton"},"36":{"name":"Brighton","status":"home","against":"West Bromwich"},"39":{"name":"Wolverhampton","status":"home","against":"Newcastle"},"43":{"name":"Man. City","status":"away","against":"West Ham"},"49":{"name":"Sheffield","status":"away","against":"Liverpool"},"54":{"name":"Fulham","status":"home","against":"Crystal Palace"},"90":{"name":"Burnley","status":"home","against":"Tottenham"}},"tds":{"update":"2020-10-15T16:30:30.550Z","player_98745":{},"player_156074":{},"player_80254":{"injured":1},"player_59966":{},"player_43252":{},"player_111317":{},"player_155408":{},"player_41320":{"injured":1},"player_40387":{},"player_15149":{"pending":1},"player_56917":{},"player_235530":{},"player_56872":{},"player_90517":{},"player_39847":{"injured":1},"player_227127":{},"player_167473":{"injured":1},"player_209046":{},"player_116594":{},"player_126187":{},"player_102380":{},"player_47431":{},"player_40784":{},"player_49413":{"pending":1},"player_12745":{},"player_41823":{},"player_86881":{},"player_146941":{},"player_182156":{},"player_102826":{},"player_197365":{},"player_58771":{"pending":1},"player_77359":{},"player_56983":{"injured":1},"player_151119":{"pending":1},"player_18665":{"injured":1},"player_84384":{},"player_192303":{"pending":1},"player_59614":{"injured":1},"player_80226":{},"player_108823":{},"player_115556":{},"player_93264":{"pending":1},"player_234908":{},"player_85971":{},"player_54756":{},"player_89085":{},"player_216058":{},"player_18073":{},"player_87835":{},"player_222531":{},"player_153256":{},"player_111457":{},"player_233963":{},"player_37605":{},"player_192895":{},"player_209289":{},"player_84450":{},"player_123354":{"pending":1},"player_54764":{},"player_74375":{},"player_220307":{},"player_61603":{},"player_225796":{},"player_167767":{},"player_86417":{"pending":1},"player_120250":{},"player_42774":{},"player_116535":{"injured":1},"player_38454":{},"player_175592":{},"player_37265":{"pending":1},"player_50232":{},"player_40142":{},"player_128348":{"pending":1},"player_184349":{},"player_50175":{},"player_232185":{},"player_103123":{},"player_101537":{},"player_172850":{"pending":1},"player_97299":{},"player_104953":{},"player_104547":{"injured":1},"player_180974":{},"player_170137":{"pending":1},"player_81048":{"suspended":1},"player_90440":{},"player_89470":{},"player_47247":{"pending":1},"player_194401":{},"player_48717":{},"player_169359":{},"player_93284":{"injured":1},"player_60586":{"pending":1},"player_184341":{},"player_49579":{},"player_160987":{"injured":1},"player_203341":{"injured":1},"player_15033":{},"player_61604":{},"player_205651":{"injured":1},"player_148225":{"suspended":1},"player_106760":{},"player_179018":{},"player_111773":{},"player_92159":{"injured":1},"player_109638":{},"player_40146":{},"player_220598":{},"player_431131":{"injured":1},"player_158534":{},"player_231372":{},"player_41725":{},"player_57531":{},"player_200089":{},"player_198849":{},"player_148508":{},"player_52484":{},"player_116216":{},"player_223911":{"injured":1},"player_54469":{"pending":1},"player_44699":{},"player_433154":{},"player_91651":{},"player_19188":{},"player_58786":{},"player_57513":{},"player_57328":{},"player_59859":{"pending":1},"player_74208":{},"player_214590":{},"player_109322":{},"player_216051":{},"player_232980":{},"player_83428":{"injured":1},"player_27436":{"pending":1},"player_171975":{"pending":1},"player_135720":{},"player_83283":{},"player_173904":{},"player_200826":{"pending":1},"player_38439":{"pending":1},"player_41338":{},"player_90585":{},"player_107613":{},"player_165210":{"pending":1},"player_209362":{},"player_109533":{},"player_55037":{},"player_50471":{},"player_59125":{"pending":1},"player_152760":{},"player_209244":{},"player_200617":{},"player_223175":{"injured":1},"player_119471":{},"player_87396":{"injured":1},"player_37614":{},"player_18867":{},"player_173514":{"injured":1},"player_105717":{"pending":1},"player_61933":{},"player_109345":{},"player_135363":{},"player_82660":{},"player_44346":{},"player_172780":{"pending":1},"player_110979":{"pending":1},"player_176297":{},"player_76359":{"injured":1},"player_201084":{},"player_20480":{},"player_28082":{},"player_86934":{},"player_81012":{"pending":1},"player_428610":{},"player_153682":{},"player_90105":{},"player_66242":{"pending":1},"player_40145":{"injured":1},"player_66975":{},"player_68312":{},"player_60914":{"pending":1},"player_61366":{"pending":1},"player_153127":{},"player_194799":{"pending":1},"player_58822":{},"player_58376":{},"player_108413":{},"player_37096":{},"player_194634":{},"player_37915":{},"player_200641":{"pending":1},"player_89274":{},"player_59949":{"pending":1},"player_118748":{},"player_444884":{},"player_51940":{},"player_220688":{},"player_198826":{},"player_193111":{},"player_78607":{},"player_169432":{},"player_80607":{},"player_41945":{"injured":1},"player_151589":{},"player_247632":{},"player_74471":{},"player_152551":{},"player_60689":{},"player_88894":{},"player_40836":{},"player_66838":{"injured":1},"player_164511":{"pending":1},"player_169187":{},"player_122798":{},"player_220566":{},"player_206325":{"injured":1},"player_180804":{"injured":1},"player_62398":{},"player_40868":{},"player_61566":{},"player_55459":{},"player_41727":{},"player_114283":{},"player_221239":{},"player_17997":{},"player_100649":{},"player_97032":{},"player_184667":{},"player_95658":{},"player_180135":{},"player_38290":{},"player_62974":{},"player_43250":{},"player_54102":{},"player_182539":{},"player_203368":{},"player_110735":{},"player_15237":{},"player_85955":{},"player_60252":{},"player_56979":{},"player_121160":{},"player_20664":{},"player_209041":{},"player_195851":{},"player_18892":{},"player_108416":{"pending":1},"player_39194":{},"player_108156":{"injured":1},"player_21205":{"injured":1},"player_79852":{},"player_83299":{},"player_233425":{"pending":1},"player_78007":{},"player_81183":{},"player_176413":{},"player_82403":{},"player_55494":{},"player_37642":{},"player_171287":{},"player_200720":{},"player_165809":{},"player_58845":{"pending":1},"player_101148":{"pending":1},"player_45268":{},"player_39215":{},"player_85624":{},"player_159533":{},"player_216054":{},"player_223340":{},"player_168991":{},"player_154566":{},"player_60551":{},"player_173879":{},"player_116643":{},"player_37572":{"injured":1},"player_58893":{},"player_178304":{"injured":1},"player_128198":{},"player_91047":{"pending":1},"player_60232":{},"player_52940":{"injured":1},"player_219924":{},"player_41270":{},"player_69140":{"injured":1},"player_193488":{},"player_39487":{},"player_103914":{},"player_19419":{"pending":1},"player_20467":{},"player_172632":{"pending":1},"player_54484":{},"player_154506":{},"player_41674":{},"player_74230":{"pending":1},"player_141020":{},"player_18987":{},"player_195735":{},"player_149484":{},"player_40845":{},"player_75115":{},"player_194794":{},"player_101188":{"pending":1},"player_39155":{},"player_213482":{},"player_157668":{},"player_56377":{},"player_126184":{},"player_155651":{},"player_39476":{},"player_173954":{},"player_102747":{},"player_55422":{},"player_41733":{},"player_195473":{},"player_76542":{"injured":1},"player_166640":{},"player_181008":{},"player_19194":{},"player_204480":{},"player_20658":{},"player_217593":{},"player_222017":{},"player_222018":{},"player_40669":{},"player_40694":{},"player_42824":{},"player_459373":{},"player_11948":{},"player_15157":{},"player_174254":{},"player_206915":{},"player_441271":{},"player_444765":{},"player_60706":{},"player_81880":{"injured":1},"player_92217":{},"player_101184":{"injured":1},"player_444145":{"injured":1},"player_122806":{},"player_103912":{},"player_171129":{},"player_17349":{},"player_83312":{"reported":1},"player_83314":{},"player_41328":{},"player_153133":{},"player_201666":{},"player_106618":{"pending":1},"player_74854":{},"player_20452":{},"player_121599":{},"player_54861":{},"player_109528":{},"player_82263":{},"player_153723":{},"player_20145":{},"player_78830":{},"player_213345":{"injured":1},"player_54694":{"pending":1},"player_78916":{},"player_20529":{},"player_154131":{},"player_44683":{"pending":1},"player_243568":{"injured":1},"player_196118":{},"player_57127":{},"player_194126":{},"player_225321":{},"player_155569":{"pending":1},"player_184704":{},"player_38490":{},"player_212319":{},"player_242058":{},"player_171771":{},"player_106611":{},"player_27789":{},"player_195546":{"suspended":1},"player_475168":{},"player_199798":{},"player_235382":{},"player_103955":{"pending":1},"player_101178":{},"player_68983":{"injured":1},"player_197469":{},"player_113564":{"injured":1},"player_6744":{},"player_116543":{},"player_63426":{},"player_215439":{},"player_114128":{"injured":1},"player_113534":{},"player_154043":{},"player_183654":{},"player_199601":{},"player_205533":{},"player_209037":{},"player_232223":{},"player_242166":{},"player_80201":{},"player_92371":{"injured":1},"player_98980":{},"player_103025":{},"player_121145":{},"player_145232":{},"player_17601":{},"player_220394":{},"player_245719":{},"player_33148":{"pending":1},"player_432656":{},"player_441027":{},"player_449926":{"pending":1},"player_57410":{"injured":1},"player_58621":{},"player_216208":{},"player_217487":{},"player_223349":{},"player_230046":{},"player_37339":{},"player_40564":{},"player_433979":{},"player_47390":{},"player_83091":{},"player_8432":{},"player_85242":{},"player_98770":{},"player_146610":{"injured":1},"player_147612":{},"player_16229":{},"player_167878":{},"player_172649":{},"player_18440":{},"player_207189":{},"player_213280":{},"player_222786":{},"player_40386":{},"player_49083":{},"player_49384":{},"player_7645":{},"player_79934":{},"player_82691":{},"player_83427":{},"player_87121":{},"player_87447":{},"player_50472":{"pending":1},"player_214466":{},"player_94924":{"injured":1},"player_115382":{},"player_127571":{},"player_131897":{},"player_209045":{},"player_215061":{},"player_215066":{},"player_231821":{},"player_232774":{},"player_232792":{"pending":1},"player_243016":{},"player_244848":{},"player_248719":{},"player_432945":{},"player_433589":{},"player_439978":{},"player_461870":{},"player_49262":{},"player_50093":{},"player_60307":{},"player_86153":{},"player_101668":{},"player_111931":{"injured":1},"player_67089":{"injured":1},"player_194252":{},"player_168580":{},"player_447235":{},"player_106837":{},"player_199584":{"pending":1},"player_88900":{},"player_132015":{},"player_222434":{},"player_51927":{"injured":1},"player_194164":{"injured":1},"player_203389":{},"player_93100":{},"player_218031":{},"player_51938":{},"player_232937":{},"player_37402":{},"player_178186":{},"player_82514":{},"player_450527":{"pending":1},"player_124183":{},"player_51090":{},"player_232423":{"injured":1},"player_232413":{},"player_80179":{"injured":1},"player_214285":{"pending":1},"player_82078":{"injured":1},"player_108053":{},"player_124165":{},"player_145235":{"reported":1},"player_224444":{},"player_232917":{},"player_244851":{},"player_184386":{},"player_199796":{},"player_232653":{},"player_88175":{},"player_101582":{},"player_141746":{},"player_156689":{},"player_168196":{},"player_180184":{},"player_222844":{},"player_232781":{},"player_232924":{},"player_232928":{},"player_232929":{},"player_232930":{},"player_244856":{},"player_248506":{},"player_250370":{},"player_42899":{"injured":1},"player_432819":{},"player_43670":{},"player_446189":{},"player_55909":{},"player_58498":{},"player_168399":{},"player_172782":{},"player_17761":{},"player_195064":{},"player_195471":{},"player_217401":{},"player_218023":{},"player_220037":{"pending":1},"player_234483":{},"player_449974":{},"player_461096":{},"player_461102":{},"player_461450":{},"player_98747":{},"player_178301":{},"player_108813":{"pending":1},"player_198869":{},"player_165153":{},"player_221272":{},"player_480455":{"injured":1},"player_55914":{"pending":1},"player_213405":{"injured":1},"player_449434":{},"player_77777":{},"player_28690":{"pending":1},"player_199249":{},"player_36903":{"pending":1},"player_49440":{"injured":1},"player_49957":{},"player_42427":{},"player_111291":{"pending":1},"player_61558":{"pending":1},"player_153673":{"injured":1},"player_119765":{},"player_167074":{"injured":1},"player_153366":{"pending":1},"player_151086":{"injured":1},"player_39790":{"pending":1},"player_200600":{},"player_228286":{"pending":1},"player_20066":{"pending":1},"player_149915":{"pending":1},"player_40720":{"injured":1},"player_197937":{"pending":1}}}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.MN7VSYBM.20201021.json b/src/test/resources/__files/mpg.coach.MN7VSYBM.20201021.json deleted file mode 100644 index e31d707..0000000 --- a/src/test/resources/__files/mpg.coach.MN7VSYBM.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"realday":5,"dateMatch":1603478700000,"timetogame":161761966,"champid":5,"matchId":"mpg_match_MN7VSYBM_1_4_5","stadium":"Princes Park","teamHome":{"id":"mpg_team_MN7VSYBM$$mpg_user_955966","userId":"mpg_user_955966","name":"Axel Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyAway":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png"},"teamAway":{"id":"mpg_team_MN7VSYBM$$mpg_user_1520001","userId":"mpg_user_1520001","name":"Ritale Olympico Team","abbr":"ROT","coach":"Typhaine","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_0_1598368781174","jerseyAway":"jersey_0_1598368781174","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1598368781174.png"},"nbPlayers":10,"players":[{"playerid":"player_82451","firstname":null,"lastname":"Luis Alberto","status":2,"teamid":"129","position":3,"quotation":25,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"match_2137366_stats","day":1,"rate":2.5},"2":{"matchId":"match_2137373_stats","day":2,"rate":5.5},"3":{"matchId":"match_2137387_stats","day":3,"rate":5.5},"4":{"matchId":"match_2137397_stats","day":4,"rate":3.5}}},{"playerid":"player_67977","firstname":"Leonardo","lastname":"Pavoletti","status":2,"teamid":"124","position":4,"quotation":4,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"match_2137373_stats","day":2,"rate":4.5},"3":{"matchId":"match_2137382_stats","day":3,"rate":4.5},"4":{"matchId":"match_2137399_stats","day":4,"rate":4}}},{"playerid":"player_55776","firstname":"Alejandro","lastname":"Gómez","status":2,"teamid":"456","position":3,"quotation":34,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"match_2137366_stats","day":1,"rate":8},"2":{"matchId":"match_2137380_stats","day":2,"rate":8},"3":{"matchId":"match_2137382_stats","day":3,"rate":7},"4":{"matchId":"match_2137395_stats","day":4,"rate":5}}},{"playerid":"player_53693","firstname":null,"lastname":"Alex Sandro","status":2,"teamid":"128","position":2,"quotation":10,"ultraPosition":21,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4}}},{"playerid":"player_50821","firstname":"Francesco","lastname":"Caputo","status":2,"teamid":"2182","position":4,"quotation":40,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"match_2137369_stats","day":1,"rate":4.5},"2":{"matchId":"match_2137379_stats","day":2,"rate":8},"3":{"matchId":"match_2137390_stats","day":3,"rate":7},"4":{"matchId":"match_2137392_stats","day":4,"rate":7.5}}},{"playerid":"player_42593","firstname":"Aleksandar","lastname":"Kolarov","status":2,"teamid":"127","position":2,"quotation":26,"ultraPosition":21,"lastFiveRate":{"1":{"matchId":"match_2137362_stats","day":1,"rate":5.5},"2":{"matchId":"match_2137375_stats","day":2,"rate":5},"3":{"matchId":"-","day":3},"4":{"matchId":"match_2137394_stats","day":4,"rate":3}}},{"playerid":"player_222784","firstname":"Theo","lastname":"Hernández","status":2,"teamid":"120","position":2,"quotation":30,"ultraPosition":21,"lastFiveRate":{"1":{"matchId":"match_2137367_stats","day":1,"rate":7},"2":{"matchId":"match_2137374_stats","day":2,"rate":5.5},"3":{"matchId":"match_2137388_stats","day":3,"rate":8},"4":{"matchId":"match_2137394_stats","day":4,"rate":5}}},{"playerid":"player_119141","firstname":"Rodrigo","lastname":"de Paul","status":2,"teamid":"136","position":3,"quotation":31,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"match_2137370_stats","day":1,"rate":5},"2":{"matchId":"match_2137381_stats","day":2,"rate":6},"3":{"matchId":"match_2137391_stats","day":3,"rate":5},"4":{"matchId":"match_2137400_stats","day":4,"rate":7}}},{"playerid":"player_111732","firstname":"Hakan","lastname":"Calhanoglu","status":2,"teamid":"120","position":3,"quotation":27,"ultraPosition":32,"lastFiveRate":{"1":{"matchId":"match_2137367_stats","day":1,"rate":5},"2":{"matchId":"match_2137374_stats","day":2,"rate":6},"3":{"matchId":"match_2137388_stats","day":3,"rate":6},"4":{"matchId":"match_2137394_stats","day":4,"rate":6}}},{"playerid":"player_103086","firstname":"Duván","lastname":"Zapata","status":2,"teamid":"456","position":4,"quotation":33,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"match_2137366_stats","day":1,"rate":5},"2":{"matchId":"match_2137380_stats","day":2,"rate":6},"3":{"matchId":"match_2137382_stats","day":3,"rate":7},"4":{"matchId":"match_2137395_stats","day":4,"rate":3.5}}},{"playerid":"player_116796","firstname":"Domenico","lastname":"Berardi","status":2,"teamid":"2182","position":4,"quotation":30,"ultraPosition":40,"lastFiveRate":{"1":{"matchId":"match_2137369_stats","day":1,"rate":6},"2":{"matchId":"match_2137379_stats","day":2,"rate":7},"3":{"matchId":"match_2137390_stats","day":3,"rate":8},"4":{"matchId":"match_2137392_stats","day":4,"rate":7.5}}},{"playerid":"player_437746","firstname":"Alexis","lastname":"Saelemaekers","status":2,"teamid":"120","position":2,"quotation":14,"ultraPosition":21,"lastFiveRate":{"1":{"matchId":"match_2137367_stats","day":1,"rate":5.5},"2":{"matchId":"match_2137374_stats","day":2,"rate":4.5},"3":{"matchId":"match_2137388_stats","day":3,"rate":6.5},"4":{"matchId":"match_2137394_stats","day":4,"rate":5.5}}},{"playerid":"player_7485","firstname":"Gianluca","lastname":"Pegolo","status":2,"teamid":"2182","position":1,"quotation":8,"ultraPosition":10,"lastFiveRate":{"1":{"matchId":"-","day":1},"2":{"matchId":"-","day":2},"3":{"matchId":"-","day":3},"4":{"matchId":"-","day":4}}},{"playerid":"player_18500","firstname":"Andrea","lastname":"Consigli","status":2,"teamid":"2182","position":1,"quotation":17,"ultraPosition":10,"lastFiveRate":{"1":{"matchId":"match_2137369_stats","day":1,"rate":5},"2":{"matchId":"match_2137379_stats","day":2,"rate":6},"3":{"matchId":"match_2137390_stats","day":3,"rate":6},"4":{"matchId":"match_2137392_stats","day":4,"rate":5.5}}}],"bonus":{"1":1,"2":1,"3":2,"4":3,"5":1,"6":1,"7":1},"nanardpaid":0,"money":0,"tacticalsubstitutes":[{"subs":"player_67977","start":"player_103086","rating":6}],"composition":343,"playersOnPitch":{"1":"player_18500","2":"player_222784","3":"player_437746","4":"player_42593","5":"player_55776","6":"player_119141","7":"player_111732","8":"player_82451","9":"player_50821","10":"player_116796","11":"player_103086","12":null,"13":null,"14":null,"15":null,"16":"player_67977","17":null,"18":"player_7485"},"bonusSelected":{},"teams":{"120":{"name":"Milan","status":"home","against":"Roma"},"121":{"name":"Roma","status":"away","against":"Milan"},"123":{"name":"Bologna","status":"away","against":"Lazio"},"124":{"name":"Cagliari","status":"home","against":"Crotone"},"125":{"name":"Fiorentina","status":"home","against":"Udinese"},"126":{"name":"Verona","status":"away","against":"Juventus"},"127":{"name":"Inter","status":"away","against":"Genoa"},"128":{"name":"Juventus","status":"home","against":"Verona"},"129":{"name":"Lazio","status":"home","against":"Bologna"},"131":{"name":"Parma","status":"home","against":"Spezia"},"135":{"name":"Torino","status":"away","against":"Sassuolo"},"136":{"name":"Udinese","status":"away","against":"Fiorentina"},"456":{"name":"Atalanta","status":"home","against":"Sampdoria"},"459":{"name":"Napoli","status":"away","against":"Benevento"},"603":{"name":"Sampdoria","status":"away","against":"Atalanta"},"744":{"name":"Crotone","status":"away","against":"Cagliari"},"990":{"name":"Genoa","status":"home","against":"Inter"},"2000":{"name":"Benevento","status":"home","against":"Napoli"},"2036":{"name":"Spezia","status":"away","against":"Parma"},"2182":{"name":"Sassuolo","status":"home","against":"Torino"}},"tds":{"update":"2020-10-16T08:14:37.714Z","player_166477":{},"player_230152":{},"player_182881":{},"player_19936":{},"player_206553":{},"player_171390":{"injured":1},"player_51188":{},"player_105133":{},"player_123309":{},"player_57107":{},"player_32281":{},"player_87995":{},"player_180793":{},"player_42173":{"pending":1},"player_156323":{"injured":1},"player_89311":{},"player_48494":{},"player_28388":{"pending":1},"player_126888":{},"player_109623":{"pending":1},"player_174651":{"injured":1},"player_222784":{},"player_59963":{"injured":1},"player_96740":{},"player_50246":{},"player_184661":{"pending":1},"player_21142":{"pending":1},"player_69143":{},"player_215234":{},"player_116056":{},"player_159042":{},"player_51960":{},"player_60800":{},"player_218485":{},"player_216791":{},"player_52049":{"injured":1},"player_43191":{},"player_103076":{},"player_60072":{},"player_39462":{},"player_232057":{"injured":1},"player_42493":{},"player_67977":{},"player_123671":{},"player_109353":{},"player_55654":{},"player_205199":{},"player_84161":{},"player_55340":{"injured":1},"player_222467":{},"player_218441":{"injured":1},"player_50937":{},"player_165196":{},"player_141925":{"injured":1},"player_49417":{},"player_103953":{},"player_193183":{"pending":1},"player_87750":{},"player_157374":{},"player_96645":{},"player_61118":{},"player_53686":{},"player_32269":{},"player_60849":{},"player_141563":{"injured":1},"player_33871":{},"player_104080":{},"player_87846":{},"player_224282":{},"player_122476":{"injured":1},"player_182518":{"injured":1},"player_78140":{},"player_18102":{},"player_107013":{},"player_41792":{"injured":1},"player_75592":{"injured":1},"player_228798":{},"player_105700":{"injured":1},"player_60999":{},"player_195516":{},"player_107117":{},"player_149260":{},"player_161931":{},"player_38833":{"injured":1},"player_57195":{},"player_161918":{},"player_107363":{},"player_55909":{},"player_21232":{},"player_97346":{},"player_195577":{},"player_119141":{},"player_21191":{},"player_108143":{},"player_224024":{},"player_205454":{},"player_102738":{},"player_213534":{},"player_60074":{},"player_66806":{},"player_184508":{},"player_14937":{"injured":1},"player_8432":{},"player_119213":{"injured":1},"player_121220":{},"player_184095":{},"player_433734":{"injured":1},"player_61548":{"pending":1},"player_86129":{},"player_87542":{},"player_212314":{},"player_42426":{},"player_55688":{},"player_161794":{},"player_49720":{},"player_66228":{},"player_116196":{},"player_27353":{"injured":1},"player_447755":{},"player_80948":{},"player_147614":{},"player_100180":{},"player_57527":{"injured":1},"player_59920":{},"player_40002":{},"player_57249":{},"player_184441":{},"player_101019":{},"player_428585":{},"player_111280":{},"player_111319":{},"player_121991":{},"player_126488":{},"player_148856":{},"player_153745":{"injured":1},"player_15842":{},"player_16765":{},"player_173134":{},"player_183672":{},"player_19565":{},"player_201134":{},"player_209913":{},"player_214243":{},"player_216412":{},"player_220245":{},"player_432422":{},"player_444433":{},"player_60069":{},"player_72738":{},"player_106247":{},"player_116796":{},"player_135365":{},"player_14715":{"pending":1},"player_155620":{},"player_160540":{"injured":1},"player_160852":{},"player_164099":{},"player_171387":{},"player_18500":{},"player_216035":{},"player_224990":{},"player_38476":{},"player_424044":{},"player_446969":{},"player_450015":{},"player_485264":{},"player_50821":{},"player_59779":{},"player_62305":{"pending":1},"player_7485":{},"player_78796":{},"player_95215":{"pending":1},"player_37265":{},"player_103086":{},"player_48853":{"injured":1},"player_60071":{"injured":1},"player_223723":{},"player_195303":{},"player_53344":{},"player_111515":{},"player_223541":{},"player_221632":{},"player_159039":{},"player_19821":{"injured":1},"player_147166":{"suspended":1},"player_27251":{"injured":1},"player_126543":{},"player_193449":{},"player_85046":{},"player_42544":{},"player_212533":{"injured":1},"player_140181":{},"player_179296":{},"player_420879":{},"player_17319":{},"player_157735":{},"player_179361":{},"player_159506":{},"player_60270":{},"player_68659":{"injured":1},"player_220063":{},"player_94751":{"pending":1},"player_48714":{},"player_89861":{},"player_55776":{},"player_162330":{"injured":1},"player_39826":{},"player_82135":{},"player_114517":{"injured":1},"player_27256":{},"player_222683":{},"player_50401":{},"player_109511":{},"player_195385":{"reported":1},"player_220157":{},"player_28559":{},"player_424146":{},"player_83340":{},"player_59046":{"suspended":1},"player_38479":{},"player_46696":{"suspended":1},"player_120743":{},"player_120390":{},"player_52857":{},"player_119765":{},"player_40792":{},"player_184859":{},"player_153693":{},"player_50933":{},"player_52775":{},"player_55712":{},"player_78109":{},"player_37412":{},"player_43693":{},"player_153776":{},"player_209365":{"injured":1},"player_116195":{},"player_209352":{},"player_71032":{"pending":1},"player_88746":{},"player_223434":{},"player_102195":{"injured":1},"player_19620":{},"player_433059":{},"player_118888":{"injured":1},"player_89076":{},"player_152965":{},"player_215981":{"injured":1},"player_60715":{"injured":1},"player_192351":{},"player_195634":{},"player_139146":{},"player_232061":{},"player_215977":{"pending":1},"player_53693":{"pending":1},"player_91769":{},"player_202041":{},"player_111732":{},"player_62396":{},"player_71799":{},"player_215312":{},"player_43274":{},"player_161932":{},"player_221608":{},"player_428785":{},"player_84724":{},"player_148025":{},"player_175639":{},"player_20046":{},"player_37971":{},"player_157717":{},"player_98456":{"injured":1},"player_69305":{},"player_222329":{"injured":1},"player_171384":{},"player_456493":{"injured":1},"player_54782":{"injured":1},"player_97617":{},"player_12730":{},"player_12473":{},"player_60073":{},"player_111722":{},"player_56733":{"injured":1},"player_157775":{},"player_111782":{},"player_245414":{"injured":1},"player_19731":{},"player_166965":{"injured":1},"player_27300":{},"player_171152":{"injured":1},"player_14404":{},"player_84625":{"injured":1},"player_20360":{},"player_15061":{},"player_444845":{},"player_66733":{},"player_39816":{},"player_202993":{},"player_195559":{},"player_68915":{},"player_198374":{},"player_78091":{},"player_92519":{},"player_21125":{},"player_162651":{},"player_94425":{},"player_209737":{},"player_59936":{},"player_197983":{},"player_106461":{},"player_110654":{},"player_128376":{},"player_130963":{},"player_140200":{},"player_141219":{},"player_164266":{},"player_169107":{"injured":1},"player_214435":{},"player_215510":{"injured":1},"player_226257":{},"player_462708":{},"player_471435":{},"player_474781":{},"player_498794":{},"player_51221":{},"player_62067":{},"player_82451":{},"player_84178":{},"player_92190":{"reported":1},"player_100075":{},"player_105132":{},"player_157008":{},"player_168225":{},"player_172838":{},"player_172912":{},"player_18231":{},"player_213535":{},"player_222598":{},"player_235447":{"injured":1},"player_240271":{},"player_32286":{"pending":1},"player_38986":{},"player_422039":{},"player_428897":{},"player_432105":{},"player_438539":{},"player_478573":{},"player_478574":{},"player_49391":{},"player_56486":{},"player_57012":{},"player_94239":{},"player_49485":{},"player_95180":{},"player_50779":{},"player_161490":{},"player_212721":{},"player_54917":{},"player_204936":{},"player_170135":{},"player_439128":{},"player_42593":{},"player_83561":{},"player_111729":{},"player_81033":{},"player_212752":{},"player_148215":{"injured":1},"player_45156":{},"player_156707":{},"player_50352":{"pending":1},"player_227444":{},"player_14216":{"reported":1},"player_27794":{},"player_445044":{},"player_59326":{},"player_90594":{},"player_147886":{},"player_105119":{},"player_39830":{"injured":1},"player_82428":{},"player_147297":{},"player_21123":{},"player_18362":{},"player_225807":{"injured":1},"player_100680":{},"player_18383":{},"player_155748":{},"player_162304":{},"player_202903":{},"player_19891":{},"player_171366":{},"player_19760":{},"player_210912":{},"player_39781":{},"player_28277":{},"player_40232":{},"player_56999":{},"player_437746":{},"player_40436":{},"player_192252":{},"player_442661":{},"player_77454":{},"player_50016":{},"player_105108":{},"player_119908":{},"player_80149":{},"player_218784":{"injured":1},"player_9808":{},"player_430368":{"injured":1},"player_61824":{"injured":1},"player_444628":{},"player_91070":{},"player_78819":{},"player_164570":{},"player_182960":{},"player_112065":{"injured":1},"player_37020":{},"player_467101":{},"player_182514":{"injured":1},"player_153603":{"injured":1},"player_225479":{},"player_59886":{},"player_47545":{},"player_229798":{},"player_215979":{"injured":1},"player_120638":{},"player_162842":{},"player_501395":{},"player_92042":{},"player_49013":{},"player_55604":{},"player_218998":{},"player_66749":{},"player_177901":{},"player_439928":{},"player_51303":{},"player_93661":{},"player_113529":{},"player_88768":{},"player_60655":{},"player_126551":{},"player_97528":{"injured":1},"player_93854":{},"player_168598":{"pending":1},"player_48844":{},"player_184289":{"injured":1},"player_192905":{},"player_131304":{},"player_430788":{},"player_80974":{},"player_28592":{"injured":1},"player_156267":{},"player_76623":{},"player_483988":{},"player_20153":{},"player_505832":{"suspended":1},"player_115858":{"suspended":1},"player_103119":{},"player_171699":{"suspended":1},"player_88340":{},"player_478960":{},"player_119605":{},"player_179369":{},"player_17985":{},"player_104529":{"pending":1},"player_84160":{"injured":1},"player_450048":{},"player_216065":{},"player_40364":{"injured":1},"player_161921":{"injured":1},"player_160174":{},"player_156683":{"injured":1},"player_205079":{},"player_209330":{},"player_216039":{"reported":1},"player_226267":{},"player_226269":{},"player_233581":{},"player_233596":{},"player_250869":{},"player_434384":{},"player_450014":{},"player_451016":{},"player_455774":{},"player_462537":{"injured":1},"player_470501":{},"player_473341":{},"player_489592":{"reported":1},"player_491518":{},"player_493250":{},"player_493265":{},"player_495733":{},"player_55083":{},"player_73709":{},"player_92055":{},"player_103607":{},"player_105131":{},"player_106008":{},"player_127122":{"injured":1},"player_148202":{},"player_156245":{},"player_156883":{},"player_168768":{},"player_17331":{},"player_174876":{"injured":1},"player_183383":{"injured":1},"player_21207":{},"player_232628":{},"player_233568":{},"player_235653":{},"player_235658":{},"player_39481":{},"player_39970":{},"player_40239":{},"player_437743":{},"player_448055":{},"player_45019":{},"player_462466":{},"player_474811":{},"player_484456":{},"player_484457":{},"player_484656":{},"player_491934":{},"player_495457":{},"player_499659":{},"player_509008":{},"player_509254":{},"player_55414":{},"player_60067":{},"player_71403":{},"player_76209":{},"player_8522":{},"player_85295":{},"player_105059":{},"player_121126":{},"player_121537":{"injured":1},"player_151804":{},"player_167433":{},"player_195504":{},"player_205198":{},"player_208973":{},"player_218127":{},"player_249710":{},"player_39570":{},"player_435580":{},"player_489482":{},"player_493196":{},"player_497953":{},"player_498407":{},"player_509231":{},"player_509530":{},"player_62339":{},"player_66247":{},"player_72486":{},"player_113543":{},"player_12026":{},"player_153857":{},"player_159043":{},"player_170346":{"injured":1},"player_179329":{},"player_193106":{},"player_195046":{"injured":1},"player_201333":{"injured":1},"player_204631":{},"player_213364":{},"player_215421":{},"player_218707":{},"player_226256":{},"player_232048":{},"player_233558":{},"player_244368":{},"player_245153":{},"player_250962":{},"player_429411":{},"player_430724":{},"player_438664":{},"player_438976":{},"player_462931":{"reported":1},"player_467208":{},"player_505061":{},"player_59108":{"injured":1},"player_59972":{},"player_61330":{},"player_74145":{"injured":1},"player_104359":{},"player_154410":{"reported":1},"player_156293":{},"player_156305":{},"player_160058":{},"player_170857":{},"player_179413":{"reported":1},"player_195549":{"reported":1},"player_203452":{},"player_212633":{},"player_213933":{},"player_225050":{},"player_226103":{},"player_244291":{},"player_40001":{},"player_465701":{},"player_18377":{},"player_18892":{"injured":1},"player_215531":{"injured":1},"player_223760":{},"player_225287":{},"player_226273":{},"player_230651":{},"player_39167":{},"player_45034":{},"player_465626":{},"player_465637":{},"player_465661":{},"player_468426":{},"player_492198":{},"player_492868":{},"player_80607":{},"player_51621":{"pending":1},"player_235247":{"injured":1},"player_183253":{},"player_512325":{"injured":1},"player_102228":{"injured":1},"player_102290":{},"player_123508":{},"player_135334":{},"player_165229":{"reported":1},"player_189581":{},"player_195896":{},"player_207015":{},"player_209340":{},"player_219727":{},"player_243715":{},"player_450024":{},"player_458919":{},"player_465639":{},"player_465665":{},"player_482097":{},"player_487476":{"injured":1},"player_496855":{},"player_499164":{},"player_499165":{},"player_515606":{},"player_515618":{},"player_102766":{},"player_17192":{},"player_182515":{},"player_193773":{},"player_209344":{},"player_21155":{},"player_212667":{},"player_234753":{},"player_235885":{},"player_247359":{},"player_248669":{},"player_42825":{},"player_442111":{},"player_442112":{},"player_449470":{},"player_449750":{},"player_450019":{},"player_457784":{},"player_463427":{},"player_473242":{},"player_489361":{},"player_508616":{},"player_508635":{},"player_508636":{},"player_186665":{"pending":1},"player_229912":{"injured":1},"player_126440":{"injured":1},"player_241519":{"injured":1},"player_159522":{"injured":1},"player_94924":{"pending":1},"player_439185":{"injured":1},"player_148868":{"injured":1},"player_459897":{"injured":1}}}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.MN7VSYBM.20210406.json b/src/test/resources/__files/mpg.coach.MN7VSYBM.20210406.json deleted file mode 100644 index 92697bd..0000000 --- a/src/test/resources/__files/mpg.coach.MN7VSYBM.20210406.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"realday":30,"dateMatch":1618059600000,"timetogame":328507935,"champid":5,"matchId":"mpg_match_MN7VSYBM_2_10_4","stadium":"Un cazzo","teamHome":{"id":"mpg_team_MN7VSYBM$$mpg_user_2299060","userId":"mpg_user_953561","name":"Ballekoli","abbr":"BIT","coach":"Mansuy","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_0_1572518212698","jerseyAway":"jersey_0_1576749821747","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1572518212698.png"},"teamAway":{"id":"mpg_team_MN7VSYBM$$mpg_user_955966","userId":"mpg_user_955966","name":"Axel Football Club","abbr":"AFC","coach":"Alix","jersey":{"id":0,"sponsor":1,"zones":{"z1":"#fff"}},"jerseyHome":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyAway":"jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc","jerseyUrl":"https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc.png"},"nbPlayers":10,"players":[{"playerid":"player_222784","firstname":"Theo","lastname":"Hernández","status":2,"teamid":"120","position":2,"quotation":27,"ultraPosition":21,"lastFiveRate":{"25":{"matchId":"match_2137610_stats","day":25,"rate":4.5},"26":{"matchId":"-","day":26},"27":{"matchId":"match_2137626_stats","day":27,"rate":4.5},"28":{"matchId":"match_2137638_stats","day":28,"rate":5},"29":{"matchId":"match_2137648_stats","day":29,"rate":4.5}}},{"playerid":"player_119141","firstname":"Rodrigo","lastname":"de Paul","status":2,"teamid":"136","position":3,"quotation":34,"ultraPosition":32,"lastFiveRate":{"25":{"matchId":"match_2137610_stats","day":25,"rate":6},"26":{"matchId":"match_2137620_stats","day":26,"rate":7},"27":{"matchId":"match_2137630_stats","day":27,"rate":6.5},"28":{"matchId":"match_2137637_stats","day":28,"rate":6.5},"29":{"matchId":"match_2137650_stats","day":29,"rate":3.5}}},{"playerid":"player_116796","firstname":"Domenico","lastname":"Berardi","status":2,"teamid":"2182","position":4,"quotation":35,"ultraPosition":40,"lastFiveRate":{"25":{"matchId":"match_2137605_stats","day":25,"rate":7},"26":{"matchId":"match_2137620_stats","day":26,"rate":6},"27":{"matchId":"match_2137631_stats","day":27,"rate":6.5},"28":{"matchId":"-","day":28},"29":{"matchId":"-","day":29}}},{"playerid":"player_88340","firstname":null,"lastname":"João Pedro","status":2,"teamid":"124","position":4,"quotation":44,"ultraPosition":40,"lastFiveRate":{"25":{"matchId":"match_2137602_stats","day":25,"rate":5.5},"26":{"matchId":"match_2137615_stats","day":26,"rate":6.5},"27":{"matchId":"match_2137625_stats","day":27,"rate":5},"28":{"matchId":"match_2137635_stats","day":28,"rate":4},"29":{"matchId":"match_2137651_stats","day":29,"rate":6}}},{"playerid":"player_223541","firstname":"Federico","lastname":"Chiesa","status":2,"teamid":"128","position":4,"quotation":26,"ultraPosition":40,"lastFiveRate":{"25":{"matchId":"match_2137608_stats","day":25,"rate":7},"26":{"matchId":"match_2137617_stats","day":26,"rate":7},"27":{"matchId":"match_2137625_stats","day":27,"rate":6.5},"28":{"matchId":"match_2137633_stats","day":28,"rate":3.5},"29":{"matchId":"match_2137645_stats","day":29,"rate":7}}},{"playerid":"player_169107","firstname":"Adam","lastname":"Marusic","status":2,"teamid":"129","position":2,"quotation":12,"ultraPosition":21,"lastFiveRate":{"25":{"matchId":"-","day":25},"26":{"matchId":"match_2137617_stats","day":26,"rate":3.5},"27":{"matchId":"match_2137622_stats","day":27,"rate":5.5},"28":{"matchId":"match_2137637_stats","day":28,"rate":7},"29":{"matchId":"match_2137649_stats","day":29,"rate":5}}},{"playerid":"player_69143","firstname":"Juraj","lastname":"Kucka","status":2,"teamid":"131","position":3,"quotation":24,"ultraPosition":31,"lastFiveRate":{"25":{"matchId":"match_2137604_stats","day":25,"rate":4.5},"26":{"matchId":"match_2137619_stats","day":26,"rate":6.5},"27":{"matchId":"-","day":27},"28":{"matchId":"match_2137636_stats","day":28,"rate":6.5},"29":{"matchId":"match_2137646_stats","day":29,"rate":5}}},{"playerid":"player_424044","firstname":"Hamed Junior","lastname":"Traore","status":2,"teamid":"2182","position":3,"quotation":12,"ultraPosition":32,"lastFiveRate":{"25":{"matchId":"match_2137605_stats","day":25,"rate":4.5},"26":{"matchId":"match_2137620_stats","day":26,"rate":3},"27":{"matchId":"match_2137631_stats","day":27,"rate":6},"28":{"matchId":"-","day":28},"29":{"matchId":"match_2137647_stats","day":29,"rate":7}}},{"playerid":"player_225807","firstname":"Eljif","lastname":"Elmas","status":2,"teamid":"459","position":3,"quotation":10,"ultraPosition":32,"lastFiveRate":{"25":{"matchId":"match_2137605_stats","day":25,"rate":5},"26":{"matchId":"match_2137614_stats","day":26,"rate":5},"27":{"matchId":"match_2137626_stats","day":27,"rate":5},"28":{"matchId":"match_2137639_stats","day":28,"rate":5},"29":{"matchId":"match_2137642_stats","day":29,"rate":6}}},{"playerid":"player_180793","firstname":"Sergej","lastname":"Milinkovic-Savic","status":2,"teamid":"129","position":3,"quotation":22,"ultraPosition":32,"lastFiveRate":{"25":{"matchId":"-","day":25},"26":{"matchId":"match_2137617_stats","day":26,"rate":3},"27":{"matchId":"match_2137622_stats","day":27,"rate":4.5},"28":{"matchId":"match_2137637_stats","day":28,"rate":6.5},"29":{"matchId":"match_2137649_stats","day":29,"rate":5}}},{"playerid":"player_156267","firstname":"Omar","lastname":"Colley","status":2,"teamid":"603","position":2,"quotation":11,"ultraPosition":20,"lastFiveRate":{"25":{"matchId":"match_2137607_stats","day":25,"rate":5.5},"26":{"matchId":"match_2137615_stats","day":26,"rate":4},"27":{"matchId":"-","day":27},"28":{"matchId":"match_2137641_stats","day":28,"rate":6},"29":{"matchId":"match_2137648_stats","day":29,"rate":7}}},{"playerid":"player_76623","firstname":"Bram","lastname":"Nuytinck","status":2,"teamid":"136","position":2,"quotation":14,"ultraPosition":20,"lastFiveRate":{"25":{"matchId":"match_2137610_stats","day":25,"rate":5.5},"26":{"matchId":"match_2137620_stats","day":26,"rate":5.5},"27":{"matchId":"match_2137630_stats","day":27,"rate":5.5},"28":{"matchId":"match_2137637_stats","day":28,"rate":5},"29":{"matchId":"match_2137650_stats","day":29,"rate":4}}},{"playerid":"player_439185","firstname":"Mihai Valentin","lastname":"Mihaila","status":2,"teamid":"131","position":4,"quotation":10,"ultraPosition":40,"lastFiveRate":{"25":{"matchId":"match_2137604_stats","day":25,"rate":4},"26":{"matchId":"match_2137619_stats","day":26,"rate":6.5},"27":{"matchId":"match_2137627_stats","day":27,"rate":7},"28":{"matchId":"match_2137636_stats","day":28,"rate":4.5},"29":{"matchId":"match_2137646_stats","day":29,"rate":4.5}}},{"playerid":"player_139146","firstname":"Erick","lastname":"Pulgar","status":2,"teamid":"125","position":3,"quotation":12,"ultraPosition":31,"lastFiveRate":{"25":{"matchId":"match_2137606_stats","day":25,"rate":5},"26":{"matchId":"match_2137619_stats","day":26,"rate":6},"27":{"matchId":"match_2137623_stats","day":27,"rate":6},"28":{"matchId":"match_2137638_stats","day":28,"rate":6},"29":{"matchId":"match_2137643_stats","day":29,"rate":5}}},{"playerid":"player_103155","firstname":"Adama","lastname":"Soumaoro","status":2,"teamid":"123","position":2,"quotation":12,"ultraPosition":20,"lastFiveRate":{"25":{"matchId":"match_2137602_stats","day":25,"rate":5},"26":{"matchId":"match_2137614_stats","day":26,"rate":4},"27":{"matchId":"match_2137628_stats","day":27,"rate":6},"28":{"matchId":"match_2137634_stats","day":28,"rate":5.5},"29":{"matchId":"match_2137644_stats","day":29,"rate":5.5}}},{"playerid":"player_84724","firstname":"Bartosz","lastname":"Bereszynski","status":2,"teamid":"603","position":2,"quotation":12,"ultraPosition":21,"lastFiveRate":{"25":{"matchId":"match_2137607_stats","day":25,"rate":5},"26":{"matchId":"match_2137615_stats","day":26,"rate":6.5},"27":{"matchId":"match_2137628_stats","day":27,"rate":4.5},"28":{"matchId":"match_2137641_stats","day":28,"rate":5.5},"29":{"matchId":"match_2137648_stats","day":29,"rate":6.5}}},{"playerid":"player_60655","firstname":"Artur","lastname":"Ionita","status":2,"teamid":"2000","position":3,"quotation":11,"ultraPosition":32,"lastFiveRate":{"25":{"matchId":"match_2137611_stats","day":25,"rate":3.5},"26":{"matchId":"match_2137613_stats","day":26,"rate":4.5},"27":{"matchId":"match_2137623_stats","day":27,"rate":6},"28":{"matchId":"match_2137633_stats","day":28,"rate":5.5},"29":{"matchId":"match_2137646_stats","day":29,"rate":6.5}}},{"playerid":"player_42173","firstname":"Felipe","lastname":"Caicedo","status":2,"teamid":"129","position":4,"quotation":10,"ultraPosition":40,"lastFiveRate":{"25":{"matchId":"-","day":25},"26":{"matchId":"match_2137617_stats","day":26,"rate":4},"27":{"matchId":"match_2137622_stats","day":27,"rate":6},"28":{"matchId":"-","day":28},"29":{"matchId":"match_2137649_stats","day":29,"rate":5}}},{"playerid":"player_153867","firstname":"Daniele","lastname":"Verde","status":2,"teamid":"2036","position":4,"quotation":9,"ultraPosition":40,"lastFiveRate":{"25":{"matchId":"match_2137608_stats","day":25,"rate":5},"26":{"matchId":"match_2137613_stats","day":26,"rate":6.5},"27":{"matchId":"match_2137629_stats","day":27,"rate":5.5},"28":{"matchId":"-","day":28},"29":{"matchId":"match_2137649_stats","day":29,"rate":6}}}],"bonus":{"1":1,"2":1,"3":2,"4":3,"5":1,"6":1,"7":0},"nanardpaid":0,"money":0,"tacticalsubstitutes":[{"subs":"player_169107","start":"player_76623","rating":5},{"subs":"player_119141","start":"player_180793","rating":5},{"subs":"player_139146","start":"player_60655","rating":5},{"subs":"player_153867","start":"player_439185","rating":6},{"subs":"player_42173","start":"player_88340","rating":6}],"composition":343,"playersOnPitch":{"1":null,"2":"player_103155","3":"player_84724","4":"player_76623","5":"player_69143","6":"player_424044","7":"player_60655","8":"player_180793","9":"player_223541","10":"player_88340","11":"player_439185","12":"player_169107","13":"player_222784","14":"player_119141","15":"player_139146","16":"player_153867","17":"player_42173","18":null},"bonusSelected":{"type":6},"teams":{"120":{"name":"Milan","status":"away","against":"Parma"},"121":{"name":"Roma","status":"home","against":"Bologna"},"123":{"name":"Bologna","status":"away","against":"Roma"},"124":{"name":"Cagliari","status":"away","against":"Inter"},"125":{"name":"Fiorentina","status":"home","against":"Atalanta"},"126":{"name":"Verona","status":"home","against":"Lazio"},"127":{"name":"Inter","status":"home","against":"Cagliari"},"128":{"name":"Juventus","status":"home","against":"Genoa"},"129":{"name":"Lazio","status":"away","against":"Verona"},"131":{"name":"Parma","status":"home","against":"Milan"},"135":{"name":"Torino","status":"away","against":"Udinese"},"136":{"name":"Udinese","status":"home","against":"Torino"},"456":{"name":"Atalanta","status":"away","against":"Fiorentina"},"459":{"name":"Napoli","status":"away","against":"Sampdoria"},"603":{"name":"Sampdoria","status":"home","against":"Napoli"},"744":{"name":"Crotone","status":"away","against":"Spezia"},"990":{"name":"Genoa","status":"away","against":"Juventus"},"2000":{"name":"Benevento","status":"home","against":"Sassuolo"},"2036":{"name":"Spezia","status":"home","against":"Crotone"},"2182":{"name":"Sassuolo","status":"away","against":"Benevento"}},"tds":{"update":"2021-04-02T10:36:09.056Z","player_166477":{},"player_230152":{},"player_182881":{},"player_19936":{},"player_206553":{},"player_171390":{"injured":1},"player_51188":{},"player_105133":{},"player_123309":{},"player_57107":{"injured":1},"player_32281":{},"player_87995":{},"player_180793":{},"player_42173":{},"player_156323":{},"player_89311":{},"player_48494":{},"player_28388":{"pending":1},"player_126888":{},"player_109623":{"pending":1},"player_174651":{},"player_222784":{},"player_59963":{"injured":1},"player_96740":{"pending":1},"player_50246":{},"player_184661":{},"player_21142":{"pending":1},"player_69143":{},"player_215234":{},"player_116056":{},"player_159042":{},"player_51960":{},"player_60800":{},"player_218485":{},"player_216791":{},"player_52049":{},"player_43191":{},"player_103076":{},"player_60072":{},"player_39462":{},"player_232057":{"injured":1},"player_42493":{},"player_67977":{},"player_123671":{},"player_109353":{},"player_55654":{},"player_205199":{},"player_84161":{},"player_55340":{"injured":1},"player_222467":{},"player_218441":{},"player_50937":{},"player_165196":{},"player_141925":{"suspended":1},"player_49417":{},"player_103953":{},"player_193183":{},"player_87750":{},"player_157374":{},"player_96645":{},"player_61118":{},"player_53686":{},"player_32269":{},"player_60849":{"pending":1},"player_141563":{},"player_33871":{},"player_104080":{"injured":1},"player_87846":{},"player_224282":{},"player_122476":{"injured":1},"player_182518":{"injured":1},"player_78140":{},"player_18102":{},"player_107013":{},"player_41792":{},"player_75592":{},"player_228798":{},"player_105700":{},"player_60999":{"pending":1},"player_195516":{},"player_107117":{},"player_149260":{},"player_161931":{},"player_38833":{},"player_57195":{},"player_161918":{"injured":1},"player_107363":{},"player_55909":{"injured":1},"player_21232":{},"player_97346":{},"player_195577":{},"player_119141":{},"player_21191":{},"player_108143":{},"player_224024":{},"player_205454":{},"player_102738":{},"player_213534":{},"player_60074":{},"player_66806":{},"player_184508":{},"player_14937":{},"player_8432":{},"player_119213":{},"player_121220":{},"player_184095":{},"player_433734":{"injured":1},"player_61548":{},"player_86129":{"suspended":1},"player_87542":{},"player_212314":{"pending":1},"player_42426":{"injured":1},"player_55688":{},"player_161794":{},"player_49720":{},"player_66228":{},"player_116196":{},"player_27353":{},"player_447755":{},"player_80948":{},"player_147614":{},"player_100180":{},"player_57527":{},"player_59920":{},"player_40002":{},"player_57249":{"injured":1},"player_184441":{},"player_101019":{"pending":1},"player_428585":{},"player_111280":{},"player_111319":{},"player_121991":{},"player_126488":{},"player_148856":{},"player_153745":{"injured":1},"player_15842":{},"player_16765":{},"player_173134":{},"player_183672":{},"player_19565":{},"player_201134":{},"player_209913":{},"player_214243":{},"player_216412":{},"player_220245":{},"player_432422":{},"player_444433":{},"player_60069":{},"player_72738":{},"player_106247":{},"player_116796":{"pending":1},"player_135365":{},"player_14715":{},"player_155620":{},"player_160540":{},"player_160852":{},"player_164099":{},"player_171387":{},"player_18500":{},"player_216035":{"injured":1},"player_224990":{},"player_38476":{},"player_424044":{"pending":1},"player_446969":{},"player_450015":{},"player_485264":{},"player_50821":{"injured":1},"player_59779":{},"player_62305":{},"player_7485":{},"player_78796":{"injured":1},"player_95215":{"injured":1},"player_37265":{},"player_103086":{},"player_48853":{},"player_60071":{},"player_223723":{},"player_195303":{"injured":1},"player_53344":{},"player_111515":{},"player_223541":{},"player_221632":{"pending":1},"player_159039":{},"player_19821":{"pending":1},"player_147166":{},"player_27251":{},"player_126543":{},"player_193449":{"pending":1},"player_85046":{},"player_42544":{},"player_212533":{},"player_140181":{"pending":1},"player_179296":{},"player_420879":{},"player_17319":{},"player_157735":{},"player_179361":{"pending":1},"player_159506":{},"player_60270":{},"player_68659":{},"player_220063":{},"player_94751":{},"player_48714":{},"player_89861":{},"player_55776":{"injured":1},"player_162330":{},"player_39826":{"injured":1},"player_82135":{"injured":1},"player_114517":{},"player_27256":{"pending":1},"player_222683":{},"player_50401":{},"player_109511":{},"player_195385":{"reported":1},"player_220157":{},"player_28559":{},"player_424146":{},"player_83340":{},"player_59046":{},"player_38479":{},"player_46696":{"suspended":1},"player_120743":{},"player_120390":{},"player_52857":{},"player_119765":{},"player_40792":{},"player_184859":{},"player_153693":{"pending":1},"player_50933":{},"player_52775":{"injured":1},"player_55712":{},"player_78109":{"injured":1},"player_37412":{},"player_43693":{},"player_153776":{},"player_209365":{},"player_116195":{},"player_209352":{},"player_71032":{"pending":1},"player_88746":{"injured":1},"player_223434":{"injured":1},"player_102195":{},"player_19620":{},"player_433059":{"injured":1},"player_118888":{"injured":1},"player_89076":{"pending":1},"player_152965":{},"player_215981":{"injured":1},"player_60715":{"injured":1},"player_192351":{},"player_195634":{},"player_139146":{},"player_232061":{},"player_215977":{"pending":1},"player_53693":{},"player_91769":{},"player_202041":{},"player_111732":{},"player_62396":{},"player_71799":{},"player_215312":{"suspended":1},"player_43274":{},"player_161932":{},"player_221608":{"injured":1},"player_428785":{},"player_84724":{},"player_148025":{},"player_175639":{},"player_20046":{},"player_37971":{},"player_157717":{},"player_98456":{"pending":1},"player_69305":{},"player_222329":{},"player_171384":{"pending":1},"player_456493":{"injured":1},"player_54782":{},"player_97617":{},"player_12730":{},"player_12473":{},"player_60073":{},"player_111722":{"pending":1},"player_56733":{"injured":1},"player_157775":{},"player_111782":{},"player_245414":{"injured":1},"player_19731":{},"player_166965":{},"player_27300":{},"player_171152":{},"player_14404":{},"player_84625":{"injured":1},"player_20360":{},"player_15061":{"pending":1},"player_444845":{},"player_66733":{},"player_39816":{},"player_202993":{},"player_195559":{"suspended":1},"player_68915":{},"player_198374":{"pending":1},"player_78091":{},"player_92519":{},"player_21125":{},"player_162651":{},"player_94425":{"pending":1},"player_209737":{},"player_59936":{},"player_197983":{},"player_106461":{},"player_110654":{},"player_128376":{},"player_130963":{},"player_140200":{},"player_141219":{},"player_164266":{},"player_169107":{},"player_214435":{},"player_215510":{"injured":1},"player_226257":{},"player_462708":{},"player_471435":{},"player_474781":{},"player_498794":{},"player_51221":{},"player_62067":{},"player_82451":{"injured":1},"player_84178":{},"player_92190":{"reported":1},"player_100075":{},"player_105132":{},"player_157008":{},"player_168225":{},"player_172838":{},"player_172912":{},"player_18231":{},"player_213535":{},"player_222598":{},"player_235447":{},"player_240271":{},"player_32286":{},"player_38986":{},"player_422039":{},"player_428897":{},"player_432105":{},"player_438539":{},"player_478573":{},"player_478574":{},"player_49391":{},"player_56486":{},"player_57012":{},"player_94239":{},"player_49485":{},"player_95180":{},"player_50779":{"injured":1},"player_161490":{},"player_212721":{},"player_54917":{},"player_204936":{},"player_170135":{"injured":1},"player_439128":{"injured":1},"player_42593":{},"player_83561":{},"player_111729":{},"player_81033":{},"player_212752":{},"player_148215":{},"player_45156":{},"player_156707":{},"player_50352":{"pending":1},"player_227444":{},"player_14216":{"reported":1},"player_27794":{},"player_445044":{},"player_59326":{},"player_90594":{},"player_147886":{},"player_105119":{},"player_39830":{},"player_82428":{},"player_147297":{},"player_21123":{},"player_18362":{},"player_225807":{},"player_100680":{},"player_18383":{},"player_155748":{},"player_162304":{},"player_202903":{"pending":1},"player_19891":{},"player_171366":{},"player_19760":{},"player_210912":{},"player_39781":{},"player_28277":{"injured":1},"player_40232":{},"player_56999":{},"player_437746":{},"player_40436":{"pending":1},"player_192252":{},"player_442661":{},"player_77454":{},"player_50016":{},"player_105108":{},"player_119908":{"injured":1},"player_80149":{},"player_218784":{},"player_9808":{},"player_430368":{},"player_61824":{"injured":1},"player_444628":{},"player_91070":{},"player_78819":{},"player_164570":{},"player_182960":{},"player_112065":{},"player_37020":{"injured":1},"player_467101":{},"player_182514":{},"player_153603":{},"player_225479":{},"player_59886":{},"player_47545":{},"player_229798":{},"player_215979":{},"player_120638":{},"player_162842":{},"player_501395":{},"player_92042":{"pending":1},"player_49013":{},"player_55604":{},"player_218998":{},"player_66749":{},"player_177901":{},"player_439928":{},"player_51303":{},"player_93661":{},"player_113529":{},"player_88768":{},"player_60655":{},"player_126551":{"injured":1},"player_97528":{"injured":1},"player_93854":{},"player_168598":{},"player_48844":{"injured":1},"player_184289":{},"player_192905":{},"player_131304":{},"player_430788":{"suspended":1},"player_80974":{},"player_28592":{"injured":1},"player_156267":{},"player_76623":{},"player_483988":{},"player_20153":{"suspended":1},"player_505832":{"suspended":1},"player_115858":{"suspended":1},"player_103119":{},"player_171699":{},"player_88340":{},"player_478960":{"injured":1},"player_119605":{},"player_179369":{},"player_17985":{},"player_104529":{},"player_84160":{"injured":1},"player_450048":{},"player_216065":{"injured":1},"player_40364":{},"player_161921":{},"player_160174":{},"player_156683":{},"player_205079":{},"player_209330":{},"player_216039":{"reported":1},"player_226267":{},"player_226269":{},"player_233581":{},"player_233596":{},"player_250869":{},"player_434384":{},"player_450014":{},"player_451016":{},"player_455774":{"injured":1},"player_462537":{},"player_470501":{},"player_473341":{},"player_489592":{"reported":1},"player_491518":{},"player_493250":{},"player_493265":{},"player_495733":{},"player_55083":{},"player_73709":{},"player_92055":{},"player_103607":{},"player_105131":{},"player_106008":{},"player_127122":{},"player_148202":{},"player_156245":{},"player_156883":{},"player_168768":{},"player_17331":{},"player_174876":{},"player_183383":{},"player_21207":{},"player_232628":{},"player_233568":{},"player_235653":{},"player_235658":{},"player_39481":{},"player_39970":{},"player_40239":{},"player_437743":{"pending":1},"player_448055":{},"player_45019":{},"player_462466":{},"player_474811":{},"player_484456":{},"player_484457":{},"player_484656":{},"player_491934":{},"player_495457":{},"player_499659":{},"player_509008":{},"player_509254":{},"player_55414":{"pending":1},"player_60067":{},"player_71403":{},"player_76209":{},"player_8522":{},"player_85295":{"injured":1},"player_105059":{},"player_121126":{},"player_121537":{"pending":1},"player_151804":{},"player_167433":{},"player_195504":{},"player_205198":{},"player_208973":{},"player_218127":{},"player_249710":{},"player_39570":{},"player_435580":{},"player_489482":{},"player_493196":{},"player_497953":{},"player_498407":{},"player_509231":{},"player_509530":{},"player_62339":{},"player_66247":{},"player_72486":{},"player_113543":{"pending":1},"player_12026":{},"player_153857":{"pending":1},"player_159043":{"pending":1},"player_170346":{},"player_179329":{},"player_193106":{},"player_195046":{"injured":1},"player_201333":{},"player_204631":{},"player_213364":{},"player_215421":{},"player_218707":{"pending":1},"player_226256":{},"player_232048":{"injured":1},"player_233558":{},"player_244368":{},"player_245153":{},"player_250962":{},"player_429411":{},"player_430724":{},"player_438664":{},"player_438976":{},"player_462931":{"reported":1},"player_467208":{"pending":1},"player_505061":{},"player_59108":{},"player_59972":{},"player_61330":{},"player_74145":{},"player_104359":{},"player_154410":{"reported":1},"player_156293":{},"player_156305":{},"player_160058":{},"player_170857":{},"player_179413":{"reported":1},"player_195549":{"reported":1},"player_203452":{},"player_212633":{},"player_213933":{},"player_225050":{},"player_226103":{},"player_244291":{},"player_40001":{},"player_465701":{},"player_18377":{},"player_18892":{},"player_215531":{},"player_223760":{},"player_225287":{},"player_226273":{},"player_230651":{},"player_39167":{},"player_45034":{},"player_465626":{},"player_465637":{},"player_465661":{},"player_468426":{},"player_492198":{},"player_492868":{},"player_80607":{},"player_51621":{},"player_235247":{"pending":1},"player_183253":{},"player_512325":{},"player_102228":{},"player_102290":{},"player_123508":{},"player_135334":{},"player_165229":{"reported":1},"player_189581":{},"player_195896":{},"player_207015":{},"player_209340":{},"player_219727":{},"player_243715":{},"player_450024":{},"player_458919":{},"player_465639":{},"player_465665":{},"player_482097":{},"player_487476":{},"player_496855":{},"player_499164":{},"player_499165":{},"player_515606":{},"player_515618":{},"player_102766":{},"player_17192":{},"player_182515":{},"player_193773":{},"player_209344":{},"player_21155":{},"player_212667":{},"player_234753":{},"player_235885":{},"player_247359":{},"player_248669":{},"player_42825":{},"player_442111":{},"player_442112":{},"player_449470":{},"player_449750":{},"player_450019":{},"player_457784":{},"player_463427":{},"player_473242":{},"player_489361":{},"player_508616":{},"player_508635":{},"player_508636":{},"player_186665":{},"player_229912":{},"player_126440":{"injured":1},"player_241519":{},"player_159522":{"injured":1},"player_94924":{"injured":1},"player_439185":{},"player_148868":{},"player_459897":{},"player_156689":{},"player_220176":{},"player_219348":{},"player_462487":{"injured":1},"player_235934":{"injured":1},"player_76811":{},"player_204562":{},"player_466075":{},"player_225942":{},"player_181055":{},"player_173131":{},"player_46483":{},"player_205048":{},"player_201652":{},"player_185521":{},"player_90557":{},"player_153754":{},"player_50322":{},"player_437784":{"injured":1},"player_156708":{},"player_153867":{},"player_209736":{},"player_168618":{},"player_204069":{},"player_482301":{},"player_216040":{},"player_466135":{},"player_431079":{},"player_472713":{"injured":1},"player_61566":{},"player_218329":{},"player_169102":{},"player_4126":{"suspended":1},"player_205578":{"pending":1},"player_166016":{},"player_459025":{},"player_88482":{},"player_223966":{},"player_218005":{},"player_449790":{},"player_151873":{},"player_215145":{},"player_49988":{},"player_201379":{},"player_42565":{"injured":1},"player_59338":{},"player_41945":{},"player_49579":{},"player_86940":{},"player_487992":{},"player_88432":{},"player_85288":{"injured":1},"player_204043":{"injured":1},"player_429187":{},"player_235879":{},"player_39354":{},"player_60017":{},"player_209353":{},"player_173181":{},"player_222448":{},"player_250199":{},"player_214064":{},"player_168290":{"injured":1},"player_467138":{},"player_250992":{},"player_425703":{},"player_477121":{},"player_521635":{},"player_432070":{},"player_246002":{},"player_462431":{},"player_152338":{},"player_216183":{},"player_466041":{},"player_235454":{"injured":1},"player_176485":{"pending":1},"player_213965":{},"player_229220":{},"player_488253":{"injured":1},"player_17784":{},"player_161919":{},"player_167075":{},"player_466123":{},"player_488443":{},"player_489245":{},"player_492870":{},"player_496275":{},"player_496285":{},"player_508846":{},"player_433128":{},"player_493353":{},"player_495527":{},"player_499194":{},"player_508630":{},"player_514798":{},"player_521146":{},"player_523753":{},"player_75770":{},"player_458249":{"injured":1},"player_46197":{"injured":1},"player_230804":{},"player_449580":{},"player_176500":{},"player_181074":{},"player_449700":{},"player_466102":{},"player_468220":{},"player_482120":{},"player_484471":{},"player_485254":{},"player_518129":{},"player_518924":{},"player_518925":{},"player_518926":{},"player_523107":{},"player_151923":{},"player_440089":{},"player_150710":{},"player_184847":{},"player_226262":{},"player_459362":{},"player_103155":{},"player_229695":{"injured":1},"player_49887":{"pending":1},"player_91990":{},"player_248888":{},"player_465628":{},"player_465649":{},"player_465658":{},"player_474843":{},"player_487994":{},"player_488159":{},"player_492860":{},"player_492864":{},"player_492865":{},"player_492866":{},"player_505185":{},"player_429453":{"injured":1},"player_57038":{"injured":1},"player_101820":{},"player_450782":{"suspended":1},"player_80447":{"pending":1},"player_216051":{"pending":1}}}} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.noMoreGames.json b/src/test/resources/__files/mpg.coach.noMoreGames.json deleted file mode 100644 index 708d0ed..0000000 --- a/src/test/resources/__files/mpg.coach.noMoreGames.json +++ /dev/null @@ -1 +0,0 @@ -{"success":"noMoreGames"} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.post.success.json b/src/test/resources/__files/mpg.coach.post.success.json deleted file mode 100644 index e0bcaa5..0000000 --- a/src/test/resources/__files/mpg.coach.post.success.json +++ /dev/null @@ -1 +0,0 @@ -{"success":"teamSaved"} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.dashboard.KJVB6L7C-status-4.json b/src/test/resources/__files/mpg.dashboard.KJVB6L7C-status-4.json deleted file mode 100644 index 07dc649..0000000 --- a/src/test/resources/__files/mpg.dashboard.KJVB6L7C-status-4.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "KJVB6L7C", - "admin_mpg_user_id": "mpg_user_352212", - "current_mpg_user": "mpg_user_306874", - "name": "World Cup 2018 Part deux", - "url": "assets/public/img/league/6.jpg", - "leagueStatus": 4, - "championship": 2, - "mode": 1, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-1-KLGXSSUG-status-5.json b/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-1-KLGXSSUG-status-5.json deleted file mode 100644 index 8883ad7..0000000 --- a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-1-KLGXSSUG-status-5.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "data": { - "follow": [ - ], - "leagues": [ - { - "id": "KX24XMUG", - "admin_mpg_user_id": "mpg_user_1520001", - "current_mpg_user": "mpg_user_955966", - "name": "Achille Needle", - "leagueStatus": 1, - "championship": 1, - "mode": 1, - "teamStatus": null, - "url": "assets/public/img/league/10.jpg" - }, - { - "id": "KLGXSSUG", - "admin_mpg_user_id": "mpg_user_963519", - "current_mpg_user": "mpg_user_955966", - "name": "Rock on the grass", - "leagueStatus": 5, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "url": "assets/public/img/league/3.jpg" - } - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3+1-KLGXSSUG-status-5.json b/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3+1-KLGXSSUG-status-5.json deleted file mode 100644 index 257a325..0000000 --- a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3+1-KLGXSSUG-status-5.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "data": { - "follow": [ - ], - "leagues": [ - { - "id": "KX24XMUG", - "admin_mpg_user_id": "mpg_user_1520001", - "current_mpg_user": "mpg_user_955966", - "name": "Achille Needle", - "leagueStatus": 3, - "championship": 1, - "mode": 2, - "teamStatus": 1, - "url": "assets/public/img/league/10.jpg" - }, - { - "id": "KLGXSSUG", - "admin_mpg_user_id": "mpg_user_963519", - "current_mpg_user": "mpg_user_955966", - "name": "Rock on the grass", - "leagueStatus": 5, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "url": "assets/public/img/league/3.jpg" - } - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3-KLGXSSUG-status-5.json b/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3-KLGXSSUG-status-5.json deleted file mode 100644 index 170765e..0000000 --- a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-3-KLGXSSUG-status-5.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "data": { - "follow": [ - ], - "leagues": [ - { - "id": "KX24XMUG", - "admin_mpg_user_id": "mpg_user_1520001", - "current_mpg_user": "mpg_user_955966", - "name": "Achille Needle", - "leagueStatus": 3, - "championship": 1, - "mode": 2, - "teamStatus": null, - "url": "assets/public/img/league/10.jpg" - }, - { - "id": "KLGXSSUG", - "admin_mpg_user_id": "mpg_user_963519", - "current_mpg_user": "mpg_user_955966", - "name": "Rock on the grass", - "leagueStatus": 5, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "url": "assets/public/img/league/3.jpg" - } - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-4.json b/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-4.json deleted file mode 100644 index e23826f..0000000 --- a/src/test/resources/__files/mpg.dashboard.KX24XMUG-status-4.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "data": { - "follow": [ - ], - "leagues": [ - { - "id": "KX24XMUG", - "admin_mpg_user_id": "mpg_user_1520001", - "current_mpg_user": "mpg_user_955966", - "name": "Achille Needle", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 1, - "url": "assets/public/img/league/10.jpg", - "players": 10 - }, - { - "id": "KLGXSSUG", - "admin_mpg_user_id": "mpg_user_963519", - "current_mpg_user": "mpg_user_955966", - "name": "Rock on the grass", - "leagueStatus": 5, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "url": "assets/public/img/league/3.jpg", - "players": 8 - } - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json b/src/test/resources/__files/mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json deleted file mode 100644 index 756c353..0000000 --- a/src/test/resources/__files/mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LH9HKBTD", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_955966", - "name": "D2 MAX", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 4, - "mode": 2, - "teamStatus": 1, - "players": 10 - }, - { - "id": "LJV92C9Y", - "admin_mpg_user_id": "mpg_user_953561", - "current_mpg_user": "mpg_user_955966", - "name": "GWADA BOYS", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 1, - "players": 10 - }, - { - "id": "LJT3FXDF", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_955966", - "name": "Peter Ouch ", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 2, - "mode": 2, - "teamStatus": 1, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-1-championship-4.json b/src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-1-championship-4.json deleted file mode 100644 index f2648a8..0000000 --- a/src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-1-championship-4.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LH9HKBTD", - "admin_mpg_user_id": "mpg_user_xxx", - "current_mpg_user": "mpg_user_xxx", - "name": "D2 MAX", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 1, - "championship": 4, - "mode": 2, - "teamStatus": null - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-4-championship-4.json b/src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-4-championship-4.json deleted file mode 100644 index 162d08c..0000000 --- a/src/test/resources/__files/mpg.dashboard.LH9HKBTD-status-4-championship-4.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LH9HKBTD", - "admin_mpg_user_id": "mpg_user_xxxxx", - "current_mpg_user": "mpg_user_xxxxx", - "name": "D2 MAX", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 4, - "mode": 2, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LJT3FXDF-status-1.json b/src/test/resources/__files/mpg.dashboard.LJT3FXDF-status-1.json deleted file mode 100644 index 4b8c6e2..0000000 --- a/src/test/resources/__files/mpg.dashboard.LJT3FXDF-status-1.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LJT3FXDF", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_955966", - "name": "Peter Ouch ", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 1, - "championship": 2, - "mode": 1, - "teamStatus": null - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LJV92C9Y-LH9HKBTD-status-6.json b/src/test/resources/__files/mpg.dashboard.LJV92C9Y-LH9HKBTD-status-6.json deleted file mode 100644 index ab08f18..0000000 --- a/src/test/resources/__files/mpg.dashboard.LJV92C9Y-LH9HKBTD-status-6.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LJV92C9Y", - "admin_mpg_user_id": "mpg_user_953561", - "current_mpg_user": "mpg_user_955966", - "name": "Chèvres Show", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 6, - "championship": 1, - "mode": 1, - "teamStatus": 2, - "players": 10 - }, - { - "id": "LH9HKBTD", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_955966", - "name": "D2 MAX", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 6, - "championship": 4, - "mode": 1, - "teamStatus": 2, - "players": 10 - }, - { - "id": "LJT3FXDF", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_955966", - "name": "Brexit Powa", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 2, - "mode": 2, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LJV92C9Y.LJT3FXDF-status-4.json b/src/test/resources/__files/mpg.dashboard.LJV92C9Y.LJT3FXDF-status-4.json deleted file mode 100644 index e8cacb9..0000000 --- a/src/test/resources/__files/mpg.dashboard.LJV92C9Y.LJT3FXDF-status-4.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LJV92C9Y", - "admin_mpg_user_id": "mpg_user_XXXXXXXXXXXX", - "current_mpg_user": "mpg_user_XXXXXXXXXXXX", - "name": "FAKE L1", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 1, - "players": 10 - }, - { - "id": "LJT3FXDF", - "admin_mpg_user_id": "mpg_user_XXXXXXXXXXXX", - "current_mpg_user": "mpg_user_XXXXXXXXXXXX", - "name": "FAKE PL", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 2, - "mode": 1, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.LM65L48T.json b/src/test/resources/__files/mpg.dashboard.LM65L48T.json deleted file mode 100644 index d4c0e8a..0000000 --- a/src/test/resources/__files/mpg.dashboard.LM65L48T.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "LM65L48T", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_1920581", - "name": "Addiction League", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 6, - "mode": 1, - "teamStatus": 2, - "players": 4 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json deleted file mode 100644 index 6c311c1..0000000 --- a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "MLAX7HMK", - "admin_mpg_user_id": "mpg_user_953561", - "current_mpg_user": "mpg_user_955966", - "name": "Des Cartons", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "players": 10 - }, - { - "id": "MLEFEX6G", - "admin_mpg_user_id": "mpg_user_953561", - "current_mpg_user": "mpg_user_955966", - "name": "Des Papiers", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 4, - "mode": 2, - "teamStatus": 2, - "players": 10 - }, - { - "id": "MN7VSYBM", - "admin_mpg_user_id": "mpg_user_600737", - "current_mpg_user": "mpg_user_955966", - "name": "Le capre giocano a calcio", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 5, - "mode": 2, - "teamStatus": 2, - "players": 10 - }, - { - "id": "MLMHBPCB", - "admin_mpg_user_id": "mpg_user_35635", - "current_mpg_user": "mpg_user_955966", - "name": "The Whiner Takes It All", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 2, - "mode": 2, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - { - "id": "mpg_league_MRLUPPKN", - "name": "Chigue des Lampions ", - "mode": 1, - "status": 4, - "championship": 6, - "image": "assets/public/img/league/1.jpg" - } - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G.json b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G.json deleted file mode 100644 index 8278dfc..0000000 --- a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-MLEFEX6G.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "MLAX7HMK", - "admin_mpg_user_id": "mpg_user_953561", - "current_mpg_user": "mpg_user_955966", - "name": "Des Champions En Carton", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 2, - "players": 10 - }, - { - "id": "MLEFEX6G", - "admin_mpg_user_id": "mpg_user_953561", - "current_mpg_user": "mpg_user_955966", - "name": "Des Champions En Papier", - "url": "assets/public/img/league/1.jpg", - "leagueStatus": 4, - "championship": 4, - "mode": 2, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.XXXXXXXX-status-1.json b/src/test/resources/__files/mpg.dashboard.XXXXXXXX-status-1.json deleted file mode 100644 index d9a9ba2..0000000 --- a/src/test/resources/__files/mpg.dashboard.XXXXXXXX-status-1.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "XXXXXXXX", - "admin_mpg_user_id": "mpg_user_XXXX", - "current_mpg_user": "mpg_user_XXXX", - "name": "A fake league name", - "url": "assets/public/img/league/5.jpg", - "leagueStatus": 1, - "championship": 5, - "mode": 1, - "teamStatus": null - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.multiple-divisions.json b/src/test/resources/__files/mpg.dashboard.multiple-divisions.json deleted file mode 100644 index 38a2bef..0000000 --- a/src/test/resources/__files/mpg.dashboard.multiple-divisions.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "XXX3333", - "admin_mpg_user_id": "mpg_user_555555", - "current_mpg_user": "mpg_user_555555", - "name": "NOM DE LA LIGUE", - "url": "assets\/public\/img\/league\/6.jpg", - "leagueStatus": 5, - "championship": 3, - "mode": 2, - "teamStatus": 2, - "players": 8 - }, - { - "admin": "mpg_user_787878", - "divisions": { - "1": { - "name": "Division 1", - "users": [ - { - "id": "mpg_user_787878", - "movement": 0 - }, - { - "id": "mpg_user_555555", - "movement": 0 - } - ], - "id": "1", - "leagueId": "mpg_league_XXX3333", - "mercatoClosed": true - }, - "2": { - "name": "Division 2", - "users": [ - { - "id": "mpg_user_555555", - "movement": 0 - }, - { - "id": "mpg_user_999999", - "movement": 0 - } - ], - "id": "2", - "leagueId": "mpg_league_YYY777", - "mercatoClosed": true - } - }, - "id": "MASTER1", - "leaguesIds": [ - "mpg_league_DIVIS1", - "mpg_league_DIVIS2" - ], - "name": "", - "rating": "mpg", - "season": 1, - "status": 4, - "usersIds": [ - "mpg_user_555555", - "mpg_user_999999" - ], - "isMasterLeague": true, - "league": { - "id": "LJV92C9Y", - "admin_mpg_user_id": "mpg_user_787878", - "current_mpg_user": "mpg_user_555555", - "name": "Division 2", - "url": "assets\/public\/img\/league\/1.jpg", - "leagueStatus": 4, - "championship": 1, - "mode": 2, - "teamStatus": 1, - "players": 10, - "masterLeagueId": "mpg_master_league_MASTER1" - } - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3-teamStatus-2.json b/src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3-teamStatus-2.json deleted file mode 100644 index 4b6e1a5..0000000 --- a/src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3-teamStatus-2.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "qyOG7BuuZcv", - "admin_mpg_user_id": "mpg_user_306874", - "current_mpg_user": "mpg_user_306874", - "name": "Liga 1 Casas Bahia", - "url": "assets/public/img/league/7.jpg", - "leagueStatus": 3, - "championship": 1, - "mode": 1, - "teamStatus": 2, - "players": 10 - } - ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3.json b/src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3.json deleted file mode 100644 index 9416be7..0000000 --- a/src/test/resources/__files/mpg.dashboard.qyOG7BuuZcv-status-3.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "data": { - "leagues": [ - { - "id": "qyOG7BuuZcv", - "admin_mpg_user_id": "mpg_user_306874", - "current_mpg_user": "mpg_user_306874", - "name": "Liga 1 Casas Bahia", - "url": "assets/public/img/league/7.jpg", - "leagueStatus": 3, - "championship": 1, - "mode": 1, - "teamStatus": 0, - "players": 10 - } ], - "follow": [ - ] - } -} diff --git a/src/test/resources/__files/mpg.division.MLEFEX6G.json b/src/test/resources/__files/mpg.division.MLEFEX6G.json new file mode 100644 index 0000000..e361458 --- /dev/null +++ b/src/test/resources/__files/mpg.division.MLEFEX6G.json @@ -0,0 +1,140 @@ +{ + "createdAt": "2021-07-28T17:31:09Z", + "gameSettings": { + "autoCloseMercato": true, + "blackMarketBonuses": false, + "blackMarketLoans": true, + "blackMarketTransfers": true, + "budget": 500, + "captainAvailable": true, + "championshipId": 4, + "considerPostponedMatches": true, + "excludedClubsIds": [ + ], + "excludedPlayersIds": [ + ], + "liveBlackMarketType": 1, + "liveMercatoType": 1, + "liveSubstitutesAvailable": false, + "maxBuyableRemoveGoal": 1, + "mercatoStartDate": "2021-07-28T18:00:00Z", + "mercatoType": 1, + "midSeasonBudget": 50, + "mode": 2, + "playersByClub": -1, + "playersStatusesAvailable": true, + "quotationMax": -1, + "quotationMin": -1, + "rating": "mpg", + "usersIds": [ + "user_953561", + "user_1520001", + "user_955966", + "user_1662232", + "user_600737", + "user_35635", + "user_963519", + "user_1781770", + "user_1567579", + "user_1781796" + ] + }, + "id": "mpg_division_MLEFEX6G_3_1", + "leagueId": "mpg_league_MLEFEX6G", + "liveState": { + "currentGameWeek": 2, + "firstRealGameWeek": 2, + "formationsStatuses": { + "mpg_team_MLEFEX6G_3_1_0": 1, + "mpg_team_MLEFEX6G_3_1_1": 1, + "mpg_team_MLEFEX6G_3_1_2": 2, + "mpg_team_MLEFEX6G_3_1_3": 1, + "mpg_team_MLEFEX6G_3_1_4": 1, + "mpg_team_MLEFEX6G_3_1_5": 2, + "mpg_team_MLEFEX6G_3_1_6": 2, + "mpg_team_MLEFEX6G_3_1_7": 2, + "mpg_team_MLEFEX6G_3_1_8": 1, + "mpg_team_MLEFEX6G_3_1_9": 1 + }, + "liveAt": "2021-07-30T06:34:57Z", + "totalGameWeeks": 18, + "standings": { + "mpg_team_MLEFEX6G_3_1_5": { + "rank": 1, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_7": { + "rank": 2, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_8": { + "rank": 3, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_1": { + "rank": 4, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_4": { + "rank": 5, + "variation": 0 + }, + "mpg_team_MLEFEX6G_3_1_9": { + "rank": 6, + "variation": 0 + }, + "mpg_team_MLEFEX6G_3_1_6": { + "rank": 7, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_0": { + "rank": 8, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_2": { + "rank": 9, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_3": { + "rank": 10, + "variation": -1 + } + } + }, + "mercatoState": { + "mercatoClosed": true, + "mercatoTurnDate": "2021-07-30T06:34:29Z", + "nextMercatoTurn": "2021-08-03T18:00:00Z", + "reviveUsersSentAt": "2021-07-30T06:34:29Z", + "teamsStatuses": { + "mpg_team_MLEFEX6G_3_1_0": 3, + "mpg_team_MLEFEX6G_3_1_1": 3, + "mpg_team_MLEFEX6G_3_1_2": 3, + "mpg_team_MLEFEX6G_3_1_3": 3, + "mpg_team_MLEFEX6G_3_1_4": 3, + "mpg_team_MLEFEX6G_3_1_5": 3, + "mpg_team_MLEFEX6G_3_1_6": 3, + "mpg_team_MLEFEX6G_3_1_7": 3, + "mpg_team_MLEFEX6G_3_1_8": 3, + "mpg_team_MLEFEX6G_3_1_9": 3 + }, + "turn": 6 + }, + "status": 4, + "totalDivisions": 1, + "type": "mpg_division", + "updatedAt": "2021-07-30T17:21:58Z", + "usersTeams": { + "user_1520001": "mpg_team_MLEFEX6G_3_1_1", + "user_1567579": "mpg_team_MLEFEX6G_3_1_8", + "user_1662232": "mpg_team_MLEFEX6G_3_1_3", + "user_1781770": "mpg_team_MLEFEX6G_3_1_7", + "user_1781796": "mpg_team_MLEFEX6G_3_1_9", + "user_35635": "mpg_team_MLEFEX6G_3_1_5", + "user_600737": "mpg_team_MLEFEX6G_3_1_4", + "user_953561": "mpg_team_MLEFEX6G_3_1_0", + "user_955966": "mpg_team_MLEFEX6G_3_1_2", + "user_963519": "mpg_team_MLEFEX6G_3_1_6" + }, + "totalMissedPosts": 0 +} diff --git a/src/test/resources/__files/mpg.mercato.KX24XMUG.20181220.json b/src/test/resources/__files/mpg.mercato.KX24XMUG.20181220.json deleted file mode 100644 index bac71ba..0000000 --- a/src/test/resources/__files/mpg.mercato.KX24XMUG.20181220.json +++ /dev/null @@ -1,6274 +0,0 @@ -{ - "leagueId": "KX24XMUG", - "turn": 1, - "players": 10, - "season": 1, - "statusLeague": 3, - "currentUser": "authorized", - "championship": 1, - "statusTeam": 0, - "budget": 500, - "availablePlayers": [ - { - "club": "Saint Etienne", - "firstname": null, - "id": "player_100632", - "lastname": "Gabriel Silva", - "position": 2, - "quotation": 12, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "François", - "id": "player_100954", - "lastname": "Moubandje", - "position": 2, - "quotation": 11, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Ole", - "id": "player_101494", - "lastname": "Selnaes", - "position": 3, - "quotation": 17, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_102385", - "lastname": "Edgar Ié", - "position": 2, - "quotation": 7, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Téji", - "id": "player_102636", - "lastname": "Savanier", - "position": 3, - "quotation": 20, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Kevin", - "id": "player_102660", - "lastname": "Rimane", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Martin", - "id": "player_102732", - "lastname": "Sourzac", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Christophe", - "id": "player_102739", - "lastname": "Kerbrat", - "position": 2, - "quotation": 10, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Rachid", - "id": "player_102743", - "lastname": "Alioui", - "position": 4, - "quotation": 14, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Baissama", - "id": "player_102744", - "lastname": "Sankoh", - "position": 3, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Djibril", - "id": "player_102747", - "lastname": "Sidibe", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Bouna", - "id": "player_102760", - "lastname": "Sarr", - "position": 3, - "quotation": 14, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Brice", - "id": "player_102836", - "lastname": "Samba", - "position": 1, - "quotation": 19, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Emiliano", - "id": "player_103124", - "lastname": "Sala", - "position": 4, - "quotation": 30, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Adama", - "id": "player_103155", - "lastname": "Soumaoro", - "position": 2, - "quotation": 15, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Hendrick", - "id": "player_103733", - "lastname": "Cakin", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Baptiste", - "id": "player_104464", - "lastname": "Valette", - "position": 1, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Moussa", - "id": "player_104613", - "lastname": "Konaté", - "position": 4, - "quotation": 8, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Juan", - "id": "player_105046", - "lastname": "Bernat", - "position": 2, - "quotation": 13, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steeve", - "id": "player_105706", - "lastname": "Yago", - "position": 2, - "quotation": 4, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Yunis", - "id": "player_106263", - "lastname": "Abdelhamid", - "position": 2, - "quotation": 22, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_106320", - "lastname": "Kalifa Coulibaly", - "position": 4, - "quotation": 11, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_106821", - "lastname": "Pedro Mendes", - "position": 2, - "quotation": 20, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Lyon", - "firstname": "Memphis", - "id": "player_106824", - "lastname": "Depay", - "position": 4, - "quotation": 22, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Jordan", - "id": "player_107641", - "lastname": "Ferri", - "position": 3, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Tristan", - "id": "player_107685", - "lastname": "Dingome", - "position": 3, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Marc-Aurèle", - "id": "player_107925", - "lastname": "Caillard", - "position": 1, - "quotation": 1, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Björn", - "id": "player_108156", - "lastname": "Engels", - "position": 2, - "quotation": 15, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Stef", - "id": "player_108994", - "lastname": "Peeters", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Hiroki", - "id": "player_109404", - "lastname": "Sakai", - "position": 2, - "quotation": 13, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Souleymane", - "id": "player_10955", - "lastname": "Camara", - "position": 4, - "quotation": 5, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_109653", - "lastname": "Rony Lopes", - "position": 3, - "quotation": 13, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Bobby", - "id": "player_110369", - "lastname": "Allain", - "position": 1, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Bertrand", - "id": "player_110504", - "lastname": "Traoré", - "position": 4, - "quotation": 20, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Mehdi", - "id": "player_111002", - "lastname": "Zeffane", - "position": 2, - "quotation": 10, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Eddy", - "id": "player_111181", - "lastname": "Gnahore", - "position": 3, - "quotation": 13, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_111265", - "lastname": "Júlio Tavares", - "position": 4, - "quotation": 13, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_111291", - "lastname": "Marçal", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Emil", - "id": "player_111773", - "lastname": "Krafth", - "position": 2, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Pierre-Yves", - "id": "player_112323", - "lastname": "Polomat", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Pierrick", - "id": "player_112580", - "lastname": "Capelle", - "position": 3, - "quotation": 14, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Adama", - "id": "player_112654", - "lastname": "Mbengue", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Stefan", - "id": "player_112945", - "lastname": "Mitrovic", - "position": 2, - "quotation": 11, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Christophe", - "id": "player_113541", - "lastname": "Herelle", - "position": 2, - "quotation": 16, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Ludovic", - "id": "player_11382", - "lastname": "Butelle", - "position": 1, - "quotation": 18, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Andreas", - "id": "player_114517", - "lastname": "Cornelius", - "position": 4, - "quotation": 14, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Christopher", - "id": "player_114546", - "lastname": "Jullien", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Ruben", - "id": "player_115327", - "lastname": "Aguilar", - "position": 2, - "quotation": 23, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Mouez", - "id": "player_115357", - "lastname": "Hassen", - "position": 1, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Marseille", - "firstname": "Jordan", - "id": "player_115380", - "lastname": "Amavi", - "position": 2, - "quotation": 10, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Yoan", - "id": "player_115851", - "lastname": "Cardinale", - "position": 1, - "quotation": 9, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Rúnar Alex", - "id": "player_115918", - "lastname": "Rúnarsson", - "position": 1, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Adrien", - "id": "player_115961", - "lastname": "Thomasson", - "position": 3, - "quotation": 16, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "John Stiven", - "id": "player_116152", - "lastname": "Mendoza", - "position": 3, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_116406", - "lastname": "Marquinhos", - "position": 2, - "quotation": 24, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": null, - "id": "player_116504", - "lastname": "Pablo", - "position": 2, - "quotation": 20, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_116536", - "lastname": "Lucas Lima", - "position": 2, - "quotation": 16, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Florent", - "id": "player_116627", - "lastname": "Mollet", - "position": 3, - "quotation": 21, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Fouad", - "id": "player_119679", - "lastname": "Chafik", - "position": 2, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Diego", - "id": "player_11973", - "lastname": "Benaglio", - "position": 1, - "quotation": 15, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Christian", - "id": "player_119768", - "lastname": "Kouakou", - "position": 4, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Xavier", - "id": "player_119770", - "lastname": "Chavalerin", - "position": 3, - "quotation": 18, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Jaroslav", - "id": "player_12057", - "lastname": "Plasil", - "position": 3, - "quotation": 13, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Adrien", - "id": "player_120743", - "lastname": "Rabiot", - "position": 3, - "quotation": 25, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Paul", - "id": "player_120770", - "lastname": "Reulet", - "position": 1, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_120947", - "lastname": "Foket", - "position": 2, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Lucas", - "id": "player_121117", - "lastname": "Ocampos", - "position": 3, - "quotation": 16, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Renaud", - "id": "player_121150", - "lastname": "Ripart", - "position": 4, - "quotation": 17, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Maxime", - "id": "player_121524", - "lastname": "Poundjé", - "position": 2, - "quotation": 12, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Walter", - "id": "player_121709", - "lastname": "Benítez", - "position": 1, - "quotation": 24, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Étienne", - "id": "player_12179", - "lastname": "Didot", - "position": 3, - "quotation": 13, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Moussa", - "id": "player_122399", - "lastname": "Dembele", - "position": 4, - "quotation": 19, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Morgan", - "id": "player_122775", - "lastname": "Sanson", - "position": 3, - "quotation": 22, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Corentin", - "id": "player_126177", - "lastname": "Jean", - "position": 4, - "quotation": 7, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Jordan", - "id": "player_129478", - "lastname": "Ikoko", - "position": 2, - "quotation": 9, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Presnel", - "id": "player_129479", - "lastname": "Kimpembe", - "position": 2, - "quotation": 14, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Mike", - "id": "player_129487", - "lastname": "Maignan", - "position": 1, - "quotation": 24, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": "Mauro", - "id": "player_132197", - "lastname": "Goicoechea", - "position": 1, - "quotation": 9, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Abdallah", - "id": "player_133632", - "lastname": "Ndour", - "position": 2, - "quotation": 4, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steven", - "id": "player_141017", - "lastname": "Moreira", - "position": 2, - "quotation": 8, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Gautier", - "id": "player_141109", - "lastname": "Lloris", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_141921", - "lastname": "Sheyi Ojo", - "position": 3, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Alexander", - "id": "player_143685", - "lastname": "Djiku", - "position": 2, - "quotation": 12, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Clinton", - "id": "player_145212", - "lastname": "N'Jie", - "position": 4, - "quotation": 9, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Issiaga", - "id": "player_145221", - "lastname": "Sylla", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Lois", - "id": "player_147577", - "lastname": "Diony", - "position": 4, - "quotation": 15, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Facundo", - "id": "player_148214", - "lastname": "Píriz", - "position": 3, - "quotation": 7, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Maxwel", - "id": "player_149519", - "lastname": "Cornet", - "position": 4, - "quotation": 8, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Wylan", - "id": "player_151873", - "lastname": "Cyprien", - "position": 3, - "quotation": 18, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Adrien", - "id": "player_152338", - "lastname": "Tameze", - "position": 3, - "quotation": 15, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Cheick", - "id": "player_152865", - "lastname": "Traoré", - "position": 2, - "quotation": 7, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Jordan", - "id": "player_153014", - "lastname": "Marié", - "position": 3, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Remi", - "id": "player_153649", - "lastname": "Walter", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Flavien", - "id": "player_154011", - "lastname": "Tait", - "position": 3, - "quotation": 17, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_154770", - "lastname": "Kwon Chang-Hoon", - "position": 3, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Lebogang", - "id": "player_156692", - "lastname": "Phiri", - "position": 3, - "quotation": 8, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Baptiste", - "id": "player_157728", - "lastname": "Guillaume", - "position": 4, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_15780", - "lastname": "Dani Alves", - "position": 2, - "quotation": 13, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_158047", - "lastname": "Thiago Mendes", - "position": 3, - "quotation": 21, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_158496", - "lastname": "Touré", - "position": 3, - "quotation": 15, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Antonio", - "id": "player_159039", - "lastname": "Barreca", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Andrea", - "id": "player_15930", - "lastname": "Raggi", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Benjamin", - "id": "player_159967", - "lastname": "Bourigeaud", - "position": 3, - "quotation": 17, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Lyon", - "firstname": "Jason", - "id": "player_160729", - "lastname": "Denayer", - "position": 2, - "quotation": 15, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Harrison", - "id": "player_160985", - "lastname": "Manzala", - "position": 4, - "quotation": 6, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Wesley", - "id": "player_161034", - "lastname": "Said", - "position": 4, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Fares", - "id": "player_161039", - "lastname": "Bahlouli", - "position": 3, - "quotation": 5, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Adrien", - "id": "player_161472", - "lastname": "Hunou", - "position": 3, - "quotation": 8, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Aleksandr", - "id": "player_161950", - "lastname": "Golovin", - "position": 3, - "quotation": 10, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_162654", - "lastname": "Jemerson", - "position": 2, - "quotation": 11, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_163562", - "lastname": "Lucas Evangelista", - "position": 3, - "quotation": 8, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Matt", - "id": "player_163793", - "lastname": "Miazga", - "position": 2, - "quotation": 8, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Youssouf", - "id": "player_164474", - "lastname": "Sabaly", - "position": 2, - "quotation": 9, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Rafal", - "id": "player_165112", - "lastname": "Kurzawa", - "position": 4, - "quotation": 5, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_165659", - "lastname": "Diego Carlos", - "position": 2, - "quotation": 12, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": null, - "id": "player_165803", - "lastname": "Pedro Rebocho", - "position": 2, - "quotation": 11, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Nabil", - "id": "player_166552", - "lastname": "Fekir", - "position": 4, - "quotation": 19, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Lukas", - "id": "player_166965", - "lastname": "Lerager", - "position": 3, - "quotation": 14, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Youri", - "id": "player_166989", - "lastname": "Tielemans", - "position": 3, - "quotation": 17, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Edvinas", - "id": "player_167054", - "lastname": "Gertmonas", - "position": 1, - "quotation": 1, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Kenny", - "id": "player_167074", - "lastname": "Tete", - "position": 2, - "quotation": 7, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Gaetan", - "id": "player_167443", - "lastname": "Laborde", - "position": 4, - "quotation": 22, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_168104", - "lastname": "Steven Fortes", - "position": 2, - "quotation": 6, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Cheikh", - "id": "player_168109", - "lastname": "N'Doye", - "position": 3, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Ludovic", - "id": "player_168539", - "lastname": "Ajorque", - "position": 4, - "quotation": 8, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Baptiste", - "id": "player_168985", - "lastname": "Santamaría", - "position": 3, - "quotation": 11, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Saif-Eddine", - "id": "player_169427", - "lastname": "Khaoui", - "position": 3, - "quotation": 12, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Gaetan", - "id": "player_169860", - "lastname": "Paquiez", - "position": 2, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Allan", - "id": "player_170137", - "lastname": "Saint-Maximin", - "position": 3, - "quotation": 18, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_170409", - "lastname": "Andrei Girotto", - "position": 3, - "quotation": 12, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Hassane", - "id": "player_171099", - "lastname": "Kamara", - "position": 3, - "quotation": 7, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Mehmet", - "id": "player_171435", - "lastname": "Zeki Çelik", - "position": 2, - "quotation": 13, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Gabriel", - "id": "player_172987", - "lastname": "Boschilia", - "position": 3, - "quotation": 17, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": null, - "id": "player_173085", - "lastname": "Danilo", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Duje", - "id": "player_173271", - "lastname": "Caleta-Car", - "position": 2, - "quotation": 6, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_174272", - "lastname": "Mandrea", - "position": 1, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_174528", - "lastname": "Hamari Traoré", - "position": 2, - "quotation": 15, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Franck", - "id": "player_174655", - "lastname": "Honorat", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bongani", - "id": "player_174846", - "lastname": "Zungu", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Milan", - "id": "player_174892", - "lastname": "Gajic", - "position": 2, - "quotation": 4, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Jean Eudes", - "id": "player_174908", - "lastname": "Aholou", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_175352", - "lastname": "Manu García", - "position": 3, - "quotation": 12, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_176441", - "lastname": "Thomas Touré", - "position": 4, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Théo", - "id": "player_176443", - "lastname": "Pellenard", - "position": 2, - "quotation": 5, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jonathan", - "id": "player_176501", - "lastname": "Gradit", - "position": 2, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": null, - "id": "player_177840", - "lastname": "Nuno da Costa", - "position": 4, - "quotation": 14, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Enzo", - "id": "player_178492", - "lastname": "Crivelli", - "position": 4, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Youssouf", - "id": "player_180124", - "lastname": "Kone", - "position": 2, - "quotation": 2, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Benjamin", - "id": "player_180167", - "lastname": "Henrichs", - "position": 2, - "quotation": 14, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Ambroise", - "id": "player_180562", - "lastname": "Oyongo", - "position": 2, - "quotation": 14, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": null, - "id": "player_180835", - "lastname": "Otávio", - "position": 3, - "quotation": 13, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Jerome", - "id": "player_181439", - "lastname": "Prior", - "position": 1, - "quotation": 7, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Léo", - "id": "player_183779", - "lastname": "Dubois", - "position": 2, - "quotation": 8, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Yann", - "id": "player_184095", - "lastname": "Karamoh", - "position": 4, - "quotation": 12, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Racine", - "id": "player_184215", - "lastname": "Coly", - "position": 2, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Joris", - "id": "player_184449", - "lastname": "Kayembe", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Anthony", - "id": "player_184961", - "lastname": "Briancon", - "position": 2, - "quotation": 22, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Aaron", - "id": "player_185727", - "lastname": "Leya Iseka", - "position": 4, - "quotation": 11, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Thomas", - "id": "player_18574", - "lastname": "Mangani", - "position": 3, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Hatem", - "id": "player_18753", - "lastname": "Ben Arfa", - "position": 3, - "quotation": 20, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Alexandre", - "id": "player_189542", - "lastname": "Mendy", - "position": 4, - "quotation": 5, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bachibou", - "id": "player_189752", - "lastname": "Koita", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Ramy", - "id": "player_189791", - "lastname": "Bensebaini", - "position": 2, - "quotation": 12, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Nolan", - "id": "player_192021", - "lastname": "Mbemba", - "position": 3, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Seydou", - "id": "player_192291", - "lastname": "Sy", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_192292", - "lastname": "Almamy Touré", - "position": 2, - "quotation": 7, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Queensy", - "id": "player_192750", - "lastname": "Menig", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Juan Ferney", - "id": "player_192785", - "lastname": "Otero", - "position": 4, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_193400", - "lastname": "Doumbia", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Yacine", - "id": "player_193409", - "lastname": "Bammou", - "position": 4, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "François", - "id": "player_193512", - "lastname": "Kamano", - "position": 4, - "quotation": 24, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Quentin", - "id": "player_193537", - "lastname": "Cornette", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Valentin", - "id": "player_193539", - "lastname": "Rongier", - "position": 3, - "quotation": 13, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Bingourou", - "id": "player_194188", - "lastname": "Kamara", - "position": 1, - "quotation": 8, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Jérémie", - "id": "player_194300", - "lastname": "Porsan-Clemente", - "position": 4, - "quotation": 1, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Yann", - "id": "player_194302", - "lastname": "Bodiger", - "position": 3, - "quotation": 4, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Theo", - "id": "player_194624", - "lastname": "Valls", - "position": 3, - "quotation": 14, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Ellyes", - "id": "player_195430", - "lastname": "Skhiri", - "position": 3, - "quotation": 20, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Nicolas", - "id": "player_195735", - "lastname": "Pepe", - "position": 4, - "quotation": 38, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Jonathan", - "id": "player_195883", - "lastname": "Bamba", - "position": 3, - "quotation": 21, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Nemanja", - "id": "player_195908", - "lastname": "Radonjic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Valentín", - "id": "player_195982", - "lastname": "Vada", - "position": 3, - "quotation": 5, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Loic", - "id": "player_19670", - "lastname": "Perrin", - "position": 2, - "quotation": 11, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_197017", - "lastname": "Junior Sambia", - "position": 3, - "quotation": 12, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Ibrahim", - "id": "player_197022", - "lastname": "Cisse", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Eiji", - "id": "player_19739", - "lastname": "Kawashima", - "position": 1, - "quotation": 3, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_198065", - "lastname": "Adama Traoré", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Antonin", - "id": "player_198990", - "lastname": "Bobichon", - "position": 3, - "quotation": 13, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Cédric", - "id": "player_199375", - "lastname": "Yambéré", - "position": 2, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_199409", - "lastname": "Thiago Maia", - "position": 3, - "quotation": 11, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Alec", - "id": "player_199663", - "lastname": "Georgen", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Jean-Victor", - "id": "player_199666", - "lastname": "Makengo", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_199672", - "lastname": "Jonathan Ikone", - "position": 3, - "quotation": 12, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Firmin Ndombe", - "id": "player_199734", - "lastname": "Mubele", - "position": 4, - "quotation": 11, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Florian", - "id": "player_200666", - "lastname": "Miguel", - "position": 2, - "quotation": 9, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Clement", - "id": "player_200671", - "lastname": "Depres", - "position": 4, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_200722", - "lastname": "Walongwa", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Paul", - "id": "player_200848", - "lastname": "Bernardoni", - "position": 1, - "quotation": 19, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Assane", - "id": "player_200958", - "lastname": "Dioussé", - "position": 3, - "quotation": 8, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Thilo", - "id": "player_201057", - "lastname": "Kehrer", - "position": 2, - "quotation": 12, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Alexis", - "id": "player_201392", - "lastname": "Blin", - "position": 3, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Marcus", - "id": "player_201562", - "lastname": "Coco", - "position": 3, - "quotation": 11, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_202520", - "lastname": "Pape Cheikh", - "position": 3, - "quotation": 9, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Angelo", - "id": "player_202857", - "lastname": "Fulgini", - "position": 3, - "quotation": 10, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Sada", - "id": "player_202858", - "lastname": "Thioub", - "position": 4, - "quotation": 13, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Lucas", - "id": "player_203349", - "lastname": "Tousart", - "position": 3, - "quotation": 15, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Frederic", - "id": "player_203368", - "lastname": "Guilbert", - "position": 2, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Olivier", - "id": "player_204120", - "lastname": "Boscagli", - "position": 2, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_204123", - "lastname": "Jordan Siebatcheu", - "position": 4, - "quotation": 10, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_20468", - "lastname": "Lass Diarra", - "position": 3, - "quotation": 7, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Gaetan", - "id": "player_204715", - "lastname": "Poussin", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Thomas", - "id": "player_204719", - "lastname": "Basila", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Malang", - "id": "player_204727", - "lastname": "Sarr", - "position": 2, - "quotation": 15, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Hakim", - "id": "player_204741", - "lastname": "El Mokkedem", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Yassin", - "id": "player_204742", - "lastname": "Benrahou", - "position": 3, - "quotation": 1, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Saman", - "id": "player_205836", - "lastname": "Ghoddos", - "position": 4, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Marcus", - "id": "player_205880", - "lastname": "Thuram", - "position": 4, - "quotation": 11, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Ferland", - "id": "player_206255", - "lastname": "Mendy", - "position": 2, - "quotation": 12, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Nicolas", - "id": "player_206935", - "lastname": "Lemaitre", - "position": 1, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Sergi", - "id": "player_207756", - "lastname": "Palencia", - "position": 2, - "quotation": 11, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_208134", - "lastname": "Escales", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": "Loic", - "id": "player_208555", - "lastname": "Bessile", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Myziane", - "id": "player_208556", - "lastname": "Maolida", - "position": 4, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Stanley", - "id": "player_208559", - "lastname": "N'Soki", - "position": 3, - "quotation": 11, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Hicham", - "id": "player_208560", - "lastname": "Mahou", - "position": 3, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Imad", - "id": "player_208567", - "lastname": "Faraj", - "position": 3, - "quotation": 5, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Jeff", - "id": "player_208987", - "lastname": "Reine-Adélaïde", - "position": 3, - "quotation": 10, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jonathan", - "id": "player_209035", - "lastname": "Panzo", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Dimitry", - "id": "player_209218", - "lastname": "Bertaud", - "position": 1, - "quotation": 1, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Pietro", - "id": "player_209335", - "lastname": "Pellegri", - "position": 4, - "quotation": 7, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Vukasin", - "id": "player_210228", - "lastname": "Jovanovic", - "position": 2, - "quotation": 8, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Ibrahim", - "id": "player_210462", - "lastname": "Sangaré", - "position": 3, - "quotation": 8, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Nayef", - "id": "player_210494", - "lastname": "Aguerd", - "position": 2, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Adam", - "id": "player_210932", - "lastname": "Jakubech", - "position": 1, - "quotation": 2, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Nice", - "firstname": "Pierre", - "id": "player_212325", - "lastname": "Lees-Melou", - "position": 3, - "quotation": 16, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Toma", - "id": "player_212851", - "lastname": "Basic", - "position": 3, - "quotation": 6, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Christopher", - "id": "player_213198", - "lastname": "Nkunku", - "position": 3, - "quotation": 12, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Félix", - "id": "player_213200", - "lastname": "Eboa Eboa", - "position": 2, - "quotation": 11, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Ludovic", - "id": "player_213940", - "lastname": "Blas", - "position": 3, - "quotation": 10, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Maxime", - "id": "player_213965", - "lastname": "Lopez", - "position": 3, - "quotation": 11, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Youssef", - "id": "player_214472", - "lastname": "Aït Bennasser", - "position": 3, - "quotation": 14, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": null, - "id": "player_214473", - "lastname": "Faitout Maouassa", - "position": 3, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Nathaël", - "id": "player_214946", - "lastname": "Julan", - "position": 4, - "quotation": 9, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Enock", - "id": "player_215046", - "lastname": "Kwateng", - "position": 2, - "quotation": 12, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Timothy", - "id": "player_215473", - "lastname": "Weah", - "position": 4, - "quotation": 6, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Denis", - "id": "player_215755", - "lastname": "Poha", - "position": 3, - "quotation": 4, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_216065", - "lastname": "Rafael Leão", - "position": 4, - "quotation": 9, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Denis", - "id": "player_216227", - "lastname": "Bouanga", - "position": 3, - "quotation": 16, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": null, - "id": "player_216438", - "lastname": "Casimir Ninga", - "position": 4, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Alexandre", - "id": "player_216610", - "lastname": "Olliero", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Aly", - "id": "player_217319", - "lastname": "Ndom", - "position": 3, - "quotation": 10, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Kelvin", - "id": "player_217596", - "lastname": "Amian", - "position": 2, - "quotation": 12, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Mathieu", - "id": "player_217597", - "lastname": "Cafaro", - "position": 3, - "quotation": 13, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_217872", - "lastname": "Charles Traoré", - "position": 2, - "quotation": 6, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Jeremy", - "id": "player_217992", - "lastname": "Gelin", - "position": 2, - "quotation": 8, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Nicolas", - "id": "player_217993", - "lastname": "Janvier", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Loic", - "id": "player_218389", - "lastname": "Badiashile", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_218524", - "lastname": "Jules Keita", - "position": 4, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_218666", - "lastname": "Alexis Alegue", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Kevin", - "id": "player_218796", - "lastname": "N'Doram", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Killian", - "id": "player_219079", - "lastname": "Sanson", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Batista", - "id": "player_219286", - "lastname": "Mendy", - "position": 2, - "quotation": 2, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Alexis", - "id": "player_219289", - "lastname": "Flips", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Aurelien", - "id": "player_219292", - "lastname": "Tchouameni", - "position": 3, - "quotation": 9, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Maxence", - "id": "player_219296", - "lastname": "Caqueret", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_219873", - "lastname": "Del Castillo", - "position": 3, - "quotation": 9, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Ronael", - "id": "player_220074", - "lastname": "Pierre Gabriel", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Quentin", - "id": "player_220110", - "lastname": "Braat", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Kylian", - "id": "player_220160", - "lastname": "Mbappé", - "position": 4, - "quotation": 44, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Jules", - "id": "player_220325", - "lastname": "Koundé", - "position": 2, - "quotation": 17, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Axel", - "id": "player_220362", - "lastname": "Disasi", - "position": 2, - "quotation": 4, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Malik", - "id": "player_220943", - "lastname": "Tchokounte", - "position": 4, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bakaye", - "id": "player_220960", - "lastname": "Dibassy", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Cheick", - "id": "player_223393", - "lastname": "Timite", - "position": 3, - "quotation": 6, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_223908", - "lastname": "Luiz Araujo", - "position": 4, - "quotation": 10, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Reo", - "id": "player_225268", - "lastname": "Griffiths", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Samuel", - "id": "player_225702", - "lastname": "Kalu", - "position": 4, - "quotation": 14, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Fode", - "id": "player_225897", - "lastname": "Ballo-Toure", - "position": 2, - "quotation": 17, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Boubakary", - "id": "player_225902", - "lastname": "Soumare", - "position": 3, - "quotation": 9, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Antoine", - "id": "player_225903", - "lastname": "Bernede", - "position": 3, - "quotation": 6, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Wilfried", - "id": "player_225905", - "lastname": "Kanga", - "position": 4, - "quotation": 8, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Sofiane", - "id": "player_225997", - "lastname": "Alakouch", - "position": 2, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jan", - "id": "player_226183", - "lastname": "Repas", - "position": 3, - "quotation": 5, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Samuel", - "id": "player_226194", - "lastname": "Grandsir", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Ibrahima", - "id": "player_226451", - "lastname": "Sissoko", - "position": 3, - "quotation": 12, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_226597", - "lastname": "Gabriel", - "position": 2, - "quotation": 6, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Boubacar", - "id": "player_226944", - "lastname": "Kamara", - "position": 2, - "quotation": 11, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Rafik", - "id": "player_226949", - "lastname": "Guitane", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jordi", - "id": "player_227163", - "lastname": "Mboula", - "position": 4, - "quotation": 6, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Valentin", - "id": "player_228170", - "lastname": "Rosier", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Edouard", - "id": "player_228286", - "lastname": "Mendy", - "position": 1, - "quotation": 26, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Jordan", - "id": "player_228289", - "lastname": "Lefort", - "position": 2, - "quotation": 8, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Oualid", - "id": "player_228291", - "lastname": "El Hajjam", - "position": 2, - "quotation": 5, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": "Guessouma", - "id": "player_228292", - "lastname": "Fofana", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Ihsan", - "id": "player_228321", - "lastname": "Sacko", - "position": 3, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Dimitri", - "id": "player_228322", - "lastname": "Lienard", - "position": 3, - "quotation": 13, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Kouakou", - "id": "player_228345", - "lastname": "Koffi", - "position": 1, - "quotation": 6, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Keagan", - "id": "player_228361", - "lastname": "Dolly", - "position": 3, - "quotation": 6, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Yan", - "id": "player_229227", - "lastname": "Marillat", - "position": 1, - "quotation": 2, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Remi", - "id": "player_229230", - "lastname": "Oudin", - "position": 3, - "quotation": 12, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Lebo", - "id": "player_230337", - "lastname": "Mothiba", - "position": 4, - "quotation": 24, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Gauthier", - "id": "player_230444", - "lastname": "Banaziak", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Tanguy", - "id": "player_231372", - "lastname": "NDombele", - "position": 3, - "quotation": 16, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Houssem", - "id": "player_231961", - "lastname": "Aouar", - "position": 3, - "quotation": 23, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Lyon", - "firstname": "Martin", - "id": "player_232176", - "lastname": "Terrier", - "position": 3, - "quotation": 13, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Ismaila", - "id": "player_232185", - "lastname": "Sarr", - "position": 4, - "quotation": 25, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Patrick", - "id": "player_232197", - "lastname": "Burner", - "position": 2, - "quotation": 5, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_232240", - "lastname": "Caci", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Jordy", - "id": "player_234458", - "lastname": "Gaspar", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Arnaud", - "id": "player_235050", - "lastname": "Nordin", - "position": 3, - "quotation": 8, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Morgan", - "id": "player_235862", - "lastname": "Poaty", - "position": 2, - "quotation": 3, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Julien", - "id": "player_240131", - "lastname": "Serrano", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Safwan", - "id": "player_240132", - "lastname": "Mbae", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Moussa", - "id": "player_240149", - "lastname": "Sylla", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Oussama", - "id": "player_241398", - "lastname": "Haddadi", - "position": 2, - "quotation": 13, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_242600", - "lastname": "Xeka", - "position": 3, - "quotation": 10, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Stefan", - "id": "player_242878", - "lastname": "Bajic", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Benoit", - "id": "player_242880", - "lastname": "Badiashile Mukinayi", - "position": 2, - "quotation": 7, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Bafode", - "id": "player_242882", - "lastname": "Diakite", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Loïc", - "id": "player_242885", - "lastname": "Mbe Soh", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_242887", - "lastname": "Kephren Thuram", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_242890", - "lastname": "Dabo", - "position": 3, - "quotation": 5, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Yann", - "id": "player_242893", - "lastname": "Gboho", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Willem", - "id": "player_242894", - "lastname": "Geubbels", - "position": 4, - "quotation": 4, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Adil", - "id": "player_242896", - "lastname": "Taoui", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Reda", - "id": "player_242940", - "lastname": "Rabei", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Moussa", - "id": "player_243557", - "lastname": "Diaby", - "position": 4, - "quotation": 13, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Yanis", - "id": "player_243996", - "lastname": "Henin", - "position": 1, - "quotation": 1, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_244136", - "lastname": "Lionel Dias", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Zaydou", - "id": "player_244182", - "lastname": "Youssouf", - "position": 3, - "quotation": 5, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Ghislain", - "id": "player_244642", - "lastname": "Konan", - "position": 2, - "quotation": 16, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Namakoro", - "id": "player_244754", - "lastname": "Diallo", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "James", - "id": "player_244842", - "lastname": "Lea Siliki", - "position": 3, - "quotation": 8, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Moataz", - "id": "player_245491", - "lastname": "Zemzemi", - "position": 3, - "quotation": 5, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Bassem", - "id": "player_245496", - "lastname": "Srarfi", - "position": 3, - "quotation": 11, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Hakim", - "id": "player_245715", - "lastname": "Ouro-Sama", - "position": 2, - "quotation": 1, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Bryan", - "id": "player_245750", - "lastname": "Passi", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mickael", - "id": "player_246429", - "lastname": "Panos", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Umut", - "id": "player_246451", - "lastname": "Bozok", - "position": 4, - "quotation": 15, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Anthony", - "id": "player_247385", - "lastname": "Racioppi", - "position": 1, - "quotation": 1, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Amine", - "id": "player_247400", - "lastname": "Gouiri", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Romain", - "id": "player_247439", - "lastname": "Cagnon", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Randal", - "id": "player_247693", - "lastname": "Kolo Muani", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Duplexe Tchamba", - "id": "player_250510", - "lastname": "Bangou", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Sami", - "id": "player_250588", - "lastname": "Ben Amar", - "position": 4, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": null, - "id": "player_26894", - "lastname": "Dante", - "position": 2, - "quotation": 22, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Mathieu", - "id": "player_26896", - "lastname": "Bodmer", - "position": 2, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mathieu", - "id": "player_27334", - "lastname": "Debuchy", - "position": 2, - "quotation": 14, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Yoann", - "id": "player_27669", - "lastname": "Gourcuff", - "position": 3, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Stéphane", - "id": "player_27671", - "lastname": "Mbia", - "position": 3, - "quotation": 7, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Jimmy", - "id": "player_27675", - "lastname": "Briand", - "position": 4, - "quotation": 16, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_28136", - "lastname": "Hilton", - "position": 2, - "quotation": 18, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Jacques-Alaixys", - "id": "player_32367", - "lastname": "Romao", - "position": 3, - "quotation": 16, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Paul", - "id": "player_37758", - "lastname": "Baysse", - "position": 2, - "quotation": 11, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Yohann", - "id": "player_37769", - "lastname": "Pelé", - "position": 1, - "quotation": 11, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Ludovic", - "id": "player_37776", - "lastname": "Baal", - "position": 2, - "quotation": 4, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Jérémy", - "id": "player_37832", - "lastname": "Morel", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Dimitri", - "id": "player_37901", - "lastname": "Payet", - "position": 3, - "quotation": 23, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_37938", - "lastname": "Danzé", - "position": 2, - "quotation": 4, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Jessy", - "id": "player_37990", - "lastname": "Moulin", - "position": 1, - "quotation": 9, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Mouhamadou", - "id": "player_37995", - "lastname": "Dabo", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Daniel", - "id": "player_38002", - "lastname": "Congré", - "position": 2, - "quotation": 19, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Kévin", - "id": "player_38261", - "lastname": "Monnet-Paquet", - "position": 4, - "quotation": 10, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Christophe", - "id": "player_38265", - "lastname": "Jallet", - "position": 2, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Stéphane", - "id": "player_38314", - "lastname": "Ruffier", - "position": 1, - "quotation": 19, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Lille", - "firstname": "Loïc", - "id": "player_38419", - "lastname": "Remy", - "position": 4, - "quotation": 10, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_38580", - "lastname": "José Fonte", - "position": 2, - "quotation": 14, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": null, - "id": "player_39294", - "lastname": "Rolando", - "position": 2, - "quotation": 9, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Moustapha", - "id": "player_39905", - "lastname": "Diallo", - "position": 3, - "quotation": 7, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Denis", - "id": "player_40511", - "lastname": "Petric", - "position": 1, - "quotation": 6, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Edinson", - "id": "player_40720", - "lastname": "Cavani", - "position": 4, - "quotation": 40, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Prince", - "id": "player_40808", - "lastname": "Oniangué", - "position": 3, - "quotation": 14, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Claudio", - "id": "player_40809", - "lastname": "Beauvue", - "position": 4, - "quotation": 11, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Jérémy", - "id": "player_40833", - "lastname": "Pied", - "position": 2, - "quotation": 7, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Gianluigi", - "id": "player_4126", - "lastname": "Buffon", - "position": 1, - "quotation": 17, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Neven", - "id": "player_41452", - "lastname": "Subotic", - "position": 2, - "quotation": 7, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Adil", - "id": "player_41795", - "lastname": "Rami", - "position": 2, - "quotation": 11, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_422159", - "lastname": "Fernando Costanza", - "position": 2, - "quotation": 3, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Kouadio", - "id": "player_422230", - "lastname": "Dabila", - "position": 2, - "quotation": 10, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_422250", - "lastname": "Piechocki", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Matteo", - "id": "player_423870", - "lastname": "Ahlinvi", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Derick", - "id": "player_423955", - "lastname": "Osei Yaw", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Ismael", - "id": "player_42416", - "lastname": "Traoré", - "position": 2, - "quotation": 17, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Mario", - "id": "player_42493", - "lastname": "Balotelli", - "position": 4, - "quotation": 15, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Alexander", - "id": "player_42518", - "lastname": "Kacaniklic", - "position": 3, - "quotation": 6, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Youcef", - "id": "player_425614", - "lastname": "Atal", - "position": 2, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Eric Maxim", - "id": "player_42564", - "lastname": "Choupo-Moting", - "position": 3, - "quotation": 11, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Laurent", - "id": "player_42584", - "lastname": "Ciman", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Benoit", - "id": "player_42713", - "lastname": "Costil", - "position": 1, - "quotation": 19, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Jérémy", - "id": "player_42714", - "lastname": "Sorbon", - "position": 2, - "quotation": 10, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Régis", - "id": "player_42766", - "lastname": "Gurtner", - "position": 1, - "quotation": 19, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Nicolas", - "id": "player_428989", - "lastname": "Cozza", - "position": 2, - "quotation": 10, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Chahreddine", - "id": "player_429235", - "lastname": "Boukholda", - "position": 3, - "quotation": 3, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_431647", - "lastname": "Bana", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Samuel", - "id": "player_432489", - "lastname": "Moutoussamy", - "position": 3, - "quotation": 9, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Oumar", - "id": "player_432649", - "lastname": "Solet", - "position": 2, - "quotation": 1, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Kévin", - "id": "player_433640", - "lastname": "Zohi", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Scotty", - "id": "player_433666", - "lastname": "Sadzoute", - "position": 4, - "quotation": 1, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_433731", - "lastname": "Buades", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Ignatius", - "id": "player_433771", - "lastname": "Ganago", - "position": 4, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Over", - "id": "player_433830", - "lastname": "Mandanda", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Gerzino", - "id": "player_435731", - "lastname": "Nyamsi", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Ismael", - "id": "player_436644", - "lastname": "Aaneba", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Jessy", - "id": "player_436658", - "lastname": "Deminguet", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Benjamin", - "id": "player_436662", - "lastname": "Verite", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Andy", - "id": "player_437501", - "lastname": "Pelmard", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Yacine", - "id": "player_437504", - "lastname": "Adli", - "position": 3, - "quotation": 1, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Wilson", - "id": "player_437505", - "lastname": "Isidor", - "position": 4, - "quotation": 1, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Sebastien", - "id": "player_437721", - "lastname": "Cibois", - "position": 1, - "quotation": 4, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Virgiliu", - "id": "player_437724", - "lastname": "Postolachi", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Giulian", - "id": "player_437753", - "lastname": "Biancone", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Gobe", - "id": "player_437754", - "lastname": "Gouano", - "position": 4, - "quotation": 1, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Han-Noah", - "id": "player_437757", - "lastname": "Massengo", - "position": 3, - "quotation": 7, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Driss", - "id": "player_437950", - "lastname": "Khalid", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Lenny", - "id": "player_438015", - "lastname": "Pintor", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Kelyan", - "id": "player_439122", - "lastname": "Guessoum", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Thomas", - "id": "player_439205", - "lastname": "Carrique", - "position": 2, - "quotation": 2, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Yoel", - "id": "player_439711", - "lastname": "Armougom", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Yannis", - "id": "player_440058", - "lastname": "Clementia", - "position": 1, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Santy", - "id": "player_440114", - "lastname": "Ngom", - "position": 4, - "quotation": 6, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Arnold", - "id": "player_44082", - "lastname": "Bouka Moutou", - "position": 2, - "quotation": 4, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Romain", - "id": "player_441240", - "lastname": "Faivre", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Yannick", - "id": "player_44138", - "lastname": "Cahuzac", - "position": 3, - "quotation": 10, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Mohamed Lamine", - "id": "player_441575", - "lastname": "Diaby", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Christopher", - "id": "player_441576", - "lastname": "Rocchia", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Fethi", - "id": "player_44199", - "lastname": "Harek", - "position": 2, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mahdi", - "id": "player_442264", - "lastname": "Camara", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Damien", - "id": "player_44287", - "lastname": "Da Silva", - "position": 2, - "quotation": 14, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Romain", - "id": "player_44357", - "lastname": "Genevois", - "position": 2, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Steve", - "id": "player_44413", - "lastname": "Mandanda", - "position": 1, - "quotation": 16, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Dylan", - "id": "player_444465", - "lastname": "Chambost", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Johann", - "id": "player_44475", - "lastname": "Carrasso", - "position": 1, - "quotation": 4, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Mapou", - "id": "player_44488", - "lastname": "Yanga-Mbiwa", - "position": 2, - "quotation": 3, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Yannis", - "id": "player_446006", - "lastname": "Ammour", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Farid", - "id": "player_447389", - "lastname": "El Melali", - "position": 3, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Rayan", - "id": "player_448514", - "lastname": "Ait Nouri", - "position": 2, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Ciprian", - "id": "player_44898", - "lastname": "Tatarusanu", - "position": 1, - "quotation": 18, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Enzo", - "id": "player_449718", - "lastname": "Loiodice", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Matthieu", - "id": "player_45032", - "lastname": "Dreyer", - "position": 1, - "quotation": 3, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Lamine", - "id": "player_45076", - "lastname": "Koné", - "position": 2, - "quotation": 13, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Lucas", - "id": "player_45084", - "lastname": "Deaux", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Cheikh", - "id": "player_45136", - "lastname": "M'Bengue", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Senou", - "id": "player_454964", - "lastname": "Coulibaly", - "position": 2, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Romain", - "id": "player_45505", - "lastname": "Thomas", - "position": 2, - "quotation": 13, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Clement", - "id": "player_456193", - "lastname": "Vidal", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Kylian", - "id": "player_456194", - "lastname": "Kaiboue", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Amir", - "id": "player_456195", - "lastname": "Adouyev", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Sacha", - "id": "player_456299", - "lastname": "Marasovic", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Lucas", - "id": "player_456300", - "lastname": "Perrin", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Levi", - "id": "player_456355", - "lastname": "Ntumba", - "position": 1, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Thomas", - "id": "player_457225", - "lastname": "Callens", - "position": 1, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Issa", - "id": "player_457230", - "lastname": "Marega", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Ibrahim", - "id": "player_457234", - "lastname": "Diarra", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Michael", - "id": "player_457235", - "lastname": "Nilor", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Dorian", - "id": "player_457242", - "lastname": "Bertrand", - "position": 4, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Colin", - "id": "player_458250", - "lastname": "Dagba", - "position": 2, - "quotation": 6, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Alexandre", - "id": "player_458251", - "lastname": "Fressange", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Yassin", - "id": "player_459560", - "lastname": "Fekir", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_460265", - "lastname": "Robert Navarro", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Sofiane", - "id": "player_460267", - "lastname": "Diop", - "position": 3, - "quotation": 8, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Percy", - "id": "player_460630", - "lastname": "Ruiz", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Mathieu", - "id": "player_461384", - "lastname": "Goncalves", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_461397", - "lastname": "Chabrolle", - "position": 4, - "quotation": 1, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Valentin", - "id": "player_461415", - "lastname": "Gendrey", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Sanasi", - "id": "player_461418", - "lastname": "Sy", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Jean-Claude", - "id": "player_461428", - "lastname": "Ngando", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Gaoussou", - "id": "player_461433", - "lastname": "Traore", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Martin", - "id": "player_461439", - "lastname": "Gneba", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Antonin", - "id": "player_461442", - "lastname": "Gauducheau", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Djegui", - "id": "player_461827", - "lastname": "Koita", - "position": 2, - "quotation": 6, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Arton", - "id": "player_461833", - "lastname": "Zekaj", - "position": 3, - "quotation": 6, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Patrick", - "id": "player_461840", - "lastname": "Bahanack", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Louis", - "id": "player_461908", - "lastname": "Pelletier", - "position": 1, - "quotation": 1, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Mohamed", - "id": "player_461910", - "lastname": "Simakan", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Youssouf", - "id": "player_461913", - "lastname": "Fofana", - "position": 3, - "quotation": 6, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Jean-Clair", - "id": "player_462116", - "lastname": "Todibo", - "position": 3, - "quotation": 8, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "William", - "id": "player_462424", - "lastname": "Saliba", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Makhtar", - "id": "player_462425", - "lastname": "Gueye", - "position": 4, - "quotation": 1, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Georginio", - "id": "player_463067", - "lastname": "Rutter", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_464192", - "lastname": "Pinson", - "position": 4, - "quotation": 3, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Yohan", - "id": "player_464193", - "lastname": "Bilingi", - "position": 2, - "quotation": 2, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Ángel", - "id": "player_46497", - "lastname": "Di María", - "position": 3, - "quotation": 31, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Théo", - "id": "player_465057", - "lastname": "Vermot", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_465299", - "lastname": "Mancini", - "position": 3, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Abdallah", - "id": "player_467625", - "lastname": "Ali Mohamed", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Ousseynou", - "id": "player_468430", - "lastname": "Ndiaye", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Boulaye", - "id": "player_468488", - "lastname": "Dia", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Kalidou", - "id": "player_468489", - "lastname": "Sidibe", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Matthias", - "id": "player_468490", - "lastname": "Phaeton", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Mehdi", - "id": "player_468496", - "lastname": "Boudjemaa", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Thody Elie", - "id": "player_469192", - "lastname": "Youan", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Eddy", - "id": "player_469204", - "lastname": "Sylvestre", - "position": 3, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Yanis", - "id": "player_469205", - "lastname": "Hamache", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Kevin", - "id": "player_469318", - "lastname": "Mouanga", - "position": 2, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Steven", - "id": "player_469319", - "lastname": "Ako", - "position": 2, - "quotation": 1, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Nathan", - "id": "player_469323", - "lastname": "N'Goumou Minpol", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Sory", - "id": "player_471212", - "lastname": "Doumbouya", - "position": 4, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Evens", - "id": "player_471213", - "lastname": "Joseph", - "position": 3, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Alexandre", - "id": "player_471437", - "lastname": "Philiponeau", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Imran", - "id": "player_471471", - "lastname": "Louza", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Stanley", - "id": "player_471841", - "lastname": "Segarel", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Matis", - "id": "player_471924", - "lastname": "Carvalho", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Younn", - "id": "player_472187", - "lastname": "Zahary", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Kostas", - "id": "player_47434", - "lastname": "Mitroglou", - "position": 4, - "quotation": 11, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": null, - "id": "player_47654", - "lastname": "Luiz Gustavo", - "position": 3, - "quotation": 15, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Younousse", - "id": "player_48768", - "lastname": "Sankharé", - "position": 3, - "quotation": 16, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Radamel", - "id": "player_48847", - "lastname": "Falcao", - "position": 4, - "quotation": 25, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "John", - "id": "player_48897", - "lastname": "Bostock", - "position": 3, - "quotation": 9, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Tomas", - "id": "player_49181", - "lastname": "Hubocan", - "position": 2, - "quotation": 3, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Elderson", - "id": "player_49272", - "lastname": "Echiéjilé", - "position": 2, - "quotation": 6, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Yann", - "id": "player_49396", - "lastname": "M'Vila", - "position": 3, - "quotation": 18, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Khaled", - "id": "player_49502", - "lastname": "Adénon", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Mathieu", - "id": "player_49730", - "lastname": "Dossevi", - "position": 3, - "quotation": 14, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Kevin", - "id": "player_49887", - "lastname": "Strootman", - "position": 3, - "quotation": 14, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Anatole", - "id": "player_50036", - "lastname": "Ngamukol", - "position": 4, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Emmanuel", - "id": "player_50326", - "lastname": "Imorou", - "position": 2, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Stevan", - "id": "player_50442", - "lastname": "Jovetic", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Ronny", - "id": "player_50996", - "lastname": "Rodelin", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_51090", - "lastname": "Thiago Silva", - "position": 2, - "quotation": 22, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Pierrick", - "id": "player_51394", - "lastname": "Valdivia", - "position": 3, - "quotation": 5, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Nolan", - "id": "player_51525", - "lastname": "Roux", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Marvin", - "id": "player_51634", - "lastname": "Martin", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Jakob", - "id": "player_51850", - "lastname": "Johansson", - "position": 3, - "quotation": 9, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_52573", - "lastname": "Marcelo", - "position": 2, - "quotation": 16, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Damien", - "id": "player_52782", - "lastname": "Le Tallec", - "position": 2, - "quotation": 22, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Frederic", - "id": "player_54413", - "lastname": "Sammaritano", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_54518", - "lastname": "Manceau", - "position": 2, - "quotation": 8, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_54771", - "lastname": "Fabio", - "position": 2, - "quotation": 9, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_54772", - "lastname": "Rafael", - "position": 2, - "quotation": 14, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Nacer", - "id": "player_54908", - "lastname": "Chadli", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Clément", - "id": "player_55305", - "lastname": "Grenier", - "position": 3, - "quotation": 19, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Franck", - "id": "player_55313", - "lastname": "Tabanou", - "position": 2, - "quotation": 8, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Yannis", - "id": "player_55343", - "lastname": "Salibur", - "position": 3, - "quotation": 14, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Robert", - "id": "player_55711", - "lastname": "Beric", - "position": 4, - "quotation": 9, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Benjamin", - "id": "player_55948", - "lastname": "André", - "position": 3, - "quotation": 16, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Grégory", - "id": "player_56995", - "lastname": "Sertic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Timothée", - "id": "player_57136", - "lastname": "Kolodziejczak", - "position": 2, - "quotation": 17, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Abdoulaye", - "id": "player_57266", - "lastname": "Bamba", - "position": 2, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Yoann", - "id": "player_58309", - "lastname": "Andreu", - "position": 2, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_58476", - "lastname": "Rui Fonte", - "position": 4, - "quotation": 9, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_58875", - "lastname": "Fontaine", - "position": 2, - "quotation": 8, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_59229", - "lastname": "Pelé", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Max-Alain", - "id": "player_59741", - "lastname": "Gradel", - "position": 4, - "quotation": 22, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Mathieu", - "id": "player_59956", - "lastname": "Gorgelin", - "position": 1, - "quotation": 8, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_59957", - "lastname": "Anthony Lopes", - "position": 1, - "quotation": 20, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Rene", - "id": "player_60070", - "lastname": "Krhin", - "position": 3, - "quotation": 9, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Wahbi", - "id": "player_60165", - "lastname": "Khazri", - "position": 3, - "quotation": 34, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Erwin", - "id": "player_60189", - "lastname": "Zelazny", - "position": 1, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Danijel", - "id": "player_60582", - "lastname": "Subasic", - "position": 1, - "quotation": 8, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Marco", - "id": "player_61170", - "lastname": "Verratti", - "position": 3, - "quotation": 18, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_61272", - "lastname": "Ganso", - "position": 3, - "quotation": 7, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_61278", - "lastname": "Neymar", - "position": 4, - "quotation": 52, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Jimmy", - "id": "player_61704", - "lastname": "Durmaz", - "position": 3, - "quotation": 12, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Karl-Johan", - "id": "player_61741", - "lastname": "Johnsson", - "position": 1, - "quotation": 13, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_62128", - "lastname": "Cristian", - "position": 4, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Saint Etienne", - "firstname": "Rémy", - "id": "player_66957", - "lastname": "Cabella", - "position": 3, - "quotation": 30, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_67272", - "lastname": "Gonçalves", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Romain", - "id": "player_67276", - "lastname": "Hamouma", - "position": 3, - "quotation": 13, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Yeni", - "id": "player_68157", - "lastname": "N'Gbakoto", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Mateo", - "id": "player_68545", - "lastname": "Pavlovic", - "position": 2, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Petar", - "id": "player_68862", - "lastname": "Skuletic", - "position": 4, - "quotation": 10, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Kamil", - "id": "player_71403", - "lastname": "Glik", - "position": 2, - "quotation": 14, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Igor", - "id": "player_71797", - "lastname": "Lewczuk", - "position": 2, - "quotation": 8, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Paul", - "id": "player_72177", - "lastname": "Lasne", - "position": 3, - "quotation": 12, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Benjamin", - "id": "player_73667", - "lastname": "Jeannot", - "position": 4, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Nicolas", - "id": "player_73879", - "lastname": "de Preville", - "position": 4, - "quotation": 7, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Andy", - "id": "player_73965", - "lastname": "Delort", - "position": 4, - "quotation": 23, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Marc", - "id": "player_74299", - "lastname": "Vidal", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_78541", - "lastname": "Suk Hyun-Jun", - "position": 4, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Abdoulaye", - "id": "player_79625", - "lastname": "Diallo", - "position": 1, - "quotation": 12, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Idriss", - "id": "player_79917", - "lastname": "Saadi", - "position": 4, - "quotation": 7, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_80357", - "lastname": "Mexer", - "position": 2, - "quotation": 12, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Aymen", - "id": "player_80582", - "lastname": "Abdennour", - "position": 2, - "quotation": 4, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Yaya", - "id": "player_80711", - "lastname": "Sanogo", - "position": 4, - "quotation": 7, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Jeremy", - "id": "player_80904", - "lastname": "Grimm", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Férébory", - "id": "player_81118", - "lastname": "Doré", - "position": 4, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Serigne Modou", - "id": "player_81895", - "lastname": "Kara Mbodji", - "position": 2, - "quotation": 8, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_82184", - "lastname": "Majeed Waris", - "position": 4, - "quotation": 10, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Nicolas", - "id": "player_82313", - "lastname": "Pallois", - "position": 2, - "quotation": 9, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Panagiotis", - "id": "player_82642", - "lastname": "Vlachodimos", - "position": 3, - "quotation": 5, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Mickael", - "id": "player_83279", - "lastname": "Le Bihan", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Kolbeinn", - "id": "player_83758", - "lastname": "Sigthorsson", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Alphonse", - "id": "player_84182", - "lastname": "Areola", - "position": 1, - "quotation": 18, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Jonas", - "id": "player_84366", - "lastname": "Martin", - "position": 3, - "quotation": 22, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_85548", - "lastname": "Pajot", - "position": 3, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Wesley", - "id": "player_85565", - "lastname": "Lautoa", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Romain", - "id": "player_85595", - "lastname": "Métanire", - "position": 2, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Matz", - "id": "player_85633", - "lastname": "Sels", - "position": 1, - "quotation": 17, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Pablo", - "id": "player_85659", - "lastname": "Chavarria", - "position": 4, - "quotation": 13, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Romain", - "id": "player_86158", - "lastname": "Amalfitano", - "position": 3, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Lionel", - "id": "player_86413", - "lastname": "Carole", - "position": 2, - "quotation": 12, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Benjamin", - "id": "player_86446", - "lastname": "Corgnet", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Jonathan", - "id": "player_86598", - "lastname": "Ligali", - "position": 1, - "quotation": 3, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Zacharie", - "id": "player_86811", - "lastname": "Boucher", - "position": 1, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Benjamin", - "id": "player_86873", - "lastname": "Lecomte", - "position": 1, - "quotation": 25, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Florent", - "id": "player_8747", - "lastname": "Balmont", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Herve", - "id": "player_88036", - "lastname": "Lybohy", - "position": 2, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_88931", - "lastname": "Limbombe", - "position": 3, - "quotation": 11, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Nicolas", - "id": "player_89038", - "lastname": "Benezet", - "position": 3, - "quotation": 15, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Layvin", - "id": "player_89068", - "lastname": "Kurzawa", - "position": 2, - "quotation": 5, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jeff", - "id": "player_89179", - "lastname": "Louis", - "position": 3, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Loïck", - "id": "player_92258", - "lastname": "Landre", - "position": 2, - "quotation": 13, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Kenny", - "id": "player_92527", - "lastname": "Lala", - "position": 2, - "quotation": 20, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Mickaël", - "id": "player_92559", - "lastname": "Alphonse", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Faycal", - "id": "player_92724", - "lastname": "Fajr", - "position": 3, - "quotation": 18, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Julian", - "id": "player_92985", - "lastname": "Draxler", - "position": 3, - "quotation": 18, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_93127", - "lastname": "Jesé", - "position": 4, - "quotation": 5, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Loïc", - "id": "player_93498", - "lastname": "Puyo", - "position": 3, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Thomas", - "id": "player_93605", - "lastname": "Meunier", - "position": 2, - "quotation": 24, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Baptiste", - "id": "player_93619", - "lastname": "Reynet", - "position": 1, - "quotation": 14, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Pablo", - "id": "player_93622", - "lastname": "Martinez", - "position": 2, - "quotation": 19, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Tomas", - "id": "player_94151", - "lastname": "Koubek", - "position": 1, - "quotation": 10, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Chaker", - "id": "player_94181", - "lastname": "Alhadhur", - "position": 2, - "quotation": 2, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_95434", - "lastname": "Thauvin", - "position": 3, - "quotation": 41, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Saliou", - "id": "player_95527", - "lastname": "Ciss", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Thomas", - "id": "player_96616", - "lastname": "Monconduit", - "position": 3, - "quotation": 13, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "M'Baye", - "id": "player_96764", - "lastname": "Niang", - "position": 4, - "quotation": 11, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Valère", - "id": "player_97041", - "lastname": "Germain", - "position": 4, - "quotation": 12, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Maxime", - "id": "player_97288", - "lastname": "Dupé", - "position": 1, - "quotation": 9, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Nîmes", - "firstname": "Abdelmalik", - "id": "player_97442", - "lastname": "Hsissane", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Ismael", - "id": "player_97443", - "lastname": "Diomande", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Mehdi", - "id": "player_98746", - "lastname": "Abeid", - "position": 3, - "quotation": 16, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Naim", - "id": "player_98788", - "lastname": "Sliti", - "position": 3, - "quotation": 15, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_98798", - "lastname": "Prince", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Stéphane", - "id": "player_98828", - "lastname": "Bahoken", - "position": 4, - "quotation": 16, - "teamid": "2128", - "ultraPosition": 40 - } - ], - "userPlayers": [ - ], - "preparation": [ - { - "id": "player_61278", - "price": 500 - } - ], - "nextMatchIn": 77796, - "matchesToComeMercato": 19, - "matchesToComeReal": 19 -} diff --git a/src/test/resources/__files/mpg.mercato.ligue-1.20181220.json b/src/test/resources/__files/mpg.mercato.ligue-1.20181220.json deleted file mode 100644 index 46c3ed7..0000000 --- a/src/test/resources/__files/mpg.mercato.ligue-1.20181220.json +++ /dev/null @@ -1,6260 +0,0 @@ -{ - "mercato": [ - { - "id": "player_61278", - "price": 500 - } - ], - "players": [ - { - "club": "Saint Etienne", - "firstname": null, - "id": "player_100632", - "lastname": "Gabriel Silva", - "position": 2, - "quotation": 12, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "François", - "id": "player_100954", - "lastname": "Moubandje", - "position": 2, - "quotation": 11, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Ole", - "id": "player_101494", - "lastname": "Selnaes", - "position": 3, - "quotation": 17, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_102385", - "lastname": "Edgar Ié", - "position": 2, - "quotation": 7, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Téji", - "id": "player_102636", - "lastname": "Savanier", - "position": 3, - "quotation": 20, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Kevin", - "id": "player_102660", - "lastname": "Rimane", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Martin", - "id": "player_102732", - "lastname": "Sourzac", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Christophe", - "id": "player_102739", - "lastname": "Kerbrat", - "position": 2, - "quotation": 10, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Rachid", - "id": "player_102743", - "lastname": "Alioui", - "position": 4, - "quotation": 14, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Baissama", - "id": "player_102744", - "lastname": "Sankoh", - "position": 3, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Djibril", - "id": "player_102747", - "lastname": "Sidibe", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Bouna", - "id": "player_102760", - "lastname": "Sarr", - "position": 3, - "quotation": 14, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Brice", - "id": "player_102836", - "lastname": "Samba", - "position": 1, - "quotation": 19, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Emiliano", - "id": "player_103124", - "lastname": "Sala", - "position": 4, - "quotation": 30, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Adama", - "id": "player_103155", - "lastname": "Soumaoro", - "position": 2, - "quotation": 15, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Hendrick", - "id": "player_103733", - "lastname": "Cakin", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Baptiste", - "id": "player_104464", - "lastname": "Valette", - "position": 1, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Moussa", - "id": "player_104613", - "lastname": "Konaté", - "position": 4, - "quotation": 8, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Juan", - "id": "player_105046", - "lastname": "Bernat", - "position": 2, - "quotation": 13, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steeve", - "id": "player_105706", - "lastname": "Yago", - "position": 2, - "quotation": 4, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Yunis", - "id": "player_106263", - "lastname": "Abdelhamid", - "position": 2, - "quotation": 22, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_106320", - "lastname": "Kalifa Coulibaly", - "position": 4, - "quotation": 11, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_106821", - "lastname": "Pedro Mendes", - "position": 2, - "quotation": 20, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Lyon", - "firstname": "Memphis", - "id": "player_106824", - "lastname": "Depay", - "position": 4, - "quotation": 22, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Jordan", - "id": "player_107641", - "lastname": "Ferri", - "position": 3, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Tristan", - "id": "player_107685", - "lastname": "Dingome", - "position": 3, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Marc-Aurèle", - "id": "player_107925", - "lastname": "Caillard", - "position": 1, - "quotation": 1, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Björn", - "id": "player_108156", - "lastname": "Engels", - "position": 2, - "quotation": 15, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Stef", - "id": "player_108994", - "lastname": "Peeters", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Hiroki", - "id": "player_109404", - "lastname": "Sakai", - "position": 2, - "quotation": 13, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Souleymane", - "id": "player_10955", - "lastname": "Camara", - "position": 4, - "quotation": 5, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_109653", - "lastname": "Rony Lopes", - "position": 3, - "quotation": 13, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Bobby", - "id": "player_110369", - "lastname": "Allain", - "position": 1, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Bertrand", - "id": "player_110504", - "lastname": "Traoré", - "position": 4, - "quotation": 20, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Mehdi", - "id": "player_111002", - "lastname": "Zeffane", - "position": 2, - "quotation": 10, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Eddy", - "id": "player_111181", - "lastname": "Gnahore", - "position": 3, - "quotation": 13, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_111265", - "lastname": "Júlio Tavares", - "position": 4, - "quotation": 13, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_111291", - "lastname": "Marçal", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Emil", - "id": "player_111773", - "lastname": "Krafth", - "position": 2, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Pierre-Yves", - "id": "player_112323", - "lastname": "Polomat", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Pierrick", - "id": "player_112580", - "lastname": "Capelle", - "position": 3, - "quotation": 14, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Adama", - "id": "player_112654", - "lastname": "Mbengue", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Stefan", - "id": "player_112945", - "lastname": "Mitrovic", - "position": 2, - "quotation": 11, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Christophe", - "id": "player_113541", - "lastname": "Herelle", - "position": 2, - "quotation": 16, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Ludovic", - "id": "player_11382", - "lastname": "Butelle", - "position": 1, - "quotation": 18, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Andreas", - "id": "player_114517", - "lastname": "Cornelius", - "position": 4, - "quotation": 14, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Christopher", - "id": "player_114546", - "lastname": "Jullien", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Ruben", - "id": "player_115327", - "lastname": "Aguilar", - "position": 2, - "quotation": 23, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Mouez", - "id": "player_115357", - "lastname": "Hassen", - "position": 1, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Marseille", - "firstname": "Jordan", - "id": "player_115380", - "lastname": "Amavi", - "position": 2, - "quotation": 10, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Yoan", - "id": "player_115851", - "lastname": "Cardinale", - "position": 1, - "quotation": 9, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Rúnar Alex", - "id": "player_115918", - "lastname": "Rúnarsson", - "position": 1, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Adrien", - "id": "player_115961", - "lastname": "Thomasson", - "position": 3, - "quotation": 16, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "John Stiven", - "id": "player_116152", - "lastname": "Mendoza", - "position": 3, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_116406", - "lastname": "Marquinhos", - "position": 2, - "quotation": 24, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": null, - "id": "player_116504", - "lastname": "Pablo", - "position": 2, - "quotation": 20, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_116536", - "lastname": "Lucas Lima", - "position": 2, - "quotation": 16, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Florent", - "id": "player_116627", - "lastname": "Mollet", - "position": 3, - "quotation": 21, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Fouad", - "id": "player_119679", - "lastname": "Chafik", - "position": 2, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Diego", - "id": "player_11973", - "lastname": "Benaglio", - "position": 1, - "quotation": 15, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Christian", - "id": "player_119768", - "lastname": "Kouakou", - "position": 4, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Xavier", - "id": "player_119770", - "lastname": "Chavalerin", - "position": 3, - "quotation": 18, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Jaroslav", - "id": "player_12057", - "lastname": "Plasil", - "position": 3, - "quotation": 13, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Adrien", - "id": "player_120743", - "lastname": "Rabiot", - "position": 3, - "quotation": 25, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Paul", - "id": "player_120770", - "lastname": "Reulet", - "position": 1, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_120947", - "lastname": "Foket", - "position": 2, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Lucas", - "id": "player_121117", - "lastname": "Ocampos", - "position": 3, - "quotation": 16, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Renaud", - "id": "player_121150", - "lastname": "Ripart", - "position": 4, - "quotation": 17, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Maxime", - "id": "player_121524", - "lastname": "Poundjé", - "position": 2, - "quotation": 12, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Walter", - "id": "player_121709", - "lastname": "Benítez", - "position": 1, - "quotation": 24, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Étienne", - "id": "player_12179", - "lastname": "Didot", - "position": 3, - "quotation": 13, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Moussa", - "id": "player_122399", - "lastname": "Dembele", - "position": 4, - "quotation": 19, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Morgan", - "id": "player_122775", - "lastname": "Sanson", - "position": 3, - "quotation": 22, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Corentin", - "id": "player_126177", - "lastname": "Jean", - "position": 4, - "quotation": 7, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Jordan", - "id": "player_129478", - "lastname": "Ikoko", - "position": 2, - "quotation": 9, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Presnel", - "id": "player_129479", - "lastname": "Kimpembe", - "position": 2, - "quotation": 14, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Mike", - "id": "player_129487", - "lastname": "Maignan", - "position": 1, - "quotation": 24, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": "Mauro", - "id": "player_132197", - "lastname": "Goicoechea", - "position": 1, - "quotation": 9, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Abdallah", - "id": "player_133632", - "lastname": "Ndour", - "position": 2, - "quotation": 4, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steven", - "id": "player_141017", - "lastname": "Moreira", - "position": 2, - "quotation": 8, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Gautier", - "id": "player_141109", - "lastname": "Lloris", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_141921", - "lastname": "Sheyi Ojo", - "position": 3, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Alexander", - "id": "player_143685", - "lastname": "Djiku", - "position": 2, - "quotation": 12, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Clinton", - "id": "player_145212", - "lastname": "N'Jie", - "position": 4, - "quotation": 9, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Issiaga", - "id": "player_145221", - "lastname": "Sylla", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Lois", - "id": "player_147577", - "lastname": "Diony", - "position": 4, - "quotation": 15, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Facundo", - "id": "player_148214", - "lastname": "Píriz", - "position": 3, - "quotation": 7, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Maxwel", - "id": "player_149519", - "lastname": "Cornet", - "position": 4, - "quotation": 8, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Wylan", - "id": "player_151873", - "lastname": "Cyprien", - "position": 3, - "quotation": 18, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Adrien", - "id": "player_152338", - "lastname": "Tameze", - "position": 3, - "quotation": 15, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Cheick", - "id": "player_152865", - "lastname": "Traoré", - "position": 2, - "quotation": 7, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Jordan", - "id": "player_153014", - "lastname": "Marié", - "position": 3, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Remi", - "id": "player_153649", - "lastname": "Walter", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Flavien", - "id": "player_154011", - "lastname": "Tait", - "position": 3, - "quotation": 17, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_154770", - "lastname": "Kwon Chang-Hoon", - "position": 3, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Lebogang", - "id": "player_156692", - "lastname": "Phiri", - "position": 3, - "quotation": 8, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Baptiste", - "id": "player_157728", - "lastname": "Guillaume", - "position": 4, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_15780", - "lastname": "Dani Alves", - "position": 2, - "quotation": 13, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_158047", - "lastname": "Thiago Mendes", - "position": 3, - "quotation": 21, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_158496", - "lastname": "Touré", - "position": 3, - "quotation": 15, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Antonio", - "id": "player_159039", - "lastname": "Barreca", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Andrea", - "id": "player_15930", - "lastname": "Raggi", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Benjamin", - "id": "player_159967", - "lastname": "Bourigeaud", - "position": 3, - "quotation": 17, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Lyon", - "firstname": "Jason", - "id": "player_160729", - "lastname": "Denayer", - "position": 2, - "quotation": 15, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Harrison", - "id": "player_160985", - "lastname": "Manzala", - "position": 4, - "quotation": 6, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Wesley", - "id": "player_161034", - "lastname": "Said", - "position": 4, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Fares", - "id": "player_161039", - "lastname": "Bahlouli", - "position": 3, - "quotation": 5, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Adrien", - "id": "player_161472", - "lastname": "Hunou", - "position": 3, - "quotation": 8, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Aleksandr", - "id": "player_161950", - "lastname": "Golovin", - "position": 3, - "quotation": 10, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_162654", - "lastname": "Jemerson", - "position": 2, - "quotation": 11, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_163562", - "lastname": "Lucas Evangelista", - "position": 3, - "quotation": 8, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Matt", - "id": "player_163793", - "lastname": "Miazga", - "position": 2, - "quotation": 8, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Youssouf", - "id": "player_164474", - "lastname": "Sabaly", - "position": 2, - "quotation": 9, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Rafal", - "id": "player_165112", - "lastname": "Kurzawa", - "position": 4, - "quotation": 5, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_165659", - "lastname": "Diego Carlos", - "position": 2, - "quotation": 12, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": null, - "id": "player_165803", - "lastname": "Pedro Rebocho", - "position": 2, - "quotation": 11, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Nabil", - "id": "player_166552", - "lastname": "Fekir", - "position": 4, - "quotation": 19, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Lukas", - "id": "player_166965", - "lastname": "Lerager", - "position": 3, - "quotation": 14, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Youri", - "id": "player_166989", - "lastname": "Tielemans", - "position": 3, - "quotation": 17, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Edvinas", - "id": "player_167054", - "lastname": "Gertmonas", - "position": 1, - "quotation": 1, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Kenny", - "id": "player_167074", - "lastname": "Tete", - "position": 2, - "quotation": 7, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Gaetan", - "id": "player_167443", - "lastname": "Laborde", - "position": 4, - "quotation": 22, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_168104", - "lastname": "Steven Fortes", - "position": 2, - "quotation": 6, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Cheikh", - "id": "player_168109", - "lastname": "N'Doye", - "position": 3, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Ludovic", - "id": "player_168539", - "lastname": "Ajorque", - "position": 4, - "quotation": 8, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Baptiste", - "id": "player_168985", - "lastname": "Santamaría", - "position": 3, - "quotation": 11, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Saif-Eddine", - "id": "player_169427", - "lastname": "Khaoui", - "position": 3, - "quotation": 12, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Gaetan", - "id": "player_169860", - "lastname": "Paquiez", - "position": 2, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Allan", - "id": "player_170137", - "lastname": "Saint-Maximin", - "position": 3, - "quotation": 18, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_170409", - "lastname": "Andrei Girotto", - "position": 3, - "quotation": 12, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Hassane", - "id": "player_171099", - "lastname": "Kamara", - "position": 3, - "quotation": 7, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Mehmet", - "id": "player_171435", - "lastname": "Zeki Çelik", - "position": 2, - "quotation": 13, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Gabriel", - "id": "player_172987", - "lastname": "Boschilia", - "position": 3, - "quotation": 17, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": null, - "id": "player_173085", - "lastname": "Danilo", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Duje", - "id": "player_173271", - "lastname": "Caleta-Car", - "position": 2, - "quotation": 6, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_174272", - "lastname": "Mandrea", - "position": 1, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_174528", - "lastname": "Hamari Traoré", - "position": 2, - "quotation": 15, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Franck", - "id": "player_174655", - "lastname": "Honorat", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bongani", - "id": "player_174846", - "lastname": "Zungu", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Milan", - "id": "player_174892", - "lastname": "Gajic", - "position": 2, - "quotation": 4, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Jean Eudes", - "id": "player_174908", - "lastname": "Aholou", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_175352", - "lastname": "Manu García", - "position": 3, - "quotation": 12, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_176441", - "lastname": "Thomas Touré", - "position": 4, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Théo", - "id": "player_176443", - "lastname": "Pellenard", - "position": 2, - "quotation": 5, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jonathan", - "id": "player_176501", - "lastname": "Gradit", - "position": 2, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": null, - "id": "player_177840", - "lastname": "Nuno da Costa", - "position": 4, - "quotation": 14, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Enzo", - "id": "player_178492", - "lastname": "Crivelli", - "position": 4, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Youssouf", - "id": "player_180124", - "lastname": "Kone", - "position": 2, - "quotation": 2, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Benjamin", - "id": "player_180167", - "lastname": "Henrichs", - "position": 2, - "quotation": 14, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Ambroise", - "id": "player_180562", - "lastname": "Oyongo", - "position": 2, - "quotation": 14, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": null, - "id": "player_180835", - "lastname": "Otávio", - "position": 3, - "quotation": 13, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Jerome", - "id": "player_181439", - "lastname": "Prior", - "position": 1, - "quotation": 7, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Léo", - "id": "player_183779", - "lastname": "Dubois", - "position": 2, - "quotation": 8, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Yann", - "id": "player_184095", - "lastname": "Karamoh", - "position": 4, - "quotation": 12, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Racine", - "id": "player_184215", - "lastname": "Coly", - "position": 2, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Joris", - "id": "player_184449", - "lastname": "Kayembe", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Anthony", - "id": "player_184961", - "lastname": "Briancon", - "position": 2, - "quotation": 22, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Aaron", - "id": "player_185727", - "lastname": "Leya Iseka", - "position": 4, - "quotation": 11, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Thomas", - "id": "player_18574", - "lastname": "Mangani", - "position": 3, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Hatem", - "id": "player_18753", - "lastname": "Ben Arfa", - "position": 3, - "quotation": 20, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Alexandre", - "id": "player_189542", - "lastname": "Mendy", - "position": 4, - "quotation": 5, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bachibou", - "id": "player_189752", - "lastname": "Koita", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Ramy", - "id": "player_189791", - "lastname": "Bensebaini", - "position": 2, - "quotation": 12, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Nolan", - "id": "player_192021", - "lastname": "Mbemba", - "position": 3, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Seydou", - "id": "player_192291", - "lastname": "Sy", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_192292", - "lastname": "Almamy Touré", - "position": 2, - "quotation": 7, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Queensy", - "id": "player_192750", - "lastname": "Menig", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Juan Ferney", - "id": "player_192785", - "lastname": "Otero", - "position": 4, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_193400", - "lastname": "Doumbia", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Yacine", - "id": "player_193409", - "lastname": "Bammou", - "position": 4, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "François", - "id": "player_193512", - "lastname": "Kamano", - "position": 4, - "quotation": 24, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Quentin", - "id": "player_193537", - "lastname": "Cornette", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Valentin", - "id": "player_193539", - "lastname": "Rongier", - "position": 3, - "quotation": 13, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Bingourou", - "id": "player_194188", - "lastname": "Kamara", - "position": 1, - "quotation": 8, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Jérémie", - "id": "player_194300", - "lastname": "Porsan-Clemente", - "position": 4, - "quotation": 1, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Yann", - "id": "player_194302", - "lastname": "Bodiger", - "position": 3, - "quotation": 4, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Theo", - "id": "player_194624", - "lastname": "Valls", - "position": 3, - "quotation": 14, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Ellyes", - "id": "player_195430", - "lastname": "Skhiri", - "position": 3, - "quotation": 20, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Nicolas", - "id": "player_195735", - "lastname": "Pepe", - "position": 4, - "quotation": 38, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Jonathan", - "id": "player_195883", - "lastname": "Bamba", - "position": 3, - "quotation": 21, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Nemanja", - "id": "player_195908", - "lastname": "Radonjic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Valentín", - "id": "player_195982", - "lastname": "Vada", - "position": 3, - "quotation": 5, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Loic", - "id": "player_19670", - "lastname": "Perrin", - "position": 2, - "quotation": 11, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_197017", - "lastname": "Junior Sambia", - "position": 3, - "quotation": 12, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Ibrahim", - "id": "player_197022", - "lastname": "Cisse", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Eiji", - "id": "player_19739", - "lastname": "Kawashima", - "position": 1, - "quotation": 3, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_198065", - "lastname": "Adama Traoré", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Antonin", - "id": "player_198990", - "lastname": "Bobichon", - "position": 3, - "quotation": 13, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Cédric", - "id": "player_199375", - "lastname": "Yambéré", - "position": 2, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_199409", - "lastname": "Thiago Maia", - "position": 3, - "quotation": 11, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Alec", - "id": "player_199663", - "lastname": "Georgen", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Jean-Victor", - "id": "player_199666", - "lastname": "Makengo", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_199672", - "lastname": "Jonathan Ikone", - "position": 3, - "quotation": 12, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Firmin Ndombe", - "id": "player_199734", - "lastname": "Mubele", - "position": 4, - "quotation": 11, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Florian", - "id": "player_200666", - "lastname": "Miguel", - "position": 2, - "quotation": 9, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Clement", - "id": "player_200671", - "lastname": "Depres", - "position": 4, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_200722", - "lastname": "Walongwa", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Paul", - "id": "player_200848", - "lastname": "Bernardoni", - "position": 1, - "quotation": 19, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Assane", - "id": "player_200958", - "lastname": "Dioussé", - "position": 3, - "quotation": 8, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Thilo", - "id": "player_201057", - "lastname": "Kehrer", - "position": 2, - "quotation": 12, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Alexis", - "id": "player_201392", - "lastname": "Blin", - "position": 3, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Marcus", - "id": "player_201562", - "lastname": "Coco", - "position": 3, - "quotation": 11, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_202520", - "lastname": "Pape Cheikh", - "position": 3, - "quotation": 9, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Angelo", - "id": "player_202857", - "lastname": "Fulgini", - "position": 3, - "quotation": 10, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Sada", - "id": "player_202858", - "lastname": "Thioub", - "position": 4, - "quotation": 13, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Lucas", - "id": "player_203349", - "lastname": "Tousart", - "position": 3, - "quotation": 15, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Frederic", - "id": "player_203368", - "lastname": "Guilbert", - "position": 2, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Olivier", - "id": "player_204120", - "lastname": "Boscagli", - "position": 2, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_204123", - "lastname": "Jordan Siebatcheu", - "position": 4, - "quotation": 10, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_20468", - "lastname": "Lass Diarra", - "position": 3, - "quotation": 7, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Gaetan", - "id": "player_204715", - "lastname": "Poussin", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Thomas", - "id": "player_204719", - "lastname": "Basila", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Malang", - "id": "player_204727", - "lastname": "Sarr", - "position": 2, - "quotation": 15, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Hakim", - "id": "player_204741", - "lastname": "El Mokkedem", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Yassin", - "id": "player_204742", - "lastname": "Benrahou", - "position": 3, - "quotation": 1, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Saman", - "id": "player_205836", - "lastname": "Ghoddos", - "position": 4, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Marcus", - "id": "player_205880", - "lastname": "Thuram", - "position": 4, - "quotation": 11, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Ferland", - "id": "player_206255", - "lastname": "Mendy", - "position": 2, - "quotation": 12, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Nicolas", - "id": "player_206935", - "lastname": "Lemaitre", - "position": 1, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Sergi", - "id": "player_207756", - "lastname": "Palencia", - "position": 2, - "quotation": 11, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_208134", - "lastname": "Escales", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": "Loic", - "id": "player_208555", - "lastname": "Bessile", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Myziane", - "id": "player_208556", - "lastname": "Maolida", - "position": 4, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Stanley", - "id": "player_208559", - "lastname": "N'Soki", - "position": 3, - "quotation": 11, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Hicham", - "id": "player_208560", - "lastname": "Mahou", - "position": 3, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Imad", - "id": "player_208567", - "lastname": "Faraj", - "position": 3, - "quotation": 5, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Jeff", - "id": "player_208987", - "lastname": "Reine-Adélaïde", - "position": 3, - "quotation": 10, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jonathan", - "id": "player_209035", - "lastname": "Panzo", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Dimitry", - "id": "player_209218", - "lastname": "Bertaud", - "position": 1, - "quotation": 1, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Pietro", - "id": "player_209335", - "lastname": "Pellegri", - "position": 4, - "quotation": 7, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Vukasin", - "id": "player_210228", - "lastname": "Jovanovic", - "position": 2, - "quotation": 8, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Ibrahim", - "id": "player_210462", - "lastname": "Sangaré", - "position": 3, - "quotation": 8, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Nayef", - "id": "player_210494", - "lastname": "Aguerd", - "position": 2, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Adam", - "id": "player_210932", - "lastname": "Jakubech", - "position": 1, - "quotation": 2, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Nice", - "firstname": "Pierre", - "id": "player_212325", - "lastname": "Lees-Melou", - "position": 3, - "quotation": 16, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Toma", - "id": "player_212851", - "lastname": "Basic", - "position": 3, - "quotation": 6, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Christopher", - "id": "player_213198", - "lastname": "Nkunku", - "position": 3, - "quotation": 12, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Félix", - "id": "player_213200", - "lastname": "Eboa Eboa", - "position": 2, - "quotation": 11, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Ludovic", - "id": "player_213940", - "lastname": "Blas", - "position": 3, - "quotation": 10, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Maxime", - "id": "player_213965", - "lastname": "Lopez", - "position": 3, - "quotation": 11, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Youssef", - "id": "player_214472", - "lastname": "Aït Bennasser", - "position": 3, - "quotation": 14, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": null, - "id": "player_214473", - "lastname": "Faitout Maouassa", - "position": 3, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Nathaël", - "id": "player_214946", - "lastname": "Julan", - "position": 4, - "quotation": 9, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Enock", - "id": "player_215046", - "lastname": "Kwateng", - "position": 2, - "quotation": 12, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Timothy", - "id": "player_215473", - "lastname": "Weah", - "position": 4, - "quotation": 6, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Denis", - "id": "player_215755", - "lastname": "Poha", - "position": 3, - "quotation": 4, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_216065", - "lastname": "Rafael Leão", - "position": 4, - "quotation": 9, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Denis", - "id": "player_216227", - "lastname": "Bouanga", - "position": 3, - "quotation": 16, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": null, - "id": "player_216438", - "lastname": "Casimir Ninga", - "position": 4, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Alexandre", - "id": "player_216610", - "lastname": "Olliero", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Aly", - "id": "player_217319", - "lastname": "Ndom", - "position": 3, - "quotation": 10, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Kelvin", - "id": "player_217596", - "lastname": "Amian", - "position": 2, - "quotation": 12, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Mathieu", - "id": "player_217597", - "lastname": "Cafaro", - "position": 3, - "quotation": 13, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_217872", - "lastname": "Charles Traoré", - "position": 2, - "quotation": 6, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Jeremy", - "id": "player_217992", - "lastname": "Gelin", - "position": 2, - "quotation": 8, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Nicolas", - "id": "player_217993", - "lastname": "Janvier", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Loic", - "id": "player_218389", - "lastname": "Badiashile", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_218524", - "lastname": "Jules Keita", - "position": 4, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_218666", - "lastname": "Alexis Alegue", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Kevin", - "id": "player_218796", - "lastname": "N'Doram", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Killian", - "id": "player_219079", - "lastname": "Sanson", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Batista", - "id": "player_219286", - "lastname": "Mendy", - "position": 2, - "quotation": 2, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Alexis", - "id": "player_219289", - "lastname": "Flips", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Aurelien", - "id": "player_219292", - "lastname": "Tchouameni", - "position": 3, - "quotation": 9, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Maxence", - "id": "player_219296", - "lastname": "Caqueret", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_219873", - "lastname": "Del Castillo", - "position": 3, - "quotation": 9, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Ronael", - "id": "player_220074", - "lastname": "Pierre Gabriel", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Quentin", - "id": "player_220110", - "lastname": "Braat", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Kylian", - "id": "player_220160", - "lastname": "Mbappé", - "position": 4, - "quotation": 44, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Jules", - "id": "player_220325", - "lastname": "Koundé", - "position": 2, - "quotation": 17, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Axel", - "id": "player_220362", - "lastname": "Disasi", - "position": 2, - "quotation": 4, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Malik", - "id": "player_220943", - "lastname": "Tchokounte", - "position": 4, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bakaye", - "id": "player_220960", - "lastname": "Dibassy", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Cheick", - "id": "player_223393", - "lastname": "Timite", - "position": 3, - "quotation": 6, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_223908", - "lastname": "Luiz Araujo", - "position": 4, - "quotation": 10, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Reo", - "id": "player_225268", - "lastname": "Griffiths", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Samuel", - "id": "player_225702", - "lastname": "Kalu", - "position": 4, - "quotation": 14, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Fode", - "id": "player_225897", - "lastname": "Ballo-Toure", - "position": 2, - "quotation": 17, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Boubakary", - "id": "player_225902", - "lastname": "Soumare", - "position": 3, - "quotation": 9, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Antoine", - "id": "player_225903", - "lastname": "Bernede", - "position": 3, - "quotation": 6, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Wilfried", - "id": "player_225905", - "lastname": "Kanga", - "position": 4, - "quotation": 8, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Sofiane", - "id": "player_225997", - "lastname": "Alakouch", - "position": 2, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jan", - "id": "player_226183", - "lastname": "Repas", - "position": 3, - "quotation": 5, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Samuel", - "id": "player_226194", - "lastname": "Grandsir", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Ibrahima", - "id": "player_226451", - "lastname": "Sissoko", - "position": 3, - "quotation": 12, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_226597", - "lastname": "Gabriel", - "position": 2, - "quotation": 6, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Boubacar", - "id": "player_226944", - "lastname": "Kamara", - "position": 2, - "quotation": 11, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Rafik", - "id": "player_226949", - "lastname": "Guitane", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jordi", - "id": "player_227163", - "lastname": "Mboula", - "position": 4, - "quotation": 6, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Valentin", - "id": "player_228170", - "lastname": "Rosier", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Edouard", - "id": "player_228286", - "lastname": "Mendy", - "position": 1, - "quotation": 26, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Jordan", - "id": "player_228289", - "lastname": "Lefort", - "position": 2, - "quotation": 8, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Oualid", - "id": "player_228291", - "lastname": "El Hajjam", - "position": 2, - "quotation": 5, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": "Guessouma", - "id": "player_228292", - "lastname": "Fofana", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Ihsan", - "id": "player_228321", - "lastname": "Sacko", - "position": 3, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Dimitri", - "id": "player_228322", - "lastname": "Lienard", - "position": 3, - "quotation": 13, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Kouakou", - "id": "player_228345", - "lastname": "Koffi", - "position": 1, - "quotation": 6, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Keagan", - "id": "player_228361", - "lastname": "Dolly", - "position": 3, - "quotation": 6, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Yan", - "id": "player_229227", - "lastname": "Marillat", - "position": 1, - "quotation": 2, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Remi", - "id": "player_229230", - "lastname": "Oudin", - "position": 3, - "quotation": 12, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Lebo", - "id": "player_230337", - "lastname": "Mothiba", - "position": 4, - "quotation": 24, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Gauthier", - "id": "player_230444", - "lastname": "Banaziak", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Tanguy", - "id": "player_231372", - "lastname": "NDombele", - "position": 3, - "quotation": 16, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Houssem", - "id": "player_231961", - "lastname": "Aouar", - "position": 3, - "quotation": 23, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Lyon", - "firstname": "Martin", - "id": "player_232176", - "lastname": "Terrier", - "position": 3, - "quotation": 13, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Ismaila", - "id": "player_232185", - "lastname": "Sarr", - "position": 4, - "quotation": 25, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Patrick", - "id": "player_232197", - "lastname": "Burner", - "position": 2, - "quotation": 5, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_232240", - "lastname": "Caci", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Jordy", - "id": "player_234458", - "lastname": "Gaspar", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Arnaud", - "id": "player_235050", - "lastname": "Nordin", - "position": 3, - "quotation": 8, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Morgan", - "id": "player_235862", - "lastname": "Poaty", - "position": 2, - "quotation": 3, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Julien", - "id": "player_240131", - "lastname": "Serrano", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Safwan", - "id": "player_240132", - "lastname": "Mbae", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Moussa", - "id": "player_240149", - "lastname": "Sylla", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Oussama", - "id": "player_241398", - "lastname": "Haddadi", - "position": 2, - "quotation": 13, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_242600", - "lastname": "Xeka", - "position": 3, - "quotation": 10, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Stefan", - "id": "player_242878", - "lastname": "Bajic", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Benoit", - "id": "player_242880", - "lastname": "Badiashile Mukinayi", - "position": 2, - "quotation": 7, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Bafode", - "id": "player_242882", - "lastname": "Diakite", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Loïc", - "id": "player_242885", - "lastname": "Mbe Soh", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_242887", - "lastname": "Kephren Thuram", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_242890", - "lastname": "Dabo", - "position": 3, - "quotation": 5, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Yann", - "id": "player_242893", - "lastname": "Gboho", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Willem", - "id": "player_242894", - "lastname": "Geubbels", - "position": 4, - "quotation": 4, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Adil", - "id": "player_242896", - "lastname": "Taoui", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Reda", - "id": "player_242940", - "lastname": "Rabei", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Moussa", - "id": "player_243557", - "lastname": "Diaby", - "position": 4, - "quotation": 13, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Yanis", - "id": "player_243996", - "lastname": "Henin", - "position": 1, - "quotation": 1, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_244136", - "lastname": "Lionel Dias", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Zaydou", - "id": "player_244182", - "lastname": "Youssouf", - "position": 3, - "quotation": 5, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Ghislain", - "id": "player_244642", - "lastname": "Konan", - "position": 2, - "quotation": 16, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Namakoro", - "id": "player_244754", - "lastname": "Diallo", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "James", - "id": "player_244842", - "lastname": "Lea Siliki", - "position": 3, - "quotation": 8, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Moataz", - "id": "player_245491", - "lastname": "Zemzemi", - "position": 3, - "quotation": 5, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Bassem", - "id": "player_245496", - "lastname": "Srarfi", - "position": 3, - "quotation": 11, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Hakim", - "id": "player_245715", - "lastname": "Ouro-Sama", - "position": 2, - "quotation": 1, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Bryan", - "id": "player_245750", - "lastname": "Passi", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mickael", - "id": "player_246429", - "lastname": "Panos", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Umut", - "id": "player_246451", - "lastname": "Bozok", - "position": 4, - "quotation": 15, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Anthony", - "id": "player_247385", - "lastname": "Racioppi", - "position": 1, - "quotation": 1, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Amine", - "id": "player_247400", - "lastname": "Gouiri", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Romain", - "id": "player_247439", - "lastname": "Cagnon", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Randal", - "id": "player_247693", - "lastname": "Kolo Muani", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Duplexe Tchamba", - "id": "player_250510", - "lastname": "Bangou", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Sami", - "id": "player_250588", - "lastname": "Ben Amar", - "position": 4, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": null, - "id": "player_26894", - "lastname": "Dante", - "position": 2, - "quotation": 22, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Mathieu", - "id": "player_26896", - "lastname": "Bodmer", - "position": 2, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mathieu", - "id": "player_27334", - "lastname": "Debuchy", - "position": 2, - "quotation": 14, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Yoann", - "id": "player_27669", - "lastname": "Gourcuff", - "position": 3, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Stéphane", - "id": "player_27671", - "lastname": "Mbia", - "position": 3, - "quotation": 7, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Jimmy", - "id": "player_27675", - "lastname": "Briand", - "position": 4, - "quotation": 16, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_28136", - "lastname": "Hilton", - "position": 2, - "quotation": 18, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Jacques-Alaixys", - "id": "player_32367", - "lastname": "Romao", - "position": 3, - "quotation": 16, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Paul", - "id": "player_37758", - "lastname": "Baysse", - "position": 2, - "quotation": 11, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Yohann", - "id": "player_37769", - "lastname": "Pelé", - "position": 1, - "quotation": 11, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Ludovic", - "id": "player_37776", - "lastname": "Baal", - "position": 2, - "quotation": 4, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Jérémy", - "id": "player_37832", - "lastname": "Morel", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Dimitri", - "id": "player_37901", - "lastname": "Payet", - "position": 3, - "quotation": 23, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_37938", - "lastname": "Danzé", - "position": 2, - "quotation": 4, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Jessy", - "id": "player_37990", - "lastname": "Moulin", - "position": 1, - "quotation": 9, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Mouhamadou", - "id": "player_37995", - "lastname": "Dabo", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Daniel", - "id": "player_38002", - "lastname": "Congré", - "position": 2, - "quotation": 19, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Kévin", - "id": "player_38261", - "lastname": "Monnet-Paquet", - "position": 4, - "quotation": 10, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Christophe", - "id": "player_38265", - "lastname": "Jallet", - "position": 2, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Stéphane", - "id": "player_38314", - "lastname": "Ruffier", - "position": 1, - "quotation": 19, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Lille", - "firstname": "Loïc", - "id": "player_38419", - "lastname": "Remy", - "position": 4, - "quotation": 10, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_38580", - "lastname": "José Fonte", - "position": 2, - "quotation": 14, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": null, - "id": "player_39294", - "lastname": "Rolando", - "position": 2, - "quotation": 9, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Moustapha", - "id": "player_39905", - "lastname": "Diallo", - "position": 3, - "quotation": 7, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Denis", - "id": "player_40511", - "lastname": "Petric", - "position": 1, - "quotation": 6, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Edinson", - "id": "player_40720", - "lastname": "Cavani", - "position": 4, - "quotation": 40, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Prince", - "id": "player_40808", - "lastname": "Oniangué", - "position": 3, - "quotation": 14, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Claudio", - "id": "player_40809", - "lastname": "Beauvue", - "position": 4, - "quotation": 11, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Jérémy", - "id": "player_40833", - "lastname": "Pied", - "position": 2, - "quotation": 7, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Gianluigi", - "id": "player_4126", - "lastname": "Buffon", - "position": 1, - "quotation": 17, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Neven", - "id": "player_41452", - "lastname": "Subotic", - "position": 2, - "quotation": 7, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Adil", - "id": "player_41795", - "lastname": "Rami", - "position": 2, - "quotation": 11, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_422159", - "lastname": "Fernando Costanza", - "position": 2, - "quotation": 3, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Kouadio", - "id": "player_422230", - "lastname": "Dabila", - "position": 2, - "quotation": 10, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_422250", - "lastname": "Piechocki", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Matteo", - "id": "player_423870", - "lastname": "Ahlinvi", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Derick", - "id": "player_423955", - "lastname": "Osei Yaw", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Ismael", - "id": "player_42416", - "lastname": "Traoré", - "position": 2, - "quotation": 17, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Mario", - "id": "player_42493", - "lastname": "Balotelli", - "position": 4, - "quotation": 15, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Alexander", - "id": "player_42518", - "lastname": "Kacaniklic", - "position": 3, - "quotation": 6, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Youcef", - "id": "player_425614", - "lastname": "Atal", - "position": 2, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Eric Maxim", - "id": "player_42564", - "lastname": "Choupo-Moting", - "position": 3, - "quotation": 11, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Laurent", - "id": "player_42584", - "lastname": "Ciman", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Benoit", - "id": "player_42713", - "lastname": "Costil", - "position": 1, - "quotation": 19, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Jérémy", - "id": "player_42714", - "lastname": "Sorbon", - "position": 2, - "quotation": 10, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Régis", - "id": "player_42766", - "lastname": "Gurtner", - "position": 1, - "quotation": 19, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Nicolas", - "id": "player_428989", - "lastname": "Cozza", - "position": 2, - "quotation": 10, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Chahreddine", - "id": "player_429235", - "lastname": "Boukholda", - "position": 3, - "quotation": 3, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_431647", - "lastname": "Bana", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Samuel", - "id": "player_432489", - "lastname": "Moutoussamy", - "position": 3, - "quotation": 9, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Oumar", - "id": "player_432649", - "lastname": "Solet", - "position": 2, - "quotation": 1, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Kévin", - "id": "player_433640", - "lastname": "Zohi", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Scotty", - "id": "player_433666", - "lastname": "Sadzoute", - "position": 4, - "quotation": 1, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_433731", - "lastname": "Buades", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Ignatius", - "id": "player_433771", - "lastname": "Ganago", - "position": 4, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Over", - "id": "player_433830", - "lastname": "Mandanda", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Gerzino", - "id": "player_435731", - "lastname": "Nyamsi", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Ismael", - "id": "player_436644", - "lastname": "Aaneba", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Jessy", - "id": "player_436658", - "lastname": "Deminguet", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Benjamin", - "id": "player_436662", - "lastname": "Verite", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Andy", - "id": "player_437501", - "lastname": "Pelmard", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Yacine", - "id": "player_437504", - "lastname": "Adli", - "position": 3, - "quotation": 1, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Wilson", - "id": "player_437505", - "lastname": "Isidor", - "position": 4, - "quotation": 1, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Sebastien", - "id": "player_437721", - "lastname": "Cibois", - "position": 1, - "quotation": 4, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Virgiliu", - "id": "player_437724", - "lastname": "Postolachi", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Giulian", - "id": "player_437753", - "lastname": "Biancone", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Gobe", - "id": "player_437754", - "lastname": "Gouano", - "position": 4, - "quotation": 1, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Han-Noah", - "id": "player_437757", - "lastname": "Massengo", - "position": 3, - "quotation": 7, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Driss", - "id": "player_437950", - "lastname": "Khalid", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Lenny", - "id": "player_438015", - "lastname": "Pintor", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Kelyan", - "id": "player_439122", - "lastname": "Guessoum", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Thomas", - "id": "player_439205", - "lastname": "Carrique", - "position": 2, - "quotation": 2, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Yoel", - "id": "player_439711", - "lastname": "Armougom", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Yannis", - "id": "player_440058", - "lastname": "Clementia", - "position": 1, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Santy", - "id": "player_440114", - "lastname": "Ngom", - "position": 4, - "quotation": 6, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Arnold", - "id": "player_44082", - "lastname": "Bouka Moutou", - "position": 2, - "quotation": 4, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Romain", - "id": "player_441240", - "lastname": "Faivre", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Yannick", - "id": "player_44138", - "lastname": "Cahuzac", - "position": 3, - "quotation": 10, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Mohamed Lamine", - "id": "player_441575", - "lastname": "Diaby", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Christopher", - "id": "player_441576", - "lastname": "Rocchia", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Fethi", - "id": "player_44199", - "lastname": "Harek", - "position": 2, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mahdi", - "id": "player_442264", - "lastname": "Camara", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Damien", - "id": "player_44287", - "lastname": "Da Silva", - "position": 2, - "quotation": 14, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Romain", - "id": "player_44357", - "lastname": "Genevois", - "position": 2, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Steve", - "id": "player_44413", - "lastname": "Mandanda", - "position": 1, - "quotation": 16, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Dylan", - "id": "player_444465", - "lastname": "Chambost", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Johann", - "id": "player_44475", - "lastname": "Carrasso", - "position": 1, - "quotation": 4, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Mapou", - "id": "player_44488", - "lastname": "Yanga-Mbiwa", - "position": 2, - "quotation": 3, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Yannis", - "id": "player_446006", - "lastname": "Ammour", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Farid", - "id": "player_447389", - "lastname": "El Melali", - "position": 3, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Rayan", - "id": "player_448514", - "lastname": "Ait Nouri", - "position": 2, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Ciprian", - "id": "player_44898", - "lastname": "Tatarusanu", - "position": 1, - "quotation": 18, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Enzo", - "id": "player_449718", - "lastname": "Loiodice", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Matthieu", - "id": "player_45032", - "lastname": "Dreyer", - "position": 1, - "quotation": 3, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Lamine", - "id": "player_45076", - "lastname": "Koné", - "position": 2, - "quotation": 13, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Lucas", - "id": "player_45084", - "lastname": "Deaux", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Cheikh", - "id": "player_45136", - "lastname": "M'Bengue", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Senou", - "id": "player_454964", - "lastname": "Coulibaly", - "position": 2, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Romain", - "id": "player_45505", - "lastname": "Thomas", - "position": 2, - "quotation": 13, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Clement", - "id": "player_456193", - "lastname": "Vidal", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Kylian", - "id": "player_456194", - "lastname": "Kaiboue", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Amir", - "id": "player_456195", - "lastname": "Adouyev", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Sacha", - "id": "player_456299", - "lastname": "Marasovic", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Lucas", - "id": "player_456300", - "lastname": "Perrin", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Levi", - "id": "player_456355", - "lastname": "Ntumba", - "position": 1, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Thomas", - "id": "player_457225", - "lastname": "Callens", - "position": 1, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Issa", - "id": "player_457230", - "lastname": "Marega", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Ibrahim", - "id": "player_457234", - "lastname": "Diarra", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Michael", - "id": "player_457235", - "lastname": "Nilor", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Dorian", - "id": "player_457242", - "lastname": "Bertrand", - "position": 4, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Colin", - "id": "player_458250", - "lastname": "Dagba", - "position": 2, - "quotation": 6, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Alexandre", - "id": "player_458251", - "lastname": "Fressange", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Yassin", - "id": "player_459560", - "lastname": "Fekir", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_460265", - "lastname": "Robert Navarro", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Sofiane", - "id": "player_460267", - "lastname": "Diop", - "position": 3, - "quotation": 8, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Percy", - "id": "player_460630", - "lastname": "Ruiz", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Mathieu", - "id": "player_461384", - "lastname": "Goncalves", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_461397", - "lastname": "Chabrolle", - "position": 4, - "quotation": 1, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Valentin", - "id": "player_461415", - "lastname": "Gendrey", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Sanasi", - "id": "player_461418", - "lastname": "Sy", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Jean-Claude", - "id": "player_461428", - "lastname": "Ngando", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Gaoussou", - "id": "player_461433", - "lastname": "Traore", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Martin", - "id": "player_461439", - "lastname": "Gneba", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Antonin", - "id": "player_461442", - "lastname": "Gauducheau", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Djegui", - "id": "player_461827", - "lastname": "Koita", - "position": 2, - "quotation": 6, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Arton", - "id": "player_461833", - "lastname": "Zekaj", - "position": 3, - "quotation": 6, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Patrick", - "id": "player_461840", - "lastname": "Bahanack", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Louis", - "id": "player_461908", - "lastname": "Pelletier", - "position": 1, - "quotation": 1, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Mohamed", - "id": "player_461910", - "lastname": "Simakan", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Youssouf", - "id": "player_461913", - "lastname": "Fofana", - "position": 3, - "quotation": 6, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Jean-Clair", - "id": "player_462116", - "lastname": "Todibo", - "position": 3, - "quotation": 8, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "William", - "id": "player_462424", - "lastname": "Saliba", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Makhtar", - "id": "player_462425", - "lastname": "Gueye", - "position": 4, - "quotation": 1, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Georginio", - "id": "player_463067", - "lastname": "Rutter", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_464192", - "lastname": "Pinson", - "position": 4, - "quotation": 3, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Yohan", - "id": "player_464193", - "lastname": "Bilingi", - "position": 2, - "quotation": 2, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Ángel", - "id": "player_46497", - "lastname": "Di María", - "position": 3, - "quotation": 31, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Théo", - "id": "player_465057", - "lastname": "Vermot", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_465299", - "lastname": "Mancini", - "position": 3, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Abdallah", - "id": "player_467625", - "lastname": "Ali Mohamed", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Ousseynou", - "id": "player_468430", - "lastname": "Ndiaye", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Boulaye", - "id": "player_468488", - "lastname": "Dia", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Kalidou", - "id": "player_468489", - "lastname": "Sidibe", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Matthias", - "id": "player_468490", - "lastname": "Phaeton", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Mehdi", - "id": "player_468496", - "lastname": "Boudjemaa", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Thody Elie", - "id": "player_469192", - "lastname": "Youan", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Eddy", - "id": "player_469204", - "lastname": "Sylvestre", - "position": 3, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Yanis", - "id": "player_469205", - "lastname": "Hamache", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Kevin", - "id": "player_469318", - "lastname": "Mouanga", - "position": 2, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Steven", - "id": "player_469319", - "lastname": "Ako", - "position": 2, - "quotation": 1, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Nathan", - "id": "player_469323", - "lastname": "N'Goumou Minpol", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Sory", - "id": "player_471212", - "lastname": "Doumbouya", - "position": 4, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Evens", - "id": "player_471213", - "lastname": "Joseph", - "position": 3, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Alexandre", - "id": "player_471437", - "lastname": "Philiponeau", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Imran", - "id": "player_471471", - "lastname": "Louza", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Stanley", - "id": "player_471841", - "lastname": "Segarel", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Matis", - "id": "player_471924", - "lastname": "Carvalho", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Younn", - "id": "player_472187", - "lastname": "Zahary", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Kostas", - "id": "player_47434", - "lastname": "Mitroglou", - "position": 4, - "quotation": 11, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": null, - "id": "player_47654", - "lastname": "Luiz Gustavo", - "position": 3, - "quotation": 15, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Younousse", - "id": "player_48768", - "lastname": "Sankharé", - "position": 3, - "quotation": 16, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Radamel", - "id": "player_48847", - "lastname": "Falcao", - "position": 4, - "quotation": 25, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "John", - "id": "player_48897", - "lastname": "Bostock", - "position": 3, - "quotation": 9, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Tomas", - "id": "player_49181", - "lastname": "Hubocan", - "position": 2, - "quotation": 3, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Elderson", - "id": "player_49272", - "lastname": "Echiéjilé", - "position": 2, - "quotation": 6, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Yann", - "id": "player_49396", - "lastname": "M'Vila", - "position": 3, - "quotation": 18, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Khaled", - "id": "player_49502", - "lastname": "Adénon", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Mathieu", - "id": "player_49730", - "lastname": "Dossevi", - "position": 3, - "quotation": 14, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Kevin", - "id": "player_49887", - "lastname": "Strootman", - "position": 3, - "quotation": 14, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Anatole", - "id": "player_50036", - "lastname": "Ngamukol", - "position": 4, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Emmanuel", - "id": "player_50326", - "lastname": "Imorou", - "position": 2, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Stevan", - "id": "player_50442", - "lastname": "Jovetic", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Ronny", - "id": "player_50996", - "lastname": "Rodelin", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_51090", - "lastname": "Thiago Silva", - "position": 2, - "quotation": 22, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Pierrick", - "id": "player_51394", - "lastname": "Valdivia", - "position": 3, - "quotation": 5, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Nolan", - "id": "player_51525", - "lastname": "Roux", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Marvin", - "id": "player_51634", - "lastname": "Martin", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Jakob", - "id": "player_51850", - "lastname": "Johansson", - "position": 3, - "quotation": 9, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_52573", - "lastname": "Marcelo", - "position": 2, - "quotation": 16, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Damien", - "id": "player_52782", - "lastname": "Le Tallec", - "position": 2, - "quotation": 22, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Frederic", - "id": "player_54413", - "lastname": "Sammaritano", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_54518", - "lastname": "Manceau", - "position": 2, - "quotation": 8, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_54771", - "lastname": "Fabio", - "position": 2, - "quotation": 9, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_54772", - "lastname": "Rafael", - "position": 2, - "quotation": 14, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Nacer", - "id": "player_54908", - "lastname": "Chadli", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Clément", - "id": "player_55305", - "lastname": "Grenier", - "position": 3, - "quotation": 19, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Franck", - "id": "player_55313", - "lastname": "Tabanou", - "position": 2, - "quotation": 8, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Yannis", - "id": "player_55343", - "lastname": "Salibur", - "position": 3, - "quotation": 14, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Robert", - "id": "player_55711", - "lastname": "Beric", - "position": 4, - "quotation": 9, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Benjamin", - "id": "player_55948", - "lastname": "André", - "position": 3, - "quotation": 16, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Grégory", - "id": "player_56995", - "lastname": "Sertic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Timothée", - "id": "player_57136", - "lastname": "Kolodziejczak", - "position": 2, - "quotation": 17, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Abdoulaye", - "id": "player_57266", - "lastname": "Bamba", - "position": 2, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Yoann", - "id": "player_58309", - "lastname": "Andreu", - "position": 2, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_58476", - "lastname": "Rui Fonte", - "position": 4, - "quotation": 9, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_58875", - "lastname": "Fontaine", - "position": 2, - "quotation": 8, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_59229", - "lastname": "Pelé", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Max-Alain", - "id": "player_59741", - "lastname": "Gradel", - "position": 4, - "quotation": 22, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Mathieu", - "id": "player_59956", - "lastname": "Gorgelin", - "position": 1, - "quotation": 8, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_59957", - "lastname": "Anthony Lopes", - "position": 1, - "quotation": 20, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Rene", - "id": "player_60070", - "lastname": "Krhin", - "position": 3, - "quotation": 9, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Wahbi", - "id": "player_60165", - "lastname": "Khazri", - "position": 3, - "quotation": 34, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Erwin", - "id": "player_60189", - "lastname": "Zelazny", - "position": 1, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Danijel", - "id": "player_60582", - "lastname": "Subasic", - "position": 1, - "quotation": 8, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Marco", - "id": "player_61170", - "lastname": "Verratti", - "position": 3, - "quotation": 18, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_61272", - "lastname": "Ganso", - "position": 3, - "quotation": 7, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_61278", - "lastname": "Neymar", - "position": 4, - "quotation": 52, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Jimmy", - "id": "player_61704", - "lastname": "Durmaz", - "position": 3, - "quotation": 12, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Karl-Johan", - "id": "player_61741", - "lastname": "Johnsson", - "position": 1, - "quotation": 13, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_62128", - "lastname": "Cristian", - "position": 4, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Saint Etienne", - "firstname": "Rémy", - "id": "player_66957", - "lastname": "Cabella", - "position": 3, - "quotation": 30, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_67272", - "lastname": "Gonçalves", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Romain", - "id": "player_67276", - "lastname": "Hamouma", - "position": 3, - "quotation": 13, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Yeni", - "id": "player_68157", - "lastname": "N'Gbakoto", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Mateo", - "id": "player_68545", - "lastname": "Pavlovic", - "position": 2, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Petar", - "id": "player_68862", - "lastname": "Skuletic", - "position": 4, - "quotation": 10, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Kamil", - "id": "player_71403", - "lastname": "Glik", - "position": 2, - "quotation": 14, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Igor", - "id": "player_71797", - "lastname": "Lewczuk", - "position": 2, - "quotation": 8, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Paul", - "id": "player_72177", - "lastname": "Lasne", - "position": 3, - "quotation": 12, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Benjamin", - "id": "player_73667", - "lastname": "Jeannot", - "position": 4, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Nicolas", - "id": "player_73879", - "lastname": "de Preville", - "position": 4, - "quotation": 7, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Andy", - "id": "player_73965", - "lastname": "Delort", - "position": 4, - "quotation": 23, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Marc", - "id": "player_74299", - "lastname": "Vidal", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_78541", - "lastname": "Suk Hyun-Jun", - "position": 4, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Abdoulaye", - "id": "player_79625", - "lastname": "Diallo", - "position": 1, - "quotation": 12, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Idriss", - "id": "player_79917", - "lastname": "Saadi", - "position": 4, - "quotation": 7, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_80357", - "lastname": "Mexer", - "position": 2, - "quotation": 12, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Aymen", - "id": "player_80582", - "lastname": "Abdennour", - "position": 2, - "quotation": 4, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Yaya", - "id": "player_80711", - "lastname": "Sanogo", - "position": 4, - "quotation": 7, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Jeremy", - "id": "player_80904", - "lastname": "Grimm", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Férébory", - "id": "player_81118", - "lastname": "Doré", - "position": 4, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Serigne Modou", - "id": "player_81895", - "lastname": "Kara Mbodji", - "position": 2, - "quotation": 8, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_82184", - "lastname": "Majeed Waris", - "position": 4, - "quotation": 10, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Nicolas", - "id": "player_82313", - "lastname": "Pallois", - "position": 2, - "quotation": 9, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Panagiotis", - "id": "player_82642", - "lastname": "Vlachodimos", - "position": 3, - "quotation": 5, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Mickael", - "id": "player_83279", - "lastname": "Le Bihan", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Kolbeinn", - "id": "player_83758", - "lastname": "Sigthorsson", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Alphonse", - "id": "player_84182", - "lastname": "Areola", - "position": 1, - "quotation": 18, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Jonas", - "id": "player_84366", - "lastname": "Martin", - "position": 3, - "quotation": 22, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_85548", - "lastname": "Pajot", - "position": 3, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Wesley", - "id": "player_85565", - "lastname": "Lautoa", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Romain", - "id": "player_85595", - "lastname": "Métanire", - "position": 2, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Matz", - "id": "player_85633", - "lastname": "Sels", - "position": 1, - "quotation": 17, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Pablo", - "id": "player_85659", - "lastname": "Chavarria", - "position": 4, - "quotation": 13, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Romain", - "id": "player_86158", - "lastname": "Amalfitano", - "position": 3, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Lionel", - "id": "player_86413", - "lastname": "Carole", - "position": 2, - "quotation": 12, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Benjamin", - "id": "player_86446", - "lastname": "Corgnet", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Jonathan", - "id": "player_86598", - "lastname": "Ligali", - "position": 1, - "quotation": 3, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Zacharie", - "id": "player_86811", - "lastname": "Boucher", - "position": 1, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Benjamin", - "id": "player_86873", - "lastname": "Lecomte", - "position": 1, - "quotation": 25, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Florent", - "id": "player_8747", - "lastname": "Balmont", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Herve", - "id": "player_88036", - "lastname": "Lybohy", - "position": 2, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_88931", - "lastname": "Limbombe", - "position": 3, - "quotation": 11, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Nicolas", - "id": "player_89038", - "lastname": "Benezet", - "position": 3, - "quotation": 15, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Layvin", - "id": "player_89068", - "lastname": "Kurzawa", - "position": 2, - "quotation": 5, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jeff", - "id": "player_89179", - "lastname": "Louis", - "position": 3, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Loïck", - "id": "player_92258", - "lastname": "Landre", - "position": 2, - "quotation": 13, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Kenny", - "id": "player_92527", - "lastname": "Lala", - "position": 2, - "quotation": 20, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Mickaël", - "id": "player_92559", - "lastname": "Alphonse", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Faycal", - "id": "player_92724", - "lastname": "Fajr", - "position": 3, - "quotation": 18, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Julian", - "id": "player_92985", - "lastname": "Draxler", - "position": 3, - "quotation": 18, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_93127", - "lastname": "Jesé", - "position": 4, - "quotation": 5, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Loïc", - "id": "player_93498", - "lastname": "Puyo", - "position": 3, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Thomas", - "id": "player_93605", - "lastname": "Meunier", - "position": 2, - "quotation": 24, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Baptiste", - "id": "player_93619", - "lastname": "Reynet", - "position": 1, - "quotation": 14, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Pablo", - "id": "player_93622", - "lastname": "Martinez", - "position": 2, - "quotation": 19, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Tomas", - "id": "player_94151", - "lastname": "Koubek", - "position": 1, - "quotation": 10, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Chaker", - "id": "player_94181", - "lastname": "Alhadhur", - "position": 2, - "quotation": 2, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_95434", - "lastname": "Thauvin", - "position": 3, - "quotation": 41, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Saliou", - "id": "player_95527", - "lastname": "Ciss", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Thomas", - "id": "player_96616", - "lastname": "Monconduit", - "position": 3, - "quotation": 13, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "M'Baye", - "id": "player_96764", - "lastname": "Niang", - "position": 4, - "quotation": 11, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Valère", - "id": "player_97041", - "lastname": "Germain", - "position": 4, - "quotation": 12, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Maxime", - "id": "player_97288", - "lastname": "Dupé", - "position": 1, - "quotation": 9, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Nîmes", - "firstname": "Abdelmalik", - "id": "player_97442", - "lastname": "Hsissane", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Ismael", - "id": "player_97443", - "lastname": "Diomande", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Mehdi", - "id": "player_98746", - "lastname": "Abeid", - "position": 3, - "quotation": 16, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Naim", - "id": "player_98788", - "lastname": "Sliti", - "position": 3, - "quotation": 15, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_98798", - "lastname": "Prince", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Stéphane", - "id": "player_98828", - "lastname": "Bahoken", - "position": 4, - "quotation": 16, - "teamid": "2128", - "ultraPosition": 40 - } - ] -} diff --git a/src/test/resources/__files/mpg.mercato.ligue-2.20190718.json b/src/test/resources/__files/mpg.mercato.ligue-2.20190718.json deleted file mode 100644 index 5403d92..0000000 --- a/src/test/resources/__files/mpg.mercato.ligue-2.20190718.json +++ /dev/null @@ -1,5813 +0,0 @@ -{ - "mercato": {}, - "players": [ - { - "id": "player_101368", - "lastname": "Diarra", - "firstname": "Cheick", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-08-17" - }, - { - "id": "player_102724", - "lastname": "Jeannin", - "firstname": "Mehdi", - "position": 1, - "quotation": 11, - "ultraPosition": 10, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2011-07-27" - }, - { - "id": "player_102739", - "lastname": "Kerbrat", - "firstname": "Christophe", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2011-07-27" - }, - { - "id": "player_102744", - "lastname": "Sankoh", - "firstname": "Baissama", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2017-07-03" - }, - { - "id": "player_102765", - "lastname": "Raspentino", - "firstname": "Florian", - "position": 4, - "quotation": 26, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_102836", - "lastname": "Samba", - "firstname": "Brice", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "club": "Caen", - "teamid": "1028", - "joinDate": "2017-07-01" - }, - { - "id": "player_103122", - "lastname": "Edmond Akichi", - "firstname": null, - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2019-07-01" - }, - { - "id": "player_103199", - "lastname": "Camara", - "firstname": "Papa Demba", - "position": 1, - "quotation": 12, - "ultraPosition": 10, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2015-07-01" - }, - { - "id": "player_104464", - "lastname": "Valette", - "firstname": "Baptiste", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "club": "Nancy", - "teamid": "148", - "joinDate": "2019-07-04" - }, - { - "id": "player_105345", - "lastname": "Petkovic", - "firstname": "Danijel", - "position": 1, - "quotation": 11, - "ultraPosition": 10, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-11" - }, - { - "id": "player_105408", - "lastname": "Cissokho", - "firstname": "Mame Ousmane", - "position": 4, - "quotation": 19, - "ultraPosition": 40, - "club": "Nancy", - "teamid": "148", - "joinDate": "2019-07-01" - }, - { - "id": "player_105708", - "lastname": "Dabasse", - "firstname": "Adrian", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2015-07-01" - }, - { - "id": "player_105719", - "lastname": "M'Bone", - "firstname": "Yannick", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2015-07-08" - }, - { - "id": "player_106600", - "lastname": "Sainati", - "firstname": "Joris", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_106884", - "lastname": "Saint-Ruf", - "firstname": "Nicolas", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_107258", - "lastname": "Abergel", - "firstname": "Laurent", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Nancy", - "teamid": "148", - "joinDate": "2017-07-06" - }, - { - "id": "player_107259", - "lastname": "Aloe", - "firstname": "Baptiste", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2017-07-01" - }, - { - "id": "player_107656", - "lastname": "Lopy", - "firstname": "Joseph", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_107925", - "lastname": "Caillard", - "firstname": "Marc-Aurèle", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-07-01" - }, - { - "id": "player_108177", - "lastname": "Sane", - "firstname": "Abdoulaye", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-01" - }, - { - "id": "player_110132", - "lastname": "Pinteaux", - "firstname": "Florian", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-07-01" - }, - { - "id": "player_110303", - "lastname": "Doucoure", - "firstname": "Lassana", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2015-01-08" - }, - { - "id": "player_110307", - "lastname": "Popelard", - "firstname": "John", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2011-07-01" - }, - { - "id": "player_110347", - "lastname": "Bernard", - "firstname": "Quentin", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2019-07-01" - }, - { - "id": "player_110350", - "lastname": "Giraudon", - "firstname": "Jimmy", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2016-07-01" - }, - { - "id": "player_110351", - "lastname": "N'Diaye", - "firstname": "Alassane", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2017-07-06" - }, - { - "id": "player_110729", - "lastname": "Renault", - "firstname": "Thomas", - "position": 1, - "quotation": 11, - "ultraPosition": 10, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2010-07-01" - }, - { - "id": "player_110799", - "lastname": "Lemaire", - "firstname": "Pierre-Etienne", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_110982", - "lastname": "Mohamed Yattara", - "firstname": null, - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-17" - }, - { - "id": "player_111001", - "lastname": "Youga", - "firstname": "Amos", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-07-01" - }, - { - "id": "player_111078", - "lastname": "Tertereau", - "firstname": "Aurélien", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2018-07-01" - }, - { - "id": "player_111086", - "lastname": "Heinry", - "firstname": "Guillaume", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_111315", - "lastname": "Vion", - "firstname": "Thibaut", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-08-31" - }, - { - "id": "player_112467", - "lastname": "Ba", - "firstname": "El-Hadji", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-21" - }, - { - "id": "player_112654", - "lastname": "Mbengue", - "firstname": "Adama", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Caen", - "teamid": "1028", - "joinDate": "2017-07-01" - }, - { - "id": "player_112962", - "lastname": "Nomenjanahary", - "firstname": "Lalaïna", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Paris", - "teamid": "2338", - "joinDate": "2016-09-10" - }, - { - "id": "player_113064", - "lastname": "M'Changama", - "firstname": "Youssouf", - "position": 3, - "quotation": 30, - "ultraPosition": 31, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-01" - }, - { - "id": "player_113817", - "lastname": "Vardin", - "firstname": "Alexandre", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2016-08-01" - }, - { - "id": "player_114534", - "lastname": "Junior Tallo", - "firstname": null, - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_115149", - "lastname": "Ntim", - "firstname": "Emmanuel", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2015-10-29" - }, - { - "id": "player_115326", - "lastname": "Vachoux", - "firstname": "Jérémy", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_116593", - "lastname": "Vandenabeele", - "firstname": "Eric", - "position": 2, - "quotation": 17, - "ultraPosition": 20, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2016-07-01" - }, - { - "id": "player_116596", - "lastname": "Phojo", - "firstname": "Jerome", - "position": 2, - "quotation": 20, - "ultraPosition": 21, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2017-07-01" - }, - { - "id": "player_119426", - "lastname": "Gope-Fenepej", - "firstname": "Georges", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2018-07-13" - }, - { - "id": "player_119576", - "lastname": "Boyer", - "firstname": "Fabien", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-11" - }, - { - "id": "player_119577", - "lastname": "Hafidi", - "firstname": "Hamza", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2017-07-01" - }, - { - "id": "player_119582", - "lastname": "Lopez", - "firstname": "Julien", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Paris", - "teamid": "2338", - "joinDate": "2017-06-26" - }, - { - "id": "player_119691", - "lastname": "Adeoti", - "firstname": "Jordan", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-01" - }, - { - "id": "player_119738", - "lastname": "Birama Touré", - "firstname": null, - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-18" - }, - { - "id": "player_119744", - "lastname": "Michel", - "firstname": "Mathieu", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-08-31" - }, - { - "id": "player_120811", - "lastname": "Belmonte", - "firstname": "Anthony", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-16" - }, - { - "id": "player_122268", - "lastname": "Maletic", - "firstname": "Marko", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Paris", - "teamid": "2338", - "joinDate": "2019-07-01" - }, - { - "id": "player_12269", - "lastname": "Cavalli", - "firstname": "Johan", - "position": 3, - "quotation": 21, - "ultraPosition": 32, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2010-12-06" - }, - { - "id": "player_129481", - "lastname": "Lambese", - "firstname": "Stéphane", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_129482", - "lastname": "Latour", - "firstname": "Mickael", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_13395", - "lastname": "Le Tallec", - "firstname": "Anthony", - "position": 4, - "quotation": 22, - "ultraPosition": 40, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-01-05" - }, - { - "id": "player_140055", - "lastname": "Traore", - "firstname": "Baba", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-07-01" - }, - { - "id": "player_143670", - "lastname": "Dilo", - "firstname": "Christopher", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Paris", - "teamid": "2338", - "joinDate": "2018-01-06" - }, - { - "id": "player_144660", - "lastname": "Ndong", - "firstname": "Didier", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-01-01" - }, - { - "id": "player_149537", - "lastname": "Boubaya", - "firstname": "Tristan", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_149588", - "lastname": "Monfray", - "firstname": "Adrien", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_149918", - "lastname": "Berthomier", - "firstname": "Jason", - "position": 3, - "quotation": 21, - "ultraPosition": 32, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-01-02" - }, - { - "id": "player_149937", - "lastname": "Lefaix", - "firstname": "Kevin", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-01-31" - }, - { - "id": "player_149993", - "lastname": "Correa", - "firstname": "Joris", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_150670", - "lastname": "Mombris", - "firstname": "Jerome", - "position": 2, - "quotation": 19, - "ultraPosition": 21, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-01" - }, - { - "id": "player_151314", - "lastname": "Soubervie", - "firstname": "Anthony", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2016-07-01" - }, - { - "id": "player_151868", - "lastname": "Douline", - "firstname": "David", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_151912", - "lastname": "Cabot", - "firstname": "Jimmy", - "position": 3, - "quotation": 22, - "ultraPosition": 32, - "club": "Lorient", - "teamid": "694", - "joinDate": "2016-01-30" - }, - { - "id": "player_152337", - "lastname": "Badila", - "firstname": "Tobias", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Nancy", - "teamid": "148", - "joinDate": "2013-01-22" - }, - { - "id": "player_152487", - "lastname": "Eickmayer", - "firstname": "Joachim", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_152516", - "lastname": "Iglesias", - "firstname": "Jonathan", - "position": 3, - "quotation": 24, - "ultraPosition": 32, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2017-01-30" - }, - { - "id": "player_152865", - "lastname": "Traoré", - "firstname": "Cheick", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-07-10" - }, - { - "id": "player_154481", - "lastname": "Sane", - "firstname": "Pape", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-16" - }, - { - "id": "player_155962", - "lastname": "Ji Xiaoxuan", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2019-01-31" - }, - { - "id": "player_156274", - "lastname": "Thiare", - "firstname": "Jamal", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-07-01" - }, - { - "id": "player_156692", - "lastname": "Phiri", - "firstname": "Lebogang", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-07-01" - }, - { - "id": "player_157728", - "lastname": "Guillaume", - "firstname": "Baptiste", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-07-03" - }, - { - "id": "player_157822", - "lastname": "Lekhal", - "firstname": "Victor", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2013-01-01" - }, - { - "id": "player_160985", - "lastname": "Manzala", - "firstname": "Harrison", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_161275", - "lastname": "Padovani", - "firstname": "Romain", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2016-07-01" - }, - { - "id": "player_164031", - "lastname": "Hilaire", - "firstname": "Max", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-07-01" - }, - { - "id": "player_164500", - "lastname": "Assifuah", - "firstname": "Ebenezer", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-01-15" - }, - { - "id": "player_165413", - "lastname": "Boé-Kane", - "firstname": "Yann", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_165572", - "lastname": "Kemen", - "firstname": "Olivier", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Niort", - "teamid": "1245", - "joinDate": "2019-07-03" - }, - { - "id": "player_165803", - "lastname": "Pedro Rebocho", - "firstname": null, - "position": 2, - "quotation": 25, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-06-20" - }, - { - "id": "player_165855", - "lastname": "Danilson da Cruz", - "firstname": null, - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-07-07" - }, - { - "id": "player_166468", - "lastname": "Fofana", - "firstname": "Diaranké", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_166476", - "lastname": "Dequaire", - "firstname": "Guillaume", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_166541", - "lastname": "Dos Santos", - "firstname": "Laurent", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2017-07-01" - }, - { - "id": "player_167450", - "lastname": "Beaulieu", - "firstname": "Jonathan", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_167454", - "lastname": "Sakhi", - "firstname": "Hamza", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-01-20" - }, - { - "id": "player_167455", - "lastname": "Gallon", - "firstname": "Gauthier", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-01" - }, - { - "id": "player_168027", - "lastname": "Ondaan", - "firstname": "Terell", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-02" - }, - { - "id": "player_168104", - "lastname": "Steven Fortes", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_168115", - "lastname": "Derrien", - "firstname": "Maxence", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_168116", - "lastname": "Pelé", - "firstname": "Bryan", - "position": 3, - "quotation": 28, - "ultraPosition": 32, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-07-01" - }, - { - "id": "player_168212", - "lastname": "Diédhiou", - "firstname": "Christophe", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-07-08" - }, - { - "id": "player_168326", - "lastname": "Bese", - "firstname": "Barnabás", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2016-08-19" - }, - { - "id": "player_168434", - "lastname": "Pi", - "firstname": "Jessy", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-07-01" - }, - { - "id": "player_168567", - "lastname": "Hountondji", - "firstname": "Cédric", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-05" - }, - { - "id": "player_170861", - "lastname": "Abdoul Ba", - "firstname": null, - "position": 2, - "quotation": 4, - "ultraPosition": 20, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-01" - }, - { - "id": "player_171646", - "lastname": "Camara", - "firstname": "Aboubacar Demba", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-09-06" - }, - { - "id": "player_172870", - "lastname": "Kaabouni", - "firstname": "Younes", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-02-01" - }, - { - "id": "player_173235", - "lastname": "Grbic", - "firstname": "Adrian", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-01" - }, - { - "id": "player_173242", - "lastname": "Diallo", - "firstname": "Ismaël", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-07-01" - }, - { - "id": "player_174875", - "lastname": "Sissako", - "firstname": "Mamadou", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Troyes", - "teamid": "154", - "joinDate": "2016-07-01" - }, - { - "id": "player_176501", - "lastname": "Gradit", - "firstname": "Jonathan", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-15" - }, - { - "id": "player_176569", - "lastname": "Trichard", - "firstname": "Driss", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-01" - }, - { - "id": "player_176737", - "lastname": "Dady Ngoye", - "firstname": "Francis", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_177442", - "lastname": "Bardy", - "firstname": "Pierre", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2011-07-01" - }, - { - "id": "player_177445", - "lastname": "Chougrani", - "firstname": "Joris", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2010-07-01" - }, - { - "id": "player_177449", - "lastname": "Boissier", - "firstname": "Remy", - "position": 3, - "quotation": 4, - "ultraPosition": 31, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2018-07-01" - }, - { - "id": "player_177833", - "lastname": "Ruffaut", - "firstname": "Pierre", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2016-07-01" - }, - { - "id": "player_177864", - "lastname": "Santelli", - "firstname": "Benjamin", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_178492", - "lastname": "Crivelli", - "firstname": "Enzo", - "position": 4, - "quotation": 26, - "ultraPosition": 40, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-01" - }, - { - "id": "player_178814", - "lastname": "Pambou", - "firstname": "Yves", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-01-15" - }, - { - "id": "player_180299", - "lastname": "Mutombo Kupa", - "firstname": "Gabriel", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_181439", - "lastname": "Prior", - "firstname": "Jérôme", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-07-01" - }, - { - "id": "player_18168", - "lastname": "Pitroipa", - "firstname": "Jonathan", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Paris", - "teamid": "2338", - "joinDate": "2018-08-06" - }, - { - "id": "player_182318", - "lastname": "David", - "firstname": "Florian", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_184083", - "lastname": "Thiam", - "firstname": "Abdoulkader", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_184203", - "lastname": "Salles", - "firstname": "Esteban", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-23" - }, - { - "id": "player_184514", - "lastname": "Fumu Tamuzo", - "firstname": "François-Xavier", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2013-05-31" - }, - { - "id": "player_184677", - "lastname": "Sollacaro", - "firstname": "Francois-Joseph", - "position": 1, - "quotation": 8, - "ultraPosition": 10, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2014-05-10" - }, - { - "id": "player_184962", - "lastname": "Zedadka", - "firstname": "Akim", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-01" - }, - { - "id": "player_189536", - "lastname": "Spano", - "firstname": "Maxime", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-07-01" - }, - { - "id": "player_191792", - "lastname": "Madri", - "firstname": "Mouaad", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2017-07-01" - }, - { - "id": "player_192699", - "lastname": "Pedro Henrique", - "firstname": null, - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-07-01" - }, - { - "id": "player_192706", - "lastname": "Djigla", - "firstname": "David", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2015-07-08" - }, - { - "id": "player_193080", - "lastname": "Konate", - "firstname": "Hillel", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-07-01" - }, - { - "id": "player_193276", - "lastname": "Jacob", - "firstname": "Valentin", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_193285", - "lastname": "Lemonnier", - "firstname": "Pierre", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2017-07-01" - }, - { - "id": "player_193406", - "lastname": "Belon", - "firstname": "Valentin", - "position": 1, - "quotation": 4, - "ultraPosition": 10, - "club": "Lens", - "teamid": "142", - "joinDate": "2014-07-01" - }, - { - "id": "player_193407", - "lastname": "Lecoeuche", - "firstname": "Quentin", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-01" - }, - { - "id": "player_193425", - "lastname": "Benet", - "firstname": "Jessy", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-01" - }, - { - "id": "player_195095", - "lastname": "Senzemba", - "firstname": "Nicolas", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2014-07-01" - }, - { - "id": "player_196111", - "lastname": "M'Pasi N'Zau", - "firstname": "Lionel", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2016-07-11" - }, - { - "id": "player_197026", - "lastname": "Mauricio", - "firstname": "Tony", - "position": 3, - "quotation": 30, - "ultraPosition": 32, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-06-12" - }, - { - "id": "player_198189", - "lastname": "Louiserre", - "firstname": "Dylan", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_198381", - "lastname": "Pickel", - "firstname": "Charles", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-02" - }, - { - "id": "player_198987", - "lastname": "Raveloson", - "firstname": "Rayan", - "position": 2, - "quotation": 24, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-07-01" - }, - { - "id": "player_199519", - "lastname": "Boto", - "firstname": "Kenji-Van", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2014-07-01" - }, - { - "id": "player_201644", - "lastname": "Allagbe", - "firstname": "Saturnin", - "position": 1, - "quotation": 16, - "ultraPosition": 10, - "club": "Niort", - "teamid": "1245", - "joinDate": "2014-12-17" - }, - { - "id": "player_202068", - "lastname": "Sarr", - "firstname": "Adama", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Paris", - "teamid": "2338", - "joinDate": "2018-07-01" - }, - { - "id": "player_202298", - "lastname": "Ati", - "firstname": "Lawrence", - "position": 1, - "quotation": 9, - "ultraPosition": 10, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2017-07-11" - }, - { - "id": "player_202961", - "lastname": "Albert", - "firstname": "Josue", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2018-07-01" - }, - { - "id": "player_202963", - "lastname": "Hergault", - "firstname": "Jerome", - "position": 2, - "quotation": 15, - "ultraPosition": 21, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2017-07-01" - }, - { - "id": "player_202971", - "lastname": "Fofana", - "firstname": "Nama", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2015-07-01" - }, - { - "id": "player_202985", - "lastname": "Youssouf", - "firstname": "Bendjaloud", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-01" - }, - { - "id": "player_203342", - "lastname": "Tall", - "firstname": "Maki Madani", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2019-07-01" - }, - { - "id": "player_204188", - "lastname": "Sotoca", - "firstname": "Florian", - "position": 4, - "quotation": 26, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_204510", - "lastname": "Jaques", - "firstname": "Thibault", - "position": 2, - "quotation": 17, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2016-07-01" - }, - { - "id": "player_204513", - "lastname": "Abou Demba", - "firstname": "Harouna", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2017-07-01" - }, - { - "id": "player_204728", - "lastname": "Nguiamba", - "firstname": "Aurelien", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-04-01" - }, - { - "id": "player_204744", - "lastname": "Chouiar", - "firstname": "Mounir", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2016-07-01" - }, - { - "id": "player_205552", - "lastname": "Laporte", - "firstname": "Julien", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Lorient", - "teamid": "694", - "joinDate": "2019-07-08" - }, - { - "id": "player_205569", - "lastname": "Jacob", - "firstname": "Corentin", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_205880", - "lastname": "Thuram", - "firstname": "Marcus", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-07-06" - }, - { - "id": "player_208554", - "lastname": "Ebosse", - "firstname": "Enzo", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_208569", - "lastname": "Mouaddib", - "firstname": "Jad", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-01-22" - }, - { - "id": "player_208949", - "lastname": "Daham", - "firstname": "Sofiane", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2014-07-01" - }, - { - "id": "player_209170", - "lastname": "Dasquet", - "firstname": "Thomas", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2017-07-01" - }, - { - "id": "player_209171", - "lastname": "Arcus", - "firstname": "Carlens", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-07-01" - }, - { - "id": "player_209172", - "lastname": "Confais", - "firstname": "Alois", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-01-01" - }, - { - "id": "player_209874", - "lastname": "Marchetti", - "firstname": "Vincent", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2016-07-17" - }, - { - "id": "player_210187", - "lastname": "Sarr", - "firstname": "Sidy", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-07-01" - }, - { - "id": "player_210205", - "lastname": "Souleymane Diarra", - "firstname": null, - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-02" - }, - { - "id": "player_210460", - "lastname": "N'Guessan", - "firstname": "Serge", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2016-07-01" - }, - { - "id": "player_210531", - "lastname": "Fallou Niang", - "firstname": null, - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2017-08-03" - }, - { - "id": "player_212333", - "lastname": "Dabo", - "firstname": "Elhadj", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2015-07-01" - }, - { - "id": "player_213196", - "lastname": "Demoncy", - "firstname": "Yohan", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_213200", - "lastname": "Eboa Eboa", - "firstname": "Félix", - "position": 2, - "quotation": 23, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-07-01" - }, - { - "id": "player_213258", - "lastname": "Bamba", - "firstname": "Issiaka", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2017-07-01" - }, - { - "id": "player_213320", - "lastname": "Conde", - "firstname": "Sekou", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-07-01" - }, - { - "id": "player_213362", - "lastname": "Coutadeur", - "firstname": "Mathieu", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2017-07-01" - }, - { - "id": "player_213400", - "lastname": "D'Arpino", - "firstname": "Maxime", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-01-21" - }, - { - "id": "player_213575", - "lastname": "Tahrat", - "firstname": "Mehdi", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-11" - }, - { - "id": "player_213576", - "lastname": "Yohou", - "firstname": "Samuel", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Paris", - "teamid": "2338", - "joinDate": "2010-07-01" - }, - { - "id": "player_213940", - "lastname": "Blas", - "firstname": "Ludovic", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2015-07-01" - }, - { - "id": "player_214244", - "lastname": "N'Simba", - "firstname": "Vital", - "position": 2, - "quotation": 17, - "ultraPosition": 21, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2018-07-01" - }, - { - "id": "player_214251", - "lastname": "Vitor Costa", - "firstname": null, - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_214282", - "lastname": "Laci", - "firstname": "Qazim", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2019-07-01" - }, - { - "id": "player_214946", - "lastname": "Julan", - "firstname": "Nathaël", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-01-31" - }, - { - "id": "player_215362", - "lastname": "Francois", - "firstname": "Martin", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2015-07-01" - }, - { - "id": "player_215490", - "lastname": "Issoko", - "firstname": "Arnold", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-07-01" - }, - { - "id": "player_215669", - "lastname": "Kadewere", - "firstname": "Tinotenda", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-07-27" - }, - { - "id": "player_216288", - "lastname": "Desmas", - "firstname": "Arthur", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2018-07-01" - }, - { - "id": "player_216438", - "lastname": "Casimir Ninga", - "firstname": null, - "position": 4, - "quotation": 27, - "ultraPosition": 40, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-05" - }, - { - "id": "player_216530", - "lastname": "Konate", - "firstname": "Brahim", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-08-14" - }, - { - "id": "player_216646", - "lastname": "Wissa", - "firstname": "Yoane", - "position": 4, - "quotation": 19, - "ultraPosition": 40, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-01-23" - }, - { - "id": "player_216702", - "lastname": "Maury", - "firstname": "Erwan", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_218355", - "lastname": "Ouaneh", - "firstname": "Peter", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_218357", - "lastname": "Claude Maurice", - "firstname": "Alexis", - "position": 3, - "quotation": 38, - "ultraPosition": 32, - "club": "Lorient", - "teamid": "694", - "joinDate": "2016-09-01" - }, - { - "id": "player_218366", - "lastname": "Fomba", - "firstname": "Lamine", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2016-07-01" - }, - { - "id": "player_219145", - "lastname": "Gonzalez", - "firstname": "Oumar", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_219287", - "lastname": "Cissokho", - "firstname": "Till", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-01" - }, - { - "id": "player_219969", - "lastname": "Banza", - "firstname": "Simon", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2015-11-20" - }, - { - "id": "player_220001", - "lastname": "Livolant", - "firstname": "Jeremy", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-07-10" - }, - { - "id": "player_220022", - "lastname": "Aubin Long", - "firstname": null, - "position": 1, - "quotation": 2, - "ultraPosition": 10, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2015-07-01" - }, - { - "id": "player_220110", - "lastname": "Braat", - "firstname": "Quentin", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Niort", - "teamid": "1245", - "joinDate": "2019-07-01" - }, - { - "id": "player_220359", - "lastname": "Prevot", - "firstname": "Maxence", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2015-12-01" - }, - { - "id": "player_220374", - "lastname": "Maanane", - "firstname": "Eddy", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_220391", - "lastname": "Thomas Henry", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2016-07-01" - }, - { - "id": "player_220560", - "lastname": "Perrin", - "firstname": "Gaetan", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-01-21" - }, - { - "id": "player_220646", - "lastname": "Coulibaly", - "firstname": "Sega", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-07-01" - }, - { - "id": "player_220922", - "lastname": "Karamoko", - "firstname": "Souleymane", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Nancy", - "teamid": "148", - "joinDate": "2019-07-01" - }, - { - "id": "player_220924", - "lastname": "Sangante", - "firstname": "Opa", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2016-07-01" - }, - { - "id": "player_220936", - "lastname": "Mandouki", - "firstname": "Cyril", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Paris", - "teamid": "2338", - "joinDate": "2017-07-01" - }, - { - "id": "player_220943", - "lastname": "Tchokounte", - "firstname": "Malik", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-11" - }, - { - "id": "player_221455", - "lastname": "Da Costa", - "firstname": "Julien", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-07-01" - }, - { - "id": "player_221626", - "lastname": "Caddy", - "firstname": "Dorian", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_222388", - "lastname": "Kocik", - "firstname": "Nicolas", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2016-01-01" - }, - { - "id": "player_222438", - "lastname": "Tirard", - "firstname": "Corentin", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2017-07-01" - }, - { - "id": "player_222853", - "lastname": "Mendy", - "firstname": "Arial", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_223140", - "lastname": "Pereira Lage", - "firstname": null, - "position": 3, - "quotation": 32, - "ultraPosition": 32, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2016-02-11" - }, - { - "id": "player_224077", - "lastname": "Elhadji Djibril Diaw", - "firstname": null, - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-07-01" - }, - { - "id": "player_224297", - "lastname": "Diarra", - "firstname": "Stéphane", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2018-07-01" - }, - { - "id": "player_224299", - "lastname": "Henry", - "firstname": "Valentin", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-06-01" - }, - { - "id": "player_225046", - "lastname": "Stavitski", - "firstname": "Timo", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-01-01" - }, - { - "id": "player_225190", - "lastname": "Vincent Thill", - "firstname": null, - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_225432", - "lastname": "Camara", - "firstname": "Samba", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2016-01-01" - }, - { - "id": "player_226114", - "lastname": "Mario González", - "firstname": null, - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-16" - }, - { - "id": "player_226183", - "lastname": "Repas", - "firstname": "Jan", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Caen", - "teamid": "1028", - "joinDate": "2017-08-25" - }, - { - "id": "player_226943", - "lastname": "Desprez", - "firstname": "Didier", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_227217", - "lastname": "Mazikou", - "firstname": "Bradley", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2015-07-01" - }, - { - "id": "player_227326", - "lastname": "Mara", - "firstname": "Mohamed", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Lorient", - "teamid": "694", - "joinDate": "2016-07-01" - }, - { - "id": "player_227763", - "lastname": "Avounou", - "firstname": "Durel", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2016-07-01" - }, - { - "id": "player_228254", - "lastname": "Kiki Kouyate", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-01-23" - }, - { - "id": "player_228291", - "lastname": "El Hajjam", - "firstname": "Oualid", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-05" - }, - { - "id": "player_228292", - "lastname": "Fofana", - "firstname": "Guessouma", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-08-29" - }, - { - "id": "player_228294", - "lastname": "Heloise", - "firstname": "Laurent", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-07-01" - }, - { - "id": "player_228313", - "lastname": "Gomis", - "firstname": "Yannick", - "position": 4, - "quotation": 30, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_228319", - "lastname": "Salmier", - "firstname": "Yoann", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-01" - }, - { - "id": "player_228320", - "lastname": "Seka", - "firstname": "Ernest", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-07-01" - }, - { - "id": "player_229222", - "lastname": "Mendes", - "firstname": "Houboulang", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-24" - }, - { - "id": "player_229225", - "lastname": "Gory", - "firstname": "Alimami", - "position": 4, - "quotation": 27, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2016-07-01" - }, - { - "id": "player_229480", - "lastname": "Senhadji", - "firstname": "Rayan", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2016-07-01" - }, - { - "id": "player_229605", - "lastname": "Michelin", - "firstname": "Clement", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_229959", - "lastname": "Niakate", - "firstname": "Sikou", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-08-30" - }, - { - "id": "player_230458", - "lastname": "Weissbeck", - "firstname": "Gaetan", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-01-31" - }, - { - "id": "player_230718", - "lastname": "Fortuné", - "firstname": "Kévin", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-08-31" - }, - { - "id": "player_230801", - "lastname": "Radovanovic", - "firstname": "Aleksandar", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_231881", - "lastname": "Duverne", - "firstname": "Jean-Kevin", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Lens", - "teamid": "142", - "joinDate": "2016-07-01" - }, - { - "id": "player_232182", - "lastname": "Hein", - "firstname": "Gauthier", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-07-04" - }, - { - "id": "player_232242", - "lastname": "Massouema", - "firstname": "Eden", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-01" - }, - { - "id": "player_232252", - "lastname": "Merghem", - "firstname": "Mehdi", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-01-11" - }, - { - "id": "player_232253", - "lastname": "Sissako", - "firstname": "Abdoulaye", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-09-14" - }, - { - "id": "player_234771", - "lastname": "Wojtkowiak", - "firstname": "Valentin", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Lens", - "teamid": "142", - "joinDate": "2016-07-01" - }, - { - "id": "player_234773", - "lastname": "Digol N'Dozangue", - "firstname": "Khamis", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2017-09-01" - }, - { - "id": "player_234774", - "lastname": "Sylla", - "firstname": "Moussa", - "position": 2, - "quotation": 4, - "ultraPosition": 21, - "club": "Lens", - "teamid": "142", - "joinDate": "2016-07-01" - }, - { - "id": "player_234775", - "lastname": "Beghin", - "firstname": "Guillaume", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2016-07-01" - }, - { - "id": "player_235163", - "lastname": "Ambri", - "firstname": "Steve", - "position": 4, - "quotation": 4, - "ultraPosition": 40, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2016-07-01" - }, - { - "id": "player_235708", - "lastname": "Mayembo", - "firstname": "Fernand", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-07-01" - }, - { - "id": "player_235862", - "lastname": "Poaty", - "firstname": "Morgan", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-07-01" - }, - { - "id": "player_240084", - "lastname": "Dzabana", - "firstname": "Alan", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-01-31" - }, - { - "id": "player_241337", - "lastname": "Paro", - "firstname": "Issouf", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-08-02" - }, - { - "id": "player_241345", - "lastname": "Bayala", - "firstname": "Cyrille", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Lens", - "teamid": "142", - "joinDate": "2017-08-31" - }, - { - "id": "player_241700", - "lastname": "Coulibaly", - "firstname": "Yacouba", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-07-01" - }, - { - "id": "player_242111", - "lastname": "Bena", - "firstname": "Quentin", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Niort", - "teamid": "1245", - "joinDate": "2016-07-01" - }, - { - "id": "player_242167", - "lastname": "Hamel", - "firstname": "Pierre-Yves", - "position": 4, - "quotation": 39, - "ultraPosition": 40, - "club": "Lorient", - "teamid": "694", - "joinDate": "2016-06-01" - }, - { - "id": "player_242514", - "lastname": "Operi", - "firstname": "Christopher", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2017-07-24" - }, - { - "id": "player_242768", - "lastname": "Romil", - "firstname": "Jorris", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2017-07-01" - }, - { - "id": "player_243155", - "lastname": "Rui Pires", - "firstname": null, - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-09" - }, - { - "id": "player_243689", - "lastname": "Pendant", - "firstname": "Jason", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2016-11-17" - }, - { - "id": "player_244135", - "lastname": "Jung", - "firstname": "Andrew", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-07-01" - }, - { - "id": "player_244490", - "lastname": "Maziz", - "firstname": "Youssef", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_244591", - "lastname": "Lasme", - "firstname": "Bryan", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2016-12-01" - }, - { - "id": "player_244753", - "lastname": "Vanbaleghem", - "firstname": "Valentin", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-07-01" - }, - { - "id": "player_245026", - "lastname": "Chérif Quenum", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2017-07-01" - }, - { - "id": "player_245137", - "lastname": "El Hriti", - "firstname": "Aniss", - "position": 2, - "quotation": 4, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_245490", - "lastname": "Teka", - "firstname": "Seif", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-08-01" - }, - { - "id": "player_245637", - "lastname": "Benkaid", - "firstname": "Hicham", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2017-07-01" - }, - { - "id": "player_245653", - "lastname": "Kamissoko", - "firstname": "Mamadou", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-01" - }, - { - "id": "player_245694", - "lastname": "Guezoui", - "firstname": "Medhy", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-01-24" - }, - { - "id": "player_245726", - "lastname": "Abdallah", - "firstname": "Abdel Hakim", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_245750", - "lastname": "Passi", - "firstname": "Bryan", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Niort", - "teamid": "1245", - "joinDate": "2019-07-01" - }, - { - "id": "player_245882", - "lastname": "Leautey", - "firstname": "Antoine", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-01-12" - }, - { - "id": "player_245914", - "lastname": "Merdji", - "firstname": "Yanis", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-07-01" - }, - { - "id": "player_246402", - "lastname": "Basque", - "firstname": "Romain", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-07-17" - }, - { - "id": "player_246451", - "lastname": "Bozok", - "firstname": "Umut", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Lorient", - "teamid": "694", - "joinDate": "2019-07-01" - }, - { - "id": "player_246453", - "lastname": "Pinoteau", - "firstname": "Xavier", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2016-07-01" - }, - { - "id": "player_247049", - "lastname": "Ephestion", - "firstname": "Thomas", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-08-31" - }, - { - "id": "player_247120", - "lastname": "Bidounga", - "firstname": "Ryan", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Nancy", - "teamid": "148", - "joinDate": "2016-07-01" - }, - { - "id": "player_248086", - "lastname": "Chevreuil", - "firstname": "Brian", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2017-07-01" - }, - { - "id": "player_250693", - "lastname": "Diagne", - "firstname": "Ousseynou Cavin", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2018-06-01" - }, - { - "id": "player_28140", - "lastname": "Martins Pereira", - "firstname": "Jonathan", - "position": 2, - "quotation": 4, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_37743", - "lastname": "Lejeune", - "firstname": "Kévin", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2017-08-31" - }, - { - "id": "player_37777", - "lastname": "Choplin", - "firstname": "Jérémy", - "position": 2, - "quotation": 19, - "ultraPosition": 20, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-07-17" - }, - { - "id": "player_37780", - "lastname": "Loriot", - "firstname": "Guillaume", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-07-01" - }, - { - "id": "player_37939", - "lastname": "Marveaux", - "firstname": "Sylvain", - "position": 3, - "quotation": 19, - "ultraPosition": 32, - "club": "Lorient", - "teamid": "694", - "joinDate": "2016-07-15" - }, - { - "id": "player_38007", - "lastname": "Bonnet", - "firstname": "Alexandre", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2009-08-13" - }, - { - "id": "player_38008", - "lastname": "Robic", - "firstname": "Antony", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Nancy", - "teamid": "148", - "joinDate": "2015-07-01" - }, - { - "id": "player_38260", - "lastname": "Boukari", - "firstname": "Abdoulrazak", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2016-07-01" - }, - { - "id": "player_40511", - "lastname": "Petric", - "firstname": "Denis", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-08-31" - }, - { - "id": "player_40733", - "lastname": "Avinel", - "firstname": "Cedric", - "position": 2, - "quotation": 21, - "ultraPosition": 20, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2017-07-01" - }, - { - "id": "player_40808", - "lastname": "Oniangué", - "firstname": "Prince", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-12" - }, - { - "id": "player_40826", - "lastname": "Aymes", - "firstname": "Jérémy", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_421128", - "lastname": "Mathis", - "firstname": "Boris", - "position": 4, - "quotation": 4, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_422021", - "lastname": "Foulon", - "firstname": "Gwenn", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2017-04-20" - }, - { - "id": "player_422453", - "lastname": "Gueye", - "firstname": "Pape Alassane", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-05-01" - }, - { - "id": "player_422474", - "lastname": "Bassi", - "firstname": "Amine", - "position": 3, - "quotation": 22, - "ultraPosition": 32, - "club": "Nancy", - "teamid": "148", - "joinDate": "2016-07-01" - }, - { - "id": "player_422897", - "lastname": "Ameka Autchanga", - "firstname": "Louis", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_423151", - "lastname": "Robail", - "firstname": "Gaëtan", - "position": 3, - "quotation": 25, - "ultraPosition": 32, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_423838", - "lastname": "Rajot", - "firstname": "Lorenzo", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2017-05-18" - }, - { - "id": "player_424916", - "lastname": "Tiehi", - "firstname": "Christ", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-07-01" - }, - { - "id": "player_424930", - "lastname": "Barka", - "firstname": "Yanis", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Nancy", - "teamid": "148", - "joinDate": "2017-11-15" - }, - { - "id": "player_42586", - "lastname": "Gillet", - "firstname": "Guillaume", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-08-02" - }, - { - "id": "player_42714", - "lastname": "Sorbon", - "firstname": "Jérémy", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2013-07-01" - }, - { - "id": "player_42720", - "lastname": "Raineau", - "firstname": "Alexandre", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2016-07-01" - }, - { - "id": "player_427213", - "lastname": "Moussiti-Oko", - "firstname": "Bevic", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_429441", - "lastname": "Dembélé", - "firstname": "Malaly", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Nancy", - "teamid": "148", - "joinDate": "2017-07-01" - }, - { - "id": "player_429453", - "lastname": "Tramoni", - "firstname": "Matteo", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2017-07-01" - }, - { - "id": "player_429523", - "lastname": "Lebon", - "firstname": "Keelan", - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Paris", - "teamid": "2338", - "joinDate": "2017-07-01" - }, - { - "id": "player_43024", - "lastname": "Muratori", - "firstname": "Vincent", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Nancy", - "teamid": "148", - "joinDate": "2012-07-30" - }, - { - "id": "player_430993", - "lastname": "Gomis", - "firstname": "David", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-01" - }, - { - "id": "player_431422", - "lastname": "Koyalipou", - "firstname": "Goduine", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-07-01" - }, - { - "id": "player_431424", - "lastname": "Bourhane", - "firstname": "Yacine", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Niort", - "teamid": "1245", - "joinDate": "2017-07-01" - }, - { - "id": "player_431649", - "lastname": "Roche", - "firstname": "Yohan", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_431650", - "lastname": "Talal", - "firstname": "Amine", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2017-07-01" - }, - { - "id": "player_431653", - "lastname": "Wadja", - "firstname": "Franklin", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-01" - }, - { - "id": "player_433522", - "lastname": "Fofana", - "firstname": "Yahia", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2017-07-01" - }, - { - "id": "player_433857", - "lastname": "Semedo", - "firstname": "Willy", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_433895", - "lastname": "Le Roy", - "firstname": "Killian", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-01" - }, - { - "id": "player_434828", - "lastname": "Laiton", - "firstname": "Sonny", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-01" - }, - { - "id": "player_43553", - "lastname": "Lemoine", - "firstname": "Fabien", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-18" - }, - { - "id": "player_435618", - "lastname": "Simon Ternynck", - "firstname": null, - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Nancy", - "teamid": "148", - "joinDate": "2017-07-01" - }, - { - "id": "player_436658", - "lastname": "Deminguet", - "firstname": "Jessy", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Caen", - "teamid": "1028", - "joinDate": "2017-07-01" - }, - { - "id": "player_437495", - "lastname": "Meslier", - "firstname": "Illan", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_437499", - "lastname": "Lacroix", - "firstname": "Maxence", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-01" - }, - { - "id": "player_437692", - "lastname": "Pattier", - "firstname": "Maxime", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-01" - }, - { - "id": "player_438309", - "lastname": "Ebimbe", - "firstname": "Eric Junior Dina", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2019-07-05" - }, - { - "id": "player_438464", - "lastname": "Doucoure", - "firstname": "Cheick Oumar", - "position": 3, - "quotation": 20, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_438843", - "lastname": "Bari", - "firstname": "Bilal", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_439124", - "lastname": "Bamba", - "firstname": "Axel", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Paris", - "teamid": "2338", - "joinDate": "2017-09-01" - }, - { - "id": "player_439711", - "lastname": "Armougom", - "firstname": "Yoel", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "club": "Caen", - "teamid": "1028", - "joinDate": "2017-10-23" - }, - { - "id": "player_440852", - "lastname": "Luzayadio", - "firstname": "Arnaud", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_44136", - "lastname": "Leca", - "firstname": "Jean-Louis", - "position": 1, - "quotation": 22, - "ultraPosition": 10, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_44138", - "lastname": "Cahuzac", - "firstname": "Yannick", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_441582", - "lastname": "Etuin", - "firstname": "Maxime", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-12-01" - }, - { - "id": "player_441583", - "lastname": "Guel", - "firstname": "Moussa", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-12-01" - }, - { - "id": "player_441584", - "lastname": "Constant", - "firstname": "Hugo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Nancy", - "teamid": "148", - "joinDate": "2017-12-07" - }, - { - "id": "player_442131", - "lastname": "Fresneau", - "firstname": "Redha", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2017-12-01" - }, - { - "id": "player_442261", - "lastname": "Marcelin", - "firstname": "Jean", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-01" - }, - { - "id": "player_442585", - "lastname": "Seck", - "firstname": "Mafall", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2013-07-01" - }, - { - "id": "player_442588", - "lastname": "Tabue", - "firstname": "Kevin", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-07-01" - }, - { - "id": "player_442646", - "lastname": "Dieng", - "firstname": "Nathaniel", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_442649", - "lastname": "Elogo", - "firstname": "Arsene", - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2015-07-01" - }, - { - "id": "player_442650", - "lastname": "Coulibaly", - "firstname": "Ibrahima", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2016-07-01" - }, - { - "id": "player_442673", - "lastname": "Scheidler", - "firstname": "Aurelien", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_442707", - "lastname": "Marchadier", - "firstname": "Alex", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_44280", - "lastname": "Pontdemé", - "firstname": "Simon", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2015-07-01" - }, - { - "id": "player_44331", - "lastname": "El Jadeyaoui", - "firstname": "Alharbi", - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-01-05" - }, - { - "id": "player_444394", - "lastname": "Keita", - "firstname": "Tidiane", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-07-01" - }, - { - "id": "player_444397", - "lastname": "Ouhafsa", - "firstname": "Ayoub", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_444465", - "lastname": "Chambost", - "firstname": "Dylan", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-01" - }, - { - "id": "player_44476", - "lastname": "Jourdren", - "firstname": "Geoffrey", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Nancy", - "teamid": "148", - "joinDate": "2017-07-11" - }, - { - "id": "player_444903", - "lastname": "Gomel", - "firstname": "Benjamin", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-02-03" - }, - { - "id": "player_444944", - "lastname": "Kristinsson", - "firstname": "Kristófer", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_44499", - "lastname": "Armand", - "firstname": "Romain", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Paris", - "teamid": "2338", - "joinDate": "2019-07-01" - }, - { - "id": "player_446008", - "lastname": "Mbeumo", - "firstname": "Bryan", - "position": 4, - "quotation": 22, - "ultraPosition": 40, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-02-16" - }, - { - "id": "player_447547", - "lastname": "Brassier", - "firstname": "Lilian", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-07-01" - }, - { - "id": "player_448403", - "lastname": "Begraoui", - "firstname": "Yanis", - "position": 4, - "quotation": 4, - "ultraPosition": 40, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-04-04" - }, - { - "id": "player_45058", - "lastname": "Vincent", - "firstname": "Stéphen", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2016-07-01" - }, - { - "id": "player_45084", - "lastname": "Deaux", - "firstname": "Lucas", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2016-07-01" - }, - { - "id": "player_45103", - "lastname": "Maubleu", - "firstname": "Brice", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2014-12-30" - }, - { - "id": "player_45108", - "lastname": "Youssouf", - "firstname": "Mohamed", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-07-01" - }, - { - "id": "player_45110", - "lastname": "Saad", - "firstname": "Felipe", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-01" - }, - { - "id": "player_453108", - "lastname": "Tormin", - "firstname": "Guevin", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-07-01" - }, - { - "id": "player_454668", - "lastname": "Fontani", - "firstname": "Dylan", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_454669", - "lastname": "Lapis", - "firstname": "Florian", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_454670", - "lastname": "Pauchet", - "firstname": "Enzo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_454671", - "lastname": "Siby", - "firstname": "Mahamé", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-07-01" - }, - { - "id": "player_454677", - "lastname": "El Khoumisti", - "firstname": "Fahd", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_454684", - "lastname": "Glaentzlin", - "firstname": "Victor", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-01" - }, - { - "id": "player_454687", - "lastname": "Djitté", - "firstname": "Moussa", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_454688", - "lastname": "M'Bakata", - "firstname": "Salem", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-01" - }, - { - "id": "player_454689", - "lastname": "Kanté", - "firstname": "Ousmane", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Paris", - "teamid": "2338", - "joinDate": "2018-07-01" - }, - { - "id": "player_454694", - "lastname": "Ourega", - "firstname": "Fabien", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-06-08" - }, - { - "id": "player_454702", - "lastname": "Sissoko", - "firstname": "Ibrahim", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2019-07-01" - }, - { - "id": "player_456045", - "lastname": "Delos", - "firstname": "David", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_456046", - "lastname": "Doucoure", - "firstname": "Boubacari", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2018-07-01" - }, - { - "id": "player_457225", - "lastname": "Callens", - "firstname": "Thomas", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-01" - }, - { - "id": "player_457230", - "lastname": "Marega", - "firstname": "Issa", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-07-01" - }, - { - "id": "player_458310", - "lastname": "Hassan", - "firstname": "Haissem", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-07-01" - }, - { - "id": "player_458311", - "lastname": "Patron", - "firstname": "Pierre", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_458312", - "lastname": "Sevestre", - "firstname": "Alexis", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_458315", - "lastname": "Magnin", - "firstname": "Yohann", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2018-07-01" - }, - { - "id": "player_458316", - "lastname": "Djoco", - "firstname": "Ouparine", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2018-07-01" - }, - { - "id": "player_458317", - "lastname": "Mbelek Nouga", - "firstname": "Paul", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_458318", - "lastname": "Hari", - "firstname": "Esteban", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2018-07-01" - }, - { - "id": "player_458320", - "lastname": "Sylas Edjouma", - "firstname": "Malcom", - "position": 3, - "quotation": 4, - "ultraPosition": 31, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2019-07-16" - }, - { - "id": "player_458322", - "lastname": "Ponceau", - "firstname": "Julien", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_458335", - "lastname": "Bassouamina", - "firstname": "Mons", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-07-01" - }, - { - "id": "player_458344", - "lastname": "Simon", - "firstname": "Nsana", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_458455", - "lastname": "Tchimbembé", - "firstname": "Warren", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-07-01" - }, - { - "id": "player_459414", - "lastname": "Pellegrini", - "firstname": "Lucas", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-07-26" - }, - { - "id": "player_460590", - "lastname": "Kilama Kilama", - "firstname": "Guy", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-07-01" - }, - { - "id": "player_46141", - "lastname": "Dona Ndoh", - "firstname": "Andé", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "club": "Nancy", - "teamid": "148", - "joinDate": "2019-07-01" - }, - { - "id": "player_461827", - "lastname": "Koita", - "firstname": "Djegui", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-07-01" - }, - { - "id": "player_462567", - "lastname": "Moltenis", - "firstname": "Boris Sebastian", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-01" - }, - { - "id": "player_462573", - "lastname": "Umbdenstock", - "firstname": "Isaak", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-01" - }, - { - "id": "player_462609", - "lastname": "Abdelli", - "firstname": "Himad", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-07-01" - }, - { - "id": "player_462623", - "lastname": "Arib", - "firstname": "Gaetan", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-07-01" - }, - { - "id": "player_462639", - "lastname": "Abessolo", - "firstname": "Wilfrid", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_462643", - "lastname": "Bila", - "firstname": "Abdoul", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_462652", - "lastname": "Julloux", - "firstname": "Adrien", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-07-01" - }, - { - "id": "player_462707", - "lastname": "Soumare", - "firstname": "Moussa", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-08-14" - }, - { - "id": "player_464104", - "lastname": "Wamangituka Fundu", - "firstname": "Silas", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "club": "Paris", - "teamid": "2338", - "joinDate": "2018-08-30" - }, - { - "id": "player_464193", - "lastname": "Bilingi", - "firstname": "Yohan", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-07-01" - }, - { - "id": "player_465153", - "lastname": "Carnot", - "firstname": "Louis", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-07-01" - }, - { - "id": "player_465345", - "lastname": "Abdallah", - "firstname": "Banrandy", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-09-13" - }, - { - "id": "player_465347", - "lastname": "Zady Sery", - "firstname": "Caleb", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-09-13" - }, - { - "id": "player_467094", - "lastname": "Bedfian", - "firstname": "Wilfried", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2018-10-04" - }, - { - "id": "player_467095", - "lastname": "Cabral", - "firstname": "Kevin", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-07-01" - }, - { - "id": "player_467098", - "lastname": "Marsella", - "firstname": "Lucas", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-10-01" - }, - { - "id": "player_468427", - "lastname": "El Idrissy", - "firstname": "Mounaim", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-10-18" - }, - { - "id": "player_468490", - "lastname": "Phaeton", - "firstname": "Matthias", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-10-19" - }, - { - "id": "player_468496", - "lastname": "Boudjemaa", - "firstname": "Mehdi", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-10-19" - }, - { - "id": "player_469117", - "lastname": "Bai", - "firstname": "Nathanael", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Niort", - "teamid": "1245", - "joinDate": "2018-10-25" - }, - { - "id": "player_469319", - "lastname": "Ako", - "firstname": "Steven", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-10-30" - }, - { - "id": "player_469324", - "lastname": "Bartouche", - "firstname": "Teddy", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-10-30" - }, - { - "id": "player_47104", - "lastname": "Fontaine", - "firstname": "Jean-Pascal", - "position": 3, - "quotation": 25, - "ultraPosition": 31, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2007-08-01" - }, - { - "id": "player_471139", - "lastname": "Haag", - "firstname": "Giovanni", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-11-22" - }, - { - "id": "player_471140", - "lastname": "Wooh", - "firstname": "Christopher Maurice", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-11-22" - }, - { - "id": "player_471141", - "lastname": "Linguet", - "firstname": "Allan", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-11-22" - }, - { - "id": "player_471213", - "lastname": "Joseph", - "firstname": "Evens", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-11-24" - }, - { - "id": "player_471469", - "lastname": "Bouzar Essaidi", - "firstname": "Samir", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-11-29" - }, - { - "id": "player_471470", - "lastname": "Triboulet", - "firstname": "Vinni", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-11-29" - }, - { - "id": "player_472187", - "lastname": "Zahary", - "firstname": "Younn", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-12-01" - }, - { - "id": "player_472710", - "lastname": "Tomi", - "firstname": "Felix", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-12-13" - }, - { - "id": "player_473244", - "lastname": "Sans", - "firstname": "Romain", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-12-01" - }, - { - "id": "player_473389", - "lastname": "Allevinah", - "firstname": "Jim", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-07-01" - }, - { - "id": "player_474131", - "lastname": "Brun", - "firstname": "Yohan", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-01-02" - }, - { - "id": "player_474778", - "lastname": "Jay", - "firstname": "Ronan", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-01-11" - }, - { - "id": "player_474860", - "lastname": "Abdeldjelil", - "firstname": "Oussama", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Paris", - "teamid": "2338", - "joinDate": "2019-07-01" - }, - { - "id": "player_476790", - "lastname": "Tutu", - "firstname": "Brice", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-02-01" - }, - { - "id": "player_476791", - "lastname": "Kyeremeh", - "firstname": "Godson", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-02-01" - }, - { - "id": "player_476987", - "lastname": "Ducrocq", - "firstname": "Tom", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-02-08" - }, - { - "id": "player_477368", - "lastname": "Leroy", - "firstname": "Leo", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-02-14" - }, - { - "id": "player_477369", - "lastname": "Adinany", - "firstname": "Bryan", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-02-14" - }, - { - "id": "player_477370", - "lastname": "Kone", - "firstname": "Zoumana", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Niort", - "teamid": "1245", - "joinDate": "2019-01-31" - }, - { - "id": "player_478862", - "lastname": "Teixeira", - "firstname": "Bryan Silva", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-03-01" - }, - { - "id": "player_481665", - "lastname": "Moussaki", - "firstname": "Herman", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-03-30" - }, - { - "id": "player_482379", - "lastname": "Corinus", - "firstname": "Jérémy", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2019-04-11" - }, - { - "id": "player_482380", - "lastname": "Chergui", - "firstname": "Samir Sophian", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2019-04-11" - }, - { - "id": "player_482381", - "lastname": "Le Pennec", - "firstname": "Ludovic", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2019-04-11" - }, - { - "id": "player_482997", - "lastname": "Baku", - "firstname": "William", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-07-01" - }, - { - "id": "player_483040", - "lastname": "Jurine", - "firstname": "Nicolas", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-01" - }, - { - "id": "player_483164", - "lastname": "Diako", - "firstname": "Lassana", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2019-04-21" - }, - { - "id": "player_484420", - "lastname": "Le Fée", - "firstname": "Enzo", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Lorient", - "teamid": "694", - "joinDate": "2019-05-09" - }, - { - "id": "player_484421", - "lastname": "Mambo", - "firstname": "Stone Muzalimoja", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-05-01" - }, - { - "id": "player_484795", - "lastname": "Loba", - "firstname": "Nathiau", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-05-16" - }, - { - "id": "player_485009", - "lastname": "Duponchelle", - "firstname": "Tom", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2018-07-01" - }, - { - "id": "player_487109", - "lastname": "Mellot", - "firstname": "Jeremy", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-07-01" - }, - { - "id": "player_487110", - "lastname": "Ouammou", - "firstname": "Nassim", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487395", - "lastname": "Keny", - "firstname": "Philippe Paulin", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-07-01" - }, - { - "id": "player_487448", - "lastname": "Bouallak", - "firstname": "Ryan", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-01" - }, - { - "id": "player_487506", - "lastname": "Bonnet", - "firstname": "Ugo", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487507", - "lastname": "Peyrelade", - "firstname": "Alexis", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487508", - "lastname": "Guerbert", - "firstname": "Mathieu", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487509", - "lastname": "Garcia", - "firstname": "Hugo", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487510", - "lastname": "Coelho", - "firstname": "Grégory", - "position": 4, - "quotation": 2, - "ultraPosition": 20, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487511", - "lastname": "Secchi", - "firstname": "Thomas", - "position": 1, - "quotation": 2, - "ultraPosition": 10, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_487533", - "lastname": "Goteni", - "firstname": "Chris-Vianney", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_487534", - "lastname": "Gyebohao", - "firstname": "Christian", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-01" - }, - { - "id": "player_49050", - "lastname": "Nestor", - "firstname": "Loic", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-12" - }, - { - "id": "player_49057", - "lastname": "Sanaia", - "firstname": "Amiran", - "position": 2, - "quotation": 13, - "ultraPosition": 40, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2019-07-01" - }, - { - "id": "player_49322", - "lastname": "Pinaud", - "firstname": "Gauthier", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2014-07-28" - }, - { - "id": "player_50148", - "lastname": "Gastien", - "firstname": "Johan", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2018-07-01" - }, - { - "id": "player_50199", - "lastname": "Kashi", - "firstname": "Ahmed", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-07-16" - }, - { - "id": "player_50301", - "lastname": "El Kaoutari", - "firstname": "Abdelhamid", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Nancy", - "teamid": "148", - "joinDate": "2019-01-17" - }, - { - "id": "player_50881", - "lastname": "Cambon", - "firstname": "Cédric", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Orléans", - "teamid": "6785", - "joinDate": "2017-06-24" - }, - { - "id": "player_50996", - "lastname": "Rodelin", - "firstname": "Ronny", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-08-15" - }, - { - "id": "player_51524", - "lastname": "Bellugou", - "firstname": "Francois", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-07-01" - }, - { - "id": "player_51525", - "lastname": "Roux", - "firstname": "Nolan", - "position": 4, - "quotation": 27, - "ultraPosition": 40, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-07-01" - }, - { - "id": "player_51929", - "lastname": "Tope Obadeyi", - "firstname": null, - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2018-07-25" - }, - { - "id": "player_52750", - "lastname": "Perquis", - "firstname": "Damien", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2015-07-17" - }, - { - "id": "player_52777", - "lastname": "Yohann Thuram", - "firstname": null, - "position": 1, - "quotation": 18, - "ultraPosition": 10, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-08" - }, - { - "id": "player_55254", - "lastname": "Souprayen", - "firstname": "Samuel", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-08-17" - }, - { - "id": "player_55313", - "lastname": "Tabanou", - "firstname": "Franck", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2017-08-01" - }, - { - "id": "player_55343", - "lastname": "Salibur", - "firstname": "Yannis", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2014-01-04" - }, - { - "id": "player_56659", - "lastname": "Dembele", - "firstname": "Mana", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2016-07-13" - }, - { - "id": "player_57129", - "lastname": "Peybernes", - "firstname": "Mathieu", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-01-11" - }, - { - "id": "player_57353", - "lastname": "Atrous", - "firstname": "Samuel", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Chambly", - "teamid": "6783", - "joinDate": "2017-11-10" - }, - { - "id": "player_57734", - "lastname": "Paye", - "firstname": "Pape", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Sochaux", - "teamid": "693", - "joinDate": "2019-07-12" - }, - { - "id": "player_58616", - "lastname": "Bazile", - "firstname": "Herve", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-07-01" - }, - { - "id": "player_59956", - "lastname": "Gorgelin", - "firstname": "Mathieu", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2019-07-01" - }, - { - "id": "player_60189", - "lastname": "Zelazny", - "firstname": "Erwin", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-07-01" - }, - { - "id": "player_60810", - "lastname": "Poujol", - "firstname": "Loïc", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Rodez", - "teamid": "3308", - "joinDate": "2016-09-06" - }, - { - "id": "player_62226", - "lastname": "Barthelme", - "firstname": "Maxime", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Troyes", - "teamid": "154", - "joinDate": "2019-07-01" - }, - { - "id": "player_67255", - "lastname": "Balijon", - "firstname": "Arnaud", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Le Havre", - "teamid": "141", - "joinDate": "2018-01-10" - }, - { - "id": "player_67272", - "lastname": "Gonçalves", - "firstname": "Anthony", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-07-01" - }, - { - "id": "player_67278", - "lastname": "Le Goff", - "firstname": "Vincent", - "position": 2, - "quotation": 25, - "ultraPosition": 21, - "club": "Lorient", - "teamid": "694", - "joinDate": "2014-07-17" - }, - { - "id": "player_67346", - "lastname": "Mesloub", - "firstname": "Walid", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-01-27" - }, - { - "id": "player_67533", - "lastname": "Sans", - "firstname": "Matthieu", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Niort", - "teamid": "1245", - "joinDate": "2014-07-31" - }, - { - "id": "player_68157", - "lastname": "N'Gbakoto", - "firstname": "Yeni", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2018-01-03" - }, - { - "id": "player_73500", - "lastname": "Saunier", - "firstname": "Matthieu", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-08-07" - }, - { - "id": "player_73539", - "lastname": "Tinhan", - "firstname": "Jonathan", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2019-07-12" - }, - { - "id": "player_73665", - "lastname": "Pillot", - "firstname": "Rémy", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2016-07-28" - }, - { - "id": "player_75987", - "lastname": "Leroy", - "firstname": "Benjamin", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-07-01" - }, - { - "id": "player_76008", - "lastname": "Johan Larsson", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-01-01" - }, - { - "id": "player_76622", - "lastname": "Boussaha", - "firstname": "Lakdar", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-01-09" - }, - { - "id": "player_80799", - "lastname": "Cuffaut", - "firstname": "Joffrey", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2018-07-01" - }, - { - "id": "player_80800", - "lastname": "Rivierez", - "firstname": "Jonathan", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Caen", - "teamid": "1028", - "joinDate": "2019-07-10" - }, - { - "id": "player_80905", - "lastname": "Créhin", - "firstname": "Vincent Kevin", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2017-07-01" - }, - { - "id": "player_80935", - "lastname": "Djilobodji", - "firstname": "Papy", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2019-01-01" - }, - { - "id": "player_82727", - "lastname": "Chergui", - "firstname": "Malek", - "position": 4, - "quotation": 22, - "ultraPosition": 40, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-07-01" - }, - { - "id": "player_82831", - "lastname": "Gibaud", - "firstname": "Pierre", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-08-10" - }, - { - "id": "player_83542", - "lastname": "Vincensini", - "firstname": "Thomas", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-06-18" - }, - { - "id": "player_84462", - "lastname": "Martin", - "firstname": "Florian", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Paris", - "teamid": "2338", - "joinDate": "2019-07-01" - }, - { - "id": "player_86281", - "lastname": "Delaplace", - "firstname": "Jonathan", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Lorient", - "teamid": "694", - "joinDate": "2018-01-30" - }, - { - "id": "player_86443", - "lastname": "Ogier", - "firstname": "Florent", - "position": 2, - "quotation": 24, - "ultraPosition": 20, - "club": "Clermont", - "teamid": "1983", - "joinDate": "2018-07-01" - }, - { - "id": "player_86811", - "lastname": "Boucher", - "firstname": "Zacharie", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2015-07-01" - }, - { - "id": "player_86875", - "lastname": "Nery", - "firstname": "Loris", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Nancy", - "teamid": "148", - "joinDate": "2018-07-25" - }, - { - "id": "player_88035", - "lastname": "Touzghar", - "firstname": "Yoann", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "club": "Troyes", - "teamid": "154", - "joinDate": "2018-07-01" - }, - { - "id": "player_89038", - "lastname": "Benezet", - "firstname": "Nicolas", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Guingamp", - "teamid": "428", - "joinDate": "2015-07-03" - }, - { - "id": "player_89084", - "lastname": "Julienne", - "firstname": "Frank", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Le Mans", - "teamid": "920", - "joinDate": "2019-07-01" - }, - { - "id": "player_90436", - "lastname": "Perez", - "firstname": "Manuel", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Lens", - "teamid": "142", - "joinDate": "2019-07-01" - }, - { - "id": "player_91019", - "lastname": "Joseph Mendes", - "firstname": null, - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Ajaccio", - "teamid": "1163", - "joinDate": "2018-07-02" - }, - { - "id": "player_92170", - "lastname": "Massadio Haidara", - "firstname": null, - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Lens", - "teamid": "142", - "joinDate": "2018-07-01" - }, - { - "id": "player_92353", - "lastname": "Barreto", - "firstname": "Mickael", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2017-07-01" - }, - { - "id": "player_92520", - "lastname": "Demarconnay", - "firstname": "Vincent", - "position": 1, - "quotation": 24, - "ultraPosition": 10, - "club": "Paris", - "teamid": "2338", - "joinDate": "2008-07-01" - }, - { - "id": "player_92610", - "lastname": "Bong", - "firstname": "Frédéric", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Valenciennes", - "teamid": "1996", - "joinDate": "2019-01-30" - }, - { - "id": "player_92724", - "lastname": "Fajr", - "firstname": "Faycal", - "position": 3, - "quotation": 32, - "ultraPosition": 32, - "club": "Caen", - "teamid": "1028", - "joinDate": "2018-08-03" - }, - { - "id": "player_92748", - "lastname": "Dugimont", - "firstname": "Rémy", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Auxerre", - "teamid": "138", - "joinDate": "2018-08-13" - }, - { - "id": "player_93591", - "lastname": "Courtet", - "firstname": "Gaëtan", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Lorient", - "teamid": "694", - "joinDate": "2017-07-16" - }, - { - "id": "player_94181", - "lastname": "Alhadhur", - "firstname": "Chaker", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Châteauroux", - "teamid": "921", - "joinDate": "2019-01-01" - }, - { - "id": "player_98476", - "lastname": "Jigauri", - "firstname": "Jambul", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Grenoble", - "teamid": "1272", - "joinDate": "2018-07-20" - } - ] -} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.mercato.premier-league.20190805.json b/src/test/resources/__files/mpg.mercato.premier-league.20190805.json deleted file mode 100644 index 5eb00e9..0000000 --- a/src/test/resources/__files/mpg.mercato.premier-league.20190805.json +++ /dev/null @@ -1,7310 +0,0 @@ -{ - "mercato": { - }, - "players": [ - { - "id": "player_100180", - "lastname": "Danilo", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-07-23" - }, - { - "id": "player_100649", - "lastname": "Bernard", - "firstname": null, - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Everton", - "teamid": "11", - "joinDate": "2018-08-09" - }, - { - "id": "player_101061", - "lastname": "Heise", - "firstname": "Philip", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Norwich", - "teamid": "45", - "joinDate": "2019-01-31" - }, - { - "id": "player_101148", - "lastname": "Lascelles", - "firstname": "Jamaal", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2014-08-04" - }, - { - "id": "player_101178", - "lastname": "Ward-Prowse", - "firstname": "James", - "position": 3, - "quotation": 20, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2011-07-01" - }, - { - "id": "player_101184", - "lastname": "Chambers", - "firstname": "Calum", - "position": 2, - "quotation": 17, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2014-07-28" - }, - { - "id": "player_101188", - "lastname": "Digne", - "firstname": "Lucas", - "position": 2, - "quotation": 23, - "ultraPosition": 21, - "club": "Everton", - "teamid": "11", - "joinDate": "2018-08-01" - }, - { - "id": "player_101537", - "lastname": "Felipe Anderson", - "firstname": null, - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-07-15" - }, - { - "id": "player_101582", - "lastname": "Fred", - "firstname": null, - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-06-21" - }, - { - "id": "player_101668", - "lastname": "Vardy", - "firstname": "Jamie", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2012-07-01" - }, - { - "id": "player_102057", - "lastname": "Jiménez", - "firstname": "Raúl", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2019-07-01" - }, - { - "id": "player_102380", - "lastname": "Rüdiger", - "firstname": "Antonio", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-07-09" - }, - { - "id": "player_102826", - "lastname": "Mendy", - "firstname": "Benjamin", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-07-24" - }, - { - "id": "player_102884", - "lastname": "Gazzaniga", - "firstname": "Paulo", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2017-08-23" - }, - { - "id": "player_103025", - "lastname": "Mahrez", - "firstname": "Riyad", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-10" - }, - { - "id": "player_103123", - "lastname": "Haller", - "firstname": "Sébastien", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "West Ham", - "teamid": "21", - "joinDate": "2019-07-17" - }, - { - "id": "player_10318", - "lastname": "Stekelenburg", - "firstname": "Maarten", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Everton", - "teamid": "11", - "joinDate": "2016-07-01" - }, - { - "id": "player_103192", - "lastname": "Zouma", - "firstname": "Kurt", - "position": 2, - "quotation": 24, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2014-01-31" - }, - { - "id": "player_103912", - "lastname": "Ibe", - "firstname": "Jordon", - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2016-07-14" - }, - { - "id": "player_103914", - "lastname": "Taylor", - "firstname": "Charlie", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-07-06" - }, - { - "id": "player_103955", - "lastname": "Sterling", - "firstname": "Raheem", - "position": 4, - "quotation": 44, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2015-07-14" - }, - { - "id": "player_104953", - "lastname": "Atsu", - "firstname": "Christian", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2017-06-09" - }, - { - "id": "player_105700", - "lastname": "Zappacosta", - "firstname": "Davide", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-08-31" - }, - { - "id": "player_105717", - "lastname": "Masuaku", - "firstname": "Arthur", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "West Ham", - "teamid": "21", - "joinDate": "2016-08-08" - }, - { - "id": "player_106611", - "lastname": "Keane", - "firstname": "Michael", - "position": 2, - "quotation": 19, - "ultraPosition": 20, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-07-03" - }, - { - "id": "player_106618", - "lastname": "Dummett", - "firstname": "Paul", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2011-07-01" - }, - { - "id": "player_106757", - "lastname": "Locadia", - "firstname": "Jürgen", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-01-19" - }, - { - "id": "player_106760", - "lastname": "Shaw", - "firstname": "Luke", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Man. United", - "teamid": "1", - "joinDate": "2014-07-01" - }, - { - "id": "player_107265", - "lastname": "Gunn", - "firstname": "Angus", - "position": 1, - "quotation": 9, - "ultraPosition": 10, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-07-10" - }, - { - "id": "player_107613", - "lastname": "Saïss", - "firstname": "Romain", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2016-08-30" - }, - { - "id": "player_108156", - "lastname": "Engels", - "firstname": "Björn", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-16" - }, - { - "id": "player_108413", - "lastname": "Hughes", - "firstname": "Will", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-06-25" - }, - { - "id": "player_108416", - "lastname": "Egan", - "firstname": "John", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2018-07-19" - }, - { - "id": "player_108799", - "lastname": "Thompson", - "firstname": "Louis", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Norwich", - "teamid": "45", - "joinDate": "2014-09-01" - }, - { - "id": "player_108823", - "lastname": "Dele Alli", - "firstname": null, - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2015-02-02" - }, - { - "id": "player_109322", - "lastname": "Lingard", - "firstname": "Jesse", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2011-07-01" - }, - { - "id": "player_109345", - "lastname": "Solly March", - "firstname": null, - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Brighton", - "teamid": "36", - "joinDate": "2012-07-01" - }, - { - "id": "player_109528", - "lastname": "Manquillo", - "firstname": "Javier", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2017-07-21" - }, - { - "id": "player_109533", - "lastname": "Emerson", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-01-30" - }, - { - "id": "player_109638", - "lastname": "Bryan", - "firstname": "Kean", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2018-08-02" - }, - { - "id": "player_109646", - "lastname": "Tosin Adarabioyo", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2015-07-01" - }, - { - "id": "player_109745", - "lastname": "Arrizabalaga", - "firstname": "Kepa", - "position": 1, - "quotation": 22, - "ultraPosition": 10, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-08-08" - }, - { - "id": "player_110979", - "lastname": "Mané", - "firstname": "Sadio", - "position": 4, - "quotation": 50, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2016-06-28" - }, - { - "id": "player_111234", - "lastname": "Pickford", - "firstname": "Jordan", - "position": 1, - "quotation": 21, - "ultraPosition": 10, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-07-01" - }, - { - "id": "player_111317", - "lastname": "Brooks", - "firstname": "David", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2018-07-01" - }, - { - "id": "player_111457", - "lastname": "Kolasinac", - "firstname": "Sead", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2017-07-01" - }, - { - "id": "player_111565", - "lastname": "Lucas Piazon", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2011-07-01" - }, - { - "id": "player_111931", - "lastname": "Ricardo Pereira", - "firstname": null, - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-06-09" - }, - { - "id": "player_112516", - "lastname": "Brown", - "firstname": "Isaiah", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2014-07-01" - }, - { - "id": "player_113534", - "lastname": "Macey", - "firstname": "Matt", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2014-07-01" - }, - { - "id": "player_113564", - "lastname": "Byram", - "firstname": "Sam", - "position": 2, - "quotation": 4, - "ultraPosition": 21, - "club": "Norwich", - "teamid": "45", - "joinDate": "2019-07-16" - }, - { - "id": "player_113688", - "lastname": "Niasse", - "firstname": "Oumar", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Everton", - "teamid": "11", - "joinDate": "2016-02-01" - }, - { - "id": "player_114042", - "lastname": "Carruthers", - "firstname": "Samir", - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-01-03" - }, - { - "id": "player_114090", - "lastname": "Heneghan", - "firstname": "Ben", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-08-31" - }, - { - "id": "player_114093", - "lastname": "Pennington", - "firstname": "Matthew", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Everton", - "teamid": "11", - "joinDate": "2013-07-01" - }, - { - "id": "player_114128", - "lastname": "Jonny", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2019-01-31" - }, - { - "id": "player_114243", - "lastname": "Murphy", - "firstname": "Jacob", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2017-07-19" - }, - { - "id": "player_114283", - "lastname": "Grealish", - "firstname": "Jack", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2011-07-01" - }, - { - "id": "player_115556", - "lastname": "Davies", - "firstname": "Ben", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2014-07-23" - }, - { - "id": "player_115858", - "lastname": "Ghezzal", - "firstname": "Rachid", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-08-05" - }, - { - "id": "player_116216", - "lastname": "Trossard", - "firstname": "Leandro", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Brighton", - "teamid": "36", - "joinDate": "2019-06-26" - }, - { - "id": "player_116535", - "lastname": "Alisson", - "firstname": null, - "position": 1, - "quotation": 24, - "ultraPosition": 10, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-07-19" - }, - { - "id": "player_116594", - "lastname": "Kanté", - "firstname": "N'Golo", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-07-16" - }, - { - "id": "player_116643", - "lastname": "Fabinho", - "firstname": null, - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-07-01" - }, - { - "id": "player_118335", - "lastname": "Baba", - "firstname": "Abdul Rahman", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2015-08-16" - }, - { - "id": "player_118748", - "lastname": "Mohamed Salah", - "firstname": null, - "position": 4, - "quotation": 50, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2017-07-01" - }, - { - "id": "player_119471", - "lastname": "Schär", - "firstname": "Fabian", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2018-07-26" - }, - { - "id": "player_11948", - "lastname": "Lonergan", - "firstname": "Andy", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-15" - }, - { - "id": "player_11974", - "lastname": "Jakupovic", - "firstname": "Eldin", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-07-19" - }, - { - "id": "player_120250", - "lastname": "André Gomes", - "firstname": null, - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Everton", - "teamid": "11", - "joinDate": "2019-06-26" - }, - { - "id": "player_120447", - "lastname": "Smith", - "firstname": "Brad", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2016-07-27" - }, - { - "id": "player_121160", - "lastname": "Ederson", - "firstname": null, - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-07-01" - }, - { - "id": "player_121599", - "lastname": "Doucouré", - "firstname": "Abdoulaye", - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-02-01" - }, - { - "id": "player_122798", - "lastname": "Robertson", - "firstname": "Andrew", - "position": 2, - "quotation": 20, - "ultraPosition": 21, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2017-07-21" - }, - { - "id": "player_122806", - "lastname": "McGinn", - "firstname": "John", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2018-08-08" - }, - { - "id": "player_123354", - "lastname": "Hause", - "firstname": "Kortney", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-01" - }, - { - "id": "player_124165", - "lastname": "Roberts", - "firstname": "Patrick", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2019-07-01" - }, - { - "id": "player_126184", - "lastname": "Aké", - "firstname": "Nathan", - "position": 2, - "quotation": 23, - "ultraPosition": 20, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2017-07-01" - }, - { - "id": "player_126187", - "lastname": "Loftus-Cheek", - "firstname": "Ruben", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2012-07-01" - }, - { - "id": "player_12745", - "lastname": "Baines", - "firstname": "Leighton", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Everton", - "teamid": "11", - "joinDate": "2007-08-07" - }, - { - "id": "player_128198", - "lastname": "Boufal", - "firstname": "Sofiane", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-08-29" - }, - { - "id": "player_13152", - "lastname": "King", - "firstname": "Andy", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2007-07-01" - }, - { - "id": "player_131897", - "lastname": "Ryan", - "firstname": "Mat", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-07-01" - }, - { - "id": "player_132015", - "lastname": "Højbjerg", - "firstname": "Pierre-Emile", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-07-11" - }, - { - "id": "player_135363", - "lastname": "Christensen", - "firstname": "Andreas", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2012-07-01" - }, - { - "id": "player_141020", - "lastname": "Meyer", - "firstname": "Max", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2018-08-02" - }, - { - "id": "player_141291", - "lastname": "Kent", - "firstname": "Ryan", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-07-01" - }, - { - "id": "player_141569", - "lastname": "Léo Bonatini", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-01" - }, - { - "id": "player_143877", - "lastname": "Sørloth", - "firstname": "Alexander", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2018-01-31" - }, - { - "id": "player_145232", - "lastname": "Grimshaw", - "firstname": "Daniel", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-07-20" - }, - { - "id": "player_145235", - "lastname": "Angeliño", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-07-03" - }, - { - "id": "player_146610", - "lastname": "O'Connell", - "firstname": "Jack", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2016-07-08" - }, - { - "id": "player_146941", - "lastname": "Laporte", - "firstname": "Aymeric", - "position": 2, - "quotation": 25, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-01-30" - }, - { - "id": "player_148225", - "lastname": "Martial", - "firstname": "Anthony", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Man. United", - "teamid": "1", - "joinDate": "2015-09-01" - }, - { - "id": "player_148508", - "lastname": "Trézéguet", - "firstname": null, - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-24" - }, - { - "id": "player_149484", - "lastname": "Mings", - "firstname": "Tyrone", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-08" - }, - { - "id": "player_149828", - "lastname": "Slimani", - "firstname": "Islam", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2016-08-31" - }, - { - "id": "player_15033", - "lastname": "Morgan", - "firstname": "Wes", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2012-01-30" - }, - { - "id": "player_151086", - "lastname": "Lemina", - "firstname": "Mario", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Southampton", - "teamid": "20", - "joinDate": "2017-08-08" - }, - { - "id": "player_151119", - "lastname": "Yedlin", - "firstname": "DeAndre", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-08-24" - }, - { - "id": "player_15149", - "lastname": "Francis", - "firstname": "Simon", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2012-01-06" - }, - { - "id": "player_15157", - "lastname": "Milner", - "firstname": "James", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-07-01" - }, - { - "id": "player_151589", - "lastname": "Dendoncker", - "firstname": "Leander", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2019-07-01" - }, - { - "id": "player_15237", - "lastname": "Surman", - "firstname": "Andrew", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2014-09-01" - }, - { - "id": "player_152551", - "lastname": "Lerma", - "firstname": "Jefferson", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2018-08-07" - }, - { - "id": "player_152760", - "lastname": "Origi", - "firstname": "Divock", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2014-07-29" - }, - { - "id": "player_153127", - "lastname": "Hayden", - "firstname": "Isaac", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-07-11" - }, - { - "id": "player_153133", - "lastname": "Iwobi", - "firstname": "Alex", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2013-07-01" - }, - { - "id": "player_153256", - "lastname": "Mohamed Elneny", - "firstname": null, - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2016-01-14" - }, - { - "id": "player_153366", - "lastname": "Reed", - "firstname": "Harrison", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Southampton", - "teamid": "20", - "joinDate": "2013-07-01" - }, - { - "id": "player_153373", - "lastname": "McQueen", - "firstname": "Sam", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Southampton", - "teamid": "20", - "joinDate": "2013-07-01" - }, - { - "id": "player_153379", - "lastname": "Josh Sims", - "firstname": null, - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2013-07-01" - }, - { - "id": "player_153682", - "lastname": "Wilson", - "firstname": "Harry", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-07-01" - }, - { - "id": "player_153723", - "lastname": "Lundstram", - "firstname": "John", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-07-26" - }, - { - "id": "player_154043", - "lastname": "Maitland-Niles", - "firstname": "Ainsley", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2014-12-05" - }, - { - "id": "player_154131", - "lastname": "Stacey", - "firstname": "Jack", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2019-07-08" - }, - { - "id": "player_154506", - "lastname": "Bachmann", - "firstname": "Daniel", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-07-01" - }, - { - "id": "player_154566", - "lastname": "Solanke", - "firstname": "Dominic", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2019-01-04" - }, - { - "id": "player_155408", - "lastname": "Lewis Cook", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2016-07-08" - }, - { - "id": "player_155503", - "lastname": "Freddy Woodman", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2013-08-01" - }, - { - "id": "player_155513", - "lastname": "Aarons", - "firstname": "Rolando", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2014-07-01" - }, - { - "id": "player_155569", - "lastname": "Amartey", - "firstname": "Daniel", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2016-01-22" - }, - { - "id": "player_155651", - "lastname": "Masina", - "firstname": "Adam", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-07-02" - }, - { - "id": "player_156074", - "lastname": "Holding", - "firstname": "Rob", - "position": 2, - "quotation": 4, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2016-07-22" - }, - { - "id": "player_156689", - "lastname": "Andreas Pereira", - "firstname": null, - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2014-07-01" - }, - { - "id": "player_15749", - "lastname": "Hart", - "firstname": "Joe", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-08-07" - }, - { - "id": "player_157668", - "lastname": "Winks", - "firstname": "Harry", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2013-07-01" - }, - { - "id": "player_157775", - "lastname": "Sema", - "firstname": "Ken", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-07-05" - }, - { - "id": "player_158534", - "lastname": "Walker-Peters", - "firstname": "Kyle", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2015-07-01" - }, - { - "id": "player_159533", - "lastname": "Traoré", - "firstname": "Adama", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-08-08" - }, - { - "id": "player_160190", - "lastname": "Palmer", - "firstname": "Kasey", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-04-09" - }, - { - "id": "player_16229", - "lastname": "Wright", - "firstname": "Jake", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2016-07-08" - }, - { - "id": "player_164511", - "lastname": "Mina", - "firstname": "Yerry", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Everton", - "teamid": "11", - "joinDate": "2018-08-09" - }, - { - "id": "player_165210", - "lastname": "Jahanbakhsh", - "firstname": "Alireza", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-07-25" - }, - { - "id": "player_165809", - "lastname": "Bernardo Silva", - "firstname": null, - "position": 3, - "quotation": 32, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-07-01" - }, - { - "id": "player_165911", - "lastname": "Kapustka", - "firstname": "Bartosz", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2016-08-03" - }, - { - "id": "player_166640", - "lastname": "Balbuena", - "firstname": "Fabián", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-07-14" - }, - { - "id": "player_166989", - "lastname": "Tielemans", - "firstname": "Youri", - "position": 3, - "quotation": 21, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-08" - }, - { - "id": "player_167075", - "lastname": "Hoedt", - "firstname": "Wesley", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Southampton", - "teamid": "20", - "joinDate": "2017-08-22" - }, - { - "id": "player_167473", - "lastname": "Izquierdo", - "firstname": "José", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-08-10" - }, - { - "id": "player_167767", - "lastname": "Kenedy", - "firstname": null, - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2015-07-27" - }, - { - "id": "player_167878", - "lastname": "Osborn", - "firstname": "Ben", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-07-26" - }, - { - "id": "player_168196", - "lastname": "Joel Pereira", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Man. United", - "teamid": "1", - "joinDate": "2016-02-25" - }, - { - "id": "player_168222", - "lastname": "Elder", - "firstname": "Callum", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Leicester", - "teamid": "13", - "joinDate": "2013-07-01" - }, - { - "id": "player_168301", - "lastname": "Palmer-Brown", - "firstname": "Erik", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-01-01" - }, - { - "id": "player_168399", - "lastname": "Norris", - "firstname": "Will", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2017-07-11" - }, - { - "id": "player_168566", - "lastname": "Nkoudou", - "firstname": "Georges-Kévin", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2016-08-31" - }, - { - "id": "player_168580", - "lastname": "Ayoze Pérez", - "firstname": null, - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-04" - }, - { - "id": "player_168765", - "lastname": "Onomah", - "firstname": "Josh", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2013-07-01" - }, - { - "id": "player_168771", - "lastname": "Georgiou", - "firstname": "Anthony", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2017-07-22" - }, - { - "id": "player_168991", - "lastname": "Billing", - "firstname": "Philip", - "position": 3, - "quotation": 4, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2019-07-29" - }, - { - "id": "player_169102", - "lastname": "Bakayoko", - "firstname": "Tiemoué", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-07-15" - }, - { - "id": "player_169187", - "lastname": "Alexander-Arnold", - "firstname": "Trent", - "position": 2, - "quotation": 22, - "ultraPosition": 21, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-07-01" - }, - { - "id": "player_169359", - "lastname": "Targett", - "firstname": "Matt", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-01" - }, - { - "id": "player_169527", - "lastname": "Williams", - "firstname": "Joe", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2014-12-10" - }, - { - "id": "player_169556", - "lastname": "Barnes", - "firstname": "Marcus", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2019-01-04" - }, - { - "id": "player_171129", - "lastname": "Rico", - "firstname": "Diego", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2018-07-24" - }, - { - "id": "player_171163", - "lastname": "Christie-Davies", - "firstname": "Isaac", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-01-01" - }, - { - "id": "player_171287", - "lastname": "Gomez", - "firstname": "Joseph", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-06-20" - }, - { - "id": "player_171317", - "lastname": "Rúben Neves", - "firstname": null, - "position": 3, - "quotation": 20, - "ultraPosition": 31, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2017-07-08" - }, - { - "id": "player_171771", - "lastname": "Bednarek", - "firstname": "Jan", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Southampton", - "teamid": "20", - "joinDate": "2017-07-01" - }, - { - "id": "player_171975", - "lastname": "Robinson", - "firstname": "Callum", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-07-12" - }, - { - "id": "player_172567", - "lastname": "Cullen", - "firstname": "Josh", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "West Ham", - "teamid": "21", - "joinDate": "2014-07-01" - }, - { - "id": "player_172632", - "lastname": "Gray", - "firstname": "Demarai", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2016-01-04" - }, - { - "id": "player_172649", - "lastname": "Henderson", - "firstname": "Dean", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-06-26" - }, - { - "id": "player_172780", - "lastname": "Maddison", - "firstname": "James", - "position": 3, - "quotation": 24, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-06-20" - }, - { - "id": "player_172850", - "lastname": "Chilwell", - "firstname": "Ben", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Leicester", - "teamid": "13", - "joinDate": "2015-07-01" - }, - { - "id": "player_17349", - "lastname": "Lennon", - "firstname": "Aaron", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-01-23" - }, - { - "id": "player_173514", - "lastname": "Isaac Success", - "firstname": null, - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-07-01" - }, - { - "id": "player_173515", - "lastname": "Iheanacho", - "firstname": "Kelechi", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-08-03" - }, - { - "id": "player_173792", - "lastname": "Oxford", - "firstname": "Reece", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "West Ham", - "teamid": "21", - "joinDate": "2014-08-25" - }, - { - "id": "player_173804", - "lastname": "Ndukwu", - "firstname": "Layton", - "position": 4, - "quotation": 4, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-07-25" - }, - { - "id": "player_173807", - "lastname": "Davies", - "firstname": "Tom", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2016-04-15" - }, - { - "id": "player_173879", - "lastname": "Abraham", - "firstname": "Tammy", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-05-01" - }, - { - "id": "player_173904", - "lastname": "Sánchez", - "firstname": "Davinson", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2017-08-18" - }, - { - "id": "player_173954", - "lastname": "Riedewald", - "firstname": "Jairo", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-07-24" - }, - { - "id": "player_174248", - "lastname": "Thomas", - "firstname": "George", - "position": 4, - "quotation": 4, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-07-01" - }, - { - "id": "player_174594", - "lastname": "Nmecha", - "firstname": "Lukas", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-10-01" - }, - { - "id": "player_174595", - "lastname": "Muskwe", - "firstname": "Admiral", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-15" - }, - { - "id": "player_174597", - "lastname": "Green", - "firstname": "Andre", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2015-05-22" - }, - { - "id": "player_174944", - "lastname": "Johnston", - "firstname": "George", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-08-06" - }, - { - "id": "player_175353", - "lastname": "Tom Dele-Bashiru", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Watford", - "teamid": "57", - "joinDate": "2019-07-24" - }, - { - "id": "player_175592", - "lastname": "Naby Keita", - "firstname": null, - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-07-01" - }, - { - "id": "player_175941", - "lastname": "Whiteman", - "firstname": "Alfie", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2016-07-01" - }, - { - "id": "player_175944", - "lastname": "Hepburn-Murphy", - "firstname": "Rushian", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2015-03-14" - }, - { - "id": "player_176297", - "lastname": "Rashford", - "firstname": "Marcus", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "club": "Man. United", - "teamid": "1", - "joinDate": "2015-07-01" - }, - { - "id": "player_176413", - "lastname": "Pulisic", - "firstname": "Christian", - "position": 3, - "quotation": 35, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-01-02" - }, - { - "id": "player_17745", - "lastname": "Schmeichel", - "firstname": "Kasper", - "position": 1, - "quotation": 19, - "ultraPosition": 10, - "club": "Leicester", - "teamid": "13", - "joinDate": "2011-06-27" - }, - { - "id": "player_17761", - "lastname": "Tarkowski", - "firstname": "James", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Burnley", - "teamid": "90", - "joinDate": "2016-02-01" - }, - { - "id": "player_177815", - "lastname": "Calvert-Lewin", - "firstname": "Dominic", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Everton", - "teamid": "11", - "joinDate": "2016-10-01" - }, - { - "id": "player_178173", - "lastname": "Clarke", - "firstname": "Matthew", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Brighton", - "teamid": "36", - "joinDate": "2019-06-21" - }, - { - "id": "player_178304", - "lastname": "Mousset", - "firstname": "Lys", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-07-21" - }, - { - "id": "player_178871", - "lastname": "Aleix García", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-02-06" - }, - { - "id": "player_178876", - "lastname": "Vallejo", - "firstname": "Jesús", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2019-07-27" - }, - { - "id": "player_179018", - "lastname": "Almirón", - "firstname": "Miguel", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-01-31" - }, - { - "id": "player_179365", - "lastname": "Oxborough", - "firstname": "Aston", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-07-01" - }, - { - "id": "player_179587", - "lastname": "Srbeny", - "firstname": "Dennis", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-01-25" - }, - { - "id": "player_179596", - "lastname": "Moore", - "firstname": "Elliott", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-05-17" - }, - { - "id": "player_179830", - "lastname": "Diangana", - "firstname": "Grady", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2016-08-24" - }, - { - "id": "player_17997", - "lastname": "Bardsley", - "firstname": "Phil", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-07-25" - }, - { - "id": "player_180135", - "lastname": "Longstaff", - "firstname": "Sean", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2018-08-09" - }, - { - "id": "player_18073", - "lastname": "Noble", - "firstname": "Mark", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "West Ham", - "teamid": "21", - "joinDate": "2003-07-01" - }, - { - "id": "player_180736", - "lastname": "Chalobah", - "firstname": "Trevoh", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-02-16" - }, - { - "id": "player_180804", - "lastname": "Tuanzebe", - "firstname": "Axel", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Man. United", - "teamid": "1", - "joinDate": "2015-10-31" - }, - { - "id": "player_180974", - "lastname": "Joelinton", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-07-24" - }, - { - "id": "player_181397", - "lastname": "Sterry", - "firstname": "Jamie", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2013-07-01" - }, - { - "id": "player_181913", - "lastname": "Ugbo", - "firstname": "Ike", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-05-15" - }, - { - "id": "player_182156", - "lastname": "Sané", - "firstname": "Leroy", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-08-02" - }, - { - "id": "player_182436", - "lastname": "Woodburn", - "firstname": "Ben", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2016-07-01" - }, - { - "id": "player_182539", - "lastname": "Dani Ceballos", - "firstname": null, - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2019-07-25" - }, - { - "id": "player_183487", - "lastname": "Holland", - "firstname": "Nathan", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2017-09-01" - }, - { - "id": "player_184272", - "lastname": "O'Hare", - "firstname": "Callum", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-03-05" - }, - { - "id": "player_184341", - "lastname": "Mount", - "firstname": "Mason", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-07-01" - }, - { - "id": "player_184386", - "lastname": "Bree", - "firstname": "James", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-01-25" - }, - { - "id": "player_18440", - "lastname": "Clarke", - "firstname": "Leon", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2016-07-27" - }, - { - "id": "player_184515", - "lastname": "Clark", - "firstname": "Mitchell", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-07-01" - }, - { - "id": "player_184667", - "lastname": "Lindelöf", - "firstname": "Victor", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "club": "Man. United", - "teamid": "1", - "joinDate": "2017-07-01" - }, - { - "id": "player_18499", - "lastname": "McGovern", - "firstname": "Michael", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Norwich", - "teamid": "45", - "joinDate": "2016-07-19" - }, - { - "id": "player_18656", - "lastname": "Heurelho Gomes", - "firstname": null, - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Watford", - "teamid": "57", - "joinDate": "2014-07-01" - }, - { - "id": "player_18665", - "lastname": "Tettey", - "firstname": "Alexander", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Norwich", - "teamid": "45", - "joinDate": "2012-08-24" - }, - { - "id": "player_18726", - "lastname": "Boruc", - "firstname": "Artur", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2015-07-01" - }, - { - "id": "player_18832", - "lastname": "Stearman", - "firstname": "Richard", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-07-07" - }, - { - "id": "player_18867", - "lastname": "Sharp", - "firstname": "Billy", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2015-07-29" - }, - { - "id": "player_18892", - "lastname": "Young", - "firstname": "Ashley", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Man. United", - "teamid": "1", - "joinDate": "2011-06-23" - }, - { - "id": "player_18987", - "lastname": "Snodgrass", - "firstname": "Robert", - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2017-01-27" - }, - { - "id": "player_19188", - "lastname": "Dann", - "firstname": "Scott", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2014-01-31" - }, - { - "id": "player_19194", - "lastname": "Martin", - "firstname": "David", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "West Ham", - "teamid": "21", - "joinDate": "2019-07-01" - }, - { - "id": "player_192303", - "lastname": "Zimmermann", - "firstname": "Christoph", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-07-01" - }, - { - "id": "player_19236", - "lastname": "Ruddy", - "firstname": "John", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2017-07-10" - }, - { - "id": "player_193109", - "lastname": "Slattery", - "firstname": "Callum", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-07-01" - }, - { - "id": "player_193111", - "lastname": "Cantwell", - "firstname": "Todd", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-07-01" - }, - { - "id": "player_193488", - "lastname": "El Ghazi", - "firstname": "Anwar", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-01" - }, - { - "id": "player_194164", - "lastname": "Holgate", - "firstname": "Mason", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Everton", - "teamid": "11", - "joinDate": "2015-08-25" - }, - { - "id": "player_194401", - "lastname": "Peñaranda", - "firstname": "Adalberto", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-02-01" - }, - { - "id": "player_194634", - "lastname": "Diogo Jota", - "firstname": null, - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-01" - }, - { - "id": "player_194794", - "lastname": "Tomori", - "firstname": "Fikayo", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-05-01" - }, - { - "id": "player_194799", - "lastname": "Lewis", - "firstname": "Jamal", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-07-01" - }, - { - "id": "player_195471", - "lastname": "Driscoll-Glennon", - "firstname": "Anthony", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-07-01" - }, - { - "id": "player_195473", - "lastname": "Brewster", - "firstname": "Rhian", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2017-04-23" - }, - { - "id": "player_195476", - "lastname": "Lewis", - "firstname": "Adam", - "position": 3, - "quotation": 3, - "ultraPosition": 21, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-10" - }, - { - "id": "player_195546", - "lastname": "Buendía", - "firstname": "Emiliano", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-07-01" - }, - { - "id": "player_195851", - "lastname": "McTominay", - "firstname": "Scott", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Man. United", - "teamid": "1", - "joinDate": "2017-04-29" - }, - { - "id": "player_195855", - "lastname": "Baningime", - "firstname": "Beni", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-10-01" - }, - { - "id": "player_195860", - "lastname": "Joe Powell", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2017-07-01" - }, - { - "id": "player_196118", - "lastname": "Muto", - "firstname": "Yoshinori", - "position": 4, - "quotation": 4, - "ultraPosition": 40, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2018-08-02" - }, - { - "id": "player_19624", - "lastname": "João Moutinho", - "firstname": null, - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-24" - }, - { - "id": "player_197365", - "lastname": "Bailly", - "firstname": "Eric", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Man. United", - "teamid": "1", - "joinDate": "2016-07-01" - }, - { - "id": "player_197464", - "lastname": "Phillips", - "firstname": "Nathaniel", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-07-01" - }, - { - "id": "player_197469", - "lastname": "Choudhury", - "firstname": "Hamza", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-09-18" - }, - { - "id": "player_198044", - "lastname": "Lewis", - "firstname": "Harry", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-07-30" - }, - { - "id": "player_19838", - "lastname": "Elliot", - "firstname": "Robert", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2011-08-31" - }, - { - "id": "player_198504", - "lastname": "Sterling", - "firstname": "Kazaiah", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2017-05-23" - }, - { - "id": "player_198826", - "lastname": "Godfrey", - "firstname": "Ben", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Norwich", - "teamid": "45", - "joinDate": "2016-01-15" - }, - { - "id": "player_198847", - "lastname": "Enobakhare", - "firstname": "Bright", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2015-08-10" - }, - { - "id": "player_198849", - "lastname": "Torreira", - "firstname": "Lucas", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-07-10" - }, - { - "id": "player_199583", - "lastname": "Sterling", - "firstname": "Dujon", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-09-01" - }, - { - "id": "player_199584", - "lastname": "Tanganga", - "firstname": "Japhet", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2018-08-03" - }, - { - "id": "player_199601", - "lastname": "Burton", - "firstname": "Robbie", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2019-07-15" - }, - { - "id": "player_199798", - "lastname": "Konsa Ngoyo", - "firstname": "Ezri", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-11" - }, - { - "id": "player_199806", - "lastname": "Henry", - "firstname": "Dion", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-10-13" - }, - { - "id": "player_200089", - "lastname": "Joe Willock", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2017-07-12" - }, - { - "id": "player_200370", - "lastname": "Butcher", - "firstname": "Matt", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2015-07-01" - }, - { - "id": "player_200439", - "lastname": "Adams", - "firstname": "Che", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2019-07-01" - }, - { - "id": "player_20046", - "lastname": "Okaka", - "firstname": "Stefano", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-08-29" - }, - { - "id": "player_200617", - "lastname": "James", - "firstname": "Daniel", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2019-06-12" - }, - { - "id": "player_200641", - "lastname": "Nelson", - "firstname": "Reiss", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2017-07-12" - }, - { - "id": "player_20066", - "lastname": "Hennessey", - "firstname": "Wayne", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2014-01-31" - }, - { - "id": "player_200720", - "lastname": "Kelleher", - "firstname": "Caoimhin", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2016-08-06" - }, - { - "id": "player_201083", - "lastname": "Hamilton", - "firstname": "Ethan", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-02-17" - }, - { - "id": "player_201084", - "lastname": "Fosu-Mensah", - "firstname": "Timothy", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Man. United", - "teamid": "1", - "joinDate": "2016-02-26" - }, - { - "id": "player_20145", - "lastname": "Mariappa", - "firstname": "Adrian", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-08-30" - }, - { - "id": "player_201664", - "lastname": "Glatzel", - "firstname": "Paul", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-10" - }, - { - "id": "player_201666", - "lastname": "Barnes", - "firstname": "Harvey", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2016-07-01" - }, - { - "id": "player_201667", - "lastname": "Knight", - "firstname": "Josh", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-07-01" - }, - { - "id": "player_20310", - "lastname": "Caballero", - "firstname": "Willy", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-07-01" - }, - { - "id": "player_203341", - "lastname": "Wilfred Ndidi", - "firstname": null, - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-01-03" - }, - { - "id": "player_203368", - "lastname": "Guilbert", - "firstname": "Frederic", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-01-30" - }, - { - "id": "player_203391", - "lastname": "Bolton", - "firstname": "Luke", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-01" - }, - { - "id": "player_204480", - "lastname": "Rice", - "firstname": "Declan", - "position": 3, - "quotation": 20, - "ultraPosition": 31, - "club": "West Ham", - "teamid": "21", - "joinDate": "2016-06-01" - }, - { - "id": "player_204481", - "lastname": "Johnson", - "firstname": "Tyreke", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-12-15" - }, - { - "id": "player_20452", - "lastname": "Long", - "firstname": "Shane", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2014-08-14" - }, - { - "id": "player_20467", - "lastname": "Walcott", - "firstname": "Theo", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Everton", - "teamid": "11", - "joinDate": "2018-01-17" - }, - { - "id": "player_20480", - "lastname": "Krul", - "firstname": "Tim", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-07-24" - }, - { - "id": "player_204820", - "lastname": "Marsh", - "firstname": "George", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2018-07-24" - }, - { - "id": "player_205204", - "lastname": "Atherton", - "firstname": "Daniel", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-10" - }, - { - "id": "player_20529", - "lastname": "Murray", - "firstname": "Glenn", - "position": 4, - "quotation": 19, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-01-31" - }, - { - "id": "player_205533", - "lastname": "Eddie Nketiah", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2017-07-12" - }, - { - "id": "player_205651", - "lastname": "Gabriel Jesus", - "firstname": null, - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-08-03" - }, - { - "id": "player_206325", - "lastname": "Zinchenko", - "firstname": "Oleksandr", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-06-04" - }, - { - "id": "player_20658", - "lastname": "Zabaleta", - "firstname": "Pablo", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "West Ham", - "teamid": "21", - "joinDate": "2017-07-01" - }, - { - "id": "player_20664", - "lastname": "Silva", - "firstname": "David", - "position": 3, - "quotation": 28, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2010-07-01" - }, - { - "id": "player_206882", - "lastname": "Dahlberg", - "firstname": "Pontus", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-01-30" - }, - { - "id": "player_206913", - "lastname": "Harker", - "firstname": "Nathan", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-01-04" - }, - { - "id": "player_206915", - "lastname": "Jones", - "firstname": "Curtis", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-04-06" - }, - { - "id": "player_207300", - "lastname": "Dobre", - "firstname": "Mihai-Alexandru", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2018-07-01" - }, - { - "id": "player_207725", - "lastname": "Agyei", - "firstname": "Daniel", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2015-07-29" - }, - { - "id": "player_209036", - "lastname": "Marc Guehi", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-05-11" - }, - { - "id": "player_209037", - "lastname": "Medley", - "firstname": "Zech", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-10-21" - }, - { - "id": "player_209040", - "lastname": "Eyoma", - "firstname": "Timothy", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2018-07-24" - }, - { - "id": "player_209041", - "lastname": "Gomes", - "firstname": "Angel", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2017-05-20" - }, - { - "id": "player_209042", - "lastname": "Skipp", - "firstname": "Oliver", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2018-07-24" - }, - { - "id": "player_209043", - "lastname": "Kirby", - "firstname": "Nya", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-07-18" - }, - { - "id": "player_209045", - "lastname": "Richards", - "firstname": "Taylor", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2019-07-18" - }, - { - "id": "player_209046", - "lastname": "Hudson-Odoi", - "firstname": "Callum", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-12-19" - }, - { - "id": "player_209244", - "lastname": "Foden", - "firstname": "Phil", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-12-05" - }, - { - "id": "player_209289", - "lastname": "Smith Rowe", - "firstname": "Emile", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-07-13" - }, - { - "id": "player_209362", - "lastname": "Bernardo", - "firstname": null, - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-07-05" - }, - { - "id": "player_209411", - "lastname": "Tupper", - "firstname": "Joe", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2019-01-18" - }, - { - "id": "player_209690", - "lastname": "Roles", - "firstname": "Jack", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2019-07-19" - }, - { - "id": "player_209697", - "lastname": "Iker Pozo", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-01" - }, - { - "id": "player_209706", - "lastname": "Cumming", - "firstname": "Jamie", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-12-01" - }, - { - "id": "player_209925", - "lastname": "Xande Silva", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-12-14" - }, - { - "id": "player_210207", - "lastname": "Diabaté", - "firstname": "Fousseni", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-01-13" - }, - { - "id": "player_21205", - "lastname": "Heaton", - "firstname": "Tom", - "position": 1, - "quotation": 18, - "ultraPosition": 10, - "club": "Burnley", - "teamid": "90", - "joinDate": "2013-07-01" - }, - { - "id": "player_212319", - "lastname": "Richarlison", - "firstname": null, - "position": 4, - "quotation": 21, - "ultraPosition": 40, - "club": "Everton", - "teamid": "11", - "joinDate": "2018-07-24" - }, - { - "id": "player_213056", - "lastname": "Baluta", - "firstname": "Tudor", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Brighton", - "teamid": "36", - "joinDate": "2019-01-30" - }, - { - "id": "player_213345", - "lastname": "Wesley", - "firstname": null, - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-06-13" - }, - { - "id": "player_213405", - "lastname": "Benkovic", - "firstname": "Filip", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-08-09" - }, - { - "id": "player_213482", - "lastname": "Valery", - "firstname": "Yan", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-07-30" - }, - { - "id": "player_214048", - "lastname": "Kilman", - "firstname": "Max", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-12-24" - }, - { - "id": "player_214466", - "lastname": "Smallbone", - "firstname": "William", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2019-07-22" - }, - { - "id": "player_214470", - "lastname": "Vokins", - "firstname": "Jake", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Southampton", - "teamid": "20", - "joinDate": "2019-07-22" - }, - { - "id": "player_214590", - "lastname": "Wan-Bissaka", - "firstname": "Aaron", - "position": 2, - "quotation": 21, - "ultraPosition": 21, - "club": "Man. United", - "teamid": "1", - "joinDate": "2019-06-29" - }, - { - "id": "player_215062", - "lastname": "Sanders", - "firstname": "Max", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-03-16" - }, - { - "id": "player_215459", - "lastname": "McEachran", - "firstname": "George", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-12-01" - }, - { - "id": "player_215460", - "lastname": "Poveda-Ocampo", - "firstname": "Ian Carlo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-01-22" - }, - { - "id": "player_216051", - "lastname": "Diogo Dalot", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-06-08" - }, - { - "id": "player_216054", - "lastname": "Rúben Vinagre", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-01" - }, - { - "id": "player_216058", - "lastname": "Quina", - "firstname": "Domingos", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-08-09" - }, - { - "id": "player_217331", - "lastname": "Surridge", - "firstname": "Sam", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2015-07-01" - }, - { - "id": "player_217401", - "lastname": "Benson", - "firstname": "Josh", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Burnley", - "teamid": "90", - "joinDate": "2019-01-27" - }, - { - "id": "player_217593", - "lastname": "Fornals", - "firstname": "Pablo", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2019-06-14" - }, - { - "id": "player_217974", - "lastname": "Doyle-Hayes", - "firstname": "Jake", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-07-01" - }, - { - "id": "player_218031", - "lastname": "Söyüncü", - "firstname": "Çaglar", - "position": 2, - "quotation": 4, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-08-09" - }, - { - "id": "player_218998", - "lastname": "Duncan", - "firstname": "Bobby", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-10" - }, - { - "id": "player_219002", - "lastname": "Lukebakio", - "firstname": "Dodi", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-01-30" - }, - { - "id": "player_219265", - "lastname": "Nmecha", - "firstname": "Felix", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-12-11" - }, - { - "id": "player_219291", - "lastname": "Gomes", - "firstname": "Claudio", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-24" - }, - { - "id": "player_219924", - "lastname": "Diop", - "firstname": "Issa", - "position": 2, - "quotation": 21, - "ultraPosition": 20, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-06-19" - }, - { - "id": "player_220566", - "lastname": "Rodrigo", - "firstname": null, - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-07-04" - }, - { - "id": "player_220598", - "lastname": "Obafemi", - "firstname": "Michael", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-01-20" - }, - { - "id": "player_220627", - "lastname": "Justin", - "firstname": "James", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-06-28" - }, - { - "id": "player_220651", - "lastname": "Bailey", - "firstname": "Owen", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-07-16" - }, - { - "id": "player_220688", - "lastname": "Greenwood", - "firstname": "Mason", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-07-19" - }, - { - "id": "player_221239", - "lastname": "Davis", - "firstname": "Keinan", - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2016-02-06" - }, - { - "id": "player_221272", - "lastname": "Woods", - "firstname": "Sam", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2018-07-01" - }, - { - "id": "player_221275", - "lastname": "Dreher", - "firstname": "Luke", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2016-04-20" - }, - { - "id": "player_222017", - "lastname": "Coventry", - "firstname": "Conor", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-07-01" - }, - { - "id": "player_222018", - "lastname": "Johnson", - "firstname": "Ben", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "West Ham", - "teamid": "21", - "joinDate": "2017-12-02" - }, - { - "id": "player_222340", - "lastname": "Johansson", - "firstname": "Viktor", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-19" - }, - { - "id": "player_222434", - "lastname": "Simpson", - "firstname": "Jack", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2015-07-01" - }, - { - "id": "player_222531", - "lastname": "Gibbs-White", - "firstname": "Morgan", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2017-01-01" - }, - { - "id": "player_222677", - "lastname": "Chong", - "firstname": "Tahith", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-07-19" - }, - { - "id": "player_223175", - "lastname": "Longstaff", - "firstname": "Matthew", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-07-17" - }, - { - "id": "player_223337", - "lastname": "Bowden", - "firstname": "Jamie", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2018-08-03" - }, - { - "id": "player_223340", - "lastname": "Saka", - "firstname": "Bukayo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-11-28" - }, - { - "id": "player_223911", - "lastname": "Mepham", - "firstname": "Chris", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2019-01-22" - }, - { - "id": "player_225000", - "lastname": "Sanderson", - "firstname": "Dion", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2019-07-16" - }, - { - "id": "player_225321", - "lastname": "Ramsdale", - "firstname": "Aaron", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2017-01-31" - }, - { - "id": "player_225796", - "lastname": "James", - "firstname": "Reece", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-05-15" - }, - { - "id": "player_225798", - "lastname": "Payne", - "firstname": "Alfie", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-11-02" - }, - { - "id": "player_226021", - "lastname": "Revan", - "firstname": "Dominic", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2018-11-30" - }, - { - "id": "player_227127", - "lastname": "Bissouma", - "firstname": "Yves", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-07-17" - }, - { - "id": "player_229273", - "lastname": "Onyekuru", - "firstname": "Henry", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-06-30" - }, - { - "id": "player_229600", - "lastname": "Travers", - "firstname": "Mark", - "position": 1, - "quotation": 10, - "ultraPosition": 10, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2018-07-01" - }, - { - "id": "player_230046", - "lastname": "Douglas Luiz", - "firstname": null, - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-07-25" - }, - { - "id": "player_231372", - "lastname": "Ndombele", - "firstname": "Tanguy", - "position": 3, - "quotation": 22, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2019-07-02" - }, - { - "id": "player_232229", - "lastname": "Daley-Campbell", - "firstname": "Vontae", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-19" - }, - { - "id": "player_232233", - "lastname": "John-Jules", - "firstname": "Tyreece", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-11-28" - }, - { - "id": "player_232234", - "lastname": "Olayinka", - "firstname": "James", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2019-07-15" - }, - { - "id": "player_232247", - "lastname": "Thompson", - "firstname": "Dominic", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2019-07-15" - }, - { - "id": "player_232454", - "lastname": "Lyons-Foster", - "firstname": "Brooklyn", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2019-07-19" - }, - { - "id": "player_232653", - "lastname": "Jacob Ramsey", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-02-12" - }, - { - "id": "player_232787", - "lastname": "Gallagher", - "firstname": "Conor", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-05-15" - }, - { - "id": "player_232797", - "lastname": "Ramsay", - "firstname": "Kayne", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-12-21" - }, - { - "id": "player_232881", - "lastname": "Leshabela", - "firstname": "Thakgalo", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-11-26" - }, - { - "id": "player_232928", - "lastname": "Garner", - "firstname": "James", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-07-19" - }, - { - "id": "player_232957", - "lastname": "Allan", - "firstname": "Thomas", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-07-16" - }, - { - "id": "player_232960", - "lastname": "Cass", - "firstname": "Lewis", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-05-11" - }, - { - "id": "player_232977", - "lastname": "Watts", - "firstname": "Kelland", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-05-11" - }, - { - "id": "player_232980", - "lastname": "Aarons", - "firstname": "Maximillian", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-07-01" - }, - { - "id": "player_233425", - "lastname": "Connolly", - "firstname": "Aaron", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-07-01" - }, - { - "id": "player_233427", - "lastname": "Watt", - "firstname": "Elliot", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-19" - }, - { - "id": "player_233549", - "lastname": "Wright", - "firstname": "Callum", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-19" - }, - { - "id": "player_233963", - "lastname": "Mavropanos", - "firstname": "Konstantinos", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2017-01-04" - }, - { - "id": "player_234720", - "lastname": "Gio McGregor", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2018-07-01" - }, - { - "id": "player_234908", - "lastname": "Foyth", - "firstname": "Juan", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2017-08-30" - }, - { - "id": "player_235076", - "lastname": "Jonathan De Bie", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2019-07-19" - }, - { - "id": "player_235530", - "lastname": "Kelly", - "firstname": "Lloyd", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2019-05-18" - }, - { - "id": "player_235599", - "lastname": "Tavares", - "firstname": "Nikola", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2019-05-11" - }, - { - "id": "player_240795", - "lastname": "Sorensen", - "firstname": "Elias", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2019-07-16" - }, - { - "id": "player_242166", - "lastname": "Guendouzi", - "firstname": "Matteo", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-07-11" - }, - { - "id": "player_243568", - "lastname": "Gilmour", - "firstname": "Billy", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-07-01" - }, - { - "id": "player_244852", - "lastname": "Pennant", - "firstname": "Terell", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-19" - }, - { - "id": "player_244932", - "lastname": "Knight", - "firstname": "Ben", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-07-16" - }, - { - "id": "player_245719", - "lastname": "Harwood-Bellis", - "firstname": "Taylor", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-07-16" - }, - { - "id": "player_248504", - "lastname": "Zoubdi Touaizi", - "firstname": "Nabili", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-01" - }, - { - "id": "player_26901", - "lastname": "Mirallas", - "firstname": "Kevin", - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Everton", - "teamid": "11", - "joinDate": "2012-08-19" - }, - { - "id": "player_27436", - "lastname": "McGoldrick", - "firstname": "David", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2018-07-24" - }, - { - "id": "player_27770", - "lastname": "Bjarnason", - "firstname": "Birkir", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-01-25" - }, - { - "id": "player_27789", - "lastname": "Fernandinho", - "firstname": null, - "position": 3, - "quotation": 22, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2013-07-01" - }, - { - "id": "player_28082", - "lastname": "Fährmann", - "firstname": "Ralf", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Norwich", - "teamid": "45", - "joinDate": "2019-07-05" - }, - { - "id": "player_28609", - "lastname": "Legzdins", - "firstname": "Adam", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-08-08" - }, - { - "id": "player_33148", - "lastname": "Bravo", - "firstname": "Claudio", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-08-25" - }, - { - "id": "player_37096", - "lastname": "Fabianski", - "firstname": "Lukasz", - "position": 1, - "quotation": 25, - "ultraPosition": 10, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-06-20" - }, - { - "id": "player_37265", - "lastname": "Sánchez", - "firstname": "Alexis", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-01-22" - }, - { - "id": "player_37339", - "lastname": "Ahmed El Mohamady", - "firstname": null, - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-07-19" - }, - { - "id": "player_37402", - "lastname": "Fuchs", - "firstname": "Christian", - "position": 2, - "quotation": 4, - "ultraPosition": 21, - "club": "Leicester", - "teamid": "13", - "joinDate": "2015-07-01" - }, - { - "id": "player_37572", - "lastname": "Agüero", - "firstname": "Sergio", - "position": 4, - "quotation": 47, - "ultraPosition": 40, - "club": "Man. City", - "teamid": "43", - "joinDate": "2011-07-27" - }, - { - "id": "player_37605", - "lastname": "Özil", - "firstname": "Mesut", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2013-09-02" - }, - { - "id": "player_37614", - "lastname": "Vrancic", - "firstname": "Mario", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-06-10" - }, - { - "id": "player_37642", - "lastname": "Jonny Evans", - "firstname": null, - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-06-08" - }, - { - "id": "player_37915", - "lastname": "Lloris", - "firstname": "Hugo", - "position": 1, - "quotation": 25, - "ultraPosition": 10, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2012-08-31" - }, - { - "id": "player_38290", - "lastname": "Rose", - "firstname": "Danny", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2007-07-26" - }, - { - "id": "player_38411", - "lastname": "Monreal", - "firstname": "Nacho", - "position": 2, - "quotation": 15, - "ultraPosition": 21, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2013-01-31" - }, - { - "id": "player_38439", - "lastname": "Capoue", - "firstname": "Etienne", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "club": "Watford", - "teamid": "57", - "joinDate": "2015-07-06" - }, - { - "id": "player_38454", - "lastname": "Lovren", - "firstname": "Dejan", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2014-07-27" - }, - { - "id": "player_38490", - "lastname": "Kayal", - "firstname": "Beram", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Brighton", - "teamid": "36", - "joinDate": "2015-01-23" - }, - { - "id": "player_38499", - "lastname": "Hemed", - "firstname": "Tomer", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2015-07-01" - }, - { - "id": "player_38533", - "lastname": "Rui Patrício", - "firstname": null, - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-01" - }, - { - "id": "player_39155", - "lastname": "Lallana", - "firstname": "Adam", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2014-07-01" - }, - { - "id": "player_39194", - "lastname": "Vertonghen", - "firstname": "Jan", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2012-07-12" - }, - { - "id": "player_39476", - "lastname": "Sokratis", - "firstname": null, - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-07-02" - }, - { - "id": "player_39487", - "lastname": "Pieters", - "firstname": "Erik", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Burnley", - "teamid": "90", - "joinDate": "2019-07-08" - }, - { - "id": "player_39847", - "lastname": "Defour", - "firstname": "Steven", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Burnley", - "teamid": "90", - "joinDate": "2016-08-16" - }, - { - "id": "player_40002", - "lastname": "Darmian", - "firstname": "Matteo", - "position": 2, - "quotation": 4, - "ultraPosition": 21, - "club": "Man. United", - "teamid": "1", - "joinDate": "2015-07-11" - }, - { - "id": "player_40145", - "lastname": "Cork", - "firstname": "Jack", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-07-11" - }, - { - "id": "player_40146", - "lastname": "Bertrand", - "firstname": "Ryan", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Southampton", - "teamid": "20", - "joinDate": "2015-02-01" - }, - { - "id": "player_40349", - "lastname": "Begovic", - "firstname": "Asmir", - "position": 1, - "quotation": 10, - "ultraPosition": 10, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2017-07-01" - }, - { - "id": "player_40383", - "lastname": "Forster", - "firstname": "Fraser", - "position": 1, - "quotation": 11, - "ultraPosition": 10, - "club": "Southampton", - "teamid": "20", - "joinDate": "2014-08-09" - }, - { - "id": "player_40386", - "lastname": "Basham", - "firstname": "Chris", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2014-07-01" - }, - { - "id": "player_40387", - "lastname": "Gosling", - "firstname": "Dan", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2014-07-01" - }, - { - "id": "player_40564", - "lastname": "Lansbury", - "firstname": "Henri", - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-01-20" - }, - { - "id": "player_40669", - "lastname": "Ogbonna", - "firstname": "Angelo", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "West Ham", - "teamid": "21", - "joinDate": "2015-07-10" - }, - { - "id": "player_40694", - "lastname": "Jiménez", - "firstname": "Roberto", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "West Ham", - "teamid": "21", - "joinDate": "2019-07-01" - }, - { - "id": "player_40784", - "lastname": "Sakho", - "firstname": "Mamadou", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-08-31" - }, - { - "id": "player_40836", - "lastname": "Guaita", - "firstname": "Vicente", - "position": 1, - "quotation": 18, - "ultraPosition": 10, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2018-07-01" - }, - { - "id": "player_40845", - "lastname": "Stephens", - "firstname": "Dale", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "club": "Brighton", - "teamid": "36", - "joinDate": "2014-01-30" - }, - { - "id": "player_40868", - "lastname": "Holebas", - "firstname": "José", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Watford", - "teamid": "57", - "joinDate": "2015-07-01" - }, - { - "id": "player_41270", - "lastname": "David Luiz", - "firstname": null, - "position": 2, - "quotation": 35, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-08-31" - }, - { - "id": "player_41320", - "lastname": "Daniels", - "firstname": "Charlie", - "position": 2, - "quotation": 4, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2012-01-03" - }, - { - "id": "player_41328", - "lastname": "Azpilicueta", - "firstname": "César", - "position": 2, - "quotation": 23, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2012-08-24" - }, - { - "id": "player_41338", - "lastname": "Cathcart", - "firstname": "Craig", - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "club": "Watford", - "teamid": "57", - "joinDate": "2014-07-01" - }, - { - "id": "player_41674", - "lastname": "Long", - "firstname": "Kevin", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Burnley", - "teamid": "90", - "joinDate": "2010-01-01" - }, - { - "id": "player_41725", - "lastname": "Deeney", - "firstname": "Troy", - "position": 4, - "quotation": 19, - "ultraPosition": 40, - "club": "Watford", - "teamid": "57", - "joinDate": "2010-08-05" - }, - { - "id": "player_41727", - "lastname": "Bennett", - "firstname": "Ryan", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2017-07-01" - }, - { - "id": "player_41733", - "lastname": "Wijnaldum", - "firstname": "Georginio", - "position": 3, - "quotation": 20, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2016-07-22" - }, - { - "id": "player_41823", - "lastname": "Delph", - "firstname": "Fabian", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2019-07-15" - }, - { - "id": "player_41945", - "lastname": "Prödl", - "firstname": "Sebastian", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Watford", - "teamid": "57", - "joinDate": "2015-07-01" - }, - { - "id": "player_421796", - "lastname": "Tavares", - "firstname": "Sidnei", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-22" - }, - { - "id": "player_42525", - "lastname": "Henderson", - "firstname": "Stephen", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2019-07-06" - }, - { - "id": "player_42748", - "lastname": "Bong", - "firstname": "Gaëtan", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Brighton", - "teamid": "36", - "joinDate": "2015-07-03" - }, - { - "id": "player_42774", - "lastname": "Schneiderlin", - "firstname": "Morgan", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-01-12" - }, - { - "id": "player_42824", - "lastname": "Carlos Sánchez", - "firstname": null, - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-08-09" - }, - { - "id": "player_42899", - "lastname": "Romero", - "firstname": "Sergio", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Man. United", - "teamid": "1", - "joinDate": "2015-07-24" - }, - { - "id": "player_43020", - "lastname": "Chicharito", - "firstname": null, - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "West Ham", - "teamid": "21", - "joinDate": "2017-07-24" - }, - { - "id": "player_431131", - "lastname": "Djenepo", - "firstname": "Moussa", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2019-07-01" - }, - { - "id": "player_431774", - "lastname": "Taylor", - "firstname": "Kyle", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2017-07-28" - }, - { - "id": "player_43250", - "lastname": "Cleverley", - "firstname": "Tom", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-07-01" - }, - { - "id": "player_43252", - "lastname": "Chester", - "firstname": "James", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2016-08-12" - }, - { - "id": "player_432656", - "lastname": "Garcia", - "firstname": "Eric", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-01" - }, - { - "id": "player_432793", - "lastname": "Ali Koiki", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-12-01" - }, - { - "id": "player_432987", - "lastname": "Jaros", - "firstname": "Vitezslav", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-10" - }, - { - "id": "player_432990", - "lastname": "Larouci", - "firstname": "Yasser", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-10" - }, - { - "id": "player_433154", - "lastname": "McNeil", - "firstname": "Dwight", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-05-12" - }, - { - "id": "player_43521", - "lastname": "Saivet", - "firstname": "Henri", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-01-11" - }, - { - "id": "player_43670", - "lastname": "Mata", - "firstname": "Juan", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Man. United", - "teamid": "1", - "joinDate": "2014-01-25" - }, - { - "id": "player_43808", - "lastname": "Suttner", - "firstname": "Markus", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-07-13" - }, - { - "id": "player_441027", - "lastname": "Dionkou", - "firstname": "Alpha Richard", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-07-16" - }, - { - "id": "player_441271", - "lastname": "Hoever", - "firstname": "Ki-Jana", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-01-01" - }, - { - "id": "player_441302", - "lastname": "Maatsen", - "firstname": "Ian", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-07-01" - }, - { - "id": "player_44346", - "lastname": "Giroud", - "firstname": "Olivier", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-01-31" - }, - { - "id": "player_444145", - "lastname": "Gabriel Martinelli", - "firstname": null, - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2019-07-15" - }, - { - "id": "player_444181", - "lastname": "Ofoborh", - "firstname": "Nathan", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2017-07-01" - }, - { - "id": "player_444765", - "lastname": "van den Berg", - "firstname": "Sepp", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-06-27" - }, - { - "id": "player_444884", - "lastname": "Elliott", - "firstname": "Harvey", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2019-07-28" - }, - { - "id": "player_445916", - "lastname": "Forster", - "firstname": "Harry", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Watford", - "teamid": "57", - "joinDate": "2019-07-01" - }, - { - "id": "player_446189", - "lastname": "Kovar", - "firstname": "Matej", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-08-10" - }, - { - "id": "player_44683", - "lastname": "Rodriguez", - "firstname": "Jay", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2019-07-09" - }, - { - "id": "player_44699", - "lastname": "Barnes", - "firstname": "Ashley", - "position": 4, - "quotation": 23, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2014-01-10" - }, - { - "id": "player_447235", - "lastname": "Parrott", - "firstname": "Troy", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2019-07-19" - }, - { - "id": "player_448791", - "lastname": "White", - "firstname": "Harvey", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2019-07-19" - }, - { - "id": "player_449926", - "lastname": "Bernabé", - "firstname": "Adrián", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2018-07-01" - }, - { - "id": "player_45268", - "lastname": "Sissoko", - "firstname": "Moussa", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2016-08-31" - }, - { - "id": "player_456350", - "lastname": "Bazunu", - "firstname": "Gavin", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Man. City", - "teamid": "43", - "joinDate": "2019-07-01" - }, - { - "id": "player_461561", - "lastname": "Fitzhugh", - "firstname": "Ethan", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2019-07-15" - }, - { - "id": "player_46483", - "lastname": "Adrien Silva", - "firstname": null, - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-01-01" - }, - { - "id": "player_47247", - "lastname": "Fleck", - "firstname": "John", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2016-07-08" - }, - { - "id": "player_47390", - "lastname": "Taylor", - "firstname": "Neil", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-01-31" - }, - { - "id": "player_47431", - "lastname": "Willian", - "firstname": null, - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2013-08-28" - }, - { - "id": "player_48613", - "lastname": "Evans", - "firstname": "Ched", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-06-10" - }, - { - "id": "player_48615", - "lastname": "Arter", - "firstname": "Harry", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2010-07-01" - }, - { - "id": "player_48717", - "lastname": "Reid", - "firstname": "Winston", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "West Ham", - "teamid": "21", - "joinDate": "2010-08-05" - }, - { - "id": "player_49083", - "lastname": "Freeman", - "firstname": "Luke", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-07-03" - }, - { - "id": "player_49262", - "lastname": "Steele", - "firstname": "Jason", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-07-01" - }, - { - "id": "player_49413", - "lastname": "Tomkins", - "firstname": "James", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2016-06-05" - }, - { - "id": "player_49579", - "lastname": "Pedro", - "firstname": null, - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2015-08-20" - }, - { - "id": "player_50093", - "lastname": "Button", - "firstname": "David", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-07-16" - }, - { - "id": "player_50232", - "lastname": "Shelvey", - "firstname": "Jonjo", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-01-12" - }, - { - "id": "player_50471", - "lastname": "McArthur", - "firstname": "James", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2014-09-01" - }, - { - "id": "player_50472", - "lastname": "McCarthy", - "firstname": "James", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2013-09-02" - }, - { - "id": "player_51507", - "lastname": "Koscielny", - "firstname": "Laurent", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2010-07-07" - }, - { - "id": "player_51927", - "lastname": "Mee", - "firstname": "Ben", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Burnley", - "teamid": "90", - "joinDate": "2012-07-01" - }, - { - "id": "player_51938", - "lastname": "Albrighton", - "firstname": "Marc", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Leicester", - "teamid": "13", - "joinDate": "2014-07-01" - }, - { - "id": "player_51940", - "lastname": "de Gea", - "firstname": "David", - "position": 1, - "quotation": 18, - "ultraPosition": 10, - "club": "Man. United", - "teamid": "1", - "joinDate": "2011-07-01" - }, - { - "id": "player_52484", - "lastname": "Balogun", - "firstname": "Leon", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-07-01" - }, - { - "id": "player_52940", - "lastname": "Janmaat", - "firstname": "Daryl", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-08-24" - }, - { - "id": "player_54102", - "lastname": "Wilshere", - "firstname": "Jack", - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-07-09" - }, - { - "id": "player_54469", - "lastname": "Smith", - "firstname": "Adam", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2014-01-28" - }, - { - "id": "player_54484", - "lastname": "Kiko Femenía", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-07-01" - }, - { - "id": "player_54694", - "lastname": "Aubameyang", - "firstname": "Pierre-Emerick", - "position": 4, - "quotation": 46, - "ultraPosition": 40, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-01-31" - }, - { - "id": "player_54756", - "lastname": "Wanyama", - "firstname": "Victor", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2016-07-01" - }, - { - "id": "player_54764", - "lastname": "Kodjia", - "firstname": "Jonathan", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2016-08-30" - }, - { - "id": "player_54861", - "lastname": "Benteke", - "firstname": "Christian", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2016-08-20" - }, - { - "id": "player_55037", - "lastname": "Kouyaté", - "firstname": "Cheikhou", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2018-08-01" - }, - { - "id": "player_55422", - "lastname": "Sigurdsson", - "firstname": "Gylfi", - "position": 3, - "quotation": 27, - "ultraPosition": 32, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-08-16" - }, - { - "id": "player_55459", - "lastname": "Cresswell", - "firstname": "Aaron", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "West Ham", - "teamid": "21", - "joinDate": "2014-07-03" - }, - { - "id": "player_55494", - "lastname": "Ward", - "firstname": "Joel", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2012-05-29" - }, - { - "id": "player_55605", - "lastname": "Alderweireld", - "firstname": "Toby", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2015-07-08" - }, - { - "id": "player_55909", - "lastname": "Smalling", - "firstname": "Chris", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Man. United", - "teamid": "1", - "joinDate": "2010-07-01" - }, - { - "id": "player_56192", - "lastname": "Cuco Martina", - "firstname": null, - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Everton", - "teamid": "11", - "joinDate": "2017-07-17" - }, - { - "id": "player_56377", - "lastname": "Yarmolenko", - "firstname": "Andriy", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-07-11" - }, - { - "id": "player_56872", - "lastname": "Stanislas", - "firstname": "Junior", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2014-07-01" - }, - { - "id": "player_56917", - "lastname": "Steve Cook", - "firstname": null, - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2012-01-03" - }, - { - "id": "player_56979", - "lastname": "Henderson", - "firstname": "Jordan", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2011-06-09" - }, - { - "id": "player_56983", - "lastname": "Ritchie", - "firstname": "Matt", - "position": 3, - "quotation": 20, - "ultraPosition": 31, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-07-01" - }, - { - "id": "player_57112", - "lastname": "Mangala", - "firstname": "Eliaquim", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2014-08-11" - }, - { - "id": "player_57127", - "lastname": "Pukki", - "firstname": "Teemu", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-07-01" - }, - { - "id": "player_57145", - "lastname": "Federico Fernández", - "firstname": null, - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2018-08-09" - }, - { - "id": "player_57249", - "lastname": "Mkhitaryan", - "firstname": "Henrikh", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-01-22" - }, - { - "id": "player_57328", - "lastname": "Clyne", - "firstname": "Nathaniel", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-07-01" - }, - { - "id": "player_57410", - "lastname": "Otamendi", - "firstname": "Nicolás", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2015-08-20" - }, - { - "id": "player_57513", - "lastname": "Lössl", - "firstname": "Jonas", - "position": 1, - "quotation": 8, - "ultraPosition": 10, - "club": "Everton", - "teamid": "11", - "joinDate": "2019-07-01" - }, - { - "id": "player_57531", - "lastname": "Antonio", - "firstname": "Michail", - "position": 3, - "quotation": 17, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2015-09-01" - }, - { - "id": "player_58376", - "lastname": "McCarthy", - "firstname": "Alex", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-08-01" - }, - { - "id": "player_58621", - "lastname": "Walker", - "firstname": "Kyle", - "position": 2, - "quotation": 22, - "ultraPosition": 21, - "club": "Man. City", - "teamid": "43", - "joinDate": "2017-07-14" - }, - { - "id": "player_58771", - "lastname": "Colback", - "firstname": "Jack", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2014-07-01" - }, - { - "id": "player_58786", - "lastname": "Kelly", - "firstname": "Martin", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2014-08-14" - }, - { - "id": "player_58822", - "lastname": "Cédric Soares", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Southampton", - "teamid": "20", - "joinDate": "2015-06-18" - }, - { - "id": "player_58845", - "lastname": "Clark", - "firstname": "Ciaran", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-08-03" - }, - { - "id": "player_58857", - "lastname": "Holmes", - "firstname": "Ricky", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2018-01-15" - }, - { - "id": "player_58893", - "lastname": "Rojo", - "firstname": "Marcos", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Man. United", - "teamid": "1", - "joinDate": "2014-08-20" - }, - { - "id": "player_59125", - "lastname": "Wickham", - "firstname": "Connor", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2015-08-03" - }, - { - "id": "player_59614", - "lastname": "Duffy", - "firstname": "Mark", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2016-07-01" - }, - { - "id": "player_59735", - "lastname": "Darlow", - "firstname": "Karl", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2014-08-04" - }, - { - "id": "player_59859", - "lastname": "Gündogan", - "firstname": "Ilkay", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-07-01" - }, - { - "id": "player_59949", - "lastname": "Coleman", - "firstname": "Seamus", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "club": "Everton", - "teamid": "11", - "joinDate": "2009-02-02" - }, - { - "id": "player_59966", - "lastname": "Lacazette", - "firstname": "Alexandre", - "position": 4, - "quotation": 42, - "ultraPosition": 40, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2017-07-05" - }, - { - "id": "player_60232", - "lastname": "Dawson", - "firstname": "Craig", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Watford", - "teamid": "57", - "joinDate": "2019-07-01" - }, - { - "id": "player_60252", - "lastname": "Townsend", - "firstname": "Andros", - "position": 3, - "quotation": 20, - "ultraPosition": 32, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2016-07-01" - }, - { - "id": "player_60307", - "lastname": "Groß", - "firstname": "Pascal", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-07-01" - }, - { - "id": "player_60551", - "lastname": "Westwood", - "firstname": "Ashley", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-01-31" - }, - { - "id": "player_60586", - "lastname": "Johann Gudmundsson", - "firstname": null, - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "Burnley", - "teamid": "90", - "joinDate": "2016-07-19" - }, - { - "id": "player_60689", - "lastname": "Wood", - "firstname": "Chris", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-08-21" - }, - { - "id": "player_60914", - "lastname": "Matip", - "firstname": "Joel", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2016-07-01" - }, - { - "id": "player_61366", - "lastname": "De Bruyne", - "firstname": "Kevin", - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Man. City", - "teamid": "43", - "joinDate": "2015-08-30" - }, - { - "id": "player_61566", - "lastname": "Pereyra", - "firstname": "Roberto", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-08-19" - }, - { - "id": "player_61603", - "lastname": "Drinkwater", - "firstname": "Daniel", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2017-08-31" - }, - { - "id": "player_61604", - "lastname": "James", - "firstname": "Matty", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2012-07-01" - }, - { - "id": "player_61933", - "lastname": "Duffy", - "firstname": "Shane", - "position": 2, - "quotation": 25, - "ultraPosition": 20, - "club": "Brighton", - "teamid": "36", - "joinDate": "2016-08-26" - }, - { - "id": "player_62398", - "lastname": "Matic", - "firstname": "Nemanja", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Man. United", - "teamid": "1", - "joinDate": "2017-07-31" - }, - { - "id": "player_62974", - "lastname": "Lamela", - "firstname": "Erik", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2013-08-30" - }, - { - "id": "player_63426", - "lastname": "Stevens", - "firstname": "Enda", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-07-01" - }, - { - "id": "player_66242", - "lastname": "Pröpper", - "firstname": "Davy", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-08-07" - }, - { - "id": "player_66247", - "lastname": "Zeegelaar", - "firstname": "Marvin", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-08-31" - }, - { - "id": "player_66749", - "lastname": "Lukaku", - "firstname": "Romelu", - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "club": "Man. United", - "teamid": "1", - "joinDate": "2017-07-10" - }, - { - "id": "player_66797", - "lastname": "Mignolet", - "firstname": "Simon", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2013-06-26" - }, - { - "id": "player_66838", - "lastname": "Tosun", - "firstname": "Cenk", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Everton", - "teamid": "11", - "joinDate": "2018-01-05" - }, - { - "id": "player_66975", - "lastname": "Milivojevic", - "firstname": "Luka", - "position": 3, - "quotation": 27, - "ultraPosition": 31, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-01-31" - }, - { - "id": "player_67089", - "lastname": "Dubravka", - "firstname": "Martin", - "position": 1, - "quotation": 15, - "ultraPosition": 10, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2018-07-01" - }, - { - "id": "player_67184", - "lastname": "Roderick Miranda", - "firstname": null, - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2017-06-13" - }, - { - "id": "player_6744", - "lastname": "Grant", - "firstname": "Lee", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Man. United", - "teamid": "1", - "joinDate": "2018-07-03" - }, - { - "id": "player_68312", - "lastname": "Shaqiri", - "firstname": "Xherdan", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-07-13" - }, - { - "id": "player_68983", - "lastname": "Lowton", - "firstname": "Matthew", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Burnley", - "teamid": "90", - "joinDate": "2015-06-22" - }, - { - "id": "player_69140", - "lastname": "Mustafi", - "firstname": "Shkodran", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2016-08-30" - }, - { - "id": "player_71738", - "lastname": "Stiepermann", - "firstname": "Marco", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-08-06" - }, - { - "id": "player_73426", - "lastname": "Gray", - "firstname": "Andre", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-08-09" - }, - { - "id": "player_74208", - "lastname": "Pogba", - "firstname": "Paul", - "position": 3, - "quotation": 30, - "ultraPosition": 31, - "club": "Man. United", - "teamid": "1", - "joinDate": "2016-08-09" - }, - { - "id": "player_74230", - "lastname": "van Aanholt", - "firstname": "Patrick", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-01-30" - }, - { - "id": "player_74375", - "lastname": "Schelotto", - "firstname": "Ezequiel", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Brighton", - "teamid": "36", - "joinDate": "2017-08-31" - }, - { - "id": "player_74854", - "lastname": "Moore", - "firstname": "Simon", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2016-08-19" - }, - { - "id": "player_75115", - "lastname": "Wilson", - "firstname": "Callum", - "position": 4, - "quotation": 24, - "ultraPosition": 40, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2014-07-06" - }, - { - "id": "player_76359", - "lastname": "Jones", - "firstname": "Phil", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Man. United", - "teamid": "1", - "joinDate": "2011-06-13" - }, - { - "id": "player_7645", - "lastname": "Jagielka", - "firstname": "Phil", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-07-04" - }, - { - "id": "player_76542", - "lastname": "Ki Sung-yueng", - "firstname": null, - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2018-07-01" - }, - { - "id": "player_77359", - "lastname": "Lejeune", - "firstname": "Florian", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2017-07-04" - }, - { - "id": "player_78007", - "lastname": "King", - "firstname": "Joshua", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2015-07-01" - }, - { - "id": "player_78056", - "lastname": "Oriol Romeu", - "firstname": null, - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Southampton", - "teamid": "20", - "joinDate": "2015-08-12" - }, - { - "id": "player_78356", - "lastname": "Austin", - "firstname": "Charlie", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-01-16" - }, - { - "id": "player_78607", - "lastname": "Kenny McLean", - "firstname": null, - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-01-21" - }, - { - "id": "player_78830", - "lastname": "Kane", - "firstname": "Harry", - "position": 4, - "quotation": 40, - "ultraPosition": 40, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2009-07-01" - }, - { - "id": "player_78916", - "lastname": "Burn", - "firstname": "Dan", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-08-09" - }, - { - "id": "player_79479", - "lastname": "Lazaar", - "firstname": "Achraf", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Newcastle", - "teamid": "4", - "joinDate": "2016-08-28" - }, - { - "id": "player_79852", - "lastname": "Steer", - "firstname": "Jed", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2013-07-01" - }, - { - "id": "player_79910", - "lastname": "Hogan", - "firstname": "Scott", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-01-31" - }, - { - "id": "player_79934", - "lastname": "Norwood", - "firstname": "Oliver", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-01-04" - }, - { - "id": "player_80146", - "lastname": "Ayew", - "firstname": "Jordan", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2019-07-25" - }, - { - "id": "player_80201", - "lastname": "Leno", - "firstname": "Bernd", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2018-06-19" - }, - { - "id": "player_80226", - "lastname": "Aurier", - "firstname": "Serge", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2017-08-31" - }, - { - "id": "player_80254", - "lastname": "Jenkinson", - "firstname": "Carl", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2011-06-09" - }, - { - "id": "player_80447", - "lastname": "Yoshida", - "firstname": "Maya", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Southampton", - "teamid": "20", - "joinDate": "2012-08-31" - }, - { - "id": "player_80607", - "lastname": "Eriksen", - "firstname": "Christian", - "position": 3, - "quotation": 24, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2013-08-30" - }, - { - "id": "player_81012", - "lastname": "Fredericks", - "firstname": "Ryan", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "West Ham", - "teamid": "21", - "joinDate": "2018-07-01" - }, - { - "id": "player_81048", - "lastname": "Drmic", - "firstname": "Josip", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Norwich", - "teamid": "45", - "joinDate": "2019-07-01" - }, - { - "id": "player_81183", - "lastname": "Vydra", - "firstname": "Matej", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-08-07" - }, - { - "id": "player_81880", - "lastname": "Oxlade-Chamberlain", - "firstname": "Alex", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2017-08-31" - }, - { - "id": "player_82263", - "lastname": "Alonso", - "firstname": "Marcos", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-08-31" - }, - { - "id": "player_82403", - "lastname": "Zaha", - "firstname": "Wilfried", - "position": 4, - "quotation": 22, - "ultraPosition": 40, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2015-02-02" - }, - { - "id": "player_82691", - "lastname": "Baldock", - "firstname": "George", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2017-06-13" - }, - { - "id": "player_83283", - "lastname": "Redmond", - "firstname": "Nathan", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2016-06-25" - }, - { - "id": "player_83299", - "lastname": "Dunk", - "firstname": "Lewis", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Brighton", - "teamid": "36", - "joinDate": "2009-07-01" - }, - { - "id": "player_83312", - "lastname": "Gibson", - "firstname": "Ben", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Burnley", - "teamid": "90", - "joinDate": "2018-08-05" - }, - { - "id": "player_83314", - "lastname": "Hendrick", - "firstname": "Jeff", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Burnley", - "teamid": "90", - "joinDate": "2016-08-31" - }, - { - "id": "player_83428", - "lastname": "Hanley", - "firstname": "Grant", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-08-30" - }, - { - "id": "player_84384", - "lastname": "Klose", - "firstname": "Timm", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Norwich", - "teamid": "45", - "joinDate": "2016-01-18" - }, - { - "id": "player_84450", - "lastname": "Xhaka", - "firstname": "Granit", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2016-07-01" - }, - { - "id": "player_84915", - "lastname": "Hector", - "firstname": "Michael", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2015-09-01" - }, - { - "id": "player_84939", - "lastname": "Danny Ings", - "firstname": null, - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-08-09" - }, - { - "id": "player_85242", - "lastname": "Hourihane", - "firstname": "Conor", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2017-01-26" - }, - { - "id": "player_85624", - "lastname": "Kabasele", - "firstname": "Christian", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Watford", - "teamid": "57", - "joinDate": "2016-07-01" - }, - { - "id": "player_85955", - "lastname": "Jorginho", - "firstname": null, - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-07-14" - }, - { - "id": "player_85971", - "lastname": "Son Heung-Min", - "firstname": null, - "position": 4, - "quotation": 38, - "ultraPosition": 40, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2015-08-28" - }, - { - "id": "player_86153", - "lastname": "Montoya", - "firstname": "Martín", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-08-09" - }, - { - "id": "player_86417", - "lastname": "Schlupp", - "firstname": "Jeffrey", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Crystal Palace", - "teamid": "31", - "joinDate": "2017-01-13" - }, - { - "id": "player_86881", - "lastname": "Mendy", - "firstname": "Nampalys", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Leicester", - "teamid": "13", - "joinDate": "2016-07-03" - }, - { - "id": "player_86934", - "lastname": "Lanzini", - "firstname": "Manuel", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "West Ham", - "teamid": "21", - "joinDate": "2016-07-01" - }, - { - "id": "player_87121", - "lastname": "Freeman", - "firstname": "Kieron", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2015-01-23" - }, - { - "id": "player_87396", - "lastname": "Leitner", - "firstname": "Moritz", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-07-01" - }, - { - "id": "player_87447", - "lastname": "Besic", - "firstname": "Muhamed", - "position": 3, - "quotation": 4, - "ultraPosition": 31, - "club": "Everton", - "teamid": "11", - "joinDate": "2014-07-28" - }, - { - "id": "player_87835", - "lastname": "Doherty", - "firstname": "Matt", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2010-08-19" - }, - { - "id": "player_88175", - "lastname": "Kalinic", - "firstname": "Lovre", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-01-01" - }, - { - "id": "player_88894", - "lastname": "Barkley", - "firstname": "Ross", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2018-01-05" - }, - { - "id": "player_88900", - "lastname": "Stephens", - "firstname": "Jack", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Southampton", - "teamid": "20", - "joinDate": "2011-07-01" - }, - { - "id": "player_89085", - "lastname": "Chalobah", - "firstname": "Nathaniel", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-07-13" - }, - { - "id": "player_89274", - "lastname": "Jota", - "firstname": null, - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2019-06-05" - }, - { - "id": "player_89470", - "lastname": "Hernández", - "firstname": "Onel", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Norwich", - "teamid": "45", - "joinDate": "2018-01-25" - }, - { - "id": "player_90105", - "lastname": "Fraser", - "firstname": "Ryan", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Bournemouth", - "teamid": "91", - "joinDate": "2016-08-20" - }, - { - "id": "player_90440", - "lastname": "Trybull", - "firstname": "Tom", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Norwich", - "teamid": "45", - "joinDate": "2017-08-04" - }, - { - "id": "player_90517", - "lastname": "Brady", - "firstname": "Robbie", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-01-31" - }, - { - "id": "player_90518", - "lastname": "Morrison", - "firstname": "Ravel", - "position": 3, - "quotation": 4, - "ultraPosition": 32, - "club": "Sheffield", - "teamid": "49", - "joinDate": "2019-07-16" - }, - { - "id": "player_90585", - "lastname": "Boly", - "firstname": "Willy", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2018-07-01" - }, - { - "id": "player_9089", - "lastname": "Foster", - "firstname": "Ben", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-07-05" - }, - { - "id": "player_91047", - "lastname": "Armstrong", - "firstname": "Stuart", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-06-26" - }, - { - "id": "player_91651", - "lastname": "Kovacic", - "firstname": "Mateo", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2019-07-01" - }, - { - "id": "player_92217", - "lastname": "Roberto Firmino", - "firstname": null, - "position": 4, - "quotation": 26, - "ultraPosition": 40, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2015-07-01" - }, - { - "id": "player_92383", - "lastname": "Wells", - "firstname": "Nahki", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Burnley", - "teamid": "90", - "joinDate": "2017-08-31" - }, - { - "id": "player_93100", - "lastname": "Vestergaard", - "firstname": "Jannik", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-07-13" - }, - { - "id": "player_93264", - "lastname": "Dier", - "firstname": "Eric", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2014-08-01" - }, - { - "id": "player_93284", - "lastname": "Andone", - "firstname": "Florin", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Brighton", - "teamid": "36", - "joinDate": "2018-06-08" - }, - { - "id": "player_94147", - "lastname": "Coady", - "firstname": "Conor", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Wolverhampton", - "teamid": "39", - "joinDate": "2015-07-03" - }, - { - "id": "player_94245", - "lastname": "Batshuayi", - "firstname": "Michy", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Chelsea", - "teamid": "8", - "joinDate": "2016-07-03" - }, - { - "id": "player_94924", - "lastname": "Deulofeu", - "firstname": "Gerard", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "Watford", - "teamid": "57", - "joinDate": "2018-06-11" - }, - { - "id": "player_95463", - "lastname": "Ward", - "firstname": "Danny", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "club": "Leicester", - "teamid": "13", - "joinDate": "2018-07-20" - }, - { - "id": "player_95658", - "lastname": "Maguire", - "firstname": "Harry", - "position": 2, - "quotation": 23, - "ultraPosition": 20, - "club": "Leicester", - "teamid": "13", - "joinDate": "2017-07-01" - }, - { - "id": "player_95715", - "lastname": "Lucas Moura", - "firstname": null, - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Tottenham", - "teamid": "6", - "joinDate": "2018-01-31" - }, - { - "id": "player_96767", - "lastname": "Foulquier", - "firstname": "Dimitri", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Watford", - "teamid": "57", - "joinDate": "2017-08-25" - }, - { - "id": "player_96787", - "lastname": "Mohamed Elyounoussi", - "firstname": null, - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-06-29" - }, - { - "id": "player_97032", - "lastname": "van Dijk", - "firstname": "Virgil", - "position": 2, - "quotation": 34, - "ultraPosition": 20, - "club": "Liverpool", - "teamid": "14", - "joinDate": "2018-01-01" - }, - { - "id": "player_97299", - "lastname": "Stones", - "firstname": "John", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Man. City", - "teamid": "43", - "joinDate": "2016-08-09" - }, - { - "id": "player_98745", - "lastname": "Bellerín", - "firstname": "Héctor", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2012-07-01" - }, - { - "id": "player_98747", - "lastname": "Pope", - "firstname": "Nick", - "position": 1, - "quotation": 6, - "ultraPosition": 10, - "club": "Burnley", - "teamid": "90", - "joinDate": "2016-07-19" - }, - { - "id": "player_98770", - "lastname": "Nyland", - "firstname": "Ørjan", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Aston Villa", - "teamid": "7", - "joinDate": "2018-08-07" - }, - { - "id": "player_98914", - "lastname": "Carrillo", - "firstname": "Guido", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Southampton", - "teamid": "20", - "joinDate": "2018-01-25" - }, - { - "id": "player_98980", - "lastname": "Martínez", - "firstname": "Emiliano", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Arsenal", - "teamid": "3", - "joinDate": "2011-07-01" - } - ] -} diff --git a/src/test/resources/__files/mpg.mercato.qyOG7BuuZcv.20190807.json b/src/test/resources/__files/mpg.mercato.qyOG7BuuZcv.20190807.json deleted file mode 100644 index 1cfa989..0000000 --- a/src/test/resources/__files/mpg.mercato.qyOG7BuuZcv.20190807.json +++ /dev/null @@ -1 +0,0 @@ -{"leagueId":"qyOG7BuuZcv","turn":3,"players":10,"season":4,"statusLeague":3,"currentUser":"authorized","championship":1,"statusTeam":0,"leagueMode":1,"budget":217,"currentTeam":"mpg_team_qyOG7BuuZcv$$mpg_user_306874","availablePlayers":[{"id":"player_102660","lastname":"Rimane","firstname":"Kevin","position":2,"quotation":1,"ultraPosition":20,"club":"Paris","teamid":"149","joinDate":"2015-01-01"},{"id":"player_103116","lastname":"Léon","firstname":"Donovan","position":1,"quotation":8,"ultraPosition":10,"club":"Brest","teamid":"862","joinDate":"2017-08-31"},{"id":"player_103127","lastname":"Wagué","firstname":"Molla","position":2,"quotation":11,"ultraPosition":20,"club":"Nantes","teamid":"430","joinDate":"2019-07-17"},{"id":"player_103457","lastname":"Duljevic","firstname":"Haris","position":3,"quotation":6,"ultraPosition":32,"club":"Nîmes","teamid":"2336","joinDate":"2019-07-30"},{"id":"player_103733","lastname":"Cakin","firstname":"Hendrick","position":2,"quotation":1,"ultraPosition":21,"club":"Reims","teamid":"1423","joinDate":"2017-07-01"},{"id":"player_105345","lastname":"Petkovic","firstname":"Danijel","position":1,"quotation":9,"ultraPosition":10,"club":"Angers","teamid":"2128","joinDate":"2019-07-17"},{"id":"player_105706","lastname":"Yago","firstname":"Steeve","position":2,"quotation":7,"ultraPosition":20,"club":"Toulouse","teamid":"427","joinDate":"2011-08-31"},{"id":"player_105727","lastname":"Mayi","firstname":"Kévin","position":4,"quotation":5,"ultraPosition":40,"club":"Brest","teamid":"862","joinDate":"2017-08-26"},{"id":"player_107254","lastname":"Fabri","firstname":"Julien","position":1,"quotation":1,"ultraPosition":10,"club":"Brest","teamid":"862","joinDate":"2017-07-01"},{"id":"player_107330","lastname":"Jonathan Cafú","firstname":null,"position":4,"quotation":9,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2017-08-08"},{"id":"player_107685","lastname":"Dingome","firstname":"Tristan","position":3,"quotation":9,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2018-07-01"},{"id":"player_10955","lastname":"Camara","firstname":"Souleymane","position":4,"quotation":9,"ultraPosition":40,"club":"Montpellier","teamid":"147","joinDate":"2007-07-01"},{"id":"player_111773","lastname":"Krafth","firstname":"Emil","position":2,"quotation":11,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_112580","lastname":"Capelle","firstname":"Pierrick","position":3,"quotation":13,"ultraPosition":32,"club":"Angers","teamid":"2128","joinDate":"2015-07-01"},{"id":"player_113541","lastname":"Herelle","firstname":"Christophe","position":2,"quotation":19,"ultraPosition":20,"club":"Nice","teamid":"1395","joinDate":"2018-07-01"},{"id":"player_11382","lastname":"Butelle","firstname":"Ludovic","position":1,"quotation":20,"ultraPosition":10,"club":"Angers","teamid":"2128","joinDate":"2018-01-04"},{"id":"player_114531","lastname":"Boulaya","firstname":"Farid","position":3,"quotation":13,"ultraPosition":32,"club":"Metz","teamid":"145","joinDate":"2018-07-01"},{"id":"player_115851","lastname":"Cardinale","firstname":"Yoan","position":1,"quotation":7,"ultraPosition":10,"club":"Nice","teamid":"1395","joinDate":"2013-07-01"},{"id":"player_115918","lastname":"Rúnarsson","firstname":"Rúnar Alex","position":1,"quotation":16,"ultraPosition":10,"club":"Dijon","teamid":"2130","joinDate":"2018-07-01"},{"id":"player_116152","lastname":"Mendoza","firstname":"John Stiven","position":3,"quotation":8,"ultraPosition":32,"club":"Amiens","teamid":"1430","joinDate":"2018-01-17"},{"id":"player_119679","lastname":"Chafik","firstname":"Fouad","position":2,"quotation":10,"ultraPosition":21,"club":"Dijon","teamid":"2130","joinDate":"2016-07-01"},{"id":"player_119770","lastname":"Chavalerin","firstname":"Xavier","position":3,"quotation":14,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2017-07-01"},{"id":"player_120947","lastname":"Foket","firstname":"Thomas","position":2,"quotation":10,"ultraPosition":21,"club":"Reims","teamid":"1423","joinDate":"2018-08-31"},{"id":"player_121524","lastname":"Poundjé","firstname":"Maxime","position":2,"quotation":8,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2012-07-01"},{"id":"player_121709","lastname":"Benítez","firstname":"Walter","position":1,"quotation":27,"ultraPosition":10,"club":"Nice","teamid":"1395","joinDate":"2016-07-01"},{"id":"player_122840","lastname":"Aleesami","firstname":"Haitam","position":2,"quotation":11,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2019-07-08"},{"id":"player_126177","lastname":"Jean","firstname":"Corentin","position":4,"quotation":7,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2017-07-03"},{"id":"player_132197","lastname":"Goicoechea","firstname":"Mauro","position":1,"quotation":7,"ultraPosition":10,"club":"Toulouse","teamid":"427","joinDate":"2015-07-14"},{"id":"player_133632","lastname":"Ndour","firstname":"Abdallah","position":2,"quotation":3,"ultraPosition":21,"club":"Strasbourg","teamid":"153","joinDate":"2015-07-10"},{"id":"player_141017","lastname":"Moreira","firstname":"Steven","position":2,"quotation":7,"ultraPosition":21,"club":"Toulouse","teamid":"427","joinDate":"2018-08-10"},{"id":"player_141109","lastname":"Lloris","firstname":"Gautier","position":2,"quotation":1,"ultraPosition":20,"club":"Nice","teamid":"1395","joinDate":"2012-08-01"},{"id":"player_144660","lastname":"Ndong","firstname":"Didier","position":3,"quotation":2,"ultraPosition":31,"club":"Dijon","teamid":"2130","joinDate":"2019-07-29"},{"id":"player_145221","lastname":"Issiaga Sylla","firstname":null,"position":2,"quotation":10,"ultraPosition":21,"club":"Toulouse","teamid":"427","joinDate":"2012-11-01"},{"id":"player_147577","lastname":"Diony","firstname":"Lois","position":4,"quotation":11,"ultraPosition":40,"club":"Saint-Étienne","teamid":"152","joinDate":"2017-07-07"},{"id":"player_148214","lastname":"Píriz","firstname":"Facundo","position":3,"quotation":5,"ultraPosition":31,"club":"Montpellier","teamid":"147","joinDate":"2018-07-02"},{"id":"player_149519","lastname":"Cornet","firstname":"Maxwel","position":4,"quotation":13,"ultraPosition":40,"club":"Lyon","teamid":"143","joinDate":"2015-01-01"},{"id":"player_150172","lastname":"Philippoteaux","firstname":"Romain","position":3,"quotation":7,"ultraPosition":32,"club":"Nîmes","teamid":"2336","joinDate":"2019-07-01"},{"id":"player_152338","lastname":"Tameze","firstname":"Adrien","position":3,"quotation":13,"ultraPosition":31,"club":"Nice","teamid":"1395","joinDate":"2017-07-01"},{"id":"player_153014","lastname":"Marié","firstname":"Jordan","position":3,"quotation":11,"ultraPosition":31,"club":"Dijon","teamid":"2130","joinDate":"2013-01-01"},{"id":"player_153649","lastname":"Walter","firstname":"Remi","position":3,"quotation":7,"ultraPosition":31,"club":"Nice","teamid":"1395","joinDate":"2016-01-16"},{"id":"player_156708","lastname":"Keita","firstname":null,"position":4,"quotation":18,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2017-08-29"},{"id":"player_158496","lastname":"Touré","firstname":"Abdoulaye","position":3,"quotation":15,"ultraPosition":31,"club":"Nantes","teamid":"430","joinDate":"2013-04-01"},{"id":"player_161034","lastname":"Said","firstname":"Wesley","position":4,"quotation":14,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2019-08-03"},{"id":"player_161039","lastname":"Bahlouli","firstname":"Fares","position":3,"quotation":4,"ultraPosition":32,"club":"Lille","teamid":"429","joinDate":"2017-01-31"},{"id":"player_162316","lastname":"Chardonnet","firstname":"Brendan","position":2,"quotation":5,"ultraPosition":20,"club":"Brest","teamid":"862","joinDate":"2013-05-17"},{"id":"player_164474","lastname":"Sabaly","firstname":"Youssouf","position":2,"quotation":10,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2017-07-01"},{"id":"player_165112","lastname":"Kurzawa","firstname":"Rafal","position":4,"quotation":5,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2018-08-06"},{"id":"player_167074","lastname":"Tete","firstname":"Kenny","position":2,"quotation":9,"ultraPosition":21,"club":"Lyon","teamid":"143","joinDate":"2017-07-10"},{"id":"player_168985","lastname":"Santamaría","firstname":"Baptiste","position":3,"quotation":14,"ultraPosition":31,"club":"Angers","teamid":"2128","joinDate":"2016-07-01"},{"id":"player_169427","lastname":"Khaoui","firstname":"Saif-Eddine","position":3,"quotation":8,"ultraPosition":32,"club":"Marseille","teamid":"144","joinDate":"2016-07-01"},{"id":"player_169860","lastname":"Paquiez","firstname":"Gaetan","position":2,"quotation":7,"ultraPosition":21,"club":"Nîmes","teamid":"2336","joinDate":"2015-07-01"},{"id":"player_170409","lastname":"Andrei Girotto","firstname":null,"position":3,"quotation":10,"ultraPosition":31,"club":"Nantes","teamid":"430","joinDate":"2017-08-17"},{"id":"player_171099","lastname":"Kamara","firstname":"Hassane","position":3,"quotation":8,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2015-08-27"},{"id":"player_173085","lastname":"Danilo","firstname":null,"position":3,"quotation":10,"ultraPosition":31,"club":"Nice","teamid":"1395","joinDate":"2018-07-01"},{"id":"player_173253","lastname":"Maïga","firstname":"Habib","position":3,"quotation":8,"ultraPosition":31,"club":"Metz","teamid":"145","joinDate":"2019-07-01"},{"id":"player_174272","lastname":"Mandrea","firstname":"Anthony","position":1,"quotation":1,"ultraPosition":10,"club":"Angers","teamid":"2128","joinDate":"2016-07-01"},{"id":"player_174846","lastname":"Zungu","firstname":"Bongani","position":3,"quotation":12,"ultraPosition":32,"club":"Amiens","teamid":"1430","joinDate":"2017-08-31"},{"id":"player_174908","lastname":"Aholou","firstname":"Jean Eudes","position":3,"quotation":9,"ultraPosition":31,"club":"Saint-Étienne","teamid":"152","joinDate":"2019-08-01"},{"id":"player_176443","lastname":"Pellenard","firstname":"Théo","position":2,"quotation":12,"ultraPosition":21,"club":"Angers","teamid":"2128","joinDate":"2019-01-31"},{"id":"player_176495","lastname":"Moreto Cassamã","firstname":null,"position":3,"quotation":5,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2019-01-30"},{"id":"player_177840","lastname":"Nuno da Costa","firstname":null,"position":4,"quotation":12,"ultraPosition":40,"club":"Strasbourg","teamid":"153","joinDate":"2017-07-01"},{"id":"player_177885","lastname":"Zeneli","firstname":"Arbër","position":4,"quotation":8,"ultraPosition":40,"club":"Reims","teamid":"1423","joinDate":"2019-01-26"},{"id":"player_179536","lastname":"Koulouris","firstname":"Efthymios","position":4,"quotation":14,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2019-07-01"},{"id":"player_180167","lastname":"Henrichs","firstname":"Benjamin","position":2,"quotation":9,"ultraPosition":21,"club":"Monaco","teamid":"146","joinDate":"2018-08-28"},{"id":"player_180562","lastname":"Oyongo","firstname":"Ambroise","position":2,"quotation":8,"ultraPosition":21,"club":"Montpellier","teamid":"147","joinDate":"2018-01-02"},{"id":"player_180835","lastname":"Otávio","firstname":null,"position":3,"quotation":12,"ultraPosition":31,"club":"Bordeaux","teamid":"140","joinDate":"2017-08-08"},{"id":"player_184215","lastname":"Coly","firstname":"Racine","position":2,"quotation":5,"ultraPosition":21,"club":"Nice","teamid":"1395","joinDate":"2017-08-31"},{"id":"player_184232","lastname":"Akolo","firstname":"Chadrac","position":4,"quotation":7,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2019-07-30"},{"id":"player_184449","lastname":"Kayembe","firstname":"Joris","position":3,"quotation":4,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2017-07-01"},{"id":"player_185441","lastname":"Trauco","firstname":"Miguel","position":2,"quotation":9,"ultraPosition":21,"club":"Saint-Étienne","teamid":"152","joinDate":"2019-08-06"},{"id":"player_185621","lastname":"Léo Jardim","firstname":null,"position":1,"quotation":8,"ultraPosition":10,"club":"Lille","teamid":"429","joinDate":"2019-07-13"},{"id":"player_189542","lastname":"Mendy","firstname":"Alexandre","position":4,"quotation":10,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2017-07-01"},{"id":"player_192021","lastname":"Mbemba","firstname":"Nolan","position":3,"quotation":5,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2017-08-17"},{"id":"player_192291","lastname":"Sy","firstname":"Seydou","position":1,"quotation":3,"ultraPosition":10,"club":"Monaco","teamid":"146","joinDate":"2014-07-01"},{"id":"player_192785","lastname":"Otero","firstname":"Juan Ferney","position":4,"quotation":11,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2018-07-02"},{"id":"player_193411","lastname":"Belkebla","firstname":"Haris","position":3,"quotation":14,"ultraPosition":31,"club":"Brest","teamid":"862","joinDate":"2018-07-01"},{"id":"player_193417","lastname":"Lusamba","firstname":"Arnaud","position":3,"quotation":2,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2016-07-19"},{"id":"player_193537","lastname":"Cornette","firstname":"Quentin","position":4,"quotation":4,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2016-07-01"},{"id":"player_194624","lastname":"Valls","firstname":"Theo","position":3,"quotation":13,"ultraPosition":31,"club":"Nîmes","teamid":"2336","joinDate":"2014-07-01"},{"id":"player_195386","lastname":"Berthier","firstname":"Gregory","position":3,"quotation":5,"ultraPosition":32,"club":"Reims","teamid":"1423","joinDate":"2016-07-01"},{"id":"player_195982","lastname":"Vada","firstname":"Valentín","position":3,"quotation":9,"ultraPosition":32,"club":"Bordeaux","teamid":"140","joinDate":"2014-07-01"},{"id":"player_196391","lastname":"Kyei","firstname":"Grejohn","position":4,"quotation":13,"ultraPosition":40,"club":"Reims","teamid":"1423","joinDate":"2014-07-01"},{"id":"player_19670","lastname":"Perrin","firstname":"Loic","position":2,"quotation":15,"ultraPosition":20,"club":"Saint-Étienne","teamid":"152","joinDate":"2002-08-01"},{"id":"player_197017","lastname":"Junior Sambia","firstname":null,"position":3,"quotation":7,"ultraPosition":31,"club":"Montpellier","teamid":"147","joinDate":"2018-07-02"},{"id":"player_197022","lastname":"Cisse","firstname":"Ibrahim","position":2,"quotation":5,"ultraPosition":20,"club":"Angers","teamid":"2128","joinDate":"2018-07-09"},{"id":"player_19739","lastname":"Kawashima","firstname":"Eiji","position":1,"quotation":3,"ultraPosition":10,"club":"Strasbourg","teamid":"153","joinDate":"2018-08-29"},{"id":"player_198065","lastname":"Adama Traoré II","firstname":null,"position":3,"quotation":6,"ultraPosition":32,"club":"Monaco","teamid":"146","joinDate":"2015-07-10"},{"id":"player_199367","lastname":"Shamal","firstname":"Steve","position":3,"quotation":1,"ultraPosition":32,"club":"Reims","teamid":"1423","joinDate":"2017-08-10"},{"id":"player_199409","lastname":"Thiago Maia","firstname":null,"position":3,"quotation":11,"ultraPosition":31,"club":"Lille","teamid":"429","joinDate":"2017-07-17"},{"id":"player_199663","lastname":"Georgen","firstname":"Alec","position":2,"quotation":1,"ultraPosition":21,"club":"Paris","teamid":"149","joinDate":"2016-02-01"},{"id":"player_199665","lastname":"Boutobba","firstname":"Bilal","position":3,"quotation":1,"ultraPosition":32,"club":"Montpellier","teamid":"147","joinDate":"2018-09-21"},{"id":"player_199666","lastname":"Makengo","firstname":"Jean-Victor","position":3,"quotation":12,"ultraPosition":31,"club":"Toulouse","teamid":"427","joinDate":"2019-07-01"},{"id":"player_200666","lastname":"Miguel","firstname":"Florian","position":2,"quotation":8,"ultraPosition":21,"club":"Nîmes","teamid":"2336","joinDate":"2018-07-01"},{"id":"player_200671","lastname":"Depres","firstname":"Clement","position":4,"quotation":7,"ultraPosition":40,"club":"Nîmes","teamid":"2336","joinDate":"2014-11-20"},{"id":"player_200722","lastname":"Walongwa","firstname":"Anthony","position":2,"quotation":4,"ultraPosition":20,"club":"Nantes","teamid":"430","joinDate":"2014-07-01"},{"id":"player_200958","lastname":"Dioussé","firstname":"Assane","position":3,"quotation":5,"ultraPosition":31,"club":"Saint-Étienne","teamid":"152","joinDate":"2017-08-01"},{"id":"player_201057","lastname":"Kehrer","firstname":"Thilo","position":2,"quotation":16,"ultraPosition":21,"club":"Paris","teamid":"149","joinDate":"2018-08-16"},{"id":"player_201392","lastname":"Blin","firstname":"Alexis","position":3,"quotation":9,"ultraPosition":31,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_202459","lastname":"Gakpa","firstname":"Marvin","position":3,"quotation":10,"ultraPosition":32,"club":"Metz","teamid":"145","joinDate":"2018-07-01"},{"id":"player_202520","lastname":"Pape Cheikh","firstname":null,"position":3,"quotation":6,"ultraPosition":31,"club":"Lyon","teamid":"143","joinDate":"2017-08-29"},{"id":"player_202857","lastname":"Fulgini","firstname":"Angelo","position":3,"quotation":10,"ultraPosition":31,"club":"Angers","teamid":"2128","joinDate":"2017-07-06"},{"id":"player_202858","lastname":"Thioub","firstname":"Sada","position":4,"quotation":15,"ultraPosition":40,"club":"Angers","teamid":"2128","joinDate":"2019-07-23"},{"id":"player_203349","lastname":"Tousart","firstname":"Lucas","position":3,"quotation":10,"ultraPosition":31,"club":"Lyon","teamid":"143","joinDate":"2015-08-31"},{"id":"player_204123","lastname":"Jordan Siebatcheu","firstname":null,"position":4,"quotation":7,"ultraPosition":40,"club":"Rennes","teamid":"150","joinDate":"2018-07-01"},{"id":"player_204534","lastname":"Angban","firstname":"Victorien","position":3,"quotation":3,"ultraPosition":31,"club":"Metz","teamid":"145","joinDate":"2019-07-01"},{"id":"player_204715","lastname":"Poussin","firstname":"Gaetan","position":1,"quotation":1,"ultraPosition":10,"club":"Bordeaux","teamid":"140","joinDate":"2017-07-01"},{"id":"player_204719","lastname":"Basila","firstname":"Thomas","position":2,"quotation":7,"ultraPosition":20,"club":"Nantes","teamid":"430","joinDate":"2018-07-01"},{"id":"player_204727","lastname":"Sarr","firstname":"Malang","position":2,"quotation":13,"ultraPosition":20,"club":"Nice","teamid":"1395","joinDate":"2016-07-01"},{"id":"player_204741","lastname":"El Mokkedem","firstname":"Hakim","position":4,"quotation":1,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2018-07-01"},{"id":"player_204742","lastname":"Benrahou","firstname":"Yassin","position":3,"quotation":7,"ultraPosition":32,"club":"Bordeaux","teamid":"140","joinDate":"2018-07-01"},{"id":"player_205836","lastname":"Ghoddos","firstname":"Saman","position":4,"quotation":13,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2018-08-24"},{"id":"player_206340","lastname":"Ristic","firstname":"Mihailo","position":2,"quotation":7,"ultraPosition":21,"club":"Montpellier","teamid":"147","joinDate":"2019-01-12"},{"id":"player_20690","lastname":"Naldo","firstname":null,"position":2,"quotation":8,"ultraPosition":20,"club":"Monaco","teamid":"146","joinDate":"2019-01-03"},{"id":"player_206935","lastname":"Lemaitre","firstname":"Nicolas","position":1,"quotation":1,"ultraPosition":10,"club":"Reims","teamid":"1423","joinDate":"2015-01-01"},{"id":"player_208555","lastname":"Bessile","firstname":"Loic","position":2,"quotation":1,"ultraPosition":20,"club":"Toulouse","teamid":"427","joinDate":"2018-10-30"},{"id":"player_208556","lastname":"Maolida","firstname":"Myziane","position":4,"quotation":7,"ultraPosition":40,"club":"Nice","teamid":"1395","joinDate":"2018-08-13"},{"id":"player_208559","lastname":"N'Soki","firstname":"Stanley","position":3,"quotation":7,"ultraPosition":31,"club":"Paris","teamid":"149","joinDate":"2017-12-01"},{"id":"player_208560","lastname":"Mahou","firstname":"Hicham","position":3,"quotation":2,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2016-12-07"},{"id":"player_209035","lastname":"Panzo","firstname":"Jonathan","position":2,"quotation":1,"ultraPosition":20,"club":"Monaco","teamid":"146","joinDate":"2018-07-06"},{"id":"player_209218","lastname":"Bertaud","firstname":"Dimitry","position":1,"quotation":7,"ultraPosition":10,"club":"Montpellier","teamid":"147","joinDate":"2015-04-25"},{"id":"player_209330","lastname":"Bellanova","firstname":"Raoul","position":2,"quotation":3,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2019-01-30"},{"id":"player_210187","lastname":"Sarr","firstname":"Sidy","position":3,"quotation":4,"ultraPosition":31,"club":"Nîmes","teamid":"2336","joinDate":"2019-08-06"},{"id":"player_210228","lastname":"Jovanovic","firstname":"Vukasin","position":2,"quotation":12,"ultraPosition":20,"club":"Bordeaux","teamid":"140","joinDate":"2017-07-14"},{"id":"player_210456","lastname":"Doumbia","firstname":"Souleyman","position":2,"quotation":7,"ultraPosition":21,"club":"Rennes","teamid":"150","joinDate":"2019-01-15"},{"id":"player_210462","lastname":"Ibrahim Sangaré","firstname":null,"position":3,"quotation":12,"ultraPosition":31,"club":"Toulouse","teamid":"427","joinDate":"2016-07-05"},{"id":"player_210494","lastname":"Aguerd","firstname":"Nayef","position":2,"quotation":7,"ultraPosition":20,"club":"Dijon","teamid":"2130","joinDate":"2018-07-01"},{"id":"player_210932","lastname":"Jakubech","firstname":"Adam","position":1,"quotation":7,"ultraPosition":10,"club":"Lille","teamid":"429","joinDate":"2017-07-26"},{"id":"player_212325","lastname":"Lees-Melou","firstname":"Pierre","position":3,"quotation":15,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2017-06-19"},{"id":"player_212851","lastname":"Basic","firstname":"Toma","position":3,"quotation":7,"ultraPosition":31,"club":"Bordeaux","teamid":"140","joinDate":"2018-08-08"},{"id":"player_213199","lastname":"Descamps","firstname":"Remy","position":1,"quotation":1,"ultraPosition":10,"club":"Paris","teamid":"149","joinDate":"2015-07-01"},{"id":"player_213247","lastname":"Mancini","firstname":"Daniel","position":3,"quotation":6,"ultraPosition":32,"club":"Bordeaux","teamid":"140","joinDate":"2017-01-06"},{"id":"player_213965","lastname":"Lopez","firstname":"Maxime","position":3,"quotation":14,"ultraPosition":32,"club":"Marseille","teamid":"144","joinDate":"2010-07-01"},{"id":"player_214245","lastname":"Centonze","firstname":"Fabien","position":2,"quotation":10,"ultraPosition":21,"club":"Metz","teamid":"145","joinDate":"2019-06-11"},{"id":"player_214254","lastname":"Diallo","firstname":"Habib","position":4,"quotation":14,"ultraPosition":40,"club":"Metz","teamid":"145","joinDate":"2015-07-01"},{"id":"player_214472","lastname":"Aït Bennasser","firstname":"Youssef","position":3,"quotation":12,"ultraPosition":31,"club":"Monaco","teamid":"146","joinDate":"2016-07-01"},{"id":"player_215046","lastname":"Kwateng","firstname":"Enock","position":2,"quotation":9,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2019-07-01"},{"id":"player_215047","lastname":"Lassana Coulibaly","firstname":null,"position":3,"quotation":6,"ultraPosition":31,"club":"Angers","teamid":"2128","joinDate":"2017-07-06"},{"id":"player_215710","lastname":"Kiki","firstname":"Enangon David","position":2,"quotation":2,"ultraPosition":21,"club":"Brest","teamid":"862","joinDate":"2017-08-21"},{"id":"player_215755","lastname":"Poha","firstname":"Denis","position":3,"quotation":7,"ultraPosition":31,"club":"Rennes","teamid":"150","joinDate":"2015-07-01"},{"id":"player_216137","lastname":"Stojanovski","firstname":"Vlatko","position":4,"quotation":5,"ultraPosition":40,"club":"Nîmes","teamid":"2336","joinDate":"2019-07-03"},{"id":"player_216610","lastname":"Olliero","firstname":"Alexandre","position":1,"quotation":2,"ultraPosition":10,"club":"Nantes","teamid":"430","joinDate":"2015-07-01"},{"id":"player_217119","lastname":"Monteiro","firstname":"Jamiro","position":3,"quotation":6,"ultraPosition":32,"club":"Metz","teamid":"145","joinDate":"2018-07-28"},{"id":"player_217486","lastname":"Adama Traore I","firstname":null,"position":4,"quotation":2,"ultraPosition":40,"club":"Metz","teamid":"145","joinDate":"2018-08-20"},{"id":"player_217597","lastname":"Cafaro","firstname":"Mathieu","position":3,"quotation":15,"ultraPosition":32,"club":"Reims","teamid":"1423","joinDate":"2017-07-01"},{"id":"player_217872","lastname":"Charles Traoré","firstname":null,"position":2,"quotation":8,"ultraPosition":21,"club":"Nantes","teamid":"430","joinDate":"2018-08-31"},{"id":"player_217992","lastname":"Gelin","firstname":"Jeremy","position":2,"quotation":8,"ultraPosition":20,"club":"Rennes","teamid":"150","joinDate":"2014-07-01"},{"id":"player_218116","lastname":"Kitala","firstname":"Yann","position":4,"quotation":3,"ultraPosition":40,"club":"Lyon","teamid":"143","joinDate":"2019-07-01"},{"id":"player_218240","lastname":"Fofana","firstname":"Mamadou","position":2,"quotation":5,"ultraPosition":20,"club":"Metz","teamid":"145","joinDate":"2018-07-05"},{"id":"player_218524","lastname":"Keita","firstname":"Jules","position":4,"quotation":8,"ultraPosition":40,"club":"Dijon","teamid":"2130","joinDate":"2018-07-12"},{"id":"player_218666","lastname":"Alexis Alegue","firstname":null,"position":3,"quotation":4,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2015-06-01"},{"id":"player_218796","lastname":"N'Doram","firstname":"Kevin","position":2,"quotation":11,"ultraPosition":20,"club":"Metz","teamid":"145","joinDate":"2019-07-01"},{"id":"player_219230","lastname":"Gil Dias","firstname":null,"position":3,"quotation":2,"ultraPosition":32,"club":"Monaco","teamid":"146","joinDate":"2015-07-01"},{"id":"player_219292","lastname":"Tchouameni","firstname":"Aurelien","position":3,"quotation":12,"ultraPosition":31,"club":"Bordeaux","teamid":"140","joinDate":"2018-01-01"},{"id":"player_219296","lastname":"Caqueret","firstname":"Maxence","position":3,"quotation":1,"ultraPosition":31,"club":"Lyon","teamid":"143","joinDate":"2018-07-20"},{"id":"player_219873","lastname":"Del Castillo","firstname":"Romain","position":3,"quotation":9,"ultraPosition":32,"club":"Rennes","teamid":"150","joinDate":"2018-07-01"},{"id":"player_220494","lastname":"Boisgard","firstname":"Quentin","position":3,"quotation":3,"ultraPosition":32,"club":"Toulouse","teamid":"427","joinDate":"2015-12-01"},{"id":"player_220960","lastname":"Dibassy","firstname":"Bakaye","position":2,"quotation":11,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2016-07-05"},{"id":"player_221024","lastname":"N'Goma","firstname":"Ferris","position":3,"quotation":5,"ultraPosition":31,"club":"Brest","teamid":"862","joinDate":"2018-07-01"},{"id":"player_221987","lastname":"Udol","firstname":"Matthieu","position":2,"quotation":1,"ultraPosition":21,"club":"Metz","teamid":"145","joinDate":"2015-07-01"},{"id":"player_223140","lastname":"Pereira Lage","firstname":null,"position":3,"quotation":7,"ultraPosition":32,"club":"Angers","teamid":"2128","joinDate":"2019-07-30"},{"id":"player_223393","lastname":"Timite","firstname":"Cheick","position":3,"quotation":13,"ultraPosition":32,"club":"Amiens","teamid":"1430","joinDate":"2018-07-01"},{"id":"player_225183","lastname":"Guclu","firstname":"Metehan","position":4,"quotation":1,"ultraPosition":40,"club":"Paris","teamid":"149","joinDate":"2018-07-01"},{"id":"player_225702","lastname":"Kalu","firstname":"Samuel","position":4,"quotation":11,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2018-08-08"},{"id":"player_225904","lastname":"Essende","firstname":"Samuel","position":4,"quotation":1,"ultraPosition":40,"club":"Paris","teamid":"149","joinDate":"2019-06-01"},{"id":"player_225905","lastname":"Kanga","firstname":"Wilfried","position":4,"quotation":9,"ultraPosition":40,"club":"Angers","teamid":"2128","joinDate":"2017-07-04"},{"id":"player_225997","lastname":"Alakouch","firstname":"Sofiane","position":2,"quotation":10,"ultraPosition":21,"club":"Nîmes","teamid":"2336","joinDate":"2015-07-01"},{"id":"player_226194","lastname":"Grandsir","firstname":"Samuel","position":4,"quotation":15,"ultraPosition":40,"club":"Brest","teamid":"862","joinDate":"2019-07-23"},{"id":"player_226451","lastname":"Sissoko","firstname":"Ibrahima","position":3,"quotation":10,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2018-07-01"},{"id":"player_226946","lastname":"Mroivili","firstname":"Raouf","position":3,"quotation":1,"ultraPosition":31,"club":"Metz","teamid":"145","joinDate":"2018-02-12"},{"id":"player_226949","lastname":"Guitane","firstname":"Rafik","position":3,"quotation":3,"ultraPosition":32,"club":"Rennes","teamid":"150","joinDate":"2018-01-30"},{"id":"player_228286","lastname":"Mendy","firstname":"Edouard","position":1,"quotation":22,"ultraPosition":10,"club":"Rennes","teamid":"150","joinDate":"2019-08-06"},{"id":"player_228289","lastname":"Lefort","firstname":"Jordan","position":2,"quotation":6,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2012-07-01"},{"id":"player_228321","lastname":"Sacko","firstname":"Ihsan","position":3,"quotation":7,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2018-01-27"},{"id":"player_228361","lastname":"Dolly","firstname":"Keagan","position":3,"quotation":4,"ultraPosition":32,"club":"Montpellier","teamid":"147","joinDate":"2017-01-27"},{"id":"player_230443","lastname":"Cabit","firstname":"Manuel","position":2,"quotation":4,"ultraPosition":21,"club":"Metz","teamid":"145","joinDate":"2019-06-13"},{"id":"player_230444","lastname":"Banaziak","firstname":"Gauthier","position":1,"quotation":1,"ultraPosition":10,"club":"Amiens","teamid":"1430","joinDate":"2016-07-01"},{"id":"player_231057","lastname":"Bellegarde","firstname":"Jean-Ricner","position":3,"quotation":10,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2019-07-03"},{"id":"player_231373","lastname":"Mamilonne","firstname":"Yannick","position":4,"quotation":5,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2016-08-01"},{"id":"player_231875","lastname":"Diouf","firstname":"Yehvann","position":1,"quotation":1,"ultraPosition":10,"club":"Reims","teamid":"1423","joinDate":"2019-07-01"},{"id":"player_232197","lastname":"Burner","firstname":"Patrick","position":2,"quotation":7,"ultraPosition":21,"club":"Nice","teamid":"1395","joinDate":"2016-07-01"},{"id":"player_232240","lastname":"Caci","firstname":"Anthony","position":3,"quotation":9,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2016-08-01"},{"id":"player_233469","lastname":"Basin","firstname":"Nicolas","position":2,"quotation":4,"ultraPosition":21,"club":"Metz","teamid":"145","joinDate":"2016-07-01"},{"id":"player_233498","lastname":"Marcel","firstname":"Vincent","position":3,"quotation":2,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2016-07-01"},{"id":"player_240143","lastname":"Diallo","firstname":"Ibrahima","position":3,"quotation":9,"ultraPosition":31,"club":"Brest","teamid":"862","joinDate":"2019-07-05"},{"id":"player_240145","lastname":"Cardona","firstname":"Irvin","position":4,"quotation":1,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2016-07-01"},{"id":"player_240149","lastname":"Sylla","firstname":"Moussa","position":4,"quotation":8,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2017-07-01"},{"id":"player_242878","lastname":"Bajic","firstname":"Stefan","position":1,"quotation":1,"ultraPosition":10,"club":"Saint-Étienne","teamid":"152","joinDate":"2018-05-02"},{"id":"player_242879","lastname":"Dietsch","firstname":"Guillaume","position":1,"quotation":1,"ultraPosition":10,"club":"Metz","teamid":"145","joinDate":"2019-01-04"},{"id":"player_242880","lastname":"Badiashile Mukinayi","firstname":"Benoit","position":2,"quotation":10,"ultraPosition":20,"club":"Monaco","teamid":"146","joinDate":"2018-10-26"},{"id":"player_242882","lastname":"Diakite","firstname":"Bafode","position":2,"quotation":8,"ultraPosition":20,"club":"Toulouse","teamid":"427","joinDate":"2018-10-30"},{"id":"player_242885","lastname":"Mbe Soh","firstname":"Loïc","position":2,"quotation":3,"ultraPosition":20,"club":"Paris","teamid":"149","joinDate":"2018-07-20"},{"id":"player_242887","lastname":"Kephren Thuram","firstname":null,"position":3,"quotation":1,"ultraPosition":31,"club":"Nice","teamid":"1395","joinDate":"2019-07-01"},{"id":"player_242890","lastname":"Dabo","firstname":"Abdoulaye","position":3,"quotation":3,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2018-07-01"},{"id":"player_242893","lastname":"Gboho","firstname":"Yann","position":3,"quotation":3,"ultraPosition":32,"club":"Rennes","teamid":"150","joinDate":"2018-08-10"},{"id":"player_242894","lastname":"Geubbels","firstname":"Willem","position":4,"quotation":2,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2018-06-19"},{"id":"player_242896","lastname":"Taoui","firstname":"Adil","position":4,"quotation":1,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2018-07-01"},{"id":"player_243741","lastname":"Magnetti","firstname":"Hugo","position":3,"quotation":1,"ultraPosition":31,"club":"Brest","teamid":"862","joinDate":"2018-07-01"},{"id":"player_244136","lastname":"Lionel Dias","firstname":"Lucas","position":1,"quotation":1,"ultraPosition":10,"club":"Nîmes","teamid":"2336","joinDate":"2016-07-01"},{"id":"player_244182","lastname":"Youssouf","firstname":"Zaydou","position":3,"quotation":8,"ultraPosition":32,"club":"Saint-Étienne","teamid":"152","joinDate":"2019-07-05"},{"id":"player_244560","lastname":"Perraud","firstname":"Romain","position":2,"quotation":9,"ultraPosition":21,"club":"Brest","teamid":"862","joinDate":"2019-07-16"},{"id":"player_244642","lastname":"Konan","firstname":"Ghislain","position":2,"quotation":5,"ultraPosition":21,"club":"Reims","teamid":"1423","joinDate":"2018-07-01"},{"id":"player_244701","lastname":"Rogel","firstname":"Agustín","position":2,"quotation":10,"ultraPosition":20,"club":"Toulouse","teamid":"427","joinDate":"2019-07-19"},{"id":"player_244754","lastname":"Diallo","firstname":"Namakoro","position":2,"quotation":1,"ultraPosition":21,"club":"Rennes","teamid":"150","joinDate":"2016-07-01"},{"id":"player_245491","lastname":"Zemzemi","firstname":"Moataz","position":3,"quotation":3,"ultraPosition":32,"club":"Strasbourg","teamid":"153","joinDate":"2018-01-31"},{"id":"player_245496","lastname":"Srarfi","firstname":"Bassem","position":3,"quotation":9,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2017-01-31"},{"id":"player_245742","lastname":"Nade","firstname":"Mickael","position":2,"quotation":1,"ultraPosition":20,"club":"Saint-Étienne","teamid":"152","joinDate":"2017-01-01"},{"id":"player_245918","lastname":"Denkey","firstname":"Ahouekè","position":4,"quotation":5,"ultraPosition":40,"club":"Nîmes","teamid":"2336","joinDate":"2017-01-01"},{"id":"player_247385","lastname":"Racioppi","firstname":"Anthony","position":1,"quotation":1,"ultraPosition":10,"club":"Lyon","teamid":"143","joinDate":"2018-05-03"},{"id":"player_247629","lastname":"Djalo","firstname":"Tiago","position":2,"quotation":4,"ultraPosition":20,"club":"Lille","teamid":"429","joinDate":"2019-08-01"},{"id":"player_247693","lastname":"Kolo Muani","firstname":"Randal","position":3,"quotation":4,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2016-07-01"},{"id":"player_247957","lastname":"Bakker","firstname":"Mitchel","position":2,"quotation":5,"ultraPosition":21,"club":"Paris","teamid":"149","joinDate":"2019-07-01"},{"id":"player_250333","lastname":"Masson","firstname":"Julien","position":3,"quotation":2,"ultraPosition":31,"club":"Angers","teamid":"2128","joinDate":"2019-07-12"},{"id":"player_250588","lastname":"Ben Amar","firstname":"Sami","position":4,"quotation":1,"ultraPosition":40,"club":"Nîmes","teamid":"2336","joinDate":"2018-01-22"},{"id":"player_26896","lastname":"Bodmer","firstname":"Mathieu","position":2,"quotation":7,"ultraPosition":20,"club":"Amiens","teamid":"1430","joinDate":"2017-07-01"},{"id":"player_32367","lastname":"Romao","firstname":"Jacques-Alaixys","position":3,"quotation":16,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2018-07-24"},{"id":"player_37758","lastname":"Baysse","firstname":"Paul","position":2,"quotation":8,"ultraPosition":20,"club":"Bordeaux","teamid":"140","joinDate":"2018-01-10"},{"id":"player_37765","lastname":"Cohade","firstname":"Renaud","position":3,"quotation":13,"ultraPosition":31,"club":"Metz","teamid":"145","joinDate":"2016-07-07"},{"id":"player_37776","lastname":"Baal","firstname":"Ludovic","position":2,"quotation":2,"ultraPosition":21,"club":"Brest","teamid":"862","joinDate":"2019-07-30"},{"id":"player_37836","lastname":"Salin","firstname":"Romain","position":1,"quotation":6,"ultraPosition":10,"club":"Rennes","teamid":"150","joinDate":"2019-07-01"},{"id":"player_38261","lastname":"Monnet-Paquet","firstname":"Kévin","position":4,"quotation":5,"ultraPosition":40,"club":"Saint-Étienne","teamid":"152","joinDate":"2014-07-01"},{"id":"player_38265","lastname":"Jallet","firstname":"Christophe","position":2,"quotation":9,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2019-07-23"},{"id":"player_40511","lastname":"Petric","firstname":"Denis","position":1,"quotation":8,"ultraPosition":10,"club":"Nantes","teamid":"430","joinDate":"2019-08-05"},{"id":"player_40815","lastname":"Vainqueur","firstname":"William","position":3,"quotation":10,"ultraPosition":31,"club":"Toulouse","teamid":"427","joinDate":"2019-07-01"},{"id":"player_40833","lastname":"Pied","firstname":"Jérémy","position":2,"quotation":8,"ultraPosition":21,"club":"Lille","teamid":"429","joinDate":"2018-08-31"},{"id":"player_41795","lastname":"Rami","firstname":"Adil","position":2,"quotation":5,"ultraPosition":20,"club":"Marseille","teamid":"144","joinDate":"2017-07-11"},{"id":"player_422163","lastname":"Okou","firstname":"Teddy","position":4,"quotation":1,"ultraPosition":40,"club":"Lille","teamid":"429","joinDate":"2018-07-15"},{"id":"player_422248","lastname":"Soula","firstname":"Mazire","position":4,"quotation":1,"ultraPosition":40,"club":"Angers","teamid":"2128","joinDate":"2019-03-11"},{"id":"player_423955","lastname":"Osei Yaw","firstname":"Derick","position":4,"quotation":1,"ultraPosition":40,"club":"Brest","teamid":"862","joinDate":"2019-01-30"},{"id":"player_42766","lastname":"Gurtner","firstname":"Régis","position":1,"quotation":20,"ultraPosition":10,"club":"Amiens","teamid":"1430","joinDate":"2016-07-01"},{"id":"player_428989","lastname":"Cozza","firstname":"Nicolas","position":2,"quotation":6,"ultraPosition":21,"club":"Montpellier","teamid":"147","joinDate":"2017-07-01"},{"id":"player_429188","lastname":"Jallow","firstname":"Ablie","position":3,"quotation":3,"ultraPosition":32,"club":"Metz","teamid":"145","joinDate":"2017-07-01"},{"id":"player_429234","lastname":"Talal","firstname":"Madih","position":3,"quotation":2,"ultraPosition":31,"club":"Amiens","teamid":"1430","joinDate":"2017-07-01"},{"id":"player_430510","lastname":"Mama Baldé","firstname":null,"position":3,"quotation":12,"ultraPosition":32,"club":"Dijon","teamid":"2130","joinDate":"2019-07-01"},{"id":"player_432489","lastname":"Moutoussamy","firstname":"Samuel","position":3,"quotation":14,"ultraPosition":31,"club":"Nantes","teamid":"430","joinDate":"2017-08-06"},{"id":"player_432649","lastname":"Solet","firstname":"Oumar","position":2,"quotation":1,"ultraPosition":20,"club":"Lyon","teamid":"143","joinDate":"2018-07-02"},{"id":"player_432662","lastname":"Sissoko","firstname":"Sambou","position":2,"quotation":6,"ultraPosition":21,"club":"Reims","teamid":"1423","joinDate":"2019-01-30"},{"id":"player_433149","lastname":"Ba","firstname":"Abou","position":3,"quotation":2,"ultraPosition":31,"club":"Nantes","teamid":"430","joinDate":"2019-07-01"},{"id":"player_433312","lastname":"Munetsi","firstname":"Marshall","position":3,"quotation":5,"ultraPosition":31,"club":"Reims","teamid":"1423","joinDate":"2019-07-01"},{"id":"player_433640","lastname":"Zohi","firstname":"Kévin","position":3,"quotation":7,"ultraPosition":32,"club":"Strasbourg","teamid":"153","joinDate":"2017-08-01"},{"id":"player_433731","lastname":"Buades","firstname":"Lucas","position":3,"quotation":1,"ultraPosition":32,"club":"Nîmes","teamid":"2336","joinDate":"2017-07-01"},{"id":"player_433771","lastname":"Ganago","firstname":"Ignatius","position":4,"quotation":9,"ultraPosition":40,"club":"Nice","teamid":"1395","joinDate":"2017-07-01"},{"id":"player_435615","lastname":"Sainte Luce","firstname":"Theo","position":3,"quotation":1,"ultraPosition":31,"club":"Nîmes","teamid":"2336","joinDate":"2017-09-08"},{"id":"player_435731","lastname":"Nyamsi","firstname":"Gerzino","position":2,"quotation":7,"ultraPosition":20,"club":"Rennes","teamid":"150","joinDate":"2017-07-01"},{"id":"player_435973","lastname":"Foster","firstname":"Lyle","position":4,"quotation":1,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2019-03-14"},{"id":"player_436662","lastname":"Verite","firstname":"Benjamin","position":3,"quotation":1,"ultraPosition":31,"club":"Lille","teamid":"429","joinDate":"2017-07-01"},{"id":"player_437204","lastname":"Sissoko","firstname":"Nelson","position":3,"quotation":1,"ultraPosition":31,"club":"Saint-Étienne","teamid":"152","joinDate":"2019-07-01"},{"id":"player_437501","lastname":"Pelmard","firstname":"Andy","position":2,"quotation":1,"ultraPosition":20,"club":"Nice","teamid":"1395","joinDate":"2018-01-20"},{"id":"player_437504","lastname":"Adli","firstname":"Yacine","position":3,"quotation":7,"ultraPosition":32,"club":"Bordeaux","teamid":"140","joinDate":"2019-01-31"},{"id":"player_437505","lastname":"Isidor","firstname":"Wilson","position":4,"quotation":1,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2018-07-01"},{"id":"player_437721","lastname":"Cibois","firstname":"Sebastien","position":1,"quotation":2,"ultraPosition":10,"club":"Paris","teamid":"149","joinDate":"2017-07-01"},{"id":"player_437724","lastname":"Postolachi","firstname":"Virgiliu","position":4,"quotation":1,"ultraPosition":40,"club":"Lille","teamid":"429","joinDate":"2019-07-18"},{"id":"player_437726","lastname":"Zagre","firstname":"Arthur","position":2,"quotation":1,"ultraPosition":21,"club":"Paris","teamid":"149","joinDate":"2018-07-20"},{"id":"player_437754","lastname":"Gouano","firstname":"Gobe","position":4,"quotation":1,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2018-11-04"},{"id":"player_437950","lastname":"Khalid","firstname":"Driss","position":4,"quotation":1,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2017-09-23"},{"id":"player_438015","lastname":"Pintor","firstname":"Lenny","position":4,"quotation":4,"ultraPosition":40,"club":"Lyon","teamid":"143","joinDate":"2018-08-31"},{"id":"player_439122","lastname":"Guessoum","firstname":"Kelyan","position":3,"quotation":1,"ultraPosition":31,"club":"Nîmes","teamid":"2336","joinDate":"2017-10-12"},{"id":"player_439205","lastname":"Carrique","firstname":"Thomas","position":2,"quotation":2,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2017-10-10"},{"id":"player_440058","lastname":"Clementia","firstname":"Yannis","position":1,"quotation":1,"ultraPosition":10,"club":"Nice","teamid":"1395","joinDate":"2017-07-01"},{"id":"player_440114","lastname":"Ngom","firstname":"Santy","position":4,"quotation":8,"ultraPosition":40,"club":"Nantes","teamid":"430","joinDate":"2017-05-23"},{"id":"player_440656","lastname":"Pierre","firstname":"Leverton","position":4,"quotation":1,"ultraPosition":40,"club":"Metz","teamid":"145","joinDate":"2019-03-30"},{"id":"player_441240","lastname":"Faivre","firstname":"Romain","position":3,"quotation":3,"ultraPosition":32,"club":"Monaco","teamid":"146","joinDate":"2017-07-01"},{"id":"player_441575","lastname":"Diaby","firstname":"Mohamed Lamine","position":4,"quotation":8,"ultraPosition":40,"club":"Nice","teamid":"1395","joinDate":"2017-12-06"},{"id":"player_441576","lastname":"Rocchia","firstname":"Christopher","position":2,"quotation":4,"ultraPosition":21,"club":"Marseille","teamid":"144","joinDate":"2017-12-01"},{"id":"player_442264","lastname":"Camara","firstname":"Mahdi","position":3,"quotation":1,"ultraPosition":31,"club":"Saint-Étienne","teamid":"152","joinDate":"2017-12-01"},{"id":"player_442307","lastname":"Eneme","firstname":"Ulrich","position":3,"quotation":3,"ultraPosition":32,"club":"Amiens","teamid":"1430","joinDate":"2019-07-02"},{"id":"player_444151","lastname":"Jean Lucas","firstname":null,"position":3,"quotation":5,"ultraPosition":31,"club":"Lyon","teamid":"143","joinDate":"2019-07-01"},{"id":"player_444204","lastname":"Fofana","firstname":"Boubacar","position":4,"quotation":1,"ultraPosition":40,"club":"Lyon","teamid":"143","joinDate":"2019-07-01"},{"id":"player_444463","lastname":"Fofana","firstname":"Wesley","position":3,"quotation":1,"ultraPosition":31,"club":"Saint-Étienne","teamid":"152","joinDate":"2017-07-01"},{"id":"player_44488","lastname":"Yanga-Mbiwa","firstname":"Mapou","position":2,"quotation":3,"ultraPosition":20,"club":"Lyon","teamid":"143","joinDate":"2015-08-15"},{"id":"player_446029","lastname":"Ouattara","firstname":"Abou","position":4,"quotation":1,"ultraPosition":40,"club":"Lille","teamid":"429","joinDate":"2019-07-01"},{"id":"player_447389","lastname":"El Melali","firstname":"Farid","position":3,"quotation":9,"ultraPosition":32,"club":"Angers","teamid":"2128","joinDate":"2018-08-09"},{"id":"player_447431","lastname":"Show","firstname":null,"position":3,"quotation":4,"ultraPosition":31,"club":"Lille","teamid":"429","joinDate":"2019-07-16"},{"id":"player_447579","lastname":"Lahne","firstname":"Jack","position":4,"quotation":3,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_448514","lastname":"Ait Nouri","firstname":"Rayan","position":2,"quotation":3,"ultraPosition":21,"club":"Angers","teamid":"2128","joinDate":"2018-04-06"},{"id":"player_44898","lastname":"Tatarusanu","firstname":"Ciprian","position":1,"quotation":10,"ultraPosition":10,"club":"Lyon","teamid":"143","joinDate":"2019-07-01"},{"id":"player_449431","lastname":"Lauriente","firstname":"Armand","position":3,"quotation":4,"ultraPosition":32,"club":"Rennes","teamid":"150","joinDate":"2018-04-01"},{"id":"player_449718","lastname":"Loiodice","firstname":"Enzo","position":3,"quotation":6,"ultraPosition":31,"club":"Dijon","teamid":"2130","joinDate":"2017-07-01"},{"id":"player_45032","lastname":"Dreyer","firstname":"Matthieu","position":1,"quotation":7,"ultraPosition":10,"club":"Amiens","teamid":"1430","joinDate":"2018-07-01"},{"id":"player_45076","lastname":"Koné","firstname":"Lamine","position":2,"quotation":10,"ultraPosition":20,"club":"Strasbourg","teamid":"153","joinDate":"2019-07-01"},{"id":"player_451005","lastname":"Barbet","firstname":"Théo","position":2,"quotation":1,"ultraPosition":20,"club":"Dijon","teamid":"2130","joinDate":"2018-05-11"},{"id":"player_454964","lastname":"Coulibaly","firstname":"Senou","position":2,"quotation":5,"ultraPosition":20,"club":"Dijon","teamid":"2130","joinDate":"2018-06-12"},{"id":"player_456194","lastname":"Kaiboue","firstname":"Kylian","position":3,"quotation":1,"ultraPosition":31,"club":"Montpellier","teamid":"147","joinDate":"2018-07-01"},{"id":"player_456300","lastname":"Perrin","firstname":"Lucas","position":2,"quotation":1,"ultraPosition":20,"club":"Marseille","teamid":"144","joinDate":"2018-07-01"},{"id":"player_456355","lastname":"Ntumba","firstname":"Lévi","position":1,"quotation":1,"ultraPosition":10,"club":"Dijon","teamid":"2130","joinDate":"2018-07-01"},{"id":"player_457234","lastname":"Diarra","firstname":"Ibrahim","position":4,"quotation":1,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2018-07-01"},{"id":"player_457235","lastname":"Nilor","firstname":"Michael","position":4,"quotation":1,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2018-07-01"},{"id":"player_458250","lastname":"Dagba","firstname":"Colin","position":2,"quotation":5,"ultraPosition":21,"club":"Paris","teamid":"149","joinDate":"2018-07-20"},{"id":"player_458345","lastname":"Sabaly","firstname":"Cheick Tidiane","position":4,"quotation":1,"ultraPosition":40,"club":"Metz","teamid":"145","joinDate":"2018-07-01"},{"id":"player_460267","lastname":"Diop","firstname":"Sofiane","position":3,"quotation":7,"ultraPosition":32,"club":"Monaco","teamid":"146","joinDate":"2018-06-29"},{"id":"player_461397","lastname":"Chabrolle","firstname":"Florian","position":3,"quotation":1,"ultraPosition":32,"club":"Marseille","teamid":"144","joinDate":"2018-07-01"},{"id":"player_461415","lastname":"Gendrey","firstname":"Valentin","position":2,"quotation":1,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2018-07-01"},{"id":"player_461418","lastname":"Sy","firstname":"Sanasi","position":2,"quotation":5,"ultraPosition":21,"club":"Amiens","teamid":"1430","joinDate":"2018-07-01"},{"id":"player_461428","lastname":"Ngando","firstname":"Jean-Claude","position":3,"quotation":1,"ultraPosition":32,"club":"Amiens","teamid":"1430","joinDate":"2018-07-01"},{"id":"player_461833","lastname":"Zekaj","firstname":"Arton","position":3,"quotation":3,"ultraPosition":31,"club":"Lille","teamid":"429","joinDate":"2018-07-01"},{"id":"player_461840","lastname":"Bahanack","firstname":"Patrick","position":2,"quotation":1,"ultraPosition":20,"club":"Reims","teamid":"1423","joinDate":"2018-07-01"},{"id":"player_461910","lastname":"Simakan","firstname":"Mohamed","position":2,"quotation":1,"ultraPosition":20,"club":"Strasbourg","teamid":"153","joinDate":"2018-07-01"},{"id":"player_461913","lastname":"Fofana","firstname":"Youssouf","position":3,"quotation":9,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2018-07-01"},{"id":"player_463067","lastname":"Rutter","firstname":"Georginio","position":3,"quotation":1,"ultraPosition":32,"club":"Rennes","teamid":"150","joinDate":"2018-07-01"},{"id":"player_46345","lastname":"El Ghanassy","firstname":"Yassine","position":3,"quotation":9,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2017-08-17"},{"id":"player_464192","lastname":"Pinson","firstname":"Virgile","position":4,"quotation":3,"ultraPosition":40,"club":"Reims","teamid":"1423","joinDate":"2018-09-01"},{"id":"player_465057","lastname":"Vermot","firstname":"Théo","position":1,"quotation":1,"ultraPosition":10,"club":"Saint-Étienne","teamid":"152","joinDate":"2018-08-22"},{"id":"player_465151","lastname":"Benkhedim","firstname":"Bilal","position":3,"quotation":1,"ultraPosition":32,"club":"Saint-Étienne","teamid":"152","joinDate":"2019-01-05"},{"id":"player_465203","lastname":"Pedro Brazao","firstname":null,"position":3,"quotation":1,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2019-04-20"},{"id":"player_465299","lastname":"Mancini","firstname":"Anthony","position":3,"quotation":1,"ultraPosition":32,"club":"Angers","teamid":"2128","joinDate":"2018-08-01"},{"id":"player_465540","lastname":"Deyonge","firstname":"Heritier","position":2,"quotation":2,"ultraPosition":21,"club":"Lyon","teamid":"143","joinDate":"2019-07-01"},{"id":"player_465691","lastname":"Kouassi","firstname":"Nianzou","position":2,"quotation":1,"ultraPosition":20,"club":"Paris","teamid":"149","joinDate":"2019-07-15"},{"id":"player_466043","lastname":"Thomas","firstname":"Titouan","position":3,"quotation":1,"ultraPosition":31,"club":"Lyon","teamid":"143","joinDate":"2019-07-01"},{"id":"player_468430","lastname":"Ndiaye","firstname":"Ousseynou","position":3,"quotation":1,"ultraPosition":32,"club":"Lyon","teamid":"143","joinDate":"2018-07-01"},{"id":"player_468489","lastname":"Sidibe","firstname":"Kalidou","position":3,"quotation":8,"ultraPosition":31,"club":"Toulouse","teamid":"427","joinDate":"2018-10-19"},{"id":"player_469192","lastname":"Youan","firstname":"Thody Elie","position":4,"quotation":2,"ultraPosition":40,"club":"Nantes","teamid":"430","joinDate":"2018-10-29"},{"id":"player_469204","lastname":"Sylvestre","firstname":"Eddy","position":3,"quotation":7,"ultraPosition":32,"club":"Nice","teamid":"1395","joinDate":"2018-10-30"},{"id":"player_469318","lastname":"Mouanga","firstname":"Kevin","position":2,"quotation":1,"ultraPosition":20,"club":"Angers","teamid":"2128","joinDate":"2018-10-30"},{"id":"player_469323","lastname":"N'Goumou Minpole","firstname":"Nathan","position":3,"quotation":12,"ultraPosition":32,"club":"Toulouse","teamid":"427","joinDate":"2018-10-30"},{"id":"player_471437","lastname":"Philiponeau","firstname":"Alexandre","position":3,"quotation":1,"ultraPosition":31,"club":"Marseille","teamid":"144","joinDate":"2018-11-28"},{"id":"player_471471","lastname":"Louza","firstname":"Imran","position":3,"quotation":1,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2018-11-29"},{"id":"player_471924","lastname":"Carvalho","firstname":"Matis","position":1,"quotation":1,"ultraPosition":10,"club":"Montpellier","teamid":"147","joinDate":"2019-07-01"},{"id":"player_472778","lastname":"Abi","firstname":"Charles Nathan","position":4,"quotation":2,"ultraPosition":40,"club":"Saint-Étienne","teamid":"152","joinDate":"2018-12-15"},{"id":"player_473550","lastname":"Soumaré","firstname":"Bryan","position":3,"quotation":1,"ultraPosition":32,"club":"Dijon","teamid":"2130","joinDate":"2019-07-01"},{"id":"player_474354","lastname":"Niasse","firstname":"Cheikh","position":2,"quotation":1,"ultraPosition":20,"club":"Lille","teamid":"429","joinDate":"2019-01-06"},{"id":"player_475561","lastname":"Camavinga","firstname":"Eduardo","position":3,"quotation":9,"ultraPosition":31,"club":"Rennes","teamid":"150","joinDate":"2019-01-19"},{"id":"player_475767","lastname":"Kone","firstname":"Kouadio","position":3,"quotation":2,"ultraPosition":31,"club":"Toulouse","teamid":"427","joinDate":"2019-01-20"},{"id":"player_477085","lastname":"Wade","firstname":"Paul","position":3,"quotation":1,"ultraPosition":31,"club":"Nice","teamid":"1395","joinDate":"2019-02-01"},{"id":"player_477411","lastname":"Homawoo","firstname":"Josué","position":2,"quotation":1,"ultraPosition":20,"club":"Nantes","teamid":"430","joinDate":"2019-02-15"},{"id":"player_481616","lastname":"Boey","firstname":"Sacha","position":2,"quotation":3,"ultraPosition":21,"club":"Rennes","teamid":"150","joinDate":"2019-03-28"},{"id":"player_481667","lastname":"Lottin","firstname":"Albert-Nicolas","position":3,"quotation":1,"ultraPosition":31,"club":"Bordeaux","teamid":"140","joinDate":"2019-03-30"},{"id":"player_482549","lastname":"Lauray","firstname":"Alexandre","position":2,"quotation":3,"ultraPosition":20,"club":"Bordeaux","teamid":"140","joinDate":"2019-04-13"},{"id":"player_485341","lastname":"Tokpa","firstname":"Darell","position":4,"quotation":1,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_486792","lastname":"Ndilu","firstname":"Bridge","position":4,"quotation":5,"ultraPosition":40,"club":"Nantes","teamid":"430","joinDate":"2019-08-05"},{"id":"player_486847","lastname":"Cisse","firstname":"Ibrahim","position":2,"quotation":3,"ultraPosition":20,"club":"Nice","teamid":"1395","joinDate":"2019-07-06"},{"id":"player_487352","lastname":"Agouzoul","firstname":"Saad","position":2,"quotation":6,"ultraPosition":20,"club":"Lille","teamid":"429","joinDate":"2019-07-12"},{"id":"player_48768","lastname":"Sankharé","firstname":"Younousse","position":3,"quotation":7,"ultraPosition":31,"club":"Bordeaux","teamid":"140","joinDate":"2017-01-31"},{"id":"player_488336","lastname":"Botella","firstname":"Ivann","position":4,"quotation":4,"ultraPosition":40,"club":"Strasbourg","teamid":"153","joinDate":"2019-07-01"},{"id":"player_488337","lastname":"Lebeau","firstname":"Adrien","position":2,"quotation":1,"ultraPosition":21,"club":"Strasbourg","teamid":"153","joinDate":"2019-07-01"},{"id":"player_488448","lastname":"Ould Khaled","firstname":"Zinédine","position":3,"quotation":1,"ultraPosition":31,"club":"Angers","teamid":"2128","joinDate":"2019-07-23"},{"id":"player_488695","lastname":"Rouyard","firstname":"Davy","position":1,"quotation":1,"ultraPosition":10,"club":"Bordeaux","teamid":"140","joinDate":"2019-07-27"},{"id":"player_488697","lastname":"Sow","firstname":"Ismael","position":2,"quotation":1,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2019-07-27"},{"id":"player_488698","lastname":"Cardoso","firstname":"David","position":2,"quotation":1,"ultraPosition":20,"club":"Bordeaux","teamid":"140","joinDate":"2019-07-01"},{"id":"player_48897","lastname":"Bostock","firstname":"John","position":3,"quotation":7,"ultraPosition":31,"club":"Toulouse","teamid":"427","joinDate":"2018-07-03"},{"id":"player_489230","lastname":"M'Bock","firstname":"Hianga'a","position":3,"quotation":1,"ultraPosition":31,"club":"Brest","teamid":"862","joinDate":"2019-07-01"},{"id":"player_489600","lastname":"Essele","firstname":"Boris","position":1,"quotation":3,"ultraPosition":10,"club":"Amiens","teamid":"1430","joinDate":"2019-07-22"},{"id":"player_489601","lastname":"Bumbu","firstname":"Jonathan","position":3,"quotation":3,"ultraPosition":31,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_489605","lastname":"Papeau","firstname":"Jayson","position":3,"quotation":2,"ultraPosition":32,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_489606","lastname":"Demirel","firstname":"Umit","position":4,"quotation":2,"ultraPosition":40,"club":"Amiens","teamid":"1430","joinDate":"2019-07-01"},{"id":"player_489661","lastname":"Yade","firstname":"Papa Ndiaga","position":3,"quotation":3,"ultraPosition":32,"club":"Metz","teamid":"145","joinDate":"2019-06-01"},{"id":"player_489841","lastname":"Ounahi","firstname":"Azz-Eddine","position":3,"quotation":1,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2019-08-01"},{"id":"player_49382","lastname":"Ecuele Manga","firstname":"Bruno","position":2,"quotation":11,"ultraPosition":20,"club":"Dijon","teamid":"2130","joinDate":"2019-07-19"},{"id":"player_49730","lastname":"Dossevi","firstname":"Mathieu","position":3,"quotation":13,"ultraPosition":32,"club":"Toulouse","teamid":"427","joinDate":"2018-08-03"},{"id":"player_49887","lastname":"Strootman","firstname":"Kevin","position":3,"quotation":11,"ultraPosition":31,"club":"Marseille","teamid":"144","joinDate":"2018-08-28"},{"id":"player_50442","lastname":"Jovetic","firstname":"Stevan","position":4,"quotation":10,"ultraPosition":40,"club":"Monaco","teamid":"146","joinDate":"2017-08-29"},{"id":"player_51394","lastname":"Valdivia","firstname":"Pierrick","position":3,"quotation":3,"ultraPosition":31,"club":"Nîmes","teamid":"2336","joinDate":"2017-07-01"},{"id":"player_51850","lastname":"Johansson","firstname":"Jakob","position":3,"quotation":7,"ultraPosition":31,"club":"Rennes","teamid":"150","joinDate":"2018-07-01"},{"id":"player_52482","lastname":"Trapp","firstname":"Kevin","position":1,"quotation":12,"ultraPosition":10,"club":"Paris","teamid":"149","joinDate":"2015-07-08"},{"id":"player_52782","lastname":"Le Tallec","firstname":"Damien","position":2,"quotation":17,"ultraPosition":20,"club":"Montpellier","teamid":"147","joinDate":"2018-07-01"},{"id":"player_54405","lastname":"Faussurier","firstname":"Julien","position":2,"quotation":7,"ultraPosition":21,"club":"Brest","teamid":"862","joinDate":"2016-07-19"},{"id":"player_54409","lastname":"Delecroix","firstname":"Paul","position":1,"quotation":8,"ultraPosition":10,"club":"Metz","teamid":"145","joinDate":"2018-07-24"},{"id":"player_54413","lastname":"Sammaritano","firstname":"Frédéric","position":3,"quotation":8,"ultraPosition":32,"club":"Dijon","teamid":"2130","joinDate":"2015-07-01"},{"id":"player_54771","lastname":"Fabio","firstname":null,"position":2,"quotation":8,"ultraPosition":21,"club":"Nantes","teamid":"430","joinDate":"2018-07-18"},{"id":"player_54772","lastname":"Rafael","firstname":null,"position":2,"quotation":7,"ultraPosition":21,"club":"Lyon","teamid":"143","joinDate":"2015-08-03"},{"id":"player_54908","lastname":"Chadli","firstname":"Nacer","position":3,"quotation":7,"ultraPosition":32,"club":"Monaco","teamid":"146","joinDate":"2018-08-30"},{"id":"player_55711","lastname":"Beric","firstname":"Robert","position":4,"quotation":16,"ultraPosition":40,"club":"Saint-Étienne","teamid":"152","joinDate":"2015-08-31"},{"id":"player_55948","lastname":"André","firstname":"Benjamin","position":3,"quotation":16,"ultraPosition":31,"club":"Lille","teamid":"429","joinDate":"2019-07-17"},{"id":"player_56995","lastname":"Sertic","firstname":"Grégory","position":3,"quotation":1,"ultraPosition":31,"club":"Marseille","teamid":"144","joinDate":"2017-01-31"},{"id":"player_57266","lastname":"Bamba","firstname":"Abdoulaye","position":2,"quotation":8,"ultraPosition":21,"club":"Angers","teamid":"2128","joinDate":"2017-01-01"},{"id":"player_60070","lastname":"Krhin","firstname":"Rene","position":3,"quotation":8,"ultraPosition":31,"club":"Nantes","teamid":"430","joinDate":"2018-07-01"},{"id":"player_60582","lastname":"Subasic","firstname":"Danijel","position":1,"quotation":9,"ultraPosition":10,"club":"Monaco","teamid":"146","joinDate":"2012-01-24"},{"id":"player_61170","lastname":"Verratti","firstname":"Marco","position":3,"quotation":20,"ultraPosition":31,"club":"Paris","teamid":"149","joinDate":"2012-07-17"},{"id":"player_62128","lastname":"Cristian","firstname":null,"position":4,"quotation":6,"ultraPosition":40,"club":"Angers","teamid":"2128","joinDate":"2018-08-31"},{"id":"player_68260","lastname":"Benito","firstname":"Loris","position":2,"quotation":6,"ultraPosition":21,"club":"Bordeaux","teamid":"140","joinDate":"2019-07-03"},{"id":"player_68791","lastname":"Boye","firstname":"John","position":2,"quotation":10,"ultraPosition":20,"club":"Metz","teamid":"145","joinDate":"2018-07-01"},{"id":"player_68862","lastname":"Skuletic","firstname":"Petar","position":4,"quotation":9,"ultraPosition":40,"club":"Montpellier","teamid":"147","joinDate":"2018-07-01"},{"id":"player_72177","lastname":"Lasne","firstname":"Paul","position":3,"quotation":10,"ultraPosition":31,"club":"Montpellier","teamid":"147","joinDate":"2014-07-01"},{"id":"player_73667","lastname":"Jeannot","firstname":"Benjamin","position":4,"quotation":10,"ultraPosition":40,"club":"Dijon","teamid":"2130","joinDate":"2017-07-12"},{"id":"player_73879","lastname":"de Preville","firstname":"Nicolas","position":4,"quotation":14,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2017-08-31"},{"id":"player_73889","lastname":"Sakho","firstname":"Diafra","position":4,"quotation":6,"ultraPosition":40,"club":"Rennes","teamid":"150","joinDate":"2018-01-29"},{"id":"player_73985","lastname":"Belaud","firstname":"Gaëtan","position":2,"quotation":14,"ultraPosition":21,"club":"Brest","teamid":"862","joinDate":"2014-09-01"},{"id":"player_78275","lastname":"Souquet","firstname":"Arnaud","position":2,"quotation":11,"ultraPosition":21,"club":"Montpellier","teamid":"147","joinDate":"2019-08-06"},{"id":"player_78541","lastname":"Suk Hyun-Jun","firstname":null,"position":4,"quotation":9,"ultraPosition":40,"club":"Reims","teamid":"1423","joinDate":"2018-08-09"},{"id":"player_80357","lastname":"Mexer","firstname":null,"position":2,"quotation":12,"ultraPosition":20,"club":"Bordeaux","teamid":"140","joinDate":"2019-07-01"},{"id":"player_80711","lastname":"Sanogo","firstname":"Yaya","position":4,"quotation":8,"ultraPosition":40,"club":"Toulouse","teamid":"427","joinDate":"2017-07-07"},{"id":"player_80904","lastname":"Grimm","firstname":"Jeremy","position":3,"quotation":5,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2013-07-01"},{"id":"player_82642","lastname":"Vlachodimos","firstname":"Panagiotis","position":3,"quotation":3,"ultraPosition":32,"club":"Nîmes","teamid":"2336","joinDate":"2017-07-10"},{"id":"player_83279","lastname":"Le Bihan","firstname":"Mickael","position":4,"quotation":4,"ultraPosition":40,"club":"Nice","teamid":"1395","joinDate":"2015-08-31"},{"id":"player_83577","lastname":"Lacroix","firstname":"Léo","position":2,"quotation":5,"ultraPosition":20,"club":"Saint-Étienne","teamid":"152","joinDate":"2016-08-31"},{"id":"player_84182","lastname":"Areola","firstname":"Alphonse","position":1,"quotation":20,"ultraPosition":10,"club":"Paris","teamid":"149","joinDate":"2010-07-01"},{"id":"player_84366","lastname":"Martin","firstname":"Jonas","position":3,"quotation":13,"ultraPosition":31,"club":"Strasbourg","teamid":"153","joinDate":"2017-07-25"},{"id":"player_84424","lastname":"Appiah","firstname":"Dennis","position":2,"quotation":11,"ultraPosition":21,"club":"Nantes","teamid":"430","joinDate":"2019-07-01"},{"id":"player_85548","lastname":"Pajot","firstname":"Vincent","position":3,"quotation":10,"ultraPosition":31,"club":"Angers","teamid":"2128","joinDate":"2018-07-01"},{"id":"player_86158","lastname":"Amalfitano","firstname":"Romain","position":3,"quotation":13,"ultraPosition":31,"club":"Dijon","teamid":"2130","joinDate":"2014-07-01"},{"id":"player_86413","lastname":"Carole","firstname":"Lionel","position":2,"quotation":8,"ultraPosition":21,"club":"Strasbourg","teamid":"153","joinDate":"2018-08-17"},{"id":"player_86446","lastname":"Corgnet","firstname":"Benjamin","position":3,"quotation":7,"ultraPosition":32,"club":"Strasbourg","teamid":"153","joinDate":"2017-07-03"},{"id":"player_8747","lastname":"Balmont","firstname":"Florent","position":3,"quotation":13,"ultraPosition":31,"club":"Dijon","teamid":"2130","joinDate":"2016-07-08"},{"id":"player_89068","lastname":"Kurzawa","firstname":"Layvin","position":2,"quotation":13,"ultraPosition":21,"club":"Paris","teamid":"149","joinDate":"2015-08-27"},{"id":"player_91080","lastname":"Paredes","firstname":"Leandro","position":3,"quotation":13,"ultraPosition":31,"club":"Paris","teamid":"149","joinDate":"2019-01-29"},{"id":"player_92258","lastname":"Landre","firstname":"Loïck","position":2,"quotation":10,"ultraPosition":20,"club":"Nîmes","teamid":"2336","joinDate":"2018-07-01"},{"id":"player_92559","lastname":"Alphonse","firstname":"Mickaël","position":2,"quotation":10,"ultraPosition":21,"club":"Dijon","teamid":"2130","joinDate":"2018-07-01"},{"id":"player_93127","lastname":"Jesé","firstname":null,"position":4,"quotation":2,"ultraPosition":40,"club":"Paris","teamid":"149","joinDate":"2016-08-08"},{"id":"player_93498","lastname":"Puyo","firstname":"Loïc","position":3,"quotation":3,"ultraPosition":32,"club":"Angers","teamid":"2128","joinDate":"2017-07-13"},{"id":"player_94753","lastname":"Battocchio","firstname":"Cristian","position":3,"quotation":5,"ultraPosition":32,"club":"Brest","teamid":"862","joinDate":"2019-02-01"},{"id":"player_95527","lastname":"Ciss","firstname":"Saliou","position":2,"quotation":8,"ultraPosition":21,"club":"Angers","teamid":"2128","joinDate":"2017-07-17"},{"id":"player_96084","lastname":"González","firstname":"Álvaro","position":2,"quotation":13,"ultraPosition":20,"club":"Marseille","teamid":"144","joinDate":"2019-07-19"},{"id":"player_96616","lastname":"Monconduit","firstname":"Thomas","position":3,"quotation":10,"ultraPosition":31,"club":"Amiens","teamid":"1430","joinDate":"2015-07-01"},{"id":"player_97433","lastname":"Bain","firstname":"Denys","position":2,"quotation":9,"ultraPosition":20,"club":"Brest","teamid":"862","joinDate":"2019-07-01"},{"id":"player_98746","lastname":"Abeid","firstname":"Mehdi","position":3,"quotation":11,"ultraPosition":31,"club":"Nantes","teamid":"430","joinDate":"2019-07-22"},{"id":"player_98788","lastname":"Sliti","firstname":"Naïm","position":3,"quotation":16,"ultraPosition":32,"club":"Dijon","teamid":"2130","joinDate":"2018-07-01"},{"id":"player_98798","lastname":"Prince","firstname":null,"position":2,"quotation":13,"ultraPosition":20,"club":"Amiens","teamid":"1430","joinDate":"2017-07-01"},{"id":"player_98826","lastname":"Delaine","firstname":"Thomas","position":2,"quotation":10,"ultraPosition":21,"club":"Metz","teamid":"145","joinDate":"2018-08-30"}],"userPlayers":[{"id":"player_80342","lastname":"Sunzu","firstname":"Stoppila","position":2,"quotation":10,"ultraPosition":20,"club":"Metz","teamid":"145","joinDate":"2018-07-10","pricePaid":10,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_59964","lastname":"Court","firstname":"Yoann","position":3,"quotation":14,"ultraPosition":32,"club":"Brest","teamid":"862","joinDate":"2018-07-01","pricePaid":14,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_45123","lastname":"Oukidja","firstname":"Alexandre","position":1,"quotation":14,"ultraPosition":10,"club":"Metz","teamid":"145","joinDate":"2018-07-01","pricePaid":14,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_425614","lastname":"Atal","firstname":"Youcef","position":2,"quotation":25,"ultraPosition":21,"club":"Nice","teamid":"1395","joinDate":"2018-07-17","pricePaid":25,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_420962","lastname":"Tell","firstname":"Jordan","position":4,"quotation":6,"ultraPosition":40,"club":"Rennes","teamid":"150","joinDate":"2017-07-01","pricePaid":6,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_250694","lastname":"Niane","firstname":"Ibrahima","position":4,"quotation":6,"ultraPosition":40,"club":"Metz","teamid":"145","joinDate":"2017-07-01","pricePaid":6,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_216100","lastname":"Larsonneur","firstname":"Gautier","position":1,"quotation":16,"ultraPosition":10,"club":"Brest","teamid":"862","joinDate":"2015-07-01","pricePaid":16,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_195480","lastname":"Maja","firstname":"Josh","position":4,"quotation":7,"ultraPosition":40,"club":"Bordeaux","teamid":"140","joinDate":"2019-01-26","pricePaid":7,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_158494","lastname":"Castelletto","firstname":"Jean-Charles","position":2,"quotation":14,"ultraPosition":20,"club":"Brest","teamid":"862","joinDate":"2017-07-21","pricePaid":14,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_158208","lastname":"Shoji","firstname":"Gen","position":2,"quotation":12,"ultraPosition":20,"club":"Toulouse","teamid":"427","joinDate":"2019-01-01","pricePaid":12,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_104407","lastname":"Rajkovic","firstname":"Predrag","position":1,"quotation":10,"ultraPosition":10,"club":"Reims","teamid":"1423","joinDate":"2019-07-01","pricePaid":10,"buying_date":"2019-08-05T19:34:07Z","status":2},{"id":"player_54518","lastname":"Manceau","firstname":"Vincent","position":2,"quotation":14,"ultraPosition":21,"club":"Angers","teamid":"2128","joinDate":"2008-08-01","pricePaid":19,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_217596","lastname":"Amian","firstname":"Kelvin","position":2,"quotation":11,"ultraPosition":21,"club":"Toulouse","teamid":"427","joinDate":"2015-07-01","pricePaid":16,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_214473","lastname":"Faitout Maouassa","firstname":null,"position":3,"quotation":11,"ultraPosition":32,"club":"Rennes","teamid":"150","joinDate":"2017-07-01","pricePaid":21,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_207756","lastname":"Palencia","firstname":"Sergi","position":2,"quotation":10,"ultraPosition":21,"club":"Saint-Étienne","teamid":"152","joinDate":"2019-07-05","pricePaid":16,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_201562","lastname":"Coco","firstname":"Marcus","position":3,"quotation":15,"ultraPosition":32,"club":"Nantes","teamid":"430","joinDate":"2019-07-16","pricePaid":21,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_193400","lastname":"Doumbia","firstname":"Moussa","position":3,"quotation":12,"ultraPosition":32,"club":"Reims","teamid":"1423","joinDate":"2018-07-01","pricePaid":21,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_171435","lastname":"Zeki Çelik","firstname":"Mehmet","position":2,"quotation":14,"ultraPosition":21,"club":"Lille","teamid":"429","joinDate":"2018-07-08","pricePaid":19,"buying_date":"2019-08-06T23:44:14Z","status":2},{"id":"player_111291","lastname":"Marçal","firstname":null,"position":2,"quotation":9,"ultraPosition":21,"club":"Lyon","teamid":"143","joinDate":"2017-06-15","pricePaid":16,"buying_date":"2019-08-06T23:44:14Z","status":2}],"preparation":[],"nextMatchIn":182971,"matchesToComeMercato":1,"matchesToComeReal":1,"nextTurnIn":0} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.mercato.serie-a.20190805.json b/src/test/resources/__files/mpg.mercato.serie-a.20190805.json deleted file mode 100644 index 7cb9408..0000000 --- a/src/test/resources/__files/mpg.mercato.serie-a.20190805.json +++ /dev/null @@ -1,8091 +0,0 @@ -{ - "mercato": { - }, - "players": [ - { - "id": "player_100075", - "lastname": "Di Gaudio", - "firstname": "Antonio", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_100680", - "lastname": "Gabriel", - "firstname": null, - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-03" - }, - { - "id": "player_101019", - "lastname": "Mário Rui", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-01" - }, - { - "id": "player_101020", - "lastname": "Almici", - "firstname": "Alberto", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_102195", - "lastname": "Baselli", - "firstname": "Daniele", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Torino", - "teamid": "135", - "joinDate": "2015-07-10" - }, - { - "id": "player_102228", - "lastname": "Pjaca", - "firstname": "Marko", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-07-21" - }, - { - "id": "player_102290", - "lastname": "Brlek", - "firstname": "Petar", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2017-08-24" - }, - { - "id": "player_102766", - "lastname": "Djidji", - "firstname": "Koffi", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2019-07-01" - }, - { - "id": "player_103076", - "lastname": "Milik", - "firstname": "Arkadiusz", - "position": 4, - "quotation": 26, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2016-08-01" - }, - { - "id": "player_103086", - "lastname": "Duván Zapata", - "firstname": null, - "position": 4, - "quotation": 38, - "ultraPosition": 40, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-07-12" - }, - { - "id": "player_103119", - "lastname": "Meité", - "firstname": "Soualiho", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-07-10" - }, - { - "id": "player_103953", - "lastname": "Suso", - "firstname": null, - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2015-01-17" - }, - { - "id": "player_104080", - "lastname": "Torregrossa", - "firstname": "Ernesto", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-01-31" - }, - { - "id": "player_105059", - "lastname": "Nícolas", - "firstname": null, - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-07-18" - }, - { - "id": "player_105108", - "lastname": "Murru", - "firstname": "Nicola", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-07-01" - }, - { - "id": "player_105119", - "lastname": "Izzo", - "firstname": "Armando", - "position": 2, - "quotation": 23, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-07-04" - }, - { - "id": "player_105132", - "lastname": "Verre", - "firstname": "Valerio", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-01-30" - }, - { - "id": "player_105133", - "lastname": "Cragno", - "firstname": "Alessio", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2014-07-12" - }, - { - "id": "player_105396", - "lastname": "Oikonomou", - "firstname": "Marios", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2014-07-02" - }, - { - "id": "player_106109", - "lastname": "Icardi", - "firstname": "Mauro", - "position": 4, - "quotation": 37, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2013-07-01" - }, - { - "id": "player_106461", - "lastname": "Patric", - "firstname": null, - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2015-07-01" - }, - { - "id": "player_106837", - "lastname": "Praet", - "firstname": "Dennis", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2016-08-25" - }, - { - "id": "player_107013", - "lastname": "De Sciglio", - "firstname": "Mattia", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-07-20" - }, - { - "id": "player_107117", - "lastname": "Murillo", - "firstname": "Jeison", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-13" - }, - { - "id": "player_107363", - "lastname": "Hysaj", - "firstname": "Elseid", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Napoli", - "teamid": "459", - "joinDate": "2015-08-03" - }, - { - "id": "player_109100", - "lastname": "Coric", - "firstname": "Ante", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_109353", - "lastname": "Lukaku", - "firstname": "Jordan", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-07-23" - }, - { - "id": "player_109511", - "lastname": "Cristante", - "firstname": "Bryan", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2019-07-01" - }, - { - "id": "player_109623", - "lastname": "Fiamozzi", - "firstname": "Riccardo", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-25" - }, - { - "id": "player_109788", - "lastname": "João Mário", - "firstname": null, - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2016-08-28" - }, - { - "id": "player_110654", - "lastname": "Bastos", - "firstname": null, - "position": 2, - "quotation": 15, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-08-18" - }, - { - "id": "player_111280", - "lastname": "Chancellor", - "firstname": "Jhon", - "position": 2, - "quotation": 5, - "ultraPosition": 20, - "club": "Brescia", - "teamid": "458", - "joinDate": "2019-07-21" - }, - { - "id": "player_111319", - "lastname": "Joronen", - "firstname": "Jesse", - "position": 1, - "quotation": 2, - "ultraPosition": 10, - "club": "Brescia", - "teamid": "458", - "joinDate": "2019-07-11" - }, - { - "id": "player_111515", - "lastname": "Lykogiannis", - "firstname": "Charalampos", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-01-22" - }, - { - "id": "player_111722", - "lastname": "Belotti", - "firstname": "Andrea", - "position": 4, - "quotation": 28, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2015-08-18" - }, - { - "id": "player_111729", - "lastname": "Denswil", - "firstname": "Stefano", - "position": 2, - "quotation": 4, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-06" - }, - { - "id": "player_111732", - "lastname": "Calhanoglu", - "firstname": "Hakan", - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-03" - }, - { - "id": "player_111782", - "lastname": "Olsen", - "firstname": "Robin", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-24" - }, - { - "id": "player_112065", - "lastname": "Skriniar", - "firstname": "Milan", - "position": 2, - "quotation": 27, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2017-07-07" - }, - { - "id": "player_112338", - "lastname": "Can", - "firstname": "Emre", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_113529", - "lastname": "Younes", - "firstname": "Amin", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-01" - }, - { - "id": "player_114517", - "lastname": "Cornelius", - "firstname": "Andreas", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-18" - }, - { - "id": "player_116056", - "lastname": "Duncan", - "firstname": "Alfred", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2016-07-01" - }, - { - "id": "player_116195", - "lastname": "Correa", - "firstname": "Joaquín", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-08-01" - }, - { - "id": "player_116196", - "lastname": "Biraschi", - "firstname": "Davide", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2016-08-31" - }, - { - "id": "player_116543", - "lastname": "Lazaro", - "firstname": "Valentino", - "position": 3, - "quotation": 18, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-01" - }, - { - "id": "player_116546", - "lastname": "Balkovec", - "firstname": "Jure", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-08-03" - }, - { - "id": "player_116796", - "lastname": "Berardi", - "firstname": "Domenico", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2012-01-01" - }, - { - "id": "player_118888", - "lastname": "Günter", - "firstname": "Koray", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-19" - }, - { - "id": "player_118959", - "lastname": "Tsonev", - "firstname": "Radoslav", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2016-08-23" - }, - { - "id": "player_119141", - "lastname": "de Paul", - "firstname": "Rodrigo", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-07-20" - }, - { - "id": "player_119213", - "lastname": "Dijks", - "firstname": "Mitchell", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-01" - }, - { - "id": "player_119423", - "lastname": "Rizzo", - "firstname": "Luca", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2016-07-01" - }, - { - "id": "player_119765", - "lastname": "Allan", - "firstname": null, - "position": 3, - "quotation": 28, - "ultraPosition": 31, - "club": "Napoli", - "teamid": "459", - "joinDate": "2015-07-21" - }, - { - "id": "player_119908", - "lastname": "Mbaye", - "firstname": "Ibrahima", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Bologna", - "teamid": "123", - "joinDate": "2015-07-01" - }, - { - "id": "player_120390", - "lastname": "Majer", - "firstname": "Zan", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-02-16" - }, - { - "id": "player_120638", - "lastname": "Dybala", - "firstname": "Paulo", - "position": 4, - "quotation": 32, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2015-07-01" - }, - { - "id": "player_120743", - "lastname": "Rabiot", - "firstname": "Adrien", - "position": 3, - "quotation": 25, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-01" - }, - { - "id": "player_121126", - "lastname": "Ryder Matos", - "firstname": null, - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-01-30" - }, - { - "id": "player_121145", - "lastname": "João Cancelo", - "firstname": null, - "position": 2, - "quotation": 26, - "ultraPosition": 21, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_121220", - "lastname": "Pezzella", - "firstname": "Germán", - "position": 2, - "quotation": 22, - "ultraPosition": 20, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_121537", - "lastname": "Musso", - "firstname": "Juan", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-07-11" - }, - { - "id": "player_122008", - "lastname": "Capezzi", - "firstname": "Leonardo", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2016-08-29" - }, - { - "id": "player_122476", - "lastname": "Benassi", - "firstname": "Marco", - "position": 3, - "quotation": 20, - "ultraPosition": 32, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-08-09" - }, - { - "id": "player_123309", - "lastname": "Faragò", - "firstname": "Paolo", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-07-01" - }, - { - "id": "player_123671", - "lastname": "Despodov", - "firstname": "Kiril", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-01-30" - }, - { - "id": "player_124197", - "lastname": "Baraye", - "firstname": "Yves", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Parma", - "teamid": "131", - "joinDate": "2015-08-30" - }, - { - "id": "player_12473", - "lastname": "Quagliarella", - "firstname": "Fabio", - "position": 4, - "quotation": 38, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2016-07-01" - }, - { - "id": "player_126440", - "lastname": "Zielinski", - "firstname": "Piotr", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2016-08-04" - }, - { - "id": "player_126488", - "lastname": "Sabelli", - "firstname": "Stefano", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-07-01" - }, - { - "id": "player_126541", - "lastname": "Zima", - "firstname": "Lukas", - "position": 1, - "quotation": 3, - "ultraPosition": 10, - "club": "Genoa", - "teamid": "990", - "joinDate": "2012-07-01" - }, - { - "id": "player_126543", - "lastname": "Tabanelli", - "firstname": "Andrea", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-01-31" - }, - { - "id": "player_126551", - "lastname": "Romagnoli", - "firstname": "Alessio", - "position": 2, - "quotation": 24, - "ultraPosition": 20, - "club": "Milan", - "teamid": "120", - "joinDate": "2015-08-11" - }, - { - "id": "player_126888", - "lastname": "Meccariello", - "firstname": "Biagio", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-01" - }, - { - "id": "player_12730", - "lastname": "Mirante", - "firstname": "Antonio", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_128376", - "lastname": "Durmisi", - "firstname": "Riza", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-07-01" - }, - { - "id": "player_130028", - "lastname": "Haye", - "firstname": "Thom", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-01" - }, - { - "id": "player_130963", - "lastname": "Cataldi", - "firstname": "Danilo", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2012-07-01" - }, - { - "id": "player_131304", - "lastname": "Troost-Ekong", - "firstname": "William", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-08-17" - }, - { - "id": "player_134316", - "lastname": "Halilovic", - "firstname": "Alen", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-07-03" - }, - { - "id": "player_135365", - "lastname": "Boga", - "firstname": "Jeremie", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-07-21" - }, - { - "id": "player_139146", - "lastname": "Pulgar", - "firstname": "Erick", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2015-08-05" - }, - { - "id": "player_140181", - "lastname": "Linetty", - "firstname": "Karol", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2016-07-29" - }, - { - "id": "player_140200", - "lastname": "Strakosha", - "firstname": "Thomas", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2012-08-11" - }, - { - "id": "player_140941", - "lastname": "Perica", - "firstname": "Stipe", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-07-01" - }, - { - "id": "player_141219", - "lastname": "Guerrieri", - "firstname": "Guido", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2012-07-01" - }, - { - "id": "player_141563", - "lastname": "Mattiello", - "firstname": "Federico", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-07-10" - }, - { - "id": "player_141564", - "lastname": "Beltrame", - "firstname": "Stefano", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2013-01-09" - }, - { - "id": "player_141565", - "lastname": "Padovan", - "firstname": "Stefano", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2014-01-16" - }, - { - "id": "player_141925", - "lastname": "Dawidowicz", - "firstname": "Pawel", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_14216", - "lastname": "Berni", - "firstname": "Tommaso", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Inter", - "teamid": "127", - "joinDate": "2014-07-02" - }, - { - "id": "player_14404", - "lastname": "Barreto", - "firstname": "Edgar", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2015-07-01" - }, - { - "id": "player_14715", - "lastname": "Magnanelli", - "firstname": "Francesco", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2005-07-01" - }, - { - "id": "player_147166", - "lastname": "Sensi", - "firstname": "Stefano", - "position": 3, - "quotation": 20, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-02" - }, - { - "id": "player_147297", - "lastname": "Bernardeschi", - "firstname": "Federico", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-07-24" - }, - { - "id": "player_147614", - "lastname": "Goldaniga", - "firstname": "Edoardo", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2017-07-29" - }, - { - "id": "player_147886", - "lastname": "Petagna", - "firstname": "Andrea", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-01" - }, - { - "id": "player_148025", - "lastname": "Laxalt", - "firstname": "Diego", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-08-17" - }, - { - "id": "player_148215", - "lastname": "Vecino", - "firstname": "Matías", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2017-08-02" - }, - { - "id": "player_148856", - "lastname": "Donnarumma", - "firstname": "Alfredo", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-07-13" - }, - { - "id": "player_148868", - "lastname": "Sprocati", - "firstname": "Mattia", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-01" - }, - { - "id": "player_149038", - "lastname": "Gümüs", - "firstname": "Sinan", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-01" - }, - { - "id": "player_149260", - "lastname": "Bessa", - "firstname": "Daniel", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Verona", - "teamid": "126", - "joinDate": "2017-01-03" - }, - { - "id": "player_14937", - "lastname": "Cristiano Ronaldo", - "firstname": null, - "position": 4, - "quotation": 53, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-10" - }, - { - "id": "player_15061", - "lastname": "Pandev", - "firstname": "Goran", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2015-07-01" - }, - { - "id": "player_150710", - "lastname": "Rugani", - "firstname": "Daniele", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2013-01-09" - }, - { - "id": "player_151544", - "lastname": "Frediani", - "firstname": "Marco", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-07-01" - }, - { - "id": "player_151804", - "lastname": "Scuffet", - "firstname": "Simone", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Udinese", - "teamid": "136", - "joinDate": "2012-07-01" - }, - { - "id": "player_151978", - "lastname": "Cristóforo", - "firstname": "Sebastián", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-07-01" - }, - { - "id": "player_152965", - "lastname": "Bani", - "firstname": "Mattia", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-01" - }, - { - "id": "player_153019", - "lastname": "Martinelli", - "firstname": "Alessandro", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Brescia", - "teamid": "458", - "joinDate": "2017-08-31" - }, - { - "id": "player_153325", - "lastname": "Falletti", - "firstname": "Cesar", - "position": 3, - "quotation": 5, - "ultraPosition": 32, - "club": "Bologna", - "teamid": "123", - "joinDate": "2017-07-19" - }, - { - "id": "player_153448", - "lastname": "Báez", - "firstname": "Jaime", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2015-08-31" - }, - { - "id": "player_153693", - "lastname": "Gagliolo", - "firstname": "Riccardo", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-07-01" - }, - { - "id": "player_153745", - "lastname": "Bisoli", - "firstname": "Dimitri", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Brescia", - "teamid": "458", - "joinDate": "2017-07-01" - }, - { - "id": "player_153757", - "lastname": "Ciciretti", - "firstname": "Amato", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-01" - }, - { - "id": "player_153776", - "lastname": "Politano", - "firstname": "Matteo", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-01" - }, - { - "id": "player_154048", - "lastname": "Mavididi", - "firstname": "Stephy", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-08-17" - }, - { - "id": "player_154344", - "lastname": "Fofana", - "firstname": "Seko", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-07-01" - }, - { - "id": "player_155022", - "lastname": "Bleve", - "firstname": "Marco", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Lecce", - "teamid": "130", - "joinDate": "2012-07-01" - }, - { - "id": "player_155603", - "lastname": "Nardi", - "firstname": "Michele", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-07-08" - }, - { - "id": "player_155620", - "lastname": "Ferrari", - "firstname": "Gianmarco", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2016-08-30" - }, - { - "id": "player_155748", - "lastname": "Krunic", - "firstname": "Rade", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-08" - }, - { - "id": "player_155895", - "lastname": "Calabresi", - "firstname": "Arturo", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-01" - }, - { - "id": "player_156267", - "lastname": "Colley", - "firstname": "Omar", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-07-01" - }, - { - "id": "player_156323", - "lastname": "Lazzari", - "firstname": "Manuel", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-07-12" - }, - { - "id": "player_156683", - "lastname": "Gollini", - "firstname": "Pierluigi", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-07-01" - }, - { - "id": "player_156707", - "lastname": "Cerri", - "firstname": "Alberto", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-07-01" - }, - { - "id": "player_157008", - "lastname": "Zaccagni", - "firstname": "Mattia", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2013-08-10" - }, - { - "id": "player_157717", - "lastname": "Hernani", - "firstname": null, - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-12" - }, - { - "id": "player_157735", - "lastname": "Di Francesco", - "firstname": "Federico", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-27" - }, - { - "id": "player_157740", - "lastname": "Gustafson", - "firstname": "Samuel", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Torino", - "teamid": "135", - "joinDate": "2016-08-09" - }, - { - "id": "player_15842", - "lastname": "Gastaldello", - "firstname": "Daniele", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Brescia", - "teamid": "458", - "joinDate": "2017-08-25" - }, - { - "id": "player_159039", - "lastname": "Barreca", - "firstname": "Antonio", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-10" - }, - { - "id": "player_159042", - "lastname": "Parigini", - "firstname": "Vittorio", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2013-07-01" - }, - { - "id": "player_159506", - "lastname": "Ola Aina", - "firstname": null, - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Torino", - "teamid": "135", - "joinDate": "2019-07-01" - }, - { - "id": "player_160058", - "lastname": "Wallace", - "firstname": null, - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-07-28" - }, - { - "id": "player_160540", - "lastname": "Toljan", - "firstname": "Jeremy", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-11" - }, - { - "id": "player_160846", - "lastname": "Eguelfi", - "firstname": "Fabio", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-01" - }, - { - "id": "player_160852", - "lastname": "Mazzitelli", - "firstname": "Luca", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2016-02-01" - }, - { - "id": "player_161490", - "lastname": "Ferrari", - "firstname": "Alex", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-07-01" - }, - { - "id": "player_161794", - "lastname": "Magnani", - "firstname": "Giangiacomo", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_161918", - "lastname": "Calabria", - "firstname": "Davide", - "position": 2, - "quotation": 22, - "ultraPosition": 21, - "club": "Milan", - "teamid": "120", - "joinDate": "2015-01-23" - }, - { - "id": "player_161919", - "lastname": "Dimarco", - "firstname": "Federico", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_161928", - "lastname": "Palazzi", - "firstname": "Andrea", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2014-11-01" - }, - { - "id": "player_161931", - "lastname": "Tutino", - "firstname": "Gennaro", - "position": 4, - "quotation": 5, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-01" - }, - { - "id": "player_161932", - "lastname": "Bonazzoli", - "firstname": "Federico", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2015-02-02" - }, - { - "id": "player_161933", - "lastname": "Vido", - "firstname": "Luca", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-01" - }, - { - "id": "player_162304", - "lastname": "Vicari", - "firstname": "Francesco", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2016-08-11" - }, - { - "id": "player_162330", - "lastname": "Deiola", - "firstname": "Alessandro", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2012-07-01" - }, - { - "id": "player_162651", - "lastname": "Samir", - "firstname": null, - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-01-07" - }, - { - "id": "player_162842", - "lastname": "Dragowski", - "firstname": "Bartlomiej", - "position": 1, - "quotation": 19, - "ultraPosition": 10, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2016-07-01" - }, - { - "id": "player_164099", - "lastname": "Marlon Santos", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-08-16" - }, - { - "id": "player_164266", - "lastname": "Vavro", - "firstname": "Denis", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-07-04" - }, - { - "id": "player_164570", - "lastname": "Pasalic", - "firstname": "Mario", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-07-03" - }, - { - "id": "player_165196", - "lastname": "Rrahmani", - "firstname": "Amir", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_165229", - "lastname": "Jagiello", - "firstname": "Filip", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-01-30" - }, - { - "id": "player_165374", - "lastname": "Vergara", - "firstname": "Jherson", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-08-16" - }, - { - "id": "player_165811", - "lastname": "André Silva", - "firstname": null, - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-01" - }, - { - "id": "player_166016", - "lastname": "Simeone", - "firstname": "Giovanni", - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-08-16" - }, - { - "id": "player_166477", - "lastname": "Castagne", - "firstname": "Timothy", - "position": 2, - "quotation": 20, - "ultraPosition": 21, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-07" - }, - { - "id": "player_166965", - "lastname": "Lerager", - "firstname": "Lukas", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-01" - }, - { - "id": "player_167164", - "lastname": "Bradaric", - "firstname": "Filip", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-08-03" - }, - { - "id": "player_16765", - "lastname": "Matri", - "firstname": "Alessandro", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2016-08-16" - }, - { - "id": "player_167898", - "lastname": "Pinato", - "firstname": "Marco", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-08-15" - }, - { - "id": "player_168225", - "lastname": "Henderson", - "firstname": "Liam", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-08-03" - }, - { - "id": "player_168290", - "lastname": "Pussetto", - "firstname": "Ignacio", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-07-19" - }, - { - "id": "player_168598", - "lastname": "Sanabria", - "firstname": "Antonio", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-01-25" - }, - { - "id": "player_168618", - "lastname": "Luperto", - "firstname": "Sebastiano", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Napoli", - "teamid": "459", - "joinDate": "2013-08-22" - }, - { - "id": "player_169107", - "lastname": "Marusic", - "firstname": "Adam", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2017-07-01" - }, - { - "id": "player_169420", - "lastname": "Jaroszynski", - "firstname": "Pawel", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-01" - }, - { - "id": "player_170135", - "lastname": "Hateboer", - "firstname": "Hans", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-01-31" - }, - { - "id": "player_170398", - "lastname": "Vitor Hugo", - "firstname": null, - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-07-01" - }, - { - "id": "player_170694", - "lastname": "Rolando", - "firstname": "Gabriele", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-07-01" - }, - { - "id": "player_170857", - "lastname": "Anderson", - "firstname": "Djavan", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-08-03" - }, - { - "id": "player_171152", - "lastname": "Gagliardini", - "firstname": "Roberto", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_171366", - "lastname": "Meret", - "firstname": "Alex", - "position": 1, - "quotation": 20, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-05" - }, - { - "id": "player_171384", - "lastname": "Barella", - "firstname": "Nicolò", - "position": 3, - "quotation": 28, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-12" - }, - { - "id": "player_171387", - "lastname": "Locatelli", - "firstname": "Manuel", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-08-13" - }, - { - "id": "player_171390", - "lastname": "Romagna", - "firstname": "Filippo", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-07-28" - }, - { - "id": "player_171408", - "lastname": "Clemenza", - "firstname": "Luca", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2015-07-01" - }, - { - "id": "player_171699", - "lastname": "Paz", - "firstname": "Nehuén", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-01-30" - }, - { - "id": "player_17192", - "lastname": "Rosati", - "firstname": "Antonio", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-07-12" - }, - { - "id": "player_172543", - "lastname": "Lancini", - "firstname": "Edoardo", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Brescia", - "teamid": "458", - "joinDate": "2013-08-01" - }, - { - "id": "player_172838", - "lastname": "Empereur", - "firstname": "Alan", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-08-17" - }, - { - "id": "player_173031", - "lastname": "Ferrari", - "firstname": "Lorenzo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-08-01" - }, - { - "id": "player_173134", - "lastname": "Spalek", - "firstname": "Nikolas", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-01-22" - }, - { - "id": "player_173181", - "lastname": "Kessié", - "firstname": "Franck", - "position": 3, - "quotation": 17, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-01" - }, - { - "id": "player_17319", - "lastname": "Felipe", - "firstname": null, - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2017-07-03" - }, - { - "id": "player_174253", - "lastname": "Sauli Väisänen", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2017-07-20" - }, - { - "id": "player_174651", - "lastname": "Caldara", - "firstname": "Mattia", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-08-02" - }, - { - "id": "player_174654", - "lastname": "Puscas", - "firstname": "George", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2013-11-01" - }, - { - "id": "player_175639", - "lastname": "Bonifazi", - "firstname": "Kevin", - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2015-05-30" - }, - { - "id": "player_176116", - "lastname": "Donsah", - "firstname": "Godfred", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2016-07-01" - }, - { - "id": "player_177284", - "lastname": "Cappelluzzo", - "firstname": "Pierluigi", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2014-07-23" - }, - { - "id": "player_177901", - "lastname": "Gosens", - "firstname": "Robin", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-01" - }, - { - "id": "player_17818", - "lastname": "Cosenza", - "firstname": "Francesco", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Lecce", - "teamid": "130", - "joinDate": "2015-08-07" - }, - { - "id": "player_178724", - "lastname": "Venuti", - "firstname": "Lorenzo", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_179296", - "lastname": "Thorsby", - "firstname": "Morten", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-01" - }, - { - "id": "player_17985", - "lastname": "Masiello", - "firstname": "Andrea", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2015-01-30" - }, - { - "id": "player_180150", - "lastname": "Balic", - "firstname": "Andrija", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-02-01" - }, - { - "id": "player_180655", - "lastname": "Valzania", - "firstname": "Luca", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2015-07-01" - }, - { - "id": "player_180793", - "lastname": "Milinkovic-Savic", - "firstname": "Sergej", - "position": 3, - "quotation": 32, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2015-08-07" - }, - { - "id": "player_18102", - "lastname": "Chiellini", - "firstname": "Giorgio", - "position": 2, - "quotation": 26, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2004-06-28" - }, - { - "id": "player_181074", - "lastname": "Minala", - "firstname": "Joseph", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2014-03-01" - }, - { - "id": "player_18231", - "lastname": "Pazzini", - "firstname": "Giampaolo", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2015-07-11" - }, - { - "id": "player_182514", - "lastname": "Mandragora", - "firstname": "Rolando", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-07-26" - }, - { - "id": "player_182518", - "lastname": "Cassata", - "firstname": "Francesco", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-26" - }, - { - "id": "player_182881", - "lastname": "Andrenacci", - "firstname": "Lorenzo", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Brescia", - "teamid": "458", - "joinDate": "2014-10-23" - }, - { - "id": "player_182960", - "lastname": "López", - "firstname": "Pau", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "club": "Roma", - "teamid": "121", - "joinDate": "2019-07-10" - }, - { - "id": "player_183370", - "lastname": "Lee Seung-Woo", - "firstname": null, - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2017-08-31" - }, - { - "id": "player_18362", - "lastname": "Cigarini", - "firstname": "Luca", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-07-01" - }, - { - "id": "player_183672", - "lastname": "Morosini", - "firstname": "Leonardo", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-07-11" - }, - { - "id": "player_18377", - "lastname": "Padelli", - "firstname": "Daniele", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Inter", - "teamid": "127", - "joinDate": "2017-07-01" - }, - { - "id": "player_18383", - "lastname": "Handanovic", - "firstname": "Samir", - "position": 1, - "quotation": 24, - "ultraPosition": 10, - "club": "Inter", - "teamid": "127", - "joinDate": "2012-07-05" - }, - { - "id": "player_184095", - "lastname": "Karamoh", - "firstname": "Yann", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-17" - }, - { - "id": "player_184441", - "lastname": "Pellegrini", - "firstname": "Lorenzo", - "position": 3, - "quotation": 26, - "ultraPosition": 32, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-01" - }, - { - "id": "player_184508", - "lastname": "ter Avest", - "firstname": "Hidde", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-07-01" - }, - { - "id": "player_184661", - "lastname": "Fares", - "firstname": "Mohamed", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-01" - }, - { - "id": "player_184859", - "lastname": "Jankovic", - "firstname": "Marko", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-01-31" - }, - { - "id": "player_184953", - "lastname": "Dickmann", - "firstname": "Lorenzo", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-01" - }, - { - "id": "player_18500", - "lastname": "Consigli", - "firstname": "Andrea", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2014-09-01" - }, - { - "id": "player_185065", - "lastname": "Piatek", - "firstname": "Krzysztof", - "position": 4, - "quotation": 36, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-01-23" - }, - { - "id": "player_185079", - "lastname": "Simonetti", - "firstname": "Lorenzo", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2015-07-01" - }, - { - "id": "player_18526", - "lastname": "Munari", - "firstname": "Gianni", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-01-16" - }, - { - "id": "player_185584", - "lastname": "Jandrei", - "firstname": null, - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-01-07" - }, - { - "id": "player_186665", - "lastname": "Karsdorp", - "firstname": "Rick", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-01" - }, - { - "id": "player_192252", - "lastname": "Pajac", - "firstname": "Marko", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2016-07-02" - }, - { - "id": "player_192905", - "lastname": "Lasagna", - "firstname": "Kevin", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-01-14" - }, - { - "id": "player_193183", - "lastname": "Conti", - "firstname": "Andrea", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-07" - }, - { - "id": "player_193449", - "lastname": "Samu Castillejo", - "firstname": null, - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-08-17" - }, - { - "id": "player_193509", - "lastname": "Audero", - "firstname": "Emil", - "position": 1, - "quotation": 17, - "ultraPosition": 10, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-01" - }, - { - "id": "player_193774", - "lastname": "Boyé", - "firstname": "Lucas", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2016-07-01" - }, - { - "id": "player_193787", - "lastname": "Ingelsson", - "firstname": "Svante", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-07-01" - }, - { - "id": "player_194783", - "lastname": "Haas", - "firstname": "Nicolas", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-01" - }, - { - "id": "player_195303", - "lastname": "Rog", - "firstname": "Marko", - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-07-24" - }, - { - "id": "player_195385", - "lastname": "Alex Berenguer", - "firstname": null, - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2017-07-17" - }, - { - "id": "player_195504", - "lastname": "González", - "firstname": "Cristo", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-07-19" - }, - { - "id": "player_195516", - "lastname": "Grassi", - "firstname": "Alberto", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-08-14" - }, - { - "id": "player_195549", - "lastname": "Casasola", - "firstname": "Tiago", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-01-30" - }, - { - "id": "player_195558", - "lastname": "Saporetti", - "firstname": "Lorenzo", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Parma", - "teamid": "131", - "joinDate": "2016-08-03" - }, - { - "id": "player_195559", - "lastname": "Petriccione", - "firstname": "Jacopo", - "position": 3, - "quotation": 8, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-08-03" - }, - { - "id": "player_195577", - "lastname": "Jankto", - "firstname": "Jakub", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-01" - }, - { - "id": "player_195634", - "lastname": "Castrovilli", - "firstname": "Gaetano", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-07-01" - }, - { - "id": "player_19565", - "lastname": "Alfonso", - "firstname": "Enrico", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-07-09" - }, - { - "id": "player_195944", - "lastname": "Sbrissa", - "firstname": "Giovanni", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2015-07-02" - }, - { - "id": "player_196098", - "lastname": "Da Cruz", - "firstname": "Alessio", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-01-08" - }, - { - "id": "player_19620", - "lastname": "Miguel Veloso", - "firstname": null, - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-20" - }, - { - "id": "player_196680", - "lastname": "Schick", - "firstname": "Patrik", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_197097", - "lastname": "Riccardi", - "firstname": "Davide", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-01" - }, - { - "id": "player_19711", - "lastname": "Hallfredsson", - "firstname": "Emil", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-03-01" - }, - { - "id": "player_19731", - "lastname": "Missiroli", - "firstname": "Simone", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-08-17" - }, - { - "id": "player_197903", - "lastname": "Ricci", - "firstname": "Giacomo", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Parma", - "teamid": "131", - "joinDate": "2015-07-01" - }, - { - "id": "player_197983", - "lastname": "Edera", - "firstname": "Simone", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2014-11-01" - }, - { - "id": "player_198160", - "lastname": "Murgia", - "firstname": "Alessandro", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-12" - }, - { - "id": "player_19821", - "lastname": "Criscito", - "firstname": "Domenico", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-01" - }, - { - "id": "player_198374", - "lastname": "Mancini", - "firstname": "Gianluca", - "position": 2, - "quotation": 22, - "ultraPosition": 20, - "club": "Roma", - "teamid": "121", - "joinDate": "2019-07-17" - }, - { - "id": "player_199104", - "lastname": "Ádám Nagy", - "firstname": null, - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2016-07-14" - }, - { - "id": "player_19936", - "lastname": "Dessena", - "firstname": "Daniele", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Brescia", - "teamid": "458", - "joinDate": "2019-01-10" - }, - { - "id": "player_199637", - "lastname": "Kastanos", - "firstname": "Grigoris", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-07-01" - }, - { - "id": "player_200916", - "lastname": "Leandrinho", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2017-01-12" - }, - { - "id": "player_20099", - "lastname": "Ceravolo", - "firstname": "Fabio", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-07-01" - }, - { - "id": "player_201134", - "lastname": "Cistana", - "firstname": "Andrea", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Brescia", - "teamid": "458", - "joinDate": "2014-12-08" - }, - { - "id": "player_201379", - "lastname": "Ruiz", - "firstname": "Fabián", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-05" - }, - { - "id": "player_20153", - "lastname": "Palacio", - "firstname": "Rodrigo", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Bologna", - "teamid": "123", - "joinDate": "2017-08-17" - }, - { - "id": "player_201652", - "lastname": "Favilli", - "firstname": "Andrea", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-01" - }, - { - "id": "player_202430", - "lastname": "Lescano", - "firstname": "Facundo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-07-01" - }, - { - "id": "player_202903", - "lastname": "Ghiglione", - "firstname": "Paolo", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Genoa", - "teamid": "990", - "joinDate": "2015-01-17" - }, - { - "id": "player_202993", - "lastname": "Bentancur", - "firstname": "Rodrigo", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-07-01" - }, - { - "id": "player_203237", - "lastname": "Matheus Pereira", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_20360", - "lastname": "Boateng", - "firstname": "Kevin-Prince", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-07-05" - }, - { - "id": "player_204630", - "lastname": "Broh", - "firstname": "Jérémie", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2015-07-15" - }, - { - "id": "player_204936", - "lastname": "Gianluigi Donnarumma", - "firstname": null, - "position": 1, - "quotation": 26, - "ultraPosition": 10, - "club": "Milan", - "teamid": "120", - "joinDate": "2015-02-18" - }, - { - "id": "player_205198", - "lastname": "Perisan", - "firstname": "Samuele", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Udinese", - "teamid": "136", - "joinDate": "2015-02-20" - }, - { - "id": "player_205454", - "lastname": "Rasmussen", - "firstname": "Jacob", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-01-30" - }, - { - "id": "player_205560", - "lastname": "Sarr", - "firstname": "Mouhamadou", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Bologna", - "teamid": "123", - "joinDate": "2015-02-01" - }, - { - "id": "player_206552", - "lastname": "Pepín", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-01" - }, - { - "id": "player_206553", - "lastname": "Ndoj", - "firstname": "Emanuele", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Brescia", - "teamid": "458", - "joinDate": "2016-02-01" - }, - { - "id": "player_207015", - "lastname": "Vodisek", - "firstname": "Rok", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-02" - }, - { - "id": "player_208973", - "lastname": "Sierralta", - "firstname": "Francisco", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-07-11" - }, - { - "id": "player_209182", - "lastname": "Simic", - "firstname": "Lorenco", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-01-31" - }, - { - "id": "player_209325", - "lastname": "Plizzari", - "firstname": "Alessandro", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Milan", - "teamid": "120", - "joinDate": "2016-07-01" - }, - { - "id": "player_209337", - "lastname": "Merola", - "firstname": "Davide", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-03-05" - }, - { - "id": "player_209343", - "lastname": "Coccolo", - "firstname": "Luca", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-07-01" - }, - { - "id": "player_209352", - "lastname": "Lo Faso", - "firstname": "Simone", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-25" - }, - { - "id": "player_209353", - "lastname": "Cutrone", - "firstname": "Patrick", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2016-10-29" - }, - { - "id": "player_209365", - "lastname": "de Ligt", - "firstname": "Matthijs", - "position": 2, - "quotation": 22, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-18" - }, - { - "id": "player_209737", - "lastname": "Martínez", - "firstname": "Lautaro", - "position": 4, - "quotation": 25, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_209913", - "lastname": "Mateju", - "firstname": "Ales", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Brescia", - "teamid": "458", - "joinDate": "2019-07-01" - }, - { - "id": "player_210415", - "lastname": "Machach", - "firstname": "Zinedine", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-01-11" - }, - { - "id": "player_210684", - "lastname": "Del Favero", - "firstname": "Mattia", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Juventus", - "teamid": "128", - "joinDate": "2015-05-01" - }, - { - "id": "player_210912", - "lastname": "Svanberg", - "firstname": "Mattias", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-05" - }, - { - "id": "player_21125", - "lastname": "De Silvestri", - "firstname": "Lorenzo", - "position": 2, - "quotation": 17, - "ultraPosition": 21, - "club": "Torino", - "teamid": "135", - "joinDate": "2016-08-18" - }, - { - "id": "player_21155", - "lastname": "Sirigu", - "firstname": "Salvatore", - "position": 1, - "quotation": 22, - "ultraPosition": 10, - "club": "Torino", - "teamid": "135", - "joinDate": "2017-07-01" - }, - { - "id": "player_21191", - "lastname": "Bocchetti", - "firstname": "Salvatore", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-25" - }, - { - "id": "player_212314", - "lastname": "Lukic", - "firstname": "Sasa", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Torino", - "teamid": "135", - "joinDate": "2016-07-29" - }, - { - "id": "player_21232", - "lastname": "Barillà", - "firstname": "Antonino", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-07-01" - }, - { - "id": "player_212533", - "lastname": "Diawara", - "firstname": "Amadou", - "position": 3, - "quotation": 18, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2019-07-01" - }, - { - "id": "player_212633", - "lastname": "Adamonis", - "firstname": "Marius", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2017-02-25" - }, - { - "id": "player_212721", - "lastname": "Lyanco", - "firstname": null, - "position": 2, - "quotation": 18, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2017-07-01" - }, - { - "id": "player_212752", - "lastname": "Dalbert", - "firstname": null, - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Inter", - "teamid": "127", - "joinDate": "2017-08-09" - }, - { - "id": "player_213534", - "lastname": "Dell'Orco", - "firstname": "Cristian", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2015-07-16" - }, - { - "id": "player_213535", - "lastname": "Radunovic", - "firstname": "Boris", - "position": 1, - "quotation": 9, - "ultraPosition": 10, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-15" - }, - { - "id": "player_214243", - "lastname": "Aye", - "firstname": "Florian", - "position": 4, - "quotation": 20, - "ultraPosition": 40, - "club": "Brescia", - "teamid": "458", - "joinDate": "2019-07-05" - }, - { - "id": "player_214435", - "lastname": "Bobby", - "firstname": null, - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-07-01" - }, - { - "id": "player_215234", - "lastname": "Maroni", - "firstname": "Gonzalo", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-01" - }, - { - "id": "player_215312", - "lastname": "Pezzella", - "firstname": "Giuseppe", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-07-01" - }, - { - "id": "player_215510", - "lastname": "Luiz Felipe", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-08-30" - }, - { - "id": "player_215531", - "lastname": "Radu", - "firstname": "Ionut", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-12" - }, - { - "id": "player_215652", - "lastname": "Seck", - "firstname": "Moustapha", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Roma", - "teamid": "121", - "joinDate": "2016-07-06" - }, - { - "id": "player_215975", - "lastname": "Stefano Greco", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Roma", - "teamid": "121", - "joinDate": "2016-12-11" - }, - { - "id": "player_215977", - "lastname": "Bastoni", - "firstname": "Alessandro", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2017-08-30" - }, - { - "id": "player_215979", - "lastname": "Gabbia", - "firstname": "Matteo", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-05-07" - }, - { - "id": "player_215981", - "lastname": "Pellegrini", - "firstname": "Luca", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-01" - }, - { - "id": "player_215983", - "lastname": "Ranieri", - "firstname": "Luca", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-07-01" - }, - { - "id": "player_216035", - "lastname": "Tripaldelli", - "firstname": "Alessandro", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-08-01" - }, - { - "id": "player_216040", - "lastname": "Pinamonti", - "firstname": "Andrea", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-01" - }, - { - "id": "player_216412", - "lastname": "Semprini", - "firstname": "Alessandro", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Brescia", - "teamid": "458", - "joinDate": "2015-09-04" - }, - { - "id": "player_216791", - "lastname": "Lirola", - "firstname": "Pol", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-01-31" - }, - { - "id": "player_216828", - "lastname": "Muratore", - "firstname": "Simone", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-01-24" - }, - { - "id": "player_217305", - "lastname": "Asencio Moraes", - "firstname": "Raúl José", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2015-09-22" - }, - { - "id": "player_218005", - "lastname": "Ounas", - "firstname": "Adam", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2017-07-03" - }, - { - "id": "player_218298", - "lastname": "Colombatto", - "firstname": "Santiago", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2015-10-01" - }, - { - "id": "player_218324", - "lastname": "Michael", - "firstname": "Kingsley", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-04-17" - }, - { - "id": "player_218441", - "lastname": "Rogerio", - "firstname": null, - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-01" - }, - { - "id": "player_218485", - "lastname": "Han Kwang Song", - "firstname": null, - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-03-18" - }, - { - "id": "player_218784", - "lastname": "Barak", - "firstname": "Antonin", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-07-01" - }, - { - "id": "player_220063", - "lastname": "Rodrigo Becão", - "firstname": null, - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-07-06" - }, - { - "id": "player_220157", - "lastname": "Tupta", - "firstname": "Lubomir", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2015-08-31" - }, - { - "id": "player_220872", - "lastname": "Gravillon", - "firstname": "Andrew", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-17" - }, - { - "id": "player_221608", - "lastname": "Vieira", - "firstname": "Ronaldo", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-08-01" - }, - { - "id": "player_221632", - "lastname": "Romero", - "firstname": "Cristian", - "position": 2, - "quotation": 20, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-12" - }, - { - "id": "player_221800", - "lastname": "Pierini", - "firstname": "Nicholas", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2015-07-01" - }, - { - "id": "player_222467", - "lastname": "Depaoli", - "firstname": "Fabio", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-01" - }, - { - "id": "player_222598", - "lastname": "Adjapong", - "firstname": "Claud", - "position": 2, - "quotation": 13, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2015-07-01" - }, - { - "id": "player_222683", - "lastname": "Kluivert", - "firstname": "Justin", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_222784", - "lastname": "Hernández", - "firstname": "Theo", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-06" - }, - { - "id": "player_223434", - "lastname": "Igor Julio", - "firstname": null, - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-01" - }, - { - "id": "player_223471", - "lastname": "Pezzella", - "firstname": "Salvatore", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-08-31" - }, - { - "id": "player_223476", - "lastname": "D'Orazio", - "firstname": "Ludovico", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-09-01" - }, - { - "id": "player_223479", - "lastname": "Ntube", - "firstname": "Michael", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-13" - }, - { - "id": "player_223540", - "lastname": "Satalino", - "firstname": "Giacomo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2017-08-12" - }, - { - "id": "player_223541", - "lastname": "Chiesa", - "firstname": "Federico", - "position": 4, - "quotation": 35, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2016-02-20" - }, - { - "id": "player_223723", - "lastname": "Tomiyasu", - "firstname": "Takehiro", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-09" - }, - { - "id": "player_223966", - "lastname": "Orsolini", - "firstname": "Riccardo", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-01" - }, - { - "id": "player_224024", - "lastname": "Lucas Paquetá", - "firstname": null, - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-01-03" - }, - { - "id": "player_224336", - "lastname": "Touré", - "firstname": "Idrissa", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-19" - }, - { - "id": "player_225479", - "lastname": "Vlahovic", - "firstname": "Dusan", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_225807", - "lastname": "Elmas", - "firstname": "Eljif", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-24" - }, - { - "id": "player_226257", - "lastname": "Armini", - "firstname": "Nicolò", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2017-12-06" - }, - { - "id": "player_226267", - "lastname": "Piccoli", - "firstname": "Roberto", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-01-26" - }, - { - "id": "player_226270", - "lastname": "Fagioli", - "firstname": "Nicolo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_226273", - "lastname": "Vergani", - "firstname": "Edoardo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-13" - }, - { - "id": "player_227444", - "lastname": "Milenkovic", - "firstname": "Nikola", - "position": 2, - "quotation": 22, - "ultraPosition": 20, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-07-01" - }, - { - "id": "player_228276", - "lastname": "Hristov", - "firstname": "Petko", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-07-17" - }, - { - "id": "player_228798", - "lastname": "Ünder", - "firstname": "Cengiz", - "position": 3, - "quotation": 22, - "ultraPosition": 32, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-16" - }, - { - "id": "player_229798", - "lastname": "Reca", - "firstname": "Arkadiusz", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-07-01" - }, - { - "id": "player_229853", - "lastname": "Stijepovic", - "firstname": "Ognjen", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-03-30" - }, - { - "id": "player_230152", - "lastname": "Schouten", - "firstname": "Jerdy", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-04" - }, - { - "id": "player_230540", - "lastname": "Loria", - "firstname": "Leonardo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-07-01" - }, - { - "id": "player_232057", - "lastname": "Varnier", - "firstname": "Marco", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-07-01" - }, - { - "id": "player_232061", - "lastname": "Kouamé", - "firstname": "Christian", - "position": 4, - "quotation": 17, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-13" - }, - { - "id": "player_233386", - "lastname": "Zanimacchia", - "firstname": "Luca", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Genoa", - "teamid": "990", - "joinDate": "2016-07-19" - }, - { - "id": "player_233543", - "lastname": "Chironi", - "firstname": "Gianmarco", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lecce", - "teamid": "130", - "joinDate": "2016-07-01" - }, - { - "id": "player_235093", - "lastname": "Hancko", - "firstname": "David", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_235224", - "lastname": "Brignola", - "firstname": "Enrico", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-08-02" - }, - { - "id": "player_235447", - "lastname": "Danzi", - "firstname": "Andrea", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2017-07-01" - }, - { - "id": "player_235454", - "lastname": "Sottil", - "firstname": "Riccardo", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-06-01" - }, - { - "id": "player_235455", - "lastname": "Gori", - "firstname": "Gabriele", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-07-01" - }, - { - "id": "player_235585", - "lastname": "Daniel Fuzato", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-09" - }, - { - "id": "player_235630", - "lastname": "Antonucci", - "firstname": "Mirko", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Roma", - "teamid": "121", - "joinDate": "2016-09-02" - }, - { - "id": "player_235633", - "lastname": "Spinozzi", - "firstname": "Emanuele", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2016-09-02" - }, - { - "id": "player_235879", - "lastname": "Ravaglia", - "firstname": "Federico", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Bologna", - "teamid": "123", - "joinDate": "2016-09-10" - }, - { - "id": "player_240271", - "lastname": "Traore", - "firstname": "Abdoulaye", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-07-27" - }, - { - "id": "player_240939", - "lastname": "Peeters", - "firstname": "Daouda", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-07-05" - }, - { - "id": "player_241100", - "lastname": "Franchini", - "firstname": "Simone", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2016-09-29" - }, - { - "id": "player_241276", - "lastname": "El Yamiq", - "firstname": "Jawad", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-01-31" - }, - { - "id": "player_242058", - "lastname": "Kean", - "firstname": "Moise", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-10-14" - }, - { - "id": "player_242869", - "lastname": "Farcas", - "firstname": "Ricardo", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-08-11" - }, - { - "id": "player_243714", - "lastname": "Biancu", - "firstname": "Roberto", - "position": 3, - "quotation": 2, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2016-11-18" - }, - { - "id": "player_243837", - "lastname": "Thiam", - "firstname": "Demba", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Spal", - "teamid": "1454", - "joinDate": "2016-11-01" - }, - { - "id": "player_244366", - "lastname": "Candela", - "firstname": "Antonio", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-01-31" - }, - { - "id": "player_245390", - "lastname": "Mawuli", - "firstname": "Shaka", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Spal", - "teamid": "1454", - "joinDate": "2016-12-28" - }, - { - "id": "player_245414", - "lastname": "Zaniolo", - "firstname": "Nicolò", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_245842", - "lastname": "Gatti", - "firstname": "Riccardo", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-01-10" - }, - { - "id": "player_245868", - "lastname": "Capanni", - "firstname": "Gabriele", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-21" - }, - { - "id": "player_246877", - "lastname": "Cerofolini", - "firstname": "Michele", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-01-28" - }, - { - "id": "player_247386", - "lastname": "Bahlouli", - "firstname": "Mohamed", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-02-16" - }, - { - "id": "player_247632", - "lastname": "Pedro Neto", - "firstname": null, - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-07-01" - }, - { - "id": "player_247690", - "lastname": "Tessiore", - "firstname": "Andrea", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-02-11" - }, - { - "id": "player_248508", - "lastname": "Moreno Taboada", - "firstname": "Pablo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-03-15" - }, - { - "id": "player_248667", - "lastname": "Gozzi Iweru", - "firstname": "Paolo", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-04-12" - }, - { - "id": "player_248670", - "lastname": "Riccardi", - "firstname": "Alessio", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-08-31" - }, - { - "id": "player_249710", - "lastname": "Coulibaly", - "firstname": "Mamadou", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-07-10" - }, - { - "id": "player_250988", - "lastname": "Roric", - "firstname": "Maj", - "position": 3, - "quotation": 2, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_27251", - "lastname": "Proto", - "firstname": "Silvio", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-07-04" - }, - { - "id": "player_27256", - "lastname": "Bruno Alves", - "firstname": null, - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-07-12" - }, - { - "id": "player_27300", - "lastname": "Cristián Zapata", - "firstname": null, - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-02" - }, - { - "id": "player_27353", - "lastname": "Radu", - "firstname": "Stefan", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2008-01-28" - }, - { - "id": "player_27794", - "lastname": "Valero", - "firstname": "Borja", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2017-07-11" - }, - { - "id": "player_28277", - "lastname": "Bonucci", - "firstname": "Leonardo", - "position": 2, - "quotation": 25, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-08-02" - }, - { - "id": "player_28388", - "lastname": "Mancosu", - "firstname": "Marco", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Lecce", - "teamid": "130", - "joinDate": "2016-07-07" - }, - { - "id": "player_28592", - "lastname": "Floccari", - "firstname": "Sergio", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Spal", - "teamid": "1454", - "joinDate": "2017-01-19" - }, - { - "id": "player_32269", - "lastname": "Dzemaili", - "firstname": "Blerim", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2016-08-18" - }, - { - "id": "player_32281", - "lastname": "Godín", - "firstname": "Diego", - "position": 2, - "quotation": 25, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-01" - }, - { - "id": "player_32286", - "lastname": "Di Carmine", - "firstname": "Samuel", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_33871", - "lastname": "Klavan", - "firstname": "Ragnar", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-08-17" - }, - { - "id": "player_37020", - "lastname": "Iacoponi", - "firstname": "Simone", - "position": 2, - "quotation": 11, - "ultraPosition": 21, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-01-31" - }, - { - "id": "player_37412", - "lastname": "Birsa", - "firstname": "Valter", - "position": 3, - "quotation": 13, - "ultraPosition": 32, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-01-09" - }, - { - "id": "player_37971", - "lastname": "Matuidi", - "firstname": "Blaise", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-08-18" - }, - { - "id": "player_38476", - "lastname": "Peluso", - "firstname": "Federico", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2014-07-04" - }, - { - "id": "player_38479", - "lastname": "Marchetti", - "firstname": "Federico", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-04" - }, - { - "id": "player_38833", - "lastname": "Nainggolan", - "firstname": "Radja", - "position": 3, - "quotation": 16, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_38986", - "lastname": "Vitale", - "firstname": "Luigi", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-01-31" - }, - { - "id": "player_39167", - "lastname": "Ranocchia", - "firstname": "Andrea", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2011-01-03" - }, - { - "id": "player_39323", - "lastname": "Scaglia", - "firstname": "Luigi", - "position": 3, - "quotation": 3, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-01-31" - }, - { - "id": "player_39351", - "lastname": "Cissé", - "firstname": "Karamoko", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-07-01" - }, - { - "id": "player_39354", - "lastname": "Aresti", - "firstname": "Simone", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-07-01" - }, - { - "id": "player_39462", - "lastname": "Biglia", - "firstname": "Lucas", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-16" - }, - { - "id": "player_39568", - "lastname": "Pelagotti", - "firstname": "Alberto", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Brescia", - "teamid": "458", - "joinDate": "2017-08-31" - }, - { - "id": "player_39748", - "lastname": "Théréau", - "firstname": "Cyril", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-08-31" - }, - { - "id": "player_39781", - "lastname": "De Maio", - "firstname": "Sebastien", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-07-01" - }, - { - "id": "player_39816", - "lastname": "Khedira", - "firstname": "Sami", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2015-07-01" - }, - { - "id": "player_39826", - "lastname": "D'Ambrosio", - "firstname": "Danilo", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Inter", - "teamid": "127", - "joinDate": "2014-01-30" - }, - { - "id": "player_39830", - "lastname": "Poli", - "firstname": "Andrea", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2017-07-01" - }, - { - "id": "player_40232", - "lastname": "Higuaín", - "firstname": "Gonzalo", - "position": 4, - "quotation": 14, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-07-26" - }, - { - "id": "player_40436", - "lastname": "Radovanovic", - "firstname": "Ivan", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-01-31" - }, - { - "id": "player_40792", - "lastname": "Fazio", - "firstname": "Federico", - "position": 2, - "quotation": 14, - "ultraPosition": 20, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-15" - }, - { - "id": "player_4126", - "lastname": "Buffon", - "firstname": "Gianluigi", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-04" - }, - { - "id": "player_41792", - "lastname": "Ramsey", - "firstname": "Aaron", - "position": 3, - "quotation": 19, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-01" - }, - { - "id": "player_420879", - "lastname": "Strefezza", - "firstname": "Gabriel", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2017-03-30" - }, - { - "id": "player_42173", - "lastname": "Caicedo", - "firstname": "Felipe", - "position": 4, - "quotation": 9, - "ultraPosition": 40, - "club": "Lazio", - "teamid": "129", - "joinDate": "2017-08-02" - }, - { - "id": "player_421768", - "lastname": "Megelaitis", - "firstname": "Linas", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-01" - }, - { - "id": "player_422039", - "lastname": "Saveljevs", - "firstname": "Aleksejs", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-07-01" - }, - { - "id": "player_422187", - "lastname": "Yayi Mpie", - "firstname": "Jamie", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-02-01" - }, - { - "id": "player_422216", - "lastname": "Cavagnera", - "firstname": "Alexandro", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-08-14" - }, - { - "id": "player_422295", - "lastname": "Baldé", - "firstname": "Ibourahima", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-04-29" - }, - { - "id": "player_422495", - "lastname": "Carraro", - "firstname": "Marco", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-07-01" - }, - { - "id": "player_423118", - "lastname": "Lella", - "firstname": "Nunzio", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-08-03" - }, - { - "id": "player_424044", - "lastname": "Traore", - "firstname": "Hamed Junior", - "position": 3, - "quotation": 9, - "ultraPosition": 32, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-12" - }, - { - "id": "player_424146", - "lastname": "Opoku", - "firstname": "Nicholas", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-07-13" - }, - { - "id": "player_42426", - "lastname": "Tonelli", - "firstname": "Lorenzo", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Napoli", - "teamid": "459", - "joinDate": "2016-07-01" - }, - { - "id": "player_424800", - "lastname": "Daga", - "firstname": "Riccardo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-05-27" - }, - { - "id": "player_424813", - "lastname": "Vaško", - "firstname": "Filip", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-05-27" - }, - { - "id": "player_425096", - "lastname": "Milesi", - "firstname": "Alessandro", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-08-24" - }, - { - "id": "player_42544", - "lastname": "Dzeko", - "firstname": "Edin", - "position": 4, - "quotation": 21, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2016-07-01" - }, - { - "id": "player_42593", - "lastname": "Kolarov", - "firstname": "Aleksandar", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-22" - }, - { - "id": "player_427148", - "lastname": "Zurkowski", - "firstname": "Szymon", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-01-28" - }, - { - "id": "player_428236", - "lastname": "Mastaj", - "firstname": "Davide", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-04-12" - }, - { - "id": "player_428585", - "lastname": "Bremer", - "firstname": null, - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-07-10" - }, - { - "id": "player_428610", - "lastname": "Bruno Jordao", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2017-08-31" - }, - { - "id": "player_428785", - "lastname": "Chabot", - "firstname": "Julian", - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-01" - }, - { - "id": "player_42886", - "lastname": "Gazzola", - "firstname": "Marcello", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-01-16" - }, - { - "id": "player_428897", - "lastname": "Eddie Salcedo", - "firstname": null, - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-13" - }, - { - "id": "player_429187", - "lastname": "Walukiewicz", - "firstname": "Sebastian", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-01-15" - }, - { - "id": "player_429367", - "lastname": "Sala", - "firstname": "Marco", - "position": 2, - "quotation": 2, - "ultraPosition": 21, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-01" - }, - { - "id": "player_430368", - "lastname": "Skov Olsen", - "firstname": "Andreas", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-24" - }, - { - "id": "player_430788", - "lastname": "Ibañez", - "firstname": null, - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-01-29" - }, - { - "id": "player_430847", - "lastname": "Terzic", - "firstname": "Aleksa", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-07-01" - }, - { - "id": "player_431079", - "lastname": "Augello", - "firstname": "Tommaso", - "position": 2, - "quotation": 5, - "ultraPosition": 21, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-07-09" - }, - { - "id": "player_431799", - "lastname": "Baden Frederiksen", - "firstname": "Nikolai", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-19" - }, - { - "id": "player_43191", - "lastname": "Lucas Leiva", - "firstname": null, - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2017-07-18" - }, - { - "id": "player_432105", - "lastname": "Pessina", - "firstname": "Matteo", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-01" - }, - { - "id": "player_432157", - "lastname": "Dini", - "firstname": "Andrea", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-08-01" - }, - { - "id": "player_432221", - "lastname": "Farabegoli", - "firstname": "Tommaso", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-07-24" - }, - { - "id": "player_432422", - "lastname": "Tonali", - "firstname": "Sandro", - "position": 3, - "quotation": 16, - "ultraPosition": 31, - "club": "Brescia", - "teamid": "458", - "joinDate": "2017-08-01" - }, - { - "id": "player_43274", - "lastname": "Gervinho", - "firstname": null, - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-08-17" - }, - { - "id": "player_432760", - "lastname": "Soncin", - "firstname": "Matteo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-08-07" - }, - { - "id": "player_433059", - "lastname": "Kumbulla", - "firstname": "Marash", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Verona", - "teamid": "126", - "joinDate": "2017-07-01" - }, - { - "id": "player_433128", - "lastname": "Turati", - "firstname": "Stefano", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-09-21" - }, - { - "id": "player_433130", - "lastname": "Corbo", - "firstname": "Gabriele", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-08-06" - }, - { - "id": "player_434619", - "lastname": "Cargnelutti", - "firstname": "Riccardo", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-08-31" - }, - { - "id": "player_435580", - "lastname": "Micin", - "firstname": "Petar", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-07-01" - }, - { - "id": "player_43693", - "lastname": "Cáceres", - "firstname": "Martín", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-01-08" - }, - { - "id": "player_437747", - "lastname": "Koffi", - "firstname": "Christian", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-05-10" - }, - { - "id": "player_437780", - "lastname": "Gaetano", - "firstname": "Gianluca", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-01" - }, - { - "id": "player_437782", - "lastname": "D'Andrea", - "firstname": "Alessandro", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-09-01" - }, - { - "id": "player_437784", - "lastname": "Nicolussi Caviglia", - "firstname": "Hans", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-03-07" - }, - { - "id": "player_437791", - "lastname": "Di Pardo", - "firstname": "Alessandro", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_437802", - "lastname": "Portanova", - "firstname": "Manolo", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-05-25" - }, - { - "id": "player_437877", - "lastname": "Semeraro", - "firstname": "Francesco", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-09-01" - }, - { - "id": "player_439128", - "lastname": "Demiral", - "firstname": "Merih", - "position": 2, - "quotation": 16, - "ultraPosition": 20, - "club": "Juventus", - "teamid": "128", - "joinDate": "2019-07-05" - }, - { - "id": "player_439921", - "lastname": "Medja Beloko", - "firstname": "Nicky", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_439928", - "lastname": "Ladinetti", - "firstname": "Riccardo", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-10-28" - }, - { - "id": "player_440705", - "lastname": "Gasparini", - "firstname": "Manuel", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-11-18" - }, - { - "id": "player_441170", - "lastname": "Pitzalis", - "firstname": "Mattia", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2017-11-27" - }, - { - "id": "player_441573", - "lastname": "Forte", - "firstname": "Riccardo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-12-05" - }, - { - "id": "player_442430", - "lastname": "Barrow", - "firstname": "Musa", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-12-19" - }, - { - "id": "player_442661", - "lastname": "Millico", - "firstname": "Vincenzo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2017-12-29" - }, - { - "id": "player_444020", - "lastname": "Vera", - "firstname": "Brayan", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-01" - }, - { - "id": "player_444433", - "lastname": "Curcio", - "firstname": "Felipe", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-01-23" - }, - { - "id": "player_444628", - "lastname": "Oliva", - "firstname": "Christian", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-07-01" - }, - { - "id": "player_445044", - "lastname": "Kulusevski", - "firstname": "Dejan", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-18" - }, - { - "id": "player_445085", - "lastname": "Schirò", - "firstname": "Thomas", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-02-13" - }, - { - "id": "player_445091", - "lastname": "Colidio", - "firstname": "Facundo", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_445095", - "lastname": "Nolan", - "firstname": "Ryan", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_446039", - "lastname": "Tsadjout", - "firstname": "Frank", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-02-17" - }, - { - "id": "player_446969", - "lastname": "Raspadori", - "firstname": "Giacomo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-03-05" - }, - { - "id": "player_447755", - "lastname": "Viviani", - "firstname": "Mattia", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-03-23" - }, - { - "id": "player_449738", - "lastname": "Torrasi", - "firstname": "Emanuele", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-04-28" - }, - { - "id": "player_449739", - "lastname": "Colpani", - "firstname": "Andrea", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-04-28" - }, - { - "id": "player_449750", - "lastname": "Ferigra", - "firstname": "Erick", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-04-28" - }, - { - "id": "player_450015", - "lastname": "Russo", - "firstname": "Alessandro", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-30" - }, - { - "id": "player_450024", - "lastname": "Rovella", - "firstname": "Nicolò", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-02-01" - }, - { - "id": "player_45034", - "lastname": "Perisic", - "firstname": "Ivan", - "position": 3, - "quotation": 23, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2015-08-30" - }, - { - "id": "player_451016", - "lastname": "Peli", - "firstname": "Lorenzo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-05-12" - }, - { - "id": "player_451258", - "lastname": "Zennaro", - "firstname": "Mattia", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-01-30" - }, - { - "id": "player_45156", - "lastname": "Candreva", - "firstname": "Antonio", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2016-08-03" - }, - { - "id": "player_455779", - "lastname": "Beruatto", - "firstname": "Pietro", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_455986", - "lastname": "Golfo", - "firstname": "Francesco", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-07-01" - }, - { - "id": "player_457734", - "lastname": "Schafer", - "firstname": "Andras", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-01-25" - }, - { - "id": "player_458059", - "lastname": "Brescianini", - "firstname": "Marco", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-07-01" - }, - { - "id": "player_458381", - "lastname": "Caio Vinicius", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-05" - }, - { - "id": "player_459362", - "lastname": "Tòfol Montiel", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-27" - }, - { - "id": "player_460655", - "lastname": "Nikolic", - "firstname": "Lazar", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-08-03" - }, - { - "id": "player_46197", - "lastname": "Mandzukic", - "firstname": "Mario", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Juventus", - "teamid": "128", - "joinDate": "2015-07-01" - }, - { - "id": "player_462430", - "lastname": "Bagheria", - "firstname": "Fabrizio", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-07-31" - }, - { - "id": "player_462431", - "lastname": "Carriero", - "firstname": "Giuseppe", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-07-01" - }, - { - "id": "player_462432", - "lastname": "Di Maggio", - "firstname": "Andrea", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-08-11" - }, - { - "id": "player_462484", - "lastname": "Gallo", - "firstname": "Antonino", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-25" - }, - { - "id": "player_462485", - "lastname": "Coulange", - "firstname": "Thomas", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-07-01" - }, - { - "id": "player_462508", - "lastname": "Ferrari", - "firstname": "Franco", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Genoa", - "teamid": "990", - "joinDate": "2016-08-31" - }, - { - "id": "player_462523", - "lastname": "Ferraresi", - "firstname": "Stefano", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-08-01" - }, - { - "id": "player_462537", - "lastname": "Carnesecchi", - "firstname": "Marco", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-01-13" - }, - { - "id": "player_463237", - "lastname": "Belkheir", - "firstname": "Mouhamed", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-08-17" - }, - { - "id": "player_463289", - "lastname": "Pelle", - "firstname": "Federico", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-08-18" - }, - { - "id": "player_463904", - "lastname": "Angelini", - "firstname": "Fabrizio", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-08-24" - }, - { - "id": "player_464770", - "lastname": "Cangiano", - "firstname": "Gianmarco", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-09-01" - }, - { - "id": "player_465614", - "lastname": "Adorante", - "firstname": "Andrea", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-01" - }, - { - "id": "player_465637", - "lastname": "Pirola", - "firstname": "Lorenzo", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-13" - }, - { - "id": "player_465661", - "lastname": "Esposito", - "firstname": "Sebastiano", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-03-14" - }, - { - "id": "player_465665", - "lastname": "Rizzo", - "firstname": "Nicholas", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-04" - }, - { - "id": "player_465737", - "lastname": "Daniele", - "firstname": "Antonio Pio", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-10-01" - }, - { - "id": "player_465803", - "lastname": "Zedadka", - "firstname": "Karim", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-03-16" - }, - { - "id": "player_466583", - "lastname": "Chiesa", - "firstname": "Mattia", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-06-01" - }, - { - "id": "player_466946", - "lastname": "Idasiak", - "firstname": "Hubert Dawid", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-01" - }, - { - "id": "player_46696", - "lastname": "Pjanic", - "firstname": "Miralem", - "position": 3, - "quotation": 32, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2016-07-01" - }, - { - "id": "player_467101", - "lastname": "Camara", - "firstname": "Drissa", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-10-05" - }, - { - "id": "player_468426", - "lastname": "Agoume", - "firstname": "Lucien", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Inter", - "teamid": "127", - "joinDate": "2019-07-05" - }, - { - "id": "player_469322", - "lastname": "Milli", - "firstname": "Joakim", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-30" - }, - { - "id": "player_469374", - "lastname": "Doratiotto", - "firstname": "Riccardo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-10-20" - }, - { - "id": "player_471435", - "lastname": "Alia", - "firstname": "Marco", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-11-28" - }, - { - "id": "player_471436", - "lastname": "Rezzi", - "firstname": "Edoardo", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-11-28" - }, - { - "id": "player_471954", - "lastname": "Verde", - "firstname": "Francesco", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-12-05" - }, - { - "id": "player_473341", - "lastname": "Caleb Okoli", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2018-12-25" - }, - { - "id": "player_474781", - "lastname": "Silva", - "firstname": "Jorge", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-01-11" - }, - { - "id": "player_47545", - "lastname": "Rossettini", - "firstname": "Luca", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-12" - }, - { - "id": "player_476195", - "lastname": "Davordzie", - "firstname": "Carl", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2018-11-22" - }, - { - "id": "player_476504", - "lastname": "Zitelli", - "firstname": "Mauro", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-01-30" - }, - { - "id": "player_476505", - "lastname": "Kalaj", - "firstname": "Sergio", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-01-30" - }, - { - "id": "player_476578", - "lastname": "Avantaggiato", - "firstname": "Alessandro", - "position": 4, - "quotation": 2, - "ultraPosition": 40, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-02-01" - }, - { - "id": "player_476625", - "lastname": "Trimboli", - "firstname": "Simone", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-02-01" - }, - { - "id": "player_476675", - "lastname": "Spina", - "firstname": "Marco", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-02-01" - }, - { - "id": "player_476933", - "lastname": "Felici", - "firstname": "Mattia", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-02-01" - }, - { - "id": "player_477462", - "lastname": "Pierno", - "firstname": "Roberto", - "position": 2, - "quotation": 1, - "ultraPosition": 21, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-02-01" - }, - { - "id": "player_478573", - "lastname": "Lucas", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-01-01" - }, - { - "id": "player_478574", - "lastname": "Amayah", - "firstname": "Precious", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2017-07-01" - }, - { - "id": "player_478960", - "lastname": "Singo", - "firstname": "Wilfried Stephane", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2019-03-01" - }, - { - "id": "player_478963", - "lastname": "Bocic", - "firstname": "Milos", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-03-02" - }, - { - "id": "player_479597", - "lastname": "Marongiu", - "firstname": "Alessandro", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-03-09" - }, - { - "id": "player_480483", - "lastname": "Luan Capanni", - "firstname": null, - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-03-16" - }, - { - "id": "player_480489", - "lastname": "Battistella", - "firstname": "Thomas", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-03-16" - }, - { - "id": "player_482075", - "lastname": "Doratiotto", - "firstname": "Fabio", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-04-05" - }, - { - "id": "player_482097", - "lastname": "Njie", - "firstname": "Fallou", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-04-05" - }, - { - "id": "player_482545", - "lastname": "Kasa", - "firstname": "Redi", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-04-13" - }, - { - "id": "player_483264", - "lastname": "Cambiaghi", - "firstname": "Nicolò", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-04-24" - }, - { - "id": "player_48332", - "lastname": "Karnezis", - "firstname": "Orestis", - "position": 1, - "quotation": 8, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-05" - }, - { - "id": "player_484471", - "lastname": "Furlanetto", - "firstname": "Alessio", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-05-11" - }, - { - "id": "player_484877", - "lastname": "Joao Piai", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-05-17" - }, - { - "id": "player_48494", - "lastname": "Shakhov", - "firstname": "Evgen", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-01" - }, - { - "id": "player_485252", - "lastname": "Bianchi", - "firstname": "Alessio", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-05-25" - }, - { - "id": "player_485254", - "lastname": "Cerbara", - "firstname": "Alessandro", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-05-25" - }, - { - "id": "player_485255", - "lastname": "Roberto De Angelis", - "firstname": null, - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-05-25" - }, - { - "id": "player_485264", - "lastname": "Ghion", - "firstname": "Andrea", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-05-25" - }, - { - "id": "player_485265", - "lastname": "Lakti", - "firstname": "Erald", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-05-25" - }, - { - "id": "player_486635", - "lastname": "Liguori", - "firstname": "Luigi", - "position": 3, - "quotation": 1, - "ultraPosition": 32, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-01" - }, - { - "id": "player_487495", - "lastname": "Chiorra", - "firstname": "Niccolò", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-07-01" - }, - { - "id": "player_488253", - "lastname": "Maldini", - "firstname": "Daniel", - "position": 3, - "quotation": 3, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-21" - }, - { - "id": "player_488254", - "lastname": "Capone", - "firstname": "Andrea", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-21" - }, - { - "id": "player_488255", - "lastname": "Mionic", - "firstname": "Antonio", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Milan", - "teamid": "120", - "joinDate": "2019-07-21" - }, - { - "id": "player_48844", - "lastname": "Ospina", - "firstname": "David", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-01" - }, - { - "id": "player_488619", - "lastname": "Minelli", - "firstname": "Alessandro", - "position": 2, - "quotation": 1, - "ultraPosition": 20, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-26" - }, - { - "id": "player_49323", - "lastname": "Nzonzi", - "firstname": "Steven", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-08-14" - }, - { - "id": "player_49391", - "lastname": "Faraoni", - "firstname": "Marco", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-01-15" - }, - { - "id": "player_49417", - "lastname": "Bonaventura", - "firstname": "Giacomo", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Milan", - "teamid": "120", - "joinDate": "2014-09-01" - }, - { - "id": "player_49485", - "lastname": "Asamoah", - "firstname": "Kwadwo", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_49569", - "lastname": "Paloschi", - "firstname": "Alberto", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-07-01" - }, - { - "id": "player_49719", - "lastname": "Vigorito", - "firstname": "Mauro", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-31" - }, - { - "id": "player_49720", - "lastname": "Ragatzu", - "firstname": "Daniele", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-01-29" - }, - { - "id": "player_49940", - "lastname": "Regini", - "firstname": "Vasco", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2009-01-26" - }, - { - "id": "player_49988", - "lastname": "Siligardi", - "firstname": "Luca", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-07-15" - }, - { - "id": "player_50246", - "lastname": "Salamon", - "firstname": "Bartosz", - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-07-01" - }, - { - "id": "player_50322", - "lastname": "Colombi", - "firstname": "Simone", - "position": 1, - "quotation": 5, - "ultraPosition": 10, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-11" - }, - { - "id": "player_50352", - "lastname": "Calderoni", - "firstname": "Marco", - "position": 2, - "quotation": 3, - "ultraPosition": 21, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-18" - }, - { - "id": "player_50779", - "lastname": "Ekdal", - "firstname": "Albin", - "position": 3, - "quotation": 14, - "ultraPosition": 31, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-08-14" - }, - { - "id": "player_50821", - "lastname": "Caputo", - "firstname": "Francesco", - "position": 4, - "quotation": 23, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-13" - }, - { - "id": "player_50933", - "lastname": "Rincón", - "firstname": "Tomás", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-02-05" - }, - { - "id": "player_50937", - "lastname": "Ansaldi", - "firstname": "Cristian", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Torino", - "teamid": "135", - "joinDate": "2019-07-01" - }, - { - "id": "player_51188", - "lastname": "Cacciatore", - "firstname": "Fabrizio", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2019-07-01" - }, - { - "id": "player_51221", - "lastname": "Parolo", - "firstname": "Marco", - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2014-07-01" - }, - { - "id": "player_51303", - "lastname": "Valdifiori", - "firstname": "Mirko", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-08-16" - }, - { - "id": "player_51732", - "lastname": "Callejón", - "firstname": "José", - "position": 4, - "quotation": 18, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2013-07-10" - }, - { - "id": "player_51960", - "lastname": "Falque", - "firstname": "Iago", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2017-01-04" - }, - { - "id": "player_52049", - "lastname": "Lulic", - "firstname": "Senad", - "position": 3, - "quotation": 10, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2011-06-16" - }, - { - "id": "player_52775", - "lastname": "Nkoulou", - "firstname": "Nicolas", - "position": 2, - "quotation": 25, - "ultraPosition": 20, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-07-01" - }, - { - "id": "player_52800", - "lastname": "Angella", - "firstname": "Gabriele", - "position": 2, - "quotation": 3, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2016-07-01" - }, - { - "id": "player_52857", - "lastname": "Tachtsidis", - "firstname": "Panagiotis", - "position": 3, - "quotation": 4, - "ultraPosition": 31, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-01" - }, - { - "id": "player_52876", - "lastname": "Sandro", - "firstname": null, - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-03" - }, - { - "id": "player_53344", - "lastname": "Pisacane", - "firstname": "Fabio", - "position": 2, - "quotation": 11, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2015-07-14" - }, - { - "id": "player_53686", - "lastname": "Danilo", - "firstname": null, - "position": 2, - "quotation": 6, - "ultraPosition": 20, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-01" - }, - { - "id": "player_53693", - "lastname": "Alex Sandro", - "firstname": null, - "position": 2, - "quotation": 23, - "ultraPosition": 21, - "club": "Juventus", - "teamid": "128", - "joinDate": "2015-08-20" - }, - { - "id": "player_54782", - "lastname": "Pastore", - "firstname": "Javier", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-06-26" - }, - { - "id": "player_54917", - "lastname": "Mertens", - "firstname": "Dries", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2013-06-25" - }, - { - "id": "player_55083", - "lastname": "Sportiello", - "firstname": "Marco", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2011-06-01" - }, - { - "id": "player_55340", - "lastname": "Perotti", - "firstname": "Diego", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2016-07-01" - }, - { - "id": "player_55604", - "lastname": "Santon", - "firstname": "Davide", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_55654", - "lastname": "Farias", - "firstname": "Diego", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2014-08-06" - }, - { - "id": "player_55712", - "lastname": "Ilicic", - "firstname": "Josip", - "position": 3, - "quotation": 30, - "ultraPosition": 32, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-05" - }, - { - "id": "player_55776", - "lastname": "Gómez", - "firstname": "Alejandro", - "position": 3, - "quotation": 30, - "ultraPosition": 32, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2014-09-01" - }, - { - "id": "player_55885", - "lastname": "Da Costa", - "firstname": "Ângelo", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Bologna", - "teamid": "123", - "joinDate": "2015-01-20" - }, - { - "id": "player_56486", - "lastname": "Silvestri", - "firstname": "Marco", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Verona", - "teamid": "126", - "joinDate": "2017-07-19" - }, - { - "id": "player_56733", - "lastname": "Jajalo", - "firstname": "Mato", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-07-01" - }, - { - "id": "player_56960", - "lastname": "Vargic", - "firstname": "Ivan", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-07-01" - }, - { - "id": "player_56999", - "lastname": "Badelj", - "firstname": "Milan", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-08-01" - }, - { - "id": "player_57107", - "lastname": "Saponara", - "firstname": "Riccardo", - "position": 3, - "quotation": 11, - "ultraPosition": 32, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_57195", - "lastname": "Douglas Costa", - "firstname": null, - "position": 3, - "quotation": 22, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-07-12" - }, - { - "id": "player_57527", - "lastname": "Musacchio", - "firstname": "Mateo", - "position": 2, - "quotation": 12, - "ultraPosition": 20, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-01" - }, - { - "id": "player_59046", - "lastname": "Immobile", - "firstname": "Ciro", - "position": 4, - "quotation": 32, - "ultraPosition": 40, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-07-27" - }, - { - "id": "player_59326", - "lastname": "Sepe", - "firstname": "Luigi", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-09" - }, - { - "id": "player_59338", - "lastname": "Pinsoglio", - "firstname": "Carlo", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Juventus", - "teamid": "128", - "joinDate": "2009-01-04" - }, - { - "id": "player_59779", - "lastname": "Obiang", - "firstname": "Pedro", - "position": 3, - "quotation": 15, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2019-07-24" - }, - { - "id": "player_59886", - "lastname": "Zukanovic", - "firstname": "Ervin", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-01" - }, - { - "id": "player_59920", - "lastname": "Roberto Soriano", - "firstname": null, - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-01" - }, - { - "id": "player_59936", - "lastname": "Szczesny", - "firstname": "Wojciech", - "position": 1, - "quotation": 26, - "ultraPosition": 10, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-07-19" - }, - { - "id": "player_59963", - "lastname": "Gonalons", - "firstname": "Maxime", - "position": 3, - "quotation": 5, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-03" - }, - { - "id": "player_59972", - "lastname": "Ragusa", - "firstname": "Antonino", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_60017", - "lastname": "Marrone", - "firstname": "Luca", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-07-01" - }, - { - "id": "player_60069", - "lastname": "Tremolada", - "firstname": "Luca", - "position": 3, - "quotation": 6, - "ultraPosition": 32, - "club": "Brescia", - "teamid": "458", - "joinDate": "2018-07-17" - }, - { - "id": "player_60071", - "lastname": "Destro", - "firstname": "Mattia", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Bologna", - "teamid": "123", - "joinDate": "2015-08-20" - }, - { - "id": "player_60072", - "lastname": "Crescenzi", - "firstname": "Alessandro", - "position": 2, - "quotation": 7, - "ultraPosition": 21, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-07-13" - }, - { - "id": "player_60074", - "lastname": "D'Alessandro", - "firstname": "Marco", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-10" - }, - { - "id": "player_60270", - "lastname": "Zaza", - "firstname": "Simone", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Torino", - "teamid": "135", - "joinDate": "2018-08-17" - }, - { - "id": "player_60655", - "lastname": "Ionita", - "firstname": "Artur", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2016-07-01" - }, - { - "id": "player_60715", - "lastname": "Castro", - "firstname": "Lucas", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-07-01" - }, - { - "id": "player_60800", - "lastname": "Badu", - "firstname": "Emmanuel", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2019-06-14" - }, - { - "id": "player_60849", - "lastname": "Ceppitelli", - "firstname": "Luca", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2014-08-08" - }, - { - "id": "player_60999", - "lastname": "Scozzarella", - "firstname": "Matteo", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2017-01-08" - }, - { - "id": "player_61118", - "lastname": "Rafael Tolói", - "firstname": null, - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2015-08-26" - }, - { - "id": "player_61239", - "lastname": "Rafael Cabral", - "firstname": null, - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2018-07-22" - }, - { - "id": "player_61548", - "lastname": "Gabbiadini", - "firstname": "Manolo", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2019-01-11" - }, - { - "id": "player_61824", - "lastname": "Berisha", - "firstname": "Etrit", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-06" - }, - { - "id": "player_62067", - "lastname": "Berisha", - "firstname": "Valon", - "position": 3, - "quotation": 8, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-07-03" - }, - { - "id": "player_62305", - "lastname": "Chiriches", - "firstname": "Vlad", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Napoli", - "teamid": "459", - "joinDate": "2015-07-30" - }, - { - "id": "player_66228", - "lastname": "Djuricic", - "firstname": "Filip", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-07-01" - }, - { - "id": "player_66733", - "lastname": "Cuadrado", - "firstname": "Juan", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Juventus", - "teamid": "128", - "joinDate": "2017-05-23" - }, - { - "id": "player_66806", - "lastname": "Manolas", - "firstname": "Kostas", - "position": 2, - "quotation": 30, - "ultraPosition": 20, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-01" - }, - { - "id": "player_67977", - "lastname": "Pavoletti", - "firstname": "Leonardo", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2018-07-01" - }, - { - "id": "player_68592", - "lastname": "Strinic", - "firstname": "Ivan", - "position": 2, - "quotation": 6, - "ultraPosition": 21, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-07-01" - }, - { - "id": "player_68659", - "lastname": "Stryger Larsen", - "firstname": "Jens", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-08-24" - }, - { - "id": "player_68717", - "lastname": "Saraniti", - "firstname": "Andrea", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-01-26" - }, - { - "id": "player_68915", - "lastname": "Lucioni", - "firstname": "Fabio", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-20" - }, - { - "id": "player_69143", - "lastname": "Kucka", - "firstname": "Juraj", - "position": 3, - "quotation": 12, - "ultraPosition": 31, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-01-15" - }, - { - "id": "player_69305", - "lastname": "Rodríguez", - "firstname": "Ricardo", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-01" - }, - { - "id": "player_71032", - "lastname": "Babacar", - "firstname": "Khouma", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-07-01" - }, - { - "id": "player_71799", - "lastname": "Cionek", - "firstname": "Thiago", - "position": 2, - "quotation": 10, - "ultraPosition": 20, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-01-13" - }, - { - "id": "player_72486", - "lastname": "Nestorovski", - "firstname": "Ilija", - "position": 4, - "quotation": 16, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2019-07-26" - }, - { - "id": "player_72738", - "lastname": "Rômulo", - "firstname": null, - "position": 3, - "quotation": 11, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2018-07-11" - }, - { - "id": "player_73709", - "lastname": "Rossi", - "firstname": "Francesco", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2009-07-01" - }, - { - "id": "player_7485", - "lastname": "Pegolo", - "firstname": "Gianluca", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2013-09-02" - }, - { - "id": "player_75592", - "lastname": "Insigne", - "firstname": "Lorenzo", - "position": 4, - "quotation": 26, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2009-07-01" - }, - { - "id": "player_75770", - "lastname": "Rafael", - "firstname": null, - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2016-07-08" - }, - { - "id": "player_76100", - "lastname": "Falcinelli", - "firstname": "Diego", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-04" - }, - { - "id": "player_76623", - "lastname": "Nuytinck", - "firstname": "Bram", - "position": 2, - "quotation": 8, - "ultraPosition": 20, - "club": "Udinese", - "teamid": "136", - "joinDate": "2017-07-29" - }, - { - "id": "player_77454", - "lastname": "Borini", - "firstname": "Fabio", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-07-01" - }, - { - "id": "player_78091", - "lastname": "Ramírez", - "firstname": "Gastón", - "position": 3, - "quotation": 14, - "ultraPosition": 32, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-08-04" - }, - { - "id": "player_78109", - "lastname": "Santander", - "firstname": "Federico", - "position": 4, - "quotation": 13, - "ultraPosition": 40, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-01" - }, - { - "id": "player_78140", - "lastname": "de Vrij", - "firstname": "Stefan", - "position": 2, - "quotation": 26, - "ultraPosition": 20, - "club": "Inter", - "teamid": "127", - "joinDate": "2018-07-01" - }, - { - "id": "player_78796", - "lastname": "Bourabia", - "firstname": "Mehdi", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Sassuolo", - "teamid": "2182", - "joinDate": "2018-07-17" - }, - { - "id": "player_78819", - "lastname": "Verdi", - "firstname": "Simone", - "position": 4, - "quotation": 12, - "ultraPosition": 40, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-07-01" - }, - { - "id": "player_79583", - "lastname": "Terracciano", - "firstname": "Pietro", - "position": 1, - "quotation": 7, - "ultraPosition": 10, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2019-07-07" - }, - { - "id": "player_79847", - "lastname": "La Mantia", - "firstname": "Andrea", - "position": 4, - "quotation": 10, - "ultraPosition": 40, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-08-16" - }, - { - "id": "player_80147", - "lastname": "Pettinari", - "firstname": "Stefano", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-01" - }, - { - "id": "player_80392", - "lastname": "Crisetig", - "firstname": "Lorenzo", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Bologna", - "teamid": "123", - "joinDate": "2015-07-16" - }, - { - "id": "player_80948", - "lastname": "Lapadula", - "firstname": "Gianluca", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-12" - }, - { - "id": "player_80974", - "lastname": "Sala", - "firstname": "Jacopo", - "position": 2, - "quotation": 9, - "ultraPosition": 21, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2016-07-01" - }, - { - "id": "player_81033", - "lastname": "Sansone", - "firstname": "Nicola", - "position": 4, - "quotation": 7, - "ultraPosition": 40, - "club": "Bologna", - "teamid": "123", - "joinDate": "2019-07-01" - }, - { - "id": "player_81045", - "lastname": "Longo", - "firstname": "Samuele", - "position": 4, - "quotation": 3, - "ultraPosition": 40, - "club": "Inter", - "teamid": "127", - "joinDate": "2011-07-01" - }, - { - "id": "player_82135", - "lastname": "Inglese", - "firstname": "Roberto", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-16" - }, - { - "id": "player_82428", - "lastname": "de Roon", - "firstname": "Marten", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-08-10" - }, - { - "id": "player_82451", - "lastname": "Luis Alberto", - "firstname": null, - "position": 3, - "quotation": 26, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2016-08-31" - }, - { - "id": "player_83340", - "lastname": "Malcuit", - "firstname": "Kevin", - "position": 2, - "quotation": 12, - "ultraPosition": 21, - "club": "Napoli", - "teamid": "459", - "joinDate": "2018-08-07" - }, - { - "id": "player_83561", - "lastname": "Dabo", - "firstname": "Bryan", - "position": 3, - "quotation": 7, - "ultraPosition": 31, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-01-30" - }, - { - "id": "player_83984", - "lastname": "Antonio Donnarumma", - "firstname": null, - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Milan", - "teamid": "120", - "joinDate": "2017-07-12" - }, - { - "id": "player_84161", - "lastname": "Spinazzola", - "firstname": "Leonardo", - "position": 2, - "quotation": 21, - "ultraPosition": 21, - "club": "Roma", - "teamid": "121", - "joinDate": "2019-07-01" - }, - { - "id": "player_84178", - "lastname": "Acerbi", - "firstname": "Francesco", - "position": 2, - "quotation": 22, - "ultraPosition": 20, - "club": "Lazio", - "teamid": "129", - "joinDate": "2018-07-11" - }, - { - "id": "player_8432", - "lastname": "Pepe Reina", - "firstname": null, - "position": 1, - "quotation": 8, - "ultraPosition": 10, - "club": "Milan", - "teamid": "120", - "joinDate": "2018-07-01" - }, - { - "id": "player_84625", - "lastname": "Krejci", - "firstname": "Ladislav", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Bologna", - "teamid": "123", - "joinDate": "2016-07-07" - }, - { - "id": "player_84724", - "lastname": "Bereszynski", - "firstname": "Bartosz", - "position": 2, - "quotation": 16, - "ultraPosition": 21, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-01-04" - }, - { - "id": "player_85046", - "lastname": "Laurini", - "firstname": "Vincent", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-08" - }, - { - "id": "player_85288", - "lastname": "Skorupski", - "firstname": "Lukasz", - "position": 1, - "quotation": 14, - "ultraPosition": 10, - "club": "Bologna", - "teamid": "123", - "joinDate": "2018-07-01" - }, - { - "id": "player_85556", - "lastname": "Nocciolini", - "firstname": "Manuel", - "position": 4, - "quotation": 1, - "ultraPosition": 40, - "club": "Parma", - "teamid": "131", - "joinDate": "2016-07-06" - }, - { - "id": "player_86129", - "lastname": "Koulibaly", - "firstname": "Kalidou", - "position": 2, - "quotation": 30, - "ultraPosition": 20, - "club": "Napoli", - "teamid": "459", - "joinDate": "2014-07-01" - }, - { - "id": "player_86920", - "lastname": "Hiljemark", - "firstname": "Oscar", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2017-07-01" - }, - { - "id": "player_87542", - "lastname": "Maksimovic", - "firstname": "Nikola", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Napoli", - "teamid": "459", - "joinDate": "2017-07-01" - }, - { - "id": "player_87750", - "lastname": "Muriel", - "firstname": "Luis", - "position": 4, - "quotation": 15, - "ultraPosition": 40, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2019-07-01" - }, - { - "id": "player_87846", - "lastname": "Martella", - "firstname": "Bruno", - "position": 2, - "quotation": 8, - "ultraPosition": 21, - "club": "Brescia", - "teamid": "458", - "joinDate": "2019-07-01" - }, - { - "id": "player_87995", - "lastname": "Perin", - "firstname": "Mattia", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Juventus", - "teamid": "128", - "joinDate": "2018-07-01" - }, - { - "id": "player_88340", - "lastname": "João Pedro", - "firstname": null, - "position": 3, - "quotation": 15, - "ultraPosition": 32, - "club": "Cagliari", - "teamid": "124", - "joinDate": "2014-09-01" - }, - { - "id": "player_88432", - "lastname": "Biraghi", - "firstname": "Cristiano", - "position": 2, - "quotation": 18, - "ultraPosition": 21, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-01" - }, - { - "id": "player_88746", - "lastname": "Ghoulam", - "firstname": "Faouzi", - "position": 2, - "quotation": 21, - "ultraPosition": 21, - "club": "Napoli", - "teamid": "459", - "joinDate": "2014-01-31" - }, - { - "id": "player_88768", - "lastname": "Teodorczyk", - "firstname": "Lukasz", - "position": 4, - "quotation": 8, - "ultraPosition": 40, - "club": "Udinese", - "teamid": "136", - "joinDate": "2018-08-17" - }, - { - "id": "player_89076", - "lastname": "Freuler", - "firstname": "Remo", - "position": 3, - "quotation": 21, - "ultraPosition": 31, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2016-01-19" - }, - { - "id": "player_89311", - "lastname": "Benzar", - "firstname": "Romario", - "position": 2, - "quotation": 10, - "ultraPosition": 21, - "club": "Lecce", - "teamid": "130", - "joinDate": "2019-07-01" - }, - { - "id": "player_89861", - "lastname": "Palomino", - "firstname": "José Luis", - "position": 2, - "quotation": 13, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2017-07-01" - }, - { - "id": "player_90557", - "lastname": "Ceccherini", - "firstname": "Federico", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2018-07-12" - }, - { - "id": "player_90594", - "lastname": "Valoti", - "firstname": "Mattia", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2019-07-01" - }, - { - "id": "player_91070", - "lastname": "Eysseric", - "firstname": "Valentin", - "position": 3, - "quotation": 7, - "ultraPosition": 32, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2017-08-09" - }, - { - "id": "player_91620", - "lastname": "Salifu", - "firstname": "Amidu", - "position": 3, - "quotation": 1, - "ultraPosition": 31, - "club": "Fiorentina", - "teamid": "125", - "joinDate": "2011-01-31" - }, - { - "id": "player_91769", - "lastname": "Falco", - "firstname": "Filippo", - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Lecce", - "teamid": "130", - "joinDate": "2018-07-09" - }, - { - "id": "player_91990", - "lastname": "Juan Jesus", - "firstname": null, - "position": 2, - "quotation": 7, - "ultraPosition": 20, - "club": "Roma", - "teamid": "121", - "joinDate": "2017-07-01" - }, - { - "id": "player_92190", - "lastname": "Jony", - "firstname": null, - "position": 3, - "quotation": 12, - "ultraPosition": 32, - "club": "Lazio", - "teamid": "129", - "joinDate": "2019-07-22" - }, - { - "id": "player_92216", - "lastname": "Gomis", - "firstname": "Alfred", - "position": 1, - "quotation": 13, - "ultraPosition": 10, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-07-01" - }, - { - "id": "player_92519", - "lastname": "Kurtic", - "firstname": "Jasmin", - "position": 3, - "quotation": 10, - "ultraPosition": 32, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-07-01" - }, - { - "id": "player_93336", - "lastname": "Calvano", - "firstname": "Simone", - "position": 3, - "quotation": 6, - "ultraPosition": 31, - "club": "Verona", - "teamid": "126", - "joinDate": "2012-07-06" - }, - { - "id": "player_93661", - "lastname": "Di Lorenzo", - "firstname": "Giovanni", - "position": 2, - "quotation": 14, - "ultraPosition": 21, - "club": "Napoli", - "teamid": "459", - "joinDate": "2019-07-01" - }, - { - "id": "player_94239", - "lastname": "Berardi", - "firstname": "Alessandro", - "position": 1, - "quotation": 1, - "ultraPosition": 10, - "club": "Verona", - "teamid": "126", - "joinDate": "2018-12-14" - }, - { - "id": "player_94425", - "lastname": "Brozovic", - "firstname": "Marcelo", - "position": 3, - "quotation": 25, - "ultraPosition": 31, - "club": "Inter", - "teamid": "127", - "joinDate": "2016-07-01" - }, - { - "id": "player_94751", - "lastname": "Sturaro", - "firstname": "Stefano", - "position": 3, - "quotation": 13, - "ultraPosition": 31, - "club": "Genoa", - "teamid": "990", - "joinDate": "2019-07-01" - }, - { - "id": "player_94755", - "lastname": "Viviani", - "firstname": "Federico", - "position": 3, - "quotation": 9, - "ultraPosition": 31, - "club": "Spal", - "teamid": "1454", - "joinDate": "2018-07-01" - }, - { - "id": "player_95180", - "lastname": "Caprari", - "firstname": "Gianluca", - "position": 4, - "quotation": 11, - "ultraPosition": 40, - "club": "Sampdoria", - "teamid": "603", - "joinDate": "2017-07-01" - }, - { - "id": "player_95215", - "lastname": "Defrel", - "firstname": "Gregoire", - "position": 4, - "quotation": 6, - "ultraPosition": 40, - "club": "Roma", - "teamid": "121", - "joinDate": "2018-07-01" - }, - { - "id": "player_96645", - "lastname": "Djimsiti", - "firstname": "Berat", - "position": 2, - "quotation": 9, - "ultraPosition": 20, - "club": "Atalanta", - "teamid": "456", - "joinDate": "2016-01-18" - }, - { - "id": "player_96740", - "lastname": "Veretout", - "firstname": "Jordan", - "position": 3, - "quotation": 23, - "ultraPosition": 31, - "club": "Roma", - "teamid": "121", - "joinDate": "2019-07-20" - }, - { - "id": "player_97346", - "lastname": "Dermaku", - "firstname": "Kastriot", - "position": 2, - "quotation": 2, - "ultraPosition": 20, - "club": "Parma", - "teamid": "131", - "joinDate": "2019-07-07" - }, - { - "id": "player_97617", - "lastname": "Florenzi", - "firstname": "Alessandro", - "position": 2, - "quotation": 21, - "ultraPosition": 21, - "club": "Roma", - "teamid": "121", - "joinDate": "2011-05-12" - } - ] -} diff --git a/src/test/resources/__files/mpg.poolPlayers.2.2021.json b/src/test/resources/__files/mpg.poolPlayers.2.2021.json new file mode 100644 index 0000000..daecc41 --- /dev/null +++ b/src/test/resources/__files/mpg.poolPlayers.2.2021.json @@ -0,0 +1,28506 @@ +{ + "poolPlayers": [ + { + "id": "mpg_championship_player_100961", + "firstName": "Xavier", + "lastName": "Kouassi", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_102724", + "firstName": "Mehdi", + "lastName": "Jeannin", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_693", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_103116", + "firstName": "Donovan", + "lastName": "Léon", + "position": 1, + "ultraPosition": 10, + "quotation": 22, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_103122", + "firstName": "Edmond", + "lastName": "Akichi", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_104464", + "firstName": "Baptiste", + "lastName": "Valette", + "position": 1, + "ultraPosition": 10, + "quotation": 10, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_104613", + "firstName": "Moussa", + "lastName": "Konaté", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_10599", + "firstName": "Chaouki", + "lastName": "Ben Saada", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_106160", + "firstName": "Emeric", + "lastName": "Dudouit", + "position": 2, + "ultraPosition": 21, + "quotation": 21, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 37 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_106599", + "firstName": "Benjamin", + "lastName": "Bertrand", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_5420", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_106600", + "firstName": "Joris", + "lastName": "Sainati", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_107142", + "firstName": "Christophe", + "lastName": "Vincent", + "position": 3, + "ultraPosition": 30, + "quotation": 16, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_107656", + "firstName": "Joseph", + "lastName": "Lopy", + "position": 3, + "ultraPosition": 30, + "quotation": 19, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_110291", + "firstName": "Kevin", + "lastName": "Schur", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_110347", + "firstName": "Quentin", + "lastName": "Bernard", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_110351", + "firstName": "Alassane", + "lastName": "N'Diaye", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_111181", + "firstName": "Eddy", + "lastName": "Gnahore", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_112467", + "firstName": "El-Hadji", + "lastName": "Ba", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_113064", + "firstName": null, + "lastName": "Youssouf M'Changama", + "position": 3, + "ultraPosition": 30, + "quotation": 22, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_115149", + "firstName": "Emmanuel", + "lastName": "Ntim", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_115326", + "firstName": "Jérémy", + "lastName": "Vachoux", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_116593", + "firstName": "Eric", + "lastName": "Vandenabeele", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_116628", + "firstName": "Yassine", + "lastName": "Benzia", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 75 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 34 + } + } + ] + } + }, + { + "id": "mpg_championship_player_119582", + "firstName": "Julien", + "lastName": "Lopez", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_119681", + "firstName": "Khalid", + "lastName": "Boutaïb", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 6.25, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 34 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 2, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_119738", + "firstName": "Birama", + "lastName": "Touré", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_119744", + "firstName": "Mathieu", + "lastName": "Michel", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_120811", + "firstName": "Anthony", + "lastName": "Belmonte", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_121149", + "firstName": "Jovanie", + "lastName": "Tchouatcha", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_124132", + "firstName": "Per Kristian", + "lastName": "Bråtveit", + "position": 1, + "ultraPosition": 10, + "quotation": 10, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_129481", + "firstName": "Stéphane", + "lastName": "Lambese", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_131403", + "firstName": "Rhys", + "lastName": "Healey", + "position": 4, + "ultraPosition": 40, + "quotation": 23, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 7, + "totalGoals": 3, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 69 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 2, + "ownGoals": 0, + "minutesPlayed": 76 + } + } + ] + } + }, + { + "id": "mpg_championship_player_133632", + "firstName": "Abdallah", + "lastName": "Ndour", + "position": 2, + "ultraPosition": 21, + "quotation": 12, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_136380", + "firstName": "Bersant", + "lastName": "Celina", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_140246", + "firstName": "Mikkel", + "lastName": "Desler", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_141109", + "firstName": "Gautier", + "lastName": "Lloris", + "position": 2, + "ultraPosition": 20, + "quotation": 21, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_144660", + "firstName": "Didier", + "lastName": "Ndong", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_145221", + "firstName": null, + "lastName": "Issiaga Sylla", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149035", + "firstName": "Adama", + "lastName": "Niane", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149410", + "firstName": "Johann", + "lastName": "Obiang", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 21 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149588", + "firstName": "Adrien", + "lastName": "Monfray", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 50 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149993", + "firstName": "Joris", + "lastName": "Correa", + "position": 4, + "ultraPosition": 40, + "quotation": 16, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_150670", + "firstName": "Jerome", + "lastName": "Mombris", + "position": 2, + "ultraPosition": 21, + "quotation": 15, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + } + ] + } + }, + { + "id": "mpg_championship_player_151065", + "firstName": "Enzo", + "lastName": "Basilio", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_151908", + "firstName": null, + "lastName": "Achille Anani", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 2.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 2.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_152865", + "firstName": null, + "lastName": "Cheick Traoré", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_153014", + "firstName": "Jordan", + "lastName": "Marié", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_156274", + "firstName": "Jamal", + "lastName": "Thiare", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_157728", + "firstName": "Baptiste", + "lastName": "Guillaume", + "position": 4, + "ultraPosition": 40, + "quotation": 19, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_157822", + "firstName": "Victor", + "lastName": "Lekhal", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_157841", + "firstName": "Niclas", + "lastName": "Eliasson", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 68 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_158234", + "firstName": "Naomichi", + "lastName": "Ueda", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_159576", + "firstName": null, + "lastName": "Jubal", + "position": 2, + "ultraPosition": 20, + "quotation": 25, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_161275", + "firstName": "Romain", + "lastName": "Padovani", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_161968", + "firstName": "Elías Már", + "lastName": "Ómarsson", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 65 + } + } + ] + } + }, + { + "id": "mpg_championship_player_164500", + "firstName": "Ebenezer", + "lastName": "Assifuah", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + } + ] + } + }, + { + "id": "mpg_championship_player_165413", + "firstName": "Yann", + "lastName": "Boé-Kane", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_165803", + "firstName": null, + "lastName": "Pedro Rebocho", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_166541", + "firstName": "Laurent", + "lastName": "Dos Santos", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_167454", + "firstName": "Hamza", + "lastName": "Sakhi", + "position": 3, + "ultraPosition": 31, + "quotation": 29, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 6.75, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_167929", + "firstName": "Kevin", + "lastName": "Rocheteau", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168027", + "firstName": "Terell", + "lastName": "Ondaan", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168212", + "firstName": "Christophe", + "lastName": "Diédhiou", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168289", + "firstName": "Manuel", + "lastName": "de Iriondo", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_168433", + "firstName": "Axel", + "lastName": "Maraval", + "position": 1, + "ultraPosition": 10, + "quotation": 17, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168434", + "firstName": "Jessy", + "lastName": "Pi", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_169860", + "firstName": "Gaëtan", + "lastName": "Paquiez", + "position": 2, + "ultraPosition": 21, + "quotation": 12, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_171459", + "firstName": "Ayman", + "lastName": "Ben Mohamed", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_172870", + "firstName": "Younes", + "lastName": "Kaabouni", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 31 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_173242", + "firstName": "Ismaël", + "lastName": "Diallo", + "position": 2, + "ultraPosition": 21, + "quotation": 15, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_174846", + "firstName": "Bongani", + "lastName": "Zungu", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_174969", + "firstName": "Branco", + "lastName": "van den Boomen", + "position": 3, + "ultraPosition": 31, + "quotation": 20, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 7.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176439", + "firstName": "Sessi", + "lastName": "D'Almeida", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176443", + "firstName": "Théo", + "lastName": "Pellenard", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176480", + "firstName": "Mamadou Lamarana", + "lastName": "Diallo", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176503", + "firstName": "Grégoire", + "lastName": "Lefebvre", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177222", + "firstName": "Alioune", + "lastName": "Ba", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177442", + "firstName": "Pierre", + "lastName": "Bardy", + "position": 2, + "ultraPosition": 21, + "quotation": 20, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177445", + "firstName": "Joris", + "lastName": "Chougrani", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177449", + "firstName": "Remy", + "lastName": "Boissier", + "position": 3, + "ultraPosition": 30, + "quotation": 18, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177864", + "firstName": "Benjamin", + "lastName": "Santelli", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_179615", + "firstName": "David", + "lastName": "Henen", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_179776", + "firstName": null, + "lastName": "Philipe Sampaio", + "position": 2, + "ultraPosition": 20, + "quotation": 16, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_180303", + "firstName": "Zinedine", + "lastName": "Ferhat", + "position": 3, + "ultraPosition": 31, + "quotation": 30, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + } + ] + } + }, + { + "id": "mpg_championship_player_180805", + "firstName": "Désiré", + "lastName": "Segbé Azankpo", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_181402", + "firstName": "Adrián", + "lastName": "Cubas", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 84 + } + } + ] + } + }, + { + "id": "mpg_championship_player_182318", + "firstName": "Florian", + "lastName": "David", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184080", + "firstName": "Maxime", + "lastName": "Bernauer", + "position": 3, + "ultraPosition": 30, + "quotation": 4, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 6.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184203", + "firstName": "Esteban", + "lastName": "Salles", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184232", + "firstName": "Chadrac", + "lastName": "Akolo", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184677", + "firstName": "Francois-Joseph", + "lastName": "Sollacaro", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184961", + "firstName": "Anthony", + "lastName": "Briançon", + "position": 2, + "ultraPosition": 20, + "quotation": 20, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_185482", + "firstName": "Ousseynou", + "lastName": "Thioune", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 58 + } + } + ] + } + }, + { + "id": "mpg_championship_player_189536", + "firstName": "Maxime", + "lastName": "Spano", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_189542", + "firstName": "Alexandre", + "lastName": "Mendy", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 7.25, + "totalGoals": 4, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 8.5, + "goals": 3, + "ownGoals": 0, + "minutesPlayed": 72 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 78 + } + } + ] + } + }, + { + "id": "mpg_championship_player_192021", + "firstName": "Nolan", + "lastName": "Mbemba", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193080", + "firstName": "Hillel", + "lastName": "Konate", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193276", + "firstName": "Valentin", + "lastName": "Jacob", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 76 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 32 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193285", + "firstName": "Pierre", + "lastName": "Lemonnier", + "position": 2, + "ultraPosition": 20, + "quotation": 13, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193417", + "firstName": "Arnaud", + "lastName": "Lusamba", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 5 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193537", + "firstName": "Quentin", + "lastName": "Cornette", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193823", + "firstName": "Rosario", + "lastName": "Latouchent", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 2.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_195603", + "firstName": "Duckens", + "lastName": "Nazon", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_195784", + "firstName": "Antoine", + "lastName": "Batisse", + "position": 2, + "ultraPosition": 20, + "quotation": 19, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_195811", + "firstName": "Maxime", + "lastName": "Do Couto Teixeira", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + } + ] + } + }, + { + "id": "mpg_championship_player_196111", + "firstName": "Lionel", + "lastName": "M'Pasi N'Zau", + "position": 1, + "ultraPosition": 10, + "quotation": 19, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_197022", + "firstName": "Ibrahim", + "lastName": "Cissé", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_197026", + "firstName": "Tony", + "lastName": "Mauricio", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + } + ] + } + }, + { + "id": "mpg_championship_player_198067", + "firstName": "Bart", + "lastName": "Straalman", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 43 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_198188", + "firstName": "Erwin", + "lastName": "Koffi", + "position": 2, + "ultraPosition": 20, + "quotation": 15, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_198189", + "firstName": "Dylan", + "lastName": "Louiserre", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_198381", + "firstName": "Charles", + "lastName": "Pickel", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199367", + "firstName": "Steve", + "lastName": "Shamal", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 29 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 75 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199519", + "firstName": "Kenji-Van", + "lastName": "Boto", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 87 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199663", + "firstName": "Alec", + "lastName": "Georgen", + "position": 2, + "ultraPosition": 21, + "quotation": 6, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 55 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199664", + "firstName": "Bradley", + "lastName": "Danger", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199665", + "firstName": "Bilal", + "lastName": "Boutobba", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 87 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + } + }, + { + "id": "mpg_championship_player_200469", + "firstName": "Enzo", + "lastName": "Zidane", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 25 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_200671", + "firstName": "Clement", + "lastName": "Depres", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 68 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 59 + } + } + ] + } + }, + { + "id": "mpg_championship_player_201644", + "firstName": "Saturnin", + "lastName": "Allagbé", + "position": 1, + "ultraPosition": 10, + "quotation": 14, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 3, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_201774", + "firstName": "Garland", + "lastName": "Gbelle", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_201865", + "firstName": "Roger", + "lastName": "Assalé", + "position": 4, + "ultraPosition": 40, + "quotation": 14, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 6.75, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 22 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_202459", + "firstName": "Marvin", + "lastName": "Gakpa", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 7.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204122", + "firstName": "Djibril", + "lastName": "Dianessy", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 71 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204405", + "firstName": "Stijn", + "lastName": "Spierings", + "position": 3, + "ultraPosition": 30, + "quotation": 25, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204719", + "firstName": "Thomas", + "lastName": "Basila", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_148", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204742", + "firstName": "Yassine", + "lastName": "Benrahou", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 7, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204744", + "firstName": "Mounir", + "lastName": "Chouiar", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_206935", + "firstName": "Nicolas", + "lastName": "Lemaitre", + "position": 1, + "ultraPosition": 10, + "quotation": 14, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_207300", + "firstName": "Mihai-Alexandru", + "lastName": "Dobre", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_208568", + "firstName": "Lenny", + "lastName": "Vallier", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_208745", + "firstName": "Warren", + "lastName": "Caddy", + "position": 4, + "ultraPosition": 40, + "quotation": 13, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_208747", + "firstName": "Mamadou", + "lastName": "Thiam", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 82 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 71 + } + } + ] + } + }, + { + "id": "mpg_championship_player_209035", + "firstName": "Jonathan", + "lastName": "Panzo", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_209171", + "firstName": "Carlens", + "lastName": "Arcus", + "position": 2, + "ultraPosition": 21, + "quotation": 22, + "clubId": "mpg_championship_club_138", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_209874", + "firstName": "Vincent", + "lastName": "Marchetti", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_210187", + "firstName": "Sidy", + "lastName": "Sarr", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_210202", + "firstName": "Moussa", + "lastName": "Koné", + "position": 4, + "ultraPosition": 40, + "quotation": 18, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_210205", + "firstName": "Souleymane", + "lastName": "Diarra", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 22 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213196", + "firstName": "Yohan", + "lastName": "Demoncy", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213200", + "firstName": "Félix", + "lastName": "Eboa Eboa", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213335", + "firstName": "Jordan", + "lastName": "Leborgne", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 73 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213362", + "firstName": "Mathieu", + "lastName": "Coutadeur", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213401", + "firstName": "Aldo", + "lastName": "Kalulu", + "position": 4, + "ultraPosition": 40, + "quotation": 16, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 83 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213443", + "firstName": "Ivan", + "lastName": "Filipovic", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_214282", + "firstName": "Qazim", + "lastName": "Laci", + "position": 3, + "ultraPosition": 30, + "quotation": 21, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 7, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 2, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_216137", + "firstName": "Vlatko", + "lastName": "Stojanovski", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_216610", + "firstName": "Alexandre", + "lastName": "Olliero", + "position": 1, + "ultraPosition": 10, + "quotation": 17, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_217319", + "firstName": "Aly", + "lastName": "Ndom", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + } + ] + } + }, + { + "id": "mpg_championship_player_217517", + "firstName": "Souleymane", + "lastName": "Cissé", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 37 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_218116", + "firstName": "Yann", + "lastName": "Kitala", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_218123", + "firstName": "Maxime", + "lastName": "Sivis", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_218366", + "firstName": "Lamine", + "lastName": "Fomba", + "position": 3, + "ultraPosition": 30, + "quotation": 18, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 6.5, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219145", + "firstName": "Oumar", + "lastName": "Gonzalez", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219287", + "firstName": "Till", + "lastName": "Cissokho", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219297", + "firstName": "Jules", + "lastName": "Gaudin", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219298", + "firstName": "Alan", + "lastName": "Kerouedan", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219628", + "firstName": "Aly", + "lastName": "Abeid", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 55 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219940", + "firstName": "Giorgi", + "lastName": "Kokhreidze", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220001", + "firstName": "Jeremy", + "lastName": "Livolant", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 68 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220110", + "firstName": "Quentin", + "lastName": "Braat", + "position": 1, + "ultraPosition": 10, + "quotation": 14, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220359", + "firstName": "Maxence", + "lastName": "Prevot", + "position": 1, + "ultraPosition": 10, + "quotation": 18, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220560", + "firstName": "Gaetan", + "lastName": "Perrin", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 84 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220561", + "firstName": "Nathan", + "lastName": "Dekoke", + "position": 2, + "ultraPosition": 21, + "quotation": 6, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220922", + "firstName": "Souleymane", + "lastName": "Karamoko", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220936", + "firstName": "Cyril", + "lastName": "Mandouki", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220943", + "firstName": "Malik", + "lastName": "Tchokounte", + "position": 4, + "ultraPosition": 40, + "quotation": 18, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220962", + "firstName": "Loic", + "lastName": "Kouagba", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 73 + } + } + ] + } + }, + { + "id": "mpg_championship_player_221441", + "firstName": "Sebastien", + "lastName": "Salles-Lamonge", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_223393", + "firstName": "Cheick", + "lastName": "Timité", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_224299", + "firstName": "Valentin", + "lastName": "Henry", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_225046", + "firstName": "Timo", + "lastName": "Stavitski", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_225904", + "firstName": "Samuel", + "lastName": "Essende", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 27 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + } + ] + } + }, + { + "id": "mpg_championship_player_226943", + "firstName": "Didier", + "lastName": "Desprez", + "position": 1, + "ultraPosition": 10, + "quotation": 5, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_226945", + "firstName": "Mahamadou", + "lastName": "Dembélé", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_226947", + "firstName": "Ervin", + "lastName": "Taha", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_428", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_227262", + "firstName": "Ado", + "lastName": "Onaiwu", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 52 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_227297", + "firstName": "Alassane", + "lastName": "Diaby", + "position": 2, + "ultraPosition": 20, + "quotation": 2, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_227300", + "firstName": null, + "lastName": "Ibrahima Sory Conté I", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_228313", + "firstName": "Yannick", + "lastName": "Gomis", + "position": 4, + "ultraPosition": 40, + "quotation": 27, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_229884", + "firstName": "Jovan", + "lastName": "Nisic", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + } + ] + } + }, + { + "id": "mpg_championship_player_229959", + "firstName": "Sikou", + "lastName": "Niakaté", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_230448", + "firstName": "Thibault", + "lastName": "Campanini", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_230458", + "firstName": "Gaëtan", + "lastName": "Weissbeck", + "position": 3, + "ultraPosition": 31, + "quotation": 31, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 83 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_230624", + "firstName": "Denis", + "lastName": "Genreau", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_427", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_230718", + "firstName": "Kévin", + "lastName": "Fortune", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232182", + "firstName": "Gauthier", + "lastName": "Hein", + "position": 3, + "ultraPosition": 31, + "quotation": 16, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 7.25, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 80 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232197", + "firstName": "Patrick", + "lastName": "Burner", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232239", + "firstName": "Jean", + "lastName": "Louchet", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232252", + "firstName": "Mehdi", + "lastName": "Merghem", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 26 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232398", + "firstName": "Nathan", + "lastName": "Trott", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_233497", + "firstName": "Adama", + "lastName": "Diakhaby", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_234458", + "firstName": "Jordy", + "lastName": "Gaspar", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_235163", + "firstName": "Steve", + "lastName": "Ambri", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_235708", + "firstName": "Fernand", + "lastName": "Mayembo", + "position": 2, + "ultraPosition": 20, + "quotation": 15, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_235709", + "firstName": "Quentin", + "lastName": "Daubin", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_240136", + "firstName": "Tristan", + "lastName": "Muyumba Nkita", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 77 + } + } + ] + } + }, + { + "id": "mpg_championship_player_241337", + "firstName": "Issouf", + "lastName": "Paro", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_241345", + "firstName": "Cyrille", + "lastName": "Bayala", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 51 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_241623", + "firstName": "Harouna", + "lastName": "Sy", + "position": 2, + "ultraPosition": 21, + "quotation": 12, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 3, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_242111", + "firstName": "Quentin", + "lastName": "Bena", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_242882", + "firstName": "Bafodé", + "lastName": "Diakité", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_427", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_242896", + "firstName": "Adil", + "lastName": "Taoui", + "position": 4, + "ultraPosition": 40, + "quotation": 14, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 33 + } + } + ] + } + }, + { + "id": "mpg_championship_player_243521", + "firstName": "Isak", + "lastName": "Pettersson", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_427", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_243998", + "firstName": "Nabil", + "lastName": "Alioui", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244135", + "firstName": "Andrew", + "lastName": "Jung", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244136", + "firstName": "Lucas", + "lastName": "Dias", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244794", + "firstName": "Ousoumane", + "lastName": "Camara", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244949", + "firstName": "Umut", + "lastName": "Meras", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245139", + "firstName": "Samuel", + "lastName": "Guibert", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245485", + "firstName": "Ali", + "lastName": "Abdi", + "position": 2, + "ultraPosition": 21, + "quotation": 18, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245726", + "firstName": "Abdel Hakim", + "lastName": "Abdallah", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245750", + "firstName": "Bryan", + "lastName": "Passi", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245914", + "firstName": "Yanis", + "lastName": "Merdji", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_247385", + "firstName": "Anthony", + "lastName": "Racioppi", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_247403", + "firstName": "Gédéon", + "lastName": "Kalulu", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 1, + "minutesPlayed": 54 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 11 + } + } + ] + } + }, + { + "id": "mpg_championship_player_250333", + "firstName": "Julien", + "lastName": "Masson", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 6.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_37838", + "firstName": "Rémy", + "lastName": "Riou", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 6.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_38002", + "firstName": "Daniel", + "lastName": "Congré", + "position": 2, + "ultraPosition": 20, + "quotation": 18, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_38007", + "firstName": "Alexandre", + "lastName": "Bonnet", + "position": 3, + "ultraPosition": 31, + "quotation": 26, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + } + ] + } + }, + { + "id": "mpg_championship_player_38008", + "firstName": "Antony", + "lastName": "Robic", + "position": 4, + "ultraPosition": 40, + "quotation": 6, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_40733", + "firstName": "Cédric", + "lastName": "Avinel", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_40808", + "firstName": "Prince", + "lastName": "Oniangué", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_422249", + "firstName": "Tom", + "lastName": "Lebeau", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 70 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 56 + } + } + ] + } + }, + { + "id": "mpg_championship_player_422710", + "firstName": "Mannoubi", + "lastName": "Hadded", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 7, + "totalGoals": 1, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423064", + "firstName": "Frantzdy", + "lastName": "Pierrot", + "position": 4, + "ultraPosition": 40, + "quotation": 18, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423151", + "firstName": "Gaëtan", + "lastName": "Robail", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423838", + "firstName": "Lorenzo", + "lastName": "Rajot", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 9 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423870", + "firstName": "Matteo", + "lastName": "Ahlinvi", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + } + }, + { + "id": "mpg_championship_player_424149", + "firstName": "Emmanuel", + "lastName": "Lomotey", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_424242", + "firstName": "Charbel", + "lastName": "Gomez", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_427213", + "firstName": "Bevic", + "lastName": "Moussiti-Oko", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_42766", + "firstName": "Régis", + "lastName": "Gurtner", + "position": 1, + "ultraPosition": 10, + "quotation": 19, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_429424", + "firstName": "Julien", + "lastName": "Celestine", + "position": 2, + "ultraPosition": 20, + "quotation": 15, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_429441", + "firstName": "Malaly", + "lastName": "Dembélé", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_429519", + "firstName": "Redouane", + "lastName": "Kerrouche", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 59 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + } + ] + } + }, + { + "id": "mpg_championship_player_430855", + "firstName": "Logan", + "lastName": "Ndenbe", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_430993", + "firstName": "David", + "lastName": "Gomis", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + } + ] + } + }, + { + "id": "mpg_championship_player_431653", + "firstName": "Franklin", + "lastName": "Wadja", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 21 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_433522", + "firstName": "Yahia", + "lastName": "Fofana", + "position": 1, + "ultraPosition": 10, + "quotation": 9, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 6.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_433731", + "firstName": "Lucas", + "lastName": "Buades", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 88 + } + } + ] + } + }, + { + "id": "mpg_championship_player_434828", + "firstName": "Sonny", + "lastName": "Laiton", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_138", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_435615", + "firstName": "Théo", + "lastName": "Sainte-Luce", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_436644", + "firstName": "Ismaël", + "lastName": "Aaneba", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_436658", + "firstName": "Jessy", + "lastName": "Deminguet", + "position": 3, + "ultraPosition": 31, + "quotation": 18, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 6.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_437503", + "firstName": "Mathis", + "lastName": "Picouleau", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_437950", + "firstName": "Driss", + "lastName": "Khalid", + "position": 3, + "ultraPosition": 31, + "quotation": 2, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_437987", + "firstName": "Yannick", + "lastName": "Marchand", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439053", + "firstName": "Rénald", + "lastName": "Metelus", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439122", + "firstName": "Kelyan", + "lastName": "Guessoum", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 11 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439124", + "firstName": "Axel", + "lastName": "Bamba", + "position": 2, + "ultraPosition": 20, + "quotation": 18, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439711", + "firstName": "Yoel", + "lastName": "Armougom", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439964", + "firstName": null, + "lastName": "Rafael Fonseca", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_440058", + "firstName": "Yannis", + "lastName": "Clementia", + "position": 1, + "ultraPosition": 10, + "quotation": 5, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_440656", + "firstName": "Leverton", + "lastName": "Pierre", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_441575", + "firstName": "Mohamed Lamine", + "lastName": "Diaby", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_441576", + "firstName": "Christopher", + "lastName": "Rocchia", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_441584", + "firstName": "Hugo", + "lastName": "Constant", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_148", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_44203", + "firstName": "Gary", + "lastName": "Coulibaly", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442649", + "firstName": "Arsene", + "lastName": "Elogo", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442673", + "firstName": "Aurélien", + "lastName": "Scheidler", + "position": 4, + "ultraPosition": 40, + "quotation": 19, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 60 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442748", + "firstName": "Jeremy", + "lastName": "Huysman", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 37 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 32 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442750", + "firstName": "Dimitri", + "lastName": "Boudaud", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442751", + "firstName": "Nicolas", + "lastName": "Bruneel", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 59 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_44429", + "firstName": "Johny", + "lastName": "Placide", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_139", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_44499", + "firstName": "Romain", + "lastName": "Armand", + "position": 4, + "ultraPosition": 40, + "quotation": 18, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + } + ] + } + }, + { + "id": "mpg_championship_player_445970", + "firstName": "Lassine", + "lastName": "Sinayoko", + "position": 4, + "ultraPosition": 40, + "quotation": 6, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 39 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 86 + } + } + ] + } + }, + { + "id": "mpg_championship_player_446029", + "firstName": "Abou", + "lastName": "Ouattara", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_447579", + "firstName": "Jack", + "lastName": "Lahne", + "position": 4, + "ultraPosition": 40, + "quotation": 6, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + } + ] + } + }, + { + "id": "mpg_championship_player_448273", + "firstName": "Naatan", + "lastName": "Skyttä", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_449689", + "firstName": "Florentin", + "lastName": "Bloch", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_427", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_450381", + "firstName": "Paul", + "lastName": "Bourdelle", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_45084", + "firstName": "Lucas", + "lastName": "Deaux", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_451005", + "firstName": "Théo", + "lastName": "Barbet", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_45103", + "firstName": "Brice", + "lastName": "Maubleu", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_45108", + "firstName": "Mohamed", + "lastName": "Youssouf", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_454674", + "firstName": "Dominique", + "lastName": "Guidi", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_139", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_454689", + "firstName": "Ousmane", + "lastName": "Kanté", + "position": 2, + "ultraPosition": 20, + "quotation": 22, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_454702", + "firstName": "Ibrahim", + "lastName": "Sissoko", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_454964", + "firstName": null, + "lastName": "Senou Coulibaly", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_455732", + "firstName": "Amadou", + "lastName": "Ciss", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 27 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + } + ] + } + }, + { + "id": "mpg_championship_player_456193", + "firstName": "Clement", + "lastName": "Vidal", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_456194", + "firstName": "Kylian", + "lastName": "Kaiboue", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + } + ] + } + }, + { + "id": "mpg_championship_player_457242", + "firstName": "Dorian", + "lastName": "Bertrand", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_457974", + "firstName": "Robin", + "lastName": "Taillan", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_457982", + "firstName": "Steeve", + "lastName": "Beusnard", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + } + ] + } + }, + { + "id": "mpg_championship_player_458269", + "firstName": "Youssoupha", + "lastName": "N'Diaye", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_458322", + "firstName": "Julien", + "lastName": "Ponceau", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + } + ] + } + }, + { + "id": "mpg_championship_player_460590", + "firstName": "Guy-Marcelin", + "lastName": "Kilama", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461397", + "firstName": "Florian", + "lastName": "Chabrolle", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461433", + "firstName": "Gaoussou", + "lastName": "Traore", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461831", + "firstName": "Dominique", + "lastName": "Youfeigane", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_428", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461908", + "firstName": "Louis", + "lastName": "Pelletier", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_462552", + "firstName": "Victor", + "lastName": "Lobry", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_462609", + "firstName": "Himad", + "lastName": "Abdelli", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_141", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_462623", + "firstName": "Gaetan", + "lastName": "Arib", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_464193", + "firstName": "Yohan", + "lastName": "Bilingi", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_465153", + "firstName": "Louis", + "lastName": "Carnot", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_428", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_465347", + "firstName": "Caleb", + "lastName": "Zady Sery", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 7, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_466038", + "firstName": "Yaya", + "lastName": "Yaya Soumaré", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + } + ] + } + }, + { + "id": "mpg_championship_player_468427", + "firstName": "Mounaim", + "lastName": "El Idrissy", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_468490", + "firstName": "Matthias", + "lastName": "Phaeton", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469204", + "firstName": "Eddy", + "lastName": "Sylvestre", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 18 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469255", + "firstName": "Lamine", + "lastName": "Cisse", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 90 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469269", + "firstName": "Nicolas", + "lastName": "Mercier", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469323", + "firstName": "Nathan", + "lastName": "N'Goumou Minpole", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 8, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_47104", + "firstName": "Jean-Pascal", + "lastName": "Fontaine", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471139", + "firstName": "Giovanni", + "lastName": "Haag", + "position": 2, + "ultraPosition": 20, + "quotation": 15, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471141", + "firstName": "Allan", + "lastName": "Linguet", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471213", + "firstName": "Evens", + "lastName": "Joseph", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471469", + "firstName": "Samir", + "lastName": "Bouzar Essaidi", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471470", + "firstName": "Vinni", + "lastName": "Triboulet", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473314", + "firstName": "Anthony", + "lastName": "Roncaglia", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473530", + "firstName": "Ozkan", + "lastName": "Cetiner", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473550", + "firstName": "Bryan", + "lastName": "Bryan Soumaré", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 61 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473707", + "firstName": "Sami", + "lastName": "Belkorchia", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_474110", + "firstName": "Cyril", + "lastName": "Zabou", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_475944", + "firstName": "Karim", + "lastName": "Aribi", + "position": 4, + "ultraPosition": 40, + "quotation": 2, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476375", + "firstName": "Jean Fiacre", + "lastName": "Botué Kouamé", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476401", + "firstName": "Formose", + "lastName": "Mendy", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 9 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476409", + "firstName": "Souleymane Djimou", + "lastName": "Cissé", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_476511", + "firstName": "Alexis", + "lastName": "Beka Beka", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476889", + "firstName": "Amjhad", + "lastName": "Nazih", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476894", + "firstName": "Johann", + "lastName": "Lepenant", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476987", + "firstName": "Tom", + "lastName": "Ducrocq", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_477720", + "firstName": "Samy", + "lastName": "Benchama", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_477846", + "firstName": "Jason", + "lastName": "Ngouabi", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_477851", + "firstName": "Abdoullah", + "lastName": "Ba", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_479758", + "firstName": "Alexandre", + "lastName": "Tégar", + "position": 2, + "ultraPosition": 20, + "quotation": 2, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_480469", + "firstName": "Iron", + "lastName": "Gomis", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + } + ] + } + }, + { + "id": "mpg_championship_player_481615", + "firstName": "Saïd", + "lastName": "Arab", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482260", + "firstName": "Yassine", + "lastName": "Kechta", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482380", + "firstName": "Samir Sophian", + "lastName": "Chergui", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482598", + "firstName": "Hermann", + "lastName": "Tebily", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 18 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482995", + "firstName": "Brahima", + "lastName": "Doukansy", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 7 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 66 + } + } + ] + } + }, + { + "id": "mpg_championship_player_483866", + "firstName": "Kelian", + "lastName": "Nsona", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485098", + "firstName": "Moussa", + "lastName": "Diarra", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485100", + "firstName": "Sam", + "lastName": "Sanna", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 8 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485335", + "firstName": "Lucas", + "lastName": "Chevalier", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485340", + "firstName": "Tom", + "lastName": "Rapnouil", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_427", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485419", + "firstName": null, + "lastName": "Hugo Barbet", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485751", + "firstName": "Mohammed", + "lastName": "Ben Fredj", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485959", + "firstName": "Mickaël", + "lastName": "Biron", + "position": 4, + "ultraPosition": 40, + "quotation": 19, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487110", + "firstName": "Nassim", + "lastName": "Ouammou", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487506", + "firstName": "Ugo", + "lastName": "Bonnet", + "position": 4, + "ultraPosition": 40, + "quotation": 19, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487510", + "firstName": "Grégory", + "lastName": "Coelho", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487511", + "firstName": "Thomas", + "lastName": "Secchi", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487533", + "firstName": "Chris-Vianney", + "lastName": "Goteni", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488213", + "firstName": "Toluwalase Emmanuel", + "lastName": "Arokodare", + "position": 4, + "ultraPosition": 40, + "quotation": 14, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 71 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488263", + "firstName": "Matthieu", + "lastName": "Huard", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488367", + "firstName": "Shaquil", + "lastName": "Delos", + "position": 2, + "ultraPosition": 21, + "quotation": 14, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488423", + "firstName": "Hugo", + "lastName": "Vandermersch", + "position": 2, + "ultraPosition": 21, + "quotation": 6, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488439", + "firstName": "Woyo", + "lastName": "Coulibaly", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488441", + "firstName": "Daylam", + "lastName": "Meddah", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489486", + "firstName": "Florian", + "lastName": "Michel", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489605", + "firstName": "Jayson", + "lastName": "Papeau", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 25 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489887", + "firstName": "Anthony", + "lastName": "Rouault", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489888", + "firstName": "Amine", + "lastName": "Adli", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489889", + "firstName": "Stéphane", + "lastName": "Zobo", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490061", + "firstName": "Jean Lambert", + "lastName": "Evans", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_5420", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490105", + "firstName": "Jules", + "lastName": "Sylvestre-Brac", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490190", + "firstName": "Rayan", + "lastName": "Philippe", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490330", + "firstName": "Rassoul", + "lastName": "Ndiaye", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_693", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_49050", + "firstName": "Loic", + "lastName": "Nestor", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_49057", + "firstName": "Amiran", + "lastName": "Sanaia", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492033", + "firstName": "Mario Jason", + "lastName": "Kikonda", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 19 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492172", + "firstName": "Youssouf", + "lastName": "Assogba", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492825", + "firstName": "Antoine", + "lastName": "Valério", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 75 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492969", + "firstName": "Vladislav", + "lastName": "Molchan", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_493359", + "firstName": "Thierno", + "lastName": "Balde", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_141", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_49382", + "firstName": "Bruno", + "lastName": "Ecuele Manga", + "position": 2, + "ultraPosition": 20, + "quotation": 18, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_493900", + "firstName": "Darline Zidane", + "lastName": "Yongwa Ngameni", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_494252", + "firstName": "Nicholas", + "lastName": "Gioacchini", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_496630", + "firstName": "Kenny", + "lastName": "Nagera", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_497241", + "firstName": "Samuel", + "lastName": "Renel", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_497278", + "firstName": "Ahmad Toure", + "lastName": "Ngouyamsa", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_498354", + "firstName": "Noah", + "lastName": "Diliberto", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_498355", + "firstName": "Aymen", + "lastName": "Boutoutaou", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 56 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501302", + "firstName": "Ryan", + "lastName": "Ponti", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501583", + "firstName": "Aziz", + "lastName": "Bouzit", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501675", + "firstName": "Louis", + "lastName": "Bury", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_5420", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501676", + "firstName": "Damon", + "lastName": "Bansais", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501678", + "firstName": "Abdourahmane", + "lastName": "Ndiaye", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_5420", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501680", + "firstName": "Moustapha", + "lastName": "Name", + "position": 3, + "ultraPosition": 31, + "quotation": 19, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_502436", + "firstName": "Obed", + "lastName": "Nkambadio", + "position": 1, + "ultraPosition": 10, + "quotation": 5, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_502671", + "firstName": "Orges", + "lastName": "Bunjaku", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 48 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_50301", + "firstName": "Abdelhamid", + "lastName": "El Kaoutari", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_148", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_503184", + "firstName": "Janis", + "lastName": "Antiste", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + } + ] + } + }, + { + "id": "mpg_championship_player_504700", + "firstName": "Sidney", + "lastName": "Obissa", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509284", + "firstName": "Josué", + "lastName": "Casimir", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509285", + "firstName": "Arouna", + "lastName": "Sangante", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509286", + "firstName": "Mamadou", + "lastName": "Fofana", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 27 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509287", + "firstName": "Elies", + "lastName": "Mahmoud", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_510894", + "firstName": "Nathan", + "lastName": "Zohoré", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_510895", + "firstName": "Alan", + "lastName": "Virginius", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_510904", + "firstName": null, + "lastName": "Manuel Semedo", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511176", + "firstName": "Adon", + "lastName": "Gomis", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511178", + "firstName": "David", + "lastName": "Kabamba Kalonji", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511179", + "firstName": "Dorian", + "lastName": "Salhi", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511180", + "firstName": "Demba", + "lastName": "Thiam", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511187", + "firstName": "Thomas", + "lastName": "Vannoye", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511290", + "firstName": "Nathan", + "lastName": "Monzango", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511292", + "firstName": "Aloys", + "lastName": "Fouda", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511293", + "firstName": "Yanis", + "lastName": "Cimignani", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511294", + "firstName": "Loup", + "lastName": "Hervieu", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511295", + "firstName": "Ayoub", + "lastName": "Jabbari", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511356", + "firstName": "Yoann", + "lastName": "Cathline", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 8 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 7 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511368", + "firstName": "Warren", + "lastName": "Bondo", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 77 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511568", + "firstName": "Wilitty", + "lastName": "Younoussa", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 18 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511596", + "firstName": "Pape Ibnou", + "lastName": "Ba", + "position": 4, + "ultraPosition": 40, + "quotation": 25, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511597", + "firstName": "Joris", + "lastName": "Moutachy", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511600", + "firstName": "Yassine", + "lastName": "Benhattab", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511603", + "firstName": "Morgan", + "lastName": "Guilavogui", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511604", + "firstName": "Gaetan", + "lastName": "Laura", + "position": 4, + "ultraPosition": 40, + "quotation": 19, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511605", + "firstName": "Hugo", + "lastName": "Gambor", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511652", + "firstName": "Daouda", + "lastName": "Gueye", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511956", + "firstName": "Kryss", + "lastName": "Chapelle", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511971", + "firstName": "Paul", + "lastName": "Meliande", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_5420", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511975", + "firstName": "Ismael", + "lastName": "Doukoure", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512112", + "firstName": "Amir", + "lastName": "Arli", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512123", + "firstName": "Jaouen", + "lastName": "Hadjam", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 8 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512126", + "firstName": "Ousmane", + "lastName": "Camara", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512241", + "firstName": "Godwin Kobby", + "lastName": "Bentil", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512711", + "firstName": "Baptiste", + "lastName": "Roux", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 49 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512745", + "firstName": "Souleymane", + "lastName": "Toure", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_514339", + "firstName": "Ylan", + "lastName": "Gomes", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + } + ] + } + }, + { + "id": "mpg_championship_player_514425", + "firstName": "Zeidane", + "lastName": "Inoussa", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_515139", + "firstName": "Marco", + "lastName": "Majouga", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_515609", + "firstName": "Sidy Mamadou", + "lastName": "Aubin Diagne", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_515615", + "firstName": "Samy", + "lastName": "Faraj", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_516201", + "firstName": "Marco Claude", + "lastName": "Giagnorio", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_148", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_516203", + "firstName": "Bradley", + "lastName": "Matufueni M'bondo", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_516940", + "firstName": "Yanis", + "lastName": "Maronne", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_518144", + "firstName": "Sullivan", + "lastName": "Péan", + "position": 1, + "ultraPosition": 10, + "quotation": 8, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_519732", + "firstName": "Abdelwahed", + "lastName": "Wahib", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_141", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_519751", + "firstName": "Maxime", + "lastName": "Nonnenmacher", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_148", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_520172", + "firstName": "Mustapha", + "lastName": "Sangaré", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_521597", + "firstName": "Malcolm", + "lastName": "Viltard", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523105", + "firstName": "Killian", + "lastName": "Camele", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523643", + "firstName": "Adilson", + "lastName": "Malanda", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_3308", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523644", + "firstName": "Check-Oumar", + "lastName": "Diakité", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 55 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523673", + "firstName": "Théo", + "lastName": "De Percin", + "position": 1, + "ultraPosition": 10, + "quotation": 5, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523826", + "firstName": "Paul", + "lastName": "Joly", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_138", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523827", + "firstName": "Arnaud", + "lastName": "Tattevin", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523828", + "firstName": "Adrien", + "lastName": "Delphis", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523830", + "firstName": "Elive Stephen", + "lastName": "Ewange", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_52777", + "firstName": "Yohann", + "lastName": "Thuram-Ulien", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_1430", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_530140", + "firstName": "Théo", + "lastName": "Loridan", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_530579", + "firstName": "Mathis", + "lastName": "Lachuer", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + } + ] + } + }, + { + "id": "mpg_championship_player_531033", + "firstName": "Mahamadou", + "lastName": "Doucouré", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 86 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 30 + } + } + ] + } + }, + { + "id": "mpg_championship_player_532751", + "firstName": "Migouel", + "lastName": "Alfarela", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 19 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 40 + } + } + ] + } + }, + { + "id": "mpg_championship_player_532967", + "firstName": "Olivier", + "lastName": "Boissy", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 2.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 48 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + } + ] + } + }, + { + "id": "mpg_championship_player_533003", + "firstName": "Tairyk", + "lastName": "Arconte", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_534316", + "firstName": "Mathéo", + "lastName": "Didot", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_428", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535702", + "firstName": "Brahim", + "lastName": "Traoré", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535703", + "firstName": "Yohan", + "lastName": "Cassubie", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535705", + "firstName": "Ilyes", + "lastName": "Najim", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_1028", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535706", + "firstName": "Andreas", + "lastName": "Hountondji", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 64 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 19 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535977", + "firstName": "Iliès", + "lastName": "Soudani", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535978", + "firstName": "Thomas", + "lastName": "Himeur", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_427", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535979", + "firstName": "Mamady", + "lastName": "Bangré", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_427", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538781", + "firstName": "Erwan", + "lastName": "Belhadji", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538782", + "firstName": "Mattheo", + "lastName": "Xantippe", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538783", + "firstName": "Yassine", + "lastName": "Haouari", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 2 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538784", + "firstName": "Melvin", + "lastName": "Bachelet", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538786", + "firstName": "Amir", + "lastName": "Richardson", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 34 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538788", + "firstName": "Mathéo", + "lastName": "Bodmer", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_539713", + "firstName": "Gustavo Fabrice", + "lastName": "Sangare", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_54408", + "firstName": "Zargo", + "lastName": "Toure", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_54413", + "firstName": "Frédéric", + "lastName": "Sammaritano", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544427", + "firstName": "Mohamed", + "lastName": "Ouadah", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 73 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 22 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544487", + "firstName": "Kilian", + "lastName": "Corredor", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544830", + "firstName": "Julien", + "lastName": "Le Cardinal", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544831", + "firstName": "Alexandre", + "lastName": "Jourda", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_139", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544834", + "firstName": "Stephen", + "lastName": "Quemper", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545011", + "firstName": "Albin", + "lastName": "Demouchy", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545012", + "firstName": "Johan", + "lastName": "Rotsen", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545014", + "firstName": "Ottman", + "lastName": "Dadoune", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545015", + "firstName": "Yassine", + "lastName": "Bahassa", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_2541", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545272", + "firstName": "Kévin", + "lastName": "Danois", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545274", + "firstName": "Plamedi", + "lastName": "Buni Jorge", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545275", + "firstName": "Hatim", + "lastName": "Far", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_3308", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545281", + "firstName": "Matthis", + "lastName": "Riou", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_428", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545282", + "firstName": "Théo", + "lastName": "Le Normand", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_428", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545284", + "firstName": "Theo", + "lastName": "Emmanuelli", + "position": 2, + "ultraPosition": 21, + "quotation": 2, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545285", + "firstName": "Ghjuvanni", + "lastName": "Quilichini", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_1163", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545286", + "firstName": "Neil", + "lastName": "El Aynaoui", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 46 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545287", + "firstName": "Quentin", + "lastName": "Galvez Diarra", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_693", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545682", + "firstName": "Leon", + "lastName": "Delpech", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545683", + "firstName": "Pierre", + "lastName": "Zaidan", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_2336", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545710", + "firstName": "Zinedine", + "lastName": "Labyad", + "position": 4, + "ultraPosition": 40, + "quotation": 2, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545711", + "firstName": "Mohamed", + "lastName": "Kaba", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 66 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545712", + "firstName": "Alois", + "lastName": "Penin", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545713", + "firstName": "Ilyes", + "lastName": "Hamache", + "position": 4, + "ultraPosition": 40, + "quotation": 4, + "clubId": "mpg_championship_club_1996", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545715", + "firstName": "Sidi", + "lastName": "Cissé", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_1245", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545716", + "firstName": "Mohamed", + "lastName": "Koné", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_141", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545719", + "firstName": "Moise", + "lastName": "Koumba", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545722", + "firstName": "Farés", + "lastName": "Mehenni", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_148", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545723", + "firstName": "Axel", + "lastName": "Francke", + "position": 4, + "ultraPosition": 40, + "quotation": 6, + "clubId": "mpg_championship_club_148", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545743", + "firstName": "Iyad", + "lastName": "Mohamed", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_138", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545763", + "firstName": "Brahimi", + "lastName": "Bilal", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_3288", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_546171", + "firstName": "Anthony", + "lastName": "Angelini", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_139", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_546172", + "firstName": "Guillaume", + "lastName": "Restes", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_427", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_546199", + "firstName": "Yoan", + "lastName": "Koré", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_546344", + "firstName": "Esteban", + "lastName": "Strazzeri", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_1272", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_55335", + "firstName": "Romain", + "lastName": "Lejeune", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_2541", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_55592", + "firstName": "Yoric", + "lastName": "Ravet", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_58625", + "firstName": "Gaëtan", + "lastName": "Charbonnier", + "position": 4, + "ultraPosition": 40, + "quotation": 18, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_59956", + "firstName": "Mathieu", + "lastName": "Gorgelin", + "position": 1, + "ultraPosition": 10, + "quotation": 10, + "clubId": "mpg_championship_club_141", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_59964", + "firstName": "Yoann", + "lastName": "Court", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 6.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_60343", + "firstName": "Sambou", + "lastName": "Yatabaré", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 3, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 39 + } + } + ] + } + }, + { + "id": "mpg_championship_player_61983", + "firstName": "Ruben", + "lastName": "Gabrielsen", + "position": 2, + "ultraPosition": 20, + "quotation": 20, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_62226", + "firstName": "Maxime", + "lastName": "Barthelme", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_428", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 88 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 87 + } + } + ] + } + }, + { + "id": "mpg_championship_player_67272", + "firstName": "Anthony", + "lastName": "Gonçalves", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_68166", + "firstName": "Florent", + "lastName": "Hanin", + "position": 2, + "ultraPosition": 21, + "quotation": 16, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73667", + "firstName": "Benjamin", + "lastName": "Jeannot", + "position": 4, + "ultraPosition": 40, + "quotation": 14, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 21 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73877", + "firstName": "Riad", + "lastName": "Nouri", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 46 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73957", + "firstName": "Yohan", + "lastName": "Bocognano", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_139", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73985", + "firstName": "Gaëtan", + "lastName": "Belaud", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_2338", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_75987", + "firstName": "Benjamin", + "lastName": "Leroy", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_79237", + "firstName": "Florentin", + "lastName": "Pogba", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_693", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_79870", + "firstName": "Billy", + "lastName": "Ketkeophomphone", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_3288", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_79917", + "firstName": "Idriss", + "lastName": "Saadi", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 25 + } + } + ] + } + }, + { + "id": "mpg_championship_player_80565", + "firstName": "Mathias", + "lastName": "Autret", + "position": 3, + "ultraPosition": 31, + "quotation": 28, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_80799", + "firstName": "Joffrey", + "lastName": "Cuffaut", + "position": 2, + "ultraPosition": 21, + "quotation": 20, + "clubId": "mpg_championship_club_1996", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_80800", + "firstName": "Jonathan", + "lastName": "Rivierez", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_1028", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_82831", + "firstName": "Pierre", + "lastName": "Gibaud", + "position": 2, + "ultraPosition": 21, + "quotation": 14, + "clubId": "mpg_championship_club_141", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_83279", + "firstName": "Mickael", + "lastName": "Le Bihan", + "position": 4, + "ultraPosition": 40, + "quotation": 40, + "clubId": "mpg_championship_club_2130", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_83542", + "firstName": "Thomas", + "lastName": "Vincensini", + "position": 1, + "ultraPosition": 10, + "quotation": 16, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_86383", + "firstName": "Brecht", + "lastName": "Dejaegere", + "position": 3, + "ultraPosition": 31, + "quotation": 22, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 77 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + } + ] + } + }, + { + "id": "mpg_championship_player_86599", + "firstName": "Alexandre", + "lastName": "Coeff", + "position": 2, + "ultraPosition": 20, + "quotation": 13, + "clubId": "mpg_championship_club_138", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_86875", + "firstName": "Loris", + "lastName": "Nery", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 48 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_90436", + "firstName": "Manuel", + "lastName": "Perez", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_1272", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 1, + "minutesPlayed": 56 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_91019", + "firstName": null, + "lastName": "Joseph Mendes", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_1245", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92353", + "firstName": "Michael", + "lastName": "Barreto", + "position": 3, + "ultraPosition": 31, + "quotation": 26, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 76 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92520", + "firstName": "Vincent", + "lastName": "Demarconnay", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_2338", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92559", + "firstName": "Mickaël", + "lastName": "Alphonse", + "position": 2, + "ultraPosition": 21, + "quotation": 14, + "clubId": "mpg_championship_club_1430", + "stats": { + "averageRating": 4.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92748", + "firstName": "Rémy", + "lastName": "Dugimont", + "position": 4, + "ultraPosition": 40, + "quotation": 28, + "clubId": "mpg_championship_club_138", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92957", + "firstName": "Maguette", + "lastName": "Diongue", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 71 + } + } + ] + } + }, + { + "id": "mpg_championship_player_93591", + "firstName": "Gaëtan", + "lastName": "Courtet", + "position": 4, + "ultraPosition": 40, + "quotation": 21, + "clubId": "mpg_championship_club_1163", + "stats": { + "averageRating": 5.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 43 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_93619", + "firstName": "Baptiste", + "lastName": "Reynet", + "position": 1, + "ultraPosition": 10, + "quotation": 17, + "clubId": "mpg_championship_club_2130", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_93622", + "firstName": "Pablo", + "lastName": "Martinez", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_2336", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_93632", + "firstName": "Lloyd", + "lastName": "Palun", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_139", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_95527", + "firstName": "Saliou", + "lastName": "Ciss", + "position": 2, + "ultraPosition": 21, + "quotation": 14, + "clubId": "mpg_championship_club_148", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_97288", + "firstName": "Maxime", + "lastName": "Dupé", + "position": 1, + "ultraPosition": 10, + "quotation": 17, + "clubId": "mpg_championship_club_427", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + } + ] +} diff --git a/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json new file mode 100644 index 0000000..f491106 --- /dev/null +++ b/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json @@ -0,0 +1,148 @@ +{ + "id": "mpg_team_MLEFEX6G_3_1_2", + "type": "mpg_team", + "name": "Axel Football Club", + "abbreviation": "AFC", + "gear": { + "home": { + "jerseyId": "mpg_jersey_backup_5_e1c5cb798cf638ded8ba80125be693cc" + } + }, + "status": 3, + "budget": 0, + "buyableRemoveGoal": 1, + "squad": { + "mpg_championship_player_92353": { + "id": "mpg_championship_player_92353", + "price": 45, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_512711": { + "id": "mpg_championship_player_512711", + "price": 12, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_511596": { + "id": "mpg_championship_player_511596", + "price": 53, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_509285": { + "id": "mpg_championship_player_509285", + "price": 1, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_489486": { + "id": "mpg_championship_player_489486", + "price": 9, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_454964": { + "id": "mpg_championship_player_454964", + "price": 6, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_437503": { + "id": "mpg_championship_player_437503", + "price": 11, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_228313": { + "id": "mpg_championship_player_228313", + "price": 57, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_220359": { + "id": "mpg_championship_player_220359", + "price": 32, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_209171": { + "id": "mpg_championship_player_209171", + "price": 29, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_204405": { + "id": "mpg_championship_player_204405", + "price": 43, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_167454": { + "id": "mpg_championship_player_167454", + "price": 50, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_149035": { + "id": "mpg_championship_player_149035", + "price": 11, + "bidDate": "2021-07-28T18:01:02Z", + "status": 1 + }, + "mpg_championship_player_235708": { + "id": "mpg_championship_player_235708", + "price": 21, + "bidDate": "2021-07-29T12:38:49Z", + "status": 1 + }, + "mpg_championship_player_177449": { + "id": "mpg_championship_player_177449", + "price": 33, + "bidDate": "2021-07-29T12:38:49Z", + "status": 1 + }, + "mpg_championship_player_102724": { + "id": "mpg_championship_player_102724", + "price": 8, + "bidDate": "2021-07-29T12:38:49Z", + "status": 1 + }, + "mpg_championship_player_533003": { + "id": "mpg_championship_player_533003", + "price": 11, + "bidDate": "2021-07-29T12:56:46Z", + "status": 1 + }, + "mpg_championship_player_423064": { + "id": "mpg_championship_player_423064", + "price": 26, + "bidDate": "2021-07-29T12:56:46Z", + "status": 1 + }, + "mpg_championship_player_245485": { + "id": "mpg_championship_player_245485", + "price": 24, + "bidDate": "2021-07-29T12:56:46Z", + "status": 1 + }, + "mpg_championship_player_173242": { + "id": "mpg_championship_player_173242", + "price": 18, + "bidDate": "2021-07-29T12:56:46Z", + "status": 1 + } + }, + "bids": [ + ], + "bonuses": { + "removeGoal": 1, + "boostOnePlayer": 3, + "nerfGoalkeeper": 2, + "boostAllPlayers": 1, + "mirror": 1, + "removeRandomPlayer": 1, + "blockTacticalSubs": 1 + }, + "initialValue": 313 +} diff --git a/src/test/resources/__files/mpg.trading.buy.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.trading.buy.MLEFEX6G.20210804.json new file mode 100644 index 0000000..c12c7b9 --- /dev/null +++ b/src/test/resources/__files/mpg.trading.buy.MLEFEX6G.20210804.json @@ -0,0 +1,29800 @@ +{ + "availablePlayers": [ + { + "id": "mpg_championship_player_103122", + "lastName": "Akichi", + "firstName": "Edmond", + "position": 3, + "quotation": 9, + "ultraPosition": 30, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_10599", + "lastName": "Ben Saada", + "firstName": "Chaouki", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-08-29", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_106599", + "lastName": "Bertrand", + "firstName": "Benjamin", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_5420", + "joinDate": "2019-07-15", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_106600", + "lastName": "Sainati", + "firstName": "Joris", + "position": 2, + "quotation": 8, + "ultraPosition": 20, + "clubId": "mpg_championship_club_139", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_110291", + "lastName": "Schur", + "firstName": "Kevin", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_139", + "joinDate": "2018-07-05", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_110351", + "lastName": "N'Diaye", + "firstName": "Alassane", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_111181", + "lastName": "Gnahore", + "firstName": "Eddy", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2019-07-03", + "availableSince": "2021-02-02T11:24:42Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_112467", + "lastName": "Ba", + "firstName": "El-Hadji", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_428", + "joinDate": "2019-08-21", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_116593", + "lastName": "Vandenabeele", + "firstName": "Eric", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_119744", + "lastName": "Michel", + "firstName": "Mathieu", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-10-05", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_120811", + "lastName": "Belmonte", + "firstName": "Anthony", + "position": 3, + "quotation": 15, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-16", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_121149", + "lastName": "Tchouatcha", + "firstName": "Jovanie", + "position": 2, + "quotation": 1, + "ultraPosition": 21, + "clubId": "mpg_championship_club_3288", + "joinDate": "2017-09-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_124132", + "lastName": "Bråtveit", + "firstName": "Per Kristian", + "position": 1, + "quotation": 10, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2336", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 1 + }, + { + "id": "mpg_championship_player_129481", + "lastName": "Lambese", + "firstName": "Stéphane", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2541", + "joinDate": "2019-07-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_136380", + "lastName": "Celina", + "firstName": "Bersant", + "position": 3, + "quotation": 6, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-09-09", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_140246", + "lastName": "Desler", + "firstName": "Mikkel", + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-07-20", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_144660", + "lastName": "Ndong", + "firstName": "Didier", + "position": 3, + "quotation": 6, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-07-29", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149993", + "lastName": "Correa", + "firstName": "Joris", + "position": 4, + "quotation": 16, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_152865", + "lastName": "Cheick Traoré", + "firstName": null, + "position": 2, + "quotation": 5, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-08-21", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_153014", + "lastName": "Marié", + "firstName": "Jordan", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2130", + "joinDate": "2013-01-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_161275", + "lastName": "Padovani", + "firstName": "Romain", + "position": 3, + "quotation": 6, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2541", + "joinDate": "2016-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_165413", + "lastName": "Boé-Kane", + "firstName": "Yann", + "position": 3, + "quotation": 12, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2541", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_166541", + "lastName": "Dos Santos", + "firstName": "Laurent", + "position": 2, + "quotation": 11, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1996", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_167929", + "lastName": "Rocheteau", + "firstName": "Kevin", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168027", + "lastName": "Ondaan", + "firstName": "Terell", + "position": 4, + "quotation": 8, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-02", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168289", + "lastName": "de Iriondo", + "firstName": "Manuel", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-07-29", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_168434", + "lastName": "Pi", + "firstName": "Jessy", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_171459", + "lastName": "Ben Mohamed", + "firstName": "Ayman", + "position": 2, + "quotation": 5, + "ultraPosition": 21, + "clubId": "mpg_championship_club_141", + "joinDate": "2019-08-14", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_174846", + "lastName": "Zungu", + "firstName": "Bongani", + "position": 3, + "quotation": 6, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2017-08-31", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176439", + "lastName": "D'Almeida", + "firstName": "Sessi", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2019-07-24", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176480", + "lastName": "Diallo", + "firstName": "Mamadou Lamarana", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177222", + "lastName": "Ba", + "firstName": "Alioune", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-03", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177445", + "lastName": "Chougrani", + "firstName": "Joris", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3308", + "joinDate": "2010-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_179615", + "lastName": "Henen", + "firstName": "David", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184232", + "lastName": "Akolo", + "firstName": "Chadrac", + "position": 3, + "quotation": 12, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 7 + }, + { + "id": "mpg_championship_player_184677", + "lastName": "Sollacaro", + "firstName": "Francois-Joseph", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1163", + "joinDate": "2014-05-10", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_185482", + "lastName": "Thioune", + "firstName": "Ousseynou", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-07-25", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 58 + } + } + ] + } + }, + { + "id": "mpg_championship_player_189536", + "lastName": "Spano", + "firstName": "Maxime", + "position": 2, + "quotation": 5, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1996", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_192021", + "lastName": "Mbemba", + "firstName": "Nolan", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193080", + "lastName": "Konate", + "firstName": "Hillel", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1996", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193276", + "lastName": "Jacob", + "firstName": "Valentin", + "position": 3, + "quotation": 11, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 76 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 32 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 15 + }, + { + "id": "mpg_championship_player_193417", + "lastName": "Lusamba", + "firstName": "Arnaud", + "position": 3, + "quotation": 15, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-10-20", + "availableSince": "2020-10-28T13:29:15Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 5 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_195603", + "lastName": "Nazon", + "firstName": "Duckens", + "position": 4, + "quotation": 7, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-26", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_198067", + "lastName": "Straalman", + "firstName": "Bart", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-01-29T10:52:40Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 43 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_198189", + "lastName": "Louiserre", + "firstName": "Dylan", + "position": 3, + "quotation": 11, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1245", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199519", + "lastName": "Boto", + "firstName": "Kenji-Van", + "position": 2, + "quotation": 5, + "ultraPosition": 21, + "clubId": "mpg_championship_club_5420", + "joinDate": "2014-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 87 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199663", + "lastName": "Georgen", + "firstName": "Alec", + "position": 2, + "quotation": 6, + "ultraPosition": 21, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 55 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_200671", + "lastName": "Depres", + "firstName": "Clement", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3308", + "joinDate": "2014-11-20", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 68 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 59 + } + } + ] + } + }, + { + "id": "mpg_championship_player_201774", + "lastName": "Gbelle", + "firstName": "Garland", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2541", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204719", + "lastName": "Basila", + "firstName": "Thomas", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204742", + "lastName": "Benrahou", + "firstName": "Yassine", + "position": 3, + "quotation": 6, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 7, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 6 + }, + { + "id": "mpg_championship_player_207300", + "lastName": "Dobre", + "firstName": "Mihai-Alexandru", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-08-15", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_208568", + "lastName": "Vallier", + "firstName": "Lenny", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-09-25", + "availableSince": "2020-09-30T12:28:47Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_209035", + "lastName": "Panzo", + "firstName": "Jonathan", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-08-26", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 12 + }, + { + "id": "mpg_championship_player_209874", + "lastName": "Marchetti", + "firstName": "Vincent", + "position": 3, + "quotation": 12, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_210187", + "lastName": "Sarr", + "firstName": "Sidy", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2336", + "joinDate": "2019-08-06", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213196", + "lastName": "Demoncy", + "firstName": "Yohan", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2338", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213443", + "lastName": "Filipovic", + "firstName": "Ivan", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2338", + "joinDate": "2021-07-30", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_217319", + "lastName": "Ndom", + "firstName": "Aly", + "position": 3, + "quotation": 6, + "ultraPosition": 30, + "clubId": "mpg_championship_club_138", + "joinDate": "2019-07-30", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + } + ] + } + }, + { + "id": "mpg_championship_player_217517", + "lastName": "Cissé", + "firstName": "Souleymane", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-08-21", + "availableSince": "2020-08-27T10:08:19Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 37 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_218116", + "lastName": "Kitala", + "firstName": "Yann", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_218123", + "lastName": "Sivis", + "firstName": "Maxime", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219145", + "lastName": "Gonzalez", + "firstName": "Oumar", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1163", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219287", + "lastName": "Cissokho", + "firstName": "Till", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2541", + "joinDate": "2019-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219297", + "lastName": "Gaudin", + "firstName": "Jules", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-04-30", + "availableSince": "2021-05-05T08:37:09Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219298", + "lastName": "Kerouedan", + "firstName": "Alan", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_219628", + "lastName": "Abeid", + "firstName": "Aly", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-01-23", + "availableSince": "2020-01-29T10:52:40Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 55 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220110", + "lastName": "Braat", + "firstName": "Quentin", + "position": 1, + "quotation": 14, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-07-08", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220560", + "lastName": "Perrin", + "firstName": "Gaetan", + "position": 3, + "quotation": 8, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2018-01-21", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 84 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220561", + "lastName": "Dekoke", + "firstName": "Nathan", + "position": 2, + "quotation": 6, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220962", + "lastName": "Kouagba", + "firstName": "Loic", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2019-08-04", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 73 + } + } + ] + } + }, + { + "id": "mpg_championship_player_223393", + "lastName": "Timité", + "firstName": "Cheick", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1430", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_225046", + "lastName": "Stavitski", + "firstName": "Timo", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2018-01-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_225904", + "lastName": "Essende", + "firstName": "Samuel", + "position": 4, + "quotation": 8, + "ultraPosition": 40, + "clubId": "mpg_championship_club_5420", + "joinDate": "2021-07-08", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 27 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + } + ] + } + }, + { + "id": "mpg_championship_player_226943", + "lastName": "Desprez", + "firstName": "Didier", + "position": 1, + "quotation": 5, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2338", + "joinDate": "2021-01-11", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_226947", + "lastName": "Taha", + "firstName": "Ervin", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-02-14", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_229884", + "lastName": "Nisic", + "firstName": "Jovan", + "position": 3, + "quotation": 11, + "ultraPosition": 30, + "clubId": "mpg_championship_club_5420", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + } + ] + } + }, + { + "id": "mpg_championship_player_230448", + "lastName": "Campanini", + "firstName": "Thibault", + "position": 2, + "quotation": 1, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_230624", + "lastName": "Genreau", + "firstName": "Denis", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-08-03", + "availableSince": "2021-08-04T08:33:01Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_230718", + "lastName": "Fortune", + "firstName": "Kévin", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232197", + "lastName": "Burner", + "firstName": "Patrick", + "position": 2, + "quotation": 5, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-09-25", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 4 + }, + { + "id": "mpg_championship_player_232239", + "lastName": "Louchet", + "firstName": "Jean", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1245", + "joinDate": "2021-07-14", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_234458", + "lastName": "Gaspar", + "firstName": "Jordy", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_240136", + "lastName": "Muyumba Nkita", + "firstName": "Tristan", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-07-01", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 77 + } + } + ] + } + }, + { + "id": "mpg_championship_player_241337", + "lastName": "Paro", + "firstName": "Issouf", + "position": 2, + "quotation": 3, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1245", + "joinDate": "2017-08-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_242111", + "lastName": "Bena", + "firstName": "Quentin", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1245", + "joinDate": "2016-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_242896", + "lastName": "Taoui", + "firstName": "Adil", + "position": 4, + "quotation": 14, + "ultraPosition": 40, + "clubId": "mpg_championship_club_139", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 33 + } + } + ] + } + }, + { + "id": "mpg_championship_player_243521", + "lastName": "Pettersson", + "firstName": "Isak", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-01-05", + "availableSince": "2021-02-02T11:24:42Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_243998", + "lastName": "Alioui", + "firstName": "Nabil", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-08-11", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244135", + "lastName": "Jung", + "firstName": "Andrew", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-07-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244136", + "lastName": "Dias", + "firstName": "Lucas", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2336", + "joinDate": "2016-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_244794", + "lastName": "Camara", + "firstName": "Ousoumane", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_138", + "joinDate": "2016-12-12", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245139", + "lastName": "Guibert", + "firstName": "Samuel", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_139", + "joinDate": "2018-10-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245726", + "lastName": "Abdallah", + "firstName": "Abdel Hakim", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245914", + "lastName": "Merdji", + "firstName": "Yanis", + "position": 4, + "quotation": 7, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-11-25", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_247385", + "lastName": "Racioppi", + "firstName": "Anthony", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-09-25", + "availableSince": "2021-07-21T15:08:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_250333", + "lastName": "Masson", + "firstName": "Julien", + "position": 3, + "quotation": 3, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2017-02-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423838", + "lastName": "Rajot", + "firstName": "Lorenzo", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2017-05-18", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 9 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423870", + "lastName": "Ahlinvi", + "firstName": "Matteo", + "position": 3, + "quotation": 5, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + } + }, + { + "id": "mpg_championship_player_424149", + "lastName": "Lomotey", + "firstName": "Emmanuel", + "position": 3, + "quotation": 14, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-08-17", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_424242", + "lastName": "Gomez", + "firstName": "Charbel", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1430", + "joinDate": "2021-02-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_429519", + "lastName": "Kerrouche", + "firstName": "Redouane", + "position": 3, + "quotation": 13, + "ultraPosition": 30, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-02", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 59 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + } + ] + } + }, + { + "id": "mpg_championship_player_430855", + "lastName": "Ndenbe", + "firstName": "Logan", + "position": 2, + "quotation": 7, + "ultraPosition": 21, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_431653", + "lastName": "Wadja", + "firstName": "Franklin", + "position": 3, + "quotation": 3, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1028", + "joinDate": "2021-07-10", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 21 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_433522", + "lastName": "Fofana", + "firstName": "Yahia", + "position": 1, + "quotation": 9, + "ultraPosition": 10, + "clubId": "mpg_championship_club_141", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_434828", + "lastName": "Laiton", + "firstName": "Sonny", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_138", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_435615", + "lastName": "Sainte-Luce", + "firstName": "Théo", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2336", + "joinDate": "2017-09-08", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_437950", + "lastName": "Khalid", + "firstName": "Driss", + "position": 3, + "quotation": 2, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2019-07-16", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_437987", + "lastName": "Marchand", + "firstName": "Yannick", + "position": 3, + "quotation": 13, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-07-16", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439053", + "lastName": "Metelus", + "firstName": "Rénald", + "position": 3, + "quotation": 2, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439122", + "lastName": "Guessoum", + "firstName": "Kelyan", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2336", + "joinDate": "2017-10-12", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 11 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439964", + "lastName": "Rafael Fonseca", + "firstName": null, + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-08-06", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_440058", + "lastName": "Clementia", + "firstName": "Yannis", + "position": 1, + "quotation": 5, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1028", + "joinDate": "2021-02-03", + "availableSince": "2021-02-17T08:44:26Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_440656", + "lastName": "Pierre", + "firstName": "Leverton", + "position": 3, + "quotation": 9, + "ultraPosition": 30, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_441575", + "lastName": "Diaby", + "firstName": "Mohamed Lamine", + "position": 4, + "quotation": 7, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2338", + "joinDate": "2019-10-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_44203", + "lastName": "Coulibaly", + "firstName": "Gary", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_139", + "joinDate": "2017-08-22", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442649", + "lastName": "Elogo", + "firstName": "Arsene", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442748", + "lastName": "Huysman", + "firstName": "Jeremy", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2017-09-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 37 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 32 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442750", + "lastName": "Boudaud", + "firstName": "Dimitri", + "position": 3, + "quotation": 8, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3288", + "joinDate": "2017-09-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442751", + "lastName": "Bruneel", + "firstName": "Nicolas", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_3288", + "joinDate": "2017-09-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 59 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_446029", + "lastName": "Ouattara", + "firstName": "Abou", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-01-31", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_447579", + "lastName": "Lahne", + "firstName": "Jack", + "position": 4, + "quotation": 6, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1430", + "joinDate": "2019-07-02", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 14 + }, + { + "id": "mpg_championship_player_448273", + "lastName": "Skyttä", + "firstName": "Naatan", + "position": 3, + "quotation": 6, + "ultraPosition": 31, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-02-01", + "availableSince": "2021-02-03T18:07:16Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 8 + }, + { + "id": "mpg_championship_player_449689", + "lastName": "Bloch", + "firstName": "Florentin", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_427", + "joinDate": "2019-07-31", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_450381", + "lastName": "Bourdelle", + "firstName": "Paul", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_45084", + "lastName": "Deaux", + "firstName": "Lucas", + "position": 3, + "quotation": 15, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-08-22", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_451005", + "lastName": "Barbet", + "firstName": "Théo", + "position": 2, + "quotation": 8, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2130", + "joinDate": "2018-05-11", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_45108", + "lastName": "Youssouf", + "firstName": "Mohamed", + "position": 2, + "quotation": 13, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1163", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 2 + }, + { + "id": "mpg_championship_player_454674", + "lastName": "Guidi", + "firstName": "Dominique", + "position": 2, + "quotation": 12, + "ultraPosition": 20, + "clubId": "mpg_championship_club_139", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_454702", + "lastName": "Sissoko", + "firstName": "Ibrahim", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1245", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_455732", + "lastName": "Ciss", + "firstName": "Amadou", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-08-12", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 27 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + } + ] + } + }, + { + "id": "mpg_championship_player_456194", + "lastName": "Kaiboue", + "firstName": "Kylian", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_139", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + } + ] + } + }, + { + "id": "mpg_championship_player_457242", + "lastName": "Bertrand", + "firstName": "Dorian", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-07-19", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_458269", + "lastName": "N'Diaye", + "firstName": "Youssoupha", + "position": 2, + "quotation": 5, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_460590", + "lastName": "Kilama", + "firstName": "Guy-Marcelin", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1245", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461397", + "lastName": "Chabrolle", + "firstName": "Florian", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-01-05", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461433", + "lastName": "Traore", + "firstName": "Gaoussou", + "position": 3, + "quotation": 7, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2018-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_461908", + "lastName": "Pelletier", + "firstName": "Louis", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_462623", + "lastName": "Arib", + "firstName": "Gaetan", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1996", + "joinDate": "2018-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_465153", + "lastName": "Carnot", + "firstName": "Louis", + "position": 3, + "quotation": 2, + "ultraPosition": 30, + "clubId": "mpg_championship_club_428", + "joinDate": "2018-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_468427", + "lastName": "El Idrissy", + "firstName": "Mounaim", + "position": 4, + "quotation": 7, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1163", + "joinDate": "2018-10-18", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_468490", + "lastName": "Phaeton", + "firstName": "Matthias", + "position": 3, + "quotation": 7, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2018-10-19", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469269", + "lastName": "Mercier", + "firstName": "Nicolas", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469323", + "lastName": "N'Goumou Minpole", + "firstName": "Nathan", + "position": 4, + "quotation": 5, + "ultraPosition": 40, + "clubId": "mpg_championship_club_427", + "joinDate": "2018-10-30", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 8, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_47104", + "lastName": "Fontaine", + "firstName": "Jean-Pascal", + "position": 3, + "quotation": 15, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2007-08-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471141", + "lastName": "Linguet", + "firstName": "Allan", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2018-11-22", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471213", + "lastName": "Joseph", + "firstName": "Evens", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1028", + "joinDate": "2018-11-24", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471469", + "lastName": "Bouzar Essaidi", + "firstName": "Samir", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_148", + "joinDate": "2018-11-29", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473314", + "lastName": "Roncaglia", + "firstName": "Anthony", + "position": 3, + "quotation": 5, + "ultraPosition": 30, + "clubId": "mpg_championship_club_139", + "joinDate": "2017-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473530", + "lastName": "Cetiner", + "firstName": "Ozkan", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-09-18", + "availableSince": "2020-09-21T14:51:00Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_474110", + "lastName": "Zabou", + "firstName": "Cyril", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_475944", + "lastName": "Aribi", + "firstName": "Karim", + "position": 4, + "quotation": 2, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-10-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476375", + "lastName": "Botué Kouamé", + "firstName": "Jean Fiacre", + "position": 3, + "quotation": 7, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-04-02", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476401", + "lastName": "Mendy", + "firstName": "Formose", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1430", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 9 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476409", + "lastName": "Cissé", + "firstName": "Souleymane Djimou", + "position": 2, + "quotation": 5, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-27", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_476889", + "lastName": "Nazih", + "firstName": "Amjhad", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-01-15", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476894", + "lastName": "Lepenant", + "firstName": "Johann", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-08-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_477720", + "lastName": "Benchama", + "firstName": "Samy", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1245", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_477846", + "lastName": "Ngouabi", + "firstName": "Jason", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-08-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_479758", + "lastName": "Tégar", + "firstName": "Alexandre", + "position": 2, + "quotation": 2, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_480469", + "lastName": "Gomis", + "firstName": "Iron", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1430", + "joinDate": "2019-03-15", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482260", + "lastName": "Kechta", + "firstName": "Yassine", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-05-14", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482598", + "lastName": "Tebily", + "firstName": "Hermann", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2021-04-16", + "availableSince": "2021-05-05T08:37:09Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 18 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482995", + "lastName": "Doukansy", + "firstName": "Brahima", + "position": 3, + "quotation": 9, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1245", + "joinDate": "2019-04-18", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 7 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 66 + } + } + ] + } + }, + { + "id": "mpg_championship_player_483866", + "lastName": "Nsona", + "firstName": "Kelian", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-11-22", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485100", + "lastName": "Sanna", + "firstName": "Sam", + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_427", + "joinDate": "2019-08-09", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 8 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485335", + "lastName": "Chevalier", + "firstName": "Lucas", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-07-09", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485340", + "lastName": "Rapnouil", + "firstName": "Tom", + "position": 2, + "quotation": 1, + "ultraPosition": 21, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-02-09", + "availableSince": "2021-03-17T08:49:28Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485751", + "lastName": "Ben Fredj", + "firstName": "Mohammed", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_138", + "joinDate": "2021-04-19", + "availableSince": "2021-05-05T08:37:09Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487110", + "lastName": "Ouammou", + "firstName": "Nassim", + "position": 3, + "quotation": 11, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487510", + "lastName": "Coelho", + "firstName": "Grégory", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3308", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487533", + "lastName": "Goteni", + "firstName": "Chris-Vianney", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488263", + "lastName": "Huard", + "firstName": "Matthieu", + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1163", + "joinDate": "2019-07-18", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488423", + "lastName": "Vandermersch", + "firstName": "Hugo", + "position": 2, + "quotation": 6, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488439", + "lastName": "Coulibaly", + "firstName": "Woyo", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_141", + "joinDate": "2019-06-19", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488441", + "lastName": "Meddah", + "firstName": "Daylam", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489605", + "lastName": "Papeau", + "firstName": "Jayson", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1430", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 25 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489887", + "lastName": "Rouault", + "firstName": "Anthony", + "position": 2, + "quotation": 8, + "ultraPosition": 20, + "clubId": "mpg_championship_club_427", + "joinDate": "2019-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489889", + "lastName": "Zobo", + "firstName": "Stéphane", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_427", + "joinDate": "2019-02-06", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490105", + "lastName": "Sylvestre-Brac", + "firstName": "Jules", + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-08-08", + "availableSince": "2020-10-21T14:23:16Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490190", + "lastName": "Philippe", + "firstName": "Rayan", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-08-09", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_490330", + "lastName": "Ndiaye", + "firstName": "Rassoul", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-08-12", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_49057", + "lastName": "Sanaia", + "firstName": "Amiran", + "position": 2, + "quotation": 12, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3308", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492033", + "lastName": "Kikonda", + "firstName": "Mario Jason", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2338", + "joinDate": "2019-09-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 19 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492172", + "lastName": "Assogba", + "firstName": "Youssouf", + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-11-01", + "availableSince": "2020-11-18T08:56:36Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492825", + "lastName": "Valério", + "firstName": "Antoine", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2336", + "joinDate": "2019-09-13", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 75 + } + } + ] + } + }, + { + "id": "mpg_championship_player_492969", + "lastName": "Molchan", + "firstName": "Vladislav", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-09-29", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_493359", + "lastName": "Balde", + "firstName": "Thierno", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-07-13", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_494252", + "lastName": "Gioacchini", + "firstName": "Nicholas", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-10-03", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_496630", + "lastName": "Nagera", + "firstName": "Kenny", + "position": 4, + "quotation": 8, + "ultraPosition": 40, + "clubId": "mpg_championship_club_139", + "joinDate": "2021-08-03", + "availableSince": "2021-08-04T08:33:01Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_497241", + "lastName": "Renel", + "firstName": "Samuel", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1245", + "joinDate": "2019-11-07", + "availableSince": "2020-01-20T14:56:39Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_497278", + "lastName": "Ngouyamsa", + "firstName": "Ahmad Toure", + "position": 2, + "quotation": 1, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-11-08", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_498354", + "lastName": "Diliberto", + "firstName": "Noah", + "position": 3, + "quotation": 11, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2019-11-21", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501302", + "lastName": "Ponti", + "firstName": "Ryan", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-02-01", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501583", + "lastName": "Bouzit", + "firstName": "Aziz", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501675", + "lastName": "Bury", + "firstName": "Louis", + "position": 2, + "quotation": 3, + "ultraPosition": 20, + "clubId": "mpg_championship_club_5420", + "joinDate": "2014-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501676", + "lastName": "Bansais", + "firstName": "Damon", + "position": 2, + "quotation": 5, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2541", + "joinDate": "2015-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501678", + "lastName": "Ndiaye", + "firstName": "Abdourahmane", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_5420", + "joinDate": "2018-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_502436", + "lastName": "Nkambadio", + "firstName": "Obed", + "position": 1, + "quotation": 5, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-01-14", + "availableSince": "2020-01-22T15:27:13Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_502671", + "lastName": "Bunjaku", + "firstName": "Orges", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-07-19", + "availableSince": "2021-07-21T15:08:02Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 48 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_50301", + "lastName": "El Kaoutari", + "firstName": "Abdelhamid", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-01-17", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_504700", + "lastName": "Obissa", + "firstName": "Sidney", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-02-20", + "availableSince": "2020-03-11T11:43:13Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509284", + "lastName": "Casimir", + "firstName": "Josué", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-07-11", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509287", + "lastName": "Mahmoud", + "firstName": "Elies", + "position": 3, + "quotation": 8, + "ultraPosition": 31, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-07-11", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_510894", + "lastName": "Zohoré", + "firstName": "Nathan", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-08-04", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_510904", + "lastName": "Manuel Semedo", + "firstName": null, + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-08-04", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511178", + "lastName": "Kabamba Kalonji", + "firstName": "David", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2019-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511179", + "lastName": "Salhi", + "firstName": "Dorian", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_3288", + "joinDate": "2018-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511187", + "lastName": "Vannoye", + "firstName": "Thomas", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2019-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511290", + "lastName": "Monzango", + "firstName": "Nathan", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-08-21", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511294", + "lastName": "Hervieu", + "firstName": "Loup", + "position": 3, + "quotation": 3, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-08-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511295", + "lastName": "Jabbari", + "firstName": "Ayoub", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-08-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511356", + "lastName": "Cathline", + "firstName": "Yoann", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 8 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 7 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511568", + "lastName": "Younoussa", + "firstName": "Wilitty", + "position": 3, + "quotation": 5, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-08-14", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 18 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511600", + "lastName": "Benhattab", + "firstName": "Yassine", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-07-01", + "availableSince": "2020-08-27T10:08:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511605", + "lastName": "Gambor", + "firstName": "Hugo", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511652", + "lastName": "Gueye", + "firstName": "Daouda", + "position": 4, + "quotation": 5, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511956", + "lastName": "Chapelle", + "firstName": "Kryss", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511971", + "lastName": "Meliande", + "firstName": "Paul", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-08-14", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512112", + "lastName": "Arli", + "firstName": "Amir", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-08-21", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512123", + "lastName": "Hadjam", + "firstName": "Jaouen", + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-08-21", + "availableSince": "2020-08-27T10:08:19Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 8 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512241", + "lastName": "Bentil", + "firstName": "Godwin Kobby", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-08-23", + "availableSince": "2020-08-27T10:08:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512745", + "lastName": "Toure", + "firstName": "Souleymane", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-08-28", + "availableSince": "2020-09-02T13:48:16Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_514339", + "lastName": "Gomes", + "firstName": "Ylan", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-09-11", + "availableSince": "2020-09-15T10:16:50Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + } + ] + } + }, + { + "id": "mpg_championship_player_514425", + "lastName": "Inoussa", + "firstName": "Zeidane", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-09-01", + "availableSince": "2020-09-15T10:16:50Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_515139", + "lastName": "Majouga", + "firstName": "Marco", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-09-17", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_515609", + "lastName": "Aubin Diagne", + "firstName": "Sidy Mamadou", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-09-18", + "availableSince": "2020-09-21T14:51:00Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_515615", + "lastName": "Faraj", + "firstName": "Samy", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-09-18", + "availableSince": "2020-09-21T14:51:00Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_516201", + "lastName": "Giagnorio", + "firstName": "Marco Claude", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_148", + "joinDate": "2020-09-25", + "availableSince": "2020-09-30T12:28:47Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_516940", + "lastName": "Maronne", + "firstName": "Yanis", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-10-02", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_518144", + "lastName": "Péan", + "firstName": "Sullivan", + "position": 1, + "quotation": 8, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-10-15", + "availableSince": "2020-10-21T14:23:16Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_519732", + "lastName": "Wahib", + "firstName": "Abdelwahed", + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-11-06", + "availableSince": "2020-11-18T08:56:36Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_519751", + "lastName": "Nonnenmacher", + "firstName": "Maxime", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_148", + "joinDate": "2020-11-01", + "availableSince": "2020-11-18T08:56:36Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_520172", + "lastName": "Sangaré", + "firstName": "Mustapha", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-11-05", + "availableSince": "2020-12-09T11:11:14Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_521597", + "lastName": "Viltard", + "firstName": "Malcolm", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-11-27", + "availableSince": "2020-12-09T11:11:14Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523105", + "lastName": "Camele", + "firstName": "Killian", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-12-14", + "availableSince": "2020-12-30T10:27:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523643", + "lastName": "Malanda", + "firstName": "Adilson", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-11-19", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523673", + "lastName": "De Percin", + "firstName": "Théo", + "position": 1, + "quotation": 5, + "ultraPosition": 10, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-12-20", + "availableSince": "2020-12-30T10:27:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523826", + "lastName": "Joly", + "firstName": "Paul", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-10-13", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523827", + "lastName": "Tattevin", + "firstName": "Arnaud", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-10-13", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523828", + "lastName": "Delphis", + "firstName": "Adrien", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-10-16", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523830", + "lastName": "Ewange", + "firstName": "Elive Stephen", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_52777", + "lastName": "Thuram-Ulien", + "firstName": "Yohann", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-07-17", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_530140", + "lastName": "Loridan", + "firstName": "Théo", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2021-01-22", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_530579", + "lastName": "Lachuer", + "firstName": "Mathis", + "position": 3, + "quotation": 10, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1430", + "joinDate": "2021-02-01", + "availableSince": "2021-02-03T18:07:16Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + } + ] + } + }, + { + "id": "mpg_championship_player_534316", + "lastName": "Didot", + "firstName": "Mathéo", + "position": 3, + "quotation": 3, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-02-12", + "availableSince": "2021-03-17T08:49:28Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535702", + "lastName": "Traoré", + "firstName": "Brahim", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1028", + "joinDate": "2021-04-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535703", + "lastName": "Cassubie", + "firstName": "Yohan", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1245", + "joinDate": "2021-04-03", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535705", + "lastName": "Najim", + "firstName": "Ilyes", + "position": 3, + "quotation": 3, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1028", + "joinDate": "2021-04-02", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535977", + "lastName": "Soudani", + "firstName": "Iliès", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-04-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535978", + "lastName": "Himeur", + "firstName": "Thomas", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-04-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535979", + "lastName": "Bangré", + "firstName": "Mamady", + "position": 3, + "quotation": 3, + "ultraPosition": 31, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-04-01", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538781", + "lastName": "Belhadji", + "firstName": "Erwan", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2130", + "joinDate": "2021-05-15", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538782", + "lastName": "Xantippe", + "firstName": "Mattheo", + "position": 2, + "quotation": 5, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1430", + "joinDate": "2021-05-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538783", + "lastName": "Haouari", + "firstName": "Yassine", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-05-14", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 2 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538784", + "lastName": "Bachelet", + "firstName": "Melvin", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-05-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538786", + "lastName": "Richardson", + "firstName": "Amir", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-05-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 34 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + } + ] + } + }, + { + "id": "mpg_championship_player_538788", + "lastName": "Bodmer", + "firstName": "Mathéo", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-05-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_539713", + "lastName": "Sangare", + "firstName": "Gustavo Fabrice", + "position": 3, + "quotation": 6, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2541", + "joinDate": "2018-12-12", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_54408", + "lastName": "Toure", + "firstName": "Zargo", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2130", + "joinDate": "2021-07-28", + "availableSince": "2021-07-30T09:21:27Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544427", + "lastName": "Ouadah", + "firstName": "Mohamed", + "position": 3, + "quotation": 11, + "ultraPosition": 30, + "clubId": "mpg_championship_club_3288", + "joinDate": "2021-07-02", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 73 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 22 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544487", + "lastName": "Corredor", + "firstName": "Kilian", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3308", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544830", + "lastName": "Le Cardinal", + "firstName": "Julien", + "position": 2, + "quotation": 12, + "ultraPosition": 20, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544831", + "lastName": "Jourda", + "firstName": "Alexandre", + "position": 2, + "quotation": 1, + "ultraPosition": 21, + "clubId": "mpg_championship_club_139", + "joinDate": "2021-05-14", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_544834", + "lastName": "Quemper", + "firstName": "Stephen", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545011", + "lastName": "Demouchy", + "firstName": "Albin", + "position": 2, + "quotation": 8, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545012", + "lastName": "Rotsen", + "firstName": "Johan", + "position": 3, + "quotation": 5, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545272", + "lastName": "Danois", + "firstName": "Kévin", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_138", + "joinDate": "2021-07-13", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545274", + "lastName": "Buni Jorge", + "firstName": "Plamedi", + "position": 3, + "quotation": 3, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2021-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545275", + "lastName": "Far", + "firstName": "Hatim", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3308", + "joinDate": "2021-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545281", + "lastName": "Riou", + "firstName": "Matthis", + "position": 3, + "quotation": 2, + "ultraPosition": 30, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545282", + "lastName": "Le Normand", + "firstName": "Théo", + "position": 3, + "quotation": 2, + "ultraPosition": 30, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-07-01", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545284", + "lastName": "Emmanuelli", + "firstName": "Theo", + "position": 2, + "quotation": 2, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-07-01", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545285", + "lastName": "Quilichini", + "firstName": "Ghjuvanni", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-07-01", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545286", + "lastName": "El Aynaoui", + "firstName": "Neil", + "position": 3, + "quotation": 6, + "ultraPosition": 31, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-01", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 46 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545287", + "lastName": "Galvez Diarra", + "firstName": "Quentin", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_693", + "joinDate": "2021-07-01", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545682", + "lastName": "Delpech", + "firstName": "Leon", + "position": 3, + "quotation": 2, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2336", + "joinDate": "2021-07-24", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545683", + "lastName": "Zaidan", + "firstName": "Pierre", + "position": 2, + "quotation": 1, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2336", + "joinDate": "2021-07-24", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545710", + "lastName": "Labyad", + "firstName": "Zinedine", + "position": 4, + "quotation": 2, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545711", + "lastName": "Kaba", + "firstName": "Mohamed", + "position": 3, + "quotation": 6, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 66 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545712", + "lastName": "Penin", + "firstName": "Alois", + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545713", + "lastName": "Hamache", + "firstName": "Ilyes", + "position": 4, + "quotation": 4, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545715", + "lastName": "Cissé", + "firstName": "Sidi", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1245", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 12 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545716", + "lastName": "Koné", + "firstName": "Mohamed", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545719", + "lastName": "Koumba", + "firstName": "Moise", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545743", + "lastName": "Mohamed", + "firstName": "Iyad", + "position": 3, + "quotation": 5, + "ultraPosition": 30, + "clubId": "mpg_championship_club_138", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545763", + "lastName": "Bilal", + "firstName": "Brahimi", + "position": 3, + "quotation": 6, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3288", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_546171", + "lastName": "Angelini", + "firstName": "Anthony", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_139", + "joinDate": "2021-07-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_546172", + "lastName": "Restes", + "firstName": "Guillaume", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-07-27", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_546199", + "lastName": "Koré", + "firstName": "Yoan", + "position": 2, + "quotation": 3, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2338", + "joinDate": "2021-07-30", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_546344", + "lastName": "Strazzeri", + "firstName": "Esteban", + "position": 3, + "quotation": 2, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-08-01", + "availableSince": "2021-08-03T14:28:48Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_55335", + "lastName": "Lejeune", + "firstName": "Romain", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_58625", + "lastName": "Charbonnier", + "firstName": "Gaëtan", + "position": 4, + "quotation": 18, + "ultraPosition": 40, + "clubId": "mpg_championship_club_138", + "joinDate": "2021-08-02", + "availableSince": "2021-08-04T08:33:01Z", + "stats": { + "totalMatches": 0, + "matches": [ + ] + } + }, + { + "id": "mpg_championship_player_59956", + "lastName": "Gorgelin", + "firstName": "Mathieu", + "position": 1, + "quotation": 10, + "ultraPosition": 10, + "clubId": "mpg_championship_club_141", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_62226", + "lastName": "Barthelme", + "firstName": "Maxime", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 88 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 87 + } + } + ] + } + }, + { + "id": "mpg_championship_player_67272", + "lastName": "Gonçalves", + "firstName": "Anthony", + "position": 3, + "quotation": 5, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73877", + "lastName": "Nouri", + "firstName": "Riad", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-09-07", + "availableSince": "2020-09-09T13:42:17Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 46 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73957", + "lastName": "Bocognano", + "firstName": "Yohan", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_139", + "joinDate": "2018-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_73985", + "lastName": "Belaud", + "firstName": "Gaëtan", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 14 + }, + { + "id": "mpg_championship_player_86875", + "lastName": "Nery", + "firstName": "Loris", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 48 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_90436", + "lastName": "Perez", + "firstName": "Manuel", + "position": 3, + "quotation": 15, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 1, + "minutesPlayed": 56 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_91019", + "lastName": "Joseph Mendes", + "firstName": null, + "position": 4, + "quotation": 8, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_93632", + "lastName": "Palun", + "firstName": "Lloyd", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-08-12", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + } + ], + "unavailablePlayers": [ + { + "id": "mpg_championship_player_100961", + "lastName": "Kouassi", + "firstName": "Xavier", + "position": 3, + "quotation": 14, + "ultraPosition": 30, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-09-13", + "availableSince": "2020-09-21T14:51:00Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_102724", + "lastName": "Jeannin", + "firstName": "Mehdi", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-01-17", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_103116", + "lastName": "Léon", + "firstName": "Donovan", + "position": 1, + "quotation": 22, + "ultraPosition": 10, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_104464", + "lastName": "Valette", + "firstName": "Baptiste", + "position": 1, + "quotation": 10, + "ultraPosition": 10, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-07-04", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_104613", + "lastName": "Konaté", + "firstName": "Moussa", + "position": 4, + "quotation": 11, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-10-20", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_106160", + "lastName": "Dudouit", + "firstName": "Emeric", + "position": 2, + "quotation": 21, + "ultraPosition": 21, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-01-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 37 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 5 + }, + { + "id": "mpg_championship_player_107142", + "lastName": "Vincent", + "firstName": "Christophe", + "position": 3, + "quotation": 16, + "ultraPosition": 30, + "clubId": "mpg_championship_club_139", + "joinDate": "2018-10-04", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_107656", + "lastName": "Lopy", + "firstName": "Joseph", + "position": 3, + "quotation": 19, + "ultraPosition": 30, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 6 + }, + { + "id": "mpg_championship_player_110347", + "lastName": "Bernard", + "firstName": "Quentin", + "position": 2, + "quotation": 11, + "ultraPosition": 21, + "clubId": "mpg_championship_club_138", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 5 + }, + { + "id": "mpg_championship_player_113064", + "lastName": "Youssouf M'Changama", + "firstName": null, + "position": 3, + "quotation": 22, + "ultraPosition": 30, + "clubId": "mpg_championship_club_428", + "joinDate": "2019-09-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_115149", + "lastName": "Ntim", + "firstName": "Emmanuel", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1996", + "joinDate": "2015-10-29", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_115326", + "lastName": "Vachoux", + "firstName": "Jérémy", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-24", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_116628", + "lastName": "Benzia", + "firstName": "Yassine", + "position": 3, + "quotation": 15, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-01-30", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 75 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 34 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 7 + }, + { + "id": "mpg_championship_player_119582", + "lastName": "Lopez", + "firstName": "Julien", + "position": 3, + "quotation": 17, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2338", + "joinDate": "2017-06-26", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_119681", + "lastName": "Boutaïb", + "firstName": "Khalid", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 6.25, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 34 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 2, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 9 + }, + { + "id": "mpg_championship_player_119738", + "lastName": "Touré", + "firstName": "Birama", + "position": 3, + "quotation": 13, + "ultraPosition": 30, + "clubId": "mpg_championship_club_138", + "joinDate": "2017-07-18", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_131403", + "lastName": "Healey", + "firstName": "Rhys", + "position": 4, + "quotation": 23, + "ultraPosition": 40, + "clubId": "mpg_championship_club_427", + "joinDate": "2020-08-27", + "availableSince": "2020-09-02T13:48:16Z", + "stats": { + "averageRating": 7, + "totalGoals": 3, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 69 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 2, + "ownGoals": 0, + "minutesPlayed": 76 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 11 + }, + { + "id": "mpg_championship_player_133632", + "lastName": "Ndour", + "firstName": "Abdallah", + "position": 2, + "quotation": 12, + "ultraPosition": 21, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 2 + }, + { + "id": "mpg_championship_player_141109", + "lastName": "Lloris", + "firstName": "Gautier", + "position": 2, + "quotation": 21, + "ultraPosition": 20, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_145221", + "lastName": "Issiaga Sylla", + "firstName": null, + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_427", + "joinDate": "2012-11-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 4 + }, + { + "id": "mpg_championship_player_149035", + "lastName": "Niane", + "firstName": "Adama", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-09-24", + "availableSince": "2020-09-30T12:28:47Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 14 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149410", + "lastName": "Obiang", + "firstName": "Johann", + "position": 2, + "quotation": 7, + "ultraPosition": 21, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 21 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_149588", + "lastName": "Monfray", + "firstName": "Adrien", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 50 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_150670", + "lastName": "Mombris", + "firstName": "Jerome", + "position": 2, + "quotation": 15, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1272", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 3.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 69 + } + } + ] + } + }, + { + "id": "mpg_championship_player_151065", + "lastName": "Basilio", + "firstName": "Enzo", + "position": 1, + "quotation": 12, + "ultraPosition": 10, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_151908", + "lastName": "Achille Anani", + "firstName": null, + "position": 4, + "quotation": 12, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 2.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 2.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_156274", + "lastName": "Thiare", + "firstName": "Jamal", + "position": 4, + "quotation": 17, + "ultraPosition": 40, + "clubId": "mpg_championship_club_141", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_157728", + "lastName": "Guillaume", + "firstName": "Baptiste", + "position": 4, + "quotation": 19, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-07-09", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_157822", + "lastName": "Lekhal", + "firstName": "Victor", + "position": 3, + "quotation": 17, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2013-01-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_157841", + "lastName": "Eliasson", + "firstName": "Niclas", + "position": 3, + "quotation": 15, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-10-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 68 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_158234", + "lastName": "Ueda", + "firstName": "Naomichi", + "position": 2, + "quotation": 7, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2336", + "joinDate": "2021-07-01", + "availableSince": "2021-07-21T15:08:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_159576", + "lastName": "Jubal", + "firstName": null, + "position": 2, + "quotation": 25, + "ultraPosition": 20, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-09-03", + "availableSince": "2020-09-09T13:42:17Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 4 + }, + { + "id": "mpg_championship_player_161968", + "lastName": "Ómarsson", + "firstName": "Elías Már", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2336", + "joinDate": "2021-07-27", + "availableSince": "2021-07-30T09:21:27Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 65 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_164500", + "lastName": "Assifuah", + "firstName": "Ebenezer", + "position": 4, + "quotation": 7, + "ultraPosition": 40, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_165803", + "lastName": "Pedro Rebocho", + "firstName": null, + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_428", + "joinDate": "2017-06-20", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_167454", + "lastName": "Sakhi", + "firstName": "Hamza", + "position": 3, + "quotation": 29, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6.75, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168212", + "lastName": "Diédhiou", + "firstName": "Christophe", + "position": 2, + "quotation": 12, + "ultraPosition": 20, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-07-08", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 3 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_168433", + "lastName": "Maraval", + "firstName": "Axel", + "position": 1, + "quotation": 17, + "ultraPosition": 10, + "clubId": "mpg_championship_club_3288", + "joinDate": "2018-05-24", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 1 + }, + { + "id": "mpg_championship_player_169860", + "lastName": "Paquiez", + "firstName": "Gaëtan", + "position": 2, + "quotation": 12, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2336", + "joinDate": "2015-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_172870", + "lastName": "Kaabouni", + "firstName": "Younes", + "position": 3, + "quotation": 12, + "ultraPosition": 30, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-02-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 31 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_173242", + "lastName": "Diallo", + "firstName": "Ismaël", + "position": 2, + "quotation": 15, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1163", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_174969", + "lastName": "van den Boomen", + "firstName": "Branco", + "position": 3, + "quotation": 20, + "ultraPosition": 31, + "clubId": "mpg_championship_club_427", + "joinDate": "2020-08-07", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 7.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 7 + }, + { + "id": "mpg_championship_player_176443", + "lastName": "Pellenard", + "firstName": "Théo", + "position": 2, + "quotation": 7, + "ultraPosition": 21, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-10-28", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_176503", + "lastName": "Lefebvre", + "firstName": "Grégoire", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-08-16", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177442", + "lastName": "Bardy", + "firstName": "Pierre", + "position": 2, + "quotation": 20, + "ultraPosition": 21, + "clubId": "mpg_championship_club_3308", + "joinDate": "2011-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177449", + "lastName": "Boissier", + "firstName": "Remy", + "position": 3, + "quotation": 18, + "ultraPosition": 30, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_177864", + "lastName": "Santelli", + "firstName": "Benjamin", + "position": 4, + "quotation": 12, + "ultraPosition": 40, + "clubId": "mpg_championship_club_139", + "joinDate": "2020-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_179776", + "lastName": "Philipe Sampaio", + "firstName": null, + "position": 2, + "quotation": 16, + "ultraPosition": 20, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-08-03", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 4 + }, + { + "id": "mpg_championship_player_180303", + "lastName": "Ferhat", + "firstName": "Zinedine", + "position": 3, + "quotation": 30, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2336", + "joinDate": "2019-07-03", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + } + ] + } + }, + { + "id": "mpg_championship_player_180805", + "lastName": "Segbé Azankpo", + "firstName": "Désiré", + "position": 4, + "quotation": 11, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3288", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_181402", + "lastName": "Cubas", + "firstName": "Adrián", + "position": 3, + "quotation": 12, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-07-17", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 84 + } + } + ] + } + }, + { + "id": "mpg_championship_player_182318", + "lastName": "David", + "firstName": "Florian", + "position": 3, + "quotation": 15, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-12-13", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184080", + "lastName": "Bernauer", + "firstName": "Maxime", + "position": 3, + "quotation": 4, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2338", + "joinDate": "2021-07-13", + "availableSince": "2021-07-22T14:27:37Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184203", + "lastName": "Salles", + "firstName": "Esteban", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1272", + "joinDate": "2018-07-23", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_184961", + "lastName": "Briançon", + "firstName": "Anthony", + "position": 2, + "quotation": 20, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2336", + "joinDate": "2013-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_189542", + "lastName": "Mendy", + "firstName": "Alexandre", + "position": 4, + "quotation": 15, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-10-01", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 7.25, + "totalGoals": 4, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 8.5, + "goals": 3, + "ownGoals": 0, + "minutesPlayed": 72 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 78 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193285", + "lastName": "Lemonnier", + "firstName": "Pierre", + "position": 2, + "quotation": 13, + "ultraPosition": 20, + "clubId": "mpg_championship_club_428", + "joinDate": "2017-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193537", + "lastName": "Cornette", + "firstName": "Quentin", + "position": 3, + "quotation": 11, + "ultraPosition": 31, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 72 + } + } + ] + } + }, + { + "id": "mpg_championship_player_193823", + "lastName": "Latouchent", + "firstName": "Rosario", + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_148", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 2.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_195784", + "lastName": "Batisse", + "firstName": "Antoine", + "position": 2, + "quotation": 19, + "ultraPosition": 20, + "clubId": "mpg_championship_club_5420", + "joinDate": "2018-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 2 + }, + { + "id": "mpg_championship_player_195811", + "lastName": "Do Couto Teixeira", + "firstName": "Maxime", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 67 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_196111", + "lastName": "M'Pasi N'Zau", + "firstName": "Lionel", + "position": 1, + "quotation": 19, + "ultraPosition": 10, + "clubId": "mpg_championship_club_3308", + "joinDate": "2016-07-11", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_197022", + "lastName": "Cissé", + "firstName": "Ibrahim", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-11", + "availableSince": "2020-01-22T15:27:13Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_197026", + "lastName": "Mauricio", + "firstName": "Tony", + "position": 3, + "quotation": 12, + "ultraPosition": 31, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-06-12", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 14 + }, + { + "id": "mpg_championship_player_198188", + "lastName": "Koffi", + "firstName": "Erwin", + "position": 2, + "quotation": 15, + "ultraPosition": 20, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 3 + }, + { + "id": "mpg_championship_player_198381", + "lastName": "Pickel", + "firstName": "Charles", + "position": 3, + "quotation": 9, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199367", + "lastName": "Shamal", + "firstName": "Steve", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 29 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 75 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199664", + "lastName": "Danger", + "firstName": "Bradley", + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_199665", + "lastName": "Boutobba", + "firstName": "Bilal", + "position": 3, + "quotation": 11, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-08-18", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 87 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 9 + }, + { + "id": "mpg_championship_player_200469", + "lastName": "Zidane", + "firstName": "Enzo", + "position": 3, + "quotation": 13, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 25 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_201644", + "lastName": "Allagbé", + "firstName": "Saturnin", + "position": 1, + "quotation": 14, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-10-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 3, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_201865", + "lastName": "Assalé", + "firstName": "Roger", + "position": 4, + "quotation": 14, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-09-05", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 6.75, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 22 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 14 + }, + { + "id": "mpg_championship_player_202459", + "lastName": "Gakpa", + "firstName": "Marvin", + "position": 3, + "quotation": 13, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 7.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 6 + }, + { + "id": "mpg_championship_player_204122", + "lastName": "Dianessy", + "firstName": "Djibril", + "position": 4, + "quotation": 12, + "ultraPosition": 40, + "clubId": "mpg_championship_club_5420", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 71 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + } + ] + } + }, + { + "id": "mpg_championship_player_204405", + "lastName": "Spierings", + "firstName": "Stijn", + "position": 3, + "quotation": 25, + "ultraPosition": 30, + "clubId": "mpg_championship_club_427", + "joinDate": "2020-10-05", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 5 + }, + { + "id": "mpg_championship_player_204744", + "lastName": "Chouiar", + "firstName": "Mounir", + "position": 3, + "quotation": 12, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-09-02", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_206935", + "lastName": "Lemaitre", + "firstName": "Nicolas", + "position": 1, + "quotation": 14, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2541", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_208745", + "lastName": "Caddy", + "firstName": "Warren", + "position": 4, + "quotation": 13, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-10-22", + "availableSince": "2020-10-28T13:29:15Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_208747", + "lastName": "Thiam", + "firstName": "Mamadou", + "position": 4, + "quotation": 12, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 82 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 71 + } + } + ] + } + }, + { + "id": "mpg_championship_player_209171", + "lastName": "Arcus", + "firstName": "Carlens", + "position": 2, + "quotation": 22, + "ultraPosition": 21, + "clubId": "mpg_championship_club_138", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_210202", + "lastName": "Koné", + "firstName": "Moussa", + "position": 4, + "quotation": 18, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-01-22", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_210205", + "lastName": "Diarra", + "firstName": "Souleymane", + "position": 3, + "quotation": 15, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-01-18", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 22 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 45 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213200", + "lastName": "Eboa Eboa", + "firstName": "Félix", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_428", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213335", + "lastName": "Leborgne", + "firstName": "Jordan", + "position": 3, + "quotation": 17, + "ultraPosition": 30, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 73 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213362", + "lastName": "Coutadeur", + "firstName": "Mathieu", + "position": 3, + "quotation": 17, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1163", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_213401", + "lastName": "Kalulu", + "firstName": "Aldo", + "position": 4, + "quotation": 16, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 83 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 11 + }, + { + "id": "mpg_championship_player_214282", + "lastName": "Laci", + "firstName": "Qazim", + "position": 3, + "quotation": 21, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1163", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 7, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 2, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 7 + }, + { + "id": "mpg_championship_player_216137", + "lastName": "Stojanovski", + "firstName": "Vlatko", + "position": 4, + "quotation": 5, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2336", + "joinDate": "2019-07-03", + "availableSince": "2020-09-02T13:48:16Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_216610", + "lastName": "Olliero", + "firstName": "Alexandre", + "position": 1, + "quotation": 17, + "ultraPosition": 10, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 1 + }, + { + "id": "mpg_championship_player_218366", + "lastName": "Fomba", + "firstName": "Lamine", + "position": 3, + "quotation": 18, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2336", + "joinDate": "2019-08-20", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 7 + }, + { + "id": "mpg_championship_player_219940", + "lastName": "Kokhreidze", + "firstName": "Giorgi", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220001", + "lastName": "Livolant", + "firstName": "Jeremy", + "position": 3, + "quotation": 12, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2015-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 68 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220359", + "lastName": "Prevot", + "firstName": "Maxence", + "position": 1, + "quotation": 18, + "ultraPosition": 10, + "clubId": "mpg_championship_club_693", + "joinDate": "2015-12-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_220922", + "lastName": "Karamoko", + "firstName": "Souleymane", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_220936", + "lastName": "Mandouki", + "firstName": "Cyril", + "position": 3, + "quotation": 17, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2338", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_220943", + "lastName": "Tchokounte", + "firstName": "Malik", + "position": 4, + "quotation": 18, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-08-19", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 15 + }, + { + "id": "mpg_championship_player_221441", + "lastName": "Salles-Lamonge", + "firstName": "Sebastien", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_224299", + "lastName": "Henry", + "firstName": "Valentin", + "position": 2, + "quotation": 13, + "ultraPosition": 21, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-06-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 4 + }, + { + "id": "mpg_championship_player_226945", + "lastName": "Dembélé", + "firstName": "Mahamadou", + "position": 2, + "quotation": 7, + "ultraPosition": 20, + "clubId": "mpg_championship_club_5420", + "joinDate": "2021-02-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_227262", + "lastName": "Onaiwu", + "firstName": "Ado", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-07-20", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 52 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + } + ] + } + }, + { + "id": "mpg_championship_player_227297", + "lastName": "Diaby", + "firstName": "Alassane", + "position": 2, + "quotation": 2, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2541", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_227300", + "lastName": "Ibrahima Sory Conté I", + "firstName": null, + "position": 2, + "quotation": 9, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1245", + "joinDate": "2019-07-29", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_228313", + "lastName": "Gomis", + "firstName": "Yannick", + "position": 4, + "quotation": 27, + "ultraPosition": 40, + "clubId": "mpg_championship_club_428", + "joinDate": "2019-08-30", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 15 + }, + { + "id": "mpg_championship_player_229959", + "lastName": "Niakaté", + "firstName": "Sikou", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_428", + "joinDate": "2018-08-30", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_230458", + "lastName": "Weissbeck", + "firstName": "Gaëtan", + "position": 3, + "quotation": 31, + "ultraPosition": 31, + "clubId": "mpg_championship_club_693", + "joinDate": "2019-01-31", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 83 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 8 + }, + { + "id": "mpg_championship_player_232182", + "lastName": "Hein", + "firstName": "Gauthier", + "position": 3, + "quotation": 16, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 7.25, + "totalGoals": 2, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 80 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 8 + }, + { + "id": "mpg_championship_player_232252", + "lastName": "Merghem", + "firstName": "Mehdi", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_428", + "joinDate": "2019-01-11", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 26 + } + } + ] + } + }, + { + "id": "mpg_championship_player_232398", + "lastName": "Trott", + "firstName": "Nathan", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-22", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_233497", + "lastName": "Diakhaby", + "firstName": "Adama", + "position": 4, + "quotation": 11, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1430", + "joinDate": "2021-02-01", + "availableSince": "2021-02-03T18:07:16Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_235163", + "lastName": "Ambri", + "firstName": "Steve", + "position": 4, + "quotation": 11, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_235708", + "lastName": "Mayembo", + "firstName": "Fernand", + "position": 2, + "quotation": 15, + "ultraPosition": 20, + "clubId": "mpg_championship_club_141", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_235709", + "lastName": "Daubin", + "firstName": "Quentin", + "position": 3, + "quotation": 15, + "ultraPosition": 30, + "clubId": "mpg_championship_club_5420", + "joinDate": "2018-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 12 + }, + { + "id": "mpg_championship_player_241345", + "lastName": "Bayala", + "firstName": "Cyrille", + "position": 3, + "quotation": 14, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-01-15", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 51 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_241623", + "lastName": "Sy", + "firstName": "Harouna", + "position": 2, + "quotation": 12, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 3, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_242882", + "lastName": "Diakité", + "firstName": "Bafodé", + "position": 2, + "quotation": 8, + "ultraPosition": 20, + "clubId": "mpg_championship_club_427", + "joinDate": "2018-10-30", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 6 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_244949", + "lastName": "Meras", + "firstName": "Umut", + "position": 2, + "quotation": 13, + "ultraPosition": 21, + "clubId": "mpg_championship_club_141", + "joinDate": "2019-08-28", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_245485", + "lastName": "Abdi", + "firstName": "Ali", + "position": 2, + "quotation": 18, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-07-23", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 3 + }, + { + "id": "mpg_championship_player_245750", + "lastName": "Passi", + "firstName": "Bryan", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1245", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_247403", + "lastName": "Kalulu", + "firstName": "Gédéon", + "position": 2, + "quotation": 13, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1163", + "joinDate": "2019-08-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 1, + "minutesPlayed": 54 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 11 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_37838", + "lastName": "Riou", + "firstName": "Rémy", + "position": 1, + "quotation": 12, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-08-08", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_38002", + "lastName": "Congré", + "firstName": "Daniel", + "position": 2, + "quotation": 18, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2130", + "joinDate": "2021-07-05", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_38007", + "lastName": "Bonnet", + "firstName": "Alexandre", + "position": 3, + "quotation": 26, + "ultraPosition": 31, + "clubId": "mpg_championship_club_141", + "joinDate": "2009-08-13", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 24 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 9 + }, + { + "id": "mpg_championship_player_38008", + "lastName": "Robic", + "firstName": "Antony", + "position": 4, + "quotation": 6, + "ultraPosition": 40, + "clubId": "mpg_championship_club_139", + "joinDate": "2015-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_40733", + "lastName": "Avinel", + "firstName": "Cédric", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1163", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_40808", + "lastName": "Oniangué", + "firstName": "Prince", + "position": 3, + "quotation": 11, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1028", + "joinDate": "2018-07-12", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_422249", + "lastName": "Lebeau", + "firstName": "Tom", + "position": 3, + "quotation": 7, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1245", + "joinDate": "2017-04-27", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 70 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 56 + } + } + ] + } + }, + { + "id": "mpg_championship_player_422710", + "lastName": "Hadded", + "firstName": "Mannoubi", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 7, + "totalGoals": 1, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 9 + }, + { + "id": "mpg_championship_player_423064", + "lastName": "Pierrot", + "firstName": "Frantzdy", + "position": 4, + "quotation": 18, + "ultraPosition": 40, + "clubId": "mpg_championship_club_428", + "joinDate": "2019-08-22", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_423151", + "lastName": "Robail", + "firstName": "Gaëtan", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-01-12", + "availableSince": "2020-10-07T13:05:55Z", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_427213", + "lastName": "Moussiti-Oko", + "firstName": "Bevic", + "position": 4, + "quotation": 15, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-07-10", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 81 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_42766", + "lastName": "Gurtner", + "firstName": "Régis", + "position": 1, + "quotation": 19, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1430", + "joinDate": "2016-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_429424", + "lastName": "Celestine", + "firstName": "Julien", + "position": 2, + "quotation": 15, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3308", + "joinDate": "2021-01-02", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + } + }, + { + "id": "mpg_championship_player_429441", + "lastName": "Dembélé", + "firstName": "Malaly", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3308", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 20 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_430993", + "lastName": "Gomis", + "firstName": "David", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_5420", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + } + ] + } + }, + { + "id": "mpg_championship_player_433731", + "lastName": "Buades", + "firstName": "Lucas", + "position": 3, + "quotation": 1, + "ultraPosition": 31, + "clubId": "mpg_championship_club_3308", + "joinDate": "2017-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 88 + } + } + ] + } + }, + { + "id": "mpg_championship_player_436644", + "lastName": "Aaneba", + "firstName": "Ismaël", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_693", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 3 + }, + { + "id": "mpg_championship_player_436658", + "lastName": "Deminguet", + "firstName": "Jessy", + "position": 3, + "quotation": 18, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1028", + "joinDate": "2017-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 8 + }, + { + "id": "mpg_championship_player_437503", + "lastName": "Picouleau", + "firstName": "Mathis", + "position": 3, + "quotation": 9, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-07-06", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439124", + "lastName": "Bamba", + "firstName": "Axel", + "position": 2, + "quotation": 18, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2338", + "joinDate": "2017-09-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_439711", + "lastName": "Armougom", + "firstName": "Yoel", + "position": 2, + "quotation": 7, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1028", + "joinDate": "2017-10-23", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_441576", + "lastName": "Rocchia", + "firstName": "Christopher", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-09-02", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 2 + }, + { + "id": "mpg_championship_player_441584", + "lastName": "Constant", + "firstName": "Hugo", + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_148", + "joinDate": "2017-12-07", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_442673", + "lastName": "Scheidler", + "firstName": "Aurélien", + "position": 4, + "quotation": 19, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-06-30", + "availableSince": "2021-01-27T08:32:52Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 60 + } + } + ] + } + }, + { + "id": "mpg_championship_player_44429", + "lastName": "Placide", + "firstName": "Johny", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_139", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_44499", + "lastName": "Armand", + "firstName": "Romain", + "position": 4, + "quotation": 18, + "ultraPosition": 40, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 79 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 15 + }, + { + "id": "mpg_championship_player_445970", + "lastName": "Sinayoko", + "firstName": "Lassine", + "position": 4, + "quotation": 6, + "ultraPosition": 40, + "clubId": "mpg_championship_club_138", + "joinDate": "2018-02-01", + "availableSince": "2020-02-03T14:03:23Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 39 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 86 + } + } + ] + } + }, + { + "id": "mpg_championship_player_45103", + "lastName": "Maubleu", + "firstName": "Brice", + "position": 1, + "quotation": 12, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1272", + "joinDate": "2014-12-30", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_454689", + "lastName": "Kanté", + "firstName": "Ousmane", + "position": 2, + "quotation": 22, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2338", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_454964", + "lastName": "Senou Coulibaly", + "firstName": null, + "position": 2, + "quotation": 5, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2130", + "joinDate": "2018-06-12", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_456193", + "lastName": "Vidal", + "firstName": "Clement", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_457974", + "lastName": "Taillan", + "firstName": "Robin", + "position": 2, + "quotation": 11, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2541", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_457982", + "lastName": "Beusnard", + "firstName": "Steeve", + "position": 3, + "quotation": 14, + "ultraPosition": 31, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-01-02", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 78 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + } + ] + } + }, + { + "id": "mpg_championship_player_458322", + "lastName": "Ponceau", + "firstName": "Julien", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2336", + "joinDate": "2020-10-05", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 7 + }, + { + "id": "mpg_championship_player_461831", + "lastName": "Youfeigane", + "firstName": "Dominique", + "position": 1, + "quotation": 7, + "ultraPosition": 10, + "clubId": "mpg_championship_club_428", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_462552", + "lastName": "Lobry", + "firstName": "Victor", + "position": 3, + "quotation": 17, + "ultraPosition": 30, + "clubId": "mpg_championship_club_5420", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 6 + }, + { + "id": "mpg_championship_player_462609", + "lastName": "Abdelli", + "firstName": "Himad", + "position": 3, + "quotation": 10, + "ultraPosition": 31, + "clubId": "mpg_championship_club_141", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_464193", + "lastName": "Bilingi", + "firstName": "Yohan", + "position": 2, + "quotation": 7, + "ultraPosition": 21, + "clubId": "mpg_championship_club_428", + "joinDate": "2018-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_465347", + "lastName": "Zady Sery", + "firstName": "Caleb", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-09-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 7, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_466038", + "lastName": "Yaya Soumaré", + "firstName": "Yaya", + "position": 3, + "quotation": 15, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2021-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 35 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 15 + }, + { + "id": "mpg_championship_player_469204", + "lastName": "Sylvestre", + "firstName": "Eddy", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_5420", + "joinDate": "2019-08-31", + "availableSince": "2021-07-23T09:05:07Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 18 + } + } + ] + } + }, + { + "id": "mpg_championship_player_469255", + "lastName": "Cisse", + "firstName": "Lamine", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-04-30", + "availableSince": "2021-05-05T08:37:09Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 90 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_471139", + "lastName": "Haag", + "firstName": "Giovanni", + "position": 2, + "quotation": 15, + "ultraPosition": 20, + "clubId": "mpg_championship_club_148", + "joinDate": "2018-11-22", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 3 + }, + { + "id": "mpg_championship_player_471470", + "lastName": "Triboulet", + "firstName": "Vinni", + "position": 3, + "quotation": 12, + "ultraPosition": 31, + "clubId": "mpg_championship_club_148", + "joinDate": "2018-11-29", + "availableSince": "2020-02-03T14:03:23Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 17 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_473550", + "lastName": "Bryan Soumaré", + "firstName": "Bryan", + "position": 3, + "quotation": 17, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 63 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 61 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_473707", + "lastName": "Belkorchia", + "firstName": "Sami", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476511", + "lastName": "Beka Beka", + "firstName": "Alexis", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-10-17", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_476987", + "lastName": "Ducrocq", + "firstName": "Tom", + "position": 3, + "quotation": 14, + "ultraPosition": 30, + "clubId": "mpg_championship_club_139", + "joinDate": "2020-07-09", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_477851", + "lastName": "Ba", + "firstName": "Abdoullah", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_141", + "joinDate": "2021-03-19", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 62 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_481615", + "lastName": "Arab", + "firstName": "Saïd", + "position": 3, + "quotation": 9, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-06-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_482380", + "lastName": "Chergui", + "firstName": "Samir Sophian", + "position": 3, + "quotation": 3, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2338", + "joinDate": "2021-01-07", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485098", + "lastName": "Diarra", + "firstName": "Moussa", + "position": 2, + "quotation": 8, + "ultraPosition": 20, + "clubId": "mpg_championship_club_427", + "joinDate": "2019-04-22", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485419", + "lastName": "Hugo Barbet", + "firstName": null, + "position": 1, + "quotation": 3, + "ultraPosition": 10, + "clubId": "mpg_championship_club_428", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_485959", + "lastName": "Biron", + "firstName": "Mickaël", + "position": 4, + "quotation": 19, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-03", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_487506", + "lastName": "Bonnet", + "firstName": "Ugo", + "position": 4, + "quotation": 19, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3308", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_487511", + "lastName": "Secchi", + "firstName": "Thomas", + "position": 1, + "quotation": 1, + "ultraPosition": 10, + "clubId": "mpg_championship_club_3308", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_3308", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_488213", + "lastName": "Arokodare", + "firstName": "Toluwalase Emmanuel", + "position": 4, + "quotation": 14, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1430", + "joinDate": "2021-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 71 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_488367", + "lastName": "Delos", + "firstName": "Shaquil", + "position": 2, + "quotation": 14, + "ultraPosition": 21, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489486", + "lastName": "Michel", + "firstName": "Florian", + "position": 3, + "quotation": 7, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-08-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_489888", + "lastName": "Adli", + "firstName": "Amine", + "position": 3, + "quotation": 14, + "ultraPosition": 31, + "clubId": "mpg_championship_club_427", + "joinDate": "2019-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 15 + }, + { + "id": "mpg_championship_player_490061", + "lastName": "Evans", + "firstName": "Jean Lambert", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_5420", + "joinDate": "2021-07-15", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_5420", + "matchId": "mpg_championship_match_2216746", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3308", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_5420", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 10 + } + } + ] + } + }, + { + "id": "mpg_championship_player_49050", + "lastName": "Nestor", + "firstName": "Loic", + "position": 2, + "quotation": 12, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1272", + "joinDate": "2019-07-12", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 3.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_49382", + "lastName": "Ecuele Manga", + "firstName": "Bruno", + "position": 2, + "quotation": 18, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-07-19", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 3, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 16 + }, + { + "id": "mpg_championship_player_493900", + "lastName": "Yongwa Ngameni", + "firstName": "Darline Zidane", + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1245", + "joinDate": "2019-09-26", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_498355", + "lastName": "Boutoutaou", + "firstName": "Aymen", + "position": 3, + "quotation": 13, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1996", + "joinDate": "2019-11-21", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 56 + } + } + ] + } + }, + { + "id": "mpg_championship_player_501680", + "lastName": "Name", + "firstName": "Moustapha", + "position": 3, + "quotation": 19, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 8, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 9 + }, + { + "id": "mpg_championship_player_503184", + "lastName": "Antiste", + "firstName": "Janis", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_427", + "joinDate": "2020-02-04", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 80 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 28 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_509285", + "lastName": "Sangante", + "firstName": "Arouna", + "position": 2, + "quotation": 1, + "ultraPosition": 20, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-07-11", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_509286", + "lastName": "Fofana", + "firstName": "Mamadou", + "position": 3, + "quotation": 3, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-07-11", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 27 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_510895", + "lastName": "Virginius", + "firstName": "Alan", + "position": 4, + "quotation": 5, + "ultraPosition": 40, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-08-04", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 6, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 38 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 12 + }, + { + "id": "mpg_championship_player_511176", + "lastName": "Gomis", + "firstName": "Adon", + "position": 2, + "quotation": 12, + "ultraPosition": 20, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_511180", + "lastName": "Thiam", + "firstName": "Demba", + "position": 2, + "quotation": 13, + "ultraPosition": 21, + "clubId": "mpg_championship_club_3288", + "joinDate": "2018-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511292", + "lastName": "Fouda", + "firstName": "Aloys", + "position": 2, + "quotation": 8, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-08-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511293", + "lastName": "Cimignani", + "firstName": "Yanis", + "position": 3, + "quotation": 7, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-08-12", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 15 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_511368", + "lastName": "Bondo", + "firstName": "Warren", + "position": 3, + "quotation": 5, + "ultraPosition": 31, + "clubId": "mpg_championship_club_148", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 77 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511596", + "lastName": "Ba", + "firstName": "Pape Ibnou", + "position": 4, + "quotation": 25, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 4, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 11 + }, + { + "id": "mpg_championship_player_511597", + "lastName": "Moutachy", + "firstName": "Joris", + "position": 2, + "quotation": 9, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511603", + "lastName": "Guilavogui", + "firstName": "Morgan", + "position": 4, + "quotation": 3, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_511604", + "lastName": "Laura", + "firstName": "Gaetan", + "position": 4, + "quotation": 19, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-07-01", + "availableSince": "2020-08-18T10:04:43Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 79 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 11 + }, + { + "id": "mpg_championship_player_511975", + "lastName": "Doukoure", + "firstName": "Ismael", + "position": 2, + "quotation": 11, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1996", + "joinDate": "2020-07-01", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512126", + "lastName": "Camara", + "firstName": "Ousmane", + "position": 3, + "quotation": 1, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-08-21", + "availableSince": "2020-08-27T10:08:19Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_512711", + "lastName": "Roux", + "firstName": "Baptiste", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_428", + "joinDate": "2020-08-28", + "availableSince": "2020-09-02T13:48:16Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_428", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 49 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_516203", + "lastName": "Matufueni M'bondo", + "firstName": "Bradley", + "position": 2, + "quotation": 5, + "ultraPosition": 20, + "clubId": "mpg_championship_club_1245", + "joinDate": "2020-09-25", + "availableSince": "2020-09-30T12:28:47Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1245", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_523644", + "lastName": "Diakité", + "firstName": "Check-Oumar", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-11-20", + "availableSince": "2020-12-30T10:27:33Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 74 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 3.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 55 + } + } + ] + } + }, + { + "id": "mpg_championship_player_531033", + "lastName": "Doucouré", + "firstName": "Mahamadou", + "position": 4, + "quotation": 1, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2336", + "joinDate": "2021-02-09", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 86 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 30 + } + } + ] + } + }, + { + "id": "mpg_championship_player_532751", + "lastName": "Alfarela", + "firstName": "Migouel", + "position": 4, + "quotation": 8, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2338", + "joinDate": "2021-07-08", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 19 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 40 + } + } + ] + } + }, + { + "id": "mpg_championship_player_532967", + "lastName": "Boissy", + "firstName": "Olivier", + "position": 4, + "quotation": 15, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2021-07-14", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 3.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 2, + "rating": 2.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 48 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + } + ] + } + }, + { + "id": "mpg_championship_player_533003", + "lastName": "Arconte", + "firstName": "Tairyk", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1163", + "joinDate": "2021-03-01", + "availableSince": "2021-03-17T08:49:28Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_535706", + "lastName": "Hountondji", + "firstName": "Andreas", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2021-04-02", + "availableSince": "2021-04-14T08:51:05Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 64 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 19 + } + } + ] + } + }, + { + "id": "mpg_championship_player_54413", + "lastName": "Sammaritano", + "firstName": "Frédéric", + "position": 3, + "quotation": 8, + "ultraPosition": 31, + "clubId": "mpg_championship_club_2130", + "joinDate": "2015-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 23 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 13 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545014", + "lastName": "Dadoune", + "firstName": "Ottman", + "position": 4, + "quotation": 10, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "totalMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545015", + "lastName": "Bahassa", + "firstName": "Yassine", + "position": 4, + "quotation": 17, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2541", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_2541", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 10 + }, + { + "id": "mpg_championship_player_545722", + "lastName": "Mehenni", + "firstName": "Farés", + "position": 4, + "quotation": 5, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "averageRating": 5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_545723", + "lastName": "Francke", + "firstName": "Axel", + "position": 4, + "quotation": 6, + "ultraPosition": 40, + "clubId": "mpg_championship_club_148", + "joinDate": "2021-07-23", + "availableSince": "2021-07-28T12:46:52Z", + "stats": { + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 0, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 3 + } + } + ] + } + }, + { + "id": "mpg_championship_player_55592", + "lastName": "Ravet", + "firstName": "Yoric", + "position": 4, + "quotation": 12, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1272", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 5 + } + }, + { + "playerClubId": "mpg_championship_club_1272", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_59964", + "lastName": "Court", + "firstName": "Yoann", + "position": 3, + "quotation": 11, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1028", + "joinDate": "2020-09-18", + "availableSince": "2020-09-23T12:30:26Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 8 + }, + { + "id": "mpg_championship_player_60343", + "lastName": "Yatabaré", + "firstName": "Sambou", + "position": 3, + "quotation": 7, + "ultraPosition": 30, + "clubId": "mpg_championship_club_1996", + "joinDate": "2021-02-03", + "availableSince": "2021-02-17T08:44:26Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 3, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 39 + } + } + ] + } + }, + { + "id": "mpg_championship_player_61983", + "lastName": "Gabrielsen", + "firstName": "Ruben", + "position": 2, + "quotation": 20, + "ultraPosition": 20, + "clubId": "mpg_championship_club_427", + "joinDate": "2020-01-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 7.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 3 + }, + { + "id": "mpg_championship_player_68166", + "lastName": "Hanin", + "firstName": "Florent", + "position": 2, + "quotation": 16, + "ultraPosition": 21, + "clubId": "mpg_championship_club_2338", + "joinDate": "2020-08-17", + "availableSince": "2020-08-20T14:24:41Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 85 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 2 + }, + { + "id": "mpg_championship_player_73667", + "lastName": "Jeannot", + "firstName": "Benjamin", + "position": 4, + "quotation": 14, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-09-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 0, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 21 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 16 + } + } + ] + } + }, + { + "id": "mpg_championship_player_75987", + "lastName": "Leroy", + "firstName": "Benjamin", + "position": 1, + "quotation": 12, + "ultraPosition": 10, + "clubId": "mpg_championship_club_1163", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 18 + }, + { + "id": "mpg_championship_player_79237", + "lastName": "Pogba", + "firstName": "Florentin", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_693", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 4.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_693", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_79870", + "lastName": "Ketkeophomphone", + "firstName": "Billy", + "position": 4, + "quotation": 9, + "ultraPosition": 40, + "clubId": "mpg_championship_club_3288", + "joinDate": "2020-07-01", + "availableSince": "2020-08-11T12:26:33Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216732", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2541", + "score": 1 + }, + "playerPerformance": { + "status": 6 + } + }, + { + "playerClubId": "mpg_championship_club_3288", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_79917", + "lastName": "Saadi", + "firstName": "Idriss", + "position": 4, + "quotation": 15, + "ultraPosition": 40, + "clubId": "mpg_championship_club_139", + "joinDate": "2021-07-06", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 0, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 2, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 25 + } + } + ] + } + }, + { + "id": "mpg_championship_player_80565", + "lastName": "Autret", + "firstName": "Mathias", + "position": 3, + "quotation": 28, + "ultraPosition": 31, + "clubId": "mpg_championship_club_138", + "joinDate": "2020-07-01", + "availableSince": "2020-08-10T09:25:06Z", + "stats": { + "averageRating": 6, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_80799", + "lastName": "Cuffaut", + "firstName": "Joffrey", + "position": 2, + "quotation": 20, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1996", + "joinDate": "2018-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216737", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1996", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1996", + "matchId": "mpg_championship_match_2216740", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_428", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_1996", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 12 + }, + { + "id": "mpg_championship_player_80800", + "lastName": "Rivierez", + "firstName": "Jonathan", + "position": 2, + "quotation": 10, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1028", + "joinDate": "2019-07-10", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216730", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1028", + "score": 4 + }, + "away": { + "clubId": "mpg_championship_club_3308", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_1028", + "matchId": "mpg_championship_match_2216743", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1245", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_1028", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 5 + }, + { + "id": "mpg_championship_player_82831", + "lastName": "Gibaud", + "firstName": "Pierre", + "position": 2, + "quotation": 14, + "ultraPosition": 21, + "clubId": "mpg_championship_club_141", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216734", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_141", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_428", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_141", + "matchId": "mpg_championship_match_2216747", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_693", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_141", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 4 + }, + { + "id": "mpg_championship_player_83279", + "lastName": "Le Bihan", + "firstName": "Mickael", + "position": 4, + "quotation": 40, + "ultraPosition": 40, + "clubId": "mpg_championship_club_2130", + "joinDate": "2019-08-30", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 3 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 12 + }, + { + "id": "mpg_championship_player_83542", + "lastName": "Vincensini", + "firstName": "Thomas", + "position": 1, + "quotation": 16, + "ultraPosition": 10, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-06-18", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + } + }, + { + "id": "mpg_championship_player_86383", + "lastName": "Dejaegere", + "firstName": "Brecht", + "position": 3, + "quotation": 22, + "ultraPosition": 31, + "clubId": "mpg_championship_club_427", + "joinDate": "2021-07-01", + "availableSince": "2020-09-21T14:51:00Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 77 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 83 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 14 + }, + { + "id": "mpg_championship_player_86599", + "lastName": "Coeff", + "firstName": "Alexandre", + "position": 2, + "quotation": 13, + "ultraPosition": 20, + "clubId": "mpg_championship_club_138", + "joinDate": "2019-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 1, + "rating": 5.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92353", + "lastName": "Barreto", + "firstName": "Michael", + "position": 3, + "quotation": 26, + "ultraPosition": 31, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 6, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 82 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 76 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92520", + "lastName": "Demarconnay", + "firstName": "Vincent", + "position": 1, + "quotation": 12, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2338", + "joinDate": "2008-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.5, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216733", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_2338", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 93 + } + }, + { + "playerClubId": "mpg_championship_club_2338", + "matchId": "mpg_championship_match_2216744", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_2338", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_3288", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + } + }, + { + "id": "mpg_championship_player_92559", + "lastName": "Alphonse", + "firstName": "Mickaël", + "position": 2, + "quotation": 14, + "ultraPosition": 21, + "clubId": "mpg_championship_club_1430", + "joinDate": "2020-08-21", + "availableSince": "2020-09-02T13:48:16Z", + "stats": { + "averageRating": 4.5, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 94 + } + }, + { + "playerClubId": "mpg_championship_club_1430", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 3 + }, + { + "id": "mpg_championship_player_92748", + "lastName": "Dugimont", + "firstName": "Rémy", + "position": 4, + "quotation": 28, + "ultraPosition": 40, + "clubId": "mpg_championship_club_138", + "joinDate": "2018-08-13", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216728", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_138", + "score": 2 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_138", + "matchId": "mpg_championship_match_2216739", + "gameWeekNumber": 2, + "date": "2021-08-02T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_138", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1272", + "score": 0 + }, + "playerPerformance": { + "status": 3 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 17 + }, + { + "id": "mpg_championship_player_92957", + "lastName": "Diongue", + "firstName": "Maguette", + "position": 3, + "quotation": 8, + "ultraPosition": 30, + "clubId": "mpg_championship_club_139", + "joinDate": "2019-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 6.5, + "totalGoals": 1, + "totalMatches": 1, + "totalStartedMatches": 1, + "totalPlayedMatches": 1, + "matches": [ + { + "playerClubId": "mpg_championship_club_139", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 71 + } + } + ] + }, + "isStarter": false, + "compositionIndex": 13 + }, + { + "id": "mpg_championship_player_93591", + "lastName": "Courtet", + "firstName": "Gaëtan", + "position": 4, + "quotation": 21, + "ultraPosition": 40, + "clubId": "mpg_championship_club_1163", + "joinDate": "2020-09-07", + "availableSince": "2020-09-09T13:42:17Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 1, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 43 + } + }, + { + "playerClubId": "mpg_championship_club_1163", + "matchId": "mpg_championship_match_2216738", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_1163", + "score": 3 + }, + "away": { + "clubId": "mpg_championship_club_1430", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 7, + "goals": 1, + "ownGoals": 0, + "minutesPlayed": 92 + } + } + ] + } + }, + { + "id": "mpg_championship_player_93619", + "lastName": "Reynet", + "firstName": "Baptiste", + "position": 1, + "quotation": 17, + "ultraPosition": 10, + "clubId": "mpg_championship_club_2130", + "joinDate": "2020-07-01", + "availableSince": "2021-07-19T08:58:02Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216731", + "gameWeekNumber": 1, + "date": "2021-07-26T18:45:00Z", + "home": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_693", + "score": 3 + }, + "playerPerformance": { + "status": 1, + "rating": 4, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 98 + } + }, + { + "playerClubId": "mpg_championship_club_2130", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 1 + }, + { + "id": "mpg_championship_player_93622", + "lastName": "Martinez", + "firstName": "Pablo", + "position": 2, + "quotation": 10, + "ultraPosition": 20, + "clubId": "mpg_championship_club_2336", + "joinDate": "2019-07-01", + "availableSince": "2021-07-15T21:15:19Z", + "stats": { + "averageRating": 5.25, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216729", + "gameWeekNumber": 1, + "date": "2021-07-24T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_139", + "score": 1 + }, + "away": { + "clubId": "mpg_championship_club_2336", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 4.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 96 + } + }, + { + "playerClubId": "mpg_championship_club_2336", + "matchId": "mpg_championship_match_2216742", + "gameWeekNumber": 2, + "date": "2021-07-31T13:00:00Z", + "home": { + "clubId": "mpg_championship_club_2336", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_2130", + "score": 1 + }, + "playerPerformance": { + "status": 1, + "rating": 6, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 95 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 2 + }, + { + "id": "mpg_championship_player_95527", + "lastName": "Ciss", + "firstName": "Saliou", + "position": 2, + "quotation": 14, + "ultraPosition": 21, + "clubId": "mpg_championship_club_148", + "joinDate": "2019-09-02", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "totalMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216735", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_5420", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_148", + "score": 1 + }, + "playerPerformance": { + "status": 4 + } + }, + { + "playerClubId": "mpg_championship_club_148", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 4 + } + } + ] + } + }, + { + "id": "mpg_championship_player_97288", + "lastName": "Dupé", + "firstName": "Maxime", + "position": 1, + "quotation": 17, + "ultraPosition": 10, + "clubId": "mpg_championship_club_427", + "joinDate": "2020-07-01", + "availableSince": "2020-01-08T11:37:21Z", + "stats": { + "averageRating": 5.75, + "totalGoals": 0, + "totalMatches": 2, + "totalStartedMatches": 2, + "totalPlayedMatches": 2, + "matches": [ + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216736", + "gameWeekNumber": 1, + "date": "2021-07-24T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_427", + "score": 2 + }, + "away": { + "clubId": "mpg_championship_club_1163", + "score": 2 + }, + "playerPerformance": { + "status": 1, + "rating": 5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 97 + } + }, + { + "playerClubId": "mpg_championship_club_427", + "matchId": "mpg_championship_match_2216741", + "gameWeekNumber": 2, + "date": "2021-07-31T17:00:00Z", + "home": { + "clubId": "mpg_championship_club_148", + "score": 0 + }, + "away": { + "clubId": "mpg_championship_club_427", + "score": 4 + }, + "playerPerformance": { + "status": 1, + "rating": 6.5, + "goals": 0, + "ownGoals": 0, + "minutesPlayed": 91 + } + } + ] + }, + "isStarter": true, + "compositionIndex": 1 + } + ] +} diff --git a/src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190202.json b/src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190202.json deleted file mode 100644 index e9c0b05..0000000 --- a/src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190202.json +++ /dev/null @@ -1,4460 +0,0 @@ -{ - "leagueId": "KX24XMUG", - "turn": 15, - "players": 10, - "season": 1, - "statusLeague": 4, - "currentUser": "authorized", - "championship": 1, - "statusTeam": 1, - "leagueMode": 2, - "budget": 1, - "currentTeam": "mpg_team_KX24XMUG$$mpg_user_955966", - "availablePlayers": [ - { - "club": "Toulouse", - "firstname": "François", - "id": "player_100954", - "lastname": "Moubandje", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Kevin", - "id": "player_102660", - "lastname": "Rimane", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Martin", - "id": "player_102732", - "lastname": "Sourzac", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Christophe", - "id": "player_102739", - "lastname": "Kerbrat", - "position": 2, - "quotation": 10, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Baissama", - "id": "player_102744", - "lastname": "Sankoh", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Brice", - "id": "player_102836", - "lastname": "Samba", - "position": 1, - "quotation": 19, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Emiliano", - "id": "player_103124", - "lastname": "Sala", - "position": 4, - "quotation": 500, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Hendrick", - "id": "player_103733", - "lastname": "Cakin", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steeve", - "id": "player_105706", - "lastname": "Yago", - "position": 2, - "quotation": 4, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_106320", - "lastname": "Kalifa Coulibaly", - "position": 4, - "quotation": 11, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Jordan", - "id": "player_107641", - "lastname": "Ferri", - "position": 3, - "quotation": 9, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Tristan", - "id": "player_107685", - "lastname": "Dingome", - "position": 3, - "quotation": 7, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Marc-Aurèle", - "id": "player_107925", - "lastname": "Caillard", - "position": 1, - "quotation": 13, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Souleymane", - "id": "player_10955", - "lastname": "Camara", - "position": 4, - "quotation": 5, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Bobby", - "id": "player_110369", - "lastname": "Allain", - "position": 1, - "quotation": 12, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Mehdi", - "id": "player_111002", - "lastname": "Zeffane", - "position": 2, - "quotation": 9, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Emil", - "id": "player_111773", - "lastname": "Krafth", - "position": 2, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Pierre-Yves", - "id": "player_112323", - "lastname": "Polomat", - "position": 2, - "quotation": 9, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Adama", - "id": "player_112654", - "lastname": "Mbengue", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Rúnar Alex", - "id": "player_115918", - "lastname": "Rúnarsson", - "position": 1, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "John Stiven", - "id": "player_116152", - "lastname": "Mendoza", - "position": 3, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Fouad", - "id": "player_119679", - "lastname": "Chafik", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Jaroslav", - "id": "player_12057", - "lastname": "Plasil", - "position": 3, - "quotation": 11, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Paul", - "id": "player_120770", - "lastname": "Reulet", - "position": 1, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_120947", - "lastname": "Foket", - "position": 2, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Maxime", - "id": "player_121524", - "lastname": "Poundjé", - "position": 2, - "quotation": 12, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": "Étienne", - "id": "player_12179", - "lastname": "Didot", - "position": 3, - "quotation": 14, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Corentin", - "id": "player_126177", - "lastname": "Jean", - "position": 4, - "quotation": 8, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Jordan", - "id": "player_129478", - "lastname": "Ikoko", - "position": 2, - "quotation": 9, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Mauro", - "id": "player_132197", - "lastname": "Goicoechea", - "position": 1, - "quotation": 9, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Abdallah", - "id": "player_133632", - "lastname": "Ndour", - "position": 2, - "quotation": 4, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steven", - "id": "player_141017", - "lastname": "Moreira", - "position": 2, - "quotation": 8, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Gautier", - "id": "player_141109", - "lastname": "Lloris", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_141921", - "lastname": "Sheyi Ojo", - "position": 3, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Alexander", - "id": "player_143685", - "lastname": "Djiku", - "position": 2, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Didier", - "id": "player_144660", - "lastname": "Ndong", - "position": 3, - "quotation": 10, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Issiaga", - "id": "player_145221", - "lastname": "Sylla", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Facundo", - "id": "player_148214", - "lastname": "Píriz", - "position": 3, - "quotation": 7, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Cheick", - "id": "player_152865", - "lastname": "Traoré", - "position": 2, - "quotation": 7, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Jordan", - "id": "player_153014", - "lastname": "Marié", - "position": 3, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Remi", - "id": "player_153649", - "lastname": "Walter", - "position": 3, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_154770", - "lastname": "Kwon Chang-Hoon", - "position": 3, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Lebogang", - "id": "player_156692", - "lastname": "Phiri", - "position": 3, - "quotation": 9, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Baptiste", - "id": "player_157728", - "lastname": "Guillaume", - "position": 4, - "quotation": 8, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Gen", - "id": "player_158208", - "lastname": "Shoji", - "position": 2, - "quotation": 7, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_158496", - "lastname": "Touré", - "position": 3, - "quotation": 15, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Antonio", - "id": "player_159039", - "lastname": "Barreca", - "position": 2, - "quotation": 8, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Andrea", - "id": "player_15930", - "lastname": "Raggi", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Harrison", - "id": "player_160985", - "lastname": "Manzala", - "position": 4, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Fares", - "id": "player_161039", - "lastname": "Bahlouli", - "position": 3, - "quotation": 5, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Aleksandr", - "id": "player_161950", - "lastname": "Golovin", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_162654", - "lastname": "Jemerson", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Matt", - "id": "player_163793", - "lastname": "Miazga", - "position": 2, - "quotation": 8, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Youssouf", - "id": "player_164474", - "lastname": "Sabaly", - "position": 2, - "quotation": 9, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Rafal", - "id": "player_165112", - "lastname": "Kurzawa", - "position": 4, - "quotation": 7, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": null, - "id": "player_165803", - "lastname": "Pedro Rebocho", - "position": 2, - "quotation": 11, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Lukas", - "id": "player_166965", - "lastname": "Lerager", - "position": 3, - "quotation": 12, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Edvinas", - "id": "player_167054", - "lastname": "Gertmonas", - "position": 1, - "quotation": 1, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_168104", - "lastname": "Steven Fortes", - "position": 2, - "quotation": 6, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Baptiste", - "id": "player_168985", - "lastname": "Santamaría", - "position": 3, - "quotation": 11, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Gaetan", - "id": "player_169860", - "lastname": "Paquiez", - "position": 2, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_170409", - "lastname": "Andrei Girotto", - "position": 3, - "quotation": 12, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Hassane", - "id": "player_171099", - "lastname": "Kamara", - "position": 3, - "quotation": 7, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Mathías", - "id": "player_173046", - "lastname": "Suárez", - "position": 2, - "quotation": 8, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": null, - "id": "player_173085", - "lastname": "Danilo", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Duje", - "id": "player_173271", - "lastname": "Caleta-Car", - "position": 2, - "quotation": 6, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_174272", - "lastname": "Mandrea", - "position": 1, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Franck", - "id": "player_174655", - "lastname": "Honorat", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bongani", - "id": "player_174846", - "lastname": "Zungu", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Milan", - "id": "player_174892", - "lastname": "Gajic", - "position": 2, - "quotation": 4, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Jean Eudes", - "id": "player_174908", - "lastname": "Aholou", - "position": 3, - "quotation": 8, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_175352", - "lastname": "Manu García", - "position": 3, - "quotation": 11, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_176441", - "lastname": "Thomas Touré", - "position": 4, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Théo", - "id": "player_176443", - "lastname": "Pellenard", - "position": 2, - "quotation": 5, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jonathan", - "id": "player_176501", - "lastname": "Gradit", - "position": 2, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Youssouf", - "id": "player_180124", - "lastname": "Kone", - "position": 2, - "quotation": 3, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Benjamin", - "id": "player_180167", - "lastname": "Henrichs", - "position": 2, - "quotation": 11, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Jerome", - "id": "player_181439", - "lastname": "Prior", - "position": 1, - "quotation": 7, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Léo", - "id": "player_183779", - "lastname": "Dubois", - "position": 2, - "quotation": 8, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Racine", - "id": "player_184215", - "lastname": "Coly", - "position": 2, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Joris", - "id": "player_184449", - "lastname": "Kayembe", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Aaron", - "id": "player_185727", - "lastname": "Leya Iseka", - "position": 4, - "quotation": 10, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Thomas", - "id": "player_18574", - "lastname": "Mangani", - "position": 3, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Alexandre", - "id": "player_189542", - "lastname": "Mendy", - "position": 4, - "quotation": 5, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bachibou", - "id": "player_189752", - "lastname": "Koita", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Nolan", - "id": "player_192021", - "lastname": "Mbemba", - "position": 3, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Seydou", - "id": "player_192291", - "lastname": "Sy", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_192292", - "lastname": "Almamy Touré", - "position": 2, - "quotation": 7, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Juan Ferney", - "id": "player_192785", - "lastname": "Otero", - "position": 4, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_193400", - "lastname": "Doumbia", - "position": 3, - "quotation": 13, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Quentin", - "id": "player_193537", - "lastname": "Cornette", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Valentin", - "id": "player_193539", - "lastname": "Rongier", - "position": 3, - "quotation": 15, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Jérémie", - "id": "player_194300", - "lastname": "Porsan-Clemente", - "position": 4, - "quotation": 1, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Yann", - "id": "player_194302", - "lastname": "Bodiger", - "position": 3, - "quotation": 4, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Theo", - "id": "player_194624", - "lastname": "Valls", - "position": 3, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Nemanja", - "id": "player_195908", - "lastname": "Radonjic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Valentín", - "id": "player_195982", - "lastname": "Vada", - "position": 3, - "quotation": 5, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_197017", - "lastname": "Junior Sambia", - "position": 3, - "quotation": 11, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Ibrahim", - "id": "player_197022", - "lastname": "Cisse", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Eiji", - "id": "player_19739", - "lastname": "Kawashima", - "position": 1, - "quotation": 3, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_198065", - "lastname": "Adama Traoré", - "position": 3, - "quotation": 8, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Cédric", - "id": "player_199375", - "lastname": "Yambéré", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Alec", - "id": "player_199663", - "lastname": "Georgen", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Jean-Victor", - "id": "player_199666", - "lastname": "Makengo", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Firmin Ndombe", - "id": "player_199734", - "lastname": "Mubele", - "position": 4, - "quotation": 10, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Florian", - "id": "player_200666", - "lastname": "Miguel", - "position": 2, - "quotation": 9, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_200722", - "lastname": "Walongwa", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Assane", - "id": "player_200958", - "lastname": "Dioussé", - "position": 3, - "quotation": 8, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Alexis", - "id": "player_201392", - "lastname": "Blin", - "position": 3, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_202520", - "lastname": "Pape Cheikh", - "position": 3, - "quotation": 10, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Angelo", - "id": "player_202857", - "lastname": "Fulgini", - "position": 3, - "quotation": 11, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Frederic", - "id": "player_203368", - "lastname": "Guilbert", - "position": 2, - "quotation": 11, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Olivier", - "id": "player_204120", - "lastname": "Boscagli", - "position": 2, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_20468", - "lastname": "Lass Diarra", - "position": 3, - "quotation": 7, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Gaetan", - "id": "player_204715", - "lastname": "Poussin", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Thomas", - "id": "player_204719", - "lastname": "Basila", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Hakim", - "id": "player_204741", - "lastname": "El Mokkedem", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Yassin", - "id": "player_204742", - "lastname": "Benrahou", - "position": 3, - "quotation": 1, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Mihailo", - "id": "player_206340", - "lastname": "Ristic", - "position": 2, - "quotation": 4, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Nicolas", - "id": "player_206935", - "lastname": "Lemaitre", - "position": 1, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Sergi", - "id": "player_207756", - "lastname": "Palencia", - "position": 2, - "quotation": 10, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_208134", - "lastname": "Escales", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": "Loic", - "id": "player_208555", - "lastname": "Bessile", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Myziane", - "id": "player_208556", - "lastname": "Maolida", - "position": 4, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Hicham", - "id": "player_208560", - "lastname": "Mahou", - "position": 3, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Imad", - "id": "player_208567", - "lastname": "Faraj", - "position": 3, - "quotation": 5, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Jad", - "id": "player_208569", - "lastname": "Mouaddib", - "position": 3, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Jonathan", - "id": "player_209035", - "lastname": "Panzo", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Dimitry", - "id": "player_209218", - "lastname": "Bertaud", - "position": 1, - "quotation": 1, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Pietro", - "id": "player_209335", - "lastname": "Pellegri", - "position": 4, - "quotation": 7, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Souleyman", - "id": "player_210456", - "lastname": "Doumbia", - "position": 2, - "quotation": 9, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Ibrahim", - "id": "player_210462", - "lastname": "Sangaré", - "position": 3, - "quotation": 8, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Nayef", - "id": "player_210494", - "lastname": "Aguerd", - "position": 2, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Adam", - "id": "player_210932", - "lastname": "Jakubech", - "position": 1, - "quotation": 2, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Toma", - "id": "player_212851", - "lastname": "Basic", - "position": 3, - "quotation": 6, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Félix", - "id": "player_213200", - "lastname": "Eboa Eboa", - "position": 2, - "quotation": 15, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Ludovic", - "id": "player_213940", - "lastname": "Blas", - "position": 3, - "quotation": 12, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Maxime", - "id": "player_213965", - "lastname": "Lopez", - "position": 3, - "quotation": 14, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": null, - "id": "player_214473", - "lastname": "Faitout Maouassa", - "position": 3, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Enock", - "id": "player_215046", - "lastname": "Kwateng", - "position": 2, - "quotation": 12, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Denis", - "id": "player_215755", - "lastname": "Poha", - "position": 3, - "quotation": 4, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Alexandre", - "id": "player_216610", - "lastname": "Olliero", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Aly", - "id": "player_217319", - "lastname": "Ndom", - "position": 3, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Kelvin", - "id": "player_217596", - "lastname": "Amian", - "position": 2, - "quotation": 9, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Mathieu", - "id": "player_217597", - "lastname": "Cafaro", - "position": 3, - "quotation": 14, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Nicolas", - "id": "player_217993", - "lastname": "Janvier", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Loic", - "id": "player_218389", - "lastname": "Badiashile", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_218524", - "lastname": "Jules Keita", - "position": 4, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Killian", - "id": "player_219079", - "lastname": "Sanson", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Batista", - "id": "player_219286", - "lastname": "Mendy", - "position": 2, - "quotation": 2, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Alexis", - "id": "player_219289", - "lastname": "Flips", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Aurelien", - "id": "player_219292", - "lastname": "Tchouameni", - "position": 3, - "quotation": 9, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Maxence", - "id": "player_219296", - "lastname": "Caqueret", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_219873", - "lastname": "Del Castillo", - "position": 3, - "quotation": 10, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Quentin", - "id": "player_220110", - "lastname": "Braat", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Axel", - "id": "player_220362", - "lastname": "Disasi", - "position": 2, - "quotation": 4, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Malik", - "id": "player_220943", - "lastname": "Tchokounte", - "position": 4, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bakaye", - "id": "player_220960", - "lastname": "Dibassy", - "position": 2, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Cheick", - "id": "player_223393", - "lastname": "Timite", - "position": 3, - "quotation": 8, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_224077", - "lastname": "Elhadji Diaw", - "position": 2, - "quotation": 6, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Lyon", - "firstname": "Reo", - "id": "player_225268", - "lastname": "Griffiths", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Boubakary", - "id": "player_225902", - "lastname": "Soumare", - "position": 3, - "quotation": 9, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Antoine", - "id": "player_225903", - "lastname": "Bernede", - "position": 3, - "quotation": 6, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Wilfried", - "id": "player_225905", - "lastname": "Kanga", - "position": 4, - "quotation": 8, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Sofiane", - "id": "player_225997", - "lastname": "Alakouch", - "position": 2, - "quotation": 9, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jan", - "id": "player_226183", - "lastname": "Repas", - "position": 3, - "quotation": 5, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Samuel", - "id": "player_226194", - "lastname": "Grandsir", - "position": 4, - "quotation": 8, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_226597", - "lastname": "Gabriel", - "position": 2, - "quotation": 6, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Rafik", - "id": "player_226949", - "lastname": "Guitane", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jordi", - "id": "player_227163", - "lastname": "Mboula", - "position": 4, - "quotation": 6, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Valentin", - "id": "player_228170", - "lastname": "Rosier", - "position": 2, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Edouard", - "id": "player_228286", - "lastname": "Mendy", - "position": 1, - "quotation": 23, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Jordan", - "id": "player_228289", - "lastname": "Lefort", - "position": 2, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Oualid", - "id": "player_228291", - "lastname": "El Hajjam", - "position": 2, - "quotation": 6, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": "Guessouma", - "id": "player_228292", - "lastname": "Fofana", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Ihsan", - "id": "player_228321", - "lastname": "Sacko", - "position": 3, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Kouakou", - "id": "player_228345", - "lastname": "Koffi", - "position": 1, - "quotation": 6, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Keagan", - "id": "player_228361", - "lastname": "Dolly", - "position": 3, - "quotation": 6, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Gauthier", - "id": "player_230444", - "lastname": "Banaziak", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Martin", - "id": "player_232176", - "lastname": "Terrier", - "position": 3, - "quotation": 13, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Patrick", - "id": "player_232197", - "lastname": "Burner", - "position": 2, - "quotation": 5, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_232240", - "lastname": "Caci", - "position": 3, - "quotation": 8, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Mehdi", - "id": "player_232252", - "lastname": "Merghem", - "position": 3, - "quotation": 5, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jordy", - "id": "player_234458", - "lastname": "Gaspar", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Julien", - "id": "player_240131", - "lastname": "Serrano", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Safwan", - "id": "player_240132", - "lastname": "Mbae", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Moussa", - "id": "player_240149", - "lastname": "Sylla", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Oussama", - "id": "player_241398", - "lastname": "Haddadi", - "position": 2, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Stefan", - "id": "player_242878", - "lastname": "Bajic", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Benoit", - "id": "player_242880", - "lastname": "Badiashile Mukinayi", - "position": 2, - "quotation": 10, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Bafode", - "id": "player_242882", - "lastname": "Diakite", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_242887", - "lastname": "Kephren Thuram", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_242890", - "lastname": "Dabo", - "position": 3, - "quotation": 5, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Yann", - "id": "player_242893", - "lastname": "Gboho", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Adil", - "id": "player_242896", - "lastname": "Taoui", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Moussa", - "id": "player_243557", - "lastname": "Diaby", - "position": 4, - "quotation": 11, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Yanis", - "id": "player_243996", - "lastname": "Henin", - "position": 1, - "quotation": 1, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_244136", - "lastname": "Lionel Dias", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Zaydou", - "id": "player_244182", - "lastname": "Youssouf", - "position": 3, - "quotation": 5, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Ghislain", - "id": "player_244642", - "lastname": "Konan", - "position": 2, - "quotation": 17, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Namakoro", - "id": "player_244754", - "lastname": "Diallo", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "James", - "id": "player_244842", - "lastname": "Lea Siliki", - "position": 3, - "quotation": 8, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Moataz", - "id": "player_245491", - "lastname": "Zemzemi", - "position": 3, - "quotation": 5, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Bassem", - "id": "player_245496", - "lastname": "Srarfi", - "position": 3, - "quotation": 11, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Hakim", - "id": "player_245715", - "lastname": "Ouro-Sama", - "position": 2, - "quotation": 1, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Bryan", - "id": "player_245750", - "lastname": "Passi", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Kenny", - "id": "player_245915", - "lastname": "Rocha Santos", - "position": 3, - "quotation": 5, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Mickael", - "id": "player_246429", - "lastname": "Panos", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Anthony", - "id": "player_247385", - "lastname": "Racioppi", - "position": 1, - "quotation": 1, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Amine", - "id": "player_247400", - "lastname": "Gouiri", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Romain", - "id": "player_247439", - "lastname": "Cagnon", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Randal", - "id": "player_247693", - "lastname": "Kolo Muani", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Duplexe Tchamba", - "id": "player_250510", - "lastname": "Bangou", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Sami", - "id": "player_250588", - "lastname": "Ben Amar", - "position": 4, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Mathieu", - "id": "player_26896", - "lastname": "Bodmer", - "position": 2, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Stéphane", - "id": "player_27671", - "lastname": "Mbia", - "position": 3, - "quotation": 9, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Yohann", - "id": "player_37769", - "lastname": "Pelé", - "position": 1, - "quotation": 11, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Ludovic", - "id": "player_37776", - "lastname": "Baal", - "position": 2, - "quotation": 4, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Jérémy", - "id": "player_37832", - "lastname": "Morel", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_37938", - "lastname": "Danzé", - "position": 2, - "quotation": 4, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Mouhamadou", - "id": "player_37995", - "lastname": "Dabo", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": null, - "id": "player_39294", - "lastname": "Rolando", - "position": 2, - "quotation": 10, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Moustapha", - "id": "player_39905", - "lastname": "Diallo", - "position": 3, - "quotation": 7, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Denis", - "id": "player_40511", - "lastname": "Petric", - "position": 1, - "quotation": 6, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Prince", - "id": "player_40808", - "lastname": "Oniangué", - "position": 3, - "quotation": 12, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "William", - "id": "player_40815", - "lastname": "Vainqueur", - "position": 3, - "quotation": 13, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Jérémy", - "id": "player_40833", - "lastname": "Pied", - "position": 2, - "quotation": 7, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Adil", - "id": "player_41795", - "lastname": "Rami", - "position": 2, - "quotation": 10, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_422159", - "lastname": "Fernando Costanza", - "position": 2, - "quotation": 3, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Teddy", - "id": "player_422163", - "lastname": "Okou", - "position": 4, - "quotation": 1, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Kouadio", - "id": "player_422230", - "lastname": "Dabila", - "position": 2, - "quotation": 10, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_422250", - "lastname": "Piechocki", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Matteo", - "id": "player_423870", - "lastname": "Ahlinvi", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Derick", - "id": "player_423955", - "lastname": "Osei Yaw", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Alexander", - "id": "player_42518", - "lastname": "Kacaniklic", - "position": 3, - "quotation": 6, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Eric Maxim", - "id": "player_42564", - "lastname": "Choupo-Moting", - "position": 3, - "quotation": 10, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Nicolas", - "id": "player_428989", - "lastname": "Cozza", - "position": 2, - "quotation": 7, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Chahreddine", - "id": "player_429235", - "lastname": "Boukholda", - "position": 3, - "quotation": 3, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_431647", - "lastname": "Bana", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Oumar", - "id": "player_432649", - "lastname": "Solet", - "position": 2, - "quotation": 1, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Kévin", - "id": "player_433640", - "lastname": "Zohi", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Scotty", - "id": "player_433666", - "lastname": "Sadzoute", - "position": 4, - "quotation": 1, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_433731", - "lastname": "Buades", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Ignatius", - "id": "player_433771", - "lastname": "Ganago", - "position": 4, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Over", - "id": "player_433830", - "lastname": "Mandanda", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Marseille", - "firstname": "Yusuf", - "id": "player_434060", - "lastname": "Sari", - "position": 4, - "quotation": 1, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Gerzino", - "id": "player_435731", - "lastname": "Nyamsi", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Ismael", - "id": "player_436644", - "lastname": "Aaneba", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Jessy", - "id": "player_436658", - "lastname": "Deminguet", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Benjamin", - "id": "player_436662", - "lastname": "Verite", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Andy", - "id": "player_437501", - "lastname": "Pelmard", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Yacine", - "id": "player_437504", - "lastname": "Adli", - "position": 3, - "quotation": 1, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Sebastien", - "id": "player_437721", - "lastname": "Cibois", - "position": 1, - "quotation": 4, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Virgiliu", - "id": "player_437724", - "lastname": "Postolachi", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Giulian", - "id": "player_437753", - "lastname": "Biancone", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Gobe", - "id": "player_437754", - "lastname": "Gouano", - "position": 4, - "quotation": 1, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Han-Noah", - "id": "player_437757", - "lastname": "Massengo", - "position": 3, - "quotation": 7, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Driss", - "id": "player_437950", - "lastname": "Khalid", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Lenny", - "id": "player_438015", - "lastname": "Pintor", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_438041", - "lastname": "Mathurin Sakho", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Thomas", - "id": "player_439205", - "lastname": "Carrique", - "position": 2, - "quotation": 2, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Yoel", - "id": "player_439711", - "lastname": "Armougom", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Yannis", - "id": "player_440058", - "lastname": "Clementia", - "position": 1, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Arnold", - "id": "player_44082", - "lastname": "Bouka Moutou", - "position": 2, - "quotation": 4, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Romain", - "id": "player_441240", - "lastname": "Faivre", - "position": 3, - "quotation": 3, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Yannick", - "id": "player_44138", - "lastname": "Cahuzac", - "position": 3, - "quotation": 10, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Mohamed Lamine", - "id": "player_441575", - "lastname": "Diaby", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Christopher", - "id": "player_441576", - "lastname": "Rocchia", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Fethi", - "id": "player_44199", - "lastname": "Harek", - "position": 2, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mahdi", - "id": "player_442264", - "lastname": "Camara", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Kader", - "id": "player_443202", - "lastname": "Bamba", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Romain", - "id": "player_44357", - "lastname": "Genevois", - "position": 2, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Dylan", - "id": "player_444465", - "lastname": "Chambost", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Johann", - "id": "player_44475", - "lastname": "Carrasso", - "position": 1, - "quotation": 4, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Mapou", - "id": "player_44488", - "lastname": "Yanga-Mbiwa", - "position": 2, - "quotation": 3, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Yannis", - "id": "player_446006", - "lastname": "Ammour", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Farid", - "id": "player_447389", - "lastname": "El Melali", - "position": 3, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Rayan", - "id": "player_448514", - "lastname": "Ait Nouri", - "position": 2, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Enzo", - "id": "player_449718", - "lastname": "Loiodice", - "position": 3, - "quotation": 8, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Matthieu", - "id": "player_45032", - "lastname": "Dreyer", - "position": 1, - "quotation": 3, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Lucas", - "id": "player_45084", - "lastname": "Deaux", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Theo", - "id": "player_451005", - "lastname": "Barbet", - "position": 2, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Cheikh", - "id": "player_45136", - "lastname": "M'Bengue", - "position": 2, - "quotation": 5, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Senou", - "id": "player_454964", - "lastname": "Coulibaly", - "position": 2, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Romain", - "id": "player_45505", - "lastname": "Thomas", - "position": 2, - "quotation": 15, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Clement", - "id": "player_456193", - "lastname": "Vidal", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Kylian", - "id": "player_456194", - "lastname": "Kaiboue", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Amir", - "id": "player_456195", - "lastname": "Adouyev", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Sacha", - "id": "player_456299", - "lastname": "Marasovic", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Lucas", - "id": "player_456300", - "lastname": "Perrin", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Levi", - "id": "player_456355", - "lastname": "Ntumba", - "position": 1, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Isaac", - "id": "player_456857", - "lastname": "Matondo", - "position": 4, - "quotation": 1, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Thomas", - "id": "player_457225", - "lastname": "Callens", - "position": 1, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Ibrahim", - "id": "player_457234", - "lastname": "Diarra", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Michael", - "id": "player_457235", - "lastname": "Nilor", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Dorian", - "id": "player_457242", - "lastname": "Bertrand", - "position": 4, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Colin", - "id": "player_458250", - "lastname": "Dagba", - "position": 2, - "quotation": 6, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Alexandre", - "id": "player_458251", - "lastname": "Fressange", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Yassin", - "id": "player_459560", - "lastname": "Fekir", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_460265", - "lastname": "Robert Navarro", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Sofiane", - "id": "player_460267", - "lastname": "Diop", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Percy", - "id": "player_460630", - "lastname": "Ruiz", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Mathieu", - "id": "player_461384", - "lastname": "Goncalves", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_461397", - "lastname": "Chabrolle", - "position": 4, - "quotation": 1, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Valentin", - "id": "player_461415", - "lastname": "Gendrey", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Sanasi", - "id": "player_461418", - "lastname": "Sy", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Jean-Claude", - "id": "player_461428", - "lastname": "Ngando", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Gaoussou", - "id": "player_461433", - "lastname": "Traore", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Martin", - "id": "player_461439", - "lastname": "Gneba", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Antonin", - "id": "player_461442", - "lastname": "Gauducheau", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Djegui", - "id": "player_461827", - "lastname": "Koita", - "position": 2, - "quotation": 6, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Arton", - "id": "player_461833", - "lastname": "Zekaj", - "position": 3, - "quotation": 6, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Patrick", - "id": "player_461840", - "lastname": "Bahanack", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Mohamed", - "id": "player_461910", - "lastname": "Simakan", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Youssouf", - "id": "player_461913", - "lastname": "Fofana", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Jean-Clair", - "id": "player_462116", - "lastname": "Todibo", - "position": 3, - "quotation": 8, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Makhtar", - "id": "player_462425", - "lastname": "Gueye", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Georginio", - "id": "player_463067", - "lastname": "Rutter", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Yohan", - "id": "player_464193", - "lastname": "Bilingi", - "position": 2, - "quotation": 2, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Théo", - "id": "player_465057", - "lastname": "Vermot", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Bilal", - "id": "player_465151", - "lastname": "Benkhedim", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_465299", - "lastname": "Mancini", - "position": 3, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Abdallah", - "id": "player_467625", - "lastname": "Ali Mohamed", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Ousseynou", - "id": "player_468430", - "lastname": "Ndiaye", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Boulaye", - "id": "player_468488", - "lastname": "Dia", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Kalidou", - "id": "player_468489", - "lastname": "Sidibe", - "position": 3, - "quotation": 4, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Matthias", - "id": "player_468490", - "lastname": "Phaeton", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Mehdi", - "id": "player_468496", - "lastname": "Boudjemaa", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Thody Elie", - "id": "player_469192", - "lastname": "Youan", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Eddy", - "id": "player_469204", - "lastname": "Sylvestre", - "position": 3, - "quotation": 5, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Yanis", - "id": "player_469205", - "lastname": "Hamache", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Kevin", - "id": "player_469318", - "lastname": "Mouanga", - "position": 2, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Steven", - "id": "player_469319", - "lastname": "Ako", - "position": 2, - "quotation": 1, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Nathan", - "id": "player_469323", - "lastname": "N'Goumou Minpol", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Sory", - "id": "player_471212", - "lastname": "Doumbouya", - "position": 4, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Evens", - "id": "player_471213", - "lastname": "Joseph", - "position": 3, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Alexandre", - "id": "player_471437", - "lastname": "Philiponeau", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Imran", - "id": "player_471471", - "lastname": "Louza", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Stanley", - "id": "player_471841", - "lastname": "Segarel", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Matis", - "id": "player_471924", - "lastname": "Carvalho", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Younn", - "id": "player_472187", - "lastname": "Zahary", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Charles Nathan", - "id": "player_472778", - "lastname": "Abi", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Saint Etienne", - "firstname": "Marvin", - "id": "player_472779", - "lastname": "Tshibuabua", - "position": 2, - "quotation": 1, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Theo", - "id": "player_473007", - "lastname": "Godard", - "position": 4, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Jawad", - "id": "player_474286", - "lastname": "Drame", - "position": 3, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Kostas", - "id": "player_47434", - "lastname": "Mitroglou", - "position": 4, - "quotation": 8, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Cheikh", - "id": "player_474354", - "lastname": "Niasse", - "position": 2, - "quotation": 1, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Mamoudoou", - "id": "player_475067", - "lastname": "Karamoko", - "position": 4, - "quotation": 1, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Leon", - "id": "player_475068", - "lastname": "Valentin", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Eduardo", - "id": "player_475561", - "lastname": "Camavinga", - "position": 3, - "quotation": 5, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Kouadio", - "id": "player_475767", - "lastname": "Kone", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "John", - "id": "player_48897", - "lastname": "Bostock", - "position": 3, - "quotation": 9, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Tomas", - "id": "player_49181", - "lastname": "Hubocan", - "position": 2, - "quotation": 3, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Khaled", - "id": "player_49502", - "lastname": "Adénon", - "position": 2, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Anatole", - "id": "player_50036", - "lastname": "Ngamukol", - "position": 4, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Emmanuel", - "id": "player_50326", - "lastname": "Imorou", - "position": 2, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Ronny", - "id": "player_50996", - "lastname": "Rodelin", - "position": 4, - "quotation": 8, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Pierrick", - "id": "player_51394", - "lastname": "Valdivia", - "position": 3, - "quotation": 5, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Marvin", - "id": "player_51634", - "lastname": "Martin", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Jakob", - "id": "player_51850", - "lastname": "Johansson", - "position": 3, - "quotation": 9, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_54518", - "lastname": "Manceau", - "position": 2, - "quotation": 8, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_54771", - "lastname": "Fabio", - "position": 2, - "quotation": 9, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_54772", - "lastname": "Rafael", - "position": 2, - "quotation": 10, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Nacer", - "id": "player_54908", - "lastname": "Chadli", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Franck", - "id": "player_55313", - "lastname": "Tabanou", - "position": 2, - "quotation": 8, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Grégory", - "id": "player_56995", - "lastname": "Sertic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Yoann", - "id": "player_58309", - "lastname": "Andreu", - "position": 2, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_58476", - "lastname": "Rui Fonte", - "position": 4, - "quotation": 9, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_58875", - "lastname": "Fontaine", - "position": 2, - "quotation": 8, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_59229", - "lastname": "Pelé", - "position": 3, - "quotation": 9, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Mathieu", - "id": "player_59956", - "lastname": "Gorgelin", - "position": 1, - "quotation": 8, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Rene", - "id": "player_60070", - "lastname": "Krhin", - "position": 3, - "quotation": 8, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Erwin", - "id": "player_60189", - "lastname": "Zelazny", - "position": 1, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_61278", - "lastname": "Neymar", - "position": 4, - "quotation": 45, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Jimmy", - "id": "player_61704", - "lastname": "Durmaz", - "position": 3, - "quotation": 11, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Karl-Johan", - "id": "player_61741", - "lastname": "Johnsson", - "position": 1, - "quotation": 8, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_62128", - "lastname": "Cristian", - "position": 4, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_67272", - "lastname": "Gonçalves", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Yeni", - "id": "player_68157", - "lastname": "N'Gbakoto", - "position": 4, - "quotation": 9, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Petar", - "id": "player_68862", - "lastname": "Skuletic", - "position": 4, - "quotation": 8, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Igor", - "id": "player_71797", - "lastname": "Lewczuk", - "position": 2, - "quotation": 9, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Paul", - "id": "player_72177", - "lastname": "Lasne", - "position": 3, - "quotation": 12, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Benjamin", - "id": "player_73667", - "lastname": "Jeannot", - "position": 4, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Nicolas", - "id": "player_73879", - "lastname": "de Preville", - "position": 4, - "quotation": 7, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Marc", - "id": "player_74299", - "lastname": "Vidal", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": null, - "id": "player_76008", - "lastname": "Johan Larsson", - "position": 2, - "quotation": 9, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Abdoulaye", - "id": "player_79625", - "lastname": "Diallo", - "position": 1, - "quotation": 9, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Idriss", - "id": "player_79917", - "lastname": "Saadi", - "position": 4, - "quotation": 7, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_80357", - "lastname": "Mexer", - "position": 2, - "quotation": 14, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Aymen", - "id": "player_80582", - "lastname": "Abdennour", - "position": 2, - "quotation": 4, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Jeremy", - "id": "player_80904", - "lastname": "Grimm", - "position": 3, - "quotation": 7, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Papy", - "id": "player_80935", - "lastname": "Djilobodji", - "position": 2, - "quotation": 8, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Férébory", - "id": "player_81118", - "lastname": "Doré", - "position": 4, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Panagiotis", - "id": "player_82642", - "lastname": "Vlachodimos", - "position": 3, - "quotation": 5, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Mickael", - "id": "player_83279", - "lastname": "Le Bihan", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Kolbeinn", - "id": "player_83758", - "lastname": "Sigthorsson", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Alphonse", - "id": "player_84182", - "lastname": "Areola", - "position": 1, - "quotation": 18, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_85548", - "lastname": "Pajot", - "position": 3, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Wesley", - "id": "player_85565", - "lastname": "Lautoa", - "position": 2, - "quotation": 10, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Romain", - "id": "player_85595", - "lastname": "Métanire", - "position": 2, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Romain", - "id": "player_86158", - "lastname": "Amalfitano", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Lionel", - "id": "player_86413", - "lastname": "Carole", - "position": 2, - "quotation": 9, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Benjamin", - "id": "player_86446", - "lastname": "Corgnet", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Jonathan", - "id": "player_86598", - "lastname": "Ligali", - "position": 1, - "quotation": 3, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Zacharie", - "id": "player_86811", - "lastname": "Boucher", - "position": 1, - "quotation": 7, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Florent", - "id": "player_8747", - "lastname": "Balmont", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Herve", - "id": "player_88036", - "lastname": "Lybohy", - "position": 2, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_88931", - "lastname": "Limbombe", - "position": 3, - "quotation": 11, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Nicolas", - "id": "player_89038", - "lastname": "Benezet", - "position": 3, - "quotation": 10, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Layvin", - "id": "player_89068", - "lastname": "Kurzawa", - "position": 2, - "quotation": 8, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jeff", - "id": "player_89179", - "lastname": "Louis", - "position": 3, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Loïck", - "id": "player_92258", - "lastname": "Landre", - "position": 2, - "quotation": 8, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Mickaël", - "id": "player_92559", - "lastname": "Alphonse", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_93127", - "lastname": "Jesé", - "position": 4, - "quotation": 5, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Loïc", - "id": "player_93498", - "lastname": "Puyo", - "position": 3, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Tomas", - "id": "player_94151", - "lastname": "Koubek", - "position": 1, - "quotation": 13, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Thomas", - "id": "player_96616", - "lastname": "Monconduit", - "position": 3, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "M'Baye", - "id": "player_96764", - "lastname": "Niang", - "position": 4, - "quotation": 10, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Abdelmalik", - "id": "player_97442", - "lastname": "Hsissane", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Ismael", - "id": "player_97443", - "lastname": "Diomande", - "position": 3, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Mehdi", - "id": "player_98746", - "lastname": "Abeid", - "position": 3, - "quotation": 13, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_98798", - "lastname": "Prince", - "position": 2, - "quotation": 13, - "teamid": "1430", - "ultraPosition": 20 - } - ], - "userPlayers": [ - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_95434", - "lastname": "Thauvin", - "position": 3, - "quotation": 37, - "teamid": "144", - "ultraPosition": 32, - "pricePaid": 55, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Strasbourg", - "firstname": "Kenny", - "id": "player_92527", - "lastname": "Lala", - "position": 2, - "quotation": 19, - "teamid": "153", - "ultraPosition": 21, - "pricePaid": 26, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Nice", - "firstname": "Christophe", - "id": "player_38265", - "lastname": "Jallet", - "position": 2, - "quotation": 9, - "teamid": "1395", - "ultraPosition": 21, - "pricePaid": 17, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Lyon", - "firstname": "Houssem", - "id": "player_231961", - "lastname": "Aouar", - "position": 3, - "quotation": 22, - "teamid": "143", - "ultraPosition": 32, - "pricePaid": 35, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Bordeaux", - "firstname": "François", - "id": "player_193512", - "lastname": "Kamano", - "position": 4, - "quotation": 20, - "teamid": "140", - "ultraPosition": 40, - "pricePaid": 42, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Nice", - "firstname": "Walter", - "id": "player_121709", - "lastname": "Benítez", - "position": 1, - "quotation": 25, - "teamid": "1395", - "ultraPosition": 10, - "pricePaid": 27, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Bordeaux", - "firstname": null, - "id": "player_116504", - "lastname": "Pablo", - "position": 2, - "quotation": 17, - "teamid": "140", - "ultraPosition": 20, - "pricePaid": 26, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Paris", - "firstname": "Marco", - "id": "player_61170", - "lastname": "Verratti", - "position": 3, - "quotation": 18, - "teamid": "149", - "ultraPosition": 31, - "pricePaid": 40, - "buying_date": "2019-01-08T20:36:45Z", - "status": 2 - }, - { - "club": "Montpellier", - "firstname": "Ambroise", - "id": "player_180562", - "lastname": "Oyongo", - "position": 2, - "quotation": 14, - "teamid": "147", - "ultraPosition": 21, - "pricePaid": 22, - "buying_date": "2019-01-09T18:48:37Z", - "status": 2 - }, - { - "club": "Nîmes", - "firstname": "Renaud", - "id": "player_121150", - "lastname": "Ripart", - "position": 4, - "quotation": 15, - "teamid": "2336", - "ultraPosition": 40, - "pricePaid": 35, - "buying_date": "2019-01-09T18:48:37Z", - "status": 2 - }, - { - "club": "Angers", - "firstname": "Pierrick", - "id": "player_112580", - "lastname": "Capelle", - "position": 3, - "quotation": 15, - "teamid": "2128", - "ultraPosition": 32, - "pricePaid": 30, - "buying_date": "2019-01-09T18:48:37Z", - "status": 2 - }, - { - "club": "Paris", - "firstname": "Adrien", - "id": "player_120743", - "lastname": "Rabiot", - "position": 3, - "quotation": 10, - "teamid": "149", - "ultraPosition": 31, - "pricePaid": 25, - "buying_date": "2019-01-13T20:31:01Z", - "status": 2 - }, - { - "club": "Nice", - "firstname": "Mouez", - "id": "player_115357", - "lastname": "Hassen", - "position": 1, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 10, - "pricePaid": 2, - "buying_date": "2019-01-13T20:31:01Z", - "status": 2 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_464192", - "lastname": "Pinson", - "position": 4, - "quotation": 3, - "teamid": "1423", - "ultraPosition": 40, - "pricePaid": 3, - "buying_date": "2019-01-23T23:03:41Z", - "status": 2 - }, - { - "club": "Nîmes", - "firstname": "Clement", - "id": "player_200671", - "lastname": "Depres", - "position": 4, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 40, - "pricePaid": 12, - "buying_date": "2019-01-29T09:51:52Z", - "status": 2 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_199409", - "lastname": "Thiago Maia", - "position": 3, - "quotation": 16, - "teamid": "429", - "ultraPosition": 31, - "pricePaid": 16, - "buying_date": "2019-01-29T09:51:52Z", - "status": 2 - }, - { - "club": "Marseille", - "firstname": "Bouna", - "id": "player_102760", - "lastname": "Sarr", - "position": 3, - "quotation": 16, - "teamid": "144", - "ultraPosition": 32, - "pricePaid": 16, - "buying_date": "2019-01-29T09:51:52Z", - "status": 2 - } - ], - "preparation": [ - ] -} diff --git a/src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190217.json b/src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190217.json deleted file mode 100644 index 676260f..0000000 --- a/src/test/resources/__files/mpg.transfer.buy.KX24XMUG.20190217.json +++ /dev/null @@ -1,4337 +0,0 @@ -{ - "leagueId": "KX24XMUG", - "turn": 21, - "players": 10, - "season": 1, - "statusLeague": 4, - "currentUser": "authorized", - "championship": 1, - "statusTeam": 1, - "leagueMode": 2, - "budget": 2, - "currentTeam": "mpg_team_KX24XMUG$$mpg_user_955966", - "availablePlayers": [ - { - "club": "Toulouse", - "firstname": "François", - "id": "player_100954", - "lastname": "Moubandje", - "position": 2, - "quotation": 8, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_102385", - "lastname": "Edgar Ié", - "position": 2, - "quotation": 6, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Paris", - "firstname": "Kevin", - "id": "player_102660", - "lastname": "Rimane", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Martin", - "id": "player_102732", - "lastname": "Sourzac", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Christophe", - "id": "player_102739", - "lastname": "Kerbrat", - "position": 2, - "quotation": 8, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Baissama", - "id": "player_102744", - "lastname": "Sankoh", - "position": 3, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Bouna", - "id": "player_102760", - "lastname": "Sarr", - "position": 3, - "quotation": 14, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Brice", - "id": "player_102836", - "lastname": "Samba", - "position": 1, - "quotation": 18, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Emiliano", - "id": "player_103124", - "lastname": "Sala", - "position": 4, - "quotation": 500, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Hendrick", - "id": "player_103733", - "lastname": "Cakin", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_106320", - "lastname": "Kalifa Coulibaly", - "position": 4, - "quotation": 11, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Sanjin", - "id": "player_106551", - "lastname": "Prcic", - "position": 3, - "quotation": 9, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Nîmes", - "firstname": "Jordan", - "id": "player_107641", - "lastname": "Ferri", - "position": 3, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Tristan", - "id": "player_107685", - "lastname": "Dingome", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Marc-Aurèle", - "id": "player_107925", - "lastname": "Caillard", - "position": 1, - "quotation": 13, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Souleymane", - "id": "player_10955", - "lastname": "Camara", - "position": 4, - "quotation": 5, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Bobby", - "id": "player_110369", - "lastname": "Allain", - "position": 1, - "quotation": 16, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Mehdi", - "id": "player_111002", - "lastname": "Zeffane", - "position": 2, - "quotation": 13, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_111291", - "lastname": "Marçal", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Emil", - "id": "player_111773", - "lastname": "Krafth", - "position": 2, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Saint Etienne", - "firstname": "Pierre-Yves", - "id": "player_112323", - "lastname": "Polomat", - "position": 2, - "quotation": 9, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Adama", - "id": "player_112654", - "lastname": "Mbengue", - "position": 2, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Rúnar Alex", - "id": "player_115918", - "lastname": "Rúnarsson", - "position": 1, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "John Stiven", - "id": "player_116152", - "lastname": "Mendoza", - "position": 3, - "quotation": 8, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": null, - "id": "player_116504", - "lastname": "Pablo", - "position": 2, - "quotation": 10, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Abdul Rahman", - "id": "player_118335", - "lastname": "Baba", - "position": 2, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Fouad", - "id": "player_119679", - "lastname": "Chafik", - "position": 2, - "quotation": 13, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Jaroslav", - "id": "player_12057", - "lastname": "Plasil", - "position": 3, - "quotation": 9, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Adrien", - "id": "player_120743", - "lastname": "Rabiot", - "position": 3, - "quotation": 8, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Paul", - "id": "player_120770", - "lastname": "Reulet", - "position": 1, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_120947", - "lastname": "Foket", - "position": 2, - "quotation": 12, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Maxime", - "id": "player_121524", - "lastname": "Poundjé", - "position": 2, - "quotation": 10, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": "Étienne", - "id": "player_12179", - "lastname": "Didot", - "position": 3, - "quotation": 12, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Corentin", - "id": "player_126177", - "lastname": "Jean", - "position": 4, - "quotation": 8, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Jordan", - "id": "player_129478", - "lastname": "Ikoko", - "position": 2, - "quotation": 6, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Mauro", - "id": "player_132197", - "lastname": "Goicoechea", - "position": 1, - "quotation": 7, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Abdallah", - "id": "player_133632", - "lastname": "Ndour", - "position": 2, - "quotation": 3, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Steven", - "id": "player_141017", - "lastname": "Moreira", - "position": 2, - "quotation": 7, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Gautier", - "id": "player_141109", - "lastname": "Lloris", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_141921", - "lastname": "Sheyi Ojo", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Alexander", - "id": "player_143685", - "lastname": "Djiku", - "position": 2, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Didier", - "id": "player_144660", - "lastname": "Ndong", - "position": 3, - "quotation": 8, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Issiaga", - "id": "player_145221", - "lastname": "Sylla", - "position": 2, - "quotation": 10, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Facundo", - "id": "player_148214", - "lastname": "Píriz", - "position": 3, - "quotation": 4, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Cheick", - "id": "player_152865", - "lastname": "Traoré", - "position": 2, - "quotation": 5, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Jordan", - "id": "player_153014", - "lastname": "Marié", - "position": 3, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Lebogang", - "id": "player_156692", - "lastname": "Phiri", - "position": 3, - "quotation": 9, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Baptiste", - "id": "player_157728", - "lastname": "Guillaume", - "position": 4, - "quotation": 7, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Gen", - "id": "player_158208", - "lastname": "Shoji", - "position": 2, - "quotation": 9, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_158496", - "lastname": "Touré", - "position": 3, - "quotation": 12, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Andrea", - "id": "player_15930", - "lastname": "Raggi", - "position": 2, - "quotation": 6, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Harrison", - "id": "player_160985", - "lastname": "Manzala", - "position": 4, - "quotation": 6, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Fares", - "id": "player_161039", - "lastname": "Bahlouli", - "position": 3, - "quotation": 4, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Aleksandr", - "id": "player_161950", - "lastname": "Golovin", - "position": 3, - "quotation": 13, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Serhou", - "id": "player_162275", - "lastname": "Guirassy", - "position": 4, - "quotation": 6, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_162654", - "lastname": "Jemerson", - "position": 2, - "quotation": 6, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_163562", - "lastname": "Lucas Evangelista", - "position": 3, - "quotation": 6, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Youssouf", - "id": "player_164474", - "lastname": "Sabaly", - "position": 2, - "quotation": 9, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": null, - "id": "player_165803", - "lastname": "Pedro Rebocho", - "position": 2, - "quotation": 9, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Edvinas", - "id": "player_167054", - "lastname": "Gertmonas", - "position": 1, - "quotation": 1, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Baptiste", - "id": "player_168985", - "lastname": "Santamaría", - "position": 3, - "quotation": 12, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Gaetan", - "id": "player_169860", - "lastname": "Paquiez", - "position": 2, - "quotation": 8, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_170409", - "lastname": "Andrei Girotto", - "position": 3, - "quotation": 11, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Hassane", - "id": "player_171099", - "lastname": "Kamara", - "position": 3, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Mathías", - "id": "player_173046", - "lastname": "Suárez", - "position": 2, - "quotation": 8, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": null, - "id": "player_173085", - "lastname": "Danilo", - "position": 3, - "quotation": 10, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Duje", - "id": "player_173271", - "lastname": "Caleta-Car", - "position": 2, - "quotation": 6, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_174272", - "lastname": "Mandrea", - "position": 1, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Franck", - "id": "player_174655", - "lastname": "Honorat", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bongani", - "id": "player_174846", - "lastname": "Zungu", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jean Eudes", - "id": "player_174908", - "lastname": "Aholou", - "position": 3, - "quotation": 5, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": null, - "id": "player_175352", - "lastname": "Manu García", - "position": 3, - "quotation": 11, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Théo", - "id": "player_176443", - "lastname": "Pellenard", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": null, - "id": "player_176495", - "lastname": "Moreto Cassamã", - "position": 3, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Jonathan", - "id": "player_176501", - "lastname": "Gradit", - "position": 2, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Arbër", - "id": "player_177885", - "lastname": "Zeneli", - "position": 4, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Youssouf", - "id": "player_180124", - "lastname": "Kone", - "position": 2, - "quotation": 11, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Benjamin", - "id": "player_180167", - "lastname": "Henrichs", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Montpellier", - "firstname": "Ambroise", - "id": "player_180562", - "lastname": "Oyongo", - "position": 2, - "quotation": 13, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Bordeaux", - "firstname": "Jerome", - "id": "player_181439", - "lastname": "Prior", - "position": 1, - "quotation": 5, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Léo", - "id": "player_183779", - "lastname": "Dubois", - "position": 2, - "quotation": 11, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Racine", - "id": "player_184215", - "lastname": "Coly", - "position": 2, - "quotation": 5, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Joris", - "id": "player_184449", - "lastname": "Kayembe", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Aaron", - "id": "player_185727", - "lastname": "Leya Iseka", - "position": 4, - "quotation": 10, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Thomas", - "id": "player_18574", - "lastname": "Mangani", - "position": 3, - "quotation": 11, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Alexandre", - "id": "player_189542", - "lastname": "Mendy", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Nolan", - "id": "player_192021", - "lastname": "Mbemba", - "position": 3, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Seydou", - "id": "player_192291", - "lastname": "Sy", - "position": 1, - "quotation": 2, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Juan Ferney", - "id": "player_192785", - "lastname": "Otero", - "position": 4, - "quotation": 13, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_193400", - "lastname": "Doumbia", - "position": 3, - "quotation": 12, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Quentin", - "id": "player_193537", - "lastname": "Cornette", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Valentin", - "id": "player_193539", - "lastname": "Rongier", - "position": 3, - "quotation": 16, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Jérémie", - "id": "player_194300", - "lastname": "Porsan-Clemente", - "position": 4, - "quotation": 1, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Theo", - "id": "player_194624", - "lastname": "Valls", - "position": 3, - "quotation": 10, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Josh", - "id": "player_195480", - "lastname": "Maja", - "position": 4, - "quotation": 3, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Nemanja", - "id": "player_195908", - "lastname": "Radonjic", - "position": 3, - "quotation": 8, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Valentín", - "id": "player_195982", - "lastname": "Vada", - "position": 3, - "quotation": 4, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": null, - "id": "player_197017", - "lastname": "Junior Sambia", - "position": 3, - "quotation": 11, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Ibrahim", - "id": "player_197022", - "lastname": "Cisse", - "position": 2, - "quotation": 4, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Eiji", - "id": "player_19739", - "lastname": "Kawashima", - "position": 1, - "quotation": 3, - "teamid": "153", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Cédric", - "id": "player_199375", - "lastname": "Yambéré", - "position": 2, - "quotation": 11, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_199409", - "lastname": "Thiago Maia", - "position": 3, - "quotation": 14, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Paris", - "firstname": "Alec", - "id": "player_199663", - "lastname": "Georgen", - "position": 2, - "quotation": 1, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Jean-Victor", - "id": "player_199666", - "lastname": "Makengo", - "position": 3, - "quotation": 9, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Maxime", - "id": "player_199669", - "lastname": "Pelican", - "position": 4, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Firmin Ndombe", - "id": "player_199734", - "lastname": "Mubele", - "position": 4, - "quotation": 7, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Florian", - "id": "player_200666", - "lastname": "Miguel", - "position": 2, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_200722", - "lastname": "Walongwa", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Alexis", - "id": "player_201392", - "lastname": "Blin", - "position": 3, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_202520", - "lastname": "Pape Cheikh", - "position": 3, - "quotation": 7, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Angelo", - "id": "player_202857", - "lastname": "Fulgini", - "position": 3, - "quotation": 13, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Frederic", - "id": "player_203368", - "lastname": "Guilbert", - "position": 2, - "quotation": 10, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Olivier", - "id": "player_204120", - "lastname": "Boscagli", - "position": 2, - "quotation": 6, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": null, - "id": "player_20468", - "lastname": "Lass Diarra", - "position": 3, - "quotation": 3, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Bordeaux", - "firstname": "Gaetan", - "id": "player_204715", - "lastname": "Poussin", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Thomas", - "id": "player_204719", - "lastname": "Basila", - "position": 2, - "quotation": 1, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Hakim", - "id": "player_204741", - "lastname": "El Mokkedem", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Yassin", - "id": "player_204742", - "lastname": "Benrahou", - "position": 3, - "quotation": 1, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Mihailo", - "id": "player_206340", - "lastname": "Ristic", - "position": 2, - "quotation": 7, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Nicolas", - "id": "player_206935", - "lastname": "Lemaitre", - "position": 1, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Sergi", - "id": "player_207756", - "lastname": "Palencia", - "position": 2, - "quotation": 8, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_208134", - "lastname": "Escales", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Toulouse", - "firstname": "Loic", - "id": "player_208555", - "lastname": "Bessile", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Nice", - "firstname": "Myziane", - "id": "player_208556", - "lastname": "Maolida", - "position": 4, - "quotation": 8, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Stanley", - "id": "player_208559", - "lastname": "N'Soki", - "position": 3, - "quotation": 6, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Hicham", - "id": "player_208560", - "lastname": "Mahou", - "position": 3, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Imad", - "id": "player_208567", - "lastname": "Faraj", - "position": 3, - "quotation": 2, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Jad", - "id": "player_208569", - "lastname": "Mouaddib", - "position": 3, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Monaco", - "firstname": "Jonathan", - "id": "player_209035", - "lastname": "Panzo", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Dimitry", - "id": "player_209218", - "lastname": "Bertaud", - "position": 1, - "quotation": 7, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Pietro", - "id": "player_209335", - "lastname": "Pellegri", - "position": 4, - "quotation": 5, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Ibrahim", - "id": "player_210462", - "lastname": "Sangaré", - "position": 3, - "quotation": 12, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Nayef", - "id": "player_210494", - "lastname": "Aguerd", - "position": 2, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Adam", - "id": "player_210932", - "lastname": "Jakubech", - "position": 1, - "quotation": 2, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Toma", - "id": "player_212851", - "lastname": "Basic", - "position": 3, - "quotation": 7, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Félix", - "id": "player_213200", - "lastname": "Eboa Eboa", - "position": 2, - "quotation": 11, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Ludovic", - "id": "player_213940", - "lastname": "Blas", - "position": 3, - "quotation": 9, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Maxime", - "id": "player_213965", - "lastname": "Lopez", - "position": 3, - "quotation": 15, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Antonio", - "id": "player_214296", - "lastname": "Mance", - "position": 4, - "quotation": 8, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": null, - "id": "player_214473", - "lastname": "Faitout Maouassa", - "position": 3, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Enock", - "id": "player_215046", - "lastname": "Kwateng", - "position": 2, - "quotation": 11, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Alexandre", - "id": "player_216610", - "lastname": "Olliero", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Aly", - "id": "player_217319", - "lastname": "Ndom", - "position": 3, - "quotation": 7, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Kelvin", - "id": "player_217596", - "lastname": "Amian", - "position": 2, - "quotation": 12, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Nicolas", - "id": "player_217993", - "lastname": "Janvier", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Loic", - "id": "player_218389", - "lastname": "Badiashile", - "position": 1, - "quotation": 2, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": null, - "id": "player_218524", - "lastname": "Jules Keita", - "position": 4, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Killian", - "id": "player_219079", - "lastname": "Sanson", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Batista", - "id": "player_219286", - "lastname": "Mendy", - "position": 2, - "quotation": 2, - "teamid": "430", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Alexis", - "id": "player_219289", - "lastname": "Flips", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Bordeaux", - "firstname": "Aurelien", - "id": "player_219292", - "lastname": "Tchouameni", - "position": 3, - "quotation": 7, - "teamid": "140", - "ultraPosition": 31 - }, - { - "club": "Lyon", - "firstname": "Maxence", - "id": "player_219296", - "lastname": "Caqueret", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 31 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_219873", - "lastname": "Del Castillo", - "position": 3, - "quotation": 7, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Nantes", - "firstname": "Quentin", - "id": "player_220110", - "lastname": "Braat", - "position": 1, - "quotation": 1, - "teamid": "430", - "ultraPosition": 10 - }, - { - "club": "Reims", - "firstname": "Axel", - "id": "player_220362", - "lastname": "Disasi", - "position": 2, - "quotation": 2, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Malik", - "id": "player_220943", - "lastname": "Tchokounte", - "position": 4, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Bakaye", - "id": "player_220960", - "lastname": "Dibassy", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Cheick", - "id": "player_223393", - "lastname": "Timite", - "position": 3, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_224077", - "lastname": "Elhadji Diaw", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Lyon", - "firstname": "Reo", - "id": "player_225268", - "lastname": "Griffiths", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Boubakary", - "id": "player_225902", - "lastname": "Soumare", - "position": 3, - "quotation": 10, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Wilfried", - "id": "player_225905", - "lastname": "Kanga", - "position": 4, - "quotation": 6, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Sofiane", - "id": "player_225997", - "lastname": "Alakouch", - "position": 2, - "quotation": 11, - "teamid": "2336", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Jan", - "id": "player_226183", - "lastname": "Repas", - "position": 3, - "quotation": 2, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Samuel", - "id": "player_226194", - "lastname": "Grandsir", - "position": 4, - "quotation": 7, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_226597", - "lastname": "Gabriel", - "position": 2, - "quotation": 4, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Rafik", - "id": "player_226949", - "lastname": "Guitane", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jordi", - "id": "player_227163", - "lastname": "Mboula", - "position": 4, - "quotation": 2, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Valentin", - "id": "player_228170", - "lastname": "Rosier", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Reims", - "firstname": "Edouard", - "id": "player_228286", - "lastname": "Mendy", - "position": 1, - "quotation": 26, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Jordan", - "id": "player_228289", - "lastname": "Lefort", - "position": 2, - "quotation": 9, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Oualid", - "id": "player_228291", - "lastname": "El Hajjam", - "position": 2, - "quotation": 3, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Guingamp", - "firstname": "Guessouma", - "id": "player_228292", - "lastname": "Fofana", - "position": 3, - "quotation": 4, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Ihsan", - "id": "player_228321", - "lastname": "Sacko", - "position": 3, - "quotation": 5, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Kouakou", - "id": "player_228345", - "lastname": "Koffi", - "position": 1, - "quotation": 3, - "teamid": "429", - "ultraPosition": 10 - }, - { - "club": "Montpellier", - "firstname": "Keagan", - "id": "player_228361", - "lastname": "Dolly", - "position": 3, - "quotation": 4, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Gauthier", - "id": "player_230444", - "lastname": "Banaziak", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Martin", - "id": "player_232176", - "lastname": "Terrier", - "position": 3, - "quotation": 9, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Patrick", - "id": "player_232197", - "lastname": "Burner", - "position": 2, - "quotation": 6, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_232240", - "lastname": "Caci", - "position": 3, - "quotation": 10, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Mehdi", - "id": "player_232252", - "lastname": "Merghem", - "position": 3, - "quotation": 3, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Jordy", - "id": "player_234458", - "lastname": "Gaspar", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Julien", - "id": "player_240131", - "lastname": "Serrano", - "position": 2, - "quotation": 5, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Safwan", - "id": "player_240132", - "lastname": "Mbae", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": "Moussa", - "id": "player_240149", - "lastname": "Sylla", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Saint Etienne", - "firstname": "Stefan", - "id": "player_242878", - "lastname": "Bajic", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Monaco", - "firstname": "Benoit", - "id": "player_242880", - "lastname": "Badiashile Mukinayi", - "position": 2, - "quotation": 9, - "teamid": "146", - "ultraPosition": 20 - }, - { - "club": "Toulouse", - "firstname": "Bafode", - "id": "player_242882", - "lastname": "Diakite", - "position": 2, - "quotation": 6, - "teamid": "427", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_242887", - "lastname": "Kephren Thuram", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Abdoulaye", - "id": "player_242890", - "lastname": "Dabo", - "position": 3, - "quotation": 3, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Yann", - "id": "player_242893", - "lastname": "Gboho", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Adil", - "id": "player_242896", - "lastname": "Taoui", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Moussa", - "id": "player_243557", - "lastname": "Diaby", - "position": 4, - "quotation": 7, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Yanis", - "id": "player_243996", - "lastname": "Henin", - "position": 1, - "quotation": 1, - "teamid": "146", - "ultraPosition": 10 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_244136", - "lastname": "Lionel Dias", - "position": 1, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Zaydou", - "id": "player_244182", - "lastname": "Youssouf", - "position": 3, - "quotation": 3, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Ghislain", - "id": "player_244642", - "lastname": "Konan", - "position": 2, - "quotation": 5, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Namakoro", - "id": "player_244754", - "lastname": "Diallo", - "position": 2, - "quotation": 1, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "James", - "id": "player_244842", - "lastname": "Lea Siliki", - "position": 3, - "quotation": 10, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Moataz", - "id": "player_245491", - "lastname": "Zemzemi", - "position": 3, - "quotation": 3, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Bassem", - "id": "player_245496", - "lastname": "Srarfi", - "position": 3, - "quotation": 9, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Hakim", - "id": "player_245715", - "lastname": "Ouro-Sama", - "position": 2, - "quotation": 1, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Bryan", - "id": "player_245750", - "lastname": "Passi", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_245824", - "lastname": "Carlos Vinicius", - "position": 4, - "quotation": 8, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Saint Etienne", - "firstname": "Kenny", - "id": "player_245915", - "lastname": "Rocha Santos", - "position": 3, - "quotation": 3, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Saint Etienne", - "firstname": "Mickael", - "id": "player_246429", - "lastname": "Panos", - "position": 2, - "quotation": 3, - "teamid": "152", - "ultraPosition": 21 - }, - { - "club": "Dijon", - "firstname": "Sory", - "id": "player_246703", - "lastname": "Kaba", - "position": 4, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Anthony", - "id": "player_247385", - "lastname": "Racioppi", - "position": 1, - "quotation": 1, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Amine", - "id": "player_247400", - "lastname": "Gouiri", - "position": 4, - "quotation": 2, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Marseille", - "firstname": "Romain", - "id": "player_247439", - "lastname": "Cagnon", - "position": 1, - "quotation": 1, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Randal", - "id": "player_247693", - "lastname": "Kolo Muani", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Strasbourg", - "firstname": "Duplexe Tchamba", - "id": "player_250510", - "lastname": "Bangou", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Nîmes", - "firstname": "Sami", - "id": "player_250588", - "lastname": "Ben Amar", - "position": 4, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Mathieu", - "id": "player_26896", - "lastname": "Bodmer", - "position": 2, - "quotation": 12, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Yohann", - "id": "player_37769", - "lastname": "Pelé", - "position": 1, - "quotation": 8, - "teamid": "144", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Ludovic", - "id": "player_37776", - "lastname": "Baal", - "position": 2, - "quotation": 2, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Jérémy", - "id": "player_37832", - "lastname": "Morel", - "position": 2, - "quotation": 7, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Romain", - "id": "player_37938", - "lastname": "Danzé", - "position": 2, - "quotation": 2, - "teamid": "150", - "ultraPosition": 21 - }, - { - "club": "Caen", - "firstname": "Mouhamadou", - "id": "player_37995", - "lastname": "Dabo", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Christophe", - "id": "player_38265", - "lastname": "Jallet", - "position": 2, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": null, - "id": "player_39294", - "lastname": "Rolando", - "position": 2, - "quotation": 10, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Erik", - "id": "player_39487", - "lastname": "Pieters", - "position": 2, - "quotation": 10, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Nîmes", - "firstname": "Moustapha", - "id": "player_39905", - "lastname": "Diallo", - "position": 3, - "quotation": 4, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Denis", - "id": "player_40511", - "lastname": "Petric", - "position": 1, - "quotation": 1, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Prince", - "id": "player_40808", - "lastname": "Oniangué", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Jérémy", - "id": "player_40833", - "lastname": "Pied", - "position": 2, - "quotation": 13, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Adil", - "id": "player_41795", - "lastname": "Rami", - "position": 2, - "quotation": 10, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_422159", - "lastname": "Fernando Costanza", - "position": 2, - "quotation": 3, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Teddy", - "id": "player_422163", - "lastname": "Okou", - "position": 4, - "quotation": 1, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": "Kouadio", - "id": "player_422230", - "lastname": "Dabila", - "position": 2, - "quotation": 7, - "teamid": "429", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_422250", - "lastname": "Piechocki", - "position": 3, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Matteo", - "id": "player_423870", - "lastname": "Ahlinvi", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Alexander", - "id": "player_42518", - "lastname": "Kacaniklic", - "position": 3, - "quotation": 4, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Eric Maxim", - "id": "player_42564", - "lastname": "Choupo-Moting", - "position": 3, - "quotation": 8, - "teamid": "149", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Nicolas", - "id": "player_428989", - "lastname": "Cozza", - "position": 2, - "quotation": 6, - "teamid": "147", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": "Chahreddine", - "id": "player_429235", - "lastname": "Boukholda", - "position": 3, - "quotation": 3, - "teamid": "429", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Moussa", - "id": "player_431647", - "lastname": "Bana", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Oumar", - "id": "player_432649", - "lastname": "Solet", - "position": 2, - "quotation": 1, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Sambou", - "id": "player_432662", - "lastname": "Sissoko", - "position": 2, - "quotation": 6, - "teamid": "1423", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Kévin", - "id": "player_433640", - "lastname": "Zohi", - "position": 3, - "quotation": 9, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Scotty", - "id": "player_433666", - "lastname": "Sadzoute", - "position": 4, - "quotation": 1, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Lucas", - "id": "player_433731", - "lastname": "Buades", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Ignatius", - "id": "player_433771", - "lastname": "Ganago", - "position": 4, - "quotation": 11, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Over", - "id": "player_433830", - "lastname": "Mandanda", - "position": 1, - "quotation": 1, - "teamid": "140", - "ultraPosition": 10 - }, - { - "club": "Marseille", - "firstname": "Yusuf", - "id": "player_434060", - "lastname": "Sari", - "position": 4, - "quotation": 1, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_434399", - "lastname": "Reinildo", - "position": 2, - "quotation": 4, - "teamid": "429", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Gerzino", - "id": "player_435731", - "lastname": "Nyamsi", - "position": 2, - "quotation": 6, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Ismael", - "id": "player_436644", - "lastname": "Aaneba", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Jessy", - "id": "player_436658", - "lastname": "Deminguet", - "position": 3, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Lille", - "firstname": "Benjamin", - "id": "player_436662", - "lastname": "Verite", - "position": 3, - "quotation": 1, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Andy", - "id": "player_437501", - "lastname": "Pelmard", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Yacine", - "id": "player_437504", - "lastname": "Adli", - "position": 3, - "quotation": 1, - "teamid": "140", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Sebastien", - "id": "player_437721", - "lastname": "Cibois", - "position": 1, - "quotation": 2, - "teamid": "149", - "ultraPosition": 10 - }, - { - "club": "Paris", - "firstname": "Virgiliu", - "id": "player_437724", - "lastname": "Postolachi", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Giulian", - "id": "player_437753", - "lastname": "Biancone", - "position": 2, - "quotation": 1, - "teamid": "146", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Gobe", - "id": "player_437754", - "lastname": "Gouano", - "position": 4, - "quotation": 1, - "teamid": "146", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": "Han-Noah", - "id": "player_437757", - "lastname": "Massengo", - "position": 3, - "quotation": 5, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Driss", - "id": "player_437950", - "lastname": "Khalid", - "position": 4, - "quotation": 1, - "teamid": "427", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Lenny", - "id": "player_438015", - "lastname": "Pintor", - "position": 4, - "quotation": 4, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_438041", - "lastname": "Mathurin Sakho", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Bordeaux", - "firstname": "Thomas", - "id": "player_439205", - "lastname": "Carrique", - "position": 2, - "quotation": 2, - "teamid": "140", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Azzeddine", - "id": "player_439364", - "lastname": "Toufiqui", - "position": 3, - "quotation": 1, - "teamid": "149", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Yoel", - "id": "player_439711", - "lastname": "Armougom", - "position": 2, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 21 - }, - { - "club": "Nice", - "firstname": "Yannis", - "id": "player_440058", - "lastname": "Clementia", - "position": 1, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Arnold", - "id": "player_44082", - "lastname": "Bouka Moutou", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Romain", - "id": "player_441240", - "lastname": "Faivre", - "position": 3, - "quotation": 3, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Yannick", - "id": "player_44138", - "lastname": "Cahuzac", - "position": 3, - "quotation": 9, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Mohamed Lamine", - "id": "player_441575", - "lastname": "Diaby", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Fethi", - "id": "player_44199", - "lastname": "Harek", - "position": 2, - "quotation": 4, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Mahdi", - "id": "player_442264", - "lastname": "Camara", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Kader", - "id": "player_443202", - "lastname": "Bamba", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Caen", - "firstname": "Romain", - "id": "player_44357", - "lastname": "Genevois", - "position": 2, - "quotation": 3, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Dylan", - "id": "player_444465", - "lastname": "Chambost", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Johann", - "id": "player_44475", - "lastname": "Carrasso", - "position": 1, - "quotation": 3, - "teamid": "1423", - "ultraPosition": 10 - }, - { - "club": "Lyon", - "firstname": "Mapou", - "id": "player_44488", - "lastname": "Yanga-Mbiwa", - "position": 2, - "quotation": 3, - "teamid": "143", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Yannis", - "id": "player_446006", - "lastname": "Ammour", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Farid", - "id": "player_447389", - "lastname": "El Melali", - "position": 3, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Rayan", - "id": "player_448514", - "lastname": "Ait Nouri", - "position": 2, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Armand", - "id": "player_449431", - "lastname": "Lauriente", - "position": 3, - "quotation": 4, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Enzo", - "id": "player_449718", - "lastname": "Loiodice", - "position": 3, - "quotation": 4, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": "Matthieu", - "id": "player_45032", - "lastname": "Dreyer", - "position": 1, - "quotation": 3, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Lucas", - "id": "player_45084", - "lastname": "Deaux", - "position": 3, - "quotation": 7, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Theo", - "id": "player_451005", - "lastname": "Barbet", - "position": 2, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Senou", - "id": "player_454964", - "lastname": "Coulibaly", - "position": 2, - "quotation": 3, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Clement", - "id": "player_456193", - "lastname": "Vidal", - "position": 2, - "quotation": 1, - "teamid": "147", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Kylian", - "id": "player_456194", - "lastname": "Kaiboue", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Montpellier", - "firstname": "Amir", - "id": "player_456195", - "lastname": "Adouyev", - "position": 3, - "quotation": 1, - "teamid": "147", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Sacha", - "id": "player_456299", - "lastname": "Marasovic", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Lucas", - "id": "player_456300", - "lastname": "Perrin", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Levi", - "id": "player_456355", - "lastname": "Ntumba", - "position": 1, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 10 - }, - { - "club": "Rennes", - "firstname": "Isaac", - "id": "player_456857", - "lastname": "Matondo", - "position": 4, - "quotation": 1, - "teamid": "150", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Thomas", - "id": "player_457225", - "lastname": "Callens", - "position": 1, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Bordeaux", - "firstname": "Ibrahim", - "id": "player_457234", - "lastname": "Diarra", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Michael", - "id": "player_457235", - "lastname": "Nilor", - "position": 4, - "quotation": 1, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Paris", - "firstname": "Colin", - "id": "player_458250", - "lastname": "Dagba", - "position": 2, - "quotation": 6, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Paris", - "firstname": "Alexandre", - "id": "player_458251", - "lastname": "Fressange", - "position": 4, - "quotation": 1, - "teamid": "149", - "ultraPosition": 40 - }, - { - "club": "Lyon", - "firstname": "Yassin", - "id": "player_459560", - "lastname": "Fekir", - "position": 4, - "quotation": 1, - "teamid": "143", - "ultraPosition": 40 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_460265", - "lastname": "Robert Navarro", - "position": 3, - "quotation": 1, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Monaco", - "firstname": "Sofiane", - "id": "player_460267", - "lastname": "Diop", - "position": 3, - "quotation": 7, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Mathieu", - "id": "player_461384", - "lastname": "Goncalves", - "position": 2, - "quotation": 1, - "teamid": "427", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_461397", - "lastname": "Chabrolle", - "position": 4, - "quotation": 1, - "teamid": "144", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Valentin", - "id": "player_461415", - "lastname": "Gendrey", - "position": 2, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 21 - }, - { - "club": "Amiens", - "firstname": "Jean-Claude", - "id": "player_461428", - "lastname": "Ngando", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Gaoussou", - "id": "player_461433", - "lastname": "Traore", - "position": 3, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Martin", - "id": "player_461439", - "lastname": "Gneba", - "position": 4, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Amiens", - "firstname": "Antonin", - "id": "player_461442", - "lastname": "Gauducheau", - "position": 1, - "quotation": 1, - "teamid": "1430", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Djegui", - "id": "player_461827", - "lastname": "Koita", - "position": 2, - "quotation": 4, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Lille", - "firstname": "Arton", - "id": "player_461833", - "lastname": "Zekaj", - "position": 3, - "quotation": 3, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Patrick", - "id": "player_461840", - "lastname": "Bahanack", - "position": 2, - "quotation": 1, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Youssouf", - "id": "player_461913", - "lastname": "Fofana", - "position": 3, - "quotation": 11, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Makhtar", - "id": "player_462425", - "lastname": "Gueye", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": "Georginio", - "id": "player_463067", - "lastname": "Rutter", - "position": 3, - "quotation": 1, - "teamid": "150", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Virgile", - "id": "player_464192", - "lastname": "Pinson", - "position": 4, - "quotation": 3, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Guingamp", - "firstname": "Yohan", - "id": "player_464193", - "lastname": "Bilingi", - "position": 2, - "quotation": 2, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": null, - "id": "player_46483", - "lastname": "Adrien Silva", - "position": 3, - "quotation": 7, - "teamid": "146", - "ultraPosition": 31 - }, - { - "club": "Saint Etienne", - "firstname": "Théo", - "id": "player_465057", - "lastname": "Vermot", - "position": 1, - "quotation": 1, - "teamid": "152", - "ultraPosition": 10 - }, - { - "club": "Saint Etienne", - "firstname": "Bilal", - "id": "player_465151", - "lastname": "Benkhedim", - "position": 3, - "quotation": 1, - "teamid": "152", - "ultraPosition": 32 - }, - { - "club": "Angers", - "firstname": "Anthony", - "id": "player_465299", - "lastname": "Mancini", - "position": 3, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Abdallah", - "id": "player_467625", - "lastname": "Ali Mohamed", - "position": 2, - "quotation": 1, - "teamid": "144", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": "Ousseynou", - "id": "player_468430", - "lastname": "Ndiaye", - "position": 3, - "quotation": 1, - "teamid": "143", - "ultraPosition": 32 - }, - { - "club": "Reims", - "firstname": "Boulaye", - "id": "player_468488", - "lastname": "Dia", - "position": 3, - "quotation": 9, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Toulouse", - "firstname": "Kalidou", - "id": "player_468489", - "lastname": "Sidibe", - "position": 3, - "quotation": 5, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Matthias", - "id": "player_468490", - "lastname": "Phaeton", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Mehdi", - "id": "player_468496", - "lastname": "Boudjemaa", - "position": 3, - "quotation": 1, - "teamid": "428", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Thody Elie", - "id": "player_469192", - "lastname": "Youan", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Eddy", - "id": "player_469204", - "lastname": "Sylvestre", - "position": 3, - "quotation": 7, - "teamid": "1395", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Yanis", - "id": "player_469205", - "lastname": "Hamache", - "position": 2, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Kevin", - "id": "player_469318", - "lastname": "Mouanga", - "position": 2, - "quotation": 1, - "teamid": "2128", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Steven", - "id": "player_469319", - "lastname": "Ako", - "position": 2, - "quotation": 1, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Toulouse", - "firstname": "Nathan", - "id": "player_469323", - "lastname": "N'Goumou Minpol", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Sory", - "id": "player_471212", - "lastname": "Doumbouya", - "position": 4, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Evens", - "id": "player_471213", - "lastname": "Joseph", - "position": 3, - "quotation": 8, - "teamid": "1028", - "ultraPosition": 32 - }, - { - "club": "Marseille", - "firstname": "Alexandre", - "id": "player_471437", - "lastname": "Philiponeau", - "position": 3, - "quotation": 1, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": "Imran", - "id": "player_471471", - "lastname": "Louza", - "position": 3, - "quotation": 1, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Amiens", - "firstname": "Stanley", - "id": "player_471841", - "lastname": "Segarel", - "position": 4, - "quotation": 4, - "teamid": "1430", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Matis", - "id": "player_471924", - "lastname": "Carvalho", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Caen", - "firstname": "Younn", - "id": "player_472187", - "lastname": "Zahary", - "position": 2, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Saint Etienne", - "firstname": "Charles Nathan", - "id": "player_472778", - "lastname": "Abi", - "position": 4, - "quotation": 2, - "teamid": "152", - "ultraPosition": 40 - }, - { - "club": "Saint Etienne", - "firstname": "Marvin", - "id": "player_472779", - "lastname": "Tshibuabua", - "position": 2, - "quotation": 1, - "teamid": "152", - "ultraPosition": 20 - }, - { - "club": "Dijon", - "firstname": "Theo", - "id": "player_473007", - "lastname": "Godard", - "position": 4, - "quotation": 1, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Nice", - "firstname": "Jawad", - "id": "player_474286", - "lastname": "Drame", - "position": 3, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Lille", - "firstname": "Cheikh", - "id": "player_474354", - "lastname": "Niasse", - "position": 2, - "quotation": 1, - "teamid": "429", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Mamoudoou", - "id": "player_475067", - "lastname": "Karamoko", - "position": 4, - "quotation": 1, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Leon", - "id": "player_475068", - "lastname": "Valentin", - "position": 2, - "quotation": 1, - "teamid": "153", - "ultraPosition": 20 - }, - { - "club": "Rennes", - "firstname": "Eduardo", - "id": "player_475561", - "lastname": "Camavinga", - "position": 3, - "quotation": 3, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "Kouadio", - "id": "player_475767", - "lastname": "Kone", - "position": 3, - "quotation": 1, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Brice", - "id": "player_476790", - "lastname": "Tutu", - "position": 4, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 40 - }, - { - "club": "Caen", - "firstname": "Godson", - "id": "player_476791", - "lastname": "Kyeremeh", - "position": 3, - "quotation": 1, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Nice", - "firstname": "Paul", - "id": "player_477085", - "lastname": "Wade", - "position": 3, - "quotation": 1, - "teamid": "1395", - "ultraPosition": 31 - }, - { - "club": "Toulouse", - "firstname": "John", - "id": "player_48897", - "lastname": "Bostock", - "position": 3, - "quotation": 7, - "teamid": "427", - "ultraPosition": 31 - }, - { - "club": "Marseille", - "firstname": "Tomas", - "id": "player_49181", - "lastname": "Hubocan", - "position": 2, - "quotation": 3, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Amiens", - "firstname": "Khaled", - "id": "player_49502", - "lastname": "Adénon", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 20 - }, - { - "club": "Caen", - "firstname": "Emmanuel", - "id": "player_50326", - "lastname": "Imorou", - "position": 2, - "quotation": 6, - "teamid": "1028", - "ultraPosition": 20 - }, - { - "club": "Guingamp", - "firstname": "Ronny", - "id": "player_50996", - "lastname": "Rodelin", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Pierrick", - "id": "player_51394", - "lastname": "Valdivia", - "position": 3, - "quotation": 3, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Reims", - "firstname": "Marvin", - "id": "player_51634", - "lastname": "Martin", - "position": 3, - "quotation": 8, - "teamid": "1423", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Jakob", - "id": "player_51850", - "lastname": "Johansson", - "position": 3, - "quotation": 7, - "teamid": "150", - "ultraPosition": 31 - }, - { - "club": "Nantes", - "firstname": null, - "id": "player_54771", - "lastname": "Fabio", - "position": 2, - "quotation": 9, - "teamid": "430", - "ultraPosition": 21 - }, - { - "club": "Lyon", - "firstname": null, - "id": "player_54772", - "lastname": "Rafael", - "position": 2, - "quotation": 9, - "teamid": "143", - "ultraPosition": 21 - }, - { - "club": "Monaco", - "firstname": "Nacer", - "id": "player_54908", - "lastname": "Chadli", - "position": 3, - "quotation": 6, - "teamid": "146", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Franck", - "id": "player_55313", - "lastname": "Tabanou", - "position": 2, - "quotation": 6, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Marseille", - "firstname": "Grégory", - "id": "player_56995", - "lastname": "Sertic", - "position": 3, - "quotation": 3, - "teamid": "144", - "ultraPosition": 31 - }, - { - "club": "Angers", - "firstname": "Yoann", - "id": "player_58309", - "lastname": "Andreu", - "position": 2, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 21 - }, - { - "club": "Lille", - "firstname": null, - "id": "player_58476", - "lastname": "Rui Fonte", - "position": 4, - "quotation": 5, - "teamid": "429", - "ultraPosition": 40 - }, - { - "club": "Reims", - "firstname": "Thomas", - "id": "player_58875", - "lastname": "Fontaine", - "position": 2, - "quotation": 7, - "teamid": "1423", - "ultraPosition": 20 - }, - { - "club": "Lyon", - "firstname": "Mathieu", - "id": "player_59956", - "lastname": "Gorgelin", - "position": 1, - "quotation": 6, - "teamid": "143", - "ultraPosition": 10 - }, - { - "club": "Nantes", - "firstname": "Rene", - "id": "player_60070", - "lastname": "Krhin", - "position": 3, - "quotation": 8, - "teamid": "430", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Erwin", - "id": "player_60189", - "lastname": "Zelazny", - "position": 1, - "quotation": 5, - "teamid": "1028", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": "Karl-Johan", - "id": "player_61741", - "lastname": "Johnsson", - "position": 1, - "quotation": 6, - "teamid": "428", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": null, - "id": "player_62128", - "lastname": "Cristian", - "position": 4, - "quotation": 9, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Strasbourg", - "firstname": "Anthony", - "id": "player_67272", - "lastname": "Gonçalves", - "position": 3, - "quotation": 5, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Yeni", - "id": "player_68157", - "lastname": "N'Gbakoto", - "position": 4, - "quotation": 7, - "teamid": "428", - "ultraPosition": 40 - }, - { - "club": "Montpellier", - "firstname": "Petar", - "id": "player_68862", - "lastname": "Skuletic", - "position": 4, - "quotation": 12, - "teamid": "147", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Igor", - "id": "player_71797", - "lastname": "Lewczuk", - "position": 2, - "quotation": 5, - "teamid": "140", - "ultraPosition": 20 - }, - { - "club": "Montpellier", - "firstname": "Paul", - "id": "player_72177", - "lastname": "Lasne", - "position": 3, - "quotation": 13, - "teamid": "147", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Benjamin", - "id": "player_73667", - "lastname": "Jeannot", - "position": 4, - "quotation": 6, - "teamid": "2130", - "ultraPosition": 40 - }, - { - "club": "Bordeaux", - "firstname": "Nicolas", - "id": "player_73879", - "lastname": "de Preville", - "position": 4, - "quotation": 5, - "teamid": "140", - "ultraPosition": 40 - }, - { - "club": "Toulouse", - "firstname": "Marc", - "id": "player_74299", - "lastname": "Vidal", - "position": 1, - "quotation": 1, - "teamid": "427", - "ultraPosition": 10 - }, - { - "club": "Guingamp", - "firstname": null, - "id": "player_76008", - "lastname": "Johan Larsson", - "position": 2, - "quotation": 7, - "teamid": "428", - "ultraPosition": 21 - }, - { - "club": "Rennes", - "firstname": "Abdoulaye", - "id": "player_79625", - "lastname": "Diallo", - "position": 1, - "quotation": 6, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Strasbourg", - "firstname": "Idriss", - "id": "player_79917", - "lastname": "Saadi", - "position": 4, - "quotation": 5, - "teamid": "153", - "ultraPosition": 40 - }, - { - "club": "Rennes", - "firstname": null, - "id": "player_80357", - "lastname": "Mexer", - "position": 2, - "quotation": 14, - "teamid": "150", - "ultraPosition": 20 - }, - { - "club": "Marseille", - "firstname": "Aymen", - "id": "player_80582", - "lastname": "Abdennour", - "position": 2, - "quotation": 4, - "teamid": "144", - "ultraPosition": 20 - }, - { - "club": "Strasbourg", - "firstname": "Jeremy", - "id": "player_80904", - "lastname": "Grimm", - "position": 3, - "quotation": 5, - "teamid": "153", - "ultraPosition": 31 - }, - { - "club": "Guingamp", - "firstname": "Papy", - "id": "player_80935", - "lastname": "Djilobodji", - "position": 2, - "quotation": 7, - "teamid": "428", - "ultraPosition": 20 - }, - { - "club": "Angers", - "firstname": "Férébory", - "id": "player_81118", - "lastname": "Doré", - "position": 4, - "quotation": 2, - "teamid": "2128", - "ultraPosition": 40 - }, - { - "club": "Nîmes", - "firstname": "Panagiotis", - "id": "player_82642", - "lastname": "Vlachodimos", - "position": 3, - "quotation": 3, - "teamid": "2336", - "ultraPosition": 32 - }, - { - "club": "Nice", - "firstname": "Mickael", - "id": "player_83279", - "lastname": "Le Bihan", - "position": 4, - "quotation": 4, - "teamid": "1395", - "ultraPosition": 40 - }, - { - "club": "Nantes", - "firstname": "Kolbeinn", - "id": "player_83758", - "lastname": "Sigthorsson", - "position": 4, - "quotation": 1, - "teamid": "430", - "ultraPosition": 40 - }, - { - "club": "Angers", - "firstname": "Vincent", - "id": "player_85548", - "lastname": "Pajot", - "position": 3, - "quotation": 6, - "teamid": "2128", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Wesley", - "id": "player_85565", - "lastname": "Lautoa", - "position": 2, - "quotation": 12, - "teamid": "2130", - "ultraPosition": 20 - }, - { - "club": "Reims", - "firstname": "Pablo", - "id": "player_85659", - "lastname": "Chavarria", - "position": 4, - "quotation": 11, - "teamid": "1423", - "ultraPosition": 40 - }, - { - "club": "Dijon", - "firstname": "Romain", - "id": "player_86158", - "lastname": "Amalfitano", - "position": 3, - "quotation": 9, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Strasbourg", - "firstname": "Lionel", - "id": "player_86413", - "lastname": "Carole", - "position": 2, - "quotation": 7, - "teamid": "153", - "ultraPosition": 21 - }, - { - "club": "Strasbourg", - "firstname": "Benjamin", - "id": "player_86446", - "lastname": "Corgnet", - "position": 3, - "quotation": 8, - "teamid": "153", - "ultraPosition": 32 - }, - { - "club": "Montpellier", - "firstname": "Jonathan", - "id": "player_86598", - "lastname": "Ligali", - "position": 1, - "quotation": 1, - "teamid": "147", - "ultraPosition": 10 - }, - { - "club": "Angers", - "firstname": "Zacharie", - "id": "player_86811", - "lastname": "Boucher", - "position": 1, - "quotation": 5, - "teamid": "2128", - "ultraPosition": 10 - }, - { - "club": "Dijon", - "firstname": "Florent", - "id": "player_8747", - "lastname": "Balmont", - "position": 3, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Herve", - "id": "player_88036", - "lastname": "Lybohy", - "position": 2, - "quotation": 6, - "teamid": "2336", - "ultraPosition": 20 - }, - { - "club": "Nantes", - "firstname": "Anthony", - "id": "player_88931", - "lastname": "Limbombe", - "position": 3, - "quotation": 11, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Guingamp", - "firstname": "Nicolas", - "id": "player_89038", - "lastname": "Benezet", - "position": 3, - "quotation": 8, - "teamid": "428", - "ultraPosition": 32 - }, - { - "club": "Paris", - "firstname": "Layvin", - "id": "player_89068", - "lastname": "Kurzawa", - "position": 2, - "quotation": 8, - "teamid": "149", - "ultraPosition": 21 - }, - { - "club": "Nantes", - "firstname": "Valentin", - "id": "player_91070", - "lastname": "Eysseric", - "position": 3, - "quotation": 8, - "teamid": "430", - "ultraPosition": 32 - }, - { - "club": "Dijon", - "firstname": "Mickaël", - "id": "player_92559", - "lastname": "Alphonse", - "position": 2, - "quotation": 7, - "teamid": "2130", - "ultraPosition": 21 - }, - { - "club": "Angers", - "firstname": "Loïc", - "id": "player_93498", - "lastname": "Puyo", - "position": 3, - "quotation": 3, - "teamid": "2128", - "ultraPosition": 32 - }, - { - "club": "Rennes", - "firstname": "Tomas", - "id": "player_94151", - "lastname": "Koubek", - "position": 1, - "quotation": 15, - "teamid": "150", - "ultraPosition": 10 - }, - { - "club": "Amiens", - "firstname": "Thomas", - "id": "player_96616", - "lastname": "Monconduit", - "position": 3, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 31 - }, - { - "club": "Nîmes", - "firstname": "Abdelmalik", - "id": "player_97442", - "lastname": "Hsissane", - "position": 3, - "quotation": 1, - "teamid": "2336", - "ultraPosition": 31 - }, - { - "club": "Caen", - "firstname": "Ismael", - "id": "player_97443", - "lastname": "Diomande", - "position": 3, - "quotation": 9, - "teamid": "1028", - "ultraPosition": 31 - }, - { - "club": "Dijon", - "firstname": "Mehdi", - "id": "player_98746", - "lastname": "Abeid", - "position": 3, - "quotation": 14, - "teamid": "2130", - "ultraPosition": 31 - }, - { - "club": "Amiens", - "firstname": null, - "id": "player_98798", - "lastname": "Prince", - "position": 2, - "quotation": 11, - "teamid": "1430", - "ultraPosition": 20 - } - ], - "userPlayers": [ - { - "club": "Marseille", - "firstname": "Florian", - "id": "player_95434", - "lastname": "Thauvin", - "position": 3, - "quotation": 29, - "teamid": "144", - "ultraPosition": 32, - "pricePaid": 55, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Strasbourg", - "firstname": "Kenny", - "id": "player_92527", - "lastname": "Lala", - "position": 2, - "quotation": 24, - "teamid": "153", - "ultraPosition": 21, - "pricePaid": 26, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Lyon", - "firstname": "Houssem", - "id": "player_231961", - "lastname": "Aouar", - "position": 3, - "quotation": 25, - "teamid": "143", - "ultraPosition": 32, - "pricePaid": 35, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Bordeaux", - "firstname": "François", - "id": "player_193512", - "lastname": "Kamano", - "position": 4, - "quotation": 17, - "teamid": "140", - "ultraPosition": 40, - "pricePaid": 42, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Nice", - "firstname": "Walter", - "id": "player_121709", - "lastname": "Benítez", - "position": 1, - "quotation": 24, - "teamid": "1395", - "ultraPosition": 10, - "pricePaid": 27, - "buying_date": "2018-12-22T02:20:27Z", - "status": 2 - }, - { - "club": "Paris", - "firstname": "Marco", - "id": "player_61170", - "lastname": "Verratti", - "position": 3, - "quotation": 15, - "teamid": "149", - "ultraPosition": 31, - "pricePaid": 40, - "buying_date": "2019-01-08T20:36:45Z", - "status": 2 - }, - { - "club": "Nîmes", - "firstname": "Renaud", - "id": "player_121150", - "lastname": "Ripart", - "position": 4, - "quotation": 15, - "teamid": "2336", - "ultraPosition": 40, - "pricePaid": 35, - "buying_date": "2019-01-09T18:48:37Z", - "status": 2 - }, - { - "club": "Angers", - "firstname": "Pierrick", - "id": "player_112580", - "lastname": "Capelle", - "position": 3, - "quotation": 14, - "teamid": "2128", - "ultraPosition": 32, - "pricePaid": 30, - "buying_date": "2019-01-09T18:48:37Z", - "status": 2 - }, - { - "club": "Nice", - "firstname": "Mouez", - "id": "player_115357", - "lastname": "Hassen", - "position": 1, - "quotation": 2, - "teamid": "1395", - "ultraPosition": 10, - "pricePaid": 2, - "buying_date": "2019-01-13T20:31:01Z", - "status": 2 - }, - { - "club": "Nîmes", - "firstname": "Clement", - "id": "player_200671", - "lastname": "Depres", - "position": 4, - "quotation": 12, - "teamid": "2336", - "ultraPosition": 40, - "pricePaid": 12, - "buying_date": "2019-01-29T09:51:52Z", - "status": 2 - }, - { - "club": "Rennes", - "firstname": "M'Baye", - "id": "player_96764", - "lastname": "Niang", - "position": 4, - "quotation": 13, - "teamid": "150", - "ultraPosition": 40, - "pricePaid": 10, - "buying_date": "2019-02-03T22:42:18Z", - "status": 2 - }, - { - "club": "Dijon", - "firstname": "Oussama", - "id": "player_241398", - "lastname": "Haddadi", - "position": 2, - "quotation": 12, - "teamid": "2130", - "ultraPosition": 21, - "pricePaid": 11, - "buying_date": "2019-02-03T22:42:18Z", - "status": 2 - }, - { - "club": "Reims", - "firstname": "Mathieu", - "id": "player_217597", - "lastname": "Cafaro", - "position": 3, - "quotation": 17, - "teamid": "1423", - "ultraPosition": 32, - "pricePaid": 14, - "buying_date": "2019-02-03T22:42:18Z", - "status": 2 - }, - { - "club": "Nîmes", - "firstname": "Loïck", - "id": "player_92258", - "lastname": "Landre", - "position": 2, - "quotation": 14, - "teamid": "2336", - "ultraPosition": 20, - "pricePaid": 14, - "buying_date": "2019-02-04T19:24:42Z", - "status": 2 - }, - { - "club": "Angers", - "firstname": "Romain", - "id": "player_45505", - "lastname": "Thomas", - "position": 2, - "quotation": 15, - "teamid": "2128", - "ultraPosition": 20, - "pricePaid": 15, - "buying_date": "2019-02-04T19:24:42Z", - "status": 2 - }, - { - "club": "Toulouse", - "firstname": "Jimmy", - "id": "player_61704", - "lastname": "Durmaz", - "position": 3, - "quotation": 10, - "teamid": "427", - "ultraPosition": 32, - "pricePaid": 10, - "buying_date": "2019-02-14T19:15:17Z", - "status": 2 - } - ], - "preparation": [ - ] -} diff --git a/src/test/resources/__files/mpg.transfer.buy.LJT3FXDF.20200217.json b/src/test/resources/__files/mpg.transfer.buy.LJT3FXDF.20200217.json deleted file mode 100644 index e63c530..0000000 --- a/src/test/resources/__files/mpg.transfer.buy.LJT3FXDF.20200217.json +++ /dev/null @@ -1 +0,0 @@ -{"leagueId":"LJT3FXDF","turn":21,"season":2,"statusLeague":4,"currentUser":"authorized","championship":2,"statusTeam":2,"leagueMode":2,"budget":3,"currentTeam":"mpg_team_LJT3FXDF$$mpg_user_955966","availablePlayers":[{"id":"player_101148","lastname":"Lascelles","firstname":"Jamaal","position":2,"quotation":10,"ultraPosition":20,"club":"Newcastle","teamid":"4","joinDate":"2014-08-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_101184","lastname":"Chambers","firstname":"Calum","position":2,"quotation":1,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2014-07-28","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_101537","lastname":"Felipe Anderson","firstname":null,"position":3,"quotation":14,"ultraPosition":32,"club":"West Ham","teamid":"21","joinDate":"2018-07-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_103912","lastname":"Ibe","firstname":"Jordon","position":3,"quotation":1,"ultraPosition":32,"club":"Bournemouth","teamid":"91","joinDate":"2016-07-14","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_104547","lastname":"Gayle","firstname":"Dwight","position":4,"quotation":6,"ultraPosition":40,"club":"Newcastle","teamid":"4","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_104953","lastname":"Atsu","firstname":"Christian","position":3,"quotation":7,"ultraPosition":32,"club":"Newcastle","teamid":"4","joinDate":"2017-06-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_105717","lastname":"Masuaku","firstname":"Arthur","position":2,"quotation":8,"ultraPosition":21,"club":"West Ham","teamid":"21","joinDate":"2016-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_106611","lastname":"Keane","firstname":"Michael","position":2,"quotation":7,"ultraPosition":20,"club":"Everton","teamid":"11","joinDate":"2017-07-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_106618","lastname":"Dummett","firstname":"Paul","position":2,"quotation":5,"ultraPosition":21,"club":"Newcastle","teamid":"4","joinDate":"2011-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_106760","lastname":"Shaw","firstname":"Luke","position":2,"quotation":11,"ultraPosition":21,"club":"Man. United","teamid":"1","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_106837","lastname":"Praet","firstname":"Dennis","position":3,"quotation":8,"ultraPosition":32,"club":"Leicester","teamid":"13","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_107265","lastname":"Gunn","firstname":"Angus","position":1,"quotation":7,"ultraPosition":10,"club":"Southampton","teamid":"20","joinDate":"2018-07-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_107613","lastname":"Saïss","firstname":"Romain","position":3,"quotation":11,"ultraPosition":31,"club":"Wolverhampton","teamid":"39","joinDate":"2016-08-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_108156","lastname":"Engels","firstname":"Björn","position":2,"quotation":8,"ultraPosition":20,"club":"Aston Villa","teamid":"7","joinDate":"2019-07-16","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_108413","lastname":"Hughes","firstname":"Will","position":3,"quotation":7,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2017-06-25","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_109322","lastname":"Lingard","firstname":"Jesse","position":3,"quotation":9,"ultraPosition":32,"club":"Man. United","teamid":"1","joinDate":"2011-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_109345","lastname":"March","firstname":"Solly","position":3,"quotation":6,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2012-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_111317","lastname":"Brooks","firstname":"David","position":3,"quotation":4,"ultraPosition":32,"club":"Bournemouth","teamid":"91","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_111457","lastname":"Kolasinac","firstname":"Sead","position":2,"quotation":10,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_111773","lastname":"Krafth","firstname":"Emil","position":2,"quotation":5,"ultraPosition":21,"club":"Newcastle","teamid":"4","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_113534","lastname":"Macey","firstname":"Matt","position":1,"quotation":1,"ultraPosition":10,"club":"Arsenal","teamid":"3","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_113564","lastname":"Byram","firstname":"Sam","position":2,"quotation":10,"ultraPosition":21,"club":"Norwich","teamid":"45","joinDate":"2019-07-16","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_113688","lastname":"Niasse","firstname":"Oumar","position":4,"quotation":3,"ultraPosition":40,"club":"Everton","teamid":"11","joinDate":"2016-02-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_115556","lastname":"Davies","firstname":"Ben","position":2,"quotation":3,"ultraPosition":21,"club":"Tottenham","teamid":"6","joinDate":"2014-07-23","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_116543","lastname":"Lazaro","firstname":"Valentino","position":3,"quotation":10,"ultraPosition":32,"club":"Newcastle","teamid":"4","joinDate":"2020-01-24","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_11948","lastname":"Lonergan","firstname":"Andy","position":1,"quotation":1,"ultraPosition":10,"club":"Liverpool","teamid":"14","joinDate":"2019-07-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_11974","lastname":"Jakupovic","firstname":"Eldin","position":1,"quotation":1,"ultraPosition":10,"club":"Leicester","teamid":"13","joinDate":"2017-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_120250","lastname":"André Gomes","firstname":null,"position":3,"quotation":1,"ultraPosition":32,"club":"Everton","teamid":"11","joinDate":"2019-06-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_121145","lastname":"João Cancelo","firstname":null,"position":2,"quotation":13,"ultraPosition":21,"club":"Man. City","teamid":"43","joinDate":"2019-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_123354","lastname":"Hause","firstname":"Kortney","position":2,"quotation":10,"ultraPosition":20,"club":"Aston Villa","teamid":"7","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_126186","lastname":"Baker","firstname":"Lewis","position":3,"quotation":1,"ultraPosition":32,"club":"Chelsea","teamid":"8","joinDate":"2012-07-01","availableSince":"2020-01-23T15:43:28Z"},{"id":"player_126187","lastname":"Loftus-Cheek","firstname":"Ruben","position":3,"quotation":3,"ultraPosition":32,"club":"Chelsea","teamid":"8","joinDate":"2012-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_126407","lastname":"Bentaleb","firstname":"Nabil","position":3,"quotation":11,"ultraPosition":31,"club":"Newcastle","teamid":"4","joinDate":"2020-01-21","availableSince":"2020-01-23T15:43:28Z"},{"id":"player_12745","lastname":"Baines","firstname":"Leighton","position":2,"quotation":3,"ultraPosition":21,"club":"Everton","teamid":"11","joinDate":"2007-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_127571","lastname":"Radulovic Samoukovic","firstname":"Bojan","position":4,"quotation":1,"ultraPosition":40,"club":"Brighton","teamid":"36","joinDate":"2019-09-24","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_135363","lastname":"Christensen","firstname":"Andreas","position":2,"quotation":11,"ultraPosition":20,"club":"Chelsea","teamid":"8","joinDate":"2012-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_135720","lastname":"Danso","firstname":"Kevin","position":2,"quotation":3,"ultraPosition":20,"club":"Southampton","teamid":"20","joinDate":"2019-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_139110","lastname":"Duda","firstname":"Ondrej","position":3,"quotation":12,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2020-01-12","availableSince":"2020-01-15T12:03:15Z"},{"id":"player_141020","lastname":"Meyer","firstname":"Max","position":3,"quotation":8,"ultraPosition":32,"club":"Crystal Palace","teamid":"31","joinDate":"2018-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_141746","lastname":"Bruno Fernandes","firstname":null,"position":3,"quotation":15,"ultraPosition":32,"club":"Man. United","teamid":"1","joinDate":"2020-01-30","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_145232","lastname":"Grimshaw","firstname":"Daniel","position":1,"quotation":1,"ultraPosition":10,"club":"Man. City","teamid":"43","joinDate":"2017-07-20","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_147612","lastname":"Zivkovic","firstname":"Richairo","position":4,"quotation":6,"ultraPosition":40,"club":"Sheffield","teamid":"49","joinDate":"2020-01-31","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_149484","lastname":"Mings","firstname":"Tyrone","position":2,"quotation":15,"ultraPosition":20,"club":"Aston Villa","teamid":"7","joinDate":"2019-07-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_15033","lastname":"Morgan","firstname":"Wes","position":2,"quotation":5,"ultraPosition":20,"club":"Leicester","teamid":"13","joinDate":"2012-01-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_151119","lastname":"Yedlin","firstname":"DeAndre","position":2,"quotation":9,"ultraPosition":21,"club":"Newcastle","teamid":"4","joinDate":"2016-08-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_15149","lastname":"Francis","firstname":"Simon","position":2,"quotation":10,"ultraPosition":21,"club":"Bournemouth","teamid":"91","joinDate":"2012-01-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_15237","lastname":"Surman","firstname":"Andrew","position":3,"quotation":1,"ultraPosition":31,"club":"Bournemouth","teamid":"91","joinDate":"2014-09-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_152551","lastname":"Lerma","firstname":"Jefferson","position":3,"quotation":12,"ultraPosition":31,"club":"Bournemouth","teamid":"91","joinDate":"2018-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_153373","lastname":"McQueen","firstname":"Sam","position":2,"quotation":1,"ultraPosition":21,"club":"Southampton","teamid":"20","joinDate":"2013-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_154043","lastname":"Maitland-Niles","firstname":"Ainsley","position":3,"quotation":9,"ultraPosition":32,"club":"Arsenal","teamid":"3","joinDate":"2014-12-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_154046","lastname":"Hinds","firstname":"Kaylen","position":4,"quotation":3,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2020-01-22","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_154506","lastname":"Bachmann","firstname":"Daniel","position":1,"quotation":1,"ultraPosition":10,"club":"Watford","teamid":"57","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_154566","lastname":"Solanke","firstname":"Dominic","position":4,"quotation":10,"ultraPosition":40,"club":"Bournemouth","teamid":"91","joinDate":"2019-01-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_155408","lastname":"Lewis Cook","firstname":null,"position":3,"quotation":7,"ultraPosition":31,"club":"Bournemouth","teamid":"91","joinDate":"2016-07-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_155569","lastname":"Amartey","firstname":"Daniel","position":3,"quotation":1,"ultraPosition":31,"club":"Leicester","teamid":"13","joinDate":"2016-01-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_155651","lastname":"Masina","firstname":"Adam","position":2,"quotation":12,"ultraPosition":21,"club":"Watford","teamid":"57","joinDate":"2018-07-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_156069","lastname":"Gibson","firstname":"Liam","position":2,"quotation":1,"ultraPosition":21,"club":"Newcastle","teamid":"4","joinDate":"2016-02-06","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_156074","lastname":"Holding","firstname":"Rob","position":2,"quotation":9,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2016-07-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_156689","lastname":"Andreas Pereira","firstname":null,"position":3,"quotation":10,"ultraPosition":32,"club":"Man. United","teamid":"1","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_15749","lastname":"Hart","firstname":"Joe","position":1,"quotation":7,"ultraPosition":10,"club":"Burnley","teamid":"90","joinDate":"2018-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_157668","lastname":"Winks","firstname":"Harry","position":3,"quotation":10,"ultraPosition":31,"club":"Tottenham","teamid":"6","joinDate":"2013-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_157882","lastname":"Minamino","firstname":"Takumi","position":4,"quotation":9,"ultraPosition":40,"club":"Liverpool","teamid":"14","joinDate":"2020-01-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_158534","lastname":"Walker-Peters","firstname":"Kyle","position":2,"quotation":3,"ultraPosition":21,"club":"Southampton","teamid":"20","joinDate":"2020-01-29","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_160987","lastname":"Gbamin","firstname":"Jean-Philippe","position":3,"quotation":3,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2019-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_16229","lastname":"Wright","firstname":"Jake","position":2,"quotation":3,"ultraPosition":20,"club":"Sheffield","teamid":"49","joinDate":"2016-07-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_167473","lastname":"Izquierdo","firstname":"José","position":4,"quotation":1,"ultraPosition":40,"club":"Brighton","teamid":"36","joinDate":"2017-08-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_167878","lastname":"Osborn","firstname":"Ben","position":3,"quotation":1,"ultraPosition":31,"club":"Sheffield","teamid":"49","joinDate":"2019-07-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_168290","lastname":"Pussetto","firstname":"Ignacio","position":4,"quotation":8,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2020-01-14","availableSince":"2020-01-15T12:03:15Z"},{"id":"player_168991","lastname":"Billing","firstname":"Philip","position":3,"quotation":13,"ultraPosition":31,"club":"Bournemouth","teamid":"91","joinDate":"2019-07-29","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_171129","lastname":"Rico","firstname":"Diego","position":2,"quotation":13,"ultraPosition":21,"club":"Bournemouth","teamid":"91","joinDate":"2018-07-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_171771","lastname":"Bednarek","firstname":"Jan","position":2,"quotation":13,"ultraPosition":20,"club":"Southampton","teamid":"20","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_172632","lastname":"Gray","firstname":"Demarai","position":3,"quotation":7,"ultraPosition":32,"club":"Leicester","teamid":"13","joinDate":"2016-01-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_172649","lastname":"Henderson","firstname":"Dean","position":1,"quotation":19,"ultraPosition":10,"club":"Sheffield","teamid":"49","joinDate":"2019-07-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_172782","lastname":"Brownhill","firstname":"Josh","position":3,"quotation":10,"ultraPosition":32,"club":"Burnley","teamid":"90","joinDate":"2020-01-30","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_17349","lastname":"Lennon","firstname":"Aaron","position":3,"quotation":3,"ultraPosition":32,"club":"Burnley","teamid":"90","joinDate":"2018-01-23","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_173514","lastname":"Isaac Success","firstname":null,"position":4,"quotation":6,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_173807","lastname":"Davies","firstname":"Tom","position":3,"quotation":8,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2016-04-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_173954","lastname":"Riedewald","firstname":"Jairo","position":3,"quotation":7,"ultraPosition":31,"club":"Crystal Palace","teamid":"31","joinDate":"2017-07-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_174254","lastname":"Chirivella","firstname":"Pedro","position":3,"quotation":1,"ultraPosition":31,"club":"Liverpool","teamid":"14","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_175353","lastname":"Tom Dele-Bashiru","firstname":null,"position":3,"quotation":1,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2019-07-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_175592","lastname":"Keita","firstname":"Naby","position":3,"quotation":11,"ultraPosition":31,"club":"Liverpool","teamid":"14","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_175941","lastname":"Whiteman","firstname":"Alfie","position":1,"quotation":1,"ultraPosition":10,"club":"Tottenham","teamid":"6","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_17601","lastname":"Carson","firstname":"Scott","position":1,"quotation":1,"ultraPosition":10,"club":"Man. City","teamid":"43","joinDate":"2019-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_176297","lastname":"Rashford","firstname":"Marcus","position":4,"quotation":28,"ultraPosition":40,"club":"Man. United","teamid":"1","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_178186","lastname":"Bowen","firstname":"Jarrod","position":4,"quotation":14,"ultraPosition":40,"club":"West Ham","teamid":"21","joinDate":"2020-01-31","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_179456","lastname":"Buur","firstname":"Oskar","position":2,"quotation":1,"ultraPosition":21,"club":"Wolverhampton","teamid":"39","joinDate":"2017-09-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_17997","lastname":"Bardsley","firstname":"Phil","position":2,"quotation":7,"ultraPosition":21,"club":"Burnley","teamid":"90","joinDate":"2017-07-25","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_180135","lastname":"Sean Longstaff","firstname":null,"position":3,"quotation":8,"ultraPosition":32,"club":"Newcastle","teamid":"4","joinDate":"2018-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_180804","lastname":"Tuanzebe","firstname":"Axel","position":2,"quotation":3,"ultraPosition":20,"club":"Man. United","teamid":"1","joinDate":"2015-10-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_181008","lastname":"Ajeti","firstname":"Albian","position":4,"quotation":6,"ultraPosition":40,"club":"West Ham","teamid":"21","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_183645","lastname":"Adeniran","firstname":"Dennis","position":3,"quotation":1,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2019-12-17","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_183654","lastname":"Bola","firstname":"Tolaji","position":2,"quotation":1,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2019-09-23","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_184349","lastname":"Ryan Sessegnon","firstname":null,"position":3,"quotation":9,"ultraPosition":32,"club":"Tottenham","teamid":"6","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_18440","lastname":"Clarke","firstname":"Leon","position":4,"quotation":1,"ultraPosition":40,"club":"Sheffield","teamid":"49","joinDate":"2016-07-27","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_184704","lastname":"Nakamba","firstname":"Marvelous","position":3,"quotation":10,"ultraPosition":31,"club":"Aston Villa","teamid":"7","joinDate":"2019-08-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_18499","lastname":"McGovern","firstname":"Michael","position":1,"quotation":6,"ultraPosition":10,"club":"Norwich","teamid":"45","joinDate":"2016-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_18656","lastname":"Heurelho Gomes","firstname":null,"position":1,"quotation":7,"ultraPosition":10,"club":"Watford","teamid":"57","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_18726","lastname":"Boruc","firstname":"Artur","position":1,"quotation":7,"ultraPosition":10,"club":"Bournemouth","teamid":"91","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_18867","lastname":"Sharp","firstname":"Billy","position":4,"quotation":6,"ultraPosition":40,"club":"Sheffield","teamid":"49","joinDate":"2015-07-29","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_19188","lastname":"Dann","firstname":"Scott","position":2,"quotation":3,"ultraPosition":20,"club":"Crystal Palace","teamid":"31","joinDate":"2014-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_19194","lastname":"Martin","firstname":"David","position":1,"quotation":3,"ultraPosition":10,"club":"West Ham","teamid":"21","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_192303","lastname":"Zimmermann","firstname":"Christoph","position":2,"quotation":10,"ultraPosition":20,"club":"Norwich","teamid":"45","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_19236","lastname":"Ruddy","firstname":"John","position":1,"quotation":7,"ultraPosition":10,"club":"Wolverhampton","teamid":"39","joinDate":"2017-07-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_192895","lastname":"Tierney","firstname":"Kieran","position":2,"quotation":6,"ultraPosition":21,"club":"Arsenal","teamid":"3","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_194126","lastname":"Verrips","firstname":"Michael","position":1,"quotation":6,"ultraPosition":10,"club":"Sheffield","teamid":"49","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_194634","lastname":"Diogo Jota","firstname":null,"position":3,"quotation":14,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_194799","lastname":"Lewis","firstname":"Jamal","position":2,"quotation":8,"ultraPosition":21,"club":"Norwich","teamid":"45","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_195064","lastname":"Goodridge","firstname":"Mace","position":3,"quotation":1,"ultraPosition":31,"club":"Burnley","teamid":"90","joinDate":"2019-12-06","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_195476","lastname":"Lewis","firstname":"Adam","position":2,"quotation":1,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2019-07-10","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_195546","lastname":"Buendía","firstname":"Emiliano","position":3,"quotation":16,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_195851","lastname":"McTominay","firstname":"Scott","position":3,"quotation":12,"ultraPosition":31,"club":"Man. United","teamid":"1","joinDate":"2017-04-29","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_195855","lastname":"Baningime","firstname":"Beni","position":3,"quotation":1,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2017-10-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_196118","lastname":"Muto","firstname":"Yoshinori","position":4,"quotation":5,"ultraPosition":40,"club":"Newcastle","teamid":"4","joinDate":"2018-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_197365","lastname":"Bailly","firstname":"Eric","position":2,"quotation":3,"ultraPosition":20,"club":"Man. United","teamid":"1","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_197469","lastname":"Choudhury","firstname":"Hamza","position":3,"quotation":8,"ultraPosition":31,"club":"Leicester","teamid":"13","joinDate":"2017-09-18","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_198044","lastname":"Lewis","firstname":"Harry","position":1,"quotation":1,"ultraPosition":10,"club":"Southampton","teamid":"20","joinDate":"2016-07-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_198826","lastname":"Godfrey","firstname":"Ben","position":2,"quotation":8,"ultraPosition":20,"club":"Norwich","teamid":"45","joinDate":"2016-01-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_199584","lastname":"Tanganga","firstname":"Japhet","position":2,"quotation":11,"ultraPosition":20,"club":"Tottenham","teamid":"6","joinDate":"2018-08-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_199601","lastname":"Burton","firstname":"Robbie","position":3,"quotation":1,"ultraPosition":32,"club":"Arsenal","teamid":"3","joinDate":"2019-07-15","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_199798","lastname":"Konsa Ngoyo","firstname":"Ezri","position":2,"quotation":10,"ultraPosition":20,"club":"Aston Villa","teamid":"7","joinDate":"2019-07-11","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_200088","lastname":"N'Lundulu","firstname":"Daniel","position":4,"quotation":1,"ultraPosition":40,"club":"Southampton","teamid":"20","joinDate":"2019-07-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_200089","lastname":"Willock","firstname":"Joseph","position":3,"quotation":7,"ultraPosition":31,"club":"Arsenal","teamid":"3","joinDate":"2017-07-12","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_200600","lastname":"Daniel Podence","firstname":null,"position":3,"quotation":7,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2020-01-30","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_200641","lastname":"Nelson","firstname":"Reiss","position":4,"quotation":3,"ultraPosition":40,"club":"Arsenal","teamid":"3","joinDate":"2017-07-12","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_200646","lastname":"Gallacher","firstname":"Tony","position":2,"quotation":1,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_200720","lastname":"Kelleher","firstname":"Caoimhin","position":1,"quotation":1,"ultraPosition":10,"club":"Liverpool","teamid":"14","joinDate":"2016-08-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_201084","lastname":"Fosu-Mensah","firstname":"Timothy","position":2,"quotation":1,"ultraPosition":21,"club":"Man. United","teamid":"1","joinDate":"2016-02-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_20145","lastname":"Mariappa","firstname":"Adrian","position":2,"quotation":8,"ultraPosition":20,"club":"Watford","teamid":"57","joinDate":"2016-08-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_20310","lastname":"Caballero","firstname":"Willy","position":1,"quotation":8,"ultraPosition":10,"club":"Chelsea","teamid":"8","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_203368","lastname":"Guilbert","firstname":"Frederic","position":2,"quotation":10,"ultraPosition":21,"club":"Aston Villa","teamid":"7","joinDate":"2019-01-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_20452","lastname":"Long","firstname":"Shane","position":4,"quotation":11,"ultraPosition":40,"club":"Southampton","teamid":"20","joinDate":"2014-08-14","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_20480","lastname":"Krul","firstname":"Tim","position":1,"quotation":14,"ultraPosition":10,"club":"Norwich","teamid":"45","joinDate":"2018-07-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_20529","lastname":"Murray","firstname":"Glenn","position":4,"quotation":9,"ultraPosition":40,"club":"Brighton","teamid":"36","joinDate":"2017-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_205533","lastname":"Nketiah","firstname":"Eddie","position":4,"quotation":3,"ultraPosition":40,"club":"Arsenal","teamid":"3","joinDate":"2017-07-12","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_206325","lastname":"Zinchenko","firstname":"Oleksandr","position":3,"quotation":8,"ultraPosition":31,"club":"Man. City","teamid":"43","joinDate":"2016-06-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_20658","lastname":"Zabaleta","firstname":"Pablo","position":2,"quotation":8,"ultraPosition":21,"club":"West Ham","teamid":"21","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_206915","lastname":"Jones","firstname":"Curtis","position":3,"quotation":1,"ultraPosition":32,"club":"Liverpool","teamid":"14","joinDate":"2018-04-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_207189","lastname":"Berge","firstname":"Sander","position":3,"quotation":12,"ultraPosition":31,"club":"Sheffield","teamid":"49","joinDate":"2020-01-30","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_209037","lastname":"Medley","firstname":"Zech","position":2,"quotation":1,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2018-10-21","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_209041","lastname":"Gomes","firstname":"Angel","position":3,"quotation":1,"ultraPosition":32,"club":"Man. United","teamid":"1","joinDate":"2017-05-20","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_209042","lastname":"Skipp","firstname":"Oliver","position":3,"quotation":1,"ultraPosition":31,"club":"Tottenham","teamid":"6","joinDate":"2018-07-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_209043","lastname":"Kirby","firstname":"Nya","position":3,"quotation":1,"ultraPosition":32,"club":"Crystal Palace","teamid":"31","joinDate":"2017-07-18","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_209045","lastname":"Richards","firstname":"Taylor","position":3,"quotation":1,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2019-07-18","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_209244","lastname":"Foden","firstname":"Phil","position":3,"quotation":6,"ultraPosition":32,"club":"Man. City","teamid":"43","joinDate":"2016-12-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_209362","lastname":"Bernardo","firstname":null,"position":2,"quotation":10,"ultraPosition":21,"club":"Brighton","teamid":"36","joinDate":"2018-07-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_209706","lastname":"Cumming","firstname":"Jamie","position":1,"quotation":1,"ultraPosition":10,"club":"Chelsea","teamid":"8","joinDate":"2018-12-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_21205","lastname":"Heaton","firstname":"Tom","position":1,"quotation":1,"ultraPosition":10,"club":"Aston Villa","teamid":"7","joinDate":"2019-08-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_213280","lastname":"Eastwood","firstname":"Jake","position":1,"quotation":3,"ultraPosition":10,"club":"Sheffield","teamid":"49","joinDate":"2017-07-01","availableSince":"2020-01-13T16:28:50Z"},{"id":"player_213405","lastname":"Benkovic","firstname":"Filip","position":2,"quotation":1,"ultraPosition":20,"club":"Leicester","teamid":"13","joinDate":"2018-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_213482","lastname":"Valery","firstname":"Yan","position":2,"quotation":6,"ultraPosition":21,"club":"Southampton","teamid":"20","joinDate":"2016-07-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_214048","lastname":"Kilman","firstname":"Maximilian","position":2,"quotation":6,"ultraPosition":21,"club":"Wolverhampton","teamid":"39","joinDate":"2018-12-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_214463","lastname":"Parkes","firstname":"Adam","position":1,"quotation":1,"ultraPosition":10,"club":"Watford","teamid":"57","joinDate":"2020-01-03","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_214466","lastname":"Smallbone","firstname":"William","position":4,"quotation":1,"ultraPosition":40,"club":"Southampton","teamid":"20","joinDate":"2019-07-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_214470","lastname":"Vokins","firstname":"Jake","position":2,"quotation":1,"ultraPosition":21,"club":"Southampton","teamid":"20","joinDate":"2019-07-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_214572","lastname":"Austin","firstname":"Brandon","position":1,"quotation":1,"ultraPosition":10,"club":"Tottenham","teamid":"6","joinDate":"2017-07-22","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_215061","lastname":"Archie Davies","firstname":null,"position":2,"quotation":1,"ultraPosition":21,"club":"Brighton","teamid":"36","joinDate":"2019-09-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_215066","lastname":"Cochrane","firstname":"Alex","position":2,"quotation":1,"ultraPosition":21,"club":"Brighton","teamid":"36","joinDate":"2019-08-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_215133","lastname":"Dixon-Bonner","firstname":"Elijah","position":3,"quotation":1,"ultraPosition":31,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_215135","lastname":"Longstaff","firstname":"Luis","position":3,"quotation":1,"ultraPosition":32,"club":"Liverpool","teamid":"14","joinDate":"2019-07-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_215136","lastname":"Williams","firstname":"Neco","position":2,"quotation":1,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2019-10-29","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_215439","lastname":"Soucek","firstname":"Tomas","position":3,"quotation":8,"ultraPosition":31,"club":"West Ham","teamid":"21","joinDate":"2020-01-29","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_216051","lastname":"Diogo Dalot","firstname":null,"position":2,"quotation":4,"ultraPosition":21,"club":"Man. United","teamid":"1","joinDate":"2018-06-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_216054","lastname":"Rúben Vinagre","firstname":null,"position":2,"quotation":8,"ultraPosition":21,"club":"Wolverhampton","teamid":"39","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_216058","lastname":"Domingos Quina","firstname":null,"position":3,"quotation":1,"ultraPosition":32,"club":"Watford","teamid":"57","joinDate":"2018-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_216208","lastname":"Sarkic","firstname":"Matija","position":1,"quotation":3,"ultraPosition":10,"club":"Aston Villa","teamid":"7","joinDate":"2016-07-01","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_217331","lastname":"Surridge","firstname":"Sam","position":4,"quotation":1,"ultraPosition":40,"club":"Bournemouth","teamid":"91","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_217487","lastname":"Samatta","firstname":"Mbwana","position":4,"quotation":16,"ultraPosition":40,"club":"Aston Villa","teamid":"7","joinDate":"2020-01-20","availableSince":"2020-01-23T15:43:28Z"},{"id":"player_217593","lastname":"Fornals","firstname":"Pablo","position":3,"quotation":12,"ultraPosition":32,"club":"West Ham","teamid":"21","joinDate":"2019-06-14","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_217632","lastname":"Barrett","firstname":"Mason","position":2,"quotation":1,"ultraPosition":20,"club":"Watford","teamid":"57","joinDate":"2020-01-03","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_218020","lastname":"Whelan","firstname":"Callum","position":3,"quotation":1,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2020-01-03","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_218023","lastname":"Jimmy Dunne","firstname":null,"position":2,"quotation":1,"ultraPosition":20,"club":"Burnley","teamid":"90","joinDate":"2019-07-01","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_219936","lastname":"Clayton","firstname":"Thomas","position":2,"quotation":1,"ultraPosition":20,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_219938","lastname":"Boyes","firstname":"Morgan","position":2,"quotation":1,"ultraPosition":20,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_220037","lastname":"Peacock-Farrell","firstname":"Bailey","position":1,"quotation":1,"ultraPosition":10,"club":"Burnley","teamid":"90","joinDate":"2019-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_220307","lastname":"Danjuma Groeneveld","firstname":"Arnaut","position":3,"quotation":6,"ultraPosition":32,"club":"Bournemouth","teamid":"91","joinDate":"2019-08-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_220394","lastname":"Doyle","firstname":"Tommy","position":3,"quotation":1,"ultraPosition":31,"club":"Man. City","teamid":"43","joinDate":"2019-07-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_220627","lastname":"Justin","firstname":"James","position":2,"quotation":1,"ultraPosition":21,"club":"Leicester","teamid":"13","joinDate":"2019-06-28","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_220688","lastname":"Greenwood","firstname":"Mason","position":4,"quotation":9,"ultraPosition":40,"club":"Man. United","teamid":"1","joinDate":"2018-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_221239","lastname":"Davis","firstname":"Keinan","position":3,"quotation":4,"ultraPosition":32,"club":"Aston Villa","teamid":"7","joinDate":"2016-02-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_222018","lastname":"Johnson","firstname":"Ben","position":3,"quotation":1,"ultraPosition":31,"club":"West Ham","teamid":"21","joinDate":"2017-12-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_222434","lastname":"Simpson","firstname":"Jack","position":2,"quotation":5,"ultraPosition":20,"club":"Bournemouth","teamid":"91","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_222531","lastname":"Gibbs-White","firstname":"Morgan","position":3,"quotation":5,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2017-01-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_222677","lastname":"Chong","firstname":"Tahith","position":3,"quotation":1,"ultraPosition":32,"club":"Man. United","teamid":"1","joinDate":"2018-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_222786","lastname":"Retsos","firstname":"Panagiotis","position":2,"quotation":5,"ultraPosition":20,"club":"Sheffield","teamid":"49","joinDate":"2020-01-31","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_222844","lastname":"Taylor","firstname":"Max","position":2,"quotation":1,"ultraPosition":20,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_223175","lastname":"Matthew Longstaff","firstname":null,"position":3,"quotation":6,"ultraPosition":31,"club":"Newcastle","teamid":"4","joinDate":"2019-07-17","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_223332","lastname":"Anjorin","firstname":"Faustino","position":3,"quotation":1,"ultraPosition":32,"club":"Chelsea","teamid":"8","joinDate":"2019-09-24","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_223349","lastname":"Vassilev","firstname":"Indiana","position":4,"quotation":3,"ultraPosition":40,"club":"Aston Villa","teamid":"7","joinDate":"2020-01-04","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_223911","lastname":"Mepham","firstname":"Chris","position":2,"quotation":6,"ultraPosition":20,"club":"Bournemouth","teamid":"91","joinDate":"2019-01-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_225368","lastname":"Shabani","firstname":"Meritan","position":3,"quotation":1,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2019-08-08","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_225796","lastname":"James","firstname":"Reece","position":2,"quotation":10,"ultraPosition":21,"club":"Chelsea","teamid":"8","joinDate":"2019-05-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_227127","lastname":"Bissouma","firstname":"Yves","position":3,"quotation":6,"ultraPosition":31,"club":"Brighton","teamid":"36","joinDate":"2018-07-17","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_227290","lastname":"Jordan","firstname":"Corey","position":2,"quotation":1,"ultraPosition":20,"club":"Bournemouth","teamid":"91","joinDate":"2016-01-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_229600","lastname":"Travers","firstname":"Mark","position":1,"quotation":1,"ultraPosition":10,"club":"Bournemouth","teamid":"91","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_230046","lastname":"Douglas Luiz","firstname":null,"position":3,"quotation":13,"ultraPosition":31,"club":"Aston Villa","teamid":"7","joinDate":"2019-07-25","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_231821","lastname":"Davies","firstname":"Jordan","position":3,"quotation":1,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2019-08-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232223","lastname":"Balogun","firstname":"Folarin","position":4,"quotation":1,"ultraPosition":40,"club":"Arsenal","teamid":"3","joinDate":"2019-09-23","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_232244","lastname":"Spencer-Adams","firstname":"Bayli","position":2,"quotation":1,"ultraPosition":20,"club":"Watford","teamid":"57","joinDate":"2020-01-03","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232361","lastname":"Perry","firstname":"Taylor","position":3,"quotation":1,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2019-07-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232391","lastname":"Ngakia","firstname":"Jeremy","position":2,"quotation":1,"ultraPosition":21,"club":"West Ham","teamid":"21","joinDate":"2020-01-09","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232758","lastname":"Winterbottom","firstname":"Ben","position":1,"quotation":1,"ultraPosition":10,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232774","lastname":"Longman","firstname":"Ryan","position":3,"quotation":1,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232781","lastname":"Bernard","firstname":"Di'Shon","position":2,"quotation":1,"ultraPosition":20,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232792","lastname":"Lamptey","firstname":"Tariq","position":2,"quotation":1,"ultraPosition":21,"club":"Brighton","teamid":"36","joinDate":"2020-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232818","lastname":"Wise","firstname":"Henry","position":3,"quotation":1,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2020-01-22","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232826","lastname":"Gordon","firstname":"Anthony","position":3,"quotation":1,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2017-12-06","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_232924","lastname":"Mellor","firstname":"D'Mani","position":4,"quotation":1,"ultraPosition":40,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232928","lastname":"Garner","firstname":"James","position":3,"quotation":1,"ultraPosition":31,"club":"Man. United","teamid":"1","joinDate":"2018-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232929","lastname":"Laird","firstname":"Ethan","position":2,"quotation":1,"ultraPosition":21,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232930","lastname":"Levitt","firstname":"Dylan","position":3,"quotation":1,"ultraPosition":31,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_232937","lastname":"Williams","firstname":"Brandon","position":2,"quotation":6,"ultraPosition":21,"club":"Man. United","teamid":"1","joinDate":"2019-09-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_232957","lastname":"Allan","firstname":"Thomas","position":4,"quotation":1,"ultraPosition":40,"club":"Newcastle","teamid":"4","joinDate":"2019-07-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_232960","lastname":"Cass","firstname":"Lewis","position":2,"quotation":1,"ultraPosition":20,"club":"Newcastle","teamid":"4","joinDate":"2019-05-11","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_232980","lastname":"Aarons","firstname":"Max","position":2,"quotation":12,"ultraPosition":21,"club":"Norwich","teamid":"45","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_233001","lastname":"Balogun","firstname":"Jamal","position":2,"quotation":1,"ultraPosition":21,"club":"Watford","teamid":"57","joinDate":"2020-01-22","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_233425","lastname":"Connolly","firstname":"Aaron","position":4,"quotation":9,"ultraPosition":40,"club":"Brighton","teamid":"36","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_233489","lastname":"Clarkson","firstname":"Leighton","position":3,"quotation":1,"ultraPosition":31,"club":"Liverpool","teamid":"14","joinDate":"2019-07-01","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_233849","lastname":"Mair","firstname":"Archie","position":1,"quotation":1,"ultraPosition":10,"club":"Norwich","teamid":"45","joinDate":"2019-10-04","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_234720","lastname":"McGregor","firstname":"Giovanni","position":3,"quotation":1,"ultraPosition":31,"club":"Crystal Palace","teamid":"31","joinDate":"2018-07-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_234908","lastname":"Foyth","firstname":"Juan","position":2,"quotation":5,"ultraPosition":20,"club":"Tottenham","teamid":"6","joinDate":"2017-08-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_235381","lastname":"Dalby","firstname":"Sam","position":4,"quotation":1,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2019-10-28","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_235382","lastname":"Alzate","firstname":"Steven","position":3,"quotation":10,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2019-08-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_235530","lastname":"Kelly","firstname":"Lloyd","position":2,"quotation":1,"ultraPosition":21,"club":"Bournemouth","teamid":"91","joinDate":"2019-05-18","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_235599","lastname":"Tavares","firstname":"Nikola","position":2,"quotation":1,"ultraPosition":20,"club":"Crystal Palace","teamid":"31","joinDate":"2019-05-11","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_240795","lastname":"Sorensen","firstname":"Elias","position":4,"quotation":1,"ultraPosition":40,"club":"Newcastle","teamid":"4","joinDate":"2019-07-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_243016","lastname":"Mac Allister","firstname":"Alexis","position":3,"quotation":5,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2019-01-24","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_243568","lastname":"Gilmour","firstname":"Billy","position":3,"quotation":1,"ultraPosition":32,"club":"Chelsea","teamid":"8","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_243710","lastname":"Bernardo Rosa","firstname":null,"position":3,"quotation":1,"ultraPosition":31,"club":"West Ham","teamid":"21","joinDate":"2020-01-09","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_244723","lastname":"Mitchell","firstname":"Tyrick","position":2,"quotation":1,"ultraPosition":20,"club":"Crystal Palace","teamid":"31","joinDate":"2019-12-15","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_244848","lastname":"Jenks","firstname":"Teddy","position":3,"quotation":1,"ultraPosition":31,"club":"Brighton","teamid":"36","joinDate":"2019-07-01","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_244856","lastname":"Mengi","firstname":"Teden","position":2,"quotation":1,"ultraPosition":20,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_244890","lastname":"Hungbo","firstname":"Joseph","position":3,"quotation":1,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2020-01-03","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_245719","lastname":"Harwood-Bellis","firstname":"Taylor","position":2,"quotation":1,"ultraPosition":20,"club":"Man. City","teamid":"43","joinDate":"2019-07-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_245923","lastname":"Cundle","firstname":"Luke","position":3,"quotation":1,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2019-07-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_247632","lastname":"Pedro Neto","firstname":null,"position":3,"quotation":12,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2019-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_248506","lastname":"Puigmal Martínez","firstname":"Arnau","position":3,"quotation":1,"ultraPosition":31,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_248719","lastname":"O'Hora","firstname":"Warren","position":2,"quotation":1,"ultraPosition":20,"club":"Brighton","teamid":"36","joinDate":"2019-09-24","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_250370","lastname":"Bishop","firstname":"Nathan","position":1,"quotation":1,"ultraPosition":10,"club":"Man. United","teamid":"1","joinDate":"2020-01-31","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_250604","lastname":"Otasowie","firstname":"Owen","position":3,"quotation":1,"ultraPosition":31,"club":"Wolverhampton","teamid":"39","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_28082","lastname":"Fährmann","firstname":"Ralf","position":1,"quotation":3,"ultraPosition":10,"club":"Norwich","teamid":"45","joinDate":"2019-07-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_28609","lastname":"Legzdins","firstname":"Adam","position":1,"quotation":1,"ultraPosition":10,"club":"Burnley","teamid":"90","joinDate":"2017-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_32259","lastname":"Randolph","firstname":"Darren","position":1,"quotation":14,"ultraPosition":10,"club":"West Ham","teamid":"21","joinDate":"2020-01-15","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_33148","lastname":"Bravo","firstname":"Claudio","position":1,"quotation":7,"ultraPosition":10,"club":"Man. City","teamid":"43","joinDate":"2016-08-25","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_37096","lastname":"Fabianski","firstname":"Lukasz","position":1,"quotation":14,"ultraPosition":10,"club":"West Ham","teamid":"21","joinDate":"2018-06-20","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_37339","lastname":"Ahmed El Mohamady","firstname":null,"position":2,"quotation":6,"ultraPosition":21,"club":"Aston Villa","teamid":"7","joinDate":"2017-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_37402","lastname":"Fuchs","firstname":"Christian","position":2,"quotation":8,"ultraPosition":21,"club":"Leicester","teamid":"13","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_37614","lastname":"Vrancic","firstname":"Mario","position":3,"quotation":8,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2017-06-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_38290","lastname":"Rose","firstname":"Danny","position":2,"quotation":8,"ultraPosition":21,"club":"Newcastle","teamid":"4","joinDate":"2020-01-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_38439","lastname":"Capoue","firstname":"Etienne","position":3,"quotation":20,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2015-07-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_38490","lastname":"Kayal","firstname":"Beram","position":3,"quotation":3,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2015-01-23","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_39155","lastname":"Lallana","firstname":"Adam","position":3,"quotation":11,"ultraPosition":32,"club":"Liverpool","teamid":"14","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_39215","lastname":"Vorm","firstname":"Michel","position":1,"quotation":7,"ultraPosition":10,"club":"Tottenham","teamid":"6","joinDate":"2019-10-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_39487","lastname":"Pieters","firstname":"Erik","position":2,"quotation":6,"ultraPosition":21,"club":"Burnley","teamid":"90","joinDate":"2019-07-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_40145","lastname":"Cork","firstname":"Jack","position":3,"quotation":11,"ultraPosition":31,"club":"Burnley","teamid":"90","joinDate":"2017-07-11","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_40564","lastname":"Lansbury","firstname":"Henri","position":3,"quotation":3,"ultraPosition":32,"club":"Aston Villa","teamid":"7","joinDate":"2017-01-20","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_40784","lastname":"Sakho","firstname":"Mamadou","position":2,"quotation":3,"ultraPosition":20,"club":"Crystal Palace","teamid":"31","joinDate":"2017-08-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_40845","lastname":"Stephens","firstname":"Dale","position":3,"quotation":13,"ultraPosition":31,"club":"Brighton","teamid":"36","joinDate":"2014-01-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_40868","lastname":"Holebas","firstname":"José","position":2,"quotation":7,"ultraPosition":21,"club":"Watford","teamid":"57","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_41320","lastname":"Daniels","firstname":"Charlie","position":2,"quotation":1,"ultraPosition":21,"club":"Bournemouth","teamid":"91","joinDate":"2012-01-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_41674","lastname":"Long","firstname":"Kevin","position":2,"quotation":1,"ultraPosition":20,"club":"Burnley","teamid":"90","joinDate":"2010-01-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_41727","lastname":"Bennett","firstname":"Ryan","position":2,"quotation":7,"ultraPosition":20,"club":"Leicester","teamid":"13","joinDate":"2020-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_41823","lastname":"Delph","firstname":"Fabian","position":3,"quotation":10,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2019-07-15","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_42525","lastname":"Henderson","firstname":"Stephen","position":1,"quotation":1,"ultraPosition":10,"club":"Crystal Palace","teamid":"31","joinDate":"2019-07-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_42774","lastname":"Schneiderlin","firstname":"Morgan","position":3,"quotation":8,"ultraPosition":31,"club":"Everton","teamid":"11","joinDate":"2017-01-12","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_42824","lastname":"Sánchez","firstname":"Carlos","position":3,"quotation":3,"ultraPosition":31,"club":"West Ham","teamid":"21","joinDate":"2018-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_428610","lastname":"Bruno Jordão","firstname":null,"position":3,"quotation":1,"ultraPosition":31,"club":"Wolverhampton","teamid":"39","joinDate":"2019-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_42899","lastname":"Romero","firstname":"Sergio","position":1,"quotation":7,"ultraPosition":10,"club":"Man. United","teamid":"1","joinDate":"2015-07-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_430990","lastname":"Bearne","firstname":"Jack","position":3,"quotation":1,"ultraPosition":32,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_431131","lastname":"Djenepo","firstname":"Moussa","position":3,"quotation":11,"ultraPosition":32,"club":"Southampton","teamid":"20","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_431774","lastname":"Taylor","firstname":"Kyle","position":3,"quotation":1,"ultraPosition":31,"club":"Bournemouth","teamid":"91","joinDate":"2017-07-28","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_43250","lastname":"Cleverley","firstname":"Tom","position":3,"quotation":7,"ultraPosition":32,"club":"Watford","teamid":"57","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_432656","lastname":"García","firstname":"Eric","position":2,"quotation":8,"ultraPosition":20,"club":"Man. City","teamid":"43","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_432735","lastname":"Idah","firstname":"Adam","position":4,"quotation":3,"ultraPosition":40,"club":"Norwich","teamid":"45","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_432793","lastname":"Ali Koiki","firstname":null,"position":2,"quotation":1,"ultraPosition":21,"club":"Burnley","teamid":"90","joinDate":"2018-12-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_432819","lastname":"Galbraith","firstname":"Ethan","position":3,"quotation":1,"ultraPosition":31,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_432850","lastname":"Taylor","firstname":"Terry","position":3,"quotation":1,"ultraPosition":31,"club":"Wolverhampton","teamid":"39","joinDate":"2019-07-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_432945","lastname":"Spong","firstname":"Jack","position":3,"quotation":1,"ultraPosition":31,"club":"Brighton","teamid":"36","joinDate":"2019-09-24","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_432988","lastname":"Norris","firstname":"James","position":2,"quotation":1,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_432990","lastname":"Larouci","firstname":"Yasser","position":2,"quotation":3,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2019-07-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_433589","lastname":"Roberts","firstname":"Haydon","position":2,"quotation":1,"ultraPosition":20,"club":"Brighton","teamid":"36","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_433952","lastname":"Ramazani","firstname":"Largie","position":4,"quotation":1,"ultraPosition":40,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_433979","lastname":"Archer","firstname":"Cameron","position":4,"quotation":1,"ultraPosition":40,"club":"Aston Villa","teamid":"7","joinDate":"2019-08-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_437688","lastname":"Richards","firstname":"Lewis","position":2,"quotation":1,"ultraPosition":20,"club":"Wolverhampton","teamid":"39","joinDate":"2019-10-29","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_439485","lastname":"Martin","firstname":"Josh","position":3,"quotation":1,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2020-01-24","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_439978","lastname":"Yapi","firstname":"Romaric","position":2,"quotation":1,"ultraPosition":21,"club":"Brighton","teamid":"36","joinDate":"2019-09-24","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_441027","lastname":"Dionkou","firstname":"Alpha Richard","position":2,"quotation":1,"ultraPosition":21,"club":"Man. City","teamid":"43","joinDate":"2019-07-16","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_441271","lastname":"Hoever","firstname":"Ki-Jana","position":2,"quotation":1,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2019-01-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_441302","lastname":"Maatsen","firstname":"Ian","position":2,"quotation":1,"ultraPosition":21,"club":"Chelsea","teamid":"8","joinDate":"2019-07-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_444172","lastname":"Dennis","firstname":"William","position":1,"quotation":1,"ultraPosition":10,"club":"Bournemouth","teamid":"91","joinDate":"2019-08-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_444183","lastname":"Kilkenny","firstname":"Gavin","position":3,"quotation":1,"ultraPosition":32,"club":"Bournemouth","teamid":"91","joinDate":"2019-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_444765","lastname":"van den Berg","firstname":"Sepp","position":2,"quotation":1,"ultraPosition":20,"club":"Liverpool","teamid":"14","joinDate":"2019-06-27","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_444884","lastname":"Elliott","firstname":"Harvey","position":3,"quotation":1,"ultraPosition":32,"club":"Liverpool","teamid":"14","joinDate":"2019-07-28","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_446189","lastname":"Kovar","firstname":"Matej","position":1,"quotation":1,"ultraPosition":10,"club":"Man. United","teamid":"1","joinDate":"2019-11-27","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_44699","lastname":"Barnes","firstname":"Ashley","position":4,"quotation":17,"ultraPosition":40,"club":"Burnley","teamid":"90","joinDate":"2014-01-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_447235","lastname":"Parrott","firstname":"Troy","position":4,"quotation":5,"ultraPosition":40,"club":"Tottenham","teamid":"6","joinDate":"2019-07-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_447879","lastname":"Anang","firstname":"Joseph","position":1,"quotation":1,"ultraPosition":10,"club":"West Ham","teamid":"21","joinDate":"2019-12-25","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_448487","lastname":"Söndergaard","firstname":"Andreas","position":1,"quotation":1,"ultraPosition":10,"club":"Wolverhampton","teamid":"39","joinDate":"2019-08-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_449926","lastname":"Bernabé","firstname":"Adrián","position":3,"quotation":1,"ultraPosition":32,"club":"Man. City","teamid":"43","joinDate":"2018-07-01","availableSince":"2020-01-20T15:03:55Z"},{"id":"player_459373","lastname":"Gonçalo Cardoso","firstname":null,"position":2,"quotation":1,"ultraPosition":20,"club":"West Ham","teamid":"21","joinDate":"2019-08-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_460992","lastname":"Genesini","firstname":"Brooklyn","position":2,"quotation":1,"ultraPosition":20,"club":"Bournemouth","teamid":"91","joinDate":"2020-01-26","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_461026","lastname":"Campbell","firstname":"Chem","position":3,"quotation":1,"ultraPosition":32,"club":"Wolverhampton","teamid":"39","joinDate":"2019-10-29","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_461096","lastname":"Richardson","firstname":"Lewis","position":4,"quotation":1,"ultraPosition":40,"club":"Burnley","teamid":"90","joinDate":"2019-08-27","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_461195","lastname":"Cirkin","firstname":"Dennis","position":2,"quotation":1,"ultraPosition":21,"club":"Tottenham","teamid":"6","joinDate":"2019-07-01","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_461601","lastname":"Hill","firstname":"Thomas","position":4,"quotation":1,"ultraPosition":40,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_461609","lastname":"Stewart","firstname":"Layton","position":4,"quotation":1,"ultraPosition":40,"club":"Liverpool","teamid":"14","joinDate":"2019-12-16","availableSince":"2020-01-29T10:50:28Z"},{"id":"player_461870","lastname":"Gwargis","firstname":"Peter","position":3,"quotation":1,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2019-09-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_466955","lastname":"Pierrick Keutcha","firstname":"Brandon","position":3,"quotation":1,"ultraPosition":32,"club":"Crystal Palace","teamid":"31","joinDate":"2019-12-20","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_47390","lastname":"Taylor","firstname":"Neil","position":2,"quotation":6,"ultraPosition":21,"club":"Aston Villa","teamid":"7","joinDate":"2017-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_474003","lastname":"Campana","firstname":"Leonardo","position":4,"quotation":5,"ultraPosition":40,"club":"Wolverhampton","teamid":"39","joinDate":"2020-01-21","availableSince":"2020-01-23T15:43:28Z"},{"id":"player_475168","lastname":"João Pedro","firstname":null,"position":4,"quotation":6,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2020-01-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_480818","lastname":"Koumetio","firstname":"Billy","position":2,"quotation":1,"ultraPosition":20,"club":"Liverpool","teamid":"14","joinDate":"2019-10-29","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_48717","lastname":"Reid","firstname":"Winston","position":2,"quotation":1,"ultraPosition":20,"club":"West Ham","teamid":"21","joinDate":"2010-08-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_490100","lastname":"Cristóvão","firstname":"Flávio","position":2,"quotation":1,"ultraPosition":20,"club":"Wolverhampton","teamid":"39","joinDate":"2019-10-29","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_49083","lastname":"Luke Freeman","firstname":null,"position":3,"quotation":5,"ultraPosition":32,"club":"Sheffield","teamid":"49","joinDate":"2019-07-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_49262","lastname":"Steele","firstname":"Jason","position":1,"quotation":1,"ultraPosition":10,"club":"Brighton","teamid":"36","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_49384","lastname":"Rodwell","firstname":"Jack","position":3,"quotation":5,"ultraPosition":31,"club":"Sheffield","teamid":"49","joinDate":"2020-01-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_49579","lastname":"Pedro","firstname":null,"position":4,"quotation":7,"ultraPosition":40,"club":"Chelsea","teamid":"8","joinDate":"2015-08-20","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_50093","lastname":"Button","firstname":"David","position":1,"quotation":7,"ultraPosition":10,"club":"Brighton","teamid":"36","joinDate":"2018-07-16","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_50175","lastname":"Welbeck","firstname":"Danny","position":4,"quotation":7,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2019-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_50471","lastname":"McArthur","firstname":"James","position":3,"quotation":15,"ultraPosition":31,"club":"Crystal Palace","teamid":"31","joinDate":"2014-09-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_50472","lastname":"McCarthy","firstname":"James","position":3,"quotation":10,"ultraPosition":31,"club":"Crystal Palace","teamid":"31","joinDate":"2019-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_51927","lastname":"Mee","firstname":"Ben","position":2,"quotation":13,"ultraPosition":20,"club":"Burnley","teamid":"90","joinDate":"2012-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_51938","lastname":"Albrighton","firstname":"Marc","position":3,"quotation":5,"ultraPosition":32,"club":"Leicester","teamid":"13","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_52940","lastname":"Janmaat","firstname":"Daryl","position":2,"quotation":7,"ultraPosition":21,"club":"Watford","teamid":"57","joinDate":"2016-08-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_54102","lastname":"Wilshere","firstname":"Jack","position":3,"quotation":5,"ultraPosition":32,"club":"West Ham","teamid":"21","joinDate":"2018-07-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_54469","lastname":"Adam Smith","firstname":null,"position":2,"quotation":10,"ultraPosition":21,"club":"Bournemouth","teamid":"91","joinDate":"2014-01-28","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_54756","lastname":"Wanyama","firstname":"Victor","position":3,"quotation":1,"ultraPosition":31,"club":"Tottenham","teamid":"6","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_55494","lastname":"Ward","firstname":"Joel","position":2,"quotation":9,"ultraPosition":21,"club":"Crystal Palace","teamid":"31","joinDate":"2012-05-29","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_56192","lastname":"Cuco Martina","firstname":null,"position":2,"quotation":1,"ultraPosition":21,"club":"Everton","teamid":"11","joinDate":"2017-07-17","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_56872","lastname":"Stanislas","firstname":"Junior","position":3,"quotation":7,"ultraPosition":32,"club":"Bournemouth","teamid":"91","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_56917","lastname":"Steve Cook","firstname":null,"position":2,"quotation":8,"ultraPosition":20,"club":"Bournemouth","teamid":"91","joinDate":"2012-01-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_56983","lastname":"Ritchie","firstname":"Matt","position":3,"quotation":11,"ultraPosition":31,"club":"Newcastle","teamid":"4","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_57328","lastname":"Clyne","firstname":"Nathaniel","position":2,"quotation":1,"ultraPosition":21,"club":"Liverpool","teamid":"14","joinDate":"2015-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_57531","lastname":"Antonio","firstname":"Michail","position":3,"quotation":9,"ultraPosition":32,"club":"West Ham","teamid":"21","joinDate":"2015-09-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_58376","lastname":"McCarthy","firstname":"Alex","position":1,"quotation":18,"ultraPosition":10,"club":"Southampton","teamid":"20","joinDate":"2016-08-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_58498","lastname":"Ighalo","firstname":"Odion","position":4,"quotation":12,"ultraPosition":40,"club":"Man. United","teamid":"1","joinDate":"2020-01-31","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_59949","lastname":"Coleman","firstname":"Séamus","position":2,"quotation":8,"ultraPosition":21,"club":"Everton","teamid":"11","joinDate":"2009-02-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_60232","lastname":"Dawson","firstname":"Craig","position":2,"quotation":10,"ultraPosition":20,"club":"Watford","teamid":"57","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_60551","lastname":"Westwood","firstname":"Ashley","position":3,"quotation":17,"ultraPosition":31,"club":"Burnley","teamid":"90","joinDate":"2017-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_61566","lastname":"Pereyra","firstname":"Roberto","position":3,"quotation":15,"ultraPosition":32,"club":"Watford","teamid":"57","joinDate":"2016-08-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_61603","lastname":"Drinkwater","firstname":"Daniel","position":3,"quotation":8,"ultraPosition":31,"club":"Aston Villa","teamid":"7","joinDate":"2020-01-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_61604","lastname":"James","firstname":"Matty","position":3,"quotation":1,"ultraPosition":31,"club":"Leicester","teamid":"13","joinDate":"2012-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_62398","lastname":"Matic","firstname":"Nemanja","position":3,"quotation":11,"ultraPosition":31,"club":"Man. United","teamid":"1","joinDate":"2017-07-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_66242","lastname":"Pröpper","firstname":"Davy","position":3,"quotation":16,"ultraPosition":31,"club":"Brighton","teamid":"36","joinDate":"2017-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_66838","lastname":"Tosun","firstname":"Cenk","position":4,"quotation":9,"ultraPosition":40,"club":"Crystal Palace","teamid":"31","joinDate":"2020-01-10","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_6744","lastname":"Grant","firstname":"Lee","position":1,"quotation":1,"ultraPosition":10,"club":"Man. United","teamid":"1","joinDate":"2018-07-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_68312","lastname":"Shaqiri","firstname":"Xherdan","position":4,"quotation":5,"ultraPosition":40,"club":"Liverpool","teamid":"14","joinDate":"2018-07-13","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_68983","lastname":"Lowton","firstname":"Matthew","position":2,"quotation":10,"ultraPosition":21,"club":"Burnley","teamid":"90","joinDate":"2015-06-22","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_69140","lastname":"Mustafi","firstname":"Shkodran","position":2,"quotation":11,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2016-08-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_71738","lastname":"Stiepermann","firstname":"Marco","position":3,"quotation":8,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2017-08-06","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_73426","lastname":"Gray","firstname":"Andre","position":4,"quotation":9,"ultraPosition":40,"club":"Watford","teamid":"57","joinDate":"2017-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_74230","lastname":"van Aanholt","firstname":"Patrick","position":2,"quotation":13,"ultraPosition":21,"club":"Crystal Palace","teamid":"31","joinDate":"2017-01-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_74375","lastname":"Schelotto","firstname":"Ezequiel","position":2,"quotation":6,"ultraPosition":21,"club":"Brighton","teamid":"36","joinDate":"2017-08-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_74471","lastname":"Mooy","firstname":"Aaron","position":3,"quotation":16,"ultraPosition":32,"club":"Brighton","teamid":"36","joinDate":"2020-01-24","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_74854","lastname":"Moore","firstname":"Simon","position":1,"quotation":3,"ultraPosition":10,"club":"Sheffield","teamid":"49","joinDate":"2016-08-19","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_76306","lastname":"Rupp","firstname":"Lukas","position":3,"quotation":8,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2020-01-13","availableSince":"2020-01-15T12:03:15Z"},{"id":"player_76359","lastname":"Jones","firstname":"Phil","position":2,"quotation":5,"ultraPosition":20,"club":"Man. United","teamid":"1","joinDate":"2011-06-13","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_7645","lastname":"Jagielka","firstname":"Phil","position":2,"quotation":3,"ultraPosition":20,"club":"Sheffield","teamid":"49","joinDate":"2019-07-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_77359","lastname":"Lejeune","firstname":"Florian","position":2,"quotation":9,"ultraPosition":20,"club":"Newcastle","teamid":"4","joinDate":"2017-07-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_78056","lastname":"Romeu","firstname":"Oriol","position":3,"quotation":9,"ultraPosition":31,"club":"Southampton","teamid":"20","joinDate":"2015-08-12","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_78607","lastname":"McLean","firstname":"Kenny","position":3,"quotation":11,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2018-01-21","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_78830","lastname":"Kane","firstname":"Harry","position":4,"quotation":15,"ultraPosition":40,"club":"Tottenham","teamid":"6","joinDate":"2009-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_78916","lastname":"Burn","firstname":"Dan","position":2,"quotation":5,"ultraPosition":20,"club":"Brighton","teamid":"36","joinDate":"2018-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_81012","lastname":"Fredericks","firstname":"Ryan","position":2,"quotation":9,"ultraPosition":21,"club":"West Ham","teamid":"21","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_81048","lastname":"Drmic","firstname":"Josip","position":4,"quotation":6,"ultraPosition":40,"club":"Norwich","teamid":"45","joinDate":"2019-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_81183","lastname":"Vydra","firstname":"Matej","position":4,"quotation":1,"ultraPosition":40,"club":"Burnley","teamid":"90","joinDate":"2018-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_82263","lastname":"Alonso","firstname":"Marcos","position":2,"quotation":4,"ultraPosition":21,"club":"Chelsea","teamid":"8","joinDate":"2016-08-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_83091","lastname":"Borja Bastón","firstname":null,"position":4,"quotation":7,"ultraPosition":40,"club":"Aston Villa","teamid":"7","joinDate":"2020-01-31","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_83312","lastname":"Gibson","firstname":"Ben","position":2,"quotation":1,"ultraPosition":20,"club":"Burnley","teamid":"90","joinDate":"2018-08-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_83314","lastname":"Hendrick","firstname":"Jeff","position":3,"quotation":14,"ultraPosition":32,"club":"Burnley","teamid":"90","joinDate":"2016-08-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_83427","lastname":"Robinson","firstname":"Jack","position":2,"quotation":8,"ultraPosition":21,"club":"Sheffield","teamid":"49","joinDate":"2020-01-21","availableSince":"2020-01-23T15:43:28Z"},{"id":"player_83428","lastname":"Hanley","firstname":"Grant","position":2,"quotation":11,"ultraPosition":20,"club":"Norwich","teamid":"45","joinDate":"2017-08-30","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_8432","lastname":"Pepe Reina","firstname":null,"position":1,"quotation":13,"ultraPosition":10,"club":"Aston Villa","teamid":"7","joinDate":"2020-01-13","availableSince":"2020-01-15T12:03:15Z"},{"id":"player_84384","lastname":"Klose","firstname":"Timm","position":2,"quotation":1,"ultraPosition":20,"club":"Norwich","teamid":"45","joinDate":"2016-01-18","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_85242","lastname":"Hourihane","firstname":"Conor","position":3,"quotation":9,"ultraPosition":31,"club":"Aston Villa","teamid":"7","joinDate":"2017-01-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_85624","lastname":"Kabasele","firstname":"Christian","position":2,"quotation":13,"ultraPosition":20,"club":"Watford","teamid":"57","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_86881","lastname":"Mendy","firstname":"Nampalys","position":3,"quotation":5,"ultraPosition":31,"club":"Leicester","teamid":"13","joinDate":"2016-07-03","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_86934","lastname":"Lanzini","firstname":"Manuel","position":3,"quotation":9,"ultraPosition":32,"club":"West Ham","teamid":"21","joinDate":"2016-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_87121","lastname":"Kieron Freeman","firstname":null,"position":2,"quotation":1,"ultraPosition":21,"club":"Sheffield","teamid":"49","joinDate":"2015-01-23","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_87396","lastname":"Leitner","firstname":"Moritz","position":3,"quotation":6,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2018-07-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_87447","lastname":"Besic","firstname":"Muhamed","position":3,"quotation":8,"ultraPosition":31,"club":"Sheffield","teamid":"49","joinDate":"2019-08-08","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_88894","lastname":"Barkley","firstname":"Ross","position":3,"quotation":6,"ultraPosition":32,"club":"Chelsea","teamid":"8","joinDate":"2018-01-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_89085","lastname":"Chalobah","firstname":"Nathaniel","position":3,"quotation":12,"ultraPosition":31,"club":"Watford","teamid":"57","joinDate":"2017-07-13","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_89274","lastname":"Jota","firstname":null,"position":3,"quotation":3,"ultraPosition":32,"club":"Aston Villa","teamid":"7","joinDate":"2019-06-05","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_89470","lastname":"Hernández","firstname":"Onel","position":3,"quotation":10,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2018-01-25","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_90440","lastname":"Trybull","firstname":"Tom","position":3,"quotation":7,"ultraPosition":31,"club":"Norwich","teamid":"45","joinDate":"2017-08-04","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_90517","lastname":"Brady","firstname":"Robbie","position":3,"quotation":6,"ultraPosition":31,"club":"Burnley","teamid":"90","joinDate":"2017-01-31","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_91047","lastname":"Armstrong","firstname":"Stuart","position":3,"quotation":15,"ultraPosition":32,"club":"Southampton","teamid":"20","joinDate":"2018-06-26","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_92159","lastname":"Willems","firstname":"Jetro","position":2,"quotation":11,"ultraPosition":21,"club":"Newcastle","teamid":"4","joinDate":"2019-08-02","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_92371","lastname":"Marí","firstname":"Pablo","position":2,"quotation":6,"ultraPosition":20,"club":"Arsenal","teamid":"3","joinDate":"2020-01-29","availableSince":"2020-02-05T15:49:13Z"},{"id":"player_93100","lastname":"Vestergaard","firstname":"Jannik","position":2,"quotation":8,"ultraPosition":20,"club":"Southampton","teamid":"20","joinDate":"2018-07-13","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_93264","lastname":"Dier","firstname":"Eric","position":3,"quotation":11,"ultraPosition":31,"club":"Tottenham","teamid":"6","joinDate":"2014-08-01","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_97299","lastname":"Stones","firstname":"John","position":2,"quotation":10,"ultraPosition":20,"club":"Man. City","teamid":"43","joinDate":"2016-08-09","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_98770","lastname":"Nyland","firstname":"Ørjan","position":1,"quotation":7,"ultraPosition":10,"club":"Aston Villa","teamid":"7","joinDate":"2018-08-07","availableSince":"2020-01-08T11:35:41Z"},{"id":"player_98980","lastname":"Martínez","firstname":"Emiliano","position":1,"quotation":7,"ultraPosition":10,"club":"Arsenal","teamid":"3","joinDate":"2011-07-01","availableSince":"2020-01-08T11:35:41Z"}],"userPlayers":[{"id":"player_101668","lastname":"Vardy","firstname":"Jamie","position":4,"quotation":50,"ultraPosition":40,"club":"Leicester","teamid":"13","joinDate":"2012-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":41,"buying_date":"2019-08-07T13:30:31Z","status":2},{"id":"player_172780","lastname":"Maddison","firstname":"James","position":3,"quotation":33,"ultraPosition":32,"club":"Leicester","teamid":"13","joinDate":"2018-06-20","availableSince":"2020-01-08T11:35:41Z","pricePaid":32,"buying_date":"2019-08-07T21:27:06Z","status":2},{"id":"player_88900","lastname":"Stephens","firstname":"Jack","position":2,"quotation":12,"ultraPosition":20,"club":"Southampton","teamid":"20","joinDate":"2011-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":10,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_87835","lastname":"Doherty","firstname":"Matt","position":2,"quotation":13,"ultraPosition":21,"club":"Wolverhampton","teamid":"39","joinDate":"2010-08-19","availableSince":"2020-01-08T11:35:41Z","pricePaid":18,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_49413","lastname":"Tomkins","firstname":"James","position":2,"quotation":12,"ultraPosition":20,"club":"Crystal Palace","teamid":"31","joinDate":"2016-06-05","availableSince":"2020-01-08T11:35:41Z","pricePaid":15,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_47247","lastname":"Fleck","firstname":"John","position":3,"quotation":21,"ultraPosition":32,"club":"Sheffield","teamid":"49","joinDate":"2016-07-08","availableSince":"2020-01-08T11:35:41Z","pricePaid":22,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_40387","lastname":"Gosling","firstname":"Dan","position":3,"quotation":10,"ultraPosition":31,"club":"Bournemouth","teamid":"91","joinDate":"2014-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":6,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_193111","lastname":"Cantwell","firstname":"Todd","position":3,"quotation":21,"ultraPosition":32,"club":"Norwich","teamid":"45","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":20,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_153682","lastname":"Harry Wilson","firstname":null,"position":3,"quotation":20,"ultraPosition":32,"club":"Bournemouth","teamid":"91","joinDate":"2019-08-06","availableSince":"2020-01-08T11:35:41Z","pricePaid":32,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_148225","lastname":"Martial","firstname":"Anthony","position":4,"quotation":23,"ultraPosition":40,"club":"Man. United","teamid":"1","joinDate":"2015-09-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":25,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_131897","lastname":"Ryan","firstname":"Mat","position":1,"quotation":17,"ultraPosition":10,"club":"Brighton","teamid":"36","joinDate":"2017-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":26,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_114283","lastname":"Grealish","firstname":"Jack","position":3,"quotation":33,"ultraPosition":32,"club":"Aston Villa","teamid":"7","joinDate":"2011-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":37,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_110735","lastname":"Webster","firstname":"Adam","position":2,"quotation":12,"ultraPosition":20,"club":"Brighton","teamid":"36","joinDate":"2019-08-03","availableSince":"2020-01-08T11:35:41Z","pricePaid":15,"buying_date":"2019-12-29T15:19:13Z","status":2},{"id":"player_9089","lastname":"Foster","firstname":"Ben","position":1,"quotation":22,"ultraPosition":10,"club":"Watford","teamid":"57","joinDate":"2018-07-05","availableSince":"2020-01-08T11:35:41Z","pricePaid":17,"buying_date":"2019-12-30T02:27:44Z","status":2},{"id":"player_83299","lastname":"Dunk","firstname":"Lewis","position":2,"quotation":20,"ultraPosition":20,"club":"Brighton","teamid":"36","joinDate":"2009-07-01","availableSince":"2020-01-08T11:35:41Z","pricePaid":30,"buying_date":"2019-12-30T02:27:44Z","status":2},{"id":"player_60689","lastname":"Wood","firstname":"Chris","position":4,"quotation":26,"ultraPosition":40,"club":"Burnley","teamid":"90","joinDate":"2017-08-21","availableSince":"2020-01-08T11:35:41Z","pricePaid":32,"buying_date":"2019-12-30T02:27:44Z","status":2},{"id":"player_27436","lastname":"McGoldrick","firstname":"David","position":4,"quotation":8,"ultraPosition":40,"club":"Sheffield","teamid":"49","joinDate":"2018-07-24","availableSince":"2020-01-08T11:35:41Z","pricePaid":11,"buying_date":"2020-01-14T09:28:23Z","status":2},{"id":"player_209046","lastname":"Hudson-Odoi","firstname":"Callum","position":4,"quotation":13,"ultraPosition":40,"club":"Chelsea","teamid":"8","joinDate":"2017-12-19","availableSince":"2020-01-08T11:35:41Z","pricePaid":8,"buying_date":"2020-01-14T09:28:23Z","status":2},{"id":"player_180974","lastname":"Joelinton","firstname":null,"position":4,"quotation":10,"ultraPosition":40,"club":"Newcastle","teamid":"4","joinDate":"2019-07-24","availableSince":"2020-01-08T11:35:41Z","pricePaid":12,"buying_date":"2020-01-20T21:14:24Z","status":2},{"id":"player_194164","lastname":"Holgate","firstname":"Mason","position":2,"quotation":16,"ultraPosition":20,"club":"Everton","teamid":"11","joinDate":"2015-08-25","availableSince":"2020-01-08T11:35:41Z","pricePaid":13,"buying_date":"2020-01-27T21:40:22Z","status":2},{"id":"player_179018","lastname":"Almirón","firstname":"Miguel","position":3,"quotation":17,"ultraPosition":32,"club":"Newcastle","teamid":"4","joinDate":"2019-01-31","availableSince":"2020-01-08T11:35:41Z","pricePaid":15,"buying_date":"2020-01-27T21:40:22Z","status":2}]} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.transfer.buy.MN7VSYBM.20210406.json b/src/test/resources/__files/mpg.transfer.buy.MN7VSYBM.20210406.json deleted file mode 100644 index a132d44..0000000 --- a/src/test/resources/__files/mpg.transfer.buy.MN7VSYBM.20210406.json +++ /dev/null @@ -1 +0,0 @@ -{"leagueId":"MN7VSYBM","turn":25,"season":2,"statusLeague":4,"currentUser":"authorized","championship":5,"statusTeam":2,"leagueMode":2,"budget":30,"currentTeam":"mpg_team_MN7VSYBM$$mpg_user_955966","availablePlayers":[{"id":"player_101820","lastname":"Lobotka","firstname":"Stanislav","position":3,"quotation":7,"ultraPosition":31,"club":"Napoli","teamid":"459","joinDate":"2020-01-15","availableSince":"2020-01-23T15:45:00Z"},{"id":"player_102195","lastname":"Baselli","firstname":"Daniele","position":3,"quotation":5,"ultraPosition":31,"club":"Torino","teamid":"135","joinDate":"2015-07-10","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_102228","lastname":"Pjaca","firstname":"Marko","position":3,"quotation":10,"ultraPosition":32,"club":"Genoa","teamid":"990","joinDate":"2020-09-19","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_102766","lastname":"Djidji","firstname":"Koffi","position":2,"quotation":7,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2020-10-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_103119","lastname":"Meité","firstname":"Soualiho","position":3,"quotation":10,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2021-01-15","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_104080","lastname":"Torregrossa","firstname":"Ernesto","position":4,"quotation":6,"ultraPosition":40,"club":"Sampdoria","teamid":"603","joinDate":"2021-01-11","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_104359","lastname":"Akpa Akpro","firstname":"Jean-Daniel","position":2,"quotation":7,"ultraPosition":21,"club":"Lazio","teamid":"129","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_104529","lastname":"Benali","firstname":"Ahmad","position":3,"quotation":5,"ultraPosition":32,"club":"Crotone","teamid":"744","joinDate":"2018-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_105108","lastname":"Murru","firstname":"Nicola","position":2,"quotation":6,"ultraPosition":21,"club":"Torino","teamid":"135","joinDate":"2020-09-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_105131","lastname":"Antei","firstname":"Luca","position":2,"quotation":1,"ultraPosition":20,"club":"Benevento","teamid":"2000","joinDate":"2018-07-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_105132","lastname":"Verre","firstname":"Valerio","position":3,"quotation":7,"ultraPosition":32,"club":"Sampdoria","teamid":"603","joinDate":"2017-01-30","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_105133","lastname":"Cragno","firstname":"Alessio","position":1,"quotation":23,"ultraPosition":10,"club":"Cagliari","teamid":"124","joinDate":"2014-07-12","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_106008","lastname":"Improta","firstname":"Riccardo","position":3,"quotation":10,"ultraPosition":32,"club":"Benevento","teamid":"2000","joinDate":"2018-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_106247","lastname":"Kyriakopoulos","firstname":"Georgios","position":2,"quotation":8,"ultraPosition":21,"club":"Sassuolo","teamid":"2182","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_106461","lastname":"Patric","firstname":null,"position":2,"quotation":9,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2015-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_107363","lastname":"Hysaj","firstname":"Elseid","position":2,"quotation":8,"ultraPosition":21,"club":"Napoli","teamid":"459","joinDate":"2015-08-03","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_109511","lastname":"Cristante","firstname":"Bryan","position":3,"quotation":15,"ultraPosition":31,"club":"Roma","teamid":"121","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_116056","lastname":"Duncan","firstname":"Joseph Alfred","position":3,"quotation":10,"ultraPosition":31,"club":"Cagliari","teamid":"124","joinDate":"2021-01-16","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_116196","lastname":"Biraschi","firstname":"Davide","position":2,"quotation":1,"ultraPosition":20,"club":"Genoa","teamid":"990","joinDate":"2016-08-31","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_119213","lastname":"Dijks","firstname":"Mitchell","position":2,"quotation":7,"ultraPosition":21,"club":"Bologna","teamid":"123","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_119908","lastname":"Mbaye","firstname":"Ibrahima","position":2,"quotation":10,"ultraPosition":21,"club":"Bologna","teamid":"123","joinDate":"2015-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_12026","lastname":"Terzi","firstname":"Claudio","position":2,"quotation":10,"ultraPosition":20,"club":"Spezia","teamid":"2036","joinDate":"2015-08-04","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_122476","lastname":"Benassi","firstname":"Marco","position":3,"quotation":1,"ultraPosition":32,"club":"Verona","teamid":"126","joinDate":"2020-09-12","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_123309","lastname":"Faragò","firstname":"Paolo","position":2,"quotation":1,"ultraPosition":21,"club":"Bologna","teamid":"123","joinDate":"2021-01-29","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_126541","lastname":"Zima","firstname":"Lukas","position":1,"quotation":3,"ultraPosition":10,"club":"Genoa","teamid":"990","joinDate":"2020-09-19","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_127122","lastname":"Barba","firstname":"Federico","position":2,"quotation":11,"ultraPosition":20,"club":"Benevento","teamid":"2000","joinDate":"2020-09-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_12730","lastname":"Mirante","firstname":"Antonio","position":1,"quotation":7,"ultraPosition":10,"club":"Roma","teamid":"121","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_130963","lastname":"Cataldi","firstname":"Danilo","position":3,"quotation":5,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2012-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_135334","lastname":"Zajc","firstname":"Miha","position":3,"quotation":10,"ultraPosition":31,"club":"Genoa","teamid":"990","joinDate":"2020-09-13","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_140200","lastname":"Strakosha","firstname":"Thomas","position":1,"quotation":7,"ultraPosition":10,"club":"Lazio","teamid":"129","joinDate":"2012-08-11","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_141563","lastname":"Mattiello","firstname":"Federico","position":2,"quotation":3,"ultraPosition":21,"club":"Spezia","teamid":"2036","joinDate":"2020-09-15","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_14715","lastname":"Magnanelli","firstname":"Francesco","position":3,"quotation":7,"ultraPosition":31,"club":"Sassuolo","teamid":"2182","joinDate":"2005-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_147166","lastname":"Sensi","firstname":"Stefano","position":3,"quotation":3,"ultraPosition":31,"club":"Inter","teamid":"127","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_147614","lastname":"Goldaniga","firstname":"Edoardo","position":2,"quotation":10,"ultraPosition":20,"club":"Genoa","teamid":"990","joinDate":"2019-09-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_148215","lastname":"Vecino","firstname":"Matías","position":3,"quotation":1,"ultraPosition":31,"club":"Inter","teamid":"127","joinDate":"2017-08-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_148868","lastname":"Sprocati","firstname":"Mattia","position":3,"quotation":1,"ultraPosition":32,"club":"Parma","teamid":"131","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_149260","lastname":"Bessa","firstname":"Daniel","position":3,"quotation":8,"ultraPosition":32,"club":"Verona","teamid":"126","joinDate":"2017-01-03","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_150710","lastname":"Rugani","firstname":"Daniele","position":2,"quotation":12,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2021-02-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_151873","lastname":"Cyprien","firstname":"Wylan","position":3,"quotation":5,"ultraPosition":32,"club":"Parma","teamid":"131","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_151923","lastname":"Provedel","firstname":"Ivan","position":1,"quotation":13,"ultraPosition":10,"club":"Spezia","teamid":"2036","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_152934","lastname":"Paleari","firstname":"Alberto","position":1,"quotation":3,"ultraPosition":10,"club":"Genoa","teamid":"990","joinDate":"2020-10-04","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_152965","lastname":"Bani","firstname":"Mattia","position":2,"quotation":10,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2021-02-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_153116","lastname":"Olivera","firstname":"Maximiliano","position":2,"quotation":1,"ultraPosition":21,"club":"Fiorentina","teamid":"125","joinDate":"2017-07-01","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_153603","lastname":"Pereiro","firstname":"Gastón","position":3,"quotation":6,"ultraPosition":32,"club":"Cagliari","teamid":"124","joinDate":"2020-01-31","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_153693","lastname":"Gagliolo","firstname":"Riccardo","position":2,"quotation":11,"ultraPosition":21,"club":"Parma","teamid":"131","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_153754","lastname":"Molina","firstname":"Salvatore","position":3,"quotation":9,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2018-08-08","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_155895","lastname":"Calabresi","firstname":"Arturo","position":2,"quotation":5,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2021-01-23","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_156245","lastname":"Montipò","firstname":"Lorenzo","position":1,"quotation":13,"ultraPosition":10,"club":"Benevento","teamid":"2000","joinDate":"2019-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_156293","lastname":"Muriqi","firstname":"Vedat","position":4,"quotation":9,"ultraPosition":40,"club":"Lazio","teamid":"129","joinDate":"2020-09-15","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_156305","lastname":"Escalante","firstname":"Gonzalo","position":3,"quotation":9,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_156689","lastname":"Andreas Pereira","firstname":null,"position":3,"quotation":9,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2020-10-02","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_156707","lastname":"Cerri","firstname":"Alberto","position":4,"quotation":8,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2019-07-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_159039","lastname":"Barreca","firstname":"Antonio","position":2,"quotation":3,"ultraPosition":21,"club":"Fiorentina","teamid":"125","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_159522","lastname":"Ayhan","firstname":"Kaan","position":2,"quotation":8,"ultraPosition":20,"club":"Sassuolo","teamid":"2182","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_160540","lastname":"Toljan","firstname":"Jeremy","position":2,"quotation":9,"ultraPosition":21,"club":"Sassuolo","teamid":"2182","joinDate":"2019-07-11","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_161794","lastname":"Magnani","firstname":"Giangiacomo","position":2,"quotation":10,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-09-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_161918","lastname":"Calabria","firstname":"Davide","position":2,"quotation":20,"ultraPosition":21,"club":"Milan","teamid":"120","joinDate":"2015-01-23","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_161921","lastname":"Capradossi","firstname":"Elio","position":2,"quotation":1,"ultraPosition":20,"club":"Spezia","teamid":"2036","joinDate":"2019-08-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_162330","lastname":"Deiola","firstname":"Alessandro","position":3,"quotation":8,"ultraPosition":31,"club":"Cagliari","teamid":"124","joinDate":"2012-07-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_164099","lastname":"Marlon Santos","firstname":null,"position":2,"quotation":10,"ultraPosition":20,"club":"Sassuolo","teamid":"2182","joinDate":"2018-08-16","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_165196","lastname":"Rrahmani","firstname":"Amir","position":2,"quotation":10,"ultraPosition":20,"club":"Napoli","teamid":"459","joinDate":"2020-01-20","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_166016","lastname":"Simeone","firstname":"Giovanni","position":4,"quotation":9,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_167075","lastname":"Hoedt","firstname":"Wesley","position":2,"quotation":10,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_168290","lastname":"Pussetto","firstname":"Ignacio","position":4,"quotation":5,"ultraPosition":40,"club":"Udinese","teamid":"136","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_168618","lastname":"Luperto","firstname":"Sebastiano","position":2,"quotation":10,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2020-10-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_170857","lastname":"Anderson","firstname":"Djavan","position":2,"quotation":1,"ultraPosition":21,"club":"Lazio","teamid":"129","joinDate":"2018-08-03","availableSince":"2020-01-23T15:45:00Z"},{"id":"player_171366","lastname":"Meret","firstname":"Alex","position":1,"quotation":11,"ultraPosition":10,"club":"Napoli","teamid":"459","joinDate":"2018-07-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_171390","lastname":"Romagna","firstname":"Filippo","position":2,"quotation":1,"ultraPosition":20,"club":"Sassuolo","teamid":"2182","joinDate":"2020-09-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_17192","lastname":"Rosati","firstname":"Antonio","position":1,"quotation":3,"ultraPosition":10,"club":"Fiorentina","teamid":"125","joinDate":"2021-02-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_173131","lastname":"Haraslin","firstname":"Lukas","position":4,"quotation":5,"ultraPosition":40,"club":"Sassuolo","teamid":"2182","joinDate":"2020-09-01","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_17331","lastname":"Gori","firstname":"Pier Graziano","position":1,"quotation":1,"ultraPosition":10,"club":"Benevento","teamid":"2000","joinDate":"2018-07-06","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_174651","lastname":"Caldara","firstname":"Mattia","position":2,"quotation":5,"ultraPosition":20,"club":"Atalanta","teamid":"456","joinDate":"2020-01-11","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_174876","lastname":"Moncini","firstname":"Gabriele","position":4,"quotation":8,"ultraPosition":40,"club":"Benevento","teamid":"2000","joinDate":"2020-01-07","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_176485","lastname":"Pedro Pereira","firstname":null,"position":2,"quotation":10,"ultraPosition":21,"club":"Crotone","teamid":"744","joinDate":"2020-09-21","availableSince":"2020-09-23T12:41:39Z"},{"id":"player_176683","lastname":"Onguéné","firstname":"Jérôme","position":2,"quotation":3,"ultraPosition":20,"club":"Genoa","teamid":"990","joinDate":"2021-01-15","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_17784","lastname":"Pellè","firstname":"Graziano","position":4,"quotation":3,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2021-02-05","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_177880","lastname":"Contini","firstname":"Nikita","position":1,"quotation":3,"ultraPosition":10,"club":"Napoli","teamid":"459","joinDate":"2013-07-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_178724","lastname":"Venuti","firstname":"Lorenzo","position":2,"quotation":9,"ultraPosition":21,"club":"Fiorentina","teamid":"125","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_179296","lastname":"Thorsby","firstname":"Morten","position":3,"quotation":11,"ultraPosition":31,"club":"Sampdoria","teamid":"603","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_181055","lastname":"Gojak","firstname":"Amer","position":3,"quotation":7,"ultraPosition":32,"club":"Torino","teamid":"135","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_181074","lastname":"Minala","firstname":"Joseph","position":3,"quotation":1,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2014-03-01","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_182518","lastname":"Cassata","firstname":"Francesco","position":3,"quotation":6,"ultraPosition":31,"club":"Genoa","teamid":"990","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_182960","lastname":"López","firstname":"Pau","position":1,"quotation":15,"ultraPosition":10,"club":"Roma","teamid":"121","joinDate":"2019-07-10","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_183253","lastname":"Eduardo Henrique","firstname":null,"position":3,"quotation":8,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2020-09-10","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_183383","lastname":"Tello","firstname":"Andrés","position":3,"quotation":9,"ultraPosition":31,"club":"Benevento","teamid":"2000","joinDate":"2018-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_18362","lastname":"Cigarini","firstname":"Luca","position":3,"quotation":1,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2020-09-08","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_18377","lastname":"Padelli","firstname":"Daniele","position":1,"quotation":5,"ultraPosition":10,"club":"Inter","teamid":"127","joinDate":"2017-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_184095","lastname":"Karamoh","firstname":"Yann","position":4,"quotation":11,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_184254","lastname":"Vicario","firstname":"Guglielmo","position":1,"quotation":7,"ultraPosition":10,"club":"Cagliari","teamid":"124","joinDate":"2019-07-17","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_184289","lastname":"Walace","firstname":null,"position":3,"quotation":12,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2019-08-12","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_184661","lastname":"Fares","firstname":"Mohamed","position":3,"quotation":8,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2020-10-01","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_184847","lastname":"Kovalenko","firstname":"Viktor","position":3,"quotation":1,"ultraPosition":32,"club":"Atalanta","teamid":"456","joinDate":"2021-02-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_185521","lastname":"Rüegg","firstname":"Kevin","position":2,"quotation":3,"ultraPosition":21,"club":"Verona","teamid":"126","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_193106","lastname":"Acampora","firstname":"Gennaro","position":3,"quotation":7,"ultraPosition":31,"club":"Spezia","teamid":"2036","joinDate":"2014-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_193183","lastname":"Conti","firstname":"Andrea","position":2,"quotation":7,"ultraPosition":21,"club":"Parma","teamid":"131","joinDate":"2021-01-21","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_193449","lastname":"Samu Castillejo","firstname":null,"position":3,"quotation":11,"ultraPosition":32,"club":"Milan","teamid":"120","joinDate":"2018-08-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_193773","lastname":"Milinkovic-Savic","firstname":"Vanja","position":1,"quotation":7,"ultraPosition":10,"club":"Torino","teamid":"135","joinDate":"2017-07-01","availableSince":"2020-07-10T10:27:23Z"},{"id":"player_195046","lastname":"Ramos","firstname":"Juan","position":2,"quotation":3,"ultraPosition":21,"club":"Spezia","teamid":"2036","joinDate":"2019-07-05","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_195303","lastname":"Rog","firstname":"Marko","position":3,"quotation":5,"ultraPosition":32,"club":"Cagliari","teamid":"124","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_195516","lastname":"Grassi","firstname":"Alberto","position":3,"quotation":7,"ultraPosition":31,"club":"Parma","teamid":"131","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_195559","lastname":"Petriccione","firstname":"Jacopo","position":3,"quotation":10,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2020-10-01","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_195634","lastname":"Castrovilli","firstname":"Gaetano","position":3,"quotation":13,"ultraPosition":32,"club":"Fiorentina","teamid":"125","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_195896","lastname":"Melegoni","firstname":"Filippo","position":3,"quotation":7,"ultraPosition":32,"club":"Genoa","teamid":"990","joinDate":"2020-09-16","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_19620","lastname":"Miguel Veloso","firstname":null,"position":3,"quotation":10,"ultraPosition":31,"club":"Verona","teamid":"126","joinDate":"2019-07-20","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_196302","lastname":"Romero","firstname":"Aristóteles","position":3,"quotation":1,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2017-08-31","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_19760","lastname":"Llorente","firstname":"Fernando","position":4,"quotation":12,"ultraPosition":40,"club":"Udinese","teamid":"136","joinDate":"2021-01-28","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_19902","lastname":"Farelli","firstname":"Simone","position":1,"quotation":3,"ultraPosition":10,"club":"Roma","teamid":"121","joinDate":"2020-10-17","availableSince":"2020-10-28T13:37:33Z"},{"id":"player_199666","lastname":"Makengo","firstname":"Jean-Victor","position":3,"quotation":9,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_20046","lastname":"Okaka","firstname":"Stefano","position":4,"quotation":7,"ultraPosition":40,"club":"Udinese","teamid":"136","joinDate":"2019-09-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_201333","lastname":"Marchizza","firstname":"Riccardo","position":2,"quotation":9,"ultraPosition":20,"club":"Spezia","teamid":"2036","joinDate":"2019-07-15","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_201652","lastname":"Favilli","firstname":"Andrea","position":4,"quotation":7,"ultraPosition":40,"club":"Verona","teamid":"126","joinDate":"2020-09-18","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_202903","lastname":"Ghiglione","firstname":"Paolo","position":2,"quotation":9,"ultraPosition":21,"club":"Genoa","teamid":"990","joinDate":"2015-01-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_204069","lastname":"Léo Sena","firstname":null,"position":3,"quotation":11,"ultraPosition":31,"club":"Spezia","teamid":"2036","joinDate":"2020-10-01","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_204562","lastname":"Osorio","firstname":"Yordan","position":2,"quotation":10,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_204631","lastname":"Erlic","firstname":"Martin","position":2,"quotation":10,"ultraPosition":20,"club":"Spezia","teamid":"2036","joinDate":"2019-07-15","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_205578","lastname":"Golemic","firstname":"Vladimir","position":2,"quotation":10,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2018-08-07","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_208339","lastname":"La Gumina","firstname":"Antonino","position":4,"quotation":5,"ultraPosition":40,"club":"Sampdoria","teamid":"603","joinDate":"2020-01-31","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_209736","lastname":"Martínez Quarta","firstname":"Lucas","position":2,"quotation":12,"ultraPosition":20,"club":"Fiorentina","teamid":"125","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_210912","lastname":"Svanberg","firstname":"Mattias","position":3,"quotation":14,"ultraPosition":31,"club":"Bologna","teamid":"123","joinDate":"2018-07-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_21123","lastname":"Behrami","firstname":"Valon","position":3,"quotation":5,"ultraPosition":31,"club":"Genoa","teamid":"990","joinDate":"2020-01-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_21125","lastname":"De Silvestri","firstname":"Lorenzo","position":2,"quotation":8,"ultraPosition":21,"club":"Bologna","teamid":"123","joinDate":"2020-09-17","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_21155","lastname":"Sirigu","firstname":"Salvatore","position":1,"quotation":12,"ultraPosition":10,"club":"Torino","teamid":"135","joinDate":"2017-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_21207","lastname":"Manfredini","firstname":"Nicolò","position":1,"quotation":7,"ultraPosition":10,"club":"Benevento","teamid":"2000","joinDate":"2019-07-22","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_212314","lastname":"Lukic","firstname":"Sasa","position":3,"quotation":12,"ultraPosition":31,"club":"Torino","teamid":"135","joinDate":"2016-07-29","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_212533","lastname":"Diawara","firstname":"Amadou","position":3,"quotation":10,"ultraPosition":31,"club":"Roma","teamid":"121","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_212667","lastname":"Vojvoda","firstname":"Mergim","position":2,"quotation":8,"ultraPosition":21,"club":"Torino","teamid":"135","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_213534","lastname":"Dell'Orco","firstname":"Cristian","position":2,"quotation":3,"ultraPosition":21,"club":"Spezia","teamid":"2036","joinDate":"2020-09-11","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_213535","lastname":"Radunovic","firstname":"Boris","position":1,"quotation":3,"ultraPosition":10,"club":"Atalanta","teamid":"456","joinDate":"2015-07-18","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_213965","lastname":"Lopez","firstname":"Maxime","position":3,"quotation":11,"ultraPosition":32,"club":"Sassuolo","teamid":"2182","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_214064","lastname":"Estévez","firstname":"Nahuel","position":3,"quotation":10,"ultraPosition":31,"club":"Spezia","teamid":"2036","joinDate":"2020-09-21","availableSince":"2020-09-23T12:41:39Z"},{"id":"player_215145","lastname":"Lammers","firstname":"Sam","position":4,"quotation":3,"ultraPosition":40,"club":"Atalanta","teamid":"456","joinDate":"2020-09-22","availableSince":"2020-09-23T12:41:39Z"},{"id":"player_215312","lastname":"Pezzella","firstname":"Giuseppe","position":2,"quotation":12,"ultraPosition":21,"club":"Parma","teamid":"131","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_215421","lastname":"Vignali","firstname":"Luca","position":2,"quotation":10,"ultraPosition":21,"club":"Spezia","teamid":"2036","joinDate":"2015-08-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_215531","lastname":"Radu","firstname":"Ionut","position":1,"quotation":5,"ultraPosition":10,"club":"Inter","teamid":"127","joinDate":"2015-08-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_215979","lastname":"Gabbia","firstname":"Matteo","position":2,"quotation":3,"ultraPosition":20,"club":"Milan","teamid":"120","joinDate":"2017-05-07","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_215981","lastname":"Luca Pellegrini","firstname":null,"position":2,"quotation":3,"ultraPosition":21,"club":"Genoa","teamid":"990","joinDate":"2020-09-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_216035","lastname":"Tripaldelli","firstname":"Alessandro","position":2,"quotation":5,"ultraPosition":21,"club":"Cagliari","teamid":"124","joinDate":"2020-09-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_216040","lastname":"Pinamonti","firstname":"Andrea","position":4,"quotation":5,"ultraPosition":40,"club":"Inter","teamid":"127","joinDate":"2020-09-18","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_216051","lastname":"Diogo Dalot","firstname":null,"position":2,"quotation":10,"ultraPosition":21,"club":"Milan","teamid":"120","joinDate":"2020-10-04","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_216183","lastname":"Díaz","firstname":"Brahim","position":3,"quotation":7,"ultraPosition":32,"club":"Milan","teamid":"120","joinDate":"2020-09-04","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_218005","lastname":"Ounas","firstname":"Adam","position":3,"quotation":13,"ultraPosition":32,"club":"Crotone","teamid":"744","joinDate":"2021-02-01","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_218127","lastname":"Ouwejan","firstname":"Thomas","position":2,"quotation":5,"ultraPosition":21,"club":"Udinese","teamid":"136","joinDate":"2020-09-03","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_218441","lastname":"Rogerio","firstname":null,"position":2,"quotation":10,"ultraPosition":21,"club":"Sassuolo","teamid":"2182","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_219348","lastname":"Dragus","firstname":"Denis","position":4,"quotation":3,"ultraPosition":40,"club":"Crotone","teamid":"744","joinDate":"2020-09-15","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_221586","lastname":"Molina","firstname":"Nahuel","position":2,"quotation":11,"ultraPosition":21,"club":"Udinese","teamid":"136","joinDate":"2020-09-15","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_221608","lastname":"Vieira","firstname":"Ronaldo","position":3,"quotation":3,"ultraPosition":31,"club":"Verona","teamid":"126","joinDate":"2020-10-03","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_222448","lastname":"Schiappacasse","firstname":"Nicolás","position":4,"quotation":1,"ultraPosition":40,"club":"Sassuolo","teamid":"2182","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_222467","lastname":"Depaoli","firstname":"Fabio","position":2,"quotation":9,"ultraPosition":21,"club":"Benevento","teamid":"2000","joinDate":"2021-01-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_223353","lastname":"Reynolds","firstname":"Bryan","position":2,"quotation":1,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2021-02-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_223434","lastname":"Igor Julio","firstname":null,"position":2,"quotation":8,"ultraPosition":20,"club":"Fiorentina","teamid":"125","joinDate":"2020-01-31","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_224990","lastname":"Müldür","firstname":"Mert","position":2,"quotation":10,"ultraPosition":21,"club":"Sassuolo","teamid":"2182","joinDate":"2019-08-20","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_225050","lastname":"Mohamed","firstname":"Abukar","position":3,"quotation":1,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2017-02-17","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_225942","lastname":"Hauge","firstname":"Jens Petter","position":3,"quotation":9,"ultraPosition":32,"club":"Milan","teamid":"120","joinDate":"2020-10-01","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_226257","lastname":"Armini","firstname":"Nicolò","position":2,"quotation":1,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2017-12-06","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_226262","lastname":"Gyabuaa","firstname":"Emmanuel","position":3,"quotation":1,"ultraPosition":31,"club":"Atalanta","teamid":"456","joinDate":"2020-12-12","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_226263","lastname":"Ghislandi","firstname":"Davide","position":2,"quotation":3,"ultraPosition":21,"club":"Atalanta","teamid":"456","joinDate":"2021-02-01","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_226265","lastname":"Labriola","firstname":"Valerio","position":3,"quotation":1,"ultraPosition":32,"club":"Napoli","teamid":"459","joinDate":"2021-02-17","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_226269","lastname":"Cortinovis","firstname":"Alessandro","position":3,"quotation":1,"ultraPosition":32,"club":"Atalanta","teamid":"456","joinDate":"2020-08-10","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_226270","lastname":"Fagioli","firstname":"Nicolo","position":3,"quotation":3,"ultraPosition":32,"club":"Juventus","teamid":"128","joinDate":"2018-07-01","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_226272","lastname":"Tonin","firstname":"Riccardo","position":4,"quotation":1,"ultraPosition":40,"club":"Milan","teamid":"120","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_226273","lastname":"Vergani","firstname":"Edoardo","position":4,"quotation":1,"ultraPosition":40,"club":"Bologna","teamid":"123","joinDate":"2020-11-21","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_229220","lastname":"Maehle","firstname":"Joakim","position":2,"quotation":11,"ultraPosition":21,"club":"Atalanta","teamid":"456","joinDate":"2021-01-04","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_229798","lastname":"Reca","firstname":"Arkadiusz","position":2,"quotation":11,"ultraPosition":21,"club":"Crotone","teamid":"744","joinDate":"2020-09-25","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_229912","lastname":"Ismajli","firstname":"Ardian","position":2,"quotation":10,"ultraPosition":20,"club":"Spezia","teamid":"2036","joinDate":"2020-09-14","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_230836","lastname":"Zanellato","firstname":"Niccolò","position":3,"quotation":9,"ultraPosition":32,"club":"Crotone","teamid":"744","joinDate":"2018-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_232048","lastname":"Krapikas","firstname":"Titas","position":1,"quotation":3,"ultraPosition":10,"club":"Spezia","teamid":"2036","joinDate":"2019-06-28","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_232061","lastname":"Kouamé","firstname":"Christian","position":4,"quotation":7,"ultraPosition":40,"club":"Fiorentina","teamid":"125","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_235001","lastname":"Antov","firstname":"Valentin","position":2,"quotation":3,"ultraPosition":20,"club":"Bologna","teamid":"123","joinDate":"2021-02-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_235247","lastname":"Cuomo","firstname":"Giuseppe","position":2,"quotation":6,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2016-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_235454","lastname":"Sottil","firstname":"Riccardo","position":4,"quotation":6,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2020-09-10","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_235585","lastname":"Daniel Fuzato","firstname":null,"position":1,"quotation":3,"ultraPosition":10,"club":"Roma","teamid":"121","joinDate":"2018-07-09","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_235879","lastname":"Ravaglia","firstname":"Federico","position":1,"quotation":3,"ultraPosition":10,"club":"Bologna","teamid":"123","joinDate":"2016-09-10","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_235934","lastname":"Brunetta","firstname":"Juan","position":3,"quotation":7,"ultraPosition":32,"club":"Parma","teamid":"131","joinDate":"2020-10-03","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_240939","lastname":"Peeters","firstname":"Daouda","position":3,"quotation":1,"ultraPosition":31,"club":"Juventus","teamid":"128","joinDate":"2020-02-21","availableSince":"2020-03-11T11:42:57Z"},{"id":"player_244290","lastname":"Vignato","firstname":"Emanuel","position":3,"quotation":9,"ultraPosition":32,"club":"Bologna","teamid":"123","joinDate":"2020-01-20","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_244421","lastname":"Vrioni","firstname":"Giacomo","position":4,"quotation":1,"ultraPosition":40,"club":"Juventus","teamid":"128","joinDate":"2020-06-11","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_245414","lastname":"Zaniolo","firstname":"Nicolò","position":3,"quotation":1,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_246002","lastname":"Frabotta","firstname":"Gianluca","position":2,"quotation":7,"ultraPosition":21,"club":"Juventus","teamid":"128","joinDate":"2020-07-29","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_247359","lastname":"Buongiorno","firstname":"Alessandro","position":2,"quotation":3,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2017-02-04","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_247362","lastname":"Breza","firstname":"Sebastian","position":1,"quotation":1,"ultraPosition":10,"club":"Bologna","teamid":"123","joinDate":"2020-09-01","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_247388","lastname":"Rafia","firstname":"Hamza","position":3,"quotation":1,"ultraPosition":32,"club":"Juventus","teamid":"128","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_248881","lastname":"de Winter","firstname":"Koni","position":2,"quotation":1,"ultraPosition":20,"club":"Juventus","teamid":"128","joinDate":"2020-10-27","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_248888","lastname":"Persyn","firstname":"Tibo","position":3,"quotation":1,"ultraPosition":32,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_250199","lastname":"Domínguez","firstname":"Nicolás","position":3,"quotation":12,"ultraPosition":31,"club":"Bologna","teamid":"123","joinDate":"2019-08-30","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_250992","lastname":"Prelec","firstname":"Nik","position":4,"quotation":1,"ultraPosition":40,"club":"Sampdoria","teamid":"603","joinDate":"2020-08-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_27300","lastname":"Cristián Zapata","firstname":null,"position":2,"quotation":5,"ultraPosition":20,"club":"Genoa","teamid":"990","joinDate":"2019-07-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_27794","lastname":"Valero","firstname":"Borja","position":3,"quotation":9,"ultraPosition":31,"club":"Fiorentina","teamid":"125","joinDate":"2020-09-16","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_32286","lastname":"Di Carmine","firstname":"Samuel","position":4,"quotation":9,"ultraPosition":40,"club":"Crotone","teamid":"744","joinDate":"2021-01-28","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_33871","lastname":"Klavan","firstname":"Ragnar","position":2,"quotation":6,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2018-08-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_37020","lastname":"Iacoponi","firstname":"Simone","position":2,"quotation":7,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2017-01-31","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_38476","lastname":"Peluso","firstname":"Federico","position":2,"quotation":5,"ultraPosition":21,"club":"Sassuolo","teamid":"2182","joinDate":"2014-07-04","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_38479","lastname":"Marchetti","firstname":"Federico","position":1,"quotation":7,"ultraPosition":10,"club":"Genoa","teamid":"990","joinDate":"2018-07-04","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_38597","lastname":"Ravaglia","firstname":"Nicola","position":1,"quotation":5,"ultraPosition":10,"club":"Sampdoria","teamid":"603","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_39167","lastname":"Ranocchia","firstname":"Andrea","position":2,"quotation":5,"ultraPosition":20,"club":"Inter","teamid":"127","joinDate":"2011-01-03","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_39354","lastname":"Aresti","firstname":"Simone","position":1,"quotation":3,"ultraPosition":10,"club":"Cagliari","teamid":"124","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_39481","lastname":"Hetemaj","firstname":"Perparim","position":3,"quotation":10,"ultraPosition":32,"club":"Benevento","teamid":"2000","joinDate":"2019-09-02","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_39570","lastname":"Forestieri","firstname":"Fernando","position":4,"quotation":3,"ultraPosition":40,"club":"Udinese","teamid":"136","joinDate":"2020-09-08","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_39781","lastname":"De Maio","firstname":"Sebastien","position":2,"quotation":8,"ultraPosition":20,"club":"Udinese","teamid":"136","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_39830","lastname":"Poli","firstname":"Andrea","position":3,"quotation":10,"ultraPosition":31,"club":"Bologna","teamid":"123","joinDate":"2017-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_40239","lastname":"Sau","firstname":"Marco","position":4,"quotation":9,"ultraPosition":40,"club":"Benevento","teamid":"2000","joinDate":"2019-07-23","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_40792","lastname":"Fazio","firstname":"Federico","position":2,"quotation":6,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2017-07-15","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_41945","lastname":"Prödl","firstname":"Sebastian","position":2,"quotation":1,"ultraPosition":20,"club":"Udinese","teamid":"136","joinDate":"2020-02-04","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_423768","lastname":"Léris","firstname":"Mehdi","position":3,"quotation":5,"ultraPosition":32,"club":"Sampdoria","teamid":"603","joinDate":"2019-08-12","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_425703","lastname":"Israel","firstname":"Franco","position":1,"quotation":1,"ultraPosition":10,"club":"Juventus","teamid":"128","joinDate":"2020-11-23","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_42593","lastname":"Kolarov","firstname":"Aleksandar","position":2,"quotation":5,"ultraPosition":21,"club":"Inter","teamid":"127","joinDate":"2020-09-08","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_42825","lastname":"Ujkani","firstname":"Samir","position":1,"quotation":3,"ultraPosition":10,"club":"Torino","teamid":"135","joinDate":"2019-09-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_428785","lastname":"Chabot","firstname":"Julian","position":2,"quotation":6,"ultraPosition":20,"club":"Spezia","teamid":"2036","joinDate":"2020-09-24","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_428897","lastname":"Eddie Salcedo","firstname":null,"position":4,"quotation":7,"ultraPosition":40,"club":"Verona","teamid":"126","joinDate":"2020-09-25","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_429187","lastname":"Walukiewicz","firstname":"Sebastian","position":2,"quotation":6,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2019-01-15","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_429453","lastname":"Tramoni","firstname":"Matteo","position":3,"quotation":1,"ultraPosition":32,"club":"Cagliari","teamid":"124","joinDate":"2020-09-22","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_430368","lastname":"Skov Olsen","firstname":"Andreas","position":3,"quotation":9,"ultraPosition":32,"club":"Bologna","teamid":"123","joinDate":"2019-07-24","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_430848","lastname":"Ilic","firstname":"Ivan","position":3,"quotation":13,"ultraPosition":31,"club":"Verona","teamid":"126","joinDate":"2020-09-08","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_432422","lastname":"Tonali","firstname":"Sandro","position":3,"quotation":9,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2020-09-09","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_433059","lastname":"Kumbulla","firstname":"Marash","position":2,"quotation":6,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2020-09-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_433060","lastname":"Borghetto","firstname":"Nicola","position":1,"quotation":1,"ultraPosition":10,"club":"Verona","teamid":"126","joinDate":"2017-07-01","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_433128","lastname":"Turati","firstname":"Stefano","position":1,"quotation":3,"ultraPosition":10,"club":"Sassuolo","teamid":"2182","joinDate":"2018-09-21","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_433734","lastname":"Çetin","firstname":"Yildirim Mert","position":2,"quotation":5,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_435580","lastname":"Micin","firstname":"Petar","position":3,"quotation":1,"ultraPosition":32,"club":"Udinese","teamid":"136","joinDate":"2018-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_43693","lastname":"Cáceres","firstname":"Martín","position":2,"quotation":7,"ultraPosition":20,"club":"Fiorentina","teamid":"125","joinDate":"2019-08-30","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_437743","lastname":"Foulon","firstname":"Daam","position":2,"quotation":9,"ultraPosition":21,"club":"Benevento","teamid":"2000","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_437784","lastname":"Nicolussi Caviglia","firstname":"Hans","position":3,"quotation":1,"ultraPosition":32,"club":"Parma","teamid":"131","joinDate":"2020-10-05","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_437791","lastname":"Di Pardo","firstname":"Alessandro","position":3,"quotation":7,"ultraPosition":32,"club":"Juventus","teamid":"128","joinDate":"2018-07-01","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_437801","lastname":"Capellini","firstname":"Riccardo","position":2,"quotation":1,"ultraPosition":20,"club":"Juventus","teamid":"128","joinDate":"2021-01-12","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_437802","lastname":"Portanova","firstname":"Manolo","position":3,"quotation":3,"ultraPosition":32,"club":"Genoa","teamid":"990","joinDate":"2021-01-28","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_439128","lastname":"Demiral","firstname":"Merih","position":2,"quotation":11,"ultraPosition":20,"club":"Juventus","teamid":"128","joinDate":"2019-07-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_440299","lastname":"De Marino","firstname":"Davide","position":2,"quotation":1,"ultraPosition":20,"club":"Juventus","teamid":"128","joinDate":"2021-03-05","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_440705","lastname":"Gasparini","firstname":"Manuel","position":1,"quotation":3,"ultraPosition":10,"club":"Udinese","teamid":"136","joinDate":"2017-11-18","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_440855","lastname":"Marqués","firstname":"Alejandro","position":4,"quotation":1,"ultraPosition":40,"club":"Juventus","teamid":"128","joinDate":"2021-02-26","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_444845","lastname":"Agudelo","firstname":"Kevin","position":3,"quotation":9,"ultraPosition":32,"club":"Spezia","teamid":"2036","joinDate":"2020-09-16","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_446969","lastname":"Raspadori","firstname":"Giacomo","position":4,"quotation":8,"ultraPosition":40,"club":"Sassuolo","teamid":"2182","joinDate":"2018-03-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_448055","lastname":"Sanogo","firstname":"Siriki","position":3,"quotation":1,"ultraPosition":31,"club":"Benevento","teamid":"2000","joinDate":"2018-03-30","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_449580","lastname":"Baldursson","firstname":"Andri Fannar","position":3,"quotation":3,"ultraPosition":31,"club":"Bologna","teamid":"123","joinDate":"2019-10-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_449700","lastname":"Novella","firstname":"Mattia","position":2,"quotation":1,"ultraPosition":21,"club":"Lazio","teamid":"129","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_449750","lastname":"Ferigra","firstname":"Erick","position":2,"quotation":1,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2018-04-28","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_449790","lastname":"Sohm","firstname":"Simon","position":3,"quotation":6,"ultraPosition":32,"club":"Parma","teamid":"131","joinDate":"2020-10-04","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_449822","lastname":"Jocic","firstname":"Bogdan","position":3,"quotation":1,"ultraPosition":32,"club":"Verona","teamid":"126","joinDate":"2019-01-18","availableSince":"2020-01-23T15:45:00Z"},{"id":"player_449991","lastname":"Felix Correia","firstname":null,"position":4,"quotation":1,"ultraPosition":40,"club":"Juventus","teamid":"128","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_450014","lastname":"Gelmi","firstname":"Ludovico","position":1,"quotation":1,"ultraPosition":10,"club":"Atalanta","teamid":"456","joinDate":"2020-08-10","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_450017","lastname":"Ponsi","firstname":"Fabio","position":2,"quotation":1,"ultraPosition":21,"club":"Fiorentina","teamid":"125","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_450019","lastname":"Jean Greco","firstname":null,"position":3,"quotation":1,"ultraPosition":31,"club":"Torino","teamid":"135","joinDate":"2020-06-19","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_450024","lastname":"Rovella","firstname":"Nicolò","position":3,"quotation":7,"ultraPosition":31,"club":"Genoa","teamid":"990","joinDate":"2021-01-29","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_450048","lastname":"Askildsen","firstname":"Kristoffer","position":3,"quotation":3,"ultraPosition":31,"club":"Sampdoria","teamid":"603","joinDate":"2020-09-01","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_450393","lastname":"Ranocchia","firstname":"Filippo","position":3,"quotation":1,"ultraPosition":31,"club":"Juventus","teamid":"128","joinDate":"2021-01-12","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_450782","lastname":"Villar","firstname":"Gonzalo","position":3,"quotation":10,"ultraPosition":31,"club":"Roma","teamid":"121","joinDate":"2020-01-30","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_455774","lastname":"Sutalo","firstname":"Bosko","position":2,"quotation":5,"ultraPosition":20,"club":"Atalanta","teamid":"456","joinDate":"2020-01-30","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_455805","lastname":"Dumbravanu","firstname":"Daniel","position":2,"quotation":1,"ultraPosition":20,"club":"Genoa","teamid":"990","joinDate":"2020-10-18","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_458249","lastname":"Zirkzee","firstname":"Joshua","position":4,"quotation":3,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2021-02-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_458919","lastname":"Czyborra","firstname":"Lennart","position":2,"quotation":9,"ultraPosition":21,"club":"Genoa","teamid":"990","joinDate":"2020-09-09","availableSince":"2020-01-23T15:45:00Z"},{"id":"player_459089","lastname":"Pandur","firstname":"Ivor","position":1,"quotation":3,"ultraPosition":10,"club":"Verona","teamid":"126","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_459362","lastname":"Tòfol Montiel","firstname":null,"position":3,"quotation":3,"ultraPosition":32,"club":"Fiorentina","teamid":"125","joinDate":"2018-07-27","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_459897","lastname":"Busi","firstname":"Maxime","position":2,"quotation":7,"ultraPosition":21,"club":"Parma","teamid":"131","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_46197","lastname":"Mandzukic","firstname":"Mario","position":4,"quotation":6,"ultraPosition":40,"club":"Milan","teamid":"120","joinDate":"2021-01-19","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_462487","lastname":"Valenti","firstname":"Lautaro","position":2,"quotation":5,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2020-09-26","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_462538","lastname":"Musa Juwara","firstname":null,"position":4,"quotation":3,"ultraPosition":40,"club":"Bologna","teamid":"123","joinDate":"2019-10-26","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_463440","lastname":"Michelis","firstname":"Nikolaos","position":3,"quotation":1,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2020-09-04","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_465626","lastname":"Stankovic","firstname":"Filip","position":1,"quotation":1,"ultraPosition":10,"club":"Inter","teamid":"127","joinDate":"2020-02-01","availableSince":"2020-02-05T15:46:38Z"},{"id":"player_465628","lastname":"Oristanio","firstname":"Gaetano Pio","position":4,"quotation":1,"ultraPosition":40,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_465658","lastname":"Chio","firstname":"Riccardo Boscolo","position":3,"quotation":1,"ultraPosition":31,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_465697","lastname":"Providence","firstname":"Ruben","position":3,"quotation":1,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_465701","lastname":"Raul Moro","firstname":null,"position":4,"quotation":1,"ultraPosition":40,"club":"Lazio","teamid":"129","joinDate":"2020-06-20","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_465734","lastname":"Cioffi","firstname":"Antonio","position":4,"quotation":1,"ultraPosition":40,"club":"Napoli","teamid":"459","joinDate":"2020-01-01","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_465737","lastname":"Daniele","firstname":"Antonio Pio","position":1,"quotation":1,"ultraPosition":10,"club":"Napoli","teamid":"459","joinDate":"2018-10-01","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_465803","lastname":"Zedadka","firstname":"Karim","position":3,"quotation":1,"ultraPosition":31,"club":"Napoli","teamid":"459","joinDate":"2019-03-16","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_466030","lastname":"Braaf","firstname":"Jayden","position":4,"quotation":3,"ultraPosition":40,"club":"Udinese","teamid":"136","joinDate":"2021-02-01","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_466041","lastname":"Kalulu","firstname":"Pierre","position":2,"quotation":7,"ultraPosition":21,"club":"Milan","teamid":"120","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_466075","lastname":"Calafiori","firstname":"Riccardo","position":2,"quotation":1,"ultraPosition":21,"club":"Roma","teamid":"121","joinDate":"2019-10-23","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_466102","lastname":"Gabriel Pereira Valadares","firstname":null,"position":3,"quotation":1,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2020-11-20","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_466123","lastname":"Spina","firstname":"Raffaele","position":2,"quotation":1,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_466126","lastname":"Riccio","firstname":"Alessandro Pio","position":2,"quotation":1,"ultraPosition":20,"club":"Juventus","teamid":"128","joinDate":"2020-10-27","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_466135","lastname":"Boer","firstname":"Pietro","position":1,"quotation":1,"ultraPosition":10,"club":"Roma","teamid":"121","joinDate":"2020-09-08","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_466147","lastname":"Zalewski","firstname":"Nicola","position":3,"quotation":1,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_466148","lastname":"Bove","firstname":"Edoardo","position":3,"quotation":1,"ultraPosition":31,"club":"Roma","teamid":"121","joinDate":"2020-09-19","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_466149","lastname":"Cancellieri","firstname":"Matteo","position":4,"quotation":1,"ultraPosition":40,"club":"Verona","teamid":"126","joinDate":"2020-09-17","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_466150","lastname":"Milanese","firstname":"Tommaso","position":3,"quotation":1,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2020-10-28","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_466151","lastname":"Bamba","firstname":"Mory","position":4,"quotation":1,"ultraPosition":40,"club":"Roma","teamid":"121","joinDate":"2020-12-05","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_466941","lastname":"Costanzo","firstname":"Davide","position":2,"quotation":1,"ultraPosition":20,"club":"Napoli","teamid":"459","joinDate":"2021-02-01","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_466946","lastname":"Idasiak","firstname":"Hubert Dawid","position":1,"quotation":1,"ultraPosition":10,"club":"Napoli","teamid":"459","joinDate":"2019-07-01","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_467101","lastname":"Camara","firstname":"Drissa","position":3,"quotation":1,"ultraPosition":32,"club":"Parma","teamid":"131","joinDate":"2018-10-05","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_467138","lastname":"Amione","firstname":"Bruno","position":2,"quotation":1,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-10-03","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_467205","lastname":"Rojas","firstname":"Luis","position":3,"quotation":5,"ultraPosition":32,"club":"Crotone","teamid":"744","joinDate":"2020-10-15","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_467208","lastname":"Ferrer","firstname":"Salvador","position":2,"quotation":7,"ultraPosition":21,"club":"Spezia","teamid":"2036","joinDate":"2019-08-12","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_467209","lastname":"Avogadri","firstname":"Lorenzo","position":1,"quotation":1,"ultraPosition":10,"club":"Sampdoria","teamid":"603","joinDate":"2019-07-15","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_468220","lastname":"Gabriel Pereira","firstname":null,"position":1,"quotation":3,"ultraPosition":10,"club":"Lazio","teamid":"129","joinDate":"2020-11-20","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_470329","lastname":"Kaique Rocha","firstname":null,"position":2,"quotation":1,"ultraPosition":21,"club":"Sampdoria","teamid":"603","joinDate":"2019-09-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_470501","lastname":"Colley","firstname":"Ebrima","position":3,"quotation":7,"ultraPosition":32,"club":"Verona","teamid":"126","joinDate":"2020-09-23","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_471435","lastname":"Alia","firstname":"Marco","position":1,"quotation":5,"ultraPosition":10,"club":"Lazio","teamid":"129","joinDate":"2018-11-28","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_472713","lastname":"Hickey","firstname":"Aaron","position":2,"quotation":3,"ultraPosition":21,"club":"Bologna","teamid":"123","joinDate":"2020-09-24","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_474843","lastname":"Satriano","firstname":"Martín","position":4,"quotation":1,"ultraPosition":40,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_477121","lastname":"Balogh","firstname":"Botond","position":2,"quotation":1,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2019-12-04","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_477131","lastname":"Kosznovszky","firstname":"Márk","position":3,"quotation":1,"ultraPosition":31,"club":"Parma","teamid":"131","joinDate":"2020-05-20","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_477632","lastname":"Darboe","firstname":"Ebrima","position":3,"quotation":1,"ultraPosition":31,"club":"Roma","teamid":"121","joinDate":"2019-10-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_477633","lastname":"Galeazzi","firstname":"Felipe Estrella","position":4,"quotation":1,"ultraPosition":40,"club":"Roma","teamid":"121","joinDate":"2020-01-22","availableSince":"2020-01-29T10:49:18Z"},{"id":"player_477636","lastname":"Tripi","firstname":"Filippo","position":2,"quotation":1,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2020-11-02","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_478605","lastname":"Munteanu","firstname":"Louis","position":4,"quotation":1,"ultraPosition":40,"club":"Fiorentina","teamid":"125","joinDate":"2021-02-04","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_478960","lastname":"Singo","firstname":"Wilfried Stephane","position":2,"quotation":14,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2019-03-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_480489","lastname":"Battistella","firstname":"Thomas","position":3,"quotation":1,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2019-03-16","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_481509","lastname":"Jungdal","firstname":"Andreas","position":1,"quotation":1,"ultraPosition":10,"club":"Milan","teamid":"120","joinDate":"2020-09-04","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_482120","lastname":"Ndrecka","firstname":"Angelo","position":2,"quotation":1,"ultraPosition":21,"club":"Lazio","teamid":"129","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_482301","lastname":"Zito","firstname":null,"position":4,"quotation":1,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2020-10-16","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_483988","lastname":"Lovato","firstname":"Matteo","position":2,"quotation":9,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-06-20","availableSince":"2020-07-10T10:27:23Z"},{"id":"player_484456","lastname":"Di Serio","firstname":"Giuseppe","position":4,"quotation":5,"ultraPosition":40,"club":"Benevento","teamid":"2000","joinDate":"2019-05-09","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_484457","lastname":"Pastina","firstname":"Christian","position":2,"quotation":3,"ultraPosition":20,"club":"Benevento","teamid":"2000","joinDate":"2019-05-09","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_484471","lastname":"Furlanetto","firstname":"Alessio","position":1,"quotation":3,"ultraPosition":10,"club":"Lazio","teamid":"129","joinDate":"2019-05-11","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_485176","lastname":"Aké","firstname":"Marley","position":3,"quotation":3,"ultraPosition":32,"club":"Juventus","teamid":"128","joinDate":"2021-02-01","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_485254","lastname":"Cerbara","firstname":"Alessandro","position":3,"quotation":1,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2019-05-25","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_487053","lastname":"Destiny Udogie","firstname":"Iyenoma","position":2,"quotation":3,"ultraPosition":21,"club":"Verona","teamid":"126","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_487709","lastname":"Zagaritis","firstname":"Vasilios","position":2,"quotation":1,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2021-01-22","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_487988","lastname":"Molla","firstname":"Marco","position":1,"quotation":1,"ultraPosition":10,"club":"Bologna","teamid":"123","joinDate":"2019-08-14","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_487989","lastname":"Panada","firstname":"Simone","position":3,"quotation":1,"ultraPosition":31,"club":"Atalanta","teamid":"456","joinDate":"2020-11-24","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_487992","lastname":"Ruggeri","firstname":"Matteo","position":2,"quotation":5,"ultraPosition":21,"club":"Atalanta","teamid":"456","joinDate":"2020-09-25","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_487994","lastname":"Squizzato","firstname":"Niccolò","position":3,"quotation":1,"ultraPosition":31,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_488159","lastname":"Lorenzo Moretti","firstname":null,"position":2,"quotation":1,"ultraPosition":20,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_488253","lastname":"Maldini","firstname":"Daniel","position":3,"quotation":3,"ultraPosition":32,"club":"Milan","teamid":"120","joinDate":"2019-07-21","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_488254","lastname":"Capone","firstname":"Andrea","position":4,"quotation":1,"ultraPosition":40,"club":"Milan","teamid":"120","joinDate":"2019-07-21","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_488255","lastname":"Mionic","firstname":"Antonio","position":3,"quotation":1,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2019-07-21","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_48844","lastname":"Ospina","firstname":"David","position":1,"quotation":11,"ultraPosition":10,"club":"Napoli","teamid":"459","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_488443","lastname":"Vianni","firstname":"Samuele","position":4,"quotation":1,"ultraPosition":40,"club":"Torino","teamid":"135","joinDate":"2020-09-02","availableSince":"2020-10-28T13:37:33Z"},{"id":"player_48853","lastname":"Medel","firstname":"Gary","position":3,"quotation":8,"ultraPosition":31,"club":"Bologna","teamid":"123","joinDate":"2019-08-29","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_489245","lastname":"Horváth","firstname":"Krisztofer","position":3,"quotation":1,"ultraPosition":32,"club":"Torino","teamid":"135","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_489371","lastname":"Mignogna","firstname":"Massimiliano","position":2,"quotation":1,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2019-07-27","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_490060","lastname":"Itrak","firstname":"Mateo","position":3,"quotation":1,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2019-07-01","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_490747","lastname":"Caso","firstname":"Giuseppe","position":4,"quotation":1,"ultraPosition":40,"club":"Genoa","teamid":"990","joinDate":"2020-09-14","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_492807","lastname":"D'Agostino","firstname":"Giuseppe","position":3,"quotation":1,"ultraPosition":32,"club":"Napoli","teamid":"459","joinDate":"2021-02-17","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_492860","lastname":"Wieser","firstname":"David","position":3,"quotation":1,"ultraPosition":31,"club":"Inter","teamid":"127","joinDate":"2020-10-30","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_492864","lastname":"Sottini","firstname":"Edoardo","position":2,"quotation":1,"ultraPosition":20,"club":"Inter","teamid":"127","joinDate":"2020-08-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_492865","lastname":"Cortinovis","firstname":"Fabio","position":2,"quotation":1,"ultraPosition":20,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_492866","lastname":"Vezzoni","firstname":"Franco Orlando","position":3,"quotation":1,"ultraPosition":31,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_492870","lastname":"Cancello","firstname":"Rosario","position":4,"quotation":1,"ultraPosition":40,"club":"Torino","teamid":"135","joinDate":"2020-09-17","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_492961","lastname":"Dierckx","firstname":"Daan","position":2,"quotation":1,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2021-01-01","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_493112","lastname":"Da Graca","firstname":"Cosimo Marco","position":4,"quotation":1,"ultraPosition":40,"club":"Juventus","teamid":"128","joinDate":"2020-12-01","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_493116","lastname":"Garofani","firstname":"Giovanni Gabriele","position":1,"quotation":1,"ultraPosition":10,"club":"Juventus","teamid":"128","joinDate":"2020-11-27","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_493125","lastname":"Dragusin","firstname":"Radu","position":2,"quotation":1,"ultraPosition":20,"club":"Juventus","teamid":"128","joinDate":"2020-11-07","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_493271","lastname":"Bertini","firstname":"Lorenzo","position":4,"quotation":1,"ultraPosition":40,"club":"Verona","teamid":"126","joinDate":"2020-11-21","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_493353","lastname":"Karamoko","firstname":"Isaac","position":4,"quotation":1,"ultraPosition":40,"club":"Sassuolo","teamid":"2182","joinDate":"2021-01-16","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_494251","lastname":"Yakubiv","firstname":"Sergio","position":2,"quotation":1,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2019-10-04","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_49485","lastname":"Asamoah","firstname":"Kwadwo","position":2,"quotation":5,"ultraPosition":21,"club":"Cagliari","teamid":"124","joinDate":"2021-02-03","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_495227","lastname":"Rinaldi","firstname":"Filippo","position":1,"quotation":1,"ultraPosition":10,"club":"Parma","teamid":"131","joinDate":"2020-09-19","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_495527","lastname":"Piccinini","firstname":"Stefano","position":2,"quotation":1,"ultraPosition":20,"club":"Sassuolo","teamid":"2182","joinDate":"2019-10-19","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_496275","lastname":"Portanova","firstname":"Denis","position":2,"quotation":1,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2020-10-16","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_496285","lastname":"Kryeziu","firstname":"Altin","position":3,"quotation":1,"ultraPosition":31,"club":"Torino","teamid":"135","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_496855","lastname":"Cleonise","firstname":"Denilho","position":4,"quotation":1,"ultraPosition":40,"club":"Genoa","teamid":"990","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_497520","lastname":"Lucatelli","firstname":"Igor","position":1,"quotation":3,"ultraPosition":10,"club":"Benevento","teamid":"2000","joinDate":"2020-09-24","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_497521","lastname":"D'Alterio","firstname":"Francesco","position":1,"quotation":1,"ultraPosition":10,"club":"Crotone","teamid":"744","joinDate":"2019-11-08","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_497953","lastname":"Palumbo","firstname":"Martin","position":3,"quotation":1,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2020-06-23","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_499164","lastname":"Eboa Ebongue","firstname":"Steeve-Mike","position":3,"quotation":1,"ultraPosition":31,"club":"Genoa","teamid":"990","joinDate":"2019-12-02","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_499194","lastname":"Oddei","firstname":"Brian","position":4,"quotation":3,"ultraPosition":40,"club":"Sassuolo","teamid":"2182","joinDate":"2019-12-03","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_49940","lastname":"Regini","firstname":"Vasco","position":2,"quotation":3,"ultraPosition":20,"club":"Sampdoria","teamid":"603","joinDate":"2009-01-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_499440","lastname":"Artistico","firstname":"Gabriele","position":4,"quotation":1,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2019-12-04","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_50016","lastname":"Rispoli","firstname":"Andrea","position":2,"quotation":8,"ultraPosition":21,"club":"Crotone","teamid":"744","joinDate":"2020-09-08","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_501395","lastname":"Carboni","firstname":"Andrea","position":2,"quotation":3,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2020-01-05","availableSince":"2020-01-08T11:23:55Z"},{"id":"player_50322","lastname":"Colombi","firstname":"Simone","position":1,"quotation":7,"ultraPosition":10,"club":"Parma","teamid":"131","joinDate":"2019-07-11","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_503351","lastname":"Diambo","firstname":"Amadou","position":3,"quotation":1,"ultraPosition":31,"club":"Benevento","teamid":"2000","joinDate":"2021-02-20","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_50401","lastname":"Kalinic","firstname":"Nikola","position":4,"quotation":6,"ultraPosition":40,"club":"Verona","teamid":"126","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_504761","lastname":"Ruffo Luci","firstname":"Dion","position":3,"quotation":1,"ultraPosition":31,"club":"Bologna","teamid":"123","joinDate":"2020-01-01","availableSince":"2020-03-11T11:42:57Z"},{"id":"player_505185","lastname":"Carboni","firstname":"Franco Ezequiel","position":4,"quotation":1,"ultraPosition":40,"club":"Inter","teamid":"127","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_508492","lastname":"Stanga","firstname":"Luca","position":2,"quotation":1,"ultraPosition":21,"club":"Milan","teamid":"120","joinDate":"2020-06-11","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508493","lastname":"Olzer","firstname":"Giacomo","position":3,"quotation":1,"ultraPosition":32,"club":"Milan","teamid":"120","joinDate":"2020-06-11","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508616","lastname":"Celesia","firstname":"Christian","position":2,"quotation":1,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2020-06-19","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508621","lastname":"Boccia","firstname":"Salvatore","position":2,"quotation":1,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2020-06-20","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508623","lastname":"Del Pupo","firstname":"Isaias","position":3,"quotation":1,"ultraPosition":32,"club":"Cagliari","teamid":"124","joinDate":"2020-06-20","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_508624","lastname":"Calabrese","firstname":"Bernardo","position":2,"quotation":1,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-06-20","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508625","lastname":"Terracciano","firstname":"Filippo","position":3,"quotation":1,"ultraPosition":31,"club":"Verona","teamid":"126","joinDate":"2020-06-20","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508627","lastname":"Reinaldo Radu","firstname":null,"position":2,"quotation":1,"ultraPosition":21,"club":"Parma","teamid":"131","joinDate":"2020-06-20","availableSince":"2020-10-28T13:37:33Z"},{"id":"player_508630","lastname":"Mercati","firstname":"Alessandro","position":3,"quotation":1,"ultraPosition":31,"club":"Sassuolo","teamid":"2182","joinDate":"2020-06-20","availableSince":"2020-06-26T10:10:20Z"},{"id":"player_508829","lastname":"Roback","firstname":"Emil","position":4,"quotation":1,"ultraPosition":40,"club":"Milan","teamid":"120","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_508846","lastname":"Aceto","firstname":"Giovanni","position":2,"quotation":1,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2020-09-17","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_508950","lastname":"Bracelli","firstname":"Eugenio","position":2,"quotation":1,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-07-01","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_509044","lastname":"Pierobon","firstname":"Christian","position":3,"quotation":1,"ultraPosition":31,"club":"Verona","teamid":"126","joinDate":"2020-07-04","availableSince":"2020-07-10T10:27:23Z"},{"id":"player_509269","lastname":"Yeboah Ankrah","firstname":"Philip","position":4,"quotation":1,"ultraPosition":40,"club":"Verona","teamid":"126","joinDate":"2020-07-11","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_510619","lastname":"Ranieri","firstname":"Antonio","position":3,"quotation":1,"ultraPosition":32,"club":"Crotone","teamid":"744","joinDate":"2020-07-30","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_511181","lastname":"Feratovic","firstname":"Amir","position":2,"quotation":1,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2020-09-11","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_51221","lastname":"Parolo","firstname":"Marco","position":3,"quotation":5,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2014-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_512325","lastname":"Crespi","firstname":"Gian Marco","position":1,"quotation":3,"ultraPosition":10,"club":"Crotone","teamid":"744","joinDate":"2020-09-01","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_514263","lastname":"Conti","firstname":"Bruno","position":3,"quotation":1,"ultraPosition":32,"club":"Cagliari","teamid":"124","joinDate":"2020-08-11","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_514270","lastname":"Berti","firstname":"Filippo","position":1,"quotation":1,"ultraPosition":10,"club":"Roma","teamid":"121","joinDate":"2020-09-11","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_514798","lastname":"Vitale","firstname":"Samuele","position":1,"quotation":1,"ultraPosition":10,"club":"Sassuolo","teamid":"2182","joinDate":"2020-09-01","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515579","lastname":"Ilie","firstname":"Matei","position":2,"quotation":1,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515593","lastname":"Ciervo","firstname":"Riccardo","position":3,"quotation":1,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515598","lastname":"Tall","firstname":"Lamine","position":4,"quotation":1,"ultraPosition":40,"club":"Roma","teamid":"121","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515601","lastname":"Vicario","firstname":"Javier","position":2,"quotation":1,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2020-09-18","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515606","lastname":"Agostino","firstname":"Giuseppe","position":1,"quotation":1,"ultraPosition":10,"club":"Genoa","teamid":"990","joinDate":"2020-09-19","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515610","lastname":"Moleri","firstname":"Leonardo","position":1,"quotation":1,"ultraPosition":10,"club":"Milan","teamid":"120","joinDate":"2020-09-19","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515612","lastname":"Oddi","firstname":"Riccardo","position":2,"quotation":1,"ultraPosition":21,"club":"Milan","teamid":"120","joinDate":"2020-09-19","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515613","lastname":"Frigerio","firstname":"Marco","position":3,"quotation":1,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2020-08-19","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515614","lastname":"Brambilla","firstname":"Alessio","position":3,"quotation":1,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2020-09-19","availableSince":"2020-09-21T15:00:35Z"},{"id":"player_515617","lastname":"Amerise","firstname":"Andrea","position":2,"quotation":1,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2020-09-19","availableSince":"2020-09-23T12:41:39Z"},{"id":"player_516073","lastname":"Masella","firstname":"Davide","position":3,"quotation":1,"ultraPosition":32,"club":"Benevento","teamid":"2000","joinDate":"2020-09-24","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_51621","lastname":"Rivière","firstname":"Emmanuel","position":4,"quotation":7,"ultraPosition":40,"club":"Crotone","teamid":"744","joinDate":"2020-09-11","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_516771","lastname":"Dutu","firstname":"Eduard","position":2,"quotation":1,"ultraPosition":20,"club":"Fiorentina","teamid":"125","joinDate":"2020-10-01","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_51732","lastname":"Callejón","firstname":"José","position":3,"quotation":8,"ultraPosition":32,"club":"Fiorentina","teamid":"125","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z"},{"id":"player_517545","lastname":"Afi","firstname":"Ayoub","position":4,"quotation":1,"ultraPosition":40,"club":"Spezia","teamid":"2036","joinDate":"2020-09-26","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_518129","lastname":"Czyz","firstname":"Szymon","position":3,"quotation":1,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_518146","lastname":"Paloschi","firstname":"Mattia","position":1,"quotation":1,"ultraPosition":10,"club":"Milan","teamid":"120","joinDate":"2020-10-16","availableSince":"2020-10-21T13:53:47Z"},{"id":"player_518537","lastname":"Rabbi","firstname":"Simone","position":4,"quotation":1,"ultraPosition":40,"club":"Bologna","teamid":"123","joinDate":"2020-10-23","availableSince":"2020-10-28T13:37:33Z"},{"id":"player_518590","lastname":"Bane","firstname":"Abdoul Hate","position":2,"quotation":1,"ultraPosition":20,"club":"Parma","teamid":"131","joinDate":"2020-10-24","availableSince":"2020-10-28T13:37:33Z"},{"id":"player_518924","lastname":"Bertini","firstname":"Marco","position":3,"quotation":1,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2020-10-27","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_518925","lastname":"Franco","firstname":"Damiano","position":2,"quotation":1,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2020-10-27","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_518926","lastname":"Pica","firstname":"Marzio","position":2,"quotation":1,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2020-10-27","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_519264","lastname":"Turk","firstname":"Martin","position":1,"quotation":1,"ultraPosition":10,"club":"Parma","teamid":"131","joinDate":"2020-10-30","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_519337","lastname":"Podgoreanu","firstname":"Suf","position":3,"quotation":1,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2020-10-31","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_519383","lastname":"Arnofoli","firstname":"Alex","position":2,"quotation":1,"ultraPosition":21,"club":"Bologna","teamid":"123","joinDate":"2020-10-30","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_519384","lastname":"Rocchi","firstname":"Matias","position":3,"quotation":1,"ultraPosition":32,"club":"Bologna","teamid":"123","joinDate":"2020-10-30","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_519394","lastname":"Scalvini","firstname":"Giorgio","position":2,"quotation":1,"ultraPosition":20,"club":"Atalanta","teamid":"456","joinDate":"2020-11-02","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_51960","lastname":"Falque","firstname":"Iago","position":3,"quotation":7,"ultraPosition":32,"club":"Benevento","teamid":"2000","joinDate":"2020-09-29","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_519872","lastname":"Khailoti","firstname":"Omar","position":2,"quotation":1,"ultraPosition":20,"club":"Bologna","teamid":"123","joinDate":"2020-11-07","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_519873","lastname":"Pagliuca","firstname":"Mattia","position":4,"quotation":1,"ultraPosition":40,"club":"Bologna","teamid":"123","joinDate":"2020-11-07","availableSince":"2020-11-25T09:15:58Z"},{"id":"player_52049","lastname":"Lulic","firstname":"Senad","position":3,"quotation":9,"ultraPosition":31,"club":"Lazio","teamid":"129","joinDate":"2011-06-16","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_521145","lastname":"Vannucchi","firstname":"Stefano","position":1,"quotation":1,"ultraPosition":10,"club":"Spezia","teamid":"2036","joinDate":"2020-11-21","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_521146","lastname":"Zacchi","firstname":"Gioele","position":1,"quotation":1,"ultraPosition":10,"club":"Sassuolo","teamid":"2182","joinDate":"2020-11-22","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_521424","lastname":"Cusumano","firstname":"Francesco","position":2,"quotation":1,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2020-11-24","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_521579","lastname":"Gresele","firstname":"Andrea","position":2,"quotation":1,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-10-25","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_521631","lastname":"Timmoneri","firstname":"Mattia","position":3,"quotation":1,"ultraPosition":31,"club":"Crotone","teamid":"744","joinDate":"2020-02-28","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_521635","lastname":"Contini","firstname":"Gianluca","position":4,"quotation":1,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2020-11-28","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_522117","lastname":"Krastev","firstname":"Dimo","position":3,"quotation":1,"ultraPosition":31,"club":"Fiorentina","teamid":"125","joinDate":"2020-12-05","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_523101","lastname":"Carnelos","firstname":"Matteo","position":1,"quotation":1,"ultraPosition":10,"club":"Udinese","teamid":"136","joinDate":"2020-12-14","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_523102","lastname":"Rigo","firstname":"Alessandro","position":3,"quotation":1,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2020-12-14","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_523107","lastname":"Adeagbo","firstname":"Enzo","position":2,"quotation":1,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2020-12-14","availableSince":"2020-12-30T10:28:38Z"},{"id":"player_523753","lastname":"Saccani","firstname":"Matteo","position":2,"quotation":1,"ultraPosition":20,"club":"Sassuolo","teamid":"2182","joinDate":"2020-12-23","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_524133","lastname":"Di Gesù","firstname":"Enrico","position":3,"quotation":1,"ultraPosition":31,"club":"Milan","teamid":"120","joinDate":"2021-01-09","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_524464","lastname":"Ricco","firstname":"Jacopo","position":1,"quotation":1,"ultraPosition":10,"club":"Fiorentina","teamid":"125","joinDate":"2021-01-16","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_524469","lastname":"Traorè","firstname":"Chaka","position":4,"quotation":1,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2021-01-16","availableSince":"2021-01-20T08:00:14Z"},{"id":"player_52775","lastname":"Nkoulou","firstname":"Nicolas","position":2,"quotation":10,"ultraPosition":20,"club":"Torino","teamid":"135","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_530028","lastname":"André Silva","firstname":null,"position":4,"quotation":1,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2021-01-21","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_530368","lastname":"D'Aprile","firstname":"Giovanni","position":2,"quotation":1,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2021-01-30","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_530492","lastname":"Satriano","firstname":"Antonio","position":4,"quotation":1,"ultraPosition":40,"club":"Roma","teamid":"121","joinDate":"2021-01-31","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_530776","lastname":"Bianco","firstname":"Alessandro","position":3,"quotation":1,"ultraPosition":31,"club":"Fiorentina","teamid":"125","joinDate":"2021-02-04","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_530777","lastname":"Chiti","firstname":"Lorenzo","position":2,"quotation":1,"ultraPosition":20,"club":"Fiorentina","teamid":"125","joinDate":"2021-01-04","availableSince":"2021-02-12T10:38:43Z"},{"id":"player_533480","lastname":"Shehu","firstname":"Florent","position":3,"quotation":1,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2021-03-05","availableSince":"2021-03-10T08:52:11Z"},{"id":"player_53693","lastname":"Alex Sandro","firstname":null,"position":2,"quotation":15,"ultraPosition":21,"club":"Juventus","teamid":"128","joinDate":"2015-08-20","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_54782","lastname":"Pastore","firstname":"Javier","position":3,"quotation":2,"ultraPosition":32,"club":"Roma","teamid":"121","joinDate":"2018-06-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_55414","lastname":"Tuia","firstname":"Alessandro","position":2,"quotation":11,"ultraPosition":20,"club":"Benevento","teamid":"2000","joinDate":"2018-07-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_55604","lastname":"Santon","firstname":"Davide","position":2,"quotation":3,"ultraPosition":21,"club":"Roma","teamid":"121","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_55654","lastname":"Farias","firstname":"Diego","position":4,"quotation":10,"ultraPosition":40,"club":"Spezia","teamid":"2036","joinDate":"2020-09-22","availableSince":"2020-09-30T12:14:37Z"},{"id":"player_55885","lastname":"Ângelo da Costa","firstname":null,"position":1,"quotation":7,"ultraPosition":10,"club":"Bologna","teamid":"123","joinDate":"2015-01-20","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_56733","lastname":"Jajalo","firstname":"Mato","position":3,"quotation":3,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2019-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_57012","lastname":"Lazovic","firstname":"Darko","position":3,"quotation":11,"ultraPosition":32,"club":"Verona","teamid":"126","joinDate":"2019-08-06","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_57038","lastname":"Kokorin","firstname":"Aleksandr","position":4,"quotation":5,"ultraPosition":40,"club":"Fiorentina","teamid":"125","joinDate":"2021-01-27","availableSince":"2021-02-02T17:44:25Z"},{"id":"player_57107","lastname":"Saponara","firstname":"Riccardo","position":3,"quotation":6,"ultraPosition":32,"club":"Spezia","teamid":"2036","joinDate":"2021-01-05","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_57527","lastname":"Musacchio","firstname":"Mateo","position":2,"quotation":7,"ultraPosition":20,"club":"Lazio","teamid":"129","joinDate":"2021-01-27","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_59108","lastname":"Zoet","firstname":"Jeroen","position":1,"quotation":7,"ultraPosition":10,"club":"Spezia","teamid":"2036","joinDate":"2020-09-08","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_59326","lastname":"Sepe","firstname":"Luigi","position":1,"quotation":11,"ultraPosition":10,"club":"Parma","teamid":"131","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_59338","lastname":"Pinsoglio","firstname":"Carlo","position":1,"quotation":3,"ultraPosition":10,"club":"Juventus","teamid":"128","joinDate":"2009-01-04","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_59779","lastname":"Obiang","firstname":"Pedro","position":3,"quotation":9,"ultraPosition":31,"club":"Sassuolo","teamid":"2182","joinDate":"2019-07-24","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_60017","lastname":"Marrone","firstname":"Luca","position":2,"quotation":7,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2020-09-01","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_60067","lastname":"Caldirola","firstname":"Luca","position":2,"quotation":9,"ultraPosition":20,"club":"Benevento","teamid":"2000","joinDate":"2019-01-30","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_60849","lastname":"Ceppitelli","firstname":"Luca","position":2,"quotation":11,"ultraPosition":20,"club":"Cagliari","teamid":"124","joinDate":"2014-08-08","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_62305","lastname":"Chiriches","firstname":"Vlad","position":2,"quotation":6,"ultraPosition":20,"club":"Sassuolo","teamid":"2182","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_62339","lastname":"Arslan","firstname":"Tolgay","position":3,"quotation":15,"ultraPosition":31,"club":"Udinese","teamid":"136","joinDate":"2020-09-18","availableSince":"2020-09-15T10:25:21Z"},{"id":"player_67977","lastname":"Pavoletti","firstname":"Leonardo","position":4,"quotation":11,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_69305","lastname":"Rodríguez","firstname":"Ricardo","position":2,"quotation":7,"ultraPosition":21,"club":"Torino","teamid":"135","joinDate":"2020-09-01","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_72486","lastname":"Nestorovski","firstname":"Ilija","position":4,"quotation":11,"ultraPosition":40,"club":"Udinese","teamid":"136","joinDate":"2019-07-26","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_73709","lastname":"Rossi","firstname":"Francesco","position":1,"quotation":5,"ultraPosition":10,"club":"Atalanta","teamid":"456","joinDate":"2009-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_74027","lastname":"Mazzotta","firstname":"Antonio","position":2,"quotation":1,"ultraPosition":21,"club":"Crotone","teamid":"744","joinDate":"2019-08-19","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_74145","lastname":"Galabinov","firstname":"Andrej","position":4,"quotation":8,"ultraPosition":40,"club":"Spezia","teamid":"2036","joinDate":"2018-08-17","availableSince":"2020-09-02T13:55:36Z"},{"id":"player_75770","lastname":"Rafael","firstname":null,"position":1,"quotation":3,"ultraPosition":10,"club":"Spezia","teamid":"2036","joinDate":"2020-09-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_78091","lastname":"Ramírez","firstname":"Gastón","position":3,"quotation":10,"ultraPosition":32,"club":"Sampdoria","teamid":"603","joinDate":"2017-08-04","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_78109","lastname":"Santander","firstname":"Federico","position":4,"quotation":1,"ultraPosition":40,"club":"Bologna","teamid":"123","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_78796","lastname":"Bourabia","firstname":"Mehdi","position":3,"quotation":5,"ultraPosition":31,"club":"Sassuolo","teamid":"2182","joinDate":"2018-07-17","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_80607","lastname":"Eriksen","firstname":"Christian","position":3,"quotation":12,"ultraPosition":32,"club":"Inter","teamid":"127","joinDate":"2020-01-28","availableSince":"2020-01-29T10:49:18Z"},{"id":"player_80974","lastname":"Sala","firstname":"Jacopo","position":2,"quotation":3,"ultraPosition":21,"club":"Spezia","teamid":"2036","joinDate":"2020-09-05","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_82135","lastname":"Inglese","firstname":"Roberto","position":4,"quotation":7,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_83561","lastname":"Dabo","firstname":"Bryan","position":3,"quotation":8,"ultraPosition":31,"club":"Benevento","teamid":"2000","joinDate":"2020-09-15","availableSince":"2020-09-04T13:07:00Z"},{"id":"player_83984","lastname":"Antonio Donnarumma","firstname":null,"position":1,"quotation":3,"ultraPosition":10,"club":"Milan","teamid":"120","joinDate":"2017-07-12","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_85046","lastname":"Laurini","firstname":"Vincent","position":2,"quotation":6,"ultraPosition":21,"club":"Parma","teamid":"131","joinDate":"2019-07-08","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_86940","lastname":"Magallán","firstname":"Lisandro","position":2,"quotation":9,"ultraPosition":20,"club":"Crotone","teamid":"744","joinDate":"2020-09-04","availableSince":"2020-09-09T13:50:13Z"},{"id":"player_87542","lastname":"Nikola Maksimovic","firstname":null,"position":2,"quotation":9,"ultraPosition":20,"club":"Napoli","teamid":"459","joinDate":"2017-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_88746","lastname":"Ghoulam","firstname":"Faouzi","position":2,"quotation":5,"ultraPosition":21,"club":"Napoli","teamid":"459","joinDate":"2014-01-31","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_90557","lastname":"Ceccherini","firstname":"Federico","position":2,"quotation":9,"ultraPosition":20,"club":"Verona","teamid":"126","joinDate":"2020-10-05","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_91070","lastname":"Eysseric","firstname":"Valentin","position":3,"quotation":9,"ultraPosition":32,"club":"Fiorentina","teamid":"125","joinDate":"2017-08-09","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_91990","lastname":"Juan Jesus","firstname":null,"position":2,"quotation":3,"ultraPosition":20,"club":"Roma","teamid":"121","joinDate":"2017-07-01","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_92042","lastname":"Demme","firstname":"Diego","position":3,"quotation":11,"ultraPosition":31,"club":"Napoli","teamid":"459","joinDate":"2020-01-11","availableSince":"2020-01-15T11:56:32Z"},{"id":"player_94239","lastname":"Berardi","firstname":"Alessandro","position":1,"quotation":7,"ultraPosition":10,"club":"Verona","teamid":"126","joinDate":"2018-12-14","availableSince":"2020-01-07T15:07:40Z"},{"id":"player_94751","lastname":"Sturaro","firstname":"Stefano","position":3,"quotation":5,"ultraPosition":31,"club":"Verona","teamid":"126","joinDate":"2021-01-23","availableSince":"2020-01-07T15:07:40Z"}],"userPlayers":[{"id":"player_222784","lastname":"Hernández","firstname":"Theo","position":2,"quotation":27,"ultraPosition":21,"club":"Milan","teamid":"120","joinDate":"2019-07-06","availableSince":"2020-01-07T15:07:40Z","pricePaid":37,"buying_date":"2020-09-22T17:30:26Z","status":2},{"id":"player_119141","lastname":"de Paul","firstname":"Rodrigo","position":3,"quotation":34,"ultraPosition":32,"club":"Udinese","teamid":"136","joinDate":"2016-07-20","availableSince":"2020-01-07T15:07:40Z","pricePaid":46,"buying_date":"2020-09-22T17:30:26Z","status":2},{"id":"player_116796","lastname":"Berardi","firstname":"Domenico","position":4,"quotation":35,"ultraPosition":40,"club":"Sassuolo","teamid":"2182","joinDate":"2012-01-01","availableSince":"2020-01-07T15:07:40Z","pricePaid":30,"buying_date":"2020-09-22T17:53:37Z","status":2},{"id":"player_88340","lastname":"João Pedro","firstname":null,"position":4,"quotation":44,"ultraPosition":40,"club":"Cagliari","teamid":"124","joinDate":"2014-09-01","availableSince":"2020-01-07T15:07:40Z","pricePaid":91,"buying_date":"2021-02-01T18:54:05Z","status":2},{"id":"player_223541","lastname":"Chiesa","firstname":"Federico","position":4,"quotation":26,"ultraPosition":40,"club":"Juventus","teamid":"128","joinDate":"2020-10-05","availableSince":"2020-01-07T15:07:40Z","pricePaid":35,"buying_date":"2021-02-01T18:54:05Z","status":2},{"id":"player_169107","lastname":"Marusic","firstname":"Adam","position":2,"quotation":12,"ultraPosition":21,"club":"Lazio","teamid":"129","joinDate":"2017-07-01","availableSince":"2020-01-07T15:07:40Z","pricePaid":20,"buying_date":"2021-02-01T18:54:05Z","status":2},{"id":"player_69143","lastname":"Kucka","firstname":"Juraj","position":3,"quotation":24,"ultraPosition":31,"club":"Parma","teamid":"131","joinDate":"2019-01-15","availableSince":"2020-01-07T15:07:40Z","pricePaid":35,"buying_date":"2021-02-02T08:27:17Z","status":2},{"id":"player_424044","lastname":"Traore","firstname":"Hamed Junior","position":3,"quotation":12,"ultraPosition":32,"club":"Sassuolo","teamid":"2182","joinDate":"2019-07-12","availableSince":"2020-01-07T15:07:40Z","pricePaid":27,"buying_date":"2021-02-02T08:27:17Z","status":2},{"id":"player_225807","lastname":"Elmas","firstname":"Eljif","position":3,"quotation":10,"ultraPosition":32,"club":"Napoli","teamid":"459","joinDate":"2019-07-24","availableSince":"2020-01-07T15:07:40Z","pricePaid":25,"buying_date":"2021-02-02T08:27:17Z","status":2},{"id":"player_180793","lastname":"Milinkovic-Savic","firstname":"Sergej","position":3,"quotation":22,"ultraPosition":32,"club":"Lazio","teamid":"129","joinDate":"2015-08-07","availableSince":"2020-01-07T15:07:40Z","pricePaid":42,"buying_date":"2021-02-02T08:27:17Z","status":2},{"id":"player_156267","lastname":"Colley","firstname":"Omar","position":2,"quotation":11,"ultraPosition":20,"club":"Sampdoria","teamid":"603","joinDate":"2018-07-01","availableSince":"2020-01-07T15:07:40Z","pricePaid":13,"buying_date":"2021-02-02T08:35:29Z","status":2},{"id":"player_76623","lastname":"Nuytinck","firstname":"Bram","position":2,"quotation":14,"ultraPosition":20,"club":"Udinese","teamid":"136","joinDate":"2017-07-29","availableSince":"2020-01-07T15:07:40Z","pricePaid":12,"buying_date":"2021-03-10T08:40:51Z","status":2},{"id":"player_439185","lastname":"Mihaila","firstname":"Mihai Valentin","position":4,"quotation":10,"ultraPosition":40,"club":"Parma","teamid":"131","joinDate":"2020-10-05","availableSince":"2020-10-07T13:29:11Z","pricePaid":10,"buying_date":"2021-03-28T19:54:34Z","status":2},{"id":"player_139146","lastname":"Pulgar","firstname":"Erick","position":3,"quotation":12,"ultraPosition":31,"club":"Fiorentina","teamid":"125","joinDate":"2019-08-09","availableSince":"2020-01-07T15:07:40Z","pricePaid":12,"buying_date":"2021-03-28T19:54:34Z","status":2},{"id":"player_103155","lastname":"Soumaoro","firstname":"Adama","position":2,"quotation":12,"ultraPosition":20,"club":"Bologna","teamid":"123","joinDate":"2021-01-12","availableSince":"2021-01-20T08:00:14Z","pricePaid":13,"buying_date":"2021-03-28T19:54:34Z","status":2},{"id":"player_84724","lastname":"Bereszynski","firstname":"Bartosz","position":2,"quotation":12,"ultraPosition":21,"club":"Sampdoria","teamid":"603","joinDate":"2017-01-04","availableSince":"2020-01-07T15:07:40Z","pricePaid":16,"buying_date":"2021-04-04T17:44:58Z","status":2},{"id":"player_60655","lastname":"Ionita","firstname":"Artur","position":3,"quotation":11,"ultraPosition":32,"club":"Benevento","teamid":"2000","joinDate":"2020-09-01","availableSince":"2020-01-07T15:07:40Z","pricePaid":12,"buying_date":"2021-04-05T17:38:00Z","status":2},{"id":"player_42173","lastname":"Caicedo","firstname":"Felipe","position":4,"quotation":10,"ultraPosition":40,"club":"Lazio","teamid":"129","joinDate":"2017-08-02","availableSince":"2020-01-07T15:07:40Z","pricePaid":11,"buying_date":"2021-04-05T17:38:00Z","status":2},{"id":"player_153867","lastname":"Verde","firstname":"Daniele","position":4,"quotation":9,"ultraPosition":40,"club":"Spezia","teamid":"2036","joinDate":"2020-09-25","availableSince":"2020-09-30T12:14:37Z","pricePaid":10,"buying_date":"2021-04-05T17:38:00Z","status":2},{"id":"player_121537","lastname":"Musso","firstname":"Juan","position":1,"quotation":19,"ultraPosition":10,"club":"Udinese","teamid":"136","joinDate":"2018-07-11","availableSince":"2020-01-07T15:07:40Z","pricePaid":20,"buying_date":"2021-04-06T08:03:37Z","status":1},{"id":"player_151804","lastname":"Scuffet","firstname":"Simone","position":1,"quotation":7,"ultraPosition":10,"club":"Udinese","teamid":"136","joinDate":"2012-07-01","availableSince":"2020-09-02T13:55:36Z","pricePaid":7,"buying_date":"2021-04-06T07:55:57Z","status":1},{"id":"player_465649","lastname":"Bonfanti","firstname":"Nicholas","position":4,"quotation":1,"ultraPosition":40,"club":"Inter","teamid":"127","joinDate":"2020-09-16","availableSince":"2020-10-21T13:53:47Z","pricePaid":1,"buying_date":"2021-04-06T08:04:09Z","status":1}]} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.transfer.buy.error.normal.mode.json b/src/test/resources/__files/mpg.transfer.buy.error.normal.mode.json deleted file mode 100644 index 4574595..0000000 --- a/src/test/resources/__files/mpg.transfer.buy.error.normal.mode.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "success": false, - "error": "normalMode", - "code": 833 -} diff --git a/src/test/resources/__files/mpg.user-signIn.fake.json b/src/test/resources/__files/mpg.user-signIn.fake.json index 886627a..1255353 100644 --- a/src/test/resources/__files/mpg.user-signIn.fake.json +++ b/src/test/resources/__files/mpg.user-signIn.fake.json @@ -1 +1 @@ -{ "token": "token.fake", "userId": "user_xxxx", "language": "fr-FR" } \ No newline at end of file +{ "token": "token.fake", "userId": "user_955966", "language": "fr-FR" } \ No newline at end of file From c780a320addee7cb83584d5d72185223b451ad9b Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Thu, 5 Aug 2021 18:48:01 +0200 Subject: [PATCH 06/13] Transaction proposal, starting update with bonus --- .github/ISSUE_TEMPLATE/bug_report.md | 3 +- src/main/java/org/blondin/mpg/Main.java | 112 +- .../java/org/blondin/mpg/root/MpgClient.java | 18 +- .../org/blondin/mpg/root/model/Bonus.java | 65 - .../java/org/blondin/mpg/root/model/Club.java | 9 +- .../org/blondin/mpg/root/model/Clubs.java | 15 + .../org/blondin/mpg/root/model/Coach.java | 34 +- .../blondin/mpg/root/model/CoachRequest.java | 27 +- .../org/blondin/mpg/root/model/Division.java | 16 + .../mpg/root/model/DivisionLiveStat.java | 18 + .../org/blondin/mpg/root/model/League.java | 5 + .../org/blondin/mpg/root/model/Player.java | 42 +- ...{BonusSelected.java => SelectedBonus.java} | 17 +- .../java/org/blondin/mpg/root/model/Team.java | 10 + .../org/blondin/mpg/BonusSelectionTest.java | 84 +- src/test/java/org/blondin/mpg/MainTest.java | 192 +- .../org/blondin/mpg/root/MpgClientTest.java | 28 +- src/test/resources/__files/README.md | 3 +- .../resources/__files/mpg.clubs.2021.json | 3375 +++++++++++++++++ ...on => mpg.division.MLEFEX6G.20210804.json} | 0 .../__files/mpg.team.MLEFEX6G.20210804.json | 2 +- 21 files changed, 3730 insertions(+), 345 deletions(-) delete mode 100644 src/main/java/org/blondin/mpg/root/model/Bonus.java create mode 100644 src/main/java/org/blondin/mpg/root/model/Clubs.java create mode 100644 src/main/java/org/blondin/mpg/root/model/DivisionLiveStat.java rename src/main/java/org/blondin/mpg/root/model/{BonusSelected.java => SelectedBonus.java} (77%) create mode 100644 src/test/resources/__files/mpg.clubs.2021.json rename src/test/resources/__files/{mpg.division.MLEFEX6G.json => mpg.division.MLEFEX6G.20210804.json} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 54262fe..eea564c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -23,10 +23,11 @@ Depending your championship, join data files set in attachment. | dashboard | `GET /dashboard/leagues` | Retrieve **divisionId** (~ `mpg_division_MLEXXXXX_3_1`) | | division | `GET /division/mpg_division_MLEXXXXX_3_1` | Retrieve `mpg_team_MLEXXXXX_3_1_2` team for user league | | team | `GET /team/mpg_team_MLEXXXXX_3_1_2` | Retrieve Team and Bonus for team | -| poolPlayer | `GET /championship-players-pool/X` | Retrieve league players details (With `X`: 1=Ligue-1 / 2=Premier-League / 3=Liga / 4=Ligue-2 / 5=Serie-A) | | coach | `GET /division/mpg_division_MLEXXXXX_3_1/coach` | Retrieve formation | | transfer | `GET /division/mpg_division_MLEXXXXX_3_1/available-players` | Retrieve available players | | mercato | `GET TODO` | Retrieves players details for incoming mercato | +| poolPlayer | `GET /championship-players-pool/X` | Retrieve league players details (With `X`: 1=Ligue-1 / 2=Premier-League / 3=Liga / 4=Ligue-2 / 5=Serie-A) | +| clubs | `GET /championship-clubs` | Retrieve club names | 2. The [Players statistics](https://www.mpgstats.fr/) data, one JSon from: diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 65a3739..cad996d 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -7,6 +7,7 @@ import java.util.Comparator; import java.util.List; import java.util.Map; +import java.util.Map.Entry; import java.util.stream.Collectors; import org.apache.commons.lang3.ObjectUtils; @@ -18,19 +19,22 @@ import org.blondin.mpg.root.MpgClient; import org.blondin.mpg.root.exception.NoMoreGamesException; import org.blondin.mpg.root.exception.PlayerNotFoundException; -import org.blondin.mpg.root.model.Bonus; -import org.blondin.mpg.root.model.BonusSelected; import org.blondin.mpg.root.model.ChampionshipType; import org.blondin.mpg.root.model.Club; +import org.blondin.mpg.root.model.Clubs; import org.blondin.mpg.root.model.Coach; import org.blondin.mpg.root.model.CoachRequest; +import org.blondin.mpg.root.model.Division; import org.blondin.mpg.root.model.League; import org.blondin.mpg.root.model.LeagueStatus; import org.blondin.mpg.root.model.Mode; import org.blondin.mpg.root.model.Player; import org.blondin.mpg.root.model.PlayerStatus; +import org.blondin.mpg.root.model.PoolPlayers; import org.blondin.mpg.root.model.Position; +import org.blondin.mpg.root.model.SelectedBonus; import org.blondin.mpg.root.model.TacticalSubstitute; +import org.blondin.mpg.root.model.Team; import org.blondin.mpg.root.model.TransferBuy; import org.blondin.mpg.stats.ChampionshipStatsType; import org.blondin.mpg.stats.MpgStatsClient; @@ -146,7 +150,7 @@ static void processMercato(List players, InjuredSuspendedWrapperClient o for (List line : Arrays.asList(goals, defenders, midfielders, attackers)) { for (Player player : line) { org.blondin.mpg.out.model.Player outPlayer = outPlayersClient.getPlayer(championship, player.getName(), - PositionWrapper.toOut(player.getPosition()), player.getClub(), OutType.INJURY_GREEN); + PositionWrapper.toOut(player.getPosition()), player.getClubName(), OutType.INJURY_GREEN); String outInfos = ""; if (outPlayer != null) { outInfos = String.format("%s - %s - %s", outPlayer.getOutType(), outPlayer.getDescription(), outPlayer.getLength()); @@ -168,10 +172,14 @@ static void processMercato(List players, InjuredSuspendedWrapperClient o static void processGames(League league, ApiClients apiClients, Config config) { try { - // Get players - Coach coach = apiClients.getMpg().getCoach(league.getId()); - List players = coach.getPlayers(); - completePlayersClubs(players, coach.getTeams()); + // Get main bean for current league + Division division = apiClients.getMpg().getDivision(league.getDivisionId()); + Team team = apiClients.getMpg().getTeam(division.getTeam(apiClients.getMpg().getUserId())); + PoolPlayers pool = apiClients.getMpg().getPoolPlayers(league.getChampionship()); + Coach coach = apiClients.getMpg().getCoach(league.getDivisionId()); + completePlayersClub(pool.getPlayers(), apiClients.getMpg().getClubs()); + completePlayersTeam(team.getSquad(), pool); + List players = team.getSquad().values().stream().collect(Collectors.toList()); // Calculate efficiency (notes should be in injured players display), and save for transactions proposal calculateEfficiency(players, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, true); @@ -189,7 +197,7 @@ static void processGames(League league, ApiClients apiClients, Config config) { // Auto-update team if (config.isTeampUpdate()) { - updateTeamWithRetry(league, apiClients.getMpg(), coach, players, config); + updateTeamWithRetry(apiClients.getMpg(), league, division, team, coach, players, config); } if (config.isTransactionsProposal()) { @@ -203,14 +211,15 @@ static void processGames(League league, ApiClients apiClients, Config config) { if (cd.getLastDayReached() < cd.getDay()) { LOG.info("\nWARNING: Last day stats have not fully reached! Please retry tomorrow"); } - TransferBuy transferBuy = apiClients.getMpg().getTransferBuy(league.getId()); + TransferBuy transferBuy = apiClients.getMpg().getTransferBuy(league.getDivisionId()); List playersAvailable = transferBuy.getAvailablePlayers(); + completePlayersClub(playersAvailable, apiClients.getMpg().getClubs()); removeOutPlayers(playersAvailable, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship()), false); calculateEfficiency(playersAvailable, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, false); - Integer currentPlayersBuy = transferBuy.getUserPlayers().stream().filter(p -> p.getStatus().equals(PlayerStatus.PROPOSAL)) + Integer currentPlayersBuy = team.getSquad().values().stream().filter(p -> p.getStatus().equals(PlayerStatus.PROPOSAL)) .map(Player::getPricePaid).collect(Collectors.summingInt(Integer::intValue)); - writeTransactionsProposal(playersTeam, playersAvailable, transferBuy.getBudget() - currentPlayersBuy, apiClients.getOutPlayers(), + writeTransactionsProposal(playersTeam, playersAvailable, team.getBudget() - currentPlayersBuy, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship()), config); } } @@ -221,25 +230,43 @@ static void processGames(League league, ApiClients apiClients, Config config) { } /** - * Players retrieved from "Coach" has only a teamId. Club (Team name) should be completed manually. + * Add club name for all pool players + * + * @param players Pool + * @param clubs Clubs */ - static void completePlayersClubs(List players, Map teams) { + static void completePlayersClub(List players, Clubs clubs) { for (Player player : players) { - Club team = teams.get(player.getTeamId()); - if (team == null) { + Club club = clubs.getChampionshipClubs().get(player.getClubId()); + if (club == null) { throw new UnsupportedOperationException( - String.format("Team can not be found for player: %s (teamId: %s)", player.getName(), player.getTeamId())); + String.format("Club '%s' cannot be found for player '%s'", player.getClubId(), player.getName())); } - player.setClub(team.getName()); + player.setClubName(club.getName()); } } - private static void updateTeamWithRetry(League league, MpgClient mpgClient, Coach coach, List players, Config config) { + /** + * Teams players is only id and price paid => replace by real player + * + * @param teamPlayers teams + * @param pool players + */ + static void completePlayersTeam(Map teamPlayers, PoolPlayers pool) { + for (Entry entry : teamPlayers.entrySet()) { + Player player = pool.getPlayer(entry.getKey()); + player.setPricePaid(teamPlayers.get(entry.getKey()).getPricePaid()); + teamPlayers.put(entry.getKey(), player); + } + } + + private static void updateTeamWithRetry(MpgClient mpgClient, League league, Division division, Team team, Coach coach, List players, + Config config) { LOG.info("\nUpdating team ..."); final long maxRetry = 10; for (int i = 1; i <= 10; i++) { try { - mpgClient.updateCoach(league, getCoachRequest(coach, players, config)); + mpgClient.updateCoach(league, getCoachRequest(team, coach, players, division.getGameRemaining(), config)); break; } catch (UnsupportedOperationException e) { if (i == maxRetry || !"Unsupported status code: 400 Bad Request / Content: {\"error\":\"badRequest\"}".equals(e.getMessage())) { @@ -267,7 +294,7 @@ private static void writeTransactionsProposal(List playersTeam, List p.getPosition().equals(Position.G) && p.getTeamId() == goalkeepers.get(0).getTeamId()); + players2Sell.removeIf(p -> p.getPosition().equals(Position.G) && p.getClubId().equals(goalkeepers.get(0).getClubId())); } int cash = budget; @@ -320,7 +347,7 @@ private static void writeTransactionsProposal(List playersTeam, List removeOutPlayers(List players, InjuredSuspendedWrapp List outPlayers = new ArrayList<>(); for (Player player : players) { org.blondin.mpg.out.model.Player outPlayer = outPlayersClient.getPlayer(championship, player.getName(), - PositionWrapper.toOut(player.getPosition()), player.getClub(), OutType.INJURY_GREEN); + PositionWrapper.toOut(player.getPosition()), player.getClubName(), OutType.INJURY_GREEN); if (outPlayer != null) { outPlayers.add(player); if (displayOut) { String eff = FORMAT_DECIMAL_DOUBLE.format(player.getEfficiency()); - LOG.info("Out: {} ({} - {}) - {} - {} - {}", player.getName(), player.getPosition(), eff, outPlayer.getOutType(), - outPlayer.getDescription(), outPlayer.getLength()); + LOG.info("Out: {} ({} - Eff.:{} / Q.:{} / Paid:{}) - {} - {} - {}", player.getName(), player.getPosition(), eff, + player.getQuotation(), player.getPricePaid(), outPlayer.getOutType(), outPlayer.getDescription(), outPlayer.getLength()); } } } @@ -426,12 +453,12 @@ private static int getCurrentDay(MpgStatsClient stats, ChampionshipStatsType cha return daysPeriod; } - private static CoachRequest getCoachRequest(Coach coach, List players, Config config) { + private static CoachRequest getCoachRequest(Team team, Coach coach, List players, int gameRemaining, Config config) { int nbrAttackers = coach.getComposition() % 10; int nbrMidfielders = coach.getComposition() % 100 / 10; int nbrDefenders = coach.getComposition() / 100; - CoachRequest request = new CoachRequest(coach); + CoachRequest request = new CoachRequest(coach.getComposition()); // Goals List goals = players.stream().filter(p -> p.getPosition().equals(Position.G)).collect(Collectors.toList()); @@ -447,8 +474,8 @@ private static CoachRequest getCoachRequest(Coach coach, List players, C List attackers = players.stream().filter(p -> p.getPosition().equals(Position.A)).collect(Collectors.toList()); String playerIdForBonus = midfielders.get(0).getId(); - request.setBonusSelected(selectBonus(coach.getBonusSelected(), coach.getBonus(), coach.getMatchId(), coach.getNbPlayers(), - config.isUseBonus(), playerIdForBonus)); + // TODO complete with correct bonus + request.setBonusSelected(selectBonus(coach.getBonusSelected(), team.getBonuses(), gameRemaining, config.isUseBonus(), playerIdForBonus)); // Main lines setPlayersOnPitch(request, defenders, nbrDefenders, 1); @@ -494,7 +521,7 @@ private static CoachRequest getCoachRequest(Coach coach, List players, C } static void verifyBonusPlayerOverrideOnPitch(CoachRequest request, String playerIdEnfored) { - if (request.getBonusSelected() != null && request.getBonusSelected().getType() != null && request.getBonusSelected().getType() == 4) { + if (request.getBonusSelected() != null && "boostOnePlayer".equals(request.getBonusSelected().getName())) { boolean onPitch = false; String playerIdSelected = request.getBonusSelected().getPlayerId(); for (int i = 1; i <= 11; i++) { @@ -509,25 +536,22 @@ static void verifyBonusPlayerOverrideOnPitch(CoachRequest request, String player } } - static BonusSelected selectBonus(BonusSelected previousBonus, Bonus bonus, String matchId, int numberPlayers, boolean useBonus, - String playerIdForRefBull) { - BonusSelected bonusSelected = ObjectUtils.defaultIfNull(previousBonus, new BonusSelected()); - if (!useBonus || bonusSelected.getType() != null) { + static SelectedBonus selectBonus(SelectedBonus previousBonus, Map bonuses, int matchsRemaining, boolean useBonus, + String playerIdIfNeeded) { + SelectedBonus bonusSelected = ObjectUtils.defaultIfNull(previousBonus, new SelectedBonus()); + if (!useBonus || bonusSelected.getName() != null) { return bonusSelected; } - if (bonus == null) { + if (bonuses == null) { throw new UnsupportedOperationException("Bonus is null, technical problem"); } - if (numberPlayers <= 0) { - throw new UnsupportedOperationException("Number of player could not be <= 0"); - } - int matchsRemaining = 1 + (numberPlayers - 1) * 2 - Integer.valueOf(matchId.replaceAll("mpg_match_[^_]+_\\d_", "").replaceAll("_\\d", "")); - if (bonus.getNumber() >= matchsRemaining) { - int bonusType = bonus.getBonusTypeForRemainingMatch(matchsRemaining); - bonusSelected.setType(bonusType); - if (bonusType == 4) { - bonusSelected.setPlayerId(playerIdForRefBull); - } + if (bonuses.values().stream().reduce(0, Integer::sum) >= matchsRemaining) { + // TODO: To update + // int bonusType = bonus.getBonusTypeForRemainingMatch(matchsRemaining); + // bonusSelected.setType(bonusType); + // if (bonusType == 4) { + // bonusSelected.setPlayerId(playerIdForRefBull); + // } } return bonusSelected; } diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index 288c060..0a9884a 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -11,6 +11,7 @@ import org.blondin.mpg.AbstractClient; import org.blondin.mpg.config.Config; import org.blondin.mpg.root.model.ChampionshipType; +import org.blondin.mpg.root.model.Clubs; import org.blondin.mpg.root.model.Coach; import org.blondin.mpg.root.model.CoachRequest; import org.blondin.mpg.root.model.Dashboard; @@ -33,8 +34,8 @@ public class MpgClient extends AbstractClient { private final MultivaluedMap headers = new MultivaluedHashMap<>(); - private EnumMap cache = new EnumMap<>(ChampionshipType.class); - + private EnumMap cachePlayers = new EnumMap<>(ChampionshipType.class); + private Clubs clubs; private String userId; private MpgClient(Config config) { @@ -100,11 +101,18 @@ public TransferBuy getTransferBuy(String leagueDivisionId) { } public PoolPlayers getPoolPlayers(ChampionshipType championship) { - if (!cache.containsKey(championship)) { + if (!cachePlayers.containsKey(championship)) { PoolPlayers pool = get("championship-players-pool/" + championship.value(), headers, PoolPlayers.class); - cache.put(championship, pool); + cachePlayers.put(championship, pool); + } + return cachePlayers.get(championship); + } + + public synchronized Clubs getClubs() { + if (clubs == null) { + clubs = get("championship-clubs", headers, Clubs.class); } - return cache.get(championship); + return clubs; } private void signIn(String login, String password) { diff --git a/src/main/java/org/blondin/mpg/root/model/Bonus.java b/src/main/java/org/blondin/mpg/root/model/Bonus.java deleted file mode 100644 index 21389c8..0000000 --- a/src/main/java/org/blondin/mpg/root/model/Bonus.java +++ /dev/null @@ -1,65 +0,0 @@ - -package org.blondin.mpg.root.model; - -import org.apache.commons.lang3.reflect.FieldUtils; - -import com.fasterxml.jackson.annotation.JsonProperty; - -public class Bonus { - - @JsonProperty("1") - private int bonus1; - - @JsonProperty("2") - private int bonus2; - - @JsonProperty("3") - private int bonus3; - - @JsonProperty("4") - private int bonus4; - - @JsonProperty("5") - private int bonus5; - - @JsonProperty("6") - private int bonus6; - - @JsonProperty("7") - private int bonus7; - - public int getNumber() { - int nbr = 0; - for (int i = 1; i <= 7; i++) { - try { - nbr += (int) FieldUtils.readDeclaredField(this, "bonus" + i, true); - } catch (IllegalAccessException e) { - throw new UnsupportedOperationException(String.format("Can't get bonus %s: %s", i, e.getMessage()), e); - } - } - return nbr; - } - - public int getBonusTypeForRemainingMatch(int matchsRemaining) { - int type = 0; - int remaining = matchsRemaining; - for (int i = 1; i <= 7; i++) { - type = i; - try { - int nbr = (int) FieldUtils.readDeclaredField(this, "bonus" + i, true); - for (int j = 0; j < nbr; j++) { - remaining -= 1; - } - if (remaining <= 0) { - break; - } - } catch (IllegalAccessException e) { - throw new UnsupportedOperationException(String.format("Can't get bonus %s: %s", i, e.getMessage()), e); - } - } - if (type < 1 || type > 7) { - throw new UnsupportedOperationException("Bonus type should be between 1 and 7"); - } - return type; - } -} diff --git a/src/main/java/org/blondin/mpg/root/model/Club.java b/src/main/java/org/blondin/mpg/root/model/Club.java index f01294c..3192f3a 100644 --- a/src/main/java/org/blondin/mpg/root/model/Club.java +++ b/src/main/java/org/blondin/mpg/root/model/Club.java @@ -1,15 +1,16 @@ package org.blondin.mpg.root.model; +import java.util.Map; + import com.fasterxml.jackson.annotation.JsonIgnoreProperties; -import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) public class Club { - @JsonProperty("name") - private String name; + private Map name; public String getName() { - return this.name; + // All club have same name + return this.name.get("fr-FR"); } } diff --git a/src/main/java/org/blondin/mpg/root/model/Clubs.java b/src/main/java/org/blondin/mpg/root/model/Clubs.java new file mode 100644 index 0000000..71742b3 --- /dev/null +++ b/src/main/java/org/blondin/mpg/root/model/Clubs.java @@ -0,0 +1,15 @@ +package org.blondin.mpg.root.model; + +import java.util.Map; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class Clubs { + + private Map championshipClubs; + + public Map getChampionshipClubs() { + return championshipClubs; + } +} diff --git a/src/main/java/org/blondin/mpg/root/model/Coach.java b/src/main/java/org/blondin/mpg/root/model/Coach.java index 9fc1ed9..2f6feed 100644 --- a/src/main/java/org/blondin/mpg/root/model/Coach.java +++ b/src/main/java/org/blondin/mpg/root/model/Coach.java @@ -15,26 +15,17 @@ public class Coach { private MatchTeamFormation matchTeamFormation; @JsonProperty("selectedBonus") - private BonusSelected bonusSelected; + private SelectedBonus bonusSelected; // Useless below parameters ? @JsonProperty("players") private List players; - @JsonProperty("bonus") - private Bonus bonus; - - @JsonProperty("matchId") - private String matchId; - /** Number of players in the league */ @JsonProperty("nbPlayers") private int nbPlayers; - @JsonProperty("realday") - private int realDay; - @JsonProperty("teams") private Map teams; @@ -42,7 +33,7 @@ public int getComposition() { return matchTeamFormation.getComposition(); } - public BonusSelected getBonusSelected() { + public SelectedBonus getBonusSelected() { return bonusSelected; } @@ -55,20 +46,6 @@ public List getPlayers() { return players; } - public Bonus getBonus() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return bonus; - } - - public String getMatchId() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return matchId; - } - public int getNbPlayers() { if (true) { throw new UnsupportedOperationException("Usage should be analysed"); @@ -76,13 +53,6 @@ public int getNbPlayers() { return nbPlayers; } - public int getRealDay() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return realDay; - } - public Map getTeams() { if (true) { throw new UnsupportedOperationException("Usage should be analysed"); diff --git a/src/main/java/org/blondin/mpg/root/model/CoachRequest.java b/src/main/java/org/blondin/mpg/root/model/CoachRequest.java index a8bc92a..b6c6973 100644 --- a/src/main/java/org/blondin/mpg/root/model/CoachRequest.java +++ b/src/main/java/org/blondin/mpg/root/model/CoachRequest.java @@ -16,25 +16,14 @@ public class CoachRequest { @JsonProperty("tacticalsubstitutes") private List tacticalsubstitutes = new ArrayList<>(); - @JsonProperty("bonusSelected") - private BonusSelected bonusSelected = new BonusSelected(); + @JsonProperty("selectedBonus") + private SelectedBonus bonusSelected = new SelectedBonus(); - @JsonProperty("matchId") - private String matchId; - - @JsonProperty("realday") - private int realDay; - - public CoachRequest(Coach coach) { - if (coach.getComposition() < 343 || coach.getComposition() > 541) { - throw new UnsupportedOperationException(String.format("Invalid composition: %s", coach.getComposition())); - } - if (coach.getRealDay() < 1) { - throw new UnsupportedOperationException(String.format("Invalid real day: %s", coach.getRealDay())); + public CoachRequest(int composition) { + if (composition < 343 || composition > 541) { + throw new UnsupportedOperationException(String.format("Invalid composition: %s", composition)); } - this.composition = coach.getComposition(); - this.matchId = coach.getMatchId(); - this.realDay = coach.getRealDay(); + this.composition = composition; } public PlayersOnPitch getPlayersOnPitch() { @@ -45,11 +34,11 @@ public List getTacticalsubstitutes() { return tacticalsubstitutes; } - public BonusSelected getBonusSelected() { + public SelectedBonus getBonusSelected() { return bonusSelected; } - public void setBonusSelected(BonusSelected bonusSelected) { + public void setBonusSelected(SelectedBonus bonusSelected) { this.bonusSelected = bonusSelected; } } diff --git a/src/main/java/org/blondin/mpg/root/model/Division.java b/src/main/java/org/blondin/mpg/root/model/Division.java index 7820bae..7ea4c1f 100644 --- a/src/main/java/org/blondin/mpg/root/model/Division.java +++ b/src/main/java/org/blondin/mpg/root/model/Division.java @@ -3,12 +3,16 @@ import java.util.Map; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) public class Division { private Map usersTeams; + @JsonProperty("liveState") + private DivisionLiveStat liveState; + public Map getUsersTeams() { return usersTeams; } @@ -19,4 +23,16 @@ public String getTeam(String userId) { } return getUsersTeams().get(userId); } + + public int getGameTotal() { + return liveState.getTotalGameWeeks(); + } + + public int getGameCurrent() { + return liveState.getCurrentGameWeek(); + } + + public int getGameRemaining() { + return getGameTotal() - getGameCurrent() + 1; + } } diff --git a/src/main/java/org/blondin/mpg/root/model/DivisionLiveStat.java b/src/main/java/org/blondin/mpg/root/model/DivisionLiveStat.java new file mode 100644 index 0000000..e919a2f --- /dev/null +++ b/src/main/java/org/blondin/mpg/root/model/DivisionLiveStat.java @@ -0,0 +1,18 @@ +package org.blondin.mpg.root.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class DivisionLiveStat { + + private int currentGameWeek; + private int totalGameWeeks; + + public int getCurrentGameWeek() { + return currentGameWeek; + } + + public int getTotalGameWeeks() { + return totalGameWeeks; + } +} diff --git a/src/main/java/org/blondin/mpg/root/model/League.java b/src/main/java/org/blondin/mpg/root/model/League.java index 234355b..3065631 100644 --- a/src/main/java/org/blondin/mpg/root/model/League.java +++ b/src/main/java/org/blondin/mpg/root/model/League.java @@ -11,6 +11,7 @@ public class League { @JsonProperty("leagueId") private String leagueId; private String divisionId; + private int divisionTotalUsers; private String name; @JsonProperty("championshipId") private ChampionshipType championship; @@ -30,6 +31,10 @@ public String getDivisionId() { return divisionId; } + public int getDivisionTotalUsers() { + return divisionTotalUsers; + } + public String getName() { return name; } diff --git a/src/main/java/org/blondin/mpg/root/model/Player.java b/src/main/java/org/blondin/mpg/root/model/Player.java index 3274572..3e4cda6 100644 --- a/src/main/java/org/blondin/mpg/root/model/Player.java +++ b/src/main/java/org/blondin/mpg/root/model/Player.java @@ -15,13 +15,9 @@ public class Player { private int quotation; @JsonProperty("price") private int pricePaid; - - @JsonProperty("teamid") - private int teamId; - @JsonProperty("club") - private String club; + private String clubId; + private String clubName; private PlayerStatus status; - private double efficiency; public String getId() { @@ -52,11 +48,23 @@ public int getPricePaid() { return pricePaid; } - public int getTeamId() { - if (true) { - throw new UnsupportedOperationException("Usage should be checked"); + public void setPricePaid(int pricePaid) { + this.pricePaid = pricePaid; + } + + public String getClubId() { + return clubId; + } + + public String getClubName() { + if (StringUtils.isBlank(clubName)) { + throw new UnsupportedOperationException("Club Name has not be filled, problem"); } - return teamId; + return clubName; + } + + public void setClubName(String clubName) { + this.clubName = clubName; } public double getEfficiency() { @@ -67,20 +75,10 @@ public void setEfficiency(double efficiency) { this.efficiency = efficiency; } - public String getClub() { - if (true) { - throw new UnsupportedOperationException("Usage should be checked"); - } - return club; - } - - public void setClub(String club) { - this.club = club; - } - public PlayerStatus getStatus() { if (true) { - throw new UnsupportedOperationException("Usage should be checked"); + // TODO: Should be checked with real use case from mobile app API + return PlayerStatus.BUY; } return status; } diff --git a/src/main/java/org/blondin/mpg/root/model/BonusSelected.java b/src/main/java/org/blondin/mpg/root/model/SelectedBonus.java similarity index 77% rename from src/main/java/org/blondin/mpg/root/model/BonusSelected.java rename to src/main/java/org/blondin/mpg/root/model/SelectedBonus.java index 844bbe2..187d7ad 100644 --- a/src/main/java/org/blondin/mpg/root/model/BonusSelected.java +++ b/src/main/java/org/blondin/mpg/root/model/SelectedBonus.java @@ -14,7 +14,7 @@ * - Chapron: removeRandomPlayer
* - */ -public class BonusSelected { +public class SelectedBonus { // TODO: Order bonus by priority !! @@ -24,6 +24,14 @@ public class BonusSelected { @JsonInclude(Include.NON_NULL) private String playerId; + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + public String getPlayerId() { return playerId; } @@ -32,11 +40,4 @@ public void setPlayerId(String playerId) { this.playerId = playerId; } - public Integer getType() { - throw new UnsupportedOperationException("Now it is name"); - } - - public void setType(int t) { - throw new UnsupportedOperationException("Now it is name"); - } } diff --git a/src/main/java/org/blondin/mpg/root/model/Team.java b/src/main/java/org/blondin/mpg/root/model/Team.java index dce1fe4..edbd6ab 100644 --- a/src/main/java/org/blondin/mpg/root/model/Team.java +++ b/src/main/java/org/blondin/mpg/root/model/Team.java @@ -10,6 +10,15 @@ public class Team { private String name; private int budget; private Map squad; + private Map bonuses; + + public Map getBonuses() { + return bonuses; + } + + public int getBonusesNumber() { + return bonuses.values().stream().reduce(0, Integer::sum); + } public String getName() { return name; @@ -22,4 +31,5 @@ public int getBudget() { public Map getSquad() { return squad; } + } diff --git a/src/test/java/org/blondin/mpg/BonusSelectionTest.java b/src/test/java/org/blondin/mpg/BonusSelectionTest.java index cbc0884..aeab797 100644 --- a/src/test/java/org/blondin/mpg/BonusSelectionTest.java +++ b/src/test/java/org/blondin/mpg/BonusSelectionTest.java @@ -3,11 +3,11 @@ import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.mock; +import java.util.HashMap; import java.util.Locale; +import java.util.Map; -import org.apache.commons.lang3.reflect.FieldUtils; -import org.blondin.mpg.root.model.Bonus; -import org.blondin.mpg.root.model.BonusSelected; +import org.blondin.mpg.root.model.SelectedBonus; import org.junit.Assert; import org.junit.Before; import org.junit.Test; @@ -20,77 +20,73 @@ public void setUp() { Locale.setDefault(Locale.ENGLISH); } - private BonusSelected getBonusSelected(Integer type) { - return getBonusSelected(type, null); + private SelectedBonus getBonusSelected(String name) { + return getBonusSelected(name, null); } - private BonusSelected getBonusSelected(Integer type, String playerId) { - BonusSelected bs = mock(BonusSelected.class); - doReturn(type).when(bs).getType(); + private SelectedBonus getBonusSelected(String name, String playerId) { + SelectedBonus bs = mock(SelectedBonus.class); + doReturn(name).when(bs).getName(); doReturn(playerId).when(bs).getPlayerId(); return bs; } - private Bonus getBonus(int b1, int b2, int b3, int b4, int b5, int b6, int b7) { - Bonus b = new Bonus(); - try { - FieldUtils.writeDeclaredField(b, "bonus1", b1, true); - FieldUtils.writeDeclaredField(b, "bonus2", b2, true); - FieldUtils.writeDeclaredField(b, "bonus3", b3, true); - FieldUtils.writeDeclaredField(b, "bonus4", b4, true); - FieldUtils.writeDeclaredField(b, "bonus5", b5, true); - FieldUtils.writeDeclaredField(b, "bonus6", b6, true); - FieldUtils.writeDeclaredField(b, "bonus7", b7, true); - } catch (IllegalAccessException e) { - throw new UnsupportedOperationException(e); - } - return b; + private Map getBonus(int b1, int b2, int b3, int b4, int b5, int b6, int b7) { + Map bonuses = new HashMap<>(); + bonuses.put("removeGoal", b1); + bonuses.put("boostAllPlayers", b2); + bonuses.put("nerfGoalkeeper", b3); + bonuses.put("boostOnePlayer", b4); + bonuses.put("mirror", b5); + bonuses.put("removeRandomPlayer", b6); + bonuses.put("blockTacticalSubs", b7); + return bonuses; } @Test public void testBonusSelection() { - Assert.assertEquals(4, Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), "mpg_match_XX_1_18_1", 10, true, "fake").getType().intValue()); - Assert.assertEquals("fake", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), "mpg_match_XX_1_18_1", 10, true, "fake").getPlayerId()); - Assert.assertNull(Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), "mpg_match_XX_1_18_1", 10, true, "fake").getPlayerId()); - Assert.assertNull(Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), "mpg_match_XX_1_3_1", 10, true, "fake").getType()); - Assert.assertEquals(2, Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), "mpg_match_XX_1_18_1", 10, true, "fake").getType().intValue()); - Assert.assertEquals(1, Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), "mpg_match_XX_1_18_1", 10, true, "fake").getType().intValue()); - Assert.assertEquals(7, Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), "mpg_match_XX_1_10_1", 10, true, "fake").getType().intValue()); + Assert.assertEquals("boostOnePlayer", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), 0, true, "fake").getName()); + Assert.assertEquals("fake", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), 0, true, "fake").getPlayerId()); + Assert.assertNull(Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), 0, true, "fake").getPlayerId()); + Assert.assertNull(Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 15, true, "fake").getName()); + Assert.assertEquals("boostAllPlayers", Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), 0, true, "fake").getName()); + Assert.assertEquals("removeGoal", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 0, true, "fake").getName()); + Assert.assertEquals("blockTacticalSubs", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 0, true, "fake").getName()); } @Test public void testBonusAlreadySelected() { - Assert.assertEquals(1, - Main.selectBonus(getBonusSelected(1), getBonus(1, 1, 1, 3, 1, 1, 1), "mpg_match_XX_1_10_1", 10, true, "fake").getType().intValue()); + Assert.assertEquals("nerfGoalkeeper", + Main.selectBonus(getBonusSelected("nerfGoalkeeper"), getBonus(1, 1, 1, 3, 1, 1, 1), 1, true, "fake").getName()); } @Test public void testBonusSelectionNotUsed() { // No previous bonus - Assert.assertNotNull(Main.selectBonus(null, null, "mpg_match_XX_1_18_1", 10, false, "fake")); - Assert.assertNull(Main.selectBonus(null, null, "mpg_match_XX_1_18_1", 10, false, "fake").getType()); - Assert.assertNull(Main.selectBonus(null, null, "mpg_match_XX_1_18_1", 10, false, "fake").getPlayerId()); + Assert.assertNotNull(Main.selectBonus(null, null, 0, false, "fake")); + Assert.assertNull(Main.selectBonus(null, null, 0, false, "fake").getName()); + Assert.assertNull(Main.selectBonus(null, null, 0, false, "fake").getPlayerId()); // Previous bonus wallet - BonusSelected bs = getBonusSelected(1); - Assert.assertNotNull(Main.selectBonus(bs, null, "mpg_match_XX_1_18_1", 10, false, "fake")); - Assert.assertEquals(1, Main.selectBonus(bs, null, "mpg_match_XX_1_18_1", 10, false, "fake").getType().intValue()); - Assert.assertNull(Main.selectBonus(bs, null, "mpg_match_XX_1_18_1", 10, false, "fake").getPlayerId()); + SelectedBonus bs = getBonusSelected("removeGoal"); + Assert.assertNotNull(Main.selectBonus(bs, null, 0, false, "fake")); + Assert.assertEquals("removeGoal", Main.selectBonus(bs, null, 0, false, "fake").getName()); + Assert.assertNull(Main.selectBonus(bs, null, 0, false, "fake").getPlayerId()); // Previous bonus redbull - bs = getBonusSelected(4, "foobar"); - Assert.assertNotNull(Main.selectBonus(bs, null, "mpg_match_XX_1_18_1", 10, false, "fake")); - Assert.assertEquals(4, Main.selectBonus(bs, null, "mpg_match_XX_1_18_1", 10, false, "fake").getType().intValue()); - Assert.assertEquals("foobar", Main.selectBonus(bs, null, "mpg_match_XX_1_18_1", 10, false, "fake").getPlayerId()); + bs = getBonusSelected("boostOnePlayer", "foobar"); + Assert.assertNotNull(Main.selectBonus(bs, null, 0, false, "fake")); + Assert.assertEquals("boostOnePlayer", Main.selectBonus(bs, null, 0, false, "fake").getName()); + Assert.assertEquals("foobar", Main.selectBonus(bs, null, 0, false, "fake").getPlayerId()); } @Test(expected = UnsupportedOperationException.class) public void testBonusSelectionBadInputBonus() { - Main.selectBonus(null, null, "mpg_match_XX_1_42_1", 10, true, "fake"); + Main.selectBonus(null, null, -1, true, "fake"); } @Test(expected = UnsupportedOperationException.class) public void testBonusSelectionBadInputPlayers() { - Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), "mpg_match_XX_1_42_1", -200, true, "fake"); + Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), -200, true, "fake"); } } diff --git a/src/test/java/org/blondin/mpg/MainTest.java b/src/test/java/org/blondin/mpg/MainTest.java index 599c5bd..4e2e15a 100644 --- a/src/test/java/org/blondin/mpg/MainTest.java +++ b/src/test/java/org/blondin/mpg/MainTest.java @@ -9,24 +9,17 @@ import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching; import static com.github.tomakehurst.wiremock.client.WireMock.verify; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.anyString; import static org.mockito.Mockito.doReturn; -import static org.mockito.Mockito.doThrow; -import static org.mockito.Mockito.mock; import static org.mockito.Mockito.spy; -import static org.mockito.Mockito.when; import java.io.File; import java.io.IOException; import java.nio.charset.StandardCharsets; import java.text.ParseException; import java.text.SimpleDateFormat; -import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Date; -import java.util.List; import javax.ws.rs.ProcessingException; import javax.ws.rs.core.Response; @@ -35,23 +28,14 @@ import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.StringUtils; import org.blondin.mpg.config.Config; -import org.blondin.mpg.out.ChampionshipOutType; -import org.blondin.mpg.out.InjuredSuspendedEquipeActuClient; import org.blondin.mpg.out.InjuredSuspendedWrapperClient; import org.blondin.mpg.root.MpgClient; -import org.blondin.mpg.root.exception.UrlForbiddenException; -import org.blondin.mpg.root.model.Coach; -import org.blondin.mpg.root.model.Dashboard; -import org.blondin.mpg.root.model.Player; import org.blondin.mpg.stats.ChampionshipStatsType; import org.blondin.mpg.stats.MpgStatsClient; -import org.blondin.mpg.stats.model.Championship; import org.blondin.mpg.test.io.ConsoleTestAppender; import org.junit.Assert; import org.junit.Test; -import com.fasterxml.jackson.databind.DeserializationFeature; -import com.fasterxml.jackson.databind.ObjectMapper; import com.github.tomakehurst.wiremock.http.Fault; import com.github.tomakehurst.wiremock.stubbing.Scenario; @@ -87,18 +71,32 @@ public void testRealWithBadCredentials() throws Exception { } @Test - public void testMobileAppApiSimpleAfter20210719() throws Exception { - prepareMainFrenchLigue2Mocks("MLEFEX6G-status-4", "20210804", "20210804", "20210804"); + public void testMobileProcessFromEmptyCoach() throws Exception { + prepareMainFrenchLigue2Mocks("MLEFEX6G-status-4", "2021", "20210804", "20210804", "20210804"); Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isUseBonus(); + doReturn(true).when(config).isTeampUpdate(); + doReturn(true).when(config).isUseBonus(); + doReturn(true).when(config).isTransactionsProposal(); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.MLEFEX6G.20210804.json"))); + stubFor(get("/team/mpg_team_MLEFEX6G_3_1_2") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.team.MLEFEX6G.20210804.json"))); stubFor(get("/division/mpg_division_MLEFEX6G_3_1/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.json"))); + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.empty.json"))); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1/available-players") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.trading.buy.MLEFEX6G.20210804.json"))); + stubFor(post("/match-team-formation/mpg_match_team_formation_MLEFEX6G_3_1_2_2_2") + .withRequestBody(equalToJson(getTestFileToString("mpg.coach.MLEFEX6G.20210804-Request.json"))) + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBody("{\"success\":\"teamSaved\"}"))); executeMainProcess(config); + Assert.assertTrue(getLogOut(), getLogOut().contains("Ligue 2 Fous")); Assert.assertTrue(getLogOut(), getLogOut().contains("Ba")); - Assert.assertFalse(getLogOut(), getLogOut().contains("Updating team")); + Assert.assertTrue(getLogOut(), getLogOut().contains("Updating team")); + Assert.assertTrue(getLogOut(), getLogOut().contains("Transactions proposal")); } + // TODO: Remove below methods + @Test public void testBonusUberEatsUpdate() throws Exception { prepareMainFrenchLigue1Mocks("KLGXSSUG-status-4", "20181114", "20181114", "20181114"); @@ -164,7 +162,7 @@ public void testInjuredLigue2ServiceUnavailable() throws Exception { @Test public void testInjuredSuspendedSportsGamblerFallBackEquipeActu() throws Exception { - prepareMainFrenchLigueMocks("MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB", "20201021", 1, "20201021", null, "20201006", null); + prepareMainFrenchLigueMocks("MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB", 1, null, "20201021", "20201021", null, "20201006", null); stubFor(get("/league/MLAX7HMK/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLAX7HMK.20201021.json"))); // 403 for sportgambler @@ -509,7 +507,7 @@ public void testMultipleDivisions() throws Exception { @Test public void testSkipChampionsLeague() throws Exception { - prepareMainFrenchLigueMocks("LM65L48T", null, -1, null, null, null, null); + prepareMainFrenchLigueMocks("LM65L48T", -1, null, null, null, null, null, null); executeMainProcess(); Assert.assertTrue(getLogOut().contains("Sorry, Champions League is currently not supported.")); } @@ -953,39 +951,6 @@ public void testSellBuyNoWarningInLog() throws Exception { Assert.assertFalse(getLogOut().contains("Last day stats have not fully reached")); } - @Test - public void testProcessWithLocalMapping() throws Exception { - // Mock initialization - MpgClient mpgClient = mock(MpgClient.class); - when(mpgClient.getCoach(anyString())).thenReturn(new ObjectMapper().enable(DeserializationFeature.UNWRAP_ROOT_VALUE) - .readValue(new File(TESTFILES_BASE, "mpg.coach.20180926.json"), Coach.class)); - when(mpgClient.getDashboard()).thenReturn(new ObjectMapper().enable(DeserializationFeature.UNWRAP_ROOT_VALUE) - .readValue(new File(TESTFILES_BASE, "mpg.dashboard.KLGXSSUG-status-4.json"), Dashboard.class)); - - MpgStatsClient mpgStatsClient = mock(MpgStatsClient.class); - when(mpgStatsClient.getStats(any())) - .thenReturn(new ObjectMapper().readValue(new File(TESTFILES_BASE, "mpgstats.ligue-1.20181017.json"), Championship.class)); - - InjuredSuspendedEquipeActuClient outPlayersEquipeActuClient = spy(InjuredSuspendedEquipeActuClient.build(null)); - doReturn(FileUtils.readFileToString(new File(TESTFILES_BASE, "equipeactu.ligue-1.20181017.html"), StandardCharsets.UTF_8)) - .when(outPlayersEquipeActuClient).getHtmlContent(ChampionshipOutType.LIGUE_1); - InjuredSuspendedWrapperClient outPlayersClient = spy(InjuredSuspendedWrapperClient.class); - doReturn(outPlayersEquipeActuClient).when(outPlayersClient).useDirectlyOnlyForTestGetEquipeActuClient(); - doThrow(UrlForbiddenException.class).when(outPlayersClient).useDirectlyOnlyForTestGetSportsGamblerClient(); - - // Test out (on cloned list) - List players = new ArrayList<>(mpgClient.getCoach("fake").getPlayers()); - Assert.assertNotNull("Nkunku should be here", - players.stream().filter(customer -> "Nkunku".equals(customer.getLastName())).findAny().orElse(null)); - Main.completePlayersClubs(players, mpgClient.getCoach("fake").getTeams()); - Main.removeOutPlayers(players, outPlayersClient, ChampionshipOutType.LIGUE_1, false); - Assert.assertNull("Nkunku should be removed", - players.stream().filter(customer -> "Nkunku".equals(customer.getLastName())).findAny().orElse(null)); - - // Run global process - executeMainProcess(mpgClient, mpgStatsClient, outPlayersClient, getConfig()); - } - @Test public void testNoTacticalSubstitutes() throws Exception { prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190211", "20190211", "20190211"); @@ -1184,62 +1149,95 @@ private void executeMainProcess(MpgClient mpgClient, MpgStatsClient mpgStatsClie Main.process(ApiClients.build(mpgClientLocal, mpgStatsClientLocal, injuredSuspendedClientLocal), c); } - private static void prepareMainFrenchLigue1Mocks(String fileRootDashboard, String fileStatsLeagues, String dataFileStats, + private static void prepareMainFrenchLigue2Mocks(String dashboard, String fileStatsLeagues, String dataFileStats, String dataFileMaLigue2) { + // TODO: Should be removed + prepareMainFrenchLigueMocks(dashboard, 2, null, fileStatsLeagues, dataFileStats, null, null, dataFileMaLigue2); + } + + private static void prepareMainFrenchLigue1Mocks(String dashboard, String fileStatsLeagues, String dataFileStats, String dataFileSportsGamblerOrEquipeActu) { + prepareMainFrenchLigue1Mocks(dashboard, null, fileStatsLeagues, dataFileStats, dataFileSportsGamblerOrEquipeActu); + } + + private static void prepareMainFrenchLigue1Mocks(String dashboard, String poolPlayerYear, String buildStatsLeaguesDate, String statsLeaguesDate, + String sportsGamblerDateOrEquipeActu) { try { - if (StringUtils.isBlank(dataFileSportsGamblerOrEquipeActu)) { - prepareMainFrenchLigueMocks(fileRootDashboard, fileStatsLeagues, 1, dataFileStats, null, null, null); + if (StringUtils.isBlank(sportsGamblerDateOrEquipeActu)) { + prepareMainFrenchLigueMocks(dashboard, 1, null, buildStatsLeaguesDate, statsLeaguesDate, null, null, null); return; } final SimpleDateFormat dateParser = new SimpleDateFormat("yyyyMMdddd"); Date sportsGamblerSwitch = dateParser.parse("20201010"); - Date dataFileDate = dateParser.parse(dataFileSportsGamblerOrEquipeActu); + Date dataFileDate = dateParser.parse(sportsGamblerDateOrEquipeActu); if (dataFileDate.after(sportsGamblerSwitch)) { - prepareMainFrenchLigueMocks(fileRootDashboard, fileStatsLeagues, 1, dataFileStats, dataFileSportsGamblerOrEquipeActu, null, null); + prepareMainFrenchLigueMocks(dashboard, 1, poolPlayerYear, buildStatsLeaguesDate, statsLeaguesDate, sportsGamblerDateOrEquipeActu, + null, null); } else { - prepareMainFrenchLigueMocks(fileRootDashboard, fileStatsLeagues, 1, dataFileStats, null, dataFileSportsGamblerOrEquipeActu, null); + prepareMainFrenchLigueMocks(dashboard, 1, poolPlayerYear, buildStatsLeaguesDate, statsLeaguesDate, null, + sportsGamblerDateOrEquipeActu, null); } } catch (ParseException e) { throw new UnsupportedOperationException(e); } } - private static void prepareMainFrenchLigue2Mocks(String fileRootDashboard, String fileStatsLeagues, String dataFileStats, - String dataFileMaLigue2) { - prepareMainFrenchLigueMocks(fileRootDashboard, fileStatsLeagues, 2, dataFileStats, null, null, dataFileMaLigue2); + private static void prepareMainFrenchLigue2Mocks(String dashboard, String poolPlayerYear, String buildStatsLeaguesDate, String statsLeaguesDate, + String maLigue2Date) { + prepareMainFrenchLigueMocks(dashboard, 2, poolPlayerYear, buildStatsLeaguesDate, statsLeaguesDate, null, null, maLigue2Date); } - private static void prepareMainFrenchLigueMocks(String fileRootDashboard, String fileStatsLeagues, int ligue, String dataFileStats, - String dataFileSportsGambler, String dataFileEquipeActu, String dataFileMaLigue2) { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - if (StringUtils.isNotBlank(fileRootDashboard)) { - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard." + fileRootDashboard + ".json"))); - } - if (StringUtils.isNotBlank(fileStatsLeagues)) { - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json") - .withBodyFile(getTestFile("mlnstats.builds." + fileStatsLeagues + ".json", "mpgstats.leagues." + fileStatsLeagues + ".json")))); - } - if (StringUtils.isNotBlank(dataFileStats)) { - stubFor(get("/leagues/Ligue-" + ligue).willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile(getTestFile( - "mlnstats.ligue-" + ligue + "." + dataFileStats + ".json", "mpgstats.ligue-" + ligue + "." + dataFileStats + ".json")))); - } - if (StringUtils.isNotBlank(dataFileSportsGambler)) { - stubFor(get("/injuries/football/france-ligue-" + ligue + "/").willReturn(aResponse().withHeader("Content-Type", "application/json") - .withBodyFile("sportsgambler.ligue-" + ligue + "." + dataFileSportsGambler + ".html"))); - } - if (StringUtils.isNotBlank(dataFileEquipeActu)) { - stubFor(get("/blessures-et-suspensions/fodbold/france/ligue-" + ligue).willReturn(aResponse() - .withHeader("Content-Type", "application/json").withBodyFile("equipeactu.ligue-" + ligue + "." + dataFileEquipeActu + ".html"))); - - // 403 on SportsGambler, to force FallBack on EquipeActu - stubFor(get("/injuries/football/france-ligue-" + ligue + "/") - .willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - } - if (StringUtils.isNotBlank(dataFileMaLigue2)) { - stubFor(get("/2020/08/20/joueurs-blesses-et-suspendus/").willReturn(aResponse().withHeader("Content-Type", "application/json") - .withBodyFile("maligue2.joueurs-blesses-et-suspendus." + dataFileMaLigue2 + ".html"))); + private static void prepareMainFrenchLigueMocks(String dashboard, int frenchLigue, String poolPlayerYear, String buildStatsLeaguesDate, + String statsLeaguesDate, String sportsGamblerDate, String equipeActuDate, String maLigue2Date) { + try { + SimpleDateFormat dateDayFormat = new SimpleDateFormat("yyyyMMdd"); + SimpleDateFormat dateYearFormat = new SimpleDateFormat("yyyy"); + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + if (StringUtils.isNotBlank(dashboard)) { + stubFor(get("/dashboard/leagues") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard." + dashboard + ".json"))); + } + if (StringUtils.isNotBlank(poolPlayerYear)) { + dateYearFormat.parse(poolPlayerYear); + stubFor(get("/championship-players-pool/" + (frenchLigue == 1 ? 1 : 4)) + .willReturn(aResponse().withHeader("Content-Type", "application/json") + .withBodyFile("mpg.poolPlayers." + frenchLigue + "." + poolPlayerYear + ".json"))); + stubFor(get("/championship-clubs").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.clubs." + poolPlayerYear + ".json"))); + } + if (StringUtils.isNotBlank(buildStatsLeaguesDate)) { + dateDayFormat.parse(buildStatsLeaguesDate); + stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile( + getTestFile("mlnstats.builds." + buildStatsLeaguesDate + ".json", "mpgstats.leagues." + buildStatsLeaguesDate + ".json")))); + } + if (StringUtils.isNotBlank(statsLeaguesDate)) { + dateDayFormat.parse(statsLeaguesDate); + stubFor(get("/leagues/Ligue-" + frenchLigue).willReturn(aResponse().withHeader("Content-Type", "application/json") + .withBodyFile(getTestFile("mlnstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json", + "mpgstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json")))); + } + if (StringUtils.isNotBlank(sportsGamblerDate)) { + dateDayFormat.parse(sportsGamblerDate); + stubFor(get("/injuries/football/france-ligue-" + frenchLigue + "/") + .willReturn(aResponse().withHeader("Content-Type", "application/json") + .withBodyFile("sportsgambler.ligue-" + frenchLigue + "." + sportsGamblerDate + ".html"))); + } + if (StringUtils.isNotBlank(equipeActuDate)) { + dateDayFormat.parse(equipeActuDate); + stubFor(get("/blessures-et-suspensions/fodbold/france/ligue-" + frenchLigue) + .willReturn(aResponse().withHeader("Content-Type", "application/json") + .withBodyFile("equipeactu.ligue-" + frenchLigue + "." + equipeActuDate + ".html"))); + + // 403 on SportsGambler, to force FallBack on EquipeActu + stubFor(get("/injuries/football/france-ligue-" + frenchLigue + "/") + .willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); + } + if (StringUtils.isNotBlank(maLigue2Date)) { + stubFor(get("/2020/08/20/joueurs-blesses-et-suspendus/").willReturn(aResponse().withHeader("Content-Type", "application/json") + .withBodyFile("maligue2.joueurs-blesses-et-suspendus." + maLigue2Date + ".html"))); + } + } catch (ParseException e) { + throw new UnsupportedOperationException("Input is not in correct date format: " + e.getMessage(), e); } } diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index 6ddc606..2f0fbaa 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -9,6 +9,8 @@ import org.blondin.mpg.AbstractMockTestClient; import org.blondin.mpg.config.Config; import org.blondin.mpg.root.model.ChampionshipType; +import org.blondin.mpg.root.model.Club; +import org.blondin.mpg.root.model.Clubs; import org.blondin.mpg.root.model.Coach; import org.blondin.mpg.root.model.Dashboard; import org.blondin.mpg.root.model.Division; @@ -66,6 +68,7 @@ public void testMockDashboard() throws Exception { Assert.assertEquals(ChampionshipType.LIGUE_2, l.getChampionship()); Assert.assertEquals(Mode.EXPERT, l.getMode()); Assert.assertEquals(LeagueStatus.GAMES, l.getStatus()); + Assert.assertEquals(10, l.getDivisionTotalUsers()); } @Test @@ -73,13 +76,16 @@ public void testMockDivision() throws Exception { stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); stubFor(get("/division/mpg_division_MLEFEX6G_3_1") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.MLEFEX6G.json"))); + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.MLEFEX6G.20210804.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); Division division = mpgClient.getDivision("mpg_division_MLEFEX6G_3_1"); Assert.assertNotNull(division); Assert.assertNotNull(division.getUsersTeams()); Assert.assertTrue(division.getUsersTeams().size() > 0); Assert.assertEquals("mpg_team_MLEFEX6G_3_1_2", division.getTeam(mpgClient.getUserId())); + Assert.assertEquals(2, division.getGameCurrent()); + Assert.assertEquals(18, division.getGameTotal()); + Assert.assertEquals(17, division.getGameRemaining()); } @Test @@ -92,7 +98,9 @@ public void testMockTeam() throws Exception { Team team = mpgClient.getTeam("mpg_team_MLEFEX6G_3_1_2"); Assert.assertNotNull(team); Assert.assertEquals("Axel Football Club", team.getName()); - Assert.assertEquals(0, team.getBudget()); + Assert.assertEquals(42, team.getBudget()); + Assert.assertNotNull(team.getBonuses()); + Assert.assertEquals(10, team.getBonusesNumber()); Assert.assertNotNull(team.getSquad()); Assert.assertEquals(20, team.getSquad().size()); Player p = team.getSquad().get("mpg_championship_player_220359"); @@ -112,6 +120,22 @@ public void testMockCoach() throws Exception { Assert.assertTrue(coach.getComposition() > 0); } + @Test + public void testMockClubs() throws Exception { + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/championship-clubs") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.clubs.2021.json"))); + MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); + Clubs clubs = mpgClient.getClubs(); + Assert.assertNotNull(clubs); + Assert.assertNotNull(clubs.getChampionshipClubs()); + Assert.assertTrue(clubs.getChampionshipClubs().size() > 40); + Club club = clubs.getChampionshipClubs().get("mpg_championship_club_693"); + Assert.assertNotNull(club); + Assert.assertEquals("Sochaux", club.getName()); + } + @Test public void testMockPoolPlayers() throws Exception { stubFor(post("/user/sign-in") diff --git a/src/test/resources/__files/README.md b/src/test/resources/__files/README.md index f7765cc..9ebd6c7 100644 --- a/src/test/resources/__files/README.md +++ b/src/test/resources/__files/README.md @@ -15,12 +15,13 @@ The `XXX` should be replaced by a use case scenario (like data, some league, ... | `mpg.dashboard.XXX.json` | https://api.mpg.football/dashboard/leagues | **Dashboard / Home** | | `mpg.division.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1 | **User->Team association** | | `mpg.team.XXX.json` | https://api.mpg.football/team/mpg_team_MLEXXXXX_3_1_2 | **Current User Team** | -| `mpg.poolPlayers.X.YYYY.json` | https://api.mpg.football/championship-players-pool/X | **League Pool Player** | | `mpg.coach.XXX.json` | https://api.mpg.football/TODO | **coach**, `GET` requests | | `mpg.coach.XXX-Request-XXX.json` | https://api.mpg.football/match-team-formation/[matchTeamFormation.id] | MPG league **coach**, `PUT` requests | | `mpg.mercato.XXX.json` | https://api.mpg.football/TODO | MPG league **mercato** | | `mpg.trading.buy.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1/available-players | MPG league **transfer** | | `mpg.user-signIn.XXX.json` | https://api.mpg.football/user/sign-in | **Login** | +| `mpg.poolPlayers.X.YYYY.json` | https://api.mpg.football/championship-players-pool/X | **League Pool Player** | +| `mpg.clubs.YYYY.json` | https://api.mpg.football/championship-clubs | **Clubs details** | ### Players statistics diff --git a/src/test/resources/__files/mpg.clubs.2021.json b/src/test/resources/__files/mpg.clubs.2021.json new file mode 100644 index 0000000..69c82e5 --- /dev/null +++ b/src/test/resources/__files/mpg.clubs.2021.json @@ -0,0 +1,3375 @@ +{ + "championshipClubs": { + "mpg_championship_club_1": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/1.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/1.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/1.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/1.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/1.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/1.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/1.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/1.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1", + "name": { + "fr-FR": "Man. United", + "en-GB": "Man. United", + "es-ES": "Man. United" + }, + "shortName": "MUN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/1.png" + }, + "mpg_championship_club_1000": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/1000.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1000", + "name": { + "fr-FR": "Midtjylland", + "en-GB": "Midtjylland", + "es-ES": "Midtjylland" + }, + "shortName": "MCH", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/1000.png" + }, + "mpg_championship_club_1025": { + "championships": { + "5": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/1025.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1025", + "name": { + "fr-FR": "Salernitana", + "en-GB": "Salernitana", + "es-ES": "Salernitana" + }, + "shortName": "SAL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/1025.png" + }, + "mpg_championship_club_1028": { + "championships": { + "1": { + "jerseys": { + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/1028.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/1028.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/1028.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/1028.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/1028.png" + } + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/1028.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1028.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1028.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1028", + "name": { + "fr-FR": "Caen", + "en-GB": "Caen", + "es-ES": "Caen" + }, + "shortName": "CAE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/1028.png" + }, + "mpg_championship_club_11": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/11.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/11.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/11.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/11.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/11.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/11.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/11.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_11", + "name": { + "fr-FR": "Everton", + "en-GB": "Everton", + "es-ES": "Everton" + }, + "shortName": "EVE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/11.png" + }, + "mpg_championship_club_110": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/110.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/110.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/110.png" + } + } + }, + "id": "mpg_championship_club_110", + "name": { + "fr-FR": "Stoke City", + "en-GB": "Stoke City", + "es-ES": "Stoke City" + }, + "shortName": "STK", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/110.png" + }, + "mpg_championship_club_1163": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/1163.png" + } + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/1163.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1163.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1163.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1163", + "name": { + "fr-FR": "Ajaccio", + "en-GB": "Ajaccio", + "es-ES": "Ajaccio" + }, + "shortName": "ACA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/1163.png" + }, + "mpg_championship_club_120": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/120.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/120.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/120.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_120", + "name": { + "fr-FR": "Milan", + "en-GB": "Milan", + "es-ES": "Milan" + }, + "shortName": "ACM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/120.png" + }, + "mpg_championship_club_121": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/121.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/121.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/121.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_121", + "name": { + "fr-FR": "Roma", + "en-GB": "Roma", + "es-ES": "Roma" + }, + "shortName": "ROM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/121.png" + }, + "mpg_championship_club_123": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/123.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/123.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/123.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_123", + "name": { + "fr-FR": "Bologna", + "en-GB": "Bologna", + "es-ES": "Bologna" + }, + "shortName": "BOL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/123.png" + }, + "mpg_championship_club_124": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/124.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/124.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/124.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_124", + "name": { + "fr-FR": "Cagliari", + "en-GB": "Cagliari", + "es-ES": "Cagliari" + }, + "shortName": "CAG", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/124.png" + }, + "mpg_championship_club_1245": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/1245.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1245.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1245.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1245", + "name": { + "fr-FR": "Niort", + "en-GB": "Niort", + "es-ES": "Niort" + }, + "shortName": "NIO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1245.png" + }, + "mpg_championship_club_125": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/125.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/125.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/125.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_125", + "name": { + "fr-FR": "Fiorentina", + "en-GB": "Fiorentina", + "es-ES": "Fiorentina" + }, + "shortName": "FIO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/125.png" + }, + "mpg_championship_club_126": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/126.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/126.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/126.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_126", + "name": { + "fr-FR": "Verona", + "en-GB": "Verona", + "es-ES": "Verona" + }, + "shortName": "VER", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/126.png" + }, + "mpg_championship_club_127": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/127.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/127.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/127.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/127.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/127.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_127", + "name": { + "fr-FR": "Inter", + "en-GB": "Inter", + "es-ES": "Inter" + }, + "shortName": "INT", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/127.png" + }, + "mpg_championship_club_1272": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/1272.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1272.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1272.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1272", + "name": { + "fr-FR": "Grenoble", + "en-GB": "Grenoble", + "es-ES": "Grenoble" + }, + "shortName": "GRN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1272.png" + }, + "mpg_championship_club_128": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/128.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/128.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/128.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/128.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/128.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_128", + "name": { + "fr-FR": "Juventus", + "en-GB": "Juventus", + "es-ES": "Juventus" + }, + "shortName": "JUV", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/128.png" + }, + "mpg_championship_club_129": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/129.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/129.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/129.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/129.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_129", + "name": { + "fr-FR": "Lazio", + "en-GB": "Lazio", + "es-ES": "Lazio" + }, + "shortName": "LAZ", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/129.png" + }, + "mpg_championship_club_13": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/13.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/13.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/13.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/13.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/13.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/13.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/13.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_13", + "name": { + "fr-FR": "Leicester", + "en-GB": "Leicester", + "es-ES": "Leicester" + }, + "shortName": "LEI", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/13.png" + }, + "mpg_championship_club_130": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/130.png" + } + } + }, + "id": "mpg_championship_club_130", + "name": { + "fr-FR": "Lecce", + "en-GB": "Lecce", + "es-ES": "Lecce" + }, + "shortName": "LEC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/130.png" + }, + "mpg_championship_club_131": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/131.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/131.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_131", + "name": { + "fr-FR": "Parma", + "en-GB": "Parma", + "es-ES": "Parma" + }, + "shortName": "PMA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/131.png" + }, + "mpg_championship_club_1341": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/1341.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/1341.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1341", + "name": { + "fr-FR": "Zenit", + "en-GB": "Zenit", + "es-ES": "Zenit" + }, + "shortName": "ZNT", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/1341.png" + }, + "mpg_championship_club_135": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/135.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/135.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/135.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_135", + "name": { + "fr-FR": "Torino", + "en-GB": "Torino", + "es-ES": "Torino" + }, + "shortName": "TNO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/135.png" + }, + "mpg_championship_club_136": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/136.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/136.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/136.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_136", + "name": { + "fr-FR": "Udinese", + "en-GB": "Udinese", + "es-ES": "Udinese" + }, + "shortName": "UDI", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/136.png" + }, + "mpg_championship_club_137": { + "championships": { + "5": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/137.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_137", + "name": { + "fr-FR": "Venezia", + "en-GB": "Venezia", + "es-ES": "Venezia" + }, + "shortName": "VEN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/137.png" + }, + "mpg_championship_club_138": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/138.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/138.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/138.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_138", + "name": { + "fr-FR": "Auxerre", + "en-GB": "Auxerre", + "es-ES": "Auxerre" + }, + "shortName": "AUX", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/138.png" + }, + "mpg_championship_club_139": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/139.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/139.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/139.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/139.png" + } + }, + "4": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/139.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_139", + "name": { + "fr-FR": "Bastia", + "en-GB": "Bastia", + "es-ES": "Bastia" + }, + "shortName": "BAS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/139.png" + }, + "mpg_championship_club_1395": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/1395.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/1395.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/1395.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/1395.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/1395.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/1395.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/1395.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/1395.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/1395.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1395", + "name": { + "fr-FR": "Nice", + "en-GB": "Nice", + "es-ES": "Nice" + }, + "shortName": "NIC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/1395.png" + }, + "mpg_championship_club_14": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/14.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/14.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/14.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/14.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/14.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/14.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/14.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/14.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/14.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_14", + "name": { + "fr-FR": "Liverpool", + "en-GB": "Liverpool", + "es-ES": "Liverpool" + }, + "shortName": "LIV", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/14.png" + }, + "mpg_championship_club_140": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/140.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/140.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/140.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/140.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/140.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/140.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/140.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/140.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/140.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_140", + "name": { + "fr-FR": "Bordeaux", + "en-GB": "Bordeaux", + "es-ES": "Bordeaux" + }, + "shortName": "BOR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/140.png" + }, + "mpg_championship_club_141": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/141.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/141.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/141.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_141", + "name": { + "fr-FR": "Le Havre", + "en-GB": "Le Havre", + "es-ES": "Le Havre" + }, + "shortName": "LHV", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/141.png" + }, + "mpg_championship_club_142": { + "championships": { + "1": { + "jerseys": { + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/142.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/142.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/142.png" + }, + "active": true + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/142.png" + } + } + }, + "id": "mpg_championship_club_142", + "name": { + "fr-FR": "Lens", + "en-GB": "Lens", + "es-ES": "Lens" + }, + "shortName": "LEN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/142.png" + }, + "mpg_championship_club_1423": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/1423.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/1423.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/1423.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/1423.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/1423.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/1423.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/1423.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1423", + "name": { + "fr-FR": "Reims", + "en-GB": "Reims", + "es-ES": "Reims" + }, + "shortName": "REI", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/1423.png" + }, + "mpg_championship_club_143": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/143.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/143.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/143.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/143.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/143.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/143.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/143.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/143.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/143.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/143.png" + } + } + }, + "id": "mpg_championship_club_143", + "name": { + "fr-FR": "Lyon", + "en-GB": "Lyon", + "es-ES": "Lyon" + }, + "shortName": "LYN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/143.png" + }, + "mpg_championship_club_1430": { + "championships": { + "1": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/1430.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/1430.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/1430.png" + } + }, + "4": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1430.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1430.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1430", + "name": { + "fr-FR": "Amiens", + "en-GB": "Amiens", + "es-ES": "Amiens" + }, + "shortName": "AMI", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/1430.png" + }, + "mpg_championship_club_144": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/144.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/144.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/144.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/144.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/144.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/144.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/144.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/144.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/144.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/144.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_144", + "name": { + "fr-FR": "Marseille", + "en-GB": "Marseille", + "es-ES": "Marseille" + }, + "shortName": "MAR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/144.png" + }, + "mpg_championship_club_145": { + "championships": { + "1": { + "jerseys": { + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/145.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/145.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/145.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/145.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/145.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/145.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_145", + "name": { + "fr-FR": "Metz", + "en-GB": "Metz", + "es-ES": "Metz" + }, + "shortName": "MET", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/145.png" + }, + "mpg_championship_club_1450": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/1450.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/1450.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/1450.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/1450.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/1450.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1450", + "name": { + "fr-FR": "Getafe", + "en-GB": "Getafe", + "es-ES": "Getafe" + }, + "shortName": "GTF", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/1450.png" + }, + "mpg_championship_club_1454": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/1454.png" + } + } + }, + "id": "mpg_championship_club_1454", + "name": { + "fr-FR": "SPAL", + "en-GB": "SPAL", + "es-ES": "SPAL" + }, + "shortName": "SPAL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/1454.png" + }, + "mpg_championship_club_146": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/146.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/146.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/146.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/146.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/146.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/146.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/146.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/146.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/146.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_146", + "name": { + "fr-FR": "Monaco", + "en-GB": "Monaco", + "es-ES": "Monaco" + }, + "shortName": "MCO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/146.png" + }, + "mpg_championship_club_147": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/147.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/147.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/147.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/147.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/147.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/147.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/147.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/147.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/147.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_147", + "name": { + "fr-FR": "Montpellier", + "en-GB": "Montpellier", + "es-ES": "Montpellier" + }, + "shortName": "MTP", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/147.png" + }, + "mpg_championship_club_148": { + "championships": { + "1": { + "jerseys": { + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/148.png" + } + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/148.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/148.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/148.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_148", + "name": { + "fr-FR": "Nancy", + "en-GB": "Nancy", + "es-ES": "Nancy" + }, + "shortName": "NAC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/148.png" + }, + "mpg_championship_club_149": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/149.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/149.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/149.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/149.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/149.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/149.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/149.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/149.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/149.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/149.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/149.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_149", + "name": { + "fr-FR": "Paris", + "en-GB": "Paris", + "es-ES": "Paris" + }, + "shortName": "PSG", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/149.png" + }, + "mpg_championship_club_150": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/150.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/150.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/150.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/150.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/150.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/150.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/150.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/150.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/150.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/150.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_150", + "name": { + "fr-FR": "Rennes", + "en-GB": "Rennes", + "es-ES": "Rennes" + }, + "shortName": "REN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/150.png" + }, + "mpg_championship_club_152": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/152.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/152.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/152.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/152.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/152.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/152.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/152.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/152.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/152.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_152", + "name": { + "fr-FR": "St Etienne", + "en-GB": "St Etienne", + "es-ES": "St Etienne" + }, + "shortName": "STE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/152.png" + }, + "mpg_championship_club_153": { + "championships": { + "1": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/153.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/153.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/153.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/153.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/153.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_153", + "name": { + "fr-FR": "Strasbourg", + "en-GB": "Strasbourg", + "es-ES": "Strasbourg" + }, + "shortName": "SBG", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/153.png" + }, + "mpg_championship_club_154": { + "championships": { + "1": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/154.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/154.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/154.png" + }, + "active": true + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/154.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/154.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_154", + "name": { + "fr-FR": "Troyes", + "en-GB": "Troyes", + "es-ES": "Troyes" + }, + "shortName": "TRO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/154.png" + }, + "mpg_championship_club_156": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/156.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/156.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_156", + "name": { + "fr-FR": "Bayern", + "en-GB": "Bayern", + "es-ES": "Bayern" + }, + "shortName": "FCB", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/156.png" + }, + "mpg_championship_club_157": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/157.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/157.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_157", + "name": { + "fr-FR": "Dortmund", + "en-GB": "Dortmund", + "es-ES": "Dortmund" + }, + "shortName": "BVB", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/157.png" + }, + "mpg_championship_club_164": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/164.png" + } + } + }, + "id": "mpg_championship_club_164", + "name": { + "fr-FR": "Bayer 04 Leverkusen", + "en-GB": "Bayer 04 Leverkusen", + "es-ES": "Bayer 04 Leverkusen" + }, + "shortName": "B04", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/164.png" + }, + "mpg_championship_club_173": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/173.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/173.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/173.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/173.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/173.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_173", + "name": { + "fr-FR": "Alavés", + "en-GB": "Alavés", + "es-ES": "Alavés" + }, + "shortName": "ALV", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/173.png" + }, + "mpg_championship_club_1737": { + "championships": { + "3": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/1737.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/1737.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1737", + "name": { + "fr-FR": "Cádiz", + "en-GB": "Cádiz", + "es-ES": "Cádiz" + }, + "shortName": "CAD", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/1737.png" + }, + "mpg_championship_club_174": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/174.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/174.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/174.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/174.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/174.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_174", + "name": { + "fr-FR": "Bilbao", + "en-GB": "Bilbao", + "es-ES": "Bilbao" + }, + "shortName": "ATH", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/174.png" + }, + "mpg_championship_club_175": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/175.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/175.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/175.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/175.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/175.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/175.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/175.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_175", + "name": { + "fr-FR": "Atlético", + "en-GB": "Atlético", + "es-ES": "Atlético" + }, + "shortName": "ATM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/175.png" + }, + "mpg_championship_club_176": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/176.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/176.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/176.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/176.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/176.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_176", + "name": { + "fr-FR": "Celta", + "en-GB": "Celta", + "es-ES": "Celta" + }, + "shortName": "CEL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/176.png" + }, + "mpg_championship_club_177": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/177.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/177.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/177.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/177.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_177", + "name": { + "fr-FR": "Espanyol", + "en-GB": "Espanyol", + "es-ES": "Espanyol" + }, + "shortName": "ESP", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/177.png" + }, + "mpg_championship_club_178": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/178.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/178.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/178.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/178.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/178.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/178.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/178.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_178", + "name": { + "fr-FR": "Barcelona", + "en-GB": "Barcelona", + "es-ES": "Barcelona" + }, + "shortName": "BAR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/178.png" + }, + "mpg_championship_club_179": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/179.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/179.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/179.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/179.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/179.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/179.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_179", + "name": { + "fr-FR": "Sevilla", + "en-GB": "Sevilla", + "es-ES": "Sevilla" + }, + "shortName": "SFC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/179.png" + }, + "mpg_championship_club_180": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/180.png" + } + } + }, + "id": "mpg_championship_club_180", + "name": { + "fr-FR": "Deportivo de La Coruña", + "en-GB": "Deportivo de La Coruña", + "es-ES": "Deportivo de La Coruña" + }, + "shortName": "DEP", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/180.png" + }, + "mpg_championship_club_181": { + "championships": { + "3": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/181.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/181_v2.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_181", + "name": { + "fr-FR": "Mallorca", + "en-GB": "Mallorca", + "es-ES": "Mallorca" + }, + "shortName": "MLL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/181_v2.png" + }, + "mpg_championship_club_182": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/182.png" + } + } + }, + "id": "mpg_championship_club_182", + "name": { + "fr-FR": "Málaga", + "en-GB": "Málaga", + "es-ES": "Málaga" + }, + "shortName": "MAL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/182.png" + }, + "mpg_championship_club_184": { + "championships": { + "3": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/184.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/184.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_184", + "name": { + "fr-FR": "Rayo Vallecano", + "en-GB": "Rayo Vallecano", + "es-ES": "Rayo Vallecano" + }, + "shortName": "RVM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/184.png" + }, + "mpg_championship_club_185": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/185.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/185.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/185.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/185.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/185.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_185", + "name": { + "fr-FR": "Betis", + "en-GB": "Betis", + "es-ES": "Betis" + }, + "shortName": "RBB", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/185.png" + }, + "mpg_championship_club_186": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/186.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/186.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/186.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/186.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/186.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/186.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/186.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_186", + "name": { + "fr-FR": "Real Madrid", + "en-GB": "Real Madrid", + "es-ES": "Real Madrid" + }, + "shortName": "RMA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/186.png" + }, + "mpg_championship_club_188": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/188.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/188.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/188.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/188.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/188.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_188", + "name": { + "fr-FR": "Real Sociedad", + "en-GB": "Real Sociedad", + "es-ES": "Real Sociedad" + }, + "shortName": "RSO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/188.png" + }, + "mpg_championship_club_191": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/191.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/191.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/191.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/191.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/191.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/191.png" + } + } + }, + "id": "mpg_championship_club_191", + "name": { + "fr-FR": "Valencia", + "en-GB": "Valencia", + "es-ES": "Valencia" + }, + "shortName": "VCF", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/191.png" + }, + "mpg_championship_club_192": { + "championships": { + "3": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/192.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/192.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/192.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_192", + "name": { + "fr-FR": "Valladolid", + "en-GB": "Valladolid", + "es-ES": "Valladolid" + }, + "shortName": "VLL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/192.png" + }, + "mpg_championship_club_194": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/194.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_194", + "name": { + "fr-FR": "Kiev", + "en-GB": "Kiev", + "es-ES": "Kiev" + }, + "shortName": "DYK", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/194.png" + }, + "mpg_championship_club_1983": { + "championships": { + "1": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/1983.png" + }, + "active": true + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/1983.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1983.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_1983", + "name": { + "fr-FR": "Clermont", + "en-GB": "Clermont", + "es-ES": "Clermont" + }, + "shortName": "CLM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/1983.png" + }, + "mpg_championship_club_1996": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/1996.png" + } + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/1996.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/1996.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/1996.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_1996", + "name": { + "fr-FR": "Valenciennes", + "en-GB": "Valenciennes", + "es-ES": "Valenciennes" + }, + "shortName": "VCN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/1996.png" + }, + "mpg_championship_club_2": { + "championships": { + "2": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/2.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/2.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2", + "name": { + "fr-FR": "Leeds", + "en-GB": "Leeds", + "es-ES": "Leeds" + }, + "shortName": "LEE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/2.png" + }, + "mpg_championship_club_20": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/20.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/20.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/20.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/20.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/20.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/20.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/20.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_20", + "name": { + "fr-FR": "Southampton", + "en-GB": "Southampton", + "es-ES": "Southampton" + }, + "shortName": "SOU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/20.png" + }, + "mpg_championship_club_2000": { + "championships": { + "5": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/2000.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_2000", + "name": { + "fr-FR": "Benevento", + "en-GB": "Benevento", + "es-ES": "Benevento" + }, + "shortName": "BNV", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/2000.png" + }, + "mpg_championship_club_201": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/201.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_201", + "name": { + "fr-FR": "Porto", + "en-GB": "Porto", + "es-ES": "Porto" + }, + "shortName": "PTO", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/201.png" + }, + "mpg_championship_club_202": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/202.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/202.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_202", + "name": { + "fr-FR": "Olympiakos", + "en-GB": "Olympiakos", + "es-ES": "Olympiakos" + }, + "shortName": "OLY", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/202.png" + }, + "mpg_championship_club_2036": { + "championships": { + "5": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/2036.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/2036.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2036", + "name": { + "fr-FR": "Spezia", + "en-GB": "Spezia", + "es-ES": "Spezia" + }, + "shortName": "SPZ", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/2036.png" + }, + "mpg_championship_club_208": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/208.png" + } + } + }, + "id": "mpg_championship_club_208", + "name": { + "fr-FR": "Galatasaray", + "en-GB": "Galatasaray", + "es-ES": "Galatasaray" + }, + "shortName": "GAL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/208.png" + }, + "mpg_championship_club_21": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/21.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/21.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/21.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/21.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/21.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/21.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/21.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_21", + "name": { + "fr-FR": "West Ham", + "en-GB": "West Ham", + "es-ES": "West Ham" + }, + "shortName": "WHU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/21.png" + }, + "mpg_championship_club_2128": { + "championships": { + "1": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/2128.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/2128.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/2128.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/2128.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/2128.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/2128.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/2128.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2128", + "name": { + "fr-FR": "Angers", + "en-GB": "Angers", + "es-ES": "Angers" + }, + "shortName": "ANR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/2128.png" + }, + "mpg_championship_club_2130": { + "championships": { + "1": { + "jerseys": { + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/2130.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/2130.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/2130.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/2130.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/2130.png" + }, + "active": false + }, + "4": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/2130.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2130", + "name": { + "fr-FR": "Dijon", + "en-GB": "Dijon", + "es-ES": "Dijon" + }, + "shortName": "DIJ", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/2130.png" + }, + "mpg_championship_club_2133": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/2133.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2133", + "name": { + "fr-FR": "Basaksehir", + "en-GB": "Basaksehir", + "es-ES": "Basaksehir" + }, + "shortName": "IBB", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/2133.png" + }, + "mpg_championship_club_214": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/214.png" + } + } + }, + "id": "mpg_championship_club_214", + "name": { + "fr-FR": "Crvena Zvezda", + "en-GB": "Crvena Zvezda", + "es-ES": "Crvena Zvezda" + }, + "shortName": "CRV", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/214.png" + }, + "mpg_championship_club_215": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/215.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/215.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_215", + "name": { + "fr-FR": "Ajax", + "en-GB": "Ajax", + "es-ES": "Ajax" + }, + "shortName": "AJA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/215.png" + }, + "mpg_championship_club_2182": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/2182.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/2182.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/2182.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2182", + "name": { + "fr-FR": "Sassuolo", + "en-GB": "Sassuolo", + "es-ES": "Sassuolo" + }, + "shortName": "SASS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/2182.png" + }, + "mpg_championship_club_227": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/227.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_227", + "name": { + "fr-FR": "Ferencvárosi", + "en-GB": "Ferencvárosi", + "es-ES": "Ferencvárosi" + }, + "shortName": "FCS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/227.png" + }, + "mpg_championship_club_2336": { + "championships": { + "1": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/2336.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/2336.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/2336.png" + }, + "active": false + }, + "4": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/2336.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2336", + "name": { + "fr-FR": "Nîmes", + "en-GB": "Nîmes", + "es-ES": "Nîmes" + }, + "shortName": "NMS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/2336.png" + }, + "mpg_championship_club_2338": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/2338.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/2338.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/2338.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2338", + "name": { + "fr-FR": "Paris FC", + "en-GB": "Paris FC", + "es-ES": "Paris FC" + }, + "shortName": "PFC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/2338.png" + }, + "mpg_championship_club_25": { + "championships": { + "2": { + "jerseys": { + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/25.png" + } + } + }, + "id": "mpg_championship_club_25", + "name": { + "fr-FR": "Middlesbrough", + "en-GB": "Middlesbrough", + "es-ES": "Middlesbrough" + }, + "shortName": "MID", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/25.png" + }, + "mpg_championship_club_251": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/251.png" + } + } + }, + "id": "mpg_championship_club_251", + "name": { + "fr-FR": "Benfica", + "en-GB": "Benfica", + "es-ES": "Benfica" + }, + "shortName": "BEN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/251.png" + }, + "mpg_championship_club_2541": { + "championships": { + "4": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/2541.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_2541", + "name": { + "fr-FR": "Quevilly Rouen", + "en-GB": "Quevilly Rouen", + "es-ES": "Quevilly Rouen" + }, + "shortName": "QLY", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/2541.png" + }, + "mpg_championship_club_2544": { + "championships": { + "1": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/2544.png" + } + } + }, + "id": "mpg_championship_club_2544", + "name": { + "fr-FR": "GFC Ajaccio", + "en-GB": "GFC Ajaccio", + "es-ES": "GFC Ajaccio" + }, + "shortName": "GFCA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/2544.png" + }, + "mpg_championship_club_271": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/271.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/271.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_271", + "name": { + "fr-FR": "Lokomotiv", + "en-GB": "Lokomotiv", + "es-ES": "Lokomotiv" + }, + "shortName": "LKM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/271.png" + }, + "mpg_championship_club_273": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/273.png" + } + } + }, + "id": "mpg_championship_club_273", + "name": { + "fr-FR": "Slavia Prague", + "en-GB": "Slavia Prague", + "es-ES": "Slavia Prague" + }, + "shortName": "SLP", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/273.png" + }, + "mpg_championship_club_2893": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/2893.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/2893.png" + } + } + }, + "id": "mpg_championship_club_2893", + "name": { + "fr-FR": "Girona", + "en-GB": "Girona", + "es-ES": "Girona" + }, + "shortName": "GIR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/2893.png" + }, + "mpg_championship_club_2894": { + "championships": { + "3": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/2894.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/2894.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_2894", + "name": { + "fr-FR": "Huesca", + "en-GB": "Huesca", + "es-ES": "Huesca" + }, + "shortName": "HUE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/2894.png" + }, + "mpg_championship_club_3": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/3.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/3.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/3.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/3.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/3.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/3.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/3.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_3", + "name": { + "fr-FR": "Arsenal", + "en-GB": "Arsenal", + "es-ES": "Arsenal" + }, + "shortName": "ARS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/3.png" + }, + "mpg_championship_club_31": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/31.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/31.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/31.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/31.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/31.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/31.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/31.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_31", + "name": { + "fr-FR": "Crystal Palace", + "en-GB": "Crystal Palace", + "es-ES": "Crystal Palace" + }, + "shortName": "CRY", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/31.png" + }, + "mpg_championship_club_3288": { + "championships": { + "4": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/3288.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/3288.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_3288", + "name": { + "fr-FR": "Dunkerque", + "en-GB": "Dunkerque", + "es-ES": "Dunkerque" + }, + "shortName": "DKE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/3288.png" + }, + "mpg_championship_club_3308": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/3308.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/3308.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/3308.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_3308", + "name": { + "fr-FR": "Rodez", + "en-GB": "Rodez", + "es-ES": "Rodez" + }, + "shortName": "ROD", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/3308.png" + }, + "mpg_championship_club_35": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/35.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/35.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/35.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/35.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_35", + "name": { + "fr-FR": "West Bromwich", + "en-GB": "West Bromwich", + "es-ES": "West Bromwich" + }, + "shortName": "WBA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/35.png" + }, + "mpg_championship_club_36": { + "championships": { + "2": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/36.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/36.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/36.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/36.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/36.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_36", + "name": { + "fr-FR": "Brighton", + "en-GB": "Brighton", + "es-ES": "Brighton" + }, + "shortName": "BHA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/36.png" + }, + "mpg_championship_club_38": { + "championships": { + "2": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/38.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/38.png" + } + } + }, + "id": "mpg_championship_club_38", + "name": { + "fr-FR": "Huddersfield Town", + "en-GB": "Huddersfield Town", + "es-ES": "Huddersfield Town" + }, + "shortName": "HUD", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/38.png" + }, + "mpg_championship_club_39": { + "championships": { + "2": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/39.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/39.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/39.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/39.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_39", + "name": { + "fr-FR": "Wolverhampton", + "en-GB": "Wolverhampton", + "es-ES": "Wolverhampton" + }, + "shortName": "WOL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/39.png" + }, + "mpg_championship_club_394": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/394.png" + } + } + }, + "id": "mpg_championship_club_394", + "name": { + "fr-FR": "Dinamo Zagreb", + "en-GB": "Dinamo Zagreb", + "es-ES": "Dinamo Zagreb" + }, + "shortName": "DZG", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/394.png" + }, + "mpg_championship_club_4": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/4.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/4.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/4.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/4.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/4.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/4.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_4", + "name": { + "fr-FR": "Newcastle", + "en-GB": "Newcastle", + "es-ES": "Newcastle" + }, + "shortName": "NEW", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/4.png" + }, + "mpg_championship_club_407": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/407.png" + } + } + }, + "id": "mpg_championship_club_407", + "name": { + "fr-FR": "Las Palmas", + "en-GB": "Las Palmas", + "es-ES": "Las Palmas" + }, + "shortName": "LPA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/407.png" + }, + "mpg_championship_club_413": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/413.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/413.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_413", + "name": { + "fr-FR": "Bruges", + "en-GB": "Bruges", + "es-ES": "Bruges" + }, + "shortName": "BRU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/413.png" + }, + "mpg_championship_club_414": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/414.png" + } + } + }, + "id": "mpg_championship_club_414", + "name": { + "fr-FR": "KRC Genk", + "en-GB": "KRC Genk", + "es-ES": "KRC Genk" + }, + "shortName": "GNK", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/414.png" + }, + "mpg_championship_club_4169": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/4169.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_4169", + "name": { + "fr-FR": "Krasnodar", + "en-GB": "Krasnodar", + "es-ES": "Krasnodar" + }, + "shortName": "KRA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/4169.png" + }, + "mpg_championship_club_427": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/427.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/427.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/427.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/427.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/427.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/427.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/427.png" + } + }, + "4": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/427.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/427.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_427", + "name": { + "fr-FR": "Toulouse", + "en-GB": "Toulouse", + "es-ES": "Toulouse" + }, + "shortName": "TOU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/427.png" + }, + "mpg_championship_club_428": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/428.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/428.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/428.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/428.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/428.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/428.png" + } + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/428.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/428.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/428.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_428", + "name": { + "fr-FR": "Guingamp", + "en-GB": "Guingamp", + "es-ES": "Guingamp" + }, + "shortName": "GUI", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/428.png" + }, + "mpg_championship_club_429": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/429.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/429.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/429.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/429.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/429.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/429.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/429.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/429.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/429.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/429.png" + } + } + }, + "id": "mpg_championship_club_429", + "name": { + "fr-FR": "Lille", + "en-GB": "Lille", + "es-ES": "Lille" + }, + "shortName": "LIL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/429.png" + }, + "mpg_championship_club_43": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/43.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/43.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/43.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/43.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/43.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/43.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/43.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/43.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/43.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_43", + "name": { + "fr-FR": "Man. City", + "en-GB": "Man. City", + "es-ES": "Man. City" + }, + "shortName": "MCI", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/43.png" + }, + "mpg_championship_club_430": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/430.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/430.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/430.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/430.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/1/430.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/1/430.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/430.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/430.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/430.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_430", + "name": { + "fr-FR": "Nantes", + "en-GB": "Nantes", + "es-ES": "Nantes" + }, + "shortName": "NAN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/430.png" + }, + "mpg_championship_club_449": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/449.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/449.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/449.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/449.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/449.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_449", + "name": { + "fr-FR": "Villarreal", + "en-GB": "Villarreal", + "es-ES": "Villarreal" + }, + "shortName": "VIL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/449.png" + }, + "mpg_championship_club_45": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/45.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/45.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/45.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_45", + "name": { + "fr-FR": "Norwich City", + "en-GB": "Norwich City", + "es-ES": "Norwich City" + }, + "shortName": "NOR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/45.png" + }, + "mpg_championship_club_450": { + "championships": { + "3": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/450.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/450.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/450.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_450", + "name": { + "fr-FR": "Osasuna", + "en-GB": "Osasuna", + "es-ES": "Osasuna" + }, + "shortName": "OSA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/450.png" + }, + "mpg_championship_club_455": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/455.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/455.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_455", + "name": { + "fr-FR": "Shakhtar", + "en-GB": "Shakhtar", + "es-ES": "Shakhtar" + }, + "shortName": "SDK", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/455.png" + }, + "mpg_championship_club_456": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/456.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/456.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/456.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/456.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/456.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_456", + "name": { + "fr-FR": "Atalanta", + "en-GB": "Atalanta", + "es-ES": "Atalanta" + }, + "shortName": "ATA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/456.png" + }, + "mpg_championship_club_458": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/458.png" + } + } + }, + "id": "mpg_championship_club_458", + "name": { + "fr-FR": "Brescia", + "en-GB": "Brescia", + "es-ES": "Brescia" + }, + "shortName": "BSC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/458.png" + }, + "mpg_championship_club_459": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/459.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/459.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/459.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/459.png" + } + } + }, + "id": "mpg_championship_club_459", + "name": { + "fr-FR": "Napoli", + "en-GB": "Napoli", + "es-ES": "Napoli" + }, + "shortName": "NAP", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/459.png" + }, + "mpg_championship_club_49": { + "championships": { + "2": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/49.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/49.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_49", + "name": { + "fr-FR": "Sheffield", + "en-GB": "Sheffield", + "es-ES": "Sheffield" + }, + "shortName": "SHU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/49.png" + }, + "mpg_championship_club_54": { + "championships": { + "2": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/54.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/54.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_54", + "name": { + "fr-FR": "Fulham", + "en-GB": "Fulham", + "es-ES": "Fulham" + }, + "shortName": "FUL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/54.png" + }, + "mpg_championship_club_5420": { + "championships": { + "4": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/5420.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/5420.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_5420", + "name": { + "fr-FR": "Pau", + "en-GB": "Pau", + "es-ES": "Pau" + }, + "shortName": "PAU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/5420.png" + }, + "mpg_championship_club_5447": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/5447.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/5447.png" + } + } + }, + "id": "mpg_championship_club_5447", + "name": { + "fr-FR": "Evian Thonon Gaillard", + "en-GB": "Evian Thonon Gaillard", + "es-ES": "Evian Thonon Gaillard" + }, + "shortName": "ETG", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/5447.png" + }, + "mpg_championship_club_56": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/56.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/56.png" + } + } + }, + "id": "mpg_championship_club_56", + "name": { + "fr-FR": "Sunderland", + "en-GB": "Sunderland", + "es-ES": "Sunderland" + }, + "shortName": "SUN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/56.png" + }, + "mpg_championship_club_5683": { + "championships": { + "3": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/5683.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/5683.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/5683.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_5683", + "name": { + "fr-FR": "Granada", + "en-GB": "Granada", + "es-ES": "Granada" + }, + "shortName": "GRA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/5683.png" + }, + "mpg_championship_club_57": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/57.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/57.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/57.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/57.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/57.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/57.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_57", + "name": { + "fr-FR": "Watford", + "en-GB": "Watford", + "es-ES": "Watford" + }, + "shortName": "WAT", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/57.png" + }, + "mpg_championship_club_6": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/6.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/6.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/6.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/6.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/6.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/6.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/6.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/6.png" + } + } + }, + "id": "mpg_championship_club_6", + "name": { + "fr-FR": "Tottenham", + "en-GB": "Tottenham", + "es-ES": "Tottenham" + }, + "shortName": "TOT", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/6.png" + }, + "mpg_championship_club_603": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/603.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/603.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/603.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_603", + "name": { + "fr-FR": "Sampdoria", + "en-GB": "Sampdoria", + "es-ES": "Sampdoria" + }, + "shortName": "SAM", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/603.png" + }, + "mpg_championship_club_6339": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/6339.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/6339.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_6339", + "name": { + "fr-FR": "Leipzig", + "en-GB": "Leipzig", + "es-ES": "Leipzig" + }, + "shortName": "RBL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/6339.png" + }, + "mpg_championship_club_6783": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/6783.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/6783.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_6783", + "name": { + "fr-FR": "Chambly", + "en-GB": "Chambly", + "es-ES": "Chambly" + }, + "shortName": "CHA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/6783.png" + }, + "mpg_championship_club_6785": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/6785.png" + } + } + }, + "id": "mpg_championship_club_6785", + "name": { + "fr-FR": "Orléans", + "en-GB": "Orléans", + "es-ES": "Orléans" + }, + "shortName": "ORL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/6785.png" + }, + "mpg_championship_club_683": { + "championships": { + "6": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/683.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_683", + "name": { + "fr-FR": "Mönchengladbach", + "en-GB": "Mönchengladbach", + "es-ES": "Mönchengladbach" + }, + "shortName": "BMG", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/683.png" + }, + "mpg_championship_club_693": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/693.png" + } + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/693.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/693.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/4/693.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_693", + "name": { + "fr-FR": "Sochaux", + "en-GB": "Sochaux", + "es-ES": "Sochaux" + }, + "shortName": "SOC", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/693.png" + }, + "mpg_championship_club_694": { + "championships": { + "1": { + "jerseys": { + "2013": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2013/1/694.png", + "2014": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2014/1/694.png", + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/1/694.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/1/694.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/694.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/694.png" + }, + "active": true + }, + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/694.png" + } + } + }, + "id": "mpg_championship_club_694", + "name": { + "fr-FR": "Lorient", + "en-GB": "Lorient", + "es-ES": "Lorient" + }, + "shortName": "LOR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/694.png" + }, + "mpg_championship_club_695": { + "championships": { + "5": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/695.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_695", + "name": { + "fr-FR": "Empoli", + "en-GB": "Empoli", + "es-ES": "Empoli" + }, + "shortName": "EMP", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/695.png" + }, + "mpg_championship_club_7": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/7.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/7.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/7.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/7.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_7", + "name": { + "fr-FR": "Aston Villa", + "en-GB": "Aston Villa", + "es-ES": "Aston Villa" + }, + "shortName": "AVL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/7.png" + }, + "mpg_championship_club_744": { + "championships": { + "5": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/744.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_744", + "name": { + "fr-FR": "Crotone", + "en-GB": "Crotone", + "es-ES": "Crotone" + }, + "shortName": "CRT", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/744.png" + }, + "mpg_championship_club_8": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/8.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/8.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/8.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/8.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/8.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/8.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/8.png" + }, + "active": true + }, + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/8.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/8.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_8", + "name": { + "fr-FR": "Chelsea", + "en-GB": "Chelsea", + "es-ES": "Chelsea" + }, + "shortName": "CHE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/8.png" + }, + "mpg_championship_club_80": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/80.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/80.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/80.png" + } + } + }, + "id": "mpg_championship_club_80", + "name": { + "fr-FR": "Swansea City", + "en-GB": "Swansea City", + "es-ES": "Swansea City" + }, + "shortName": "SWA", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/80.png" + }, + "mpg_championship_club_855": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/855.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/855.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/855.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/855.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/855.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_855", + "name": { + "fr-FR": "Levante", + "en-GB": "Levante", + "es-ES": "Levante" + }, + "shortName": "LUD", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/855.png" + }, + "mpg_championship_club_857": { + "championships": { + "6": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/6/857.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/857.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_857", + "name": { + "fr-FR": "Salzburg", + "en-GB": "Salzburg", + "es-ES": "Salzburg" + }, + "shortName": "RBS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/6/857.png" + }, + "mpg_championship_club_862": { + "championships": { + "1": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/1/862.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/1/862.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/862.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_862", + "name": { + "fr-FR": "Brest", + "en-GB": "Brest", + "es-ES": "Brest" + }, + "shortName": "BRS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/1/862.png" + }, + "mpg_championship_club_88": { + "championships": { + "2": { + "jerseys": { + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/88.png" + } + } + }, + "id": "mpg_championship_club_88", + "name": { + "fr-FR": "Hull City", + "en-GB": "Hull City", + "es-ES": "Hull City" + }, + "shortName": "HUL", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/88.png" + }, + "mpg_championship_club_90": { + "championships": { + "2": { + "jerseys": { + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/90.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/90.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/90.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/90.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/2/90.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/90.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_90", + "name": { + "fr-FR": "Burnley", + "en-GB": "Burnley", + "es-ES": "Burnley" + }, + "shortName": "BRN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/90.png" + }, + "mpg_championship_club_91": { + "championships": { + "2": { + "jerseys": { + "2015": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2015/2/91.png", + "2016": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2016/2/91.png", + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/2/91.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/91.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/91.png" + } + } + }, + "id": "mpg_championship_club_91", + "name": { + "fr-FR": "Bournemouth", + "en-GB": "Bournemouth", + "es-ES": "Bournemouth" + }, + "shortName": "BOU", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/2/91.png" + }, + "mpg_championship_club_920": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/920.png" + } + } + }, + "id": "mpg_championship_club_920", + "name": { + "fr-FR": "Le Mans", + "en-GB": "Le Mans", + "es-ES": "Le Mans" + }, + "shortName": "LMS", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/920.png" + }, + "mpg_championship_club_921": { + "championships": { + "4": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/4/921.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/921.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_921", + "name": { + "fr-FR": "Châteauroux", + "en-GB": "Châteauroux", + "es-ES": "Châteauroux" + }, + "shortName": "CHX", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/4/921.png" + }, + "mpg_championship_club_94": { + "championships": { + "2": { + "jerseys": { + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/94.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_94", + "name": { + "fr-FR": "Brentford", + "en-GB": "Brentford", + "es-ES": "Brentford" + }, + "shortName": "BRE", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/2/94.png" + }, + "mpg_championship_club_953": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/953.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/953.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/953.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/953.png" + }, + "active": false + } + }, + "id": "mpg_championship_club_953", + "name": { + "fr-FR": "Eibar", + "en-GB": "Eibar", + "es-ES": "Eibar" + }, + "shortName": "EIB", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/953.png" + }, + "mpg_championship_club_954": { + "championships": { + "3": { + "jerseys": { + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/3/954.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/954.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_954", + "name": { + "fr-FR": "Elche", + "en-GB": "Elche", + "es-ES": "Elche" + }, + "shortName": "ECF", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/3/954.png" + }, + "mpg_championship_club_957": { + "championships": { + "3": { + "jerseys": { + "2017": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2017/3/957.png", + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/3/957.png", + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/957.png" + } + } + }, + "id": "mpg_championship_club_957", + "name": { + "fr-FR": "Leganés", + "en-GB": "Leganés", + "es-ES": "Leganés" + }, + "shortName": "LGN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/3/957.png" + }, + "mpg_championship_club_97": { + "championships": { + "2": { + "jerseys": { + "2018": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/97.png" + } + } + }, + "id": "mpg_championship_club_97", + "name": { + "fr-FR": "Cardiff City", + "en-GB": "Cardiff City", + "es-ES": "Cardiff City" + }, + "shortName": "CAR", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2018/2/97.png" + }, + "mpg_championship_club_990": { + "championships": { + "5": { + "jerseys": { + "2019": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2019/5/990.png", + "2020": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2020/5/990.png", + "2021": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/990.png" + }, + "active": true + } + }, + "id": "mpg_championship_club_990", + "name": { + "fr-FR": "Genoa", + "en-GB": "Genoa", + "es-ES": "Genoa" + }, + "shortName": "GEN", + "defaultJerseyUrl": "https://s3-eu-west-1.amazonaws.com/image.mpg/jersey/2021/5/990.png" + } + } +} diff --git a/src/test/resources/__files/mpg.division.MLEFEX6G.json b/src/test/resources/__files/mpg.division.MLEFEX6G.20210804.json similarity index 100% rename from src/test/resources/__files/mpg.division.MLEFEX6G.json rename to src/test/resources/__files/mpg.division.MLEFEX6G.20210804.json diff --git a/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json index f491106..068950d 100644 --- a/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json +++ b/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json @@ -9,7 +9,7 @@ } }, "status": 3, - "budget": 0, + "budget": 42, "buyableRemoveGoal": 1, "squad": { "mpg_championship_player_92353": { From d881bb512fbab33d4a55c2f5f72d858d17572c6e Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Thu, 5 Aug 2021 20:39:47 +0200 Subject: [PATCH 07/13] Mercato turn 0 day 0 --- src/main/java/org/blondin/mpg/Main.java | 4 +- .../java/org/blondin/mpg/root/MpgClient.java | 8 +- .../org/blondin/mpg/stats/model/Stats.java | 6 +- src/test/java/org/blondin/mpg/MainTest.java | 61 +- .../__files/mlnstats.builds.20210805.json | 1 + .../__files/mlnstats.ligue-1.20210805.json | 125372 +++++++++++++++ .../mpg.dashboard.MLAX7HMK-status-1.json | 197 + .../__files/mpg.poolPlayers.1.2021.json | 8181 + .../sportsgambler.ligue-1.20210805.html | 1977 + 9 files changed, 135768 insertions(+), 39 deletions(-) create mode 100644 src/test/resources/__files/mlnstats.builds.20210805.json create mode 100644 src/test/resources/__files/mlnstats.ligue-1.20210805.json create mode 100644 src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-1.json create mode 100644 src/test/resources/__files/mpg.poolPlayers.1.2021.json create mode 100644 src/test/resources/__files/sportsgambler.ligue-1.20210805.html diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index cad996d..bac29b7 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -127,13 +127,15 @@ static void processLeague(League league, ApiClients apiClients, Config config) { static void processMercatoLeague(League league, ApiClients apiClients, Config config) { LOG.info("\nProposal for your mercato:\n"); List players = apiClients.getMpg().getMercato(league.getId()).getPlayers(); + completePlayersClub(players, apiClients.getMpg().getClubs()); calculateEfficiency(players, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, true); processMercato(players, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship())); } static void processMercatoChampionship(League league, ApiClients apiClients, Config config) { LOG.info("\nProposal for your coming soon mercato:\n"); - List players = apiClients.getMpg().getMercato(league.getChampionship()).getPlayers(); + List players = apiClients.getMpg().getPoolPlayers(league.getChampionship()).getPlayers(); + completePlayersClub(players, apiClients.getMpg().getClubs()); calculateEfficiency(players, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, true); processMercato(players, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship())); } diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index 0a9884a..debde60 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -18,7 +18,6 @@ import org.blondin.mpg.root.model.Division; import org.blondin.mpg.root.model.League; import org.blondin.mpg.root.model.Mercato; -import org.blondin.mpg.root.model.MercatoChampionship; import org.blondin.mpg.root.model.MercatoLeague; import org.blondin.mpg.root.model.PoolPlayers; import org.blondin.mpg.root.model.Team; @@ -85,10 +84,6 @@ public Coach getCoach(String leagueDivisionId) { return get("division/" + leagueDivisionId + "/coach", headers, Coach.class); } - public Mercato getMercato(ChampionshipType championship) { - return get("mercato/" + championship.value(), headers, MercatoChampionship.class); - } - public Mercato getMercato(String league) { return get("todo-currently-not-found/" + league + "/mercato", headers, MercatoLeague.class); } @@ -127,6 +122,9 @@ private void signIn(String login, String password) { } public void updateCoach(League league, CoachRequest coachRequest) { + if (true) { + throw new UnsupportedOperationException("Find where find mpg_match_team_formation_LEAGUE_ID_X_Y_Z"); + } String result = put("/match-team-formation/mpg_match_team_formation_LEAGUE_ID_X_Y_Z", headers, coachRequest, String.class); if (!"{\"success\":\"teamSaved\"}".equals(result)) { throw new UnsupportedOperationException(String.format("The team has been updated, result message: %s", result)); diff --git a/src/main/java/org/blondin/mpg/stats/model/Stats.java b/src/main/java/org/blondin/mpg/stats/model/Stats.java index a2f07b0..ea32da8 100644 --- a/src/main/java/org/blondin/mpg/stats/model/Stats.java +++ b/src/main/java/org/blondin/mpg/stats/model/Stats.java @@ -41,7 +41,7 @@ public class Stats { * @return number of goals */ public int getGoals(int days) { - if (currentSeasonDay == 0 && days <= 0) { + if (currentSeasonDay <= 1 && days <= 0) { return oldGoals; } if (days <= 0) { @@ -67,7 +67,7 @@ public int getGoals(int days) { * @return note */ public double getAverage(int days) { - if (currentSeasonDay == 0 && days <= 0) { + if (currentSeasonDay <= 1 && days <= 0) { return oldAverage; } if (days <= 0) { @@ -98,7 +98,7 @@ public double getAverage(int days) { * @return number of matchs */ public int getMatchs(int days) { - if (currentSeasonDay == 0 && days <= 0) { + if (currentSeasonDay <= 1 && days <= 0) { return oldMatchs; } if (days <= 0) { diff --git a/src/test/java/org/blondin/mpg/MainTest.java b/src/test/java/org/blondin/mpg/MainTest.java index 4e2e15a..cc70ad4 100644 --- a/src/test/java/org/blondin/mpg/MainTest.java +++ b/src/test/java/org/blondin/mpg/MainTest.java @@ -71,8 +71,24 @@ public void testRealWithBadCredentials() throws Exception { } @Test - public void testMobileProcessFromEmptyCoach() throws Exception { - prepareMainFrenchLigue2Mocks("MLEFEX6G-status-4", "2021", "20210804", "20210804", "20210804"); + public void testPrepareMercatoTurn0Day0() throws Exception { + prepareMainFrenchLigue1Mocks("MLAX7HMK-status-1", "2021", "20210805", "20210805"); + Config config = spy(getConfig()); + doReturn(Arrays.asList("MLAX7HMK")).when(config).getLeaguesInclude(); + doReturn(Arrays.asList("MLEFEX6G")).when(config).getLeaguesExclude(); + executeMainProcess(config); + Assert.assertTrue(getLogOut(), getLogOut().contains("Proposal for your coming soon mercato")); + + // When championship not started (incoming day 1 in statistics), the previous year should be taken + Assert.assertTrue(getLogOut(), getLogOut().contains("| A | Mbappé Kylian | 6315.94 | 40 |")); + + // Test some injuries + Assert.assertTrue(getLogOut(), getLogOut().contains("| D | Maripán Guillermo | 919.24 | 18 | INJURY_RED - Leg injury - Mid July |")); + } + + @Test + public void testProcessFromEmptyCoach() throws Exception { + prepareMainFrenchLigue2Mocks("MLEFEX6G-status-4", "2021", "20210804", "20210804"); Config config = spy(getConfig()); doReturn(true).when(config).isTeampUpdate(); doReturn(true).when(config).isUseBonus(); @@ -162,7 +178,7 @@ public void testInjuredLigue2ServiceUnavailable() throws Exception { @Test public void testInjuredSuspendedSportsGamblerFallBackEquipeActu() throws Exception { - prepareMainFrenchLigueMocks("MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB", 1, null, "20201021", "20201021", null, "20201006", null); + prepareMainFrenchLigueMocks("MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB", 1, null, "20201021", null, "20201006", null); stubFor(get("/league/MLAX7HMK/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLAX7HMK.20201021.json"))); // 403 for sportgambler @@ -507,7 +523,7 @@ public void testMultipleDivisions() throws Exception { @Test public void testSkipChampionsLeague() throws Exception { - prepareMainFrenchLigueMocks("LM65L48T", -1, null, null, null, null, null, null); + prepareMainFrenchLigueMocks("LM65L48T", -1, null, null, null, null, null); executeMainProcess(); Assert.assertTrue(getLogOut().contains("Sorry, Champions League is currently not supported.")); } @@ -1149,45 +1165,32 @@ private void executeMainProcess(MpgClient mpgClient, MpgStatsClient mpgStatsClie Main.process(ApiClients.build(mpgClientLocal, mpgStatsClientLocal, injuredSuspendedClientLocal), c); } - private static void prepareMainFrenchLigue2Mocks(String dashboard, String fileStatsLeagues, String dataFileStats, String dataFileMaLigue2) { - // TODO: Should be removed - prepareMainFrenchLigueMocks(dashboard, 2, null, fileStatsLeagues, dataFileStats, null, null, dataFileMaLigue2); - } - - private static void prepareMainFrenchLigue1Mocks(String dashboard, String fileStatsLeagues, String dataFileStats, - String dataFileSportsGamblerOrEquipeActu) { - prepareMainFrenchLigue1Mocks(dashboard, null, fileStatsLeagues, dataFileStats, dataFileSportsGamblerOrEquipeActu); - } - - private static void prepareMainFrenchLigue1Mocks(String dashboard, String poolPlayerYear, String buildStatsLeaguesDate, String statsLeaguesDate, + private static void prepareMainFrenchLigue1Mocks(String dashboard, String poolPlayerYear, String statsLeaguesDate, String sportsGamblerDateOrEquipeActu) { try { if (StringUtils.isBlank(sportsGamblerDateOrEquipeActu)) { - prepareMainFrenchLigueMocks(dashboard, 1, null, buildStatsLeaguesDate, statsLeaguesDate, null, null, null); + prepareMainFrenchLigueMocks(dashboard, 1, null, statsLeaguesDate, null, null, null); return; } final SimpleDateFormat dateParser = new SimpleDateFormat("yyyyMMdddd"); Date sportsGamblerSwitch = dateParser.parse("20201010"); Date dataFileDate = dateParser.parse(sportsGamblerDateOrEquipeActu); if (dataFileDate.after(sportsGamblerSwitch)) { - prepareMainFrenchLigueMocks(dashboard, 1, poolPlayerYear, buildStatsLeaguesDate, statsLeaguesDate, sportsGamblerDateOrEquipeActu, - null, null); + prepareMainFrenchLigueMocks(dashboard, 1, poolPlayerYear, statsLeaguesDate, sportsGamblerDateOrEquipeActu, null, null); } else { - prepareMainFrenchLigueMocks(dashboard, 1, poolPlayerYear, buildStatsLeaguesDate, statsLeaguesDate, null, - sportsGamblerDateOrEquipeActu, null); + prepareMainFrenchLigueMocks(dashboard, 1, poolPlayerYear, statsLeaguesDate, null, sportsGamblerDateOrEquipeActu, null); } } catch (ParseException e) { throw new UnsupportedOperationException(e); } } - private static void prepareMainFrenchLigue2Mocks(String dashboard, String poolPlayerYear, String buildStatsLeaguesDate, String statsLeaguesDate, - String maLigue2Date) { - prepareMainFrenchLigueMocks(dashboard, 2, poolPlayerYear, buildStatsLeaguesDate, statsLeaguesDate, null, null, maLigue2Date); + private static void prepareMainFrenchLigue2Mocks(String dashboard, String poolPlayerYear, String statsLeaguesDate, String maLigue2Date) { + prepareMainFrenchLigueMocks(dashboard, 2, poolPlayerYear, statsLeaguesDate, null, null, maLigue2Date); } - private static void prepareMainFrenchLigueMocks(String dashboard, int frenchLigue, String poolPlayerYear, String buildStatsLeaguesDate, - String statsLeaguesDate, String sportsGamblerDate, String equipeActuDate, String maLigue2Date) { + private static void prepareMainFrenchLigueMocks(String dashboard, int frenchLigue, String poolPlayerYear, String statsLeaguesDate, + String sportsGamblerDate, String equipeActuDate, String maLigue2Date) { try { SimpleDateFormat dateDayFormat = new SimpleDateFormat("yyyyMMdd"); SimpleDateFormat dateYearFormat = new SimpleDateFormat("yyyy"); @@ -1205,13 +1208,11 @@ private static void prepareMainFrenchLigueMocks(String dashboard, int frenchLigu stubFor(get("/championship-clubs").willReturn( aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.clubs." + poolPlayerYear + ".json"))); } - if (StringUtils.isNotBlank(buildStatsLeaguesDate)) { - dateDayFormat.parse(buildStatsLeaguesDate); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile( - getTestFile("mlnstats.builds." + buildStatsLeaguesDate + ".json", "mpgstats.leagues." + buildStatsLeaguesDate + ".json")))); - } if (StringUtils.isNotBlank(statsLeaguesDate)) { dateDayFormat.parse(statsLeaguesDate); + dateDayFormat.parse(statsLeaguesDate); + stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile( + getTestFile("mlnstats.builds." + statsLeaguesDate + ".json", "mpgstats.leagues." + statsLeaguesDate + ".json")))); stubFor(get("/leagues/Ligue-" + frenchLigue).willReturn(aResponse().withHeader("Content-Type", "application/json") .withBodyFile(getTestFile("mlnstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json", "mpgstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json")))); diff --git a/src/test/resources/__files/mlnstats.builds.20210805.json b/src/test/resources/__files/mlnstats.builds.20210805.json new file mode 100644 index 0000000..e14811f --- /dev/null +++ b/src/test/resources/__files/mlnstats.builds.20210805.json @@ -0,0 +1 @@ +{"1":"2021-08-05T02:30:03.885Z","2":"2021-08-01T08:49:59.641Z","3":"2021-07-28T05:27:18.459Z","4":"2021-08-05T07:45:02.833Z","5":"2021-07-28T05:27:48.010Z"} diff --git a/src/test/resources/__files/mlnstats.ligue-1.20210805.json b/src/test/resources/__files/mlnstats.ligue-1.20210805.json new file mode 100644 index 0000000..99d0c86 --- /dev/null +++ b/src/test/resources/__files/mlnstats.ligue-1.20210805.json @@ -0,0 +1,125372 @@ +{ + "bD": "2021-08-05T02:30:03.885Z", + "mL": { + "i": 1, + "n": "Ligue 1", + "cN": "Ligue-1", + "aS": { + "i": 19, + "n": "Ligue 1 2021-2022", + "cN": "Ligue-1-2021-2022", + "mD": 38, + "cD": { + "d": 1, + "lD": 0, + "p": 0 + } + }, + "lS": { + "i": 14, + "n": "Ligue 1 2020-2021", + "cN": "Ligue-1-2020-2021", + "mD": 38 + } + }, + "le": [ + [ + 1, + "Ligue-1" + ], + [ + 2, + "Premier-League" + ], + [ + 5, + "Serie-A" + ], + [ + 4, + "Ligue-2" + ], + [ + 3, + "Liga" + ] + ], + "p": [ + [ + 108, + { + "n": "Mangani", + "f": "Thomas", + "fp": "MD", + "r": 16, + "c": 16, + "s": { + "Og": 3, + "Os": 184.5, + "On": 35, + "Oa": 5.27, + "Od": 0.98, + "Om": 2702, + "Oam": 77, + "Odm": 20, + "pm": 35, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 5861 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5868 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 5890, + "s": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 79, + "e": 5908 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 57, + "e": 5918 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 76, + "e": 5938, + "g": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 84, + "e": 5957 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5958, + "g": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 71, + "e": 5984 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 25, + "e": 5998, + "s": 1 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6058 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 83, + "e": 6075 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 78, + "e": 6088 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 6114 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6138, + "g": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 13, + "e": 6154, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6158 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 6173 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 70, + "e": 6178 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 80, + "e": 6192 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6200 + } + ] + ] + } + ], + [ + 141, + { + "n": "Casimir Ninga", + "f": "", + "fp": "A", + "r": 7, + "c": 16, + "s": { + "Os": 4.5, + "On": 1, + "Oa": 4.5, + "Om": 22, + "Oam": 22, + "pa": 1 + }, + "p": [ + [ + -1, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6200, + "s": 1 + } + ] + ] + } + ], + [ + 143, + { + "n": "Thomas", + "f": "Romain", + "fp": "DC", + "r": 12, + "c": 16, + "s": { + "Og": 4, + "Os": 170.5, + "On": 34, + "Oa": 5.01, + "Od": 0.97, + "Om": 3026, + "Oam": 89, + "Odm": 5, + "pd": 34, + "Omsn": 4.5 + }, + "p": [ + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5842, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 8, + "q": null, + "m": 90, + "e": 6029, + "g": 2 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6038 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6053, + "g": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 60, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5842, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 159, + { + "n": "Traoré", + "f": "Ismael", + "fp": "DC", + "r": 11, + "c": 16, + "s": { + "Og": 3, + "Os": 168, + "On": 34, + "Oa": 4.94, + "Od": 1.06, + "Om": 2994, + "Oam": 88, + "Odm": 11, + "pd": 34, + "Omsn": 4 + }, + "p": [ + [ + -35, + { + "n": 5, + "q": null, + "m": 24, + "e": 5861 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 3, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 3, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6154, + "g": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6158, + "g": 1 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6200, + "g": 1 + } + ] + ], + "fo": [ + [ + 5861, + [ + { + "t": "I" + } + ] + ], + [ + 5878, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 179, + { + "n": "Cabot", + "f": "Jimmy", + "fp": "MO", + "r": 9, + "c": 16, + "s": { + "Og": 1, + "Os": 104, + "On": 21, + "Oa": 4.95, + "Od": 0.71, + "Om": 921, + "Oam": 44, + "Odm": 23, + "pm": 21, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 45, + "e": 5842, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 5848, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 5861, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5868, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 23, + "e": 5958, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5974 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 25, + "e": 5998, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 15, + "e": 6008, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 76, + "e": 6022 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 15, + "e": 6029, + "s": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 76, + "e": 6053 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6058, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 35, + "e": 6078, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 68, + "e": 6088 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 21, + "e": 6114, + "g": 1, + "s": 1 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 71, + "e": 6137 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6138, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6154, + "s": 1 + } + ] + ], + "fo": [ + [ + 5958, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 202, + { + "n": "Capelle", + "f": "Pierrick", + "fp": "MO", + "r": 11, + "c": 16, + "s": { + "Og": 3, + "Os": 175.5, + "On": 35, + "Oa": 5.01, + "Od": 0.98, + "Om": 2051, + "Oam": 59, + "Odm": 32, + "pd": 6, + "pm": 29, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 81, + "e": 5828 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 3, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5890 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 11, + "e": 5908, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5918, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 13, + "e": 5932, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 62, + "e": 5938 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 10, + "e": 5957, + "s": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 45, + "e": 5958 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 28, + "e": 5974, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 5984 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5988, + "g": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 73, + "e": 5998 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6008 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 6022 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6058, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6075, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 7, + "e": 6078, + "g": 1, + "s": 1 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 12, + "e": 6088, + "g": 1, + "s": 1 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 81, + "e": 6098 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6138 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 77, + "e": 6154 + } + ], + [ + -5, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 71, + "e": 6178 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 24, + "e": 6192, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 14, + "e": 6200, + "s": 1 + } + ] + ], + "fo": [ + [ + 5898, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 214, + { + "n": "Manceau", + "f": "Vincent", + "fp": "DL", + "r": 10, + "c": 16, + "s": { + "Os": 129.5, + "On": 27, + "Oa": 4.8, + "Od": 0.75, + "Om": 2308, + "Oam": 85, + "Odm": 17, + "pd": 27 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 3, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 45, + "e": 6138, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6154, + "s": 1 + } + ] + ], + "fo": [ + [ + 5861, + [ + { + "t": "Y" + } + ] + ], + [ + 5868, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 235, + { + "n": "Pavlovic", + "f": "Mateo", + "fp": "DC", + "r": 10, + "c": 16, + "s": { + "Os": 65.5, + "On": 14, + "Oa": 4.68, + "Od": 1.08, + "Om": 1103, + "Oam": 79, + "Odm": 27, + "pd": 14 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 5868 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 4, + "e": 6038, + "s": 1 + } + ], + [ + -6, + { + "n": 2, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 27, + "e": 6178, + "s": 1 + } + ] + ], + "fo": [ + [ + 5861, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 287, + { + "n": "Bamba", + "f": "Abdoulaye", + "fp": "DL", + "r": 7, + "c": 16, + "s": { + "Os": 73.5, + "On": 16, + "Oa": 4.59, + "Od": 0.82, + "Om": 1349, + "Oam": 84, + "Odm": 14, + "pd": 15, + "pm": 1 + }, + "p": [ + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 5918 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6138 + } + ], + [ + -6, + { + "n": 3, + "q": null, + "m": 77, + "e": 6154 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6200 + } + ] + ] + } + ], + [ + 390, + { + "n": "Mandrea", + "f": "Anthony", + "fp": "G", + "r": 7, + "c": 16 + } + ], + [ + 514, + { + "n": "Bernardoni", + "f": "Paul", + "fp": "G", + "r": 10, + "c": 16, + "s": { + "Os": 188.5, + "On": 38, + "Oa": 4.96, + "Od": 1.24, + "Om": 3420, + "Oam": 90, + "pg": 38 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 3, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 3, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 3, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6200 + } + ] + ] + } + ], + [ + 826, + { + "n": "Boufal", + "f": "Sofiane", + "fp": "MO", + "r": 5, + "c": 16, + "s": { + "Og": 1, + "Os": 70, + "On": 14, + "Oa": 5, + "Od": 0.85, + "Om": 736, + "Oam": 53, + "Odm": 26, + "pm": 14, + "Omsn": 7 + }, + "p": [ + [ + -30, + { + "n": 5, + "q": null, + "m": 26, + "e": 5908, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 5918 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 77, + "e": 5932 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 84, + "e": 5938 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 20, + "e": 5957, + "s": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 79, + "e": 5958 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 62, + "e": 5974 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 19, + "e": 5984, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 17, + "e": 5998, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 55, + "e": 6078 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 22, + "e": 6088, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 6118 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 71, + "e": 6137, + "g": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6138 + } + ] + ], + "fo": [ + [ + 5908, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1179, + { + "n": "Fulgini", + "f": "Angelo", + "fp": "MO", + "r": 17, + "c": 16, + "s": { + "Og": 7, + "Os": 189, + "On": 33, + "Oa": 5.73, + "Od": 1.26, + "Om": 2738, + "Oam": 83, + "Odm": 15, + "pm": 29, + "pa": 4, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 8, + "q": null, + "m": 90, + "e": 5828, + "g": 1 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 70, + "e": 5848, + "g": 1 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 5890 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 8, + "q": null, + "m": 89, + "e": 5932, + "g": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 62, + "e": 5974 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 10, + "e": 5988 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 5998, + "g": 1 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 76, + "e": 6022 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 6029 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 6038 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 63, + "e": 6058 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 83, + "e": 6075 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 83, + "e": 6078, + "g": 1 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 86, + "e": 6088 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 81, + "e": 6098 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 84, + "e": 6118 + } + ], + [ + -8, + { + "n": 8, + "q": null, + "m": 90, + "e": 6137, + "g": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6158, + "g": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6192 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5918, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1401, + { + "n": "Bahoken", + "f": "Stéphane", + "fp": "A", + "r": 12, + "c": 16, + "s": { + "Og": 6, + "Os": 142.5, + "On": 30, + "Oa": 4.75, + "Od": 1.13, + "Om": 1620, + "Oam": 54, + "Odm": 25, + "pa": 30, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5842, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 5848 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 78, + "e": 5861 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 62, + "e": 5868, + "s": 1 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 76, + "e": 5878 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 60, + "e": 5890 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5898, + "g": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 65, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5918, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 5932, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 15, + "e": 5938, + "s": 1 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 66, + "e": 5998 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6008, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6022, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6029, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6053, + "s": 1 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 63, + "e": 6058 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 74, + "e": 6075 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 83, + "e": 6078 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 68, + "e": 6088, + "g": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 68, + "e": 6098 + } + ], + [ + -10, + { + "n": 8, + "q": null, + "m": 69, + "e": 6114, + "g": 2 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6118, + "s": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 80, + "e": 6137 + } + ], + [ + -6, + { + "n": 2.5, + "q": null, + "m": 68, + "e": 6154 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 6158 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 74, + "e": 6173, + "g": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 78, + "e": 6178, + "g": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 24, + "e": 6192, + "s": 1 + } + ] + ] + } + ], + [ + 2686, + { + "n": "Mendy", + "f": "Batista", + "fp": "DC", + "r": 6, + "c": 16, + "s": { + "Os": 9.5, + "On": 2, + "Oa": 4.75, + "Od": 0.35, + "Om": 74, + "Oam": 37, + "Odm": 11, + "pd": 2 + }, + "p": [ + [ + -3, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6183, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 45, + "e": 5958, + "s": 1 + } + ] + ] + } + ], + [ + 2698, + { + "n": "Thioub", + "f": "Sada", + "fp": "A", + "r": 9, + "c": 16, + "s": { + "Og": 1, + "Os": 132.5, + "On": 27, + "Oa": 4.91, + "Od": 0.81, + "Om": 1252, + "Oam": 46, + "Odm": 28, + "pm": 10, + "pa": 17, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 33, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 45, + "e": 5842 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 85, + "e": 5848 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5868, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 5878, + "s": 1 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 60, + "e": 5890 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 70, + "e": 5957 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5958, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 28, + "e": 5974, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 81, + "e": 5984 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 80, + "e": 5988, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 65, + "e": 5998 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 15, + "e": 6008, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 14, + "e": 6022, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6029, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6058, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 6098 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 75, + "e": 6114 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 45, + "e": 6118, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 19, + "e": 6137, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6138, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 68, + "e": 6154 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 71, + "e": 6158, + "g": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 27, + "e": 6173, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 19, + "e": 6178, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6192 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6200 + } + ] + ] + } + ], + [ + 2702, + { + "n": "Bobichon", + "f": "Antonin", + "fp": "MO", + "r": 9, + "c": 16, + "s": { + "Os": 115, + "On": 23, + "Oa": 5, + "Od": 0.8, + "Om": 907, + "Oam": 39, + "Odm": 35, + "pm": 21, + "pa": 2 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5842 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 76, + "e": 5848, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5861, + "s": 1 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 66, + "e": 5878 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 6, + "e": 5890, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 85, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 5908 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 1, + "e": 5932, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 1, + "e": 5958, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 85, + "e": 5984 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 14, + "e": 6022, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 11, + "e": 6038, + "s": 1 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6053 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6075, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 4, + "e": 6088, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 11, + "e": 6098, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 6, + "e": 6114, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 19, + "e": 6137, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 45, + "e": 6158 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 7.5, + "q": null, + "m": 63, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6192, + "s": 1 + } + ] + ] + } + ], + [ + 2731, + { + "n": "Alioui", + "f": "Rachid", + "fp": "A", + "r": 14, + "c": 16, + "s": { + "Os": 4.5, + "On": 1, + "Oa": 4.5, + "Om": 14, + "Oam": 14, + "pa": 1 + }, + "p": [ + [ + -7, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6138, + "s": 1 + } + ] + ] + } + ], + [ + 2831, + { + "n": "El Melali", + "f": "Farid", + "fp": "MO", + "r": 10, + "c": 16, + "s": { + "Og": 1, + "Os": 84.5, + "On": 17, + "Oa": 4.97, + "Od": 0.72, + "Om": 405, + "Oam": 24, + "Odm": 22, + "pm": 17, + "Omsn": 7 + }, + "p": [ + [ + -37, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5842 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 70, + "e": 5848, + "g": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5861, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 6, + "e": 5938, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 9, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 10, + "e": 5988, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 4, + "e": 6008, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6038, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 14, + "e": 6053, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6058 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6075, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 7, + "e": 6078, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6088, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 22, + "e": 6098, + "s": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 6114, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 66, + "e": 6192 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6200, + "s": 1 + } + ] + ] + } + ], + [ + 3125, + { + "n": "Doumbia", + "f": "Souleyman", + "fp": "DL", + "r": 7, + "c": 16, + "s": { + "Oao": 1, + "Os": 130, + "On": 27, + "Oa": 4.81, + "Od": 0.96, + "Om": 2220, + "Oam": 82, + "Odm": 18, + "pd": 27 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 33, + "e": 5828, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 33, + "e": 5918, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 3, + "q": null, + "m": 90, + "e": 5974, + "a": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 62, + "e": 6137, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 45, + "e": 6138 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 67, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5908, + [ + { + "t": "Y" + } + ] + ], + [ + 5932, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4037, + { + "n": "Petkovic", + "f": "Danijel", + "fp": "G", + "r": 4, + "c": 16 + } + ], + [ + 5018, + { + "n": "Pereira Lage", + "f": "Mathias", + "fp": "MO", + "r": 12, + "c": 16, + "s": { + "Og": 4, + "Os": 145, + "On": 28, + "Oa": 5.18, + "Od": 0.8, + "Om": 1472, + "Oam": 53, + "Odm": 31, + "pd": 1, + "pm": 26, + "pa": 1, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 5828 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 45, + "e": 5842, + "g": 1, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 5848, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 78, + "e": 5861 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 82, + "e": 5868 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 78, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 33, + "e": 5918, + "s": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 28, + "e": 5938, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 6, + "e": 5957, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5958, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 15, + "e": 5974, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 5, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5988 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 5998, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 6008 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6022, + "s": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6029 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 89, + "e": 6038, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 14, + "e": 6053, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 81, + "e": 6058 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 74, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6078 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 79, + "e": 6088, + "g": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 79, + "e": 6098 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 69, + "e": 6114, + "g": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 14, + "e": 6118, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5842, + [ + { + "t": "Y" + } + ] + ], + [ + 5861, + [ + { + "t": "Y" + } + ] + ], + [ + 5932, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5054, + { + "n": "Ebosse", + "f": "Enzo", + "fp": "DL", + "r": 3, + "c": 16, + "s": { + "Os": 26, + "On": 6, + "Oa": 4.33, + "Od": 1.33, + "Om": 261, + "Oam": 44, + "Odm": 29, + "pd": 6 + }, + "p": [ + [ + -8, + { + "n": 5, + "q": null, + "m": 28, + "e": 6137 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 45, + "e": 6138, + "s": 1 + } + ], + [ + -6, + { + "n": 2, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 12, + "e": 6158, + "s": 1 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 63, + "e": 6173 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 6200, + "s": 1 + } + ] + ] + } + ], + [ + 5456, + { + "n": "Ould Khaled", + "f": "Zinédine", + "fp": "MD", + "r": 7, + "c": 16, + "s": { + "Os": 14, + "On": 3, + "Oa": 4.67, + "Od": 0.58, + "Om": 35, + "Oam": 12, + "Odm": 6, + "pd": 3 + }, + "p": [ + [ + -34, + { + "n": 4, + "q": null, + "m": 19, + "e": 5868, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 7, + "e": 5878, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 9, + "e": 5890, + "s": 1 + } + ] + ], + "fo": [ + [ + 5868, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6002, + { + "n": "Ounahi", + "f": "Azzedine", + "fp": "MD", + "r": 4, + "c": 16 + } + ], + [ + 6859, + { + "n": "Bemanga", + "f": "Kevin", + "fp": "MO", + "r": 1, + "c": 16 + } + ], + [ + 6921, + { + "n": "Boma", + "f": "Kévin", + "fp": "DC", + "r": 1, + "c": 16 + } + ], + [ + 6924, + { + "n": "Taibi", + "f": "Waniss", + "fp": "MO", + "r": 5, + "c": 16, + "s": { + "Os": 9.5, + "On": 2, + "Oa": 4.75, + "Od": 0.35, + "Om": 36, + "Oam": 18, + "Odm": 8, + "pm": 2 + }, + "p": [ + [ + -35, + { + "n": 5, + "q": null, + "m": 12, + "e": 5861, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 5878, + "s": 1 + } + ] + ] + } + ], + [ + 7143, + { + "n": "Ali-Cho", + "f": "Mohamed", + "fp": "MO", + "r": 9, + "c": 16, + "s": { + "Os": 96.5, + "On": 20, + "Oa": 4.83, + "Od": 0.49, + "Om": 322, + "Oam": 16, + "Odm": 15, + "pm": 19, + "pa": 1 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 9, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 19, + "e": 5842, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 5848, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 12, + "e": 5861, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 8, + "e": 5868, + "s": 1 + } + ], + [ + -33, + { + "n": 3, + "q": null, + "m": 66, + "e": 5878 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 30, + "e": 5890, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 8, + "e": 5918, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 1, + "e": 5958, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 15, + "e": 5974, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 19, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 10, + "e": 5988, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6038, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 9, + "e": 6058, + "s": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 16, + "e": 6075, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 9, + "e": 6098, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 6, + "e": 6118, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6154, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6158, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 16, + "e": 6173, + "s": 1 + } + ] + ] + } + ], + [ + 7473, + { + "n": "Falouh", + "f": "Oussama", + "fp": "DL", + "r": 1, + "c": 16 + } + ], + [ + 7777, + { + "n": "Fatar", + "f": "Noah", + "fp": "MO", + "r": 5, + "c": 16, + "s": { + "Os": 9, + "On": 2, + "Oa": 4.5, + "Om": 19, + "Oam": 10, + "Odm": 6, + "pm": 2 + }, + "p": [ + [ + -33, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5878, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 5898, + "s": 1 + } + ] + ] + } + ], + [ + 7840, + { + "n": "Dramé", + "f": "Ismael", + "fp": "DC", + "r": 1, + "c": 16 + } + ], + [ + 8200, + { + "n": "Lgharbi", + "f": "Walim", + "fp": "MO", + "r": 2, + "c": 16 + } + ], + [ + 38, + { + "n": "Costil", + "f": "Benoît", + "fp": "G", + "r": 11, + "c": 3, + "s": { + "Os": 197.5, + "On": 38, + "Oa": 5.2, + "Od": 1.13, + "Om": 3420, + "Oam": 90, + "pg": 38 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5899 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5919 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5954 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6128 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6148 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6199 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6192 + } + ] + ] + } + ], + [ + 56, + { + "n": "Briand", + "f": "Jimmy", + "fp": "A", + "r": 8, + "c": 3, + "s": { + "Og": 1, + "Os": 108, + "On": 24, + "Oa": 4.5, + "Od": 0.51, + "Om": 550, + "Oam": 23, + "Odm": 13, + "pm": 1, + "pa": 23, + "Omsn": 6 + }, + "p": [ + [ + -35, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5858, + "s": 1 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 33, + "e": 5896, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5912, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5919, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5928, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5954, + "s": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 32, + "e": 5968, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6033, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6056, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6059, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 26, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6079, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6095, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6107, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6108, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 45, + "e": 6122, + "s": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 25, + "e": 6128, + "g": 1, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 6141, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6148, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6159, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 60, + "e": 6169 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 16, + "e": 6179, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 24, + "e": 6192, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6199, + "s": 1 + } + ] + ] + } + ], + [ + 139, + { + "n": "Baysse", + "f": "Paul", + "fp": "DC", + "r": 9, + "c": 3, + "s": { + "Og": 2, + "Os": 154, + "On": 31, + "Oa": 4.97, + "Od": 1.24, + "Om": 2613, + "Oam": 84, + "Odm": 19, + "pd": 31, + "Omsn": 5 + }, + "p": [ + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 31, + "e": 5852, + "s": 1 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 3, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5899, + "g": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5919 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6016, + "g": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6128 + } + ], + [ + -7, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 4, + "e": 6148, + "s": 1 + } + ], + [ + -4, + { + "n": 2, + "q": null, + "m": 58, + "e": 6169 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5870, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 168, + { + "n": "Mexer", + "f": "", + "fp": "DC", + "r": 10, + "c": 3, + "s": { + "Os": 39, + "On": 9, + "Oa": 4.33, + "Od": 1.22, + "Om": 714, + "Oam": 79, + "Odm": 13, + "pd": 9 + }, + "p": [ + [ + -36, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5852 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 66, + "e": 5884, + "s": 1 + } + ], + [ + -31, + { + "n": 3, + "q": null, + "m": 67, + "e": 5899 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 72, + "e": 5919 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5954 + } + ] + ], + "fo": [ + [ + 5919, + [ + { + "t": "I" + } + ] + ], + [ + 5852, + [ + { + "t": "Y" + } + ] + ], + [ + 5858, + [ + { + "t": "Y" + } + ] + ], + [ + 5899, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 445, + { + "n": "Kwateng", + "f": "Enock", + "fp": "DL", + "r": 9, + "c": 3, + "s": { + "Og": 1, + "Os": 90, + "On": 18, + "Oa": 5, + "Od": 0.92, + "Om": 1035, + "Oam": 58, + "Odm": 35, + "pd": 17, + "pm": 1, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 90, + "e": 5833, + "g": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 18, + "e": 5919, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 62, + "e": 5954 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 5959 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 75, + "e": 5968 + } + ], + [ + -23, + { + "n": 3, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 1, + "e": 6056, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6059 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 7, + "e": 6070, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6095 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 28, + "e": 6122, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6159, + "s": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 6199, + "s": 1 + } + ] + ], + "fo": [ + [ + 5833, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 621, + { + "n": "Koscielny", + "f": "Laurent", + "fp": "DC", + "r": 7, + "c": 3, + "s": { + "Os": 140, + "On": 26, + "Oa": 5.38, + "Od": 1, + "Om": 2218, + "Oam": 85, + "Odm": 17, + "pd": 26 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 24, + "e": 5884 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5899 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5954 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 34, + "e": 6033, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6148 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5884, + [ + { + "t": "I" + } + ] + ], + [ + 5939, + [ + { + "t": "Y" + } + ] + ], + [ + 5968, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1075, + { + "n": "Maja", + "f": "Josh", + "fp": "A", + "r": 7, + "c": 3, + "s": { + "Og": 5, + "Os": 149.5, + "On": 32, + "Oa": 4.67, + "Od": 0.84, + "Om": 1618, + "Oam": 51, + "Odm": 29, + "pa": 32, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6590, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6612, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 36, + "e": 6617, + "s": 1 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 81, + "e": 6625 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 77, + "e": 6642, + "g": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 16, + "e": 6654, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6661, + "s": 1 + } + ], + [ + -27, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 7659 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 67, + "e": 6690 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 6635 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6697 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 86, + "e": 6709 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6778 + } + ], + [ + -24, + { + "n": 7.5, + "q": null, + "m": 73, + "e": 6717, + "g": 2 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6725, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6018, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 6033 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 45, + "e": 6039, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 61, + "e": 6059 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 62, + "e": 6079 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6095 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6107 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 61, + "e": 6108 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6128 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 24, + "e": 6141, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 63, + "e": 6148 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6159 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 9, + "e": 6169, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 16, + "e": 6179, + "s": 1 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 66, + "e": 6192, + "g": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 45, + "e": 6199 + } + ] + ] + } + ], + [ + 1175, + { + "n": "Otávio", + "f": "", + "fp": "MD", + "r": 3, + "c": 3, + "s": { + "Og": 1, + "Os": 99.5, + "On": 18, + "Oa": 5.53, + "Od": 1.08, + "Om": 1561, + "Oam": 87, + "Odm": 12, + "pm": 18, + "Omsn": 8 + }, + "p": [ + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -16, + { + "n": 8, + "q": null, + "m": 90, + "e": 6056, + "g": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 81, + "e": 6059 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 40, + "e": 6128 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6192 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6199 + } + ] + ] + } + ], + [ + 1271, + { + "n": "Poussin", + "f": "Gaëtan", + "fp": "G", + "r": 7, + "c": 3 + } + ], + [ + 1880, + { + "n": "Pardo", + "f": "Rubén", + "fp": "MO", + "r": 1, + "c": 3, + "s": { + "Os": 10, + "On": 2, + "Oa": 5, + "Om": 21, + "Oam": 11, + "Odm": 2, + "pm": 2 + }, + "p": [ + [ + -4, + { + "n": 5, + "q": null, + "m": 9, + "e": 6169, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 12, + "e": 6192, + "s": 1 + } + ] + ] + } + ], + [ + 2080, + { + "n": "Carrique", + "f": "Thomas", + "fp": "DL", + "r": 1, + "c": 3 + } + ], + [ + 2142, + { + "n": "Adli", + "f": "Yacine", + "fp": "MO", + "r": 17, + "c": 3, + "s": { + "Og": 2, + "Os": 176, + "On": 35, + "Oa": 5.03, + "Od": 1.17, + "Om": 2414, + "Oam": 69, + "Odm": 28, + "pm": 33, + "pa": 2, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 90, + "e": 5833, + "g": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 75, + "e": 5838 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 3, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5899 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5919 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 78, + "e": 5954 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 87, + "e": 5968 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 6018, + "s": 1 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 56, + "e": 6033 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6039 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 15, + "e": 6056, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 27, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 22, + "e": 6079, + "s": 1 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 32, + "e": 6095, + "g": 1, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 14, + "e": 6107, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6108, + "s": 1 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 45, + "e": 6122 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 50, + "e": 6128, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 65, + "e": 6141 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 86, + "e": 6148 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6159 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 64, + "e": 6169, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 28, + "e": 6179, + "s": 1 + } + ] + ], + "fo": [ + [ + 5928, + [ + { + "t": "Y" + } + ] + ], + [ + 5954, + [ + { + "t": "Y" + } + ] + ], + [ + 5959, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2673, + { + "n": "Oudin", + "f": "Remi", + "fp": "MO", + "r": 12, + "c": 3, + "s": { + "Og": 4, + "Os": 199, + "On": 38, + "Oa": 5.24, + "Od": 1.1, + "Om": 2430, + "Oam": 64, + "Odm": 25, + "pd": 1, + "pm": 23, + "pa": 14, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 45, + "e": 5833, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5838, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 5852, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5858, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 54, + "e": 5870 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 62, + "e": 5884 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 57, + "e": 5896 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 5899 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 83, + "e": 5912 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 72, + "e": 5919 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 84, + "e": 5939 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5954 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 84, + "e": 5959 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5978 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 83, + "e": 5992 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 5998 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 84, + "e": 6016 + } + ], + [ + -19, + { + "n": 7.5, + "q": null, + "m": 86, + "e": 6018, + "g": 2 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6033 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6039 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6059, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 83, + "e": 6070 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6079, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 31, + "e": 6095, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6107, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6122 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 49, + "e": 6128, + "g": 1, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 71, + "e": 6141 + } + ], + [ + -6, + { + "n": 7.5, + "q": null, + "m": 63, + "e": 6148, + "g": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6159, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6169 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6179 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 89, + "e": 6192 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6199, + "s": 1 + } + ] + ], + "fo": [ + [ + 5928, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2788, + { + "n": "Kalu", + "f": "Samuel", + "fp": "MO", + "r": 9, + "c": 3, + "s": { + "Og": 4, + "Os": 103, + "On": 20, + "Oa": 5.15, + "Od": 0.67, + "Om": 972, + "Oam": 49, + "Odm": 26, + "pm": 11, + "pa": 9, + "Omsn": 5.5 + }, + "p": [ + [ + -35, + { + "n": 5, + "q": null, + "m": 59, + "e": 5858 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 36, + "e": 5870, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5919 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 65, + "e": 5928 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 5939, + "g": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5954 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5959, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 72, + "e": 5978 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 76, + "e": 5992, + "g": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 61, + "e": 5998 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 62, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 6018 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 19, + "e": 6033, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 59, + "e": 6107 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 77, + "e": 6148, + "g": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 68, + "e": 6159 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 9, + "e": 6169, + "g": 1, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 62, + "e": 6179 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 12, + "e": 6192, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6199, + "s": 1 + } + ] + ], + "fo": [ + [ + 5919, + [ + { + "t": "I" + } + ] + ], + [ + 5954, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2792, + { + "n": "Basic", + "f": "Toma", + "fp": "MD", + "r": 10, + "c": 3, + "s": { + "Og": 4, + "Os": 173, + "On": 34, + "Oa": 5.09, + "Od": 1.18, + "Om": 2609, + "Oam": 77, + "Odm": 21, + "pm": 34, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 5833 + } + ], + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 83, + "e": 5870 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 82, + "e": 5884 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 23, + "e": 5899, + "s": 1 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 82, + "e": 5912 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 5919, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 38, + "e": 5959 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 57, + "e": 5968 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6016, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6059 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 63, + "e": 6070, + "g": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 6079 + } + ], + [ + -12, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 6095 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6108 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6128 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6148, + "g": 1 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 26, + "e": 6169 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6192, + "g": 1 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5959, + [ + { + "t": "I" + } + ] + ], + [ + 5852, + [ + { + "t": "Y" + } + ] + ], + [ + 5919, + [ + { + "t": "Y" + } + ] + ], + [ + 5968, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2962, + { + "n": "Bessile", + "f": "Loic", + "fp": "DC", + "r": 1, + "c": 3, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 90, + "Oam": 90, + "pd": 1 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5833 + } + ] + ] + } + ], + [ + 3754, + { + "n": "Lauray", + "f": "Alexandre", + "fp": "DC", + "r": 2, + "c": 3 + } + ], + [ + 3789, + { + "n": "Bellanova", + "f": "Raoul", + "fp": "DL", + "r": 5, + "c": 3, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 17, + "Oam": 17, + "pd": 1 + }, + "p": [ + [ + -33, + { + "n": 5, + "q": null, + "m": 17, + "e": 5498, + "s": 1 + } + ] + ] + } + ], + [ + 3792, + { + "n": "Hwang Ui-Jo", + "f": "", + "fp": "A", + "r": 16, + "c": 3, + "s": { + "Og": 12, + "Os": 180, + "On": 36, + "Oa": 5, + "Od": 1.16, + "Om": 2524, + "Oam": 70, + "Odm": 19, + "pm": 7, + "pa": 29, + "Omsn": 4.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 5833 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 66, + "e": 5838, + "g": 1 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 5858 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 82, + "e": 5884 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5896, + "g": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 5899, + "g": 1 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5912, + "g": 1 + } + ], + [ + -29, + { + "n": 8, + "q": null, + "m": 72, + "e": 5919, + "g": 2 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 65, + "e": 5928 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5954 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 58, + "e": 5968, + "g": 1 + } + ], + [ + -23, + { + "n": 3, + "q": null, + "m": 79, + "e": 5978 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 82, + "e": 5992 + } + ], + [ + -21, + { + "n": 8, + "q": null, + "m": 81, + "e": 5998, + "g": 2 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 84, + "e": 6016, + "g": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6018 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 71, + "e": 6033 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 83, + "e": 6039, + "g": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6056 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 61, + "e": 6059, + "g": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 26, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 6079 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 59, + "e": 6095 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 45, + "e": 6122 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 65, + "e": 6128 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 25, + "e": 6141, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6148, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 22, + "e": 6159, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6169 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 74, + "e": 6179 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 78, + "e": 6192 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 75, + "e": 6199 + } + ] + ] + } + ], + [ + 3816, + { + "n": "Benito", + "f": "Loris", + "fp": "DL", + "r": 9, + "c": 3, + "s": { + "Os": 145.5, + "On": 31, + "Oa": 4.69, + "Od": 1.24, + "Om": 2653, + "Oam": 86, + "Odm": 12, + "pd": 31 + }, + "p": [ + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 2, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 3, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5919 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 68, + "e": 5954 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 5998 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6039 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6095, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6128 + } + ], + [ + -7, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 6141 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6148 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6192 + } + ] + ], + "fo": [ + [ + 5954, + [ + { + "t": "R" + } + ] + ], + [ + 5852, + [ + { + "t": "Y" + } + ] + ], + [ + 5858, + [ + { + "t": "Y" + } + ] + ], + [ + 5912, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5455, + { + "n": "Rouyard", + "f": "Davy", + "fp": "G", + "r": 1, + "c": 3 + } + ], + [ + 6161, + { + "n": "Traoré", + "f": "Amadou", + "fp": "A", + "r": 9, + "c": 3, + "s": { + "Os": 87, + "On": 19, + "Oa": 4.58, + "Od": 0.51, + "Om": 285, + "Oam": 15, + "Odm": 9, + "pa": 19 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 24, + "e": 5833, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 5852, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 31, + "e": 5858, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 7, + "e": 5870, + "s": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 8, + "e": 5884, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5899, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5912, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 18, + "e": 5919, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5928, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 28, + "e": 5954, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5968, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5978, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5992, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 9, + "e": 5998, + "s": 1 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 6, + "e": 6016, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 16, + "e": 6018, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6039, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 30, + "e": 6107, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 7, + "e": 6128, + "s": 1 + } + ] + ] + } + ], + [ + 6347, + { + "n": "Zerkane", + "f": "Mehdi", + "fp": "MO", + "r": 13, + "c": 3, + "s": { + "Og": 1, + "Os": 133.5, + "On": 27, + "Oa": 4.94, + "Od": 0.75, + "Om": 1191, + "Oam": 44, + "Odm": 23, + "pm": 25, + "pa": 2, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 5, + "e": 5833, + "s": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 5, + "e": 5838, + "g": 1, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 5852 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 5858 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 54, + "e": 5870 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 28, + "e": 5884, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 5896 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5899, + "s": 1 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 65, + "e": 5919 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 78, + "e": 5928 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 5939 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 12, + "e": 5954, + "s": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 52, + "e": 5959, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6033, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 45, + "e": 6039 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 75, + "e": 6056 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6059, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6070 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 6079 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 59, + "e": 6095 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 60, + "e": 6107 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 62, + "e": 6108 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 45, + "e": 6122, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 25, + "e": 6128, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 6141, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 13, + "e": 6148, + "s": 1 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 20, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5838, + [ + { + "t": "Y" + } + ] + ], + [ + 5884, + [ + { + "t": "Y" + } + ] + ], + [ + 5954, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6905, + { + "n": "Mara", + "f": "Sékou", + "fp": "A", + "r": 10, + "c": 3, + "s": { + "Og": 1, + "Os": 37.5, + "On": 8, + "Oa": 4.69, + "Od": 0.88, + "Om": 225, + "Oam": 28, + "Odm": 21, + "pa": 8, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 24, + "e": 5833, + "s": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 24, + "e": 5838, + "s": 1 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 5852 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 59, + "e": 5858, + "g": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 36, + "e": 5870, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5899, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5912, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5939, + "s": 1 + } + ] + ] + } + ], + [ + 7365, + { + "n": "Bakwa", + "f": "Dilane", + "fp": "A", + "r": 5, + "c": 3, + "s": { + "Os": 28.5, + "On": 6, + "Oa": 4.75, + "Od": 0.61, + "Om": 44, + "Oam": 7, + "Odm": 4, + "pa": 6 + }, + "p": [ + [ + -24, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5968, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5978, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6016, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6018, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6039, + "s": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 13, + "e": 6148, + "s": 1 + } + ] + ] + } + ], + [ + 7456, + { + "n": "Lima Semedo", + "f": "Darren", + "fp": "G", + "r": 1, + "c": 3 + } + ], + [ + 7561, + { + "n": "Lacoux", + "f": "Tom", + "fp": "MD", + "r": 10, + "c": 3, + "s": { + "Os": 58, + "On": 12, + "Oa": 4.83, + "Od": 0.69, + "Om": 522, + "Oam": 44, + "Odm": 34, + "pm": 12 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 5833 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 85, + "e": 5838 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 5852 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 5858 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 78, + "e": 5884 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 12, + "e": 5928, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 6, + "e": 5959, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5968, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5978, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 1, + "e": 5992, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 29, + "e": 5998, + "s": 1 + } + ] + ], + "fo": [ + [ + 5852, + [ + { + "t": "Y" + } + ] + ], + [ + 5858, + [ + { + "t": "Y" + } + ] + ], + [ + 5884, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ] + ] + } + ], + [ + 7776, + { + "n": "Sissokho", + "f": "Issouf", + "fp": "MO", + "r": 8, + "c": 3, + "s": { + "Og": 1, + "Os": 25.5, + "On": 5, + "Oa": 5.1, + "Od": 0.65, + "Om": 59, + "Oam": 12, + "Odm": 6, + "pm": 5, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 9, + "e": 5833, + "s": 1 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 5838, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 5858, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 7, + "e": 5870, + "g": 1, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5912, + "s": 1 + } + ] + ], + "fo": [ + [ + 5858, + [ + { + "t": "Y" + } + ] + ], + [ + 5870, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 8193, + { + "n": "Bokele Mputu", + "f": "Malcom", + "fp": "DC", + "r": 1, + "c": 3 + } + ], + [ + 8198, + { + "n": "Medioub", + "f": "Abdel Jalil Zaim Idriss", + "fp": "DC", + "r": 4, + "c": 3 + } + ], + [ + 8927, + { + "n": "Ricardo Mangas", + "f": "", + "fp": "DL", + "r": 8, + "c": 3 + } + ], + [ + 85, + { + "n": "Mounié", + "f": "Steve", + "fp": "A", + "r": 17, + "c": 75, + "s": { + "Og": 9, + "Os": 173, + "On": 34, + "Oa": 5.09, + "Od": 1.14, + "Om": 2603, + "Oam": 77, + "Odm": 23, + "pa": 34, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 87, + "e": 5829 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 80, + "e": 5853, + "g": 2 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5859, + "s": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 81, + "e": 5888 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 81, + "e": 5901 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 90, + "e": 5929, + "g": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 73, + "e": 5943 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 79, + "e": 5987 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 72, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 10, + "e": 6025, + "s": 1 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 80, + "e": 6028, + "g": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 75, + "e": 6040 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 6, + "e": 6061, + "s": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6068, + "g": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 79, + "e": 6099, + "g": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 78, + "e": 6109 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 83, + "e": 6126 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 70, + "e": 6129 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6143 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 90, + "e": 6168, + "g": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 15, + "e": 5968, + "g": 1, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 74, + "e": 6079 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6158, + "g": 1 + } + ] + ], + "fo": [ + [ + 5844, + [ + { + "t": "Y" + } + ] + ], + [ + 5888, + [ + { + "t": "Y" + } + ] + ], + [ + 5901, + [ + { + "t": "Y" + } + ] + ], + [ + 5922, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 227, + { + "n": "Lasne", + "f": "Paul", + "fp": "MD", + "r": 7, + "c": 75, + "s": { + "Os": 112, + "On": 22, + "Oa": 5.09, + "Od": 0.84, + "Om": 1685, + "Oam": 77, + "Odm": 24, + "pm": 22 + }, + "p": [ + [ + -30, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5908, + "s": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 5922 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5929 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 87, + "e": 5948 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 80, + "e": 5989 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 87, + "e": 6009 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 77, + "e": 6025 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6061 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 89, + "e": 6079 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6099 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6129, + "s": 1 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6158, + "s": 1 + } + ] + ], + "fo": [ + [ + 5908, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 310, + { + "n": "Philippoteaux", + "f": "Romain", + "fp": "MO", + "r": 7, + "c": 75, + "s": { + "Og": 2, + "Os": 100, + "On": 20, + "Oa": 5, + "Od": 0.97, + "Om": 795, + "Oam": 40, + "Odm": 28, + "pm": 19, + "pa": 1, + "Omsn": 7 + }, + "p": [ + [ + -3, + { + "n": 4, + "q": null, + "m": 45, + "e": 6185 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 80, + "e": 6194 + } + ], + [ + -1, + { + "n": 8, + "q": null, + "m": 90, + "e": 6206, + "g": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 3, + "e": 5879 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 9, + "e": 5888, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 58, + "e": 5901 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5908, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5943, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 61, + "e": 5987 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 8, + "e": 6009, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 69, + "e": 6025 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 3, + "e": 6028, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 15, + "e": 6040, + "s": 1 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 71, + "e": 6048, + "g": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 65, + "e": 6061 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 7, + "e": 6126, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6129, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 45, + "e": 6143 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 28, + "e": 6158, + "s": 1 + } + ] + ], + "fo": [ + [ + 5879, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 368, + { + "n": "Pierre-Gabriel", + "f": "Ronaël", + "fp": "DL", + "r": 10, + "c": 75, + "s": { + "Og": 1, + "Os": 139, + "On": 29, + "Oa": 4.79, + "Od": 0.89, + "Om": 2315, + "Oam": 80, + "Odm": 20, + "pd": 28, + "pm": 1, + "Omsn": 7 + }, + "p": [ + [ + -34, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5876 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 21, + "e": 6180 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6197 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5901 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 9, + "e": 5929, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 81, + "e": 5943 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 67, + "e": 5948 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 80, + "e": 5987 + } + ], + [ + -22, + { + "n": 3, + "q": null, + "m": 89, + "e": 5989 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 88, + "e": 6009 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 80, + "e": 6028 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 83, + "e": 6040 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 71, + "e": 6048 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6068 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6109, + "g": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -1, + { + "n": 3, + "q": null, + "m": 90, + "e": 6206 + } + ] + ] + } + ], + [ + 564, + { + "n": "Magnetti", + "f": "Hugo", + "fp": "MD", + "r": 10, + "c": 75, + "s": { + "Os": 66, + "On": 13, + "Oa": 5.08, + "Od": 0.73, + "Om": 600, + "Oam": 46, + "Odm": 41, + "pm": 13 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 87, + "e": 5829 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 23, + "e": 5853, + "s": 1 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5859 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 1, + "e": 6028, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 6, + "e": 6061, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 1, + "e": 6099, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6143 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 2, + "e": 6149, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6197, + "s": 1 + } + ] + ], + "fo": [ + [ + 5829, + [ + { + "t": "Y" + } + ] + ], + [ + 5888, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 580, + { + "n": "Cardona", + "f": "Irvin", + "fp": "A", + "r": 16, + "c": 75, + "s": { + "Og": 8, + "Os": 168, + "On": 36, + "Oa": 4.67, + "Od": 1.12, + "Om": 2032, + "Oam": 56, + "Odm": 29, + "pa": 36, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 12, + "e": 5829, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5844, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5853, + "s": 1 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 63, + "e": 5859 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 88, + "e": 5876 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5888 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 32, + "e": 5901, + "s": 1 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 5922, + "s": 1 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 74, + "e": 5929, + "g": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5943, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5948, + "g": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 81, + "e": 5968 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 29, + "e": 5987, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 80, + "e": 5989, + "g": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6005, + "s": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 77, + "e": 6009 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 80, + "e": 6028 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 26, + "e": 6061, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 70, + "e": 6068 + } + ], + [ + -13, + { + "n": 3.5, + "q": null, + "m": 77, + "e": 6079 + } + ], + [ + -12, + { + "n": 7.5, + "q": null, + "m": 81, + "e": 6092, + "g": 2 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 73, + "e": 6099, + "g": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 78, + "e": 6109, + "g": 1 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 75, + "e": 6126 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 6129, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6143, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 19, + "e": 6158, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 32, + "e": 6168, + "s": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 17, + "e": 6180, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 79, + "e": 6197 + } + ], + [ + -1, + { + "n": 2.5, + "q": null, + "m": 67, + "e": 6206 + } + ] + ] + } + ], + [ + 1426, + { + "n": "Herelle", + "f": "Christophe", + "fp": "DC", + "r": 5, + "c": 75, + "s": { + "Oao": 1, + "Os": 75.5, + "On": 16, + "Oa": 4.72, + "Od": 0.75, + "Om": 1378, + "Oam": 86, + "Odm": 12, + "pd": 16 + }, + "p": [ + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 45, + "e": 6068, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6168, + "a": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 73, + "e": 6180 + } + ] + ], + "fo": [ + [ + 5948, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2145, + { + "n": "Faivre", + "f": "Romain", + "fp": "MO", + "r": 20, + "c": 75, + "s": { + "Og": 6, + "Oao": 1, + "Os": 214, + "On": 36, + "Oa": 5.94, + "Od": 1.1, + "Om": 2898, + "Oam": 81, + "Odm": 20, + "pm": 32, + "pa": 4, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 78, + "e": 5829, + "a": 1 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 89, + "e": 5844 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5859, + "g": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 16, + "e": 5929, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 5948 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5968, + "g": 1 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 22, + "e": 5987, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5989 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 89, + "e": 6028 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 75, + "e": 6040 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 89, + "e": 6048 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 25, + "e": 6061, + "g": 1, + "s": 1 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6068 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 8, + "q": null, + "m": 89, + "e": 6092 + } + ], + [ + -11, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 6099 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6143, + "g": 1 + } + ], + [ + -6, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6149, + "g": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6158 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 58, + "e": 6168 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 73, + "e": 6180 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 79, + "e": 6197, + "g": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6206 + } + ] + ] + } + ], + [ + 2311, + { + "n": "Cibois", + "f": "Sebastien", + "fp": "G", + "r": 3, + "c": 75, + "s": { + "Os": 14.5, + "On": 3, + "Oa": 4.83, + "Od": 1.61, + "Om": 270, + "Oam": 90, + "pg": 3 + }, + "p": [ + [ + -26, + { + "n": 3, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5968 + } + ] + ] + } + ], + [ + 2963, + { + "n": "Honorat", + "f": "Franck", + "fp": "MO", + "r": 17, + "c": 75, + "s": { + "Og": 8, + "Os": 202, + "On": 36, + "Oa": 5.61, + "Od": 1.12, + "Om": 2468, + "Oam": 69, + "Odm": 27, + "pm": 27, + "pa": 9, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 5876 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 82, + "e": 5888 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 45, + "e": 5908, + "s": 1 + } + ], + [ + -28, + { + "n": 7.5, + "q": null, + "m": 80, + "e": 5929, + "g": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5943 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 88, + "e": 5948 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 89, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 18, + "e": 5968, + "s": 1 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 80, + "e": 5987 + } + ], + [ + -22, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5989, + "g": 1 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6009, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 77, + "e": 6025 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 87, + "e": 6028, + "g": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 64, + "e": 6040 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 19, + "e": 6048, + "s": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 6061 + } + ], + [ + -14, + { + "n": 7.5, + "q": null, + "m": 81, + "e": 6068, + "g": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 77, + "e": 6079 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 81, + "e": 6092 + } + ], + [ + -11, + { + "n": 7.5, + "q": null, + "m": 74, + "e": 6099, + "g": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 83, + "e": 6109 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 83, + "e": 6126, + "g": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6129, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 20, + "e": 6143, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6149, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6158, + "s": 1 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 32, + "e": 6168, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6197 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6206 + } + ] + ], + "fo": [ + [ + 5968, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3785, + { + "n": "Larsonneur", + "f": "Gautier", + "fp": "G", + "r": 13, + "c": 75, + "s": { + "Os": 178.5, + "On": 35, + "Oa": 5.1, + "Od": 1.39, + "Om": 3150, + "Oam": 90, + "pg": 35 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5929 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -23, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6180 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6197 + } + ], + [ + -1, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6206 + } + ] + ], + "fo": [ + [ + 5859, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3795, + { + "n": "Belkebla", + "f": "Haris", + "fp": "MD", + "r": 10, + "c": 75, + "s": { + "Os": 175.5, + "On": 35, + "Oa": 5.01, + "Od": 0.84, + "Om": 2733, + "Oam": 78, + "Odm": 22, + "pm": 35 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 78, + "e": 5829 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 45, + "e": 5859 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5901 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 13, + "e": 5922, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 17, + "e": 5929, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 81, + "e": 5943 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 72, + "e": 5968 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 5987 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 82, + "e": 6009 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6025 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 87, + "e": 6158 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6168 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6180 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 85, + "e": 6197 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6206 + } + ] + ], + "fo": [ + [ + 5901, + [ + { + "t": "R" + } + ] + ], + [ + 5844, + [ + { + "t": "Y" + } + ] + ], + [ + 5876, + [ + { + "t": "Y" + } + ] + ], + [ + 5948, + [ + { + "t": "Y" + } + ] + ], + [ + 5961, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3801, + { + "n": "Chardonnet", + "f": "Brendan", + "fp": "DC", + "r": 12, + "c": 75, + "s": { + "Og": 3, + "Os": 169, + "On": 33, + "Oa": 5.12, + "Od": 0.96, + "Om": 2714, + "Oam": 82, + "Odm": 24, + "pd": 33, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5888, + "g": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5929 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 90, + "e": 5948, + "g": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 7, + "e": 6040, + "s": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6048, + "g": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 3, + "e": 6168, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 17, + "e": 6180, + "s": 1 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 77, + "e": 6206 + } + ] + ], + "fo": [ + [ + 5844, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3810, + { + "n": "Bain", + "f": "Denys", + "fp": "DC", + "r": 1, + "c": 75 + } + ], + [ + 3819, + { + "n": "Faussurier", + "f": "Julien", + "fp": "DL", + "r": 5, + "c": 75, + "s": { + "Os": 85.5, + "On": 17, + "Oa": 5.03, + "Od": 1.08, + "Om": 949, + "Oam": 56, + "Odm": 39, + "pd": 17 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 9, + "e": 5901, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 81, + "e": 5929 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 9, + "e": 5943, + "s": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 5948, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 10, + "e": 5987, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 1, + "e": 5989, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 19, + "e": 6143, + "s": 1 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 87, + "e": 6168 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 6180, + "s": 1 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 11, + "e": 6197, + "s": 1 + } + ], + [ + -1, + { + "n": 3, + "q": null, + "m": 90, + "e": 6206 + } + ] + ] + } + ], + [ + 4924, + { + "n": "Brassier", + "f": "Lilian", + "fp": "DC", + "r": 9, + "c": 75, + "s": { + "Og": 1, + "Os": 56, + "On": 11, + "Oa": 5.09, + "Od": 0.97, + "Om": 963, + "Oam": 88, + "Odm": 8, + "pd": 11, + "Omsn": 4 + }, + "p": [ + [ + -35, + { + "n": 3.5, + "q": null, + "m": 63, + "e": 5859 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5908 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5922, + "g": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5929 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6099 + } + ] + ], + "fo": [ + [ + 5901, + [ + { + "t": "Y" + } + ] + ], + [ + 5929, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5002, + { + "n": "Duverne", + "f": "Jean-Kevin", + "fp": "DC", + "r": 9, + "c": 75, + "s": { + "Og": 1, + "Os": 120, + "On": 27, + "Oa": 4.44, + "Od": 1.11, + "Om": 2025, + "Oam": 75, + "Odm": 30, + "pd": 27, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 5859, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 10, + "e": 5876, + "s": 1 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 5901 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 2, + "e": 6009, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6028, + "s": 1 + } + ], + [ + -17, + { + "n": 3, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 19, + "e": 6048, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6079 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 90, + "e": 6099, + "g": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6158 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6180 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6197 + } + ], + [ + -1, + { + "n": 2, + "q": null, + "m": 90, + "e": 6206 + } + ] + ] + } + ], + [ + 6008, + { + "n": "M'Bock", + "f": "Hianga'a", + "fp": "MD", + "r": 5, + "c": 75, + "s": { + "Os": 58, + "On": 12, + "Oa": 4.83, + "Od": 0.44, + "Om": 454, + "Oam": 38, + "Odm": 37, + "pm": 12 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5829, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5876, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6040 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 9, + "e": 6068, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 1, + "e": 6099, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 89, + "e": 6126 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6168, + "s": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 45, + "e": 6180, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6197, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 11, + "e": 6206, + "s": 1 + } + ] + ] + } + ], + [ + 6746, + { + "n": "Coudert", + "f": "Grégoire", + "fp": "G", + "r": 7, + "c": 75, + "s": { + "Os": 8, + "On": 2, + "Oa": 4, + "Od": 1.41, + "Om": 180, + "Oam": 90, + "pg": 2 + }, + "p": [ + [ + -36, + { + "n": 3, + "q": null, + "m": 90, + "e": 6237 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 6282 + } + ] + ] + } + ], + [ + 6856, + { + "n": "Le Douaron", + "f": "Jeremy", + "fp": "A", + "r": 9, + "c": 75, + "s": { + "Og": 1, + "Os": 129, + "On": 28, + "Oa": 4.61, + "Od": 0.61, + "Om": 804, + "Oam": 29, + "Odm": 28, + "pm": 7, + "pa": 21, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5829, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 5853, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 27, + "e": 5859, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5876, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 86, + "e": 5879, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 15, + "e": 5888, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5901, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 63, + "e": 5922 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5929, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5948, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5961, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5968, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 10, + "e": 5987, + "g": 1, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5989, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6025, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 13, + "e": 6079, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6092, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 17, + "e": 6099, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6109, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6126, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 64, + "e": 6129 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 45, + "e": 6143, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 88, + "e": 6149 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 62, + "e": 6158 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 58, + "e": 6168 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6180 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6197, + "s": 1 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 79, + "e": 6206 + } + ] + ] + } + ], + [ + 6858, + { + "n": "Said", + "f": "Rafiki", + "fp": "A", + "r": 1, + "c": 75 + } + ], + [ + 6920, + { + "n": "Benvindo", + "f": "Killian", + "fp": "MO", + "r": 1, + "c": 75 + } + ], + [ + 8476, + { + "n": "Uronen", + "f": "Jere", + "fp": "DL", + "r": 7, + "c": 75 + } + ], + [ + 8924, + { + "n": "Bizot", + "f": "Marco", + "fp": "G", + "r": 8, + "c": 75 + } + ], + [ + 1206, + { + "n": "Tell", + "f": "Jordan", + "fp": "A", + "r": 8, + "c": 92, + "s": { + "Og": 2, + "Os": 149, + "On": 33, + "Oa": 4.52, + "Od": 0.62, + "Om": 821, + "Oam": 25, + "Odm": 25, + "pm": 3, + "pa": 30, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6208, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6222, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6231, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6241, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6256, + "s": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 19, + "e": 6261, + "g": 1, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6300, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6275, + "s": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 62, + "e": 6281 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6293, + "s": 1 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 23, + "e": 6311, + "g": 1, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 30, + "e": 6321, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 16, + "e": 6328, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 81, + "e": 6341 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6355, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 72, + "e": 6361 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 6375, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6380, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6392, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6409, + "s": 1 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 8, + "e": 6408, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 71, + "e": 6422 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6430, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6442, + "s": 1 + } + ], + [ + -13, + { + "n": 2.5, + "q": null, + "m": 42, + "e": 6464 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 14, + "e": 6470, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 7, + "e": 6478, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6491, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6506, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 26, + "e": 6511, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6520, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 71, + "e": 6571 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 80, + "e": 6583 + } + ] + ] + } + ], + [ + 3521, + { + "n": "Trichard", + "f": "Driss", + "fp": "DL", + "r": 9, + "c": 92, + "s": { + "Os": 65, + "On": 13, + "Oa": 5, + "Od": 0.61, + "Om": 590, + "Oam": 45, + "Odm": 39, + "pd": 11, + "pm": 2 + }, + "p": [ + [ + -14, + { + "n": 6, + "q": null, + "m": 71, + "e": 6451 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 59, + "e": 6208 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6222 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6231, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 3, + "e": 6261, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 13, + "e": 6311, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 13, + "e": 6392, + "s": 1 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6430 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6464 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6470 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 1, + "e": 6506, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 1, + "e": 6520, + "s": 1 + } + ] + ] + } + ], + [ + 4832, + { + "n": "Anoff", + "f": "Blankson", + "fp": "MO", + "r": 6, + "c": 92 + } + ], + [ + 4833, + { + "n": "Abdul Samed", + "f": "Salis", + "fp": "MD", + "r": 4, + "c": 92, + "s": { + "Os": 30.5, + "On": 6, + "Oa": 5.08, + "Od": 0.2, + "Om": 118, + "Oam": 20, + "Odm": 15, + "pm": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 31, + "e": 6208, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 15, + "e": 6222, + "s": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6261, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 10, + "e": 6341, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 7, + "e": 6422, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 10, + "e": 6583, + "s": 1 + } + ] + ], + "fo": [ + [ + 6261, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4861, + { + "n": "Teixeira", + "f": "Bryan Silva", + "fp": "A", + "r": 3, + "c": 92 + } + ], + [ + 4869, + { + "n": "Allevinah", + "f": "Jim", + "fp": "A", + "r": 8, + "c": 92, + "s": { + "Og": 12, + "Os": 221, + "On": 38, + "Oa": 5.82, + "Od": 1.16, + "Om": 2575, + "Oam": 68, + "Odm": 21, + "pm": 31, + "pa": 7, + "Omsn": 6 + }, + "p": [ + [ + -6, + { + "n": 7, + "q": null, + "m": 77, + "e": 6531, + "g": 1, + "s": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6546 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 69, + "e": 6550 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 6560 + } + ], + [ + -38, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 6208 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 62, + "e": 6222, + "g": 1 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 75, + "e": 6231, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 69, + "e": 6241 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6256 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 71, + "e": 6261 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 86, + "e": 6293 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 29, + "e": 6300, + "s": 1 + } + ], + [ + -28, + { + "n": 8, + "q": null, + "m": 67, + "e": 6311, + "g": 1 + } + ], + [ + -27, + { + "n": 7.5, + "q": null, + "m": 60, + "e": 6321, + "g": 1 + } + ], + [ + -26, + { + "n": 7.5, + "q": null, + "m": 75, + "e": 6328, + "g": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 29, + "e": 6341, + "s": 1 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 79, + "e": 6355 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6361, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 79, + "e": 6375, + "g": 1 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6380 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 77, + "e": 6392, + "g": 1 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 80, + "e": 6409 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 82, + "e": 6408 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 56, + "e": 6422, + "g": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6430, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 64, + "e": 6442 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 30, + "e": 6451, + "g": 1, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6464 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 22, + "e": 6470, + "g": 1, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 6478 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 85, + "e": 6491 + } + ], + [ + -9, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 6506 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 77, + "e": 6520, + "g": 1 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 67, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6275, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4904, + { + "n": "Djoco", + "f": "Ouparine", + "fp": "G", + "r": 3, + "c": 92, + "s": { + "Os": 18.5, + "On": 3, + "Oa": 6.17, + "Od": 0.76, + "Om": 227, + "Oam": 76, + "Odm": 25, + "pg": 3 + }, + "p": [ + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6506 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 47, + "e": 6550, + "s": 1 + } + ] + ] + } + ], + [ + 4905, + { + "n": "Magnin", + "f": "Yohann", + "fp": "MD", + "r": 6, + "c": 92, + "s": { + "Og": 2, + "Os": 169.5, + "On": 30, + "Oa": 5.65, + "Od": 0.95, + "Om": 2392, + "Oam": 80, + "Odm": 20, + "pm": 30, + "Omsn": 6.5 + }, + "p": [ + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 6281 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 76, + "e": 6293 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 61, + "e": 6300 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 66, + "e": 6311 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 6321 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 13, + "e": 6328, + "s": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 18, + "e": 6361, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 73, + "e": 6375 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6380 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 90, + "e": 6392 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 79, + "e": 6409 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6408 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6430 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6451 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6470 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6478 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 76, + "e": 6506 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 81, + "e": 6511 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6520 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6531, + "g": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6546 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6550 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 85, + "e": 6571, + "g": 1 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6300, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 5019, + { + "n": "Mendy", + "f": "Arial", + "fp": "DL", + "r": 6, + "c": 92 + } + ], + [ + 5035, + { + "n": "Desmas", + "f": "Arthur", + "fp": "G", + "r": 12, + "c": 92, + "s": { + "Os": 200.5, + "On": 36, + "Oa": 5.57, + "Od": 0.87, + "Om": 3192, + "Oam": 89, + "Odm": 8, + "pg": 36 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6208 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6222 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6231 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 6261 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 6300 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6311 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 6321 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6380 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6392 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6408 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6430 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6451 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6464 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6470 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6478 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6520 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6531 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 42, + "e": 6550 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6583 + } + ] + ] + } + ], + [ + 5041, + { + "n": "N'Simba", + "f": "Vital", + "fp": "DL", + "r": 8, + "c": 92, + "s": { + "Os": 159.5, + "On": 30, + "Oa": 5.32, + "Od": 1.05, + "Om": 2598, + "Oam": 87, + "Odm": 15, + "pd": 30 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 6208 + } + ], + [ + -37, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6222 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 6231 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 6261 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6300 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 90, + "e": 6311 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 6321 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6355 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 7, + "e": 6361, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6380 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 77, + "e": 6392 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6478 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6506 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 89, + "e": 6520 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6531 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6550 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6328, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5066, + { + "n": "Albert", + "f": "Josue", + "fp": "DC", + "r": 5, + "c": 92, + "s": { + "Os": 25, + "On": 5, + "Oa": 5, + "Od": 0.35, + "Om": 120, + "Oam": 24, + "Odm": 38, + "pd": 5 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6222, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6321 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 19, + "e": 6451, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 1, + "e": 6520, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6546, + "s": 1 + } + ] + ] + } + ], + [ + 5085, + { + "n": "Zedadka", + "f": "Akim", + "fp": "DL", + "r": 4, + "c": 92, + "s": { + "Og": 1, + "Oao": 1, + "Os": 183.5, + "On": 35, + "Oa": 5.24, + "Od": 0.77, + "Om": 2867, + "Oam": 82, + "Odm": 18, + "pd": 35, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 86, + "e": 6208 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 62, + "e": 6222 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 6231 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6275, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 77, + "e": 6311 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 61, + "e": 6321 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 83, + "e": 6361, + "g": 1 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 79, + "e": 6375 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6380 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6392 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6408 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6430 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 83, + "e": 6451 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6464 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6470 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6478, + "a": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6506 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 6511, + "s": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 86, + "e": 6531 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6550 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6281, + [ + { + "t": "Y" + } + ] + ], + [ + 6321, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5103, + { + "n": "Hountondji", + "f": "Cédric", + "fp": "DC", + "r": 8, + "c": 92, + "s": { + "Og": 1, + "Os": 204.5, + "On": 37, + "Oa": 5.53, + "Od": 0.83, + "Om": 3321, + "Oam": 90, + "Odm": 1, + "pd": 37, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6208 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6222 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 6231 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6261 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 6300 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6311 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6380 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6392 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6408, + "g": 1 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6430 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6451 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6464 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6470 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6478 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6506 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6520 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6531 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6546 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6550 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6256, + [ + { + "t": "Y" + } + ] + ], + [ + 6275, + [ + { + "t": "Y" + } + ] + ], + [ + 6341, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5122, + { + "n": "Iglesias", + "f": "Jonathan", + "fp": "MO", + "r": 9, + "c": 92, + "s": { + "Og": 2, + "Os": 191.5, + "On": 36, + "Oa": 5.32, + "Od": 0.74, + "Om": 1569, + "Oam": 44, + "Odm": 34, + "pm": 36, + "Omsn": 6.5 + }, + "p": [ + [ + -36, + { + "n": 4.5, + "q": null, + "m": 42, + "e": 6231 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6241 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6261 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 8, + "e": 6275, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 8, + "e": 6281, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 14, + "e": 6293, + "s": 1 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 85, + "e": 6300 + } + ], + [ + -28, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6311, + "g": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 20, + "e": 6321, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 6355 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 17, + "e": 6375, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6380, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 13, + "e": 6392, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 23, + "e": 6409, + "s": 1 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 12, + "e": 6408, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 19, + "e": 6422, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 16, + "e": 6430, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 64, + "e": 6442 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 6451, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6464 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6470, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 13, + "e": 6478, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 12, + "e": 6491, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 62, + "e": 6506 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 64, + "e": 6511 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 89, + "e": 6520 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 85, + "e": 6531 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 27, + "e": 6546, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6550, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 21, + "e": 6560, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 12, + "e": 6571, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 10, + "e": 6583, + "s": 1 + } + ] + ], + "fo": [ + [ + 6231, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 5129, + { + "n": "Berthomier", + "f": "Jason", + "fp": "MO", + "r": 8, + "c": 92, + "s": { + "Og": 6, + "Os": 215.5, + "On": 37, + "Oa": 5.82, + "Od": 1.08, + "Om": 2383, + "Oam": 64, + "Odm": 25, + "pm": 37, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 85, + "e": 6208 + } + ], + [ + -37, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6222 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6231 + } + ], + [ + -35, + { + "n": 8, + "q": null, + "m": 90, + "e": 6241, + "g": 2 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 83, + "e": 6256 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6261 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 82, + "e": 6275, + "g": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6281 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6293 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 14, + "e": 6300, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 24, + "e": 6311, + "s": 1 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 70, + "e": 6321 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 77, + "e": 6328 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6355, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 72, + "e": 6361 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6375 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6380 + } + ], + [ + -20, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 6392 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6409 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 78, + "e": 6408 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 71, + "e": 6422 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 74, + "e": 6430, + "g": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 26, + "e": 6442, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6451 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 59, + "e": 6464 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 22, + "e": 6470, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 66, + "e": 6478 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6491 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 14, + "e": 6506, + "s": 1 + } + ], + [ + -7, + { + "n": 8, + "q": null, + "m": 85, + "e": 6520, + "g": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 5, + "e": 6531, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6546 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 68, + "e": 6550, + "g": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 69, + "e": 6560 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6571 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 70, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6293, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5140, + { + "n": "Phojo", + "f": "Jerome", + "fp": "DL", + "r": 1, + "c": 92 + } + ], + [ + 5180, + { + "n": "Ogier", + "f": "Florent", + "fp": "DC", + "r": 11, + "c": 92, + "s": { + "Oao": 1, + "Os": 205, + "On": 38, + "Oa": 5.39, + "Od": 0.9, + "Om": 3420, + "Oam": 90, + "pd": 38 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 6208 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6222 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6231 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6261 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 6300 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 6311 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 6321 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 6341 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6380 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6392 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6408 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6430, + "a": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6451 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6464 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6470 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6478 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6506 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6520 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6531 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6550 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6583 + } + ] + ], + "fo": [ + [ + 6231, + [ + { + "t": "Y" + } + ] + ], + [ + 6275, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5198, + { + "n": "Gastien", + "f": "Johan", + "fp": "MD", + "r": 9, + "c": 92, + "s": { + "Og": 1, + "Os": 206, + "On": 35, + "Oa": 5.89, + "Od": 0.94, + "Om": 3096, + "Oam": 88, + "Odm": 4, + "pm": 35, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6208 + } + ], + [ + -37, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6222 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6231 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6256 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6275 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 90, + "e": 6300, + "g": 1 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 77, + "e": 6311 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 6321 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6328 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6380 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6392 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6408 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6430 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6442 + } + ], + [ + -14, + { + "n": 8, + "q": null, + "m": 90, + "e": 6451 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6464 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 87, + "e": 6470 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6478 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 89, + "e": 6506 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6531 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 82, + "e": 6546 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 83, + "e": 6550 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6571 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6583 + } + ] + ] + } + ], + [ + 6230, + { + "n": "Jaby", + "f": "Nael", + "fp": "MO", + "r": 2, + "c": 92 + } + ], + [ + 6735, + { + "n": "Margueron", + "f": "Lucas", + "fp": "G", + "r": 7, + "c": 92 + } + ], + [ + 6739, + { + "n": "Boyer", + "f": "Julien", + "fp": "DL", + "r": 6, + "c": 92 + } + ], + [ + 6744, + { + "n": "Bayo", + "f": "Mohamed", + "fp": "A", + "r": 17, + "c": 92, + "s": { + "Og": 22, + "Os": 211.5, + "On": 38, + "Oa": 5.57, + "Od": 1.53, + "Om": 3082, + "Oam": 81, + "Odm": 21, + "pa": 38, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 6208, + "g": 1 + } + ], + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6222, + "g": 1 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 6231, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 81, + "e": 6241 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 6256, + "g": 1 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 88, + "e": 6261 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 86, + "e": 6275 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 6281 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 90, + "e": 6293 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 85, + "e": 6300, + "g": 1 + } + ], + [ + -28, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6311, + "g": 1 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 70, + "e": 6321, + "g": 1 + } + ], + [ + -26, + { + "n": 8, + "q": null, + "m": 90, + "e": 6328, + "g": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 6341, + "g": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6355 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 6361, + "g": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 89, + "e": 6380 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 66, + "e": 6392, + "g": 3 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6408, + "g": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 19, + "e": 6422, + "s": 1 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 89, + "e": 6430 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 86, + "e": 6442 + } + ], + [ + -14, + { + "n": 8, + "q": null, + "m": 90, + "e": 6451, + "g": 2 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 31, + "e": 6464, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6470 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6478, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6491 + } + ], + [ + -9, + { + "n": 9, + "q": null, + "m": 90, + "e": 6506, + "g": 3 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6520, + "g": 1 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6531, + "g": 1 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6550 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6560 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 19, + "e": 6571, + "s": 1 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 23, + "e": 6583, + "s": 1 + } + ] + ], + "fo": [ + [ + 6341, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6825, + { + "n": "Seidu", + "f": "Alidu", + "fp": "DC", + "r": 4, + "c": 92, + "s": { + "Os": 115.5, + "On": 22, + "Oa": 5.25, + "Od": 0.72, + "Om": 847, + "Oam": 39, + "Odm": 38, + "pd": 22 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 4, + "e": 6208, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 28, + "e": 6222, + "s": 1 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 44, + "e": 6261 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6275 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6300 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 6321, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 5, + "e": 6355, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 89, + "e": 6361 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 11, + "e": 6375, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 6380, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6409 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6408 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6422 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 7, + "e": 6451, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 9, + "e": 6464, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 3, + "e": 6470, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 1, + "e": 6506, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 64, + "e": 6511 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6520 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 4, + "e": 6531, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6546, + "s": 1 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 7, + "e": 6550, + "s": 1 + } + ] + ], + "fo": [ + [ + 6261, + [ + { + "t": "R" + } + ] + ] + ] + } + ], + [ + 6915, + { + "n": "Dossou", + "f": "Jodel", + "fp": "MO", + "r": 11, + "c": 92, + "s": { + "Og": 12, + "Os": 206, + "On": 36, + "Oa": 5.72, + "Od": 0.96, + "Om": 2230, + "Oam": 62, + "Odm": 25, + "pm": 36, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 73, + "e": 6208 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 75, + "e": 6222, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 74, + "e": 6231 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 69, + "e": 6241 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6256 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 19, + "e": 6261, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6275 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6281, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 6293 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 76, + "e": 6300, + "g": 1 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 37, + "e": 6311, + "g": 1 + } + ], + [ + -27, + { + "n": 7.5, + "q": null, + "m": 60, + "e": 6321, + "g": 2 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 74, + "e": 6328 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 61, + "e": 6341 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 85, + "e": 6355 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 80, + "e": 6380, + "g": 1 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 66, + "e": 6392, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 73, + "e": 6409 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 78, + "e": 6408, + "g": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 83, + "e": 6422 + } + ], + [ + -16, + { + "n": 8, + "q": null, + "m": 69, + "e": 6430, + "g": 2 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6442 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6451 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6464 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 76, + "e": 6470, + "g": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6478, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 67, + "e": 6491 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 75, + "e": 6506 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6511 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 14, + "e": 6520, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 17, + "e": 6531, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 15, + "e": 6550, + "s": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 21, + "e": 6560, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 11, + "e": 6571, + "s": 1 + } + ] + ], + "fo": [ + [ + 6311, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 7523, + { + "n": "Gnalega", + "f": "Fred", + "fp": "MD", + "r": 2, + "c": 92 + } + ], + [ + 8463, + { + "n": "Rashani", + "f": "Elbasan", + "fp": "MO", + "r": 8, + "c": 92 + } + ], + [ + 81, + { + "n": "Cahuzac", + "f": "Yannick", + "fp": "MD", + "r": 12, + "c": 104, + "s": { + "Og": 1, + "Oao": 1, + "Os": 160, + "On": 30, + "Oa": 5.33, + "Od": 0.79, + "Om": 2257, + "Oam": 75, + "Odm": 28, + "pm": 30, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 5836 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 5867 + } + ], + [ + -34, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5869 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5920, + "g": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5949, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 1, + "e": 5994, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 80, + "e": 6020 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 6052 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 18, + "e": 6062, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6130 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6100 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 60, + "e": 6140 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 71, + "e": 6182 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 6190, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6205 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5879, + "a": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 64, + "e": 6040 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6169 + } + ] + ], + "fo": [ + [ + 5836, + [ + { + "t": "Y" + } + ] + ], + [ + 5969, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 92, + { + "n": "Leca", + "f": "Jean-Louis", + "fp": "G", + "r": 16, + "c": 104, + "s": { + "Os": 194.5, + "On": 37, + "Oa": 5.26, + "Od": 1.1, + "Om": 3315, + "Oam": 90, + "Odm": 2, + "pg": 37 + }, + "p": [ + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 3, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 80, + "e": 5869 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5949 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 85, + "e": 6040 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6100 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5869, + [ + { + "t": "I" + } + ] + ], + [ + 5916, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 165, + { + "n": "Saïd", + "f": "Wesley", + "fp": "A", + "r": 9, + "c": 104 + } + ], + [ + 302, + { + "n": "Jean", + "f": "Corentin", + "fp": "A", + "r": 9, + "c": 104, + "s": { + "Og": 1, + "Os": 107, + "On": 23, + "Oa": 4.65, + "Od": 0.82, + "Om": 569, + "Oam": 25, + "Odm": 20, + "pa": 23, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5836, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 30, + "e": 5838, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5867, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 5869 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 5879 + } + ], + [ + -32, + { + "n": 7.5, + "q": null, + "m": 66, + "e": 5889, + "g": 1 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 1, + "e": 5916, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 14, + "e": 5938, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5966, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5980, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6020, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6052, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6062, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6088, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 66, + "e": 6100 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 8, + "e": 6110, + "s": 1 + } + ], + [ + -7, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6140 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 7, + "e": 6150, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 19, + "e": 6165, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6169, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 57, + "e": 6182 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6190, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 29, + "e": 6205, + "s": 1 + } + ] + ], + "fo": [ + [ + 5916, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 481, + { + "n": "Michelin", + "f": "Clement", + "fp": "DL", + "r": 9, + "c": 104, + "s": { + "Os": 132, + "On": 26, + "Oa": 5.08, + "Od": 0.84, + "Om": 1146, + "Oam": 44, + "Odm": 37, + "pd": 18, + "pm": 8 + }, + "p": [ + [ + -36, + { + "n": 3.5, + "q": null, + "m": 35, + "e": 5849 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5867 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5900, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 10, + "e": 5916, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 6, + "e": 5920, + "s": 1 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 5, + "e": 5936, + "s": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 6, + "e": 5938, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 17, + "e": 5949, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 3, + "e": 5966, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 70, + "e": 5969 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 45, + "e": 5980 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 74, + "e": 6000 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6020 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 7, + "e": 6031, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -15, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 13, + "e": 6069, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 11, + "e": 6087, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 2, + "e": 6100, + "s": 1 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 3.5, + "q": null, + "m": 4, + "e": 6140, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 33, + "e": 6182, + "s": 1 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5849, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5900, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1208, + { + "n": "Steven Fortes", + "f": "", + "fp": "DC", + "r": 10, + "c": 104, + "s": { + "Oao": 1, + "Os": 88, + "On": 18, + "Oa": 4.89, + "Od": 0.98, + "Om": 1439, + "Oam": 80, + "Odm": 19, + "pd": 18 + }, + "p": [ + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 81, + "e": 5879 + } + ], + [ + -32, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 66, + "e": 5900 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5949 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 5980 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6031, + "a": 1 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 19, + "e": 6062, + "s": 1 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 83, + "e": 6069 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6110 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 45, + "e": 6165, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6169 + } + ] + ], + "fo": [ + [ + 5849, + [ + { + "t": "Y" + } + ] + ], + [ + 5879, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5900, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1272, + { + "n": "Ganago", + "f": "Ignatius", + "fp": "A", + "r": 15, + "c": 104, + "s": { + "Og": 7, + "Os": 124.5, + "On": 24, + "Oa": 5.19, + "Od": 1.3, + "Om": 1309, + "Oam": 55, + "Odm": 28, + "pa": 24, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 72, + "e": 5836 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 72, + "e": 5849 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 69, + "e": 5867, + "g": 1 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 67, + "e": 5869, + "g": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 32, + "e": 5879, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 72, + "e": 6015 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6020, + "s": 1 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 78, + "e": 6031 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 5, + "e": 6040, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 21, + "e": 6069, + "s": 1 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 18, + "e": 6087, + "g": 1, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 27, + "e": 6088, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 24, + "e": 6100, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 66, + "e": 6130 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 15, + "e": 6150 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 54, + "e": 6165, + "g": 1 + } + ], + [ + -4, + { + "n": 8, + "q": null, + "m": 75, + "e": 6169, + "g": 1 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 33, + "e": 6182, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 71, + "e": 6190, + "g": 1 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 61, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5849, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 1436, + { + "n": "Kakuta", + "f": "Gaël", + "fp": "MO", + "r": 22, + "c": 104, + "s": { + "Og": 11, + "Os": 190.5, + "On": 35, + "Oa": 5.44, + "Od": 1.11, + "Om": 2412, + "Oam": 69, + "Odm": 23, + "pm": 6, + "pa": 29, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 4, + "e": 5836, + "s": 1 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 80, + "e": 5838 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 72, + "e": 5849 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 21, + "e": 5867, + "s": 1 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 83, + "e": 5879, + "g": 1 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 85, + "e": 5889, + "g": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5916 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 5920, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 76, + "e": 5938 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 5949 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 87, + "e": 5966 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 5980 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 72, + "e": 5994, + "g": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 59, + "e": 6000 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6015, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 17, + "e": 6040, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 74, + "e": 6052 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 57, + "e": 6062, + "g": 1 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6069, + "g": 1 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 71, + "e": 6087 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 75, + "e": 6088 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6100, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6110 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6121 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 66, + "e": 6130, + "g": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 71, + "e": 6140 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 70, + "e": 6150, + "g": 1 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 81, + "e": 6165 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 87, + "e": 6169, + "g": 1 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 71, + "e": 6182, + "g": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6190 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 68, + "e": 6205, + "g": 1 + } + ] + ], + "fo": [ + [ + 5838, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1518, + { + "n": "Massadio Haidara", + "f": "", + "fp": "DL", + "r": 13, + "c": 104, + "s": { + "Og": 2, + "Os": 132.5, + "On": 25, + "Oa": 5.3, + "Od": 1.02, + "Om": 2135, + "Oam": 85, + "Odm": 14, + "pd": 11, + "pm": 14, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 90, + "e": 5869, + "g": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5916, + "g": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 84, + "e": 5938 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 89, + "e": 5949 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 5966 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6040, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 3, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 62, + "e": 6088 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6150 + } + ] + ], + "fo": [ + [ + 5879, + [ + { + "t": "Y" + } + ] + ], + [ + 5920, + [ + { + "t": "Y" + } + ] + ], + [ + 5949, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2687, + { + "n": "Keita", + "f": "Abdoulaye Jules", + "fp": "A", + "r": 8, + "c": 104 + } + ], + [ + 2710, + { + "n": "Gradit", + "f": "Jonathan", + "fp": "DL", + "r": 11, + "c": 104, + "s": { + "Os": 163, + "On": 33, + "Oa": 4.94, + "Od": 0.97, + "Om": 2828, + "Oam": 86, + "Odm": 11, + "pd": 33 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 90, + "e": 5869 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 85, + "e": 5938 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5949 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6000 + } + ], + [ + -20, + { + "n": 3.5, + "q": null, + "m": 79, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6062 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6100 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 57, + "e": 6140 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 45, + "e": 6165 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5920, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4516, + { + "n": "Fofana", + "f": "Seko", + "fp": "MD", + "r": 17, + "c": 104, + "s": { + "Og": 3, + "Os": 202.5, + "On": 37, + "Oa": 5.47, + "Od": 0.84, + "Om": 2804, + "Oam": 76, + "Odm": 25, + "pm": 35, + "pa": 2, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 5457, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 70, + "e": 5466 + } + ], + [ + -35, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5487, + "g": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5494 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5507 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 37, + "e": 5517, + "s": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 89, + "e": 5525 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 85, + "e": 5849 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5869 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5916, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5949, + "g": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5994 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 6000, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6031 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 34, + "e": 6052, + "s": 1 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 72, + "e": 6062 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 75, + "e": 6088 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 72, + "e": 6100 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 6110, + "s": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6130, + "s": 1 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 6169, + "s": 1 + } + ] + ], + "fo": [ + [ + 5920, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4875, + { + "n": "Wooh", + "f": "Christopher Maurice", + "fp": "DC", + "r": 6, + "c": 104, + "s": { + "Og": 2, + "Os": 61, + "On": 13, + "Oa": 4.69, + "Od": 1.05, + "Om": 669, + "Oam": 51, + "Odm": 41, + "pd": 13, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6211, + "g": 2 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6224 + } + ], + [ + -36, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6233 + } + ], + [ + -35, + { + "n": 3, + "q": null, + "m": 72, + "e": 6240 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6254 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 6259 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 6272 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6286, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 9, + "e": 6306, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 1, + "e": 6313, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 21, + "e": 6320, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6342, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 1, + "e": 6293, + "s": 1 + } + ] + ], + "fo": [ + [ + 6240, + [ + { + "t": "Y" + } + ] + ], + [ + 6342, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4944, + { + "n": "Doucouré", + "f": "Cheick Oumar", + "fp": "MD", + "r": 14, + "c": 104, + "s": { + "Og": 2, + "Os": 178.5, + "On": 33, + "Oa": 5.41, + "Od": 0.84, + "Om": 2632, + "Oam": 80, + "Odm": 21, + "pm": 33, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5838 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 5849 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 76, + "e": 5867 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 89, + "e": 5900 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5949 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 8, + "q": null, + "m": 90, + "e": 5994, + "g": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6000 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 17, + "e": 6020, + "s": 1 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6031, + "g": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 26, + "e": 6040, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 74, + "e": 6052 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 79, + "e": 6062 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 18, + "e": 6100, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 83, + "e": 6150 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 6169 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 83, + "e": 6190 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "I" + } + ] + ], + [ + 5900, + [ + { + "t": "I" + } + ] + ], + [ + 5916, + [ + { + "t": "Y" + } + ] + ], + [ + 5949, + [ + { + "t": "Y" + } + ] + ], + [ + 5969, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5030, + { + "n": "Banza", + "f": "Simon", + "fp": "A", + "r": 8, + "c": 104, + "s": { + "Og": 5, + "Os": 162, + "On": 34, + "Oa": 4.76, + "Od": 0.91, + "Om": 1363, + "Oam": 40, + "Odm": 31, + "pa": 34, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5836, + "s": 1 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 60, + "e": 5838 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 5867, + "s": 1 + } + ], + [ + -33, + { + "n": 2.5, + "q": null, + "m": 30, + "e": 5879, + "s": 1 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 13, + "e": 5889, + "g": 1, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5900, + "s": 1 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 72, + "e": 5916 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 20, + "e": 5920, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5936, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 5938 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 28, + "e": 5949, + "g": 1, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 5966 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 20, + "e": 5969, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 5980 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 5994 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 31, + "e": 6000, + "s": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 18, + "e": 6015, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 10, + "e": 6020, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6031, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6040 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6052, + "s": 1 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 6062, + "g": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6069, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6088, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6100, + "s": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 73, + "e": 6110, + "g": 1 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 78, + "e": 6121, + "g": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 88, + "e": 6130 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 19, + "e": 6140, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 75, + "e": 6150, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 36, + "e": 6165, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6169, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 65, + "e": 6190 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6205, + "s": 1 + } + ] + ], + "fo": [ + [ + 5879, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5936, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5061, + { + "n": "Sotoca", + "f": "Florian", + "fp": "A", + "r": 14, + "c": 104, + "s": { + "Og": 8, + "Os": 167, + "On": 33, + "Oa": 5.06, + "Od": 1.13, + "Om": 2421, + "Oam": 73, + "Odm": 24, + "pa": 33, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 73, + "e": 5836 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5849, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 5867, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 76, + "e": 5900 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 18, + "e": 5916, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 5920 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5936, + "g": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5949 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966, + "g": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5980, + "g": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 59, + "e": 6000 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 72, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 80, + "e": 6020 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 77, + "e": 6031, + "g": 1 + } + ], + [ + -17, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6040, + "g": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 6100 + } + ], + [ + -10, + { + "n": 8, + "q": null, + "m": 90, + "e": 6110, + "g": 2 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6130, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 81, + "e": 6140 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 83, + "e": 6150, + "g": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 6165 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 74, + "e": 6169 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 25, + "e": 6190, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "Y" + } + ] + ], + [ + 5900, + [ + { + "t": "Y" + } + ] + ], + [ + 5936, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5360, + { + "n": "Boli", + "f": "Charles", + "fp": "MO", + "r": 6, + "c": 104, + "s": { + "Og": 2, + "Os": 61.5, + "On": 11, + "Oa": 5.59, + "Od": 1.11, + "Om": 649, + "Oam": 59, + "Odm": 27, + "pm": 11, + "Omsn": 6 + }, + "p": [ + [ + -28, + { + "n": 5, + "q": null, + "m": 56, + "e": 6315 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 78, + "e": 6319 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 58, + "e": 6334 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 88, + "e": 6344 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6352 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 23, + "e": 6365, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 75, + "e": 6372, + "g": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6397, + "s": 1 + } + ], + [ + -21, + { + "n": 8.5, + "q": null, + "m": 85, + "e": 6385, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 56, + "e": 6406 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 13, + "e": 6415, + "s": 1 + } + ] + ], + "fo": [ + [ + 6315, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6580, + { + "n": "David Da Costa", + "f": "", + "fp": "MD", + "r": 8, + "c": 104, + "s": { + "Og": 1, + "Os": 42.5, + "On": 8, + "Oa": 5.31, + "Od": 0.84, + "Om": 152, + "Oam": 19, + "Odm": 20, + "pm": 8, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5838, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 5, + "e": 5849, + "s": 1 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 67, + "e": 5869 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 5889, + "s": 1 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 15, + "e": 5936, + "g": 1, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6031, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 17, + "e": 6110, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 7, + "e": 6150, + "s": 1 + } + ] + ] + } + ], + [ + 6708, + { + "n": "Medina", + "f": "Facundo", + "fp": "DL", + "r": 7, + "c": 104, + "s": { + "Og": 2, + "Oao": 1, + "Os": 116, + "On": 24, + "Oa": 4.83, + "Od": 1.02, + "Om": 2007, + "Oam": 84, + "Odm": 19, + "pd": 24, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 5836 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 5838 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 3, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5980, + "g": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -12, + { + "n": 3.5, + "q": null, + "m": 53, + "e": 6088 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6100 + } + ], + [ + -10, + { + "n": 3, + "q": null, + "m": 90, + "e": 6110, + "a": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 6, + "e": 6130, + "s": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6169 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6182, + "g": 1 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 3, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5836, + [ + { + "t": "Y" + } + ] + ], + [ + 5867, + [ + { + "t": "Y" + } + ] + ], + [ + 5916, + [ + { + "t": "Y" + } + ] + ], + [ + 5920, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6709, + { + "n": "Clauss", + "f": "Jonathan", + "fp": "MD", + "r": 14, + "c": 104, + "s": { + "Og": 3, + "Os": 174, + "On": 33, + "Oa": 5.27, + "Od": 1.05, + "Om": 2538, + "Oam": 77, + "Odm": 20, + "pd": 7, + "pm": 26, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 5849 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5869 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 5889 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 76, + "e": 5900, + "g": 1 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 80, + "e": 5916 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 5920, + "g": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 85, + "e": 5936 + } + ], + [ + -27, + { + "n": 7.5, + "q": null, + "m": 84, + "e": 5938, + "g": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 73, + "e": 5949 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 87, + "e": 5966 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 20, + "e": 5969, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 81, + "e": 5994 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 29, + "e": 6000, + "s": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 10, + "e": 6020, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 83, + "e": 6031 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 84, + "e": 6052 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6069 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 79, + "e": 6087 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 88, + "e": 6100 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 71, + "e": 6140 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 81, + "e": 6165 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 75, + "e": 6169 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 6182 + } + ] + ], + "fo": [ + [ + 5836, + [ + { + "t": "Y" + } + ] + ], + [ + 5879, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6711, + { + "n": "Fariñez", + "f": "Wuilker", + "fp": "G", + "r": 7, + "c": 104, + "s": { + "Os": 16, + "On": 3, + "Oa": 5.33, + "Od": 0.58, + "Om": 105, + "Oam": 35, + "Odm": 48, + "pg": 3 + }, + "p": [ + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 10, + "e": 5869, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 5, + "e": 6040, + "s": 1 + } + ] + ] + } + ], + [ + 6713, + { + "n": "Belon", + "f": "Valentin", + "fp": "G", + "r": 1, + "c": 104 + } + ], + [ + 6789, + { + "n": "Oudjani", + "f": "Adam", + "fp": "MO", + "r": 1, + "c": 104 + } + ], + [ + 6862, + { + "n": "Boura", + "f": "Ismael", + "fp": "DL", + "r": 9, + "c": 104, + "s": { + "Os": 93, + "On": 19, + "Oa": 4.89, + "Od": 0.54, + "Om": 811, + "Oam": 43, + "Odm": 32, + "pd": 12, + "pm": 7 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 66, + "e": 5838 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 23, + "e": 5849, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 62, + "e": 5869, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 18, + "e": 5879, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 24, + "e": 5900, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 6, + "e": 5938, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 72, + "e": 6031 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 65, + "e": 6040 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6062, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 13, + "e": 6069, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6110 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 9, + "e": 6140, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6165, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 15, + "e": 6169, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 85, + "e": 6182 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 6, + "e": 6190, + "s": 1 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 77, + "e": 6205 + } + ] + ] + } + ], + [ + 7047, + { + "n": "Machado", + "f": "Deiver", + "fp": "DL", + "r": 7, + "c": 104, + "s": { + "Og": 1, + "Os": 164.5, + "On": 31, + "Oa": 5.31, + "Od": 0.88, + "Om": 2741, + "Oam": 88, + "Odm": 5, + "pd": 15, + "pm": 16, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6210 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6245 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 6265 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 6277 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6294 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 88, + "e": 6305 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 6317 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 6326 + } + ], + [ + -25, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6346, + "g": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6356 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 90, + "e": 6358 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6387 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6396 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6410 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6427 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6435 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6440 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6455 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6463 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6479 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6496 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6507 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6516 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6518 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6545 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6565 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 6286 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 6375 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6415 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6550 + } + ] + ], + "fo": [ + [ + 6305, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7817, + { + "n": "Louveau", + "f": "Adrien", + "fp": "DC", + "r": 3, + "c": 104 + } + ], + [ + 7841, + { + "n": "Pandor", + "f": "Yannick", + "fp": "G", + "r": 1, + "c": 104 + } + ], + [ + 7842, + { + "n": "Varane", + "f": "Jonathan", + "fp": "MO", + "r": 1, + "c": 104 + } + ], + [ + 7843, + { + "n": "Kembo", + "f": "Yann", + "fp": "DC", + "r": 1, + "c": 104 + } + ], + [ + 101, + { + "n": "André", + "f": "Benjamin", + "fp": "MD", + "r": 18, + "c": 12, + "s": { + "Os": 197.5, + "On": 35, + "Oa": 5.64, + "Od": 0.78, + "Om": 2900, + "Oam": 83, + "Odm": 12, + "pm": 35 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 5840 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 61, + "e": 5871 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 5880 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 84, + "e": 5891 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 64, + "e": 5910 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5923 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5990 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6010 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 85, + "e": 6024 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6043 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 79, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6060 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 6081 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 86, + "e": 6096 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 88, + "e": 6135 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 74, + "e": 6156 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6161 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 86, + "e": 6181 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 89, + "e": 6201 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 65, + "e": 6140 + } + ] + ], + "fo": [ + [ + 5840, + [ + { + "t": "Y" + } + ] + ], + [ + 5871, + [ + { + "t": "Y" + } + ] + ], + [ + 5880, + [ + { + "t": "Y" + } + ] + ], + [ + 5906, + [ + { + "t": "Y" + } + ] + ], + [ + 5923, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 425, + { + "n": "Xeka", + "f": "", + "fp": "MD", + "r": 11, + "c": 12, + "s": { + "Og": 1, + "Os": 173, + "On": 33, + "Oa": 5.24, + "Od": 0.76, + "Om": 1186, + "Oam": 36, + "Odm": 32, + "pm": 33, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 85, + "e": 5849 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 15, + "e": 5862, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 17, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5880, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 6, + "e": 5891, + "s": 1 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5910, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 21, + "e": 5923, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5930, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5941, + "s": 1 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 75, + "e": 5950 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 71, + "e": 5961 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 2, + "e": 5973, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 9, + "e": 5990, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 4, + "e": 6010, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 5, + "e": 6024, + "s": 1 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 79, + "e": 6029 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 11, + "e": 6057, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 72, + "e": 6060 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 12, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 21, + "e": 6081, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 4, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 70, + "e": 6101 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6109, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 11, + "e": 6135, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 25, + "e": 6140, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 16, + "e": 6156, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 1, + "e": 6161, + "s": 1 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 45, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5862, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 455, + { + "n": "Ikoné", + "f": "Jonathan", + "fp": "MO", + "r": 13, + "c": 12, + "s": { + "Og": 4, + "Os": 191, + "On": 37, + "Oa": 5.16, + "Od": 0.77, + "Om": 2185, + "Oam": 59, + "Odm": 28, + "pm": 25, + "pa": 12, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 27, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 5849, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 15, + "e": 5862, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 5871 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 5880 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5891 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 89, + "e": 5906 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 78, + "e": 5923 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 86, + "e": 5950, + "g": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 61, + "e": 5961 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 70, + "e": 5973 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 5990, + "s": 1 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 6006, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6010 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6043, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 61, + "e": 6057 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6060 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 78, + "e": 6070 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 69, + "e": 6081 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 68, + "e": 6096, + "g": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 9, + "e": 6101, + "s": 1 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6109 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 67, + "e": 6120 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 62, + "e": 6135 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 25, + "e": 6140, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 28, + "e": 6156, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 26, + "e": 6161, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 18, + "e": 6171, + "s": 1 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6181 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6191 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 82, + "e": 6201 + } + ] + ] + } + ], + [ + 482, + { + "n": "Bamba", + "f": "Jonathan", + "fp": "MO", + "r": 23, + "c": 12, + "s": { + "Og": 6, + "Os": 218.5, + "On": 38, + "Oa": 5.75, + "Od": 0.97, + "Om": 2993, + "Oam": 79, + "Odm": 20, + "pm": 33, + "pa": 5, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 63, + "e": 5840 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 77, + "e": 5880 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 5891 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 5910 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 32, + "e": 5930, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 61, + "e": 5941 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 5950 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 88, + "e": 5973 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 62, + "e": 5978 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5990 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 90, + "e": 6010, + "g": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6060 + } + ], + [ + -14, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6070, + "g": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 83, + "e": 6081 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 22, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 7.5, + "q": null, + "m": 86, + "e": 6101 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 89, + "e": 6120, + "g": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 8, + "q": null, + "m": 90, + "e": 6140, + "g": 1 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6156 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6191, + "g": 1 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6201, + "g": 1 + } + ] + ], + "fo": [ + [ + 5910, + [ + { + "t": "Y" + } + ] + ], + [ + 5961, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 819, + { + "n": "José Fonte", + "f": "", + "fp": "DC", + "r": 21, + "c": 12, + "s": { + "Og": 3, + "Oao": 1, + "Os": 209, + "On": 36, + "Oa": 5.81, + "Od": 0.7, + "Om": 3187, + "Oam": 89, + "Odm": 8, + "pd": 36, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5871, + "a": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5910 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5941, + "g": 1 + } + ], + [ + -26, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5950, + "g": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5990 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6060 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6070, + "g": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6120 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 82, + "e": 6140 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6156 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5849, + [ + { + "t": "Y" + } + ] + ], + [ + 5891, + [ + { + "t": "Y" + } + ] + ], + [ + 5906, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1020, + { + "n": "Pied", + "f": "Jérémy", + "fp": "DL", + "r": 7, + "c": 12, + "s": { + "Os": 29, + "On": 6, + "Oa": 4.83, + "Od": 0.26, + "Om": 320, + "Oam": 53, + "Odm": 35, + "pd": 6 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 15, + "e": 5849, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5941 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 70, + "e": 6101 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 6109 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 83, + "e": 6181 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 3, + "e": 6191, + "s": 1 + } + ] + ] + } + ], + [ + 1184, + { + "n": "Jakubech", + "f": "Adam", + "fp": "G", + "r": 3, + "c": 12 + } + ], + [ + 1215, + { + "n": "Luiz Araújo", + "f": "", + "fp": "A", + "r": 12, + "c": 12, + "s": { + "Og": 4, + "Os": 150.5, + "On": 28, + "Oa": 5.38, + "Od": 0.86, + "Om": 1501, + "Oam": 54, + "Odm": 29, + "pm": 17, + "pa": 11, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5828, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 5840 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 5849 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 75, + "e": 5862 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 13, + "e": 5880, + "g": 1, + "s": 1 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 45, + "e": 5910, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 5923, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5930, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 5941 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5961 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 5973 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 28, + "e": 5978, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5990 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 62, + "e": 6006 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 30, + "e": 6010, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 86, + "e": 6096 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 80, + "e": 6101, + "g": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6120 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 88, + "e": 6135 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 76, + "e": 6140 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 62, + "e": 6156 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 78, + "e": 6161 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 72, + "e": 6171, + "g": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 17, + "e": 6181, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6191, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6201, + "s": 1 + } + ] + ], + "fo": [ + [ + 5849, + [ + { + "t": "Y" + } + ] + ], + [ + 5923, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1226, + { + "n": "Dabila", + "f": "Kouadio", + "fp": "DC", + "r": 3, + "c": 12 + } + ], + [ + 2021, + { + "n": "Renato Sanches", + "f": "", + "fp": "MO", + "r": 11, + "c": 12, + "s": { + "Og": 1, + "Os": 124, + "On": 23, + "Oa": 5.39, + "Od": 0.88, + "Om": 1271, + "Oam": 55, + "Odm": 32, + "pm": 23, + "Omsn": 8 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 82, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 27, + "e": 5840, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 73, + "e": 5871 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 5906 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5910, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 69, + "e": 5923 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 5930 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5950, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 19, + "e": 5961, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 5973, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 72, + "e": 5978 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 9, + "e": 5990, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 6006, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 25, + "e": 6024, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 79, + "e": 6135 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 76, + "e": 6140 + } + ], + [ + -6, + { + "n": 8, + "q": null, + "m": 90, + "e": 6156, + "g": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 78, + "e": 6161 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6171, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 82, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5828, + [ + { + "t": "Y" + } + ] + ], + [ + 5923, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2027, + { + "n": "Karnezis", + "f": "Orestis", + "fp": "G", + "r": 7, + "c": 12 + } + ], + [ + 2286, + { + "n": "Angel Gomes", + "f": "", + "fp": "MO", + "r": 7, + "c": 12 + } + ], + [ + 2328, + { + "n": "Weah", + "f": "Timothy", + "fp": "A", + "r": 11, + "c": 12, + "s": { + "Og": 3, + "Os": 133, + "On": 28, + "Oa": 4.75, + "Od": 0.69, + "Om": 864, + "Oam": 31, + "Odm": 26, + "pm": 5, + "pa": 23, + "Omsn": 6 + }, + "p": [ + [ + -36, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5849, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 5880 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5891, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 55, + "e": 5906, + "s": 1 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5910 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 5923 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 5930 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5941, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 5950, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 29, + "e": 5961, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5973, + "s": 1 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 5978, + "g": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5990, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6006, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6010, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 76, + "e": 6024 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 29, + "e": 6029, + "s": 1 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 75, + "e": 6043, + "g": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6057, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 18, + "e": 6060, + "g": 1, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6081, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6101, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6109, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6156, + "s": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 12, + "e": 6171, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6181, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6191, + "s": 1 + } + ] + ] + } + ], + [ + 2714, + { + "n": "Zeki Çelik", + "f": "Mehmet", + "fp": "DL", + "r": 16, + "c": 12, + "s": { + "Og": 3, + "Oao": 1, + "Os": 151, + "On": 29, + "Oa": 5.21, + "Od": 0.87, + "Om": 2390, + "Oam": 82, + "Odm": 19, + "pd": 29, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 5849 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5862, + "g": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5871 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5891, + "g": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 5910 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 5978 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 5990 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6006 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 27, + "e": 6043 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6060 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 6070 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6120, + "a": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 8, + "q": null, + "m": 90, + "e": 6156, + "g": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 7, + "e": 6181, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6191 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5828, + [ + { + "t": "Y" + } + ] + ], + [ + 5862, + [ + { + "t": "Y" + } + ] + ], + [ + 5880, + [ + { + "t": "Y" + } + ] + ], + [ + 5961, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3359, + { + "n": "Reinildo", + "f": "", + "fp": "DL", + "r": 16, + "c": 12, + "s": { + "Os": 150.5, + "On": 29, + "Oa": 5.19, + "Od": 0.76, + "Om": 2182, + "Oam": 75, + "Odm": 24, + "pd": 29 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5840 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 45, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 86, + "e": 5880 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5910 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5973 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 25, + "e": 6024, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 79, + "e": 6029 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 58, + "e": 6043 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6060 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 22, + "e": 6096, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 45, + "e": 6109, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 25, + "e": 6171, + "s": 1 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 43, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5880, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3751, + { + "n": "Agouzoul", + "f": "Saad", + "fp": "DC", + "r": 3, + "c": 12 + } + ], + [ + 3796, + { + "n": "Léo Jardim", + "f": "", + "fp": "G", + "r": 10, + "c": 12 + } + ], + [ + 4031, + { + "n": "Bradaric", + "f": "Domagoj", + "fp": "DL", + "r": 10, + "c": 12, + "s": { + "Og": 1, + "Os": 134, + "On": 26, + "Oa": 5.15, + "Od": 0.78, + "Om": 1257, + "Oam": 48, + "Odm": 37, + "pd": 25, + "pm": 1, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 1, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 5, + "e": 5849, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 2, + "e": 5862, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5871 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 4, + "e": 5880, + "s": 1 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 2, + "e": 5891, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 1, + "e": 5906, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 4, + "e": 5950, + "g": 1, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5973, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5990 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6024 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 11, + "e": 6029, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 32, + "e": 6043, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6081, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 68, + "e": 6096 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6109 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6156 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 65, + "e": 6171 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 45, + "e": 6201, + "s": 1 + } + ] + ] + } + ], + [ + 6013, + { + "n": "Show", + "f": "", + "fp": "MD", + "r": 4, + "c": 12 + } + ], + [ + 6015, + { + "n": "Tiago Djaló", + "f": "", + "fp": "DC", + "r": 7, + "c": 12, + "s": { + "Os": 85.5, + "On": 17, + "Oa": 5.03, + "Od": 0.45, + "Om": 865, + "Oam": 51, + "Odm": 39, + "pd": 17 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 89, + "e": 5906 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 15, + "e": 5910, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 17, + "e": 5941, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 9, + "e": 5978, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 20, + "e": 5990, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 6006, + "s": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 86, + "e": 6029 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 63, + "e": 6043, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 6, + "e": 6060, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 6, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 83, + "e": 6081 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 20, + "e": 6101, + "s": 1 + } + ] + ], + "fo": [ + [ + 5906, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ] + ] + } + ], + [ + 6017, + { + "n": "Yazici", + "f": "Yusuf", + "fp": "MO", + "r": 14, + "c": 12, + "s": { + "Og": 7, + "Os": 171.5, + "On": 32, + "Oa": 5.36, + "Od": 0.92, + "Om": 1076, + "Oam": 34, + "Odm": 27, + "pm": 23, + "pa": 9, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 5828 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 13, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 5849, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5862, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 10, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 13, + "e": 5880, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 25, + "e": 5910, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 1, + "e": 5923, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 5930 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 5941, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 25, + "e": 5950, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 29, + "e": 5961, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 62, + "e": 5978, + "g": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 70, + "e": 5990, + "g": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 75, + "e": 6006 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 81, + "e": 6010 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 15, + "e": 6043, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 61, + "e": 6057 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 84, + "e": 6060, + "g": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 28, + "e": 6070, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 28, + "e": 6081, + "g": 1, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 22, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 9, + "q": null, + "m": 81, + "e": 6101, + "g": 2 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 66, + "e": 6109 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 6120, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 28, + "e": 6135, + "s": 1 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 14, + "e": 6140, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 16, + "e": 6156, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 1, + "e": 6161, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 4, + "e": 6181, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 11, + "e": 6191, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6201, + "s": 1 + } + ] + ], + "fo": [ + [ + 5871, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6163, + { + "n": "Lihadji", + "f": "Isaac", + "fp": "A", + "r": 5, + "c": 12, + "s": { + "Os": 70, + "On": 15, + "Oa": 4.67, + "Od": 0.45, + "Om": 186, + "Oam": 12, + "Odm": 19, + "pm": 3, + "pa": 12 + }, + "p": [ + [ + -27, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5941, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5961, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5973, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5978, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6024, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6029, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6060, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6081, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 68, + "e": 6096 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 10, + "e": 6101, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 45, + "e": 6109, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6120, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6135, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 1, + "e": 6156, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 12, + "e": 6161, + "s": 1 + } + ] + ] + } + ], + [ + 6197, + { + "n": "Niasse", + "f": "Cheikh", + "fp": "MD", + "r": 2, + "c": 12 + } + ], + [ + 6574, + { + "n": "Onana", + "f": "Jean", + "fp": "MD", + "r": 2, + "c": 12 + } + ], + [ + 6803, + { + "n": "Pizzuto", + "f": "Eugenio", + "fp": "MD", + "r": 4, + "c": 12 + } + ], + [ + 6809, + { + "n": "Botman", + "f": "Sven", + "fp": "DC", + "r": 17, + "c": 12, + "s": { + "Os": 202, + "On": 37, + "Oa": 5.46, + "Od": 0.57, + "Om": 3311, + "Oam": 89, + "Odm": 3, + "pd": 37 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5828 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5871 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 75, + "e": 5910 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 5941 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5978 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5990 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6029 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6060 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6109 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6156 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5910, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 6810, + { + "n": "Yilmaz", + "f": "Burak", + "fp": "A", + "r": 29, + "c": 12, + "s": { + "Og": 16, + "Os": 157.5, + "On": 28, + "Oa": 5.63, + "Od": 1.18, + "Om": 2054, + "Oam": 73, + "Odm": 26, + "pa": 28, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 82, + "e": 5828, + "g": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 75, + "e": 5849, + "g": 2 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 71, + "e": 5862, + "g": 1 + } + ], + [ + -34, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 5871, + "g": 2 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5891, + "g": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 17, + "e": 5906, + "s": 1 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5910 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5923, + "s": 1 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 75, + "e": 6024, + "g": 1 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6029, + "g": 1 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 15, + "e": 6043, + "g": 1, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6060, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6070 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6109, + "g": 2 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 79, + "e": 6135, + "g": 1 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 65, + "e": 6140, + "g": 1 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 89, + "e": 6156, + "g": 1 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 89, + "e": 6161, + "g": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 78, + "e": 6171 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6191 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 26, + "e": 6201, + "s": 1 + } + ] + ], + "fo": [ + [ + 5871, + [ + { + "t": "Y" + } + ] + ], + [ + 5891, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6867, + { + "n": "David", + "f": "Jonathan", + "fp": "A", + "r": 30, + "c": 12, + "s": { + "Og": 13, + "Os": 193.5, + "On": 37, + "Oa": 5.23, + "Od": 1.19, + "Om": 2366, + "Oam": 64, + "Odm": 28, + "pa": 37, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 89, + "e": 5828, + "g": 1 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 77, + "e": 5840 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 67, + "e": 5849, + "g": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 88, + "e": 5862 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 5871, + "g": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5880, + "s": 1 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 35, + "e": 5906, + "g": 1 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5910 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 89, + "e": 5923 + } + ], + [ + -28, + { + "n": 8, + "q": null, + "m": 90, + "e": 5930, + "g": 2 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 65, + "e": 5950 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 89, + "e": 5961 + } + ], + [ + -24, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5973, + "g": 2 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 28, + "e": 5978, + "g": 1, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 84, + "e": 5990 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 89, + "e": 6006, + "g": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6010, + "g": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6024, + "s": 1 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 61, + "e": 6029 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6043 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 29, + "e": 6057, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6060 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6070 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 62, + "e": 6081, + "g": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 8, + "q": null, + "m": 90, + "e": 6101, + "g": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6109, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6120, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6135, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 74, + "e": 6156 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 64, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 78, + "e": 6171 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 83, + "e": 6181 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 69, + "e": 6191 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 64, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5906, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 7602, + { + "n": "Bouleghcha", + "f": "Ismail", + "fp": "DC", + "r": 3, + "c": 12 + } + ], + [ + 7720, + { + "n": "Ascone", + "f": "Rocco", + "fp": "MD", + "r": 1, + "c": 12 + } + ], + [ + 7724, + { + "n": "Kapi", + "f": "Mustafa", + "fp": "MD", + "r": 1, + "c": 12 + } + ], + [ + 8925, + { + "n": "Raux", + "f": "Jules", + "fp": "G", + "r": 1, + "c": 12 + } + ], + [ + 164, + { + "n": "Le Goff", + "f": "Vincent", + "fp": "DL", + "r": 10, + "c": 6, + "s": { + "Os": 119.5, + "On": 26, + "Oa": 4.6, + "Od": 0.97, + "Om": 2307, + "Oam": 89, + "Odm": 6, + "pd": 21, + "pm": 5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 57, + "e": 5921 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -18, + { + "n": 2, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6202 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6182 + } + ] + ] + } + ], + [ + 248, + { + "n": "Morel", + "f": "Jérémy", + "fp": "DC", + "r": 10, + "c": 6, + "s": { + "Os": 129, + "On": 28, + "Oa": 4.61, + "Od": 1.06, + "Om": 2494, + "Oam": 89, + "Odm": 5, + "pd": 27, + "pm": 1 + }, + "p": [ + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6011 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 3, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 64, + "e": 5950 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ] + } + ], + [ + 309, + { + "n": "Dreyer", + "f": "Matthieu", + "fp": "G", + "r": 7, + "c": 6, + "s": { + "Os": 73.5, + "On": 15, + "Oa": 4.9, + "Od": 0.99, + "Om": 1350, + "Oam": 90, + "pg": 15 + }, + "p": [ + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 3, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6011 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6018 + } + ] + ], + "fo": [ + [ + 5964, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 340, + { + "n": "Lemoine", + "f": "Fabien", + "fp": "MD", + "r": 13, + "c": 6, + "s": { + "Og": 1, + "Os": 150.5, + "On": 30, + "Oa": 5.02, + "Od": 0.97, + "Om": 1947, + "Oam": 65, + "Odm": 26, + "pm": 30, + "Omsn": 8 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 5841 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 5850 + } + ], + [ + -35, + { + "n": 8, + "q": null, + "m": 89, + "e": 5861, + "g": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 85, + "e": 5870 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 45, + "e": 5881 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 5901 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5913 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 89, + "e": 5933 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5942, + "s": 1 + } + ], + [ + -26, + { + "n": 3, + "q": null, + "m": 65, + "e": 5950 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 5964, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 55, + "e": 5985 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 6011 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6018 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 6050 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 77, + "e": 6071 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6078 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 18, + "e": 6089, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 21, + "e": 6101, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 16, + "e": 6119, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 7, + "e": 6145, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 70, + "e": 6151 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6162 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 67, + "e": 6168 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 74, + "e": 6182 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 86, + "e": 6195 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5850, + [ + { + "t": "Y" + } + ] + ], + [ + 5870, + [ + { + "t": "Y" + } + ] + ], + [ + 5933, + [ + { + "t": "Y" + } + ] + ], + [ + 5950, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 570, + { + "n": "Hamel", + "f": "Pierre-Yves", + "fp": "A", + "r": 7, + "c": 6, + "s": { + "Og": 4, + "Os": 110, + "On": 23, + "Oa": 4.78, + "Od": 0.82, + "Om": 840, + "Oam": 37, + "Odm": 33, + "pa": 23, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 12, + "e": 5837, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5841, + "s": 1 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 18, + "e": 5850, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5870, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5889, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 3, + "e": 5901, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5964, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5991, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6003, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6011, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 52, + "e": 6050 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 83, + "e": 6071, + "g": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 76, + "e": 6078 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6089, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 32, + "e": 6101, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 84, + "e": 6111 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 82, + "e": 6131 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 73, + "e": 6145, + "g": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 70, + "e": 6151, + "g": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6162, + "s": 1 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6168, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6195, + "s": 1 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 6, + "e": 6202, + "g": 1, + "s": 1 + } + ] + ], + "fo": [ + [ + 5850, + [ + { + "t": "Y" + } + ] + ], + [ + 5901, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1273, + { + "n": "Boisgard", + "f": "Quentin", + "fp": "MO", + "r": 7, + "c": 6, + "s": { + "Og": 2, + "Os": 124.5, + "On": 24, + "Oa": 5.19, + "Od": 0.75, + "Om": 1322, + "Oam": 55, + "Odm": 31, + "pm": 20, + "pa": 4, + "Omsn": 6.5 + }, + "p": [ + [ + -33, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5881, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 1, + "e": 5901, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 65, + "e": 5921 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 61, + "e": 5942 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 17, + "e": 5950, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 12, + "e": 5964, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 61, + "e": 5970 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 25, + "e": 5985, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 89, + "e": 6003 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6011 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 79, + "e": 6018 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 61, + "e": 6030 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 89, + "e": 6044 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 18, + "e": 6050, + "s": 1 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 60, + "e": 6071, + "g": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 20, + "e": 6078, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6089 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 6119 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6131 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6145 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6168 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5921, + [ + { + "t": "Y" + } + ] + ], + [ + 6003, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1404, + { + "n": "Monconduit", + "f": "Thomas", + "fp": "MD", + "r": 10, + "c": 6, + "s": { + "Og": 2, + "Os": 133, + "On": 27, + "Oa": 4.93, + "Od": 0.47, + "Om": 1148, + "Oam": 43, + "Odm": 32, + "pm": 27, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 5, + "e": 5841, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 17, + "e": 5850, + "g": 1, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 5, + "e": 5861, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5870, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5881, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 5901, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 1, + "e": 5913, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 61, + "e": 5942 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 25, + "e": 5950, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 71, + "e": 5964 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 45, + "e": 5991 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 70, + "e": 6011 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 58, + "e": 6018 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6044 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6050, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 78, + "e": 6065 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 13, + "e": 6071, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6111, + "s": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6119 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 7, + "e": 6131, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6145, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6151 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6162, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 23, + "e": 6168, + "g": 1, + "s": 1 + } + ] + ], + "fo": [ + [ + 5901, + [ + { + "t": "Y" + } + ] + ], + [ + 5950, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2615, + { + "n": "Fontaine", + "f": "Thomas", + "fp": "DC", + "r": 1, + "c": 6, + "s": { + "Os": 17.5, + "On": 4, + "Oa": 4.38, + "Od": 1.11, + "Om": 321, + "Oam": 80, + "Odm": 11, + "pd": 4 + }, + "p": [ + [ + -15, + { + "n": 5, + "q": null, + "m": 71, + "e": 6065 + } + ], + [ + -6, + { + "n": 3, + "q": null, + "m": 70, + "e": 6151 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6168 + } + ] + ] + } + ], + [ + 2632, + { + "n": "Callens", + "f": "Thomas", + "fp": "G", + "r": 1, + "c": 6 + } + ], + [ + 3358, + { + "n": "Laurienté", + "f": "Armand", + "fp": "MO", + "r": 11, + "c": 6, + "s": { + "Og": 3, + "Os": 152, + "On": 29, + "Oa": 5.24, + "Od": 1.01, + "Om": 1618, + "Oam": 56, + "Odm": 30, + "pm": 9, + "pa": 20, + "Omsn": 7 + }, + "p": [ + [ + -37, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 5841, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5850, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 19, + "e": 5861, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 5870, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 5889, + "s": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 5901 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5913, + "g": 1 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 67, + "e": 5933 + } + ], + [ + -27, + { + "n": 8, + "q": null, + "m": 29, + "e": 5942, + "g": 2, + "s": 1 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 25, + "e": 5950, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 25, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 5991 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 83, + "e": 6030 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 80, + "e": 6050 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 24, + "e": 6065, + "s": 1 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6089, + "s": 1 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 6101 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 79, + "e": 6111 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 45, + "e": 6119, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6131, + "s": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 14, + "e": 6145, + "s": 1 + } + ] + ], + "fo": [ + [ + 5913, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3805, + { + "n": "Nardi", + "f": "Paul", + "fp": "G", + "r": 12, + "c": 6, + "s": { + "Os": 111, + "On": 23, + "Oa": 4.83, + "Od": 1.03, + "Om": 2070, + "Oam": 90, + "pg": 23 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -18, + { + "n": 3, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 3, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ] + } + ], + [ + 4838, + { + "n": "Renaud", + "f": "Tom", + "fp": "MD", + "r": 1, + "c": 6 + } + ], + [ + 4839, + { + "n": "Loric", + "f": "Samuel", + "fp": "DL", + "r": 1, + "c": 6 + } + ], + [ + 4855, + { + "n": "Le Fée", + "f": "Enzo", + "fp": "MO", + "r": 15, + "c": 6, + "s": { + "Os": 190.5, + "On": 36, + "Oa": 5.29, + "Od": 0.87, + "Om": 1816, + "Oam": 50, + "Odm": 32, + "pm": 35, + "pa": 1 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 5841 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5850 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 85, + "e": 5861 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 74, + "e": 5870 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 25, + "e": 5881, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 5889 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 13, + "e": 5901, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 7, + "e": 5913, + "s": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 5942 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 5950 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 5964 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 5970, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 5985 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 78, + "e": 5991 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6003, + "s": 1 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 10, + "e": 6011, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 7, + "e": 6030, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6044, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 72, + "e": 6050 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 13, + "e": 6071, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6078, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 82, + "e": 6089 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 21, + "e": 6101, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6111, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6119, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 20, + "e": 6151, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 45, + "e": 6162 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 68, + "e": 6168 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6182, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6195 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5861, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4877, + { + "n": "Bartouche", + "f": "Teddy", + "fp": "G", + "r": 3, + "c": 6 + } + ], + [ + 5009, + { + "n": "Mendes", + "f": "Houboulang", + "fp": "DL", + "r": 5, + "c": 6, + "s": { + "Os": 73.5, + "On": 17, + "Oa": 4.32, + "Od": 0.79, + "Om": 1302, + "Oam": 77, + "Odm": 24, + "pd": 16, + "pm": 1 + }, + "p": [ + [ + -30, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5913 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 33, + "e": 5921, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 5964 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 82, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 5, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 60, + "e": 5991 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 83, + "e": 6101 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6131 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 3, + "q": null, + "m": 82, + "e": 6182 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5964, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5017, + { + "n": "Diarra", + "f": "Stéphane", + "fp": "A", + "r": 5, + "c": 6, + "s": { + "Os": 61.5, + "On": 13, + "Oa": 4.73, + "Od": 0.56, + "Om": 188, + "Oam": 14, + "Odm": 11, + "pm": 12, + "pa": 1 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 12, + "e": 5850, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 1, + "e": 5861, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 10, + "e": 5889, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 6003, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6089, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6111, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 22, + "e": 6119, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 8, + "e": 6131, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 6151, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 22, + "e": 6168, + "s": 1 + } + ], + [ + -3, + { + "n": 3, + "q": null, + "m": 45, + "e": 6182 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 16, + "e": 6195, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 12, + "e": 6202 + } + ] + ] + } + ], + [ + 5033, + { + "n": "Wissa", + "f": "Yoane", + "fp": "A", + "r": 20, + "c": 6, + "s": { + "Og": 10, + "Os": 205, + "On": 38, + "Oa": 5.39, + "Od": 1.21, + "Om": 2682, + "Oam": 71, + "Odm": 24, + "pm": 25, + "pa": 13, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 85, + "e": 5841, + "g": 1 + } + ], + [ + -36, + { + "n": 3, + "q": null, + "m": 72, + "e": 5850 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 71, + "e": 5861, + "g": 1 + } + ], + [ + -34, + { + "n": 8, + "q": null, + "m": 65, + "e": 5870, + "g": 1 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 81, + "e": 5881 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 80, + "e": 5889 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 89, + "e": 5901 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 25, + "e": 5921, + "g": 1, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 23, + "e": 5933, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 5942, + "s": 1 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 5950 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 78, + "e": 5964 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 29, + "e": 5970, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 5985 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 29, + "e": 5991, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6003 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6011 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 6018, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 83, + "e": 6030 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 45, + "e": 6044, + "s": 1 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 80, + "e": 6050 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 66, + "e": 6065 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 30, + "e": 6071, + "g": 1, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6078 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6089 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 8, + "q": null, + "m": 90, + "e": 6145, + "g": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 89, + "e": 6151 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6162, + "g": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6168 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6182, + "g": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 74, + "e": 6195 + } + ], + [ + -1, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6202, + "g": 1 + } + ] + ], + "fo": [ + [ + 5841, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 5056, + { + "n": "Laporte", + "f": "Julien", + "fp": "DC", + "r": 10, + "c": 6, + "s": { + "Os": 142, + "On": 30, + "Oa": 4.73, + "Od": 1.02, + "Om": 2660, + "Oam": 89, + "Odm": 7, + "pd": 30 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 50, + "e": 5861 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 3, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5950 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 3, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -3, + { + "n": 3, + "q": null, + "m": 90, + "e": 6182 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5837, + [ + { + "t": "Y" + } + ] + ], + [ + 5861, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 6003, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5065, + { + "n": "Hergault", + "f": "Jerome", + "fp": "DL", + "r": 13, + "c": 6, + "s": { + "Og": 2, + "Os": 106, + "On": 22, + "Oa": 4.82, + "Od": 0.5, + "Om": 1627, + "Oam": 74, + "Odm": 28, + "pd": 16, + "pm": 6, + "Omsn": 4 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5841, + "g": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5850 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 65, + "e": 5881 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 5889 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 5913 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5950, + "g": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 7, + "e": 6030, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6044 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 13, + "e": 6071, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 7, + "e": 6101, + "s": 1 + } + ] + ] + } + ], + [ + 5077, + { + "n": "Lecoeuche", + "f": "Quentin", + "fp": "DL", + "r": 3, + "c": 6, + "s": { + "Os": 63, + "On": 13, + "Oa": 4.85, + "Od": 0.38, + "Om": 695, + "Oam": 53, + "Odm": 32, + "pd": 2, + "pm": 11 + }, + "p": [ + [ + -23, + { + "n": 5, + "q": null, + "m": 18, + "e": 6367, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 63, + "e": 6388 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 6, + "e": 6411, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 18, + "e": 6418, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 23, + "e": 6428, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 45, + "e": 6528 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6558 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6538, + "s": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 83, + "e": 6552 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6568 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6579 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6328 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6406 + } + ] + ] + } + ], + [ + 5100, + { + "n": "Grbic", + "f": "Adrian", + "fp": "A", + "r": 9, + "c": 6, + "s": { + "Og": 4, + "Os": 152.5, + "On": 33, + "Oa": 4.62, + "Od": 0.74, + "Om": 945, + "Oam": 29, + "Odm": 26, + "pa": 33, + "Omsn": 5.5 + }, + "p": [ + [ + -37, + { + "n": 4, + "q": null, + "m": 4, + "e": 5841, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5850, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 5, + "e": 5861, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 5, + "e": 5870, + "s": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 7, + "e": 5881, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 25, + "e": 5889, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 7, + "e": 5913, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5921, + "s": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 5933, + "g": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5942, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5950, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5970, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 61, + "e": 5991 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6003, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 11, + "e": 6018, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6030, + "s": 1 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 27, + "e": 6044, + "g": 1, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 10, + "e": 6050, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6065, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6078, + "s": 1 + } + ], + [ + -12, + { + "n": 3.5, + "q": null, + "m": 61, + "e": 6089 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6101, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6111, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 68, + "e": 6119 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6131, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6145, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 20, + "e": 6151, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6162 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 82, + "e": 6168 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6182, + "g": 1 + } + ], + [ + -2, + { + "n": 3, + "q": null, + "m": 58, + "e": 6195 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 84, + "e": 6202, + "g": 1 + } + ] + ], + "fo": [ + [ + 5841, + [ + { + "t": "Y" + } + ] + ], + [ + 6003, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5162, + { + "n": "Abergel", + "f": "Laurent", + "fp": "MD", + "r": 13, + "c": 6, + "s": { + "Og": 3, + "Os": 199, + "On": 38, + "Oa": 5.24, + "Od": 0.99, + "Om": 2966, + "Oam": 78, + "Odm": 21, + "pm": 38, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5861 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 90, + "e": 5870 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5889 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5901, + "g": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 5950, + "s": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 71, + "e": 5964 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5970, + "g": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 35, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 8, + "q": null, + "m": 90, + "e": 5991, + "g": 1 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6003 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 20, + "e": 6011, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 32, + "e": 6018, + "s": 1 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 83, + "e": 6030 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6044 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 45, + "e": 6065 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 6078 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6111 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 83, + "e": 6131 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6145 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 6168 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 45, + "e": 6182, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6202, + "s": 1 + } + ] + ], + "fo": [ + [ + 5901, + [ + { + "t": "Y" + } + ] + ], + [ + 5921, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7411, + { + "n": "Moffi", + "f": "Terem", + "fp": "A", + "r": 25, + "c": 6, + "s": { + "Og": 14, + "Os": 158, + "On": 32, + "Oa": 4.94, + "Od": 1.42, + "Om": 2090, + "Oam": 65, + "Odm": 25, + "pa": 32, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 78, + "e": 5837 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 86, + "e": 5841 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 72, + "e": 5850 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 85, + "e": 5861 + } + ], + [ + -34, + { + "n": 8.5, + "q": null, + "m": 84, + "e": 5870, + "g": 3 + } + ], + [ + -33, + { + "n": 7.5, + "q": null, + "m": 83, + "e": 5881, + "g": 2 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 82, + "e": 5889, + "g": 1 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 87, + "e": 5901 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 89, + "e": 5913 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 83, + "e": 5921 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5933, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 5942 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 5950 + } + ], + [ + -25, + { + "n": 7, + "q": null, + "m": 90, + "e": 5964, + "g": 2 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 68, + "e": 5970 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 65, + "e": 5985 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 29, + "e": 5991, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 66, + "e": 6003 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6011, + "g": 1 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6018, + "g": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6030, + "g": 1 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 63, + "e": 6044, + "g": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 38, + "e": 6050, + "s": 1 + } + ], + [ + -15, + { + "n": 3.5, + "q": null, + "m": 66, + "e": 6065 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6071, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6078, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6089, + "s": 1 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 58, + "e": 6101 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 6111 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 45, + "e": 6119 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 63, + "e": 6131 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 83, + "e": 6145, + "g": 1 + } + ] + ], + "fo": [ + [ + 5881, + [ + { + "t": "I" + } + ] + ], + [ + 5870, + [ + { + "t": "Y" + } + ] + ], + [ + 6003, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7563, + { + "n": "Mouyokolo", + "f": "Loris", + "fp": "DC", + "r": 1, + "c": 6, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 19, + "Oam": 19, + "pd": 1 + }, + "p": [ + [ + -15, + { + "n": 5, + "q": null, + "m": 19, + "e": 6065, + "s": 1 + } + ] + ] + } + ], + [ + 7718, + { + "n": "Mendy", + "f": "Joris", + "fp": "DC", + "r": 1, + "c": 6 + } + ], + [ + 7774, + { + "n": "Ouattara", + "f": "Dango", + "fp": "A", + "r": 1, + "c": 6 + } + ], + [ + 7775, + { + "n": "Doumbouya", + "f": "Malamine", + "fp": "MD", + "r": 1, + "c": 6 + } + ], + [ + 8192, + { + "n": "Bourles", + "f": "Redwan", + "fp": "MO", + "r": 1, + "c": 6 + } + ], + [ + 8474, + { + "n": "Igor Silva", + "f": "", + "fp": "DC", + "r": 9, + "c": 6 + } + ], + [ + 67, + { + "n": "Toko Ekambi", + "f": "Karl", + "fp": "A", + "r": 22, + "c": 18, + "s": { + "Og": 14, + "Os": 200.5, + "On": 35, + "Oa": 5.73, + "Od": 1.23, + "Om": 2828, + "Oam": 81, + "Odm": 12, + "pm": 8, + "pa": 27, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5830, + "g": 2 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 76, + "e": 5846 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 88, + "e": 5864 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 89, + "e": 5882 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 66, + "e": 5947, + "g": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 6.5, + "q": null, + "m": 88, + "e": 5971, + "g": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 5979 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 86, + "e": 6007 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 76, + "e": 6012 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 71, + "e": 6041, + "g": 1 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6054, + "g": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 8, + "q": null, + "m": 90, + "e": 6082, + "g": 2 + } + ], + [ + -12, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6090, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -8, + { + "n": 9, + "q": null, + "m": 90, + "e": 6132, + "g": 2 + } + ], + [ + -7, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6147, + "g": 2 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 85, + "e": 6157 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 45, + "e": 6170, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 6204 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 66, + "e": 6188 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 89, + "e": 5850 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5871 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 78, + "e": 5948 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 63, + "e": 5992, + "g": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 55, + "e": 6061 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 74, + "e": 6120 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 83, + "e": 6179 + } + ] + ] + } + ], + [ + 130, + { + "n": "Cornet", + "f": "Maxwel", + "fp": "MO", + "r": 12, + "c": 18, + "s": { + "Og": 2, + "Os": 188, + "On": 36, + "Oa": 5.22, + "Od": 0.88, + "Om": 2455, + "Oam": 68, + "Odm": 26, + "pd": 21, + "pm": 7, + "pa": 8, + "Omsn": 4.5 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5864 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 63, + "e": 5882 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 73, + "e": 5890 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 77, + "e": 5900 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5917, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 44, + "e": 5926, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5931, + "s": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 73, + "e": 5947 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5948, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5962 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5979 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 5992, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 22, + "e": 6012, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 87, + "e": 6031 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6041 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 79, + "e": 6054 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 35, + "e": 6061, + "g": 1, + "s": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 72, + "e": 6090 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 81, + "e": 6132 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 82, + "e": 6162 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 45, + "e": 6170 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 79, + "e": 6188 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5926, + [ + { + "t": "I" + } + ] + ], + [ + 5962, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 188, + { + "n": "Da Silva", + "f": "Damien", + "fp": "DC", + "r": 16, + "c": 18, + "s": { + "Og": 4, + "Oao": 1, + "Os": 158, + "On": 30, + "Oa": 5.27, + "Od": 0.99, + "Om": 2664, + "Oam": 89, + "Odm": 5, + "pd": 30, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4, + "q": null, + "m": 85, + "e": 5843 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 5927 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 5951 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6034 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6115, + "a": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6155, + "g": 1 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6189 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -16, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6050, + "g": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6126, + "g": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6185 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6201, + "g": 1 + } + ] + ], + "fo": [ + [ + 5951, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ], + [ + 5843, + [ + { + "t": "R" + } + ] + ], + [ + 5895, + [ + { + "t": "Y" + } + ] + ], + [ + 5967, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 244, + { + "n": "Dubois", + "f": "Léo", + "fp": "DL", + "r": 16, + "c": 18, + "s": { + "Og": 2, + "Os": 195, + "On": 37, + "Oa": 5.27, + "Od": 0.93, + "Om": 2916, + "Oam": 79, + "Odm": 17, + "pd": 32, + "pm": 5, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 5830 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 87, + "e": 5846 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 89, + "e": 5850 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 45, + "e": 5864 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 5871 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5882 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5890 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 59, + "e": 5900 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 34, + "e": 5917, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 87, + "e": 5947 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5979 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5992, + "g": 1 + } + ], + [ + -21, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 6007 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 66, + "e": 6031 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 89, + "e": 6041 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 6077 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 26, + "e": 6082, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 80, + "e": 6098 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 6132 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 73, + "e": 6147 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6162, + "g": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 6170 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 70, + "e": 6188 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5900, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 537, + { + "n": "Aouar", + "f": "Houssem", + "fp": "MO", + "r": 23, + "c": 18, + "s": { + "Og": 7, + "Os": 165.5, + "On": 30, + "Oa": 5.52, + "Od": 0.9, + "Om": 1789, + "Oam": 60, + "Odm": 26, + "pm": 27, + "pa": 3, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 67, + "e": 5830 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 64, + "e": 5846, + "g": 1 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 60, + "e": 5850, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 15, + "e": 5864, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 11, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 12, + "e": 5882, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 45, + "e": 5926 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 32, + "e": 5931, + "g": 1, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 73, + "e": 5947 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 71, + "e": 5948, + "g": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 5962 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 5979 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 18, + "e": 5992, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6012, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 71, + "e": 6031 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 87, + "e": 6054, + "g": 1 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6077 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 6082 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 6117 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 52, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 57, + "e": 6132, + "g": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 72, + "e": 6147 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6157, + "g": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 6179, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 44, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5850, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 648, + { + "n": "Slimani", + "f": "Islam", + "fp": "A", + "r": 12, + "c": 18, + "s": { + "Og": 3, + "Os": 88, + "On": 19, + "Oa": 4.63, + "Od": 0.96, + "Om": 587, + "Oam": 31, + "Odm": 28, + "pa": 19, + "Omsn": 5.5 + }, + "p": [ + [ + -5, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6888, + "s": 1 + } + ], + [ + -38, + { + "n": 4, + "q": null, + "m": 29, + "e": 5830, + "s": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 14, + "e": 5846, + "g": 1, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5850, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 5871, + "g": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 2, + "q": null, + "m": 19, + "e": 5900, + "s": 1 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 34, + "e": 5917, + "g": 1, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 23, + "e": 5926, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 58, + "e": 5931 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5947, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5948, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 18, + "e": 5962, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5971, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5979, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 18, + "e": 5992, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6007, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6012, + "s": 1 + } + ] + ], + "fo": [ + [ + 5900, + [ + { + "t": "R" + } + ] + ] + ] + } + ], + [ + 1052, + { + "n": "Denayer", + "f": "Jason", + "fp": "DC", + "r": 13, + "c": 18, + "s": { + "Og": 1, + "Os": 166, + "On": 31, + "Oa": 5.35, + "Od": 0.81, + "Om": 2619, + "Oam": 84, + "Odm": 16, + "pd": 31, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5864 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 78, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 23, + "e": 5992 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6027, + "g": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6054 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 68, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "I" + } + ] + ], + [ + 5882, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1069, + { + "n": "Reine-Adélaïde", + "f": "Jeff", + "fp": "MO", + "r": 5, + "c": 18, + "s": { + "Og": 1, + "Os": 76.5, + "On": 15, + "Oa": 5.1, + "Od": 0.99, + "Om": 1084, + "Oam": 72, + "Odm": 27, + "pm": 10, + "pa": 5, + "Omsn": 7 + }, + "p": [ + [ + -23, + { + "n": 4.5, + "q": null, + "m": 44, + "e": 5982, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 62, + "e": 5996 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6064 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6094 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 6113 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6044, + "g": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 67, + "e": 6118 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6135, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6188, + "s": 1 + } + ] + ] + } + ], + [ + 1191, + { + "n": "Thiago Mendes", + "f": "", + "fp": "MD", + "r": 12, + "c": 18, + "s": { + "Os": 174, + "On": 32, + "Oa": 5.44, + "Od": 0.89, + "Om": 2238, + "Oam": 70, + "Odm": 29, + "pm": 32 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5830, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 26, + "e": 5846, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 30, + "e": 5850, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 5864 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5871 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 27, + "e": 5882, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 17, + "e": 5890, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 70, + "e": 5900 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 56, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 8, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 5979, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 86, + "e": 6007 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6077 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6098 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 34, + "e": 6117, + "s": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 6162, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6179, + "s": 1 + } + ] + ], + "fo": [ + [ + 5947, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1524, + { + "n": "Anthony Lopes", + "f": "", + "fp": "G", + "r": 18, + "c": 18, + "s": { + "Oao": 2, + "Os": 203.5, + "On": 38, + "Oa": 5.36, + "Od": 1.02, + "Om": 3420, + "Oam": 90, + "pg": 38 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5864 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5871 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5979 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 90, + "e": 6061, + "a": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 8, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6117, + "a": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1527, + { + "n": "Pape Cheikh Diop Gueye", + "f": "", + "fp": "MD", + "r": 5, + "c": 18, + "s": { + "Os": 107.5, + "On": 22, + "Oa": 4.89, + "Od": 0.58, + "Om": 1094, + "Oam": 50, + "Odm": 32, + "pm": 22 + }, + "p": [ + [ + -31, + { + "n": 5, + "q": null, + "m": 1, + "e": 5902, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 71, + "e": 5940 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 16, + "e": 5972, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 17, + "e": 5999, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 64, + "e": 6019 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 77, + "e": 6035 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 6045 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 20, + "e": 6049, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 8, + "e": 6112, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 6136, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 11, + "e": 6139, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6160 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 2, + "e": 4310, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 59, + "e": 5979 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6011 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6060 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6094 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6119, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 82, + "e": 6148 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6180 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5940, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 2032, + { + "n": "Marcelo", + "f": "", + "fp": "DC", + "r": 19, + "c": 18, + "s": { + "Og": 3, + "Os": 187, + "On": 34, + "Oa": 5.5, + "Od": 0.97, + "Om": 2911, + "Oam": 86, + "Odm": 13, + "pd": 34, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 5864, + "g": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5871 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 26, + "e": 5962 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 71, + "e": 5971 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5979 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5992 + } + ], + [ + -21, + { + "n": 8, + "q": null, + "m": 90, + "e": 6007, + "g": 2 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 71, + "e": 6090 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 50, + "e": 6120 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6157 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5962, + [ + { + "t": "I" + } + ] + ], + [ + 5864, + [ + { + "t": "R" + } + ] + ], + [ + 5830, + [ + { + "t": "Y" + } + ] + ], + [ + 5971, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2685, + { + "n": "Caqueret", + "f": "Maxence", + "fp": "MD", + "r": 10, + "c": 18, + "s": { + "Os": 145.5, + "On": 29, + "Oa": 5.02, + "Od": 0.67, + "Om": 1761, + "Oam": 61, + "Odm": 31, + "pm": 29 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 5830 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 70, + "e": 5864 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 79, + "e": 5871 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5890 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 5900, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 45, + "e": 5926, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5948, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 14, + "e": 5979, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 5992 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 89, + "e": 6012 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 23, + "e": 6027, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6031, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 55, + "e": 6061 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6082, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 8, + "e": 6090, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6098 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 86, + "e": 6117 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 33, + "e": 6132, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 69, + "e": 6157 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6170 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6179 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5931, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2861, + { + "n": "Dembele", + "f": "Moussa", + "fp": "A", + "r": 15, + "c": 18, + "s": { + "Og": 1, + "Os": 93, + "On": 21, + "Oa": 4.43, + "Od": 0.53, + "Om": 765, + "Oam": 36, + "Odm": 28, + "pa": 21, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4, + "q": null, + "m": 10, + "e": 6942, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 8262, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 29, + "e": 6971, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 26, + "e": 7015, + "s": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 16, + "e": 7035, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6054, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6061 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 27, + "e": 6082, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 29, + "e": 6090, + "g": 1, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 31, + "e": 6098, + "s": 1 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 57, + "e": 6117 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6120, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6132, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 26, + "e": 6147, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6157, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6179 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 15, + "e": 6204, + "s": 1 + } + ] + ] + } + ], + [ + 4327, + { + "n": "Lucas Paquetá", + "f": "", + "fp": "MO", + "r": 20, + "c": 18, + "s": { + "Og": 9, + "Os": 187, + "On": 33, + "Oa": 5.67, + "Od": 1.22, + "Om": 2388, + "Oam": 72, + "Odm": 22, + "pm": 32, + "pa": 1, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 11, + "e": 5463, + "s": 1 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5515 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5523 + } + ], + [ + -38, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 5846, + "g": 2 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 85, + "e": 5850, + "g": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 75, + "e": 5864 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 64, + "e": 5871 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 5890, + "g": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5900, + "g": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 5926 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 70, + "e": 5947 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5948, + "g": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 72, + "e": 5962, + "g": 1 + } + ], + [ + -24, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 5979, + "g": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 5992, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 68, + "e": 6012 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 67, + "e": 6027 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 87, + "e": 6031 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 70, + "e": 6041, + "g": 1 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 35, + "e": 6061, + "s": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 6077 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 60, + "e": 6098 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 33, + "e": 6117, + "s": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 6132 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6147 + } + ] + ], + "fo": [ + [ + 5947, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5948, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5036, + { + "n": "Kadewere", + "f": "Tinotenda", + "fp": "A", + "r": 20, + "c": 18, + "s": { + "Og": 10, + "Os": 170.5, + "On": 33, + "Oa": 5.17, + "Od": 1.26, + "Om": 2021, + "Oam": 61, + "Odm": 26, + "pm": 1, + "pa": 32, + "Omsn": 6 + }, + "p": [ + [ + -36, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5850 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5864, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5871, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 5900 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 56, + "e": 5917 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 45, + "e": 5926, + "g": 1, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 32, + "e": 5931, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 87, + "e": 5947 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5948, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5962 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5971 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5979 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 72, + "e": 5992 + } + ], + [ + -21, + { + "n": 8, + "q": null, + "m": 85, + "e": 6007, + "g": 2 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 77, + "e": 6012 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6027 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 6041, + "g": 1 + } + ], + [ + -16, + { + "n": 8, + "q": null, + "m": 79, + "e": 6054, + "g": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6061 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 77, + "e": 6077, + "g": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6082 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6090 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6098, + "g": 1 + } + ], + [ + -10, + { + "n": 7.5, + "q": null, + "m": 33, + "e": 6117, + "g": 2, + "s": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 81, + "e": 6132 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 64, + "e": 6147, + "g": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 77, + "e": 6157 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6162, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6170, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6179, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 55, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "Y" + } + ] + ], + [ + 5917, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5459, + { + "n": "Augarreau", + "f": "Cedric", + "fp": "MD", + "r": 1, + "c": 18 + } + ], + [ + 6280, + { + "n": "Cherki", + "f": "Rayan", + "fp": "MO", + "r": 10, + "c": 18, + "s": { + "Og": 1, + "Os": 137.5, + "On": 27, + "Oa": 5.09, + "Od": 0.68, + "Om": 679, + "Oam": 25, + "Odm": 25, + "pm": 23, + "pa": 4, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 23, + "e": 5830, + "s": 1 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 5846, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 2, + "e": 5864, + "g": 1, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 1, + "e": 5890, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5900, + "s": 1 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 16, + "e": 5917, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 45, + "e": 5926 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 24, + "e": 5947, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 18, + "e": 5962, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 18, + "e": 5971, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 4, + "e": 6007, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 14, + "e": 6012, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 6027, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6031, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 19, + "e": 6041, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 3, + "e": 6054, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 12, + "e": 6061, + "s": 1 + } + ], + [ + -13, + { + "n": 3.5, + "q": null, + "m": 10, + "e": 6082, + "s": 1 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 6090, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6098 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 5, + "e": 6157, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 75, + "e": 6162 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 86, + "e": 6170 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 7, + "e": 6179, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 20, + "e": 6188, + "s": 1 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 22, + "e": 6204, + "s": 1 + } + ] + ] + } + ], + [ + 6512, + { + "n": "Bruno Guimarães", + "f": "", + "fp": "MD", + "r": 16, + "c": 18, + "s": { + "Og": 3, + "Os": 180.5, + "On": 33, + "Oa": 5.47, + "Od": 0.82, + "Om": 1758, + "Oam": 53, + "Odm": 30, + "pm": 33, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 61, + "e": 5830 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5846 + } + ], + [ + -36, + { + "n": 8, + "q": null, + "m": 90, + "e": 5850, + "g": 2 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 2, + "e": 5864, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 26, + "e": 5871, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 63, + "e": 5882 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 73, + "e": 5890 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 59, + "e": 5900 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 34, + "e": 5917, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 5931 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 17, + "e": 5947, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 71, + "e": 5948 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 5962, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 63, + "e": 5979 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 5992 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6007 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 1, + "e": 6012, + "s": 1 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 6041, + "s": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6061 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 12, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 82, + "e": 6082 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 82, + "e": 6090, + "g": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 6098, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 57, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 16, + "e": 6120, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 9, + "e": 6132, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 6157, + "s": 1 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6162 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 59, + "e": 6179 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 55, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5850, + [ + { + "t": "Y" + } + ] + ], + [ + 5900, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6592, + { + "n": "Diomande", + "f": "Sinaly", + "fp": "DC", + "r": 10, + "c": 18, + "s": { + "Os": 141, + "On": 27, + "Oa": 5.22, + "Od": 0.51, + "Om": 1118, + "Oam": 41, + "Odm": 39, + "pd": 27 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 3, + "e": 5846, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 61, + "e": 5864, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 12, + "e": 5882, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 12, + "e": 5917, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 3, + "e": 5947, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5948 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 89, + "e": 5971 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5979 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 5992, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 4, + "e": 6007, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 1, + "e": 6027, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 1, + "e": 6041, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 6, + "e": 6061, + "s": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 13, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 8, + "e": 6082, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 19, + "e": 6090, + "s": 1 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 10, + "e": 6098, + "s": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6120 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 4, + "e": 6147, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 6, + "e": 6157, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6162 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6170, + "s": 1 + } + ] + ], + "fo": [ + [ + 5917, + [ + { + "t": "Y" + } + ] + ], + [ + 5971, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7341, + { + "n": "Pollersbeck", + "f": "Julian", + "fp": "G", + "r": 7, + "c": 18 + } + ], + [ + 7408, + { + "n": "Keita", + "f": "Habib", + "fp": "MD", + "r": 3, + "c": 18, + "s": { + "Os": 4, + "On": 1, + "Oa": 4, + "Om": 5, + "Oam": 5, + "pa": 1 + }, + "p": [ + [ + -36, + { + "n": 4, + "q": null, + "m": 5, + "e": 5850, + "s": 1 + } + ] + ] + } + ], + [ + 7419, + { + "n": "Barcola", + "f": "Malcolm", + "fp": "G", + "r": 4, + "c": 18 + } + ], + [ + 7457, + { + "n": "Gusto", + "f": "Malo", + "fp": "DL", + "r": 4, + "c": 18, + "s": { + "Os": 10, + "On": 2, + "Oa": 5, + "Om": 2, + "Oam": 1, + "pd": 2 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 1, + "e": 5850, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 6007, + "s": 1 + } + ] + ] + } + ], + [ + 7603, + { + "n": "da Silva", + "f": "Florent", + "fp": "MD", + "r": 1, + "c": 18, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 2, + "Oam": 2, + "pm": 1 + }, + "p": [ + [ + -24, + { + "n": 5, + "q": null, + "m": 2, + "e": 5971, + "s": 1 + } + ] + ] + } + ], + [ + 7821, + { + "n": "Lega", + "f": "Sekou", + "fp": "A", + "r": 1, + "c": 18 + } + ], + [ + 7847, + { + "n": "Lukeba", + "f": "Castello", + "fp": "DC", + "r": 5, + "c": 18 + } + ], + [ + 8223, + { + "n": "Henrique", + "f": "", + "fp": "DL", + "r": 8, + "c": 18 + } + ], + [ + 6, + { + "n": "Payet", + "f": "Dimitri", + "fp": "MO", + "r": 25, + "c": 9, + "s": { + "Og": 7, + "Os": 181, + "On": 33, + "Oa": 5.48, + "Od": 1.06, + "Om": 2424, + "Oam": 73, + "Odm": 25, + "pm": 17, + "pa": 16, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 5874, + "g": 2 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 5893 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 73, + "e": 5914 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 81, + "e": 5993 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5952, + "g": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 89, + "e": 6102 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 89, + "e": 5977 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6002, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 66, + "e": 6013 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 17, + "e": 6032, + "g": 1, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 70, + "e": 6085 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 85, + "e": 6091, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 25, + "e": 6116, + "s": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6198 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 77, + "e": 6187 + } + ], + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 89, + "e": 5881, + "g": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 89, + "e": 5902 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 5922 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 87, + "e": 5930 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 30, + "e": 6019, + "s": 1 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 71, + "e": 6067 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 27, + "e": 6121, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 19, + "e": 6157, + "g": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6171 + } + ] + ], + "fo": [ + [ + 5977, + [ + { + "t": "R" + } + ] + ], + [ + 5831, + [ + { + "t": "Y" + } + ] + ], + [ + 5947, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 242, + { + "n": "Rongier", + "f": "Valentin", + "fp": "MD", + "r": 11, + "c": 9, + "s": { + "Og": 1, + "Os": 143, + "On": 26, + "Oa": 5.5, + "Od": 0.8, + "Om": 1895, + "Oam": 73, + "Odm": 24, + "pm": 26, + "Omsn": 6 + }, + "p": [ + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 5842 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 29, + "e": 5856, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 5863 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 50, + "e": 5874, + "s": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5952, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 88, + "e": 5977 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6013 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6019 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6038, + "g": 1 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 85, + "e": 6051 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 87, + "e": 6085 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 77, + "e": 6091 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6102, + "s": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 44, + "e": 6121 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 86, + "e": 6141 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6163 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 71, + "e": 6171 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6197, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 78, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5842, + [ + { + "t": "Y" + } + ] + ], + [ + 5863, + [ + { + "t": "Y" + } + ] + ], + [ + 5959, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 572, + { + "n": "Guendouzi", + "f": "Matteo", + "fp": "MD", + "r": 17, + "c": 9 + } + ], + [ + 800, + { + "n": "Mandanda", + "f": "Steve", + "fp": "G", + "r": 17, + "c": 9, + "s": { + "Os": 190.5, + "On": 37, + "Oa": 5.15, + "Od": 0.96, + "Om": 3330, + "Oam": 90, + "pg": 37 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5893 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5902 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 3, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6019 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6085 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6197 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6198 + } + ] + ] + } + ], + [ + 1181, + { + "n": "Amavi", + "f": "Jordan", + "fp": "DL", + "r": 7, + "c": 9, + "s": { + "Og": 1, + "Os": 72, + "On": 13, + "Oa": 5.54, + "Od": 0.78, + "Om": 814, + "Oam": 63, + "Odm": 39, + "pd": 12, + "pm": 1, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 67, + "e": 5831 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 6, + "e": 5842, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 1, + "e": 5952, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 20, + "e": 6067 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6085 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 1, + "e": 6102, + "s": 1 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6141, + "g": 1 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6187 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6197 + } + ] + ] + } + ], + [ + 1250, + { + "n": "Kamara", + "f": "Boubacar", + "fp": "MD", + "r": 17, + "c": 9, + "s": { + "Os": 190.5, + "On": 35, + "Oa": 5.44, + "Od": 0.7, + "Om": 2905, + "Oam": 83, + "Odm": 16, + "pd": 1, + "pm": 34 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5856 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5863 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 40, + "e": 5874 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5893 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5902 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 79, + "e": 5952 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 81, + "e": 5980 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 18, + "e": 6013 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 65, + "e": 6019 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6067 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 87, + "e": 6085 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 61, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 85, + "e": 6163 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6197 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5874, + [ + { + "t": "I" + } + ] + ], + [ + 5947, + [ + { + "t": "Y" + } + ] + ], + [ + 5993, + [ + { + "t": "Y" + } + ] + ], + [ + 6102, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1726, + { + "n": "González", + "f": "Álvaro", + "fp": "DC", + "r": 14, + "c": 9, + "s": { + "Og": 2, + "Os": 167, + "On": 32, + "Oa": 5.22, + "Od": 0.96, + "Om": 2834, + "Oam": 89, + "Odm": 5, + "pd": 31, + "pm": 1, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5893 + } + ], + [ + -31, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5902, + "g": 1 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 69, + "e": 5914 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 77, + "e": 5922 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 78, + "e": 5977 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6013 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6019 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 90, + "e": 6085 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6102, + "g": 1 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6141 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5977, + [ + { + "t": "I" + } + ] + ], + [ + 5842, + [ + { + "t": "Y" + } + ] + ], + [ + 5856, + [ + { + "t": "Y" + } + ] + ], + [ + 5893, + [ + { + "t": "Y" + } + ] + ], + [ + 5902, + [ + { + "t": "Y" + } + ] + ], + [ + 5922, + [ + { + "t": "Y" + } + ] + ], + [ + 5947, + [ + { + "t": "Y" + } + ] + ], + [ + 5952, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2451, + { + "n": "López", + "f": "Pau", + "fp": "G", + "r": 12, + "c": 9, + "s": { + "Os": 135, + "On": 27, + "Oa": 5, + "Od": 1.03, + "Om": 2356, + "Oam": 87, + "Odm": 14, + "pg": 27 + }, + "p": [ + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 7242 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 7252 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 7275 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 7280 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 7288 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 7295 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 7300 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7302 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 7631 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7322 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 7330 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 7338 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 90, + "e": 7605 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 7352 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7361 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 7582 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 7376 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 7381, + "s": 1 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7395 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 7393 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 7430 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5465 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5475 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5483 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5496 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5502 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5524 + } + ] + ] + } + ], + [ + 2712, + { + "n": "Caleta-Car", + "f": "Duje", + "fp": "DC", + "r": 11, + "c": 9, + "s": { + "Og": 2, + "Os": 167, + "On": 33, + "Oa": 5.06, + "Od": 0.91, + "Om": 2816, + "Oam": 85, + "Odm": 17, + "pd": 33, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5842 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 61, + "e": 5856 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -32, + { + "n": 3, + "q": null, + "m": 62, + "e": 5893 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6013 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6019 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6038 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6085 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 1, + "e": 6131, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 87, + "e": 6141 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 85, + "e": 6163 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6171 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6197, + "g": 2 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5893, + [ + { + "t": "R" + } + ] + ], + [ + 5914, + [ + { + "t": "Y" + } + ] + ], + [ + 5922, + [ + { + "t": "Y" + } + ] + ], + [ + 5993, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2766, + { + "n": "Saliba", + "f": "William", + "fp": "DC", + "r": 11, + "c": 9, + "s": { + "Og": 1, + "Os": 101.5, + "On": 20, + "Oa": 5.08, + "Od": 0.82, + "Om": 1800, + "Oam": 90, + "pd": 20, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5935 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5830, + "g": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6028 + } + ] + ], + "fo": [ + [ + 5845, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2860, + { + "n": "Radonjic", + "f": "Nemanja", + "fp": "MO", + "r": 9, + "c": 9, + "s": { + "Og": 2, + "Os": 60, + "On": 12, + "Oa": 5, + "Od": 0.85, + "Om": 393, + "Oam": 33, + "Odm": 26, + "pm": 6, + "pa": 6, + "Omsn": 6 + }, + "p": [ + [ + -21, + { + "n": 6, + "q": null, + "m": 68, + "e": 6002, + "g": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 24, + "e": 6013, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6019 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 73, + "e": 6032, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 5, + "e": 6051, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 27, + "e": 6121, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 8, + "e": 6131, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 29, + "e": 6157, + "s": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 6, + "e": 6163, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6171, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6187, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 62, + "e": 6197 + } + ] + ] + } + ], + [ + 4317, + { + "n": "Ünder", + "f": "Cengiz", + "fp": "MO", + "r": 12, + "c": 9, + "s": { + "Os": 52, + "On": 10, + "Oa": 5.2, + "Od": 0.54, + "Om": 309, + "Oam": 31, + "Odm": 15, + "pm": 10 + }, + "p": [ + [ + -26, + { + "n": 5, + "q": null, + "m": 39, + "e": 6699, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 11, + "e": 7611, + "s": 1 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 22, + "e": 6752, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6816 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 45, + "e": 6844, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 28, + "e": 6852, + "s": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 19, + "e": 7514, + "s": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 15, + "e": 6876, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 6898, + "s": 1 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 34, + "e": 5452, + "s": 1 + } + ] + ] + } + ], + [ + 4612, + { + "n": "Milik", + "f": "Arkadiusz", + "fp": "A", + "r": 22, + "c": 9, + "s": { + "Og": 10, + "Os": 112.5, + "On": 21, + "Oa": 5.36, + "Od": 1.23, + "Om": 1545, + "Oam": 74, + "Odm": 23, + "pa": 21, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 84, + "e": 5460 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 67, + "e": 5474 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 69, + "e": 5499 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5521, + "s": 1 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5831, + "g": 1 + } + ], + [ + -37, + { + "n": 8, + "q": null, + "m": 89, + "e": 5842, + "g": 3 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 59, + "e": 5494, + "g": 1, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5874, + "g": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5515, + "s": 1 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 89, + "e": 5893, + "g": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5902 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 84, + "e": 5922, + "g": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5947, + "g": 1 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 60, + "e": 5980, + "g": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 71, + "e": 5993 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 31, + "e": 6002, + "s": 1 + } + ] + ], + "fo": [ + [ + 5842, + [ + { + "t": "Y" + } + ] + ], + [ + 5863, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4968, + { + "n": "Gueye", + "f": "Pape", + "fp": "MD", + "r": 16, + "c": 9, + "s": { + "Og": 2, + "Os": 164.5, + "On": 32, + "Oa": 5.14, + "Od": 0.76, + "Om": 2055, + "Oam": 64, + "Odm": 29, + "pm": 32, + "Omsn": 4.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 5863, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5893, + "g": 1 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5902 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5922, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5947 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5959 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 72, + "e": 6013, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 60, + "e": 6019 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 56, + "e": 6051 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 36, + "e": 6067, + "g": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 6072, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 6085, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6116 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 63, + "e": 6121 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6131 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6141, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 29, + "e": 6157, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 5, + "e": 6163, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6171, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6187 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6197, + "s": 1 + } + ] + ], + "fo": [ + [ + 5863, + [ + { + "t": "Y" + } + ] + ], + [ + 5902, + [ + { + "t": "Y" + } + ] + ], + [ + 5930, + [ + { + "t": "Y" + } + ] + ], + [ + 5947, + [ + { + "t": "Y" + } + ] + ], + [ + 5977, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6021, + { + "n": "Benedetto", + "f": "Darío", + "fp": "A", + "r": 10, + "c": 9, + "s": { + "Og": 5, + "Os": 146, + "On": 32, + "Oa": 4.56, + "Od": 0.99, + "Om": 1581, + "Oam": 49, + "Odm": 32, + "pa": 32, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 72, + "e": 5831 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5842, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5856, + "s": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 7, + "e": 5863, + "g": 1, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5893, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5902, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5914, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5922, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5930, + "s": 1 + } + ], + [ + -25, + { + "n": 3, + "q": null, + "m": 59, + "e": 5959 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 34, + "e": 5977, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5980, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 19, + "e": 5993, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 59, + "e": 6002 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6013, + "g": 1 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 61, + "e": 6019 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 79, + "e": 6032 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 6038 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 68, + "e": 6051 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 45, + "e": 6067 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 87, + "e": 6072, + "g": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 71, + "e": 6085, + "g": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 77, + "e": 6091, + "g": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6116, + "s": 1 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 63, + "e": 6121 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 89, + "e": 6131 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 86, + "e": 6141 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 61, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 78, + "e": 6171 + } + ], + [ + -3, + { + "n": 2.5, + "q": null, + "m": 31, + "e": 6187, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6197 + } + ] + ], + "fo": [ + [ + 5959, + [ + { + "t": "R" + } + ] + ] + ] + } + ], + [ + 6154, + { + "n": "Dia", + "f": "Ahmadou", + "fp": "G", + "r": 1, + "c": 9 + } + ], + [ + 6199, + { + "n": "Ngapandouetnbu", + "f": "Simon", + "fp": "G", + "r": 1, + "c": 9 + } + ], + [ + 6785, + { + "n": "Kamardin", + "f": "Aaron", + "fp": "DC", + "r": 1, + "c": 9 + } + ], + [ + 6786, + { + "n": "Bertelli", + "f": "Ugo", + "fp": "MD", + "r": 1, + "c": 9 + } + ], + [ + 6787, + { + "n": "Ahmed", + "f": "Nassim", + "fp": "MD", + "r": 1, + "c": 9 + } + ], + [ + 6788, + { + "n": "Souaré", + "f": "Cheick", + "fp": "MD", + "r": 1, + "c": 9, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 9, + "Oam": 9, + "pm": 1 + }, + "p": [ + [ + -23, + { + "n": 5, + "q": null, + "m": 9, + "e": 5980, + "s": 1 + } + ] + ] + } + ], + [ + 6795, + { + "n": "Rahou", + "f": "Jores", + "fp": "MO", + "r": 1, + "c": 9 + } + ], + [ + 6799, + { + "n": "Richard", + "f": "Richecarde", + "fp": "DL", + "r": 1, + "c": 9 + } + ], + [ + 6805, + { + "n": "Balerdi", + "f": "Leonardo", + "fp": "DC", + "r": 12, + "c": 9, + "s": { + "Og": 2, + "Os": 100.5, + "On": 21, + "Oa": 4.79, + "Od": 1.33, + "Om": 1634, + "Oam": 78, + "Odm": 28, + "pd": 20, + "pm": 1, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 1, + "e": 5842, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5893 + } + ], + [ + -31, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5902, + "g": 1 + } + ], + [ + -30, + { + "n": 2, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5930 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 55, + "e": 5959 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -15, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 3, + "e": 6072, + "s": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6121 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6131, + "g": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6197 + } + ], + [ + -1, + { + "n": 3, + "q": null, + "m": 45, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5959, + [ + { + "t": "R" + } + ] + ], + [ + 5856, + [ + { + "t": "Y" + } + ] + ], + [ + 5881, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7071, + { + "n": "De la Fuente", + "f": "Konrad", + "fp": "MO", + "r": 7, + "c": 9 + } + ], + [ + 7139, + { + "n": "Vanni", + "f": "Fabio", + "fp": "G", + "r": 1, + "c": 9 + } + ], + [ + 7142, + { + "n": "Ben Seghir", + "f": "Salim", + "fp": "A", + "r": 1, + "c": 9, + "s": { + "Os": 4.5, + "On": 1, + "Oa": 4.5, + "Om": 6, + "Oam": 6, + "pa": 1 + }, + "p": [ + [ + -12, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6094, + "s": 1 + } + ] + ] + } + ], + [ + 7364, + { + "n": "Luis Henrique", + "f": "", + "fp": "A", + "r": 10, + "c": 9, + "s": { + "Os": 97.5, + "On": 19, + "Oa": 5.13, + "Od": 0.86, + "Om": 668, + "Oam": 35, + "Odm": 29, + "pm": 6, + "pa": 13 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5831, + "s": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 84, + "e": 5842 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 33, + "e": 5863, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 15, + "e": 5874, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5881, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5893 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 68, + "e": 5902 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5914, + "s": 1 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 13, + "e": 5922, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5952 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 12, + "e": 5977, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5980, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 28, + "e": 5993, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6038, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 3, + "e": 6072, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6085, + "s": 1 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 68, + "e": 6102 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6141, + "s": 1 + } + ] + ] + } + ], + [ + 7649, + { + "n": "Tongya", + "f": "Franco", + "fp": "MD", + "r": 1, + "c": 9 + } + ], + [ + 7714, + { + "n": "Dieng", + "f": "Ahmadou Bamba", + "fp": "A", + "r": 5, + "c": 9, + "s": { + "Os": 23, + "On": 5, + "Oa": 4.6, + "Od": 0.89, + "Om": 127, + "Oam": 25, + "Odm": 30, + "pa": 5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5831, + "s": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 6, + "e": 5842, + "s": 1 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5952 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5959, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 6102 + } + ] + ] + } + ], + [ + 7721, + { + "n": "Targhaline", + "f": "Oussama", + "fp": "MD", + "r": 1, + "c": 9 + } + ], + [ + 8195, + { + "n": "Sciortino", + "f": "Paolo", + "fp": "MD", + "r": 1, + "c": 9 + } + ], + [ + 8220, + { + "n": "Gerson", + "f": "", + "fp": "MO", + "r": 18, + "c": 9 + } + ], + [ + 8222, + { + "n": "Luan Peres", + "f": "", + "fp": "DC", + "r": 9, + "c": 9 + } + ], + [ + 176, + { + "n": "Pajot", + "f": "Vincent", + "fp": "MD", + "r": 3, + "c": 11, + "s": { + "Os": 69, + "On": 12, + "Oa": 5.75, + "Od": 0.81, + "Om": 917, + "Oam": 76, + "Odm": 25, + "pm": 12 + }, + "p": [ + [ + -11, + { + "n": 5, + "q": null, + "m": 25, + "e": 6105 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6172 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 86, + "e": 6207 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 72, + "e": 5932 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 5939, + "s": 1 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 89, + "e": 6151 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6181 + } + ] + ] + } + ], + [ + 337, + { + "n": "Nguette", + "f": "Opa", + "fp": "A", + "r": 3, + "c": 11, + "s": { + "Og": 3, + "Os": 81.5, + "On": 16, + "Oa": 5.09, + "Od": 1.08, + "Om": 1137, + "Oam": 71, + "Odm": 24, + "pm": 6, + "pa": 10, + "Omsn": 6 + }, + "p": [ + [ + -15, + { + "n": 5, + "q": null, + "m": 27, + "e": 6063, + "s": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6076, + "g": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 87, + "e": 6124 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 83, + "e": 6052, + "g": 1 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 81, + "e": 6092 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 6105, + "s": 1 + } + ], + [ + -10, + { + "n": 2.5, + "q": null, + "m": 60, + "e": 6112 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 77, + "e": 6138, + "g": 1 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 6151 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6163 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 71, + "e": 6172 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6181 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6193 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 17, + "e": 6207, + "s": 1 + } + ] + ] + } + ], + [ + 408, + { + "n": "N'Doram", + "f": "Kevin", + "fp": "MD", + "r": 10, + "c": 11, + "s": { + "Os": 27, + "On": 6, + "Oa": 4.5, + "Od": 0.55, + "Om": 307, + "Oam": 51, + "Odm": 26, + "pm": 6 + }, + "p": [ + [ + -36, + { + "n": 3.5, + "q": null, + "m": 66, + "e": 5851 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5860 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5872, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 25, + "e": 5903, + "s": 1 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5841 + } + ] + ] + } + ], + [ + 498, + { + "n": "Boulaya", + "f": "Farid", + "fp": "MO", + "r": 18, + "c": 11, + "s": { + "Og": 6, + "Os": 192.5, + "On": 33, + "Oa": 5.83, + "Od": 1.14, + "Om": 2820, + "Oam": 85, + "Odm": 12, + "pm": 5, + "pa": 28, + "Omsn": 6 + }, + "p": [ + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -21, + { + "n": 8, + "q": null, + "m": 90, + "e": 6001, + "g": 1 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5831, + "g": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 5851 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 31, + "e": 5860, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 87, + "e": 5872 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 5903 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 89, + "e": 5989, + "g": 1 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 8, + "q": null, + "m": 90, + "e": 6052, + "g": 1 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 89, + "e": 6063 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6082, + "g": 1 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 82, + "e": 6124 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6133, + "g": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 87, + "e": 6163 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 79, + "e": 6193 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 81, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5939, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 576, + { + "n": "Udol", + "f": "Matthieu", + "fp": "DL", + "r": 10, + "c": 11, + "s": { + "Os": 125.5, + "On": 25, + "Oa": 5.02, + "Od": 1.02, + "Om": 1722, + "Oam": 69, + "Odm": 33, + "pd": 17, + "pm": 8 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 1, + "e": 5831, + "s": 1 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5860 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 3, + "e": 5872, + "s": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 5887, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 64, + "e": 5891 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 77, + "e": 5903 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 17, + "e": 5911, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -26, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 11, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 36, + "e": 6012, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 44, + "e": 6124 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6193 + } + ] + ] + } + ], + [ + 1232, + { + "n": "Niane", + "f": "Ibrahima", + "fp": "A", + "r": 10, + "c": 11, + "s": { + "Og": 6, + "Os": 48.5, + "On": 10, + "Oa": 4.85, + "Od": 1.89, + "Om": 668, + "Oam": 67, + "Odm": 21, + "pa": 10, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 3, + "q": null, + "m": 45, + "e": 5841 + } + ], + [ + -36, + { + "n": 3, + "q": null, + "m": 67, + "e": 5851 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 59, + "e": 5860 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5872, + "s": 1 + } + ], + [ + -6, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 6151, + "g": 3 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 76, + "e": 6163, + "g": 1 + } + ], + [ + -4, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6172, + "g": 2 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6181 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 70, + "e": 6193 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6207 + } + ] + ] + } + ], + [ + 1248, + { + "n": "Maïga", + "f": "Habib", + "fp": "MD", + "r": 16, + "c": 11, + "s": { + "Og": 1, + "Os": 172, + "On": 31, + "Oa": 5.55, + "Od": 1, + "Om": 2696, + "Oam": 87, + "Odm": 12, + "pd": 1, + "pm": 30, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 5860 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 5872 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 5903 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 89, + "e": 6063, + "g": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 26, + "e": 6105 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6124 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 89, + "e": 6133 + } + ], + [ + -6, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5851, + [ + { + "t": "Y" + } + ] + ], + [ + 5976, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1264, + { + "n": "Caillard", + "f": "Marc-Aurèle", + "fp": "G", + "r": 7, + "c": 11, + "s": { + "Os": 22.5, + "On": 5, + "Oa": 4.5, + "Od": 1.32, + "Om": 361, + "Oam": 72, + "Odm": 40, + "pg": 5 + }, + "p": [ + [ + -31, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 1, + "e": 6082, + "s": 1 + } + ] + ], + "fo": [ + [ + 5903, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1415, + { + "n": "Oukidja", + "f": "Alexandre", + "fp": "G", + "r": 15, + "c": 11, + "s": { + "Os": 185.5, + "On": 34, + "Oa": 5.46, + "Od": 1.22, + "Om": 3058, + "Oam": 90, + "pg": 34 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 3, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5860 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 89, + "e": 5932 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 89, + "e": 6082 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6124 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5932, + [ + { + "t": "R" + } + ] + ] + ] + } + ], + [ + 2139, + { + "n": "Vágner Dias", + "f": "", + "fp": "MO", + "r": 12, + "c": 11, + "s": { + "Og": 4, + "Os": 120, + "On": 26, + "Oa": 4.62, + "Od": 0.97, + "Om": 962, + "Oam": 37, + "Odm": 23, + "pm": 1, + "pa": 25, + "Omsn": 3 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5831, + "s": 1 + } + ], + [ + -37, + { + "n": 3, + "q": null, + "m": 62, + "e": 5841 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 5851, + "s": 1 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 31, + "e": 5860, + "g": 1, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5872, + "s": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 5887 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 33, + "e": 5903, + "s": 1 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 68, + "e": 5911 + } + ], + [ + -29, + { + "n": 3, + "q": null, + "m": 76, + "e": 5920, + "g": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5932, + "s": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 24, + "e": 5939, + "g": 1, + "s": 1 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 66, + "e": 5953 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 63, + "e": 5963 + } + ], + [ + -24, + { + "n": 3, + "q": null, + "m": 58, + "e": 5976 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 22, + "e": 5989, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 64, + "e": 6001 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 61, + "e": 6012 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6033, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6047, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 16, + "e": 6052, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6063, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 55, + "e": 6092 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 23, + "e": 6105, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6112, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6124, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 34, + "e": 6133, + "s": 1 + } + ] + ], + "fo": [ + [ + 5920, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2680, + { + "n": "Alakouch", + "f": "Sofiane", + "fp": "DL", + "r": 8, + "c": 11, + "s": { + "Os": 99, + "On": 22, + "Oa": 4.5, + "Od": 1.02, + "Om": 1513, + "Oam": 69, + "Odm": 32, + "pd": 22 + }, + "p": [ + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5886 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 59, + "e": 5905 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 87, + "e": 5924 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 88, + "e": 5944 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5960 + } + ], + [ + -24, + { + "n": 3, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 1, + "e": 5983, + "s": 1 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 85, + "e": 6037 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6055 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5846, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5869 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5910 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 58, + "e": 5954 + } + ], + [ + -22, + { + "n": 3, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 90, + "e": 6013 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -17, + { + "n": 3, + "q": null, + "m": 89, + "e": 6045 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 1, + "e": 6064, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 1, + "e": 6085, + "s": 1 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6114 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 35, + "e": 6185, + "s": 1 + } + ] + ], + "fo": [ + [ + 5905, + [ + { + "t": "Y" + } + ] + ], + [ + 5924, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3758, + { + "n": "Sabaly", + "f": "Cheick Tidiane", + "fp": "A", + "r": 5, + "c": 11, + "s": { + "Og": 3, + "Os": 155, + "On": 31, + "Oa": 5, + "Od": 0.97, + "Om": 1558, + "Oam": 50, + "Odm": 27, + "pm": 16, + "pa": 15, + "Omsn": 4.5 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6221, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 23, + "e": 6236, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 8, + "e": 6257, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6264, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 28, + "e": 6280, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6296, + "s": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 6302 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 45, + "e": 6316 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6324 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 45, + "e": 6333, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 60, + "e": 6353 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6366, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6371 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 73, + "e": 6386 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6407 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6431, + "s": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6446 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6466 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 81, + "e": 6475 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 76, + "e": 6490 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 73, + "e": 6501 + } + ], + [ + -8, + { + "n": 9, + "q": null, + "m": 90, + "e": 6514, + "g": 2 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 87, + "e": 6524 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 81, + "e": 6535 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 27, + "e": 6245, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 17, + "e": 6275, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6344, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 6411, + "g": 1 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 6427 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6451 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6193, + "s": 1 + } + ] + ], + "fo": [ + [ + 6302, + [ + { + "t": "Y" + } + ] + ], + [ + 6324, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3776, + { + "n": "Cabit", + "f": "Manuel", + "fp": "DL", + "r": 1, + "c": 11 + } + ], + [ + 3781, + { + "n": "Fofana", + "f": "Mamadou", + "fp": "DC", + "r": 7, + "c": 11, + "s": { + "Os": 78.5, + "On": 16, + "Oa": 4.91, + "Od": 0.76, + "Om": 1068, + "Oam": 67, + "Odm": 31, + "pd": 6, + "pm": 10 + }, + "p": [ + [ + -37, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5841 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 37, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 12, + "e": 6001, + "s": 1 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 55, + "e": 6092 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 6105, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 45, + "e": 6124, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 1, + "e": 6133, + "s": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 89, + "e": 6181 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ] + } + ], + [ + 3787, + { + "n": "Centonze", + "f": "Fabien", + "fp": "DL", + "r": 12, + "c": 11, + "s": { + "Og": 1, + "Os": 189.5, + "On": 36, + "Oa": 5.26, + "Od": 0.81, + "Om": 3222, + "Oam": 90, + "Odm": 3, + "pd": 19, + "pm": 17, + "Omsn": 4.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5860 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5872, + "g": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 5932 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6124 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5841, + [ + { + "t": "Y" + } + ] + ], + [ + 5903, + [ + { + "t": "Y" + } + ] + ], + [ + 5939, + [ + { + "t": "Y" + } + ] + ], + [ + 5976, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3809, + { + "n": "Delaine", + "f": "Thomas", + "fp": "DL", + "r": 11, + "c": 11, + "s": { + "Og": 3, + "Os": 123, + "On": 24, + "Oa": 5.13, + "Od": 0.78, + "Om": 1780, + "Oam": 74, + "Odm": 25, + "pd": 13, + "pm": 11, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 89, + "e": 5831 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 87, + "e": 5872 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 61, + "e": 5887 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 26, + "e": 5891, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 13, + "e": 5903, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5911 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5920, + "g": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 18, + "e": 5932, + "s": 1 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5939, + "g": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5963, + "g": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 79, + "e": 5981 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 54, + "e": 6012 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6105, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 45, + "e": 6124, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5963, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4897, + { + "n": "Tchimbembé", + "f": "Warren", + "fp": "A", + "r": 3, + "c": 11, + "s": { + "Os": 74.5, + "On": 15, + "Oa": 4.97, + "Od": 0.3, + "Om": 489, + "Oam": 33, + "Odm": 28, + "pm": 15 + }, + "p": [ + [ + -25, + { + "n": 4.5, + "q": null, + "m": 53, + "e": 5963, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 11, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 35, + "e": 5989, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 29, + "e": 6033, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 24, + "e": 6047, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6076 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6082, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 67, + "e": 6105 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6124 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 1, + "e": 6133, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 71, + "e": 6138 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 6, + "e": 6151, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 3, + "e": 6163, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 9, + "e": 6172, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 1, + "e": 6181, + "s": 1 + } + ] + ] + } + ], + [ + 4967, + { + "n": "Bassi", + "f": "Amine", + "fp": "MO", + "r": 7, + "c": 11, + "s": { + "Og": 7, + "Os": 115.5, + "On": 19, + "Oa": 6.08, + "Od": 0.79, + "Om": 1480, + "Oam": 78, + "Odm": 21, + "pm": 15, + "pa": 4, + "Omsn": 6 + }, + "p": [ + [ + -11, + { + "n": 7, + "q": null, + "m": 44, + "e": 6482, + "g": 1 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 86, + "e": 6444, + "g": 1 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 32, + "e": 6513, + "s": 1 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 75, + "e": 6502, + "g": 1 + } + ], + [ + -7, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6522, + "g": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6542 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 86, + "e": 6554 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6563 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 6569, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6580 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 6211 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 6224, + "g": 1 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6233, + "g": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 6240 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 83, + "e": 6254 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 60, + "e": 6259 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 87, + "e": 6272 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 6286, + "g": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6535 + } + ] + ], + "fo": [ + [ + 6240, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5012, + { + "n": "Kiki Kouyate", + "f": "", + "fp": "DC", + "r": 11, + "c": 11, + "s": { + "Og": 1, + "Os": 129.5, + "On": 25, + "Oa": 5.18, + "Od": 1.22, + "Om": 1961, + "Oam": 78, + "Odm": 28, + "pd": 25, + "Omsn": 7.5 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 36, + "e": 5851, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5953, + "g": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 27, + "e": 6082, + "s": 1 + } + ], + [ + -9, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6124 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 7, + "e": 6138, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 1, + "e": 6163, + "s": 1 + } + ] + ], + "fo": [ + [ + 5841, + [ + { + "t": "Y" + } + ] + ], + [ + 5887, + [ + { + "t": "Y" + } + ] + ], + [ + 5891, + [ + { + "t": "Y" + } + ] + ], + [ + 5903, + [ + { + "t": "Y" + } + ] + ], + [ + 5932, + [ + { + "t": "Y" + } + ] + ], + [ + 5953, + [ + { + "t": "Y" + } + ] + ], + [ + 5963, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6003, + { + "n": "Yade", + "f": "Papa Ndiaga", + "fp": "MO", + "r": 10, + "c": 11, + "s": { + "Og": 3, + "Os": 141.5, + "On": 28, + "Oa": 5.05, + "Od": 0.67, + "Om": 991, + "Oam": 35, + "Odm": 24, + "pm": 21, + "pa": 7, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 78, + "e": 5831 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5841, + "s": 1 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 59, + "e": 5851 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 45, + "e": 5860 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 3, + "e": 5872, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 26, + "e": 5891, + "s": 1 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 57, + "e": 5903 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 17, + "e": 5911, + "g": 1, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 18, + "e": 5932, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 23, + "e": 5953, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 63, + "e": 5963 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 32, + "e": 5976, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 66, + "e": 5981 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 35, + "e": 5989, + "g": 1, + "s": 1 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 6012, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 20, + "e": 6021, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 74, + "e": 6052 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 20, + "e": 6063, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 35, + "e": 6092, + "s": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 6112, + "g": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 13, + "e": 6124, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 13, + "e": 6138, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6151, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 4, + "e": 6163, + "s": 1 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 19, + "e": 6172, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6181, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 6193, + "s": 1 + } + ] + ], + "fo": [ + [ + 5860, + [ + { + "t": "Y" + } + ] + ], + [ + 5903, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6228, + { + "n": "Boahene", + "f": "Ernest", + "fp": "DL", + "r": 1, + "c": 11 + } + ], + [ + 6289, + { + "n": "Traore", + "f": "Boubacar", + "fp": "MD", + "r": 3, + "c": 11, + "s": { + "Og": 1, + "Os": 11.5, + "On": 2, + "Oa": 5.75, + "Od": 1.06, + "Om": 52, + "Oam": 26, + "Odm": 3, + "pm": 2, + "Omsn": 6.5 + }, + "p": [ + [ + -37, + { + "n": 6.5, + "q": null, + "m": 28, + "e": 5841, + "g": 1, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 24, + "e": 5851, + "s": 1 + } + ] + ] + } + ], + [ + 6341, + { + "n": "Mikautadze", + "f": "Georges", + "fp": "A", + "r": 1, + "c": 11 + } + ], + [ + 6392, + { + "n": "Lacroix", + "f": "Lenny", + "fp": "DC", + "r": 1, + "c": 11 + } + ], + [ + 6393, + { + "n": "Bronn", + "f": "Dylan", + "fp": "DC", + "r": 11, + "c": 11, + "s": { + "Og": 2, + "Os": 188.5, + "On": 38, + "Oa": 4.96, + "Od": 0.98, + "Om": 3413, + "Oam": 90, + "Odm": 1, + "pd": 38, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 5860, + "g": 1 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 3, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5932 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5989 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6012 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6033 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6076, + "g": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6082 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6092 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6112 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6124 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6138 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6151 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6163 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6181 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5831, + [ + { + "t": "Y" + } + ] + ], + [ + 5841, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6700, + { + "n": "Gueye", + "f": "Lamine", + "fp": "MO", + "r": 10, + "c": 11, + "s": { + "Og": 3, + "Os": 127, + "On": 25, + "Oa": 5.08, + "Od": 0.83, + "Om": 1374, + "Oam": 55, + "Odm": 23, + "pm": 7, + "pa": 18, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5831, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 30, + "e": 5851, + "s": 1 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 68, + "e": 5860, + "g": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5887, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 64, + "e": 5891 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 5903 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5911 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 5932 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 83, + "e": 5939 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 67, + "e": 5953, + "g": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 32, + "e": 5976, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 24, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 55, + "e": 5989 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 26, + "e": 6001, + "s": 1 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 61, + "e": 6012 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6021 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 6033 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6047 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6063 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 55, + "e": 6092 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 6112 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 77, + "e": 6124, + "g": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 6133 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6181, + "s": 1 + } + ] + ], + "fo": [ + [ + 5903, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 7458, + { + "n": "Sarr", + "f": "Pape", + "fp": "MD", + "r": 15, + "c": 11, + "s": { + "Og": 3, + "Os": 119.5, + "On": 22, + "Oa": 5.43, + "Od": 1.06, + "Om": 1593, + "Oam": 72, + "Odm": 29, + "pm": 22, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5831 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5841 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 8, + "q": null, + "m": 85, + "e": 5860, + "g": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5891 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 17, + "e": 5911, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5932 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5939 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 37, + "e": 5963 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 79, + "e": 5981, + "g": 1 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5989, + "g": 1 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 14, + "e": 6012, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 21, + "e": 6021, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 45, + "e": 6082 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 35, + "e": 6092, + "s": 1 + } + ] + ], + "fo": [ + [ + 5860, + [ + { + "t": "I" + } + ] + ], + [ + 5963, + [ + { + "t": "I" + } + ] + ], + [ + 5831, + [ + { + "t": "Y" + } + ] + ], + [ + 5891, + [ + { + "t": "Y" + } + ] + ], + [ + 5920, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7712, + { + "n": "Mikelbrencis", + "f": "William", + "fp": "DC", + "r": 1, + "c": 11 + } + ], + [ + 7778, + { + "n": "Ba", + "f": "Ousmane", + "fp": "G", + "r": 3, + "c": 11 + } + ], + [ + 8205, + { + "n": "Joseph", + "f": "Lenny", + "fp": "A", + "r": 6, + "c": 11 + } + ], + [ + 24, + { + "n": "Sidibé", + "f": "Djibril", + "fp": "DL", + "r": 14, + "c": 13, + "s": { + "Os": 170.5, + "On": 34, + "Oa": 5.01, + "Od": 0.75, + "Om": 2156, + "Oam": 63, + "Odm": 33, + "pd": 34 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 25, + "e": 5854, + "s": 1 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5892 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 10, + "e": 5955, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 30, + "e": 6042, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 59, + "e": 6142 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 32, + "e": 3932, + "s": 1 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 3943 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 3973, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 13, + "e": 3986, + "s": 1 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5864 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 83, + "e": 5903 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 5923, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 9, + "e": 5943, + "s": 1 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 5964 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 8, + "e": 6049, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 45, + "e": 6062, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 5, + "e": 6113, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 45, + "e": 6122, + "s": 1 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 45, + "e": 6132 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6193 + } + ] + ], + "fo": [ + [ + 5923, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 250, + { + "n": "Lecomte", + "f": "Benjamin", + "fp": "G", + "r": 13, + "c": 13, + "s": { + "Os": 147, + "On": 28, + "Oa": 5.25, + "Od": 1.02, + "Om": 2520, + "Oam": 90, + "pg": 28 + }, + "p": [ + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6164 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6203 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5864 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5892 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6193 + } + ] + ], + "fo": [ + [ + 5964, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 336, + { + "n": "Jorge", + "f": "", + "fp": "DL", + "r": 1, + "c": 13 + } + ], + [ + 646, + { + "n": "Fàbregas", + "f": "Cesc", + "fp": "MO", + "r": 8, + "c": 13, + "s": { + "Og": 2, + "Os": 108.5, + "On": 21, + "Oa": 5.17, + "Od": 0.84, + "Om": 873, + "Oam": 42, + "Odm": 24, + "pm": 20, + "pa": 1, + "Omsn": 7 + }, + "p": [ + [ + -12, + { + "n": 4, + "q": null, + "m": 61, + "e": 6093 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 45, + "e": 6103, + "g": 1, + "s": 1 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 12, + "e": 5836, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5864 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 11, + "e": 5868, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 40, + "e": 5892, + "s": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 76, + "e": 5903, + "g": 1 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 24, + "e": 5915, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 14, + "e": 5923, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 30, + "e": 5937, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 5943, + "s": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 32, + "e": 5964, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 34, + "e": 5975, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 32, + "e": 6081, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 6, + "e": 6122, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 45, + "e": 6132, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 31, + "e": 6142, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 65, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6164 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 72, + "e": 6176 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 89, + "e": 6183 + } + ] + ], + "fo": [ + [ + 5892, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 807, + { + "n": "Mannone", + "f": "Vito", + "fp": "G", + "r": 7, + "c": 13, + "s": { + "Os": 45, + "On": 9, + "Oa": 5, + "Od": 1.09, + "Om": 810, + "Oam": 90, + "pg": 9 + }, + "p": [ + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6113 + } + ] + ] + } + ], + [ + 1227, + { + "n": "Aguilar", + "f": "Ruben", + "fp": "DL", + "r": 11, + "c": 13, + "s": { + "Og": 1, + "Os": 168.5, + "On": 33, + "Oa": 5.11, + "Od": 0.86, + "Om": 2227, + "Oam": 67, + "Odm": 30, + "pd": 23, + "pm": 10, + "Omsn": 7 + }, + "p": [ + [ + -37, + { + "n": 5.5, + "q": null, + "m": 7, + "e": 5843, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 89, + "e": 5854 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 5864 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5868 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 15, + "e": 5884, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 45, + "e": 5892 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 76, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 60, + "e": 5937 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5943 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 80, + "e": 5955 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 23, + "e": 5964, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5975, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 5982, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 45, + "e": 6002 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 80, + "e": 6014 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 6, + "e": 6022, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 83, + "e": 6030 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 45, + "e": 6122 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6164, + "g": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6203 + } + ] + ] + } + ], + [ + 1623, + { + "n": "Ben Yedder", + "f": "Wissam", + "fp": "A", + "r": 35, + "c": 13, + "s": { + "Og": 20, + "Os": 201.5, + "On": 37, + "Oa": 5.45, + "Od": 1.23, + "Om": 2625, + "Oam": 71, + "Odm": 19, + "pa": 37, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 89, + "e": 5836 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 84, + "e": 5843, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 80, + "e": 5854 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5864, + "g": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 72, + "e": 5868, + "g": 1, + "s": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 66, + "e": 5884 + } + ], + [ + -32, + { + "n": 7.5, + "q": null, + "m": 45, + "e": 5892, + "g": 2, + "s": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 26, + "e": 5903, + "g": 2, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5915, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 76, + "e": 5923 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 59, + "e": 5943 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5955 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5964, + "g": 2 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 56, + "e": 5975 + } + ], + [ + -23, + { + "n": 7.5, + "q": null, + "m": 64, + "e": 5982, + "g": 2 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 5995 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6002 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 80, + "e": 6014, + "g": 2 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 78, + "e": 6022 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 73, + "e": 6030 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 69, + "e": 6042 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 65, + "e": 6049 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6062 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6072, + "g": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6081 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 6093, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 85, + "e": 6113 + } + ], + [ + -9, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6122, + "g": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6132, + "g": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6142, + "g": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 65, + "e": 6149 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 72, + "e": 6164, + "g": 2 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 83, + "e": 6176, + "g": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 78, + "e": 6183 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 76, + "e": 6193 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5868, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1928, + { + "n": "Maripán", + "f": "Guillermo", + "fp": "DC", + "r": 18, + "c": 13, + "s": { + "Og": 5, + "Os": 150, + "On": 28, + "Oa": 5.36, + "Od": 1.09, + "Om": 2087, + "Oam": 75, + "Odm": 29, + "pd": 28, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 5843 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5864 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5892 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5955, + "g": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5995, + "g": 1 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6002, + "g": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6022, + "g": 1 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 45, + "e": 6030, + "g": 1, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6072, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 10, + "e": 6081, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 18, + "e": 6122, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 1, + "e": 6176, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 15, + "e": 6193, + "s": 1 + } + ] + ], + "fo": [ + [ + 5836, + [ + { + "t": "Y" + } + ] + ], + [ + 5843, + [ + { + "t": "Y" + } + ] + ], + [ + 5854, + [ + { + "t": "Y" + } + ] + ], + [ + 5892, + [ + { + "t": "Y" + } + ] + ], + [ + 5943, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2034, + { + "n": "Keita Baldé", + "f": "", + "fp": "A", + "r": 5, + "c": 13, + "s": { + "Og": 7, + "Os": 119.5, + "On": 24, + "Oa": 4.98, + "Od": 1.08, + "Om": 1183, + "Oam": 49, + "Odm": 30, + "pa": 24, + "Omsn": 4 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 7218 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 28, + "e": 8306, + "g": 1, + "s": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 73, + "e": 7229, + "g": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 17, + "e": 7237, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 7246 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 8272, + "s": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 45, + "e": 7259, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 23, + "e": 7267, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 6, + "e": 7274, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 7281, + "s": 1 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 63, + "e": 7296 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 71, + "e": 7301 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 29, + "e": 7303, + "s": 1 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 7316 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 7324, + "g": 1 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 7617, + "g": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 68, + "e": 7339 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 58, + "e": 7345, + "g": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 28, + "e": 7354, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 86, + "e": 7595 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 7367, + "g": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 16, + "e": 7382, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 24, + "e": 7439, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 24, + "e": 7442, + "s": 1 + } + ] + ], + "fo": [ + [ + 7259, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2038, + { + "n": "Geubbels", + "f": "Willem", + "fp": "A", + "r": 8, + "c": 13, + "s": { + "Og": 1, + "Os": 61.5, + "On": 14, + "Oa": 4.39, + "Od": 0.92, + "Om": 283, + "Oam": 20, + "Odm": 13, + "pm": 1, + "pa": 13, + "Omsn": 6.5 + }, + "p": [ + [ + -35, + { + "n": 2, + "q": null, + "m": 8, + "e": 5864, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6030 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6042, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 25, + "e": 6049, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6062, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 20, + "e": 6081, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 45, + "e": 6103 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6113, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6142, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6149, + "s": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 18, + "e": 6176, + "s": 1 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 28, + "e": 6183, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6193, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6203, + "s": 1 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "R" + } + ] + ] + ] + } + ], + [ + 2238, + { + "n": "Tchouameni", + "f": "Aurelien", + "fp": "MD", + "r": 17, + "c": 13, + "s": { + "Og": 2, + "Os": 204, + "On": 36, + "Oa": 5.67, + "Od": 1.13, + "Om": 3071, + "Oam": 85, + "Odm": 10, + "pm": 36, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5864 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5892 + } + ], + [ + -30, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 5915, + "g": 1 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 58, + "e": 5964 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 6002, + "g": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 6072 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 69, + "e": 6081 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 89, + "e": 6103 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 78, + "e": 6132 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 59, + "e": 6142 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 55, + "e": 6164 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6176 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 75, + "e": 6193 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5868, + [ + { + "t": "Y" + } + ] + ], + [ + 5923, + [ + { + "t": "Y" + } + ] + ], + [ + 5955, + [ + { + "t": "Y" + } + ] + ], + [ + 5964, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2275, + { + "n": "Pellegri", + "f": "Pietro", + "fp": "A", + "r": 5, + "c": 13, + "s": { + "Og": 1, + "Os": 69, + "On": 16, + "Oa": 4.31, + "Od": 0.7, + "Om": 218, + "Oam": 14, + "Odm": 10, + "pa": 16, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5836, + "s": 1 + } + ], + [ + -35, + { + "n": 3, + "q": null, + "m": 8, + "e": 5864, + "s": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 10, + "e": 5964, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 10, + "e": 5995, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6002, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6042, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 1, + "e": 6049, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 29, + "e": 6062, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6072, + "s": 1 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 21, + "e": 6081, + "g": 1, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 10, + "e": 6093, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 5, + "e": 6113, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6122, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6142, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6149, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 12, + "e": 6183, + "s": 1 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "R" + } + ] + ] + ] + } + ], + [ + 2459, + { + "n": "Gelson Martins", + "f": "", + "fp": "A", + "r": 13, + "c": 13, + "s": { + "Og": 3, + "Os": 126.5, + "On": 23, + "Oa": 5.5, + "Od": 1.11, + "Om": 1564, + "Oam": 68, + "Odm": 23, + "pm": 16, + "pa": 7, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 72, + "e": 5836 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 71, + "e": 5843 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 5854, + "s": 1 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 75, + "e": 5884, + "g": 1 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 14, + "e": 5903, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 6022 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 64, + "e": 6030 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 84, + "e": 6042 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 82, + "e": 6049 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 6062 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 59, + "e": 6072 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 70, + "e": 6081 + } + ], + [ + -12, + { + "n": 7.5, + "q": null, + "m": 80, + "e": 6093, + "g": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6103 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 85, + "e": 6113 + } + ], + [ + -9, + { + "n": 8, + "q": null, + "m": 83, + "e": 6122, + "g": 1 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 78, + "e": 6132 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 8, + "e": 6176, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6183 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 76, + "e": 6193 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6203 + } + ] + ] + } + ], + [ + 2622, + { + "n": "Diop", + "f": "Sofiane", + "fp": "MO", + "r": 14, + "c": 13, + "s": { + "Og": 7, + "Os": 181.5, + "On": 32, + "Oa": 5.67, + "Od": 1.04, + "Om": 2030, + "Oam": 63, + "Odm": 24, + "pm": 28, + "pa": 4, + "Omsn": 6.5 + }, + "p": [ + [ + -33, + { + "n": 6, + "q": null, + "m": 23, + "e": 5884, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 45, + "e": 5892 + } + ], + [ + -30, + { + "n": 7.5, + "q": null, + "m": 66, + "e": 5915, + "g": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5923, + "s": 1 + } + ], + [ + -28, + { + "n": 3.5, + "q": null, + "m": 30, + "e": 5937, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5943 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 80, + "e": 5955, + "g": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 5964 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 45, + "e": 5975 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 83, + "e": 5982 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5995 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 68, + "e": 6002 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6014 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 84, + "e": 6022 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 45, + "e": 6030, + "g": 1, + "s": 1 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 45, + "e": 6042, + "g": 1 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 6049 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 28, + "e": 6062 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 83, + "e": 6093, + "g": 1 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 89, + "e": 6103 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 73, + "e": 6113, + "g": 1 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 84, + "e": 6122 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 12, + "e": 6132, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 71, + "e": 6142 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 36, + "e": 6164, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6176 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6183, + "g": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6193, + "s": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6203, + "s": 1 + } + ] + ], + "fo": [ + [ + 5964, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2683, + { + "n": "Disasi", + "f": "Axel", + "fp": "DC", + "r": 16, + "c": 13, + "s": { + "Og": 3, + "Oao": 1, + "Os": 149.5, + "On": 29, + "Oa": 5.16, + "Od": 0.82, + "Om": 2016, + "Oam": 70, + "Odm": 30, + "pd": 29, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 1, + "e": 5836, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 5843, + "a": 1, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 65, + "e": 5854 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5864 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 5868 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5892 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 75, + "e": 5923 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 5943 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5982, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 1, + "e": 6014, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 6, + "e": 6022, + "s": 1 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 45, + "e": 6030, + "g": 1 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 23, + "e": 6062 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6113, + "g": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6164 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6193 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6203, + "g": 1 + } + ] + ], + "fo": [ + [ + 5923, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2720, + { + "n": "Golovin", + "f": "Aleksandr", + "fp": "MO", + "r": 16, + "c": 13, + "s": { + "Og": 5, + "Os": 125, + "On": 21, + "Oa": 5.95, + "Od": 1.15, + "Om": 1073, + "Oam": 51, + "Odm": 29, + "pm": 18, + "pa": 3, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 71, + "e": 5843, + "g": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 10, + "e": 5854, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 79, + "e": 5868 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 67, + "e": 5884 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 82, + "e": 5892 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 64, + "e": 5903 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 76, + "e": 5915 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 68, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 73, + "e": 5937 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 31, + "e": 5943, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 10, + "e": 5955, + "s": 1 + } + ], + [ + -24, + { + "n": 9, + "q": null, + "m": 87, + "e": 5975, + "g": 3 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 26, + "e": 5982, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 21, + "e": 5995, + "s": 1 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 45, + "e": 6002, + "s": 1 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 6014, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 24, + "e": 6022, + "s": 1 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 26, + "e": 6030, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 16, + "e": 6193 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 87, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5854, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2721, + { + "n": "Barreca", + "f": "Antonio", + "fp": "DL", + "r": 3, + "c": 13, + "s": { + "Os": 43.5, + "On": 9, + "Oa": 4.83, + "Od": 0.66, + "Om": 416, + "Oam": 46, + "Odm": 30, + "pd": 6, + "pm": 3 + }, + "p": [ + [ + -21, + { + "n": 5, + "q": null, + "m": 8, + "e": 7328, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 59, + "e": 7386 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 17, + "e": 7394, + "s": 1 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 67, + "e": 5451, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 11, + "e": 5484, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5491, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5506 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 5511, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5521 + } + ] + ] + } + ], + [ + 2768, + { + "n": "Fofana", + "f": "Youssouf", + "fp": "MD", + "r": 17, + "c": 13, + "s": { + "Os": 188, + "On": 35, + "Oa": 5.37, + "Od": 1, + "Om": 2881, + "Oam": 82, + "Odm": 14, + "pm": 35 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 78, + "e": 5836 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 68, + "e": 5864 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 83, + "e": 5884 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 90, + "e": 5892 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 60, + "e": 5937 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 5943 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 5975 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 5995 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6022 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6062 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6072 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 83, + "e": 6093 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 54, + "e": 6164 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 46, + "e": 6193 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5864, + [ + { + "t": "Y" + } + ] + ], + [ + 5884, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2892, + { + "n": "Isidor", + "f": "Wilson", + "fp": "A", + "r": 1, + "c": 13 + } + ], + [ + 2956, + { + "n": "Biancone", + "f": "Giulian", + "fp": "DL", + "r": 2, + "c": 13, + "s": { + "Os": 9.5, + "On": 2, + "Oa": 4.75, + "Od": 0.35, + "Om": 92, + "Oam": 46, + "Odm": 40, + "pd": 2 + }, + "p": [ + [ + -6, + { + "n": 5, + "q": null, + "m": 74, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6164, + "s": 1 + } + ] + ] + } + ], + [ + 2961, + { + "n": "Badiashile", + "f": "Benoit", + "fp": "DC", + "r": 16, + "c": 13, + "s": { + "Og": 2, + "Os": 180.5, + "On": 35, + "Oa": 5.16, + "Od": 0.92, + "Om": 2871, + "Oam": 82, + "Odm": 17, + "pd": 35, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 29, + "e": 5864, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 5868, + "s": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 83, + "e": 5915 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 3, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5982 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 84, + "e": 6022 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6030 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 62, + "e": 6062, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 45, + "e": 6072 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6081 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6122 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 90, + "e": 6132 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6164 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6193, + "g": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6203, + "g": 1 + } + ] + ], + "fo": [ + [ + 5843, + [ + { + "t": "Y" + } + ] + ], + [ + 5854, + [ + { + "t": "Y" + } + ] + ], + [ + 5915, + [ + { + "t": "Y" + } + ] + ], + [ + 5975, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3761, + { + "n": "Jean Lucas", + "f": "", + "fp": "MD", + "r": 12, + "c": 13, + "s": { + "Os": 118.5, + "On": 24, + "Oa": 4.94, + "Od": 0.85, + "Om": 1178, + "Oam": 49, + "Odm": 37, + "pm": 22, + "pa": 2 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 12, + "e": 5829, + "s": 1 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 67, + "e": 5853 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5859, + "s": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 89, + "e": 5879 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 82, + "e": 5901 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 45, + "e": 5908 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5922 + } + ], + [ + -28, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5929 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5961 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5968 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5989, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6005, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6009, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6031, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 3, + "e": 6054, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 1, + "e": 6098, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 4, + "e": 6117, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6147, + "s": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6162 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 28, + "e": 6170, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 35, + "e": 6204, + "s": 1 + } + ] + ], + "fo": [ + [ + 5853, + [ + { + "t": "Y" + } + ] + ], + [ + 5879, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5888, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4937, + { + "n": "Marcelin", + "f": "Jean", + "fp": "DC", + "r": 8, + "c": 13 + } + ], + [ + 6701, + { + "n": "Pavlovic", + "f": "Strahinja", + "fp": "DC", + "r": 3, + "c": 13, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 1, + "Oam": 1, + "pd": 1 + }, + "p": [ + [ + -16, + { + "n": 5, + "q": null, + "m": 1, + "e": 6049, + "s": 1 + } + ] + ] + } + ], + [ + 6707, + { + "n": "Majecki", + "f": "Radoslaw", + "fp": "G", + "r": 3, + "c": 13, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 90, + "Oam": 90, + "pg": 1 + }, + "p": [ + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6183 + } + ] + ] + } + ], + [ + 6796, + { + "n": "Musaba", + "f": "Anthony", + "fp": "A", + "r": 3, + "c": 13 + } + ], + [ + 6926, + { + "n": "Millot", + "f": "Enzo", + "fp": "MO", + "r": 3, + "c": 13, + "s": { + "Os": 9.5, + "On": 2, + "Oa": 4.75, + "Od": 0.35, + "Om": 39, + "Oam": 20, + "Odm": 8, + "pa": 2 + }, + "p": [ + [ + -14, + { + "n": 5, + "q": null, + "m": 14, + "e": 6072, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6149, + "s": 1 + } + ] + ] + } + ], + [ + 6927, + { + "n": "Matazo", + "f": "Eliot", + "fp": "MD", + "r": 11, + "c": 13, + "s": { + "Og": 1, + "Os": 50.5, + "On": 10, + "Oa": 5.05, + "Od": 1.01, + "Om": 313, + "Oam": 31, + "Odm": 25, + "pm": 9, + "pa": 1, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 19, + "e": 5843, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 65, + "e": 5854, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 29, + "e": 5864, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 7, + "e": 5892, + "s": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 76, + "e": 5903 + } + ], + [ + -17, + { + "n": 3, + "q": null, + "m": 35, + "e": 6042 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 45, + "e": 6062, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6093, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 1, + "e": 6103, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 29, + "e": 6164, + "s": 1 + } + ] + ] + } + ], + [ + 6928, + { + "n": "Matsima", + "f": "Chrislain", + "fp": "DC", + "r": 5, + "c": 13, + "s": { + "Os": 44.5, + "On": 9, + "Oa": 4.94, + "Od": 0.46, + "Om": 349, + "Oam": 39, + "Odm": 41, + "pd": 9 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 1, + "e": 5854, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 7, + "e": 5903, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 7, + "e": 5915, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 1, + "e": 6014, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6132, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6149 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 18, + "e": 6164, + "s": 1 + } + ] + ] + } + ], + [ + 7145, + { + "n": "Caio Henrique", + "f": "", + "fp": "DL", + "r": 18, + "c": 13, + "s": { + "Os": 165, + "On": 31, + "Oa": 5.32, + "Od": 0.83, + "Om": 2374, + "Oam": 77, + "Odm": 23, + "pd": 24, + "pm": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 81, + "e": 5864 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5884 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5892 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5903 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 5915 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 85, + "e": 5937 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5943 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 80, + "e": 5964 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 26, + "e": 5975, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6002 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 89, + "e": 6014 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 85, + "e": 6022 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 7, + "e": 6030, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 60, + "e": 6042 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 89, + "e": 6049 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 6072 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6081 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 45, + "e": 6103, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6122 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6132, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 31, + "e": 6142, + "s": 1 + } + ] + ] + } + ], + [ + 7182, + { + "n": "Volland", + "f": "Kevin", + "fp": "A", + "r": 30, + "c": 13, + "s": { + "Og": 16, + "Os": 196, + "On": 35, + "Oa": 5.6, + "Od": 1.38, + "Om": 2781, + "Oam": 79, + "Odm": 17, + "pm": 4, + "pa": 31, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 89, + "e": 5836 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 83, + "e": 5843 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5854 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5864, + "g": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5868 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 83, + "e": 5884, + "g": 1 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5903, + "g": 1 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5923 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 5937 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5943, + "g": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5955 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5975, + "g": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5982 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 5995, + "g": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 89, + "e": 6002 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 89, + "e": 6014, + "g": 1 + } + ], + [ + -19, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6022, + "g": 1 + } + ], + [ + -18, + { + "n": 8, + "q": null, + "m": 90, + "e": 6030, + "g": 1 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 84, + "e": 6042, + "g": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 89, + "e": 6049, + "g": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6062 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 6072 + } + ], + [ + -13, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6081 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 80, + "e": 6093, + "g": 1 + } + ], + [ + -11, + { + "n": 8, + "q": null, + "m": 90, + "e": 6103, + "g": 2 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 6113 + } + ], + [ + -9, + { + "n": 8, + "q": null, + "m": 67, + "e": 6122, + "g": 2 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6132, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 45, + "e": 6142 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 6149 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6164 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 82, + "e": 6176 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 62, + "e": 6183 + } + ] + ], + "fo": [ + [ + 5836, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7616, + { + "n": "Diatta", + "f": "Krépin", + "fp": "MO", + "r": 7, + "c": 13, + "s": { + "Og": 1, + "Os": 56, + "On": 12, + "Oa": 4.67, + "Od": 0.65, + "Om": 383, + "Oam": 32, + "Odm": 21, + "pm": 3, + "pa": 9, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5836, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5843, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5892, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5903, + "s": 1 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 14, + "e": 5915, + "g": 1, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5937, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 31, + "e": 5943, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5964 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 45, + "e": 5975, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 5982 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 69, + "e": 5995 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 22, + "e": 6002, + "s": 1 + } + ] + ], + "fo": [ + [ + 5943, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7848, + { + "n": "Decarpentrie", + "f": "Valentin", + "fp": "MO", + "r": 1, + "c": 13 + } + ], + [ + 8213, + { + "n": "Jakobs", + "f": "Ismail", + "fp": "DL", + "r": 7, + "c": 13 + } + ], + [ + 8216, + { + "n": "Bongiovanni", + "f": "Adrien", + "fp": "MO", + "r": 2, + "c": 13 + } + ], + [ + 8221, + { + "n": "Nübel", + "f": "Alexander", + "fp": "G", + "r": 7, + "c": 13 + } + ], + [ + 8892, + { + "n": "Lemarechal", + "f": "Felix", + "fp": "MO", + "r": 3, + "c": 13 + } + ], + [ + 40, + { + "n": "Delort", + "f": "Andy", + "fp": "A", + "r": 29, + "c": 15, + "s": { + "Og": 15, + "Os": 180.5, + "On": 30, + "Oa": 6.02, + "Od": 1.29, + "Om": 2491, + "Oam": 83, + "Odm": 13, + "pa": 30, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 90, + "e": 5832, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 77, + "e": 5857, + "g": 1 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 5865, + "g": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -11, + { + "n": 9, + "q": null, + "m": 90, + "e": 6104, + "g": 2 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6134 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6152 + } + ], + [ + -3, + { + "n": 7.5, + "q": null, + "m": 85, + "e": 6184 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 87, + "e": 5880, + "g": 1 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5893, + "g": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 89, + "e": 5924, + "g": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 45, + "e": 5962 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 66, + "e": 5972 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6014, + "g": 1 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 6043, + "g": 1 + } + ], + [ + -16, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6048, + "g": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 88, + "e": 6089 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6108, + "g": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 45, + "e": 6142 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6160, + "g": 1 + } + ], + [ + -4, + { + "n": 8, + "q": null, + "m": 85, + "e": 6173, + "g": 2 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 63, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5972, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 153, + { + "n": "Pedro Mendes", + "f": "", + "fp": "DC", + "r": 3, + "c": 15, + "s": { + "Og": 2, + "Os": 110, + "On": 22, + "Oa": 5, + "Od": 0.67, + "Om": 1628, + "Oam": 74, + "Odm": 27, + "pd": 22, + "Omsn": 5 + }, + "p": [ + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 53, + "e": 5880 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 8, + "e": 5912, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5933, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 9, + "e": 5962, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 45, + "e": 5981 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 64, + "e": 5994 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6069, + "g": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6104, + "g": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6108 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 76, + "e": 6127 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 87, + "e": 6152 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6160 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6184 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 88, + "e": 6189 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5880, + [ + { + "t": "I" + } + ] + ], + [ + 5933, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 212, + { + "n": "Ferri", + "f": "Jordan", + "fp": "MD", + "r": 13, + "c": 15, + "s": { + "Os": 172, + "On": 34, + "Oa": 5.06, + "Od": 0.7, + "Om": 2592, + "Oam": 76, + "Odm": 19, + "pm": 34 + }, + "p": [ + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 60, + "e": 5857 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 60, + "e": 5873 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 79, + "e": 5893 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 74, + "e": 5924 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 83, + "e": 5933 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 57, + "e": 5972 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 5994 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 83, + "e": 6014 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6023 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6048, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 6104 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6108 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 45, + "e": 6134, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 17, + "e": 6142, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 6152 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 65, + "e": 6160 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6173 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6184 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 63, + "e": 6189 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5893, + [ + { + "t": "Y" + } + ] + ], + [ + 5933, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 243, + { + "n": "Laborde", + "f": "Gaetan", + "fp": "A", + "r": 29, + "c": 15, + "s": { + "Og": 16, + "Os": 215, + "On": 38, + "Oa": 5.66, + "Od": 1.24, + "Om": 3270, + "Oam": 86, + "Odm": 7, + "pm": 12, + "pa": 26, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5832, + "g": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 60, + "e": 5857, + "g": 2 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 5865 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5873, + "g": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 77, + "e": 5880 + } + ], + [ + -32, + { + "n": 8, + "q": null, + "m": 90, + "e": 5893, + "g": 2 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 82, + "e": 5912, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 83, + "e": 5933 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5962 + } + ], + [ + -24, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 5972, + "g": 2 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5981, + "g": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 68, + "e": 6004 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6014 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6043, + "g": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6048, + "g": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 86, + "e": 6063 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6069, + "g": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6089 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 89, + "e": 6104, + "g": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 80, + "e": 6134 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 73, + "e": 6142 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6152 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6160 + } + ], + [ + -4, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6184, + "g": 1 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6189, + "g": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 86, + "e": 6204 + } + ] + ] + } + ], + [ + 270, + { + "n": "Souquet", + "f": "Arnaud", + "fp": "DL", + "r": 9, + "c": 15, + "s": { + "Og": 1, + "Os": 112, + "On": 23, + "Oa": 4.87, + "Od": 0.43, + "Om": 1224, + "Oam": 53, + "Odm": 32, + "pd": 16, + "pm": 7, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 61, + "e": 5832 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 69, + "e": 5844 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5857 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 5880, + "s": 1 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 11, + "e": 5893, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 16, + "e": 5912, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 7, + "e": 5933, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 17, + "e": 5945, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 15, + "e": 5951, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 5972 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 37, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 27, + "e": 5994, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6023 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 65, + "e": 6048 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 10, + "e": 6063, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 82, + "e": 6152 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 45, + "e": 6173, + "g": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 85, + "e": 6184 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 88, + "e": 6189 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5832, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 320, + { + "n": "Mollet", + "f": "Florent", + "fp": "MO", + "r": 19, + "c": 15, + "s": { + "Og": 3, + "Os": 176.5, + "On": 34, + "Oa": 5.19, + "Od": 0.84, + "Om": 2369, + "Oam": 70, + "Odm": 24, + "pm": 31, + "pa": 3, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4, + "q": null, + "m": 39, + "e": 5844 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 79, + "e": 5873 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 5893 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 70, + "e": 5912 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 73, + "e": 5945 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5962 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 67, + "e": 5972 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 35, + "e": 6004 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 54, + "e": 6023 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6032, + "g": 1 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 79, + "e": 6063 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 6069 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 6083 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6089 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 6104 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 89, + "e": 6108, + "g": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6127 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 60, + "e": 6134 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 61, + "e": 6142 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6152, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6160, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 16, + "e": 6173, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 43, + "e": 6189 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 27, + "e": 6204, + "s": 1 + } + ] + ], + "fo": [ + [ + 5844, + [ + { + "t": "R" + } + ] + ], + [ + 5873, + [ + { + "t": "Y" + } + ] + ], + [ + 5880, + [ + { + "t": "Y" + } + ] + ], + [ + 5893, + [ + { + "t": "Y" + } + ] + ], + [ + 5972, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 927, + { + "n": "Sakho", + "f": "Mamadou", + "fp": "DC", + "r": 8, + "c": 15, + "s": { + "Os": 36.5, + "On": 8, + "Oa": 4.56, + "Od": 0.94, + "Om": 560, + "Oam": 70, + "Odm": 35, + "pd": 8 + }, + "p": [ + [ + -6, + { + "n": 5, + "q": null, + "m": 5, + "e": 6879, + "s": 1 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6896 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6905 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6917 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 3947 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 3951 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 3958 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 82, + "e": 3972, + "s": 1 + } + ] + ] + } + ], + [ + 1242, + { + "n": "Bertaud", + "f": "Dimitry", + "fp": "G", + "r": 8, + "c": 15, + "s": { + "Os": 53, + "On": 9, + "Oa": 5.89, + "Od": 1.14, + "Om": 744, + "Oam": 83, + "Odm": 16, + "pg": 9 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 8, + "q": null, + "m": 90, + "e": 5844 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5981 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6004, + "s": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 45, + "e": 6134, + "s": 1 + } + ] + ] + } + ], + [ + 1244, + { + "n": "Cozza", + "f": "Nicolas", + "fp": "DC", + "r": 8, + "c": 15, + "s": { + "Os": 96, + "On": 20, + "Oa": 4.8, + "Od": 0.66, + "Om": 1373, + "Oam": 69, + "Odm": 30, + "pd": 20 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 83, + "e": 5832 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5844 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 79, + "e": 5873 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 86, + "e": 5893 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 5912 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 22, + "e": 5962, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 45, + "e": 5981, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 22, + "e": 6004, + "s": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 83, + "e": 6048 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 1, + "e": 6108, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 14, + "e": 6127, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 68, + "e": 6173 + } + ] + ], + "fo": [ + [ + 5912, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1532, + { + "n": "Junior Sambia", + "f": "", + "fp": "MD", + "r": 12, + "c": 15, + "s": { + "Og": 1, + "Os": 185, + "On": 36, + "Oa": 5.14, + "Od": 0.9, + "Om": 2446, + "Oam": 68, + "Odm": 31, + "pd": 21, + "pm": 15, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 5844, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 79, + "e": 5893 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 74, + "e": 5912, + "g": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 5933 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 33, + "e": 5972, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 53, + "e": 5981 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 6023, + "s": 1 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6048, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 80, + "e": 6063 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6104 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 1, + "e": 6142, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 8, + "e": 6152, + "s": 1 + } + ], + [ + -5, + { + "n": 3, + "q": null, + "m": 65, + "e": 6160 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 45, + "e": 6173, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 22, + "e": 6184, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 27, + "e": 6189, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6204, + "s": 1 + } + ] + ], + "fo": [ + [ + 5912, + [ + { + "t": "I" + } + ] + ], + [ + 5898, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2268, + { + "n": "Oyongo", + "f": "Ambroise", + "fp": "DL", + "r": 1, + "c": 15, + "s": { + "Og": 1, + "Os": 65, + "On": 13, + "Oa": 5, + "Od": 0.84, + "Om": 551, + "Oam": 42, + "Odm": 36, + "pd": 11, + "pm": 2, + "Omsn": 6.5 + }, + "p": [ + [ + -19, + { + "n": 6.5, + "q": null, + "m": 64, + "e": 6023, + "g": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 12, + "e": 6043, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 16, + "e": 6083, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 22, + "e": 6089, + "s": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6108 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 89, + "e": 6142 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 15, + "e": 6152, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 7, + "e": 6160, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 22, + "e": 6173, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 6, + "e": 6184, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 6189, + "s": 1 + } + ] + ] + } + ], + [ + 2613, + { + "n": "Skuletic", + "f": "Petar", + "fp": "A", + "r": 8, + "c": 15, + "s": { + "Og": 2, + "Os": 87.5, + "On": 19, + "Oa": 4.61, + "Od": 0.57, + "Om": 218, + "Oam": 11, + "Odm": 13, + "pa": 19, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5832, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5857, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5865, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5873, + "s": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 3, + "e": 5880, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5893, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5924, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 7, + "e": 5933, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 55, + "e": 5945 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5951, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5962, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 9, + "e": 5972, + "g": 1, + "s": 1 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 18, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5994, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 10, + "e": 6063, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6083, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 12, + "e": 6089, + "g": 1, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6127, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 2, + "e": 6189, + "s": 1 + } + ] + ] + } + ], + [ + 2733, + { + "n": "Savanier", + "f": "Téji", + "fp": "MD", + "r": 22, + "c": 15, + "s": { + "Og": 5, + "Os": 153, + "On": 27, + "Oa": 5.67, + "Od": 1.27, + "Om": 2174, + "Oam": 81, + "Odm": 18, + "pm": 22, + "pa": 5, + "Omsn": 7 + }, + "p": [ + [ + -37, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5844 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 87, + "e": 5880 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5893 + } + ], + [ + -30, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 56, + "e": 5951 + } + ], + [ + -25, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5962, + "g": 1 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5972, + "g": 1 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 72, + "e": 5981 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 36, + "e": 6014, + "s": 1 + } + ], + [ + -15, + { + "n": 3.5, + "q": null, + "m": 89, + "e": 6063 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 80, + "e": 6069 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 90, + "e": 6104 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 74, + "e": 6108 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 19, + "e": 6142 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6152 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6160, + "g": 1 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 68, + "e": 6184 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 88, + "e": 6189 + } + ], + [ + -1, + { + "n": 7.5, + "q": null, + "m": 75, + "e": 6204, + "g": 2 + } + ] + ], + "fo": [ + [ + 5951, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2936, + { + "n": "Carvalho", + "f": "Matis", + "fp": "G", + "r": 3, + "c": 15 + } + ], + [ + 2995, + { + "n": "Suárez", + "f": "Mathías", + "fp": "DL", + "r": 1, + "c": 15 + } + ], + [ + 3126, + { + "n": "Ristic", + "f": "Mihailo", + "fp": "MO", + "r": 10, + "c": 15, + "s": { + "Os": 165.5, + "On": 34, + "Oa": 4.87, + "Od": 0.8, + "Om": 2239, + "Oam": 66, + "Odm": 31, + "pd": 27, + "pm": 7 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 5832, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 10, + "e": 5844, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 4, + "e": 5893, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 13, + "e": 5898, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 16, + "e": 5912, + "s": 1 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 68, + "e": 5962 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5972 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 61, + "e": 5981 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5994 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 21, + "e": 6004 + } + ], + [ + -20, + { + "n": 3.5, + "q": null, + "m": 54, + "e": 6014 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 6023, + "s": 1 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 85, + "e": 6032 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 78, + "e": 6043 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 7, + "e": 6048, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 68, + "e": 6089 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 90, + "e": 6104 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 9, + "e": 6108, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 6152 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6160 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 84, + "e": 6184 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6189 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6204 + } + ] + ], + "fo": [ + [ + 5962, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ], + [ + 5857, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4517, + { + "n": "Mavididi", + "f": "Stephy", + "fp": "A", + "r": 21, + "c": 15, + "s": { + "Og": 9, + "Os": 179, + "On": 35, + "Oa": 5.11, + "Od": 1.08, + "Om": 2038, + "Oam": 58, + "Odm": 31, + "pm": 10, + "pa": 25, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 5832 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 81, + "e": 5844 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5865, + "s": 1 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 60, + "e": 5873 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 5893 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 86, + "e": 5898, + "g": 1 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 70, + "e": 5912, + "g": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 90, + "e": 5933, + "g": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 73, + "e": 5945 + } + ], + [ + -26, + { + "n": 8, + "q": null, + "m": 86, + "e": 5951, + "g": 2 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 5962 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 5972 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 72, + "e": 5981 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 87, + "e": 5994 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 22, + "e": 6004, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6014, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6043, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6048, + "s": 1 + } + ], + [ + -15, + { + "n": 3.5, + "q": null, + "m": 80, + "e": 6063 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 6069, + "g": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 74, + "e": 6083, + "g": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 67, + "e": 6089 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6104 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 81, + "e": 6108 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 77, + "e": 6127, + "g": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6134, + "s": 1 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 45, + "e": 6142, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6152, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 25, + "e": 6160, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 5, + "e": 6173, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6184, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6204, + "s": 1 + } + ] + ] + } + ], + [ + 4864, + { + "n": "Leroy", + "f": "Leo", + "fp": "MO", + "r": 9, + "c": 15, + "s": { + "Os": 154.5, + "On": 33, + "Oa": 4.68, + "Od": 0.58, + "Om": 1872, + "Oam": 57, + "Odm": 31, + "pm": 32, + "pa": 1 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 45, + "e": 6209, + "s": 1 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 72, + "e": 6223 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6250 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 8, + "e": 6269, + "s": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 6304, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 6340 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 6354 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 6360 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 15, + "e": 6369, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 82, + "e": 6379 + } + ], + [ + -20, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6390 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6416 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 13, + "e": 6432, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 73, + "e": 6452 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 20, + "e": 6469, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 73, + "e": 6510 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6521, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 64, + "e": 6530 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6540 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 62, + "e": 6549 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 76, + "e": 6567 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 18, + "e": 6570, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 72, + "e": 6265 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6316 + } + ], + [ + -27, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6320 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6334 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 8, + "e": 6422, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6440, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 18, + "e": 6490, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 73, + "e": 6502 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 78, + "e": 6579 + } + ] + ], + "fo": [ + [ + 6334, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6160, + { + "n": "Chotard", + "f": "Joris", + "fp": "MD", + "r": 9, + "c": 15, + "s": { + "Os": 139, + "On": 29, + "Oa": 4.79, + "Od": 0.51, + "Om": 1154, + "Oam": 40, + "Odm": 32, + "pm": 29 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 84, + "e": 5832 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 9, + "e": 5844, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5857, + "s": 1 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 64, + "e": 5865 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 30, + "e": 5873, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 11, + "e": 5893, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 5912, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5933, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 17, + "e": 5945, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 34, + "e": 5951, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5972, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 78, + "e": 5994 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 55, + "e": 6004, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6014, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6032 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 83, + "e": 6048 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6104, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6108, + "s": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 6127, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 45, + "e": 6134 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 73, + "e": 6142 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6152, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 6, + "e": 6173, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 17, + "e": 6184, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6189 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6204, + "s": 1 + } + ] + ], + "fo": [ + [ + 5857, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6437, + { + "n": "Vargas", + "f": "Thibaut", + "fp": "DL", + "r": 1, + "c": 15, + "s": { + "Os": 80.5, + "On": 16, + "Oa": 5.03, + "Od": 0.81, + "Om": 1334, + "Oam": 83, + "Odm": 18, + "pd": 15, + "pm": 1 + }, + "p": [ + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 6283 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 6290 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 29, + "e": 6223 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 6250 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 90, + "e": 6265 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 6269 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 6304 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6316 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6320, + "s": 1 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 6334 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 6340 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 6354 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 6360 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 6369 + } + ] + ], + "fo": [ + [ + 6223, + [ + { + "t": "I" + } + ] + ], + [ + 6340, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6797, + { + "n": "Tamas", + "f": "Thibault", + "fp": "DL", + "r": 1, + "c": 15 + } + ], + [ + 6868, + { + "n": "Omlin", + "f": "Jonas", + "fp": "G", + "r": 16, + "c": 15, + "s": { + "Oao": 1, + "Os": 166.5, + "On": 31, + "Oa": 5.37, + "Od": 1.15, + "Om": 2674, + "Oam": 86, + "Odm": 15, + "pg": 31 + }, + "p": [ + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5880 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5893 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5898 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5912 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5924 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5962 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5972 + } + ], + [ + -21, + { + "n": 3, + "q": null, + "m": 19, + "e": 6004 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6014 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6032 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6043 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6048 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6063 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6069, + "a": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6104 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6134 + } + ], + [ + -7, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6142 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6152 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6160 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6173 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6184 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6189 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6204 + } + ] + ] + } + ], + [ + 7144, + { + "n": "Ben Achour", + "f": "Adil", + "fp": "MO", + "r": 1, + "c": 15 + } + ], + [ + 7567, + { + "n": "Wahi", + "f": "Sepe Elye", + "fp": "A", + "r": 9, + "c": 15, + "s": { + "Og": 3, + "Os": 83, + "On": 17, + "Oa": 4.88, + "Od": 0.99, + "Om": 540, + "Oam": 32, + "Odm": 20, + "pm": 1, + "pa": 16, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 29, + "e": 5832, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 5857, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 64, + "e": 5865 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 30, + "e": 5873, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5893, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5898, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 5912, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 16, + "e": 5924, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 61, + "e": 5933 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 5945, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5951 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 45, + "e": 5962, + "g": 1, + "s": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 24, + "e": 5972, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 29, + "e": 5981, + "s": 1 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 26, + "e": 5994, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 22, + "e": 6004, + "s": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 36, + "e": 6014, + "g": 1, + "s": 1 + } + ] + ], + "fo": [ + [ + 5873, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7647, + { + "n": "Mendy", + "f": "Oucasse", + "fp": "A", + "r": 1, + "c": 15 + } + ], + [ + 7846, + { + "n": "Estève", + "f": "Maxime", + "fp": "DL", + "r": 1, + "c": 15 + } + ], + [ + 8201, + { + "n": "Delaye", + "f": "Sacha", + "fp": "A", + "r": 1, + "c": 15 + } + ], + [ + 8214, + { + "n": "Thuler", + "f": "", + "fp": "DC", + "r": 8, + "c": 15 + } + ], + [ + 11, + { + "n": "Cyprien", + "f": "Wylan", + "fp": "MO", + "r": 13, + "c": 8, + "s": { + "Os": 61.5, + "On": 13, + "Oa": 4.73, + "Od": 0.44, + "Om": 399, + "Oam": 31, + "Odm": 28, + "pm": 13 + }, + "p": [ + [ + -23, + { + "n": 5, + "q": null, + "m": 20, + "e": 7318, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 7332, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 9, + "e": 7337, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 7355, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 7363 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 7375, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 7568, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 7388, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 23, + "e": 7403, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 7423 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 16, + "e": 7436, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 37, + "e": 7509, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 26, + "e": 7454, + "s": 1 + } + ] + ] + } + ], + [ + 62, + { + "n": "Corchia", + "f": "Sébastien", + "fp": "DL", + "r": 10, + "c": 8, + "s": { + "Os": 123.5, + "On": 25, + "Oa": 4.94, + "Od": 0.88, + "Om": 2067, + "Oam": 83, + "Odm": 21, + "pd": 22, + "pm": 3 + }, + "p": [ + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 5934 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6073 + } + ], + [ + -13, + { + "n": 3, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 5852 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 10, + "e": 5882, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 65, + "e": 5895 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 20, + "e": 6053, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6143 + } + ] + ], + "fo": [ + [ + 5895, + [ + { + "t": "I" + } + ] + ], + [ + 5934, + [ + { + "t": "I" + } + ] + ], + [ + 5973, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 73, + { + "n": "Pallois", + "f": "Nicolas", + "fp": "DC", + "r": 13, + "c": 8, + "s": { + "Og": 2, + "Oao": 1, + "Os": 158, + "On": 32, + "Oa": 4.94, + "Od": 0.84, + "Om": 2776, + "Oam": 87, + "Odm": 16, + "pd": 32, + "Omsn": 6 + }, + "p": [ + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6066, + "g": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -38, + { + "n": 3, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5882, + "g": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 3, + "e": 5958, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5995 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 3, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6073 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6161, + "a": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6194 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5904, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 82, + { + "n": "Lafont", + "f": "Alban", + "fp": "G", + "r": 16, + "c": 8, + "s": { + "Os": 203.5, + "On": 38, + "Oa": 5.36, + "Od": 1.03, + "Om": 3420, + "Oam": 90, + "pg": 38 + }, + "p": [ + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6073 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 8, + "q": null, + "m": 90, + "e": 6194 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5958, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 200, + { + "n": "Coco", + "f": "Marcus", + "fp": "MO", + "r": 9, + "c": 8, + "s": { + "Os": 153, + "On": 32, + "Oa": 4.78, + "Od": 0.59, + "Om": 1472, + "Oam": 46, + "Odm": 31, + "pd": 1, + "pm": 14, + "pa": 17 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5832, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5839, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 8, + "e": 5852, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5859, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 10, + "e": 5877, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5882, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 89, + "e": 5913 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 72, + "e": 5944 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5952, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5958, + "s": 1 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 64, + "e": 5973, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5995 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 78, + "e": 6015 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 82, + "e": 6023 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 60, + "e": 6041 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 35, + "e": 6053, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 62, + "e": 6073 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6084, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6091, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6105 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 77, + "e": 6111 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6123 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6130, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 6143 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 21, + "e": 6153, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 73, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 65, + "e": 6174 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 76, + "e": 6194 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6199, + "s": 1 + } + ] + ], + "fo": [ + [ + 5832, + [ + { + "t": "Y" + } + ] + ], + [ + 5973, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 231, + { + "n": "Petric", + "f": "Denis", + "fp": "G", + "r": 7, + "c": 8 + } + ], + [ + 307, + { + "n": "Augustin", + "f": "Jean-Kévin", + "fp": "A", + "r": 1, + "c": 8, + "s": { + "Os": 13.5, + "On": 3, + "Oa": 4.5, + "Om": 34, + "Oam": 11, + "Odm": 9, + "pa": 3 + }, + "p": [ + [ + -12, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6091, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6105, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6123, + "s": 1 + } + ] + ] + } + ], + [ + 398, + { + "n": "Blas", + "f": "Ludovic", + "fp": "MO", + "r": 21, + "c": 8, + "s": { + "Og": 10, + "Os": 206.5, + "On": 36, + "Oa": 5.74, + "Od": 1.16, + "Om": 2800, + "Oam": 78, + "Odm": 24, + "pm": 32, + "pa": 4, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 8, + "q": null, + "m": 89, + "e": 5839, + "g": 1 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 82, + "e": 5852 + } + ], + [ + -35, + { + "n": 8, + "q": null, + "m": 90, + "e": 5859, + "g": 1 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 83, + "e": 5877, + "g": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 76, + "e": 5913 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 5925 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 85, + "e": 5944, + "g": 1 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5952, + "g": 1 + } + ], + [ + -25, + { + "n": 8.5, + "q": null, + "m": 87, + "e": 5958 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 84, + "e": 5973 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 5995, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 6001 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 12, + "e": 6015, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 79, + "e": 6034 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 88, + "e": 6053 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 6066, + "g": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 15, + "e": 6073, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6091, + "g": 1 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6111, + "g": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 85, + "e": 6123 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6143, + "g": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 69, + "e": 6153 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 87, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 85, + "e": 6174 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 89, + "e": 6183, + "g": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6194 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 1, + "e": 6199, + "s": 1 + } + ] + ], + "fo": [ + [ + 5832, + [ + { + "t": "Y" + } + ] + ], + [ + 5958, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 476, + { + "n": "Touré", + "f": "Abdoulaye", + "fp": "MD", + "r": 9, + "c": 8, + "s": { + "Og": 2, + "Os": 149, + "On": 29, + "Oa": 5.14, + "Od": 0.83, + "Om": 1684, + "Oam": 58, + "Odm": 34, + "pm": 29, + "Omsn": 5.5 + }, + "p": [ + [ + -32, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5895 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 5904, + "g": 1 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 1, + "e": 5944, + "s": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5958 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5973, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 1, + "e": 5986, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5995 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 88, + "e": 6001 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 10, + "e": 6041, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 55, + "e": 6053 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 27, + "e": 6073, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6084 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6091 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 17, + "e": 6123, + "s": 1 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6130, + "g": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 45, + "e": 6143, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 10, + "e": 6153, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6174, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 61, + "e": 6183 + } + ] + ] + } + ], + [ + 520, + { + "n": "Descamps", + "f": "Rémy", + "fp": "G", + "r": 7, + "c": 8 + } + ], + [ + 941, + { + "n": "Fábio", + "f": "", + "fp": "DL", + "r": 8, + "c": 8, + "s": { + "Os": 101, + "On": 22, + "Oa": 4.59, + "Od": 0.63, + "Om": 1512, + "Oam": 69, + "Odm": 30, + "pd": 21, + "pm": 1 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 2, + "e": 5852, + "s": 1 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 80, + "e": 5882 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 26, + "e": 5973 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 44, + "e": 6023 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 11, + "e": 6034, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 70, + "e": 6053 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 45, + "e": 6066 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 89, + "e": 6073 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 23, + "e": 6111 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 45, + "e": 6130, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 87, + "e": 6194 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5973, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 1007, + { + "n": "Wagué", + "f": "Molla", + "fp": "DC", + "r": 3, + "c": 8, + "s": { + "Og": 1, + "Os": 124, + "On": 24, + "Oa": 5.17, + "Od": 0.72, + "Om": 2055, + "Oam": 86, + "Odm": 15, + "pd": 24, + "Omsn": 4.5 + }, + "p": [ + [ + -33, + { + "n": 5, + "q": null, + "m": 30, + "e": 6260 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 6268 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 6288 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6329 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6343 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 6349 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6389 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6403 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6412 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6453 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6458 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6477 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6488 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6515 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6529 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6539 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6300 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6326 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6366 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 6369 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6385, + "g": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6418 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6478 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6507 + } + ] + ], + "fo": [ + [ + 6260, + [ + { + "t": "I" + } + ] + ], + [ + 6288, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1171, + { + "n": "Coulibaly", + "f": "Kalifa", + "fp": "A", + "r": 11, + "c": 8, + "s": { + "Og": 3, + "Os": 79, + "On": 17, + "Oa": 4.65, + "Od": 0.91, + "Om": 981, + "Oam": 58, + "Odm": 34, + "pa": 17, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 5832 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 64, + "e": 5839, + "g": 1 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 71, + "e": 5852, + "g": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 81, + "e": 5859, + "g": 1 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5882 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 15, + "e": 5895, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 22, + "e": 5904, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5913, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5986, + "s": 1 + } + ], + [ + -21, + { + "n": 3, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6041, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6130, + "s": 1 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5839, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1174, + { + "n": "Andrei Girotto", + "f": "", + "fp": "DC", + "r": 13, + "c": 8, + "s": { + "Og": 1, + "Os": 171.5, + "On": 34, + "Oa": 5.04, + "Od": 0.85, + "Om": 2664, + "Oam": 78, + "Odm": 28, + "pd": 25, + "pm": 9, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5832, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 11, + "e": 5839, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 79, + "e": 5859, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 7, + "e": 5877, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6015 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6073 + } + ], + [ + -13, + { + "n": 3, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 29, + "e": 6091, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 3, + "e": 6153 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6194, + "g": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6199 + } + ] + ] + } + ], + [ + 1255, + { + "n": "Moutoussamy", + "f": "Samuel", + "fp": "MD", + "r": 6, + "c": 8, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 83, + "Oam": 83, + "pa": 1 + }, + "p": [ + [ + -1, + { + "n": 5, + "q": null, + "m": 83, + "e": 6199 + } + ] + ] + } + ], + [ + 1444, + { + "n": "Traoré", + "f": "Charles", + "fp": "DL", + "r": 7, + "c": 8, + "s": { + "Og": 1, + "Os": 103.5, + "On": 22, + "Oa": 4.7, + "Od": 0.63, + "Om": 1701, + "Oam": 77, + "Odm": 24, + "pd": 21, + "pm": 1, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 6, + "e": 5832, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 37, + "e": 5882 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 34, + "e": 5995 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6001 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 46, + "e": 6023, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6034 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6053, + "g": 1 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 67, + "e": 6111, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 82, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5882, + [ + { + "t": "I" + } + ] + ], + [ + 5925, + [ + { + "t": "Y" + } + ] + ], + [ + 5952, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1552, + { + "n": "Kolo Muani", + "f": "Randal", + "fp": "A", + "r": 17, + "c": 8, + "s": { + "Og": 9, + "Os": 191.5, + "On": 37, + "Oa": 5.18, + "Od": 1.33, + "Om": 3040, + "Oam": 82, + "Odm": 16, + "pm": 3, + "pa": 34, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5832, + "g": 1 + } + ], + [ + -37, + { + "n": 8, + "q": null, + "m": 89, + "e": 5839, + "g": 2 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5852, + "g": 1 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 5859 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 84, + "e": 5904 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 76, + "e": 5913, + "g": 1 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 84, + "e": 5925, + "g": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 82, + "e": 5934 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 82, + "e": 5952 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 5986, + "g": 1 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -21, + { + "n": 3, + "q": null, + "m": 45, + "e": 6001 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 89, + "e": 6015 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6023 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6034 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 89, + "e": 6041 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 6053, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 80, + "e": 6066 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 27, + "e": 6073, + "s": 1 + } + ], + [ + -13, + { + "n": 3, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 74, + "e": 6091 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 90, + "e": 6105, + "g": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 88, + "e": 6130 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6143, + "g": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 80, + "e": 6153 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 56, + "e": 6194 + } + ] + ], + "fo": [ + [ + 5958, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2744, + { + "n": "Simon", + "f": "Moses", + "fp": "MO", + "r": 16, + "c": 8, + "s": { + "Og": 6, + "Os": 171.5, + "On": 33, + "Oa": 5.2, + "Od": 1.03, + "Om": 2340, + "Oam": 71, + "Odm": 23, + "pm": 20, + "pa": 13, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5832 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 79, + "e": 5839 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 5852 + } + ], + [ + -35, + { + "n": 7.5, + "q": null, + "m": 70, + "e": 5859, + "g": 1 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 5877 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 5882 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 75, + "e": 5895 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 76, + "e": 5913 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 83, + "e": 5925, + "g": 1 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 81, + "e": 5934, + "g": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 5944 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 67, + "e": 5952 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 60, + "e": 5958, + "g": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5986 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 87, + "e": 5995 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 45, + "e": 6001, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6034, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 31, + "e": 6041, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6053 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 73, + "e": 6066 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6073, + "g": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 82, + "e": 6084 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6091, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 25, + "e": 6123 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 27, + "e": 6143, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 69, + "e": 6153 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 90, + "e": 6174, + "g": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6194 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5895, + [ + { + "t": "Y" + } + ] + ], + [ + 5925, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2834, + { + "n": "Limbombe", + "f": "Anthony", + "fp": "MO", + "r": 3, + "c": 8 + } + ], + [ + 2993, + { + "n": "Bamba", + "f": "Abdoul Kader", + "fp": "MO", + "r": 7, + "c": 8, + "s": { + "Og": 3, + "Os": 140.5, + "On": 29, + "Oa": 4.84, + "Od": 0.77, + "Om": 900, + "Oam": 31, + "Odm": 27, + "pm": 6, + "pa": 23, + "Omsn": 6 + }, + "p": [ + [ + -33, + { + "n": 4, + "q": null, + "m": 24, + "e": 5882, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 25, + "e": 5895, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 6, + "e": 5904, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5913, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5925, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5934, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 18, + "e": 5944, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5952, + "s": 1 + } + ], + [ + -25, + { + "n": 7, + "q": null, + "m": 30, + "e": 5958, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 14, + "e": 6001, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6015, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6023, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6034, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6041 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 10, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6073, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 74, + "e": 6084 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 6091 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 89, + "e": 6105 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 13, + "e": 6111, + "g": 1, + "s": 1 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 65, + "e": 6123, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 45, + "e": 6130, + "s": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 14, + "e": 6143, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 21, + "e": 6153, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 17, + "e": 6161, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 25, + "e": 6174, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6183 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6194, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 89, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5952, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3802, + { + "n": "Castelletto", + "f": "Jean-Charles", + "fp": "DC", + "r": 14, + "c": 8, + "s": { + "Og": 1, + "Os": 117.5, + "On": 24, + "Oa": 4.9, + "Od": 0.94, + "Om": 1948, + "Oam": 81, + "Odm": 24, + "pd": 24, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 11, + "e": 5859 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5877, + "g": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5995 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6073 + } + ], + [ + -12, + { + "n": 3, + "q": null, + "m": 61, + "e": 6091 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6105 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6143 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6153, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 1, + "e": 6194, + "s": 1 + } + ] + ], + "fo": [ + [ + 5859, + [ + { + "t": "I" + } + ] + ], + [ + 5877, + [ + { + "t": "Y" + } + ] + ], + [ + 5895, + [ + { + "t": "Y" + } + ] + ], + [ + 5952, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3812, + { + "n": "Appiah", + "f": "Dennis", + "fp": "DL", + "r": 9, + "c": 8, + "s": { + "Os": 104, + "On": 22, + "Oa": 4.73, + "Od": 0.75, + "Om": 1552, + "Oam": 71, + "Odm": 32, + "pd": 22 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 5832 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 53, + "e": 5882, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 1, + "e": 5913, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 89, + "e": 5944 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 56, + "e": 5995, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6041 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 1, + "e": 6073, + "s": 1 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6130 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6194 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 8, + "e": 6199, + "s": 1 + } + ] + ], + "fo": [ + [ + 5944, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6009, + { + "n": "Ndilu", + "f": "Bridge", + "fp": "A", + "r": 1, + "c": 8, + "s": { + "Os": 26, + "On": 6, + "Oa": 4.33, + "Od": 0.26, + "Om": 38, + "Oam": 6, + "Odm": 9, + "pa": 6 + }, + "p": [ + [ + -22, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5995, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6041, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6053, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6084, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 1, + "e": 6183, + "s": 1 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 23, + "e": 6199, + "s": 1 + } + ] + ] + } + ], + [ + 6124, + { + "n": "Chirivella", + "f": "Pedro", + "fp": "MD", + "r": 14, + "c": 8, + "s": { + "Os": 158.5, + "On": 32, + "Oa": 4.95, + "Od": 0.73, + "Om": 2280, + "Oam": 71, + "Odm": 30, + "pm": 32 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5832 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5852 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5859 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5882 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 3, + "e": 5895, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 5904 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 89, + "e": 5944 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5952 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5958 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5973 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5986 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 28, + "e": 5995, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 60, + "e": 6041 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 35, + "e": 6053, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 11, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6073 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6084, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6091 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 73, + "e": 6123 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 45, + "e": 6130, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6143 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 15, + "e": 6153 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6161 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6183 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6194 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6199 + } + ] + ], + "fo": [ + [ + 5877, + [ + { + "t": "Y" + } + ] + ], + [ + 5952, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6153, + { + "n": "Moustache", + "f": "Wesley", + "fp": "DL", + "r": 1, + "c": 8 + } + ], + [ + 6262, + { + "n": "Pereira De Sa", + "f": "Roli", + "fp": "MO", + "r": 8, + "c": 8, + "s": { + "Os": 31, + "On": 6, + "Oa": 5.17, + "Od": 0.26, + "Om": 52, + "Oam": 9, + "Odm": 9, + "pm": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 1, + "e": 5839, + "s": 1 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 5852, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 5859, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 1, + "e": 5877, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 6, + "e": 5904, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 5, + "e": 6123, + "s": 1 + } + ] + ] + } + ], + [ + 6403, + { + "n": "Emond", + "f": "Renaud", + "fp": "A", + "r": 7, + "c": 8, + "s": { + "Og": 2, + "Os": 102, + "On": 22, + "Oa": 4.64, + "Od": 0.54, + "Om": 337, + "Oam": 15, + "Odm": 17, + "pa": 22, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5832, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5839, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5852, + "s": 1 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 9, + "e": 5859, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5895, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5925, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5934, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 5944, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5952, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5973, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 28, + "e": 5995, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6001, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 55, + "e": 6053 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 6073 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6105, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 45, + "e": 6130 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6153, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6161, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 5, + "e": 6174, + "g": 1, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6183, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 14, + "e": 6194, + "s": 1 + } + ] + ] + } + ], + [ + 6861, + { + "n": "Jan", + "f": "Charly", + "fp": "G", + "r": 1, + "c": 8 + } + ], + [ + 7715, + { + "n": "Merlin", + "f": "Quentin", + "fp": "A", + "r": 5, + "c": 8 + } + ], + [ + 7717, + { + "n": "Sylla", + "f": "Abdoulaye", + "fp": "DC", + "r": 3, + "c": 8, + "s": { + "Os": 10, + "On": 2, + "Oa": 5, + "Om": 7, + "Oam": 4, + "Odm": 4, + "pd": 2 + }, + "p": [ + [ + -28, + { + "n": 5, + "q": null, + "m": 6, + "e": 5934, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 1, + "e": 5944, + "s": 1 + } + ] + ] + } + ], + [ + 8190, + { + "n": "Manvelyan", + "f": "Gor", + "fp": "A", + "r": 4, + "c": 8 + } + ], + [ + 8206, + { + "n": "Eneme Bocari", + "f": "Santiago", + "fp": "MO", + "r": 1, + "c": 8 + } + ], + [ + 8845, + { + "n": "Bonelli", + "f": "Lucas", + "fp": "G", + "r": 1, + "c": 8 + } + ], + [ + 8893, + { + "n": "M'Bemba", + "f": "Yannis", + "fp": "DC", + "r": 5, + "c": 8 + } + ], + [ + 70, + { + "n": "Dante", + "f": "", + "fp": "DC", + "r": 4, + "c": 19, + "s": { + "Og": 2, + "Os": 49.5, + "On": 9, + "Oa": 5.5, + "Od": 0.83, + "Om": 775, + "Oam": 86, + "Odm": 12, + "pd": 9, + "Omsn": 5 + }, + "p": [ + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 55, + "e": 6118 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6153, + "g": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6184, + "g": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6205 + } + ] + ] + } + ], + [ + 239, + { + "n": "Benítez", + "f": "Walter", + "fp": "G", + "r": 18, + "c": 19, + "s": { + "Os": 205, + "On": 38, + "Oa": 5.39, + "Od": 1.15, + "Om": 3420, + "Oam": 90, + "pg": 38 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5935 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 3, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 6064 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6094 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6184 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5904, + [ + { + "t": "Y" + } + ] + ], + [ + 5914, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 583, + { + "n": "Claude Maurice", + "f": "Alexis", + "fp": "MO", + "r": 18, + "c": 19, + "s": { + "Og": 4, + "Os": 154, + "On": 30, + "Oa": 5.13, + "Od": 1.27, + "Om": 1907, + "Oam": 64, + "Odm": 31, + "pm": 17, + "pa": 13, + "Omsn": 5.5 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 39, + "e": 5845 + } + ], + [ + -36, + { + "n": 8, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 8, + "q": null, + "m": 90, + "e": 5873, + "g": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5914, + "g": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5935, + "g": 1 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5982 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 5996, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 20, + "e": 6016, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6021, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 33, + "e": 6028, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 10, + "e": 6044, + "s": 1 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 62, + "e": 6054 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 11, + "e": 6064, + "g": 1, + "s": 1 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 57, + "e": 6074 + } + ], + [ + -12, + { + "n": 3.5, + "q": null, + "m": 70, + "e": 6094 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6113, + "s": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 81, + "e": 6135 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 33, + "e": 6159, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 45, + "e": 6184, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 89, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5845, + [ + { + "t": "I" + } + ] + ], + [ + 5862, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 833, + { + "n": "Schneiderlin", + "f": "Morgan", + "fp": "MD", + "r": 10, + "c": 19, + "s": { + "Os": 145.5, + "On": 28, + "Oa": 5.2, + "Od": 0.71, + "Om": 2197, + "Oam": 78, + "Odm": 24, + "pd": 1, + "pm": 27 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 7, + "e": 5830, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5845 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5935 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 5953, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 25, + "e": 5974, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6028 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 6064 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6102, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6184 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5885, + [ + { + "t": "Y" + } + ] + ], + [ + 5921, + [ + { + "t": "Y" + } + ] + ], + [ + 5935, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1210, + { + "n": "Gouiri", + "f": "Amine", + "fp": "A", + "r": 24, + "c": 19, + "s": { + "Og": 12, + "Os": 188, + "On": 34, + "Oa": 5.53, + "Od": 1.2, + "Om": 2752, + "Oam": 81, + "Odm": 20, + "pm": 8, + "pa": 26, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5845 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 24, + "e": 5853, + "s": 1 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5894 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 5904 + } + ], + [ + -30, + { + "n": 8, + "q": null, + "m": 90, + "e": 5914, + "g": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 77, + "e": 5921 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 90, + "e": 5935, + "g": 1 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5946, + "g": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5953, + "g": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5974, + "g": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 71, + "e": 5996 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6000 + } + ], + [ + -20, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 6021, + "g": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6054, + "g": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 89, + "e": 6064 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6094, + "g": 1 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6102, + "g": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 85, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 23, + "e": 6135, + "s": 1 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 83, + "e": 6146, + "g": 1 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 27, + "e": 6184, + "s": 1 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6205, + "g": 2 + } + ] + ], + "fo": [ + [ + 5974, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1229, + { + "n": "Maolida", + "f": "Myziane", + "fp": "A", + "r": 7, + "c": 19, + "s": { + "Og": 3, + "Os": 94.5, + "On": 19, + "Oa": 4.97, + "Od": 0.9, + "Om": 1077, + "Oam": 57, + "Odm": 31, + "pm": 4, + "pa": 15, + "Omsn": 6 + }, + "p": [ + [ + -33, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 5885 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5894, + "s": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 61, + "e": 5904 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 67, + "e": 5914 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 90, + "e": 5921, + "g": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 5935 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5974, + "g": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 45, + "e": 5982, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 19, + "e": 5996, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6000, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6016, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6113, + "s": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 18, + "e": 6146, + "g": 1, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 6153 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6159, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 63, + "e": 6184 + } + ] + ], + "fo": [ + [ + 5904, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1315, + { + "n": "Lemina", + "f": "Mario", + "fp": "MD", + "r": 13, + "c": 19, + "s": { + "Og": 1, + "Os": 141.5, + "On": 28, + "Oa": 5.05, + "Od": 0.86, + "Om": 1704, + "Oam": 61, + "Odm": 31, + "pd": 1, + "pm": 27, + "Omsn": 7.5 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 6602 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 6681 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 45, + "e": 6734, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 72, + "e": 6748 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 24, + "e": 6750, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 11, + "e": 6770, + "s": 1 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6809 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 28, + "e": 6815, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 80, + "e": 6825 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 22, + "e": 6835, + "s": 1 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 6851 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6869 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6891, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 20, + "e": 6931, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6617 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6625 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6635 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 6642 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6654 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6661 + } + ], + [ + -28, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6690, + "g": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 7659 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 4, + "e": 6709, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 89, + "e": 6717 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6725 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 6778 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6844, + "s": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6879 + } + ] + ], + "fo": [ + [ + 6602, + [ + { + "t": "Y" + } + ] + ], + [ + 6617, + [ + { + "t": "Y" + } + ] + ], + [ + 6690, + [ + { + "t": "Y" + } + ] + ], + [ + 7659, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1439, + { + "n": "Sacko", + "f": "Ihsan", + "fp": "MO", + "r": 5, + "c": 19 + } + ], + [ + 2659, + { + "n": "Atal", + "f": "Youcef", + "fp": "DL", + "r": 9, + "c": 19, + "s": { + "Og": 1, + "Os": 87, + "On": 18, + "Oa": 4.83, + "Od": 0.64, + "Om": 963, + "Oam": 54, + "Odm": 25, + "pd": 9, + "pm": 9, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5845 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 56, + "e": 5853 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 70, + "e": 5862 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 64, + "e": 5873 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 26, + "e": 5885, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 23, + "e": 5914, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 61, + "e": 5935 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 51, + "e": 6000, + "g": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 70, + "e": 6016 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 66, + "e": 6021 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 57, + "e": 6028 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6044 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6054, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 5, + "e": 6118, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 17, + "e": 6135, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6175 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 89, + "e": 6184 + } + ] + ], + "fo": [ + [ + 5935, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2715, + { + "n": "Kamara", + "f": "Hassane", + "fp": "DL", + "r": 16, + "c": 19, + "s": { + "Og": 2, + "Os": 190, + "On": 36, + "Oa": 5.28, + "Od": 0.85, + "Om": 2966, + "Oam": 82, + "Odm": 15, + "pd": 25, + "pm": 10, + "pa": 1, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 90, + "e": 5830, + "g": 1 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5853, + "g": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 5862 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5885 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5935 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5953 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5974 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 58, + "e": 6016 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 33, + "e": 6028, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 45, + "e": 6044, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6054 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 68, + "e": 6064 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 74, + "e": 6086 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6159 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6184 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5921, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2767, + { + "n": "Todibo", + "f": "Jean-Clair", + "fp": "DC", + "r": 15, + "c": 19, + "s": { + "Og": 1, + "Os": 74, + "On": 15, + "Oa": 4.93, + "Od": 0.75, + "Om": 1332, + "Oam": 89, + "Odm": 4, + "pd": 15, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5830 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5873, + "g": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5935 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 87, + "e": 5974 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 75, + "e": 5982 + } + ] + ], + "fo": [ + [ + 5830, + [ + { + "t": "Y" + } + ] + ], + [ + 5853, + [ + { + "t": "Y" + } + ] + ], + [ + 5946, + [ + { + "t": "Y" + } + ] + ], + [ + 5974, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2959, + { + "n": "Khéphren Thuram", + "f": "", + "fp": "MD", + "r": 9, + "c": 19, + "s": { + "Og": 2, + "Os": 147, + "On": 29, + "Oa": 5.07, + "Od": 1.07, + "Om": 1491, + "Oam": 51, + "Odm": 32, + "pm": 29, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 83, + "e": 5830 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 51, + "e": 5845, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 34, + "e": 5853, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 74, + "e": 5894 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5904 + } + ], + [ + -30, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5914, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 13, + "e": 5921, + "s": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 14, + "e": 5935, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 11, + "e": 5946, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 13, + "e": 5974, + "s": 1 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 70, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 12, + "e": 6028, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6044 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6064 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 15, + "e": 6074, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6086, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6094 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 10, + "e": 6102, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6113 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 5, + "e": 6118, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6135, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6146 + } + ], + [ + -6, + { + "n": 8, + "q": null, + "m": 85, + "e": 6153, + "g": 1 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 6175 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6184 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 78, + "e": 6196 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 68, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5830, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3502, + { + "n": "Wade", + "f": "Paul", + "fp": "MD", + "r": 1, + "c": 19 + } + ], + [ + 3756, + { + "n": "Pedro Brazao", + "f": "", + "fp": "MO", + "r": 1, + "c": 19 + } + ], + [ + 4338, + { + "n": "Kluivert", + "f": "Justin", + "fp": "A", + "r": 16, + "c": 19, + "s": { + "Os": 17.5, + "On": 4, + "Oa": 4.38, + "Od": 0.25, + "Om": 47, + "Oam": 12, + "Odm": 4, + "pa": 4 + }, + "p": [ + [ + -3, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 7458, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 7471, + "s": 1 + } + ], + [ + -38, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5452, + "s": 1 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 12, + "e": 5483, + "s": 1 + } + ] + ] + } + ], + [ + 6246, + { + "n": "Guessand", + "f": "Evann", + "fp": "A", + "r": 6, + "c": 19, + "s": { + "Os": 14, + "On": 3, + "Oa": 4.67, + "Od": 0.29, + "Om": 27, + "Oam": 9, + "Odm": 8, + "pa": 3 + }, + "p": [ + [ + -5, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6159, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 17, + "e": 6175, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6205, + "s": 1 + } + ] + ] + } + ], + [ + 6247, + { + "n": "Boudaoui", + "f": "Hichem", + "fp": "MO", + "r": 15, + "c": 19, + "s": { + "Og": 3, + "Os": 123, + "On": 25, + "Oa": 4.92, + "Od": 1.08, + "Om": 1748, + "Oam": 70, + "Odm": 23, + "pm": 22, + "pa": 3, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 88, + "e": 5830 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 79, + "e": 5853, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 75, + "e": 5862 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 64, + "e": 5873, + "g": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 26, + "e": 5885, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 45, + "e": 5935 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 67, + "e": 5946 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5953 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 77, + "e": 5974 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6016 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 89, + "e": 6021 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 6028 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 6044 + } + ], + [ + -16, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 6074 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6086 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 63, + "e": 6094 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 80, + "e": 6102 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6113 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 23, + "e": 6118, + "g": 1, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 9, + "e": 6135, + "s": 1 + } + ] + ], + "fo": [ + [ + 5830, + [ + { + "t": "I" + } + ] + ], + [ + 5845, + [ + { + "t": "Y" + } + ] + ], + [ + 5873, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6250, + { + "n": "Dolberg", + "f": "Kasper", + "fp": "A", + "r": 17, + "c": 19, + "s": { + "Og": 6, + "Os": 121.5, + "On": 25, + "Oa": 4.86, + "Od": 1.19, + "Om": 1929, + "Oam": 77, + "Odm": 23, + "pa": 25, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 7, + "q": null, + "m": 90, + "e": 5830, + "g": 1 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5853 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 90, + "e": 5862 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5873 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5904, + "g": 2 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 29, + "e": 5935, + "s": 1 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 90, + "e": 5982 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6000 + } + ], + [ + -20, + { + "n": 3, + "q": null, + "m": 76, + "e": 6016 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6021, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 33, + "e": 6074, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 68, + "e": 6113 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 23, + "e": 6118, + "s": 1 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 6135, + "g": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 81, + "e": 6159 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6184 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 89, + "e": 6196, + "g": 2 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 89, + "e": 6205 + } + ] + ] + } + ], + [ + 6344, + { + "n": "Da Cunha", + "f": "Lucas", + "fp": "MO", + "r": 5, + "c": 19 + } + ], + [ + 6345, + { + "n": "Bard", + "f": "Melvin", + "fp": "DL", + "r": 9, + "c": 19, + "s": { + "Os": 69.5, + "On": 14, + "Oa": 4.96, + "Od": 0.82, + "Om": 425, + "Oam": 30, + "Odm": 35, + "pd": 14 + }, + "p": [ + [ + -34, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5871 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 17, + "e": 5890, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 13, + "e": 5900, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 1, + "e": 5926, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 6007, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 3, + "e": 6031, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 59, + "e": 6098 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 12, + "e": 6117, + "s": 1 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 8, + "e": 6132, + "s": 1 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6157 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 8, + "e": 6162, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 11, + "e": 6188, + "s": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 22, + "e": 6204, + "s": 1 + } + ] + ] + } + ], + [ + 6591, + { + "n": "Trouillet", + "f": "Alexis", + "fp": "MO", + "r": 3, + "c": 19, + "s": { + "Os": 24, + "On": 5, + "Oa": 4.8, + "Od": 0.27, + "Om": 105, + "Oam": 21, + "Odm": 16, + "pm": 5 + }, + "p": [ + [ + -16, + { + "n": 5, + "q": null, + "m": 16, + "e": 6054, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 27, + "e": 6094, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6102 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6153, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 12, + "e": 6196, + "s": 1 + } + ] + ] + } + ], + [ + 6705, + { + "n": "Robson Bambu", + "f": "", + "fp": "DC", + "r": 5, + "c": 19, + "s": { + "Os": 74, + "On": 15, + "Oa": 4.93, + "Od": 0.78, + "Om": 1045, + "Oam": 70, + "Odm": 34, + "pd": 15 + }, + "p": [ + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 2, + "e": 5946, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 3, + "e": 5974, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 89, + "e": 5996 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 81, + "e": 6044 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6064 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 27, + "e": 6074, + "s": 1 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6102 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6118 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6135 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 33, + "e": 6205 + } + ] + ] + } + ], + [ + 6804, + { + "n": "Ndoye", + "f": "Dan", + "fp": "A", + "r": 7, + "c": 19, + "s": { + "Og": 1, + "Os": 127.5, + "On": 28, + "Oa": 4.55, + "Od": 0.58, + "Om": 532, + "Oam": 19, + "Odm": 16, + "pm": 2, + "pa": 26, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 12, + "e": 5830, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5845, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5853, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 9, + "e": 5873, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5894, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 5904, + "s": 1 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 62, + "e": 5953 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 5974, + "s": 1 + } + ], + [ + -23, + { + "n": 3, + "q": null, + "m": 45, + "e": 5982 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5996, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 5, + "e": 6000, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6016, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6021, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 21, + "e": 6028, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 25, + "e": 6044, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 28, + "e": 6054, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 22, + "e": 6064, + "g": 1, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 6086, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 20, + "e": 6094, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6102, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6113, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 7, + "e": 6146, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 11, + "e": 6153, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 57, + "e": 6159 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 32, + "e": 6175, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 10, + "e": 6184, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6196, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6205, + "s": 1 + } + ] + ] + } + ], + [ + 6808, + { + "n": "Lotomba", + "f": "Jordan", + "fp": "DL", + "r": 9, + "c": 19, + "s": { + "Og": 1, + "Os": 145.5, + "On": 30, + "Oa": 4.85, + "Od": 0.88, + "Om": 2126, + "Oam": 71, + "Odm": 28, + "pd": 21, + "pm": 9, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 2, + "e": 5830, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 10, + "e": 5845, + "s": 1 + } + ], + [ + -35, + { + "n": 3, + "q": null, + "m": 48, + "e": 5862 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 81, + "e": 5873 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5885 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5904, + "s": 1 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 28, + "e": 5935, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 5982 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 39, + "e": 6000, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 24, + "e": 6021, + "s": 1 + } + ], + [ + -18, + { + "n": 3, + "q": null, + "m": 78, + "e": 6028 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6044, + "g": 1 + } + ], + [ + -16, + { + "n": 3, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6064 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6086 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 84, + "e": 6094 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6113 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 85, + "e": 6118 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6135 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6153 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6159 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6175 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 89, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5862, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5935, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6866, + { + "n": "Daniliuc", + "f": "Flavius", + "fp": "DC", + "r": 9, + "c": 19, + "s": { + "Og": 1, + "Os": 114, + "On": 23, + "Oa": 4.96, + "Od": 0.85, + "Om": 1475, + "Oam": 64, + "Odm": 30, + "pd": 23, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 17, + "e": 5845, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5853 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 38, + "e": 5862, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 5873, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 61, + "e": 5904 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5914 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5935 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 88, + "e": 5946, + "g": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 15, + "e": 5982, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6000 + } + ], + [ + -20, + { + "n": 3, + "q": null, + "m": 90, + "e": 6016 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6021 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6028 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 6044 + } + ], + [ + -16, + { + "n": 3, + "q": null, + "m": 90, + "e": 6054 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6064 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 35, + "e": 6118, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6153, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 9, + "e": 6159, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 25, + "e": 6175, + "s": 1 + } + ] + ], + "fo": [ + [ + 5946, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 7223, + { + "n": "Kari", + "f": "Soudeysse", + "fp": "MD", + "r": 1, + "c": 19 + } + ], + [ + 7418, + { + "n": "Sotona", + "f": "Ayodeji", + "fp": "A", + "r": 1, + "c": 19 + } + ], + [ + 7566, + { + "n": "Boulhendi", + "f": "Teddy", + "fp": "G", + "r": 1, + "c": 19 + } + ], + [ + 7839, + { + "n": "Mendy", + "f": "Antoine", + "fp": "DL", + "r": 1, + "c": 19 + } + ], + [ + 8217, + { + "n": "Stengs", + "f": "Calvin", + "fp": "MO", + "r": 14, + "c": 19 + } + ], + [ + 8472, + { + "n": "Rosario", + "f": "Pablo", + "fp": "MD", + "r": 11, + "c": 19 + } + ], + [ + 7, + { + "n": "Di María", + "f": "Ángel", + "fp": "MO", + "r": 29, + "c": 2, + "s": { + "Og": 4, + "Os": 156.5, + "On": 27, + "Oa": 5.8, + "Od": 1.23, + "Om": 1863, + "Oam": 69, + "Odm": 25, + "pm": 16, + "pa": 11, + "Omsn": 7 + }, + "p": [ + [ + -37, + { + "n": 7, + "q": null, + "m": 77, + "e": 5847 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 23, + "e": 5883, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 84, + "e": 6036 + } + ], + [ + -17, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 6046 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6166 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 72, + "e": 5829 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 69, + "e": 5855 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 25, + "e": 5872, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5917, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 62, + "e": 5925 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 11, + "e": 5977 + } + ], + [ + -23, + { + "n": 7.5, + "q": null, + "m": 70, + "e": 5983, + "g": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 81, + "e": 5991 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 6008 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 86, + "e": 6025 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6057 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 19, + "e": 6065, + "s": 1 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 6077 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 27, + "e": 6095, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 6103 + } + ], + [ + -10, + { + "n": 8, + "q": null, + "m": 90, + "e": 6115, + "g": 1 + } + ], + [ + -4, + { + "n": 8, + "q": null, + "m": 79, + "e": 6175, + "g": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5977, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 12, + { + "n": "Draxler", + "f": "Julian", + "fp": "MO", + "r": 11, + "c": 2, + "s": { + "Og": 4, + "Os": 131.5, + "On": 24, + "Oa": 5.48, + "Od": 0.8, + "Om": 1059, + "Oam": 44, + "Odm": 33, + "pm": 24, + "Omsn": 6 + }, + "p": [ + [ + -32, + { + "n": 5, + "q": null, + "m": 15, + "e": 5897, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 40, + "e": 5847 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5855 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 89, + "e": 5867 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 3, + "e": 5872, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 26, + "e": 5906, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 1, + "e": 5917, + "s": 1 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 74, + "e": 5925, + "g": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 74, + "e": 5928 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 17, + "e": 5955, + "s": 1 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 77, + "e": 5965, + "g": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 10, + "e": 5983, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 4, + "e": 6025, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 27, + "e": 6036, + "s": 1 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 7, + "e": 6046, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 13, + "e": 6057, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 13, + "e": 6065, + "s": 1 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 59, + "e": 6136 + } + ], + [ + -6, + { + "n": 6.5, + "q": null, + "m": 63, + "e": 6154, + "g": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 68, + "e": 6166 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 29, + "e": 6187, + "s": 1 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6207, + "g": 1 + } + ] + ], + "fo": [ + [ + 5847, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 17, + { + "n": "Verratti", + "f": "Marco", + "fp": "MD", + "r": 20, + "c": 2, + "s": { + "Os": 124, + "On": 21, + "Oa": 5.9, + "Od": 1.24, + "Om": 1490, + "Oam": 71, + "Odm": 27, + "pm": 21 + }, + "p": [ + [ + -35, + { + "n": 4, + "q": null, + "m": 30, + "e": 5867, + "s": 1 + } + ], + [ + -34, + { + "n": 8, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5883, + "s": 1 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 35, + "e": 5955, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 19, + "e": 6065, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 64, + "e": 6077 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6095 + } + ], + [ + -6, + { + "n": 7.5, + "q": null, + "m": 82, + "e": 6154 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 22, + "e": 6166, + "s": 1 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 71, + "e": 6187 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6190 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "Y" + } + ] + ], + [ + 5872, + [ + { + "t": "Y" + } + ] + ], + [ + 5925, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 28, + { + "n": "Mbappé", + "f": "Kylian", + "fp": "A", + "r": 40, + "c": 2, + "s": { + "Og": 27, + "Os": 189, + "On": 31, + "Oa": 6.1, + "Od": 1.66, + "Om": 2387, + "Oam": 77, + "Odm": 24, + "pm": 8, + "pa": 23, + "Omsn": 6 + }, + "p": [ + [ + -7, + { + "n": 8, + "q": null, + "m": 84, + "e": 6144, + "g": 2 + } + ], + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5829, + "g": 1 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 77, + "e": 5847, + "g": 1 + } + ], + [ + -34, + { + "n": 7.5, + "q": null, + "m": 87, + "e": 5872, + "g": 2 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 90, + "e": 5883, + "g": 2 + } + ], + [ + -32, + { + "n": 8, + "q": null, + "m": 89, + "e": 5897, + "g": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 8, + "q": null, + "m": 70, + "e": 5917, + "g": 2 + } + ], + [ + -29, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -27, + { + "n": 8, + "q": null, + "m": 90, + "e": 5940, + "g": 2 + } + ], + [ + -26, + { + "n": 3, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5977, + "g": 1 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 88, + "e": 5983, + "g": 1 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 6004, + "g": 2 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 80, + "e": 6008 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 6046, + "g": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6057, + "s": 1 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6065, + "g": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 25, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 12, + "e": 6083, + "g": 1, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 68, + "e": 6103, + "g": 2 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 74, + "e": 6123, + "g": 1 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 17, + "e": 6136, + "g": 2, + "s": 1 + } + ], + [ + -6, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6154, + "g": 1 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 7.5, + "q": null, + "m": 79, + "e": 6175, + "g": 1 + } + ] + ], + "fo": [ + [ + 5872, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ], + [ + 5917, + [ + { + "t": "I" + } + ] + ], + [ + 5906, + [ + { + "t": "Y" + } + ] + ], + [ + 5955, + [ + { + "t": "Y" + } + ] + ], + [ + 5965, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 44, + { + "n": "Marquinhos", + "f": "", + "fp": "DC", + "r": 24, + "c": 2, + "s": { + "Og": 3, + "Os": 145, + "On": 25, + "Oa": 5.8, + "Od": 0.87, + "Om": 2129, + "Oam": 85, + "Odm": 15, + "pd": 24, + "pm": 1, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5847, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5867, + "g": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 52, + "e": 6004 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 24, + "e": 6123, + "s": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 73, + "e": 6136 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6175, + "g": 1 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 49, + { + "n": "Kurzawa", + "f": "Layvin", + "fp": "DL", + "r": 9, + "c": 2, + "s": { + "Og": 1, + "Os": 95.5, + "On": 19, + "Oa": 5.03, + "Od": 0.94, + "Om": 1281, + "Oam": 67, + "Odm": 31, + "pd": 18, + "pm": 1, + "Omsn": 7 + }, + "p": [ + [ + -36, + { + "n": 5.5, + "q": null, + "m": 55, + "e": 5855 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5872 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 77, + "e": 5965 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 2, + "e": 5983, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 76, + "e": 6004 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 86, + "e": 6008, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 25, + "e": 6025, + "s": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 87, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 68, + "e": 6103 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6123, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 5, + "e": 6187, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6190 + } + ] + ], + "fo": [ + [ + 5855, + [ + { + "t": "I" + } + ] + ], + [ + 5872, + [ + { + "t": "Y" + } + ] + ], + [ + 5928, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 180, + { + "n": "Kimpembe", + "f": "Presnel", + "fp": "DC", + "r": 13, + "c": 2, + "s": { + "Os": 145, + "On": 28, + "Oa": 5.18, + "Od": 0.78, + "Om": 2307, + "Oam": 82, + "Odm": 20, + "pd": 28 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 87, + "e": 5855 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5897 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5983 + } + ], + [ + -22, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 4, + "e": 6008, + "s": 1 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6057 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6144 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 72, + "e": 6154 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 85, + "e": 6166 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 83, + "e": 6175 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 74, + "e": 6190 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 21, + "e": 6207, + "s": 1 + } + ] + ], + "fo": [ + [ + 5855, + [ + { + "t": "R" + } + ] + ], + [ + 5883, + [ + { + "t": "Y" + } + ] + ], + [ + 5955, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 432, + { + "n": "Diallo", + "f": "Abdou", + "fp": "DC", + "r": 10, + "c": 2, + "s": { + "Os": 120.5, + "On": 22, + "Oa": 5.48, + "Od": 0.97, + "Om": 1488, + "Oam": 68, + "Odm": 33, + "pd": 22 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 35, + "e": 5855, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5906 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 3, + "e": 5928, + "s": 1 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6004 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 29, + "e": 6077 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 83, + "e": 6103 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6136 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6144 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 18, + "e": 6154, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 5, + "e": 6166, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 16, + "e": 6190, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5906, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 510, + { + "n": "Letellier", + "f": "Alexandre", + "fp": "G", + "r": 3, + "c": 2 + } + ], + [ + 630, + { + "n": "Wijnaldum", + "f": "Georginio", + "fp": "MO", + "r": 21, + "c": 2, + "s": { + "Og": 3, + "Os": 235.5, + "On": 43, + "Oa": 5.48, + "Od": 0.85, + "Om": 3357, + "Oam": 78, + "Odm": 24, + "pm": 43, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6592 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 86, + "e": 6598 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 6, + "e": 6609, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 74, + "e": 6628 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 6619 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 6637 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 8263 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6655 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 12, + "e": 6660, + "s": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 6686 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6672 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6702 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6710 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6718 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6726 + } + ], + [ + -22, + { + "n": 3, + "q": null, + "m": 64, + "e": 6740 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 6749, + "g": 1 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6761 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6775 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 89, + "e": 6763 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6784 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 22, + "e": 6792, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6799 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 69, + "e": 6807 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6820 + } + ], + [ + -11, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6834, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6841 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6863 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6870 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6880 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 1, + "e": 6887, + "s": 1 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6895 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6907 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6914 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6932 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 3935 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 66, + "e": 3941, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 83, + "e": 3948 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 81, + "e": 3961 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 3971 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 62, + "e": 6690 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6825 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6852 + } + ] + ] + } + ], + [ + 647, + { + "n": "Herrera", + "f": "Ander", + "fp": "MD", + "r": 11, + "c": 2, + "s": { + "Og": 1, + "Os": 177, + "On": 31, + "Oa": 5.71, + "Od": 1.01, + "Om": 1845, + "Oam": 60, + "Odm": 33, + "pm": 31, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 7, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 70, + "e": 5855 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5867, + "s": 1 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5897 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 4, + "e": 5917, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 16, + "e": 5928, + "s": 1 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 55, + "e": 5955 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5965, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 11, + "e": 6008, + "s": 1 + } + ], + [ + -19, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 78, + "e": 6046 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 6057, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 63, + "e": 6083 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 26, + "e": 6095, + "s": 1 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6123, + "g": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 31, + "e": 6136, + "s": 1 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 79, + "e": 6144, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 6154, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 22, + "e": 6166, + "s": 1 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 6175, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6187 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5829, + [ + { + "t": "Y" + } + ] + ], + [ + 5855, + [ + { + "t": "Y" + } + ] + ], + [ + 5867, + [ + { + "t": "Y" + } + ] + ], + [ + 5872, + [ + { + "t": "Y" + } + ] + ], + [ + 5965, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 657, + { + "n": "Idrissa Gueye", + "f": "", + "fp": "MD", + "r": 12, + "c": 2, + "s": { + "Og": 2, + "Os": 153.5, + "On": 28, + "Oa": 5.48, + "Od": 0.7, + "Om": 1587, + "Oam": 57, + "Odm": 32, + "pm": 28, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5829, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 20, + "e": 5855, + "s": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 60, + "e": 5867 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 16, + "e": 5897, + "s": 1 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 5906 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 86, + "e": 5917 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 8, + "e": 5940, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 55, + "e": 5955 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5983 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5991, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 55, + "e": 6025 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6036 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 12, + "e": 6046, + "g": 1, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 77, + "e": 6065 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 26, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6083 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 13, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 66, + "e": 6123 + } + ], + [ + -7, + { + "n": 7, + "q": null, + "m": 90, + "e": 6144 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 27, + "e": 6154, + "g": 1, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 23, + "e": 6175 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 84, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5906, + [ + { + "t": "Y" + } + ] + ], + [ + 5955, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1155, + { + "n": "Neymar", + "f": "", + "fp": "A", + "r": 33, + "c": 2, + "s": { + "Og": 9, + "Os": 108, + "On": 18, + "Oa": 6, + "Od": 1.73, + "Om": 1412, + "Oam": 78, + "Odm": 25, + "pm": 10, + "pa": 8, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 8, + "q": null, + "m": 90, + "e": 5847, + "g": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5855, + "g": 1 + } + ], + [ + -35, + { + "n": 8, + "q": null, + "m": 89, + "e": 5867, + "g": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 81, + "e": 5872 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 89, + "e": 5906 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 20, + "e": 5917, + "s": 1 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 25, + "e": 5977, + "s": 1 + } + ], + [ + -22, + { + "n": 8, + "q": null, + "m": 90, + "e": 5991, + "g": 2 + } + ], + [ + -21, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6004, + "g": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 89, + "e": 6077 + } + ], + [ + -12, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6095, + "g": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6103, + "s": 1 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6136 + } + ], + [ + -6, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 6154, + "g": 2 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 89, + "e": 6187 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "I" + } + ] + ], + [ + 5829, + [ + { + "t": "Y" + } + ] + ], + [ + 5906, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ] + ] + } + ], + [ + 1369, + { + "n": "Bulka", + "f": "Marcin", + "fp": "G", + "r": 1, + "c": 2, + "s": { + "Os": 56.5, + "On": 10, + "Oa": 5.65, + "Od": 0.88, + "Om": 900, + "Oam": 90, + "pg": 10 + }, + "p": [ + [ + -38, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6209 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 6223 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6241 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 6250 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6265 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6340 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 6354 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6360 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6190 + } + ] + ] + } + ], + [ + 1568, + { + "n": "Ramos", + "f": "Sergio", + "fp": "DC", + "r": 20, + "c": 2, + "s": { + "Og": 3, + "Os": 103, + "On": 18, + "Oa": 5.72, + "Od": 0.97, + "Om": 1501, + "Oam": 83, + "Odm": 16, + "pd": 18, + "Omsn": 5.5 + }, + "p": [ + [ + -27, + { + "n": 5, + "q": null, + "m": 61, + "e": 7649 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7080 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7573 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 7099 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7106 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7073 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7114 + } + ], + [ + -9, + { + "n": 3, + "q": null, + "m": 90, + "e": 7146 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7517 + } + ], + [ + -7, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 7155, + "g": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 7506 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7171 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 7179 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 7188, + "g": 1 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 7195 + } + ], + [ + -38, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 4312, + "g": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 4325 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 4331 + } + ] + ] + } + ], + [ + 1605, + { + "n": "Navas", + "f": "Keylor", + "fp": "G", + "r": 20, + "c": 2, + "s": { + "Os": 166.5, + "On": 29, + "Oa": 5.74, + "Od": 0.86, + "Om": 2520, + "Oam": 87, + "Odm": 12, + "pg": 29 + }, + "p": [ + [ + -38, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 45, + "e": 5897 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5917 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5955 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 45, + "e": 6004 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6025 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6144 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5897, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 1609, + { + "n": "Sarabia", + "f": "Pablo", + "fp": "MO", + "r": 14, + "c": 2, + "s": { + "Og": 6, + "Os": 147.5, + "On": 27, + "Oa": 5.46, + "Od": 1.14, + "Om": 1313, + "Oam": 49, + "Odm": 36, + "pm": 20, + "pa": 7, + "Omsn": 6.5 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 13, + "e": 5847, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 60, + "e": 5867 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 65, + "e": 5872 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 67, + "e": 5883 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5897, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 16, + "e": 5925, + "s": 1 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 87, + "e": 5928, + "g": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 18, + "e": 5940, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 13, + "e": 5965, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 77, + "e": 5977, + "s": 1 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5983, + "g": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5991, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 8, + "e": 6004, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 10, + "e": 6008, + "s": 1 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 35, + "e": 6025, + "g": 1, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 6, + "e": 6036, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 9, + "e": 6095, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6123, + "g": 1 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6136 + } + ], + [ + -7, + { + "n": 8.5, + "q": null, + "m": 90, + "e": 6144, + "g": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 8, + "e": 6154, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 12, + "e": 6166, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 11, + "e": 6175, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 69, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5928, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1626, + { + "n": "Rico", + "f": "Sergio", + "fp": "G", + "r": 7, + "c": 2, + "s": { + "Os": 54, + "On": 10, + "Oa": 5.4, + "Od": 0.88, + "Om": 810, + "Oam": 81, + "Odm": 19, + "pg": 10 + }, + "p": [ + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5897, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5977 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 5983 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 45, + "e": 6004, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6095 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6136 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6187 + } + ] + ] + } + ], + [ + 1797, + { + "n": "Rafinha", + "f": "", + "fp": "MO", + "r": 14, + "c": 2, + "s": { + "Os": 147.5, + "On": 26, + "Oa": 5.67, + "Od": 0.79, + "Om": 1554, + "Oam": 60, + "Odm": 27, + "pm": 25, + "pa": 1 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 4320 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 66, + "e": 4334 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 4340, + "s": 1 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 72, + "e": 5829 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 50, + "e": 5847, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 21, + "e": 5855, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 1, + "e": 5867, + "s": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 5883 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 5897 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 5906, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 56, + "e": 5925 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 5940 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 35, + "e": 5955, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 20, + "e": 5983, + "s": 1 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 83, + "e": 6046 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6057 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 71, + "e": 6065 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 18, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 63, + "e": 6095 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 85, + "e": 6103 + } + ], + [ + -10, + { + "n": 6.5, + "q": null, + "m": 77, + "e": 6115, + "s": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 74, + "e": 6123 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 85, + "e": 6136 + } + ], + [ + -7, + { + "n": 6.5, + "q": null, + "m": 58, + "e": 6144 + } + ] + ], + "fo": [ + [ + 5925, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1980, + { + "n": "Hakimi", + "f": "Achraf", + "fp": "DL", + "r": 20, + "c": 2, + "s": { + "Og": 7, + "Os": 207, + "On": 37, + "Oa": 5.59, + "Od": 1.05, + "Om": 2669, + "Oam": 72, + "Odm": 29, + "pd": 8, + "pm": 29, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 57, + "e": 7208 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 7214 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 31, + "e": 7222, + "s": 1 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 90, + "e": 8291, + "g": 1 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 79, + "e": 7244 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 8274 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 7258 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 20, + "e": 7263, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 7278 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 7270 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 7290 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 85, + "e": 7292 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7308 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 83, + "e": 7317 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 7321 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7609 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 7346 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7351 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 7575, + "g": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 7383 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 80, + "e": 7566, + "g": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 7397, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 38, + "e": 7396, + "s": 1 + } + ], + [ + -10, + { + "n": 8, + "q": null, + "m": 71, + "e": 7407, + "g": 2 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 1, + "e": 7418, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 7420 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 7, + "e": 7427, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 32, + "e": 7444, + "s": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 7450 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 7460 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 7492, + "g": 1 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 25, + "e": 7465, + "s": 1 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 7229 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7328 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 7361, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 7367 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 78, + "e": 7436 + } + ] + ], + "fo": [ + [ + 7258, + [ + { + "t": "Y" + } + ] + ], + [ + 7317, + [ + { + "t": "Y" + } + ] + ], + [ + 7321, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2626, + { + "n": "Fressange", + "f": "Alexandre", + "fp": "A", + "r": 1, + "c": 2 + } + ], + [ + 2627, + { + "n": "Dagba", + "f": "Colin", + "fp": "DL", + "r": 10, + "c": 2, + "s": { + "Og": 1, + "Os": 129, + "On": 25, + "Oa": 5.16, + "Od": 0.64, + "Om": 1356, + "Oam": 54, + "Odm": 35, + "pd": 24, + "pm": 1, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 86, + "e": 5847 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5855 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 19, + "e": 5867 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 5883, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 26, + "e": 5906, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 4, + "e": 5917, + "s": 1 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 5925 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 78, + "e": 5928 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5983 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 6025 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 63, + "e": 6036 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 3, + "e": 6057, + "s": 1 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 64, + "e": 6083, + "g": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6103 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 45, + "e": 6115, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6123 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6136 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 32, + "e": 6144, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 18, + "e": 6154, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 7, + "e": 6175, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 6, + "e": 6187, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 22, + "e": 6190, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 2821, + { + "n": "Kehrer", + "f": "Thilo", + "fp": "DL", + "r": 11, + "c": 2, + "s": { + "Os": 123.5, + "On": 24, + "Oa": 5.15, + "Od": 0.8, + "Om": 1610, + "Oam": 67, + "Odm": 31, + "pd": 24 + }, + "p": [ + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 71, + "e": 5867, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5897 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5906 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5925, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 12, + "e": 5928, + "s": 1 + } + ], + [ + -27, + { + "n": 7, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 2, + "e": 5977, + "s": 1 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 5983 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 38, + "e": 6004, + "s": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6057 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6065 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 6077, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 26, + "e": 6083, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 36, + "e": 6115 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 24, + "e": 6123, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6187 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6190 + } + ] + ], + "fo": [ + [ + 5867, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2864, + { + "n": "Bernat", + "f": "Juan", + "fp": "DL", + "r": 3, + "c": 2, + "s": { + "Os": 14.5, + "On": 3, + "Oa": 4.83, + "Od": 0.29, + "Om": 191, + "Oam": 64, + "Odm": 35, + "pd": 3 + }, + "p": [ + [ + -3, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 6187 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 84, + "e": 6190 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 23, + "e": 6207, + "s": 1 + } + ] + ] + } + ], + [ + 3367, + { + "n": "Paredes", + "f": "Leandro", + "fp": "MD", + "r": 14, + "c": 2, + "s": { + "Og": 1, + "Os": 110.5, + "On": 21, + "Oa": 5.26, + "Od": 1.07, + "Om": 1308, + "Oam": 62, + "Odm": 29, + "pm": 21, + "Omsn": 8 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 5847, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5872 + } + ], + [ + -32, + { + "n": 8, + "q": null, + "m": 90, + "e": 5897, + "g": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5906 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 28, + "e": 5925, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5955 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5965 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 5977 + } + ], + [ + -23, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 5983 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 81, + "e": 5991 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 76, + "e": 6004 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 90, + "e": 6008 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6077 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 27, + "e": 6083, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 85, + "e": 6095 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 22, + "e": 6103, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6144 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 63, + "e": 6154 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 6166 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 18, + "e": 6187, + "s": 1 + } + ] + ], + "fo": [ + [ + 5906, + [ + { + "t": "Y" + } + ] + ], + [ + 5955, + [ + { + "t": "Y" + } + ] + ], + [ + 5977, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4392, + { + "n": "Donnarumma", + "f": "Gianluigi", + "fp": "G", + "r": 20, + "c": 2, + "s": { + "Os": 249, + "On": 45, + "Oa": 5.53, + "Od": 1.09, + "Om": 4050, + "Oam": 90, + "pg": 45 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 7205 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 7215 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 7226 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 7230 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 8292 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 7245 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7250 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 7257 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 7265 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 7277 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7287 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 7298 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 7310 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 7623 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 7615 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 7335 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 7344 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 7350 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 7359 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 7366 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 90, + "e": 7577 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 7379 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 7389 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 7398 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7410 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 7416 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 7422 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 7432 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 7441 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 7487 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7490 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 7475 + } + ], + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5454 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 5473 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5485 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5493 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5501 + } + ], + [ + -37, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5463 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5515 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5523 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 7274 + } + ], + [ + -24, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 7302 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 90, + "e": 7317 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 7403 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 7450 + } + ] + ] + } + ], + [ + 4603, + { + "n": "Icardi", + "f": "Mauro", + "fp": "A", + "r": 17, + "c": 2, + "s": { + "Og": 7, + "Os": 105.5, + "On": 20, + "Oa": 5.28, + "Od": 1.13, + "Om": 1074, + "Oam": 54, + "Odm": 36, + "pa": 20, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5829, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5855, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 9, + "e": 5872, + "g": 1, + "s": 1 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 22, + "e": 5883, + "g": 1, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 34, + "e": 5925, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 5955 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5965 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 65, + "e": 5977, + "g": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5983, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 82, + "e": 6004, + "g": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6008, + "s": 1 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 25, + "e": 6025, + "g": 1, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6095, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6154 + } + ], + [ + -5, + { + "n": 8, + "q": null, + "m": 78, + "e": 6166, + "g": 2 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6175 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5977, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4945, + { + "n": "Ebimbe", + "f": "Éric", + "fp": "MO", + "r": 1, + "c": 2, + "s": { + "Og": 1, + "Os": 144.5, + "On": 30, + "Oa": 4.82, + "Od": 0.88, + "Om": 2151, + "Oam": 72, + "Odm": 23, + "pm": 26, + "pa": 4, + "Omsn": 6 + }, + "p": [ + [ + -4, + { + "n": 4, + "q": null, + "m": 66, + "e": 6177 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5839 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5848 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5860 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 17, + "e": 5892, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5919 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5929, + "s": 1 + } + ], + [ + -27, + { + "n": 3, + "q": null, + "m": 75, + "e": 5940 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 28, + "e": 5960, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 5972 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 85, + "e": 5979 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 65, + "e": 5990, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 59, + "e": 5999 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6011 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6019 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 6035 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6045 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6049 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 28, + "e": 6060, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 45, + "e": 6073 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 79, + "e": 6080 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 66, + "e": 6094 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6136 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 89, + "e": 6139 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6148 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 83, + "e": 6160, + "g": 1 + } + ], + [ + -3, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6180 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5919, + [ + { + "t": "Y" + } + ] + ], + [ + 5929, + [ + { + "t": "Y" + } + ] + ], + [ + 5940, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6261, + { + "n": "Kalimuendo", + "f": "Arnaud", + "fp": "A", + "r": 12, + "c": 2, + "s": { + "Og": 7, + "Os": 144.5, + "On": 29, + "Oa": 4.98, + "Od": 1, + "Om": 1291, + "Oam": 45, + "Odm": 26, + "pa": 29, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5836, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5838, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5849, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 69, + "e": 5867 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5869, + "s": 1 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 59, + "e": 5879 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 77, + "e": 5889, + "g": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 5920 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 75, + "e": 5936, + "g": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 14, + "e": 5938, + "g": 1, + "s": 1 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 62, + "e": 5949 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 70, + "e": 5969 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 45, + "e": 5980, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5994, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6000, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6015, + "s": 1 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 6020 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 12, + "e": 6031, + "s": 1 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 73, + "e": 6040, + "g": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6052, + "s": 1 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 6069 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 72, + "e": 6087, + "g": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 63, + "e": 6088, + "g": 1 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 66, + "e": 6100, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 17, + "e": 6110, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6121, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6130, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6140, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 6190 + } + ] + ] + } + ], + [ + 6702, + { + "n": "Pembélé", + "f": "Timothée", + "fp": "DC", + "r": 5, + "c": 2, + "s": { + "Og": 1, + "Oao": 1, + "Os": 30.5, + "On": 6, + "Oa": 5.08, + "Od": 1.02, + "Om": 380, + "Oam": 63, + "Odm": 38, + "pd": 5, + "pm": 1, + "Omsn": 6.5 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 4, + "e": 5847, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 27, + "e": 6036, + "s": 1 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6046, + "g": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 79, + "e": 6065, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6083 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6095, + "a": 1 + } + ] + ] + } + ], + [ + 6783, + { + "n": "Bitshiabu", + "f": "El Chadaille", + "fp": "DC", + "r": 1, + "c": 2 + } + ], + [ + 6791, + { + "n": "Simons", + "f": "Xavi", + "fp": "MD", + "r": 3, + "c": 2, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 1, + "Oam": 1, + "pm": 1 + }, + "p": [ + [ + -32, + { + "n": 5, + "q": null, + "m": 1, + "e": 5897, + "s": 1 + } + ] + ] + } + ], + [ + 6792, + { + "n": "Michut", + "f": "Edouard", + "fp": "MD", + "r": 6, + "c": 2, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 1, + "Oam": 1, + "pm": 1 + }, + "p": [ + [ + -27, + { + "n": 5, + "q": null, + "m": 1, + "e": 5940, + "s": 1 + } + ] + ] + } + ], + [ + 7269, + { + "n": "Fadiga", + "f": "Bandiougou", + "fp": "MO", + "r": 1, + "c": 2, + "s": { + "Os": 47.5, + "On": 10, + "Oa": 4.75, + "Od": 0.26, + "Om": 98, + "Oam": 10, + "Odm": 9, + "pm": 8, + "pa": 2 + }, + "p": [ + [ + -33, + { + "n": 5, + "q": null, + "m": 1, + "e": 5879, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5901, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 27, + "e": 5922, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5948, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6046, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 19, + "e": 6065, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 16, + "e": 6123, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 5, + "e": 6136, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6175, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6207, + "s": 1 + } + ] + ] + } + ], + [ + 7416, + { + "n": "Danilo Pereira", + "f": "", + "fp": "MD", + "r": 11, + "c": 2, + "s": { + "Og": 2, + "Os": 128, + "On": 23, + "Oa": 5.57, + "Od": 1.05, + "Om": 1428, + "Oam": 62, + "Odm": 34, + "pd": 5, + "pm": 18, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5829 + } + ], + [ + -37, + { + "n": 7.5, + "q": null, + "m": 77, + "e": 5847 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5867 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5897 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5917, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5925 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5928 + } + ], + [ + -27, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 5940, + "g": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 17, + "e": 5955, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 7, + "e": 5965, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 5977, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 10, + "e": 5983, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6004, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 11, + "e": 6065 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6077 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 26, + "e": 6083, + "s": 1 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 68, + "e": 6103 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 29, + "e": 6115, + "s": 1 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 66, + "e": 6123 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6136 + } + ] + ], + "fo": [ + [ + 5940, + [ + { + "t": "I" + } + ] + ], + [ + 5928, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7719, + { + "n": "Franchi", + "f": "Denis", + "fp": "G", + "r": 3, + "c": 2 + } + ], + [ + 7818, + { + "n": "Gharbi", + "f": "Ismaël", + "fp": "MO", + "r": 1, + "c": 2 + } + ], + [ + 8191, + { + "n": "Fernandez", + "f": "Nehemiah", + "fp": "DC", + "r": 1, + "c": 2 + } + ], + [ + 8208, + { + "n": "Bitumazala", + "f": "Nathan", + "fp": "MD", + "r": 1, + "c": 2 + } + ], + [ + 341, + { + "n": "Anastasios Donis", + "f": "", + "fp": "A", + "r": 4, + "c": 68, + "s": { + "Os": 11, + "On": 3, + "Oa": 3.67, + "Od": 1.44, + "Om": 96, + "Oam": 32, + "Odm": 25, + "pm": 1, + "pa": 2 + }, + "p": [ + [ + -7, + { + "n": 2, + "q": null, + "m": 8, + "e": 6145, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6166 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6191, + "s": 1 + } + ] + ] + } + ], + [ + 346, + { + "n": "Abdelhamid", + "f": "Yunis", + "fp": "DC", + "r": 16, + "c": 68, + "s": { + "Og": 3, + "Os": 167, + "On": 33, + "Oa": 5.06, + "Od": 1.01, + "Om": 2890, + "Oam": 88, + "Odm": 14, + "pd": 33, + "Omsn": 5.5 + }, + "p": [ + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6106 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -37, + { + "n": 3, + "q": null, + "m": 10, + "e": 5847 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5934, + "g": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6039, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6155, + "g": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 3, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5847, + [ + { + "t": "R" + } + ] + ], + [ + 5926, + [ + { + "t": "Y" + } + ] + ], + [ + 5934, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 563, + { + "n": "Cafaro", + "f": "Mathieu", + "fp": "MO", + "r": 13, + "c": 68, + "s": { + "Og": 4, + "Os": 166, + "On": 31, + "Oa": 5.35, + "Od": 0.79, + "Om": 2089, + "Oam": 67, + "Odm": 20, + "pm": 31, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 5.5, + "q": null, + "m": 56, + "e": 5847 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 5854 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 27, + "e": 5887, + "s": 1 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 5894 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 82, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 74, + "e": 5926, + "g": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 45, + "e": 5934 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5966 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5970 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 5984 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 79, + "e": 5997 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 6026, + "g": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6035, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 72, + "e": 6051 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 29, + "e": 6066, + "g": 1, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 6086 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6090 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 78, + "e": 6106 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 69, + "e": 6110, + "g": 1 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 66, + "e": 6125 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 78, + "e": 6134 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 25, + "e": 6155, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 68, + "e": 6172 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6191 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 60, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5926, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1459, + { + "n": "Diouf", + "f": "Yehvann", + "fp": "G", + "r": 5, + "c": 68, + "s": { + "Os": 11, + "On": 2, + "Oa": 5.5, + "Om": 135, + "Oam": 68, + "Odm": 32, + "pg": 2 + }, + "p": [ + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6106 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6155, + "s": 1 + } + ] + ] + } + ], + [ + 2082, + { + "n": "Flips", + "f": "Alexis", + "fp": "MO", + "r": 8, + "c": 68, + "s": { + "Og": 1, + "Os": 10.5, + "On": 2, + "Oa": 5.25, + "Od": 0.35, + "Om": 41, + "Oam": 21, + "Odm": 5, + "pm": 2, + "Omsn": 5.5 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 24, + "e": 5854, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 17, + "e": 5866, + "g": 1, + "s": 1 + } + ] + ] + } + ], + [ + 2219, + { + "n": "Hornby", + "f": "Fraser", + "fp": "MO", + "r": 4, + "c": 68, + "s": { + "Os": 13, + "On": 3, + "Oa": 4.33, + "Od": 0.58, + "Om": 32, + "Oam": 11, + "Odm": 3, + "pa": 3 + }, + "p": [ + [ + -5, + { + "n": 4, + "q": null, + "m": 9, + "e": 6166, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 9, + "e": 6178, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 14, + "e": 6191, + "s": 1 + } + ] + ] + } + ], + [ + 2647, + { + "n": "Costa", + "f": "Logan", + "fp": "DC", + "r": 1, + "c": 68 + } + ], + [ + 2667, + { + "n": "Konan", + "f": "Ghislain", + "fp": "DL", + "r": 16, + "c": 68, + "s": { + "Og": 2, + "Os": 154.5, + "On": 31, + "Oa": 4.98, + "Od": 0.77, + "Om": 2612, + "Oam": 84, + "Odm": 19, + "pd": 31, + "Omsn": 6 + }, + "p": [ + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5907, + "g": 1 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5934, + "g": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -25, + { + "n": 3, + "q": null, + "m": 77, + "e": 5966 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 75, + "e": 5970 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 23, + "e": 6106, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5887, + [ + { + "t": "Y" + } + ] + ], + [ + 5934, + [ + { + "t": "Y" + } + ] + ], + [ + 5966, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2705, + { + "n": "Doumbia", + "f": "Moussa", + "fp": "MO", + "r": 8, + "c": 68, + "s": { + "Os": 119.5, + "On": 23, + "Oa": 5.2, + "Od": 0.49, + "Om": 896, + "Oam": 39, + "Odm": 24, + "pm": 22, + "pa": 1 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 61, + "e": 5833 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 5887 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 67, + "e": 5894 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 71, + "e": 5907 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5934, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 59, + "e": 5945 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 5956, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 15, + "e": 5970, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 11, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 75, + "e": 5997 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 6005 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6026, + "s": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6035, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 7, + "e": 6039, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 8, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 6, + "e": 6068, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 66, + "e": 6086 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 55, + "e": 6090 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 32, + "e": 6106, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 45, + "e": 6110, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 24, + "e": 6125, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 12, + "e": 6134, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 17, + "e": 6145, + "s": 1 + } + ] + ], + "fo": [ + [ + 5956, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2724, + { + "n": "Chavalerin", + "f": "Xavier", + "fp": "MD", + "r": 14, + "c": 68, + "s": { + "Os": 158, + "On": 30, + "Oa": 5.27, + "Od": 0.67, + "Om": 2549, + "Oam": 85, + "Odm": 17, + "pm": 30 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 87, + "e": 5874 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6066, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 45, + "e": 6145 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 76, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5934, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ], + [ + 5907, + [ + { + "t": "Y" + } + ] + ], + [ + 5970, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2862, + { + "n": "Foket", + "f": "Thomas", + "fp": "DL", + "r": 13, + "c": 68, + "s": { + "Oao": 1, + "Os": 180.5, + "On": 37, + "Oa": 4.88, + "Od": 0.78, + "Om": 3325, + "Oam": 90, + "Odm": 1, + "pd": 37 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 5833 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6106 + } + ], + [ + -10, + { + "n": 3, + "q": null, + "m": 90, + "e": 6110, + "a": 1 + } + ], + [ + -9, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -1, + { + "n": 4, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5887, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3360, + { + "n": "Sissoko", + "f": "Sambou", + "fp": "MD", + "r": 3, + "c": 68 + } + ], + [ + 3364, + { + "n": "Zeneli", + "f": "Arbër", + "fp": "MO", + "r": 10, + "c": 68, + "s": { + "Og": 3, + "Os": 147.5, + "On": 28, + "Oa": 5.27, + "Od": 0.86, + "Om": 1287, + "Oam": 46, + "Odm": 24, + "pm": 25, + "pa": 3, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 19, + "e": 5833, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 5847, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 5866 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 16, + "e": 5874, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 27, + "e": 5887, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 23, + "e": 5894, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5907, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 16, + "e": 5926, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5934 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 5945, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 5956 + } + ], + [ + -25, + { + "n": 7, + "q": null, + "m": 87, + "e": 5966, + "g": 1 + } + ], + [ + -20, + { + "n": 7, + "q": null, + "m": 81, + "e": 6010, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 56, + "e": 6026 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 6035 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 82, + "e": 6039 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6051 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 6066 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 31, + "e": 6068, + "g": 1, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 66, + "e": 6086 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 35, + "e": 6090, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 12, + "e": 6106, + "s": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 65, + "e": 6155 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 25, + "e": 6166, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 68, + "e": 6172 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 45, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6191, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 30, + "e": 6203, + "s": 1 + } + ] + ], + "fo": [ + [ + 5866, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3365, + { + "n": "Moreto Cassamã", + "f": "", + "fp": "MD", + "r": 10, + "c": 68, + "s": { + "Og": 1, + "Os": 151.5, + "On": 29, + "Oa": 5.22, + "Od": 0.62, + "Om": 2042, + "Oam": 70, + "Odm": 23, + "pm": 29, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 5854 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 5866 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 85, + "e": 5907 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 72, + "e": 5909 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 45, + "e": 5934 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5945 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 60, + "e": 6010 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 56, + "e": 6026 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 77, + "e": 6035 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 6068, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 32, + "e": 6090 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6110, + "s": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 70, + "e": 6145, + "g": 1 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6166 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 52, + "e": 6172 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 6178 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 6191 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 12, + "e": 6203, + "s": 1 + } + ] + ], + "fo": [ + [ + 5907, + [ + { + "t": "R" + } + ] + ], + [ + 5934, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3766, + { + "n": "Munetsi", + "f": "Marshall", + "fp": "MD", + "r": 14, + "c": 68, + "s": { + "Og": 1, + "Os": 143.5, + "On": 27, + "Oa": 5.31, + "Od": 0.97, + "Om": 1928, + "Oam": 71, + "Odm": 28, + "pd": 6, + "pm": 21, + "Omsn": 6.5 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5934, + "s": 1 + } + ], + [ + -26, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 30, + "e": 6010, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 34, + "e": 6026, + "s": 1 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 7, + "e": 6039, + "g": 1, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 14, + "e": 6066, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 59, + "e": 6068 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6106 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 83, + "e": 6134 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -4, + { + "n": 3.5, + "q": null, + "m": 50, + "e": 6172 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6178, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6191 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5854, + [ + { + "t": "Y" + } + ] + ], + [ + 5887, + [ + { + "t": "Y" + } + ] + ], + [ + 5926, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3807, + { + "n": "Rajkovic", + "f": "Predrag", + "fp": "G", + "r": 18, + "c": 68, + "s": { + "Os": 205, + "On": 37, + "Oa": 5.54, + "Od": 1.09, + "Om": 3285, + "Oam": 89, + "Odm": 7, + "pg": 37 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 45, + "e": 6155 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6172 + } + ], + [ + -3, + { + "n": 8, + "q": null, + "m": 90, + "e": 6178 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5907, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4344, + { + "n": "Gravillon", + "f": "Andreaw", + "fp": "DC", + "r": 10, + "c": 68, + "s": { + "Og": 2, + "Oao": 1, + "Os": 124.5, + "On": 26, + "Oa": 4.79, + "Od": 1.33, + "Om": 2274, + "Oam": 87, + "Odm": 9, + "pd": 26, + "Omsn": 3.5 + }, + "p": [ + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5850 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5881 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 65, + "e": 5889 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5901 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5913 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5921 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5933 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 2, + "q": null, + "m": 90, + "e": 5950, + "a": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5964 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5991 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6011, + "g": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6018 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6030, + "g": 1 + } + ], + [ + -15, + { + "n": 3, + "q": null, + "m": 49, + "e": 6065 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -13, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6078 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6089 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 90, + "e": 6101 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6111 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6131 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6145 + } + ] + ], + "fo": [ + [ + 5933, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4695, + { + "n": "Valon Berisha", + "f": "", + "fp": "MO", + "r": 7, + "c": 68, + "s": { + "Os": 123, + "On": 24, + "Oa": 5.13, + "Od": 0.92, + "Om": 1643, + "Oam": 68, + "Odm": 30, + "pm": 24 + }, + "p": [ + [ + -30, + { + "n": 5, + "q": null, + "m": 18, + "e": 5909, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 67, + "e": 5926 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 16, + "e": 5945, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 63, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 11, + "e": 5997, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6039 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 6066 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6106 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 83, + "e": 6134 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 19, + "e": 6155, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6166 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6172 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6178, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 59, + "e": 6191, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6203, + "s": 1 + } + ] + ] + } + ], + [ + 6162, + { + "n": "Mbuku", + "f": "Nathanael", + "fp": "A", + "r": 17, + "c": 68, + "s": { + "Og": 4, + "Os": 172, + "On": 32, + "Oa": 5.38, + "Od": 0.89, + "Om": 2229, + "Oam": 70, + "Odm": 20, + "pm": 26, + "pa": 6, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 71, + "e": 5833 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 5847 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 5854 + } + ], + [ + -35, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 5866, + "g": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 74, + "e": 5874, + "g": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 5887 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 86, + "e": 5894 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 5909 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 74, + "e": 5945 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 69, + "e": 5966 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 5970, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 87, + "e": 5984 + } + ], + [ + -22, + { + "n": 7.5, + "q": null, + "m": 89, + "e": 5997 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 6005, + "g": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6010 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 64, + "e": 6026 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 66, + "e": 6035 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 83, + "e": 6039 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 18, + "e": 6051, + "s": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6068 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6086, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 6090, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 58, + "e": 6106 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6110 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6125 + } + ], + [ + -8, + { + "n": 8, + "q": null, + "m": 90, + "e": 6134, + "g": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 73, + "e": 6145 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 6155 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 65, + "e": 6166 + } + ] + ], + "fo": [ + [ + 5956, + [ + { + "t": "Y" + } + ] + ], + [ + 5970, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6217, + { + "n": "Kutesa", + "f": "Dereck", + "fp": "MO", + "r": 10, + "c": 68, + "s": { + "Og": 1, + "Os": 138.5, + "On": 28, + "Oa": 4.95, + "Od": 0.42, + "Om": 672, + "Oam": 24, + "Odm": 20, + "pm": 28, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 29, + "e": 5833, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 6, + "e": 5847, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 5854, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 5866, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 3, + "e": 5874, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 2, + "e": 5887, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 4, + "e": 5894, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 19, + "e": 5909, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 59, + "e": 5956 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 12, + "e": 5966, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 5970 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 3, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 15, + "e": 5997, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 22, + "e": 6005, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 9, + "e": 6010, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 6, + "e": 6026, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 2, + "e": 6051, + "s": 1 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 59, + "e": 6068 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 24, + "e": 6086, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6110, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 12, + "e": 6125, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 35, + "e": 6145 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 25, + "e": 6155, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 25, + "e": 6166, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6172, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6178, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 6191 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 56, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5970, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6510, + { + "n": "Touré", + "f": "El Bilal", + "fp": "A", + "r": 9, + "c": 68, + "s": { + "Og": 4, + "Os": 147.5, + "On": 33, + "Oa": 4.47, + "Od": 0.78, + "Om": 1236, + "Oam": 37, + "Odm": 26, + "pa": 33, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 5833, + "g": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5847, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 5854, + "s": 1 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 64, + "e": 5874 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 71, + "e": 5887 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 45, + "e": 5894, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 5926, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5934, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 7, + "e": 5945, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 30, + "e": 5956, + "g": 1, + "s": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 21, + "e": 5966, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 5970, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5984, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 1, + "e": 5997, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6005, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6010, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 26, + "e": 6026, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6035, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6039, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 18, + "e": 6051, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 76, + "e": 6066, + "g": 1 + } + ], + [ + -14, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6068 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6086, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 72, + "e": 6090 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6106, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6110, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6125, + "s": 1 + } + ], + [ + -6, + { + "n": 3, + "q": null, + "m": 71, + "e": 6155 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 6166 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6172, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 81, + "e": 6178 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 76, + "e": 6191 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 60, + "e": 6203, + "g": 1 + } + ] + ], + "fo": [ + [ + 5894, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6511, + { + "n": "Sierhuis", + "f": "Kaj", + "fp": "A", + "r": 9, + "c": 68, + "s": { + "Os": 107, + "On": 24, + "Oa": 4.46, + "Od": 0.64, + "Om": 640, + "Oam": 27, + "Odm": 27, + "pa": 24 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5833, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 5854, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5866, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 5874, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5887, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5894, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5907, + "s": 1 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 7, + "e": 5934, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 3, + "e": 5966, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5970, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 6, + "e": 6026, + "s": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 61, + "e": 6066 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 23, + "e": 6068, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 9, + "e": 6086, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 18, + "e": 6090, + "s": 1 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 6106 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 63, + "e": 6110 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 66, + "e": 6125 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6145 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6155, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6172, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 14, + "e": 6191, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6203, + "s": 1 + } + ] + ], + "fo": [ + [ + 5833, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6710, + { + "n": "Faes", + "f": "Wout", + "fp": "DC", + "r": 11, + "c": 68, + "s": { + "Og": 1, + "Os": 163.5, + "On": 33, + "Oa": 4.95, + "Od": 1.03, + "Om": 2901, + "Oam": 88, + "Odm": 9, + "pd": 33, + "Omsn": 8 + }, + "p": [ + [ + -38, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5833 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5847 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5854 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 5874 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5894 + } + ], + [ + -31, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5909 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5926 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5934 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5945 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5970 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5984 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6005 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6010 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6035 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6039 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6051 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6066 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6068 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6086 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6090 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 8, + "q": null, + "m": 90, + "e": 6125, + "g": 1 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6134 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 6145 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -3, + { + "n": 3, + "q": null, + "m": 42, + "e": 6178 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6191 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6203 + } + ] + ], + "fo": [ + [ + 5874, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ], + [ + 5907, + [ + { + "t": "Y" + } + ] + ], + [ + 5934, + [ + { + "t": "Y" + } + ] + ], + [ + 5966, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6769, + { + "n": "Kebbal", + "f": "Ilan", + "fp": "MO", + "r": 1, + "c": 68, + "s": { + "Og": 3, + "Os": 190, + "On": 35, + "Oa": 5.43, + "Od": 0.85, + "Om": 2754, + "Oam": 79, + "Odm": 20, + "pm": 30, + "pa": 5, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6226 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 6230 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6239 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6249 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6262 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 89, + "e": 6301 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 6322 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 84, + "e": 6331 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 28, + "e": 6351, + "s": 1 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 6362 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6377 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 89, + "e": 6381 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 60, + "e": 6399 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 73, + "e": 6414 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6421 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6433, + "g": 1 + } + ], + [ + -15, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6447 + } + ], + [ + -11, + { + "n": 7, + "q": null, + "m": 81, + "e": 6483, + "g": 1 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6512 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 65, + "e": 6544 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6551 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 22, + "e": 6578, + "s": 1 + } + ], + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 6210 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 82, + "e": 6269 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 6282, + "g": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6296 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 86, + "e": 6315 + } + ], + [ + -25, + { + "n": 7, + "q": null, + "m": 90, + "e": 6342 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 60, + "e": 6392 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 89, + "e": 6452 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6458 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6475 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6522 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 75, + "e": 6558 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 19, + "e": 6571, + "s": 1 + } + ] + ], + "fo": [ + [ + 6315, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6784, + { + "n": "Ekitike", + "f": "Hugo", + "fp": "MO", + "r": 7, + "c": 68, + "s": { + "Os": 9.5, + "On": 2, + "Oa": 4.75, + "Od": 0.35, + "Om": 86, + "Oam": 43, + "Odm": 17, + "pm": 2 + }, + "p": [ + [ + -8, + { + "n": 5, + "q": null, + "m": 31, + "e": 6134, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 55, + "e": 6145, + "s": 1 + } + ] + ] + } + ], + [ + 7141, + { + "n": "Doucouré", + "f": "Fodé", + "fp": "DL", + "r": 5, + "c": 68, + "s": { + "Os": 33, + "On": 7, + "Oa": 4.71, + "Od": 1.07, + "Om": 330, + "Oam": 47, + "Odm": 41, + "pd": 7 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 5, + "e": 5833, + "s": 1 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5874 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 16, + "e": 5926, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 27, + "e": 6051, + "s": 1 + } + ], + [ + -10, + { + "n": 3, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 12, + "e": 6134, + "s": 1 + } + ] + ] + } + ], + [ + 7417, + { + "n": "Lopy", + "f": "Dion", + "fp": "MD", + "r": 8, + "c": 68, + "s": { + "Os": 21, + "On": 4, + "Oa": 5.25, + "Od": 0.29, + "Om": 256, + "Oam": 64, + "Odm": 42, + "pm": 4 + }, + "p": [ + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 74, + "e": 5874 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5887 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 2, + "e": 5907, + "s": 1 + } + ] + ] + } + ], + [ + 7651, + { + "n": "Valentim", + "f": "Enzo", + "fp": "DC", + "r": 1, + "c": 68 + } + ], + [ + 7722, + { + "n": "Vimalin", + "f": "Trey", + "fp": "G", + "r": 3, + "c": 68 + } + ], + [ + 8203, + { + "n": "Mbow", + "f": "Mamadou", + "fp": "DC", + "r": 3, + "c": 68 + } + ], + [ + 8215, + { + "n": "Brahimi", + "f": "Billal", + "fp": "A", + "r": 2, + "c": 68 + } + ], + [ + 8464, + { + "n": "Penneteau", + "f": "Nicolas", + "fp": "G", + "r": 3, + "c": 68 + } + ], + [ + 370, + { + "n": "Tait", + "f": "Flavien", + "fp": "MO", + "r": 17, + "c": 20, + "s": { + "Og": 1, + "Os": 128.5, + "On": 23, + "Oa": 5.59, + "Od": 0.86, + "Om": 1370, + "Oam": 60, + "Odm": 33, + "pm": 22, + "pa": 1, + "Omsn": 7.5 + }, + "p": [ + [ + -34, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5875, + "g": 1 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 5858 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 68, + "e": 5895 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 74, + "e": 5911 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 21, + "e": 5931, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 5, + "e": 5993, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6027, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 1, + "e": 6074, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6097 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6107 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 6137 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6139 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6155 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 20, + "e": 6167, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 10, + "e": 6176, + "s": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 79, + "e": 6185 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 26, + "e": 6201, + "s": 1 + } + ] + ], + "fo": [ + [ + 5855, + [ + { + "t": "Y" + } + ] + ], + [ + 5858, + [ + { + "t": "Y" + } + ] + ], + [ + 5895, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 374, + { + "n": "Salin", + "f": "Romain", + "fp": "G", + "r": 7, + "c": 20, + "s": { + "Os": 81, + "On": 15, + "Oa": 5.4, + "Od": 1, + "Om": 1350, + "Oam": 90, + "pg": 15 + }, + "p": [ + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6139 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6185 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6189 + } + ] + ], + "fo": [ + [ + 5895, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 409, + { + "n": "Terrier", + "f": "Martin", + "fp": "MO", + "r": 17, + "c": 20, + "s": { + "Og": 9, + "Os": 181.5, + "On": 34, + "Oa": 5.34, + "Od": 1.01, + "Om": 2456, + "Oam": 72, + "Odm": 22, + "pm": 8, + "pa": 26, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 76, + "e": 5834 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 87, + "e": 5843 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 5855 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 5858 + } + ], + [ + -34, + { + "n": 8, + "q": null, + "m": 89, + "e": 5875, + "g": 2 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 64, + "e": 5878, + "g": 1 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 82, + "e": 5895, + "g": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 74, + "e": 5911, + "g": 1 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 87, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 83, + "e": 5931 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 79, + "e": 5946, + "g": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5951 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 58, + "e": 5967 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 5969 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 82, + "e": 5985, + "g": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 77, + "e": 6027 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6047 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 19, + "e": 6050, + "g": 1, + "s": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6067 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6074, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6107 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6115, + "s": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 6126 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 6137, + "s": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 64, + "e": 6139, + "g": 1 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 70, + "e": 6167 + } + ], + [ + -4, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 6189 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5951, + [ + { + "t": "I" + } + ] + ], + [ + 5907, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 439, + { + "n": "Faitout Maouassa", + "f": "", + "fp": "DL", + "r": 9, + "c": 20, + "s": { + "Os": 115, + "On": 23, + "Oa": 5, + "Od": 0.54, + "Om": 1170, + "Oam": 51, + "Odm": 30, + "pd": 23 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 30, + "e": 5834, + "s": 1 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 5843 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 79, + "e": 5855 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 36, + "e": 5858, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 26, + "e": 5895, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 19, + "e": 5907, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 4, + "e": 5927, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 5951, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 12, + "e": 5967, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 14, + "e": 5969, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 5985 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 66, + "e": 5993 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 87, + "e": 6006 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 3, + "e": 6009, + "s": 1 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 6050 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 62, + "e": 6067 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6087, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6097 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 41, + "e": 6176 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6185 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6189 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5951, + [ + { + "t": "Y" + } + ] + ], + [ + 5969, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 528, + { + "n": "Lea Siliki", + "f": "James", + "fp": "MD", + "r": 5, + "c": 20, + "s": { + "Os": 32, + "On": 7, + "Oa": 4.57, + "Od": 0.73, + "Om": 255, + "Oam": 36, + "Odm": 30, + "pm": 7 + }, + "p": [ + [ + -29, + { + "n": 5, + "q": null, + "m": 8, + "e": 5927, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 9, + "e": 6050, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 1, + "e": 6067, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6087 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 45, + "e": 6097, + "s": 1 + } + ], + [ + -10, + { + "n": 3, + "q": null, + "m": 56, + "e": 6115 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6126 + } + ] + ] + } + ], + [ + 922, + { + "n": "Niang", + "f": "M'Baye", + "fp": "A", + "r": 7, + "c": 20, + "s": { + "Og": 1, + "Os": 42, + "On": 9, + "Oa": 4.67, + "Od": 0.61, + "Om": 421, + "Oam": 47, + "Odm": 31, + "pa": 9, + "Omsn": 6 + }, + "p": [ + [ + -18, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6034, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6047 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6050, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 89, + "e": 6067 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 80, + "e": 6074, + "g": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 45, + "e": 6087, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 20, + "e": 6097, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6107, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 64, + "e": 6201 + } + ] + ] + } + ], + [ + 1182, + { + "n": "Hamari Traoré", + "f": "", + "fp": "DL", + "r": 15, + "c": 20, + "s": { + "Og": 1, + "Os": 180.5, + "On": 35, + "Oa": 5.16, + "Od": 0.91, + "Om": 3002, + "Oam": 86, + "Odm": 15, + "pd": 34, + "pm": 1, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5834 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5855 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 79, + "e": 5858 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5875 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 7, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 3, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 5985 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6067, + "g": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 6107, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6139 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6185 + } + ] + ], + "fo": [ + [ + 5931, + [ + { + "t": "Y" + } + ] + ], + [ + 5967, + [ + { + "t": "Y" + } + ] + ], + [ + 5969, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1187, + { + "n": "Bourigeaud", + "f": "Benjamin", + "fp": "MO", + "r": 19, + "c": 20, + "s": { + "Og": 6, + "Os": 207, + "On": 37, + "Oa": 5.59, + "Od": 0.9, + "Om": 2557, + "Oam": 69, + "Odm": 27, + "pm": 32, + "pa": 5, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5834, + "g": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 54, + "e": 5858 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 72, + "e": 5875 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 89, + "e": 5878 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 71, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5911 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 76, + "e": 5927, + "g": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 5931, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 25, + "e": 5946, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 62, + "e": 5951 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 24, + "e": 5993, + "s": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 87, + "e": 6009, + "g": 1 + } + ], + [ + -19, + { + "n": 7, + "q": null, + "m": 90, + "e": 6027, + "g": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6050, + "g": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 17, + "e": 6067, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 24, + "e": 6074, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 23, + "e": 6126, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 8, + "e": 6137, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6139 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 84, + "e": 6167 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 80, + "e": 6176 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 26, + "e": 6185, + "g": 1, + "s": 1 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 6189 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 64, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5843, + [ + { + "t": "Y" + } + ] + ], + [ + 5907, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1239, + { + "n": "Del Castillo", + "f": "Romain", + "fp": "A", + "r": 11, + "c": 20, + "s": { + "Os": 133.5, + "On": 26, + "Oa": 5.13, + "Od": 0.76, + "Om": 637, + "Oam": 25, + "Odm": 20, + "pm": 25, + "pa": 1 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 14, + "e": 5834, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 23, + "e": 5843, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 1, + "e": 5855, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 5858, + "s": 1 + } + ], + [ + -34, + { + "n": 6.5, + "q": null, + "m": 18, + "e": 5875, + "s": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 1, + "e": 5878, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 22, + "e": 5895, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 19, + "e": 5907, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 10, + "e": 5911, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5927, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 7, + "e": 5931, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 11, + "e": 5946, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 5951, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 33, + "e": 6006, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 45, + "e": 6087 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 58, + "e": 6107 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 11, + "e": 6115, + "s": 1 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 67, + "e": 6126 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 19, + "e": 6137, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6139 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 25, + "e": 6155, + "s": 1 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 70, + "e": 6167 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 32, + "e": 6176, + "s": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 11, + "e": 6185, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 3, + "e": 6189, + "s": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 26, + "e": 6201, + "s": 1 + } + ] + ], + "fo": [ + [ + 5855, + [ + { + "t": "Y" + } + ] + ], + [ + 5875, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1400, + { + "n": "Martin", + "f": "Jonas", + "fp": "MD", + "r": 5, + "c": 20, + "s": { + "Os": 60, + "On": 12, + "Oa": 5, + "Od": 0.93, + "Om": 480, + "Oam": 40, + "Odm": 31, + "pm": 12 + }, + "p": [ + [ + -28, + { + "n": 5, + "q": null, + "m": 60, + "e": 5931 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 62, + "e": 5951 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 58, + "e": 5967 + } + ], + [ + -24, + { + "n": 7, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5985, + "s": 1 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6139, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 11, + "e": 6155, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 6, + "e": 6167, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 10, + "e": 6176, + "s": 1 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6185 + } + ], + [ + -2, + { + "n": 5.5, + "q": null, + "m": 18, + "e": 6189, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 42, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5931, + [ + { + "t": "Y" + } + ] + ], + [ + 5969, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2035, + { + "n": "Nyamsi", + "f": "Gerzino", + "fp": "DC", + "r": 9, + "c": 20, + "s": { + "Og": 1, + "Os": 70.5, + "On": 14, + "Oa": 5.04, + "Od": 0.87, + "Om": 869, + "Oam": 62, + "Odm": 38, + "pd": 14, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5834 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 3, + "e": 5843, + "s": 1 + } + ], + [ + -34, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5875, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 3, + "e": 5927, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 5951, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 3, + "e": 6034, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 45, + "e": 6087 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6097 + } + ] + ], + "fo": [ + [ + 5875, + [ + { + "t": "Y" + } + ] + ], + [ + 5993, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2084, + { + "n": "Gelin", + "f": "Jeremy", + "fp": "DC", + "r": 6, + "c": 20 + } + ], + [ + 2677, + { + "n": "Guitane", + "f": "Rafik", + "fp": "MO", + "r": 4, + "c": 20 + } + ], + [ + 2692, + { + "n": "Aguerd", + "f": "Nayef", + "fp": "DC", + "r": 15, + "c": 20, + "s": { + "Og": 3, + "Os": 184, + "On": 35, + "Oa": 5.26, + "Od": 1, + "Om": 3148, + "Oam": 90, + "pd": 35, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 88, + "e": 5834 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6126, + "g": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6139 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6167, + "g": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6185, + "g": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6189 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6201 + } + ] + ], + "fo": [ + [ + 5843, + [ + { + "t": "Y" + } + ] + ], + [ + 5855, + [ + { + "t": "Y" + } + ] + ], + [ + 5895, + [ + { + "t": "Y" + } + ] + ], + [ + 5967, + [ + { + "t": "Y" + } + ] + ], + [ + 5993, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3186, + { + "n": "Camavinga", + "f": "Eduardo", + "fp": "MD", + "r": 17, + "c": 20, + "s": { + "Og": 1, + "Os": 189, + "On": 35, + "Oa": 5.4, + "Od": 0.88, + "Om": 2410, + "Oam": 69, + "Odm": 24, + "pm": 35, + "Omsn": 7 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 88, + "e": 5834 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 45, + "e": 5843 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 77, + "e": 5875 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 5878 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 88, + "e": 5907 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 30, + "e": 5931, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 65, + "e": 5946 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 5951, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 5967 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5993 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 78, + "e": 6006 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6034, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 25, + "e": 6047, + "s": 1 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6050 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6067 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6074 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6087, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6097 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 61, + "e": 6137 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 26, + "e": 6139, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 79, + "e": 6155 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 89, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 6176 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 6185 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 87, + "e": 6189, + "g": 1 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 26, + "e": 6201, + "s": 1 + } + ] + ], + "fo": [ + [ + 5907, + [ + { + "t": "I" + } + ] + ], + [ + 5875, + [ + { + "t": "Y" + } + ] + ], + [ + 5895, + [ + { + "t": "Y" + } + ] + ], + [ + 5969, + [ + { + "t": "Y" + } + ] + ], + [ + 5993, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3366, + { + "n": "Guirassy", + "f": "Serhou", + "fp": "A", + "r": 21, + "c": 20, + "s": { + "Og": 11, + "Os": 144, + "On": 28, + "Oa": 5.14, + "Od": 1.24, + "Om": 1840, + "Oam": 66, + "Odm": 30, + "pa": 28, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5834, + "g": 1 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 45, + "e": 5843, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 89, + "e": 5855, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 36, + "e": 5858, + "s": 1 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 26, + "e": 5878, + "g": 1, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 5895 + } + ], + [ + -31, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5907, + "g": 2 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 16, + "e": 5911, + "g": 1, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 3, + "e": 5927, + "s": 1 + } + ], + [ + -28, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 5931 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 7, + "q": null, + "m": 90, + "e": 5951, + "g": 1 + } + ], + [ + -25, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 85, + "e": 5993 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 45, + "e": 6097 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 77, + "e": 6107 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 29, + "e": 6137, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6139 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6155 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 84, + "e": 6167, + "g": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6176 + } + ], + [ + -3, + { + "n": 7.5, + "q": null, + "m": 79, + "e": 6185, + "g": 2 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6189, + "s": 1 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 75, + "e": 6580, + "g": 1 + } + ] + ], + "fo": [ + [ + 5895, + [ + { + "t": "Y" + } + ] + ], + [ + 5911, + [ + { + "t": "Y" + } + ] + ], + [ + 5967, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3778, + { + "n": "Guclu", + "f": "Metehan", + "fp": "A", + "r": 1, + "c": 20, + "s": { + "Os": 52.5, + "On": 12, + "Oa": 4.38, + "Od": 0.61, + "Om": 267, + "Oam": 21, + "Odm": 21, + "pa": 12 + }, + "p": [ + [ + -19, + { + "n": 5, + "q": null, + "m": 72, + "e": 6401 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 45, + "e": 6417, + "s": 1 + } + ], + [ + -17, + { + "n": null, + "q": null, + "m": 0, + "e": 6425, + "d": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6437, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6441, + "s": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 8, + "e": 6450, + "s": 1 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 12, + "e": 6474, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 9, + "e": 6526, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 29, + "e": 6533, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 1, + "e": 6547, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 5, + "e": 6575, + "s": 1 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 32, + "e": 6551, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6567, + "s": 1 + } + ] + ] + } + ], + [ + 4633, + { + "n": "Gomis", + "f": "Alfred", + "fp": "G", + "r": 19, + "c": 20, + "s": { + "Os": 145, + "On": 27, + "Oa": 5.37, + "Od": 0.91, + "Om": 2430, + "Oam": 90, + "pg": 27 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5834 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 90, + "e": 5843 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5875 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5878 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5895 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 5907 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6126 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6160 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6177 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6180 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6188 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6200 + } + ] + ], + "fo": [ + [ + 5911, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6274, + { + "n": "Bonet", + "f": "Pépé", + "fp": "G", + "r": 1, + "c": 20 + } + ], + [ + 6413, + { + "n": "Bade", + "f": "Loic", + "fp": "DC", + "r": 11, + "c": 20, + "s": { + "Os": 153, + "On": 31, + "Oa": 4.94, + "Od": 0.87, + "Om": 2609, + "Oam": 84, + "Odm": 20, + "pd": 31 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5836 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5838 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 90, + "e": 5849 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5869 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5879 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5900 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5920 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5938 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5949 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5966 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5969 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5980, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 9, + "e": 5994, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 6020 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6031 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 90, + "e": 6040 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6052 + } + ], + [ + -14, + { + "n": 4, + "q": null, + "m": 90, + "e": 6069 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6087 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6088 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6100 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6110 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6130 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6140 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 89, + "e": 6182 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6190 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6205 + } + ] + ], + "fo": [ + [ + 5838, + [ + { + "t": "Y" + } + ] + ], + [ + 5869, + [ + { + "t": "Y" + } + ] + ], + [ + 5879, + [ + { + "t": "Y" + } + ] + ], + [ + 5916, + [ + { + "t": "Y" + } + ] + ], + [ + 5949, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6712, + { + "n": "Meling", + "f": "Birger", + "fp": "DL", + "r": 14, + "c": 20, + "s": { + "Og": 2, + "Os": 133, + "On": 26, + "Oa": 5.12, + "Od": 1.25, + "Om": 2329, + "Oam": 90, + "Odm": 2, + "pd": 26, + "Omsn": 8 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5834 + } + ], + [ + -37, + { + "n": 3, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5851 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5866 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5869 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5886 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5905 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5910 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5935 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 8, + "q": null, + "m": 90, + "e": 5954, + "g": 1 + } + ], + [ + -25, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5960 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5975 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5983 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5988 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6003 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6013 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 90, + "e": 6037 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6128 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6152 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6185 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6194 + } + ], + [ + -1, + { + "n": 8, + "q": null, + "m": 79, + "e": 6206, + "g": 1 + } + ] + ], + "fo": [ + [ + 5851, + [ + { + "t": "Y" + } + ] + ], + [ + 5935, + [ + { + "t": "Y" + } + ] + ], + [ + 5975, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6863, + { + "n": "Truffert", + "f": "Adrien", + "fp": "DL", + "r": 11, + "c": 20, + "s": { + "Og": 1, + "Os": 149, + "On": 29, + "Oa": 5.14, + "Od": 0.92, + "Om": 1958, + "Oam": 68, + "Odm": 23, + "pd": 24, + "pm": 5, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 5834 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 23, + "e": 5843, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 72, + "e": 5875 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 77, + "e": 5878 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 5895 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 71, + "e": 5907 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5911 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5931 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 5946 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 5951 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5967 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 76, + "e": 5969 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 21, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 24, + "e": 5993, + "s": 1 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 6006 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 71, + "e": 6050 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 28, + "e": 6067, + "s": 1 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 89, + "e": 6074 + } + ], + [ + -13, + { + "n": 3, + "q": null, + "m": 45, + "e": 6087 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 45, + "e": 6097, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6107 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6115 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 6137 + } + ], + [ + -4, + { + "n": 7.5, + "q": null, + "m": 49, + "e": 6176, + "g": 1, + "s": 1 + } + ] + ], + "fo": [ + [ + 5875, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6925, + { + "n": "Soppy", + "f": "Brandon", + "fp": "DL", + "r": 8, + "c": 20, + "s": { + "Os": 44.5, + "On": 9, + "Oa": 4.94, + "Od": 0.3, + "Om": 508, + "Oam": 56, + "Odm": 38, + "pd": 9 + }, + "p": [ + [ + -36, + { + "n": 5, + "q": null, + "m": 1, + "e": 5855, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 11, + "e": 5858, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5875 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 66, + "e": 5985, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6107 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 11, + "e": 6185, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6189 + } + ] + ] + } + ], + [ + 7409, + { + "n": "Assignon", + "f": "Lorenz", + "fp": "DL", + "r": 1, + "c": 20 + } + ], + [ + 7412, + { + "n": "Doku", + "f": "Jéremy", + "fp": "MO", + "r": 19, + "c": 20, + "s": { + "Og": 2, + "Os": 164, + "On": 30, + "Oa": 5.47, + "Od": 0.91, + "Om": 2318, + "Oam": 77, + "Odm": 23, + "pm": 17, + "pa": 13, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 76, + "e": 5834 + } + ], + [ + -37, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 5843 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5855 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5858 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5875 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 90, + "e": 5878, + "g": 1 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 51, + "e": 5911, + "g": 1 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 86, + "e": 5927 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5931 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5946 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5951 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 14, + "e": 5969, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5985 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5993 + } + ], + [ + -21, + { + "n": 7, + "q": null, + "m": 90, + "e": 6006 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6009 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6027 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6034 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6047 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 90, + "e": 6050 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6067 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 89, + "e": 6074 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 45, + "e": 6087, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 32, + "e": 6107, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 79, + "e": 6115 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 67, + "e": 6126 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6137 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6139, + "s": 1 + } + ] + ], + "fo": [ + [ + 5911, + [ + { + "t": "R" + } + ] + ], + [ + 5967, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7476, + { + "n": "Omari", + "f": "Warmed", + "fp": "DC", + "r": 1, + "c": 20 + } + ], + [ + 7477, + { + "n": "Ugochukwu", + "f": "Chimuanya", + "fp": "MD", + "r": 5, + "c": 20, + "s": { + "Os": 15.5, + "On": 3, + "Oa": 5.17, + "Od": 0.76, + "Om": 64, + "Oam": 21, + "Odm": 34, + "pm": 3 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 5834, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 61, + "e": 5855 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 1, + "e": 5875, + "s": 1 + } + ] + ], + "fo": [ + [ + 5834, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 7844, + { + "n": "Abline", + "f": "Matthis", + "fp": "A", + "r": 3, + "c": 20 + } + ], + [ + 7845, + { + "n": "Diouf", + "f": "Andy", + "fp": "MO", + "r": 3, + "c": 20 + } + ], + [ + 8467, + { + "n": "Sulemana", + "f": "Kamaldeen", + "fp": "MO", + "r": 10, + "c": 20 + } + ], + [ + 13, + { + "n": "Hamouma", + "f": "Romain", + "fp": "MO", + "r": 14, + "c": 4, + "s": { + "Og": 6, + "Os": 141.5, + "On": 29, + "Oa": 4.88, + "Od": 1.07, + "Om": 1773, + "Oam": 61, + "Odm": 25, + "pm": 1, + "pa": 28, + "Omsn": 6 + }, + "p": [ + [ + -3, + { + "n": 5, + "q": null, + "m": 72, + "e": 6186 + } + ], + [ + -37, + { + "n": 4, + "q": null, + "m": 62, + "e": 5840 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 21, + "e": 5856, + "s": 1 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 75, + "e": 5865, + "g": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 35, + "e": 5876, + "s": 1 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5883, + "g": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 73, + "e": 5896 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 31, + "e": 5905, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 52, + "e": 5976 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 5986, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6026, + "s": 1 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 83, + "e": 6036, + "g": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6042, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6055 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6059, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 6075 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 79, + "e": 6080 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 74, + "e": 6096 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6117, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 19, + "e": 6150, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 32, + "e": 6174, + "s": 1 + } + ], + [ + -2, + { + "n": 8, + "q": null, + "m": 72, + "e": 6195, + "g": 2 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 58, + "e": 6198, + "g": 1 + } + ] + ], + "fo": [ + [ + 5865, + [ + { + "t": "I" + } + ] + ], + [ + 5976, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 31, + { + "n": "Boudebouz", + "f": "Ryad", + "fp": "MO", + "r": 6, + "c": 4, + "s": { + "Os": 71, + "On": 14, + "Oa": 5.07, + "Od": 0.85, + "Om": 651, + "Oam": 47, + "Odm": 27, + "pm": 12, + "pa": 2 + }, + "p": [ + [ + -20, + { + "n": 3.5, + "q": null, + "m": 64, + "e": 6017 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 10, + "e": 5876, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 60, + "e": 5915 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 30, + "e": 5918, + "s": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 7, + "e": 5936, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 6036, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 45, + "e": 6042, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 62, + "e": 6055 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 65, + "e": 6059 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 74, + "e": 6075 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 27, + "e": 6080, + "s": 1 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 16, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 6099 + } + ] + ] + } + ], + [ + 411, + { + "n": "Nordin", + "f": "Arnaud", + "fp": "MO", + "r": 12, + "c": 4, + "s": { + "Og": 4, + "Os": 165.5, + "On": 32, + "Oa": 5.17, + "Od": 1.12, + "Om": 1783, + "Oam": 56, + "Odm": 23, + "pm": 15, + "pa": 17, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 61, + "e": 5835 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 62, + "e": 5840 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 69, + "e": 5856, + "g": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 5865 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 55, + "e": 5876 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5883, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 17, + "e": 5896, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 5918, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5936 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 83, + "e": 5942 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 45, + "e": 5956, + "s": 1 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 33, + "e": 5967, + "g": 1, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 38, + "e": 5976, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 5986 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 81, + "e": 5996 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6007, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6026 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 83, + "e": 6036 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 20, + "e": 6042, + "s": 1 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 78, + "e": 6055, + "g": 1 + } + ], + [ + -15, + { + "n": 8, + "q": null, + "m": 73, + "e": 6059, + "g": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 60, + "e": 6075 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6080, + "s": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6099, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 6150 + } + ], + [ + -5, + { + "n": 3, + "q": null, + "m": 73, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6174 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 52, + "e": 6186 + } + ], + [ + -2, + { + "n": 7.5, + "q": null, + "m": 82, + "e": 6195 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 45, + "e": 6198, + "s": 1 + } + ] + ] + } + ], + [ + 887, + { + "n": "Khazri", + "f": "Wahbi", + "fp": "MO", + "r": 17, + "c": 4, + "s": { + "Og": 7, + "Os": 106, + "On": 22, + "Oa": 4.82, + "Od": 1.33, + "Om": 1192, + "Oam": 54, + "Odm": 24, + "pm": 2, + "pa": 20, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 78, + "e": 5835 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5840 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 69, + "e": 5856 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5865 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 55, + "e": 5876, + "g": 1 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 68, + "e": 5883 + } + ], + [ + -32, + { + "n": 8.5, + "q": null, + "m": 73, + "e": 5896, + "g": 3 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 59, + "e": 5905, + "g": 1 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 68, + "e": 5915 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 82, + "e": 5918, + "g": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5956 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 68, + "e": 5967 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 5986, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6055 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 25, + "e": 6059, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6075, + "s": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 63, + "e": 6080 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 66, + "e": 6096, + "g": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6117, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 71, + "e": 6127 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6133, + "s": 1 + } + ], + [ + -6, + { + "n": 2, + "q": null, + "m": 19, + "e": 6150, + "s": 1 + } + ] + ], + "fo": [ + [ + 5840, + [ + { + "t": "Y" + } + ] + ], + [ + 5905, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1170, + { + "n": "Dioussé", + "f": "Assane", + "fp": "MD", + "r": 6, + "c": 4, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 1, + "Oam": 1, + "pm": 1 + }, + "p": [ + [ + -2, + { + "n": 5, + "q": null, + "m": 1, + "e": 6195, + "s": 1 + } + ] + ] + } + ], + [ + 1192, + { + "n": "Gabriel Silva", + "f": "", + "fp": "DL", + "r": 7, + "c": 4, + "s": { + "Os": 20, + "On": 4, + "Oa": 5, + "Od": 0.82, + "Om": 356, + "Oam": 89, + "Odm": 2, + "pd": 4 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5835 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 86, + "e": 6127 + } + ] + ], + "fo": [ + [ + 5865, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1219, + { + "n": "Katranis", + "f": "Alexandros", + "fp": "DL", + "r": 3, + "c": 4 + } + ], + [ + 1549, + { + "n": "Youssouf", + "f": "Zaydou", + "fp": "MD", + "r": 13, + "c": 4, + "s": { + "Og": 1, + "Os": 144, + "On": 29, + "Oa": 4.97, + "Od": 0.72, + "Om": 1221, + "Oam": 42, + "Odm": 29, + "pm": 29, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5835, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 9, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 4, + "e": 5856, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 1, + "e": 5865, + "s": 1 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 80, + "e": 5876 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5883 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 29, + "e": 5896, + "g": 1, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 30, + "e": 5905, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 30, + "e": 5915, + "s": 1 + } + ], + [ + -29, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 5918 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 59, + "e": 5942 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 5956, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 5967, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 26, + "e": 5976, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 14, + "e": 6007, + "s": 1 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6026 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 83, + "e": 6036 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 17, + "e": 6059, + "s": 1 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 89, + "e": 6096 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 79, + "e": 6117 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6127 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 57, + "e": 6146 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 19, + "e": 6150, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 45, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 6174 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 18, + "e": 6186, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 32, + "e": 6198, + "s": 1 + } + ] + ], + "fo": [ + [ + 5876, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2143, + { + "n": "Camara", + "f": "Mahdi", + "fp": "MD", + "r": 13, + "c": 4, + "s": { + "Og": 3, + "Os": 205.5, + "On": 37, + "Oa": 5.55, + "Od": 0.98, + "Om": 3295, + "Oam": 89, + "Odm": 3, + "pd": 5, + "pm": 31, + "pa": 1, + "Omsn": 4 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5835 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5905 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 7, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 5942 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 79, + "e": 5956 + } + ], + [ + -25, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5986, + "g": 1 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 3, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 78, + "e": 6055 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6099, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 86, + "e": 6127 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 90, + "e": 6186, + "g": 1 + } + ], + [ + -2, + { + "n": 7, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5876, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2434, + { + "n": "Palencia", + "f": "Sergi", + "fp": "DL", + "r": 4, + "c": 4 + } + ], + [ + 2616, + { + "n": "Kolodziejczak", + "f": "Timothée", + "fp": "DC", + "r": 7, + "c": 4, + "s": { + "Os": 112.5, + "On": 24, + "Oa": 4.69, + "Od": 1.15, + "Om": 2037, + "Oam": 85, + "Odm": 16, + "pd": 24 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5835 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 63, + "e": 5856, + "s": 1 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5936 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -21, + { + "n": 2, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6055 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6059 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -6, + { + "n": 3, + "q": null, + "m": 14, + "e": 6150 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6186 + } + ], + [ + -2, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5856, + [ + { + "t": "Y" + } + ] + ], + [ + 5976, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2790, + { + "n": "Bouanga", + "f": "Denis", + "fp": "MO", + "r": 21, + "c": 4, + "s": { + "Og": 7, + "Oao": 1, + "Os": 183, + "On": 36, + "Oa": 5.08, + "Od": 1.37, + "Om": 2735, + "Oam": 76, + "Odm": 19, + "pm": 21, + "pa": 15, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 5835 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 86, + "e": 5856 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 89, + "e": 5865 + } + ], + [ + -33, + { + "n": 7, + "q": null, + "m": 45, + "e": 5883, + "g": 1, + "s": 1 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 84, + "e": 5896 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 83, + "e": 5905, + "g": 1 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 81, + "e": 5915 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 89, + "e": 5918 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 29, + "e": 5936, + "g": 1, + "s": 1 + } + ], + [ + -27, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 8, + "q": null, + "m": 89, + "e": 5967, + "g": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 2.5, + "q": null, + "m": 45, + "e": 6007, + "a": 1, + "s": 1 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 84, + "e": 6026 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 88, + "e": 6036 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 69, + "e": 6042, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 28, + "e": 6055, + "s": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 65, + "e": 6059 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 6075 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 2.5, + "q": null, + "m": 78, + "e": 6099 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 6127, + "s": 1 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6133 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6146, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 71, + "e": 6150 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 81, + "e": 6167 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 77, + "e": 6174 + } + ], + [ + -3, + { + "n": 7, + "q": null, + "m": 87, + "e": 6186, + "g": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 71, + "e": 6195 + } + ], + [ + -1, + { + "n": 7, + "q": null, + "m": 90, + "e": 6198, + "g": 1 + } + ] + ], + "fo": [ + [ + 5896, + [ + { + "t": "Y" + } + ] + ], + [ + 5905, + [ + { + "t": "Y" + } + ] + ], + [ + 5918, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2893, + { + "n": "Bajic", + "f": "Stefan", + "fp": "G", + "r": 5, + "c": 4, + "s": { + "Os": 2.5, + "On": 1, + "Oa": 2.5, + "Om": 90, + "Oam": 90, + "pg": 1 + }, + "p": [ + [ + -30, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 5915 + } + ] + ] + } + ], + [ + 2990, + { + "n": "Tshibuabua", + "f": "Marvin", + "fp": "DC", + "r": 1, + "c": 4, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 42, + "Oam": 42, + "pd": 1 + }, + "p": [ + [ + -8, + { + "n": 5, + "q": null, + "m": 42, + "e": 6133, + "s": 1 + } + ] + ] + } + ], + [ + 2991, + { + "n": "Abi", + "f": "Charles", + "fp": "A", + "r": 10, + "c": 4, + "s": { + "Og": 3, + "Os": 106.5, + "On": 24, + "Oa": 4.44, + "Od": 0.85, + "Om": 904, + "Oam": 38, + "Odm": 25, + "pm": 1, + "pa": 23, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 69, + "e": 5856 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5865, + "s": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 35, + "e": 5876, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5883, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5896, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 60, + "e": 5905 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 45, + "e": 5915, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 60, + "e": 5918 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 30, + "e": 5942, + "s": 1 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 31, + "e": 5956, + "g": 1, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5967, + "s": 1 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 5986 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 9, + "e": 5996, + "g": 1, + "s": 1 + } + ], + [ + -21, + { + "n": 2.5, + "q": null, + "m": 69, + "e": 6007 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 21, + "e": 6026, + "g": 1, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6036, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 16, + "e": 6075, + "s": 1 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6099 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 75, + "e": 6117 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6127, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 38, + "e": 6186, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 71, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5967, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2992, + { + "n": "Benkhedim", + "f": "Bilal", + "fp": "MO", + "r": 1, + "c": 4, + "s": { + "Os": 14, + "On": 3, + "Oa": 4.67, + "Od": 0.58, + "Om": 72, + "Oam": 24, + "Odm": 32, + "pm": 2, + "pa": 1 + }, + "p": [ + [ + -20, + { + "n": 5, + "q": null, + "m": 1, + "e": 6017, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 60, + "e": 6127 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 11, + "e": 6146, + "s": 1 + } + ] + ] + } + ], + [ + 3518, + { + "n": "Ghezali", + "f": "Lamine", + "fp": "A", + "r": 1, + "c": 4 + } + ], + [ + 3765, + { + "n": "Sissoko", + "f": "Alpha", + "fp": "DL", + "r": 3, + "c": 4, + "s": { + "Oao": 1, + "Os": 37, + "On": 9, + "Oa": 4.11, + "Od": 0.89, + "Om": 472, + "Oam": 52, + "Odm": 39, + "pd": 8, + "pm": 1 + }, + "p": [ + [ + -21, + { + "n": 4, + "q": null, + "m": 45, + "e": 6007 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 2, + "e": 6036, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 1, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 45, + "e": 6099 + } + ], + [ + -8, + { + "n": 3, + "q": null, + "m": 90, + "e": 6133, + "a": 1 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 19, + "e": 6198, + "s": 1 + } + ] + ] + } + ], + [ + 3772, + { + "n": "Nade", + "f": "Mickael", + "fp": "DC", + "r": 5, + "c": 4 + } + ], + [ + 3788, + { + "n": "Moukoudi", + "f": "Harold", + "fp": "DC", + "r": 12, + "c": 4, + "s": { + "Og": 3, + "Os": 131, + "On": 26, + "Oa": 5.04, + "Od": 0.86, + "Om": 2277, + "Oam": 88, + "Odm": 12, + "pd": 26, + "Omsn": 4.5 + }, + "p": [ + [ + -36, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 5856 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5905 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5936, + "g": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 5942, + "g": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -19, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6055, + "g": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6174 + } + ] + ], + "fo": [ + [ + 5856, + [ + { + "t": "I" + } + ] + ], + [ + 5896, + [ + { + "t": "Y" + } + ] + ], + [ + 5936, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4030, + { + "n": "Aouchiche", + "f": "Adil", + "fp": "MO", + "r": 14, + "c": 4, + "s": { + "Og": 2, + "Os": 180.5, + "On": 34, + "Oa": 5.31, + "Od": 0.76, + "Om": 1735, + "Oam": 51, + "Odm": 26, + "pm": 29, + "pa": 5, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5835 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 28, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 21, + "e": 5856, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 15, + "e": 5865, + "s": 1 + } + ], + [ + -34, + { + "n": 3.5, + "q": null, + "m": 55, + "e": 5876 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 22, + "e": 5883, + "s": 1 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 61, + "e": 5896 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 83, + "e": 5905 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 60, + "e": 5918 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 71, + "e": 5936 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5942, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 45, + "e": 5956, + "s": 1 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 57, + "e": 5967 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5986 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 81, + "e": 5996 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 21, + "e": 6007, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 26, + "e": 6017, + "s": 1 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6026 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 7, + "e": 6036, + "s": 1 + } + ], + [ + -17, + { + "n": 6, + "q": null, + "m": 59, + "e": 6042 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6055, + "s": 1 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 73, + "e": 6059 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 16, + "e": 6075, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 16, + "e": 6099, + "s": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 45, + "e": 6127, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 63, + "e": 6133 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 79, + "e": 6146, + "g": 1 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6150 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 61, + "e": 6167 + } + ], + [ + -4, + { + "n": 7, + "q": null, + "m": 76, + "e": 6174, + "g": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 87, + "e": 6186 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5918, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6019, + { + "n": "Trauco", + "f": "Miguel", + "fp": "DL", + "r": 10, + "c": 4, + "s": { + "Os": 125.5, + "On": 26, + "Oa": 4.83, + "Od": 0.76, + "Om": 2035, + "Oam": 78, + "Odm": 24, + "pd": 24, + "pm": 2 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 89, + "e": 5883 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5905 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 45, + "e": 5915 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5936, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 13, + "e": 5976, + "s": 1 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 7, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 3, + "q": null, + "m": 69, + "e": 6007 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6055 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 45, + "e": 6099, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6146, + "s": 1 + } + ] + ] + } + ], + [ + 6400, + { + "n": "Rivera", + "f": "Maxence", + "fp": "A", + "r": 3, + "c": 4, + "s": { + "Os": 77, + "On": 17, + "Oa": 4.53, + "Od": 0.28, + "Om": 224, + "Oam": 13, + "Odm": 7, + "pm": 1, + "pa": 16 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 19, + "e": 5835, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5915, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 2, + "e": 5942, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6017, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6026, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6055, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6075, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6099, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6117, + "s": 1 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6127, + "s": 1 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 8, + "e": 6133, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6146, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 16, + "e": 6150 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6167, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6174, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6186, + "s": 1 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 19, + "e": 6195, + "s": 1 + } + ] + ] + } + ], + [ + 6401, + { + "n": "Moueffek", + "f": "Aïmen", + "fp": "MD", + "r": 8, + "c": 4, + "s": { + "Os": 89.5, + "On": 19, + "Oa": 4.71, + "Od": 0.69, + "Om": 733, + "Oam": 39, + "Odm": 34, + "pd": 4, + "pm": 15 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 29, + "e": 5835, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 9, + "e": 5840, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 5883, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 7, + "e": 5896, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 26, + "e": 5905, + "s": 1 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 9, + "e": 5915, + "s": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 8, + "e": 5918, + "s": 1 + } + ], + [ + -27, + { + "n": 3.5, + "q": null, + "m": 29, + "e": 5942, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 1, + "e": 5967, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 13, + "e": 5976, + "s": 1 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 64, + "e": 6017 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 7, + "e": 6036, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 11, + "e": 6117, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -5, + { + "n": 3, + "q": null, + "m": 45, + "e": 6167 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6198, + "s": 1 + } + ] + ], + "fo": [ + [ + 5942, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6509, + { + "n": "Maçon", + "f": "Yvann", + "fp": "DL", + "r": 3, + "c": 4, + "s": { + "Og": 1, + "Os": 31.5, + "On": 6, + "Oa": 5.25, + "Od": 1.44, + "Om": 539, + "Oam": 90, + "pd": 6, + "Omsn": 5.5 + }, + "p": [ + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 3, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6174, + "g": 1 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6186 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 89, + "e": 6195 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6198 + } + ] + ] + } + ], + [ + 6593, + { + "n": "Gourna-Douath", + "f": "Lucas", + "fp": "MD", + "r": 9, + "c": 4, + "s": { + "Os": 148, + "On": 30, + "Oa": 4.93, + "Od": 0.6, + "Om": 1317, + "Oam": 44, + "Odm": 33, + "pd": 4, + "pm": 26 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 61, + "e": 5835 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 19, + "e": 5840, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 21, + "e": 5856, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 89, + "e": 5876 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5905, + "s": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5936 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 5942, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 45, + "e": 5956 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 5986, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 5996, + "s": 1 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6026, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6042 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 12, + "e": 6055, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 17, + "e": 6059, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 2, + "e": 6075, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 1, + "e": 6096, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 45, + "e": 6099 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 79, + "e": 6117 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 27, + "e": 6133, + "s": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 33, + "e": 6146, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 5, + "e": 6150, + "s": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 31, + "e": 6174, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 3, + "e": 6186, + "s": 1 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 19, + "e": 6198, + "s": 1 + } + ] + ], + "fo": [ + [ + 5835, + [ + { + "t": "Y" + } + ] + ], + [ + 5936, + [ + { + "t": "Y" + } + ] + ], + [ + 5942, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6704, + { + "n": "Neyou", + "f": "Yvan", + "fp": "MD", + "r": 12, + "c": 4, + "s": { + "Og": 1, + "Os": 165.5, + "On": 31, + "Oa": 5.34, + "Od": 0.99, + "Om": 2452, + "Oam": 79, + "Odm": 16, + "pm": 31, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5835 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 81, + "e": 5840 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 7, + "q": null, + "m": 83, + "e": 5896 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 64, + "e": 5905 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 67, + "e": 5915 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 5936, + "s": 1 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 7, + "q": null, + "m": 69, + "e": 5967 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 77, + "e": 5976 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 72, + "e": 5996 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 76, + "e": 6007 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6055 + } + ], + [ + -15, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6059, + "g": 1 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6133 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 6150 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 45, + "e": 6167, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 80, + "e": 6174 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 72, + "e": 6186 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 71, + "e": 6195 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 71, + "e": 6198 + } + ] + ], + "fo": [ + [ + 5896, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ], + [ + 5840, + [ + { + "t": "Y" + } + ] + ], + [ + 5883, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 6794, + { + "n": "Green", + "f": "Etienne", + "fp": "G", + "r": 13, + "c": 4, + "s": { + "Os": 44.5, + "On": 8, + "Oa": 5.56, + "Od": 1.12, + "Om": 720, + "Oam": 90, + "pg": 8 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5835 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 5856 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5865 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5876 + } + ], + [ + -33, + { + "n": 4, + "q": null, + "m": 90, + "e": 5883 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 5896 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 5905 + } + ] + ] + } + ], + [ + 6806, + { + "n": "Krasso", + "f": "Jean-Phillipe", + "fp": "A", + "r": 8, + "c": 4, + "s": { + "Os": 27.5, + "On": 6, + "Oa": 4.58, + "Od": 0.58, + "Om": 220, + "Oam": 37, + "Odm": 28, + "pm": 2, + "pa": 4 + }, + "p": [ + [ + -20, + { + "n": 5, + "q": null, + "m": 89, + "e": 6017 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6042, + "s": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 28, + "e": 6055, + "s": 1 + } + ], + [ + -7, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6146 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 29, + "e": 6167, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6195, + "s": 1 + } + ] + ] + } + ], + [ + 7138, + { + "n": "Sow", + "f": "Saidou", + "fp": "DL", + "r": 7, + "c": 4, + "s": { + "Os": 70, + "On": 15, + "Oa": 4.67, + "Od": 0.88, + "Om": 997, + "Oam": 66, + "Odm": 34, + "pd": 15 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5835 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5840 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 1, + "e": 5876, + "s": 1 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 90, + "e": 5915 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 21, + "e": 6007, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6026, + "s": 1 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 1, + "e": 6059, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 45, + "e": 6146 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 74, + "e": 6150, + "s": 1 + } + ] + ] + } + ], + [ + 7329, + { + "n": "Sidibé", + "f": "Abdoulaye", + "fp": "A", + "r": 1, + "c": 4 + } + ], + [ + 7363, + { + "n": "Tormin", + "f": "Tyrone", + "fp": "MO", + "r": 3, + "c": 4, + "s": { + "Os": 10, + "On": 2, + "Oa": 5, + "Om": 9, + "Oam": 5, + "Odm": 5, + "pm": 2 + }, + "p": [ + [ + -20, + { + "n": 5, + "q": null, + "m": 1, + "e": 6017, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 8, + "e": 6133, + "s": 1 + } + ] + ] + } + ], + [ + 7599, + { + "n": "Gabard", + "f": "Baptiste", + "fp": "MD", + "r": 3, + "c": 4, + "s": { + "Os": 9, + "On": 2, + "Oa": 4.5, + "Od": 0.71, + "Om": 134, + "Oam": 67, + "Odm": 31, + "pm": 2 + }, + "p": [ + [ + -21, + { + "n": 4, + "q": null, + "m": 45, + "e": 6007 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 89, + "e": 6017 + } + ] + ] + } + ], + [ + 7601, + { + "n": "Fall", + "f": "Boubacar", + "fp": "G", + "r": 3, + "c": 4 + } + ], + [ + 7646, + { + "n": "Bakayoko", + "f": "Abdoulaye", + "fp": "DC", + "r": 1, + "c": 4 + } + ], + [ + 7819, + { + "n": "Ouennas", + "f": "Nabil", + "fp": "G", + "r": 1, + "c": 4 + } + ], + [ + 8194, + { + "n": "Saban", + "f": "Mathys", + "fp": "MD", + "r": 1, + "c": 4 + } + ], + [ + 8199, + { + "n": "Lhéry", + "f": "Yanis", + "fp": "A", + "r": 1, + "c": 4 + } + ], + [ + 23, + { + "n": "Majeed Waris", + "f": "", + "fp": "A", + "r": 5, + "c": 41, + "s": { + "Og": 1, + "Os": 66.5, + "On": 15, + "Oa": 4.43, + "Od": 0.53, + "Om": 547, + "Oam": 36, + "Odm": 30, + "pm": 3, + "pa": 12, + "Omsn": 5.5 + }, + "p": [ + [ + -29, + { + "n": 4, + "q": null, + "m": 72, + "e": 5927, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5971 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6017, + "s": 1 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6020, + "s": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 17, + "e": 6037, + "g": 1, + "s": 1 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6056, + "s": 1 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 66, + "e": 6058 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6116, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 14, + "e": 6125, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 6, + "e": 6147, + "s": 1 + } + ], + [ + -5, + { + "n": 3.5, + "q": null, + "m": 45, + "e": 6164 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 6177 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 80, + "e": 6186 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6196, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 6202, + "s": 1 + } + ] + ] + } + ], + [ + 297, + { + "n": "Prcic", + "f": "Sanjin", + "fp": "MD", + "r": 5, + "c": 41, + "s": { + "Os": 67, + "On": 14, + "Oa": 4.79, + "Od": 0.58, + "Om": 346, + "Oam": 25, + "Odm": 26, + "pm": 14 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 1, + "e": 5837, + "s": 1 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 8, + "e": 5857, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 31, + "e": 5897, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 7, + "e": 5957, + "s": 1 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 5971 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 2, + "e": 6017, + "s": 1 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 8, + "e": 6037, + "s": 1 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 26, + "e": 6046, + "s": 1 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 6, + "e": 6084, + "s": 1 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 76, + "e": 6125 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 9, + "e": 6129, + "s": 1 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 29, + "e": 6164, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 12, + "e": 6177, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6202 + } + ] + ] + } + ], + [ + 332, + { + "n": "Djiku", + "f": "Alexander", + "fp": "DC", + "r": 8, + "c": 41, + "s": { + "Os": 150, + "On": 30, + "Oa": 5, + "Od": 1.11, + "Om": 2554, + "Oam": 85, + "Odm": 13, + "pd": 25, + "pm": 5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 3, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5886 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 78, + "e": 5937 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 5999 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6037 + } + ], + [ + -17, + { + "n": 3, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 82, + "e": 6116 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 69, + "e": 6156 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 61, + "e": 6164 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 6177 + } + ], + [ + -3, + { + "n": 3, + "q": null, + "m": 90, + "e": 6186 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 26, + "e": 6202, + "s": 1 + } + ] + ], + "fo": [ + [ + 5937, + [ + { + "t": "I" + } + ] + ], + [ + 5857, + [ + { + "t": "Y" + } + ] + ], + [ + 5877, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 357, + { + "n": "Thomasson", + "f": "Adrien", + "fp": "MO", + "r": 17, + "c": 41, + "s": { + "Og": 5, + "Os": 193.5, + "On": 37, + "Oa": 5.23, + "Od": 1.03, + "Om": 2635, + "Oam": 71, + "Odm": 28, + "pm": 34, + "pa": 3, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 67, + "e": 5886 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5897 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 89, + "e": 5899 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 8, + "q": null, + "m": 90, + "e": 5963, + "g": 2 + } + ], + [ + -24, + { + "n": 3.5, + "q": null, + "m": 14, + "e": 5971 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 73, + "e": 5987, + "g": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5997 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5999 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 75, + "e": 6017 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 89, + "e": 6020 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 6037 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 26, + "e": 6046, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 79, + "e": 6056 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6058 + } + ], + [ + -14, + { + "n": 7, + "q": null, + "m": 90, + "e": 6076, + "g": 1 + } + ], + [ + -13, + { + "n": 6.5, + "q": null, + "m": 88, + "e": 6084 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 73, + "e": 6097, + "g": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 6, + "e": 6104, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 6116 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 32, + "e": 6125, + "s": 1 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 1, + "e": 6129, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 84, + "e": 6147 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 32, + "e": 6156, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 71, + "e": 6164 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 77, + "e": 6177 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6186, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6196 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5845, + [ + { + "t": "Y" + } + ] + ], + [ + 5886, + [ + { + "t": "Y" + } + ] + ], + [ + 5916, + [ + { + "t": "Y" + } + ] + ], + [ + 5937, + [ + { + "t": "Y" + } + ] + ], + [ + 5971, + [ + { + "t": "Y" + }, + { + "t": "O" + } + ] + ] + ] + } + ], + [ + 486, + { + "n": "Kawashima", + "f": "Eiji", + "fp": "G", + "r": 7, + "c": 41, + "s": { + "Os": 124, + "On": 24, + "Oa": 5.17, + "Od": 1.03, + "Om": 2160, + "Oam": 90, + "pg": 24 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -30, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 3, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5999 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6037 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6104 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ] + } + ], + [ + 1185, + { + "n": "Diallo", + "f": "Habib", + "fp": "A", + "r": 13, + "c": 41, + "s": { + "Og": 9, + "Os": 179.5, + "On": 36, + "Oa": 4.99, + "Od": 1.27, + "Om": 2470, + "Oam": 69, + "Odm": 28, + "pm": 6, + "pa": 30, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5837, + "g": 1 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 39, + "e": 5845 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 82, + "e": 5857 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 86, + "e": 5863 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 80, + "e": 5877 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 76, + "e": 5886 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 61, + "e": 5897 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 89, + "e": 5899, + "g": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 5916, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 18, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 89, + "e": 5937 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 19, + "e": 5941, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 73, + "e": 5987 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 78, + "e": 5999 + } + ], + [ + -20, + { + "n": 4, + "q": null, + "m": 89, + "e": 6017 + } + ], + [ + -19, + { + "n": 6.5, + "q": null, + "m": 80, + "e": 6020, + "g": 1 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6037, + "g": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6046, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 33, + "e": 6056, + "s": 1 + } + ], + [ + -15, + { + "n": 8, + "q": null, + "m": 89, + "e": 6058, + "g": 1 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 7.5, + "q": null, + "m": 84, + "e": 6084, + "g": 1 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6097 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6104, + "g": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6129, + "g": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 53, + "e": 6147, + "g": 1, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6163, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 23, + "e": 6181, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 31, + "e": 6193, + "s": 1 + } + ], + [ + -1, + { + "n": 3.5, + "q": null, + "m": 73, + "e": 6207 + } + ] + ], + "fo": [ + [ + 5845, + [ + { + "t": "I" + } + ] + ], + [ + 5927, + [ + { + "t": "I" + } + ] + ], + [ + 5863, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1409, + { + "n": "Lienard", + "f": "Dimitri", + "fp": "MO", + "r": 17, + "c": 41, + "s": { + "Og": 2, + "Os": 179, + "On": 34, + "Oa": 5.26, + "Od": 0.88, + "Om": 1826, + "Oam": 54, + "Odm": 33, + "pm": 34, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 89, + "e": 5837 + } + ], + [ + -37, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 54, + "e": 5857 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 76, + "e": 5863 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 80, + "e": 5877 + } + ], + [ + -33, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5886, + "g": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 59, + "e": 5897 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 79, + "e": 5899 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 34, + "e": 5916, + "s": 1 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5941 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5957 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 80, + "e": 5963 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 23, + "e": 5971, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5987, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 1, + "e": 5999, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 15, + "e": 6017, + "s": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 1, + "e": 6020, + "s": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6037, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6046 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 19, + "e": 6056, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 21, + "e": 6058, + "s": 1 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 8, + "q": null, + "m": 84, + "e": 6084, + "g": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 27, + "e": 6097, + "s": 1 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 25, + "e": 6104, + "s": 1 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 75, + "e": 6116 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 69, + "e": 6156 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6164, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 32, + "e": 6177, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 23, + "e": 6186, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 6196, + "s": 1 + } + ] + ], + "fo": [ + [ + 5963, + [ + { + "t": "I" + } + ] + ], + [ + 5937, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1428, + { + "n": "Kamara", + "f": "Bingourou", + "fp": "G", + "r": 3, + "c": 41, + "s": { + "Oao": 1, + "Os": 36, + "On": 8, + "Oa": 4.5, + "Od": 1.31, + "Om": 720, + "Oam": 90, + "pg": 8 + }, + "p": [ + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6125, + "a": 1 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 90, + "e": 6129 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6156 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 90, + "e": 6164 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 90, + "e": 6177 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6186 + } + ] + ] + } + ], + [ + 1433, + { + "n": "Aholou", + "f": "Jean Eudes", + "fp": "MD", + "r": 14, + "c": 41, + "s": { + "Og": 2, + "Os": 154, + "On": 29, + "Oa": 5.31, + "Od": 0.96, + "Om": 2189, + "Oam": 75, + "Odm": 24, + "pm": 29, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 6, + "q": null, + "m": 77, + "e": 5845 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 82, + "e": 5857 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 5886 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5897 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5899 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 56, + "e": 5916 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5957 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 67, + "e": 5971 + } + ], + [ + -23, + { + "n": 7, + "q": null, + "m": 89, + "e": 5987, + "g": 1 + } + ], + [ + -21, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 5999 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 88, + "e": 6017 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 82, + "e": 6037 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 71, + "e": 6056 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 16, + "e": 6076, + "s": 1 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 65, + "e": 6104 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 6129 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6147, + "g": 1 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6156 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 31, + "e": 6193, + "s": 1 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 3, + "e": 6203, + "s": 1 + } + ] + ], + "fo": [ + [ + 5916, + [ + { + "t": "I" + } + ] + ], + [ + 5857, + [ + { + "t": "Y" + } + ] + ], + [ + 5886, + [ + { + "t": "Y" + } + ] + ], + [ + 5941, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1461, + { + "n": "Caci", + "f": "Anthony", + "fp": "DL", + "r": 10, + "c": 41, + "s": { + "Os": 157, + "On": 33, + "Oa": 4.76, + "Od": 0.96, + "Om": 2805, + "Oam": 85, + "Odm": 13, + "pd": 31, + "pm": 2 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 5845 + } + ], + [ + -36, + { + "n": 3, + "q": null, + "m": 66, + "e": 5857 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 90, + "e": 5886 + } + ], + [ + -32, + { + "n": 3, + "q": null, + "m": 82, + "e": 5897 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5899 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5971 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5999 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6037 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 88, + "e": 6084 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 87, + "e": 6097 + } + ], + [ + -11, + { + "n": 3, + "q": null, + "m": 84, + "e": 6104 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 89, + "e": 6116 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 70, + "e": 6129 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 86, + "e": 6156 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 58, + "e": 6177 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6186 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 26, + "e": 6196, + "s": 1 + } + ] + ], + "fo": [ + [ + 5857, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 1607, + { + "n": "Gameiro", + "f": "Kevin", + "fp": "A", + "r": 15, + "c": 41, + "s": { + "Og": 5, + "Os": 143, + "On": 31, + "Oa": 4.61, + "Od": 0.73, + "Om": 1387, + "Oam": 45, + "Odm": 31, + "pa": 31, + "Omsn": 6 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 6946, + "s": 1 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6954, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6961, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 6968, + "s": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 77, + "e": 6982 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 80, + "e": 6988, + "g": 1 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 67, + "e": 6975 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6997, + "s": 1 + } + ], + [ + -29, + { + "n": 6, + "q": null, + "m": 89, + "e": 8250, + "g": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 76, + "e": 7017 + } + ], + [ + -26, + { + "n": 4, + "q": null, + "m": 24, + "e": 7026, + "s": 1 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 22, + "e": 7029, + "s": 1 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 19, + "e": 7040, + "g": 1, + "s": 1 + } + ], + [ + -23, + { + "n": 4, + "q": null, + "m": 45, + "e": 7046, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 11, + "e": 7063, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 32, + "e": 7074, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 26, + "e": 7580 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 66, + "e": 7093, + "g": 1 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 7121, + "s": 1 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 7132, + "s": 1 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 7133 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 90, + "e": 7512 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 7, + "e": 7167, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 81, + "e": 7175 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 20, + "e": 7180, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 26, + "e": 7479, + "s": 1 + } + ], + [ + -38, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 4316 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 78, + "e": 4327, + "g": 1 + } + ], + [ + -36, + { + "n": 4, + "q": null, + "m": 86, + "e": 4332 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 4347 + } + ], + [ + -9, + { + "n": 4, + "q": null, + "m": 9, + "e": 7146, + "s": 1 + } + ] + ] + } + ], + [ + 2289, + { + "n": "Zemzemi", + "f": "Moataz", + "fp": "MO", + "r": 3, + "c": 41 + } + ], + [ + 2309, + { + "n": "Mothiba", + "f": "Lebo", + "fp": "A", + "r": 3, + "c": 41 + } + ], + [ + 2609, + { + "n": "Sels", + "f": "Matz", + "fp": "G", + "r": 11, + "c": 41, + "s": { + "Os": 28, + "On": 6, + "Oa": 4.67, + "Od": 1.13, + "Om": 540, + "Oam": 90, + "pg": 6 + }, + "p": [ + [ + -36, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5857 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5877 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5886 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5897 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 5899 + } + ] + ] + } + ], + [ + 2634, + { + "n": "Perrin", + "f": "Lucas", + "fp": "DC", + "r": 7, + "c": 41, + "s": { + "Og": 1, + "Os": 36, + "On": 7, + "Oa": 5.14, + "Od": 0.75, + "Om": 305, + "Oam": 44, + "Odm": 29, + "pd": 7, + "Omsn": 6.5 + }, + "p": [ + [ + -34, + { + "n": 5, + "q": null, + "m": 75, + "e": 5874 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 5881 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 26, + "e": 5893, + "g": 1, + "s": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 30, + "e": 5959, + "s": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 5977, + "s": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5980 + } + ], + [ + -9, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6121, + "s": 1 + } + ] + ], + "fo": [ + [ + 5874, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 2679, + { + "n": "Sissoko", + "f": "Ibrahima", + "fp": "MD", + "r": 14, + "c": 41, + "s": { + "Os": 185.5, + "On": 36, + "Oa": 5.15, + "Od": 0.88, + "Om": 2584, + "Oam": 72, + "Odm": 28, + "pm": 36 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 13, + "e": 5845, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 36, + "e": 5857, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5863, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 68, + "e": 5877 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 90, + "e": 5886 + } + ], + [ + -32, + { + "n": 3.5, + "q": null, + "m": 59, + "e": 5897 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 5899 + } + ], + [ + -30, + { + "n": 5, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5941 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 83, + "e": 5957 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 23, + "e": 5971, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 89, + "e": 5999 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6037 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 64, + "e": 6046 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6058 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 74, + "e": 6076 + } + ], + [ + -13, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6084 + } + ], + [ + -12, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6104 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 8, + "e": 6116, + "s": 1 + } + ], + [ + -9, + { + "n": 3.5, + "q": null, + "m": 76, + "e": 6125 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 89, + "e": 6129 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 14, + "e": 6147, + "s": 1 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 21, + "e": 6156, + "s": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 6164 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 90, + "e": 6177 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 80, + "e": 6186 + } + ], + [ + -2, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 76, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5916, + [ + { + "t": "Y" + } + ] + ], + [ + 5957, + [ + { + "t": "Y" + } + ] + ], + [ + 5963, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2717, + { + "n": "Ajorque", + "f": "Ludovic", + "fp": "A", + "r": 23, + "c": 41, + "s": { + "Og": 16, + "Os": 186, + "On": 35, + "Oa": 5.31, + "Od": 1.2, + "Om": 2972, + "Oam": 85, + "Odm": 13, + "pa": 35, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 8, + "q": null, + "m": 90, + "e": 5845, + "g": 2 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 90, + "e": 5857, + "g": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 5863 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 90, + "e": 5877, + "g": 1 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 55, + "e": 5886 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 85, + "e": 5899, + "g": 1 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 5916 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 5937 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 71, + "e": 5941, + "g": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5957 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 5963 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5987 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 5999, + "g": 1 + } + ], + [ + -20, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6017, + "g": 1 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6020 + } + ], + [ + -18, + { + "n": 7.5, + "q": null, + "m": 73, + "e": 6037, + "g": 2 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6046 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 90, + "e": 6056 + } + ], + [ + -15, + { + "n": 7, + "q": null, + "m": 24, + "e": 6058, + "g": 1, + "s": 1 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6076 + } + ], + [ + -13, + { + "n": 8, + "q": null, + "m": 90, + "e": 6084, + "g": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 63, + "e": 6097 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6104, + "g": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6125, + "g": 1 + } + ], + [ + -8, + { + "n": 7, + "q": null, + "m": 81, + "e": 6129, + "g": 1 + } + ], + [ + -7, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6147 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 90, + "e": 6156 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6164, + "g": 1 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6177 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 90, + "e": 6186 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6196 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6202 + } + ] + ], + "fo": [ + [ + 5937, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3775, + { + "n": "Bellegarde", + "f": "Jean-Ricner", + "fp": "MD", + "r": 10, + "c": 41, + "s": { + "Og": 1, + "Os": 187.5, + "On": 36, + "Oa": 5.21, + "Od": 0.75, + "Om": 2095, + "Oam": 58, + "Odm": 29, + "pm": 35, + "pa": 1, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5837 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 51, + "e": 5845, + "s": 1 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 54, + "e": 5857 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 5863 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 5877, + "s": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 23, + "e": 5886, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5897 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 5, + "e": 5899, + "s": 1 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 69, + "e": 5916, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 70, + "e": 5927 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 12, + "e": 5937, + "s": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 80, + "e": 5941 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 45, + "e": 5957, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 10, + "e": 5963, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 12, + "e": 5971, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 85, + "e": 5987 + } + ], + [ + -22, + { + "n": 5.5, + "q": null, + "m": 9, + "e": 5997, + "s": 1 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 22, + "e": 5999, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6017 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 72, + "e": 6020 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 82, + "e": 6037 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 77, + "e": 6046 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 57, + "e": 6056 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 67, + "e": 6058 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6097 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 84, + "e": 6104 + } + ], + [ + -10, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6116 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6125 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 89, + "e": 6129 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 76, + "e": 6147 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 58, + "e": 6156 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 45, + "e": 6164 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 58, + "e": 6177 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 67, + "e": 6186 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 83, + "e": 6196 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 14, + "e": 6202, + "s": 1 + } + ] + ], + "fo": [ + [ + 5927, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4918, + { + "n": "Siby", + "f": "Mahamé", + "fp": "MD", + "r": 5, + "c": 41, + "s": { + "Os": 34.5, + "On": 7, + "Oa": 4.93, + "Od": 0.19, + "Om": 18, + "Oam": 3, + "Odm": 3, + "pm": 7 + }, + "p": [ + [ + -35, + { + "n": 5, + "q": null, + "m": 4, + "e": 5863, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 1, + "e": 5899, + "s": 1 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 1, + "e": 5937, + "s": 1 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 1, + "e": 5957, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 8, + "e": 6037, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 1, + "e": 6058, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 2, + "e": 6084, + "s": 1 + } + ] + ] + } + ], + [ + 5348, + { + "n": "Ousmane", + "f": "Abdoulaye", + "fp": "MD", + "r": 1, + "c": 41 + } + ], + [ + 5457, + { + "n": "Lebeau", + "f": "Adrien", + "fp": "MO", + "r": 1, + "c": 41 + } + ], + [ + 6864, + { + "n": "Chahiri", + "f": "Mehdi", + "fp": "MO", + "r": 9, + "c": 41, + "s": { + "Og": 2, + "Os": 116, + "On": 23, + "Oa": 5.04, + "Od": 0.77, + "Om": 795, + "Oam": 35, + "Odm": 26, + "pm": 22, + "pa": 1, + "Omsn": 6 + }, + "p": [ + [ + -34, + { + "n": 5, + "q": null, + "m": 10, + "e": 5877, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 5886, + "s": 1 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 31, + "e": 5897, + "s": 1 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 11, + "e": 5899, + "s": 1 + } + ], + [ + -27, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5941, + "s": 1 + } + ], + [ + -24, + { + "n": 5, + "q": null, + "m": 12, + "e": 5971, + "s": 1 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 5987, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 64, + "e": 5997 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 68, + "e": 5999 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6046, + "s": 1 + } + ], + [ + -16, + { + "n": 4, + "q": null, + "m": 57, + "e": 6056 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 23, + "e": 6058, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 74, + "e": 6076 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 75, + "e": 6084 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 3, + "e": 6097, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 16, + "e": 6104, + "s": 1 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 15, + "e": 6116, + "s": 1 + } + ], + [ + -6, + { + "n": 4, + "q": null, + "m": 58, + "e": 6156 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 45, + "e": 6164, + "g": 1, + "s": 1 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 22, + "e": 6177, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 29, + "e": 6186, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 64, + "e": 6196 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 76, + "e": 6202, + "g": 1 + } + ] + ] + } + ], + [ + 7267, + { + "n": "Besic", + "f": "Benjamin", + "fp": "MO", + "r": 1, + "c": 41 + } + ], + [ + 7474, + { + "n": "Senaya", + "f": "Marvin", + "fp": "DL", + "r": 1, + "c": 41 + } + ], + [ + 7475, + { + "n": "Sommer", + "f": "Noé", + "fp": "MO", + "r": 1, + "c": 41 + } + ], + [ + 7529, + { + "n": "Pierre", + "f": "Alexandre", + "fp": "G", + "r": 1, + "c": 41 + } + ], + [ + 7716, + { + "n": "Elimbi Gilbert", + "f": "Marvin", + "fp": "DC", + "r": 1, + "c": 41 + } + ], + [ + 7820, + { + "n": "Sahi", + "f": "Dion Moise", + "fp": "A", + "r": 7, + "c": 41, + "s": { + "Os": 13.5, + "On": 3, + "Oa": 4.5, + "Om": 47, + "Oam": 16, + "Odm": 18, + "pa": 3 + }, + "p": [ + [ + -36, + { + "n": 4.5, + "q": null, + "m": 36, + "e": 5857, + "s": 1 + } + ], + [ + -35, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 5863, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 10, + "e": 5877, + "s": 1 + } + ] + ] + } + ], + [ + 8470, + { + "n": "Fila", + "f": "Karol", + "fp": "DL", + "r": 9, + "c": 41 + } + ], + [ + 195, + { + "n": "Moulin", + "f": "Jessy", + "fp": "G", + "r": 7, + "c": 43, + "s": { + "Os": 139.5, + "On": 29, + "Oa": 4.81, + "Od": 1.31, + "Om": 2610, + "Oam": 90, + "pg": 29 + }, + "p": [ + [ + -29, + { + "n": 6, + "q": null, + "m": 90, + "e": 5918 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 90, + "e": 5936 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5942 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 5956 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 5967 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 5976 + } + ], + [ + -23, + { + "n": 6, + "q": null, + "m": 90, + "e": 5986 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 5996 + } + ], + [ + -21, + { + "n": 4, + "q": null, + "m": 90, + "e": 6007 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6017 + } + ], + [ + -19, + { + "n": 3, + "q": null, + "m": 90, + "e": 6026 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6036 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6042 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6055 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6059 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6075 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6080 + } + ], + [ + -12, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6096 + } + ], + [ + -11, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6099 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6117 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6127 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6133 + } + ], + [ + -7, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6146 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6150 + } + ], + [ + -5, + { + "n": 2, + "q": null, + "m": 90, + "e": 6167 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6174 + } + ], + [ + -3, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6186 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6195 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6198 + } + ] + ] + } + ], + [ + 527, + { + "n": "Kone", + "f": "Youssouf", + "fp": "DL", + "r": 4, + "c": 43, + "s": { + "Os": 13.5, + "On": 3, + "Oa": 4.5, + "Od": 0.5, + "Om": 72, + "Oam": 24, + "Odm": 16, + "pd": 2, + "pm": 1 + }, + "p": [ + [ + -5, + { + "n": 4.5, + "q": null, + "m": 38, + "e": 7500 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 7, + "e": 7496, + "s": 1 + } + ], + [ + -7, + { + "n": 4, + "q": null, + "m": 27, + "e": 7512, + "s": 1 + } + ] + ] + } + ], + [ + 1188, + { + "n": "Kouame", + "f": "Rominigue", + "fp": "MD", + "r": 7, + "c": 43, + "s": { + "Og": 2, + "Os": 175.5, + "On": 32, + "Oa": 5.48, + "Od": 0.88, + "Om": 2731, + "Oam": 85, + "Odm": 14, + "pm": 32, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6214 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 6246 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6266 + } + ], + [ + -32, + { + "n": 6, + "q": null, + "m": 90, + "e": 6274 + } + ], + [ + -31, + { + "n": 6, + "q": null, + "m": 90, + "e": 6287 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6310, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 68, + "e": 6376 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6420 + } + ], + [ + -16, + { + "n": 7, + "q": null, + "m": 90, + "e": 6436 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6439 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6456 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 84, + "e": 6461 + } + ], + [ + -10, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6497 + } + ], + [ + -9, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6498 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 90, + "e": 6517 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6525 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 73, + "e": 6557 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6577 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6587 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 6226 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6288, + "g": 1 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 67, + "e": 6306 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 6361 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6416 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 89, + "e": 6477 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6482 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 82, + "e": 6546, + "g": 1 + } + ] + ], + "fo": [ + [ + 6288, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1224, + { + "n": "Massouema", + "f": "Eden", + "fp": "MD", + "r": 3, + "c": 43 + } + ], + [ + 1408, + { + "n": "El Hajjam", + "f": "Oualid", + "fp": "DL", + "r": 4, + "c": 43, + "s": { + "Os": 144.5, + "On": 28, + "Oa": 5.16, + "Od": 0.68, + "Om": 2278, + "Oam": 81, + "Odm": 21, + "pd": 28 + }, + "p": [ + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6327 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 6347 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 90, + "e": 6566 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 33, + "e": 6287 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6288 + } + ], + [ + -28, + { + "n": 4, + "q": null, + "m": 45, + "e": 6310 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6356 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 90, + "e": 6376 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6386 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 7, + "q": null, + "m": 90, + "e": 6416 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 81, + "e": 6420 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6436 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 90, + "e": 6439 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 90, + "e": 6456 + } + ], + [ + -13, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6461 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6477 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 90, + "e": 6482 + } + ], + [ + -10, + { + "n": 4, + "q": null, + "m": 90, + "e": 6497 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 90, + "e": 6498 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6517 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6525 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 5, + "e": 6546, + "s": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6577 + } + ], + [ + -1, + { + "n": 5, + "q": null, + "m": 58, + "e": 6587 + } + ] + ], + "fo": [ + [ + 6287, + [ + { + "t": "I" + } + ] + ], + [ + 6310, + [ + { + "t": "Y" + } + ] + ], + [ + 6356, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1410, + { + "n": "Dingome", + "f": "Tristan", + "fp": "MO", + "r": 7, + "c": 43, + "s": { + "Og": 4, + "Os": 139, + "On": 26, + "Oa": 5.35, + "Od": 0.69, + "Om": 1671, + "Oam": 64, + "Odm": 26, + "pm": 26, + "Omsn": 5.5 + }, + "p": [ + [ + -26, + { + "n": 5, + "q": null, + "m": 76, + "e": 6336 + } + ], + [ + -37, + { + "n": 6, + "q": null, + "m": 36, + "e": 6226, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 78, + "e": 6266, + "g": 1 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 78, + "e": 6274 + } + ], + [ + -31, + { + "n": 5.5, + "q": null, + "m": 73, + "e": 6287, + "g": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 69, + "e": 6288 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 25, + "e": 6327 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6347 + } + ], + [ + -24, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6356, + "g": 1 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 24, + "e": 6361, + "s": 1 + } + ], + [ + -22, + { + "n": 6.5, + "q": null, + "m": 78, + "e": 6376, + "g": 1 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 64, + "e": 6386 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 24, + "e": 6399, + "s": 1 + } + ], + [ + -18, + { + "n": 5.5, + "q": null, + "m": 87, + "e": 6416 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 80, + "e": 6420 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 88, + "e": 6436 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 70, + "e": 6456 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 6461, + "s": 1 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 81, + "e": 6477 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 70, + "e": 6482 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 69, + "e": 6497 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 60, + "e": 6498 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 37, + "e": 6517, + "s": 1 + } + ], + [ + -3, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6178, + "s": 1 + } + ] + ], + "fo": [ + [ + 6327, + [ + { + "t": "I" + } + ] + ], + [ + 6347, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1411, + { + "n": "Giraudon", + "f": "Jimmy", + "fp": "DC", + "r": 12, + "c": 43, + "s": { + "Os": 177, + "On": 33, + "Oa": 5.36, + "Od": 0.92, + "Om": 2852, + "Oam": 86, + "Odm": 15, + "pd": 33 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 90, + "e": 6214 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6246 + } + ], + [ + -34, + { + "n": 7, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -30, + { + "n": 3, + "q": null, + "m": 45, + "e": 6288 + } + ], + [ + -29, + { + "n": 3, + "q": null, + "m": 90, + "e": 6306 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 6310 + } + ], + [ + -27, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6327 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 6347 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6356 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 6376 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 13, + "e": 6386 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6416 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 90, + "e": 6420 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6436 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6439 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6456 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6461 + } + ], + [ + -12, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6477 + } + ], + [ + -11, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6482 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6497 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6498 + } + ], + [ + -8, + { + "n": 6, + "q": null, + "m": 90, + "e": 6517 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 85, + "e": 6525 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -5, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6557 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6566 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6577 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6587 + } + ] + ], + "fo": [ + [ + 6288, + [ + { + "t": "R" + } + ] + ], + [ + 6246, + [ + { + "t": "Y" + } + ] + ], + [ + 6306, + [ + { + "t": "Y" + } + ] + ], + [ + 6310, + [ + { + "t": "Y" + } + ] + ], + [ + 6347, + [ + { + "t": "Y" + } + ] + ], + [ + 6356, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1427, + { + "n": "Azamoum", + "f": "Karim", + "fp": "MD", + "r": 6, + "c": 43, + "s": { + "Os": 62, + "On": 13, + "Oa": 4.77, + "Od": 0.73, + "Om": 574, + "Oam": 44, + "Odm": 30, + "pm": 13 + }, + "p": [ + [ + -36, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6229 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 82, + "e": 6246 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 25, + "e": 6255, + "s": 1 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6266 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 26, + "e": 6274, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6287, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 21, + "e": 6288, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 23, + "e": 6306, + "s": 1 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 72, + "e": 6310 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 65, + "e": 6327, + "s": 1 + } + ], + [ + -26, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6336 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 18, + "e": 6347, + "s": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 27, + "e": 6356, + "s": 1 + } + ] + ], + "fo": [ + [ + 6229, + [ + { + "t": "I" + } + ] + ], + [ + 6246, + [ + { + "t": "Y" + } + ] + ], + [ + 6266, + [ + { + "t": "Y" + } + ] + ], + [ + 6347, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1440, + { + "n": "Salmier", + "f": "Yoann", + "fp": "DC", + "r": 7, + "c": 43, + "s": { + "Og": 2, + "Os": 183, + "On": 35, + "Oa": 5.23, + "Od": 0.79, + "Om": 2976, + "Oam": 85, + "Odm": 17, + "pd": 35, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 90, + "e": 6214, + "g": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 6226 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6246 + } + ], + [ + -34, + { + "n": 5.5, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6266 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 90, + "e": 6274 + } + ], + [ + -31, + { + "n": 4, + "q": null, + "m": 90, + "e": 6287 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6288 + } + ], + [ + -29, + { + "n": 3, + "q": null, + "m": 90, + "e": 6306 + } + ], + [ + -28, + { + "n": 6, + "q": null, + "m": 90, + "e": 6310 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 82, + "e": 6327 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 90, + "e": 6347 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6356 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6361, + "g": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6376 + } + ], + [ + -21, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6386 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6416 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6420 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 90, + "e": 6436 + } + ], + [ + -15, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6439 + } + ], + [ + -14, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6456 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 84, + "e": 6461 + } + ], + [ + -12, + { + "n": 6, + "q": null, + "m": 90, + "e": 6477 + } + ], + [ + -11, + { + "n": 5, + "q": null, + "m": 78, + "e": 6482 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 3, + "e": 6517 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6525 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6537 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6557 + } + ], + [ + -3, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6566 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6577 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6587 + } + ] + ], + "fo": [ + [ + 6214, + [ + { + "t": "Y" + } + ] + ], + [ + 6246, + [ + { + "t": "Y" + } + ] + ], + [ + 6306, + [ + { + "t": "Y" + } + ] + ], + [ + 6356, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 1543, + { + "n": "Suk Hyun-Jun", + "f": "", + "fp": "A", + "r": 8, + "c": 43, + "s": { + "Og": 3, + "Os": 84, + "On": 18, + "Oa": 4.67, + "Od": 0.69, + "Om": 594, + "Oam": 33, + "Odm": 21, + "pa": 18, + "Omsn": 6 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 39, + "e": 6214, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 24, + "e": 6226, + "s": 1 + } + ], + [ + -36, + { + "n": 5, + "q": null, + "m": 32, + "e": 6229, + "s": 1 + } + ], + [ + -35, + { + "n": 4, + "q": null, + "m": 21, + "e": 6246, + "s": 1 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 20, + "e": 6255, + "g": 1, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 17, + "e": 6266, + "s": 1 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 13, + "e": 6274, + "s": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 25, + "e": 6399, + "s": 1 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 19, + "e": 6416, + "s": 1 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 9, + "e": 6420, + "s": 1 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 68, + "e": 6436, + "g": 1 + } + ], + [ + -15, + { + "n": 4, + "q": null, + "m": 15, + "e": 6439, + "s": 1 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 21, + "e": 6482, + "s": 1 + } + ], + [ + -5, + { + "n": 4, + "q": null, + "m": 63, + "e": 6546 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6557 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 72, + "e": 6566, + "g": 1 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 37, + "e": 6577, + "s": 1 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6587, + "s": 1 + } + ] + ], + "fo": [ + [ + 6226, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2065, + { + "n": "Lumeka", + "f": "Levi", + "fp": "MO", + "r": 7, + "c": 43, + "s": { + "Og": 2, + "Os": 74.5, + "On": 15, + "Oa": 4.97, + "Od": 1.06, + "Om": 673, + "Oam": 45, + "Odm": 24, + "pm": 1, + "pa": 14, + "Omsn": 7.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 39, + "e": 6214, + "s": 1 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 55, + "e": 6226 + } + ], + [ + -36, + { + "n": 6, + "q": null, + "m": 78, + "e": 6229, + "s": 1 + } + ], + [ + -35, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 6246, + "s": 1 + } + ], + [ + -34, + { + "n": 4.5, + "q": null, + "m": 25, + "e": 6255, + "s": 1 + } + ], + [ + -33, + { + "n": 4.5, + "q": null, + "m": 18, + "e": 6266, + "s": 1 + } + ], + [ + -9, + { + "n": 5.5, + "q": null, + "m": 31, + "e": 6498 + } + ], + [ + -8, + { + "n": 5, + "q": null, + "m": 11, + "e": 6517, + "s": 1 + } + ], + [ + -7, + { + "n": 3, + "q": null, + "m": 56, + "e": 6525 + } + ], + [ + -6, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 63, + "e": 6546 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 25, + "e": 6557, + "s": 1 + } + ], + [ + -3, + { + "n": 4, + "q": null, + "m": 60, + "e": 6566 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 69, + "e": 6577 + } + ], + [ + -1, + { + "n": 7.5, + "q": null, + "m": 32, + "e": 6587, + "g": 2, + "s": 1 + } + ] + ] + } + ], + [ + 2271, + { + "n": "Chambost", + "f": "Dylan", + "fp": "MO", + "r": 5, + "c": 43, + "s": { + "Og": 1, + "Os": 188, + "On": 36, + "Oa": 5.22, + "Od": 0.81, + "Om": 2542, + "Oam": 71, + "Odm": 21, + "pm": 14, + "pa": 22, + "Omsn": 6.5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 6214 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 66, + "e": 6226 + } + ], + [ + -36, + { + "n": 5.5, + "q": null, + "m": 81, + "e": 6229 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 69, + "e": 6246 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6266 + } + ], + [ + -32, + { + "n": 4.5, + "q": null, + "m": 12, + "e": 6274, + "s": 1 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 67, + "e": 6287 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 45, + "e": 6288 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 85, + "e": 6306 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 45, + "e": 6310, + "s": 1 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 60, + "e": 6327 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 75, + "e": 6336 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 87, + "e": 6347 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 63, + "e": 6356 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 9, + "e": 6361, + "s": 1 + } + ], + [ + -22, + { + "n": 4, + "q": null, + "m": 61, + "e": 6376 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6386 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 4, + "q": null, + "m": 64, + "e": 6416 + } + ], + [ + -17, + { + "n": 5, + "q": null, + "m": 69, + "e": 6420 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 22, + "e": 6436, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 86, + "e": 6439 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 75, + "e": 6456, + "g": 1 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 69, + "e": 6461 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 70, + "e": 6477 + } + ], + [ + -11, + { + "n": 6.5, + "q": null, + "m": 82, + "e": 6482 + } + ], + [ + -9, + { + "n": 6, + "q": null, + "m": 78, + "e": 6498 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 79, + "e": 6517 + } + ], + [ + -7, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6525 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 82, + "e": 6537 + } + ], + [ + -5, + { + "n": 7, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6557 + } + ], + [ + -3, + { + "n": 6.5, + "q": null, + "m": 84, + "e": 6566 + } + ], + [ + -1, + { + "n": 4.5, + "q": null, + "m": 63, + "e": 6587 + } + ] + ], + "fo": [ + [ + 6347, + [ + { + "t": "I" + } + ] + ], + [ + 6336, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 2723, + { + "n": "Ripart", + "f": "Renaud", + "fp": "A", + "r": 19, + "c": 43, + "s": { + "Og": 11, + "Os": 194, + "On": 38, + "Oa": 5.11, + "Od": 1.12, + "Om": 3061, + "Oam": 81, + "Odm": 21, + "pd": 3, + "pm": 23, + "pa": 12, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 6, + "q": null, + "m": 90, + "e": 5834 + } + ], + [ + -37, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5846 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 5851, + "g": 1 + } + ], + [ + -35, + { + "n": 6, + "q": null, + "m": 90, + "e": 5866, + "g": 1 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 28, + "e": 5869 + } + ], + [ + -33, + { + "n": 6, + "q": null, + "m": 89, + "e": 5886, + "g": 1 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 90, + "e": 5888 + } + ], + [ + -31, + { + "n": 3, + "q": null, + "m": 90, + "e": 5905 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 90, + "e": 5910, + "g": 1 + } + ], + [ + -29, + { + "n": 5, + "q": null, + "m": 87, + "e": 5924 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 85, + "e": 5935 + } + ], + [ + -27, + { + "n": 4, + "q": null, + "m": 90, + "e": 5944 + } + ], + [ + -26, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 5954, + "g": 1 + } + ], + [ + -25, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 5960, + "g": 1 + } + ], + [ + -24, + { + "n": 5.5, + "q": null, + "m": 72, + "e": 5975 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 77, + "e": 5983 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 73, + "e": 5988, + "g": 1 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6003, + "g": 1 + } + ], + [ + -20, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6013 + } + ], + [ + -19, + { + "n": 5, + "q": null, + "m": 90, + "e": 6024 + } + ], + [ + -18, + { + "n": 3.5, + "q": null, + "m": 65, + "e": 6037 + } + ], + [ + -17, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6045 + } + ], + [ + -16, + { + "n": 6, + "q": null, + "m": 38, + "e": 6055, + "g": 1, + "s": 1 + } + ], + [ + -15, + { + "n": 4.5, + "q": null, + "m": 1, + "e": 6064, + "s": 1 + } + ], + [ + -14, + { + "n": 3, + "q": null, + "m": 90, + "e": 6071 + } + ], + [ + -13, + { + "n": 4, + "q": null, + "m": 90, + "e": 6085 + } + ], + [ + -12, + { + "n": 4, + "q": null, + "m": 90, + "e": 6093 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6106, + "g": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 24, + "e": 6114, + "s": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6124 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 88, + "e": 6128 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 84, + "e": 6144 + } + ], + [ + -6, + { + "n": 7, + "q": null, + "m": 90, + "e": 6152, + "g": 1 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6165 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6170 + } + ], + [ + -3, + { + "n": 3, + "q": null, + "m": 90, + "e": 6185 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 90, + "e": 6194 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6206 + } + ] + ], + "fo": [ + [ + 5869, + [ + { + "t": "I" + } + ] + ], + [ + 5905, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 3641, + { + "n": "Larouci", + "f": "Yasser", + "fp": "DL", + "r": 8, + "c": 43 + } + ], + [ + 3768, + { + "n": "Mama Baldé", + "f": "", + "fp": "MO", + "r": 11, + "c": 43, + "s": { + "Og": 7, + "Os": 134.5, + "On": 29, + "Oa": 4.64, + "Od": 1.28, + "Om": 2169, + "Oam": 75, + "Odm": 21, + "pm": 9, + "pa": 20, + "Omsn": 5 + }, + "p": [ + [ + -37, + { + "n": 4.5, + "q": null, + "m": 30, + "e": 5839, + "s": 1 + } + ], + [ + -36, + { + "n": 3.5, + "q": null, + "m": 83, + "e": 5848 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 75, + "e": 5860, + "g": 1 + } + ], + [ + -34, + { + "n": 4, + "q": null, + "m": 34, + "e": 5875, + "s": 1 + } + ], + [ + -32, + { + "n": 2.5, + "q": null, + "m": 79, + "e": 5892 + } + ], + [ + -31, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 5902 + } + ], + [ + -30, + { + "n": 5.5, + "q": null, + "m": 32, + "e": 5909, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 70, + "e": 5919 + } + ], + [ + -28, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 5929 + } + ], + [ + -27, + { + "n": 3, + "q": null, + "m": 90, + "e": 5940 + } + ], + [ + -25, + { + "n": 4, + "q": null, + "m": 90, + "e": 5960 + } + ], + [ + -24, + { + "n": 4, + "q": null, + "m": 84, + "e": 5972 + } + ], + [ + -23, + { + "n": 5, + "q": null, + "m": 31, + "e": 5979, + "s": 1 + } + ], + [ + -22, + { + "n": 4.5, + "q": null, + "m": 81, + "e": 5990 + } + ], + [ + -21, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 5999 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 88, + "e": 6011, + "g": 1 + } + ], + [ + -19, + { + "n": 4, + "q": null, + "m": 89, + "e": 6019 + } + ], + [ + -18, + { + "n": 4.5, + "q": null, + "m": 84, + "e": 6035 + } + ], + [ + -17, + { + "n": 7, + "q": null, + "m": 90, + "e": 6045, + "g": 1 + } + ], + [ + -16, + { + "n": 5, + "q": null, + "m": 30, + "e": 6049, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 89, + "e": 6080 + } + ], + [ + -12, + { + "n": 8, + "q": null, + "m": 73, + "e": 6094, + "g": 2 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6100 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 82, + "e": 6112, + "g": 1 + } + ], + [ + -9, + { + "n": 5, + "q": null, + "m": 90, + "e": 6119 + } + ], + [ + -8, + { + "n": 2.5, + "q": null, + "m": 79, + "e": 6136 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6139, + "g": 1 + } + ], + [ + -6, + { + "n": 3.5, + "q": null, + "m": 74, + "e": 6148 + } + ], + [ + -5, + { + "n": 5, + "q": null, + "m": 73, + "e": 6160 + } + ] + ], + "fo": [ + [ + 5909, + [ + { + "t": "Y" + } + ] + ], + [ + 5972, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 4848, + { + "n": "Bouallak", + "f": "Ryan", + "fp": "G", + "r": 3, + "c": 43, + "s": { + "Os": 5, + "On": 1, + "Oa": 5, + "Om": 10, + "Oam": 10, + "pg": 1 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 10, + "e": 6214, + "s": 1 + } + ] + ] + } + ], + [ + 4883, + { + "n": "Abdallah", + "f": "Benrandy", + "fp": "DL", + "r": 1, + "c": 43 + } + ], + [ + 5091, + { + "n": "Mutombo Kupa", + "f": "Gabriel", + "fp": "DC", + "r": 3, + "c": 43, + "s": { + "Os": 86.5, + "On": 18, + "Oa": 4.81, + "Od": 0.73, + "Om": 530, + "Oam": 29, + "Odm": 26, + "pd": 18 + }, + "p": [ + [ + -33, + { + "n": 4.5, + "q": null, + "m": 28, + "e": 6266 + } + ], + [ + -32, + { + "n": 5.5, + "q": null, + "m": 56, + "e": 6274, + "s": 1 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 45, + "e": 6288, + "s": 1 + } + ], + [ + -29, + { + "n": 3, + "q": null, + "m": 68, + "e": 6306 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 8, + "e": 6327, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6336 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 51, + "e": 6386, + "s": 1 + } + ], + [ + -20, + { + "n": 5, + "q": null, + "m": 16, + "e": 6395, + "s": 1 + } + ], + [ + -17, + { + "n": 3.5, + "q": null, + "m": 1, + "e": 6420, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 4, + "e": 6439, + "s": 1 + } + ], + [ + -14, + { + "n": 5, + "q": null, + "m": 4, + "e": 6456, + "s": 1 + } + ], + [ + -13, + { + "n": 5, + "q": null, + "m": 6, + "e": 6461, + "s": 1 + } + ], + [ + -11, + { + "n": 5.5, + "q": null, + "m": 21, + "e": 6482, + "s": 1 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 38, + "e": 6497, + "s": 1 + } + ], + [ + -6, + { + "n": 5, + "q": null, + "m": 14, + "e": 6537, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 17, + "e": 6557, + "s": 1 + } + ], + [ + -3, + { + "n": 5, + "q": null, + "m": 7, + "e": 6566, + "s": 1 + } + ], + [ + -2, + { + "n": 4, + "q": null, + "m": 56, + "e": 6577, + "s": 1 + } + ] + ], + "fo": [ + [ + 6266, + [ + { + "t": "I" + }, + { + "t": "Y" + } + ] + ], + [ + 6274, + [ + { + "t": "Y" + } + ] + ], + [ + 6306, + [ + { + "t": "Y" + } + ] + ], + [ + 6336, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5108, + { + "n": "Gallon", + "f": "Gauthier", + "fp": "G", + "r": 12, + "c": 43, + "s": { + "Os": 186.5, + "On": 35, + "Oa": 5.33, + "Od": 1, + "Om": 3159, + "Oam": 90, + "Odm": 1, + "pg": 35 + }, + "p": [ + [ + -37, + { + "n": 6, + "q": null, + "m": 90, + "e": 6226 + } + ], + [ + -36, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6229 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 90, + "e": 6246 + } + ], + [ + -34, + { + "n": 5, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -33, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6266 + } + ], + [ + -32, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6274 + } + ], + [ + -31, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6287 + } + ], + [ + -30, + { + "n": 4, + "q": null, + "m": 90, + "e": 6288 + } + ], + [ + -29, + { + "n": 2.5, + "q": null, + "m": 90, + "e": 6306 + } + ], + [ + -28, + { + "n": 5, + "q": null, + "m": 90, + "e": 6310 + } + ], + [ + -27, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6327 + } + ], + [ + -26, + { + "n": 5, + "q": null, + "m": 90, + "e": 6336 + } + ], + [ + -25, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6347 + } + ], + [ + -24, + { + "n": 6, + "q": null, + "m": 90, + "e": 6356 + } + ], + [ + -23, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 6376 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 90, + "e": 6386 + } + ], + [ + -20, + { + "n": 6, + "q": null, + "m": 96, + "e": 6395 + } + ], + [ + -19, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 6, + "q": null, + "m": 90, + "e": 6416 + } + ], + [ + -17, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6420 + } + ], + [ + -16, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6436 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6439 + } + ], + [ + -14, + { + "n": 6, + "q": null, + "m": 90, + "e": 6456 + } + ], + [ + -13, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6461 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 90, + "e": 6477 + } + ], + [ + -11, + { + "n": 4, + "q": null, + "m": 90, + "e": 6482 + } + ], + [ + -10, + { + "n": 5, + "q": null, + "m": 90, + "e": 6497 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6498 + } + ], + [ + -8, + { + "n": 4, + "q": null, + "m": 90, + "e": 6517 + } + ], + [ + -7, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6525 + } + ], + [ + -5, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 4, + "q": null, + "m": 90, + "e": 6557 + } + ], + [ + -2, + { + "n": 5, + "q": null, + "m": 90, + "e": 6577 + } + ], + [ + -1, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6587 + } + ] + ] + } + ], + [ + 5178, + { + "n": "Touzghar", + "f": "Yoann", + "fp": "A", + "r": 17, + "c": 43, + "s": { + "Og": 16, + "Os": 197, + "On": 36, + "Oa": 5.47, + "Od": 1.15, + "Om": 2680, + "Oam": 74, + "Odm": 21, + "pa": 36, + "Omsn": 5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 51, + "e": 6214, + "g": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 66, + "e": 6226 + } + ], + [ + -36, + { + "n": 6.5, + "q": null, + "m": 81, + "e": 6229, + "g": 1 + } + ], + [ + -35, + { + "n": 7.5, + "q": null, + "m": 79, + "e": 6246, + "g": 2 + } + ], + [ + -34, + { + "n": 6, + "q": null, + "m": 93, + "e": 6255 + } + ], + [ + -33, + { + "n": 5, + "q": null, + "m": 73, + "e": 6266 + } + ], + [ + -32, + { + "n": 5, + "q": null, + "m": 77, + "e": 6274 + } + ], + [ + -31, + { + "n": 5, + "q": null, + "m": 90, + "e": 6287 + } + ], + [ + -30, + { + "n": 6, + "q": null, + "m": 86, + "e": 6288 + } + ], + [ + -29, + { + "n": 2, + "q": null, + "m": 90, + "e": 6306 + } + ], + [ + -28, + { + "n": 7.5, + "q": null, + "m": 90, + "e": 6310, + "g": 1 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 6327, + "g": 1 + } + ], + [ + -26, + { + "n": 5.5, + "q": null, + "m": 76, + "e": 6336, + "g": 1 + } + ], + [ + -25, + { + "n": 6, + "q": null, + "m": 67, + "e": 6347, + "g": 1 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 72, + "e": 6356 + } + ], + [ + -23, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 78, + "e": 6376 + } + ], + [ + -21, + { + "n": 4.5, + "q": null, + "m": 89, + "e": 6386 + } + ], + [ + -19, + { + "n": 4.5, + "q": null, + "m": 65, + "e": 6399 + } + ], + [ + -18, + { + "n": 5, + "q": null, + "m": 71, + "e": 6416 + } + ], + [ + -17, + { + "n": 4, + "q": null, + "m": 90, + "e": 6420 + } + ], + [ + -16, + { + "n": 4.5, + "q": null, + "m": 22, + "e": 6436, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 75, + "e": 6439 + } + ], + [ + -14, + { + "n": 4.5, + "q": null, + "m": 86, + "e": 6456 + } + ], + [ + -13, + { + "n": 6, + "q": null, + "m": 75, + "e": 6461, + "g": 1 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 90, + "e": 6477, + "g": 1 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 69, + "e": 6482, + "g": 1 + } + ], + [ + -10, + { + "n": 7, + "q": null, + "m": 90, + "e": 6497, + "g": 1 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6498, + "g": 1 + } + ], + [ + -8, + { + "n": 6.5, + "q": null, + "m": 79, + "e": 6517, + "g": 1 + } + ], + [ + -7, + { + "n": 6, + "q": null, + "m": 90, + "e": 6525, + "g": 1 + } + ], + [ + -5, + { + "n": 4.5, + "q": null, + "m": 27, + "e": 6546, + "s": 1 + } + ], + [ + -4, + { + "n": 6, + "q": null, + "m": 25, + "e": 6557, + "g": 1, + "s": 1 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 18, + "e": 6566, + "s": 1 + } + ], + [ + -2, + { + "n": 6, + "q": null, + "m": 90, + "e": 6577 + } + ], + [ + -1, + { + "n": 6, + "q": null, + "m": 90, + "e": 6587 + } + ] + ], + "fo": [ + [ + 6255, + [ + { + "t": "I" + } + ] + ] + ] + } + ], + [ + 5358, + { + "n": "Bombo", + "f": "Calvin", + "fp": "MD", + "r": 1, + "c": 43 + } + ], + [ + 5376, + { + "n": "Tardieu", + "f": "Florian", + "fp": "MD", + "r": 14, + "c": 43, + "s": { + "Og": 6, + "Os": 203.5, + "On": 34, + "Oa": 5.99, + "Od": 1.06, + "Om": 3017, + "Oam": 89, + "Odm": 9, + "pm": 33, + "pa": 1, + "Omsn": 7 + }, + "p": [ + [ + -37, + { + "n": 5, + "q": null, + "m": 90, + "e": 6226 + } + ], + [ + -36, + { + "n": 7, + "q": null, + "m": 90, + "e": 6229, + "g": 1 + } + ], + [ + -35, + { + "n": 7, + "q": null, + "m": 90, + "e": 6246, + "g": 1 + } + ], + [ + -34, + { + "n": 8, + "q": null, + "m": 93, + "e": 6255, + "g": 2 + } + ], + [ + -32, + { + "n": 4, + "q": null, + "m": 38, + "e": 6274 + } + ], + [ + -31, + { + "n": 7, + "q": null, + "m": 90, + "e": 6287 + } + ], + [ + -30, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6288 + } + ], + [ + -29, + { + "n": 3.5, + "q": null, + "m": 90, + "e": 6306 + } + ], + [ + -28, + { + "n": 7, + "q": null, + "m": 90, + "e": 6310 + } + ], + [ + -27, + { + "n": 6, + "q": null, + "m": 90, + "e": 6327 + } + ], + [ + -26, + { + "n": 6, + "q": null, + "m": 90, + "e": 6336 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 90, + "e": 6347 + } + ], + [ + -24, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6356 + } + ], + [ + -23, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6361 + } + ], + [ + -22, + { + "n": 6, + "q": null, + "m": 90, + "e": 6376 + } + ], + [ + -21, + { + "n": 5, + "q": null, + "m": 90, + "e": 6386 + } + ], + [ + -20, + { + "n": 8, + "q": null, + "m": 96, + "e": 6395, + "g": 2 + } + ], + [ + -19, + { + "n": 6, + "q": null, + "m": 90, + "e": 6399 + } + ], + [ + -18, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6416 + } + ], + [ + -16, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6436 + } + ], + [ + -15, + { + "n": 6, + "q": null, + "m": 90, + "e": 6439 + } + ], + [ + -14, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6456 + } + ], + [ + -13, + { + "n": 7, + "q": null, + "m": 90, + "e": 6461 + } + ], + [ + -12, + { + "n": 7, + "q": null, + "m": 90, + "e": 6477 + } + ], + [ + -11, + { + "n": 6, + "q": null, + "m": 90, + "e": 6482 + } + ], + [ + -10, + { + "n": 6, + "q": null, + "m": 90, + "e": 6497 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 90, + "e": 6498 + } + ], + [ + -8, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6517 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -5, + { + "n": 6, + "q": null, + "m": 90, + "e": 6546 + } + ], + [ + -4, + { + "n": 5.5, + "q": null, + "m": 90, + "e": 6557 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6566 + } + ], + [ + -2, + { + "n": 4.5, + "q": null, + "m": 90, + "e": 6577 + } + ], + [ + -1, + { + "n": 6.5, + "q": null, + "m": 90, + "e": 6587 + } + ] + ], + "fo": [ + [ + 6274, + [ + { + "t": "R" + } + ] + ], + [ + 6246, + [ + { + "t": "Y" + } + ] + ], + [ + 6288, + [ + { + "t": "Y" + } + ] + ] + ] + } + ], + [ + 5978, + { + "n": "Renot", + "f": "Sebastien", + "fp": "G", + "r": 6, + "c": 43, + "s": { + "Os": 16, + "On": 3, + "Oa": 5.33, + "Od": 1.15, + "Om": 260, + "Oam": 87, + "Odm": 6, + "pg": 3 + }, + "p": [ + [ + -38, + { + "n": 4, + "q": null, + "m": 80, + "e": 6214 + } + ], + [ + -6, + { + "n": 6, + "q": null, + "m": 90, + "e": 6537 + } + ], + [ + -3, + { + "n": 6, + "q": null, + "m": 90, + "e": 6566 + } + ] + ] + } + ], + [ + 6815, + { + "n": "Domingues", + "f": "Brandon", + "fp": "MD", + "r": 2, + "c": 43, + "s": { + "Og": 3, + "Os": 90.5, + "On": 18, + "Oa": 5.03, + "Od": 0.74, + "Om": 323, + "Oam": 18, + "Odm": 17, + "pm": 17, + "pa": 1, + "Omsn": 5.5 + }, + "p": [ + [ + -38, + { + "n": 5, + "q": null, + "m": 35, + "e": 6214, + "s": 1 + } + ], + [ + -37, + { + "n": 5, + "q": null, + "m": 1, + "e": 6226, + "s": 1 + } + ], + [ + -35, + { + "n": 5, + "q": null, + "m": 11, + "e": 6246, + "s": 1 + } + ], + [ + -29, + { + "n": 4, + "q": null, + "m": 22, + "e": 6306, + "s": 1 + } + ], + [ + -28, + { + "n": 5.5, + "q": null, + "m": 19, + "e": 6310, + "g": 1, + "s": 1 + } + ], + [ + -27, + { + "n": 5, + "q": null, + "m": 8, + "e": 6327, + "s": 1 + } + ], + [ + -26, + { + "n": 4.5, + "q": null, + "m": 14, + "e": 6336, + "s": 1 + } + ], + [ + -25, + { + "n": 5, + "q": null, + "m": 3, + "e": 6347, + "s": 1 + } + ], + [ + -22, + { + "n": 5, + "q": null, + "m": 12, + "e": 6376, + "s": 1 + } + ], + [ + -21, + { + "n": 6, + "q": null, + "m": 26, + "e": 6386, + "g": 1, + "s": 1 + } + ], + [ + -20, + { + "n": 4.5, + "q": null, + "m": 4, + "e": 6395, + "s": 1 + } + ], + [ + -15, + { + "n": 5, + "q": null, + "m": 4, + "e": 6439, + "s": 1 + } + ], + [ + -12, + { + "n": 5, + "q": null, + "m": 1, + "e": 6477, + "s": 1 + } + ], + [ + -10, + { + "n": 3.5, + "q": null, + "m": 52, + "e": 6497 + } + ], + [ + -9, + { + "n": 7, + "q": null, + "m": 59, + "e": 6498, + "g": 1, + "s": 1 + } + ], + [ + -7, + { + "n": 5, + "q": null, + "m": 34, + "e": 6525, + "s": 1 + } + ], + [ + -6, + { + "n": 5.5, + "q": null, + "m": 8, + "e": 6537, + "s": 1 + } + ], + [ + -4, + { + "n": 5, + "q": null, + "m": 10, + "e": 6557, + "s": 1 + } + ] + ] + } + ], + [ + 7464, + { + "n": "Alfatahi", + "f": "Enzo", + "fp": "DC", + "r": 1, + "c": 43 + } + ], + [ + 7619, + { + "n": "Lefebvre", + "f": "Alexis", + "fp": "MO", + "r": 1, + "c": 43 + } + ], + [ + 7703, + { + "n": "Fage", + "f": "Ryan", + "fp": "MO", + "r": 1, + "c": 43 + } + ], + [ + 7704, + { + "n": "Camara", + "f": "Mamadou", + "fp": "A", + "r": 1, + "c": 43 + } + ], + [ + 7705, + { + "n": "Kazamoko", + "f": "Issiaka", + "fp": "A", + "r": 1, + "c": 43 + } + ], + [ + 7707, + { + "n": "Filip Yavorov Krastev", + "f": "", + "fp": "MD", + "r": 2, + "c": 43, + "s": { + "Os": 9, + "On": 2, + "Oa": 4.5, + "Om": 39, + "Oam": 20, + "Odm": 21, + "pm": 2 + }, + "p": [ + [ + -38, + { + "n": 4.5, + "q": null, + "m": 34, + "e": 6214, + "s": 1 + } + ], + [ + -29, + { + "n": 4.5, + "q": null, + "m": 5, + "e": 6306, + "s": 1 + } + ] + ] + } + ], + [ + 8204, + { + "n": "Kabore", + "f": "Issa", + "fp": "DL", + "r": 4, + "c": 43 + } + ], + [ + 8465, + { + "n": "Metinho", + "f": "", + "fp": "MD", + "r": 10, + "c": 43 + } + ], + [ + 8466, + { + "n": "Kukharevych", + "f": "Mykola", + "fp": "A", + "r": 8, + "c": 43 + } + ] + ], + "np": 629, + "c": [ + [ + 16, + { + "n": "Angers", + "rn": "Angers SCO", + "cn": "Angers", + "crn": "Angers-SCO", + "a": "ANR", + "el": 1046, + "nm": [ + [ + 8697, + 0.478 + ], + [ + 8680, + 0.423 + ] + ], + "pM": [ + null, + 6200, + 6192, + 6178, + 6173, + 6158, + 6154, + 6138, + 6137, + 6118, + 6114, + 6098, + 6088, + 6078, + 6075, + 6058, + 6053, + 6038, + 6029, + 6022, + 6008, + 5998, + 5988, + 5984, + 5974, + 5958, + 5957, + 5938, + 5932, + 5918, + 5908, + 5898, + 5890, + 5878, + 5868, + 5861, + 5848, + 5842, + 5828 + ], + "DMI": [ + 5957, + 6058, + 5890, + 6098 + ] + } + ], + [ + 3, + { + "n": "Bordeaux", + "rn": "Girondins de Bordeaux", + "cn": "Bordeaux", + "crn": "Girondins-de-Bordeaux", + "a": "BOR", + "el": 1048, + "nm": [ + [ + 8694, + 0.569 + ], + [ + 8686, + 0.285 + ] + ], + "pM": [ + null, + 6199, + 6192, + 6179, + 6169, + 6159, + 6148, + 6141, + 6128, + 6122, + 6108, + 6107, + 6095, + 6079, + 6070, + 6059, + 6056, + 6039, + 6033, + 6018, + 6016, + 5998, + 5992, + 5978, + 5968, + 5959, + 5954, + 5939, + 5928, + 5919, + 5912, + 5899, + 5896, + 5884, + 5870, + 5858, + 5852, + 5838, + 5833 + ], + "DMI": [ + 5959, + 6141 + ] + } + ], + [ + 75, + { + "n": "Brest", + "rn": "Stade Brestois 29", + "cn": "Brest", + "crn": "Stade-Brestois-29", + "a": "BRS", + "el": 1035, + "nm": [ + [ + 8691, + 0.408 + ], + [ + 8681, + 0.33 + ] + ], + "pM": [ + null, + 6206, + 6197, + 6180, + 6168, + 6158, + 6149, + 6143, + 6129, + 6126, + 6109, + 6099, + 6092, + 6079, + 6068, + 6061, + 6048, + 6040, + 6028, + 6025, + 6009, + 6005, + 5989, + 5987, + 5968, + 5961, + 5948, + 5943, + 5929, + 5922, + 5908, + 5901, + 5888, + 5879, + 5876, + 5859, + 5853, + 5844, + 5829 + ], + "DMI": [ + 5948, + 6061, + 6009, + 6126 + ] + } + ], + [ + 92, + { + "n": "Clermont", + "rn": "Clermont Foot 63", + "cn": "Clermont", + "crn": "Clermont-Foot-63", + "a": "CLM", + "el": 1000, + "nm": [ + [ + 8694, + 0.431 + ], + [ + 8682, + 0.705 + ] + ], + "pM": [ + null, + 6583, + 6571, + 6560, + 6550, + 6546, + 6531, + 6520, + 6511, + 6506, + 6491, + 6478, + 6470, + 6464, + 6451, + 6442, + 6430, + 6422, + 6408, + 6409, + 6392, + 6380, + 6375, + 6361, + 6355, + 6341, + 6328, + 6321, + 6311, + 6300, + 6293, + 6281, + 6275, + 6261, + 6256, + 6241, + 6231, + 6222, + 6208 + ], + "DMI": [ + 6361, + 6546 + ] + } + ], + [ + 104, + { + "n": "Lens", + "rn": "Racing Club de Lens", + "cn": "Lens", + "crn": "Racing-Club-de-Lens", + "a": "LEN", + "el": 1000, + "nm": [ + [ + 8693, + 0.287 + ], + [ + 8683, + 0.369 + ] + ], + "pM": [ + null, + 6205, + 6190, + 6182, + 6169, + 6165, + 6150, + 6140, + 6130, + 6121, + 6110, + 6100, + 6088, + 6087, + 6069, + 6062, + 6052, + 6040, + 6031, + 6020, + 6015, + 6000, + 5994, + 5980, + 5969, + 5966, + 5949, + 5938, + 5936, + 5920, + 5916, + 5900, + 5889, + 5879, + 5869, + 5867, + 5849, + 5838, + 5836 + ], + "DMI": [ + 5969, + 6087, + 5936, + 6150 + ] + } + ], + [ + 12, + { + "n": "Lille", + "rn": "LOSC", + "cn": "Lille", + "crn": "LOSC", + "a": "LIL", + "el": 1188, + "nm": [ + [ + 8698, + 0.797 + ], + [ + 8684, + 0.671 + ] + ], + "pM": [ + null, + 6201, + 6191, + 6181, + 6171, + 6161, + 6156, + 6140, + 6135, + 6120, + 6109, + 6101, + 6096, + 6081, + 6070, + 6060, + 6057, + 6043, + 6029, + 6024, + 6010, + 6006, + 5990, + 5978, + 5973, + 5961, + 5950, + 5941, + 5930, + 5923, + 5910, + 5906, + 5891, + 5880, + 5871, + 5862, + 5849, + 5840, + 5828 + ], + "DMI": [ + 5891, + 6181, + 5862, + 6135 + ] + } + ], + [ + 6, + { + "n": "Lorient", + "rn": "FC Lorient", + "cn": "Lorient", + "crn": "FC-Lorient", + "a": "LOR", + "el": 948, + "nm": [ + [ + 8696, + 0.303 + ], + [ + 8685, + 0.308 + ] + ], + "pM": [ + null, + 6202, + 6195, + 6182, + 6168, + 6162, + 6151, + 6145, + 6131, + 6119, + 6111, + 6101, + 6089, + 6078, + 6071, + 6065, + 6050, + 6044, + 6030, + 6018, + 6011, + 6003, + 5991, + 5985, + 5970, + 5964, + 5950, + 5942, + 5933, + 5921, + 5913, + 5901, + 5889, + 5881, + 5870, + 5861, + 5850, + 5841, + 5837 + ], + "DMI": [ + 5942, + 6195, + 6030, + 5964 + ] + } + ], + [ + 18, + { + "n": "Lyon", + "rn": "Olympique Lyonnais", + "cn": "Lyon", + "crn": "Olympique-Lyonnais", + "a": "LYN", + "el": 1100, + "nm": [ + [ + 8680, + 0.577 + ], + [ + 8691, + 0.592 + ] + ], + "pM": [ + null, + 6204, + 6188, + 6179, + 6170, + 6162, + 6157, + 6147, + 6132, + 6120, + 6117, + 6098, + 6090, + 6082, + 6077, + 6061, + 6054, + 6041, + 6031, + 6027, + 6012, + 6007, + 5992, + 5979, + 5971, + 5962, + 5948, + 5947, + 5931, + 5926, + 5917, + 5900, + 5890, + 5882, + 5871, + 5864, + 5850, + 5846, + 5830 + ], + "DMI": [ + 5948, + 6061, + 5890, + 6098 + ] + } + ], + [ + 9, + { + "n": "Marseille", + "rn": "Olympique de Marseille", + "cn": "Marseille", + "crn": "Olympique-de-Marseille", + "a": "MAR", + "el": 1208, + "nm": [ + [ + 8686, + 0.715 + ], + [ + 8699, + 0.662 + ] + ], + "pM": [ + null, + 6198, + 6197, + 6187, + 6171, + 6163, + 6157, + 6141, + 6131, + 6121, + 6116, + 6102, + 6091, + 6085, + 6072, + 6067, + 6051, + 6038, + 6032, + 6019, + 6013, + 6002, + 5993, + 5980, + 5977, + 5959, + 5952, + 5947, + 5930, + 5922, + 5914, + 5902, + 5893, + 5881, + 5874, + 5863, + 5856, + 5842, + 5831 + ], + "DMI": [ + 5893, + 6032, + 5959, + 6141 + ] + } + ], + [ + 11, + { + "n": "Metz", + "rn": "FC Metz", + "cn": "Metz", + "crn": "FC-Metz", + "a": "MET", + "el": 950, + "nm": [ + [ + 8698, + 0.203 + ], + [ + 8687, + 0.31 + ] + ], + "pM": [ + null, + 6207, + 6193, + 6181, + 6172, + 6163, + 6151, + 6138, + 6133, + 6124, + 6112, + 6105, + 6092, + 6082, + 6076, + 6063, + 6052, + 6047, + 6033, + 6021, + 6012, + 6001, + 5989, + 5981, + 5976, + 5963, + 5953, + 5939, + 5932, + 5920, + 5911, + 5903, + 5891, + 5887, + 5872, + 5860, + 5851, + 5841, + 5831 + ], + "DMI": [ + 5891, + 6181, + 6105, + 6001 + ] + } + ], + [ + 13, + { + "n": "Monaco", + "rn": "AS Monaco", + "cn": "Monaco", + "crn": "AS-Monaco", + "a": "MCO", + "el": 1089, + "nm": [ + [ + 8685, + 0.692 + ], + [ + 8690, + 0.5 + ] + ], + "pM": [ + null, + 6203, + 6193, + 6183, + 6176, + 6164, + 6149, + 6142, + 6132, + 6122, + 6113, + 6103, + 6093, + 6081, + 6072, + 6062, + 6049, + 6042, + 6030, + 6022, + 6014, + 6002, + 5995, + 5982, + 5975, + 5964, + 5955, + 5943, + 5937, + 5923, + 5915, + 5903, + 5892, + 5884, + 5868, + 5864, + 5854, + 5843, + 5836 + ], + "DMI": [ + 6183, + 5995, + 6030, + 5964 + ] + } + ], + [ + 15, + { + "n": "Montpellier", + "rn": "Montpellier Hérault SC", + "cn": "Montpellier", + "crn": "Montpellier-Herault-SC", + "a": "MTP", + "el": 1091, + "nm": [ + [ + 8699, + 0.338 + ], + [ + 8689, + 0.522 + ] + ], + "pM": [ + null, + 6204, + 6189, + 6184, + 6173, + 6160, + 6152, + 6142, + 6134, + 6127, + 6108, + 6104, + 6089, + 6083, + 6069, + 6063, + 6048, + 6043, + 6032, + 6023, + 6014, + 6004, + 5994, + 5981, + 5972, + 5962, + 5951, + 5945, + 5933, + 5924, + 5912, + 5898, + 5893, + 5880, + 5873, + 5865, + 5857, + 5844, + 5832 + ], + "DMI": [ + 5893, + 6032, + 6134, + 5945 + ] + } + ], + [ + 8, + { + "n": "Nantes", + "rn": "FC Nantes", + "cn": "Nantes", + "crn": "FC-Nantes", + "a": "NAN", + "el": 1089, + "nm": [ + [ + 8687, + 0.69 + ], + [ + 8690, + 0.5 + ] + ], + "pM": [ + null, + 6199, + 6194, + 6183, + 6174, + 6161, + 6153, + 6143, + 6130, + 6123, + 6111, + 6105, + 6091, + 6084, + 6073, + 6066, + 6053, + 6041, + 6034, + 6023, + 6015, + 6001, + 5995, + 5986, + 5973, + 5958, + 5952, + 5944, + 5934, + 5925, + 5913, + 5904, + 5895, + 5882, + 5877, + 5859, + 5852, + 5839, + 5832 + ], + "DMI": [ + 6183, + 5995, + 6105, + 6001 + ] + } + ], + [ + 19, + { + "n": "Nice", + "rn": "OGC Nice", + "cn": "Nice", + "crn": "OGC-Nice", + "a": "NIC", + "el": 1064, + "nm": [ + [ + 8684, + 0.329 + ], + [ + 8695, + 0.483 + ] + ], + "pM": [ + null, + 6205, + 6196, + 6184, + 6175, + 6159, + 6153, + 6146, + 6135, + 6118, + 6113, + 6102, + 6094, + 6086, + 6074, + 6064, + 6054, + 6044, + 6028, + 6021, + 6016, + 6000, + 5996, + 5982, + 5974, + 5965, + 5953, + 5946, + 5935, + 5921, + 5914, + 5904, + 5894, + 5885, + 5873, + 5862, + 5853, + 5845, + 5830 + ], + "DMI": [ + 6086, + 5894, + 5862, + 6135 + ] + } + ], + [ + 2, + { + "n": "Paris", + "rn": "Paris Saint-Germain", + "cn": "Paris", + "crn": "Paris-Saint-Germain", + "a": "PSG", + "el": 1251, + "nm": [ + [ + 8692, + 0.91 + ], + [ + 8688, + 0.749 + ] + ], + "pM": [ + null, + 6207, + 6190, + 6187, + 6175, + 6166, + 6154, + 6144, + 6136, + 6123, + 6115, + 6103, + 6095, + 6083, + 6077, + 6065, + 6057, + 6046, + 6036, + 6025, + 6008, + 6004, + 5991, + 5983, + 5977, + 5965, + 5955, + 5940, + 5928, + 5925, + 5917, + 5906, + 5897, + 5883, + 5872, + 5867, + 5855, + 5847, + 5829 + ], + "DMI": [ + 6046, + 5897 + ] + } + ], + [ + 68, + { + "n": "Reims", + "rn": "Stade de Reims", + "cn": "Reims", + "crn": "Stade-de-Reims", + "a": "REI", + "el": 1076, + "nm": [ + [ + 8689, + 0.478 + ], + [ + 8695, + 0.517 + ] + ], + "pM": [ + null, + 6203, + 6191, + 6178, + 6172, + 6166, + 6155, + 6145, + 6134, + 6125, + 6110, + 6106, + 6090, + 6086, + 6068, + 6066, + 6051, + 6039, + 6035, + 6026, + 6010, + 6005, + 5997, + 5984, + 5970, + 5966, + 5956, + 5945, + 5934, + 5926, + 5909, + 5907, + 5894, + 5887, + 5874, + 5866, + 5854, + 5847, + 5833 + ], + "DMI": [ + 6086, + 5894, + 6134, + 5945 + ] + } + ], + [ + 20, + { + "n": "Rennes", + "rn": "Stade Rennais FC", + "cn": "Rennes", + "crn": "Stade-Rennais-FC", + "a": "REN", + "el": 1158, + "nm": [ + [ + 8681, + 0.67 + ], + [ + 8693, + 0.713 + ] + ], + "pM": [ + null, + 6201, + 6189, + 6185, + 6176, + 6167, + 6155, + 6139, + 6137, + 6126, + 6115, + 6107, + 6097, + 6087, + 6074, + 6067, + 6050, + 6047, + 6034, + 6027, + 6009, + 6006, + 5993, + 5985, + 5969, + 5967, + 5951, + 5946, + 5931, + 5927, + 5911, + 5907, + 5895, + 5878, + 5875, + 5858, + 5855, + 5843, + 5834 + ], + "DMI": [ + 5969, + 6087, + 6009, + 6126 + ] + } + ], + [ + 4, + { + "n": "St Etienne", + "rn": "AS Saint-Etienne", + "cn": "St-Etienne", + "crn": "AS-Saint-Etienne", + "a": "STE", + "el": 1093, + "nm": [ + [ + 8683, + 0.631 + ], + [ + 8696, + 0.697 + ] + ], + "pM": [ + null, + 6198, + 6195, + 6186, + 6174, + 6167, + 6150, + 6146, + 6133, + 6127, + 6117, + 6099, + 6096, + 6080, + 6075, + 6059, + 6055, + 6042, + 6036, + 6026, + 6017, + 6007, + 5996, + 5986, + 5976, + 5967, + 5956, + 5942, + 5936, + 5918, + 5915, + 5905, + 5896, + 5883, + 5876, + 5865, + 5856, + 5840, + 5835 + ], + "DMI": [ + 5942, + 6195, + 5936, + 6150 + ] + } + ], + [ + 41, + { + "n": "Strasbourg", + "rn": "RC Strasbourg Alsace", + "cn": "Strasbourg", + "crn": "RC-Strasbourg-Alsace", + "a": "SBG", + "el": 1061, + "nm": [ + [ + 8697, + 0.522 + ], + [ + 8688, + 0.251 + ] + ], + "pM": [ + null, + 6202, + 6196, + 6186, + 6177, + 6164, + 6156, + 6147, + 6129, + 6125, + 6116, + 6104, + 6097, + 6084, + 6076, + 6058, + 6056, + 6046, + 6037, + 6020, + 6017, + 5999, + 5997, + 5987, + 5971, + 5963, + 5957, + 5941, + 5937, + 5927, + 5916, + 5899, + 5897, + 5886, + 5877, + 5863, + 5857, + 5845, + 5837 + ], + "DMI": [ + 5957, + 6058, + 6046, + 5897 + ] + } + ], + [ + 43, + { + "n": "Troyes", + "rn": "ESTAC Troyes", + "cn": "Troyes", + "crn": "ESTAC-Troyes", + "a": "TRO", + "el": 849, + "nm": [ + [ + 8682, + 0.295 + ], + [ + 8692, + 0.09 + ] + ], + "pM": [ + null, + 6587, + 6577, + 6566, + 6557, + 6546, + 6537, + 6525, + 6517, + 6498, + 6497, + 6482, + 6477, + 6461, + 6456, + 6439, + 6436, + 6420, + 6416, + 6399, + 6395, + 6386, + 6376, + 6361, + 6356, + 6347, + 6336, + 6327, + 6310, + 6306, + 6288, + 6287, + 6274, + 6266, + 6255, + 6246, + 6229, + 6226, + 6214 + ], + "DMI": [ + 6361, + 6546 + ] + } + ] + ], + "nc": 20, + "op": [ + [ + 7, + { + "n": "Dijon" + } + ], + [ + 67, + { + "n": "Nîmes" + } + ], + [ + 71, + { + "n": "Fulham" + } + ], + [ + 46, + { + "n": "Newcastle" + } + ], + [ + 35, + { + "n": "Southampton" + } + ], + [ + 23, + { + "n": "Burnley" + } + ], + [ + 25, + { + "n": "Chelsea" + } + ], + [ + 24, + { + "n": "Tottenham" + } + ], + [ + 39, + { + "n": "Arsenal" + } + ], + [ + 69, + { + "n": "Wolverhampton" + } + ], + [ + 78, + { + "n": "Aston Villa" + } + ], + [ + 21, + { + "n": "Liverpool" + } + ], + [ + 26, + { + "n": "Crystal Palace" + } + ], + [ + 77, + { + "n": "Sheffield" + } + ], + [ + 22, + { + "n": "Everton" + } + ], + [ + 28, + { + "n": "West Ham" + } + ], + [ + 131, + { + "n": "Leeds" + } + ], + [ + 119, + { + "n": "Atalanta" + } + ], + [ + 109, + { + "n": "Brescia" + } + ], + [ + 42, + { + "n": "Amiens" + } + ], + [ + 14, + { + "n": "Guingamp" + } + ], + [ + 128, + { + "n": "Dunkerque" + } + ], + [ + 5, + { + "n": "Caen" + } + ], + [ + 102, + { + "n": "Sochaux" + } + ], + [ + 94, + { + "n": "Grenoble" + } + ], + [ + 93, + { + "n": "Châteauroux" + } + ], + [ + 107, + { + "n": "Paris FC" + } + ], + [ + 89, + { + "n": "Le Havre" + } + ], + [ + 129, + { + "n": "Pau" + } + ], + [ + 98, + { + "n": "Niort" + } + ], + [ + 17, + { + "n": "Nancy" + } + ], + [ + 91, + { + "n": "Valenciennes" + } + ], + [ + 88, + { + "n": "Ajaccio" + } + ], + [ + 90, + { + "n": "Chambly" + } + ], + [ + 100, + { + "n": "Rodez" + } + ], + [ + 10, + { + "n": "Toulouse" + } + ], + [ + 101, + { + "n": "Auxerre" + } + ], + [ + 123, + { + "n": "Sassuolo" + } + ], + [ + 124, + { + "n": "Udinese" + } + ], + [ + 113, + { + "n": "Lecce" + } + ], + [ + 115, + { + "n": "Juventus" + } + ], + [ + 111, + { + "n": "Napoli" + } + ], + [ + 121, + { + "n": "Lazio" + } + ], + [ + 120, + { + "n": "Sampdoria" + } + ], + [ + 118, + { + "n": "Spal" + } + ], + [ + 29, + { + "n": "Leicester" + } + ], + [ + 56, + { + "n": "Espanyol" + } + ], + [ + 51, + { + "n": "Celta" + } + ], + [ + 54, + { + "n": "Atlético" + } + ], + [ + 85, + { + "n": "Osasuna" + } + ], + [ + 66, + { + "n": "Eibar" + } + ], + [ + 58, + { + "n": "Getafe" + } + ], + [ + 63, + { + "n": "Levante" + } + ], + [ + 73, + { + "n": "Huesca" + } + ], + [ + 125, + { + "n": "Milan" + } + ], + [ + 122, + { + "n": "Torino" + } + ], + [ + 116, + { + "n": "Roma" + } + ], + [ + 110, + { + "n": "Fiorentina" + } + ], + [ + 112, + { + "n": "Inter" + } + ], + [ + 126, + { + "n": "Verona" + } + ], + [ + 114, + { + "n": "Parma" + } + ], + [ + 108, + { + "n": "Cagliari" + } + ], + [ + 117, + { + "n": "Genoa" + } + ], + [ + 127, + { + "n": "Bologna" + } + ], + [ + 139, + { + "n": "Crotone" + } + ], + [ + 141, + { + "n": "Spezia" + } + ], + [ + 140, + { + "n": "Benevento" + } + ], + [ + 36, + { + "n": "Bournemouth" + } + ], + [ + 31, + { + "n": "Man. United" + } + ], + [ + 40, + { + "n": "Man. City" + } + ], + [ + 32, + { + "n": "West Bromwich" + } + ], + [ + 45, + { + "n": "Brighton" + } + ], + [ + 47, + { + "n": "Leganés" + } + ], + [ + 62, + { + "n": "Real Madrid" + } + ], + [ + 64, + { + "n": "Villarreal" + } + ], + [ + 86, + { + "n": "Granada" + } + ], + [ + 57, + { + "n": "Bilbao" + } + ], + [ + 49, + { + "n": "Valencia" + } + ], + [ + 59, + { + "n": "Barcelona" + } + ], + [ + 74, + { + "n": "Valladolid" + } + ], + [ + 60, + { + "n": "Betis" + } + ], + [ + 52, + { + "n": "Real Sociedad" + } + ], + [ + 134, + { + "n": "Cádiz" + } + ], + [ + 135, + { + "n": "Elche" + } + ], + [ + 55, + { + "n": "Sevilla" + } + ], + [ + 48, + { + "n": "Alavés" + } + ] + ], + "Ne": [ + [ + 8697, + { + "d": 1, + "dB": 1628427600, + "t1": 41, + "t2": 16, + "o": { + "h": 2, + "d": 3.5, + "a": 3.95 + } + } + ], + [ + 8680, + { + "d": 2, + "dB": 1629025200, + "t1": 16, + "t2": 18, + "o": { + "h": 4.6, + "d": 3.72, + "a": 1.68 + } + } + ], + [ + 8694, + { + "d": 1, + "dB": 1628427600, + "t1": 3, + "t2": 92, + "o": { + "h": 2.1, + "d": 3.42, + "a": 3.65 + } + } + ], + [ + 8686, + { + "d": 2, + "dB": 1629053100, + "t1": 9, + "t2": 3, + "o": { + "h": 1.85, + "d": 3.48, + "a": 3.98 + } + } + ], + [ + 8691, + { + "d": 1, + "dB": 1628348400, + "t1": 18, + "t2": 75, + "o": { + "h": 1.35, + "d": 5.9, + "a": 7.7 + } + } + ], + [ + 8681, + { + "d": 2, + "dB": 1629032400, + "t1": 75, + "t2": 20, + "o": { + "h": 3.15, + "d": 3.35, + "a": 2.16 + } + } + ], + [ + 8682, + { + "d": 2, + "dB": 1629032400, + "t1": 92, + "t2": 43, + "o": { + "h": 2.12, + "d": 3.35, + "a": 3.25 + } + } + ], + [ + 8693, + { + "d": 1, + "dB": 1628420400, + "t1": 20, + "t2": 104, + "o": { + "h": 2.02, + "d": 3.6, + "a": 3.75 + } + } + ], + [ + 8683, + { + "d": 2, + "dB": 1629039600, + "t1": 104, + "t2": 4, + "o": { + "h": 2.03, + "d": 3.45, + "a": 3.38 + } + } + ], + [ + 8698, + { + "d": 1, + "dB": 1628434800, + "t1": 11, + "t2": 12, + "o": { + "h": 5.55, + "d": 3.5, + "a": 1.74 + } + } + ], + [ + 8684, + { + "d": 2, + "dB": 1628953200, + "t1": 12, + "t2": 19, + "o": { + "h": 1.6, + "d": 3.58, + "a": 5.65 + } + } + ], + [ + 8696, + { + "d": 1, + "dB": 1628427600, + "t1": 4, + "t2": 6, + "o": { + "h": 2.24, + "d": 3.55, + "a": 3.18 + } + } + ], + [ + 8685, + { + "d": 2, + "dB": 1628881200, + "t1": 6, + "t2": 13, + "o": { + "h": 4.6, + "d": 3.62, + "a": 1.7 + } + } + ], + [ + 8699, + { + "d": 1, + "dB": 1628448300, + "t1": 15, + "t2": 9, + "o": { + "h": 3.02, + "d": 3.62, + "a": 2.29 + } + } + ], + [ + 8687, + { + "d": 2, + "dB": 1629032400, + "t1": 8, + "t2": 11, + "o": { + "h": 2.07, + "d": 3.25, + "a": 3.45 + } + } + ], + [ + 8690, + { + "d": 1, + "dB": 1628276400, + "t1": 13, + "t2": 8, + "o": { + "h": 1.52, + "d": 4.65, + "a": 6.35 + } + } + ], + [ + 8689, + { + "d": 2, + "dB": 1629032400, + "t1": 68, + "t2": 15, + "o": { + "h": 2.42, + "d": 3.12, + "a": 2.88 + } + } + ], + [ + 8695, + { + "d": 1, + "dB": 1628427600, + "t1": 19, + "t2": 68, + "o": { + "h": 1.9, + "d": 3.62, + "a": 4.15 + } + } + ], + [ + 8692, + { + "d": 1, + "dB": 1628362800, + "t1": 43, + "t2": 2, + "o": { + "h": 11.2, + "d": 6.35, + "a": 1.28 + } + } + ], + [ + 8688, + { + "d": 2, + "dB": 1628967600, + "t1": 2, + "t2": 41, + "o": { + "h": 1.28, + "d": 5.6, + "a": 8.5 + } + } + ] + ], + "e": [ + [ + 5828, + { + "d": 38, + "dB": 1621796400, + "t1s": 1, + "t2s": 2, + "t1": 16, + "t2": 12 + } + ], + [ + 5842, + { + "d": 37, + "dB": 1621191600, + "t1s": 3, + "t2s": 2, + "t1": 9, + "t2": 16 + } + ], + [ + 5848, + { + "d": 36, + "dB": 1620565200, + "t1s": 3, + "t2s": 0, + "t1": 16, + "t2": 7 + } + ], + [ + 5861, + { + "d": 35, + "dB": 1619960400, + "t1s": 2, + "t2s": 0, + "t1": 6, + "t2": 16 + } + ], + [ + 5868, + { + "d": 34, + "dB": 1619363100, + "t1s": 0, + "t2s": 1, + "t1": 16, + "t2": 13 + } + ], + [ + 5878, + { + "d": 33, + "dB": 1618656300, + "t1s": 0, + "t2s": 3, + "t1": 16, + "t2": 20 + } + ], + [ + 5890, + { + "d": 32, + "dB": 1618167600, + "t1s": 3, + "t2s": 0, + "t1": 18, + "t2": 16 + } + ], + [ + 5898, + { + "d": 31, + "dB": 1617534000, + "t1s": 1, + "t2s": 1, + "t1": 16, + "t2": 15 + } + ], + [ + 5908, + { + "d": 30, + "dB": 1616335200, + "t1s": 0, + "t2s": 0, + "t1": 75, + "t2": 16 + } + ], + [ + 5918, + { + "d": 29, + "dB": 1615636800, + "t1s": 0, + "t2s": 1, + "t1": 16, + "t2": 4 + } + ], + [ + 5938, + { + "d": 27, + "dB": 1614520800, + "t1s": 2, + "t2s": 2, + "t1": 16, + "t2": 104 + } + ], + [ + 5957, + { + "d": 26, + "dB": 1613916000, + "t1s": 0, + "t2s": 0, + "t1": 41, + "t2": 16 + } + ], + [ + 5958, + { + "d": 25, + "dB": 1613311200, + "t1s": 1, + "t2s": 3, + "t1": 16, + "t2": 8 + } + ], + [ + 5974, + { + "d": 24, + "dB": 1612706400, + "t1s": 3, + "t2s": 0, + "t1": 19, + "t2": 16 + } + ], + [ + 5984, + { + "d": 23, + "dB": 1612375200, + "t1s": 0, + "t2s": 0, + "t1": 68, + "t2": 16 + } + ], + [ + 5988, + { + "d": 22, + "dB": 1612101600, + "t1s": 3, + "t2s": 1, + "t1": 16, + "t2": 67 + } + ], + [ + 5998, + { + "d": 21, + "dB": 1611489600, + "t1s": 2, + "t2s": 1, + "t1": 3, + "t2": 16 + } + ], + [ + 6022, + { + "d": 19, + "dB": 1610222400, + "t1s": 3, + "t2s": 0, + "t1": 13, + "t2": 16 + } + ], + [ + 6029, + { + "d": 18, + "dB": 1609963200, + "t1s": 1, + "t2s": 2, + "t1": 12, + "t2": 16 + } + ], + [ + 6038, + { + "d": 17, + "dB": 1608753600, + "t1s": 2, + "t2s": 1, + "t1": 16, + "t2": 9 + } + ], + [ + 6053, + { + "d": 16, + "dB": 1608472800, + "t1s": 1, + "t2s": 1, + "t1": 8, + "t2": 16 + } + ], + [ + 6058, + { + "d": 15, + "dB": 1608141600, + "t1s": 0, + "t2s": 2, + "t1": 16, + "t2": 41 + } + ], + [ + 6075, + { + "d": 14, + "dB": 1607716800, + "t1s": 0, + "t2s": 0, + "t1": 4, + "t2": 16 + } + ], + [ + 6078, + { + "d": 13, + "dB": 1607263200, + "t1s": 2, + "t2s": 0, + "t1": 16, + "t2": 6 + } + ], + [ + 6088, + { + "d": 12, + "dB": 1606658400, + "t1s": 1, + "t2s": 3, + "t1": 104, + "t2": 16 + } + ], + [ + 6114, + { + "d": 10, + "dB": 1604844000, + "t1s": 1, + "t2s": 5, + "t1": 67, + "t2": 16 + } + ], + [ + 6118, + { + "d": 9, + "dB": 1604239200, + "t1s": 0, + "t2s": 3, + "t1": 16, + "t2": 19 + } + ], + [ + 6137, + { + "d": 8, + "dB": 1603479600, + "t1s": 1, + "t2s": 2, + "t1": 20, + "t2": 16 + } + ], + [ + 6138, + { + "d": 7, + "dB": 1603026000, + "t1s": 1, + "t2s": 1, + "t1": 16, + "t2": 11 + } + ], + [ + 6154, + { + "d": 6, + "dB": 1601665200, + "t1s": 6, + "t2s": 1, + "t1": 2, + "t2": 16 + } + ], + [ + 6158, + { + "d": 5, + "dB": 1601211600, + "t1s": 3, + "t2s": 2, + "t1": 16, + "t2": 75 + } + ], + [ + 6173, + { + "d": 4, + "dB": 1600606800, + "t1s": 4, + "t2s": 1, + "t1": 15, + "t2": 16 + } + ], + [ + 6178, + { + "d": 3, + "dB": 1600002000, + "t1s": 1, + "t2s": 0, + "t1": 16, + "t2": 68 + } + ], + [ + 6192, + { + "d": 2, + "dB": 1598792400, + "t1s": 0, + "t2s": 2, + "t1": 16, + "t2": 3 + } + ], + [ + 6200, + { + "d": 1, + "dB": 1598108400, + "t1s": 0, + "t2s": 1, + "t1": 7, + "t2": 16 + } + ], + [ + 5932, + { + "d": 28, + "dB": 1614794400, + "t1s": 0, + "t2s": 1, + "t1": 11, + "t2": 16 + } + ], + [ + 6008, + { + "d": 20, + "dB": 1610827200, + "t1s": 0, + "t2s": 1, + "t1": 16, + "t2": 2 + } + ], + [ + 6098, + { + "d": 11, + "dB": 1606060800, + "t1s": 0, + "t2s": 1, + "t1": 16, + "t2": 18 + } + ], + [ + 6183, + { + "d": 3, + "dB": 1600009200, + "t1s": 2, + "t2s": 1, + "t1": 13, + "t2": 8 + } + ], + [ + 5833, + { + "d": 38, + "dB": 1621796400, + "t1s": 1, + "t2s": 2, + "t1": 68, + "t2": 3 + } + ], + [ + 5838, + { + "d": 37, + "dB": 1621191600, + "t1s": 3, + "t2s": 0, + "t1": 3, + "t2": 104 + } + ], + [ + 5852, + { + "d": 36, + "dB": 1620471600, + "t1s": 3, + "t2s": 0, + "t1": 8, + "t2": 3 + } + ], + [ + 5858, + { + "d": 35, + "dB": 1619953200, + "t1s": 1, + "t2s": 0, + "t1": 3, + "t2": 20 + } + ], + [ + 5870, + { + "d": 34, + "dB": 1619355600, + "t1s": 4, + "t2s": 1, + "t1": 6, + "t2": 3 + } + ], + [ + 5884, + { + "d": 33, + "dB": 1618758300, + "t1s": 0, + "t2s": 3, + "t1": 3, + "t2": 13 + } + ], + [ + 5896, + { + "d": 32, + "dB": 1618146000, + "t1s": 4, + "t2s": 1, + "t1": 4, + "t2": 3 + } + ], + [ + 5899, + { + "d": 31, + "dB": 1617541200, + "t1s": 2, + "t2s": 3, + "t1": 3, + "t2": 41 + } + ], + [ + 5912, + { + "d": 30, + "dB": 1616335200, + "t1s": 3, + "t2s": 1, + "t1": 15, + "t2": 3 + } + ], + [ + 5919, + { + "d": 29, + "dB": 1615730400, + "t1s": 1, + "t2s": 3, + "t1": 7, + "t2": 3 + } + ], + [ + 5928, + { + "d": 28, + "dB": 1614801600, + "t1s": 0, + "t2s": 1, + "t1": 3, + "t2": 2 + } + ], + [ + 5939, + { + "d": 27, + "dB": 1614427200, + "t1s": 1, + "t2s": 2, + "t1": 3, + "t2": 11 + } + ], + [ + 5954, + { + "d": 26, + "dB": 1613916000, + "t1s": 2, + "t2s": 0, + "t1": 67, + "t2": 3 + } + ], + [ + 5959, + { + "d": 25, + "dB": 1613332800, + "t1s": 0, + "t2s": 0, + "t1": 3, + "t2": 9 + } + ], + [ + 5968, + { + "d": 24, + "dB": 1612699200, + "t1s": 2, + "t2s": 1, + "t1": 75, + "t2": 3 + } + ], + [ + 5978, + { + "d": 23, + "dB": 1612375200, + "t1s": 0, + "t2s": 3, + "t1": 3, + "t2": 12 + } + ], + [ + 5992, + { + "d": 22, + "dB": 1611950400, + "t1s": 2, + "t2s": 1, + "t1": 18, + "t2": 3 + } + ], + [ + 6016, + { + "d": 20, + "dB": 1610892000, + "t1s": 0, + "t2s": 3, + "t1": 19, + "t2": 3 + } + ], + [ + 6018, + { + "d": 19, + "dB": 1610222400, + "t1s": 2, + "t2s": 1, + "t1": 3, + "t2": 6 + } + ], + [ + 6033, + { + "d": 18, + "dB": 1609956000, + "t1s": 0, + "t2s": 0, + "t1": 11, + "t2": 3 + } + ], + [ + 6039, + { + "d": 17, + "dB": 1608746400, + "t1s": 1, + "t2s": 3, + "t1": 3, + "t2": 68 + } + ], + [ + 6056, + { + "d": 16, + "dB": 1608472800, + "t1s": 0, + "t2s": 2, + "t1": 41, + "t2": 3 + } + ], + [ + 6059, + { + "d": 15, + "dB": 1608148800, + "t1s": 1, + "t2s": 2, + "t1": 3, + "t2": 4 + } + ], + [ + 6070, + { + "d": 14, + "dB": 1607875200, + "t1s": 2, + "t2s": 1, + "t1": 12, + "t2": 3 + } + ], + [ + 6079, + { + "d": 13, + "dB": 1607263200, + "t1s": 1, + "t2s": 0, + "t1": 3, + "t2": 75 + } + ], + [ + 6095, + { + "d": 12, + "dB": 1606593600, + "t1s": 2, + "t2s": 2, + "t1": 2, + "t2": 3 + } + ], + [ + 6107, + { + "d": 11, + "dB": 1605895200, + "t1s": 0, + "t2s": 1, + "t1": 20, + "t2": 3 + } + ], + [ + 6108, + { + "d": 10, + "dB": 1604764800, + "t1s": 0, + "t2s": 2, + "t1": 3, + "t2": 15 + } + ], + [ + 6122, + { + "d": 9, + "dB": 1604246400, + "t1s": 4, + "t2s": 0, + "t1": 13, + "t2": 3 + } + ], + [ + 6128, + { + "d": 8, + "dB": 1603634400, + "t1s": 2, + "t2s": 0, + "t1": 3, + "t2": 67 + } + ], + [ + 6141, + { + "d": 7, + "dB": 1602961200, + "t1s": 3, + "t2s": 1, + "t1": 9, + "t2": 3 + } + ], + [ + 6148, + { + "d": 6, + "dB": 1601816400, + "t1s": 3, + "t2s": 0, + "t1": 3, + "t2": 7 + } + ], + [ + 6159, + { + "d": 5, + "dB": 1601204400, + "t1s": 0, + "t2s": 0, + "t1": 3, + "t2": 19 + } + ], + [ + 6169, + { + "d": 4, + "dB": 1600527600, + "t1s": 2, + "t2s": 1, + "t1": 104, + "t2": 3 + } + ], + [ + 6179, + { + "d": 3, + "dB": 1599850800, + "t1s": 0, + "t2s": 0, + "t1": 3, + "t2": 18 + } + ], + [ + 6199, + { + "d": 1, + "dB": 1598029200, + "t1s": 0, + "t2s": 0, + "t1": 3, + "t2": 8 + } + ], + [ + 6590, + { + "d": 38, + "dB": 1621782000, + "t1s": 0, + "t2s": 2, + "t1": 71, + "t2": 46 + } + ], + [ + 6612, + { + "d": 36, + "dB": 1621087200, + "t1s": 3, + "t2s": 1, + "t1": 35, + "t2": 71 + } + ], + [ + 6617, + { + "d": 35, + "dB": 1620673200, + "t1s": 0, + "t2s": 2, + "t1": 71, + "t2": 23 + } + ], + [ + 6625, + { + "d": 34, + "dB": 1619886600, + "t1s": 2, + "t2s": 0, + "t1": 25, + "t2": 71 + } + ], + [ + 6635, + { + "d": 33, + "dB": 1614880800, + "dl": 1, + "t1s": null, + "t2s": null, + "t1": 71, + "t2": 24 + } + ], + [ + 6642, + { + "d": 32, + "dB": 1618749000, + "t1s": 1, + "t2s": 1, + "t1": 39, + "t2": 71 + } + ], + [ + 6654, + { + "d": 31, + "dB": 1617994800, + "t1s": 0, + "t2s": 1, + "t1": 71, + "t2": 69 + } + ], + [ + 6661, + { + "d": 30, + "dB": 1617550200, + "t1s": 3, + "t2s": 1, + "t1": 78, + "t2": 71 + } + ], + [ + 6690, + { + "d": 28, + "dB": 1615125600, + "t1s": 0, + "t2s": 1, + "t1": 21, + "t2": 71 + } + ], + [ + 6697, + { + "d": 26, + "dB": 1614513600, + "t1s": 0, + "t2s": 0, + "t1": 26, + "t2": 71 + } + ], + [ + 6709, + { + "d": 25, + "dB": 1613851200, + "t1s": 1, + "t2s": 0, + "t1": 71, + "t2": 77 + } + ], + [ + 6717, + { + "d": 24, + "dB": 1613329200, + "t1s": 0, + "t2s": 2, + "t1": 22, + "t2": 71 + } + ], + [ + 6725, + { + "d": 23, + "dB": 1612632600, + "t1s": 0, + "t2s": 0, + "t1": 71, + "t2": 28 + } + ], + [ + 6778, + { + "d": 17, + "dB": 1613584800, + "t1s": 1, + "t2s": 1, + "t1": 23, + "t2": 71 + } + ], + [ + 7659, + { + "d": 27, + "dB": 1616184000, + "t1s": 1, + "t2s": 2, + "t1": 71, + "t2": 131 + } + ], + [ + 5498, + { + "d": 33, + "dB": 1594755900, + "t1s": 6, + "t2s": 2, + "t1": 119, + "t2": 109 + } + ], + [ + 5829, + { + "d": 38, + "dB": 1621796400, + "t1s": 0, + "t2s": 2, + "t1": 75, + "t2": 2 + } + ], + [ + 5844, + { + "d": 37, + "dB": 1621191600, + "t1s": 0, + "t2s": 0, + "t1": 15, + "t2": 75 + } + ], + [ + 5853, + { + "d": 36, + "dB": 1620565200, + "t1s": 3, + "t2s": 2, + "t1": 19, + "t2": 75 + } + ], + [ + 5859, + { + "d": 35, + "dB": 1619960400, + "t1s": 1, + "t2s": 4, + "t1": 75, + "t2": 8 + } + ], + [ + 5879, + { + "d": 33, + "dB": 1618750800, + "t1s": 1, + "t2s": 1, + "t1": 75, + "t2": 104 + } + ], + [ + 5888, + { + "d": 32, + "dB": 1618146000, + "t1s": 1, + "t2s": 1, + "t1": 75, + "t2": 67 + } + ], + [ + 5901, + { + "d": 31, + "dB": 1617541200, + "t1s": 1, + "t2s": 0, + "t1": 6, + "t2": 75 + } + ], + [ + 5922, + { + "d": 29, + "dB": 1615651200, + "t1s": 3, + "t2s": 1, + "t1": 9, + "t2": 75 + } + ], + [ + 5929, + { + "d": 28, + "dB": 1614794400, + "t1s": 3, + "t2s": 1, + "t1": 75, + "t2": 7 + } + ], + [ + 5943, + { + "d": 27, + "dB": 1614513600, + "t1s": 2, + "t2s": 0, + "t1": 13, + "t2": 75 + } + ], + [ + 5948, + { + "d": 26, + "dB": 1613764800, + "t1s": 2, + "t2s": 3, + "t1": 75, + "t2": 18 + } + ], + [ + 5961, + { + "d": 25, + "dB": 1613318400, + "t1s": 0, + "t2s": 0, + "t1": 12, + "t2": 75 + } + ], + [ + 5987, + { + "d": 23, + "dB": 1612375200, + "t1s": 2, + "t2s": 2, + "t1": 41, + "t2": 75 + } + ], + [ + 5989, + { + "d": 22, + "dB": 1612101600, + "t1s": 2, + "t2s": 4, + "t1": 75, + "t2": 11 + } + ], + [ + 6005, + { + "d": 21, + "dB": 1611496800, + "t1s": 1, + "t2s": 0, + "t1": 68, + "t2": 75 + } + ], + [ + 6009, + { + "d": 20, + "dB": 1610884800, + "t1s": 1, + "t2s": 2, + "t1": 75, + "t2": 20 + } + ], + [ + 6025, + { + "d": 19, + "dB": 1610222400, + "t1s": 3, + "t2s": 0, + "t1": 2, + "t2": 75 + } + ], + [ + 6028, + { + "d": 18, + "dB": 1609956000, + "t1s": 2, + "t2s": 0, + "t1": 75, + "t2": 19 + } + ], + [ + 6040, + { + "d": 17, + "dB": 1608746400, + "t1s": 2, + "t2s": 1, + "t1": 104, + "t2": 75 + } + ], + [ + 6048, + { + "d": 16, + "dB": 1608465600, + "t1s": 2, + "t2s": 2, + "t1": 75, + "t2": 15 + } + ], + [ + 6061, + { + "d": 15, + "dB": 1608148800, + "t1s": 2, + "t2s": 2, + "t1": 18, + "t2": 75 + } + ], + [ + 6068, + { + "d": 14, + "dB": 1607868000, + "t1s": 2, + "t2s": 1, + "t1": 75, + "t2": 68 + } + ], + [ + 6092, + { + "d": 12, + "dB": 1606658400, + "t1s": 0, + "t2s": 2, + "t1": 11, + "t2": 75 + } + ], + [ + 6099, + { + "d": 11, + "dB": 1605974400, + "t1s": 4, + "t2s": 1, + "t1": 75, + "t2": 4 + } + ], + [ + 6109, + { + "d": 10, + "dB": 1604836800, + "t1s": 3, + "t2s": 2, + "t1": 75, + "t2": 12 + } + ], + [ + 6126, + { + "d": 9, + "dB": 1604160000, + "t1s": 2, + "t2s": 1, + "t1": 20, + "t2": 75 + } + ], + [ + 6129, + { + "d": 8, + "dB": 1603634400, + "t1s": 0, + "t2s": 3, + "t1": 75, + "t2": 41 + } + ], + [ + 6143, + { + "d": 7, + "dB": 1603026000, + "t1s": 3, + "t2s": 1, + "t1": 8, + "t2": 75 + } + ], + [ + 6149, + { + "d": 6, + "dB": 1601816400, + "t1s": 1, + "t2s": 0, + "t1": 75, + "t2": 13 + } + ], + [ + 6168, + { + "d": 4, + "dB": 1600606800, + "t1s": 3, + "t2s": 2, + "t1": 75, + "t2": 6 + } + ], + [ + 6185, + { + "d": 3, + "dB": 1600002000, + "t1s": 2, + "t2s": 4, + "t1": 67, + "t2": 20 + } + ], + [ + 6194, + { + "d": 2, + "dB": 1598792400, + "t1s": 2, + "t2s": 1, + "t1": 8, + "t2": 67 + } + ], + [ + 6206, + { + "d": 1, + "dB": 1598187600, + "t1s": 4, + "t2s": 0, + "t1": 67, + "t2": 75 + } + ], + [ + 5876, + { + "d": 34, + "dB": 1619262000, + "t1s": 1, + "t2s": 2, + "t1": 4, + "t2": 75 + } + ], + [ + 6180, + { + "d": 3, + "dB": 1600002000, + "t1s": 0, + "t2s": 2, + "t1": 7, + "t2": 75 + } + ], + [ + 6197, + { + "d": 2, + "dB": 1598814000, + "t1s": 2, + "t2s": 3, + "t1": 75, + "t2": 9 + } + ], + [ + 6237, + { + "d": 36, + "dB": 1619892000, + "t1s": 0, + "t2s": 3, + "t1": 42, + "t2": 14 + } + ], + [ + 6282, + { + "d": 31, + "dB": 1619629200, + "t1s": 1, + "t2s": 1, + "t1": 128, + "t2": 42 + } + ], + [ + 6208, + { + "d": 38, + "dB": 1621101600, + "t1s": 2, + "t2s": 1, + "t1": 5, + "t2": 92 + } + ], + [ + 6222, + { + "d": 37, + "dB": 1620496800, + "t1s": 3, + "t2s": 1, + "t1": 92, + "t2": 102 + } + ], + [ + 6231, + { + "d": 36, + "dB": 1620067500, + "t1s": 1, + "t2s": 2, + "t1": 94, + "t2": 92 + } + ], + [ + 6241, + { + "d": 35, + "dB": 1619462700, + "t1s": 2, + "t2s": 1, + "t1": 92, + "t2": 93 + } + ], + [ + 6256, + { + "d": 34, + "dB": 1618941600, + "t1s": 0, + "t2s": 1, + "t1": 107, + "t2": 92 + } + ], + [ + 6261, + { + "d": 33, + "dB": 1618664400, + "t1s": 1, + "t2s": 1, + "t1": 92, + "t2": 89 + } + ], + [ + 6275, + { + "d": 32, + "dB": 1618077600, + "t1s": 2, + "t2s": 1, + "t1": 129, + "t2": 92 + } + ], + [ + 6281, + { + "d": 31, + "dB": 1617472800, + "t1s": 0, + "t2s": 0, + "t1": 92, + "t2": 98 + } + ], + [ + 6293, + { + "d": 30, + "dB": 1616266800, + "t1s": 1, + "t2s": 0, + "t1": 17, + "t2": 92 + } + ], + [ + 6300, + { + "d": 29, + "dB": 1618419600, + "t1s": 3, + "t2s": 0, + "t1": 92, + "t2": 42 + } + ], + [ + 6311, + { + "d": 28, + "dB": 1614711600, + "t1s": 0, + "t2s": 5, + "t1": 14, + "t2": 92 + } + ], + [ + 6321, + { + "d": 27, + "dB": 1614448800, + "t1s": 4, + "t2s": 0, + "t1": 92, + "t2": 91 + } + ], + [ + 6328, + { + "d": 26, + "dB": 1613844000, + "t1s": 0, + "t2s": 2, + "t1": 88, + "t2": 92 + } + ], + [ + 6341, + { + "d": 25, + "dB": 1613239200, + "t1s": 1, + "t2s": 0, + "t1": 92, + "t2": 90 + } + ], + [ + 6355, + { + "d": 24, + "dB": 1612551600, + "t1s": 2, + "t2s": 0, + "t1": 100, + "t2": 92 + } + ], + [ + 6361, + { + "d": 23, + "dB": 1612292400, + "t1s": 2, + "t2s": 1, + "t1": 92, + "t2": 43 + } + ], + [ + 6375, + { + "d": 22, + "dB": 1612015200, + "t1s": 3, + "t2s": 2, + "t1": 10, + "t2": 92 + } + ], + [ + 6380, + { + "d": 21, + "dB": 1611410400, + "t1s": 1, + "t2s": 0, + "t1": 92, + "t2": 101 + } + ], + [ + 6392, + { + "d": 20, + "dB": 1610820000, + "t1s": 5, + "t2s": 0, + "t1": 92, + "t2": 128 + } + ], + [ + 6408, + { + "d": 18, + "dB": 1609873200, + "t1s": 3, + "t2s": 0, + "t1": 92, + "t2": 94 + } + ], + [ + 6409, + { + "d": 19, + "dB": 1610132400, + "t1s": 0, + "t2s": 0, + "t1": 102, + "t2": 92 + } + ], + [ + 6422, + { + "d": 17, + "dB": 1608663600, + "t1s": 0, + "t2s": 1, + "t1": 93, + "t2": 92 + } + ], + [ + 6430, + { + "d": 16, + "dB": 1608386400, + "t1s": 3, + "t2s": 2, + "t1": 92, + "t2": 107 + } + ], + [ + 6442, + { + "d": 15, + "dB": 1607975100, + "t1s": 0, + "t2s": 0, + "t1": 89, + "t2": 92 + } + ], + [ + 6464, + { + "d": 13, + "dB": 1606845600, + "t1s": 1, + "t2s": 0, + "t1": 98, + "t2": 92 + } + ], + [ + 6470, + { + "d": 12, + "dB": 1606586400, + "t1s": 2, + "t2s": 0, + "t1": 92, + "t2": 17 + } + ], + [ + 6478, + { + "d": 11, + "dB": 1605981600, + "t1s": 1, + "t2s": 1, + "t1": 42, + "t2": 92 + } + ], + [ + 6491, + { + "d": 10, + "dB": 1604757600, + "t1s": 0, + "t2s": 0, + "t1": 92, + "t2": 14 + } + ], + [ + 6506, + { + "d": 9, + "dB": 1604167200, + "t1s": 1, + "t2s": 3, + "t1": 91, + "t2": 92 + } + ], + [ + 6511, + { + "d": 8, + "dB": 1603558800, + "t1s": 0, + "t2s": 2, + "t1": 92, + "t2": 88 + } + ], + [ + 6520, + { + "d": 7, + "dB": 1602867600, + "t1s": 0, + "t2s": 3, + "t1": 90, + "t2": 92 + } + ], + [ + 6571, + { + "d": 2, + "dB": 1598720400, + "t1s": 1, + "t2s": 1, + "t1": 128, + "t2": 92 + } + ], + [ + 6583, + { + "d": 1, + "dB": 1598115600, + "t1s": 0, + "t2s": 0, + "t1": 92, + "t2": 5 + } + ], + [ + 6451, + { + "d": 14, + "dB": 1607191200, + "t1s": 3, + "t2s": 0, + "t1": 92, + "t2": 129 + } + ], + [ + 6531, + { + "d": 6, + "dB": 1601744400, + "t1s": 3, + "t2s": 0, + "t1": 92, + "t2": 100 + } + ], + [ + 6546, + { + "d": 5, + "dB": 1601318700, + "t1s": 1, + "t2s": 0, + "t1": 43, + "t2": 92 + } + ], + [ + 6550, + { + "d": 4, + "dB": 1600520400, + "t1s": 1, + "t2s": 1, + "t1": 92, + "t2": 10 + } + ], + [ + 6560, + { + "d": 3, + "dB": 1599930000, + "t1s": 0, + "t2s": 1, + "t1": 101, + "t2": 92 + } + ], + [ + 5836, + { + "d": 38, + "dB": 1621796400, + "t1s": 0, + "t2s": 0, + "t1": 104, + "t2": 13 + } + ], + [ + 5849, + { + "d": 36, + "dB": 1620414000, + "t1s": 0, + "t2s": 3, + "t1": 104, + "t2": 12 + } + ], + [ + 5867, + { + "d": 35, + "dB": 1619881200, + "t1s": 2, + "t2s": 1, + "t1": 2, + "t2": 104 + } + ], + [ + 5869, + { + "d": 34, + "dB": 1619355600, + "t1s": 2, + "t2s": 1, + "t1": 104, + "t2": 67 + } + ], + [ + 5889, + { + "d": 32, + "dB": 1618146000, + "t1s": 4, + "t2s": 1, + "t1": 104, + "t2": 6 + } + ], + [ + 5900, + { + "d": 31, + "dB": 1617476400, + "t1s": 1, + "t2s": 1, + "t1": 104, + "t2": 18 + } + ], + [ + 5916, + { + "d": 30, + "dB": 1616328000, + "t1s": 1, + "t2s": 2, + "t1": 41, + "t2": 104 + } + ], + [ + 5920, + { + "d": 29, + "dB": 1615730400, + "t1s": 2, + "t2s": 2, + "t1": 104, + "t2": 11 + } + ], + [ + 5936, + { + "d": 28, + "dB": 1614794400, + "t1s": 2, + "t2s": 3, + "t1": 4, + "t2": 104 + } + ], + [ + 5949, + { + "d": 26, + "dB": 1613916000, + "t1s": 2, + "t2s": 1, + "t1": 104, + "t2": 7 + } + ], + [ + 5969, + { + "d": 24, + "dB": 1612641600, + "t1s": 0, + "t2s": 0, + "t1": 104, + "t2": 20 + } + ], + [ + 5994, + { + "d": 22, + "dB": 1612022400, + "t1s": 1, + "t2s": 2, + "t1": 15, + "t2": 104 + } + ], + [ + 6000, + { + "d": 21, + "dB": 1611417600, + "t1s": 0, + "t2s": 1, + "t1": 104, + "t2": 19 + } + ], + [ + 6015, + { + "d": 20, + "dB": 1610892000, + "t1s": 1, + "t2s": 1, + "t1": 8, + "t2": 104 + } + ], + [ + 6020, + { + "d": 19, + "dB": 1610222400, + "t1s": 0, + "t2s": 1, + "t1": 104, + "t2": 41 + } + ], + [ + 6052, + { + "d": 16, + "dB": 1608393600, + "t1s": 2, + "t2s": 0, + "t1": 11, + "t2": 104 + } + ], + [ + 6062, + { + "d": 15, + "dB": 1608148800, + "t1s": 0, + "t2s": 3, + "t1": 13, + "t2": 104 + } + ], + [ + 6069, + { + "d": 14, + "dB": 1607803200, + "t1s": 2, + "t2s": 3, + "t1": 104, + "t2": 15 + } + ], + [ + 6087, + { + "d": 13, + "dB": 1607184000, + "t1s": 0, + "t2s": 2, + "t1": 20, + "t2": 104 + } + ], + [ + 6100, + { + "d": 11, + "dB": 1606053600, + "t1s": 0, + "t2s": 1, + "t1": 7, + "t2": 104 + } + ], + [ + 6130, + { + "d": 8, + "dB": 1606327200, + "t1s": 1, + "t2s": 1, + "t1": 104, + "t2": 8 + } + ], + [ + 6140, + { + "d": 7, + "dB": 1603047600, + "t1s": 4, + "t2s": 0, + "t1": 12, + "t2": 104 + } + ], + [ + 6150, + { + "d": 6, + "dB": 1601737200, + "t1s": 2, + "t2s": 0, + "t1": 104, + "t2": 4 + } + ], + [ + 6165, + { + "d": 5, + "dB": 1601211600, + "t1s": 1, + "t2s": 1, + "t1": 67, + "t2": 104 + } + ], + [ + 6182, + { + "d": 3, + "dB": 1600002000, + "t1s": 2, + "t2s": 3, + "t1": 6, + "t2": 104 + } + ], + [ + 6190, + { + "d": 2, + "dB": 1599764400, + "t1s": 1, + "t2s": 0, + "t1": 104, + "t2": 2 + } + ], + [ + 6205, + { + "d": 1, + "dB": 1598194800, + "t1s": 2, + "t2s": 1, + "t1": 19, + "t2": 104 + } + ], + [ + 5966, + { + "d": 25, + "dB": 1613239200, + "t1s": 1, + "t2s": 1, + "t1": 68, + "t2": 104 + } + ], + [ + 5980, + { + "d": 23, + "dB": 1612382400, + "t1s": 2, + "t2s": 2, + "t1": 104, + "t2": 9 + } + ], + [ + 6031, + { + "d": 18, + "dB": 1609963200, + "t1s": 3, + "t2s": 2, + "t1": 18, + "t2": 104 + } + ], + [ + 6110, + { + "d": 10, + "dB": 1604844000, + "t1s": 4, + "t2s": 4, + "t1": 104, + "t2": 68 + } + ], + [ + 6121, + { + "d": 9, + "dB": 1611172800, + "t1s": 0, + "t2s": 1, + "t1": 9, + "t2": 104 + } + ], + [ + 5457, + { + "d": 38, + "dB": 1596397500, + "t1s": null, + "t2s": null, + "t1": 123, + "t2": 124 + } + ], + [ + 5466, + { + "d": 37, + "dB": 1596043800, + "t1s": null, + "t2s": null, + "t1": 124, + "t2": 113 + } + ], + [ + 5487, + { + "d": 35, + "dB": 1595525400, + "t1s": 2, + "t2s": 1, + "t1": 124, + "t2": 115 + } + ], + [ + 5494, + { + "d": 34, + "dB": 1595179800, + "t1s": 2, + "t2s": 1, + "t1": 111, + "t2": 124 + } + ], + [ + 5507, + { + "d": 33, + "dB": 1594842300, + "t1s": 0, + "t2s": 0, + "t1": 124, + "t2": 121 + } + ], + [ + 5517, + { + "d": 32, + "dB": 1594575000, + "t1s": 1, + "t2s": 3, + "t1": 124, + "t2": 120 + } + ], + [ + 5525, + { + "d": 31, + "dB": 1594315800, + "t1s": 0, + "t2s": 3, + "t1": 118, + "t2": 124 + } + ], + [ + 6211, + { + "d": 38, + "dB": 1621101600, + "t1s": 2, + "t2s": 2, + "t1": 17, + "t2": 42 + } + ], + [ + 6224, + { + "d": 37, + "dB": 1620496800, + "t1s": 1, + "t2s": 1, + "t1": 100, + "t2": 17 + } + ], + [ + 6233, + { + "d": 36, + "dB": 1619892000, + "t1s": 1, + "t2s": 3, + "t1": 17, + "t2": 91 + } + ], + [ + 6240, + { + "d": 35, + "dB": 1619287200, + "t1s": 1, + "t2s": 1, + "t1": 90, + "t2": 17 + } + ], + [ + 6254, + { + "d": 34, + "dB": 1618941600, + "t1s": 2, + "t2s": 0, + "t1": 17, + "t2": 88 + } + ], + [ + 6259, + { + "d": 33, + "dB": 1618682400, + "t1s": 3, + "t2s": 2, + "t1": 101, + "t2": 17 + } + ], + [ + 6272, + { + "d": 32, + "dB": 1618077600, + "t1s": 0, + "t2s": 0, + "t1": 17, + "t2": 102 + } + ], + [ + 6286, + { + "d": 31, + "dB": 1617454800, + "t1s": 4, + "t2s": 1, + "t1": 10, + "t2": 17 + } + ], + [ + 6306, + { + "d": 29, + "dB": 1615662000, + "t1s": 1, + "t2s": 5, + "t1": 43, + "t2": 17 + } + ], + [ + 6313, + { + "d": 28, + "dB": 1614711600, + "t1s": 1, + "t2s": 0, + "t1": 17, + "t2": 5 + } + ], + [ + 6320, + { + "d": 27, + "dB": 1614448800, + "t1s": 1, + "t2s": 4, + "t1": 93, + "t2": 17 + } + ], + [ + 6342, + { + "d": 25, + "dB": 1613239200, + "t1s": 1, + "t2s": 2, + "t1": 128, + "t2": 17 + } + ], + [ + 6315, + { + "d": 28, + "dB": 1614711600, + "t1s": 1, + "t2s": 0, + "t1": 107, + "t2": 128 + } + ], + [ + 6319, + { + "d": 27, + "dB": 1614448800, + "t1s": 0, + "t2s": 2, + "t1": 5, + "t2": 107 + } + ], + [ + 6334, + { + "d": 26, + "dB": 1613844000, + "t1s": 1, + "t2s": 0, + "t1": 107, + "t2": 93 + } + ], + [ + 6344, + { + "d": 25, + "dB": 1613239200, + "t1s": 1, + "t2s": 1, + "t1": 129, + "t2": 107 + } + ], + [ + 6352, + { + "d": 24, + "dB": 1612620000, + "t1s": 1, + "t2s": 0, + "t1": 89, + "t2": 107 + } + ], + [ + 6365, + { + "d": 23, + "dB": 1612292400, + "t1s": 3, + "t2s": 3, + "t1": 107, + "t2": 98 + } + ], + [ + 6372, + { + "d": 22, + "dB": 1612029600, + "t1s": 1, + "t2s": 1, + "t1": 17, + "t2": 107 + } + ], + [ + 6385, + { + "d": 21, + "dB": 1611424800, + "t1s": 4, + "t2s": 2, + "t1": 107, + "t2": 42 + } + ], + [ + 6397, + { + "d": 20, + "dB": 1611684000, + "t1s": 2, + "t2s": 0, + "t1": 91, + "t2": 107 + } + ], + [ + 6406, + { + "d": 19, + "dB": 1610132400, + "t1s": 1, + "t2s": 1, + "t1": 107, + "t2": 88 + } + ], + [ + 6415, + { + "d": 18, + "dB": 1609873200, + "t1s": 1, + "t2s": 0, + "t1": 10, + "t2": 107 + } + ], + [ + 6210, + { + "d": 38, + "dB": 1621101600, + "t1s": 3, + "t2s": 3, + "t1": 128, + "t2": 10 + } + ], + [ + 6245, + { + "d": 35, + "dB": 1620838800, + "t1s": 2, + "t2s": 2, + "t1": 10, + "t2": 129 + } + ], + [ + 6265, + { + "d": 33, + "dB": 1618682400, + "t1s": 1, + "t2s": 0, + "t1": 10, + "t2": 93 + } + ], + [ + 6277, + { + "d": 32, + "dB": 1618253100, + "t1s": 1, + "t2s": 1, + "t1": 14, + "t2": 10 + } + ], + [ + 6294, + { + "d": 30, + "dB": 1616266800, + "t1s": 1, + "t2s": 0, + "t1": 98, + "t2": 10 + } + ], + [ + 6305, + { + "d": 29, + "dB": 1615662000, + "t1s": 4, + "t2s": 0, + "t1": 10, + "t2": 90 + } + ], + [ + 6317, + { + "d": 28, + "dB": 1614711600, + "t1s": 1, + "t2s": 0, + "t1": 91, + "t2": 10 + } + ], + [ + 6326, + { + "d": 27, + "dB": 1614434400, + "t1s": 3, + "t2s": 0, + "t1": 10, + "t2": 42 + } + ], + [ + 6346, + { + "d": 25, + "dB": 1613418300, + "t1s": 3, + "t2s": 0, + "t1": 10, + "t2": 88 + } + ], + [ + 6356, + { + "d": 24, + "dB": 1612620000, + "t1s": 1, + "t2s": 1, + "t1": 43, + "t2": 10 + } + ], + [ + 6358, + { + "d": 23, + "dB": 1612292400, + "t1s": 3, + "t2s": 1, + "t1": 101, + "t2": 10 + } + ], + [ + 6387, + { + "d": 21, + "dB": 1611603900, + "t1s": 0, + "t2s": 1, + "t1": 102, + "t2": 10 + } + ], + [ + 6396, + { + "d": 20, + "dB": 1610805600, + "t1s": 2, + "t2s": 0, + "t1": 10, + "t2": 94 + } + ], + [ + 6410, + { + "d": 19, + "dB": 1610394300, + "t1s": 2, + "t2s": 2, + "t1": 5, + "t2": 10 + } + ], + [ + 6427, + { + "d": 17, + "dB": 1608663600, + "t1s": 0, + "t2s": 3, + "t1": 129, + "t2": 10 + } + ], + [ + 6435, + { + "d": 16, + "dB": 1608386400, + "t1s": 4, + "t2s": 3, + "t1": 10, + "t2": 89 + } + ], + [ + 6440, + { + "d": 15, + "dB": 1607796000, + "t1s": 0, + "t2s": 3, + "t1": 93, + "t2": 10 + } + ], + [ + 6455, + { + "d": 14, + "dB": 1607191200, + "t1s": 2, + "t2s": 2, + "t1": 10, + "t2": 14 + } + ], + [ + 6463, + { + "d": 13, + "dB": 1606845600, + "t1s": 1, + "t2s": 3, + "t1": 17, + "t2": 10 + } + ], + [ + 6479, + { + "d": 11, + "dB": 1605981600, + "t1s": 1, + "t2s": 1, + "t1": 90, + "t2": 10 + } + ], + [ + 6496, + { + "d": 10, + "dB": 1604772000, + "t1s": 4, + "t2s": 5, + "t1": 10, + "t2": 91 + } + ], + [ + 6507, + { + "d": 9, + "dB": 1604346300, + "t1s": 0, + "t2s": 1, + "t1": 42, + "t2": 10 + } + ], + [ + 6516, + { + "d": 8, + "dB": 1603558800, + "t1s": 3, + "t2s": 0, + "t1": 10, + "t2": 100 + } + ], + [ + 6518, + { + "d": 7, + "dB": 1602954000, + "t1s": 0, + "t2s": 1, + "t1": 88, + "t2": 10 + } + ], + [ + 6537, + { + "d": 6, + "dB": 1601730000, + "t1s": 0, + "t2s": 0, + "t1": 10, + "t2": 43 + } + ], + [ + 6545, + { + "d": 5, + "dB": 1601125200, + "t1s": 3, + "t2s": 1, + "t1": 10, + "t2": 101 + } + ], + [ + 6565, + { + "d": 3, + "dB": 1600109100, + "t1s": 0, + "t2s": 0, + "t1": 10, + "t2": 102 + } + ], + [ + 5840, + { + "d": 37, + "dB": 1621191600, + "t1s": 0, + "t2s": 0, + "t1": 12, + "t2": 4 + } + ], + [ + 5862, + { + "d": 35, + "dB": 1619895600, + "t1s": 2, + "t2s": 0, + "t1": 12, + "t2": 19 + } + ], + [ + 5871, + { + "d": 34, + "dB": 1619377200, + "t1s": 2, + "t2s": 3, + "t1": 18, + "t2": 12 + } + ], + [ + 5880, + { + "d": 33, + "dB": 1618599600, + "t1s": 1, + "t2s": 1, + "t1": 12, + "t2": 15 + } + ], + [ + 5891, + { + "d": 32, + "dB": 1617994800, + "t1s": 0, + "t2s": 2, + "t1": 11, + "t2": 12 + } + ], + [ + 5906, + { + "d": 31, + "dB": 1617462000, + "t1s": 0, + "t2s": 1, + "t1": 2, + "t2": 12 + } + ], + [ + 5910, + { + "d": 30, + "dB": 1616342700, + "t1s": 1, + "t2s": 2, + "t1": 12, + "t2": 67 + } + ], + [ + 5923, + { + "d": 29, + "dB": 1615737900, + "t1s": 0, + "t2s": 0, + "t1": 13, + "t2": 12 + } + ], + [ + 5930, + { + "d": 28, + "dB": 1614801600, + "t1s": 2, + "t2s": 0, + "t1": 12, + "t2": 9 + } + ], + [ + 5941, + { + "d": 27, + "dB": 1614528300, + "t1s": 1, + "t2s": 1, + "t1": 12, + "t2": 41 + } + ], + [ + 5950, + { + "d": 26, + "dB": 1613923500, + "t1s": 1, + "t2s": 4, + "t1": 6, + "t2": 12 + } + ], + [ + 5973, + { + "d": 24, + "dB": 1612713600, + "t1s": 0, + "t2s": 2, + "t1": 8, + "t2": 12 + } + ], + [ + 5990, + { + "d": 22, + "dB": 1612108800, + "t1s": 1, + "t2s": 0, + "t1": 12, + "t2": 7 + } + ], + [ + 6006, + { + "d": 21, + "dB": 1611504000, + "t1s": 0, + "t2s": 1, + "t1": 20, + "t2": 12 + } + ], + [ + 6010, + { + "d": 20, + "dB": 1610899200, + "t1s": 2, + "t2s": 1, + "t1": 12, + "t2": 68 + } + ], + [ + 6024, + { + "d": 19, + "dB": 1610222400, + "t1s": 0, + "t2s": 1, + "t1": 67, + "t2": 12 + } + ], + [ + 6043, + { + "d": 17, + "dB": 1608753600, + "t1s": 2, + "t2s": 3, + "t1": 15, + "t2": 12 + } + ], + [ + 6057, + { + "d": 16, + "dB": 1608494400, + "t1s": 0, + "t2s": 0, + "t1": 12, + "t2": 2 + } + ], + [ + 6060, + { + "d": 15, + "dB": 1608141600, + "t1s": 0, + "t2s": 2, + "t1": 7, + "t2": 12 + } + ], + [ + 6081, + { + "d": 13, + "dB": 1607256000, + "t1s": 2, + "t2s": 1, + "t1": 12, + "t2": 13 + } + ], + [ + 6096, + { + "d": 12, + "dB": 1606680000, + "t1s": 1, + "t2s": 1, + "t1": 4, + "t2": 12 + } + ], + [ + 6101, + { + "d": 11, + "dB": 1606075200, + "t1s": 4, + "t2s": 0, + "t1": 12, + "t2": 6 + } + ], + [ + 6120, + { + "d": 9, + "dB": 1604260800, + "t1s": 1, + "t2s": 1, + "t1": 12, + "t2": 18 + } + ], + [ + 6135, + { + "d": 8, + "dB": 1603641600, + "t1s": 1, + "t2s": 1, + "t1": 19, + "t2": 12 + } + ], + [ + 6156, + { + "d": 6, + "dB": 1601816400, + "t1s": 0, + "t2s": 3, + "t1": 41, + "t2": 12 + } + ], + [ + 6161, + { + "d": 5, + "dB": 1601060400, + "t1s": 2, + "t2s": 0, + "t1": 12, + "t2": 8 + } + ], + [ + 6171, + { + "d": 4, + "dB": 1600628400, + "t1s": 1, + "t2s": 1, + "t1": 9, + "t2": 12 + } + ], + [ + 6181, + { + "d": 3, + "dB": 1599994800, + "t1s": 1, + "t2s": 0, + "t1": 12, + "t2": 11 + } + ], + [ + 6191, + { + "d": 2, + "dB": 1598785200, + "t1s": 0, + "t2s": 1, + "t1": 68, + "t2": 12 + } + ], + [ + 6201, + { + "d": 1, + "dB": 1598122800, + "t1s": 1, + "t2s": 1, + "t1": 12, + "t2": 20 + } + ], + [ + 5837, + { + "d": 38, + "dB": 1621796400, + "t1s": 1, + "t2s": 1, + "t1": 41, + "t2": 6 + } + ], + [ + 5841, + { + "d": 37, + "dB": 1621191600, + "t1s": 2, + "t2s": 1, + "t1": 6, + "t2": 11 + } + ], + [ + 5850, + { + "d": 36, + "dB": 1620486000, + "t1s": 4, + "t2s": 1, + "t1": 18, + "t2": 6 + } + ], + [ + 5881, + { + "d": 33, + "dB": 1618671600, + "t1s": 3, + "t2s": 2, + "t1": 9, + "t2": 6 + } + ], + [ + 5921, + { + "d": 29, + "dB": 1615730400, + "t1s": 1, + "t2s": 1, + "t1": 6, + "t2": 19 + } + ], + [ + 5933, + { + "d": 28, + "dB": 1614801600, + "t1s": 1, + "t2s": 1, + "t1": 15, + "t2": 6 + } + ], + [ + 5942, + { + "d": 27, + "dB": 1614520800, + "t1s": 2, + "t2s": 1, + "t1": 6, + "t2": 4 + } + ], + [ + 6003, + { + "d": 21, + "dB": 1614189600, + "t1s": 1, + "t2s": 0, + "t1": 67, + "t2": 6 + } + ], + [ + 6030, + { + "d": 18, + "dB": 1609956000, + "t1s": 2, + "t2s": 5, + "t1": 6, + "t2": 13 + } + ], + [ + 6044, + { + "d": 17, + "dB": 1608746400, + "t1s": 2, + "t2s": 2, + "t1": 19, + "t2": 6 + } + ], + [ + 6050, + { + "d": 16, + "dB": 1608480000, + "t1s": 0, + "t2s": 3, + "t1": 6, + "t2": 20 + } + ], + [ + 6065, + { + "d": 15, + "dB": 1608148800, + "t1s": 2, + "t2s": 0, + "t1": 2, + "t2": 6 + } + ], + [ + 6071, + { + "d": 14, + "dB": 1607868000, + "t1s": 3, + "t2s": 0, + "t1": 6, + "t2": 67 + } + ], + [ + 6089, + { + "d": 12, + "dB": 1606658400, + "t1s": 0, + "t2s": 1, + "t1": 6, + "t2": 15 + } + ], + [ + 6151, + { + "d": 6, + "dB": 1601816400, + "t1s": 3, + "t2s": 1, + "t1": 11, + "t2": 6 + } + ], + [ + 6162, + { + "d": 5, + "dB": 1601218800, + "t1s": 1, + "t2s": 1, + "t1": 6, + "t2": 18 + } + ], + [ + 6195, + { + "d": 2, + "dB": 1598792400, + "t1s": 2, + "t2s": 0, + "t1": 4, + "t2": 6 + } + ], + [ + 6202, + { + "d": 1, + "dB": 1598187600, + "t1s": 3, + "t2s": 1, + "t1": 6, + "t2": 41 + } + ], + [ + 5964, + { + "d": 25, + "dB": 1613304000, + "t1s": 2, + "t2s": 2, + "t1": 13, + "t2": 6 + } + ], + [ + 5970, + { + "d": 24, + "dB": 1612627200, + "t1s": 1, + "t2s": 0, + "t1": 6, + "t2": 68 + } + ], + [ + 5985, + { + "d": 23, + "dB": 1612375200, + "t1s": 1, + "t2s": 1, + "t1": 20, + "t2": 6 + } + ], + [ + 5991, + { + "d": 22, + "dB": 1612101600, + "t1s": 3, + "t2s": 2, + "t1": 6, + "t2": 2 + } + ], + [ + 6011, + { + "d": 20, + "dB": 1611777600, + "t1s": 3, + "t2s": 2, + "t1": 6, + "t2": 7 + } + ], + [ + 6111, + { + "d": 10, + "dB": 1604844000, + "t1s": 0, + "t2s": 2, + "t1": 6, + "t2": 8 + } + ], + [ + 6119, + { + "d": 9, + "dB": 1604239200, + "t1s": 0, + "t2s": 0, + "t1": 7, + "t2": 6 + } + ], + [ + 6131, + { + "d": 8, + "dB": 1603551600, + "t1s": 0, + "t2s": 1, + "t1": 6, + "t2": 9 + } + ], + [ + 6145, + { + "d": 7, + "dB": 1602946800, + "t1s": 1, + "t2s": 3, + "t1": 68, + "t2": 6 + } + ], + [ + 5913, + { + "d": 30, + "dB": 1616335200, + "t1s": 1, + "t2s": 1, + "t1": 8, + "t2": 6 + } + ], + [ + 6367, + { + "d": 23, + "dB": 1612292400, + "t1s": 0, + "t2s": 2, + "t1": 102, + "t2": 88 + } + ], + [ + 6388, + { + "d": 20, + "dB": 1610820000, + "t1s": 1, + "t2s": 0, + "t1": 88, + "t2": 5 + } + ], + [ + 6411, + { + "d": 18, + "dB": 1609873200, + "t1s": 4, + "t2s": 1, + "t1": 88, + "t2": 129 + } + ], + [ + 6418, + { + "d": 17, + "dB": 1608663600, + "t1s": 0, + "t2s": 0, + "t1": 42, + "t2": 88 + } + ], + [ + 6428, + { + "d": 16, + "dB": 1608318000, + "t1s": 1, + "t2s": 0, + "t1": 88, + "t2": 17 + } + ], + [ + 6528, + { + "d": 6, + "dB": 1601744400, + "t1s": 5, + "t2s": 1, + "t1": 101, + "t2": 88 + } + ], + [ + 6538, + { + "d": 5, + "dB": 1601139600, + "t1s": 1, + "t2s": 1, + "t1": 88, + "t2": 102 + } + ], + [ + 6552, + { + "d": 4, + "dB": 1600534800, + "t1s": 2, + "t2s": 0, + "t1": 94, + "t2": 88 + } + ], + [ + 6558, + { + "d": 3, + "dB": 1601485200, + "t1s": 1, + "t2s": 0, + "t1": 88, + "t2": 128 + } + ], + [ + 6568, + { + "d": 2, + "dB": 1598706000, + "t1s": 1, + "t2s": 0, + "t1": 5, + "t2": 88 + } + ], + [ + 6579, + { + "d": 1, + "dB": 1598115600, + "t1s": 0, + "t2s": 1, + "t1": 88, + "t2": 93 + } + ], + [ + 5830, + { + "d": 38, + "dB": 1621796400, + "t1s": 2, + "t2s": 3, + "t1": 18, + "t2": 19 + } + ], + [ + 5846, + { + "d": 37, + "dB": 1621191600, + "t1s": 2, + "t2s": 5, + "t1": 67, + "t2": 18 + } + ], + [ + 5864, + { + "d": 35, + "dB": 1619982000, + "t1s": 2, + "t2s": 3, + "t1": 13, + "t2": 18 + } + ], + [ + 5882, + { + "d": 33, + "dB": 1618772400, + "t1s": 1, + "t2s": 2, + "t1": 8, + "t2": 18 + } + ], + [ + 5917, + { + "d": 30, + "dB": 1616356800, + "t1s": 2, + "t2s": 4, + "t1": 18, + "t2": 2 + } + ], + [ + 5926, + { + "d": 29, + "dB": 1615579200, + "t1s": 1, + "t2s": 1, + "t1": 68, + "t2": 18 + } + ], + [ + 5931, + { + "d": 28, + "dB": 1614794400, + "t1s": 1, + "t2s": 0, + "t1": 18, + "t2": 20 + } + ], + [ + 5947, + { + "d": 27, + "dB": 1614542400, + "t1s": 1, + "t2s": 1, + "t1": 9, + "t2": 18 + } + ], + [ + 5962, + { + "d": 25, + "dB": 1613246400, + "t1s": 1, + "t2s": 2, + "t1": 18, + "t2": 15 + } + ], + [ + 5971, + { + "d": 24, + "dB": 1612634400, + "t1s": 3, + "t2s": 0, + "t1": 18, + "t2": 41 + } + ], + [ + 5979, + { + "d": 23, + "dB": 1612382400, + "t1s": 0, + "t2s": 1, + "t1": 7, + "t2": 18 + } + ], + [ + 6007, + { + "d": 21, + "dB": 1611518400, + "t1s": 0, + "t2s": 5, + "t1": 4, + "t2": 18 + } + ], + [ + 6012, + { + "d": 20, + "dB": 1610913600, + "t1s": 0, + "t2s": 1, + "t1": 18, + "t2": 11 + } + ], + [ + 6027, + { + "d": 19, + "dB": 1610222400, + "t1s": 2, + "t2s": 2, + "t1": 20, + "t2": 18 + } + ], + [ + 6041, + { + "d": 17, + "dB": 1608753600, + "t1s": 3, + "t2s": 0, + "t1": 18, + "t2": 8 + } + ], + [ + 6054, + { + "d": 16, + "dB": 1608408000, + "t1s": 1, + "t2s": 4, + "t1": 19, + "t2": 18 + } + ], + [ + 6077, + { + "d": 14, + "dB": 1607889600, + "t1s": 0, + "t2s": 1, + "t1": 2, + "t2": 18 + } + ], + [ + 6082, + { + "d": 13, + "dB": 1607284800, + "t1s": 1, + "t2s": 3, + "t1": 11, + "t2": 18 + } + ], + [ + 6090, + { + "d": 12, + "dB": 1606651200, + "t1s": 3, + "t2s": 0, + "t1": 18, + "t2": 68 + } + ], + [ + 6117, + { + "d": 10, + "dB": 1604865600, + "t1s": 2, + "t2s": 1, + "t1": 18, + "t2": 4 + } + ], + [ + 6132, + { + "d": 8, + "dB": 1603656000, + "t1s": 4, + "t2s": 1, + "t1": 18, + "t2": 13 + } + ], + [ + 6147, + { + "d": 7, + "dB": 1603018800, + "t1s": 2, + "t2s": 3, + "t1": 41, + "t2": 18 + } + ], + [ + 6157, + { + "d": 6, + "dB": 1601838000, + "t1s": 1, + "t2s": 1, + "t1": 18, + "t2": 9 + } + ], + [ + 6170, + { + "d": 4, + "dB": 1600455600, + "t1s": 0, + "t2s": 0, + "t1": 18, + "t2": 67 + } + ], + [ + 6188, + { + "d": 2, + "dB": 1598641200, + "t1s": 4, + "t2s": 1, + "t1": 18, + "t2": 7 + } + ], + [ + 6204, + { + "d": 1, + "dB": 1600196400, + "t1s": 2, + "t2s": 1, + "t1": 15, + "t2": 18 + } + ], + [ + 5843, + { + "d": 37, + "dB": 1621191600, + "t1s": 2, + "t2s": 1, + "t1": 13, + "t2": 20 + } + ], + [ + 5855, + { + "d": 36, + "dB": 1620586800, + "t1s": 1, + "t2s": 1, + "t1": 20, + "t2": 2 + } + ], + [ + 5895, + { + "d": 32, + "dB": 1618138800, + "t1s": 1, + "t2s": 0, + "t1": 20, + "t2": 8 + } + ], + [ + 5907, + { + "d": 31, + "dB": 1617541200, + "t1s": 2, + "t2s": 2, + "t1": 68, + "t2": 20 + } + ], + [ + 5911, + { + "d": 30, + "dB": 1616241600, + "t1s": 1, + "t2s": 3, + "t1": 11, + "t2": 20 + } + ], + [ + 5927, + { + "d": 29, + "dB": 1615730400, + "t1s": 1, + "t2s": 0, + "t1": 20, + "t2": 41 + } + ], + [ + 5946, + { + "d": 27, + "dB": 1614369600, + "t1s": 1, + "t2s": 2, + "t1": 20, + "t2": 19 + } + ], + [ + 5951, + { + "d": 26, + "dB": 1613908800, + "t1s": 2, + "t2s": 1, + "t1": 15, + "t2": 20 + } + ], + [ + 5967, + { + "d": 25, + "dB": 1613311200, + "t1s": 0, + "t2s": 2, + "t1": 20, + "t2": 4 + } + ], + [ + 6034, + { + "d": 18, + "dB": 1609956000, + "t1s": 0, + "t2s": 0, + "t1": 8, + "t2": 20 + } + ], + [ + 6047, + { + "d": 17, + "dB": 1608746400, + "t1s": 1, + "t2s": 0, + "t1": 20, + "t2": 11 + } + ], + [ + 6067, + { + "d": 15, + "dB": 1608148800, + "t1s": 2, + "t2s": 1, + "t1": 20, + "t2": 9 + } + ], + [ + 6074, + { + "d": 14, + "dB": 1607860800, + "t1s": 0, + "t2s": 1, + "t1": 19, + "t2": 20 + } + ], + [ + 6097, + { + "d": 12, + "dB": 1606507200, + "t1s": 1, + "t2s": 1, + "t1": 41, + "t2": 20 + } + ], + [ + 6115, + { + "d": 10, + "dB": 1604779200, + "t1s": 3, + "t2s": 0, + "t1": 2, + "t2": 20 + } + ], + [ + 6155, + { + "d": 6, + "dB": 1601823600, + "t1s": 2, + "t2s": 2, + "t1": 20, + "t2": 68 + } + ], + [ + 6167, + { + "d": 5, + "dB": 1601132400, + "t1s": 0, + "t2s": 3, + "t1": 4, + "t2": 20 + } + ], + [ + 6176, + { + "d": 4, + "dB": 1600542000, + "t1s": 2, + "t2s": 1, + "t1": 20, + "t2": 13 + } + ], + [ + 6189, + { + "d": 2, + "dB": 1598713200, + "t1s": 2, + "t2s": 1, + "t1": 20, + "t2": 15 + } + ], + [ + 6888, + { + "d": 5, + "dB": 1603044900, + "t1s": 0, + "t2s": 1, + "t1": 29, + "t2": 78 + } + ], + [ + 5982, + { + "d": 23, + "dB": 1612382400, + "t1s": 2, + "t2s": 1, + "t1": 13, + "t2": 19 + } + ], + [ + 5996, + { + "d": 22, + "dB": 1612094400, + "t1s": 0, + "t2s": 1, + "t1": 19, + "t2": 4 + } + ], + [ + 6021, + { + "d": 19, + "dB": 1610222400, + "t1s": 1, + "t2s": 1, + "t1": 11, + "t2": 19 + } + ], + [ + 6064, + { + "d": 15, + "dB": 1608141600, + "t1s": 0, + "t2s": 2, + "t1": 67, + "t2": 19 + } + ], + [ + 6086, + { + "d": 13, + "dB": 1607270400, + "t1s": 0, + "t2s": 0, + "t1": 68, + "t2": 19 + } + ], + [ + 6094, + { + "d": 12, + "dB": 1606665600, + "t1s": 1, + "t2s": 3, + "t1": 19, + "t2": 7 + } + ], + [ + 6113, + { + "d": 10, + "dB": 1604851200, + "t1s": 1, + "t2s": 2, + "t1": 19, + "t2": 13 + } + ], + [ + 4310, + { + "d": 38, + "dB": 1595185200, + "t1s": null, + "t2s": null, + "t1": 56, + "t2": 51 + } + ], + [ + 5902, + { + "d": 31, + "dB": 1617562800, + "t1s": 2, + "t2s": 0, + "t1": 9, + "t2": 7 + } + ], + [ + 5940, + { + "d": 27, + "dB": 1614441600, + "t1s": 0, + "t2s": 4, + "t1": 7, + "t2": 2 + } + ], + [ + 5972, + { + "d": 24, + "dB": 1612706400, + "t1s": 4, + "t2s": 2, + "t1": 15, + "t2": 7 + } + ], + [ + 5999, + { + "d": 21, + "dB": 1611496800, + "t1s": 1, + "t2s": 1, + "t1": 7, + "t2": 41 + } + ], + [ + 6019, + { + "d": 19, + "dB": 1610222400, + "t1s": 0, + "t2s": 0, + "t1": 7, + "t2": 9 + } + ], + [ + 6035, + { + "d": 18, + "dB": 1609963200, + "t1s": 0, + "t2s": 0, + "t1": 68, + "t2": 7 + } + ], + [ + 6045, + { + "d": 17, + "dB": 1608746400, + "t1s": 1, + "t2s": 3, + "t1": 67, + "t2": 7 + } + ], + [ + 6049, + { + "d": 16, + "dB": 1608472800, + "t1s": 0, + "t2s": 1, + "t1": 7, + "t2": 13 + } + ], + [ + 6080, + { + "d": 13, + "dB": 1607263200, + "t1s": 0, + "t2s": 0, + "t1": 7, + "t2": 4 + } + ], + [ + 6112, + { + "d": 10, + "dB": 1604844000, + "t1s": 1, + "t2s": 1, + "t1": 11, + "t2": 7 + } + ], + [ + 6136, + { + "d": 8, + "dB": 1603566000, + "t1s": 4, + "t2s": 0, + "t1": 2, + "t2": 7 + } + ], + [ + 6139, + { + "d": 7, + "dB": 1602867600, + "t1s": 1, + "t2s": 1, + "t1": 7, + "t2": 20 + } + ], + [ + 6160, + { + "d": 5, + "dB": 1601211600, + "t1s": 2, + "t2s": 2, + "t1": 7, + "t2": 15 + } + ], + [ + 6942, + { + "d": 37, + "dB": 1621182600, + "t1s": 2, + "t2s": 1, + "t1": 54, + "t2": 85 + } + ], + [ + 6971, + { + "d": 31, + "dB": 1618755300, + "t1s": 5, + "t2s": 0, + "t1": 54, + "t2": 66 + } + ], + [ + 7015, + { + "d": 27, + "dB": 1615665600, + "t1s": 0, + "t2s": 0, + "t1": 58, + "t2": 54 + } + ], + [ + 7035, + { + "d": 24, + "dB": 1613834100, + "t1s": 0, + "t2s": 2, + "t1": 54, + "t2": 63 + } + ], + [ + 8262, + { + "d": 31, + "dB": 1619110800, + "t1s": 2, + "t2s": 0, + "t1": 54, + "t2": 73 + } + ], + [ + 5463, + { + "d": 37, + "dB": 1596043800, + "t1s": null, + "t2s": null, + "t1": 120, + "t2": 125 + } + ], + [ + 5515, + { + "d": 32, + "dB": 1594583100, + "t1s": 2, + "t2s": 2, + "t1": 111, + "t2": 125 + } + ], + [ + 5523, + { + "d": 31, + "dB": 1594151100, + "t1s": 4, + "t2s": 2, + "t1": 125, + "t2": 115 + } + ], + [ + 5831, + { + "d": 38, + "dB": 1621796400, + "t1s": 1, + "t2s": 1, + "t1": 11, + "t2": 9 + } + ], + [ + 5856, + { + "d": 36, + "dB": 1620558000, + "t1s": 1, + "t2s": 0, + "t1": 4, + "t2": 9 + } + ], + [ + 5863, + { + "d": 35, + "dB": 1619809200, + "t1s": 1, + "t2s": 1, + "t1": 9, + "t2": 41 + } + ], + [ + 5874, + { + "d": 34, + "dB": 1619204400, + "t1s": 1, + "t2s": 3, + "t1": 68, + "t2": 9 + } + ], + [ + 5893, + { + "d": 32, + "dB": 1618081200, + "t1s": 3, + "t2s": 3, + "t1": 15, + "t2": 9 + } + ], + [ + 5914, + { + "d": 30, + "dB": 1616256000, + "t1s": 3, + "t2s": 0, + "t1": 19, + "t2": 9 + } + ], + [ + 5952, + { + "d": 26, + "dB": 1613836800, + "t1s": 1, + "t2s": 1, + "t1": 8, + "t2": 9 + } + ], + [ + 5977, + { + "d": 24, + "dB": 1612728000, + "t1s": 0, + "t2s": 2, + "t1": 9, + "t2": 2 + } + ], + [ + 5993, + { + "d": 22, + "dB": 1615399200, + "t1s": 1, + "t2s": 0, + "t1": 9, + "t2": 20 + } + ], + [ + 6002, + { + "d": 21, + "dB": 1611432000, + "t1s": 3, + "t2s": 1, + "t1": 13, + "t2": 9 + } + ], + [ + 6013, + { + "d": 20, + "dB": 1610812800, + "t1s": 1, + "t2s": 2, + "t1": 9, + "t2": 67 + } + ], + [ + 6032, + { + "d": 18, + "dB": 1609963200, + "t1s": 3, + "t2s": 1, + "t1": 9, + "t2": 15 + } + ], + [ + 6051, + { + "d": 16, + "dB": 1608400800, + "t1s": 1, + "t2s": 1, + "t1": 9, + "t2": 68 + } + ], + [ + 6085, + { + "d": 13, + "dB": 1607112000, + "t1s": 0, + "t2s": 2, + "t1": 67, + "t2": 9 + } + ], + [ + 6091, + { + "d": 12, + "dB": 1606579200, + "t1s": 3, + "t2s": 1, + "t1": 9, + "t2": 8 + } + ], + [ + 6102, + { + "d": 11, + "dB": 1613592000, + "t1s": 3, + "t2s": 2, + "t1": 9, + "t2": 19 + } + ], + [ + 6116, + { + "d": 10, + "dB": 1604692800, + "t1s": 0, + "t2s": 1, + "t1": 41, + "t2": 9 + } + ], + [ + 6163, + { + "d": 5, + "dB": 1601146800, + "t1s": 1, + "t2s": 1, + "t1": 9, + "t2": 11 + } + ], + [ + 6187, + { + "d": 3, + "dB": 1600023600, + "t1s": 0, + "t2s": 1, + "t1": 2, + "t2": 9 + } + ], + [ + 6198, + { + "d": 1, + "dB": 1600369200, + "t1s": 0, + "t2s": 2, + "t1": 9, + "t2": 4 + } + ], + [ + 6072, + { + "d": 14, + "dB": 1607788800, + "t1s": 2, + "t2s": 1, + "t1": 9, + "t2": 13 + } + ], + [ + 5465, + { + "d": 37, + "dB": 1596051900, + "t1s": null, + "t2s": null, + "t1": 122, + "t2": 116 + } + ], + [ + 5475, + { + "d": 36, + "dB": 1595784600, + "t1s": 2, + "t2s": 1, + "t1": 116, + "t2": 110 + } + ], + [ + 5483, + { + "d": 35, + "dB": 1595447100, + "t1s": 1, + "t2s": 6, + "t1": 118, + "t2": 116 + } + ], + [ + 5496, + { + "d": 34, + "dB": 1595187900, + "t1s": 2, + "t2s": 2, + "t1": 116, + "t2": 112 + } + ], + [ + 5502, + { + "d": 33, + "dB": 1594842300, + "t1s": 2, + "t2s": 1, + "t1": 116, + "t2": 126 + } + ], + [ + 5524, + { + "d": 31, + "dB": 1594237500, + "t1s": 2, + "t2s": 1, + "t1": 116, + "t2": 114 + } + ], + [ + 7242, + { + "d": 33, + "dB": 1619366400, + "t1s": 3, + "t2s": 2, + "t1": 108, + "t2": 116 + } + ], + [ + 7252, + { + "d": 32, + "dB": 1619109000, + "t1s": 1, + "t2s": 1, + "t1": 116, + "t2": 119 + } + ], + [ + 7275, + { + "d": 29, + "dB": 1617454800, + "t1s": 2, + "t2s": 2, + "t1": 123, + "t2": 116 + } + ], + [ + 7280, + { + "d": 28, + "dB": 1616355900, + "t1s": 0, + "t2s": 2, + "t1": 116, + "t2": 111 + } + ], + [ + 7288, + { + "d": 27, + "dB": 1615730400, + "t1s": 2, + "t2s": 0, + "t1": 114, + "t2": 116 + } + ], + [ + 7295, + { + "d": 26, + "dB": 1615116600, + "t1s": 1, + "t2s": 0, + "t1": 116, + "t2": 117 + } + ], + [ + 7300, + { + "d": 25, + "dB": 1614800700, + "t1s": 1, + "t2s": 2, + "t1": 110, + "t2": 116 + } + ], + [ + 7302, + { + "d": 24, + "dB": 1614541500, + "t1s": 1, + "t2s": 2, + "t1": 116, + "t2": 125 + } + ], + [ + 7322, + { + "d": 22, + "dB": 1613302200, + "t1s": 3, + "t2s": 0, + "t1": 116, + "t2": 124 + } + ], + [ + 7330, + { + "d": 21, + "dB": 1612630800, + "t1s": 2, + "t2s": 0, + "t1": 115, + "t2": 116 + } + ], + [ + 7338, + { + "d": 20, + "dB": 1612122300, + "t1s": 3, + "t2s": 1, + "t1": 116, + "t2": 126 + } + ], + [ + 7352, + { + "d": 18, + "dB": 1610739900, + "t1s": 3, + "t2s": 0, + "t1": 121, + "t2": 116 + } + ], + [ + 7361, + { + "d": 17, + "dB": 1610278200, + "t1s": 2, + "t2s": 2, + "t1": 116, + "t2": 112 + } + ], + [ + 7376, + { + "d": 15, + "dB": 1609682400, + "t1s": 1, + "t2s": 0, + "t1": 116, + "t2": 120 + } + ], + [ + 7381, + { + "d": 14, + "dB": 1608752700, + "t1s": 3, + "t2s": 2, + "t1": 116, + "t2": 108 + } + ], + [ + 7393, + { + "d": 11, + "dB": 1607868000, + "t1s": 1, + "t2s": 5, + "t1": 127, + "t2": 116 + } + ], + [ + 7395, + { + "d": 12, + "dB": 1608234300, + "t1s": 3, + "t2s": 1, + "t1": 116, + "t2": 122 + } + ], + [ + 7430, + { + "d": 7, + "dB": 1604844000, + "t1s": 1, + "t2s": 3, + "t1": 117, + "t2": 116 + } + ], + [ + 7582, + { + "d": 16, + "dB": 1609941600, + "t1s": 1, + "t2s": 3, + "t1": 139, + "t2": 116 + } + ], + [ + 7605, + { + "d": 19, + "dB": 1611410400, + "t1s": 4, + "t2s": 3, + "t1": 116, + "t2": 141 + } + ], + [ + 7631, + { + "d": 23, + "dB": 1613936700, + "t1s": 0, + "t2s": 0, + "t1": 140, + "t2": 116 + } + ], + [ + 5845, + { + "d": 37, + "dB": 1621191600, + "t1s": 0, + "t2s": 2, + "t1": 19, + "t2": 41 + } + ], + [ + 5873, + { + "d": 34, + "dB": 1619348400, + "t1s": 3, + "t2s": 1, + "t1": 19, + "t2": 15 + } + ], + [ + 5885, + { + "d": 33, + "dB": 1618750800, + "t1s": 2, + "t2s": 0, + "t1": 7, + "t2": 19 + } + ], + [ + 5894, + { + "d": 32, + "dB": 1618146000, + "t1s": 0, + "t2s": 0, + "t1": 19, + "t2": 68 + } + ], + [ + 5904, + { + "d": 31, + "dB": 1617541200, + "t1s": 1, + "t2s": 2, + "t1": 8, + "t2": 19 + } + ], + [ + 5935, + { + "d": 28, + "dB": 1614794400, + "t1s": 2, + "t2s": 1, + "t1": 19, + "t2": 67 + } + ], + [ + 5953, + { + "d": 26, + "dB": 1613916000, + "t1s": 1, + "t2s": 2, + "t1": 19, + "t2": 11 + } + ], + [ + 5965, + { + "d": 25, + "dB": 1613232000, + "t1s": 2, + "t2s": 1, + "t1": 2, + "t2": 19 + } + ], + [ + 5452, + { + "d": 38, + "dB": 1596397500, + "t1s": null, + "t2s": null, + "t1": 115, + "t2": 116 + } + ], + [ + 6699, + { + "d": 26, + "dB": 1614513600, + "t1s": 1, + "t2s": 3, + "t1": 29, + "t2": 39 + } + ], + [ + 6752, + { + "d": 20, + "dB": 1611778500, + "t1s": 1, + "t2s": 1, + "t1": 22, + "t2": 29 + } + ], + [ + 6816, + { + "d": 13, + "dB": 1608141600, + "t1s": 0, + "t2s": 2, + "t1": 29, + "t2": 22 + } + ], + [ + 6844, + { + "d": 10, + "dB": 1606757400, + "t1s": 1, + "t2s": 2, + "t1": 29, + "t2": 71 + } + ], + [ + 6852, + { + "d": 9, + "dB": 1606072500, + "t1s": 3, + "t2s": 0, + "t1": 21, + "t2": 29 + } + ], + [ + 6876, + { + "d": 6, + "dB": 1603653300, + "t1s": 0, + "t2s": 1, + "t1": 39, + "t2": 29 + } + ], + [ + 6898, + { + "d": 4, + "dB": 1601809200, + "t1s": 0, + "t2s": 3, + "t1": 29, + "t2": 28 + } + ], + [ + 7514, + { + "d": 7, + "dB": 1604347200, + "t1s": 1, + "t2s": 4, + "t1": 131, + "t2": 29 + } + ], + [ + 7611, + { + "d": 21, + "dB": 1612101600, + "t1s": 1, + "t2s": 3, + "t1": 29, + "t2": 131 + } + ], + [ + 5460, + { + "d": 37, + "dB": 1595965500, + "t1s": null, + "t2s": null, + "t1": 112, + "t2": 111 + } + ], + [ + 5474, + { + "d": 36, + "dB": 1595706300, + "t1s": 2, + "t2s": 0, + "t1": 111, + "t2": 123 + } + ], + [ + 5499, + { + "d": 33, + "dB": 1594834200, + "t1s": 1, + "t2s": 1, + "t1": 127, + "t2": 111 + } + ], + [ + 5521, + { + "d": 31, + "dB": 1594229400, + "t1s": 1, + "t2s": 2, + "t1": 117, + "t2": 111 + } + ], + [ + 6105, + { + "d": 11, + "dB": 1606046400, + "t1s": 1, + "t2s": 1, + "t1": 8, + "t2": 11 + } + ], + [ + 6133, + { + "d": 8, + "dB": 1603634400, + "t1s": 2, + "t2s": 0, + "t1": 11, + "t2": 4 + } + ], + [ + 6172, + { + "d": 4, + "dB": 1600606800, + "t1s": 2, + "t2s": 1, + "t1": 11, + "t2": 68 + } + ], + [ + 6193, + { + "d": 2, + "dB": 1598792400, + "t1s": 0, + "t2s": 1, + "t1": 11, + "t2": 13 + } + ], + [ + 6207, + { + "d": 1, + "dB": 1600282800, + "t1s": 1, + "t2s": 0, + "t1": 2, + "t2": 11 + } + ], + [ + 6063, + { + "d": 15, + "dB": 1608141600, + "t1s": 0, + "t2s": 2, + "t1": 15, + "t2": 11 + } + ], + [ + 6076, + { + "d": 14, + "dB": 1607868000, + "t1s": 2, + "t2s": 2, + "t1": 41, + "t2": 11 + } + ], + [ + 6124, + { + "d": 9, + "dB": 1604239200, + "t1s": 0, + "t2s": 1, + "t1": 67, + "t2": 11 + } + ], + [ + 5851, + { + "d": 36, + "dB": 1620565200, + "t1s": 0, + "t2s": 3, + "t1": 11, + "t2": 67 + } + ], + [ + 5860, + { + "d": 35, + "dB": 1619960400, + "t1s": 1, + "t2s": 5, + "t1": 7, + "t2": 11 + } + ], + [ + 5872, + { + "d": 34, + "dB": 1619276400, + "t1s": 1, + "t2s": 3, + "t1": 11, + "t2": 2 + } + ], + [ + 5903, + { + "d": 31, + "dB": 1617447600, + "t1s": 4, + "t2s": 0, + "t1": 13, + "t2": 11 + } + ], + [ + 5887, + { + "d": 33, + "dB": 1618750800, + "t1s": 0, + "t2s": 0, + "t1": 68, + "t2": 11 + } + ], + [ + 5963, + { + "d": 25, + "dB": 1613311200, + "t1s": 1, + "t2s": 2, + "t1": 11, + "t2": 41 + } + ], + [ + 5976, + { + "d": 24, + "dB": 1612706400, + "t1s": 1, + "t2s": 0, + "t1": 4, + "t2": 11 + } + ], + [ + 5981, + { + "d": 23, + "dB": 1612375200, + "t1s": 1, + "t2s": 1, + "t1": 11, + "t2": 15 + } + ], + [ + 6001, + { + "d": 21, + "dB": 1611496800, + "t1s": 2, + "t2s": 0, + "t1": 11, + "t2": 8 + } + ], + [ + 5886, + { + "d": 33, + "dB": 1618750800, + "t1s": 1, + "t2s": 1, + "t1": 67, + "t2": 41 + } + ], + [ + 5905, + { + "d": 31, + "dB": 1617548700, + "t1s": 0, + "t2s": 2, + "t1": 67, + "t2": 4 + } + ], + [ + 5924, + { + "d": 29, + "dB": 1615723200, + "t1s": 1, + "t2s": 1, + "t1": 67, + "t2": 15 + } + ], + [ + 5944, + { + "d": 27, + "dB": 1614520800, + "t1s": 1, + "t2s": 1, + "t1": 67, + "t2": 8 + } + ], + [ + 5960, + { + "d": 25, + "dB": 1613311200, + "t1s": 0, + "t2s": 2, + "t1": 7, + "t2": 67 + } + ], + [ + 5975, + { + "d": 24, + "dB": 1612706400, + "t1s": 3, + "t2s": 4, + "t1": 67, + "t2": 13 + } + ], + [ + 5983, + { + "d": 23, + "dB": 1612382400, + "t1s": 3, + "t2s": 0, + "t1": 2, + "t2": 67 + } + ], + [ + 6037, + { + "d": 18, + "dB": 1609956000, + "t1s": 5, + "t2s": 0, + "t1": 41, + "t2": 67 + } + ], + [ + 6055, + { + "d": 16, + "dB": 1608472800, + "t1s": 2, + "t2s": 2, + "t1": 4, + "t2": 67 + } + ], + [ + 6221, + { + "d": 37, + "dB": 1620496800, + "t1s": 1, + "t2s": 0, + "t1": 90, + "t2": 129 + } + ], + [ + 6236, + { + "d": 36, + "dB": 1619892000, + "t1s": 0, + "t2s": 0, + "t1": 129, + "t2": 88 + } + ], + [ + 6257, + { + "d": 34, + "dB": 1618941600, + "t1s": 3, + "t2s": 0, + "t1": 129, + "t2": 101 + } + ], + [ + 6264, + { + "d": 33, + "dB": 1618682400, + "t1s": 1, + "t2s": 1, + "t1": 102, + "t2": 129 + } + ], + [ + 6280, + { + "d": 31, + "dB": 1617472800, + "t1s": 1, + "t2s": 1, + "t1": 5, + "t2": 129 + } + ], + [ + 6296, + { + "d": 30, + "dB": 1616266800, + "t1s": 3, + "t2s": 1, + "t1": 129, + "t2": 128 + } + ], + [ + 6302, + { + "d": 29, + "dB": 1615662000, + "t1s": 1, + "t2s": 1, + "t1": 94, + "t2": 129 + } + ], + [ + 6316, + { + "d": 28, + "dB": 1614711600, + "t1s": 1, + "t2s": 0, + "t1": 129, + "t2": 93 + } + ], + [ + 6324, + { + "d": 27, + "dB": 1614448800, + "t1s": 2, + "t2s": 0, + "t1": 129, + "t2": 89 + } + ], + [ + 6333, + { + "d": 26, + "dB": 1613844000, + "t1s": 2, + "t2s": 1, + "t1": 98, + "t2": 129 + } + ], + [ + 6353, + { + "d": 24, + "dB": 1612551600, + "t1s": 1, + "t2s": 0, + "t1": 17, + "t2": 129 + } + ], + [ + 6366, + { + "d": 23, + "dB": 1612292400, + "t1s": 2, + "t2s": 0, + "t1": 129, + "t2": 42 + } + ], + [ + 6371, + { + "d": 22, + "dB": 1612029600, + "t1s": 2, + "t2s": 3, + "t1": 14, + "t2": 129 + } + ], + [ + 6386, + { + "d": 21, + "dB": 1611424800, + "t1s": 0, + "t2s": 1, + "t1": 129, + "t2": 43 + } + ], + [ + 6407, + { + "d": 19, + "dB": 1610132400, + "t1s": 1, + "t2s": 3, + "t1": 129, + "t2": 90 + } + ], + [ + 6431, + { + "d": 16, + "dB": 1608318000, + "t1s": 2, + "t2s": 1, + "t1": 101, + "t2": 129 + } + ], + [ + 6446, + { + "d": 15, + "dB": 1608058800, + "t1s": 0, + "t2s": 0, + "t1": 129, + "t2": 102 + } + ], + [ + 6466, + { + "d": 13, + "dB": 1606845600, + "t1s": 1, + "t2s": 0, + "t1": 129, + "t2": 5 + } + ], + [ + 6475, + { + "d": 12, + "dB": 1606586400, + "t1s": 2, + "t2s": 2, + "t1": 128, + "t2": 129 + } + ], + [ + 6490, + { + "d": 10, + "dB": 1604772000, + "t1s": 0, + "t2s": 3, + "t1": 93, + "t2": 129 + } + ], + [ + 6501, + { + "d": 9, + "dB": 1604167200, + "t1s": 1, + "t2s": 0, + "t1": 89, + "t2": 129 + } + ], + [ + 6514, + { + "d": 8, + "dB": 1603558800, + "t1s": 4, + "t2s": 1, + "t1": 129, + "t2": 98 + } + ], + [ + 6524, + { + "d": 7, + "dB": 1602954000, + "t1s": 1, + "t2s": 0, + "t1": 107, + "t2": 129 + } + ], + [ + 6535, + { + "d": 6, + "dB": 1601744400, + "t1s": 1, + "t2s": 1, + "t1": 129, + "t2": 17 + } + ], + [ + 6444, + { + "d": 15, + "dB": 1607796000, + "t1s": 2, + "t2s": 2, + "t1": 17, + "t2": 101 + } + ], + [ + 6482, + { + "d": 11, + "dB": 1608058800, + "t1s": 2, + "t2s": 3, + "t1": 17, + "t2": 43 + } + ], + [ + 6502, + { + "d": 9, + "dB": 1604167200, + "t1s": 2, + "t2s": 1, + "t1": 17, + "t2": 93 + } + ], + [ + 6513, + { + "d": 8, + "dB": 1606240800, + "t1s": 1, + "t2s": 0, + "t1": 94, + "t2": 17 + } + ], + [ + 6522, + { + "d": 7, + "dB": 1602954000, + "t1s": 2, + "t2s": 1, + "t1": 17, + "t2": 128 + } + ], + [ + 6542, + { + "d": 5, + "dB": 1601139600, + "t1s": 0, + "t2s": 1, + "t1": 17, + "t2": 89 + } + ], + [ + 6554, + { + "d": 4, + "dB": 1600534800, + "t1s": 0, + "t2s": 2, + "t1": 107, + "t2": 17 + } + ], + [ + 6563, + { + "d": 3, + "dB": 1599930000, + "t1s": 1, + "t2s": 0, + "t1": 98, + "t2": 17 + } + ], + [ + 6569, + { + "d": 2, + "dB": 1598706000, + "t1s": 2, + "t2s": 2, + "t1": 17, + "t2": 14 + } + ], + [ + 6580, + { + "d": 1, + "dB": 1598115600, + "t1s": 1, + "t2s": 0, + "t1": 42, + "t2": 17 + } + ], + [ + 3932, + { + "d": 38, + "dB": 1595775600, + "t1s": 1, + "t2s": 3, + "t1": 22, + "t2": 36 + } + ], + [ + 3943, + { + "d": 37, + "dB": 1595264400, + "t1s": 0, + "t2s": 1, + "t1": 77, + "t2": 22 + } + ], + [ + 3973, + { + "d": 34, + "dB": 1594314000, + "t1s": 1, + "t2s": 1, + "t1": 22, + "t2": 35 + } + ], + [ + 3986, + { + "d": 33, + "dB": 1594062000, + "t1s": 1, + "t2s": 0, + "t1": 24, + "t2": 22 + } + ], + [ + 5854, + { + "d": 36, + "dB": 1620572700, + "t1s": 0, + "t2s": 1, + "t1": 68, + "t2": 13 + } + ], + [ + 5892, + { + "d": 32, + "dB": 1618153500, + "t1s": 3, + "t2s": 0, + "t1": 13, + "t2": 7 + } + ], + [ + 5915, + { + "d": 30, + "dB": 1616184000, + "t1s": 0, + "t2s": 4, + "t1": 4, + "t2": 13 + } + ], + [ + 5937, + { + "d": 28, + "dB": 1614801600, + "t1s": 1, + "t2s": 0, + "t1": 41, + "t2": 13 + } + ], + [ + 5955, + { + "d": 26, + "dB": 1613937600, + "t1s": 0, + "t2s": 2, + "t1": 2, + "t2": 13 + } + ], + [ + 5995, + { + "d": 22, + "dB": 1612123200, + "t1s": 1, + "t2s": 2, + "t1": 8, + "t2": 13 + } + ], + [ + 6014, + { + "d": 20, + "dB": 1610740800, + "t1s": 2, + "t2s": 3, + "t1": 15, + "t2": 13 + } + ], + [ + 6042, + { + "d": 17, + "dB": 1608753600, + "t1s": 2, + "t2s": 2, + "t1": 13, + "t2": 4 + } + ], + [ + 6142, + { + "d": 7, + "dB": 1603026000, + "t1s": 1, + "t2s": 1, + "t1": 13, + "t2": 15 + } + ], + [ + 6164, + { + "d": 5, + "dB": 1601211600, + "t1s": 3, + "t2s": 2, + "t1": 13, + "t2": 41 + } + ], + [ + 6203, + { + "d": 1, + "dB": 1598180400, + "t1s": 2, + "t2s": 2, + "t1": 13, + "t2": 68 + } + ], + [ + 6093, + { + "d": 12, + "dB": 1606658400, + "t1s": 3, + "t2s": 0, + "t1": 13, + "t2": 67 + } + ], + [ + 6103, + { + "d": 11, + "dB": 1605902400, + "t1s": 3, + "t2s": 2, + "t1": 13, + "t2": 2 + } + ], + [ + 7218, + { + "d": 37, + "dB": 1621170000, + "t1s": 0, + "t2s": 1, + "t1": 124, + "t2": 120 + } + ], + [ + 7229, + { + "d": 35, + "dB": 1620489600, + "t1s": 5, + "t2s": 1, + "t1": 112, + "t2": 120 + } + ], + [ + 7237, + { + "d": 34, + "dB": 1619981100, + "t1s": 2, + "t2s": 0, + "t1": 120, + "t2": 116 + } + ], + [ + 7246, + { + "d": 33, + "dB": 1619289900, + "t1s": 1, + "t2s": 0, + "t1": 123, + "t2": 120 + } + ], + [ + 7259, + { + "d": 31, + "dB": 1618664400, + "t1s": 3, + "t2s": 1, + "t1": 120, + "t2": 126 + } + ], + [ + 7267, + { + "d": 30, + "dB": 1618146000, + "t1s": 0, + "t2s": 2, + "t1": 120, + "t2": 111 + } + ], + [ + 7274, + { + "d": 29, + "dB": 1617445800, + "t1s": 1, + "t2s": 1, + "t1": 125, + "t2": 120 + } + ], + [ + 7281, + { + "d": 28, + "dB": 1616335200, + "t1s": 1, + "t2s": 0, + "t1": 120, + "t2": 122 + } + ], + [ + 7296, + { + "d": 26, + "dB": 1615136400, + "t1s": 2, + "t2s": 2, + "t1": 120, + "t2": 108 + } + ], + [ + 7301, + { + "d": 25, + "dB": 1614800700, + "t1s": 1, + "t2s": 1, + "t1": 117, + "t2": 120 + } + ], + [ + 7303, + { + "d": 24, + "dB": 1614511800, + "t1s": 0, + "t2s": 2, + "t1": 120, + "t2": 119 + } + ], + [ + 7316, + { + "d": 23, + "dB": 1613829600, + "t1s": 1, + "t2s": 0, + "t1": 121, + "t2": 120 + } + ], + [ + 7324, + { + "d": 22, + "dB": 1613311200, + "t1s": 2, + "t2s": 1, + "t1": 120, + "t2": 110 + } + ], + [ + 7339, + { + "d": 20, + "dB": 1612026000, + "t1s": 0, + "t2s": 2, + "t1": 120, + "t2": 115 + } + ], + [ + 7345, + { + "d": 19, + "dB": 1611517500, + "t1s": 0, + "t2s": 2, + "t1": 114, + "t2": 120 + } + ], + [ + 7354, + { + "d": 18, + "dB": 1610826300, + "t1s": 2, + "t2s": 1, + "t1": 120, + "t2": 124 + } + ], + [ + 7367, + { + "d": 16, + "dB": 1609941600, + "t1s": 2, + "t2s": 1, + "t1": 120, + "t2": 112 + } + ], + [ + 7382, + { + "d": 14, + "dB": 1608752700, + "t1s": 2, + "t2s": 3, + "t1": 120, + "t2": 123 + } + ], + [ + 7439, + { + "d": 6, + "dB": 1604259900, + "t1s": 1, + "t2s": 1, + "t1": 120, + "t2": 117 + } + ], + [ + 7442, + { + "d": 5, + "dB": 1603544400, + "t1s": 1, + "t2s": 3, + "t1": 119, + "t2": 120 + } + ], + [ + 7595, + { + "d": 17, + "dB": 1610394300, + "t1s": 2, + "t2s": 1, + "t1": 141, + "t2": 120 + } + ], + [ + 7617, + { + "d": 21, + "dB": 1612697400, + "t1s": 1, + "t2s": 1, + "t1": 140, + "t2": 120 + } + ], + [ + 8272, + { + "d": 32, + "dB": 1619030700, + "t1s": 0, + "t2s": 1, + "t1": 139, + "t2": 120 + } + ], + [ + 8306, + { + "d": 36, + "dB": 1620845100, + "t1s": 2, + "t2s": 2, + "t1": 120, + "t2": 141 + } + ], + [ + 5451, + { + "d": 38, + "dB": 1596397500, + "t1s": null, + "t2s": null, + "t1": 117, + "t2": 126 + } + ], + [ + 5484, + { + "d": 35, + "dB": 1595447100, + "t1s": 1, + "t2s": 2, + "t1": 120, + "t2": 117 + } + ], + [ + 5491, + { + "d": 34, + "dB": 1595179800, + "t1s": 2, + "t2s": 1, + "t1": 117, + "t2": 113 + } + ], + [ + 5506, + { + "d": 33, + "dB": 1594920600, + "t1s": 3, + "t2s": 0, + "t1": 122, + "t2": 117 + } + ], + [ + 5511, + { + "d": 32, + "dB": 1594566900, + "t1s": 2, + "t2s": 0, + "t1": 117, + "t2": 118 + } + ], + [ + 7328, + { + "d": 21, + "dB": 1612554300, + "t1s": 0, + "t2s": 2, + "t1": 110, + "t2": 112 + } + ], + [ + 7386, + { + "d": 13, + "dB": 1608386400, + "t1s": 1, + "t2s": 1, + "t1": 110, + "t2": 126 + } + ], + [ + 7394, + { + "d": 11, + "dB": 1607868000, + "t1s": 3, + "t2s": 0, + "t1": 119, + "t2": 110 + } + ], + [ + 5832, + { + "d": 38, + "dB": 1621796400, + "t1s": 1, + "t2s": 2, + "t1": 8, + "t2": 15 + } + ], + [ + 5857, + { + "d": 36, + "dB": 1620565200, + "t1s": 2, + "t2s": 3, + "t1": 41, + "t2": 15 + } + ], + [ + 5865, + { + "d": 35, + "dB": 1619967900, + "t1s": 1, + "t2s": 2, + "t1": 15, + "t2": 4 + } + ], + [ + 6023, + { + "d": 19, + "dB": 1610222400, + "t1s": 1, + "t2s": 1, + "t1": 15, + "t2": 8 + } + ], + [ + 6104, + { + "d": 11, + "dB": 1606053600, + "t1s": 4, + "t2s": 3, + "t1": 15, + "t2": 41 + } + ], + [ + 6127, + { + "d": 9, + "dB": 1604232000, + "t1s": 0, + "t2s": 1, + "t1": 4, + "t2": 15 + } + ], + [ + 6134, + { + "d": 8, + "dB": 1603634400, + "t1s": 0, + "t2s": 4, + "t1": 15, + "t2": 68 + } + ], + [ + 6152, + { + "d": 6, + "dB": 1601809200, + "t1s": 0, + "t2s": 1, + "t1": 15, + "t2": 67 + } + ], + [ + 6184, + { + "d": 3, + "dB": 1599922800, + "t1s": 3, + "t2s": 1, + "t1": 15, + "t2": 19 + } + ], + [ + 6004, + { + "d": 21, + "dB": 1611345600, + "t1s": 4, + "t2s": 0, + "t1": 2, + "t2": 15 + } + ], + [ + 6083, + { + "d": 13, + "dB": 1607198400, + "t1s": 1, + "t2s": 3, + "t1": 15, + "t2": 2 + } + ], + [ + 5945, + { + "d": 27, + "dB": 1614520800, + "t1s": 0, + "t2s": 0, + "t1": 68, + "t2": 15 + } + ], + [ + 3947, + { + "d": 37, + "dB": 1595272500, + "t1s": 2, + "t2s": 1, + "t1": 69, + "t2": 26 + } + ], + [ + 3951, + { + "d": 36, + "dB": 1594926900, + "t1s": 0, + "t2s": 2, + "t1": 26, + "t2": 31 + } + ], + [ + 3958, + { + "d": 35, + "dB": 1594559700, + "t1s": 2, + "t2s": 0, + "t1": 78, + "t2": 26 + } + ], + [ + 3972, + { + "d": 34, + "dB": 1594141200, + "t1s": 2, + "t2s": 3, + "t1": 26, + "t2": 25 + } + ], + [ + 6879, + { + "d": 6, + "dB": 1603548000, + "t1s": 1, + "t2s": 2, + "t1": 71, + "t2": 26 + } + ], + [ + 6896, + { + "d": 4, + "dB": 1601724600, + "t1s": 4, + "t2s": 0, + "t1": 25, + "t2": 26 + } + ], + [ + 6905, + { + "d": 3, + "dB": 1601128800, + "t1s": 1, + "t2s": 2, + "t1": 26, + "t2": 22 + } + ], + [ + 6917, + { + "d": 2, + "dB": 1600533000, + "t1s": 1, + "t2s": 3, + "t1": 31, + "t2": 26 + } + ], + [ + 6209, + { + "d": 38, + "dB": 1621101600, + "t1s": 0, + "t2s": 0, + "t1": 93, + "t2": 88 + } + ], + [ + 6223, + { + "d": 37, + "dB": 1620496800, + "t1s": 2, + "t2s": 0, + "t1": 14, + "t2": 93 + } + ], + [ + 6229, + { + "d": 36, + "dB": 1619892000, + "t1s": 1, + "t2s": 2, + "t1": 93, + "t2": 43 + } + ], + [ + 6250, + { + "d": 34, + "dB": 1618941600, + "t1s": 1, + "t2s": 1, + "t1": 93, + "t2": 100 + } + ], + [ + 6269, + { + "d": 32, + "dB": 1618077600, + "t1s": 1, + "t2s": 2, + "t1": 93, + "t2": 128 + } + ], + [ + 6304, + { + "d": 29, + "dB": 1615662000, + "t1s": 0, + "t2s": 0, + "t1": 102, + "t2": 93 + } + ], + [ + 6340, + { + "d": 25, + "dB": 1613239200, + "t1s": 0, + "t2s": 1, + "t1": 93, + "t2": 89 + } + ], + [ + 6354, + { + "d": 24, + "dB": 1612551600, + "t1s": 1, + "t2s": 1, + "t1": 98, + "t2": 93 + } + ], + [ + 6360, + { + "d": 23, + "dB": 1612292400, + "t1s": 4, + "t2s": 0, + "t1": 93, + "t2": 90 + } + ], + [ + 6369, + { + "d": 22, + "dB": 1612029600, + "t1s": 1, + "t2s": 0, + "t1": 42, + "t2": 93 + } + ], + [ + 6379, + { + "d": 21, + "dB": 1611424800, + "t1s": 3, + "t2s": 3, + "t1": 93, + "t2": 91 + } + ], + [ + 6390, + { + "d": 20, + "dB": 1610820000, + "t1s": 4, + "t2s": 1, + "t1": 101, + "t2": 93 + } + ], + [ + 6416, + { + "d": 18, + "dB": 1609873200, + "t1s": 2, + "t2s": 0, + "t1": 43, + "t2": 93 + } + ], + [ + 6432, + { + "d": 16, + "dB": 1608318000, + "t1s": 1, + "t2s": 1, + "t1": 100, + "t2": 93 + } + ], + [ + 6452, + { + "d": 14, + "dB": 1607191200, + "t1s": 2, + "t2s": 0, + "t1": 128, + "t2": 93 + } + ], + [ + 6469, + { + "d": 12, + "dB": 1606586400, + "t1s": 1, + "t2s": 1, + "t1": 5, + "t2": 93 + } + ], + [ + 6510, + { + "d": 8, + "dB": 1603558800, + "t1s": 1, + "t2s": 2, + "t1": 93, + "t2": 107 + } + ], + [ + 6521, + { + "d": 7, + "dB": 1602954000, + "t1s": 1, + "t2s": 1, + "t1": 89, + "t2": 93 + } + ], + [ + 6530, + { + "d": 6, + "dB": 1601744400, + "t1s": 2, + "t2s": 0, + "t1": 93, + "t2": 98 + } + ], + [ + 6540, + { + "d": 5, + "dB": 1601139600, + "t1s": 2, + "t2s": 1, + "t1": 90, + "t2": 93 + } + ], + [ + 6549, + { + "d": 4, + "dB": 1600534800, + "t1s": 0, + "t2s": 0, + "t1": 93, + "t2": 42 + } + ], + [ + 6567, + { + "d": 3, + "dB": 1599930000, + "t1s": 1, + "t2s": 0, + "t1": 91, + "t2": 93 + } + ], + [ + 6570, + { + "d": 2, + "dB": 1598720400, + "t1s": 1, + "t2s": 2, + "t1": 93, + "t2": 101 + } + ], + [ + 6283, + { + "d": 31, + "dB": 1617472800, + "t1s": 2, + "t2s": 2, + "t1": 94, + "t2": 93 + } + ], + [ + 6290, + { + "d": 30, + "dB": 1616266800, + "t1s": 2, + "t2s": 2, + "t1": 93, + "t2": 5 + } + ], + [ + 7318, + { + "d": 23, + "dB": 1613907000, + "t1s": 2, + "t2s": 2, + "t1": 114, + "t2": 124 + } + ], + [ + 7332, + { + "d": 21, + "dB": 1612717200, + "t1s": 0, + "t2s": 3, + "t1": 114, + "t2": 127 + } + ], + [ + 7337, + { + "d": 20, + "dB": 1612112400, + "t1s": 2, + "t2s": 0, + "t1": 111, + "t2": 114 + } + ], + [ + 7355, + { + "d": 18, + "dB": 1610892000, + "t1s": 1, + "t2s": 1, + "t1": 123, + "t2": 114 + } + ], + [ + 7363, + { + "d": 16, + "dB": 1609941600, + "t1s": 3, + "t2s": 0, + "t1": 119, + "t2": 114 + } + ], + [ + 7375, + { + "d": 15, + "dB": 1609682400, + "t1s": 0, + "t2s": 3, + "t1": 114, + "t2": 122 + } + ], + [ + 7388, + { + "d": 13, + "dB": 1608407100, + "t1s": 0, + "t2s": 4, + "t1": 114, + "t2": 115 + } + ], + [ + 7403, + { + "d": 11, + "dB": 1607888700, + "t1s": 2, + "t2s": 2, + "t1": 125, + "t2": 114 + } + ], + [ + 7423, + { + "d": 8, + "dB": 1606053600, + "t1s": 3, + "t2s": 0, + "t1": 116, + "t2": 114 + } + ], + [ + 7436, + { + "d": 6, + "dB": 1604163600, + "t1s": 2, + "t2s": 2, + "t1": 112, + "t2": 114 + } + ], + [ + 7454, + { + "d": 4, + "dB": 1603036800, + "t1s": 3, + "t2s": 2, + "t1": 124, + "t2": 114 + } + ], + [ + 7509, + { + "d": 5, + "dB": 1603634400, + "t1s": 2, + "t2s": 2, + "t1": 114, + "t2": 141 + } + ], + [ + 7568, + { + "d": 14, + "dB": 1608658200, + "t1s": 2, + "t2s": 1, + "t1": 139, + "t2": 114 + } + ], + [ + 5839, + { + "d": 37, + "dB": 1621191600, + "t1s": 0, + "t2s": 4, + "t1": 7, + "t2": 8 + } + ], + [ + 5877, + { + "d": 34, + "dB": 1619355600, + "t1s": 1, + "t2s": 2, + "t1": 41, + "t2": 8 + } + ], + [ + 5934, + { + "d": 28, + "dB": 1614801600, + "t1s": 1, + "t2s": 2, + "t1": 8, + "t2": 68 + } + ], + [ + 5986, + { + "d": 23, + "dB": 1612382400, + "t1s": 1, + "t2s": 1, + "t1": 4, + "t2": 8 + } + ], + [ + 6073, + { + "d": 14, + "dB": 1607868000, + "t1s": 1, + "t2s": 1, + "t1": 8, + "t2": 7 + } + ], + [ + 6084, + { + "d": 13, + "dB": 1607263200, + "t1s": 0, + "t2s": 4, + "t1": 8, + "t2": 41 + } + ], + [ + 5925, + { + "d": 29, + "dB": 1615752000, + "t1s": 1, + "t2s": 2, + "t1": 2, + "t2": 8 + } + ], + [ + 6066, + { + "d": 15, + "dB": 1608141600, + "t1s": 3, + "t2s": 2, + "t1": 68, + "t2": 8 + } + ], + [ + 6153, + { + "d": 6, + "dB": 1601751600, + "t1s": 2, + "t2s": 1, + "t1": 19, + "t2": 8 + } + ], + [ + 6174, + { + "d": 4, + "dB": 1600614000, + "t1s": 2, + "t2s": 2, + "t1": 8, + "t2": 4 + } + ], + [ + 6123, + { + "d": 9, + "dB": 1604174400, + "t1s": 0, + "t2s": 3, + "t1": 8, + "t2": 2 + } + ], + [ + 6260, + { + "d": 33, + "dB": 1618682400, + "t1s": 2, + "t2s": 0, + "t1": 90, + "t2": 42 + } + ], + [ + 6268, + { + "d": 32, + "dB": 1618160400, + "t1s": 1, + "t2s": 0, + "t1": 42, + "t2": 100 + } + ], + [ + 6288, + { + "d": 30, + "dB": 1616248800, + "t1s": 3, + "t2s": 1, + "t1": 42, + "t2": 43 + } + ], + [ + 6329, + { + "d": 26, + "dB": 1613844000, + "t1s": 0, + "t2s": 1, + "t1": 42, + "t2": 102 + } + ], + [ + 6343, + { + "d": 25, + "dB": 1613239200, + "t1s": 0, + "t2s": 0, + "t1": 94, + "t2": 42 + } + ], + [ + 6349, + { + "d": 24, + "dB": 1612551600, + "t1s": 0, + "t2s": 0, + "t1": 42, + "t2": 5 + } + ], + [ + 6389, + { + "d": 20, + "dB": 1610820000, + "t1s": 0, + "t2s": 0, + "t1": 42, + "t2": 89 + } + ], + [ + 6403, + { + "d": 19, + "dB": 1610132400, + "t1s": 0, + "t2s": 2, + "t1": 98, + "t2": 42 + } + ], + [ + 6412, + { + "d": 18, + "dB": 1609873200, + "t1s": 2, + "t2s": 2, + "t1": 14, + "t2": 42 + } + ], + [ + 6453, + { + "d": 14, + "dB": 1607191200, + "t1s": 1, + "t2s": 2, + "t1": 100, + "t2": 42 + } + ], + [ + 6458, + { + "d": 13, + "dB": 1606845600, + "t1s": 1, + "t2s": 0, + "t1": 42, + "t2": 128 + } + ], + [ + 6477, + { + "d": 12, + "dB": 1606586400, + "t1s": 2, + "t2s": 1, + "t1": 43, + "t2": 42 + } + ], + [ + 6488, + { + "d": 10, + "dB": 1604772000, + "t1s": 2, + "t2s": 1, + "t1": 101, + "t2": 42 + } + ], + [ + 6515, + { + "d": 8, + "dB": 1603741500, + "t1s": 0, + "t2s": 2, + "t1": 102, + "t2": 42 + } + ], + [ + 6529, + { + "d": 6, + "dB": 1601731800, + "t1s": 1, + "t2s": 0, + "t1": 5, + "t2": 42 + } + ], + [ + 6539, + { + "d": 5, + "dB": 1601139600, + "t1s": 0, + "t2s": 0, + "t1": 42, + "t2": 129 + } + ], + [ + 6146, + { + "d": 7, + "dB": 1603033200, + "t1s": 1, + "t2s": 3, + "t1": 4, + "t2": 19 + } + ], + [ + 6175, + { + "d": 4, + "dB": 1600599600, + "t1s": 0, + "t2s": 3, + "t1": 19, + "t2": 2 + } + ], + [ + 6196, + { + "d": 2, + "dB": 1598727600, + "t1s": 0, + "t2s": 2, + "t1": 41, + "t2": 19 + } + ], + [ + 6602, + { + "d": 37, + "dB": 1621357200, + "t1s": 1, + "t2s": 1, + "t1": 31, + "t2": 71 + } + ], + [ + 6681, + { + "d": 29, + "dB": 1615665600, + "t1s": 0, + "t2s": 3, + "t1": 71, + "t2": 40 + } + ], + [ + 6734, + { + "d": 22, + "dB": 1612375200, + "t1s": 0, + "t2s": 2, + "t1": 71, + "t2": 29 + } + ], + [ + 6748, + { + "d": 21, + "dB": 1612018800, + "t1s": 2, + "t2s": 2, + "t1": 32, + "t2": 71 + } + ], + [ + 6750, + { + "d": 20, + "dB": 1611775800, + "t1s": 0, + "t2s": 0, + "t1": 45, + "t2": 71 + } + ], + [ + 6770, + { + "d": 18, + "dB": 1611173700, + "t1s": 1, + "t2s": 2, + "t1": 71, + "t2": 31 + } + ], + [ + 6809, + { + "d": 14, + "dB": 1608408000, + "t1s": 1, + "t2s": 1, + "t1": 46, + "t2": 71 + } + ], + [ + 6815, + { + "d": 13, + "dB": 1608148800, + "t1s": 0, + "t2s": 0, + "t1": 71, + "t2": 45 + } + ], + [ + 6825, + { + "d": 12, + "dB": 1607877000, + "t1s": 1, + "t2s": 1, + "t1": 71, + "t2": 21 + } + ], + [ + 6835, + { + "d": 11, + "dB": 1607180400, + "t1s": 2, + "t2s": 0, + "t1": 40, + "t2": 71 + } + ], + [ + 6851, + { + "d": 9, + "dB": 1606046400, + "t1s": 2, + "t2s": 3, + "t1": 71, + "t2": 22 + } + ], + [ + 6869, + { + "d": 7, + "dB": 1604338200, + "t1s": 2, + "t2s": 0, + "t1": 71, + "t2": 32 + } + ], + [ + 6891, + { + "d": 5, + "dB": 1603018800, + "t1s": 1, + "t2s": 1, + "t1": 77, + "t2": 71 + } + ], + [ + 6931, + { + "d": 2, + "dB": 1600524000, + "t1s": 4, + "t2s": 3, + "t1": 131, + "t2": 71 + } + ], + [ + 7458, + { + "d": 3, + "dB": 1601750700, + "t1s": 0, + "t2s": 1, + "t1": 124, + "t2": 116 + } + ], + [ + 7471, + { + "d": 1, + "dB": 1600541100, + "t1s": 0, + "t2s": 0, + "t1": 126, + "t2": 116 + } + ], + [ + 5847, + { + "d": 37, + "dB": 1621191600, + "t1s": 4, + "t2s": 0, + "t1": 2, + "t2": 68 + } + ], + [ + 5883, + { + "d": 33, + "dB": 1618743600, + "t1s": 3, + "t2s": 2, + "t1": 2, + "t2": 4 + } + ], + [ + 6036, + { + "d": 18, + "dB": 1609963200, + "t1s": 1, + "t2s": 1, + "t1": 4, + "t2": 2 + } + ], + [ + 6046, + { + "d": 17, + "dB": 1608753600, + "t1s": 4, + "t2s": 0, + "t1": 2, + "t2": 41 + } + ], + [ + 6166, + { + "d": 5, + "dB": 1601233200, + "t1s": 0, + "t2s": 2, + "t1": 68, + "t2": 2 + } + ], + [ + 5897, + { + "d": 32, + "dB": 1618066800, + "t1s": 1, + "t2s": 4, + "t1": 41, + "t2": 2 + } + ], + [ + 6144, + { + "d": 7, + "dB": 1602874800, + "t1s": 0, + "t2s": 4, + "t1": 67, + "t2": 2 + } + ], + [ + 3935, + { + "d": 38, + "dB": 1595775600, + "t1s": 1, + "t2s": 3, + "t1": 46, + "t2": 21 + } + ], + [ + 3941, + { + "d": 37, + "dB": 1595445300, + "t1s": 5, + "t2s": 3, + "t1": 21, + "t2": 25 + } + ], + [ + 3948, + { + "d": 36, + "dB": 1594840500, + "t1s": 2, + "t2s": 1, + "t1": 39, + "t2": 21 + } + ], + [ + 3961, + { + "d": 35, + "dB": 1594476000, + "t1s": 1, + "t2s": 1, + "t1": 21, + "t2": 23 + } + ], + [ + 3971, + { + "d": 34, + "dB": 1594235700, + "t1s": 1, + "t2s": 3, + "t1": 45, + "t2": 21 + } + ], + [ + 6592, + { + "d": 38, + "dB": 1621782000, + "t1s": 2, + "t2s": 0, + "t1": 21, + "t2": 26 + } + ], + [ + 6598, + { + "d": 37, + "dB": 1621451700, + "t1s": 0, + "t2s": 3, + "t1": 23, + "t2": 21 + } + ], + [ + 6609, + { + "d": 36, + "dB": 1621179000, + "t1s": 1, + "t2s": 2, + "t1": 32, + "t2": 21 + } + ], + [ + 6619, + { + "d": 35, + "dB": 1620501300, + "t1s": 2, + "t2s": 0, + "t1": 21, + "t2": 35 + } + ], + [ + 6628, + { + "d": 34, + "dB": 1620933300, + "t1s": 2, + "t2s": 4, + "t1": 31, + "t2": 21 + } + ], + [ + 6637, + { + "d": 33, + "dB": 1619263800, + "t1s": 1, + "t2s": 1, + "t1": 21, + "t2": 46 + } + ], + [ + 6655, + { + "d": 31, + "dB": 1618063200, + "t1s": 2, + "t2s": 1, + "t1": 21, + "t2": 78 + } + ], + [ + 6660, + { + "d": 30, + "dB": 1617476400, + "t1s": 0, + "t2s": 3, + "t1": 39, + "t2": 21 + } + ], + [ + 6672, + { + "d": 27, + "dB": 1614888900, + "t1s": 0, + "t2s": 1, + "t1": 21, + "t2": 25 + } + ], + [ + 6686, + { + "d": 29, + "dB": 1615838400, + "t1s": 0, + "t2s": 1, + "t1": 69, + "t2": 21 + } + ], + [ + 6702, + { + "d": 26, + "dB": 1614539700, + "t1s": 0, + "t2s": 2, + "t1": 77, + "t2": 21 + } + ], + [ + 6710, + { + "d": 25, + "dB": 1613842200, + "t1s": 0, + "t2s": 2, + "t1": 21, + "t2": 22 + } + ], + [ + 6718, + { + "d": 24, + "dB": 1613219400, + "t1s": 3, + "t2s": 1, + "t1": 29, + "t2": 21 + } + ], + [ + 6726, + { + "d": 23, + "dB": 1612715400, + "t1s": 1, + "t2s": 4, + "t1": 21, + "t2": 40 + } + ], + [ + 6740, + { + "d": 22, + "dB": 1612383300, + "t1s": 0, + "t2s": 1, + "t1": 21, + "t2": 45 + } + ], + [ + 6749, + { + "d": 21, + "dB": 1612110600, + "t1s": 1, + "t2s": 3, + "t1": 28, + "t2": 21 + } + ], + [ + 6761, + { + "d": 20, + "dB": 1611864000, + "t1s": 1, + "t2s": 3, + "t1": 24, + "t2": 21 + } + ], + [ + 6763, + { + "d": 19, + "dB": 1610901000, + "t1s": 0, + "t2s": 0, + "t1": 21, + "t2": 31 + } + ], + [ + 6775, + { + "d": 18, + "dB": 1611259200, + "t1s": 0, + "t2s": 1, + "t1": 21, + "t2": 23 + } + ], + [ + 6784, + { + "d": 17, + "dB": 1609790400, + "t1s": 1, + "t2s": 0, + "t1": 35, + "t2": 21 + } + ], + [ + 6792, + { + "d": 16, + "dB": 1609358400, + "t1s": 0, + "t2s": 0, + "t1": 46, + "t2": 21 + } + ], + [ + 6799, + { + "d": 15, + "dB": 1609086600, + "t1s": 1, + "t2s": 1, + "t1": 21, + "t2": 32 + } + ], + [ + 6807, + { + "d": 14, + "dB": 1608381000, + "t1s": 0, + "t2s": 7, + "t1": 26, + "t2": 21 + } + ], + [ + 6820, + { + "d": 13, + "dB": 1608148800, + "t1s": 2, + "t2s": 1, + "t1": 21, + "t2": 24 + } + ], + [ + 6834, + { + "d": 11, + "dB": 1607282100, + "t1s": 4, + "t2s": 0, + "t1": 21, + "t2": 69 + } + ], + [ + 6841, + { + "d": 10, + "dB": 1606566600, + "t1s": 1, + "t2s": 1, + "t1": 45, + "t2": 21 + } + ], + [ + 6863, + { + "d": 8, + "dB": 1604853000, + "t1s": 1, + "t2s": 1, + "t1": 40, + "t2": 21 + } + ], + [ + 6870, + { + "d": 7, + "dB": 1604165400, + "t1s": 2, + "t2s": 1, + "t1": 21, + "t2": 28 + } + ], + [ + 6880, + { + "d": 6, + "dB": 1603566000, + "t1s": 2, + "t2s": 1, + "t1": 21, + "t2": 77 + } + ], + [ + 6887, + { + "d": 5, + "dB": 1602934200, + "t1s": 2, + "t2s": 2, + "t1": 22, + "t2": 21 + } + ], + [ + 6895, + { + "d": 4, + "dB": 1601835300, + "t1s": 7, + "t2s": 2, + "t1": 78, + "t2": 21 + } + ], + [ + 6907, + { + "d": 3, + "dB": 1601319600, + "t1s": 3, + "t2s": 1, + "t1": 21, + "t2": 39 + } + ], + [ + 6914, + { + "d": 2, + "dB": 1600615800, + "t1s": 0, + "t2s": 2, + "t1": 25, + "t2": 21 + } + ], + [ + 6932, + { + "d": 1, + "dB": 1599928200, + "t1s": 4, + "t2s": 3, + "t1": 21, + "t2": 131 + } + ], + [ + 8263, + { + "d": 32, + "dB": 1618858800, + "t1s": 1, + "t2s": 1, + "t1": 131, + "t2": 21 + } + ], + [ + 4312, + { + "d": 38, + "dB": 1595185200, + "t1s": null, + "t2s": null, + "t1": 47, + "t2": 62 + } + ], + [ + 4325, + { + "d": 37, + "dB": 1594926000, + "t1s": null, + "t2s": null, + "t1": 62, + "t2": 64 + } + ], + [ + 4331, + { + "d": 36, + "dB": 1594670400, + "t1s": 1, + "t2s": 2, + "t1": 86, + "t2": 62 + } + ], + [ + 7073, + { + "d": 19, + "dB": 1608066000, + "dl": 1, + "t1s": null, + "t2s": null, + "t1": 62, + "t2": 57 + } + ], + [ + 7080, + { + "d": 18, + "dB": 1610222400, + "t1s": 0, + "t2s": 0, + "t1": 85, + "t2": 62 + } + ], + [ + 7099, + { + "d": 15, + "dB": 1608749100, + "t1s": 2, + "t2s": 0, + "t1": 62, + "t2": 86 + } + ], + [ + 7106, + { + "d": 14, + "dB": 1608494400, + "t1s": 1, + "t2s": 3, + "t1": 66, + "t2": 62 + } + ], + [ + 7114, + { + "d": 13, + "dB": 1607803200, + "t1s": 2, + "t2s": 0, + "t1": 62, + "t2": 54 + } + ], + [ + 7146, + { + "d": 9, + "dB": 1604865600, + "t1s": 4, + "t2s": 1, + "t1": 49, + "t2": 62 + } + ], + [ + 7155, + { + "d": 7, + "dB": 1603548000, + "t1s": 1, + "t2s": 3, + "t1": 59, + "t2": 62 + } + ], + [ + 7171, + { + "d": 5, + "dB": 1601820000, + "t1s": 0, + "t2s": 2, + "t1": 63, + "t2": 62 + } + ], + [ + 7179, + { + "d": 4, + "dB": 1601494200, + "t1s": 1, + "t2s": 0, + "t1": 62, + "t2": 74 + } + ], + [ + 7188, + { + "d": 3, + "dB": 1601146800, + "t1s": 2, + "t2s": 3, + "t1": 60, + "t2": 62 + } + ], + [ + 7195, + { + "d": 2, + "dB": 1600628400, + "t1s": 0, + "t2s": 0, + "t1": 52, + "t2": 62 + } + ], + [ + 7506, + { + "d": 6, + "dB": 1602952200, + "t1s": 0, + "t2s": 1, + "t1": 62, + "t2": 134 + } + ], + [ + 7517, + { + "d": 8, + "dB": 1604149200, + "t1s": 4, + "t2s": 1, + "t1": 62, + "t2": 73 + } + ], + [ + 7573, + { + "d": 16, + "dB": 1609360200, + "t1s": 1, + "t2s": 1, + "t1": 135, + "t2": 62 + } + ], + [ + 7649, + { + "d": 27, + "dB": 1615648500, + "t1s": 2, + "t2s": 1, + "t1": 62, + "t2": 135 + } + ], + [ + 4320, + { + "d": 37, + "dB": 1594926000, + "t1s": null, + "t2s": null, + "t1": 51, + "t2": 63 + } + ], + [ + 4334, + { + "d": 36, + "dB": 1594479600, + "t1s": 2, + "t2s": 1, + "t1": 85, + "t2": 51 + } + ], + [ + 4340, + { + "d": 35, + "dB": 1594152000, + "t1s": 1, + "t2s": 1, + "t1": 51, + "t2": 54 + } + ], + [ + 7208, + { + "d": 38, + "dB": 1621774800, + "t1s": 5, + "t2s": 1, + "t1": 112, + "t2": 124 + } + ], + [ + 7214, + { + "d": 37, + "dB": 1621094400, + "t1s": 3, + "t2s": 2, + "t1": 115, + "t2": 112 + } + ], + [ + 7222, + { + "d": 36, + "dB": 1620845100, + "t1s": 3, + "t2s": 1, + "t1": 112, + "t2": 116 + } + ], + [ + 7244, + { + "d": 33, + "dB": 1619355600, + "t1s": 1, + "t2s": 0, + "t1": 112, + "t2": 126 + } + ], + [ + 7258, + { + "d": 31, + "dB": 1618771500, + "t1s": 1, + "t2s": 1, + "t1": 111, + "t2": 112 + } + ], + [ + 7263, + { + "d": 30, + "dB": 1618137000, + "t1s": 1, + "t2s": 0, + "t1": 112, + "t2": 108 + } + ], + [ + 7270, + { + "d": 29, + "dB": 1617475500, + "t1s": 0, + "t2s": 1, + "t1": 127, + "t2": 112 + } + ], + [ + 7278, + { + "d": 28, + "dB": 1617813900, + "t1s": 2, + "t2s": 1, + "t1": 112, + "t2": 123 + } + ], + [ + 7290, + { + "d": 27, + "dB": 1615730400, + "t1s": 1, + "t2s": 2, + "t1": 122, + "t2": 112 + } + ], + [ + 7292, + { + "d": 26, + "dB": 1615232700, + "t1s": 1, + "t2s": 0, + "t1": 112, + "t2": 119 + } + ], + [ + 7308, + { + "d": 25, + "dB": 1614887100, + "t1s": 1, + "t2s": 2, + "t1": 114, + "t2": 112 + } + ], + [ + 7317, + { + "d": 23, + "dB": 1613916000, + "t1s": 0, + "t2s": 3, + "t1": 125, + "t2": 112 + } + ], + [ + 7321, + { + "d": 22, + "dB": 1613331900, + "t1s": 3, + "t2s": 1, + "t1": 112, + "t2": 121 + } + ], + [ + 7346, + { + "d": 19, + "dB": 1611421200, + "t1s": 0, + "t2s": 0, + "t1": 124, + "t2": 112 + } + ], + [ + 7351, + { + "d": 18, + "dB": 1610912700, + "t1s": 2, + "t2s": 0, + "t1": 112, + "t2": 115 + } + ], + [ + 7383, + { + "d": 14, + "dB": 1608744600, + "t1s": 1, + "t2s": 2, + "t1": 126, + "t2": 112 + } + ], + [ + 7396, + { + "d": 11, + "dB": 1607859000, + "t1s": 1, + "t2s": 3, + "t1": 108, + "t2": 112 + } + ], + [ + 7397, + { + "d": 12, + "dB": 1608147900, + "t1s": 1, + "t2s": 0, + "t1": 112, + "t2": 111 + } + ], + [ + 7407, + { + "d": 10, + "dB": 1607197500, + "t1s": 3, + "t2s": 1, + "t1": 112, + "t2": 127 + } + ], + [ + 7418, + { + "d": 9, + "dB": 1606572000, + "t1s": 0, + "t2s": 3, + "t1": 123, + "t2": 112 + } + ], + [ + 7420, + { + "d": 8, + "dB": 1606053600, + "t1s": 4, + "t2s": 2, + "t1": 112, + "t2": 122 + } + ], + [ + 7427, + { + "d": 7, + "dB": 1604844000, + "t1s": 1, + "t2s": 1, + "t1": 119, + "t2": 112 + } + ], + [ + 7444, + { + "d": 5, + "dB": 1603555200, + "t1s": 0, + "t2s": 2, + "t1": 117, + "t2": 112 + } + ], + [ + 7450, + { + "d": 4, + "dB": 1602950400, + "t1s": 1, + "t2s": 2, + "t1": 112, + "t2": 125 + } + ], + [ + 7460, + { + "d": 3, + "dB": 1601816400, + "t1s": 1, + "t2s": 1, + "t1": 121, + "t2": 112 + } + ], + [ + 7465, + { + "d": 2, + "dB": 1601145900, + "t1s": 4, + "t2s": 3, + "t1": 112, + "t2": 110 + } + ], + [ + 7492, + { + "d": 1, + "dB": 1601481600, + "t1s": 2, + "t2s": 5, + "t1": 140, + "t2": 112 + } + ], + [ + 7566, + { + "d": 13, + "dB": 1608472800, + "t1s": 2, + "t2s": 1, + "t1": 112, + "t2": 141 + } + ], + [ + 7575, + { + "d": 15, + "dB": 1609673400, + "t1s": 6, + "t2s": 2, + "t1": 112, + "t2": 139 + } + ], + [ + 7609, + { + "d": 20, + "dB": 1612035900, + "t1s": 4, + "t2s": 0, + "t1": 112, + "t2": 140 + } + ], + [ + 8274, + { + "d": 32, + "dB": 1619030700, + "t1s": 1, + "t2s": 1, + "t1": 141, + "t2": 112 + } + ], + [ + 8291, + { + "d": 34, + "dB": 1619884800, + "t1s": 0, + "t2s": 2, + "t1": 139, + "t2": 112 + } + ], + [ + 5454, + { + "d": 38, + "dB": 1596397500, + "t1s": null, + "t2s": null, + "t1": 125, + "t2": 108 + } + ], + [ + 5473, + { + "d": 36, + "dB": 1595619900, + "t1s": 1, + "t2s": 1, + "t1": 125, + "t2": 119 + } + ], + [ + 5485, + { + "d": 35, + "dB": 1595360700, + "t1s": 1, + "t2s": 2, + "t1": 123, + "t2": 125 + } + ], + [ + 5493, + { + "d": 34, + "dB": 1595101500, + "t1s": 5, + "t2s": 1, + "t1": 125, + "t2": 127 + } + ], + [ + 5501, + { + "d": 33, + "dB": 1594834200, + "t1s": 3, + "t2s": 1, + "t1": 125, + "t2": 114 + } + ], + [ + 7205, + { + "d": 38, + "dB": 1621795500, + "t1s": 0, + "t2s": 2, + "t1": 119, + "t2": 125 + } + ], + [ + 7215, + { + "d": 37, + "dB": 1621190700, + "t1s": 0, + "t2s": 0, + "t1": 125, + "t2": 108 + } + ], + [ + 7226, + { + "d": 36, + "dB": 1620845100, + "t1s": 0, + "t2s": 7, + "t1": 122, + "t2": 125 + } + ], + [ + 7230, + { + "d": 35, + "dB": 1620585900, + "t1s": 0, + "t2s": 3, + "t1": 115, + "t2": 125 + } + ], + [ + 7245, + { + "d": 33, + "dB": 1619462700, + "t1s": 3, + "t2s": 0, + "t1": 121, + "t2": 125 + } + ], + [ + 7250, + { + "d": 32, + "dB": 1619022600, + "t1s": 1, + "t2s": 2, + "t1": 125, + "t2": 123 + } + ], + [ + 7257, + { + "d": 31, + "dB": 1618741800, + "t1s": 2, + "t2s": 1, + "t1": 125, + "t2": 117 + } + ], + [ + 7265, + { + "d": 30, + "dB": 1618070400, + "t1s": 1, + "t2s": 3, + "t1": 114, + "t2": 125 + } + ], + [ + 7277, + { + "d": 28, + "dB": 1616346000, + "t1s": 2, + "t2s": 3, + "t1": 110, + "t2": 125 + } + ], + [ + 7287, + { + "d": 27, + "dB": 1615751100, + "t1s": 0, + "t2s": 1, + "t1": 125, + "t2": 111 + } + ], + [ + 7298, + { + "d": 26, + "dB": 1615125600, + "t1s": 0, + "t2s": 2, + "t1": 126, + "t2": 125 + } + ], + [ + 7310, + { + "d": 25, + "dB": 1614800700, + "t1s": 1, + "t2s": 1, + "t1": 125, + "t2": 124 + } + ], + [ + 7335, + { + "d": 20, + "dB": 1612015200, + "t1s": 1, + "t2s": 2, + "t1": 127, + "t2": 125 + } + ], + [ + 7344, + { + "d": 19, + "dB": 1611421200, + "t1s": 0, + "t2s": 3, + "t1": 125, + "t2": 119 + } + ], + [ + 7350, + { + "d": 18, + "dB": 1610999100, + "t1s": 0, + "t2s": 2, + "t1": 108, + "t2": 125 + } + ], + [ + 7359, + { + "d": 17, + "dB": 1610221500, + "t1s": 2, + "t2s": 0, + "t1": 125, + "t2": 122 + } + ], + [ + 7366, + { + "d": 16, + "dB": 1609962300, + "t1s": 1, + "t2s": 3, + "t1": 125, + "t2": 115 + } + ], + [ + 7379, + { + "d": 14, + "dB": 1608752700, + "t1s": 3, + "t2s": 2, + "t1": 125, + "t2": 121 + } + ], + [ + 7389, + { + "d": 13, + "dB": 1608472800, + "t1s": 1, + "t2s": 2, + "t1": 123, + "t2": 125 + } + ], + [ + 7398, + { + "d": 12, + "dB": 1608147900, + "t1s": 2, + "t2s": 2, + "t1": 117, + "t2": 125 + } + ], + [ + 7410, + { + "d": 10, + "dB": 1607283900, + "t1s": 1, + "t2s": 2, + "t1": 120, + "t2": 125 + } + ], + [ + 7416, + { + "d": 9, + "dB": 1606658400, + "t1s": 2, + "t2s": 0, + "t1": 125, + "t2": 110 + } + ], + [ + 7422, + { + "d": 8, + "dB": 1606074300, + "t1s": 1, + "t2s": 3, + "t1": 111, + "t2": 125 + } + ], + [ + 7432, + { + "d": 7, + "dB": 1604864700, + "t1s": 2, + "t2s": 2, + "t1": 125, + "t2": 126 + } + ], + [ + 7441, + { + "d": 6, + "dB": 1604230200, + "t1s": 1, + "t2s": 2, + "t1": 124, + "t2": 125 + } + ], + [ + 7475, + { + "d": 1, + "dB": 1600713900, + "t1s": 2, + "t2s": 0, + "t1": 125, + "t2": 127 + } + ], + [ + 7487, + { + "d": 3, + "dB": 1601827200, + "t1s": 3, + "t2s": 0, + "t1": 125, + "t2": 141 + } + ], + [ + 7490, + { + "d": 2, + "dB": 1601222400, + "t1s": 0, + "t2s": 2, + "t1": 139, + "t2": 125 + } + ], + [ + 7577, + { + "d": 15, + "dB": 1609693200, + "t1s": 0, + "t2s": 2, + "t1": 140, + "t2": 125 + } + ], + [ + 7615, + { + "d": 21, + "dB": 1612706400, + "t1s": 4, + "t2s": 0, + "t1": 125, + "t2": 139 + } + ], + [ + 7623, + { + "d": 22, + "dB": 1613245500, + "t1s": 2, + "t2s": 0, + "t1": 141, + "t2": 125 + } + ], + [ + 8292, + { + "d": 34, + "dB": 1619894700, + "t1s": 2, + "t2s": 0, + "t1": 125, + "t2": 140 + } + ], + [ + 6177, + { + "d": 4, + "dB": 1600606800, + "t1s": 1, + "t2s": 0, + "t1": 41, + "t2": 7 + } + ], + [ + 5866, + { + "d": 35, + "dB": 1619960400, + "t1s": 2, + "t2s": 2, + "t1": 67, + "t2": 68 + } + ], + [ + 5909, + { + "d": 30, + "dB": 1616335200, + "t1s": 0, + "t2s": 1, + "t1": 7, + "t2": 68 + } + ], + [ + 5997, + { + "d": 22, + "dB": 1612101600, + "t1s": 0, + "t2s": 1, + "t1": 41, + "t2": 68 + } + ], + [ + 6026, + { + "d": 19, + "dB": 1610222400, + "t1s": 3, + "t2s": 1, + "t1": 68, + "t2": 4 + } + ], + [ + 6106, + { + "d": 11, + "dB": 1606053600, + "t1s": 0, + "t2s": 1, + "t1": 68, + "t2": 67 + } + ], + [ + 6125, + { + "d": 9, + "dB": 1604239200, + "t1s": 2, + "t2s": 1, + "t1": 68, + "t2": 41 + } + ], + [ + 5956, + { + "d": 26, + "dB": 1613822400, + "t1s": 1, + "t2s": 1, + "t1": 4, + "t2": 68 + } + ], + [ + 6226, + { + "d": 37, + "dB": 1620496800, + "t1s": 2, + "t2s": 0, + "t1": 43, + "t2": 128 + } + ], + [ + 6230, + { + "d": 36, + "dB": 1619892000, + "t1s": 1, + "t2s": 0, + "t1": 128, + "t2": 102 + } + ], + [ + 6239, + { + "d": 35, + "dB": 1619287200, + "t1s": 2, + "t2s": 1, + "t1": 101, + "t2": 128 + } + ], + [ + 6249, + { + "d": 34, + "dB": 1618941600, + "t1s": 1, + "t2s": 1, + "t1": 5, + "t2": 128 + } + ], + [ + 6262, + { + "d": 33, + "dB": 1618682400, + "t1s": 1, + "t2s": 1, + "t1": 128, + "t2": 94 + } + ], + [ + 6301, + { + "d": 29, + "dB": 1615662000, + "t1s": 2, + "t2s": 0, + "t1": 128, + "t2": 98 + } + ], + [ + 6322, + { + "d": 27, + "dB": 1614448800, + "t1s": 1, + "t2s": 1, + "t1": 128, + "t2": 90 + } + ], + [ + 6331, + { + "d": 26, + "dB": 1613844000, + "t1s": 1, + "t2s": 1, + "t1": 89, + "t2": 128 + } + ], + [ + 6351, + { + "d": 24, + "dB": 1612551600, + "t1s": 0, + "t2s": 0, + "t1": 14, + "t2": 128 + } + ], + [ + 6362, + { + "d": 23, + "dB": 1612292400, + "t1s": 0, + "t2s": 0, + "t1": 128, + "t2": 100 + } + ], + [ + 6377, + { + "d": 22, + "dB": 1612029600, + "t1s": 1, + "t2s": 0, + "t1": 91, + "t2": 128 + } + ], + [ + 6381, + { + "d": 21, + "dB": 1611424800, + "t1s": 3, + "t2s": 1, + "t1": 128, + "t2": 88 + } + ], + [ + 6399, + { + "d": 19, + "dB": 1610132400, + "t1s": 0, + "t2s": 0, + "t1": 128, + "t2": 43 + } + ], + [ + 6414, + { + "d": 18, + "dB": 1609873200, + "t1s": 1, + "t2s": 0, + "t1": 102, + "t2": 128 + } + ], + [ + 6421, + { + "d": 17, + "dB": 1608663600, + "t1s": 0, + "t2s": 1, + "t1": 128, + "t2": 101 + } + ], + [ + 6433, + { + "d": 16, + "dB": 1608318000, + "t1s": 2, + "t2s": 3, + "t1": 128, + "t2": 5 + } + ], + [ + 6447, + { + "d": 15, + "dB": 1607796000, + "t1s": 4, + "t2s": 0, + "t1": 94, + "t2": 128 + } + ], + [ + 6483, + { + "d": 11, + "dB": 1605981600, + "t1s": 1, + "t2s": 2, + "t1": 98, + "t2": 128 + } + ], + [ + 6512, + { + "d": 8, + "dB": 1603558800, + "t1s": 0, + "t2s": 1, + "t1": 128, + "t2": 89 + } + ], + [ + 6544, + { + "d": 5, + "dB": 1601139600, + "t1s": 2, + "t2s": 1, + "t1": 100, + "t2": 128 + } + ], + [ + 6551, + { + "d": 4, + "dB": 1600534800, + "t1s": 1, + "t2s": 0, + "t1": 128, + "t2": 91 + } + ], + [ + 6578, + { + "d": 1, + "dB": 1598101200, + "t1s": 0, + "t2s": 1, + "t1": 10, + "t2": 128 + } + ], + [ + 5875, + { + "d": 34, + "dB": 1619355600, + "t1s": 5, + "t2s": 1, + "t1": 20, + "t2": 7 + } + ], + [ + 5834, + { + "d": 38, + "dB": 1621796400, + "t1s": 2, + "t2s": 0, + "t1": 20, + "t2": 67 + } + ], + [ + 6401, + { + "d": 19, + "dB": 1610132400, + "t1s": 0, + "t2s": 2, + "t1": 89, + "t2": 91 + } + ], + [ + 6417, + { + "d": 18, + "dB": 1609873200, + "t1s": 2, + "t2s": 3, + "t1": 91, + "t2": 17 + } + ], + [ + 6425, + { + "d": 17, + "dB": 1608663600, + "dl": 1, + "t1s": null, + "t2s": null, + "t1": 98, + "t2": 91 + } + ], + [ + 6437, + { + "d": 16, + "dB": 1608318000, + "t1s": 0, + "t2s": 2, + "t1": 91, + "t2": 42 + } + ], + [ + 6441, + { + "d": 15, + "dB": 1607796000, + "t1s": 1, + "t2s": 1, + "t1": 14, + "t2": 91 + } + ], + [ + 6450, + { + "d": 14, + "dB": 1607191200, + "t1s": 1, + "t2s": 2, + "t1": 90, + "t2": 91 + } + ], + [ + 6474, + { + "d": 12, + "dB": 1606586400, + "t1s": 1, + "t2s": 1, + "t1": 101, + "t2": 91 + } + ], + [ + 6526, + { + "d": 7, + "dB": 1602939600, + "t1s": 0, + "t2s": 0, + "t1": 91, + "t2": 102 + } + ], + [ + 6533, + { + "d": 6, + "dB": 1601744400, + "t1s": 2, + "t2s": 0, + "t1": 94, + "t2": 91 + } + ], + [ + 6547, + { + "d": 5, + "dB": 1601139600, + "t1s": 1, + "t2s": 0, + "t1": 91, + "t2": 5 + } + ], + [ + 6575, + { + "d": 2, + "dB": 1598720400, + "t1s": 1, + "t2s": 0, + "t1": 107, + "t2": 91 + } + ], + [ + 6186, + { + "d": 3, + "dB": 1599937200, + "t1s": 2, + "t2s": 0, + "t1": 4, + "t2": 41 + } + ], + [ + 6017, + { + "d": 20, + "dB": 1610892000, + "t1s": 1, + "t2s": 0, + "t1": 41, + "t2": 4 + } + ], + [ + 5835, + { + "d": 38, + "dB": 1621796400, + "t1s": 0, + "t2s": 1, + "t1": 4, + "t2": 7 + } + ], + [ + 4316, + { + "d": 38, + "dB": 1595185200, + "t1s": null, + "t2s": null, + "t1": 55, + "t2": 49 + } + ], + [ + 4327, + { + "d": 37, + "dB": 1594926000, + "t1s": null, + "t2s": null, + "t1": 49, + "t2": 56 + } + ], + [ + 4332, + { + "d": 36, + "dB": 1594575000, + "t1s": 1, + "t2s": 0, + "t1": 47, + "t2": 49 + } + ], + [ + 4347, + { + "d": 35, + "dB": 1594143000, + "t1s": 2, + "t2s": 1, + "t1": 49, + "t2": 74 + } + ], + [ + 6946, + { + "d": 37, + "dB": 1621182600, + "t1s": 4, + "t2s": 1, + "t1": 49, + "t2": 66 + } + ], + [ + 6954, + { + "d": 36, + "dB": 1620838800, + "t1s": 1, + "t2s": 0, + "t1": 55, + "t2": 49 + } + ], + [ + 6961, + { + "d": 35, + "dB": 1620569700, + "t1s": 3, + "t2s": 0, + "t1": 49, + "t2": 74 + } + ], + [ + 6968, + { + "d": 34, + "dB": 1619982000, + "t1s": 2, + "t2s": 3, + "t1": 49, + "t2": 59 + } + ], + [ + 6975, + { + "d": 31, + "dB": 1618763400, + "t1s": 2, + "t2s": 2, + "t1": 60, + "t2": 49 + } + ], + [ + 6982, + { + "d": 32, + "dB": 1619281800, + "t1s": 1, + "t2s": 1, + "t1": 49, + "t2": 48 + } + ], + [ + 6988, + { + "d": 31, + "dB": 1619024400, + "t1s": 3, + "t2s": 1, + "t1": 85, + "t2": 49 + } + ], + [ + 6997, + { + "d": 30, + "dB": 1618150500, + "t1s": 2, + "t2s": 2, + "t1": 49, + "t2": 52 + } + ], + [ + 7017, + { + "d": 27, + "dB": 1615579200, + "t1s": 1, + "t2s": 0, + "t1": 63, + "t2": 49 + } + ], + [ + 7026, + { + "d": 26, + "dB": 1614974400, + "t1s": 2, + "t2s": 1, + "t1": 49, + "t2": 64 + } + ], + [ + 7029, + { + "d": 25, + "dB": 1614456000, + "t1s": 3, + "t2s": 0, + "t1": 58, + "t2": 49 + } + ], + [ + 7040, + { + "d": 24, + "dB": 1613842200, + "t1s": 2, + "t2s": 0, + "t1": 49, + "t2": 51 + } + ], + [ + 7046, + { + "d": 23, + "dB": 1613315700, + "t1s": 2, + "t2s": 0, + "t1": 62, + "t2": 49 + } + ], + [ + 7063, + { + "d": 20, + "dB": 1611518400, + "t1s": 3, + "t2s": 1, + "t1": 54, + "t2": 49 + } + ], + [ + 7074, + { + "d": 19, + "dB": 1611252000, + "t1s": 1, + "t2s": 1, + "t1": 49, + "t2": 85 + } + ], + [ + 7093, + { + "d": 16, + "dB": 1609344000, + "t1s": 2, + "t2s": 1, + "t1": 86, + "t2": 49 + } + ], + [ + 7121, + { + "d": 12, + "dB": 1607371200, + "t1s": 0, + "t2s": 0, + "t1": 66, + "t2": 49 + } + ], + [ + 7132, + { + "d": 11, + "dB": 1606576500, + "t1s": 0, + "t2s": 1, + "t1": 49, + "t2": 54 + } + ], + [ + 7133, + { + "d": 10, + "dB": 1606075200, + "t1s": 2, + "t2s": 2, + "t1": 48, + "t2": 49 + } + ], + [ + 7167, + { + "d": 6, + "dB": 1603029600, + "t1s": 2, + "t2s": 1, + "t1": 64, + "t2": 49 + } + ], + [ + 7175, + { + "d": 5, + "dB": 1601751600, + "t1s": 0, + "t2s": 2, + "t1": 49, + "t2": 60 + } + ], + [ + 7180, + { + "d": 4, + "dB": 1601398800, + "t1s": 0, + "t2s": 1, + "t1": 52, + "t2": 49 + } + ], + [ + 7479, + { + "d": 3, + "dB": 1601128800, + "t1s": 1, + "t2s": 1, + "t1": 49, + "t2": 73 + } + ], + [ + 7512, + { + "d": 7, + "dB": 1603479600, + "t1s": 2, + "t2s": 1, + "t1": 135, + "t2": 49 + } + ], + [ + 7580, + { + "d": 17, + "dB": 1609790400, + "t1s": 1, + "t2s": 1, + "t1": 49, + "t2": 134 + } + ], + [ + 8250, + { + "d": 29, + "dB": 1617553800, + "t1s": 2, + "t2s": 1, + "t1": 134, + "t2": 49 + } + ], + [ + 7496, + { + "d": 4, + "dB": 1601494200, + "t1s": 0, + "t2s": 1, + "t1": 66, + "t2": 135 + } + ], + [ + 7500, + { + "d": 5, + "dB": 1601742600, + "t1s": 0, + "t2s": 0, + "t1": 135, + "t2": 73 + } + ], + [ + 6214, + { + "d": 38, + "dB": 1621101600, + "t1s": 3, + "t2s": 2, + "t1": 89, + "t2": 43 + } + ], + [ + 6246, + { + "d": 35, + "dB": 1619269200, + "t1s": 3, + "t2s": 1, + "t1": 43, + "t2": 94 + } + ], + [ + 6255, + { + "d": 34, + "dB": 1618941600, + "t1s": 0, + "t2s": 3, + "t1": 98, + "t2": 43 + } + ], + [ + 6266, + { + "d": 33, + "dB": 1618664400, + "t1s": 1, + "t2s": 0, + "t1": 43, + "t2": 5 + } + ], + [ + 6274, + { + "d": 32, + "dB": 1618059600, + "t1s": 1, + "t2s": 1, + "t1": 107, + "t2": 43 + } + ], + [ + 6287, + { + "d": 31, + "dB": 1617472800, + "t1s": 1, + "t2s": 0, + "t1": 43, + "t2": 14 + } + ], + [ + 6310, + { + "d": 28, + "dB": 1614711600, + "t1s": 0, + "t2s": 3, + "t1": 90, + "t2": 43 + } + ], + [ + 6376, + { + "d": 22, + "dB": 1612015200, + "t1s": 3, + "t2s": 1, + "t1": 43, + "t2": 101 + } + ], + [ + 6395, + { + "d": 20, + "dB": 1610805600, + "t1s": 2, + "t2s": 1, + "t1": 43, + "t2": 102 + } + ], + [ + 6420, + { + "d": 17, + "dB": 1608663600, + "t1s": 2, + "t2s": 0, + "t1": 94, + "t2": 43 + } + ], + [ + 6436, + { + "d": 16, + "dB": 1608318000, + "t1s": 1, + "t2s": 0, + "t1": 43, + "t2": 98 + } + ], + [ + 6439, + { + "d": 15, + "dB": 1607781600, + "t1s": 0, + "t2s": 0, + "t1": 5, + "t2": 43 + } + ], + [ + 6456, + { + "d": 14, + "dB": 1607176800, + "t1s": 2, + "t2s": 1, + "t1": 43, + "t2": 107 + } + ], + [ + 6461, + { + "d": 13, + "dB": 1606845600, + "t1s": 1, + "t2s": 2, + "t1": 14, + "t2": 43 + } + ], + [ + 6497, + { + "d": 10, + "dB": 1604772000, + "t1s": 2, + "t2s": 2, + "t1": 43, + "t2": 90 + } + ], + [ + 6498, + { + "d": 9, + "dB": 1604167200, + "t1s": 0, + "t2s": 4, + "t1": 88, + "t2": 43 + } + ], + [ + 6517, + { + "d": 8, + "dB": 1603558800, + "t1s": 1, + "t2s": 1, + "t1": 43, + "t2": 91 + } + ], + [ + 6525, + { + "d": 7, + "dB": 1602954000, + "t1s": 0, + "t2s": 1, + "t1": 100, + "t2": 43 + } + ], + [ + 6557, + { + "d": 4, + "dB": 1600713900, + "t1s": 2, + "t2s": 1, + "t1": 101, + "t2": 43 + } + ], + [ + 6577, + { + "d": 2, + "dB": 1598720400, + "t1s": 2, + "t2s": 1, + "t1": 102, + "t2": 43 + } + ], + [ + 6587, + { + "d": 1, + "dB": 1598294700, + "t1s": 2, + "t2s": 0, + "t1": 43, + "t2": 89 + } + ], + [ + 6327, + { + "d": 27, + "dB": 1614434400, + "t1s": 1, + "t2s": 0, + "t1": 43, + "t2": 88 + } + ], + [ + 6347, + { + "d": 25, + "dB": 1613239200, + "t1s": 2, + "t2s": 1, + "t1": 43, + "t2": 100 + } + ], + [ + 6566, + { + "d": 3, + "dB": 1599930000, + "t1s": 2, + "t2s": 0, + "t1": 43, + "t2": 129 + } + ], + [ + 6336, + { + "d": 26, + "dB": 1613829600, + "t1s": 2, + "t2s": 2, + "t1": 91, + "t2": 43 + } + ] + ] +} diff --git a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-1.json b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-1.json new file mode 100644 index 0000000..c6599f2 --- /dev/null +++ b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-1.json @@ -0,0 +1,197 @@ +{ + "leaguesDivisionsItems": [ + { + "leagueId": "mpg_league_MLEFEX6G", + "name": "Ligue 2 Fous", + "adminId": "user_953561", + "status": 4, + "season": 3, + "mode": 2, + "createdAt": "2020-08-23T16:35:09Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 4, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/b7b4327b-7cfb-4df3-becc-2b16c9d5381b.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "divisionNumber": 1, + "nextRealGameWeekDate": "2021-08-07T13:00:00Z", + "currentTeamRanking": 9, + "currentTeamVariation": -1, + "divisionStatus": 4, + "divisionId": "mpg_division_MLEFEX6G_3_1", + "divisionTotalUsers": 10, + "liveState": { + "currentGameWeek": 2, + "firstRealGameWeek": 2, + "formationsStatuses": { + "mpg_team_MLEFEX6G_3_1_0": 1, + "mpg_team_MLEFEX6G_3_1_1": 1, + "mpg_team_MLEFEX6G_3_1_2": 2, + "mpg_team_MLEFEX6G_3_1_3": 1, + "mpg_team_MLEFEX6G_3_1_4": 1, + "mpg_team_MLEFEX6G_3_1_5": 2, + "mpg_team_MLEFEX6G_3_1_6": 2, + "mpg_team_MLEFEX6G_3_1_7": 2, + "mpg_team_MLEFEX6G_3_1_8": 1, + "mpg_team_MLEFEX6G_3_1_9": 2 + }, + "liveAt": "2021-07-30T06:34:57Z", + "totalGameWeeks": 18, + "standings": { + "mpg_team_MLEFEX6G_3_1_5": { + "rank": 1, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_7": { + "rank": 2, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_8": { + "rank": 3, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_1": { + "rank": 4, + "variation": 1 + }, + "mpg_team_MLEFEX6G_3_1_4": { + "rank": 5, + "variation": 0 + }, + "mpg_team_MLEFEX6G_3_1_9": { + "rank": 6, + "variation": 0 + }, + "mpg_team_MLEFEX6G_3_1_6": { + "rank": 7, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_0": { + "rank": 8, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_2": { + "rank": 9, + "variation": -1 + }, + "mpg_team_MLEFEX6G_3_1_3": { + "rank": 10, + "variation": -1 + } + } + }, + "currentFormationStatus": 2 + }, + { + "leagueId": "mpg_league_MLAX7HMK", + "name": "Du Tyran 🐐", + "adminId": "user_953561", + "status": 1, + "season": 3, + "mode": 1, + "createdAt": "2020-08-22T08:22:40Z", + "mercatoState": {}, + "championshipId": 1, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/162a6145-03c5-4895-8456-6855a9bd4c15.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "validDivisions": true + }, + { + "leagueId": "mpg_league_MN7VSYBM", + "name": "Giro Far Breton", + "adminId": "user_600737", + "status": 5, + "season": 2, + "mode": 2, + "createdAt": "2020-09-14T11:12:30Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 5, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/bb817a04-6bca-403d-86f8-87077cb95112.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "finishedState": { + "seasonEndDate": "2021-07-19T06:24:57Z", + "winner": { + "firstName": "Celine", + "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_0_1598369796008.png", + "team": { + "abbreviation": "FZA", + "gear": { + "home": { + "jerseyId": "mpg_jersey_0_1598369796008" + } + }, + "id": "mpg_team_MN7VSYBM_2_1_0", + "name": "Forza" + }, + "userId": "user_600737", + "username": "Celine#KBN2" + } + }, + "divisionNumber": 1, + "currentTeamRanking": 6, + "currentTeamVariation": -1, + "divisionStatus": 5, + "divisionId": "mpg_division_MN7VSYBM_2_1", + "divisionTotalUsers": 10 + }, + { + "leagueId": "mpg_league_MLMHBPCB", + "name": "Invariant Brits", + "adminId": "user_35635", + "status": 5, + "season": 2, + "mode": 2, + "createdAt": "2020-08-26T08:50:30Z", + "mercatoState": { + "divisionsLeft": 0, + "usersLeft": 0 + }, + "championshipId": 2, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/906387dc-2dbe-464d-a21e-a16f0cff5001.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "finishedState": { + "seasonEndDate": "2021-07-19T06:24:43Z", + "winner": { + "firstName": "Bertrand", + "jerseyUrl": "https://s3-eu-west-3.amazonaws.com/jersey.mpg.football/prod/jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0.png", + "team": { + "abbreviation": "🔴⚪", + "gear": { + "home": { + "jerseyId": "mpg_jersey_backup_3_527fa887fa2f56122ca3cfac7daea8f0" + } + }, + "id": "mpg_team_MLMHBPCB_2_1_0", + "name": "North London" + }, + "userId": "user_35635", + "username": "Bertrand#23TL" + } + }, + "divisionNumber": 1, + "currentTeamRanking": 3, + "currentTeamVariation": 0, + "divisionStatus": 5, + "divisionId": "mpg_division_MLMHBPCB_2_1", + "divisionTotalUsers": 10 + } + ], + "defaultOrder": true +} diff --git a/src/test/resources/__files/mpg.poolPlayers.1.2021.json b/src/test/resources/__files/mpg.poolPlayers.1.2021.json new file mode 100644 index 0000000..c31b940 --- /dev/null +++ b/src/test/resources/__files/mpg.poolPlayers.1.2021.json @@ -0,0 +1,8181 @@ +{ + "poolPlayers": [ + { + "id": "mpg_championship_player_100632", + "firstName": null, + "lastName": "Gabriel Silva", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_102636", + "firstName": "Téji", + "lastName": "Savanier", + "position": 3, + "ultraPosition": 30, + "quotation": 22, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_102743", + "firstName": "Rachid", + "lastName": "Alioui", + "position": 4, + "ultraPosition": 40, + "quotation": 14, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_102747", + "firstName": "Djibril", + "lastName": "Sidibé", + "position": 2, + "ultraPosition": 21, + "quotation": 14, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_103076", + "firstName": "Arkadiusz", + "lastName": "Milik", + "position": 4, + "ultraPosition": 40, + "quotation": 22, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_103083", + "firstName": "Jere", + "lastName": "Uronen", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_103127", + "firstName": "Molla", + "lastName": "Wagué", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_104407", + "firstName": "Predrag", + "lastName": "Rajkovic", + "position": 1, + "ultraPosition": 10, + "quotation": 18, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_105046", + "firstName": "Juan", + "lastName": "Bernat", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_105345", + "firstName": "Danijel", + "lastName": "Petkovic", + "position": 1, + "ultraPosition": 10, + "quotation": 4, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_106109", + "firstName": "Mauro", + "lastName": "Icardi", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_106212", + "firstName": "Darío", + "lastName": "Benedetto", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_106263", + "firstName": "Yunis", + "lastName": "Abdelhamid", + "position": 2, + "ultraPosition": 20, + "quotation": 16, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_106320", + "firstName": "Kalifa", + "lastName": "Coulibaly", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_106551", + "firstName": "Sanjin", + "lastName": "Prcic", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_106821", + "firstName": null, + "lastName": "Pedro Mendes", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_107098", + "firstName": "Paul", + "lastName": "Nardi", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_107258", + "firstName": "Laurent", + "lastName": "Abergel", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_107641", + "firstName": "Jordan", + "lastName": "Ferri", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_107685", + "firstName": "Tristan", + "lastName": "Dingome", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_107925", + "firstName": "Marc-Aurèle", + "lastName": "Caillard", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_110350", + "firstName": "Jimmy", + "lastName": "Giraudon", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_112580", + "firstName": "Pierrick", + "lastName": "Capelle", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_113541", + "firstName": "Christophe", + "lastName": "Hérelle", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_114531", + "firstName": "Farid", + "lastName": "Boulaya", + "position": 3, + "ultraPosition": 31, + "quotation": 18, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_115327", + "firstName": "Ruben", + "lastName": "Aguilar", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_115380", + "firstName": "Jordan", + "lastName": "Amavi", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_115961", + "firstName": "Adrien", + "lastName": "Thomasson", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_116406", + "firstName": null, + "lastName": "Marquinhos", + "position": 2, + "ultraPosition": 20, + "quotation": 24, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_116592", + "firstName": "Florian", + "lastName": "Tardieu", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_116596", + "firstName": "Jerome", + "lastName": "Phojo", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_116627", + "firstName": "Florent", + "lastName": "Mollet", + "position": 3, + "ultraPosition": 31, + "quotation": 19, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_119770", + "firstName": "Xavier", + "lastName": "Chavalerin", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_120947", + "firstName": "Thomas", + "lastName": "Foket", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_121150", + "firstName": "Renaud", + "lastName": "Ripart", + "position": 4, + "ultraPosition": 40, + "quotation": 19, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_121709", + "firstName": "Walter", + "lastName": "Benítez", + "position": 1, + "ultraPosition": 10, + "quotation": 18, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_122399", + "firstName": "Moussa", + "lastName": "Dembele", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_124148", + "firstName": "Opa", + "lastName": "Nguette", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_126177", + "firstName": "Corentin", + "lastName": "Jean", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_128198", + "firstName": "Sofiane", + "lastName": "Boufal", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_129479", + "firstName": "Presnel", + "lastName": "Kimpembe", + "position": 2, + "ultraPosition": 20, + "quotation": 13, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_129510", + "firstName": "Roli", + "lastName": "Pereira De Sa", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_143685", + "firstName": "Alexander", + "lastName": "Djiku", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_149519", + "firstName": "Maxwel", + "lastName": "Cornet", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_149828", + "firstName": "Islam", + "lastName": "Slimani", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_149918", + "firstName": "Jason", + "lastName": "Berthomier", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_150172", + "firstName": "Romain", + "lastName": "Philippoteaux", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_151086", + "firstName": "Mario", + "lastName": "Lemina", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_151873", + "firstName": "Wylan", + "lastName": "Cyprien", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_151912", + "firstName": "Jimmy", + "lastName": "Cabot", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_152516", + "firstName": "Jonathan", + "lastName": "Iglesias", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_154011", + "firstName": "Flavien", + "lastName": "Tait", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_154048", + "firstName": "Stephy", + "lastName": "Mavididi", + "position": 4, + "ultraPosition": 40, + "quotation": 21, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_154310", + "firstName": null, + "lastName": "Gelson Martins", + "position": 4, + "ultraPosition": 40, + "quotation": 13, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_154344", + "firstName": "Seko", + "lastName": "Fofana", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_155335", + "firstName": "Guillermo", + "lastName": "Maripán", + "position": 2, + "ultraPosition": 20, + "quotation": 18, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_156003", + "firstName": "Julian", + "lastName": "Pollersbeck", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_156708", + "firstName": null, + "lastName": "Keita Baldé", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_158047", + "firstName": null, + "lastName": "Thiago Mendes", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_158494", + "firstName": "Jean-Charles", + "lastName": "Castelletto", + "position": 2, + "ultraPosition": 20, + "quotation": 14, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_158496", + "firstName": "Abdoulaye", + "lastName": "Touré", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_159039", + "firstName": "Antonio", + "lastName": "Barreca", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_159967", + "firstName": "Benjamin", + "lastName": "Bourigeaud", + "position": 3, + "ultraPosition": 31, + "quotation": 19, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_160729", + "firstName": "Jason", + "lastName": "Denayer", + "position": 2, + "ultraPosition": 20, + "quotation": 13, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_161034", + "firstName": "Wesley", + "lastName": "Saïd", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_161950", + "firstName": "Aleksandr", + "lastName": "Golovin", + "position": 3, + "ultraPosition": 31, + "quotation": 16, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_162275", + "firstName": "Serhou", + "lastName": "Guirassy", + "position": 4, + "ultraPosition": 40, + "quotation": 21, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_162316", + "firstName": "Brendan", + "lastName": "Chardonnet", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_165840", + "firstName": "Karim", + "lastName": "Azamoum", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_166286", + "firstName": "Renaud", + "lastName": "Emond", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_166985", + "firstName": null, + "lastName": "Henrique", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_167443", + "firstName": "Gaetan", + "lastName": "Laborde", + "position": 4, + "ultraPosition": 40, + "quotation": 29, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_167455", + "firstName": "Gauthier", + "lastName": "Gallon", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_168104", + "firstName": null, + "lastName": "Steven Fortes", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_168539", + "firstName": "Ludovic", + "lastName": "Ajorque", + "position": 4, + "ultraPosition": 40, + "quotation": 23, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_168567", + "firstName": "Cédric", + "lastName": "Hountondji", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_169141", + "firstName": "Steve", + "lastName": "Mounié", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_170409", + "firstName": null, + "lastName": "Andrei Girotto", + "position": 2, + "ultraPosition": 20, + "quotation": 13, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_171099", + "firstName": "Hassane", + "lastName": "Kamara", + "position": 2, + "ultraPosition": 21, + "quotation": 16, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_171319", + "firstName": null, + "lastName": "Renato Sanches", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_171435", + "firstName": "Mehmet", + "lastName": "Zeki Çelik", + "position": 2, + "ultraPosition": 21, + "quotation": 16, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_173046", + "firstName": "Mathías", + "lastName": "Suárez", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_173235", + "firstName": "Adrian", + "lastName": "Grbic", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_173253", + "firstName": "Habib", + "lastName": "Maïga", + "position": 3, + "ultraPosition": 30, + "quotation": 16, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_173271", + "firstName": "Duje", + "lastName": "Caleta-Car", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_174254", + "firstName": "Pedro", + "lastName": "Chirivella", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_174272", + "firstName": "Anthony", + "lastName": "Mandrea", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_174317", + "firstName": "Deiver", + "lastName": "Machado", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_174528", + "firstName": null, + "lastName": "Hamari Traoré", + "position": 2, + "ultraPosition": 21, + "quotation": 15, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_174655", + "firstName": "Franck", + "lastName": "Honorat", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_174908", + "firstName": "Jean Eudes", + "lastName": "Aholou", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_176490", + "firstName": null, + "lastName": "Ricardo Mangas", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_176495", + "firstName": null, + "lastName": "Moreto Cassamã", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_176501", + "firstName": "Jonathan", + "lastName": "Gradit", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_176569", + "firstName": "Driss", + "lastName": "Trichard", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_177020", + "firstName": null, + "lastName": "Igor Silva", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_177194", + "firstName": null, + "lastName": "Luan Peres", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_177885", + "firstName": "Arbër", + "lastName": "Zeneli", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_178478", + "firstName": "Abdou", + "lastName": "Diallo", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_17861", + "firstName": "Sergio", + "lastName": "Ramos", + "position": 2, + "ultraPosition": 20, + "quotation": 20, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_17878", + "firstName": "Cesc", + "lastName": "Fàbregas", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_179089", + "firstName": "Jodel", + "lastName": "Dossou", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_180124", + "firstName": "Youssouf", + "lastName": "Kone", + "position": 2, + "ultraPosition": 21, + "quotation": 4, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_180299", + "firstName": "Gabriel", + "lastName": "Mutombo", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_180562", + "firstName": "Ambroise", + "lastName": "Oyongo", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_180835", + "firstName": null, + "lastName": "Otávio", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_181441", + "firstName": "Moses", + "lastName": "Simon", + "position": 3, + "ultraPosition": 31, + "quotation": 16, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_182960", + "firstName": "Pau", + "lastName": "López", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_183779", + "firstName": "Léo", + "lastName": "Dubois", + "position": 2, + "ultraPosition": 21, + "quotation": 16, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_184962", + "firstName": "Akim", + "lastName": "Zedadka", + "position": 2, + "ultraPosition": 21, + "quotation": 4, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_185441", + "firstName": "Miguel", + "lastName": "Trauco", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_185527", + "firstName": "Dereck", + "lastName": "Kutesa", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_185621", + "firstName": null, + "lastName": "Léo Jardim", + "position": 1, + "ultraPosition": 10, + "quotation": 10, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_18574", + "firstName": "Thomas", + "lastName": "Mangani", + "position": 3, + "ultraPosition": 30, + "quotation": 16, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_186658", + "firstName": "Alexander", + "lastName": "Nübel", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_186796", + "firstName": "Jonas", + "lastName": "Omlin", + "position": 1, + "ultraPosition": 10, + "quotation": 16, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_193400", + "firstName": "Moussa", + "lastName": "Doumbia", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_193406", + "firstName": "Valentin", + "lastName": "Belon", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_193407", + "firstName": "Quentin", + "lastName": "Lecoeuche", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_193411", + "firstName": "Haris", + "lastName": "Belkebla", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_193454", + "firstName": "Karl", + "lastName": "Toko Ekambi", + "position": 4, + "ultraPosition": 40, + "quotation": 22, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_193539", + "firstName": "Valentin", + "lastName": "Rongier", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_194188", + "firstName": "Bingourou", + "lastName": "Kamara", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_195480", + "firstName": "Josh", + "lastName": "Maja", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_195883", + "firstName": "Jonathan", + "lastName": "Bamba", + "position": 3, + "ultraPosition": 31, + "quotation": 23, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_195908", + "firstName": "Nemanja", + "lastName": "Radonjic", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_196850", + "firstName": null, + "lastName": "Gerson", + "position": 3, + "ultraPosition": 31, + "quotation": 18, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_197017", + "firstName": null, + "lastName": "Junior Sambia", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_19739", + "firstName": "Eiji", + "lastName": "Kawashima", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_197498", + "firstName": "Birger", + "lastName": "Meling", + "position": 2, + "ultraPosition": 21, + "quotation": 14, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_198523", + "firstName": "Jean-Kévin", + "lastName": "Augustin", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_198990", + "firstName": "Antonin", + "lastName": "Bobichon", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_199672", + "firstName": "Jonathan", + "lastName": "Ikoné", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_200848", + "firstName": "Paul", + "lastName": "Bernardoni", + "position": 1, + "ultraPosition": 10, + "quotation": 10, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_200958", + "firstName": "Assane", + "lastName": "Dioussé", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_201057", + "firstName": "Thilo", + "lastName": "Kehrer", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_201440", + "firstName": null, + "lastName": "Hwang Ui-Jo", + "position": 4, + "ultraPosition": 40, + "quotation": 16, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_201562", + "firstName": "Marcus", + "lastName": "Coco", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_202520", + "firstName": null, + "lastName": "Pape Cheikh Diop Gueye", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_202857", + "firstName": "Angelo", + "lastName": "Fulgini", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_202858", + "firstName": "Sada", + "lastName": "Thioub", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_202961", + "firstName": "Josue", + "lastName": "Albert", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_202963", + "firstName": "Jerome", + "lastName": "Hergault", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_204184", + "firstName": null, + "lastName": "Anastasios Donis", + "position": 4, + "ultraPosition": 40, + "quotation": 4, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_204188", + "firstName": "Florian", + "lastName": "Sotoca", + "position": 4, + "ultraPosition": 40, + "quotation": 14, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_204715", + "firstName": "Gaëtan", + "lastName": "Poussin", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_204739", + "firstName": "Alban", + "lastName": "Lafont", + "position": 1, + "ultraPosition": 10, + "quotation": 16, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_20487", + "firstName": "Vito", + "lastName": "Mannone", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_204936", + "firstName": "Gianluigi", + "lastName": "Donnarumma", + "position": 1, + "ultraPosition": 10, + "quotation": 20, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_205552", + "firstName": "Julien", + "lastName": "Laporte", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_206340", + "firstName": "Mihailo", + "lastName": "Ristic", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_207756", + "firstName": "Sergi", + "lastName": "Palencia", + "position": 2, + "ultraPosition": 21, + "quotation": 4, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_208554", + "firstName": "Enzo", + "lastName": "Ebosse", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_208555", + "firstName": "Loic", + "lastName": "Bessile", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_208556", + "firstName": "Myziane", + "lastName": "Maolida", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_208706", + "firstName": null, + "lastName": "Bruno Guimarães", + "position": 3, + "ultraPosition": 30, + "quotation": 16, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_208987", + "firstName": "Jeff", + "lastName": "Reine-Adélaïde", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209041", + "firstName": null, + "lastName": "Angel Gomes", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209218", + "firstName": "Dimitry", + "lastName": "Bertaud", + "position": 1, + "ultraPosition": 10, + "quotation": 8, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209330", + "firstName": "Raoul", + "lastName": "Bellanova", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209335", + "firstName": "Pietro", + "lastName": "Pellegri", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209608", + "firstName": "Harold", + "lastName": "Moukoudi", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209778", + "firstName": "Wuilker", + "lastName": "Fariñez", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_209914", + "firstName": "Kasper", + "lastName": "Dolberg", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_210456", + "firstName": "Souleyman", + "lastName": "Doumbia", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_210494", + "firstName": "Nayef", + "lastName": "Aguerd", + "position": 2, + "ultraPosition": 20, + "quotation": 15, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_210932", + "firstName": "Adam", + "lastName": "Jakubech", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_212851", + "firstName": "Toma", + "lastName": "Basic", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_213199", + "firstName": "Rémy", + "lastName": "Descamps", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_213940", + "firstName": "Ludovic", + "lastName": "Blas", + "position": 3, + "ultraPosition": 31, + "quotation": 21, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_214244", + "firstName": "Vital", + "lastName": "N'Simba", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_214245", + "firstName": "Fabien", + "lastName": "Centonze", + "position": 2, + "ultraPosition": 21, + "quotation": 12, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_214254", + "firstName": "Habib", + "lastName": "Diallo", + "position": 4, + "ultraPosition": 40, + "quotation": 13, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_214473", + "firstName": null, + "lastName": "Faitout Maouassa", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_214860", + "firstName": "Pablo", + "lastName": "Rosario", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_215046", + "firstName": "Enock", + "lastName": "Kwateng", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_215473", + "firstName": "Timothy", + "lastName": "Weah", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_215669", + "firstName": "Tinotenda", + "lastName": "Kadewere", + "position": 4, + "ultraPosition": 40, + "quotation": 20, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_216100", + "firstName": "Gautier", + "lastName": "Larsonneur", + "position": 1, + "ultraPosition": 10, + "quotation": 13, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_216227", + "firstName": "Denis", + "lastName": "Bouanga", + "position": 3, + "ultraPosition": 31, + "quotation": 21, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_216288", + "firstName": "Arthur", + "lastName": "Desmas", + "position": 1, + "ultraPosition": 10, + "quotation": 12, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_216438", + "firstName": null, + "lastName": "Casimir Ninga", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_216646", + "firstName": "Yoane", + "lastName": "Wissa", + "position": 4, + "ultraPosition": 40, + "quotation": 20, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_217597", + "firstName": "Mathieu", + "lastName": "Cafaro", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_217872", + "firstName": "Charles", + "lastName": "Traoré", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_217992", + "firstName": "Jeremy", + "lastName": "Gelin", + "position": 2, + "ultraPosition": 20, + "quotation": 6, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_218218", + "firstName": "Wout", + "lastName": "Faes", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_218240", + "firstName": "Mamadou", + "lastName": "Fofana", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_218357", + "firstName": "Alexis", + "lastName": "Claude Maurice", + "position": 3, + "ultraPosition": 31, + "quotation": 18, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_218524", + "firstName": "Abdoulaye Jules", + "lastName": "Keita", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_218796", + "firstName": "Kevin", + "lastName": "N'Doram", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_219286", + "firstName": "Batista", + "lastName": "Mendy", + "position": 2, + "ultraPosition": 20, + "quotation": 6, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_219289", + "firstName": "Alexis", + "lastName": "Flips", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_219292", + "firstName": "Aurelien", + "lastName": "Tchouameni", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_219296", + "firstName": "Maxence", + "lastName": "Caqueret", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_219873", + "firstName": "Romain", + "lastName": "Del Castillo", + "position": 4, + "ultraPosition": 40, + "quotation": 11, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_219969", + "firstName": "Simon", + "lastName": "Banza", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220074", + "firstName": "Ronaël", + "lastName": "Pierre-Gabriel", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220160", + "firstName": "Kylian", + "lastName": "Mbappé", + "position": 4, + "ultraPosition": 40, + "quotation": 40, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220237", + "firstName": "Sven", + "lastName": "Botman", + "position": 2, + "ultraPosition": 20, + "quotation": 17, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220362", + "firstName": "Axel", + "lastName": "Disasi", + "position": 2, + "ultraPosition": 20, + "quotation": 16, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220494", + "firstName": "Quentin", + "lastName": "Boisgard", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220703", + "firstName": "Mustafa", + "lastName": "Kapi", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220734", + "firstName": "Yusuf", + "lastName": "Yazici", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_220872", + "firstName": "Andreaw", + "lastName": "Gravillon", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_221095", + "firstName": "Jonathan", + "lastName": "Clauss", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_221245", + "firstName": "Levi", + "lastName": "Lumeka", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_221542", + "firstName": null, + "lastName": "Vágner Dias", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_221987", + "firstName": "Matthieu", + "lastName": "Udol", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_222683", + "firstName": "Justin", + "lastName": "Kluivert", + "position": 4, + "ultraPosition": 40, + "quotation": 16, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_222853", + "firstName": "Arial", + "lastName": "Mendy", + "position": 2, + "ultraPosition": 21, + "quotation": 6, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_223140", + "firstName": "Mathias", + "lastName": "Pereira Lage", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_223348", + "firstName": "Konrad", + "lastName": "De la Fuente", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_223760", + "firstName": "Achraf", + "lastName": "Hakimi", + "position": 2, + "ultraPosition": 21, + "quotation": 20, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_223908", + "firstName": null, + "lastName": "Luiz Araújo", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_224024", + "firstName": null, + "lastName": "Lucas Paquetá", + "position": 3, + "ultraPosition": 31, + "quotation": 20, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_224297", + "firstName": "Stéphane", + "lastName": "Diarra", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_224868", + "firstName": "Facundo", + "lastName": "Medina", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_225183", + "firstName": "Metehan", + "lastName": "Guclu", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_225702", + "firstName": "Samuel", + "lastName": "Kalu", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_225997", + "firstName": "Sofiane", + "lastName": "Alakouch", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_226451", + "firstName": "Ibrahima", + "lastName": "Sissoko", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_226944", + "firstName": "Boubacar", + "lastName": "Kamara", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_226949", + "firstName": "Rafik", + "lastName": "Guitane", + "position": 3, + "ultraPosition": 31, + "quotation": 4, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228254", + "firstName": null, + "lastName": "Kiki Kouyate", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228291", + "firstName": "Oualid", + "lastName": "El Hajjam", + "position": 2, + "ultraPosition": 21, + "quotation": 4, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228319", + "firstName": "Yoann", + "lastName": "Salmier", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228321", + "firstName": "Ihsan", + "lastName": "Sacko", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228322", + "firstName": "Dimitri", + "lastName": "Lienard", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228539", + "firstName": "Radoslaw", + "lastName": "Majecki", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_228798", + "firstName": "Cengiz", + "lastName": "Ünder", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_229222", + "firstName": "Houboulang", + "lastName": "Mendes", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_229230", + "firstName": "Remi", + "lastName": "Oudin", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_229670", + "firstName": "Gideon", + "lastName": "Mensah", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_229707", + "firstName": "Jordan", + "lastName": "Lotomba", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_230337", + "firstName": "Lebo", + "lastName": "Mothiba", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_230443", + "firstName": "Manuel", + "lastName": "Cabit", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_230971", + "firstName": null, + "lastName": "Caio Henrique", + "position": 2, + "ultraPosition": 21, + "quotation": 18, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_231057", + "firstName": "Jean-Ricner", + "lastName": "Bellegarde", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_231058", + "firstName": "Dylan", + "lastName": "Bronn", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_231399", + "firstName": "Marcin", + "lastName": "Bulka", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_231875", + "firstName": "Yehvann", + "lastName": "Diouf", + "position": 1, + "ultraPosition": 10, + "quotation": 5, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_231881", + "firstName": "Jean-Kévin", + "lastName": "Duverne", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_231961", + "firstName": "Houssem", + "lastName": "Aouar", + "position": 3, + "ultraPosition": 31, + "quotation": 23, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_232175", + "firstName": "Rominigue", + "lastName": "Kouame", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_232176", + "firstName": "Martin", + "lastName": "Terrier", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_232240", + "firstName": "Anthony", + "lastName": "Caci", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_232242", + "firstName": "Eden", + "lastName": "Massouema", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_232828", + "firstName": "Fraser", + "lastName": "Hornby", + "position": 3, + "ultraPosition": 31, + "quotation": 4, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_233957", + "firstName": "Alexandros", + "lastName": "Katranis", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_235050", + "firstName": "Arnaud", + "lastName": "Nordin", + "position": 3, + "ultraPosition": 31, + "quotation": 12, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_235627", + "firstName": "Myron", + "lastName": "Boadu", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_235628", + "firstName": "Calvin", + "lastName": "Stengs", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_240145", + "firstName": "Irvin", + "lastName": "Cardona", + "position": 4, + "ultraPosition": 40, + "quotation": 16, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_240146", + "firstName": "Adrien", + "lastName": "Bongiovanni", + "position": 3, + "ultraPosition": 31, + "quotation": 2, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_240153", + "firstName": "Mehdi", + "lastName": "Zerkane", + "position": 3, + "ultraPosition": 31, + "quotation": 13, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_240860", + "firstName": "Kaj", + "lastName": "Sierhuis", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242166", + "firstName": "Matteo", + "lastName": "Guendouzi", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242167", + "firstName": "Pierre-Yves", + "lastName": "Hamel", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242600", + "firstName": null, + "lastName": "Xeka", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242878", + "firstName": "Stefan", + "lastName": "Bajic", + "position": 1, + "ultraPosition": 10, + "quotation": 5, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242880", + "firstName": "Benoit", + "lastName": "Badiashile", + "position": 2, + "ultraPosition": 20, + "quotation": 16, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242887", + "firstName": null, + "lastName": "Khéphren Thuram", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_242894", + "firstName": "Willem", + "lastName": "Geubbels", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_243741", + "firstName": "Hugo", + "lastName": "Magnetti", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_244182", + "firstName": "Zaydou", + "lastName": "Youssouf", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_244642", + "firstName": "Ghislain", + "lastName": "Konan", + "position": 2, + "ultraPosition": 21, + "quotation": 16, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_244842", + "firstName": "James", + "lastName": "Lea Siliki", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_245090", + "firstName": null, + "lastName": "Robson Bambu", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_245491", + "firstName": "Moataz", + "lastName": "Zemzemi", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_245742", + "firstName": "Mickael", + "lastName": "Nade", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_247146", + "firstName": "Yvan", + "lastName": "Neyou", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_247400", + "firstName": "Amine", + "lastName": "Gouiri", + "position": 4, + "ultraPosition": 40, + "quotation": 24, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_247524", + "firstName": "Karol", + "lastName": "Fila", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_247629", + "firstName": null, + "lastName": "Tiago Djaló", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_247693", + "firstName": "Randal", + "lastName": "Kolo Muani", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_248875", + "firstName": "Jéremy", + "lastName": "Doku", + "position": 3, + "ultraPosition": 31, + "quotation": 19, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_249956", + "firstName": "Krépin", + "lastName": "Diatta", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_250694", + "firstName": "Ibrahima", + "lastName": "Niane", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_26894", + "firstName": null, + "lastName": "Dante", + "position": 2, + "ultraPosition": 20, + "quotation": 4, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_27675", + "firstName": "Jimmy", + "lastName": "Briand", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_28411", + "firstName": "Keylor", + "lastName": "Navas", + "position": 1, + "ultraPosition": 10, + "quotation": 20, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_37758", + "firstName": "Paul", + "lastName": "Baysse", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_37832", + "firstName": "Jérémy", + "lastName": "Morel", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_37836", + "firstName": "Romain", + "lastName": "Salin", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_37901", + "firstName": "Dimitri", + "lastName": "Payet", + "position": 3, + "ultraPosition": 31, + "quotation": 25, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_37990", + "firstName": "Jessy", + "lastName": "Moulin", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_38580", + "firstName": null, + "lastName": "José Fonte", + "position": 2, + "ultraPosition": 20, + "quotation": 21, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_39931", + "firstName": "Burak", + "lastName": "Yilmaz", + "position": 4, + "ultraPosition": 40, + "quotation": 29, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_40511", + "firstName": "Denis", + "lastName": "Petric", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_40784", + "firstName": "Mamadou", + "lastName": "Sakho", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_40833", + "firstName": "Jérémy", + "lastName": "Pied", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_41733", + "firstName": "Georginio", + "lastName": "Wijnaldum", + "position": 3, + "ultraPosition": 31, + "quotation": 21, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_420962", + "firstName": "Jordan", + "lastName": "Tell", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_421821", + "firstName": "Jonathan", + "lastName": "David", + "position": 4, + "ultraPosition": 40, + "quotation": 30, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_422089", + "firstName": "Lamine", + "lastName": "Ghezali", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_422230", + "firstName": "Kouadio", + "lastName": "Dabila", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_422453", + "firstName": "Pape", + "lastName": "Gueye", + "position": 3, + "ultraPosition": 30, + "quotation": 16, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_422474", + "firstName": "Amine", + "lastName": "Bassi", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_42416", + "firstName": "Ismael", + "lastName": "Traoré", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_424920", + "firstName": "Jean-Phillipe", + "lastName": "Krasso", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_425614", + "firstName": "Youcef", + "lastName": "Atal", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_42713", + "firstName": "Benoît", + "lastName": "Costil", + "position": 1, + "ultraPosition": 10, + "quotation": 11, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_42774", + "firstName": "Morgan", + "lastName": "Schneiderlin", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_42779", + "firstName": "Kevin", + "lastName": "Gameiro", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_428989", + "firstName": "Nicolas", + "lastName": "Cozza", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_429522", + "firstName": "Sebastien", + "lastName": "Renot", + "position": 1, + "ultraPosition": 10, + "quotation": 6, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_430510", + "firstName": null, + "lastName": "Mama Baldé", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_431426", + "firstName": "Grégoire", + "lastName": "Coudert", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_432489", + "firstName": "Samuel", + "lastName": "Moutoussamy", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_432662", + "firstName": "Sambou", + "lastName": "Sissoko", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_432990", + "firstName": "Yasser", + "lastName": "Larouci", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_433312", + "firstName": "Marshall", + "lastName": "Munetsi", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_433771", + "firstName": "Ignatius", + "lastName": "Ganago", + "position": 4, + "ultraPosition": 40, + "quotation": 15, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_434399", + "firstName": null, + "lastName": "Reinildo", + "position": 2, + "ultraPosition": 21, + "quotation": 16, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_43553", + "firstName": "Fabien", + "lastName": "Lemoine", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_435731", + "firstName": "Gerzino", + "lastName": "Nyamsi", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437204", + "firstName": "Alpha", + "lastName": "Sissoko", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437497", + "firstName": "Melvin", + "lastName": "Bard", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437504", + "firstName": "Yacine", + "lastName": "Adli", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437505", + "firstName": "Wilson", + "lastName": "Isidor", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437670", + "firstName": "Billal", + "lastName": "Brahimi", + "position": 4, + "ultraPosition": 40, + "quotation": 2, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437721", + "firstName": "Sébastien", + "lastName": "Cibois", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437753", + "firstName": "Giulian", + "lastName": "Biancone", + "position": 2, + "ultraPosition": 21, + "quotation": 2, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_437925", + "firstName": "Flavius", + "lastName": "Daniliuc", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_438309", + "firstName": "Éric", + "lastName": "Ebimbe", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_438398", + "firstName": "Terem", + "lastName": "Moffi", + "position": 4, + "ultraPosition": 40, + "quotation": 25, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_438464", + "firstName": "Cheick Oumar", + "lastName": "Doucouré", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_439205", + "firstName": "Thomas", + "lastName": "Carrique", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_439777", + "firstName": "Mohamed", + "lastName": "Bayo", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_440143", + "firstName": null, + "lastName": "Thuler", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_441240", + "firstName": "Romain", + "lastName": "Faivre", + "position": 3, + "ultraPosition": 31, + "quotation": 20, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_44136", + "firstName": "Jean-Louis", + "lastName": "Leca", + "position": 1, + "ultraPosition": 10, + "quotation": 16, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_44138", + "firstName": "Yannick", + "lastName": "Cahuzac", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_441574", + "firstName": "Ismail", + "lastName": "Jakobs", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_442261", + "firstName": "Jean", + "lastName": "Marcelin", + "position": 2, + "ultraPosition": 20, + "quotation": 8, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_442264", + "firstName": "Mahdi", + "lastName": "Camara", + "position": 3, + "ultraPosition": 30, + "quotation": 13, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_44287", + "firstName": "Damien", + "lastName": "Da Silva", + "position": 2, + "ultraPosition": 20, + "quotation": 16, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_443202", + "firstName": "Abdoul Kader", + "lastName": "Bamba", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_44413", + "firstName": "Steve", + "lastName": "Mandanda", + "position": 1, + "ultraPosition": 10, + "quotation": 17, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_444151", + "firstName": null, + "lastName": "Jean Lucas", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_444369", + "firstName": "Julien", + "lastName": "Boyer", + "position": 2, + "ultraPosition": 21, + "quotation": 6, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_444465", + "firstName": "Dylan", + "lastName": "Chambost", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_445956", + "firstName": "Logan", + "lastName": "Costa", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_446682", + "firstName": "Leonardo", + "lastName": "Balerdi", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_447389", + "firstName": "Farid", + "lastName": "El Melali", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_447431", + "firstName": null, + "lastName": "Show", + "position": 3, + "ultraPosition": 30, + "quotation": 4, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_447547", + "firstName": "Lilian", + "lastName": "Brassier", + "position": 2, + "ultraPosition": 20, + "quotation": 9, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_448207", + "firstName": "Valentin", + "lastName": "Decarpentrie", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_449431", + "firstName": "Armand", + "lastName": "Laurienté", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_449433", + "firstName": "Enzo", + "lastName": "Valentim", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_45032", + "firstName": "Matthieu", + "lastName": "Dreyer", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_45123", + "firstName": "Alexandre", + "lastName": "Oukidja", + "position": 1, + "ultraPosition": 10, + "quotation": 15, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_451542", + "firstName": "Malcolm", + "lastName": "Barcola", + "position": 1, + "ultraPosition": 10, + "quotation": 4, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_454671", + "firstName": "Mahamé", + "lastName": "Siby", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_45505", + "firstName": "Romain", + "lastName": "Thomas", + "position": 2, + "ultraPosition": 20, + "quotation": 12, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_455784", + "firstName": "Filip", + "lastName": "Krastev", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_456300", + "firstName": "Lucas", + "lastName": "Perrin", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_456512", + "firstName": "Dan", + "lastName": "Ndoye", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_457225", + "firstName": "Thomas", + "lastName": "Callens", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458250", + "firstName": "Colin", + "lastName": "Dagba", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458251", + "firstName": "Alexandre", + "lastName": "Fressange", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458315", + "firstName": "Yohann", + "lastName": "Magnin", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458316", + "firstName": "Ouparine", + "lastName": "Djoco", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458345", + "firstName": "Cheick Tidiane", + "lastName": "Sabaly", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458455", + "firstName": "Warren", + "lastName": "Tchimbembé", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_458681", + "firstName": "Domagoj", + "lastName": "Bradaric", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_460267", + "firstName": "Sofiane", + "lastName": "Diop", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_461528", + "firstName": "Ayodeji", + "lastName": "Sotona", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_461698", + "firstName": "Eugenio", + "lastName": "Pizzuto", + "position": 3, + "ultraPosition": 30, + "quotation": 4, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_461913", + "firstName": "Youssouf", + "lastName": "Fofana", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_462116", + "firstName": "Jean-Clair", + "lastName": "Todibo", + "position": 2, + "ultraPosition": 20, + "quotation": 15, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_462424", + "firstName": "William", + "lastName": "Saliba", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_46497", + "firstName": "Ángel", + "lastName": "Di María", + "position": 3, + "ultraPosition": 31, + "quotation": 29, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465151", + "firstName": "Bilal", + "lastName": "Benkhedim", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465154", + "firstName": "Cedric", + "lastName": "Augarreau", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465158", + "firstName": "Lucas", + "lastName": "Da Cunha", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465203", + "firstName": null, + "lastName": "Pedro Brazao", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465299", + "firstName": "Anthony", + "lastName": "Mancini", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465345", + "firstName": "Benrandy", + "lastName": "Abdallah", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465524", + "firstName": "Chrislain", + "lastName": "Matsima", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465525", + "firstName": "Eliot", + "lastName": "Matazo", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465526", + "firstName": "Enzo", + "lastName": "Millot", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465676", + "firstName": "Adil", + "lastName": "Aouchiche", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465680", + "firstName": "Arnaud", + "lastName": "Kalimuendo-Muinga", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465681", + "firstName": "Bandiougou", + "lastName": "Fadiga", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465687", + "firstName": "Nathan", + "lastName": "Bitumazala", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465702", + "firstName": "Timothée", + "lastName": "Pembélé", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_465703", + "firstName": "Trey", + "lastName": "Vimalin", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_466046", + "firstName": "Lucas", + "lastName": "Margueron", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_466052", + "firstName": "Rayan", + "lastName": "Cherki", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_466054", + "firstName": "Florent", + "lastName": "da Silva", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_466058", + "firstName": "Franco", + "lastName": "Tongya", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_468657", + "firstName": "Castello", + "lastName": "Lukeba", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_469266", + "firstName": "Lucas", + "lastName": "Gourna-Douath", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_469267", + "firstName": "Lenny", + "lastName": "Lacroix", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_469324", + "firstName": "Teddy", + "lastName": "Bartouche", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_470317", + "firstName": "Santiago", + "lastName": "Eneme Bocari", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_471140", + "firstName": "Christopher Maurice", + "lastName": "Wooh", + "position": 2, + "ultraPosition": 20, + "quotation": 6, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_471924", + "firstName": "Matis", + "lastName": "Carvalho", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_472778", + "firstName": "Charles", + "lastName": "Abi", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_472779", + "firstName": "Marvin", + "lastName": "Tshibuabua", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_473389", + "firstName": "Jim", + "lastName": "Allevinah", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_473398", + "firstName": "Lenny", + "lastName": "Joseph", + "position": 4, + "ultraPosition": 40, + "quotation": 6, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_475561", + "firstName": "Eduardo", + "lastName": "Camavinga", + "position": 3, + "ultraPosition": 30, + "quotation": 17, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476369", + "firstName": "Issa", + "lastName": "Kabore", + "position": 2, + "ultraPosition": 21, + "quotation": 4, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476404", + "firstName": "Mamadou", + "lastName": "Mbow", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476412", + "firstName": "Dion", + "lastName": "Lopy", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476489", + "firstName": "El Bilal", + "lastName": "Touré", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476502", + "firstName": "Boubacar", + "lastName": "Traore", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476883", + "firstName": "Brandon", + "lastName": "Soppy", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476884", + "firstName": "Isaac", + "lastName": "Lihadji", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476887", + "firstName": "Dilane", + "lastName": "Bakwa", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476888", + "firstName": "Sékou", + "lastName": "Mara", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476890", + "firstName": "Richecarde", + "lastName": "Richard", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476892", + "firstName": "Nathanael", + "lastName": "Mbuku", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_476893", + "firstName": "Amadou", + "lastName": "Traoré", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477085", + "firstName": "Paul", + "lastName": "Wade", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477368", + "firstName": "Leo", + "lastName": "Leroy", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477697", + "firstName": "Adil", + "lastName": "Ben Achour", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477711", + "firstName": "Joris", + "lastName": "Chotard", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477717", + "firstName": "Maxime", + "lastName": "Estève", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477723", + "firstName": "Sacha", + "lastName": "Delaye", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477724", + "firstName": "Sepe Elye", + "lastName": "Wahi", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477729", + "firstName": "Thibault", + "lastName": "Tamas", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477730", + "firstName": "Thibaut", + "lastName": "Vargas", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477844", + "firstName": "Walim", + "lastName": "Lgharbi", + "position": 3, + "ultraPosition": 31, + "quotation": 2, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_477849", + "firstName": "Yanis", + "lastName": "Lhéry", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_478270", + "firstName": null, + "lastName": "Luis Henrique", + "position": 4, + "ultraPosition": 40, + "quotation": 10, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_478735", + "firstName": "Abdel Jalil Zaim Idriss", + "lastName": "Medioub", + "position": 2, + "ultraPosition": 20, + "quotation": 4, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_478862", + "firstName": "Bryan Silva", + "lastName": "Teixeira", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_480364", + "firstName": "Anthony", + "lastName": "Musaba", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_480779", + "firstName": "Hichem", + "lastName": "Boudaoui", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_482257", + "firstName": "Oussama", + "lastName": "Targhaline", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_482394", + "firstName": "Ousmane", + "lastName": "Ba", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_482442", + "firstName": "Pape", + "lastName": "Sarr", + "position": 3, + "ultraPosition": 30, + "quotation": 15, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_482549", + "firstName": "Alexandre", + "lastName": "Lauray", + "position": 2, + "ultraPosition": 20, + "quotation": 2, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_482609", + "firstName": "Malo", + "lastName": "Gusto", + "position": 2, + "ultraPosition": 21, + "quotation": 4, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_48332", + "firstName": "Orestis", + "lastName": "Karnezis", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_484420", + "firstName": "Enzo", + "lastName": "Le Fée", + "position": 3, + "ultraPosition": 31, + "quotation": 15, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_485180", + "firstName": "Jores", + "lastName": "Rahou", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_485337", + "firstName": "Evann", + "lastName": "Guessand", + "position": 4, + "ultraPosition": 40, + "quotation": 6, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_485338", + "firstName": "Nael", + "lastName": "Jaby", + "position": 3, + "ultraPosition": 31, + "quotation": 2, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_486792", + "firstName": "Bridge", + "lastName": "Ndilu", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_487352", + "firstName": "Saad", + "lastName": "Agouzoul", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_487448", + "firstName": "Ryan", + "lastName": "Bouallak", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_487606", + "firstName": "Strahinja", + "lastName": "Pavlovic", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_487664", + "firstName": "Samuel", + "lastName": "Loric", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_487683", + "firstName": "Tom", + "lastName": "Renaud", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488284", + "firstName": "Salis", + "lastName": "Abdul Samed", + "position": 3, + "ultraPosition": 30, + "quotation": 4, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488337", + "firstName": "Adrien", + "lastName": "Lebeau", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488351", + "firstName": "Charles", + "lastName": "Boli", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488363", + "firstName": "Calvin", + "lastName": "Bombo", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488448", + "firstName": "Zinédine", + "lastName": "Ould Khaled", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488547", + "firstName": "Abdoulaye", + "lastName": "Ousmane", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_488695", + "firstName": "Davy", + "lastName": "Rouyard", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489230", + "firstName": "Hianga'a", + "lastName": "M'Bock", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489571", + "firstName": "Etienne", + "lastName": "Green", + "position": 1, + "ultraPosition": 10, + "quotation": 13, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489573", + "firstName": "Aïmen", + "lastName": "Moueffek", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489661", + "firstName": "Papa Ndiaga", + "lastName": "Yade", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489841", + "firstName": "Azzedine", + "lastName": "Ounahi", + "position": 3, + "ultraPosition": 30, + "quotation": 4, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489963", + "firstName": "Ahmadou", + "lastName": "Dia", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_489995", + "firstName": "Wesley", + "lastName": "Moustache", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_490135", + "firstName": "Simon", + "lastName": "Ngapandouetnbu", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_490209", + "firstName": "Cheikh", + "lastName": "Niasse", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_490340", + "firstName": "Mehdi", + "lastName": "Chahiri", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_490884", + "firstName": "Mohamed", + "lastName": "Ali-Cho", + "position": 3, + "ultraPosition": 31, + "quotation": 9, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_492034", + "firstName": "Ernest", + "lastName": "Boahene", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_492817", + "firstName": "Jules", + "lastName": "Raux", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_492824", + "firstName": "Ismail", + "lastName": "Bouleghcha", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_492845", + "firstName": "Noah", + "lastName": "Fatar", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_492947", + "firstName": "Rocco", + "lastName": "Ascone", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_492975", + "firstName": "Sinaly", + "lastName": "Diomandé", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_493349", + "firstName": "Edouard", + "lastName": "Michut", + "position": 3, + "ultraPosition": 30, + "quotation": 6, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_493362", + "firstName": "Xavi", + "lastName": "Simons", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_493984", + "firstName": "Pépé", + "lastName": "Bonet", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_494521", + "firstName": "Adrien", + "lastName": "Truffert", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_494978", + "firstName": "Waniss", + "lastName": "Taibi", + "position": 3, + "ultraPosition": 31, + "quotation": 5, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_495193", + "firstName": "Darren", + "lastName": "Lima Semedo", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_496523", + "firstName": "Nassim", + "lastName": "Chadli", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_499209", + "firstName": "Georges", + "lastName": "Mikautadze", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_500267", + "firstName": "Loic", + "lastName": "Bade", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_501334", + "firstName": "Lamine", + "lastName": "Gueye", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_50148", + "firstName": "Johan", + "lastName": "Gastien", + "position": 3, + "ultraPosition": 30, + "quotation": 9, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_501599", + "firstName": "Maxence", + "lastName": "Rivera", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_502951", + "firstName": "Yvann", + "lastName": "Maçon", + "position": 2, + "ultraPosition": 21, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_503696", + "firstName": "Andy", + "lastName": "Diouf", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_503714", + "firstName": "Chimuanya", + "lastName": "Ugochukwu", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_503724", + "firstName": "Lorenz", + "lastName": "Assignon", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_503726", + "firstName": "Matthis", + "lastName": "Abline", + "position": 4, + "ultraPosition": 40, + "quotation": 3, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_503732", + "firstName": "Warmed", + "lastName": "Omari", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_503780", + "firstName": "Sekou", + "lastName": "Lega", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_504215", + "firstName": "Jean", + "lastName": "Onana", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_504783", + "firstName": "Kamaldeen", + "lastName": "Sulemana", + "position": 3, + "ultraPosition": 31, + "quotation": 10, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_505193", + "firstName": "Alexis", + "lastName": "Trouillet", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_505834", + "firstName": null, + "lastName": "David Da Costa", + "position": 3, + "ultraPosition": 30, + "quotation": 8, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510139", + "firstName": "Ismael", + "lastName": "Boura", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510140", + "firstName": "Adam", + "lastName": "Oudjani", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510299", + "firstName": "Cheick", + "lastName": "Souaré", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510310", + "firstName": "Nassim", + "lastName": "Ahmed", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510312", + "firstName": "Ugo", + "lastName": "Bertelli", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510314", + "firstName": "Aaron", + "lastName": "Kamardin", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510663", + "firstName": "Hugo", + "lastName": "Ekitike", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_510881", + "firstName": "El Chadaille", + "lastName": "Bitshiabu", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511182", + "firstName": "Ilan", + "lastName": "Kebbal", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511226", + "firstName": "Charly", + "lastName": "Jan", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511344", + "firstName": "Alidu", + "lastName": "Seidu", + "position": 2, + "ultraPosition": 20, + "quotation": 4, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511570", + "firstName": "Kevin", + "lastName": "Bemanga", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511591", + "firstName": "Rafiki", + "lastName": "Said", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511592", + "firstName": "Idrissa", + "lastName": "Dioh", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511593", + "firstName": "Jérémy", + "lastName": "Le Douaron", + "position": 4, + "ultraPosition": 40, + "quotation": 9, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511608", + "firstName": "Brandon", + "lastName": "Domingues", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_511744", + "firstName": "Mykola", + "lastName": "Kukharevych", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_512113", + "firstName": "Kévin", + "lastName": "Boma", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_512157", + "firstName": "Killian", + "lastName": "Benvindo", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_512726", + "firstName": "Salim", + "lastName": "Ben Seghir", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_512759", + "firstName": "Fodé", + "lastName": "Doucouré", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_512761", + "firstName": "Fabio", + "lastName": "Vanni", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_512771", + "firstName": "Saidou", + "lastName": "Sow", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_513350", + "firstName": "Soudeysse", + "lastName": "Kari", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_514434", + "firstName": "Benjamin", + "lastName": "Besic", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_51507", + "firstName": "Laurent", + "lastName": "Koscielny", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_515700", + "firstName": "Abdoulaye", + "lastName": "Sidibé", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_516137", + "firstName": "Tyrone", + "lastName": "Tormin", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_517058", + "firstName": "Habib", + "lastName": "Keita", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_517404", + "firstName": "Boubacar", + "lastName": "Fall", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_518313", + "firstName": "Oussama", + "lastName": "Falouh", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_518527", + "firstName": "Enzo", + "lastName": "Alfatahi", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_519342", + "firstName": "Noé", + "lastName": "Sommer", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_519343", + "firstName": "Marvin", + "lastName": "Senaya", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_521055", + "firstName": "Alexandre", + "lastName": "Pierre", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_521153", + "firstName": "Fred", + "lastName": "Gnalega", + "position": 3, + "ultraPosition": 30, + "quotation": 2, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_521470", + "firstName": "Teddy", + "lastName": "Boulhendi", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_523232", + "firstName": "Loris", + "lastName": "Mouyokolo", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_523685", + "firstName": "Tom", + "lastName": "Lacoux", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_523896", + "firstName": "Baptiste", + "lastName": "Gabard", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_52573", + "firstName": null, + "lastName": "Marcelo", + "position": 2, + "ultraPosition": 20, + "quotation": 19, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_530141", + "firstName": "Alexis", + "lastName": "Lefebvre", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_530309", + "firstName": "Oucasse", + "lastName": "Mendy", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_530357", + "firstName": "Abdoulaye", + "lastName": "Bakayoko", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_530570", + "firstName": "Mamadou", + "lastName": "Camara", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_530571", + "firstName": "Ryan", + "lastName": "Fage", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_530973", + "firstName": "Joris", + "lastName": "Mendy", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_531001", + "firstName": "Abdoulaye", + "lastName": "Sylla", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_531002", + "firstName": "Marvin", + "lastName": "Elimbi Gilbert", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_531003", + "firstName": "Quentin", + "lastName": "Merlin", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_531004", + "firstName": "Ahmadou Bamba", + "lastName": "Dieng", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_531075", + "firstName": "William", + "lastName": "Mikelbrencis", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_532531", + "firstName": "Issouf", + "lastName": "Sissokho", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_532602", + "firstName": null, + "lastName": "Metinho", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_533461", + "firstName": "Malamine", + "lastName": "Doumbouya", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_533463", + "firstName": "Dango", + "lastName": "Ouattara", + "position": 4, + "ultraPosition": 40, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_535795", + "firstName": "Dion Moise", + "lastName": "Sahi", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_535811", + "firstName": "Nabil", + "lastName": "Ouennas", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_535947", + "firstName": "Ismaël", + "lastName": "Gharbi", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_536175", + "firstName": "Adrien", + "lastName": "Louveau", + "position": 2, + "ultraPosition": 20, + "quotation": 3, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_537474", + "firstName": "Yann", + "lastName": "Kembo", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_537475", + "firstName": "Jonathan", + "lastName": "Varane", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_538067", + "firstName": "Yannick", + "lastName": "Pandor", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_538113", + "firstName": "Ismael", + "lastName": "Dramé", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_538452", + "firstName": "Antoine", + "lastName": "Mendy", + "position": 2, + "ultraPosition": 21, + "quotation": 1, + "clubId": "mpg_championship_club_1395", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_538780", + "firstName": "Paolo", + "lastName": "Sciortino", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_539225", + "firstName": "Mathys", + "lastName": "Saban", + "position": 3, + "ultraPosition": 30, + "quotation": 1, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_539228", + "firstName": "Malcom", + "lastName": "Bokele Mputu", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_54405", + "firstName": "Julien", + "lastName": "Faussurier", + "position": 2, + "ultraPosition": 21, + "quotation": 5, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_544097", + "firstName": "Redwan", + "lastName": "Bourles", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_544238", + "firstName": "Nehemiah", + "lastName": "Fernandez", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_544789", + "firstName": "Gor", + "lastName": "Manvelyan", + "position": 4, + "ultraPosition": 40, + "quotation": 4, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_54518", + "firstName": "Vincent", + "lastName": "Manceau", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_546174", + "firstName": "Lucas", + "lastName": "Bonelli", + "position": 1, + "ultraPosition": 10, + "quotation": 1, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_546326", + "firstName": "Yannis", + "lastName": "M'Bemba", + "position": 2, + "ultraPosition": 20, + "quotation": 5, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_546374", + "firstName": "Felix", + "lastName": "Lemarechal", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_54771", + "firstName": null, + "lastName": "Fábio", + "position": 2, + "ultraPosition": 21, + "quotation": 8, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_55264", + "firstName": "Ryad", + "lastName": "Boudebouz", + "position": 3, + "ultraPosition": 31, + "quotation": 6, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_55948", + "firstName": "Benjamin", + "lastName": "André", + "position": 3, + "ultraPosition": 30, + "quotation": 18, + "clubId": "mpg_championship_club_429", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_57136", + "firstName": "Timothée", + "lastName": "Kolodziejczak", + "position": 2, + "ultraPosition": 20, + "quotation": 7, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_57266", + "firstName": "Abdoulaye", + "lastName": "Bamba", + "position": 2, + "ultraPosition": 21, + "quotation": 7, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_58875", + "firstName": "Thomas", + "lastName": "Fontaine", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_59325", + "firstName": "Gaël", + "lastName": "Kakuta", + "position": 3, + "ultraPosition": 31, + "quotation": 22, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_59846", + "firstName": "Ander", + "lastName": "Herrera", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_59957", + "firstName": null, + "lastName": "Anthony Lopes", + "position": 1, + "ultraPosition": 10, + "quotation": 18, + "clubId": "mpg_championship_club_143", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_60121", + "firstName": "Sébastien", + "lastName": "Corchia", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_60165", + "firstName": "Wahbi", + "lastName": "Khazri", + "position": 3, + "ultraPosition": 31, + "quotation": 17, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_61170", + "firstName": "Marco", + "lastName": "Verratti", + "position": 3, + "ultraPosition": 30, + "quotation": 20, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_61278", + "firstName": null, + "lastName": "Neymar", + "position": 4, + "ultraPosition": 40, + "quotation": 33, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_62067", + "firstName": null, + "lastName": "Valon Berisha", + "position": 3, + "ultraPosition": 31, + "quotation": 7, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_6467", + "firstName": "Nicolas", + "lastName": "Penneteau", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_1423", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_67276", + "firstName": "Romain", + "lastName": "Hamouma", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_152", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_67278", + "firstName": "Vincent", + "lastName": "Le Goff", + "position": 2, + "ultraPosition": 21, + "quotation": 10, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_68260", + "firstName": "Loris", + "lastName": "Benito", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_68545", + "firstName": "Mateo", + "lastName": "Pavlovic", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_68862", + "firstName": "Petar", + "lastName": "Skuletic", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_72147", + "firstName": "Marco", + "lastName": "Bizot", + "position": 1, + "ultraPosition": 10, + "quotation": 8, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_72177", + "firstName": "Paul", + "lastName": "Lasne", + "position": 3, + "ultraPosition": 30, + "quotation": 7, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_73965", + "firstName": "Andy", + "lastName": "Delort", + "position": 4, + "ultraPosition": 40, + "quotation": 29, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_78275", + "firstName": "Arnaud", + "lastName": "Souquet", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_147", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_78541", + "firstName": null, + "lastName": "Suk Hyun-Jun", + "position": 4, + "ultraPosition": 40, + "quotation": 8, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_80357", + "firstName": null, + "lastName": "Mexer", + "position": 2, + "ultraPosition": 20, + "quotation": 10, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_80801", + "firstName": "Idrissa", + "lastName": "Gueye", + "position": 3, + "ultraPosition": 30, + "quotation": 12, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_82184", + "firstName": null, + "lastName": "Majeed Waris", + "position": 4, + "ultraPosition": 40, + "quotation": 5, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_82313", + "firstName": "Nicolas", + "lastName": "Pallois", + "position": 2, + "ultraPosition": 20, + "quotation": 13, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_83912", + "firstName": "Wissam", + "lastName": "Ben Yedder", + "position": 4, + "ultraPosition": 40, + "quotation": 35, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_84366", + "firstName": "Jonas", + "lastName": "Martin", + "position": 3, + "ultraPosition": 30, + "quotation": 5, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_84424", + "firstName": "Dennis", + "lastName": "Appiah", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_85370", + "firstName": "Kevin", + "lastName": "Volland", + "position": 4, + "ultraPosition": 40, + "quotation": 30, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_85548", + "firstName": "Vincent", + "lastName": "Pajot", + "position": 3, + "ultraPosition": 30, + "quotation": 3, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_85577", + "firstName": "Alexandre", + "lastName": "Letellier", + "position": 1, + "ultraPosition": 10, + "quotation": 3, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_85633", + "firstName": "Matz", + "lastName": "Sels", + "position": 1, + "ultraPosition": 10, + "quotation": 11, + "clubId": "mpg_championship_club_153", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_86443", + "firstName": "Florent", + "lastName": "Ogier", + "position": 2, + "ultraPosition": 20, + "quotation": 11, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_86873", + "firstName": "Benjamin", + "lastName": "Lecomte", + "position": 1, + "ultraPosition": 10, + "quotation": 13, + "clubId": "mpg_championship_club_146", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_87668", + "firstName": null, + "lastName": "Danilo Pereira", + "position": 3, + "ultraPosition": 30, + "quotation": 11, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_88035", + "firstName": "Yoann", + "lastName": "Touzghar", + "position": 4, + "ultraPosition": 40, + "quotation": 17, + "clubId": "mpg_championship_club_154", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_88484", + "firstName": "Pablo", + "lastName": "Sarabia", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_88931", + "firstName": "Anthony", + "lastName": "Limbombe", + "position": 3, + "ultraPosition": 31, + "quotation": 3, + "clubId": "mpg_championship_club_430", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_89068", + "firstName": "Layvin", + "lastName": "Kurzawa", + "position": 2, + "ultraPosition": 21, + "quotation": 9, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_90328", + "firstName": "Rubén", + "lastName": "Pardo", + "position": 3, + "ultraPosition": 31, + "quotation": 1, + "clubId": "mpg_championship_club_140", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_91080", + "firstName": "Leandro", + "lastName": "Paredes", + "position": 3, + "ultraPosition": 30, + "quotation": 14, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_92170", + "firstName": null, + "lastName": "Massadio Haidara", + "position": 2, + "ultraPosition": 21, + "quotation": 13, + "clubId": "mpg_championship_club_142", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_92216", + "firstName": "Alfred", + "lastName": "Gomis", + "position": 1, + "ultraPosition": 10, + "quotation": 19, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_92819", + "firstName": null, + "lastName": "Rafinha", + "position": 3, + "ultraPosition": 31, + "quotation": 14, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_92985", + "firstName": "Julian", + "lastName": "Draxler", + "position": 3, + "ultraPosition": 31, + "quotation": 11, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_94248", + "firstName": "Sergio", + "lastName": "Rico", + "position": 1, + "ultraPosition": 10, + "quotation": 7, + "clubId": "mpg_championship_club_149", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_95581", + "firstName": "Elbasan", + "lastName": "Rashani", + "position": 3, + "ultraPosition": 31, + "quotation": 8, + "clubId": "mpg_championship_club_1983", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_96084", + "firstName": "Álvaro", + "lastName": "González", + "position": 2, + "ultraPosition": 20, + "quotation": 14, + "clubId": "mpg_championship_club_144", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_96616", + "firstName": "Thomas", + "lastName": "Monconduit", + "position": 3, + "ultraPosition": 30, + "quotation": 10, + "clubId": "mpg_championship_club_694", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_96764", + "firstName": "M'Baye", + "lastName": "Niang", + "position": 4, + "ultraPosition": 40, + "quotation": 7, + "clubId": "mpg_championship_club_150", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_97433", + "firstName": "Denys", + "lastName": "Bain", + "position": 2, + "ultraPosition": 20, + "quotation": 1, + "clubId": "mpg_championship_club_862", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_98826", + "firstName": "Thomas", + "lastName": "Delaine", + "position": 2, + "ultraPosition": 21, + "quotation": 11, + "clubId": "mpg_championship_club_145", + "stats": { + "totalMatches": 0, + "matches": [] + } + }, + { + "id": "mpg_championship_player_98828", + "firstName": "Stéphane", + "lastName": "Bahoken", + "position": 4, + "ultraPosition": 40, + "quotation": 12, + "clubId": "mpg_championship_club_2128", + "stats": { + "totalMatches": 0, + "matches": [] + } + } + ] +} diff --git a/src/test/resources/__files/sportsgambler.ligue-1.20210805.html b/src/test/resources/__files/sportsgambler.ligue-1.20210805.html new file mode 100644 index 0000000..6a28e18 --- /dev/null +++ b/src/test/resources/__files/sportsgambler.ligue-1.20210805.html @@ -0,0 +1,1977 @@ + + + + + + + + Ligue 1 Injuries & Suspensions | French Ligue 1 Injury News + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + +
+
+ + + + + +
+ +
+ + + +
+ + +
+ + +
+ + +
+ + + +
+ +
+ + +

Ligue 1 Injuries & Suspensions

+
+
+ football_injury_france_ligue-1_nabilfekir. +
+
+

Ligue 1 is the top professional football division in France, with famous teams such as PSG, Marseille, Lyon, Lille, Rennes and Monaco competing throughout the season for domestic honours.

+ +

On this page, we provide the latest French Ligue 1 injuries and suspensions, with injury news and suspension information available for every club in the division. You can discover when each player is expected to return for their team and the nature of each injury.

+ +

Having access to match previews including predicted and confirmed lineups means that you are in a good position to place bets on French football, while you can also view the upcoming list of fixtures to help you place bets on individual matches as well as multiple bets.

+ +
+
+

+ FranceLigue 1 Injuries & Suspensions + +

+ +
+ + +
+

Bordeaux

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Paul Baysse + D + 0 + 0 + 0 + ACL injury + Early January + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+
+

Brest

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Sébastien Cibois + G + 0 + 0 + 0 + Achilles tendon + Late August + +
+ + +
+ +
+ +
+ + Paul Lasne + M + 0 + 0 + 0 + ACL injury + Late November + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+ +
+

Lens

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Clément Michelin + D + 0 + 0 + 0 + Knee injury + Mid July + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+ + +
+

Lyon

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Jeff Reine-Adelaide + M + 0 + 0 + 0 + ACL injury + Early October + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+
+

Marseille

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Arkadiusz Milik + F + 0 + 0 + 0 + Meniscus injury + Early August + +
+ + +
+ +
+ +
+ + Matteo Guendouzi + M + 0 + 0 + 0 + Broken ankle + Early September + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+
+

Metz

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Manuel Cabit + D + 0 + 0 + 0 + Leg injury + Out for season + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+
+

Monaco

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Benjamin Lecomte + G + 0 + 0 + 0 + Muscle injury + Early August + +
+ + +
+ +
+ +
+ + Guillermo Maripán + D + 0 + 0 + 0 + Leg injury + Mid July + +
+ + +
+ +
+ +
+ + Jorge + D + 0 + 0 + 0 + ACL injury + Mid August + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+
+

Montpellier

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Pedro Mendes + D + 0 + 0 + 0 + ACL injury + Mid December + +
+ + +
+ +
+ +
+ + Ambroise Oyongo + D + 0 + 0 + 0 + ACL injury + Late October + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+ +
+

Nice

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + A. Claude Maurice + M + 0 + 0 + 0 + Broken foot + Early August + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+
+

PSG

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Pablo Sarabia + M + 0 + 0 + 0 + Strain injury + Late July + +
+ + +
+ +
+ +
+ + Juan Bernat + D + 0 + 0 + 0 + ACL injury + Mid July + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+ + +
+

Saint-Etienne

+ +
+ Type + Name + Position + Matches + Goals + Assists + Info + Expected Return + +
+ +
+ +
+ + Yvann Macon + D + 0 + 0 + 0 + ACL injury + Mid July + +
+ + +
+ + + + + + + bet365 + + + + World's Favourite Betting Company + + + + Bet Now! + + + + + T&Cs apply, Gamble Responsibly 18+ + + +
+ + +
+
+
+
+ football_injury_france_ligue-1_nabilfekir. +
+
+

French Ligue 1 Injury Table & Report

+ +

Ligue 1 is the top professional football division in France, with famous teams such as PSG, Marseille, Lyon, Lille, Rennes and Monaco competing throughout the season for domestic honours.

+ +

On this page, we provide the latest French Ligue 1 injuries and suspensions, with injury news and suspension information available for every club in the division. You can discover when each player is expected to return for their team and the nature of each injury.

+ +

Having access to match previews including predicted and confirmed lineups means that you are in a good position to place bets on French football, while you can also view the upcoming list of fixtures to help you place bets on individual matches as well as multiple bets.

+ +
+
+ + + + + +
+ + +
+ + + + +
+ +
+ + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From dbf740550239086e249c71e8d3ce87e2b602bcf2 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Thu, 5 Aug 2021 23:11:03 +0200 Subject: [PATCH 08/13] Implement new bonus names and selection by priority --- src/main/java/org/blondin/mpg/Main.java | 27 ++++++++++++++----- .../blondin/mpg/root/model/SelectedBonus.java | 18 ++++++++++--- .../org/blondin/mpg/BonusSelectionTest.java | 11 +++----- 3 files changed, 39 insertions(+), 17 deletions(-) diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index bac29b7..6bf3bde 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -548,16 +548,31 @@ static SelectedBonus selectBonus(SelectedBonus previousBonus, Map= matchsRemaining) { - // TODO: To update - // int bonusType = bonus.getBonusTypeForRemainingMatch(matchsRemaining); - // bonusSelected.setType(bonusType); - // if (bonusType == 4) { - // bonusSelected.setPlayerId(playerIdForRefBull); - // } + String bonus = getBestBonus(bonuses, matchsRemaining); + bonusSelected.setName(bonus); + if ("boostOnePlayer".equals(bonus)) { + bonusSelected.setPlayerId(playerIdIfNeeded); + } } return bonusSelected; } + private static String getBestBonus(Map bonuses, int matchsRemaining) { + int bonusTooMuch = bonuses.values().stream().reduce(0, Integer::sum) - matchsRemaining - 1; + List bonusLowerPriority = SelectedBonus.getBonusPriority().stream().collect(Collectors.toList()); + Collections.reverse(bonusLowerPriority); + for (String b : bonusLowerPriority) { + for (int bi = 0; bi < bonuses.get(b); bi++) { + if (bonusTooMuch > 0) { + bonusTooMuch--; + } else { + return b; + } + } + } + throw new UnsupportedOperationException("Bonus cannot be null here, bug in selection algorithm !"); + } + private static int setPlayersOnPitch(CoachRequest request, List players, int number, int index) { int setted = 0; for (int i = 0; i < number; i++) { diff --git a/src/main/java/org/blondin/mpg/root/model/SelectedBonus.java b/src/main/java/org/blondin/mpg/root/model/SelectedBonus.java index 187d7ad..18be62f 100644 --- a/src/main/java/org/blondin/mpg/root/model/SelectedBonus.java +++ b/src/main/java/org/blondin/mpg/root/model/SelectedBonus.java @@ -1,22 +1,28 @@ package org.blondin.mpg.root.model; +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.Stream; + import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; /** * On mobile App:
* - Wallet: removeGoal
- * - UberEats: boostOnePlayer ('playerId' required)
- * - Suarez: nerfGoalkeeper
- * - Pat: blockTacticalSubs
* - Zahia: boostAllPlayers
+ * - Suarez: nerfGoalkeeper
+ * - UberEats: boostOnePlayer ('playerId' required)
* - Mirror: mirror
+ * - Pat: blockTacticalSubs
* - Chapron: removeRandomPlayer
* - */ public class SelectedBonus { - // TODO: Order bonus by priority !! + private static final List BONUS_PRIORITY = Stream + .of("removeGoal", "boostAllPlayers", "nerfGoalkeeper", "boostOnePlayer", "mirror", "blockTacticalSubs", "removeRandomPlayer") + .collect(Collectors.toList()); @JsonInclude(Include.NON_NULL) private String name; @@ -24,6 +30,10 @@ public class SelectedBonus { @JsonInclude(Include.NON_NULL) private String playerId; + public static List getBonusPriority() { + return BONUS_PRIORITY; + } + public String getName() { return name; } diff --git a/src/test/java/org/blondin/mpg/BonusSelectionTest.java b/src/test/java/org/blondin/mpg/BonusSelectionTest.java index aeab797..7b3f069 100644 --- a/src/test/java/org/blondin/mpg/BonusSelectionTest.java +++ b/src/test/java/org/blondin/mpg/BonusSelectionTest.java @@ -38,20 +38,21 @@ private Map getBonus(int b1, int b2, int b3, int b4, int b5, in bonuses.put("nerfGoalkeeper", b3); bonuses.put("boostOnePlayer", b4); bonuses.put("mirror", b5); - bonuses.put("removeRandomPlayer", b6); - bonuses.put("blockTacticalSubs", b7); + bonuses.put("blockTacticalSubs", b6); + bonuses.put("removeRandomPlayer", b7); return bonuses; } @Test public void testBonusSelection() { + Assert.assertEquals("nerfGoalkeeper", Main.selectBonus(null, getBonus(0, 0, 1, 1, 0, 0, 0), 0, true, "fake").getName()); Assert.assertEquals("boostOnePlayer", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), 0, true, "fake").getName()); Assert.assertEquals("fake", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), 0, true, "fake").getPlayerId()); Assert.assertNull(Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), 0, true, "fake").getPlayerId()); Assert.assertNull(Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 15, true, "fake").getName()); Assert.assertEquals("boostAllPlayers", Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), 0, true, "fake").getName()); Assert.assertEquals("removeGoal", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 0, true, "fake").getName()); - Assert.assertEquals("blockTacticalSubs", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 0, true, "fake").getName()); + Assert.assertEquals("removeRandomPlayer", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 9, true, "fake").getName()); } @Test @@ -85,8 +86,4 @@ public void testBonusSelectionBadInputBonus() { Main.selectBonus(null, null, -1, true, "fake"); } - @Test(expected = UnsupportedOperationException.class) - public void testBonusSelectionBadInputPlayers() { - Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), -200, true, "fake"); - } } From fbb1070078b27aebc0f30738f7a41c7c1e90b4e4 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Thu, 5 Aug 2021 23:19:11 +0200 Subject: [PATCH 09/13] Implement udate with matchId --- src/main/java/org/blondin/mpg/Main.java | 2 +- .../java/org/blondin/mpg/root/MpgClient.java | 9 ++--- .../org/blondin/mpg/root/model/Coach.java | 40 ++----------------- .../mpg/root/model/MatchTeamFormation.java | 5 +++ src/test/java/org/blondin/mpg/MainTest.java | 1 + .../org/blondin/mpg/root/MpgClientTest.java | 1 + 6 files changed, 15 insertions(+), 43 deletions(-) diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 6bf3bde..0b522af 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -268,7 +268,7 @@ private static void updateTeamWithRetry(MpgClient mpgClient, League league, Divi final long maxRetry = 10; for (int i = 1; i <= 10; i++) { try { - mpgClient.updateCoach(league, getCoachRequest(team, coach, players, division.getGameRemaining(), config)); + mpgClient.updateCoach(coach.getIdMatch(), getCoachRequest(team, coach, players, division.getGameRemaining(), config)); break; } catch (UnsupportedOperationException e) { if (i == maxRetry || !"Unsupported status code: 400 Bad Request / Content: {\"error\":\"badRequest\"}".equals(e.getMessage())) { diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index debde60..dfa0d3f 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -16,7 +16,6 @@ import org.blondin.mpg.root.model.CoachRequest; import org.blondin.mpg.root.model.Dashboard; import org.blondin.mpg.root.model.Division; -import org.blondin.mpg.root.model.League; import org.blondin.mpg.root.model.Mercato; import org.blondin.mpg.root.model.MercatoLeague; import org.blondin.mpg.root.model.PoolPlayers; @@ -121,11 +120,11 @@ private void signIn(String login, String password) { // headers.add("client-version", MPG_CLIENT_VERSION); } - public void updateCoach(League league, CoachRequest coachRequest) { - if (true) { - throw new UnsupportedOperationException("Find where find mpg_match_team_formation_LEAGUE_ID_X_Y_Z"); + public void updateCoach(String matchId, CoachRequest coachRequest) { + if (!StringUtils.startsWith(matchId, "mpg_match_team_formation_")) { + throw new UnsupportedOperationException(String.format("Coach match id '%s' should start with 'mpg_match_team_formation_'", matchId)); } - String result = put("/match-team-formation/mpg_match_team_formation_LEAGUE_ID_X_Y_Z", headers, coachRequest, String.class); + String result = put("/match-team-formation/" + matchId, headers, coachRequest, String.class); if (!"{\"success\":\"teamSaved\"}".equals(result)) { throw new UnsupportedOperationException(String.format("The team has been updated, result message: %s", result)); } diff --git a/src/main/java/org/blondin/mpg/root/model/Coach.java b/src/main/java/org/blondin/mpg/root/model/Coach.java index 2f6feed..cd1b35f 100644 --- a/src/main/java/org/blondin/mpg/root/model/Coach.java +++ b/src/main/java/org/blondin/mpg/root/model/Coach.java @@ -1,8 +1,5 @@ package org.blondin.mpg.root.model; -import java.util.List; -import java.util.Map; - import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; @@ -17,17 +14,9 @@ public class Coach { @JsonProperty("selectedBonus") private SelectedBonus bonusSelected; - // Useless below parameters ? - - @JsonProperty("players") - private List players; - - /** Number of players in the league */ - @JsonProperty("nbPlayers") - private int nbPlayers; - - @JsonProperty("teams") - private Map teams; + public String getIdMatch() { + return matchTeamFormation.getId(); + } public int getComposition() { return matchTeamFormation.getComposition(); @@ -37,27 +26,4 @@ public SelectedBonus getBonusSelected() { return bonusSelected; } - // Useless below functions ? - - public List getPlayers() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return players; - } - - public int getNbPlayers() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return nbPlayers; - } - - public Map getTeams() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return teams; - } - } diff --git a/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java b/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java index 67bf58b..b20e9b0 100644 --- a/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java +++ b/src/main/java/org/blondin/mpg/root/model/MatchTeamFormation.java @@ -5,8 +5,13 @@ @JsonIgnoreProperties(ignoreUnknown = true) public class MatchTeamFormation { + private String id; private int composition; + public String getId() { + return id; + } + public int getComposition() { return composition; } diff --git a/src/test/java/org/blondin/mpg/MainTest.java b/src/test/java/org/blondin/mpg/MainTest.java index cc70ad4..c2a0c3b 100644 --- a/src/test/java/org/blondin/mpg/MainTest.java +++ b/src/test/java/org/blondin/mpg/MainTest.java @@ -104,6 +104,7 @@ public void testProcessFromEmptyCoach() throws Exception { stubFor(post("/match-team-formation/mpg_match_team_formation_MLEFEX6G_3_1_2_2_2") .withRequestBody(equalToJson(getTestFileToString("mpg.coach.MLEFEX6G.20210804-Request.json"))) .willReturn(aResponse().withHeader("Content-Type", "application/json").withBody("{\"success\":\"teamSaved\"}"))); + // TODO: Output should be checked with realcase executeMainProcess(config); Assert.assertTrue(getLogOut(), getLogOut().contains("Ligue 2 Fous")); Assert.assertTrue(getLogOut(), getLogOut().contains("Ba")); diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index 2f0fbaa..1a8c867 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -118,6 +118,7 @@ public void testMockCoach() throws Exception { Coach coach = mpgClient.getCoach("mpg_division_MLEFEX6G_3_1"); Assert.assertNotNull(coach); Assert.assertTrue(coach.getComposition() > 0); + Assert.assertEquals("mpg_match_team_formation_MLEFEX6G_3_1_2_2_2", coach.getIdMatch()); } @Test From 16e55b6416ca28c4f118ec47e58524eb9c45cf6a Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 11 Aug 2021 13:59:41 +0200 Subject: [PATCH 10/13] Make unit test success (remove useless) --- .github/ISSUE_TEMPLATE/bug_report.md | 3 +- src/main/java/org/blondin/mpg/Main.java | 48 +- .../java/org/blondin/mpg/config/Config.java | 9 +- .../java/org/blondin/mpg/root/MpgClient.java | 19 +- ...TransferBuy.java => AvailablePlayers.java} | 2 +- .../blondin/mpg/root/model/CoachRequest.java | 20 +- .../org/blondin/mpg/root/model/League.java | 26 +- .../mpg/root/model/TacticalSubstitute.java | 10 +- .../blondin/mpg/stats/model/CurrentDay.java | 7 + .../org/blondin/mpg/BonusSelectionTest.java | 6 +- src/test/java/org/blondin/mpg/MainTest.java | 1096 +- .../org/blondin/mpg/root/MpgClientTest.java | 34 +- src/test/resources/__files/README.md | 9 +- .../__files/equipeactu.ligue-1.20181114.html | 3355 - .../__files/equipeactu.ligue-1.20181212.html | 6815 -- .../__files/equipeactu.ligue-1.20181220.html | 3377 - .../__files/equipeactu.ligue-1.20190123.html | 3281 - .../__files/equipeactu.ligue-1.20190202.html | 3101 - .../__files/equipeactu.ligue-1.20190211.html | 3067 - .../__files/equipeactu.ligue-1.20190217.html | 3217 - .../__files/equipeactu.ligue-1.20190807.html | 2308 - .../equipeactu.premier-league.20191212.html | 3333 - ...joueurs-blesses-et-suspendus.20191212.html | 1484 - .../__files/mlnstats.builds.20191218.json | 1 - .../__files/mlnstats.builds.20200106.json | 1 - .../__files/mlnstats.builds.20201006.json | 1 - .../__files/mlnstats.builds.20201021.json | 1 - .../__files/mlnstats.ligue-1.20201006.json | 1 - .../__files/mlnstats.ligue-1.20201021.json | 1 - .../__files/mlnstats.ligue-2.20201006.json | 1 - .../mlnstats.premier-league.20191218.json | 94905 ---------------- .../mlnstats.premier-league.20200217.json | 1 - .../mlnstats.premier-league.20201021.json | 1 - .../__files/mlnstats.serie-a.20201021.json | 1 - .../__files/mlnstats.serie-a.20210406.json | 1 - .../mpg.coach.MLEFEX6G.20210804-Request.json | 54 +- ...MLAX7HMK-status-3-waitMercatoNextTurn.json | 43 + ....available.players.MLEFEX6G.20210804.json} | 0 .../__files/mpgstats.leagues.20181114.json | 1 - .../__files/mpgstats.leagues.20181212.json | 5 - .../__files/mpgstats.leagues.20181220.json | 5 - .../__files/mpgstats.leagues.20190123.json | 5 - .../__files/mpgstats.leagues.20190202.json | 5 - .../__files/mpgstats.leagues.20190211.json | 1 - .../__files/mpgstats.leagues.20190217.json | 5 - .../__files/mpgstats.leagues.20190718.json | 7 - .../__files/mpgstats.leagues.20190724.json | 7 - .../__files/mpgstats.leagues.20190805.json | 7 - .../__files/mpgstats.leagues.20190806.json | 1 - .../__files/mpgstats.leagues.20190818.json | 1 - .../__files/mpgstats.leagues.20191212.json | 1 - .../__files/mpgstats.ligue-1.20181114.json | 1 - .../__files/mpgstats.ligue-1.20181212.json | 1 - .../__files/mpgstats.ligue-1.20181220.json | 1 - .../__files/mpgstats.ligue-1.20190123.json | 36193 ------ .../__files/mpgstats.ligue-1.20190202.json | 37379 ------ .../__files/mpgstats.ligue-1.20190211.json | 1 - .../__files/mpgstats.ligue-1.20190217.json | 39686 ------- .../__files/mpgstats.ligue-1.20190807.json | 1 - .../__files/mpgstats.ligue-1.20190818.json | 1 - .../__files/mpgstats.ligue-1.20191212.json | 1 - .../__files/mpgstats.ligue-2.20190718.json | 27 - .../__files/mpgstats.ligue-2.20190724.json | 2240 - .../__files/mpgstats.ligue-2.20190801.json | 12028 -- .../__files/mpgstats.ligue-2.20190806.json | 1 - .../__files/mpgstats.ligue-2.20190818.json | 1 - .../__files/mpgstats.ligue-2.20191212.json | 1 - .../mpgstats.premier-league.20190805.json | 20499 ---- .../mpgstats.premier-league.20190818.json | 1 - .../mpgstats.premier-league.20191212.json | 1 - .../mpgstats.premier-league.20191220.json | 1 - .../__files/mpgstats.serie-a.20190805.json | 20441 ---- .../sportsgambler.serie-a.20210406.html | 3220 - 73 files changed, 192 insertions(+), 301225 deletions(-) rename src/main/java/org/blondin/mpg/root/model/{TransferBuy.java => AvailablePlayers.java} (90%) delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20181114.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20181212.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20181220.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20190123.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20190202.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20190211.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20190217.html delete mode 100644 src/test/resources/__files/equipeactu.ligue-1.20190807.html delete mode 100644 src/test/resources/__files/equipeactu.premier-league.20191212.html delete mode 100644 src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20191212.html delete mode 100644 src/test/resources/__files/mlnstats.builds.20191218.json delete mode 100644 src/test/resources/__files/mlnstats.builds.20200106.json delete mode 100644 src/test/resources/__files/mlnstats.builds.20201006.json delete mode 100644 src/test/resources/__files/mlnstats.builds.20201021.json delete mode 100644 src/test/resources/__files/mlnstats.ligue-1.20201006.json delete mode 100644 src/test/resources/__files/mlnstats.ligue-1.20201021.json delete mode 100644 src/test/resources/__files/mlnstats.ligue-2.20201006.json delete mode 100644 src/test/resources/__files/mlnstats.premier-league.20191218.json delete mode 100644 src/test/resources/__files/mlnstats.premier-league.20200217.json delete mode 100644 src/test/resources/__files/mlnstats.premier-league.20201021.json delete mode 100644 src/test/resources/__files/mlnstats.serie-a.20201021.json delete mode 100644 src/test/resources/__files/mlnstats.serie-a.20210406.json create mode 100644 src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-waitMercatoNextTurn.json rename src/test/resources/__files/{mpg.trading.buy.MLEFEX6G.20210804.json => mpg.division.available.players.MLEFEX6G.20210804.json} (100%) delete mode 100644 src/test/resources/__files/mpgstats.leagues.20181114.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20181212.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20181220.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190123.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190202.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190211.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190217.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190718.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190724.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190805.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190806.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20190818.json delete mode 100644 src/test/resources/__files/mpgstats.leagues.20191212.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20181114.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20181212.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20181220.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20190123.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20190202.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20190211.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20190217.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20190807.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20190818.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-1.20191212.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-2.20190718.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-2.20190724.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-2.20190801.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-2.20190806.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-2.20190818.json delete mode 100644 src/test/resources/__files/mpgstats.ligue-2.20191212.json delete mode 100644 src/test/resources/__files/mpgstats.premier-league.20190805.json delete mode 100644 src/test/resources/__files/mpgstats.premier-league.20190818.json delete mode 100644 src/test/resources/__files/mpgstats.premier-league.20191212.json delete mode 100644 src/test/resources/__files/mpgstats.premier-league.20191220.json delete mode 100644 src/test/resources/__files/mpgstats.serie-a.20190805.json delete mode 100644 src/test/resources/__files/sportsgambler.serie-a.20210406.html diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index eea564c..28f7255 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,8 +24,7 @@ Depending your championship, join data files set in attachment. | division | `GET /division/mpg_division_MLEXXXXX_3_1` | Retrieve `mpg_team_MLEXXXXX_3_1_2` team for user league | | team | `GET /team/mpg_team_MLEXXXXX_3_1_2` | Retrieve Team and Bonus for team | | coach | `GET /division/mpg_division_MLEXXXXX_3_1/coach` | Retrieve formation | -| transfer | `GET /division/mpg_division_MLEXXXXX_3_1/available-players` | Retrieve available players | -| mercato | `GET TODO` | Retrieves players details for incoming mercato | +| availablePlayers | `GET /division/mpg_division_MLEXXXXX_3_1/available-players` | Retrieves available players details for incoming mercato or trading | | poolPlayer | `GET /championship-players-pool/X` | Retrieve league players details (With `X`: 1=Ligue-1 / 2=Premier-League / 3=Liga / 4=Ligue-2 / 5=Serie-A) | | clubs | `GET /championship-clubs` | Retrieve club names | diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 0b522af..9289e5f 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -10,7 +10,6 @@ import java.util.Map.Entry; import java.util.stream.Collectors; -import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.StringUtils; import org.blondin.mpg.config.Config; import org.blondin.mpg.out.ChampionshipOutType; @@ -35,7 +34,6 @@ import org.blondin.mpg.root.model.SelectedBonus; import org.blondin.mpg.root.model.TacticalSubstitute; import org.blondin.mpg.root.model.Team; -import org.blondin.mpg.root.model.TransferBuy; import org.blondin.mpg.stats.ChampionshipStatsType; import org.blondin.mpg.stats.MpgStatsClient; import org.blondin.mpg.stats.model.CurrentDay; @@ -74,13 +72,7 @@ public static void main(String[] args) { // NOSONAR : args used as file option, } static void process(ApiClients apiClients, Config config) { - for (League leagueOptionalMaster : apiClients.getMpg().getDashboard().getLeagues()) { - League league = leagueOptionalMaster; - - // TODO: Waiting feedback about Multiple division leagues - if (false && league.isMasterLeague()) { - league = league.getSubLeague(); - } + for (League league : apiClients.getMpg().getDashboard().getLeagues()) { if (LeagueStatus.TERMINATED.equals(league.getStatus()) || (!config.getLeaguesInclude().isEmpty() && !config.getLeaguesInclude().contains(league.getId())) || (!config.getLeaguesExclude().isEmpty() && config.getLeaguesExclude().contains(league.getId()))) { @@ -108,11 +100,12 @@ static void processLeague(League league, ApiClients apiClients, Config config) { processMercatoChampionship(league, apiClients, config); break; case MERCATO: - if (league.getTeamStatus() == 1) { + if (league.getCurrentTeamStatus() == 2) { LOG.info("\nMercato round is closed, come back soon for the next !\n"); return; } - if (league.getTeamStatus() == 2) { + if (league.getCurrentTeamStatus() == 2) { + // TODO : To analyse LOG.info("\nMercato will be ending, ready for your first match ?\n"); return; } @@ -126,7 +119,7 @@ static void processLeague(League league, ApiClients apiClients, Config config) { static void processMercatoLeague(League league, ApiClients apiClients, Config config) { LOG.info("\nProposal for your mercato:\n"); - List players = apiClients.getMpg().getMercato(league.getId()).getPlayers(); + List players = apiClients.getMpg().getAvailablePlayers(league.getDivisionId()).getAvailablePlayers(); completePlayersClub(players, apiClients.getMpg().getClubs()); calculateEfficiency(players, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, true); processMercato(players, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship())); @@ -195,11 +188,11 @@ static void processGames(League league, ApiClients apiClients, Config config) { Comparator.comparing(Player::getPosition).thenComparing(Player::getEfficiency).thenComparing(Player::getQuotation).reversed()); // Write optimized team - writeTeamOptimized(players); + writeTeamOptimized(players, config.isDebug()); // Auto-update team if (config.isTeampUpdate()) { - updateTeamWithRetry(apiClients.getMpg(), league, division, team, coach, players, config); + updateTeamWithRetry(apiClients.getMpg(), division, team, coach, players, config); } if (config.isTransactionsProposal()) { @@ -213,8 +206,7 @@ static void processGames(League league, ApiClients apiClients, Config config) { if (cd.getLastDayReached() < cd.getDay()) { LOG.info("\nWARNING: Last day stats have not fully reached! Please retry tomorrow"); } - TransferBuy transferBuy = apiClients.getMpg().getTransferBuy(league.getDivisionId()); - List playersAvailable = transferBuy.getAvailablePlayers(); + List playersAvailable = apiClients.getMpg().getAvailablePlayers(league.getDivisionId()).getAvailablePlayers(); completePlayersClub(playersAvailable, apiClients.getMpg().getClubs()); removeOutPlayers(playersAvailable, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship()), false); calculateEfficiency(playersAvailable, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, @@ -262,8 +254,7 @@ static void completePlayersTeam(Map teamPlayers, PoolPlayers poo } } - private static void updateTeamWithRetry(MpgClient mpgClient, League league, Division division, Team team, Coach coach, List players, - Config config) { + private static void updateTeamWithRetry(MpgClient mpgClient, Division division, Team team, Coach coach, List players, Config config) { LOG.info("\nUpdating team ..."); final long maxRetry = 10; for (int i = 1; i <= 10; i++) { @@ -386,7 +377,7 @@ static List removeOutPlayers(List players, InjuredSuspendedWrapp return players; } - private static void writeTeamOptimized(List players) { + private static void writeTeamOptimized(List players, boolean isDebug) { LOG.info("\nOptimized team:"); AsciiTable at = getTable(TABLE_POSITION, TABLE_PLAYER_NAME, TABLE_EFFICIENCY, TABLE_QUOTE); Position lp = Position.G; @@ -396,8 +387,11 @@ private static void writeTeamOptimized(List players) { lp = player.getPosition(); at.addRule(); } - AT_Row row = at.addRow(player.getPosition(), player.getName(), FORMAT_DECIMAL_DOUBLE.format(player.getEfficiency()), - player.getQuotation()); + String playerName = player.getName(); + if (isDebug) { + playerName += " (" + player.getId() + ")"; + } + AT_Row row = at.addRow(player.getPosition(), playerName, FORMAT_DECIMAL_DOUBLE.format(player.getEfficiency()), player.getQuotation()); setTableFormatRowPaddingSpace(row); row.getCells().get(2).getContext().setTextAlignment(TextAlignment.RIGHT); } @@ -446,7 +440,7 @@ private static List calculateEfficiency(List players, MpgStatsCl private static int getCurrentDay(MpgStatsClient stats, ChampionshipStatsType championship) { int daysPeriod = stats.getStats(championship).getInfos().getAnnualStats().getCurrentDay().getDay(); // If league not started, we take the number of day of season, because average will be on this period - if (daysPeriod == 0) { + if (daysPeriod == 0 || stats.getStats(championship).getInfos().getAnnualStats().getCurrentDay().getPlayed() == 0) { // The previous season statistics could be null, in this case current annual max day is used daysPeriod = stats.getStats(championship).getInfos().getLastStats() == null ? stats.getStats(championship).getInfos().getAnnualStats().getMaxDay() @@ -476,7 +470,6 @@ private static CoachRequest getCoachRequest(Team team, Coach coach, List List attackers = players.stream().filter(p -> p.getPosition().equals(Position.A)).collect(Collectors.toList()); String playerIdForBonus = midfielders.get(0).getId(); - // TODO complete with correct bonus request.setBonusSelected(selectBonus(coach.getBonusSelected(), team.getBonuses(), gameRemaining, config.isUseBonus(), playerIdForBonus)); // Main lines @@ -540,15 +533,16 @@ static void verifyBonusPlayerOverrideOnPitch(CoachRequest request, String player static SelectedBonus selectBonus(SelectedBonus previousBonus, Map bonuses, int matchsRemaining, boolean useBonus, String playerIdIfNeeded) { - SelectedBonus bonusSelected = ObjectUtils.defaultIfNull(previousBonus, new SelectedBonus()); - if (!useBonus || bonusSelected.getName() != null) { - return bonusSelected; + if (!useBonus || (previousBonus != null && previousBonus.getName() != null)) { + return previousBonus; } if (bonuses == null) { throw new UnsupportedOperationException("Bonus is null, technical problem"); } + SelectedBonus bonusSelected = null; if (bonuses.values().stream().reduce(0, Integer::sum) >= matchsRemaining) { String bonus = getBestBonus(bonuses, matchsRemaining); + bonusSelected = new SelectedBonus(); bonusSelected.setName(bonus); if ("boostOnePlayer".equals(bonus)) { bonusSelected.setPlayerId(playerIdIfNeeded); @@ -590,7 +584,7 @@ private static void setTacticalSubstitute(CoachRequest request, int playerIdSubs if (StringUtils.isBlank(playerIdSubstitute) || StringUtils.isBlank(playerIdStart)) { return; } - request.getTacticalsubstitutes().add(new TacticalSubstitute(playerIdSubstitute, playerIdStart, rating)); + request.getTacticalSubstitutes().add(new TacticalSubstitute(playerIdSubstitute, playerIdStart, rating)); } private static AsciiTable getTable(Object... columnTitle) { diff --git a/src/main/java/org/blondin/mpg/config/Config.java b/src/main/java/org/blondin/mpg/config/Config.java index 435399d..f9185f8 100644 --- a/src/main/java/org/blondin/mpg/config/Config.java +++ b/src/main/java/org/blondin/mpg/config/Config.java @@ -44,6 +44,7 @@ public class Config { private boolean sslCertificatesCheck = true; private List requestWaitUrls = Arrays.asList("https://www.sportsgambler.com"); private int requestWaitTime = 1; + private boolean debug = false; private Config() { super(); @@ -71,7 +72,7 @@ public static Config build(String file) { configEfficiencySell(config, properties); configProxy(config, properties); configRequestWait(config, properties); - configLogs(properties); + configLogs(config, properties); return config; } @@ -155,8 +156,9 @@ private static void configEfficiencySell(Config config, Properties properties) { config.efficiencySellGoalkeeper = parseFloat(properties, "efficiency.sell.goalkeeper", config.efficiencySellGoalkeeper); } - private static void configLogs(Properties properties) { + private static void configLogs(Config config, Properties properties) { if (parseBoolean(properties, "logs.debug", false)) { + config.debug = true; Configurator.setLevel(Main.class.getPackage().getName(), Level.DEBUG); } } @@ -274,4 +276,7 @@ public boolean isSslCertificatesCheck() { return sslCertificatesCheck; } + public boolean isDebug() { + return debug; + } } diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index dfa0d3f..079883b 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -16,11 +16,9 @@ import org.blondin.mpg.root.model.CoachRequest; import org.blondin.mpg.root.model.Dashboard; import org.blondin.mpg.root.model.Division; -import org.blondin.mpg.root.model.Mercato; -import org.blondin.mpg.root.model.MercatoLeague; import org.blondin.mpg.root.model.PoolPlayers; import org.blondin.mpg.root.model.Team; -import org.blondin.mpg.root.model.TransferBuy; +import org.blondin.mpg.root.model.AvailablePlayers; import org.blondin.mpg.root.model.UserSignIn; /** @@ -28,8 +26,6 @@ */ public class MpgClient extends AbstractClient { - public static final String MPG_CLIENT_VERSION = "8.2.0"; - private final MultivaluedMap headers = new MultivaluedHashMap<>(); private EnumMap cachePlayers = new EnumMap<>(ChampionshipType.class); @@ -83,15 +79,11 @@ public Coach getCoach(String leagueDivisionId) { return get("division/" + leagueDivisionId + "/coach", headers, Coach.class); } - public Mercato getMercato(String league) { - return get("todo-currently-not-found/" + league + "/mercato", headers, MercatoLeague.class); - } - - public TransferBuy getTransferBuy(String leagueDivisionId) { + public AvailablePlayers getAvailablePlayers(String leagueDivisionId) { if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); } - return get("division/" + leagueDivisionId + "/available-players", headers, TransferBuy.class); + return get("division/" + leagueDivisionId + "/available-players", headers, AvailablePlayers.class); } public PoolPlayers getPoolPlayers(ChampionshipType championship) { @@ -117,7 +109,6 @@ private void signIn(String login, String password) { UserSignIn usi = post("user/sign-in", entity, UserSignIn.class); this.userId = usi.getUserId(); headers.add("authorization", usi.getToken()); - // headers.add("client-version", MPG_CLIENT_VERSION); } public void updateCoach(String matchId, CoachRequest coachRequest) { @@ -125,8 +116,8 @@ public void updateCoach(String matchId, CoachRequest coachRequest) { throw new UnsupportedOperationException(String.format("Coach match id '%s' should start with 'mpg_match_team_formation_'", matchId)); } String result = put("/match-team-formation/" + matchId, headers, coachRequest, String.class); - if (!"{\"success\":\"teamSaved\"}".equals(result)) { - throw new UnsupportedOperationException(String.format("The team has been updated, result message: %s", result)); + if (!"{\"success\":true}".equals(result)) { + throw new UnsupportedOperationException(String.format("The team has not been updated, result message: %s", result)); } } diff --git a/src/main/java/org/blondin/mpg/root/model/TransferBuy.java b/src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java similarity index 90% rename from src/main/java/org/blondin/mpg/root/model/TransferBuy.java rename to src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java index 0eca72f..2c959dc 100644 --- a/src/main/java/org/blondin/mpg/root/model/TransferBuy.java +++ b/src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java @@ -6,7 +6,7 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties; @JsonIgnoreProperties(ignoreUnknown = true) -public class TransferBuy { +public class AvailablePlayers { private List availablePlayers; diff --git a/src/main/java/org/blondin/mpg/root/model/CoachRequest.java b/src/main/java/org/blondin/mpg/root/model/CoachRequest.java index b6c6973..966922e 100644 --- a/src/main/java/org/blondin/mpg/root/model/CoachRequest.java +++ b/src/main/java/org/blondin/mpg/root/model/CoachRequest.java @@ -3,35 +3,37 @@ import java.util.ArrayList; import java.util.List; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.fasterxml.jackson.annotation.JsonProperty; public class CoachRequest { + @JsonProperty("composition") + private String composition; @JsonProperty("playersOnPitch") private PlayersOnPitch playersOnPitch = new PlayersOnPitch(); - @JsonProperty("composition") - private int composition; - - @JsonProperty("tacticalsubstitutes") - private List tacticalsubstitutes = new ArrayList<>(); + @JsonProperty("tacticalSubs") + private List tacticalSubstitutes = new ArrayList<>(); @JsonProperty("selectedBonus") - private SelectedBonus bonusSelected = new SelectedBonus(); + @JsonInclude(Include.NON_NULL) + private SelectedBonus bonusSelected; public CoachRequest(int composition) { if (composition < 343 || composition > 541) { throw new UnsupportedOperationException(String.format("Invalid composition: %s", composition)); } - this.composition = composition; + this.composition = String.valueOf(composition); } public PlayersOnPitch getPlayersOnPitch() { return playersOnPitch; } - public List getTacticalsubstitutes() { - return tacticalsubstitutes; + public List getTacticalSubstitutes() { + return tacticalSubstitutes; } public SelectedBonus getBonusSelected() { diff --git a/src/main/java/org/blondin/mpg/root/model/League.java b/src/main/java/org/blondin/mpg/root/model/League.java index 3065631..a2b0248 100644 --- a/src/main/java/org/blondin/mpg/root/model/League.java +++ b/src/main/java/org/blondin/mpg/root/model/League.java @@ -17,11 +17,7 @@ public class League { private ChampionshipType championship; private LeagueStatus status; private Mode mode; - private int teamStatus; - @JsonProperty("isMasterLeague") - private boolean isMasterLeague; - @JsonProperty("league") - private League subLeague; + private int currentTeamStatus; public String getId() { return StringUtils.removeStart(leagueId, "mpg_league_"); @@ -51,24 +47,8 @@ public Mode getMode() { return mode; } - public int getTeamStatus() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return teamStatus; + public int getCurrentTeamStatus() { + return currentTeamStatus; } - public boolean isMasterLeague() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return isMasterLeague; - } - - public League getSubLeague() { - if (true) { - throw new UnsupportedOperationException("Usage should be analysed"); - } - return subLeague; - } } diff --git a/src/main/java/org/blondin/mpg/root/model/TacticalSubstitute.java b/src/main/java/org/blondin/mpg/root/model/TacticalSubstitute.java index e64a3a1..5c0a29b 100644 --- a/src/main/java/org/blondin/mpg/root/model/TacticalSubstitute.java +++ b/src/main/java/org/blondin/mpg/root/model/TacticalSubstitute.java @@ -4,15 +4,15 @@ public class TacticalSubstitute { - @JsonProperty("subs") + @JsonProperty("rating") + private float rating; + + @JsonProperty("subId") private String playerIdSubstitute; - @JsonProperty("start") + @JsonProperty("starterId") private String playerIdStart; - @JsonProperty("rating") - private float rating; - public TacticalSubstitute(String playerIdSubstitute, String playerIdStart, float rating) { this.playerIdSubstitute = playerIdSubstitute; this.playerIdStart = playerIdStart; diff --git a/src/main/java/org/blondin/mpg/stats/model/CurrentDay.java b/src/main/java/org/blondin/mpg/stats/model/CurrentDay.java index 84601a9..700795f 100644 --- a/src/main/java/org/blondin/mpg/stats/model/CurrentDay.java +++ b/src/main/java/org/blondin/mpg/stats/model/CurrentDay.java @@ -12,6 +12,9 @@ public class CurrentDay { @JsonProperty("lD") private int lastDayReached; + @JsonProperty("p") + private int played; + public int getDay() { return day; } @@ -20,4 +23,8 @@ public int getLastDayReached() { return lastDayReached; } + public int getPlayed() { + return played; + } + } diff --git a/src/test/java/org/blondin/mpg/BonusSelectionTest.java b/src/test/java/org/blondin/mpg/BonusSelectionTest.java index 7b3f069..adece30 100644 --- a/src/test/java/org/blondin/mpg/BonusSelectionTest.java +++ b/src/test/java/org/blondin/mpg/BonusSelectionTest.java @@ -49,7 +49,7 @@ public void testBonusSelection() { Assert.assertEquals("boostOnePlayer", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), 0, true, "fake").getName()); Assert.assertEquals("fake", Main.selectBonus(null, getBonus(0, 0, 0, 1, 0, 0, 0), 0, true, "fake").getPlayerId()); Assert.assertNull(Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), 0, true, "fake").getPlayerId()); - Assert.assertNull(Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 15, true, "fake").getName()); + Assert.assertNull(Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 15, true, "fake")); Assert.assertEquals("boostAllPlayers", Main.selectBonus(null, getBonus(0, 1, 0, 1, 1, 1, 1), 0, true, "fake").getName()); Assert.assertEquals("removeGoal", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 0, true, "fake").getName()); Assert.assertEquals("removeRandomPlayer", Main.selectBonus(null, getBonus(1, 1, 1, 3, 1, 1, 1), 9, true, "fake").getName()); @@ -64,9 +64,7 @@ public void testBonusAlreadySelected() { @Test public void testBonusSelectionNotUsed() { // No previous bonus - Assert.assertNotNull(Main.selectBonus(null, null, 0, false, "fake")); - Assert.assertNull(Main.selectBonus(null, null, 0, false, "fake").getName()); - Assert.assertNull(Main.selectBonus(null, null, 0, false, "fake").getPlayerId()); + Assert.assertNull(Main.selectBonus(null, null, 0, false, "fake")); // Previous bonus wallet SelectedBonus bs = getBonusSelected("removeGoal"); diff --git a/src/test/java/org/blondin/mpg/MainTest.java b/src/test/java/org/blondin/mpg/MainTest.java index c2a0c3b..c6b9226 100644 --- a/src/test/java/org/blondin/mpg/MainTest.java +++ b/src/test/java/org/blondin/mpg/MainTest.java @@ -1,14 +1,11 @@ package org.blondin.mpg; import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; -import static com.github.tomakehurst.wiremock.client.WireMock.equalTo; import static com.github.tomakehurst.wiremock.client.WireMock.equalToJson; import static com.github.tomakehurst.wiremock.client.WireMock.get; -import static com.github.tomakehurst.wiremock.client.WireMock.getRequestedFor; import static com.github.tomakehurst.wiremock.client.WireMock.post; +import static com.github.tomakehurst.wiremock.client.WireMock.put; import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; -import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching; -import static com.github.tomakehurst.wiremock.client.WireMock.verify; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.spy; @@ -18,7 +15,6 @@ import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Arrays; -import java.util.Collections; import java.util.Date; import javax.ws.rs.ProcessingException; @@ -30,9 +26,7 @@ import org.blondin.mpg.config.Config; import org.blondin.mpg.out.InjuredSuspendedWrapperClient; import org.blondin.mpg.root.MpgClient; -import org.blondin.mpg.stats.ChampionshipStatsType; import org.blondin.mpg.stats.MpgStatsClient; -import org.blondin.mpg.test.io.ConsoleTestAppender; import org.junit.Assert; import org.junit.Test; @@ -70,6 +64,25 @@ public void testRealWithBadCredentials() throws Exception { } } + @Test + public void testWaitMercatoNextTurnWithConnectionReset() throws Exception { + // CONNECTION_RESET_BY_PEER doesn't work on Windows (block response), EMPTY_RESPONSE throws a SocketException too + final String scenario = "Retry Scenario Connection Reset"; + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs(Scenario.STARTED).willSetStateTo("SocketException") + .willReturn(aResponse().withFault(Fault.EMPTY_RESPONSE))); + // Don't understand why too fault request necessary to have only one :/ + stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs("SocketException").willSetStateTo("ValidResponse") + .willReturn(aResponse().withFault(Fault.EMPTY_RESPONSE))); + stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs("ValidResponse").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLAX7HMK-status-3-waitMercatoNextTurn.json"))); + Config config = spy(getConfig()); + doReturn(Arrays.asList("MLAX7HMK")).when(config).getLeaguesInclude(); + executeMainProcess(config); + Assert.assertTrue(getLogOut(), getLogOut().contains("Mercato round is closed, come back soon for the next !")); + } + @Test public void testPrepareMercatoTurn0Day0() throws Exception { prepareMainFrenchLigue1Mocks("MLAX7HMK-status-1", "2021", "20210805", "20210805"); @@ -80,10 +93,10 @@ public void testPrepareMercatoTurn0Day0() throws Exception { Assert.assertTrue(getLogOut(), getLogOut().contains("Proposal for your coming soon mercato")); // When championship not started (incoming day 1 in statistics), the previous year should be taken - Assert.assertTrue(getLogOut(), getLogOut().contains("| A | Mbappé Kylian | 6315.94 | 40 |")); + Assert.assertTrue(getLogOut(), getLogOut().contains("| A | Mbappé Kylian | 166.21 | 40 | |")); // Test some injuries - Assert.assertTrue(getLogOut(), getLogOut().contains("| D | Maripán Guillermo | 919.24 | 18 | INJURY_RED - Leg injury - Mid July |")); + Assert.assertTrue(getLogOut(), getLogOut().contains("| D | Maripán Guillermo | 24.19 | 18 | INJURY_RED - Leg injury - Mid July |")); } @Test @@ -93,17 +106,19 @@ public void testProcessFromEmptyCoach() throws Exception { doReturn(true).when(config).isTeampUpdate(); doReturn(true).when(config).isUseBonus(); doReturn(true).when(config).isTransactionsProposal(); + doReturn(true).when(config).isDebug(); stubFor(get("/division/mpg_division_MLEFEX6G_3_1") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.MLEFEX6G.20210804.json"))); stubFor(get("/team/mpg_team_MLEFEX6G_3_1_2") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.team.MLEFEX6G.20210804.json"))); stubFor(get("/division/mpg_division_MLEFEX6G_3_1/coach") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20210804.empty.json"))); - stubFor(get("/division/mpg_division_MLEFEX6G_3_1/available-players") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.trading.buy.MLEFEX6G.20210804.json"))); - stubFor(post("/match-team-formation/mpg_match_team_formation_MLEFEX6G_3_1_2_2_2") + stubFor(get("/division/mpg_division_MLEFEX6G_3_1/available-players").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.available.players.MLEFEX6G.20210804.json"))); + stubFor(put("/match-team-formation/mpg_match_team_formation_MLEFEX6G_3_1_2_2_2") .withRequestBody(equalToJson(getTestFileToString("mpg.coach.MLEFEX6G.20210804-Request.json"))) - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBody("{\"success\":\"teamSaved\"}"))); + .willReturn(aResponse().withStatus(Response.Status.OK.getStatusCode()).withHeader("Content-Type", "application/json") + .withBody("{\"success\":true}"))); // TODO: Output should be checked with realcase executeMainProcess(config); Assert.assertTrue(getLogOut(), getLogOut().contains("Ligue 2 Fous")); @@ -112,1039 +127,10 @@ public void testProcessFromEmptyCoach() throws Exception { Assert.assertTrue(getLogOut(), getLogOut().contains("Transactions proposal")); } - // TODO: Remove below methods - - @Test - public void testBonusUberEatsUpdate() throws Exception { - prepareMainFrenchLigue1Mocks("KLGXSSUG-status-4", "20181114", "20181114", "20181114"); - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(false).when(config).isUseBonus(); - stubFor(get("/league/KLGXSSUG/coach").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20181114-Complete-BoostInjuredPlayer.json"))); - stubFor(post("/league/KLGXSSUG/coach") - .withRequestBody(equalToJson(getTestFileToString("mpg.coach.20181114-Complete-BoostInjuredPlayer-Request.json"))) - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.post.success.json"))); - executeMainProcess(config); - Assert.assertTrue(getLogOut(), getLogOut().contains("Updating team")); - } - - @Test - public void testTransactionsProposalIndexOutOfBoundsException() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20200106.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB.json"))); - stubFor(get("/league/MN7VSYBM/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MN7VSYBM.20210406.json"))); - stubFor(get("/league/MN7VSYBM/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.MN7VSYBM.20210406.json"))); - stubFor(get("/leagues/Serie-A") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.serie-a.20210406.json"))); - stubFor(get("/injuries/football/italy-serie-a/") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("sportsgambler.serie-a.20210406.html"))); - - // Only SerieA - Config config = spy(getConfig()); - doReturn(Arrays.asList("MN7VSYBM")).when(config).getLeaguesInclude(); - doReturn(true).when(config).isTransactionsProposal(); - - executeMainProcess(config); - - // 3 goalkeepers proposed - Assert.assertTrue(getLogOut(), getLogOut().contains("| G | Montipò Lorenzo | 4.97 | 13 |")); - Assert.assertTrue(getLogOut(), getLogOut().contains("| G | Sepe Luigi | 4.78 | 11 |")); - Assert.assertTrue(getLogOut(), getLogOut().contains("| G | Provedel Ivan | 3.93 | 13 |")); - - // Current players under buy should not be part of budget - Assert.assertTrue(getLogOut(), getLogOut().contains("Budget: 2")); - Assert.assertTrue(getLogOut(), getLogOut().contains("Budget if last field players by line sold: 36")); - } - - @Test - public void testInjuredLigue2ServiceUnavailable() throws Exception { - prepareMainFrenchLigue2Mocks("MLAX7HMK-MLEFEX6G", "20201006", "20201006", null); - stubFor(get("/2020/08/20/joueurs-blesses-et-suspendus/") - .willReturn(aResponse().withStatus(Response.Status.SERVICE_UNAVAILABLE.getStatusCode()))); - stubFor(get("/league/MLEFEX6G/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20201006.json"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("MLEFEX6G")).when(config).getLeaguesInclude(); - executeMainProcess(config); - - Assert.assertTrue("Maligue2.fr is unavailable", getLogOut().contains("L2 injured/suspended players not taken into account")); - } - - @Test - public void testInjuredSuspendedSportsGamblerFallBackEquipeActu() throws Exception { - prepareMainFrenchLigueMocks("MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB", 1, null, "20201021", null, "20201006", null); - stubFor(get("/league/MLAX7HMK/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLAX7HMK.20201021.json"))); - // 403 for sportgambler - stubFor(get("/injuries/football/france-ligue-1/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - - // Only L1 - Config config = spy(getConfig()); - doReturn(Arrays.asList("MLAX7HMK")).when(config).getLeaguesInclude(); - - executeMainProcess(config); - - // Asserts - Assert.assertTrue(getLogOut().contains("========== Des Cartons ==========")); - verify(1, getRequestedFor(urlMatching("/injuries/football/france-ligue-1/"))); - verify(1, getRequestedFor(urlMatching("/blessures-et-suspensions/fodbold/france/ligue-1"))); - } - - @Test - public void testInjuredSuspendedSportsGambler() throws Exception { - - // L1 (MLAX7HMK) - prepareMainFrenchLigue1Mocks("MLAX7HMK-MLEFEX6G-MN7VSYBM-MLMHBPCB", "20201021", "20201021", "20201020"); - stubFor(get("/league/MLAX7HMK/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLAX7HMK.20201021.json"))); - - // PL (MLMHBPCB) - stubFor(get("/league/MLMHBPCB/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLMHBPCB.20201021.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.premier-league.20201021.json"))); - stubFor(get("/injuries/football/england-premier-league/") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("sportsgambler.premier-league.20201020.html"))); - - // Serie A (MN7VSYBM) - stubFor(get("/league/MN7VSYBM/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MN7VSYBM.20201021.json"))); - stubFor(get("/leagues/Serie-A") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.serie-a.20201021.json"))); - stubFor(get("/injuries/football/italy-serie-a/") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("sportsgambler.serie-a.20201020.html"))); - - // Exclude L2 (in dashboard) - Config config = spy(getConfig()); - doReturn(Arrays.asList("MLEFEX6G")).when(config).getLeaguesExclude(); - executeMainProcess(config); - - // Ligue 1 - Assert.assertTrue("Verratti Marco injured", getLogOut().contains("Out: Verratti Marco (M - 4.07) - INJURY_RED - Unknown - Early November")); - Assert.assertTrue("Caqueret Maxence injured", getLogOut().contains("Out: Caqueret Maxence (M - 3.71) - INJURY_RED - COVID-19 - A few weeks")); - - // PL - Assert.assertTrue("Vardy Jamie injured", getLogOut().contains("Out: Vardy Jamie (A - 32.93) - INJURY_ORANGE - Calf Injury - Doubtful")); - - // Serie A - Assert.assertTrue("Alex Sandro injured", getLogOut().contains("Out: Alex Sandro (D - 0.00) - INJURY_ORANGE - Thigh injury - Doubtful")); - - } - - @Test - public void testInjuredLigue1FrenchAccent() throws Exception { - prepareMainFrenchLigue1Mocks("MLAX7HMK-MLEFEX6G", "20201006", "20201006", "20201006"); - stubFor(get("/league/MLAX7HMK/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLAX7HMK.20201006.json"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("MLAX7HMK")).when(config).getLeaguesInclude(); - executeMainProcess(config); - - Assert.assertTrue("Michelin Clement injured", getLogOut().contains("Out: Michelin Clement")); - } - - @Test - public void testInjuredLigue2FrenchAccent() throws Exception { - prepareMainFrenchLigue2Mocks("MLAX7HMK-MLEFEX6G", "20201006", "20201006", "20201006"); - stubFor(get("/league/MLEFEX6G/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.MLEFEX6G.20201006.json"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("MLEFEX6G")).when(config).getLeaguesInclude(); - executeMainProcess(config); - - Assert.assertTrue("Barthelme Maxime injured", getLogOut().contains("Out: Barthelme Maxime")); - } - - @Test - public void testConnectionReset() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - - // CONNECTION_RESET_BY_PEER doesn't work on Windows (block response), EMPTY_RESPONSE throws a SocketException too - final String scenario = "Retry Scenario Connection Reset"; - stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs(Scenario.STARTED).willSetStateTo("SocketException") - .willReturn(aResponse().withFault(Fault.EMPTY_RESPONSE))); - // Don't understand why too fault request necessary to have only one :/ - stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs("SocketException").willSetStateTo("ValidResponse") - .willReturn(aResponse().withFault(Fault.EMPTY_RESPONSE))); - stubFor(get("/dashboard/leagues").inScenario(scenario).whenScenarioStateIs("ValidResponse").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("LJV92C9Y", "LJT3FXDF", "LH9HKBTD")).when(config).getLeaguesExclude(); - executeMainProcess(config); - // Log in debug, not testable, so just check process is OK - Assert.assertTrue(true); - } - - @Test - public void testTransactionProposalWithoutStatsFullyReached() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); - stubFor(get("/league/LJT3FXDF/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.LJT3FXDF.20200217.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20200106.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.premier-league.20200217.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20191212.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - doReturn(true).when(config).isTransactionsProposal(); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesInclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("========== Peter Ouch ==========")); - Assert.assertTrue(getLogOut().contains("WARNING: Last day stats have not fully reached! Please retry tomorrow")); - } - - @Test - public void testLeagueStartPlayerToKept() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LJV92C9Y-LH9HKBTD-status-6.json"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesExclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("Some users should select players to kept before Mercato can start, come back soon")); - } - - @Test - public void testPlayersStatsLeagueRefreshDateInvalid() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20200106.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.premier-league.20191218.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20191212.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesInclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("========== Peter Ouch ==========")); - } - - @Test - public void testMlnstatsEfficiencyRecentFocus() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20191218.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.premier-league.20191218.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20191212.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesInclude(); - executeMainProcess(config); - - // Main team - Assert.assertTrue(getLogOut().contains("| G | Schmeichel Kasper | 5.75 | 24 |")); - Assert.assertTrue(getLogOut().contains("| G | Pope Nick | 5.00 | 13 |")); - Assert.assertTrue(getLogOut().contains("| D | Willems Jetro | 11.40 | 16 |")); - Assert.assertTrue(getLogOut().contains("| D | Doherty Matt | 10.13 | 14 |")); - Assert.assertTrue(getLogOut().contains("| D | Cresswell Aaron | 9.38 | 12 |")); - Assert.assertTrue(getLogOut().contains("| D | David Luiz | 7.21 | 18 |")); - Assert.assertTrue(getLogOut().contains("| M | Fleck John | 31.51 | 16 |")); - Assert.assertTrue(getLogOut().contains("| M | Maddison James | 28.01 | 35 |")); - Assert.assertTrue(getLogOut().contains("| M | Grealish Jack | 12.39 | 26 |")); - Assert.assertTrue(getLogOut().contains("| M | Tielemans Youri | 12.05 | 24 |")); - Assert.assertTrue(getLogOut().contains("| M | Wilfred Ndidi | 6.44 | 27 |")); - Assert.assertTrue(getLogOut().contains("| M | McGinn John | 5.38 | 23 |")); - Assert.assertTrue(getLogOut().contains("| M | Hendrick Jeff | 4.56 | 14 |")); - Assert.assertTrue(getLogOut().contains("| A | Vardy Jamie | 90.22 | 50 |")); - Assert.assertTrue(getLogOut().contains("| A | Mané Sadio | 32.99 | 53 |")); - Assert.assertTrue(getLogOut().contains("| A | Gray Andre | 9.64 | 10 |")); - Assert.assertTrue(getLogOut().contains("| A | Wesley | 3.94 | 16 |")); - } - - @Test - public void testMlnstatsEfficiencyYearAverage() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20191218.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.premier-league.20191218.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20191212.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isEfficiencyRecentFocus(); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesInclude(); - executeMainProcess(config); - - // Main team - Assert.assertTrue(getLogOut().contains("| G | Schmeichel Kasper | 5.82 | 24 |")); - Assert.assertTrue(getLogOut().contains("| G | Pope Nick | 5.29 | 13 |")); - Assert.assertTrue(getLogOut().contains("| D | Doherty Matt | 14.61 | 14 |")); - Assert.assertTrue(getLogOut().contains("| D | Willems Jetro | 13.92 | 16 |")); - Assert.assertTrue(getLogOut().contains("| D | Cresswell Aaron | 13.78 | 12 |")); - Assert.assertTrue(getLogOut().contains("| D | David Luiz | 12.28 | 18 |")); - Assert.assertTrue(getLogOut().contains("| M | Maddison James | 36.59 | 35 |")); - Assert.assertTrue(getLogOut().contains("| M | Grealish Jack | 27.53 | 26 |")); - Assert.assertTrue(getLogOut().contains("| M | Fleck John | 26.61 | 16 |")); - Assert.assertTrue(getLogOut().contains("| M | McGinn John | 25.15 | 23 |")); - Assert.assertTrue(getLogOut().contains("| M | Tielemans Youri | 23.82 | 24 |")); - Assert.assertTrue(getLogOut().contains("| M | Wilfred Ndidi | 18.41 | 27 |")); - Assert.assertTrue(getLogOut().contains("| M | Hendrick Jeff | 12.87 | 14 |")); - Assert.assertTrue(getLogOut().contains("| A | Vardy Jamie | 123.02 | 50 |")); - Assert.assertTrue(getLogOut().contains("| A | Mané Sadio | 66.64 | 53 |")); - Assert.assertTrue(getLogOut().contains("| A | Wesley | 26.80 | 16 |")); - Assert.assertTrue(getLogOut().contains("| A | Gray Andre | 14.21 | 10 |")); - } - - @Test - public void testUseBonusInt0() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LH9HKBTD-LJV92C9Y-LJT3FXDF.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191220.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds.20191218.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20191220.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20191220.html"))); - stubFor(post("/league/LJT3FXDF/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LJT3FXDF.20191220-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesInclude(); - doReturn(true).when(config).isTeampUpdate(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - // Nothing displayed in log about bonus usage - Assert.assertTrue(getLogOut().contains("========== Peter Ouch ==========")); - } - - @Test - public void testUseBonus() throws Exception { - prepareMainFrenchLigue2Mocks("LH9HKBTD-LJV92C9Y-LJT3FXDF", "20191212", "20191212", "20191212"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20191212.json"))); - stubFor(post("/league/LH9HKBTD/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LH9HKBTD.20191212-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - // EquipeActu past data ... the 20191212 was corrupted - prepareMainFrenchLigue1Mocks("LH9HKBTD-LJV92C9Y-LJT3FXDF", "20191212", "20191212", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20191212.json"))); - stubFor(post("/league/LJV92C9Y/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LJV92C9Y.20191212-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20191212.json"))); - stubFor(post("/league/LJT3FXDF/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LJT3FXDF.20191212-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20191212.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20191212.html"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - // Nothing displayed in log about bonus usage - Assert.assertTrue(getLogOut().contains("========== D2 MAX ==========")); - Assert.assertTrue(getLogOut().contains("========== GWADA BOYS ==========")); - Assert.assertTrue(getLogOut().contains("========== Peter Ouch ==========")); - } - - @Test - public void testUseBonusRedBull() throws Exception { - prepareMainFrenchLigue2Mocks("LH9HKBTD-LJV92C9Y-LJT3FXDF", "20191212", "20191212", "20191212"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20191212.redbull.json"))); - stubFor(post("/league/LH9HKBTD/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LH9HKBTD.20191212.redbull-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - Config config = spy(getConfig()); - doReturn(Arrays.asList("LH9HKBTD")).when(config).getLeaguesInclude(); - doReturn(true).when(config).isTeampUpdate(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - // Nothing displayed in log about bonus usage - Assert.assertTrue(getLogOut().contains("========== D2 MAX ==========")); - } - - @Test - public void testMultipleDivisions() throws Exception { - prepareMainFrenchLigue1Mocks("multiple-divisions", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("========== Division 2 ==========")); - } - - @Test - public void testSkipChampionsLeague() throws Exception { - prepareMainFrenchLigueMocks("LM65L48T", -1, null, null, null, null, null); - executeMainProcess(); - Assert.assertTrue(getLogOut().contains("Sorry, Champions League is currently not supported.")); - } - - @Test - public void testLeaguesInclude2() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20190818.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20190818.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20190911.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Arrays.asList("LJV92C9Y", "LJT3FXDF")).when(config).getLeaguesInclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertTrue(getLogOut().contains("FAKE PL")); - } - - @Test - public void testLeaguesInclude1() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Arrays.asList("LJV92C9Y")).when(config).getLeaguesInclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertFalse(getLogOut().contains("FAKE PL")); - } - - @Test - public void testLeaguesInclude0() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20190818.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20190818.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20190911.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Collections.emptyList()).when(config).getLeaguesInclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertTrue(getLogOut().contains("FAKE PL")); - } - - @Test - public void testLeaguesExclude2() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Arrays.asList("LJV92C9Y", "LJT3FXDF")).when(config).getLeaguesExclude(); - executeMainProcess(config); - Assert.assertFalse(getLogOut().contains("FAKE L1")); - Assert.assertFalse(getLogOut().contains("FAKE PL")); - } - - @Test - public void testLeaguesExclude1() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesExclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertFalse(getLogOut().contains("FAKE PL")); - } - - @Test - public void testLeaguesExclude0() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20190818.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20190818.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20190911.html"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Collections.emptyList()).when(config).getLeaguesExclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertTrue(getLogOut().contains("FAKE PL")); - } - - @Test - public void testLeaguesIncludeAndExclude() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(Arrays.asList("LJV92C9Y", "LJT3FXDF")).when(config).getLeaguesInclude(); - doReturn(Arrays.asList("LJT3FXDF")).when(config).getLeaguesExclude(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertFalse(getLogOut().contains("FAKE PL")); - } - - @Test - public void testFrenchL2OutPlayersSecond() throws Exception { - // Jacob (Niort) should be in team - prepareMainFrenchLigue2Mocks("LH9HKBTD-status-4-championship-4", "20190818", "20190818", "20190823"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20190818.json"))); - stubFor(post("/league/LH9HKBTD/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LH9HKBTD.20190818-Request-2.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("Out: Boissier Remy")); - Assert.assertTrue(getLogOut().contains("Out: Gastien Johan")); - Assert.assertFalse(getLogOut().contains("Out: Jacob Valentin")); - } - - @Test - public void testFrenchL2OutPlayersFirst() throws Exception { - // Boissier (Le Mans) should not be in team - prepareMainFrenchLigue2Mocks("LH9HKBTD-status-4-championship-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20190818.json"))); - stubFor(post("/league/LH9HKBTD/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LH9HKBTD.20190818-Request-1.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("Out: Boissier Remy")); - Assert.assertFalse(getLogOut().contains("Out: Martin Florian")); - } - - @Test - public void testNoblankOnSubstitutesBench() throws Exception { - prepareMainFrenchLigue1Mocks("LJV92C9Y.LJT3FXDF-status-4", "20190818", "20190818", "20190818"); - stubFor(get("/league/LJV92C9Y/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJV92C9Y.20190818.json"))); - stubFor(get("/league/LJT3FXDF/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LJT3FXDF.20190818.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20190818.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20190911.html"))); - stubFor(post("/league/LJT3FXDF/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LJT3FXDF.20190818-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - stubFor(post("/league/LJV92C9Y/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.LJV92C9Y.20190818-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(false).when(config).isTacticalSubstitutes(); - executeMainProcess(config); - Assert.assertTrue(getLogOut().contains("FAKE L1")); - Assert.assertTrue(getLogOut().contains("FAKE PL")); - } - - @Test - public void testMercatoEnding() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues").willReturn( - aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.qyOG7BuuZcv-status-3-teamStatus-2.json"))); - executeMainProcess(); - Assert.assertTrue(getLogOut().contains("Mercato will be ending, ready for your first match")); - } - - @Test - public void testUpdateTeamPremierLeague532WithTransactionProposalButNotEnabled() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.KJVB6L7C-status-4.json"))); - stubFor(get("/league/KJVB6L7C/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.KJVB6L7C.20190807.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.leagues.20190806.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20190805.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20190911.html"))); - stubFor(post("/league/KJVB6L7C/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.KJVB6L7C.20190807-Request.json"))) - .willReturn(aResponse().withBody("{\"success\":\"teamSaved\"}"))); - - // This endpoint should not be called, but provide NPE to reproduce the problem - stubFor(get("/league/KJVB6L7C/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.error.normal.mode.json"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(true).when(config).isTransactionsProposal(); - doReturn(false).when(config).isTacticalSubstitutes(); - executeMainProcess(config); - Assert.assertTrue(getLogOut() - .contains("Transaction proposals can not be achieved, you should buy 'MPG expert mode' for this league (very fun, not expensive!)")); - } - - @Test - public void testMercatoLeagueStartHeaderClientRequired() throws Exception { - prepareMainFrenchLigue1Mocks("qyOG7BuuZcv-status-3", "20190806", "20190807", "20190807"); - - // Correct mercato request - stubFor(get("/league/qyOG7BuuZcv/mercato").withHeader("client-version", equalTo(MpgClient.MPG_CLIENT_VERSION)).atPriority(1) - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.qyOG7BuuZcv.20190807.json"))); - - // Incorrect mercato request - stubFor(get("/league/qyOG7BuuZcv/mercato").atPriority(5).willReturn(aResponse().withHeader("Content-Type", "application/json").withStatus(403) - .withBody("{\"success\":false,\"error\":\"needUpdate\",\"code\":854}"))); - - executeMainProcess(); - Assert.assertTrue(getLogOut().contains("Proposal for your mercato")); - } - - @Test - public void testSerieASupportSeasonStart() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.XXXXXXXX-status-1.json"))); - stubFor(get("/mercato/5") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.serie-a.20190805.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.leagues.20190805.json"))); - // 'mpgstats.serie-a.20190805.json' file is about Ligue-1 => this is a 'fake' file without stats about player wanted due to transfer - stubFor(get("/leagues/Serie-A") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.serie-a.20190805.json"))); - stubFor(get("/injuries/football/italy-serie-a/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/italie/serie-a") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.serie-a.20190805.html"))); - executeMainProcess(); - Assert.assertTrue(getLogOut() - .contains("| A | Cristiano Ronaldo | 0.00 | 53 | |")); - } - - @Test - public void testMercatoSeasonStart() throws Exception { - stubFor(post("/user/sign-in") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/dashboard/leagues") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.LJT3FXDF-status-1.json"))); - stubFor(get("/mercato/2") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.premier-league.20190805.json"))); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.leagues.20190805.json"))); - stubFor(get("/leagues/Premier-League") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpgstats.premier-league.20190805.json"))); - stubFor(get("/injuries/football/england-premier-league/").willReturn(aResponse().withStatus(Response.Status.FORBIDDEN.getStatusCode()))); - stubFor(get("/blessures-et-suspensions/fodbold/angleterre/premier-league") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("equipeactu.premier-league.20190911.html"))); - - executeMainProcess(); - String logGlobal = getLogOut(); - Assert.assertTrue(logGlobal.indexOf("Vardy Jamie") > logGlobal.indexOf("Mohamed Salah")); - Assert.assertFalse(logGlobal.contains("Mohamed Salah | 0.00 | 50 |")); - Assert.assertTrue(logGlobal.contains("Aubameyang Pierre-Emerick | 143.03")); - - // With focus on last N days - ConsoleTestAppender.logTestReset(); - Config config = spy(getConfig()); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - String logEfficiency = getLogOut(); - Assert.assertFalse(logEfficiency.contains("Mohamed Salah | 0.00")); - Assert.assertTrue(logEfficiency.contains("Aubameyang Pierre-Emerick | 35.89")); - } - - @Test - public void testLeague2FocusEfficiencySeasonAfter2Days() throws Exception { - prepareMainFrenchLigue2Mocks("LH9HKBTD-status-4-championship-4", "20190806", "20190806", "20190818"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20190806.json"))); - - // After 2 match, Jeannin Mehdi has played only the first one with 7 as note => should have 3.5 for both (global & efficiency focus) - // Current bug is with efficiency focus, the note is 1.75 - - // With global average - executeMainProcess(); - String logGlobal = getLogOut(); - // Remove WireMock log at begin - logGlobal = logGlobal.substring(logGlobal.indexOf("==========")); - Assert.assertTrue(logGlobal.contains("A | Kadewere Tinotenda | 29.90")); - Assert.assertTrue(logGlobal.contains("G | Jeannin Mehdi | 3.50")); - ConsoleTestAppender.logTestReset(); - - // With focus efficiency (8 days) on season start (2 day) - Config config = spy(getConfig()); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - String logFocus = getLogOut(); - Assert.assertTrue(logFocus.contains("A | Kadewere Tinotenda | 29.90")); - Assert.assertTrue(logFocus.contains("G | Jeannin Mehdi | 3.50")); - Assert.assertEquals(logGlobal, logFocus); - } - - @Test - public void testLeague2FocusEfficiencySeasonStart() throws Exception { - prepareMainFrenchLigue2Mocks("LH9HKBTD-status-4-championship-4", "20190724", "20190801", "20190818"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20190724.json"))); - - // With global average - executeMainProcess(); - String logGlobal = getLogOut(); - // Remove WireMock log at begin - logGlobal = logGlobal.substring(logGlobal.indexOf("==========")); - Assert.assertTrue(logGlobal.contains("Grbic Adrian | 27.20")); - ConsoleTestAppender.logTestReset(); - - // With focus efficiency (8 days) on season start (1 day) - Config config = spy(getConfig()); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - String logFocus = getLogOut(); - Assert.assertTrue(logFocus.contains("Grbic Adrian | 27.20")); - Assert.assertEquals(logGlobal, logFocus); - } - - @Test - public void testLeague2NoData() throws Exception { - prepareMainFrenchLigue2Mocks("LH9HKBTD-status-4-championship-4", "20190724", "20190724", "20190818"); - stubFor(get("/league/LH9HKBTD/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.LH9HKBTD.20190724.json"))); - - // The efficiency should not be 'infinity' but 0 - Assert.assertEquals(0, MpgStatsClient.build(getConfig(), "http://localhost:" + getServer().port()).getStats(ChampionshipStatsType.LIGUE_2) - .getPlayer("Rodelin Ronny").getEfficiency(), 0); - - // Use average (not existing data) - executeMainProcess(); - - String log = getLogOut(); - // Check that no infinite character on some players. - Assert.assertFalse(log.contains("∞")); - Assert.assertTrue(log.contains("| A | Benkaid Hicham | 0.00 | 17 |")); - Assert.assertTrue(log.contains("| A | Rodelin Ronny | 2.01 | 16 |")); - // Check order efficiency, value/quotation should be used as second criteria - // Some players are displayed in WARNING because 0 data - String logTablePlayers = log.substring(log.lastIndexOf("Optimized team")); - Assert.assertTrue(logTablePlayers.lastIndexOf("Vachoux") > logTablePlayers.lastIndexOf("Gallon")); - Assert.assertTrue(logTablePlayers.lastIndexOf("Tramoni") > logTablePlayers.lastIndexOf("Jacob")); - Assert.assertTrue(logTablePlayers.lastIndexOf("Benkaid") > logTablePlayers.lastIndexOf("Rodelin")); - Assert.assertTrue(logTablePlayers.lastIndexOf("Abdeldjelil") > logTablePlayers.lastIndexOf("Rodelin")); - Assert.assertTrue(logTablePlayers.lastIndexOf("Abdeldjelil") > logTablePlayers.lastIndexOf("Benkaid")); - - // Use focus on recent efficiency (not existing data) - Config config = spy(getConfig()); - doReturn(true).when(config).isEfficiencyRecentFocus(); - executeMainProcess(config); - Assert.assertFalse(log.contains("∞")); - Assert.assertTrue(log.contains("| A | Benkaid Hicham | 0.00 | 17 |")); - } - - @Test - public void testLeague2InCreation() throws Exception { - prepareMainFrenchLigue2Mocks("LH9HKBTD-status-1-championship-4", "20190718", "20190718", "20190818"); - stubFor(get("/mercato/4") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.ligue-2.20190718.json"))); - - executeMainProcess(); - Assert.assertFalse(getLogOut(), getLogOut().contains("Players to sell")); - } - - @Test - public void testEfficienyRecentFocus() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190217", "20190217", "20190217"); - stubFor(get("/league/KX24XMUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20190217.json"))); - stubFor(get("/league/KX24XMUG/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.KX24XMUG.20190217.json"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTransactionsProposal(); - doReturn(true).when(config).isEfficiencyRecentFocus(); - - executeMainProcess(config); - Assert.assertFalse(getLogOut(), getLogOut().contains("Players to sell")); - Assert.assertFalse(getLogOut().contains("Last day stats have not fully reached")); - } - - @Test - public void testSellBuy() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190202", "20190202", "20190202"); - stubFor(get("/league/KX24XMUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20190202.json"))); - stubFor(get("/league/KX24XMUG/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.KX24XMUG.20190202.json"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTransactionsProposal(); - - executeMainProcess(config); - Assert.assertTrue(getLogOut(), getLogOut().contains("Achille Needle")); - Assert.assertFalse(getLogOut(), getLogOut().contains("Neymar")); - Assert.assertFalse(getLogOut().contains("Last day stats have not fully reached")); - } - - @Test - public void testSellBuyNoWarningInLog() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190217", "20190217", "20190217"); - stubFor(get("/league/KX24XMUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20190217.json"))); - stubFor(get("/league/KX24XMUG/transfer/buy") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.transfer.buy.KX24XMUG.20190217.json"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTransactionsProposal(); - - executeMainProcess(config); - Assert.assertTrue(getLogOut(), getLogOut().contains("Achille Needle")); - Assert.assertFalse(getLogOut(), getLogOut().contains("WARN: Player can't be found in statistics: Wade Paul")); - Assert.assertFalse(getLogOut().contains("Last day stats have not fully reached")); - } - - @Test - public void testNoTacticalSubstitutes() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190211", "20190211", "20190211"); - stubFor(get("/league/KX24XMUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20190211.json"))); - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190211-Request.json"))) - .inScenario("Retry Scenario").whenScenarioStateIs(Scenario.STARTED) - .willReturn(aResponse().withStatus(400).withHeader("Content-Type", "application/json").withBody("{\"error\":\"badRequest\"}")) - .willSetStateTo("Cause Success")); - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190211-Request.json"))) - .inScenario("Retry Scenario").whenScenarioStateIs("Cause Success") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.post.success.json"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(true).when(config).isTeampUpdate(); - - executeMainProcess(config); - Assert.assertTrue(getLogOut(), getLogOut().contains("Retrying Team update...")); - } - - @Test - public void testUpdateTeamRetryFail() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190211", "20190211", "20190211"); - stubFor(get("/league/KX24XMUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20190211.json"))); - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190211-Request.json"))) - .inScenario("Retry Scenario").whenScenarioStateIs(Scenario.STARTED) - .willReturn(aResponse().withStatus(400).withHeader("Content-Type", "application/json").withBody("{\"error\":\"badRequest\"}")) - .willSetStateTo("Retry-0")); - for (int i = 0; i <= 15; i++) { - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190211-Request.json"))) - .inScenario("Retry Scenario").whenScenarioStateIs("Retry-" + i) - .willReturn(aResponse().withStatus(400).withHeader("Content-Type", "application/json").withBody("{\"error\":\"badRequest\"}")) - .willSetStateTo("Retry-" + (i + 1))); - } - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190211-Request.json"))) - .inScenario("Retry Scenario").whenScenarioStateIs("Retry-16") - .willReturn(aResponse().withStatus(400).withHeader("Content-Type", "application/json").withBody("{\"error\":\"badRequest\"}")) - .willSetStateTo("Cause Success")); - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190211-Request.json"))) - .inScenario("Retry Scenario").whenScenarioStateIs("Cause Success") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.post.success.json"))); - - Config config = spy(getConfig()); - doReturn(false).when(config).isTacticalSubstitutes(); - doReturn(true).when(config).isTeampUpdate(); - try { - executeMainProcess(config); - Assert.fail("Should fail, even if 10 retry"); - } catch (UnsupportedOperationException e) { - Assert.assertTrue(e.getMessage(), e.getMessage().contains("400 Bad Request")); - } - } - - @Test - public void testProcess2019January() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-4", "20190123", "20190123", "20190123"); - stubFor(get("/league/KX24XMUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.20190123.json"))); - stubFor(post("/league/KX24XMUG/coach").withRequestBody(equalToJson(getTestFileToString("mpg.coach.20190123-Request.json"))) - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.post.success.json"))); - - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - executeMainProcess(config); - Assert.assertTrue(getLogOut(), getLogOut().contains("Updating team" + "")); - } - - @Test - public void testProcessWithMockSimple() throws Exception { - subTestProcessWithMock("KLGXSSUG", "KLGXSSUG-status-4", "20180926", "20181017", "20181017", "20181017"); - Assert.assertTrue("Assert in previous method", true); - } - - @Test - public void testProcessWithMockAndNameDifferentInRootAndStats() throws Exception { - subTestProcessWithMock("KLGXSSUG", "KLGXSSUG-status-4", "20181212", "20181212", "20181212", "20181212"); - Assert.assertTrue("Assert in previous method", true); - } - - private void subTestProcessWithMock(String leagueId, String fileRootDashboard, String fileRootCoach, String fileStatsLeagues, - String dataFileStats, String dataFileEquipeActu) { - prepareMainFrenchLigue1Mocks(fileRootDashboard, fileStatsLeagues, dataFileStats, dataFileEquipeActu); - stubFor(get("/league/" + leagueId + "/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach." + fileRootCoach + ".json"))); - - // Run global process - executeMainProcess(); - Assert.assertTrue(getLogOut(), getLogOut().contains("==========")); - } - - @Test - public void testProcessLeagueInCreationAndTerminated() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-1-KLGXSSUG-status-5", "20181220", "20181220", "20181220"); - stubFor(get("/mercato/1") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.ligue-1.20181220.json"))); - - executeMainProcess(); - Assert.assertTrue(getLogOut(), getLogOut().contains("Proposal for your coming soon mercato")); - Assert.assertTrue(getLogOut(), getLogOut().contains("Thauvin Florian")); - } - - @Test - public void testProcessLeagueInMercato() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-3-KLGXSSUG-status-5", "20181220", "20181220", "20181220"); - stubFor(get("/league/KX24XMUG/mercato") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.mercato.KX24XMUG.20181220.json"))); - - executeMainProcess(); - Assert.assertTrue(getLogOut(), getLogOut().contains("Proposal for your mercato")); - Assert.assertTrue(getLogOut(), getLogOut().contains("Thauvin Florian")); - } - - @Test - public void testProcessLeagueInMercatoTurnClosed() throws Exception { - prepareMainFrenchLigue1Mocks("KX24XMUG-status-3+1-KLGXSSUG-status-5", null, null, null); - - executeMainProcess(); - Assert.assertTrue(getLogOut(), getLogOut().contains("Mercato round is closed, come back soon for the next")); - } - - @Test - public void testProcessNoMoreGames() throws Exception { - prepareMainFrenchLigue1Mocks("KLGXSSUG-status-4", null, null, null); - stubFor(get("/league/KLGXSSUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.noMoreGames.json"))); - - executeMainProcess(); - Assert.assertTrue(getLogOut(), getLogOut().contains("No more games in this league")); - } - - @Test - public void testProcessUpdateNoPlayersMiroirOptionWithMock() throws Exception { - subTestProcessUpdateWithMocks("mpg.coach.20181114-noPlayers-MiroirOption"); - Assert.assertTrue("Assert in previous method (NoPlayersMiroirOption)", true); - } - - @Test - public void testProcessUpdateCompleteNoOptionWithMock() throws Exception { - subTestProcessUpdateWithMocks("mpg.coach.20181114-Complete-NoOption"); - Assert.assertTrue("Assert in previous method (CompleteNoOption)", true); - } - - @Test - public void testProcessUpdateNoSubstitutesRotaldoOptionWithMock() throws Exception { - subTestProcessUpdateWithMocks("mpg.coach.20181114-noSubstitutes-RotaldoOption"); - Assert.assertTrue("Assert in previous method (NoSubstitutesRotaldoOption)", true); - } - - @Test - public void testProcessUpdateCompleteBoostPlayerWithMock() throws Exception { - subTestProcessUpdateWithMocks("mpg.coach.20181114-Complete-BoostPlayer"); - Assert.assertTrue("Assert in previous method (CompleteBoostPlayer)", true); - } - - private void executeMainProcess() { - executeMainProcess(null); - } - private void executeMainProcess(Config config) { executeMainProcess(null, null, null, config); } - private void subTestProcessUpdateWithMocks(String coachFileWithoutJsonExtension) throws Exception { - prepareMainFrenchLigue1Mocks("KLGXSSUG-status-4", "20181114", "20181114", "20181114"); - Config config = spy(getConfig()); - doReturn(true).when(config).isTeampUpdate(); - doReturn(false).when(config).isUseBonus(); - stubFor(get("/league/KLGXSSUG/coach") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile(coachFileWithoutJsonExtension + ".json"))); - stubFor(post("/league/KLGXSSUG/coach").withRequestBody(equalToJson(getTestFileToString(coachFileWithoutJsonExtension + "-Request.json"))) - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.coach.post.success.json"))); - executeMainProcess(config); - Assert.assertTrue(getLogOut(), getLogOut().contains("Updating team")); - } - private void executeMainProcess(MpgClient mpgClient, MpgStatsClient mpgStatsClient, InjuredSuspendedWrapperClient injuredSuspendedClient, Config config) { Config c = ObjectUtils.defaultIfNull(config, getConfig()); @@ -1211,12 +197,10 @@ private static void prepareMainFrenchLigueMocks(String dashboard, int frenchLigu } if (StringUtils.isNotBlank(statsLeaguesDate)) { dateDayFormat.parse(statsLeaguesDate); - dateDayFormat.parse(statsLeaguesDate); - stubFor(get("/builds").willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile( - getTestFile("mlnstats.builds." + statsLeaguesDate + ".json", "mpgstats.leagues." + statsLeaguesDate + ".json")))); + stubFor(get("/builds").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mlnstats.builds." + statsLeaguesDate + ".json"))); stubFor(get("/leagues/Ligue-" + frenchLigue).willReturn(aResponse().withHeader("Content-Type", "application/json") - .withBodyFile(getTestFile("mlnstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json", - "mpgstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json")))); + .withBodyFile("mlnstats.ligue-" + frenchLigue + "." + statsLeaguesDate + ".json"))); } if (StringUtils.isNotBlank(sportsGamblerDate)) { dateDayFormat.parse(sportsGamblerDate); @@ -1243,24 +227,6 @@ private static void prepareMainFrenchLigueMocks(String dashboard, int frenchLigu } } - /** - * Get Test file depending the existence - * - * @param choice1 Choice 1 - * @param choice2 Choice 2 - * @return Choice 1 if file exist, otherwise Choice 2 if file exit - */ - private static String getTestFile(String choice1, String choice2) { - if (new File(TESTFILES_BASE, choice1).exists()) { - return choice1; - } - if (new File(TESTFILES_BASE, choice2).exists()) { - return choice2; - } - throw new UnsupportedOperationException( - String.format("Neither files '%s' or '%s' exist in '%s' directory", choice1, choice2, TESTFILES_BASE)); - } - private String getTestFileToString(String fileName) throws IOException { return FileUtils.readFileToString(new File(TESTFILES_BASE, fileName), StandardCharsets.UTF_8); } diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index 1a8c867..26e1c51 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -8,6 +8,7 @@ import org.blondin.mpg.AbstractMockTestClient; import org.blondin.mpg.config.Config; +import org.blondin.mpg.root.model.AvailablePlayers; import org.blondin.mpg.root.model.ChampionshipType; import org.blondin.mpg.root.model.Club; import org.blondin.mpg.root.model.Clubs; @@ -21,7 +22,6 @@ import org.blondin.mpg.root.model.PoolPlayers; import org.blondin.mpg.root.model.Position; import org.blondin.mpg.root.model.Team; -import org.blondin.mpg.root.model.TransferBuy; import org.junit.Assert; import org.junit.Test; @@ -52,7 +52,7 @@ public void testMockSignInOk() throws Exception { } @Test - public void testMockDashboard() throws Exception { + public void testMockDashboardGame() throws Exception { stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); stubFor(get("/dashboard/leagues") @@ -71,6 +71,28 @@ public void testMockDashboard() throws Exception { Assert.assertEquals(10, l.getDivisionTotalUsers()); } + @Test + public void testMockDashboardMercatoWaitNextTurn() throws Exception { + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/dashboard/leagues").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLAX7HMK-status-3-waitMercatoNextTurn.json"))); + MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); + Dashboard dashboard = mpgClient.getDashboard(); + Assert.assertNotNull(dashboard); + Assert.assertNotNull(dashboard.getLeagues()); + League l = dashboard.getLeagues().get(0); + Assert.assertEquals("MLAX7HMK", l.getId()); + Assert.assertEquals("mpg_division_MLAX7HMK_3_1", l.getDivisionId()); + Assert.assertEquals(ChampionshipType.LIGUE_1, l.getChampionship()); + Assert.assertEquals(Mode.NORMAL, l.getMode()); + Assert.assertEquals(LeagueStatus.MERCATO, l.getStatus()); + Assert.assertEquals(10, l.getDivisionTotalUsers()); + + // The current mercato state: wait next turn + Assert.assertEquals(2, l.getCurrentTeamStatus()); + } + @Test public void testMockDivision() throws Exception { stubFor(post("/user/sign-in") @@ -160,13 +182,13 @@ public void testMockPoolPlayers() throws Exception { } @Test - public void testMockTransferBuy() throws Exception { + public void testMockAvailablePlayers() throws Exception { stubFor(post("/user/sign-in") .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); - stubFor(get("/division/mpg_division_MLEFEX6G_3_1/available-players") - .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.trading.buy.MLEFEX6G.20210804.json"))); + stubFor(get("/division/mpg_division_MLEFEX6G_3_1/available-players").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.available.players.MLEFEX6G.20210804.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); - TransferBuy tb = mpgClient.getTransferBuy("mpg_division_MLEFEX6G_3_1"); + AvailablePlayers tb = mpgClient.getAvailablePlayers("mpg_division_MLEFEX6G_3_1"); Assert.assertTrue(tb.getAvailablePlayers().size() > 10); } } diff --git a/src/test/resources/__files/README.md b/src/test/resources/__files/README.md index 9ebd6c7..787b15f 100644 --- a/src/test/resources/__files/README.md +++ b/src/test/resources/__files/README.md @@ -6,20 +6,19 @@ See [Bug Report](../../../../.github/ISSUE_TEMPLATE/bug_report.md) for details. ## Naming conventions -The `XXX` should be replaced by a use case scenario (like data, some league, ...). +The `XXX` should be replaced by a use case scenario (like date, some league, data ...). ### Mpg Mobile App | **File** | **URL** | **Description** | | --- | --- | --- | +| `mpg.user-signIn.XXX.json` | https://api.mpg.football/user/sign-in | **Login** | | `mpg.dashboard.XXX.json` | https://api.mpg.football/dashboard/leagues | **Dashboard / Home** | | `mpg.division.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1 | **User->Team association** | | `mpg.team.XXX.json` | https://api.mpg.football/team/mpg_team_MLEXXXXX_3_1_2 | **Current User Team** | -| `mpg.coach.XXX.json` | https://api.mpg.football/TODO | **coach**, `GET` requests | +| `mpg.coach.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1/coach | **coach**, `GET` requests | | `mpg.coach.XXX-Request-XXX.json` | https://api.mpg.football/match-team-formation/[matchTeamFormation.id] | MPG league **coach**, `PUT` requests | -| `mpg.mercato.XXX.json` | https://api.mpg.football/TODO | MPG league **mercato** | -| `mpg.trading.buy.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1/available-players | MPG league **transfer** | -| `mpg.user-signIn.XXX.json` | https://api.mpg.football/user/sign-in | **Login** | +| `mpg.division.available.players.XXX.json` | https://api.mpg.football/division/mpg_division_MLEXXXXX_3_1/available-players | MPG league **transfer** | | `mpg.poolPlayers.X.YYYY.json` | https://api.mpg.football/championship-players-pool/X | **League Pool Player** | | `mpg.clubs.YYYY.json` | https://api.mpg.football/championship-clubs | **Clubs details** | diff --git a/src/test/resources/__files/equipeactu.ligue-1.20181114.html b/src/test/resources/__files/equipeactu.ligue-1.20181114.html deleted file mode 100644 index faed463..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20181114.html +++ /dev/null @@ -1,3355 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 19:43  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- -
- - -
- - - -
- - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 14/11 18:17 Alphonse Areola -
- - PSG ➨ Internazionale
-
- -
-
-
-
-
- -
- - 14/11 17:50 Hector Herrera -
- - FC Porto ➨ Internazionale
-
- -
-
-
-
-
- -
- - 14/11 16:00 Adama Soumaoro -
- - Lille ➨ Monaco
-
- -
-
-
-
-
- -
- - 14/11 15:39 Ousmane Dembélé -
- - Barcelone ➨ Liverpool
-
- -
-
-
-
-
- -
- - 14/11 11:38 Nicolò Barella -
- - Cagliari ➨ Tottenham
-
- -
-
-
-
-
- -
- - 14/11 10:46 Daniel James -
- - Swansea ➨ Leeds
-
- -
-
-
-
-
- -
- - 14/11 10:35 Gianluca Mancini -
- - Atalanta ➨ Borussia Dortmund
-
- -
-
-
-
-
- -
- - 14/11 10:20 Gianluca Mancini -
- - Atalanta ➨ Arsenal
-
- -
-
-
-
-
- -
- - 13/11 22:03 Renaud Emond -
- - Standard de Liège ➨ Galatasaray SK
-
- -
-
-
-
-
- -
- - 13/11 21:12 Matheus Fernandes -
- - Botafogo ➨ Genoa
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 14/11 19:37 Emanuele Torrasi -
- Milan, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:36 Lucas Biglia -
- Milan, - Fin Février 2019
-
- -
-
-
-
-
- -
- 14/11 19:34 Kiko Olivas -
- Real Valladolid, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:30 Marvin Martin -
- Reims, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:30 Patrick Bahanack -
- Reims, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:27 Virgile Pinson -
- Reims, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:26 Luisinho -
- Huesca, - Fin Mars 2019
-
- -
-
-
-
-
- -
- 14/11 19:25 Javier Pastore -
- Rome, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:25 Pablo Insua -
- Huesca, - Inconnu
-
- -
-
-
-
-
- -
- 14/11 19:23 Rick Karsdorp -
- Pays-Bas, - De retour à l'entraînement
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 14/11 13:46 Alex Palmer -
- West Bromwich ➨ - Oldham Athletic
-
- -
-
-
-
-
- -
- - 13/11 18:38 Kebba Ceesay -
- Dalkurd ➨ - Sirius
-
- -
-
-
-
-
- -
- - 13/11 18:09 Glenn Murray -
- Brighton (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 13/11 15:07 Nacho Martínez -
- Real Valladolid (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 13/11 13:11 Jack Simpson -
- Bournemouth (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 13/11 11:50 Garry Comerford -
- Waterford ➨ - Cork City (de 01/01) -
-
- -
-
-
-
-
- -
- - 13/11 11:48 Conor Levingston -
- Agent libre ➨ - Bohemians (de 01/01) -
-
- -
-
-
-
-
- -
- - 13/11 11:46 James Talbot -
- Agent libre ➨ - Bohemians (de 01/01) -
-
- -
-
-
-
-
- -
- - 13/11 11:40 Dan Casey -
- Bohemians ➨ - Cork City (de 01/01) -
-
- -
-
-
-
-
- -
- - 13/11 11:36 Gary Shaw -
- Shamrock Rovers ➨ - St Patrick's Athl. (de 01/01) -
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 13/11 20:59
-
- -
-
-
-
- Prince Desir Gouano (DF)
-
- Inconnu (depuis 10/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 15:19
-
- -
-
-
-
- Bongani Zungu (MI)
-
- Blessure au ligament croisé (depuis 02/09) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 14/11 15:16
-
- -
-
-
-
- Moussa Konaté (AT)
-
- Blessure à l'aine (depuis 27/10) -
-
- Début Janvier 2019
-
-
-
-
-
-
-
- 14/11 15:19
-
- -
-
-
-
- Quentin Cornette (AT)
-
- Blessure aux ménisques (depuis 26/09) -
-
- Quelques semaines
-
-
-
-
- -

Angers SCO

- -
-
-
- 14/11 15:29
-
- -
-
-
-
- Harisson Manzala (MI)
-
- Blessure à la cuisse (depuis 26/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 15:29
-
- -
-
-
-
- Anthony Gomez Mancini
-
- Blessure à la cuisse (depuis 24/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 13/11 21:12
-
- -
-
-
-
- Ibrahim Cissé (DF)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 15:28
-
- -
-
-
-
- Loic Puyo (MI)
-
- Blessure à la cuisse (depuis 29/03) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 15:29
-
- -
-
-
-
- Yoann Andreu (DF)
-
- Blessure au genou (depuis 10/11) -
-
- Inconnu
-
-
-
-
- -
-
-
- 13/11 21:09
-
- -
-
-
-
- Ismael Traore (DF)
-
- 24/11: Nantes-Angers
-
-
- Carton rouge (direct)
-
-
-
-
-

Bordeaux

- -
-
-
- 14/11 15:36
-
- -
-
-
-
- Alexandre Mendy (AT)
-
- Blessure au ligament croisé (depuis 08/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 15:36
-
- -
-
-
-
- Igor Lewczuk (DF)
-
- Entorse de la cheville (depuis 25/10) -
-
- Quelques semaines
-
-
-
-
- -

Caen

- -
-
-
- 14/11 15:51
-
- -
-
-
-
- Emmanuel Imorou (DF)
-
- Blessure à la cuisse (depuis 27/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 13/11 21:47
-
- -
-
-
-
- Romain Genevois (DF)
-
- Blessure au tendon d'Achille (depuis 22/09) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 13/11 21:48
-
- -
-
-
-
- Yacine Bammou
-
- Blessure à l'aine (depuis 07/11) -
-
- Quelques semaines
-
-
-
-
- -
-
-
- 06/11 19:28
-
- -
-
-
-
- Enzo Crivelli (AT)
-
- 24/11: Caen-Monaco
-
-
- Points de sanction
-
-
-
-
-
-
-
- 06/11 19:27
-
- -
-
-
-
- Frédéric Guilbert (DF)
-
- 24/11: Caen-Monaco
-
-
- Points de sanction
-
-
-
-
-

Dijon

- -
-
-
- 14/11 13:42
-
- -
-
-
-
- Yoann Gourcuff (MI)
-
- Blessure à la cuisse (depuis 20/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 16:05
-
- -
-
-
-
- Frédéric Sammaritano (MI)
-
- Blessure au mollet (depuis 19/09) -
-
- Quelques jours
-
-
-
-
-
-
-
- 14/11 16:02
-
- -
-
-
-
- Mehdi Abeid (MI)
-
- Blessure aux adducteurs (depuis 30/10) -
-
- Quelques jours
-
-
-
-
-
-
-
- 14/11 16:05
-
- -
-
-
-
- Romain Amalfitano (MI)
-
- Blessure au genou (depuis 31/10) -
-
- Quelques jours
-
-
-
-
-
-
-
- 14/11 16:04
-
- -
-
-
-
- Florent Balmont (MI)
-
- Blessure au mollet (depuis 11/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 16:05
-
- -
-
-
-
- Senou Coulibaly (DF)
-
- Blessure à la cuisse (depuis 11/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 16:05
-
- -
-
-
-
- Benjamin Jeannot (AT)
-
- Blessure à la cuisse (depuis 11/11) -
-
- Fin Novembre 2018
-
-
-
-
-
-
-
- 14/11 16:05
-
- -
-
-
-
- Chang-Hoon Kwon (AT)
-
- Blessure au tendon d'Achille (depuis 19/05) -
-
- Début Février 2019
-
-
-
-
- -

Guingamp

- -
-
-
- 14/11 16:15
-
- -
-
-
-
- Nolan Roux (AT)
-
- Blessure à la cuisse (depuis 29/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 16:12
-
- -
-
-
-
- Lucas Deaux (MI)
-
- Blessure à la cuisse (depuis 10/11) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 14/11 16:12
-
- -
-
-
-
- Sylvio Ronny Rodelin (AT)
-
- Blessure aux adducteurs (depuis 31/10) -
-
- Medio Novembre 2018
-
-
-
-
- -

Lille

- -
-
-
- 13/11 22:04
-
- -
-
-
-
- Fares Bahlouli
-
- Inconnu (depuis 07/07) -
-
- Inconnu
-
-
-
-
- -

Monaco

- -
-
-
- 14/11 17:10
-
- -
-
-
-
- Danijel Subasic (GK)
-
- Blessure à la cuisse (depuis 23/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Kevin N'Doram (DF)
-
- Blessure au coude (depuis 14/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 17:11
-
- -
-
-
-
- Marcos Lopes (MI)
-
- Blessure à la cuisse (depuis 10/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure au genou (depuis 25/08) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 17:12
-
- -
-
-
-
- Adama Traore
-
- Blessure à la cuisse (depuis 05/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Andrea Raggi (DF)
-
- Blessure au dos (depuis 05/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Jordi Mboula (AT)
-
- Blessure à la cuisse (depuis 11/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:09
-
- -
-
-
-
- Nacer Chadli (MI)
-
- Blessure aux côtes (depuis 11/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Blessure à la cuisse (depuis 25/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:14
-
- -
-
-
-
- Alexander Golovin
-
- Blessure à la cheville (depuis 05/11) -
-
- Medio Novembre 2018
-
-
-
-
-
-
-
- 14/11 17:13
-
- -
-
-
-
- Jean-Eudes Aholou (MI)
-
- Blessure au pied (depuis 31/10) -
-
- Medio Décembre 2018
-
-
-
-
-
-
-
- 14/11 17:11
-
- -
-
-
-
- Kamil Glik (DF)
-
- Blessure à l'aine (depuis 06/11) -
-
- Fin Novembre 2018
-
-
-
-
- -
-
-
- 12/11 03:10
-
- -
-
-
-
- Andrea Raggi (DF)
-
- 24/11: Caen-Monaco
-
-
- Carton rouge (direct)
-
-
-
-
-

Montpellier

- -
-
-
- 14/11 17:16
-
- -
-
-
-
- Ambroise Oyongo (DF)
-
- Blessure au genou (depuis 04/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:16
-
- -
-
-
-
- Keagan Larenzo Dolly (MI)
-
- Fracture de la jambe (depuis 15/09) -
-
- Medio Décembre 2018
-
-
-
-
- -

Nantes

- -
-
-
- 14/11 17:33
-
- -
-
-
-
- Quentin Braat (GK)
-
- Blessure au ligament croisé (depuis 21/09) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 14/11 17:37
-
- -
-
-
-
- Valentin Rongier (MI)
-
- Hématome au genou (depuis 11/11) -
-
- Quelques semaines
-
-
-
-
- -

Nice

- -
-
-
- 14/11 17:57
-
- -
-
-
-
- Pierre Lees-Melou (MI)
-
- Blessure à la cuisse (depuis 26/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 18:02
-
- -
-
-
-
- Allan Saint-Maximin (MI)
-
- Maladie (depuis 09/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 13/11 23:54
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure au dos (depuis 20/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 13/11 23:46
-
- -
-
-
-
- Mickael Le Bihan (AT)
-
- Blessure au genou (depuis 30/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 17:55
-
- -
-
-
-
- Mohamed Lamine Diaby (AT)
-
- Blessure au genou (depuis 11/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 13/11 23:45
-
- -
-
-
-
- Mouez Hassen (GK)
-
- Luxation de l'épaule (depuis 28/06) -
-
- Inconnu
-
-
-
-
-
-
-
- 13/11 23:54
-
- -
-
-
-
- Racine Coly (DF)
-
- Blessure aux adducteurs (depuis 08/11) -
-
- Inconnu
-
-
-
-
- -

Nîmes

- -
-
-
- 14/11 18:34
-
- -
-
-
-
- Fethi Harek (DF)
-
- Blessure au mollet (depuis 24/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 18:34
-
- -
-
-
-
- Martin Sourzac (GK)
-
- Virus (depuis 19/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 14/11 18:34
-
- -
-
-
-
- Mustapha Diallo (MI)
-
- Blessure à la cheville (depuis 24/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 18:34
-
- -
-
-
-
- Pierrick Valdivia (MI)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 18:33
-
- -
-
-
-
- Sofiane Alakouch (MI)
-
- Blessure aux fessiers (depuis 26/10) -
-
- Inconnu
-
-
-
-
- -
-
-
- 11/11 00:48
-
- -
-
-
-
- Faitout Maouassa (DF)
-
- 24/11: Strasbourg-Nimes
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-
-
-
- 11/11 00:48
-
- -
-
-
-
- Loiik Landre (DF)
-
- 24/11: Strasbourg-Nimes
-
-
- Carton rouge (direct)
-
-
-
-
-

Olympique Lyon

- -
-
-
- 14/11 16:50
-
- -
-
-
-
- Léo Dubois (DF)
-
- Blessure à la cuisse (depuis 17/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 14/11 16:51
-
- -
-
-
-
- Nabil Fekir (AT)
-
- Blessure à l'aine (depuis 09/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 13/11 22:07
-
- -
-
-
-
- Houssem Aouar (MI)
-
- Inconnu (depuis 12/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 16:51
-
- -
-
-
-
- Moussa Dembele (AT)
-
- Inconnu (depuis 12/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 13/11 22:07
-
- -
-
-
-
- Amine Gouiri (AT)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Début Mars 2019
-
-
-
-
- -

Olympique Marseille

- - -
Aucune blessure ni suspension enregistrée

PSG

- -
-
-
- 13/11 13:31
-
- -
-
-
-
- Daniel Alves (DF)
-
- Blessure au ligament croisé (depuis 08/05) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 13/11 13:32
-
- -
-
-
-
- Jesé (AT)
-
- Blessure à la hanche (depuis 29/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 18:36
-
- -
-
-
-
- Colin Dagba (DF)
-
- Blessure aux adducteurs (depuis 26/09) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 14/11 18:36
-
- -
-
-
-
- Lavyin Kurzawa (DF)
-
- Blessure au dos (depuis 11/08) -
-
- Forfait pour la saison
-
-
-
-
- -

Reims

- -
-
-
- 14/11 19:30
-
- -
-
-
-
- Marvin Martin (MI)
-
- Blessure aux adducteurs (depuis 07/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 19:30
-
- -
-
-
-
- Patrick Bahanack
-
- Blessure au genou (depuis 27/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 14/11 19:27
-
- -
-
-
-
- Virgile Pinson (AT)
-
- Blessure à la main (depuis 02/11) -
-
- Inconnu
-
-
-
-
- -

Rennes

- -
-
-
- 13/11 13:40
-
- -
-
-
-
- Jeremy Gelin (DF)
-
- Inconnu (depuis 12/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 13/11 13:39
-
- -
-
-
-
- Abdoulaye Diallo (GK)
-
- Blessure à la cuisse (depuis 28/10) -
-
- Début Novembre 2018
-
-
-
-
-
-
-
- 13/11 13:38
-
- -
-
-
-
- Ludovic Baal
-
- Blessure aux adducteurs (depuis 04/10) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 13/11 13:39
-
- -
-
-
-
- Rafik Guitane (MI)
-
- Blessure au ligament croisé (depuis 12/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 13/11 13:38
-
- -
-
-
-
- Romain Danze
-
- Blessure au genou (depuis 24/10) -
-
- Forfait pour la saison
-
-
-
-
- -

Saint-Étienne

- -
-
-
- 13/11 13:42
-
- -
-
-
-
- Loïc Perrin
-
- Blessure aux adducteurs (depuis 10/11) -
-
- Medio Décembre 2018
-
-
-
-
- -

Strasbourg

- -
-
-
- 11/11 01:39
-
- -
-
-
-
- Anthony Goncalves (MI)
-
- Blessure au mollet (depuis 25/10) -
-
- Quelques jours
-
-
-
-
-
-
-
- 11/11 01:39
-
- -
-
-
-
- Abdallah Ndour (DF)
-
- Blessure au genou (depuis 25/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/11 01:39
-
- -
-
-
-
- Idriss Saadi (AT)
-
- Blessure au genou (depuis 12/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/11 01:39
-
- -
-
-
-
- Kenny Lala (DF)
-
- Blessure à la cuisse (depuis 07/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/11 01:39
-
- -
-
-
-
- Lionel Carole (DF)
-
- Inconnu (depuis 09/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/11 01:39
-
- -
-
-
-
- Ludovic Ajorque (AT)
-
- Blessure à la cuisse (depuis 21/09) -
-
- Inconnu
-
-
-
-
- -
-
-
- 09/11 23:49
-
- -
-
-
-
- Anthony Caci (MI)
-
- 24/11: Strasbourg-Nimes
-
-
- Carton rouge (direct)
-
-
-
-
-

Toulouse

- -
-
-
- 13/11 13:52
-
- -
-
-
-
- Stéphane M´Bia (MI)
-
- Inconnu (depuis 09/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 13/11 13:53
-
- -
-
-
-
- Ibrahim Sangare (MI)
-
- Blessure aux orteils (depuis 25/10) -
-
- Medio Décembre 2018
-
-
-
-
-
-
-
- 13/11 13:53
-
- -
-
-
-
- Yaya Sanogo (AT)
-
- Blessure au genou (depuis 18/09) -
-
- Début Novembre 2018
-
-
-
-
- -

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20181212.html b/src/test/resources/__files/equipeactu.ligue-1.20181212.html deleted file mode 100644 index 2606e86..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20181212.html +++ /dev/null @@ -1,6815 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - -
- - - - - - - -
- -
- -
- -
- - - -
- -
- -
- -
- - - - - - - - - - - - - - - - - -
- - - - - - - -
- -
- -
- - Heure actuelle: 20:52  - - - -
- -
- -
- - - - - -
- -
- - - -
- -
- -
- - - - - - - - - - - - - - - -
- - - -
- -
- - - -
- - - - - - - -
- - - - - -
- - - - - - - -
- -
- - - -
- - - - - -
- - - - - - - -
- - - - - - - -
- -
- - Rumeurs récentes
- -
- - - -
- -
- -
- -
- - - -
- - - - 12/12 13:18 Jermain Defoe - -
- - - - Bournemouth ➨ Sheffield U.
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 13:17 Jermain Defoe - -
- - - - Bournemouth ➨ Wigan Athletic
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 13:15 Jermain Defoe - -
- - - - Bournemouth ➨ Crystal Palace
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 11:44 Marcus Tavernier - -
- - - - Middlesbrough ➨ Manchester United
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 11:17 Orkun Kökcü - -
- - - - Feyenoord ➨ Borussia Dortmund
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 11:16 Orkun Kökcü - -
- - - - Feyenoord ➨ PSG
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 11:13 Orkun Kökcü - -
- - - - Feyenoord ➨ Tottenham
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 08:31 Orkun Kökcü - -
- - - - Feyenoord ➨ Manchester City
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 08:30 Orkun Kökcü - -
- - - - Feyenoord ➨ Chelsea
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 08:29 Orkun Kökcü - -
- - - - Feyenoord ➨ Arsenal
- -
- - - -
- -
- -
- -
- - - -
- -
- -
- -
- - - -
- -
- -
- - - - - -
- -
- - Compositions récentes
- -
- - - -
- -
- -
- -
- - - -
- - - -
- -
- -
- -
- -
- - - -
- - - -
- -
- -
- -
- -
- - - -
- - - -
- -
- -
- -
- -
- - - -
- - - -
- -
- -
- -
- -
- - - -
- - - -
- -
- -
- -
- - - -
- -
- -
- -
- - - -
- -
- -
- - - - - - - - - - - - - -
- -
- - Actualités populaires
- -
- - - -
- -
- -
- -
- -
- -
- -
- - - -
- -
- -
- - - -
- - - -
- -
- - NUAGE DE MOTS,
- -
- - - -
- -
- -
- -

Le plus de mentions, dernier heures:

- -
- -
- -
- -
- -
- -
- - - -
- -
- -
- - - -
- - - -
- -
- - Blessures récentes
- -
- -
- -
- -
- -
- - - -
- - 12/12 18:53 Victor Moses - -
- - Chelsea, - - Quelques jours
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:51 Marco Van Ginkel - -
- - Chelsea, - - Mi Mars 2019
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:38 Jamal Blackman - -
- - Chelsea, - - Inconnu
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:38 Mateo Kovacic - -
- - Chelsea, - - Inconnu
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:24 Tom Smith - -
- - Huddersfield, - - Début Janvier 2019
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:19 Danny Olsen - -
- - Hobro, - - Inconnu
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:19 Jacob Tjørnelund - -
- - Hobro, - - Quelques semaines
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:05 Artem Dovbyk - -
- - FC Midtjylland, - - Inconnu
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:05 Jonathan Hogg - -
- - Huddersfield, - - Au jour le jour
- -
- - - -
- -
- -
- -
- -
- - - -
- - 12/12 18:03 Terence Kongolo - -
- - Huddersfield, - - Au jour le jour
- -
- - - -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- -
- - - -
- - - - - -
- -
- - Transferts récents
- -
- - - -
- -
- -
- -
- - - -
- - - - 12/12 14:54 Mark Noble - -
- - West Ham (nouveau contrat) - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 03:56 Kendall McIntosh - -
- - Portland Timbers (nouveau contrat) - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 03:56 Modou Jadama - -
- - Portland Timbers (nouveau contrat) - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 03:55 Bill Tuiloma - -
- - Portland Timbers (nouveau contrat) - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 03:55 Jeremy Ebobisse - -
- - Portland Timbers (nouveau contrat) - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 03:54 Foster Langsdorf - -
- - Portland Timbers (nouveau contrat) - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 01:43 Hassan Ndam - -
- - New York RB ➨ - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 01:40 Eric Alexander - -
- - Houston Dynamo ➨ - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 01:35 Roland Lamah - -
- - Dallas ➨ - -
- -
- - - -
- -
- -
- -
- -
- - - -
- - - - 12/12 00:03 Darren Mattocks - -
- - DC United ➨ - -
- -
- - - -
- -
- -
- -
- - - -
- -
- -
- -
- - - -
- -
- - - -
- - - -
- - - - - - - -
- -
- - Équipes populaires
- -
- - - -
- -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - -
- -
- -
- - - - - -
- -
- -
- - - -
- - - -
- - - -
- -
- - - -
- - - -
- - - - - -
- - - -

- - Blessures et suspensions - Ligue 1

- -
- -
- - Filtrer: - -
- -
- -
- - - -
- - - - - -
- - - -
- -
- - - -
- -
- -
- -
- -
- - - - - - - - - -
- -
- - - -
- -

Actualités des équipes - que trouve-t-on ici ?

- - Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. - -
- -
- -

Amiens SC

- - - -
- -
- -
- - 11/12 15:20
- -
- - - -
- -
- -
- -
- - Ganso (MI)
- -
- - Maladie (depuis 08/12) - -
- -
- - Au jour le jour
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:17
- -
- - - -
- -
- -
- -
- - Bongani Zungu (MI)
- -
- - Blessure au ligament croisé (depuis 02/09) - -
- -
- - Début Février 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:16
- -
- - - -
- -
- -
- -
- - Moussa Konaté (AT)
- -
- - Blessure à l'aine (depuis 27/10) - -
- -
- - Début Janvier 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:17
- -
- - - -
- -
- -
- -
- - Quentin Cornette (AT)
- -
- - Blessure aux ménisques (depuis 26/09) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:16
- -
- - - -
- -
- -
- -
- - Rafal Kurzawa (MI)
- -
- - Blessure à la cuisse (depuis 03/12) - -
- -
- - Fin Décembre 2018
- -
- -
- -
- -
- - - -

Angers SCO

- - - -
- -
- -
- - 11/12 15:23
- -
- - - -
- -
- -
- -
- - Anthony Gomez Mancini
- -
- - Blessure à la cuisse (depuis 24/09) - -
- -
- - Au jour le jour
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:25
- -
- - - -
- -
- -
- -
- - Ibrahim Cissé (DF)
- -
- - Blessure à la cheville (depuis 28/08) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:25
- -
- - - -
- -
- -
- -
- - Loic Puyo (MI)
- -
- - Blessure à la cuisse (depuis 29/03) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:20
- -
- - - -
- -
- -
- -
- - Yoann Andreu (DF)
- -
- - Blessure au genou (depuis 10/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:20
- -
- - - -
- -
- -
- -
- - Zacharie Boucher (GK)
- -
- - Maladie (depuis 03/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:26
- -
- - - -
- -
- -
- -
- - Farid El Melali (AT)
- -
- - Entorse de la cheville (depuis 28/11) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:26
- -
- - - -
- -
- -
- -
- - Vincent Manceau (DF)
- -
- - Blessure aux côtes (depuis 29/11) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:23
- -
- - - -
- -
- -
- -
- - Vincent Pajot (MI)
- -
- - Luxation du coude (depuis 28/11) - -
- -
- - Fin Janvier 2019
- -
- -
- -
- -
- - - -
- -
- -
- - 11/12 16:28
- -
- - - -
- -
- -
- -
- - Cheikh Ndoye (MI)
- -
- - 15/12: Amiens-Angers
- -
- -
- - Points de sanction
- -
- -
- -
- -
- -

Bordeaux

- - - -
- -
- -
- - 11/12 15:32
- -
- - - -
- -
- -
- -
- - Zaydou Youssouf (MI)
- -
- - Entorse du genou (depuis 05/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:30
- -
- - - -
- -
- -
- -
- - Igor Lewczuk (DF)
- -
- - Entorse de la cheville (depuis 25/10) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- - - -

Caen

- - - -
- -
- -
- - 11/12 15:40
- -
- - - -
- -
- -
- -
- - Emmanuel Imorou (DF)
- -
- - Blessure à la cuisse (depuis 27/10) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:37
- -
- - - -
- -
- -
- -
- - Alexander Djiku (DF)
- -
- - Blessure au tendon d'Achille (depuis 07/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:37
- -
- - - -
- -
- -
- -
- - Romain Genevois (DF)
- -
- - Blessure au tendon d'Achille (depuis 22/09) - -
- -
- - Début Janvier 2019
- -
- -
- -
- -
- - - -

Dijon

- - - -
- -
- -
- - 11/12 15:45
- -
- - - -
- -
- -
- -
- - Yoann Gourcuff (MI)
- -
- - Blessure à la cuisse (depuis 20/10) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:47
- -
- - - -
- -
- -
- -
- - Enzo Loiodice (MI)
- -
- - Blessure à la cuisse (depuis 01/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:47
- -
- - - -
- -
- -
- -
- - Chang-Hoon Kwon (AT)
- -
- - Blessure au tendon d'Achille (depuis 19/05) - -
- -
- - Début Février 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:46
- -
- - - -
- -
- -
- -
- - Nayef Aguerd
- -
- - Blessure à l'aine (depuis 07/12) - -
- -
- - Début Janvier 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:45
- -
- - - -
- -
- -
- -
- - Senou Coulibaly (DF)
- -
- - Blessure à la cuisse (depuis 11/11) - -
- -
- - Medio Décembre 2018
- -
- -
- -
- -
- - - -
- -
- -
- - 11/12 16:34
- -
- - - -
- -
- -
- -
- - Wesley Lautoa (DF)
- -
- - 15/12: Dijon-Paris Saint Germain
- -
- -
- - Points de sanction
- -
- -
- -
- -
- -

Guingamp

- - - -
- -
- -
- - 11/12 15:54
- -
- - - -
- -
- -
- -
- - Nolan Roux (AT)
- -
- - Blessure à la cuisse (depuis 29/09) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:50
- -
- - - -
- -
- -
- -
- - Nicolas Benezet (MI)
- -
- - Blessure à la cuisse (depuis 07/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:50
- -
- - - -
- -
- -
- -
- - Lucas Deaux (MI)
- -
- - Blessure à la cuisse (depuis 10/11) - -
- -
- - Medio Janvier 2019
- -
- -
- -
- -
- - - -
- -
- -
- - 09/12 20:03
- -
- - - -
- -
- -
- -
- - Marcus Thuram (AT)
- -
- - 16/12: Guingamp-Rennes
- -
- -
- - Carton rouge (direct)
- -
- -
- -
- -
- -

Lille

- - - -
- -
- -
- - 11/12 15:59
- -
- - - -
- -
- -
- -
- - Adama Soumaoro (DF)
- -
- - Blessure au mollet (depuis 23/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 15:59
- -
- - - -
- -
- -
- -
- - Fares Bahlouli
- -
- - Inconnu (depuis 07/07) - -
- -
- - Inconnu
- -
- -
- -
- -
- - - -

Monaco

- - - -
- -
- -
- - 11/12 16:49
- -
- - - -
- -
- -
- -
- - Danijel Subasic (GK)
- -
- - Blessure à la cuisse (depuis 23/10) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:54
- -
- - - -
- -
- -
- -
- - Marcos Lopes (MI)
- -
- - Blessure à la cuisse (depuis 10/09) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:39
- -
- - - -
- -
- -
- -
- - Stevan Jovetic (AT)
- -
- - Blessure à la cuisse (depuis 25/10) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:46
- -
- - - -
- -
- -
- -
- - Willem Geubbels (AT)
- -
- - Blessure au genou (depuis 25/08) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:49
- -
- - - -
- -
- -
- -
- - Nacer Chadli (MI)
- -
- - Blessure à l'aine (depuis 04/12) - -
- -
- - Au jour le jour
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:54
- -
- - - -
- -
- -
- -
- - Adama Traore
- -
- - Blessure à la cuisse (depuis 05/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:51
- -
- - - -
- -
- -
- -
- - Almamy Toure (DF)
- -
- - Blessure à la cuisse (depuis 22/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:39
- -
- - - -
- -
- -
- -
- - Djibril Sidibe (DF)
- -
- - Coup reçu (depuis 02/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:47
- -
- - - -
- -
- -
- -
- - Pietro Pellegri (AT)
- -
- - Blessure à l'aine (depuis 28/09) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:46
- -
- - - -
- -
- -
- -
- - Robert Navarro
- -
- - Inconnu (depuis 02/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:50
- -
- - - -
- -
- -
- -
- - Samuel Grandsir (AT)
- -
- - Blessure à la cuisse (depuis 30/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:51
- -
- - - -
- -
- -
- -
- - Jean-Eudes Aholou (MI)
- -
- - Blessure au pied (depuis 31/10) - -
- -
- - Medio Décembre 2018
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:47
- -
- - - -
- -
- -
- -
- - Jordi Mboula (AT)
- -
- - Blessure aux adducteurs (depuis 11/11) - -
- -
- - Medio Avril 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:50
- -
- - - -
- -
- -
- -
- - Kevin N'Doram (DF)
- -
- - Entorse du genou (depuis 16/11) - -
- -
- - Fin Décembre 2018
- -
- -
- -
- -
- - - -

Montpellier

- - - -
- -
- -
- - 11/12 17:08
- -
- - - -
- -
- -
- -
- - Jeremie Porsan-Clemente (AT)
- -
- - Fracture des orteils (depuis 28/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:08
- -
- - - -
- -
- -
- -
- - Paul Bastien Lasne (MI)
- -
- - Blessure à l'aine (depuis 25/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:08
- -
- - - -
- -
- -
- -
- - Keagan Larenzo Dolly (MI)
- -
- - Fracture de la jambe (depuis 15/09) - -
- -
- - Medio Décembre 2018
- -
- -
- -
- -
- - - -

Nantes

- - - -
- -
- -
- - 11/12 17:12
- -
- - - -
- -
- -
- -
- - Quentin Braat (GK)
- -
- - Blessure au ligament croisé (depuis 21/09) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- - - -

Nice

- - - -
- -
- -
- - 11/12 17:15
- -
- - - -
- -
- -
- -
- - Christophe Jallet (DF)
- -
- - Blessure au mollet (depuis 28/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:18
- -
- - - -
- -
- -
- -
- - Dante (DF)
- -
- - Blessure à la cuisse (depuis 04/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:21
- -
- - - -
- -
- -
- -
- - Gautier Lloris (DF)
- -
- - Blessure au dos (depuis 20/09) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:18
- -
- - - -
- -
- -
- -
- - Mickael Le Bihan (AT)
- -
- - Blessure au genou (depuis 30/08) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:18
- -
- - - -
- -
- -
- -
- - Mouez Hassen (GK)
- -
- - Luxation de l'épaule (depuis 28/06) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:19
- -
- - - -
- -
- -
- -
- - Myziane Maolida (AT)
- -
- - Fracture du pied (depuis 23/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:19
- -
- - - -
- -
- -
- -
- - Racine Coly (DF)
- -
- - Blessure aux adducteurs (depuis 08/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:21
- -
- - - -
- -
- -
- -
- - Yoann Cardinale (GK)
- -
- - Blessure à la cuisse (depuis 03/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- - - -

Nîmes

- - - -
- -
- -
- - 11/12 17:22
- -
- - - -
- -
- -
- -
- - Mustapha Diallo (MI)
- -
- - Blessure à la cheville (depuis 24/10) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:22
- -
- - - -
- -
- -
- -
- - Pierrick Valdivia (MI)
- -
- - Blessure au ligament croisé (depuis 18/08) - -
- -
- - Inconnu
- -
- -
- -
- -
- - - -

Olympique Lyon

- - - -
- -
- -
- - 11/12 16:13
- -
- - - -
- -
- -
- -
- - Jeremy Morel (DF)
- -
- - Inconnu (depuis 11/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:09
- -
- - - -
- -
- -
- -
- - Maxwel Cornet (AT)
- -
- - Blessure aux adducteurs (depuis 01/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:14
- -
- - - -
- -
- -
- -
- - Rafael da Silva (DF)
- -
- - Blessure à la hanche (depuis 11/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 16:02
- -
- - - -
- -
- -
- -
- - Amine Gouiri (AT)
- -
- - Blessure au ligament croisé (depuis 18/08) - -
- -
- - Début Mars 2019
- -
- -
- -
- -
- - - -

Olympique Marseille

- - - - - -
- -
- -
- - 11/12 16:24
- -
- - - -
- -
- -
- -
- - Florian Thauvin (AT)
- -
- - 16/12: Marseille-Bordeaux
- -
- -
- - Points de sanction
- -
- -
- -
- -
- -

PSG

- - - -
- -
- -
- - 11/12 17:24
- -
- - - -
- -
- -
- -
- - Jesé (AT)
- -
- - Blessure à la hanche (depuis 29/09) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:25
- -
- - - -
- -
- -
- -
- - Colin Dagba (DF)
- -
- - Blessure aux adducteurs (depuis 26/09) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- - - -
- -
- -
- - 07/12 23:55
- -
- - - -
- -
- -
- -
- - Marco Verratti (MI)
- -
- - 15/12: Dijon-Paris Saint Germain
- -
- -
- - Points de sanction
- -
- -
- -
- -
- -

Reims

- - - -
- -
- -
- - 11/12 17:28
- -
- - - -
- -
- -
- -
- - Patrick Bahanack
- -
- - Blessure au genou (depuis 27/10) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:28
- -
- - - -
- -
- -
- -
- - Sheyi Ojo (MI)
- -
- - Blessure au genou (depuis 04/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:28
- -
- - - -
- -
- -
- -
- - Virgile Pinson (AT)
- -
- - Blessure à la main (depuis 02/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- - - -

Rennes

- - - -
- -
- -
- - 11/12 17:33
- -
- - - -
- -
- -
- -
- - Gerzino Nyamsi (DF)
- -
- - Inconnu (depuis 01/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:35
- -
- - - -
- -
- -
- -
- - Ludovic Baal
- -
- - Blessure aux adducteurs (depuis 04/10) - -
- -
- - Quelques semaines
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:33
- -
- - - -
- -
- -
- -
- - Rafik Guitane (MI)
- -
- - Blessure au ligament croisé (depuis 12/10) - -
- -
- - Forfait pour la saison
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:35
- -
- - - -
- -
- -
- -
- - Romain Danze
- -
- - Blessure au genou (depuis 24/10) - -
- -
- - Forfait pour la saison
- -
- -
- -
- -
- - - -
- -
- -
- - 11/12 16:29
- -
- - - -
- -
- -
- -
- - Ramy Bensebaini (DF)
- -
- - 16/12: Guingamp-Rennes
- -
- -
- - Points de sanction
- -
- -
- -
- -
- -

Saint-Étienne

- - - -
- -
- -
- - 11/12 17:36
- -
- - - -
- -
- -
- -
- - Loïc Perrin
- -
- - Blessure aux adducteurs (depuis 10/11) - -
- -
- - De retour à l'entraînement
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:37
- -
- - - -
- -
- -
- -
- - Gabriel Silva
- -
- - Blessure aux adducteurs (depuis 06/12) - -
- -
- - Début Janvier 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:37
- -
- - - -
- -
- -
- -
- - Mathieu Debuchy (DF)
- -
- - Entorse de la cheville (depuis 05/12) - -
- -
- - Medio Janvier 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:36
- -
- - - -
- -
- -
- -
- - Neven Subotic (DF)
- -
- - Blessure à la tête (depuis 05/12) - -
- -
- - Début Février 2019
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:38
- -
- - - -
- -
- -
- -
- - Romain Hamouma
- -
- - Blessure à la clavicule (depuis 30/11) - -
- -
- - Début Janvier 2019
- -
- -
- -
- -
- - - -
- -
- -
- - 11/12 16:30
- -
- - - -
- -
- -
- -
- - Remy Cabella (MI)
- -
- - 14/12: Nice-Saint Etienne
- -
- -
- - Points de sanction
- -
- -
- -
- -
- -

Strasbourg

- - - -
- -
- -
- - 11/12 17:42
- -
- - - -
- -
- -
- -
- - Anthony Goncalves (MI)
- -
- - Blessure au mollet (depuis 25/10) - -
- -
- - Quelques jours
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:39
- -
- - - -
- -
- -
- -
- - Abdallah Ndour (DF)
- -
- - Blessure au genou (depuis 25/09) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:42
- -
- - - -
- -
- -
- -
- - Idriss Saadi (AT)
- -
- - Blessure au genou (depuis 12/10) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:40
- -
- - - -
- -
- -
- -
- - Jeremy Grimm (MI)
- -
- - Blessure aux adducteurs (depuis 30/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:45
- -
- - - -
- -
- -
- -
- - Kévin Zohi (MI)
- -
- - Blessure à la cheville (depuis 08/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:40
- -
- - - -
- -
- -
- -
- - Lionel Carole (DF)
- -
- - Blessure à la cuisse (depuis 05/12) - -
- -
- - Début Janvier 2019
- -
- -
- -
- -
- - - -

Toulouse

- - - -
- -
- -
- - 11/12 17:47
- -
- - - -
- -
- -
- -
- - Marc Vidal (GK)
- -
- - Blessure à la cuisse (depuis 30/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:48
- -
- - - -
- -
- -
- -
- - Steven Fortes (DF)
- -
- - Blessure à la cuisse (depuis 30/11) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:47
- -
- - - -
- -
- -
- -
- - Yaya Sanogo (AT)
- -
- - Blessure musculaire (depuis 04/12) - -
- -
- - Inconnu
- -
- -
- -
- -
- -
- -
- -
- - 11/12 17:45
- -
- - - -
- -
- -
- -
- - Ibrahim Sangare (MI)
- -
- - Blessure aux orteils (depuis 25/10) - -
- -
- - Medio Décembre 2018
- -
- -
- -
- -
- - - -
- -
- -
- - 05/12 23:34
- -
- - - -
- -
- -
- -
- - Manuel Garcia Alonso (MI)
- -
- - 15/12: Caen-Toulouse
- -
- -
- - Carton rouge (2 jaunes)
- -
- -
- -
- -
- -

- -
- - - - - -
- -
- - - -
- - - - - - - -
- -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20181220.html b/src/test/resources/__files/equipeactu.ligue-1.20181220.html deleted file mode 100644 index 0b8c6be..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20181220.html +++ /dev/null @@ -1,3377 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 23:39  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- -
- - -
- - - -
- - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 20/12 23:07 Ivan Marcano -
- - Rome ➨ Séville
-
- -
-
-
-
-
- -
- - 20/12 23:06 Sergio Junior Dutra -
- - Corinthians ➨ Guarani
-
- -
-
-
-
-
- -
- - 20/12 23:03 Augusto Thiago Neves -
- - Cruzeiro ➨ Grêmio
-
- -
-
-
-
-
- -
- - 20/12 23:00 Rade Krunic -
- - Empoli ➨ Genoa
-
- -
-
-
-
-
- -
- - 20/12 22:53 Bruno Henrique Pinto -
- - Santos ➨ Flamengo
-
- -
-
-
-
-
- -
- - 20/12 22:50 Emiliano Viviano -
- - Sporting CP ➨ SPAL 2013
-
- -
-
-
-
-
- -
- - 20/12 22:39 Roberto Soriano -
- - Villarreal ➨ Bologne
-
- -
-
-
-
-
- -
- - 20/12 22:38 Felipe Pires -
- - Hoffenheim ➨ Palmeiras
-
- -
-
-
-
-
- -
- - 20/12 22:35 Angelo Obinze Ogbonna -
- - West Ham ➨ Bologne
-
- -
-
-
-
-
- -
- - 20/12 22:33 Antonio Barreca -
- - Monaco ➨ Bologne
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 20/12 23:23 Danilo Pereira -
- Portugal, - Au jour le jour
-
- -
-
-
-
-
- -
- 20/12 23:23 Vincent Aboubakar -
- FC Porto, - Fin Mars 2019
-
- -
-
-
-
-
- -
- 20/12 23:23 Otavio -
- FC Porto, - Au jour le jour
-
- -
-
-
-
-
- -
- 20/12 23:12 Jose Barbosa de Lucena Lionn -
- Chaves, - Inconnu
-
- -
-
-
-
-
- -
- 20/12 23:12 Joao Teixeira -
- Chaves, - Au jour le jour
-
- -
-
-
-
-
- -
- 20/12 23:12 Nikola Maras -
- Serbie U21, - Au jour le jour
-
- -
-
-
-
-
- -
- 20/12 23:12 André Luis Silva de Aguiar -
- Chaves, - Inconnu
-
- -
-
-
-
-
- -
- 20/12 23:12 Bruno Vieira de Oliveira Gallo -
- Chaves, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 20/12 23:12 Nuno André Coelho -
- Chaves, - Au jour le jour
-
- -
-
-
-
-
- -
- 20/12 23:12 Gevorg Ghazaryan -
- Chaves, - Inconnu
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 20/12 23:26 Jan Gregus -
- Copenhague ➨ - Minnesota United (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 22:58 Carlos Eduardo -
- Club Rivadavia Lincoln ➨ - Palmeiras (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 22:53 Nicolas Cozza -
- Montpellier (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 20/12 22:45 Diego Cavalieri -
- Agent libre ➨ - Botafogo (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 22:45 Gustavo Ferrareis -
- Internacional ➨ - Botafogo (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 22:29 Marcus Johnson Mehnert -
- Asker ➨ - Brann (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 22:22 Jonathan Rodriguez -
- Santos Laguna ➨ - Cruz Azul (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 22:15 Bryan Garnica -
- Atlas ➨ - Santos Laguna (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 21:36 Daniel Björkman -
- Forward ➨ - Örebro (de 01/01) -
-
- -
-
-
-
-
- -
- - 20/12 20:52 Jeison Murillo -
- Valence ➨ - Barcelone (de 01/01) -
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 20/12 22:28
-
- -
-
-
-
- Ganso (MI)
-
- Maladie (depuis 08/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 20/12 22:22
-
- -
-
-
-
- Bongani Zungu (MI)
-
- Blessure au ligament croisé (depuis 02/09) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 20/12 22:15
-
- -
-
-
-
- Moussa Konaté (AT)
-
- Blessure à l'aine (depuis 27/10) -
-
- Début Janvier 2019
-
-
-
-
-
-
-
- 20/12 22:28
-
- -
-
-
-
- Quentin Cornette (AT)
-
- Blessure aux ménisques (depuis 26/09) -
-
- Quelques semaines
-
-
-
-
- -

Angers SCO

- -
-
-
- 18/12 23:21
-
- -
-
-
-
- Anthony Gomez Mancini
-
- Blessure à la cuisse (depuis 24/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 18/12 23:24
-
- -
-
-
-
- Ibrahim Cissé (DF)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:23
-
- -
-
-
-
- Loic Puyo (MI)
-
- Blessure à la cuisse (depuis 29/03) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:20
-
- -
-
-
-
- Yoann Andreu (DF)
-
- Blessure au genou (depuis 10/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:20
-
- -
-
-
-
- Zacharie Boucher (GK)
-
- Maladie (depuis 03/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:24
-
- -
-
-
-
- Farid El Melali (AT)
-
- Entorse de la cheville (depuis 28/11) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 18/12 23:24
-
- -
-
-
-
- Vincent Manceau (DF)
-
- Blessure aux côtes (depuis 29/11) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 18/12 23:21
-
- -
-
-
-
- Vincent Pajot (MI)
-
- Luxation du coude (depuis 28/11) -
-
- Fin Janvier 2019
-
-
-
-
- -

Bordeaux

- -
-
-
- 20/12 22:35
-
- -
-
-
-
- Zaydou Youssouf (MI)
-
- Entorse du genou (depuis 05/12) -
-
- Inconnu
-
-
-
-
- -

Caen

- -
-
-
- 20/12 22:55
-
- -
-
-
-
- Emmanuel Imorou (DF)
-
- Blessure à la cuisse (depuis 27/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 18/12 23:36
-
- -
-
-
-
- Prince Oniangue (MI)
-
- Blessure au genou (depuis 18/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 20/12 22:57
-
- -
-
-
-
- Romain Genevois (DF)
-
- Blessure au tendon d'Achille (depuis 22/09) -
-
- Début Janvier 2019
-
-
-
-
-
-
-
- 20/12 22:56
-
- -
-
-
-
- Yacine Bammou
-
- Blessure à l'aine (depuis 17/12) -
-
- Quelques semaines
-
-
-
-
- -

Dijon

- -
-
-
- 18/12 23:40
-
- -
-
-
-
- Yoann Gourcuff (MI)
-
- Blessure à la cuisse (depuis 20/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 18/12 23:42
-
- -
-
-
-
- Enzo Loiodice (MI)
-
- Blessure à la cuisse (depuis 01/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 18:17
-
- -
-
-
-
- Frédéric Sammaritano (MI)
-
- Blessure au genou (depuis 18/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:42
-
- -
-
-
-
- Nayef Aguerd
-
- Blessure à l'aine (depuis 07/12) -
-
- Début Janvier 2019
-
-
-
-
-
-
-
- 18/12 23:40
-
- -
-
-
-
- Senou Coulibaly (DF)
-
- Blessure à la cuisse (depuis 11/11) -
-
- Medio Décembre 2018
-
-
-
-
- -

Guingamp

- -
-
-
- 18/12 23:44
-
- -
-
-
-
- Nolan Roux (AT)
-
- Blessure à la cuisse (depuis 29/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 18/12 23:43
-
- -
-
-
-
- Lucas Deaux (MI)
-
- Blessure à la cuisse (depuis 10/11) -
-
- Medio Janvier 2019
-
-
-
-
- -

Lille

- -
-
-
- 18/12 23:46
-
- -
-
-
-
- Adama Soumaoro (DF)
-
- Blessure au mollet (depuis 23/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:48
-
- -
-
-
-
- Fares Bahlouli
-
- Inconnu (depuis 07/07) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:45
-
- -
-
-
-
- Loic Remy (AT)
-
- Blessure au mollet (depuis 14/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:48
-
- -
-
-
-
- Nanitamo Jonathan Ikoné (MI)
-
- Inconnu (depuis 16/12) -
-
- Inconnu
-
-
-
-
- -
-
-
- 16/12 18:24
-
- -
-
-
-
- Jose Miguel Fonte (DF)
-
- 22/12: Lille-Toulouse
-
-
- Carton rouge (direct)
-
-
-
-
-
-
-
- 14/12 11:26
-
- -
-
-
-
- Xeka (MI)
-
- 22/12: Lille-Toulouse
-
-
- Points de sanction
-
-
-
-
-

Monaco

- -
-
-
- 17/12 16:11
-
- -
-
-
-
- Marcos Lopes (MI)
-
- Blessure à la cuisse (depuis 10/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 20/12 22:37
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 20/12 22:23
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Blessure à la cuisse (depuis 25/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 20/12 22:37
-
- -
-
-
-
- Danijel Subasic (GK)
-
- Blessure à la cuisse (depuis 23/10) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 17/12 16:10
-
- -
-
-
-
- Adama Traore
-
- Blessure à la cuisse (depuis 05/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:03
-
- -
-
-
-
- Alexander Golovin
-
- Blessure à la cuisse (depuis 17/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:08
-
- -
-
-
-
- Almamy Toure (DF)
-
- Blessure à la cuisse (depuis 22/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 20/12 22:26
-
- -
-
-
-
- Antonio Barreca (DF)
-
- Blessure aux côtes (depuis 14/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:01
-
- -
-
-
-
- Djibril Sidibe (DF)
-
- Coup reçu (depuis 02/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:03
-
- -
-
-
-
- Robert Navarro
-
- Inconnu (depuis 02/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:07
-
- -
-
-
-
- Ronael Pierre-Gabriel (DF)
-
- Blessure à la cuisse (depuis 15/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 20/12 22:18
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure à la cuisse (depuis 19/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:10
-
- -
-
-
-
- Jean-Eudes Aholou (MI)
-
- Blessure au pied (depuis 31/10) -
-
- Medio Décembre 2018
-
-
-
-
-
-
-
- 17/12 16:04
-
- -
-
-
-
- Jordi Mboula (AT)
-
- Blessure aux adducteurs (depuis 11/11) -
-
- Medio Avril 2019
-
-
-
-
-
-
-
- 17/12 16:07
-
- -
-
-
-
- Kevin N'Doram (DF)
-
- Entorse du genou (depuis 16/11) -
-
- Fin Décembre 2018
-
-
-
-
- -
-
-
- 17/12 06:00
-
- -
-
-
-
- Alexander Golovin
-
- 22/12: Monaco-Guingamp
-
-
- Carton rouge (direct)
-
-
-
-
-

Montpellier

- -
-
-
- 17/12 16:15
-
- -
-
-
-
- Jeremie Porsan-Clemente (AT)
-
- Fracture des orteils (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:16
-
- -
-
-
-
- Paul Bastien Lasne (MI)
-
- Blessure à l'aine (depuis 25/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:15
-
- -
-
-
-
- Keagan Larenzo Dolly (MI)
-
- Fracture de la jambe (depuis 15/09) -
-
- Medio Décembre 2018
-
-
-
-
- -

Nantes

- -
-
-
- 17/12 16:18
-
- -
-
-
-
- Quentin Braat (GK)
-
- Blessure au ligament croisé (depuis 21/09) -
-
- Quelques semaines
-
-
-
-
- -

Nice

- -
-
-
- 17/12 16:23
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure au dos (depuis 20/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:22
-
- -
-
-
-
- Jean-Victor Makengo (MI)
-
- Inconnu (depuis 04/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:21
-
- -
-
-
-
- Mickael Le Bihan (AT)
-
- Blessure au genou (depuis 30/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:19
-
- -
-
-
-
- Mouez Hassen (GK)
-
- Luxation de l'épaule (depuis 28/06) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:21
-
- -
-
-
-
- Myziane Maolida (AT)
-
- Fracture du pied (depuis 23/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:23
-
- -
-
-
-
- Yoann Cardinale (GK)
-
- Blessure à la cuisse (depuis 03/12) -
-
- Inconnu
-
-
-
-
- -

Nîmes

- -
-
-
- 17/12 16:27
-
- -
-
-
-
- Mustapha Diallo (MI)
-
- Blessure à la cheville (depuis 24/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:28
-
- -
-
-
-
- Pierrick Valdivia (MI)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Inconnu
-
-
-
-
- -

Olympique Lyon

- -
-
-
- 18/12 23:51
-
- -
-
-
-
- Jeremy Morel (DF)
-
- Inconnu (depuis 11/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:53
-
- -
-
-
-
- Maxwel Cornet (AT)
-
- Blessure aux adducteurs (depuis 01/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:53
-
- -
-
-
-
- Amine Gouiri (AT)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 18/12 23:52
-
- -
-
-
-
- Rafael da Silva (DF)
-
- Blessure à la hanche (depuis 11/12) -
-
- Medio Mars 2019
-
-
-
-
- -

Olympique Marseille

- - -
Aucune blessure ni suspension enregistrée

PSG

- -
-
-
- 18/12 23:24
-
- -
-
-
-
- Alphonse Areola (GK)
-
- Blessure au dos (depuis 18/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:22
-
- -
-
-
-
- Angel Di Maria (MI)
-
- Blessure à la cheville (depuis 18/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:31
-
- -
-
-
-
- Jesé (AT)
-
- Blessure à la hanche (depuis 29/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:31
-
- -
-
-
-
- Colin Dagba (DF)
-
- Blessure aux adducteurs (depuis 26/09) -
-
- Quelques semaines
-
-
-
-
- -

Reims

- -
-
-
- 17/12 16:34
-
- -
-
-
-
- Pablo Chavarria (AT)
-
- Blessure à la hanche (depuis 14/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:36
-
- -
-
-
-
- Patrick Bahanack
-
- Blessure au genou (depuis 27/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:34
-
- -
-
-
-
- Virgile Pinson (AT)
-
- Blessure à la main (depuis 02/11) -
-
- Inconnu
-
-
-
-
- -

Rennes

- -
-
-
- 17/12 16:40
-
- -
-
-
-
- Gerzino Nyamsi (DF)
-
- Inconnu (depuis 01/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:38
-
- -
-
-
-
- Ludovic Baal
-
- Blessure aux adducteurs (depuis 04/10) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 17/12 16:40
-
- -
-
-
-
- Rafik Guitane (MI)
-
- Blessure au ligament croisé (depuis 12/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 17/12 16:38
-
- -
-
-
-
- Romain Danze
-
- Blessure au genou (depuis 24/10) -
-
- Forfait pour la saison
-
-
-
-
- -
-
-
- 11/12 16:29
-
- -
-
-
-
- Ramy Bensebaini (DF)
-
- 16/01: Guingamp-Rennes
-
-
- Points de sanction
-
-
-
-
-

Saint-Étienne

- -
-
-
- 17/12 16:51
-
- -
-
-
-
- Gabriel Silva
-
- Blessure aux adducteurs (depuis 06/12) -
-
- Début Janvier 2019
-
-
-
-
-
-
-
- 17/12 16:47
-
- -
-
-
-
- Mathieu Debuchy (DF)
-
- Entorse de la cheville (depuis 05/12) -
-
- Medio Janvier 2019
-
-
-
-
-
-
-
- 17/12 16:47
-
- -
-
-
-
- Neven Subotic (DF)
-
- Blessure à la tête (depuis 05/12) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 17/12 16:51
-
- -
-
-
-
- Romain Hamouma
-
- Blessure à la clavicule (depuis 30/11) -
-
- Début Janvier 2019
-
-
-
-
- -
-
-
- 16/12 20:07
-
- -
-
-
-
- Yannis Salibur (AT)
-
- 22/12: Saint Etienne-Dijon
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-

Strasbourg

- -
-
-
- 17/12 16:55
-
- -
-
-
-
- Abdallah Ndour (DF)
-
- Blessure au genou (depuis 25/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:53
-
- -
-
-
-
- Idriss Saadi (AT)
-
- Blessure au genou (depuis 12/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:53
-
- -
-
-
-
- Jeremy Grimm (MI)
-
- Blessure aux adducteurs (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:56
-
- -
-
-
-
- Lamine Kone (DF)
-
- Blessure à l'aine (depuis 18/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 18/12 23:56
-
- -
-
-
-
- Nuno da Costa (AT)
-
- Blessure à l'aine (depuis 18/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:55
-
- -
-
-
-
- Lionel Carole (DF)
-
- Blessure à la cuisse (depuis 05/12) -
-
- Début Janvier 2019
-
-
-
-
- -

Toulouse

- -
-
-
- 17/12 17:04
-
- -
-
-
-
- Steven Moreira (DF)
-
- Blessure à l'aine (depuis 17/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 17/12 17:01
-
- -
-
-
-
- Marc Vidal (GK)
-
- Blessure à la cuisse (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 17:05
-
- -
-
-
-
- Steeve Yago (DF)
-
- Blessure à l'aine (depuis 17/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 17:01
-
- -
-
-
-
- Steven Fortes (DF)
-
- Blessure à la cuisse (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/12 16:58
-
- -
-
-
-
- Ibrahim Sangare (MI)
-
- Blessure aux orteils (depuis 25/10) -
-
- Medio Décembre 2018
-
-
-
-
- -

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20190123.html b/src/test/resources/__files/equipeactu.ligue-1.20190123.html deleted file mode 100644 index 4bfc28d..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20190123.html +++ /dev/null @@ -1,3281 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 23:19  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- -
- - -
- - - -
- - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 23/01 22:30 Rodrigo De Paul -
- - Udinese ➨ Internazionale
-
- -
-
-
-
-
- -
- - 23/01 22:28 Callum Hudson-Odoi -
- - Chelsea ➨ Liverpool
-
- -
-
-
-
-
- -
- - 23/01 22:04 Lucas Santiago Melano -
- - Portland Timbers ➨ Racing Club
-
- -
-
-
-
-
- -
- - 23/01 22:00 Javier Osvaldo Mendoza -
- - Instituto ➨ Huracán
-
- -
-
-
-
-
- -
- - 23/01 21:57 Diego Mendoza -
- - Huracán ➨ Belgrano
-
- -
-
-
-
-
- -
- - 23/01 21:50 Marcos Acuna -
- - Sporting CP ➨ Boca Juniors
-
- -
-
-
-
-
- -
- - 23/01 21:49 Nenad Tomovic -
- - Chievo ➨ SPAL 2013
-
- -
-
-
-
-
- -
- - 23/01 20:55 Emanuel Mas -
- - Boca Juniors ➨ San Lorenzo
-
- -
-
-
-
-
- -
- - 23/01 20:53 Paolo Goltz -
- - Boca Juniors ➨ León
-
- -
-
-
-
-
- -
- - 23/01 20:51 Leonardo Jara -
- - Boca Juniors ➨ DC United
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 23/01 23:11 Yoshinori Muto -
- Japon, - Début Février 2019
-
- -
-
-
-
-
- -
- 23/01 23:09 Bamidele Alli -
- Angleterre, - Début Mars 2019
-
- -
-
-
-
-
- -
- 23/01 23:09 Heung-Min Son -
- Corée du Sud, - Début Février 2019
-
- -
-
-
-
-
- -
- 23/01 23:09 Harry Kane -
- Angleterre, - Début Mars 2019
-
- -
-
-
-
-
- -
- 23/01 23:08 Lucas -
- Tottenham, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 23/01 23:08 Victor Wanyama -
- Tottenham, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 23/01 23:08 Moussa Sissoko -
- Tottenham, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 23/01 23:05 Karl Darlow -
- Newcastle, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 23/01 23:05 Paul Dummett -
- Newcastle, - Inconnu
-
- -
-
-
-
-
- -
- 23/01 23:03 Mohamed Diame -
- Newcastle, - Au jour le jour
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 23/01 23:03 Javier Osvaldo Mendoza -
- Instituto ➨ - Huracán
-
- -
-
-
-
-
- -
- - 23/01 22:53 Mauro Bogado -
- Huracán ➨ - San Martín San Juan
-
- -
-
-
-
-
- -
- - 23/01 22:28 Alvaro Pereira -
- Estudiantes ➨ - Nacional
-
- -
-
-
-
-
- -
- - 23/01 22:02 Lassana Bangoura -
- Rayo Vallecano ➨ - Whitecaps
-
- -
-
-
-
-
- -
- - 23/01 21:56 Gonzalo Higuain -
- Juventus ➨ - Chelsea
-
- -
-
-
-
-
- -
- - 23/01 21:42 Rasmus Bengtsson -
- Malmö FF (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 23/01 21:40 Johan Dahlin -
- Malmö FF (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 23/01 21:38 Dan Peter Ulvestad -
- Kristiansund (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 23/01 21:30 Pablo Hervías -
- Eibar ➨ - Real Valladolid
-
- -
-
-
-
-
- - -
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 22/01 17:29
-
- -
-
-
-
- Bongani Zungu (MI)
-
- Blessure au ligament croisé (depuis 02/09) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 22/01 17:28
-
- -
-
-
-
- Moussa Konaté (AT)
-
- Blessure à l'aine (depuis 27/10) -
-
- Fin Janvier 2019
-
-
-
-
-
-
-
- 22/01 17:29
-
- -
-
-
-
- Quentin Cornette (AT)
-
- Blessure aux ménisques (depuis 26/09) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 22/01 17:28
-
- -
-
-
-
- Saman Ghoddos (AT)
-
- Équipe nationale (depuis 07/01) -
-
- Fin Janvier 2019
-
-
-
-
- -

Angers SCO

- -
-
-
- 23/01 11:04
-
- -
-
-
-
- Ibrahim Cissé (DF)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 11:01
-
- -
-
-
-
- Ismael Traore (DF)
-
- Blessure au genou (depuis 15/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 11:04
-
- -
-
-
-
- Jeff Reine-Adelaide (MI)
-
- Blessure au genou (depuis 22/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 11:03
-
- -
-
-
-
- Loic Puyo (MI)
-
- Blessure à la cuisse (depuis 29/03) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 11:03
-
- -
-
-
-
- Yoann Andreu (DF)
-
- Blessure au genou (depuis 10/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 11:03
-
- -
-
-
-
- Vincent Pajot (MI)
-
- Luxation du coude (depuis 28/11) -
-
- Fin Janvier 2019
-
-
-
-
- -

Bordeaux

- -
-
-
- 22/01 17:46
-
- -
-
-
-
- Aurelien Tchouameni (MI)
-
- Blessure au dos (depuis 22/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 22/01 17:45
-
- -
-
-
-
- Pablo (DF)
-
- Blessure au pied (depuis 23/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 22/01 17:54
-
- -
-
-
-
- Younousse Sankhare (MI)
-
- Blessure aux adducteurs (depuis 24/12) -
-
- Quelques jours
-
-
-
-
-
-
-
- 22/01 17:54
-
- -
-
-
-
- Zaydou Youssouf (MI)
-
- Entorse du genou (depuis 05/12) -
-
- Début Mars 2019
-
-
-
-
- -

Caen

- -
-
-
- 23/01 11:38
-
- -
-
-
-
- Claudio Beauvue (AT)
-
- Grippe (depuis 20/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 23/01 11:40
-
- -
-
-
-
- Emmanuel Imorou (DF)
-
- Maladie (depuis 19/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 23/01 11:39
-
- -
-
-
-
- Aly NDom (MI)
-
- Blessure au tendon d'Achille (depuis 06/01) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 23/01 11:39
-
- -
-
-
-
- Prince Oniangue (MI)
-
- Blessure aux ménisques (depuis 18/12) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 23/01 11:40
-
- -
-
-
-
- Romain Genevois (DF)
-
- Blessure au tendon d'Achille (depuis 22/09) -
-
- Début Février 2019
-
-
-
-
- -
-
-
- 20/01 23:12
-
- -
-
-
-
- Frédéric Guilbert (DF)
-
- 27/01: Montpellier-Caen
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-

Dijon

- -
-
-
- 23/01 12:10
-
- -
-
-
-
- Yoann Gourcuff (MI)
-
- Blessure à la cuisse (depuis 20/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 23/01 12:08
-
- -
-
-
-
- Benjamin Jeannot (AT)
-
- Blessure au mollet (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 12:08
-
- -
-
-
-
- Frédéric Sammaritano (MI)
-
- Blessure à la cuisse (depuis 18/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 12:09
-
- -
-
-
-
- Valentin Rosier (DF)
-
- Hématome au pied (depuis 21/12) -
-
- Début Février 2019
-
-
-
-
- -
-
-
- 20/01 23:15
-
- -
-
-
-
- Romain Amalfitano (MI)
-
- 26/01: Dijon-Monaco
- 02/02: Angers-Dijon
-
-
- Carton rouge (direct)
-
-
-
-
-

Guingamp

- -
-
-
- 23/01 12:26
-
- -
-
-
-
- Nicolas Benezet (MI)
-
- Blessure au mollet (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 23/01 12:25
-
- -
-
-
-
- Denis Petric (GK)
-
- Inconnu (depuis 11/01) -
-
- Inconnu
-
-
-
-
- -

Lille

- -
-
-
- 23/01 12:34
-
- -
-
-
-
- Fares Bahlouli
-
- Inconnu (depuis 07/07) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 12:30
-
- -
-
-
-
- Jose Miguel Fonte (DF)
-
- Blessure à la poitrine (depuis 22/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 12:32
-
- -
-
-
-
- Thiago Maia (MI)
-
- Blessure à la cuisse (depuis 21/01) -
-
- Inconnu
-
-
-
-
- -

Monaco

- -
-
-
- 23/01 13:11
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 23/01 13:14
-
- -
-
-
-
- Jean-Eudes Aholou (MI)
-
- Blessure au pied (depuis 31/10) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 23/01 13:11
-
- -
-
-
-
- Kevin N'Doram (DF)
-
- Entorse du genou (depuis 16/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 23/01 13:11
-
- -
-
-
-
- Ronael Pierre-Gabriel (DF)
-
- Blessure à la cuisse (depuis 15/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 23/01 13:14
-
- -
-
-
-
- Adama Traore
-
- Blessure à la cuisse (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 13:14
-
- -
-
-
-
- Almamy Toure (DF)
-
- Blessure à la cuisse (depuis 22/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 13:10
-
- -
-
-
-
- Andrea Raggi (DF)
-
- Blessure à la cuisse (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 13:14
-
- -
-
-
-
- Nacer Chadli (MI)
-
- Blessure à la cuisse (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 13:10
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure à la cuisse (depuis 19/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 13:10
-
- -
-
-
-
- Jordi Mboula (AT)
-
- Blessure aux adducteurs (depuis 11/11) -
-
- Medio Avril 2019
-
-
-
-
-
-
-
- 23/01 13:09
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Entorse du genou (depuis 16/01) -
-
- Quelques semaines
-
-
-
-
- -
-
-
- 20/01 03:46
-
- -
-
-
-
- Naldo (DF)
-
- 26/01: Dijon-Monaco
-
-
- Carton rouge (direct)
-
-
-
-
-

Montpellier

- -
-
-
- 23/01 14:50
-
- -
-
-
-
- Benjamin Lecomte (GK)
-
- Fracture des côtes (depuis 19/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 23/01 14:51
-
- -
-
-
-
- Jeremie Porsan-Clemente (AT)
-
- Fracture des orteils (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 14:49
-
- -
-
-
-
- Keagan Larenzo Dolly (MI)
-
- Blessure au mollet (depuis 11/01) -
-
- Medio Février 2019
-
-
-
-
- -

Nantes

- -
-
-
- 22/01 19:13
-
- -
-
-
-
- Samuel Moutoussamy (MI)
-
- Blessure au genou (depuis 16/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:13
-
- -
-
-
-
- Quentin Braat (GK)
-
- Blessure au ligament croisé (depuis 21/09) -
-
- Quelques semaines
-
-
-
-
- -

Nice

- -
-
-
- 22/01 19:18
-
- -
-
-
-
- Mickael Le Bihan (AT)
-
- Blessure au genou (depuis 30/08) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 22/01 19:19
-
- -
-
-
-
- Bassem Srarfi (MI)
-
- Blessure à l'épaule (depuis 12/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:17
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure au dos (depuis 20/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:17
-
- -
-
-
-
- Mouez Hassen (GK)
-
- Luxation de l'épaule (depuis 28/06) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:19
-
- -
-
-
-
- Myziane Maolida (AT)
-
- Fracture du pied (depuis 23/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:18
-
- -
-
-
-
- Pierre Lees-Melou (MI)
-
- Entorse de la cheville (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:21
-
- -
-
-
-
- Yoann Cardinale (GK)
-
- Blessure à la cuisse (depuis 03/12) -
-
- Inconnu
-
-
-
-
- -

Nîmes

- -
-
-
- 22/01 19:25
-
- -
-
-
-
- Mustapha Diallo (MI)
-
- Blessure à la cheville (depuis 24/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:24
-
- -
-
-
-
- Pierrick Valdivia (MI)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Inconnu
-
-
-
-
- -

Olympique Lyon

- -
-
-
- 23/01 12:46
-
- -
-
-
-
- Ousseynou Ndiaye (MI)
-
- Inconnu (depuis 21/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 12:46
-
- -
-
-
-
- Amine Gouiri (AT)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 23/01 12:45
-
- -
-
-
-
- Rafael da Silva (DF)
-
- Blessure à l'aine (depuis 11/12) -
-
- Medio Mars 2019
-
-
-
-
- -

Olympique Marseille

- -
-
-
- 22/01 18:49
-
- -
-
-
-
- Adil Rami (DF)
-
- Blessure aux adducteurs (depuis 13/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 18:51
-
- -
-
-
-
- Hiroki Sakai (DF)
-
- Équipe nationale (depuis 30/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 18:49
-
- -
-
-
-
- Dimitri Payet
-
- Blessure du ligament latéral interne du genou (depuis 20/01) -
-
- Medio Février 2019
-
-
-
-
- -

PSG

- -
-
-
- 22/01 19:36
-
- -
-
-
-
- Colin Dagba (DF)
-
- Blessure aux adducteurs (depuis 26/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 22/01 19:32
-
- -
-
-
-
- Presnel Kimpembe (DF)
-
- Blessure à l'aine (depuis 11/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 22/01 19:33
-
- -
-
-
-
- Jesé (AT)
-
- Blessure à la hanche (depuis 29/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 22/01 19:33
-
- -
-
-
-
- Lavyin Kurzawa (DF)
-
- Maladie (depuis 22/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 22/01 19:36
-
- -
-
-
-
- Marco Verratti (MI)
-
- Entorse de la cheville (depuis 19/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 23/01 22:57
-
- -
-
-
-
- Neymar Jr (AT)
-
- Blessure à la cheville (depuis 23/01) -
-
- Inconnu
-
-
-
-
- -
-
-
- 07/12 23:55
-
- -
-
-
-
- Marco Verratti (MI)
-
- 13/03: Dijon-Paris Saint Germain
-
-
- Points de sanction
-
-
-
-
-

Reims

- -
-
-
- 22/01 19:42
-
- -
-
-
-
- Ghislain Nclomande Konan (DF)
-
- Blessure au dos (depuis 19/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:40
-
- -
-
-
-
- Patrick Bahanack
-
- Blessure au genou (depuis 27/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:40
-
- -
-
-
-
- Hyun-Jun Suk (AT)
-
- Blessure aux adducteurs (depuis 22/12) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 22/01 19:42
-
- -
-
-
-
- Moussa Doumbia (MI)
-
- Luxation de l'épaule (depuis 04/01) -
-
- Début Mars 2019
-
-
-
-
- -

Rennes

- -
-
-
- 22/01 19:49
-
- -
-
-
-
- Ramy Bensebaini (DF)
-
- Inconnu (depuis 18/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 19:46
-
- -
-
-
-
- Ludovic Baal
-
- Blessure aux adducteurs (depuis 04/10) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 22/01 19:49
-
- -
-
-
-
- Rafik Guitane (MI)
-
- Blessure au ligament croisé (depuis 12/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 22/01 19:46
-
- -
-
-
-
- Romain Danze
-
- Blessure au genou (depuis 24/10) -
-
- Forfait pour la saison
-
-
-
-
- -

Saint-Étienne

- -
-
-
- 22/01 19:56
-
- -
-
-
-
- Mathieu Debuchy (DF)
-
- Blessure à la cheville (depuis 20/01) -
-
- Inconnu
-
-
-
-
- -

Strasbourg

- -
-
-
- 22/01 20:00
-
- -
-
-
-
- Benjamon Corgnet (MI)
-
- Inconnu (depuis 18/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 20:02
-
- -
-
-
-
- Idriss Saadi (AT)
-
- Blessure au genou (depuis 12/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 20:00
-
- -
-
-
-
- Jeremy Grimm (MI)
-
- Blessure aux adducteurs (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 18:52
-
- -
-
-
-
- Jonas Martin (MI)
-
- Fracture de la cheville (depuis 19/01) -
-
- Fin Avril 2019
-
-
-
-
- -
-
-
- 20/01 03:44
-
- -
-
-
-
- Stefan Mitrovic (DF)
-
- 26/01: Strasbourg-Bordeaux
-
-
- Carton rouge (direct)
-
-
-
-
-

Toulouse

- -
-
-
- 22/01 20:05
-
- -
-
-
-
- Jacques Francois Moubandje (DF)
-
- Blessure au genou (depuis 16/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 20:05
-
- -
-
-
-
- Jimmy Durmaz (MI)
-
- Blessure à l'aine (depuis 21/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 22/01 20:06
-
- -
-
-
-
- Marc Vidal (GK)
-
- Blessure à la cuisse (depuis 30/11) -
-
- Inconnu
-
-
-
-
- -

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20190202.html b/src/test/resources/__files/equipeactu.ligue-1.20190202.html deleted file mode 100644 index 6e30e02..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20190202.html +++ /dev/null @@ -1,3101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 19:05  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- -
- - -
- - - -
- - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 01/02 23:23 Arnaut Groeneveld -
- - Club Bruges ➨ Milan
-
- -
-
-
-
-
- -
- - 01/02 10:48 Jadon Sancho -
- - Borussia Dortmund ➨ Manchester United
-
- -
-
-
-
-
- -
- - 01/02 06:31 Scott Mckenna -
- - Aberdeen ➨ Middlesbrough
-
- -
-
-
-
-
- -
- - 01/02 06:31 Scott Mckenna -
- - Aberdeen ➨ Stoke
-
- -
-
-
-
-
- -
- - 01/02 06:11 Florentin Pogba -
- - Agent libre ➨ Atlanta United FC
-
- -
-
-
-
-
- -
- - 01/02 06:09 Terrence Boyd -
- - Darmstadt 98 ➨ Toronto
-
- -
-
-
-
-
- -
- - 01/02 06:07 Sofiane Hanni -
- - Spartak Moscou ➨ Toronto
-
- -
-
-
-
-
- -
- - 01/02 06:03 Gedion Zelalem -
- - Arsenal ➨ Sporting KC
-
- -
-
-
-
-
- -
- - 01/02 01:50 Adrien Rabiot -
- - PSG ➨ Liverpool
-
- -
-
-
-
-
- -
- - 01/02 01:33 Anthony Limbombe -
- - Nantes ➨ Newcastle
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 02/02 17:59 Marco Varnier -
- Atalanta, - Au jour le jour
-
- -
-
-
-
-
- -
- 02/02 17:59 Josip Ilicic -
- Atalanta, - Inconnu
-
- -
-
-
-
-
- -
- 02/02 17:39 Kai Havertz -
- Bayer Leverkusen, - Inconnu
-
- -
-
-
-
-
- -
- 02/02 17:23 Lucas Biglia -
- Milan, - Début Février 2019
-
- -
-
-
-
-
- -
- 02/02 17:22 Jurre Vreman -
- De Graafschap, - Inconnu
-
- -
-
-
-
-
- -
- 02/02 17:22 Stefan Nijland -
- De Graafschap, - Quelques jours
-
- -
-
-
-
-
- -
- 02/02 17:17 Rody De Boer -
- AZ, - Mi Février 2019
-
- -
-
-
-
-
- -
- 02/02 17:17 Myron Boadu -
- AZ, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 02/02 17:17 Stijn Wuytens -
- AZ, - Inconnu
-
- -
-
-
-
-
- -
- 02/02 16:49 William Tchuameni -
- SønderjyskE, - Inconnu
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 02/02 14:27 Numa Lavanchy -
- Grasshopper ➨ - Lugano
-
- -
-
-
-
-
- -
- - 02/02 14:14 Mersim Asllani -
- Lausanne Sport ➨ - Grasshopper
-
- -
-
-
-
-
- -
- - 02/02 14:11 Kenny Browne -
- Waterford (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 02/02 14:01 Brendan Ogbu -
- Bayelsa United ➨ - Sligo Rovers
-
- -
-
-
-
-
- -
- - 02/02 14:01 Sverrir Ingi Ingason -
- Rostov ➨ - PAOK Salonique
-
- -
-
-
-
-
- -
- - 02/02 10:08 Bruno Alves -
- SSD Parma (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 02/02 08:22 Ivan Radovanovic -
- Chievo ➨ - Genoa
-
- -
-
-
-
-
- -
- - 02/02 08:00 José Luis Rodríguez -
- Istra 1961 ➨ - Deportivo Alavés
-
- -
-
-
-
-
- -
- - 02/02 06:32 Ahmed Kutucu -
- Schalke 04 (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 01/02 23:38 Sonni Nattestad -
- Molde ➨ - Fredericia
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 01/02 15:27
-
- -
-
-
-
- Saman Ghoddos (AT)
-
- Équipe nationale (depuis 07/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 15:27
-
- -
-
-
-
- Bongani Zungu (MI)
-
- Blessure au ligament croisé (depuis 02/09) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 01/02 15:27
-
- -
-
-
-
- Quentin Cornette (AT)
-
- Blessure aux ménisques (depuis 26/09) -
-
- Début Mars 2019
-
-
-
-
- -

Angers SCO

- -
-
-
- 01/02 15:46
-
- -
-
-
-
- Ibrahim Cissé (DF)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 15:45
-
- -
-
-
-
- Ismael Traore (DF)
-
- Blessure au genou (depuis 15/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 15:46
-
- -
-
-
-
- Loic Puyo (MI)
-
- Blessure à la cuisse (depuis 29/03) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 15:45
-
- -
-
-
-
- Pierrick Capelle (MI)
-
- Blessure au pied (depuis 26/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 15:46
-
- -
-
-
-
- Vincent Pajot (MI)
-
- Luxation du coude (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 15:46
-
- -
-
-
-
- Yoann Andreu (DF)
-
- Blessure au genou (depuis 10/11) -
-
- Inconnu
-
-
-
-
- -

Bordeaux

- -
-
-
- 01/02 16:08
-
- -
-
-
-
- Aurelien Tchouameni (MI)
-
- Blessure au dos (depuis 22/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 01/02 16:09
-
- -
-
-
-
- Nicolas De Preville (AT)
-
- Blessure au genou (depuis 22/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 16:08
-
- -
-
-
-
- Zaydou Youssouf (MI)
-
- Entorse du genou (depuis 05/12) -
-
- Début Mars 2019
-
-
-
-
- -

Caen

- -
-
-
- 01/02 16:47
-
- -
-
-
-
- Emmanuel Imorou (DF)
-
- Maladie (depuis 19/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 01/02 16:47
-
- -
-
-
-
- Romain Genevois (DF)
-
- Blessure au tendon d'Achille (depuis 22/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 01/02 16:48
-
- -
-
-
-
- Yoel Armougom (DF)
-
- Entorse du genou (depuis 27/01) -
-
- Quelques jours
-
-
-
-
-
-
-
- 01/02 16:48
-
- -
-
-
-
- Aly NDom (MI)
-
- Blessure au tendon d'Achille (depuis 06/01) -
-
- Début Février 2019
-
-
-
-
-
-
-
- 01/02 16:58
-
- -
-
-
-
- Prince Oniangue (MI)
-
- Blessure aux ménisques (depuis 18/12) -
-
- Medio Février 2019
-
-
-
-
- -

Dijon

- -
-
-
- 01/02 17:20
-
- -
-
-
-
- Benjamin Jeannot (AT)
-
- Blessure au mollet (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 17:20
-
- -
-
-
-
- Frédéric Sammaritano (MI)
-
- Blessure à la cuisse (depuis 18/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 17:20
-
- -
-
-
-
- Valentin Rosier (DF)
-
- Hématome au pied (depuis 21/12) -
-
- Début Février 2019
-
-
-
-
- -
-
-
- 27/01 20:43
-
- -
-
-
-
- Romain Amalfitano (MI)
-
- 02/02: Angers-Dijon
-
-
- Carton rouge (direct)
-
-
-
-
-

Guingamp

- -
-
-
- 01/02 17:20
-
- -
-
-
-
- Nicolas Benezet (MI)
-
- Blessure au mollet (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 01/02 00:12
-
- -
-
-
-
- Denis Petric (GK)
-
- Inconnu (depuis 11/01) -
-
- Inconnu
-
-
-
-
- -
-
-
- 27/01 03:08
-
- -
-
-
-
- El Hadji Papy Mison Djilobodji (DF)
-
- 20/02: Bordeaux-Guingamp
-
-
- Carton rouge (direct)
-
-
-
-
-

Lille

- -
-
-
- 01/02 00:24
-
- -
-
-
-
- Fares Bahlouli
-
- Inconnu (depuis 07/07) -
-
- Inconnu
-
-
-
-
- -

Monaco

- -
-
-
- 01/02 01:15
-
- -
-
-
-
- Andrea Raggi (DF)
-
- Blessure à la cuisse (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 01/02 01:15
-
- -
-
-
-
- Nacer Chadli (MI)
-
- Blessure à la cuisse (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 01/02 01:17
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure à la cuisse (depuis 19/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 01/02 01:14
-
- -
-
-
-
- Jean-Eudes Aholou (MI)
-
- Blessure au pied (depuis 31/10) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 01/02 01:14
-
- -
-
-
-
- Kevin N'Doram (DF)
-
- Entorse du genou (depuis 16/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 01/02 01:13
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 01/02 01:17
-
- -
-
-
-
- Jordi Mboula (AT)
-
- Blessure aux adducteurs (depuis 11/11) -
-
- Medio Avril 2019
-
-
-
-
-
-
-
- 01/02 01:13
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Entorse du genou (depuis 16/01) -
-
- Quelques semaines
-
-
-
-
- -
-
-
- 01/02 16:36
-
- -
-
-
-
- Naldo (DF)
-
- 02/02: Monaco-Toulouse
- 09/02: Montpellier-Monaco
-
-
- Carton rouge (direct)
-
-
-
-
-

Montpellier

- -
-
-
- 01/02 01:25
-
- -
-
-
-
- Jeremie Porsan-Clemente (AT)
-
- Fracture des orteils (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:24
-
- -
-
-
-
- Keagan Larenzo Dolly (MI)
-
- Blessure au mollet (depuis 11/01) -
-
- Medio Février 2019
-
-
-
-
- -

Nantes

- -
-
-
- 01/02 01:33
-
- -
-
-
-
- Anthony Limbombe (AT)
-
- Blessure à la cheville (depuis 29/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:28
-
- -
-
-
-
- Ciprian Anton Tatarusanu (GK)
-
- Blessure au dos (depuis 28/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:29
-
- -
-
-
-
- Quentin Braat (GK)
-
- Blessure au ligament croisé (depuis 21/09) -
-
- Quelques semaines
-
-
-
-
- -

Nice

- -
-
-
- 01/02 01:40
-
- -
-
-
-
- Mickael Le Bihan (AT)
-
- Blessure au genou (depuis 30/08) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 01/02 01:41
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure au dos (depuis 20/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:40
-
- -
-
-
-
- Ihsan Sacko (MI)
-
- Entorse de la cheville (depuis 30/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:43
-
- -
-
-
-
- Mouez Hassen (GK)
-
- Luxation de l'épaule (depuis 28/06) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:42
-
- -
-
-
-
- Yoann Cardinale (GK)
-
- Blessure à la cuisse (depuis 03/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 23:27
-
- -
-
-
-
- Youcef Attal (DF)
-
- Inconnu (depuis 01/02) -
-
- Inconnu
-
-
-
-
- -
-
-
- 01/02 23:20
-
- -
-
-
-
- Pierre Lees-Melou (MI)
-
- 09/02: Nice-Lyon
-
-
- Carton rouge (direct)
-
-
-
-
-

Nîmes

- -
-
-
- 01/02 19:26
-
- -
-
-
-
- Mustapha Diallo (MI)
-
- Blessure à la cheville (depuis 24/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 19:26
-
- -
-
-
-
- Pierrick Valdivia (MI)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Inconnu
-
-
-
-
- -

Olympique Lyon

- -
-
-
- 01/02 00:49
-
- -
-
-
-
- Kenny Tete (DF)
-
- Fièvre (depuis 24/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 01/02 00:50
-
- -
-
-
-
- Ousseynou Ndiaye (MI)
-
- Inconnu (depuis 21/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 00:50
-
- -
-
-
-
- Amine Gouiri (AT)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 01/02 00:51
-
- -
-
-
-
- Rafael da Silva (DF)
-
- Blessure à l'aine (depuis 11/12) -
-
- Medio Mars 2019
-
-
-
-
- -

Olympique Marseille

- -
-
-
- 01/02 00:54
-
- -
-
-
-
- Adil Rami (DF)
-
- Blessure aux adducteurs (depuis 13/01) -
-
- Medio Février 2019
-
-
-
-
-
-
-
- 01/02 00:54
-
- -
-
-
-
- Dimitri Payet
-
- Blessure du ligament latéral interne du genou (depuis 20/01) -
-
- Medio Février 2019
-
-
-
-
-
-
-
- 01/02 00:53
-
- -
-
-
-
- Hiroki Sakai (DF)
-
- Équipe nationale (depuis 30/12) -
-
- Début Février 2019
-
-
-
-
- -
-
-
- 25/01 23:41
-
- -
-
-
-
- Florian Thauvin (AT)
-
- 02/02: Reims-Marseille
-
-
- Carton rouge (direct)
-
-
-
-
-

PSG

- -
-
-
- 01/02 01:48
-
- -
-
-
-
- Marco Verratti (MI)
-
- Entorse de la cheville (depuis 19/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:47
-
- -
-
-
-
- Neymar Jr (AT)
-
- Blessure à la cheville (depuis 23/01) -
-
- Début Avril 2019
-
-
-
-
- -
-
-
- 07/12 23:55
-
- -
-
-
-
- Marco Verratti (MI)
-
- 13/03: Dijon-Paris Saint Germain
-
-
- Points de sanction
-
-
-
-
-

Reims

- -
-
-
- 01/02 01:55
-
- -
-
-
-
- Patrick Bahanack
-
- Blessure au genou (depuis 27/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:55
-
- -
-
-
-
- Ghislain Nclomande Konan (DF)
-
- Blessure au dos (depuis 19/01) -
-
- Fin Mai 2019
-
-
-
-
-
-
-
- 01/02 01:54
-
- -
-
-
-
- Moussa Doumbia (MI)
-
- Luxation de l'épaule (depuis 04/01) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 01/02 01:56
-
- -
-
-
-
- Pablo Chavarria (AT)
-
- Fracture du nez (depuis 26/01) -
-
- Medio Février 2019
-
-
-
-
- -

Rennes

- -
-
-
- 31/01 21:31
-
- -
-
-
-
- Jakob Johansson (MI)
-
- Blessure au genou (depuis 31/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 31/01 21:30
-
- -
-
-
-
- James Lea Siliki (MI)
-
- Blessure musculaire (depuis 31/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:58
-
- -
-
-
-
- Ramy Bensebaini (DF)
-
- Inconnu (depuis 18/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 01:58
-
- -
-
-
-
- Ludovic Baal
-
- Blessure aux adducteurs (depuis 04/10) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 01/02 01:58
-
- -
-
-
-
- Rafik Guitane (MI)
-
- Blessure au ligament croisé (depuis 12/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 01/02 01:58
-
- -
-
-
-
- Romain Danze
-
- Blessure au genou (depuis 24/10) -
-
- Forfait pour la saison
-
-
-
-
- -

Saint-Étienne

- -
-
-
- 01/02 02:03
-
- -
-
-
-
- Youssef Aït Bennasser
-
- Blessure à la hanche (depuis 24/01) -
-
- De retour à l'entraînement
-
-
-
-
- -

Strasbourg

- -
-
-
- 01/02 02:05
-
- -
-
-
-
- Idriss Saadi (AT)
-
- Blessure au genou (depuis 12/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 02:06
-
- -
-
-
-
- Jeremy Grimm (MI)
-
- Blessure aux adducteurs (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 02:06
-
- -
-
-
-
- Lionel Carole (DF)
-
- Blessure au mollet (depuis 25/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 02:06
-
- -
-
-
-
- Jonas Martin (MI)
-
- Fracture de la cheville (depuis 19/01) -
-
- Fin Avril 2019
-
-
-
-
- -

Toulouse

- -
-
-
- 01/02 02:21
-
- -
-
-
-
- Jacques Francois Moubandje (DF)
-
- Blessure au genou (depuis 16/01) -
-
- Quelques jours
-
-
-
-
-
-
-
- 01/02 02:20
-
- -
-
-
-
- Marc Vidal (GK)
-
- Blessure à la cuisse (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 01/02 02:19
-
- -
-
-
-
- Kelvin Amian Adou (DF)
-
- Inconnu (depuis 25/01) -
-
- Début Février 2019
-
-
-
-
- -

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20190211.html b/src/test/resources/__files/equipeactu.ligue-1.20190211.html deleted file mode 100644 index 9300be0..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20190211.html +++ /dev/null @@ -1,3067 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 22:40  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- -
- - -
- - - -
- - - - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 11/02 19:41 Thomas Meunier -
- - PSG ➨ Everton
-
- -
-
-
-
-
- -
- - 11/02 14:22 Arnaud Sutchuin Djoum -
- - Hearts ➨ Birmingham
-
- -
-
-
-
-
- -
- - 11/02 14:20 Steven Naismith -
- - Hearts ➨ Birmingham
-
- -
-
-
-
-
- -
- - 11/02 13:26 Lucas Andersen -
- - Grasshopper ➨ AaB
-
- -
-
-
-
-
- -
- - 11/02 11:47 Franck Yannick Kessie -
- - Milan ➨ Chelsea
-
- -
-
-
-
-
- -
- - 11/02 10:51 Ferland Mendy -
- - Olympique Lyon ➨ PSG
-
- -
-
-
-
-
- -
- - 11/02 10:35 Markus Henriksen -
- - Hull City ➨ Bordeaux
-
- -
-
-
-
-
- -
- - 11/02 10:33 Markus Henriksen -
- - Hull City ➨ Leicester
-
- -
-
-
-
-
- -
- - 11/02 10:33 Markus Henriksen -
- - Hull City ➨ Newcastle
-
- -
-
-
-
-
- -
- - 11/02 10:28 Will Vaulks -
- - Rotherham Utd ➨ Sheffield U.
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 11/02 22:25 Yigithan Güveli -
- Yeni Malatyaspor, - Inconnu
-
- -
-
-
-
-
- -
- 11/02 22:23 Issiar Dia -
- Yeni Malatyaspor, - Inconnu
-
- -
-
-
-
-
- -
- 11/02 22:18 Joao Pereira -
- Trabzonspor, - Mi Mars 2019
-
- -
-
-
-
-
- -
- 11/02 22:13 Ogenyi Onazi -
- Trabzonspor, - Inconnu
-
- -
-
-
-
-
- -
- 11/02 22:11 Hugo Vieira -
- Sivasspor, - Inconnu
-
- -
-
-
-
-
- -
- 11/02 21:58 Armand Traore -
- Caykur Rizespor, - Inconnu
-
- -
-
-
-
-
- -
- 11/02 21:50 Ondrej Celustka -
- République Tchèque, - Inconnu
-
- -
-
-
-
-
- -
- 11/02 21:46 Ömer Ali Sahiner -
- Konyaspor, - Mi Mars 2019
-
- -
-
-
-
-
- -
- 11/02 21:37 Huertas Paolo Hurtado -
- Konyaspor, - Début Mars 2019
-
- -
-
-
-
-
- -
- 11/02 21:35 Amir Hadziahmetovic -
- Konyaspor, - Mi Février 2019
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 11/02 20:51 Aaron Ramsey -
- Arsenal ➨ - Juventus (de 01/07) -
-
- -
-
-
-
-
- -
- - 11/02 18:04 RASMUS LAURITSEN -
- Vejle-Kolding ➨ - IFK Norrköping
-
- -
-
-
-
-
- -
- - 11/02 15:23 Erdal Rakip -
- Benfica ➨ - Malmö FF
-
- -
-
-
-
-
- -
- - 11/02 14:44 Ashley Young -
- Manchester United (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/02 10:39 Courtney Baker-Richardson -
- Swansea (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/02 01:38 Carl Johansson -
- Kalmar ➨ - Östers IF
-
- -
-
-
-
-
- -
- - 10/02 17:37 Karolis Chvedukas -
- Dundalk ➨ - Waterford
-
- -
-
-
-
-
- -
- - 10/02 16:45 Gavin Bazunu -
- Shamrock Rovers ➨ - Manchester City (de 01/07) -
-
- -
-
-
-
-
- -
- - 10/02 16:37 Dean Williams -
- Shamrock Rovers ➨ - Athlone Town
-
- -
-
-
-
-
- -
- - 10/02 15:16 Evgeny Chernov -
- Zenit ➨ - Rostov
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 11/02 15:04
-
- -
-
-
-
- Bongani Zungu (MI)
-
- Blessure au ligament croisé (depuis 02/09) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 11/02 15:05
-
- -
-
-
-
- Quentin Cornette (AT)
-
- Blessure aux ménisques (depuis 26/09) -
-
- Début Mars 2019
-
-
-
-
- -

Angers SCO

- -
-
-
- 11/02 15:11
-
- -
-
-
-
- Flavien Tait (MI)
-
- Blessure au mollet (depuis 08/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:10
-
- -
-
-
-
- Ibrahim Cissé (DF)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:07
-
- -
-
-
-
- Pierrick Capelle (MI)
-
- Blessure au pied (depuis 26/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:07
-
- -
-
-
-
- Vincent Pajot (MI)
-
- Luxation du coude (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:10
-
- -
-
-
-
- Yoann Andreu (DF)
-
- Blessure au genou (depuis 10/11) -
-
- Inconnu
-
-
-
-
- -

Bordeaux

- -
-
-
- 11/02 20:26
-
- -
-
-
-
- Pablo (DF)
-
- Blessure aux adducteurs (depuis 09/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:14
-
- -
-
-
-
- Zaydou Youssouf (MI)
-
- Entorse du genou (depuis 05/12) -
-
- Début Mars 2019
-
-
-
-
- -

Caen

- -
-
-
- 11/02 15:22
-
- -
-
-
-
- Yoel Armougom (DF)
-
- Entorse du genou (depuis 27/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 11/02 15:25
-
- -
-
-
-
- Emmanuel Imorou (DF)
-
- Maladie (depuis 19/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 11/02 15:22
-
- -
-
-
-
- Aly NDom (MI)
-
- Blessure au tendon d'Achille (depuis 06/01) -
-
- Inconnu
-
-
-
-
- -

Dijon

- -
-
-
- 11/02 15:33
-
- -
-
-
-
- Frédéric Sammaritano (MI)
-
- Blessure à la cuisse (depuis 18/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 11/02 15:33
-
- -
-
-
-
- Arnold Bouka Moutou (DF)
-
- Blessure à l'aine (depuis 04/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:29
-
- -
-
-
-
- Benjamin Jeannot (AT)
-
- Blessure au mollet (depuis 04/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:29
-
- -
-
-
-
- Valentin Rosier (DF)
-
- Hématome au pied (depuis 21/12) -
-
- Début Février 2019
-
-
-
-
- -

Guingamp

- -
-
-
- 11/02 15:35
-
- -
-
-
-
- Yeni N'Gbakoto (MI)
-
- Blessure au mollet (depuis 06/02) -
-
- Inconnu
-
-
-
-
- -
-
-
- 07/02 09:49
-
- -
-
-
-
- El Hadji Papy Mison Djilobodji (DF)
-
- 15/02: Lyon-Guingamp
- 20/02: Bordeaux-Guingamp
- 23/02: Guingamp-Angers
-
-
- Carton rouge (direct)
-
-
-
-
-

Lille

- -
-
-
- 11/02 15:40
-
- -
-
-
-
- Fares Bahlouli
-
- Inconnu (depuis 07/07) -
-
- Inconnu
-
-
-
-
- -

Monaco

- -
-
-
- 11/02 15:52
-
- -
-
-
-
- Andrea Raggi (DF)
-
- Blessure à la cuisse (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 11/02 15:56
-
- -
-
-
-
- Nacer Chadli (MI)
-
- Blessure à la cuisse (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 11/02 15:53
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure à la cuisse (depuis 19/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 11/02 15:56
-
- -
-
-
-
- Jean-Eudes Aholou (MI)
-
- Blessure au pied (depuis 31/10) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 11/02 15:54
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 11/02 15:54
-
- -
-
-
-
- Alexander Golovin
-
- Blessure à la cheville (depuis 10/02) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 11/02 15:53
-
- -
-
-
-
- Jordi Mboula (AT)
-
- Blessure aux adducteurs (depuis 11/11) -
-
- Medio Avril 2019
-
-
-
-
-
-
-
- 11/02 15:52
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Entorse du genou (depuis 16/01) -
-
- Quelques semaines
-
-
-
-
- -
-
-
- 10/02 21:24
-
- -
-
-
-
- Jemerson de Jesus Nascimento (DF)
-
- 16/02: Monaco-Nantes
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-

Montpellier

- -
-
-
- 11/02 16:00
-
- -
-
-
-
- Florent Mollet (MI)
-
- Blessure à la cuisse (depuis 03/02) -
-
- Quelques jours
-
-
-
-
-
-
-
- 11/02 16:00
-
- -
-
-
-
- Andy Delort (AT)
-
- Blessure à la hanche (depuis 10/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:04
-
- -
-
-
-
- Jeremie Porsan-Clemente (AT)
-
- Fracture des orteils (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:02
-
- -
-
-
-
- Keagan Larenzo Dolly (MI)
-
- Blessure au mollet (depuis 11/01) -
-
- Medio Février 2019
-
-
-
-
-
-
-
- 11/02 16:02
-
- -
-
-
-
- Mathías Suárez (DF)
-
- Fracture des côtes (depuis 03/02) -
-
- Début Mars 2019
-
-
-
-
- -

Nantes

- -
-
-
- 11/02 16:06
-
- -
-
-
-
- Quentin Braat (GK)
-
- Blessure au ligament croisé (depuis 21/09) -
-
- Quelques semaines
-
-
-
-
- -

Nice

- -
-
-
- 11/02 16:10
-
- -
-
-
-
- Danilo Barbosa da Silva (MI)
-
- Entorse de la cheville (depuis 07/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:10
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure au dos (depuis 20/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:08
-
- -
-
-
-
- Ihsan Sacko (MI)
-
- Entorse de la cheville (depuis 30/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:09
-
- -
-
-
-
- Jean-Victor Makengo (MI)
-
- Blessure à la cuisse (depuis 07/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:11
-
- -
-
-
-
- Yoann Cardinale (GK)
-
- Blessure à la cuisse (depuis 03/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:08
-
- -
-
-
-
- Youcef Attal (DF)
-
- Blessure à la cuisse (depuis 01/02) -
-
- Début Mars 2019
-
-
-
-
- -

Nîmes

- -
-
-
- 11/02 16:14
-
- -
-
-
-
- Mustapha Diallo (MI)
-
- Blessure à la cheville (depuis 24/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:18
-
- -
-
-
-
- Pierrick Valdivia (MI)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Inconnu
-
-
-
-
- -

Olympique Lyon

- -
-
-
- 11/02 15:43
-
- -
-
-
-
- Rafael da Silva (DF)
-
- Blessure à l'aine (depuis 11/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 11/02 15:44
-
- -
-
-
-
- Ousseynou Ndiaye (MI)
-
- Inconnu (depuis 21/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:45
-
- -
-
-
-
- Amine Gouiri (AT)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Début Mars 2019
-
-
-
-
- -

Olympique Marseille

- -
-
-
- 11/02 15:48
-
- -
-
-
-
- Luiz Gustavo (MI)
-
- Maladie (depuis 04/02) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 11/02 15:49
-
- -
-
-
-
- Kevin Strootman (MI)
-
- Blessure à l'aine (depuis 08/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 15:47
-
- -
-
-
-
- Adil Rami (DF)
-
- Blessure aux adducteurs (depuis 13/01) -
-
- Medio Février 2019
-
-
-
-
-
-
-
- 11/02 15:47
-
- -
-
-
-
- Dimitri Payet
-
- Blessure du ligament latéral interne du genou (depuis 20/01) -
-
- Medio Février 2019
-
-
-
-
- -

PSG

- -
-
-
- 11/02 16:21
-
- -
-
-
-
- Édinson Cavani (AT)
-
- Blessure à la hanche (depuis 09/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:21
-
- -
-
-
-
- Thomas Meunier
-
- Commotion (depuis 09/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:22
-
- -
-
-
-
- Neymar Jr (AT)
-
- Blessure à la cheville (depuis 23/01) -
-
- Début Avril 2019
-
-
-
-
- -
-
-
- 07/12 23:55
-
- -
-
-
-
- Marco Verratti (MI)
-
- 13/03: Dijon-Paris Saint Germain
-
-
- Points de sanction
-
-
-
-
-

Reims

- -
-
-
- 11/02 16:34
-
- -
-
-
-
- Patrick Bahanack
-
- Blessure au genou (depuis 27/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:39
-
- -
-
-
-
- Ghislain Nclomande Konan (DF)
-
- Blessure au dos (depuis 19/01) -
-
- Fin Mai 2019
-
-
-
-
-
-
-
- 11/02 16:39
-
- -
-
-
-
- Moussa Doumbia (MI)
-
- Luxation de l'épaule (depuis 04/01) -
-
- Début Mars 2019
-
-
-
-
-
-
-
- 11/02 16:34
-
- -
-
-
-
- Pablo Chavarria (AT)
-
- Fracture du nez (depuis 26/01) -
-
- Medio Février 2019
-
-
-
-
- -

Rennes

- -
-
-
- 11/02 16:46
-
- -
-
-
-
- Benjamin Andre (MI)
-
- Blessure à la cuisse (depuis 06/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:41
-
- -
-
-
-
- Jakob Johansson (MI)
-
- Blessure au genou (depuis 31/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:44
-
- -
-
-
-
- James Lea Siliki (MI)
-
- Blessure musculaire (depuis 31/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:45
-
- -
-
-
-
- Ramy Bensebaini (DF)
-
- Blessure à la jambe (depuis 18/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:44
-
- -
-
-
-
- Theoson Jordan Siebatcheu (AT)
-
- Blessure à la cuisse (depuis 10/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:43
-
- -
-
-
-
- Ludovic Baal
-
- Blessure aux adducteurs (depuis 04/10) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 11/02 16:43
-
- -
-
-
-
- Rafik Guitane (MI)
-
- Blessure au ligament croisé (depuis 12/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 11/02 16:41
-
- -
-
-
-
- Romain Danze
-
- Blessure au genou (depuis 24/10) -
-
- Forfait pour la saison
-
-
-
-
- -

Saint-Étienne

- - -
-
-
- 10/02 21:30
-
- -
-
-
-
- Romain Hamouma
-
- 13/02: Saint Etienne-Strasbourg
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-

Strasbourg

- -
-
-
- 11/02 16:54
-
- -
-
-
-
- Idriss Saadi (AT)
-
- Blessure au genou (depuis 12/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:52
-
- -
-
-
-
- Jeremy Grimm (MI)
-
- Blessure aux adducteurs (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/02 15:36
-
- -
-
-
-
- Kévin Zohi (MI)
-
- Maladie (depuis 08/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:52
-
- -
-
-
-
- Lionel Carole (DF)
-
- Blessure à la cheville (depuis 25/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/02 16:54
-
- -
-
-
-
- Jonas Martin (MI)
-
- Fracture de la cheville (depuis 19/01) -
-
- Fin Avril 2019
-
-
-
-
- -

Toulouse

- -
-
-
- 09/02 18:56
-
- -
-
-
-
- Jacques Francois Moubandje (DF)
-
- Blessure au genou (depuis 16/01) -
-
- Quelques jours
-
-
-
-
-
-
-
- 11/02 17:12
-
- -
-
-
-
- Kelvin Amian Adou (DF)
-
- Inconnu (depuis 25/01) -
-
- Quelques jours
-
-
-
-
-
-
-
- 09/02 18:56
-
- -
-
-
-
- Marc Vidal (GK)
-
- Blessure à la cuisse (depuis 30/11) -
-
- Inconnu
-
-
-
-
- -
-
-
- 04/02 15:20
-
- -
-
-
-
- Issiaga Sylla (DF)
-
- 17/02: Bordeaux-Toulouse
-
-
- Points de sanction
-
-
-
-
-

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20190217.html b/src/test/resources/__files/equipeactu.ligue-1.20190217.html deleted file mode 100644 index d61398e..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20190217.html +++ /dev/null @@ -1,3217 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 20:05  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- -
- - -
- - - -
- - - - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 17/02 14:12 Eray Cümart -
- - Bâle ➨ Arsenal
-
- -
-
-
-
-
- -
- - 17/02 13:57 Andrés Vombergar -
- - Olimpija ➨ Ufa
-
- -
-
-
-
-
- -
- - 17/02 12:34 Milan Skriniar -
- - Internazionale ➨ Manchester United
-
- -
-
-
-
-
- -
- - 17/02 11:23 Allan Saint-Maximin -
- - Nice ➨ Borussia Dortmund
-
- -
-
-
-
-
- -
- - 17/02 10:21 Che Zach Everton Fred Adams -
- - Birmingham ➨ Watford
-
- -
-
-
-
-
- -
- - 17/02 10:20 Che Zach Everton Fred Adams -
- - Birmingham ➨ Manchester United
-
- -
-
-
-
-
- -
- - 17/02 10:15 Che Zach Everton Fred Adams -
- - Birmingham ➨ Arsenal
-
- -
-
-
-
-
- -
- - 17/02 09:59 Stuart McKinstry -
- - Motherwell ➨ Leeds
-
- -
-
-
-
-
- -
- - 17/02 09:52 Frenkie De Jong -
- - Ajax ➨ Barcelone
-
- -
-
-
-
-
- -
- - 17/02 09:50 Matthijs de Ligt -
- - Ajax ➨ Juventus
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 17/02 19:40 Aritz Aduriz -
- Athletic Bilbao, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 17/02 19:38 Mikel Rico -
- Athletic Bilbao, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 17/02 19:36 Martín Aguirregabiria Padilla -
- Deportivo Alavés, - Au jour le jour
-
- -
-
-
-
-
- -
- 17/02 19:33 Christophe Kerbrat -
- Guingamp, - Inconnu
-
- -
-
-
-
-
- -
- 17/02 19:33 Yeni N'Gbakoto -
- Congo DR, - Inconnu
-
- -
-
-
-
-
- -
- 17/02 19:33 Sylvio Ronny Rodelin -
- Guingamp, - Inconnu
-
- -
-
-
-
-
- -
- 17/02 19:27 Benjamin Jeannot -
- Dijon, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 17/02 19:27 Stefano Okaka -
- Udinese, - Inconnu
-
- -
-
-
-
-
- -
- 17/02 19:27 Kevin Kampl -
- RB Leipzig, - Au jour le jour
-
- -
-
-
-
-
- -
- 17/02 19:27 Valentin Rosier -
- France U21, - De retour à l'entraînement
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 17/02 17:38 Mads Reginiussen -
- Ranheim (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 17/02 10:07 Robbie Gotts -
- Leeds (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 16/02 19:47 Wilhelm Loeper -
- Arameiska / Syrianska ➨ - AFC United
-
- -
-
-
-
-
- -
- - 16/02 15:49 Stian Gregersen -
- Molde ➨ - Elfsborg
-
- -
-
-
-
-
- -
- - 16/02 15:43 Luke Woolfenden -
- Ipswich (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 16/02 14:42 Jose Angel Jurado -
- Bodø/Glimt (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 16/02 14:40 Jose Angel Jurado -
- Bodø/Glimt ➨ - Sheriff
-
- -
-
-
-
-
- -
- - 16/02 11:54 Jan Gyamerah -
- Bochum ➨ - Hambourg SV (de 01/07) -
-
- -
-
-
-
-
- -
- - 16/02 11:22 Tobias Strobl -
- Borussia M'gladbach (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 16/02 10:41 Leopold Zingerle -
- Paderborn (nouveau contrat) -
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 17/02 18:54
-
- -
-
-
-
- Bongani Zungu (MI)
-
- Blessure au ligament croisé (depuis 02/09) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 17/02 18:54
-
- -
-
-
-
- Quentin Cornette (AT)
-
- Blessure aux ménisques (depuis 26/09) -
-
- Début Mars 2019
-
-
-
-
- -

Angers SCO

- -
-
-
- 17/02 19:02
-
- -
-
-
-
- Ibrahim Cissé (DF)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:02
-
- -
-
-
-
- Pierrick Capelle (MI)
-
- Blessure au pied (depuis 26/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:02
-
- -
-
-
-
- Vincent Pajot (MI)
-
- Luxation du coude (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:01
-
- -
-
-
-
- Wilfried Kanga Aka (AT)
-
- Blessure à la cuisse (depuis 16/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:02
-
- -
-
-
-
- Yoann Andreu (DF)
-
- Blessure au genou (depuis 10/11) -
-
- Inconnu
-
-
-
-
- -

Bordeaux

- -
-
-
- 17/02 19:09
-
- -
-
-
-
- Zaydou Youssouf (MI)
-
- Blessure à la cheville (depuis 05/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 17/02 19:09
-
- -
-
-
-
- Younousse Sankhare (MI)
-
- Maladie (depuis 16/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:09
-
- -
-
-
-
- Pablo (DF)
-
- Blessure à la cuisse (depuis 09/02) -
-
- Début Mars 2019
-
-
-
-
- -
-
-
- 17/02 19:08
-
- -
-
-
-
- Samuel Kalu
-
- 20/02: Bordeaux-Guingamp
-
-
- Carton rouge (direct)
-
-
-
-
-
-
-
- 17/02 19:13
-
- -
-
-
-
- Vukasin Jovanovic (DF)
-
- 01/03: Bordeaux-Montpellier
-
-
- Points de sanction
-
-
-
-
-

Caen

- -
-
-
- 16/02 16:39
-
- -
-
-
-
- Jessy Deminguet (MI)
-
- Maladie (depuis 13/02) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 17/02 00:35
-
- -
-
-
-
- Aly NDom (MI)
-
- Blessure au genou (depuis 06/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 00:34
-
- -
-
-
-
- Emmanuel Imorou (DF)
-
- Maladie (depuis 19/01) -
-
- Quelques semaines
-
-
-
-
- -
-
-
- 15/02 09:45
-
- -
-
-
-
- Yoel Armougom (DF)
-
- 24/02: Toulouse-Caen
-
-
- Points de sanction
-
-
-
-
-

Dijon

- -
-
-
- 17/02 19:27
-
- -
-
-
-
- Benjamin Jeannot (AT)
-
- Blessure au mollet (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 17/02 19:27
-
- -
-
-
-
- Frédéric Sammaritano (MI)
-
- Blessure à la cuisse (depuis 18/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 17/02 19:27
-
- -
-
-
-
- Valentin Rosier (DF)
-
- Hématome au pied (depuis 21/12) -
-
- De retour à l'entraînement
-
-
-
-
- -
-
-
- 16/02 10:30
-
- -
-
-
-
- Oussama Haddadi (DF)
-
- 22/02: Dijon-Saint Etienne
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-
-
-
- 15/02 10:21
-
- -
-
-
-
- Wesley Lautoa (DF)
-
- 22/02: Dijon-Saint Etienne
-
-
- Points de sanction
-
-
-
-
-

Guingamp

- -
-
-
- 17/02 19:33
-
- -
-
-
-
- Christophe Kerbrat (DF)
-
- Blessure aux adducteurs (depuis 14/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:33
-
- -
-
-
-
- Sylvio Ronny Rodelin (AT)
-
- Inconnu (depuis 14/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 17/02 19:33
-
- -
-
-
-
- Yeni N'Gbakoto (MI)
-
- Blessure au mollet (depuis 06/02) -
-
- Inconnu
-
-
-
-
- -
-
-
- 15/02 23:51
-
- -
-
-
-
- El Hadji Papy Mison Djilobodji (DF)
-
- 20/02: Bordeaux-Guingamp
- 23/02: Guingamp-Angers
-
-
- Carton rouge (direct)
-
-
-
-
-

Lille

- -
-
-
- 16/02 16:50
-
- -
-
-
-
- Fares Bahlouli
-
- Inconnu (depuis 07/07) -
-
- Inconnu
-
-
-
-
- -
-
-
- 17/02 18:33
-
- -
-
-
-
- Adama Soumaoro (DF)
-
- 22/02: Strasbourg-Lille
- 03/03: Lille-Dijon
-
-
- Carton rouge (direct)
-
-
-
-
-

Monaco

- -
-
-
- 16/02 17:10
-
- -
-
-
-
- Andrea Raggi (DF)
-
- Blessure à la cuisse (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 16/02 17:14
-
- -
-
-
-
- Nacer Chadli (MI)
-
- Blessure à la cuisse (depuis 04/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 16/02 17:11
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure à la cuisse (depuis 19/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 16/02 17:13
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 16/02 17:09
-
- -
-
-
-
- William Vainqueur (MI)
-
- Blessure au mollet (depuis 14/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:11
-
- -
-
-
-
- Jordi Mboula (AT)
-
- Blessure aux adducteurs (depuis 11/11) -
-
- Medio Avril 2019
-
-
-
-
-
-
-
- 16/02 17:09
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Entorse du genou (depuis 16/01) -
-
- Quelques semaines
-
-
-
-
- -
-
-
- 17/02 05:48
-
- -
-
-
-
- Jemerson de Jesus Nascimento (DF)
-
- 24/02: Monaco-Lyon
- 02/03: Angers-Monaco
-
-
- Carton rouge (2 jaunes)
-
-
-
-
-

Montpellier

- -
-
-
- 16/02 17:26
-
- -
-
-
-
- Keagan Larenzo Dolly (MI)
-
- Blessure au mollet (depuis 11/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 16/02 17:24
-
- -
-
-
-
- Andy Delort (AT)
-
- Blessure à la hanche (depuis 10/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:24
-
- -
-
-
-
- Jeremie Porsan-Clemente (AT)
-
- Fracture des orteils (depuis 28/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:19
-
- -
-
-
-
- Ruben Aguilar (DF)
-
- Blessure à la cheville (depuis 15/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:26
-
- -
-
-
-
- Mathías Suárez (DF)
-
- Fracture des côtes (depuis 03/02) -
-
- Début Mars 2019
-
-
-
-
- -

Nantes

- -
-
-
- 16/02 17:41
-
- -
-
-
-
- Nicolas Pallois (DF)
-
- Motifs personnels (depuis 15/02) -
-
- Inconnu
-
-
-
-
- -

Nice

- -
-
-
- 16/02 17:44
-
- -
-
-
-
- Yoann Cardinale (GK)
-
- Blessure à la cuisse (depuis 03/12) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 16/02 17:44
-
- -
-
-
-
- Danilo Barbosa da Silva (MI)
-
- Entorse de la cheville (depuis 07/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:46
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure au dos (depuis 20/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:43
-
- -
-
-
-
- Ihsan Sacko (MI)
-
- Entorse de la cheville (depuis 30/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:46
-
- -
-
-
-
- Myziane Maolida (AT)
-
- Blessure aux adducteurs (depuis 15/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:43
-
- -
-
-
-
- Youcef Attal (DF)
-
- Blessure à la cuisse (depuis 01/02) -
-
- Début Mars 2019
-
-
-
-
- -
-
-
- 15/02 11:39
-
- -
-
-
-
- Dante (DF)
-
- 23/02: Amiens-Nice
-
-
- Points de sanction
-
-
-
-
-

Nîmes

- -
-
-
- 16/02 17:48
-
- -
-
-
-
- Mustapha Diallo (MI)
-
- Blessure à la cheville (depuis 24/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:48
-
- -
-
-
-
- Pierrick Valdivia (MI)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Inconnu
-
-
-
-
- -

Olympique Lyon

- -
-
-
- 16/02 16:53
-
- -
-
-
-
- Rafael da Silva (DF)
-
- Blessure à l'aine (depuis 11/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 16/02 16:59
-
- -
-
-
-
- Jason Denayer (DF)
-
- Blessure à l'aine (depuis 15/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 16:54
-
- -
-
-
-
- Ousseynou Ndiaye (MI)
-
- Inconnu (depuis 21/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 16:59
-
- -
-
-
-
- Tanguy NDombèlé (MI)
-
- Blessure à la cheville (depuis 15/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 16:56
-
- -
-
-
-
- Amine Gouiri (AT)
-
- Blessure au ligament croisé (depuis 18/08) -
-
- Début Mars 2019
-
-
-
-
- -

Olympique Marseille

- -
-
-
- 16/02 17:04
-
- -
-
-
-
- Kevin Strootman (MI)
-
- Blessure à l'aine (depuis 08/02) -
-
- Inconnu
-
-
-
-
- -

PSG

- -
-
-
- 16/02 17:52
-
- -
-
-
-
- Édinson Cavani (AT)
-
- Blessure à la hanche (depuis 09/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 15:43
-
- -
-
-
-
- Eric Choupo-Moting (AT)
-
- Maladie (depuis 16/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:52
-
- -
-
-
-
- Thomas Meunier
-
- Commotion (depuis 09/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 17:53
-
- -
-
-
-
- Neymar Jr (AT)
-
- Blessure à la cheville (depuis 23/01) -
-
- Début Avril 2019
-
-
-
-
- -
-
-
- 07/12 23:55
-
- -
-
-
-
- Marco Verratti (MI)
-
- 13/03: Dijon-Paris Saint Germain
-
-
- Points de sanction
-
-
-
-
-

Reims

- -
-
-
- 16/02 18:18
-
- -
-
-
-
- Pablo Chavarria (AT)
-
- Fracture du nez (depuis 26/01) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 16/02 18:22
-
- -
-
-
-
- Patrick Bahanack (DF)
-
- Blessure au genou (depuis 27/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 18:23
-
- -
-
-
-
- Ghislain Nclomande Konan (DF)
-
- Blessure au dos (depuis 19/01) -
-
- Fin Mai 2019
-
-
-
-
-
-
-
- 16/02 18:23
-
- -
-
-
-
- Hassane Kamara
-
- Blessure au pied (depuis 10/02) -
-
- Fin Février 2019
-
-
-
-
- -

Rennes

- -
-
-
- 16/02 18:26
-
- -
-
-
-
- Jakob Johansson (MI)
-
- Blessure au genou (depuis 31/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 18:35
-
- -
-
-
-
- James Lea Siliki (MI)
-
- Blessure musculaire (depuis 31/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 18:33
-
- -
-
-
-
- Ludovic Baal
-
- Blessure aux adducteurs (depuis 04/10) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 16/02 18:34
-
- -
-
-
-
- Rafik Guitane (MI)
-
- Blessure au ligament croisé (depuis 12/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 16/02 18:26
-
- -
-
-
-
- Romain Danze
-
- Blessure au genou (depuis 24/10) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 16/02 18:36
-
- -
-
-
-
- Theoson Jordan Siebatcheu (AT)
-
- Blessure à la cuisse (depuis 10/02) -
-
- Quelques semaines
-
-
-
-
- -

Saint-Étienne

- -
-
-
- 16/02 18:38
-
- -
-
-
-
- Valentin Vada (MI)
-
- Entorse du genou (depuis 13/02) -
-
- Inconnu
-
-
-
-
- -

Strasbourg

- -
-
-
- 16/02 18:43
-
- -
-
-
-
- Idriss Saadi (AT)
-
- Blessure au genou (depuis 12/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 18:39
-
- -
-
-
-
- Jeremy Grimm (MI)
-
- Blessure aux adducteurs (depuis 30/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 16:23
-
- -
-
-
-
- Lamine Kone (DF)
-
- Gastro-entérite (depuis 16/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 18:40
-
- -
-
-
-
- Lionel Carole (DF)
-
- Blessure au mollet (depuis 25/01) -
-
- Inconnu
-
-
-
-
-
-
-
- 16/02 18:40
-
- -
-
-
-
- Jonas Martin (MI)
-
- Fracture de la cheville (depuis 19/01) -
-
- Fin Avril 2019
-
-
-
-
- -

Toulouse

- -
-
-
- 16/02 19:06
-
- -
-
-
-
- Issiaga Sylla (DF)
-
- Blessure à la cheville (depuis 15/02) -
-
- Quelques jours
-
-
-
-
-
-
-
- 16/02 19:03
-
- -
-
-
-
- Jacques Francois Moubandje (DF)
-
- Blessure à la cheville (depuis 16/01) -
-
- Quelques jours
-
-
-
-
-
-
-
- 16/02 19:03
-
- -
-
-
-
- Mathieu Dossevi (MI)
-
- Entorse de la cheville (depuis 15/02) -
-
- Quelques jours
-
-
-
-
-
-
-
- 16/02 19:06
-
- -
-
-
-
- Marc Vidal (GK)
-
- Blessure à la cuisse (depuis 30/11) -
-
- Inconnu
-
-
-
-
- -
-
-
- 04/02 15:20
-
- -
-
-
-
- Issiaga Sylla (DF)
-
-
-
- Points de sanction
-
-
-
-
-

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.ligue-1.20190807.html b/src/test/resources/__files/equipeactu.ligue-1.20190807.html deleted file mode 100644 index 39d72b7..0000000 --- a/src/test/resources/__files/equipeactu.ligue-1.20190807.html +++ /dev/null @@ -1,2308 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Ligue 1 - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 17:14  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- - -
- - -
- - - -
- - - - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 07/08 15:15 Rick Karsdorp -
- - Rome ➨ Feyenoord
-
- -
-
-
-
-
- -
- - 07/08 14:13 Jure Balkovec -
- - Verona ➨ Empoli
-
- -
-
-
-
-
- -
- - 07/08 13:06 Emil Krafth -
- - Amiens SC ➨ Newcastle
-
- -
-
-
-
-
- -
- - 07/08 12:51 Danny Welbeck -
- - Agent libre ➨ Watford
-
- -
-
-
-
-
- -
- - 07/08 12:26 Massimo Luongo -
- - QPR ➨ Sheffield W.
-
- -
-
-
-
-
- -
- - 07/08 11:13 Daniele Ragatzu -
- - Cagliari ➨ Olbia
-
- -
-
-
-
-
- -
- - 07/08 11:12 Roberto Biancu -
- - Cagliari ➨ Olbia
-
- -
-
-
-
-
- -
- - 07/08 10:37 Víctor Camarasa -
- - Real Betis ➨ Crystal Palace
-
- -
-
-
-
-
- -
- - 07/08 10:31 Arturo Molina -
- - Levante ➨ Asteras Tripolis
-
- -
-
-
-
-
- -
- - 07/08 10:29 Ádám Nagy -
- - Bologne ➨ Bristol City
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 07/08 17:07 Michael Gallagher -
- Finn Harps, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 17:04 Ciaran Gallagher -
- Finn Harps, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:53 Jordan Flores -
- Dundalk, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:53 Stephen Folan -
- Dundalk, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:52 Robbie Benson -
- Dundalk, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:38 Cian Murphy -
- Cork City, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:38 James Tilley -
- Cork City, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:38 Cian Bargary -
- Cork City, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:31 Cristian Magerusan -
- Bohemians, - Inconnu
-
- -
-
-
-
-
- -
- 07/08 16:31 Promise Omocher -
- Bohemians, - Inconnu
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 07/08 17:00 Giangiacomo Magnani -
- Sassuolo ➨ - Brescia
-
- -
-
-
-
-
- -
- - 07/08 15:56 Víctor Ruiz Torre -
- Villarreal ➨ - Besiktas JK
-
- -
-
-
-
-
- - -
- -
-
-
-
-
- -
- - 07/08 15:48 Kevin Trapp -
- PSG ➨ - Eintracht Francfort
-
- -
-
-
-
-
- -
- - 07/08 14:34 Tiago Pinto -
- Ankaragücü (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 07/08 14:32 Ibrahim Amadou -
- Séville ➨ - Norwich
-
- -
-
-
-
-
- -
- - 07/08 13:47 Melker Nilsson -
- Malmö FF ➨ - Falkenberg
-
- -
-
-
-
-
- -
- - 07/08 13:23 Marco Sala -
- Sassuolo ➨ - Virtus Entella
-
- -
-
-
-
-
- -
- - 07/08 13:17 Asier Benito -
- Eibar ➨ - Ponferradina
-
- -
-
-
-
-
- -
- - 07/08 12:45 Carl Jenkinson -
- Arsenal ➨ - Nottingham F.
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Ligue 1

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Amiens SC

- -
-
-
- 06/08 16:32
-
- -
-
-
-
- John Stiveen Mendoza Valencia
-
- Blessure au genou (depuis 17/05) -
-
- Inconnu
-
-
-
-
- -

Angers SCO

- - -
Aucune blessure ni suspension enregistrée

Bordeaux

- - -
Aucune blessure ni suspension enregistrée

Brest

- - -
Aucune blessure ni suspension enregistrée

Dijon

- -
-
-
- 06/08 17:22
-
- -
-
-
-
- Jordan Marié (MI)
-
- Blessure au pied (depuis 30/07) -
-
- Quelques jours
-
-
-
-
-
-
-
- 06/08 17:22
-
- -
-
-
-
- Florent Balmont (MI)
-
- Blessure à la hanche (depuis 02/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 17:22
-
- -
-
-
-
- Jules Keita (MI)
-
- Blessure aux fessiers (depuis 02/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 17:22
-
- -
-
-
-
- Théo Barbet
-
- Blessure à la cheville (depuis 02/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 17:22
-
- -
-
-
-
- Wesley Lautoa (DF)
-
- Blessure à la cuisse (depuis 02/08) -
-
- Inconnu
-
-
-
-
- -

Lille

- -
-
-
- 06/08 17:32
-
- -
-
-
-
- Xeka (MI)
-
- Blessure aux adducteurs (depuis 26/04) -
-
- Quelques jours
-
-
-
-
- -

Metz

- -
-
-
- 06/08 18:42
-
- -
-
-
-
- Fabien Centonze
-
- Blessure aux adducteurs (depuis 01/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 18:40
-
- -
-
-
-
- Sami Lahssaini
-
- Entorse de la cheville (depuis 01/08) -
-
- Inconnu
-
-
-
-
- -

Monaco

- -
-
-
- 05/08 19:02
-
- -
-
-
-
- Pietro Pellegri (AT)
-
- Blessure à l'aine (depuis 28/09) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 05/08 19:10
-
- -
-
-
-
- Danijel Subasic (GK)
-
- Blessure aux adducteurs (depuis 05/05) -
-
- Inconnu
-
-
-
-
-
-
-
- 05/08 19:00
-
- -
-
-
-
- Kévin Appin
-
- Entorse de la cheville (depuis 02/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 05/08 19:02
-
- -
-
-
-
- Willem Geubbels (AT)
-
- Blessure aux adducteurs (depuis 19/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 05/08 19:00
-
- -
-
-
-
- Stevan Jovetic (AT)
-
- Blessure au ligament croisé (depuis 13/04) -
-
- Medio Novembre 2019
-
-
-
-
- -

Montpellier

- -
-
-
- 06/08 19:06
-
- -
-
-
-
- Florent Mollet (MI)
-
- Blessure à la cuisse (depuis 03/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 19:05
-
- -
-
-
-
- Kylian Kaiboue (MI)
-
- Blessure à l'aine (depuis 09/07) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 19:06
-
- -
-
-
-
- Teji Savanier (MI)
-
- Entorse du genou (depuis 27/07) -
-
- Medio Octobre 2019
-
-
-
-
- -

Nantes

- - -
Aucune blessure ni suspension enregistrée

Nice

- -
-
-
- 06/08 19:45
-
- -
-
-
-
- Mohamed Lamine Diaby (AT)
-
- Entorse de la cheville (depuis 14/04) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 06/08 19:45
-
- -
-
-
-
- Gautier Lloris (DF)
-
- Blessure à l'aine (depuis 26/07) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 19:45
-
- -
-
-
-
- Walter Benitez (GK)
-
- Blessure à la cuisse (depuis 26/07) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 19:45
-
- -
-
-
-
- Youcef Attal (DF)
-
- Blessure à la clavicule (depuis 11/07) -
-
- Inconnu
-
-
-
-
- -

Nîmes

- -
-
-
- 06/08 20:09
-
- -
-
-
-
- Clement Depres (AT)
-
- Blessure au ligament croisé (depuis 23/01) -
-
- Inconnu
-
-
-
-
- -

Olympique Lyon

- - -
Aucune blessure ni suspension enregistrée

Olympique Marseille

- -
-
-
- 06/08 18:25
-
- -
-
-
-
- Dario Benedetto
-
- Blessure au mollet (depuis 20/07) -
-
- Début Août 2019
-
-
-
-
-
-
-
- 06/08 18:25
-
- -
-
-
-
- Florian Thauvin (AT)
-
- Entorse de la cheville (depuis 14/07) -
-
- Medio Août 2019
-
-
-
-
-
-
-
- 06/08 18:25
-
- -
-
-
-
- Luiz Gustavo (MI)
-
- Entorse de la cheville (depuis 22/07) -
-
- Début Août 2019
-
-
-
-
- -

PSG

- -
-
-
- 05/08 19:55
-
- -
-
-
-
- Neymar Jr (AT)
-
- Entorse de la cheville (depuis 06/06) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 05/08 19:56
-
- -
-
-
-
- Presnel Kimpembe (DF)
-
- Blessure à l'aine (depuis 21/05) -
-
- De retour à l'entraînement
-
-
-
-
- -

Reims

- -
-
-
- 05/08 20:03
-
- -
-
-
-
- Ghislain Nclomande Konan (DF)
-
- Blessure au dos (depuis 19/01) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 05/08 20:03
-
- -
-
-
-
- Virgile Pinson (AT)
-
- Blessure à l'épaule (depuis 02/04) -
-
- Inconnu
-
-
-
-
-
-
-
- 05/08 20:04
-
- -
-
-
-
- Arber Zeneli (AT)
-
- Blessure au ligament croisé (depuis 07/06) -
-
- Début Février 2020
-
-
-
-
- -

Rennes

- -
-
-
- 06/08 20:16
-
- -
-
-
-
- Edouard Mendy (GK)
-
- Fracture de la main (depuis 04/07) -
-
- Début Août 2019
-
-
-
-
- -

Saint-Étienne

- -
-
-
- 06/08 21:59
-
- -
-
-
-
- Gabriel Silva
-
- Blessure au tendon d'Achille (depuis 22/02) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 06/08 21:59
-
- -
-
-
-
- Assane Dioussé El Hadji
-
- Inconnu (depuis 25/05) -
-
- Inconnu
-
-
-
-
-
-
-
- 06/08 21:59
-
- -
-
-
-
- Kevin Monnet-Paquet (AT)
-
- Blessure au ligament croisé (depuis 17/02) -
-
- Medio Août 2019
-
-
-
-
- -

Strasbourg

- -
-
-
- 06/08 22:15
-
- -
-
-
-
- Kenny Lala (DF)
-
- Blessure à l'aine (depuis 24/07) -
-
- Inconnu
-
-
-
-
- -

Toulouse

- -
-
-
- 06/08 22:17
-
- -
-
-
-
- Corentin Jean (MI)
-
- Blessure au ligament croisé (depuis 21/03) -
-
- Fin Novembre 2019
-
-
-
-
- -

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/equipeactu.premier-league.20191212.html b/src/test/resources/__files/equipeactu.premier-league.20191212.html deleted file mode 100644 index db1c573..0000000 --- a/src/test/resources/__files/equipeactu.premier-league.20191212.html +++ /dev/null @@ -1,3333 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -Blessures et suspensions :: Premier League - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - - -
-
-
-
- -
-
-
-
- - - - - - - - -
- - - -
-
-
- Heure actuelle: 23:00  - -
-
-
- - -
-
- -
-
-
- - - - - - - -
- -
-
- -
- - - -
- - -
- - - -
-
- - -
- - -
- - - -
- - - - - -
-
- Rumeurs récentes
-
- -
-
-
-
- -
- - 12/12 17:20 Boubakary Soumaré -
- - Lille ➨ AC Milan
-
- -
-
-
-
-
- -
- - 12/12 17:20 Boubakary Soumaré -
- - Lille ➨ SSC Napoli
-
- -
-
-
-
-
- -
- - 12/12 16:55 Domagoj Vida -
- - Besiktas ➨ Aston Villa
-
- -
-
-
-
-
- -
- - 12/12 16:52 Takumi Minamino -
- - Salzburg ➨ SSC Napoli
-
- -
-
-
-
-
- -
- - 12/12 16:51 Takumi Minamino -
- - Salzburg ➨ AC Milan
-
- -
-
-
-
-
- -
- - 12/12 16:27 Carlos Vela -
- - ➨ Barcelona
-
- -
-
-
-
-
- -
- - 12/12 10:25 Samuel Umtiti -
- - Barcelona ➨ Manchester City
-
- -
-
-
-
-
- -
- - 12/12 10:18 Sadio Mané -
- - Liverpool ➨ Paris Saint Germain
-
- -
-
-
-
-
- -
- - 12/12 07:13 Takehiro Tomiyasu -
- - Bologna ➨ Bayer Leverkusen
-
- -
-
-
-
-
- -
- - 11/12 19:46 Olivier Giroud -
- - Chelsea ➨ Atletico Madrid
-
- -
-
-
-
- -
-
-
-
- -
-
-
- - -
-
- Compositions récentes
-
- -
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
- -
-
-
-
- -
-
-
- - - - - - -
-
- Actualités populaires
-
- -
-
-
-
-
-
-
- -
-
-
- -
- -
-
- NUAGE DE MOTS,
-
- -
-
-
-

Le plus de mentions, dernier heures:

-
-
-
-
-
-
- -
-
-
- -
- -
-
- Blessures récentes
-
-
-
-
-
- -
- 12/12 22:36 Pantelis Hatzidiakos -
- Greece, - Au jour le jour
-
- -
-
-
-
-
- -
- 12/12 21:31 Ramiro Guerra -
- Villarreal, - Inconnu
-
- -
-
-
-
-
- -
- 12/12 21:31 Manu Morlanes -
- Spain U21, - Inconnu
-
- -
-
-
-
-
- -
- 12/12 21:31 Alberto Moreno -
- Villarreal, - Inconnu
-
- -
-
-
-
-
- -
- 12/12 21:31 Santiago Cazorla -
- Spain, - De retour à l'entraînement
-
- -
-
-
-
-
- -
- 12/12 21:31 Bruno Soriano -
- Villarreal, - Au jour le jour
-
- -
-
-
-
-
- -
- 12/12 21:20 Stiven Plaza -
- Ecuador U20, - Fin Décembre 2019
-
- -
-
-
-
-
- -
- 12/12 21:20 Javi Sánchez -
- Valladolid, - Inconnu
-
- -
-
-
-
-
- -
- 12/12 21:20 Nacho Martínez -
- Valladolid, - Inconnu
-
- -
-
-
-
-
- -
- 12/12 21:09 Denis Cheryshev -
- Valencia, - De retour à l'entraînement
-
- -
-
-
-
- -
-
-
-
-
-
-
- -
- - -
-
- Transferts récents
-
- -
-
-
-
- -
- - 12/12 21:19 Rubén Alcaraz -
- Valladolid (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 12/12 17:30 Gavin Kilkenny -
- Bournemouth (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/12 19:28 Mamudo Moro -
- Helsingborg ➨ - Mjallby (de 01/01) -
-
- -
-
-
-
-
- -
- - 11/12 14:42 Mark McGinley -
- Finn Harps (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/12 14:40 Mark Timlin -
- Finn Harps (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/12 13:31 Alec Byrne -
- Cork City (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/12 13:22 Robert Slevin -
- Waterford United ➨ - Cork City (de 01/01) -
-
- -
-
-
-
-
- -
- - 11/12 13:21 Charlie Fleming -
- Cobh Ramblers ➨ - Cork City (de 01/01) -
-
- -
-
-
-
-
- -
- - 11/12 10:30 Benjamin Bourigeaud -
- Rennes (nouveau contrat) -
-
- -
-
-
-
-
- -
- - 11/12 10:05 Koen Casteels -
- Wolfsburg (nouveau contrat) -
-
- -
-
-
-
- -
-
-
-
- -
-
- -
- -
- - - -
-
- Équipes populaires
-
- - - - -
-
-
- -
- -
- -
-
- -
- -
- - -
- -

- Blessures et suspensions - Premier League

-
-
- Filtrer: -
-
-
- -
- - -
- -
-
- -
-
-
-
-
- - - - -
-
- -
-

Actualités des équipes - que trouve-t-on ici ?

- Vous trouverez ici des actualités sur les équipes (blessures et suspensions) de toutes les grandes ligues et de tous les grands tournois. La vue par défaut affiche toutes les actualités récentes des équipes. Utilisez les menus déroulants ci-dessus pour n'afficher que votre ligue préférée. -
-
-

Arsenal

- -
-
-
- 12/12 17:55
-
- -
-
-
-
- Hector Bellerin (DF)
-
- Blessure aux adducteurs (depuis 09/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 12/12 16:36
-
- -
-
-
-
- Daniel Ceballos
-
- Blessure aux adducteurs (depuis 06/11) -
-
- Quelques jours
-
-
-
-
-
-
-
- 12/12 16:41
-
- -
-
-
-
- Kieran Tierney
-
- Luxation de l'épaule (depuis 09/12) -
-
- Début Mars 2020
-
-
-
-
-
-
-
- 12/12 16:39
-
- -
-
-
-
- Rob Holding (DF)
-
- Blessure au genou (depuis 21/11) -
-
- Fin Décembre 2019
-
-
-
-
- -

Aston Villa

- -
-
-
- 12/12 16:59
-
- -
-
-
-
- Jed Steer (GK)
-
- Blessure au mollet (depuis 10/11) -
-
- Début Janvier 2020
-
-
-
-
-
-
-
- 12/12 17:00
-
- -
-
-
-
- Keinan Davis (MI)
-
- Blessure aux adducteurs (depuis 30/10) -
-
- Medio Décembre 2019
-
-
-
-
-
-
-
- 12/12 16:57
-
- -
-
-
-
- Tyrone Mings
-
- Blessure aux adducteurs (depuis 08/12) -
-
- Début Janvier 2020
-
-
-
-
- -

Bournemouth

- -
-
-
- 12/12 18:07
-
- -
-
-
-
- Junior Stanislas (MI)
-
- Blessure au genou (depuis 20/04) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 12/12 18:06
-
- -
-
-
-
- Adam Smith (DF)
-
- Blessure à la cheville (depuis 03/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 12/12 18:07
-
- -
-
-
-
- Callum Wilson (AT)
-
- Blessure aux adducteurs (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 12/12 18:06
-
- -
-
-
-
- Lloyd Kelly
-
- Blessure à la cuisse (depuis 11/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 12/12 18:05
-
- -
-
-
-
- Nathan Benjamin Aké (DF)
-
- Blessure aux adducteurs (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 12/12 18:07
-
- -
-
-
-
- Charlie Daniels (DF)
-
- Luxation de la rotule (depuis 25/08) -
-
- Forfait pour la saison
-
-
-
-
-
-
-
- 12/12 18:06
-
- -
-
-
-
- David Brooks
-
- Blessure à la cheville (depuis 28/07) -
-
- Début Mars 2020
-
-
-
-
-
-
-
- 12/12 18:07
-
- -
-
-
-
- Joshua King (AT)
-
- Blessure aux adducteurs (depuis 18/11) -
-
- Quelques semaines
-
-
-
-
-
-
-
- 12/12 18:06
-
- -
-
-
-
- Steve Cook (DF)
-
- Fracture du poignet (depuis 30/11) -
-
- Quelques semaines
-
-
-
-
- -

Brighton

- -
-
-
- 10/12 17:25
-
- -
-
-
-
- Jose Izquierdo (AT)
-
- Blessure au genou (depuis 03/05) -
-
- Au jour le jour
-
-
-
-
- -

Burnley

- -
-
-
- 10/12 17:45
-
- -
-
-
-
- Ashley Barnes (AT)
-
- Blessure à l'aine (depuis 03/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 10/12 17:47
-
- -
-
-
-
- Charlie Taylor
-
- Blessure aux adducteurs (depuis 30/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 10/12 17:46
-
- -
-
-
-
- Johann Berg Gudmundsson
-
- Blessure aux adducteurs (depuis 11/10) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 10/12 17:47
-
- -
-
-
-
- Ashley R. Westwood (MI)
-
- Blessure à l'aine (depuis 02/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 17:46
-
- -
-
-
-
- Kevin Long
-
- Blessure à la hanche (depuis 05/12) -
-
- Inconnu
-
-
-
-
- -

Chelsea

- -
-
-
- 10/12 18:10
-
- -
-
-
-
- Fikayo Tomori
-
- Blessure à la hanche (depuis 09/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:15
-
- -
-
-
-
- Marco Van Ginkel (MI)
-
- Blessure au ligament croisé (depuis 26/06) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:15
-
- -
-
-
-
- Olivier Giroud (AT)
-
- Inconnu (depuis 09/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:10
-
- -
-
-
-
- Ruben Loftus-Cheek
-
- Blessure au tendon d'Achille (depuis 16/05) -
-
- Inconnu
-
-
-
-
- -

Crystal Palace

- -
-
-
- 10/12 18:27
-
- -
-
-
-
- Max Meyer (MI)
-
- Maladie (depuis 05/12) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 10/12 18:28
-
- -
-
-
-
- Jeffrey Schlupp (AT)
-
- Blessure à la hanche (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:29
-
- -
-
-
-
- Luke Dreher (MI)
-
- Blessure au genou (depuis 06/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:26
-
- -
-
-
-
- Patrick Van Aanholt (DF)
-
- Blessure aux adducteurs (depuis 03/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:26
-
- -
-
-
-
- Joel Ward (DF)
-
- Blessure au genou (depuis 23/11) -
-
- Medio Janvier 2020
-
-
-
-
- -
-
-
- 07/12 20:11
-
- -
-
-
-
- Mamadou Sakho (DF)
-
- 16/12: Crystal Palace-Brighton
- 21/12: Newcastle United-Crystal Palace
-
-
- Carton rouge (direct)
-
-
-
-
-

Everton

- -
-
-
- 10/12 18:39
-
- -
-
-
-
- Fabian Delph
-
- Blessure aux adducteurs (depuis 03/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 10/12 18:39
-
- -
-
-
-
- Seamus Coleman
-
- Blessure aux côtes (depuis 29/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:35
-
- -
-
-
-
- Yerry Mina (DF)
-
- Blessure aux adducteurs (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 18:35
-
- -
-
-
-
- Andre Gomes
-
- Fracture de la cheville (depuis 03/11) -
-
- Medio Octobre 2020
-
-
-
-
-
-
-
- 10/12 18:35
-
- -
-
-
-
- Jean-Philippe Gbamin
-
- Blessure à la cuisse (depuis 23/08) -
-
- Medio Janvier 2020
-
-
-
-
- -

Leicester

- -
-
-
- 10/12 18:44
-
- -
-
-
-
- Matthew James (MI)
-
- Blessure au tendon d'Achille (depuis 04/09) -
-
- De retour à l'entraînement
-
-
-
-
- -

Liverpool

- -
-
-
- 09/12 09:21
-
- -
-
-
-
- Adam Lallana (MI)
-
- Coup reçu (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 19:15
-
- -
-
-
-
- Fabinho
-
- Blessure à la cheville (depuis 27/11) -
-
- Début Janvier 2020
-
-
-
-
-
-
-
- 10/12 19:15
-
- -
-
-
-
- Joel Matip
-
- Blessure au genou (depuis 22/10) -
-
- Fin Décembre 2019
-
-
-
-
-
-
-
- 10/12 19:12
-
- -
-
-
-
- Nathaniel Clyne (DF)
-
- Blessure au ligament croisé (depuis 19/07) -
-
- Fin Janvier 2020
-
-
-
-
- -

Manchester City

- -
-
-
- 11/12 18:39
-
- -
-
-
-
- Ederson Moraes (GK)
-
- Maladie (depuis 12/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/12 15:43
-
- -
-
-
-
- John Stones
-
- Blessure aux adducteurs (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/12 15:44
-
- -
-
-
-
- Aymeric Laporte (DF)
-
- Blessure aux ménisques (depuis 31/08) -
-
- Début Février 2020
-
-
-
-
-
-
-
- 11/12 15:44
-
- -
-
-
-
- Leroy Sane
-
- Blessure au ligament croisé (depuis 04/08) -
-
- Fin Février 2020
-
-
-
-
-
-
-
- 11/12 15:44
-
- -
-
-
-
- Sergio Agüero
-
- Blessure à la cuisse (depuis 23/11) -
-
- Début Décembre 2019
-
-
-
-
- -

Manchester United

- -
-
-
- 10/12 19:35
-
- -
-
-
-
- Diogo Dalot
-
- Blessure à la hanche (depuis 06/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 10/12 19:33
-
- -
-
-
-
- Eric Bailly Bertrand (DF)
-
- Blessure au genou (depuis 25/07) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 12/12 15:26
-
- -
-
-
-
- Timothy Fosu-Mensah (MI)
-
- Blessure au genou (depuis 13/04) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 10/12 19:33
-
- -
-
-
-
- Demetri Mitchell
-
- Blessure aux ménisques (depuis 12/02) -
-
- Inconnu
-
-
-
-
-
-
-
- 12/12 15:28
-
- -
-
-
-
- Jesse Lingard
-
- Coup reçu (depuis 12/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 12/12 15:26
-
- -
-
-
-
- Marcos Rojo
-
- Blessure musculaire (depuis 22/11) -
-
- Début Janvier 2020
-
-
-
-
-
-
-
- 12/12 15:26
-
- -
-
-
-
- Paul Pogba
-
- Blessure à la cheville (depuis 02/10) -
-
- Fin Décembre 2019
-
-
-
-
- -

Newcastle United

- -
-
-
- 10/12 20:05
-
- -
-
-
-
- Robert Elliot (GK)
-
- Blessure au dos (depuis 25/02) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 10/12 20:04
-
- -
-
-
-
- Allan Saint-Maximin
-
- Blessure aux adducteurs (depuis 08/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 20:03
-
- -
-
-
-
- Ciaran Clark
-
- Blessure au mollet (depuis 08/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 20:04
-
- -
-
-
-
- Matt Ritchie (MI)
-
- Blessure à la cheville (depuis 28/08) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 20:04
-
- -
-
-
-
- Jamaal Lascelles (DF)
-
- Blessure au genou (depuis 09/11) -
-
- Début Février 2020
-
-
-
-
- -

Norwich

- -
-
-
- 10/12 20:28
-
- -
-
-
-
- Grant Hanley (DF)
-
- Blessure à l'aine (depuis 04/10) -
-
- Medio Décembre 2019
-
-
-
-
-
-
-
- 10/12 20:28
-
- -
-
-
-
- Josip Drmic
-
- Blessure aux adducteurs (depuis 08/11) -
-
- Medio Janvier 2020
-
-
-
-
-
-
-
- 10/12 20:28
-
- -
-
-
-
- Timm Klose (DF)
-
- Blessure au ligament croisé (depuis 27/08) -
-
- Forfait pour la saison
-
-
-
-
- -

Sheffield United

- - -
Aucune blessure ni suspension enregistrée

Southampton

- -
-
-
- 10/12 21:09
-
- -
-
-
-
- Sam McQueen (MI)
-
- Blessure au ligament croisé (depuis 31/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 10/12 21:11
-
- -
-
-
-
- Stuart Armstrong
-
- Blessure aux adducteurs (depuis 23/11) -
-
- Medio Décembre 2019
-
-
-
-
- -

Tottenham

- -
-
-
- 11/12 16:01
-
- -
-
-
-
- Erik Lamela
-
- Blessure aux adducteurs (depuis 26/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 11/12 16:02
-
- -
-
-
-
- Ben Davies (DF)
-
- Blessure à la cheville (depuis 23/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/12 16:01
-
- -
-
-
-
- Harry Winks
-
- Blessure à la cheville (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/12 16:01
-
- -
-
-
-
- Tanguy NDombèlé
-
- Blessure à l'aine (depuis 07/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 11/12 16:02
-
- -
-
-
-
- Hugo Lloris (GK)
-
- Luxation du coude (depuis 05/10) -
-
- Début Janvier 2020
-
-
-
-
-
-
-
- 11/12 16:01
-
- -
-
-
-
- Michel Vorm (GK)
-
- Blessure au mollet (depuis 18/11) -
-
- Fin Décembre 2019
-
-
-
-
- -

Watford

- -
-
-
- 09/12 10:07
-
- -
-
-
-
- Craig Dawson (DF)
-
- Blessure à la tête (depuis 23/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 09/12 10:07
-
- -
-
-
-
- Daniel Bachmann (GK)
-
- Blessure aux adducteurs (depuis 21/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 09/12 10:07
-
- -
-
-
-
- Danny Welbeck
-
- Blessure aux adducteurs (depuis 19/10) -
-
- Inconnu
-
-
-
-
-
-
-
- 09/12 10:07
-
- -
-
-
-
- Daryl Janmaat (DF)
-
- Blessure au genou (depuis 29/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 09/12 10:07
-
- -
-
-
-
- Sebastian Prödl (DF)
-
- Blessure au genou (depuis 21/11) -
-
- Inconnu
-
-
-
-
-
-
-
- 09/12 10:07
-
- -
-
-
-
- Tom Cleverley (MI)
-
- Blessure au talon (depuis 26/10) -
-
- Inconnu
-
-
-
-
- -

West Ham

- -
-
-
- 09/12 10:18
-
- -
-
-
-
- Jack Wilshere (MI)
-
- Blessure à l'aine (depuis 26/10) -
-
- De retour à l'entraînement
-
-
-
-
-
-
-
- 10/12 18:47
-
- -
-
-
-
- Andriy Yarmolenko
-
- Blessure au dos (depuis 09/12) -
-
- Inconnu
-
-
-
-
-
-
-
- 09/12 10:18
-
- -
-
-
-
- Lukasz Fabianski (GK)
-
- Blessure à la hanche (depuis 28/09) -
-
- Fin Décembre 2019
-
-
-
-
-
-
-
- 09/12 10:18
-
- -
-
-
-
- Manuel Lanzini
-
- Fracture de la clavicule (depuis 09/11) -
-
- Medio Janvier 2020
-
-
-
-
- -

Wolverhampton Wanderers

- -
-
-
- 09/12 10:25
-
- -
-
-
-
- Morgan Gibbs-White (MI)
-
- Blessure au dos (depuis 06/11) -
-
- Au jour le jour
-
-
-
-
-
-
-
- 09/12 10:25
-
- -
-
-
-
- Meritan Shabani
-
- Fracture de la cheville (depuis 25/09) -
-
- Inconnu
-
-
-
-
-
-
-
- 09/12 10:25
-
- -
-
-
-
- Willy Boly (DF)
-
- Fracture de la cheville (depuis 26/10) -
-
- Début Février 2020
-
-
-
-
- -

-
- - -
-
- -
- - - -
-
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20191212.html b/src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20191212.html deleted file mode 100644 index ae173c0..0000000 --- a/src/test/resources/__files/maligue2.joueurs-blesses-et-suspendus.20191212.html +++ /dev/null @@ -1,1484 +0,0 @@ - - - - - Joueurs blessés et suspendus - MaLigue2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
- - - - -
-
- - - Ma ligue 2 - 100% Ligue 2 - -
- -
-
-
-
-
- -

Le premier site 100% Ligue 2

-
- -

- Profitez d'une navigation sans publicités ! -

- S'abonner à Maligue2 - -
- - - - - - -
-
- -
- -
-
- - - -
- -
-
-
- - - -
-
-
- -
-
-
-
-

Nos actualités

-
-
-
-
- -
-
-
-
-
- -
-
- - -
-
-

- Les plus lus - - 05 août 2019 Philippe Dejter 0 commentaire

-

Joueurs blessés et suspendus

-

Retrouvez l’ensemble des joueurs blessés et suspendus durant toute la saison de Ligue 2. La page référence des joueurs de Ligue 2 blessés et suspendus pour composer ton équipe MPG les jours de matchs ! Plus aucune excuse si tu alignes des Rotaldo dans ton onze de départ…

-

Cette page est mise à jour chaque semaine, suite à l’annonce des groupes retenus pour la prochaine rencontre, mais aussi après les décisions de la commission de discipline ou encore les blessures potentielles à l’entraînement.

-

Certains clubs ne communiquant pas toujours sur les blessures médicales de leurs joueurs, nous avons ajouté une colonne Absent(s). Elle regroupe les joueurs non convoqués pour le prochain match de Ligue 2. Nous nous basons sur les joueurs sous contrat professionnel ou ayant déjà joué en Ligue 2 avec leur formation.

-

Dernière mise à jour le vendredi 29 novembre à 08h00
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ClubSuspendu(s)Blessé(s)Absent(s)
AC AjaccioLejeune
-Andonian
-Keita
-Jallow
AJ AuxerreYoussouf
-Yattara
Ba, Camara, Chergui, Laiton, Merdji, Ndom, Raux-Yao, Sakhi, Sinayoko, Youssouf (choix)
SM CaenWeber (J18)
-Gonçalves (J19)
Tell
FC Chambly-OiseGuezoui (J19)Santelli
-Heinry
-Martin
Le Roy, Fofana, Latour, L. Doucouré, Edjouma, Fleurier, Géran, Tallo, Héloïse, Pinteaux
LB ChâteaurouxPillot
-Boukari
-Plumain
-Jung
Raineau
-Ghezali
-Chevreuil
-Tormin
Clermont FootGrbic (J19)Phojo
-Salis
-Hountondji
Grenoble FootAbou Demba
-Tinhan
Sylvestre-Brac
-Salles
EA GuingampCaillard
Le Havre ACBonnet (J18)
-Mayembo (J18)
Lekhal (reprise)
-Fontaine
Le MansKanté (J18)Aymes
-Thuram
-Gope-Fenepej
Boissier
RC LensFortes
-Boli
-Madri
-Keita
FC LorientAbergel (J18)Laporte
-Delaplace
-Sainati
-Martins-Pereira
-Mendes
AS Nancy LorraineEl Kaoutari (J19)
-Dembélé (J19)
Marchetti
-Bassouamina
-Bidounga
-Vagner
-Gueye
Constant, Bouzar, N'Guessan, Nguiamba
Chamois NiortaisAllagbé
-Conté
-Paro
-Bena
-Jacob
-Kilama
-Koyalipou
US OrléansSt-Ruf
-Benkaïd
-Thiam
-Pinaud
Thill
-Correa
Paris FCKanté (J19)Felipe, Hugonet, Diaby-Fadiga, Abdi, MangonzoEssimi, Matoug, Alceus, Sila, Tanasijevic, Mara, Maletic, Sarr
Rodez AFHenry (J18)Maanane
-Dady Ngoy
-Dieng
-Peyrelade
-Mathis
FC Sochaux-MontbéliardDiedhiou (J18)
-Thioune (J18, J19)
Prévot
-Lacroix
-Moltenis
-Sans
ES Troyes ACDembélé
-Touzghar
-Pirès
-Mambo
Valenciennes FCD'Almeida (J18)Linguet
-Quénum
-Dabo
Aloé, Arib, Konaté, Romil, Siby
- -
- - -
-
-

-
-
-
-
- -
-
-
- -
-
-
    -
-
-

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

- -

-

- -

-
- -
-
-
-
- - -
-
-
-
- -
-
-
-
-
-
-

Nos partenaires

-
- -
-
- Ref Store -
-
- Winamax -
-
- MonPetitGazon -
-
- EcoFoot -
-
- Metro-Sports -
-
- Paris Sportifs Canada -
-
- Sites de paris sportifs -
-
- LiveFoot.fr -
-
- Imagesport -
-
- Call4Sport -
-
- TooGoal -
-
- Ligue de Football Professionnel -
-
-
-
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.builds.20191218.json b/src/test/resources/__files/mlnstats.builds.20191218.json deleted file mode 100644 index 4127a4c..0000000 --- a/src/test/resources/__files/mlnstats.builds.20191218.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2019-12-17T03:30:10.039Z","2":"2019-12-17T05:30:14.070Z","3":"2019-12-16T04:31:16.156Z","4":"2019-12-17T05:30:44.856Z","5":"2019-12-18T06:30:38.471Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.builds.20200106.json b/src/test/resources/__files/mlnstats.builds.20200106.json deleted file mode 100644 index 8d3224d..0000000 --- a/src/test/resources/__files/mlnstats.builds.20200106.json +++ /dev/null @@ -1 +0,0 @@ -{"3":"2020-01-06T04:30:22.934Z","5":"2020-01-06T04:31:09.290Z"} diff --git a/src/test/resources/__files/mlnstats.builds.20201006.json b/src/test/resources/__files/mlnstats.builds.20201006.json deleted file mode 100644 index a664ccf..0000000 --- a/src/test/resources/__files/mlnstats.builds.20201006.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2020-10-05T03:30:05.807Z","2":"2020-10-05T02:30:59.628Z","3":"2020-10-05T03:30:47.555Z","4":"2020-10-04T02:31:55.335Z","5":"2020-10-05T02:32:08.941Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.builds.20201021.json b/src/test/resources/__files/mlnstats.builds.20201021.json deleted file mode 100644 index 395c060..0000000 --- a/src/test/resources/__files/mlnstats.builds.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2020-10-21T15:40:24.202Z","2":"2020-10-21T15:40:47.656Z","3":"2020-10-21T15:41:07.668Z","4":"2020-10-21T15:41:26.237Z","5":"2020-10-21T15:41:43.077Z"} diff --git a/src/test/resources/__files/mlnstats.ligue-1.20201006.json b/src/test/resources/__files/mlnstats.ligue-1.20201006.json deleted file mode 100644 index 963fb13..0000000 --- a/src/test/resources/__files/mlnstats.ligue-1.20201006.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2020-10-05T03:30:05.807Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","aS":{"i":14,"n":"Ligue 1 2020-2021","cN":"Ligue-1-2020-2021","mD":38,"cD":{"d":6,"lD":6,"p":0}},"lS":{"i":9,"n":"Ligue 1 2019-2020","cN":"Ligue-1-2019-2020","mD":28}},"le":[[1,"Ligue-1"],[4,"Ligue-2"],[3,"Liga"],[5,"Serie-A"],[2,"Premier-League"]],"p":[[108,{"n":"Mangani","f":"Thomas","fp":"MD","r":14,"c":16,"s":{"s":30,"n":6,"a":5,"d":0.89,"Ss":30,"Sn":6,"Sa":5,"Sd":0.89,"Og":1,"Os":129.5,"On":26,"Oa":4.98,"Od":0.94,"pm":26},"p":[[6,{"n":5.5,"e":6154,"s":1}],[5,{"n":4.5,"e":6158}],[4,{"n":3.5,"e":6173}],[3,{"n":6,"e":6178}],[2,{"n":5,"e":6192}],[1,{"n":5.5,"e":6200}],[-28,{"n":4.5,"e":3648,"s":1}],[-25,{"n":4.5,"e":3685,"s":1}],[-24,{"n":3.5,"e":3689}],[-22,{"n":3,"e":3709}],[-21,{"n":4.5,"e":3721}],[-20,{"n":6,"e":3729}],[-19,{"n":5.5,"e":3742}],[-18,{"n":4.5,"e":3749}],[-17,{"n":4.5,"e":3766}],[-16,{"n":4.5,"e":3769}],[-15,{"n":5,"e":3783}],[-14,{"n":7,"e":3789,"g":1}],[-13,{"n":5,"e":3805}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5,"e":3828}],[-9,{"n":4.5,"e":3844,"s":1}],[-8,{"n":4.5,"e":3848}],[-6,{"n":7,"e":3868}],[-5,{"n":5.5,"e":3882}]],"fo":[[6158,[{"t":"Y"}]]]}],[138,{"n":"Diony","f":"Lois","fp":"A","r":8,"c":16,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Ss":18,"Sn":4,"Sa":4.5,"Sd":0.41,"Og":2,"Os":67,"On":15,"Oa":4.47,"Od":0.69,"pa":15},"p":[[-28,{"n":4,"e":3656}],[-27,{"n":4,"e":3661}],[-26,{"n":4.5,"e":3676}],[-25,{"n":6,"e":3680,"g":1,"s":1}],[-24,{"n":4,"e":3693}],[-23,{"n":4,"e":3702}],[-22,{"n":4.5,"e":3712,"s":1}],[-17,{"n":4,"e":3765}],[-16,{"n":4,"e":3776,"s":1}],[-15,{"n":6,"e":3786,"g":1}],[-9,{"n":4,"e":3846}],[6,{"n":4,"e":6154,"s":1}],[5,{"n":5,"e":6158,"s":1}],[4,{"n":4.5,"e":6173,"s":1}],[3,{"n":4.5,"e":6178,"s":1}]]}],[143,{"n":"Thomas","f":"Romain","fp":"DC","r":15,"c":16,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Og":1,"Os":134,"On":26,"Oa":5.15,"Od":1.15,"pd":26},"p":[[-27,{"n":6,"e":3660}],[-26,{"n":6,"e":3668}],[-7,{"n":7,"e":3867}],[-28,{"n":7,"e":3648,"g":1}],[-25,{"n":5,"e":3685}],[-24,{"n":4.5,"e":3689}],[-22,{"n":3,"e":3709}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5.5,"e":3729}],[-19,{"n":6,"e":3742}],[-18,{"n":6,"e":3749}],[-17,{"n":3.5,"e":3766}],[-16,{"n":3,"e":3769}],[-15,{"n":3.5,"e":3783}],[-14,{"n":6,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":6,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5,"e":3828}],[-9,{"n":4,"e":3844}],[-8,{"n":5.5,"e":3848}],[-6,{"n":6,"e":3868}],[-5,{"n":3.5,"e":3882}],[3,{"n":5,"e":6178}],[2,{"n":4.5,"e":6192}],[1,{"n":6,"e":6200}]],"fo":[[6178,[{"t":"Y"},{"t":"O"}]]],"a":{"m":16,"a":19,"M":25,"n":18}}],[159,{"n":"Traoré","f":"Ismael","fp":"DC","r":17,"c":16,"s":{"g":3,"s":29.5,"n":6,"a":4.92,"d":1.5,"Sg":3,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":1.5,"Og":3,"Os":133.5,"On":27,"Oa":4.94,"Od":1,"pd":27},"p":[[-23,{"n":5,"e":3706}],[-28,{"n":6,"e":3648}],[-27,{"n":6,"e":3660}],[-25,{"n":5,"e":3685}],[-24,{"n":4,"e":3689}],[-22,{"n":3,"e":3709}],[-21,{"n":5.5,"e":3721}],[-20,{"n":6,"e":3729}],[-19,{"n":5,"e":3742}],[-18,{"n":5.5,"e":3749}],[-17,{"n":4.5,"e":3766}],[-16,{"n":4,"e":3769}],[-14,{"n":5,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5.5,"e":3828}],[-9,{"n":3,"e":3844}],[-8,{"n":5,"e":3848}],[-6,{"n":5,"e":3868}],[6,{"n":4,"e":6154,"g":1}],[-5,{"n":4.5,"e":3882}],[5,{"n":5.5,"e":6158,"g":1}],[4,{"n":3,"e":6173}],[3,{"n":6,"e":6178}],[2,{"n":4,"e":6192}],[1,{"n":7,"e":6200,"g":1}]],"a":{"m":15,"a":19,"M":27,"n":21}}],[179,{"n":"Cabot","f":"Jimmy","fp":"MO","r":10,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":117.5,"On":22,"Oa":5.34,"Od":0.86,"pm":22},"p":[[-28,{"n":5,"e":4788,"s":1}],[-26,{"n":5,"e":4816}],[-25,{"n":5.5,"e":4823,"s":1}],[-24,{"n":5,"e":4831}],[-23,{"n":4.5,"e":4842,"s":1}],[-22,{"n":5.5,"e":4856}],[-21,{"n":5,"e":4864,"s":1}],[-20,{"n":6.5,"e":4873}],[-19,{"n":4.5,"e":4887}],[-18,{"n":7,"e":4893,"g":1}],[-17,{"n":8,"e":4900,"g":1}],[-16,{"n":4.5,"e":4913,"s":1}],[-15,{"n":5,"e":4920,"s":1}],[-14,{"n":5,"e":4932,"s":1}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951}],[-11,{"n":5,"e":4964,"s":1}],[-10,{"n":5.5,"e":4972}],[-9,{"n":6,"e":4979}],[-8,{"n":5,"e":4992}],[-7,{"n":5.5,"e":5000}],[6,{"n":4.5,"e":6154,"s":1}]],"fo":[[6154,[{"t":"Y"}]]]}],[202,{"n":"Capelle","f":"Pierrick","fp":"MO","r":9,"c":16,"s":{"s":29,"n":6,"a":4.83,"d":1.57,"Ss":29,"Sn":6,"Sa":4.83,"Sd":1.57,"Og":1,"Os":128.5,"On":26,"Oa":4.94,"Od":1.08,"pd":3,"pm":22,"pa":1},"p":[[-27,{"n":6,"e":3660}],[-26,{"n":6,"e":3668}],[-24,{"n":4,"e":3689}],[-23,{"n":6,"e":3706}],[-22,{"n":3,"e":3709}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5,"e":3729}],[-19,{"n":4.5,"e":3742}],[-18,{"n":5,"e":3749}],[-17,{"n":5,"e":3766}],[-16,{"n":4,"e":3769}],[-15,{"n":5.5,"e":3783,"s":1}],[-14,{"n":5,"e":3789,"s":1}],[-11,{"n":5,"e":3821,"s":1}],[-10,{"n":5.5,"e":3828}],[-9,{"n":3.5,"e":3844}],[-8,{"n":6,"e":3848}],[-7,{"n":4.5,"e":3867,"s":1}],[-6,{"n":6.5,"e":3868,"g":1}],[6,{"n":3.5,"e":6154}],[-5,{"n":4,"e":3882}],[5,{"n":7.5,"e":6158}],[4,{"n":3,"e":6173}],[3,{"n":5,"e":6178}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":5,"e":6200,"s":1}]]}],[214,{"n":"Manceau","f":"Vincent","fp":"DL","r":9,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":94.5,"On":20,"Oa":4.72,"Od":0.8,"pd":20},"p":[[-26,{"n":5,"e":3668}],[-25,{"n":4.5,"e":3685}],[-24,{"n":4,"e":3689}],[-23,{"n":5,"e":3706}],[-22,{"n":4,"e":3709}],[-21,{"n":5,"e":3721}],[-20,{"n":4,"e":3729}],[-19,{"n":6,"e":3742}],[-18,{"n":5.5,"e":3749}],[-17,{"n":4,"e":3766}],[-16,{"n":4,"e":3769}],[-13,{"n":5,"e":3805}],[-12,{"n":6,"e":3809}],[-11,{"n":5,"e":3821}],[-10,{"n":5,"e":3828}],[-9,{"n":3,"e":3844}],[-7,{"n":6,"e":3867}],[-6,{"n":5,"e":3868}],[6,{"n":4.5,"e":6154,"s":1}],[-5,{"n":4,"e":3882}]]}],[235,{"n":"Pavlovic","f":"Mateo","fp":"DC","r":6,"c":16,"s":{"s":14.5,"n":4,"a":3.63,"d":1.38,"Ss":14.5,"Sn":4,"Sa":3.63,"Sd":1.38,"Os":58.5,"On":13,"Oa":4.5,"Od":1.19,"pd":13},"p":[[-27,{"n":5,"e":3660,"s":1}],[-26,{"n":6,"e":3668}],[-24,{"n":4.5,"e":3689}],[-23,{"n":5.5,"e":3706}],[-16,{"n":4.5,"e":3769,"s":1}],[-15,{"n":3,"e":3783}],[-10,{"n":4.5,"e":3828,"s":1}],[-7,{"n":6,"e":3867}],[6,{"n":2,"e":6154}],[-5,{"n":5,"e":3882}],[5,{"n":4.5,"e":6158}],[4,{"n":3,"e":6173}],[3,{"n":5,"e":6178,"s":1}]],"fo":[[6158,[{"t":"Y"}]],[6173,[{"t":"Y"}]]]}],[283,{"n":"Coulibaly","f":"Lassana","fp":"MD","r":9,"c":16,"s":{"s":29.5,"n":6,"a":4.92,"d":1.07,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":1.07,"Os":29.5,"On":6,"Oa":4.92,"Od":1.07,"pm":6},"p":[[6,{"n":3,"e":6154}],[5,{"n":5.5,"e":6158,"s":1}],[4,{"n":5.5,"e":6173}],[3,{"n":6,"e":6178,"s":1}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":4.5,"e":6200,"s":1}]]}],[287,{"n":"Bamba","f":"Abdoulaye","fp":"DL","r":11,"c":16,"s":{"s":27,"n":6,"a":4.5,"d":1.26,"Ss":27,"Sn":6,"Sa":4.5,"Sd":1.26,"Os":57.5,"On":12,"Oa":4.79,"Od":1.08,"pd":11,"pm":1},"p":[[-28,{"n":6,"e":3648}],[-27,{"n":5,"e":3660}],[-26,{"n":5.5,"e":3668}],[-22,{"n":5.5,"e":3709,"s":1}],[-15,{"n":3.5,"e":3783}],[-14,{"n":5,"e":3789}],[6,{"n":3,"e":6154}],[5,{"n":5,"e":6158}],[4,{"n":3,"e":6173}],[3,{"n":5.5,"e":6178}],[2,{"n":4.5,"e":6192}],[1,{"n":6,"e":6200}]],"a":{"m":8,"a":13,"M":20,"n":11}}],[514,{"n":"Bernardoni","f":"Paul","fp":"G","r":16,"c":16,"s":{"s":31.5,"n":6,"a":5.25,"d":1.47,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.47,"Os":141,"On":26,"Oa":5.42,"Od":1.09,"pg":26},"p":[[-28,{"n":4.5,"e":3652}],[-27,{"n":3.5,"e":3665}],[-26,{"n":6,"e":3675}],[-24,{"n":5.5,"e":3694}],[-23,{"n":6.5,"e":3705}],[-22,{"n":5.5,"e":3714}],[-21,{"n":5.5,"e":3727}],[-20,{"n":6,"e":3733}],[-19,{"n":6,"e":3739}],[-18,{"n":6,"e":3755}],[-17,{"n":5.5,"e":3764}],[-16,{"n":2.5,"e":3770}],[-15,{"n":5.5,"e":3784}],[-9,{"n":6,"e":3841}],[-8,{"n":5.5,"e":3855}],[-7,{"n":5,"e":3863}],[-6,{"n":6.5,"e":3874}],[-5,{"n":6,"e":3881}],[-25,{"n":5.5,"e":3685}],[-14,{"n":6.5,"e":3789}],[6,{"n":3,"e":6154}],[5,{"n":6,"e":6158}],[4,{"n":4,"e":6173}],[3,{"n":7,"e":6178}],[2,{"n":5.5,"e":6192}],[1,{"n":6,"e":6200}]],"a":{"m":17,"a":19,"M":25,"n":13}}],[1179,{"n":"Fulgini","f":"Angelo","fp":"MO","r":14,"c":16,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.21,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.21,"Og":2,"Os":135.5,"On":26,"Oa":5.21,"Od":0.99,"pm":24,"pa":2},"p":[[-28,{"n":5.5,"e":3648}],[-27,{"n":5.5,"e":3660}],[-26,{"n":6,"e":3668}],[-25,{"n":3.5,"e":3685}],[-24,{"n":6,"e":3689}],[-23,{"n":5.5,"e":3706}],[-22,{"n":3.5,"e":3709}],[-21,{"n":4.5,"e":3721}],[-20,{"n":5.5,"e":3729}],[-19,{"n":5.5,"e":3742}],[-18,{"n":6.5,"e":3749}],[-17,{"n":4.5,"e":3766}],[-16,{"n":4.5,"e":3769}],[-15,{"n":7,"e":3783,"g":1}],[-13,{"n":4.5,"e":3805}],[-12,{"n":6,"e":3809}],[-11,{"n":6,"e":3821}],[-8,{"n":5,"e":3848,"s":1}],[-7,{"n":5,"e":3867}],[-6,{"n":4,"e":3868}],[6,{"n":3.5,"e":6154}],[5,{"n":7,"e":6158,"g":1}],[4,{"n":5,"e":6173}],[3,{"n":6,"e":6178}],[2,{"n":4.5,"e":6192}],[1,{"n":5.5,"e":6200}]],"fo":[[6178,[{"t":"Y"}]]],"a":{"m":15,"a":16,"M":22,"n":8}}],[1401,{"n":"Bahoken","f":"Stéphane","fp":"A","r":9,"c":16,"s":{"g":2,"s":23,"n":5,"a":4.6,"d":1.29,"Sg":2,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.29,"Og":6,"Os":102.5,"On":22,"Oa":4.66,"Od":0.93,"pa":22},"p":[[-28,{"n":4,"e":3648}],[-27,{"n":6,"e":3660,"g":1}],[-26,{"n":6,"e":3668,"g":1,"s":1}],[-25,{"n":3.5,"e":3685}],[-24,{"n":4.5,"e":3689,"s":1}],[-23,{"n":4.5,"e":3706,"s":1}],[-22,{"n":4.5,"e":3709,"s":1}],[-21,{"n":4,"e":3721,"s":1}],[-20,{"n":4,"e":3729}],[-19,{"n":4,"e":3742}],[-18,{"n":4.5,"e":3749,"s":1}],[-12,{"n":5.5,"e":3809,"g":1}],[-11,{"n":3.5,"e":3821}],[-10,{"n":4.5,"e":3828,"s":1}],[-7,{"n":5.5,"e":3867}],[-6,{"n":5,"e":3868,"s":1}],[6,{"n":2.5,"e":6154}],[-5,{"n":6,"e":3882,"g":1}],[5,{"n":4.5,"e":6158}],[4,{"n":5,"e":6173,"g":1}],[3,{"n":6,"e":6178,"g":1}],[2,{"n":5,"e":6192,"s":1}]],"fo":[[6154,[{"t":"Y"}]],[6173,[{"t":"Y"}]],[6178,[{"t":"Y"}]]],"a":{"m":12,"a":18,"M":33,"n":24}}],[2136,{"n":"Butelle","f":"Ludovic","fp":"G","r":7,"c":16,"s":{"Os":110.5,"On":22,"Oa":5.02,"Od":1.12,"pg":22},"p":[[-28,{"n":7,"e":3648}],[-26,{"n":6,"e":3668}],[-25,{"n":5,"e":3685}],[-24,{"n":5,"e":3689}],[-22,{"n":3.5,"e":3709}],[-21,{"n":6,"e":3721}],[-20,{"n":5,"e":3729}],[-19,{"n":3.5,"e":3742}],[-18,{"n":6,"e":3749}],[-17,{"n":4,"e":3766}],[-16,{"n":4.5,"e":3769}],[-15,{"n":4,"e":3783}],[-14,{"n":6,"e":3789}],[-13,{"n":6,"e":3805}],[-12,{"n":6.5,"e":3809}],[-11,{"n":6,"e":3821}],[-10,{"n":4,"e":3828}],[-9,{"n":4,"e":3844}],[-8,{"n":4.5,"e":3848}],[-7,{"n":6,"e":3867}],[-6,{"n":5,"e":3868}],[-5,{"n":3,"e":3882}]]}],[2646,{"n":"Ait Nouri","f":"Rayan","fp":"DL","r":7,"c":16,"s":{"s":14,"n":3,"a":4.67,"d":1.53,"Ss":14,"Sn":3,"Sa":4.67,"Sd":1.53,"Os":75.5,"On":16,"Oa":4.72,"Od":0.88,"pd":16},"p":[[-20,{"n":5.5,"e":3729}],[-19,{"n":5,"e":3742}],[-18,{"n":5.5,"e":3749}],[-17,{"n":5,"e":3766,"s":1}],[-16,{"n":4,"e":3769}],[-14,{"n":3.5,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-9,{"n":4,"e":3844}],[-8,{"n":4.5,"e":3848}],[-6,{"n":5,"e":3868}],[6,{"n":3,"e":6154}],[-5,{"n":3.5,"e":3882}],[5,{"n":6,"e":6158}],[4,{"n":5,"e":6173,"s":1}]],"a":{"m":8,"a":10,"M":21,"n":17}}],[2698,{"n":"Thioub","f":"Sada","fp":"A","r":13,"c":16,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.17,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.17,"Og":2,"Os":144,"On":28,"Oa":5.14,"Od":0.91,"pm":16,"pa":12},"p":[[-28,{"n":5.5,"e":3648}],[-27,{"n":5.5,"e":3660}],[-26,{"n":4.5,"e":3668}],[-25,{"n":4.5,"e":3685}],[-24,{"n":5.5,"e":3689}],[-23,{"n":5,"e":3706}],[-22,{"n":4,"e":3709}],[-21,{"n":6,"e":3721}],[-20,{"n":7.5,"e":3729,"g":1}],[-19,{"n":5,"e":3742,"s":1}],[-18,{"n":5.5,"e":3749}],[-17,{"n":4,"e":3766,"s":1}],[-16,{"n":5,"e":3769}],[-15,{"n":5,"e":3783}],[-14,{"n":4.5,"e":3789,"s":1}],[-13,{"n":4.5,"e":3805}],[-12,{"n":5,"e":3809,"s":1}],[-11,{"n":5,"e":3821,"s":1}],[-9,{"n":4,"e":3844,"s":1}],[-8,{"n":6,"e":3848}],[-6,{"n":6.5,"e":3868}],[6,{"n":4,"e":6154}],[-5,{"n":4.5,"e":3882,"s":1}],[5,{"n":6,"e":6158,"g":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":4,"e":6178,"s":1}],[2,{"n":5.5,"e":6192}],[1,{"n":7,"e":6200}]],"a":{"m":9,"a":20,"M":36,"n":11}}],[2702,{"n":"Bobichon","f":"Antonin","fp":"MO","r":9,"c":16,"s":{"s":20,"n":4,"a":5,"d":1.68,"Og":2,"Os":75.5,"On":15,"Oa":5.03,"Od":1.17,"pm":13,"pa":2},"p":[[-28,{"n":7.5,"e":3648,"g":1}],[-27,{"n":4.5,"e":3660}],[-23,{"n":4.5,"e":3706}],[-21,{"n":5.5,"e":3721,"s":1}],[-19,{"n":6,"e":3742,"g":1}],[-16,{"n":4.5,"e":3769,"s":1}],[-15,{"n":4,"e":3783}],[-14,{"n":4.5,"e":3789}],[-12,{"n":5,"e":3809,"s":1}],[-9,{"n":4,"e":3844}],[-7,{"n":5.5,"e":3867}],[5,{"n":4,"e":6158}],[4,{"n":4,"e":6173}],[3,{"n":7.5,"e":6178}],[2,{"n":4.5,"e":6192,"s":1}]]}],[2731,{"n":"Alioui","f":"Rachid","fp":"A","r":10,"c":16,"s":{"Og":5,"Os":115,"On":24,"Oa":4.79,"Od":1.07,"pa":24},"p":[[-28,{"n":4,"e":3648,"s":1}],[-27,{"n":4.5,"e":3660,"s":1}],[-26,{"n":5,"e":3668}],[-25,{"n":4,"e":3685,"s":1}],[-24,{"n":3.5,"e":3689}],[-23,{"n":4,"e":3706}],[-22,{"n":5,"e":3709,"g":1}],[-21,{"n":4,"e":3721}],[-20,{"n":5,"e":3729,"s":1}],[-19,{"n":4.5,"e":3742,"s":1}],[-18,{"n":4,"e":3749}],[-17,{"n":6,"e":3766,"g":1}],[-16,{"n":4,"e":3769}],[-15,{"n":4.5,"e":3783,"s":1}],[-14,{"n":5,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5.5,"e":3809,"s":1}],[-11,{"n":4.5,"e":3821,"s":1}],[-10,{"n":4,"e":3828}],[-9,{"n":3,"e":3844}],[-8,{"n":6.5,"e":3848,"g":1}],[-7,{"n":8,"e":3867,"g":2,"s":1}],[-6,{"n":5.5,"e":3868}],[-5,{"n":5.5,"e":3882,"s":1}]],"a":{"m":14,"a":24,"M":42,"n":8}}],[2831,{"n":"El Melali","f":"Farid","fp":"MO","r":7,"c":16,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":1,"Os":35,"On":7,"Oa":5,"Od":0.71,"pm":7},"p":[[-28,{"n":5,"e":3648,"s":1}],[-21,{"n":4.5,"e":3721}],[-20,{"n":5,"e":3729,"s":1}],[-19,{"n":6.5,"e":3742,"g":1,"s":1}],[-10,{"n":4.5,"e":3828}],[2,{"n":5,"e":6192}],[1,{"n":4.5,"e":6200,"s":1}]]}],[2890,{"n":"Mancini","f":"Anthony","fp":"MO","r":1,"c":16}],[2944,{"n":"Mouanga","f":"Kevin","fp":"DC","r":1,"c":16}],[3125,{"n":"Doumbia","f":"Souleyman","fp":"DL","r":14,"c":16,"s":{"s":16,"n":3,"a":5.33,"d":1.53,"Os":49,"On":9,"Oa":5.44,"Od":0.95,"pd":9},"p":[[-19,{"n":6,"e":3746}],[-28,{"n":5.5,"e":3648}],[-27,{"n":6.5,"e":3660}],[-26,{"n":5.5,"e":3668}],[-25,{"n":4.5,"e":3685}],[-23,{"n":5,"e":3706}],[3,{"n":5,"e":6178}],[2,{"n":4,"e":6192}],[1,{"n":7,"e":6200}]],"fo":[[6200,[{"t":"I"}]]],"a":{"m":14,"a":17,"M":23,"n":15}}],[3189,{"n":"Elhadji Djibril Diaw","f":"","fp":"DC","r":1,"c":16,"s":{"Os":13,"On":3,"Oa":4.33,"Od":0.58,"pd":3},"p":[[-18,{"n":4,"e":4895}],[-12,{"n":5,"e":4954,"s":1}],[-7,{"n":4,"e":5007}]]}],[4037,{"n":"Petkovic","f":"Danijel","fp":"G","r":5,"c":16,"s":{"Os":12,"On":2,"Oa":6,"Od":1.41,"pg":2},"p":[[-27,{"n":7,"e":3660}],[-23,{"n":5,"e":3706}]]}],[5018,{"n":"Pereira Lage","f":"Mathias","fp":"MO","r":7,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Os":105.5,"On":22,"Oa":4.8,"Od":0.9,"pm":22},"p":[[-27,{"n":5,"e":3660,"s":1}],[-26,{"n":5,"e":3668,"s":1}],[-25,{"n":3.5,"e":3685}],[-24,{"n":4.5,"e":3689,"s":1}],[-23,{"n":5,"e":3706,"s":1}],[-22,{"n":4,"e":3709}],[-21,{"n":5,"e":3721,"s":1}],[-18,{"n":5,"e":3749,"s":1}],[-17,{"n":5.5,"e":3766}],[-16,{"n":5,"e":3769,"s":1}],[-15,{"n":4.5,"e":3783}],[-14,{"n":6,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":4,"e":3828}],[-9,{"n":3.5,"e":3844}],[-8,{"n":3.5,"e":3848}],[-7,{"n":5.5,"e":3867}],[-6,{"n":7,"e":3868,"s":1}],[-5,{"n":3.5,"e":3882}],[1,{"n":4.5,"e":6200}]]}],[5054,{"n":"Ebosse","f":"Enzo","fp":"DL","r":7,"c":16,"s":{"s":16,"n":4,"a":4,"d":1.58,"Ss":10.5,"Sn":3,"Sa":3.5,"Sd":1.5,"Os":74.5,"On":16,"Oa":4.66,"Od":1.22,"pd":16},"p":[[-28,{"n":4,"e":4789}],[-27,{"n":6.5,"e":4801}],[-25,{"n":5,"e":4822}],[-22,{"n":5.5,"e":4853}],[-21,{"n":5.5,"e":4867}],[-19,{"n":6.5,"e":4884}],[-17,{"n":4.5,"e":4906}],[-16,{"n":4,"e":4912}],[-14,{"n":5.5,"e":4931}],[-9,{"n":4.5,"e":4982}],[-8,{"n":3,"e":4991}],[-23,{"n":4,"e":4842}],[6,{"n":2,"e":6154}],[5,{"n":5,"e":6158,"s":1}],[4,{"n":3.5,"e":6173}],[1,{"n":5.5,"e":6200,"s":1}]],"fo":[[6173,[{"t":"Y"}]]]}],[5456,{"n":"Ould Khaled","f":"Zinédine","fp":"MD","r":4,"c":16,"s":{"Os":5.5,"On":1,"Oa":5.5,"pm":1},"p":[[-28,{"n":5.5,"e":3648}]]}],[6260,{"n":"Loucif","f":"Haithem","fp":"MO","r":5,"c":16}],[6859,{"n":"Bemanga","f":"Kevin","fp":"MO","r":1,"c":16}],[6921,{"n":"Boma","f":"Kévin","fp":"DC","r":1,"c":16}],[6924,{"n":"Taibi","f":"Waniss","fp":"MO","r":1,"c":16}],[7143,{"n":"Ali-Cho","f":"Mohamed","fp":"MO","r":3,"c":16,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[6,{"n":4.5,"e":6154,"s":1}],[5,{"n":4.5,"e":6158,"s":1}],[4,{"n":5,"e":6173,"s":1}]],"fo":[[6158,[{"t":"Y"}]]]}],[38,{"n":"Costil","f":"Benoit","fp":"G","r":20,"c":3,"s":{"s":35.5,"n":6,"a":5.92,"d":0.2,"Ss":29.5,"Sn":5,"Sa":5.9,"Sd":0.22,"Os":167.5,"On":30,"Oa":5.58,"Od":0.76,"pg":30},"p":[[6,{"n":6,"e":6148}],[5,{"n":6,"e":6159}],[4,{"n":5.5,"e":6169}],[3,{"n":6,"e":6179}],[1,{"n":6,"e":6199}],[-27,{"n":5,"e":3659}],[-26,{"n":5,"e":3674}],[-25,{"n":4,"e":3679}],[-24,{"n":5.5,"e":3692}],[-23,{"n":6.5,"e":3698}],[-22,{"n":6.5,"e":3710}],[-21,{"n":6,"e":3724}],[-20,{"n":5.5,"e":3730}],[-18,{"n":5,"e":3750}],[-17,{"n":4,"e":3759}],[-15,{"n":6.5,"e":3785}],[-14,{"n":5.5,"e":3790}],[-13,{"n":6,"e":3804}],[-12,{"n":6,"e":3810}],[-11,{"n":4,"e":3819}],[-10,{"n":6,"e":3829}],[-9,{"n":5.5,"e":3847}],[-8,{"n":6.5,"e":3849}],[-7,{"n":5.5,"e":3858}],[-6,{"n":4,"e":3869}],[-5,{"n":6,"e":3879}],[-28,{"n":5.5,"e":3656}],[-19,{"n":6,"e":3746}],[-16,{"n":6,"e":3770}],[2,{"n":6,"e":6192}]],"a":{"m":20,"a":24,"M":31,"n":10}}],[56,{"n":"Briand","f":"Jimmy","fp":"A","r":9,"c":3,"s":{"s":27,"n":6,"a":4.5,"d":0.45,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.45,"Og":6,"Os":118,"On":24,"Oa":4.92,"Od":0.93,"pm":1,"pa":23},"p":[[-25,{"n":6,"e":3679,"g":1}],[-24,{"n":5,"e":3692}],[-23,{"n":4.5,"e":3698}],[-22,{"n":4.5,"e":3710}],[-21,{"n":6.5,"e":3724,"g":1}],[-20,{"n":6,"e":3730,"g":1}],[-19,{"n":5,"e":3746}],[-18,{"n":4,"e":3750,"s":1}],[-17,{"n":4.5,"e":3759,"s":1}],[-13,{"n":6,"e":3804,"g":1}],[-12,{"n":6,"e":3810}],[-11,{"n":3,"e":3819}],[-10,{"n":4,"e":3829}],[-9,{"n":5,"e":3847}],[-8,{"n":3.5,"e":3849}],[-7,{"n":5.5,"e":3858}],[-6,{"n":6,"e":3869,"g":1}],[6,{"n":4.5,"e":6148,"s":1}],[-5,{"n":6,"e":3879,"g":1}],[5,{"n":5,"e":6159,"s":1}],[4,{"n":5,"e":6169}],[3,{"n":4,"e":6179,"s":1}],[2,{"n":4,"e":6192,"s":1}],[1,{"n":4.5,"e":6199,"s":1}]],"fo":[[6179,[{"t":"Y"}]]],"a":{"m":11,"a":20,"M":28,"n":12}}],[105,{"n":"Sabaly","f":"Youssouf","fp":"DL","r":11,"c":3,"s":{"s":30,"n":6,"a":5,"d":0.45,"Ss":30,"Sn":6,"Sa":5,"Sd":0.45,"Os":82.5,"On":17,"Oa":4.85,"Od":0.98,"pd":14,"pm":3},"p":[[-28,{"n":5,"e":3656}],[-27,{"n":5.5,"e":3659}],[-26,{"n":3,"e":3674}],[-25,{"n":4,"e":3679}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":5,"e":3698}],[-22,{"n":5,"e":3710}],[-20,{"n":3.5,"e":3730}],[-17,{"n":4,"e":3759}],[-16,{"n":7.5,"e":3770}],[-15,{"n":5,"e":3785,"s":1}],[6,{"n":5.5,"e":6148}],[5,{"n":5,"e":6159}],[4,{"n":4.5,"e":6169}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6192}],[1,{"n":5.5,"e":6199}]],"fo":[[6159,[{"t":"Y"}]],[6192,[{"t":"Y"}]]],"a":{"m":7,"a":12,"M":15,"n":8}}],[139,{"n":"Baysse","f":"Paul","fp":"DC","r":13,"c":3,"s":{"s":26,"n":5,"a":5.2,"d":1.82,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":26,"On":5,"Oa":5.2,"Od":1.82,"pd":5},"p":[[6,{"n":5.5,"e":6148,"s":1}],[4,{"n":2,"e":6169}],[3,{"n":6,"e":6179}],[2,{"n":6.5,"e":6192}],[1,{"n":6,"e":6199}]],"fo":[[6169,[{"t":"Y"},{"t":"O"}]]],"a":{"m":5,"a":15,"M":25,"n":12}}],[168,{"n":"Mexer","f":"","fp":"DC","r":7,"c":3,"s":{"Os":72,"On":15,"Oa":4.8,"Od":0.7,"pd":15},"p":[[-28,{"n":5,"e":3656}],[-22,{"n":5,"e":3710,"s":1}],[-21,{"n":6,"e":3724,"s":1}],[-20,{"n":3.5,"e":3730}],[-19,{"n":4,"e":3746}],[-18,{"n":4.5,"e":3750}],[-15,{"n":5,"e":3785}],[-13,{"n":4,"e":3804}],[-12,{"n":5.5,"e":3810}],[-11,{"n":4.5,"e":3819}],[-10,{"n":4,"e":3829}],[-9,{"n":5.5,"e":3847}],[-8,{"n":5,"e":3849}],[-7,{"n":5,"e":3858}],[-6,{"n":5.5,"e":3869,"s":1}]]}],[189,{"n":"Jovanovic","f":"Vukasin","fp":"DC","r":6,"c":3,"s":{"Os":46,"On":9,"Oa":5.11,"Od":0.86,"pd":9},"p":[[-27,{"n":5.5,"e":3659,"s":1}],[-17,{"n":3.5,"e":3759}],[-16,{"n":6,"e":3770}],[-15,{"n":4.5,"e":3785,"s":1}],[-13,{"n":5,"e":3804}],[-12,{"n":5,"e":3810,"s":1}],[-10,{"n":6,"e":3829,"s":1}],[-6,{"n":4.5,"e":3869}],[-5,{"n":6,"e":3879}]]}],[268,{"n":"de Preville","f":"Nicolas","fp":"A","r":15,"c":3,"s":{"s":32.5,"n":6,"a":5.42,"d":0.66,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.66,"Og":5,"Os":143,"On":26,"Oa":5.5,"Od":1.2,"pm":11,"pa":15},"p":[[-27,{"n":7,"e":3659,"g":1}],[-26,{"n":5,"e":3674}],[-25,{"n":4.5,"e":3679}],[-24,{"n":6,"e":3692}],[-23,{"n":7,"e":3698}],[-22,{"n":6,"e":3710}],[-21,{"n":4.5,"e":3724}],[-20,{"n":4,"e":3730}],[-19,{"n":4.5,"e":3746}],[-18,{"n":6,"e":3750}],[-17,{"n":4,"e":3759}],[-16,{"n":7,"e":3770,"g":1}],[-15,{"n":5,"e":3785}],[-14,{"n":8,"e":3790,"g":1}],[-13,{"n":5,"e":3804}],[-12,{"n":5,"e":3810}],[-11,{"n":3.5,"e":3819}],[-9,{"n":8,"e":3847,"g":1}],[-8,{"n":4.5,"e":3849,"s":1}],[6,{"n":5,"e":6148}],[-5,{"n":6,"e":3879,"g":1}],[5,{"n":6,"e":6159}],[4,{"n":6,"e":6169}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6192}],[1,{"n":6,"e":6199}]],"fo":[[6199,[{"t":"Y"}]]],"a":{"m":16,"a":26,"M":74,"n":42}}],[362,{"n":"Poundjé","f":"Maxime","fp":"DL","r":8,"c":3,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Os":25.5,"On":5,"Oa":5.1,"Od":0.22,"pd":5},"p":[[-19,{"n":5,"e":3746,"s":1}],[-14,{"n":5,"e":3790,"s":1}],[3,{"n":5,"e":6179,"s":1}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":5.5,"e":6199}]]}],[376,{"n":"Mendy","f":"Alexandre","fp":"A","r":5,"c":3,"s":{"Og":3,"Os":92,"On":20,"Oa":4.6,"Od":0.99,"pa":20},"p":[[-28,{"n":2.5,"e":3654}],[-22,{"n":3.5,"e":3711}],[-21,{"n":6.5,"e":3718,"g":1}],[-20,{"n":6,"e":3737,"s":1}],[-19,{"n":3.5,"e":3741}],[-18,{"n":4,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":6.5,"e":3771,"g":1}],[-15,{"n":4,"e":3779,"s":1}],[-14,{"n":4.5,"e":3791,"s":1}],[-13,{"n":4.5,"e":3798,"s":1}],[-12,{"n":5,"e":3808}],[-11,{"n":5,"e":3818,"s":1}],[-8,{"n":5.5,"e":3853,"g":1,"s":1}],[-7,{"n":4.5,"e":3859,"s":1}],[-5,{"n":4.5,"e":3880,"s":1}],[-27,{"n":5,"e":3660,"s":1}],[-23,{"n":4,"e":3698}],[-10,{"n":4.5,"e":3828,"s":1}],[-6,{"n":4,"e":3869,"s":1}]]}],[445,{"n":"Kwateng","f":"Enock","fp":"DL","r":9,"c":3,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":67.5,"On":14,"Oa":4.82,"Od":0.95,"pd":11,"pm":3},"p":[[-27,{"n":4,"e":3659}],[-26,{"n":2.5,"e":3674}],[-24,{"n":4.5,"e":3692}],[-23,{"n":5,"e":3698}],[-22,{"n":6,"e":3710}],[-21,{"n":5,"e":3724}],[-16,{"n":5,"e":3770,"s":1}],[-14,{"n":5,"e":3790}],[-8,{"n":4,"e":3849}],[-7,{"n":5,"e":3858}],[-6,{"n":4.5,"e":3869}],[-5,{"n":6.5,"e":3879}],[5,{"n":5,"e":6159,"s":1}],[1,{"n":5.5,"e":6199,"s":1}]]}],[621,{"n":"Koscielny","f":"Laurent","fp":"DC","r":16,"c":3,"s":{"s":36.5,"n":6,"a":6.08,"d":0.74,"Ss":36.5,"Sn":6,"Sa":6.08,"Sd":0.74,"Os":146.5,"On":28,"Oa":5.23,"Od":0.98,"pd":28},"p":[[-28,{"n":4.5,"e":3656}],[-27,{"n":5,"e":3659}],[-26,{"n":4,"e":3674}],[-25,{"n":3.5,"e":3679}],[-24,{"n":5,"e":3692}],[-22,{"n":5.5,"e":3710}],[-21,{"n":5.5,"e":3724}],[-20,{"n":4,"e":3730}],[-19,{"n":5,"e":3746}],[-18,{"n":5,"e":3750}],[-17,{"n":3.5,"e":3759}],[-16,{"n":6,"e":3770}],[-15,{"n":5.5,"e":3785}],[-13,{"n":5.5,"e":3804}],[-12,{"n":6,"e":3810}],[-11,{"n":3,"e":3819}],[-10,{"n":5,"e":3829}],[-9,{"n":5.5,"e":3847}],[-8,{"n":5.5,"e":3849}],[-7,{"n":6,"e":3858}],[-6,{"n":5,"e":3869}],[6,{"n":6,"e":6148}],[-5,{"n":6.5,"e":3879}],[5,{"n":5.5,"e":6159}],[4,{"n":5.5,"e":6169}],[3,{"n":6,"e":6179}],[2,{"n":7.5,"e":6192}],[1,{"n":6,"e":6199}]],"a":{"m":14,"a":20,"M":32,"n":20}}],[1075,{"n":"Maja","f":"Josh","fp":"A","r":14,"c":3,"s":{"g":1,"s":29,"n":6,"a":4.83,"d":0.93,"Sg":1,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.93,"Og":6,"Os":114,"On":23,"Oa":4.96,"Od":1.16,"pa":23},"p":[[-28,{"n":6.5,"e":3656,"g":1}],[-27,{"n":4.5,"e":3659,"s":1}],[-26,{"n":4.5,"e":3674,"s":1}],[-25,{"n":4,"e":3679,"s":1}],[-23,{"n":4,"e":3698,"s":1}],[-18,{"n":3.5,"e":3750}],[-17,{"n":5,"e":3759}],[-16,{"n":9,"e":3770,"g":3}],[-15,{"n":6,"e":3785,"g":1}],[-14,{"n":5,"e":3790}],[-13,{"n":4.5,"e":3804,"s":1}],[-12,{"n":4.5,"e":3810,"s":1}],[-11,{"n":5,"e":3819,"s":1}],[-10,{"n":4.5,"e":3829,"s":1}],[-7,{"n":4.5,"e":3858,"s":1}],[-6,{"n":5,"e":3869,"s":1}],[6,{"n":4,"e":6148}],[-5,{"n":5,"e":3879,"s":1}],[5,{"n":4.5,"e":6159}],[4,{"n":4,"e":6169,"s":1}],[3,{"n":5,"e":6179,"s":1}],[2,{"n":6.5,"e":6192,"g":1}],[1,{"n":5,"e":6199}]],"fo":[[6169,[{"t":"Y"}]]],"a":{"m":10,"a":25,"M":35,"n":17}}],[1175,{"n":"Otávio","f":"","fp":"MD","r":19,"c":3,"s":{"s":30.5,"n":5,"a":6.1,"d":0.65,"Og":2,"Os":155.5,"On":27,"Oa":5.76,"Od":1.17,"pm":27},"p":[[-28,{"n":5.5,"e":3656}],[-27,{"n":5.5,"e":3659}],[-26,{"n":5,"e":3674}],[-25,{"n":5.5,"e":3679}],[-24,{"n":7.5,"e":3692}],[-22,{"n":5.5,"e":3710}],[-21,{"n":4.5,"e":3724}],[-20,{"n":5.5,"e":3730}],[-19,{"n":5.5,"e":3746}],[-18,{"n":5,"e":3750}],[-17,{"n":3,"e":3759}],[-16,{"n":9,"e":3770,"g":2}],[-15,{"n":5.5,"e":3785}],[-13,{"n":7,"e":3804}],[-12,{"n":6.5,"e":3810}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5,"e":3829}],[-9,{"n":6,"e":3847}],[-8,{"n":6,"e":3849}],[-7,{"n":6.5,"e":3858}],[-6,{"n":5.5,"e":3869}],[-5,{"n":6.5,"e":3879}],[5,{"n":6,"e":6159}],[4,{"n":5.5,"e":6169}],[3,{"n":5.5,"e":6179}],[2,{"n":7,"e":6192}],[1,{"n":6.5,"e":6199}]],"fo":[[6169,[{"t":"Y"}]],[6179,[{"t":"Y"}]],[6199,[{"t":"Y"}]]],"a":{"m":18,"a":25,"M":36,"n":16}}],[1261,{"n":"Mandanda","f":"Over","fp":"G","r":1,"c":3}],[1271,{"n":"Poussin","f":"Gaetan","fp":"G","r":7,"c":3}],[1880,{"n":"Pardo","f":"Rubén","fp":"MO","r":7,"c":3,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":39.5,"On":8,"Oa":4.94,"Od":0.32,"pm":8},"p":[[-28,{"n":5.5,"e":3656,"s":1}],[-27,{"n":4.5,"e":3659}],[-26,{"n":4.5,"e":3674,"g":1,"s":1}],[-25,{"n":5,"e":3679,"s":1}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":5,"e":3698,"s":1}],[4,{"n":5,"e":6169,"s":1}],[2,{"n":5,"e":6192,"s":1}]]}],[2142,{"n":"Adli","f":"Yacine","fp":"MO","r":14,"c":3,"s":{"s":21.5,"n":4,"a":5.38,"d":0.95,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.95,"Og":3,"Os":124,"On":24,"Oa":5.17,"Od":1.07,"pm":5,"pa":19},"p":[[-28,{"n":5,"e":3656}],[-26,{"n":5,"e":3674,"s":1}],[-25,{"n":4.5,"e":3679,"s":1}],[-24,{"n":6,"e":3692}],[-23,{"n":4.5,"e":3698,"s":1}],[-22,{"n":4.5,"e":3710,"s":1}],[-21,{"n":4.5,"e":3724,"s":1}],[-19,{"n":4.5,"e":3746}],[-18,{"n":4.5,"e":3750}],[-17,{"n":5.5,"e":3759,"g":1}],[-16,{"n":8,"e":3770}],[-15,{"n":5.5,"e":3785}],[-14,{"n":4.5,"e":3790,"s":1}],[-11,{"n":4.5,"e":3819,"s":1}],[-10,{"n":5,"e":3829}],[-9,{"n":4,"e":3847,"s":1}],[-8,{"n":4,"e":3849}],[-7,{"n":8,"e":3858,"g":2}],[-6,{"n":5.5,"e":3869}],[6,{"n":6,"e":6148}],[-5,{"n":5,"e":3879,"s":1}],[5,{"n":5.5,"e":6159}],[4,{"n":6,"e":6169,"s":1}],[3,{"n":4,"e":6179,"s":1}]],"a":{"m":15,"a":18,"M":24,"n":5}}],[2152,{"n":"Pablo","f":"","fp":"DC","r":7,"c":3,"s":{"s":17,"n":3,"a":5.67,"d":0.29,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.29,"Og":4,"Os":132,"On":25,"Oa":5.28,"Od":0.96,"pd":25},"p":[[-27,{"n":5,"e":3659}],[-26,{"n":5,"e":3674,"g":1}],[-25,{"n":4.5,"e":3679}],[-24,{"n":6,"e":3692}],[-23,{"n":4,"e":3698}],[-22,{"n":6,"e":3710}],[-21,{"n":6,"e":3724}],[-20,{"n":3.5,"e":3730}],[-19,{"n":5.5,"e":3746}],[-18,{"n":5,"e":3750}],[-17,{"n":4,"e":3759}],[-16,{"n":6,"e":3770}],[-15,{"n":6,"e":3785}],[-14,{"n":7.5,"e":3790,"g":1}],[-12,{"n":5.5,"e":3810}],[-11,{"n":4.5,"e":3819}],[-10,{"n":3.5,"e":3829}],[-9,{"n":6,"e":3847,"g":1}],[-8,{"n":4.5,"e":3849}],[-7,{"n":5,"e":3858}],[-6,{"n":5.5,"e":3869,"g":1}],[6,{"n":6,"e":6148}],[-5,{"n":6.5,"e":3879}],[5,{"n":5.5,"e":6159}],[4,{"n":5.5,"e":6169,"s":1}]],"fo":[[6148,[{"t":"Y"}]]],"a":{"m":8,"a":12,"M":18,"n":18}}],[2630,{"n":"Diarra","f":"Ibrahim","fp":"A","r":1,"c":3}],[2673,{"n":"Oudin","f":"Remi","fp":"MO","r":23,"c":3,"s":{"g":1,"s":34.5,"n":6,"a":5.75,"d":1.25,"Sg":1,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":1.25,"Og":4,"Os":157,"On":28,"Oa":5.61,"Od":0.84,"pm":23,"pa":5},"p":[[-19,{"n":5,"e":3745}],[-18,{"n":6.5,"e":3757,"g":1}],[-14,{"n":6,"e":3794}],[-12,{"n":5.5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":6,"e":3836}],[-9,{"n":7,"e":3845}],[-8,{"n":6,"e":3856}],[-7,{"n":5,"e":3865,"s":1}],[-6,{"n":5.5,"e":3875}],[-5,{"n":5,"e":3885}],[-28,{"n":5,"e":3656}],[-27,{"n":5,"e":3659,"s":1}],[-25,{"n":6.5,"e":3679}],[-24,{"n":6.5,"e":3692,"g":1,"s":1}],[-23,{"n":5,"e":3698}],[-22,{"n":5.5,"e":3710}],[-21,{"n":5.5,"e":3724}],[-20,{"n":4,"e":3730,"s":1}],[-17,{"n":6.5,"e":3765,"g":1}],[-15,{"n":5,"e":3785,"s":1}],[-13,{"n":5.5,"e":3805}],[6,{"n":7.5,"e":6148,"g":1}],[5,{"n":4.5,"e":6159,"s":1}],[4,{"n":4.5,"e":6169}],[3,{"n":5.5,"e":6179}],[2,{"n":7,"e":6192}],[1,{"n":5.5,"e":6199,"s":1}]],"fo":[[6192,[{"t":"Y"}]]],"a":{"m":24,"a":36,"M":55,"n":21}}],[2788,{"n":"Kalu","f":"Samuel","fp":"MO","r":8,"c":3,"s":{"g":2,"s":32.5,"n":6,"a":5.42,"d":0.92,"Sg":2,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.92,"Og":3,"Os":110,"On":22,"Oa":5,"Od":0.82,"pm":13,"pa":9},"p":[[-28,{"n":5,"e":3656}],[-27,{"n":5.5,"e":3659}],[-26,{"n":5.5,"e":3674}],[-20,{"n":4,"e":3730,"s":1}],[-19,{"n":5,"e":3746}],[-18,{"n":5,"e":3750,"s":1}],[-16,{"n":4,"e":3770,"s":1}],[-15,{"n":4.5,"e":3785}],[-14,{"n":5.5,"e":3790}],[-13,{"n":4,"e":3804,"s":1}],[-11,{"n":5,"e":3819,"s":1}],[-10,{"n":3.5,"e":3829}],[-8,{"n":5,"e":3849}],[-7,{"n":6.5,"e":3858,"g":1}],[-6,{"n":4.5,"e":3869}],[6,{"n":7,"e":6148,"g":1}],[-5,{"n":5,"e":3879}],[5,{"n":5,"e":6159}],[4,{"n":6,"e":6169,"g":1,"s":1}],[3,{"n":5,"e":6179}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":4.5,"e":6199,"s":1}]],"fo":[[6148,[{"t":"Y"}]]]}],[2792,{"n":"Basic","f":"Toma","fp":"MD","r":15,"c":3,"s":{"g":2,"s":36,"n":6,"a":6,"d":0.89,"Sg":2,"Ss":36,"Sn":6,"Sa":6,"Sd":0.89,"Og":3,"Os":106,"On":19,"Oa":5.58,"Od":0.8,"pm":18,"pa":1},"p":[[-27,{"n":6,"e":3659}],[-26,{"n":6,"e":3674}],[-25,{"n":5,"e":3679}],[-24,{"n":6.5,"e":3692,"g":1}],[-23,{"n":6,"e":3698}],[-22,{"n":4,"e":3710}],[-21,{"n":5,"e":3724}],[-20,{"n":4.5,"e":3730}],[-19,{"n":5.5,"e":3746}],[-16,{"n":5.5,"e":3770,"s":1}],[-14,{"n":6,"e":3790}],[-12,{"n":5,"e":3810,"s":1}],[-9,{"n":5,"e":3847,"s":1}],[6,{"n":7,"e":6148,"g":1}],[5,{"n":6,"e":6159}],[4,{"n":5,"e":6169}],[3,{"n":5,"e":6179}],[2,{"n":7,"e":6192,"g":1}],[1,{"n":6,"e":6199}]],"fo":[[6169,[{"t":"I"}]],[6192,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":21,"n":10}}],[2962,{"n":"Bessile","f":"Loic","fp":"DC","r":1,"c":3}],[3523,{"n":"Lottin","f":"Albert-Nicolas","fp":"MD","r":1,"c":3}],[3754,{"n":"Lauray","f":"Alexandre","fp":"DC","r":2,"c":3}],[3792,{"n":"Hwang Ui-Jo","f":"","fp":"A","r":15,"c":3,"s":{"s":29.5,"n":6,"a":4.92,"d":0.86,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.86,"Og":5,"Os":134,"On":26,"Oa":5.15,"Od":1.02,"pm":9,"pa":17},"p":[[-28,{"n":4.5,"e":3656,"s":1}],[-27,{"n":4.5,"e":3659}],[-26,{"n":5.5,"e":3674,"g":1}],[-25,{"n":7,"e":3679,"g":1}],[-24,{"n":4.5,"e":3692}],[-23,{"n":6,"e":3698,"g":1}],[-22,{"n":5,"e":3710}],[-21,{"n":5.5,"e":3724}],[-20,{"n":4.5,"e":3730,"s":1}],[-18,{"n":4,"e":3750,"s":1}],[-17,{"n":4.5,"e":3759,"s":1}],[-14,{"n":5,"e":3790}],[-13,{"n":5,"e":3804}],[-12,{"n":7.5,"e":3810,"g":1}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5,"e":3829,"s":1}],[-9,{"n":7,"e":3847,"g":1}],[-8,{"n":5,"e":3849}],[-6,{"n":4.5,"e":3869}],[6,{"n":4.5,"e":6148,"s":1}],[-5,{"n":6.5,"e":3879}],[5,{"n":5,"e":6159,"s":1}],[4,{"n":4.5,"e":6169}],[3,{"n":4,"e":6179}],[2,{"n":6.5,"e":6192}],[1,{"n":5,"e":6199}]],"a":{"m":16,"a":26,"M":55,"n":17}}],[3816,{"n":"Benito","f":"Loris","fp":"DL","r":12,"c":3,"s":{"s":27,"n":5,"a":5.4,"d":0.65,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.65,"Oao":1,"Os":116,"On":24,"Oa":4.83,"Od":0.76,"pd":14,"pm":10},"p":[[-28,{"n":5,"e":3656}],[-26,{"n":4,"e":3674}],[-25,{"n":4,"e":3679}],[-24,{"n":5,"e":3692}],[-23,{"n":6,"e":3698,"a":1}],[-21,{"n":5,"e":3724}],[-20,{"n":4,"e":3730}],[-19,{"n":4.5,"e":3746}],[-18,{"n":5.5,"e":3750}],[-17,{"n":3.5,"e":3759}],[-15,{"n":5,"e":3785}],[-14,{"n":4,"e":3790}],[-13,{"n":4,"e":3804}],[-12,{"n":5.5,"e":3810}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5.5,"e":3829}],[-9,{"n":5,"e":3847}],[-8,{"n":5,"e":3849,"s":1}],[-7,{"n":5,"e":3858,"s":1}],[6,{"n":6,"e":6148}],[5,{"n":6,"e":6159}],[4,{"n":4.5,"e":6169}],[3,{"n":5,"e":6179}],[2,{"n":5.5,"e":6192}]],"fo":[[6169,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":16,"n":11}}],[5453,{"n":"Cardoso","f":"David","fp":"DC","r":1,"c":3}],[5454,{"n":"Sow","f":"Ismael","fp":"DL","r":1,"c":3}],[5455,{"n":"Rouyard","f":"Davy","fp":"G","r":1,"c":3}],[6347,{"n":"Zerkane","f":"Mehdi","fp":"MO","r":3,"c":3,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Ss":5,"Sn":1,"Sa":5,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pm":2},"p":[[6,{"n":5,"e":6148,"s":1}],[1,{"n":4,"e":6199}]],"fo":[[6199,[{"t":"R"}]]]}],[6905,{"n":"Mara","f":"Sékou","fp":"A","r":1,"c":3}],[7365,{"n":"Bakwa","f":"Dilane","fp":"A","r":4,"c":3,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":6,"On":1,"Oa":6,"pa":1},"p":[[6,{"n":6,"e":6148,"s":1}]]}],[85,{"n":"Mounie","f":"Steve","fp":"A","r":12,"c":75,"s":{"g":2,"s":17.5,"n":3,"a":5.83,"d":1.04,"Sg":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":2,"Os":17.5,"On":3,"Oa":5.83,"Od":1.04,"pa":3},"p":[[6,{"n":5,"e":6149}],[4,{"n":7,"e":6168,"g":1}],[5,{"n":5.5,"e":6158,"g":1}]],"fo":[[6149,[{"t":"Y"}]]],"a":{"m":13,"a":18,"M":36,"n":18}}],[106,{"n":"Baal","f":"Ludovic","fp":"DL","r":7,"c":75,"s":{"s":3.5,"n":1,"a":3.5,"Os":56.5,"On":11,"Oa":5.14,"Od":0.87,"pd":11},"p":[[2,{"n":3.5,"e":6197}],[-24,{"n":5,"e":3696,"s":1}],[-23,{"n":4.5,"e":3698}],[-20,{"n":6,"e":3737}],[-19,{"n":4.5,"e":3741}],[-18,{"n":5.5,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":5.5,"e":3771}],[-12,{"n":5,"e":3808}],[-11,{"n":6,"e":3818}],[-10,{"n":6.5,"e":3828}]]}],[227,{"n":"Lasne","f":"Paul","fp":"MD","r":13,"c":75,"s":{"s":11,"n":2,"a":5.5,"d":1.41,"Ss":11,"Sn":2,"Sa":5.5,"Sd":1.41,"Og":2,"Os":98.5,"On":18,"Oa":5.47,"Od":1.01,"pm":18},"p":[[-26,{"n":5,"e":3673,"s":1}],[-27,{"n":4.5,"e":3660}],[-25,{"n":7,"e":3680,"g":1}],[-24,{"n":5,"e":3696}],[-20,{"n":5.5,"e":3737}],[-19,{"n":4.5,"e":3741}],[-18,{"n":6.5,"e":3751}],[-17,{"n":5,"e":3758}],[-16,{"n":6,"e":3771}],[-15,{"n":4.5,"e":3779}],[-12,{"n":4.5,"e":3808}],[-11,{"n":8,"e":3818,"g":1}],[-10,{"n":6,"e":3828}],[-8,{"n":5,"e":3853}],[-7,{"n":5.5,"e":3859,"s":1}],[6,{"n":6.5,"e":6149}],[-5,{"n":5,"e":3880,"s":1}],[5,{"n":4.5,"e":6158,"s":1}]],"fo":[[6149,[{"t":"Y"}]]]}],[310,{"n":"Philippoteaux","f":"Romain","fp":"MO","r":23,"c":75,"s":{"g":1,"s":22,"n":4,"a":5.5,"d":1.73,"Og":5,"Os":139,"On":26,"Oa":5.35,"Od":1.02,"pm":23,"pa":3},"p":[[3,{"n":4,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":8,"e":6206,"g":1}],[-13,{"n":5.5,"e":3807,"g":1}],[-10,{"n":6,"e":3835}],[-28,{"n":5,"e":3652,"s":1}],[-27,{"n":4,"e":3665}],[-26,{"n":5,"e":3675,"s":1}],[-25,{"n":5,"e":3685}],[-24,{"n":7,"e":3694,"g":1}],[-23,{"n":6,"e":3705}],[-22,{"n":7,"e":3714,"g":1}],[-21,{"n":5,"e":3727}],[-20,{"n":5.5,"e":3733}],[-19,{"n":5,"e":3739}],[-18,{"n":5,"e":3755}],[-17,{"n":4,"e":3764}],[-15,{"n":4.5,"e":3784}],[-14,{"n":4,"e":3789}],[-11,{"n":5,"e":3824}],[-9,{"n":6,"e":3841}],[-8,{"n":5.5,"e":3855}],[-7,{"n":5,"e":3863,"s":1}],[-6,{"n":7,"e":3874,"g":1}],[-5,{"n":5,"e":3881}],[5,{"n":5,"e":6158,"s":1}]],"a":{"m":22,"a":29,"M":41,"n":41}}],[368,{"n":"Pierre-Gabriel","f":"Ronaël","fp":"DL","r":10,"c":75,"s":{"s":22,"n":5,"a":4.4,"d":0.96,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Os":22,"On":5,"Oa":4.4,"Od":0.96,"pd":5},"p":[[3,{"n":5,"e":6180}],[6,{"n":5.5,"e":6149}],[5,{"n":4.5,"e":6158}],[2,{"n":4,"e":6197}],[1,{"n":3,"e":6206}]],"fo":[[6180,[{"t":"I"}]],[6197,[{"t":"Y"}]],[6206,[{"t":"Y"}]]]}],[552,{"n":"Perraud","f":"Romain","fp":"DL","r":11,"c":75,"s":{"g":2,"s":30.5,"n":5,"a":6.1,"d":1.78,"Sg":2,"Ss":30.5,"Sn":5,"Sa":6.1,"Sd":1.78,"Og":2,"Os":105,"On":21,"Oa":5,"Od":1.2,"pd":21},"p":[[-9,{"n":4,"e":3839}],[-28,{"n":4.5,"e":3654}],[-27,{"n":5,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":6,"e":3680}],[-24,{"n":5,"e":3696}],[-22,{"n":3.5,"e":3711}],[-21,{"n":6,"e":3718}],[-20,{"n":5,"e":3737,"s":1}],[-15,{"n":4,"e":3779}],[-14,{"n":5,"e":3791}],[-13,{"n":5,"e":3798}],[-8,{"n":3.5,"e":3853}],[-7,{"n":4,"e":3859}],[-6,{"n":4.5,"e":3869}],[6,{"n":6.5,"e":6149}],[-5,{"n":5,"e":3880}],[5,{"n":4.5,"e":6158}],[4,{"n":7.5,"e":6168,"g":1}],[3,{"n":8,"e":6180,"g":1}],[2,{"n":4,"e":6197}]],"a":{"m":12,"a":16,"M":21,"n":8}}],[564,{"n":"Magnetti","f":"Hugo","fp":"MD","r":6,"c":75,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Os":50.5,"On":10,"Oa":5.05,"Od":0.44,"pm":10},"p":[[-28,{"n":5,"e":3654,"s":1}],[-26,{"n":5.5,"e":3673,"s":1}],[-25,{"n":5,"e":3680,"s":1}],[-24,{"n":5,"e":3696,"s":1}],[-22,{"n":4.5,"e":3711}],[-21,{"n":6,"e":3718}],[-19,{"n":5,"e":3741,"s":1}],[-14,{"n":5,"e":3791,"s":1}],[6,{"n":5,"e":6149,"s":1}],[2,{"n":4.5,"e":6197,"s":1}]],"fo":[[6197,[{"t":"Y"}]]]}],[580,{"n":"Cardona","f":"Irvin","fp":"A","r":12,"c":75,"s":{"g":1,"s":22.5,"n":5,"a":4.5,"d":1.5,"Og":7,"Os":120,"On":24,"Oa":5,"Od":1.35,"pm":5,"pa":19},"p":[[-28,{"n":4.5,"e":3654,"s":1}],[-27,{"n":4,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":6.5,"e":3680,"g":1}],[-24,{"n":5.5,"e":3696}],[-23,{"n":5,"e":3698}],[-22,{"n":4,"e":3711}],[-21,{"n":6,"e":3718,"g":1}],[-20,{"n":7.5,"e":3737,"g":1}],[-19,{"n":3,"e":3741}],[-18,{"n":5,"e":3751}],[-17,{"n":3,"e":3758}],[-16,{"n":7,"e":3771}],[-15,{"n":6,"e":3779,"g":1}],[-14,{"n":7,"e":3791,"g":1}],[-13,{"n":4.5,"e":3798}],[-12,{"n":4.5,"e":3808,"s":1}],[-10,{"n":6,"e":3828,"g":1,"s":1}],[-9,{"n":4,"e":3839,"s":1}],[5,{"n":4,"e":6158,"s":1}],[4,{"n":6,"e":6168,"s":1}],[3,{"n":6,"e":6180,"g":1,"s":1}],[2,{"n":4,"e":6197}],[1,{"n":2.5,"e":6206}]],"fo":[[6158,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":26,"n":18}}],[1426,{"n":"Herelle","f":"Christophe","fp":"DC","r":16,"c":75,"s":{"ao":1,"s":15,"n":3,"a":5,"d":0.87,"Og":2,"Oao":1,"Os":76.5,"On":15,"Oa":5.1,"Od":1.11,"pd":15},"p":[[-28,{"n":5,"e":3653,"s":1}],[-25,{"n":7.5,"e":3687,"g":1}],[-23,{"n":5,"e":3701}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3725}],[-14,{"n":3,"e":3793}],[-10,{"n":4,"e":3834}],[-26,{"n":5,"e":3673}],[-24,{"n":5,"e":3694,"s":1}],[-20,{"n":5.5,"e":3729}],[-13,{"n":4.5,"e":3804}],[-12,{"n":7,"e":3814,"g":1}],[5,{"n":4.5,"e":6158}],[4,{"n":4.5,"e":6168,"a":1}],[3,{"n":6,"e":6180}]],"a":{"m":17,"a":23,"M":32,"n":10}}],[2145,{"n":"Faivre","f":"Romain","fp":"MO","r":13,"c":75,"s":{"g":2,"s":37,"n":6,"a":6.17,"d":0.98,"Sg":2,"Ss":37,"Sn":6,"Sa":6.17,"Sd":0.98,"Og":2,"Os":37,"On":6,"Oa":6.17,"Od":0.98,"pm":6},"p":[[6,{"n":7.5,"e":6149,"g":1}],[5,{"n":5.5,"e":6158}],[4,{"n":5.5,"e":6168}],[3,{"n":6.5,"e":6180}],[2,{"n":7,"e":6197,"g":1}],[1,{"n":5,"e":6206}]],"a":{"m":5,"a":15,"M":21,"n":14}}],[2311,{"n":"Cibois","f":"Sebastien","fp":"G","r":6,"c":75}],[2671,{"n":"Diallo","f":"Ibrahima","fp":"MD","r":10,"c":75,"s":{"s":24.5,"n":5,"a":4.9,"d":1.39,"Os":103,"On":20,"Oa":5.15,"Od":1.06,"pm":20},"p":[[-28,{"n":4,"e":3654}],[-20,{"n":4.5,"e":3737}],[-19,{"n":4,"e":3741}],[-18,{"n":6,"e":3751}],[-16,{"n":7,"e":3771}],[-15,{"n":5.5,"e":3779}],[-14,{"n":6,"e":3791}],[-13,{"n":5.5,"e":3798}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5,"e":3818,"s":1}],[-9,{"n":6,"e":3839}],[-8,{"n":5,"e":3853}],[-7,{"n":3.5,"e":3859}],[-6,{"n":6,"e":3869}],[-5,{"n":6,"e":3880}],[5,{"n":5.5,"e":6158}],[4,{"n":4.5,"e":6168}],[3,{"n":7,"e":6180}],[2,{"n":4,"e":6197}],[1,{"n":3.5,"e":6206}]],"fo":[[6158,[{"t":"Y"}]]]}],[2963,{"n":"Honorat","f":"Franck","fp":"MO","r":10,"c":75,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":1.1,"Sg":1,"Ss":16,"Sn":3,"Sa":5.33,"Sd":1.44,"Og":1,"Os":87.5,"On":17,"Oa":5.15,"Od":0.93,"pm":11,"pa":6},"p":[[-20,{"n":4,"e":3736}],[-14,{"n":5,"e":3796}],[-13,{"n":6.5,"e":3803}],[-27,{"n":4.5,"e":3661}],[-26,{"n":6,"e":3676}],[-25,{"n":4.5,"e":3680,"s":1}],[-24,{"n":5,"e":3693,"s":1}],[-23,{"n":5,"e":3702,"s":1}],[-22,{"n":5,"e":3712}],[-21,{"n":4.5,"e":3727}],[-17,{"n":4.5,"e":3765}],[-16,{"n":7,"e":3776}],[6,{"n":4.5,"e":6149,"s":1}],[5,{"n":4.5,"e":6158,"s":1}],[4,{"n":7,"e":6168,"g":1,"s":1}],[2,{"n":5.5,"e":6197}],[1,{"n":4.5,"e":6206}]]}],[3779,{"n":"N'Goma","f":"Ferris","fp":"MD","r":5,"c":75,"s":{"Og":1,"Os":16,"On":3,"Oa":5.33,"Od":1.04,"pm":3},"p":[[-16,{"n":6.5,"e":3771,"g":1,"s":1}],[-14,{"n":5,"e":3791,"s":1}],[-12,{"n":4.5,"e":3808,"s":1}]]}],[3785,{"n":"Larsonneur","f":"Gautier","fp":"G","r":23,"c":75,"s":{"s":27,"n":6,"a":4.5,"d":1.48,"Ss":27,"Sn":6,"Sa":4.5,"Sd":1.48,"Os":163.5,"On":29,"Oa":5.64,"Od":1.36,"pg":29},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":4.5,"e":3660}],[-26,{"n":5.5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":6,"e":3696}],[-23,{"n":6,"e":3698}],[-22,{"n":4,"e":3711}],[-21,{"n":6,"e":3718}],[-20,{"n":5,"e":3737}],[-19,{"n":4,"e":3741}],[-18,{"n":8,"e":3751}],[-17,{"n":8.5,"e":3758}],[-16,{"n":7,"e":3771}],[-15,{"n":6,"e":3779}],[-14,{"n":6,"e":3791}],[-13,{"n":6,"e":3798}],[-12,{"n":6,"e":3808}],[-11,{"n":7,"e":3818}],[-10,{"n":8,"e":3828}],[-8,{"n":6.5,"e":3853}],[-7,{"n":5,"e":3859}],[-6,{"n":5,"e":3869}],[6,{"n":6,"e":6149}],[-5,{"n":6,"e":3880}],[5,{"n":4,"e":6158}],[4,{"n":4,"e":6168}],[3,{"n":6.5,"e":6180}],[2,{"n":4,"e":6197}],[1,{"n":2.5,"e":6206}]],"a":{"m":26,"a":32,"M":36,"n":21}}],[3795,{"n":"Belkebla","f":"Haris","fp":"MD","r":13,"c":75,"s":{"s":26.5,"n":6,"a":4.42,"d":0.66,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":0.66,"Os":128.5,"On":25,"Oa":5.14,"Od":0.91,"pm":25},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":5,"e":3660}],[-26,{"n":6,"e":3673}],[-25,{"n":6,"e":3680}],[-24,{"n":5.5,"e":3696}],[-23,{"n":6.5,"e":3698}],[-22,{"n":5,"e":3711,"s":1}],[-17,{"n":5.5,"e":3758}],[-16,{"n":5,"e":3771,"s":1}],[-15,{"n":4.5,"e":3779}],[-13,{"n":6,"e":3798}],[-12,{"n":5.5,"e":3808}],[-11,{"n":6,"e":3818}],[-10,{"n":6,"e":3828}],[-9,{"n":6.5,"e":3839}],[-8,{"n":3.5,"e":3853}],[-7,{"n":3.5,"e":3859}],[-6,{"n":6,"e":3869}],[6,{"n":5.5,"e":6149}],[-5,{"n":5,"e":3880}],[5,{"n":4.5,"e":6158}],[4,{"n":4.5,"e":6168}],[3,{"n":4.5,"e":6180}],[2,{"n":4,"e":6197}],[1,{"n":3.5,"e":6206}]],"fo":[[6180,[{"t":"I"}]],[6149,[{"t":"Y"}]],[6168,[{"t":"Y"}]]]}],[3801,{"n":"Chardonnet","f":"Brendan","fp":"DC","r":8,"c":75,"s":{"s":19.5,"n":4,"a":4.88,"d":1.03,"Ss":6,"Sn":1,"Sa":6,"Os":67.5,"On":14,"Oa":4.82,"Od":0.87,"pd":14},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":5.5,"e":3660}],[-26,{"n":4,"e":3673}],[-25,{"n":4.5,"e":3680}],[-24,{"n":6,"e":3696}],[-23,{"n":5.5,"e":3698,"s":1}],[-21,{"n":5,"e":3718,"s":1}],[-19,{"n":3,"e":3741}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5,"e":3818,"s":1}],[6,{"n":6,"e":6149}],[4,{"n":5,"e":6168,"s":1}],[3,{"n":5,"e":6180,"s":1}],[1,{"n":3.5,"e":6206}]],"fo":[[6206,[{"t":"R"}]]]}],[3810,{"n":"Bain","f":"Denys","fp":"DC","r":7,"c":75,"s":{"Og":1,"Os":63,"On":12,"Oa":5.25,"Od":0.92,"pd":12},"p":[[-18,{"n":5.5,"e":3751,"s":1}],[-17,{"n":5.5,"e":3758,"s":1}],[-15,{"n":4.5,"e":3779}],[-14,{"n":5,"e":3791}],[-13,{"n":4.5,"e":3798}],[-11,{"n":7,"e":3818,"g":1}],[-10,{"n":6,"e":3828}],[-9,{"n":6,"e":3839}],[-8,{"n":4,"e":3853}],[-7,{"n":5,"e":3859}],[-6,{"n":4,"e":3869}],[-5,{"n":6,"e":3880}]]}],[3811,{"n":"Battocchio","f":"Cristian","fp":"MO","r":9,"c":75,"s":{"s":20,"n":4,"a":5,"d":0.71,"Og":3,"Os":127,"On":24,"Oa":5.29,"Od":0.99,"pm":24},"p":[[-28,{"n":4.5,"e":3654}],[-27,{"n":4.5,"e":3660}],[-26,{"n":5.5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":5.5,"e":3696}],[-23,{"n":4,"e":3698}],[-22,{"n":4.5,"e":3711}],[-21,{"n":6.5,"e":3718}],[-20,{"n":6,"e":3737}],[-19,{"n":5,"e":3741}],[-18,{"n":5,"e":3751}],[-17,{"n":5.5,"e":3758}],[-16,{"n":9,"e":3771,"g":3}],[-15,{"n":5,"e":3779,"s":1}],[-11,{"n":6,"e":3818}],[-10,{"n":5.5,"e":3828}],[-9,{"n":5,"e":3839,"s":1}],[-7,{"n":5,"e":3859,"s":1}],[-6,{"n":5,"e":3869,"s":1}],[-5,{"n":5,"e":3880,"s":1}],[5,{"n":5,"e":6158,"s":1}],[4,{"n":4.5,"e":6168,"s":1}],[3,{"n":6,"e":6180,"s":1}],[1,{"n":4.5,"e":6206,"s":1}]]}],[3818,{"n":"Charbonnier","f":"Gaëtan","fp":"A","r":13,"c":75,"s":{"g":2,"s":35.5,"n":6,"a":5.92,"d":1.11,"Sg":2,"Ss":35.5,"Sn":6,"Sa":5.92,"Sd":1.11,"Og":5,"Os":145,"On":28,"Oa":5.18,"Od":1.2,"pm":7,"pa":21},"p":[[-28,{"n":4,"e":3654,"s":1}],[-27,{"n":5,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":6,"e":3680,"g":1}],[-24,{"n":4.5,"e":3696}],[-23,{"n":4.5,"e":3698,"s":1}],[-22,{"n":4,"e":3711}],[-21,{"n":5.5,"e":3718}],[-20,{"n":8.5,"e":3737,"g":2}],[-18,{"n":3.5,"e":3751}],[-17,{"n":4.5,"e":3758,"s":1}],[-16,{"n":6,"e":3771}],[-15,{"n":5.5,"e":3779}],[-14,{"n":5.5,"e":3791}],[-13,{"n":4.5,"e":3798}],[-11,{"n":6,"e":3818}],[-10,{"n":5,"e":3828}],[-9,{"n":5.5,"e":3839}],[-8,{"n":2.5,"e":3853}],[-7,{"n":5,"e":3859}],[-6,{"n":4.5,"e":3869}],[6,{"n":6,"e":6149}],[-5,{"n":5,"e":3880}],[5,{"n":6,"e":6158,"g":1}],[4,{"n":5.5,"e":6168}],[3,{"n":7,"e":6180}],[2,{"n":7,"e":6197,"g":1}],[1,{"n":4,"e":6206,"s":1}]],"a":{"m":14,"a":23,"M":35,"n":26}}],[3819,{"n":"Faussurier","f":"Julien","fp":"DL","r":11,"c":75,"s":{"s":21,"n":4,"a":5.25,"d":1.55,"Og":1,"Os":109,"On":22,"Oa":4.95,"Od":1.01,"pd":22},"p":[[-23,{"n":4.5,"e":3698}],[-22,{"n":3,"e":3711}],[-21,{"n":5,"e":3718}],[-20,{"n":5,"e":3737}],[-19,{"n":4,"e":3741}],[-18,{"n":4.5,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":5,"e":3771}],[-15,{"n":4.5,"e":3779}],[-14,{"n":5,"e":3791}],[-13,{"n":4.5,"e":3798}],[-11,{"n":6,"e":3818}],[-10,{"n":4.5,"e":3828}],[-9,{"n":7.5,"e":3839,"g":1}],[-8,{"n":5,"e":3853}],[-7,{"n":5,"e":3859}],[-6,{"n":5,"e":3869}],[-5,{"n":5.5,"e":3880}],[4,{"n":6.5,"e":6168}],[3,{"n":5.5,"e":6180,"s":1}],[2,{"n":6,"e":6197,"s":1}],[1,{"n":3,"e":6206}]],"fo":[[6168,[{"t":"I"}]],[6206,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":21,"n":5}}],[5002,{"n":"Duverne","f":"Jean-Kevin","fp":"DC","r":10,"c":75,"s":{"s":25.5,"n":6,"a":4.25,"d":1.51,"Ss":25.5,"Sn":6,"Sa":4.25,"Sd":1.51,"Os":92.5,"On":20,"Oa":4.63,"Od":1.09,"pd":20},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":4,"e":3660}],[-26,{"n":5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":5,"e":3696}],[-23,{"n":5.5,"e":3698}],[-22,{"n":3,"e":3711}],[-21,{"n":5,"e":3718}],[-20,{"n":4.5,"e":3737}],[-19,{"n":3.5,"e":3741}],[-18,{"n":5.5,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":6.5,"e":3771}],[-10,{"n":5,"e":3828,"s":1}],[6,{"n":5.5,"e":6149}],[5,{"n":3.5,"e":6158}],[4,{"n":5,"e":6168}],[3,{"n":6,"e":6180}],[2,{"n":3.5,"e":6197}],[1,{"n":2,"e":6206}]],"fo":[[6206,[{"t":"Y"}]]]}],[6008,{"n":"M'Bock","f":"Hianga'a","fp":"MD","r":8,"c":75,"s":{"s":20,"n":4,"a":5,"d":0.71,"Og":1,"Os":31,"On":6,"Oa":5.17,"Od":0.88,"pm":6},"p":[[-20,{"n":6.5,"e":3737,"g":1,"s":1}],[-14,{"n":4.5,"e":3791}],[4,{"n":4.5,"e":6168,"s":1}],[3,{"n":6,"e":6180,"s":1}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":5,"e":6206,"s":1}]],"fo":[[6168,[{"t":"Y"}]]]}],[6807,{"n":"Heriberto Tavares","f":"","fp":"A","r":7,"c":75,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":4,"e":6206,"s":1}]]}],[6856,{"n":"Le Douaron","f":"Jeremy","fp":"A","r":6,"c":75,"s":{"s":30,"n":6,"a":5,"d":1,"Ss":30,"Sn":6,"Sa":5,"Sd":1,"Os":30,"On":6,"Oa":5,"Od":1,"pm":5,"pa":1},"p":[[6,{"n":5,"e":6149}],[5,{"n":6.5,"e":6158}],[4,{"n":5,"e":6168}],[3,{"n":5.5,"e":6180}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":3.5,"e":6206}]]}],[6857,{"n":"Dioh","f":"Idrissa","fp":"MD","r":1,"c":75}],[6858,{"n":"Said","f":"Rafiki","fp":"A","r":1,"c":75}],[6920,{"n":"Benvindo","f":"Killian","fp":"MO","r":1,"c":75}],[7140,{"n":"Bangoura","f":"Cheick Djibril","fp":"MO","r":6,"c":75}],[167,{"n":"Marié","f":"Jordan","fp":"MD","r":9,"c":7,"s":{"s":22.5,"n":5,"a":4.5,"d":0.35,"Os":56.5,"On":12,"Oa":4.71,"Od":0.45,"pm":12},"p":[[5,{"n":5,"e":6160,"s":1}],[4,{"n":4.5,"e":6177}],[2,{"n":4,"e":6188}],[-26,{"n":5.5,"e":3669,"s":1}],[-24,{"n":5,"e":3690,"s":1}],[-21,{"n":4.5,"e":3723,"s":1}],[-20,{"n":5,"e":3731,"s":1}],[-25,{"n":5,"e":3679,"s":1}],[-23,{"n":4,"e":3705,"s":1}],[-22,{"n":5,"e":3711,"s":1}],[3,{"n":4.5,"e":6180}],[1,{"n":4.5,"e":6200}]]}],[187,{"n":"Sammaritano","f":"Frédéric","fp":"MO","r":7,"c":7,"s":{"s":29.5,"n":6,"a":4.92,"d":0.38,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.38,"Og":1,"Os":63,"On":12,"Oa":5.25,"Od":0.78,"pm":12},"p":[[-28,{"n":6.5,"e":3649}],[-27,{"n":4.5,"e":3666,"s":1}],[-14,{"n":7,"e":3792,"g":1,"s":1}],[-10,{"n":5,"e":3830,"s":1}],[-26,{"n":5,"e":3669}],[-22,{"n":5.5,"e":3711}],[6,{"n":5,"e":6148,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4.5,"e":6177}],[3,{"n":5,"e":6180,"s":1}],[2,{"n":5.5,"e":6188,"s":1}],[1,{"n":4.5,"e":6200,"s":1}]],"fo":[[6177,[{"t":"Y"}]],[6188,[{"t":"Y"}]]]}],[192,{"n":"Benzia","f":"Yassine","fp":"MO","r":8,"c":7,"s":{"Os":15.5,"On":3,"Oa":5.17,"Od":0.58,"pm":3},"p":[[-25,{"n":4.5,"e":3679}],[-24,{"n":5.5,"e":3690}],[-23,{"n":5.5,"e":3705,"s":1}]]}],[252,{"n":"Chafik","f":"Fouad","fp":"DL","r":11,"c":7,"s":{"s":22,"n":5,"a":4.4,"d":1.08,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.08,"Os":113,"On":23,"Oa":4.91,"Od":0.89,"pd":23},"p":[[-19,{"n":5,"e":3738}],[-18,{"n":5.5,"e":3748}],[-17,{"n":5,"e":3762}],[-16,{"n":4.5,"e":3772}],[-15,{"n":4.5,"e":3778}],[-12,{"n":4.5,"e":3811}],[-7,{"n":5.5,"e":3860}],[-6,{"n":5,"e":3873,"s":1}],[-28,{"n":5,"e":3649}],[-26,{"n":5,"e":3669}],[-23,{"n":4,"e":3705}],[-22,{"n":7.5,"e":3711}],[-21,{"n":4.5,"e":3723}],[-20,{"n":6,"e":3731}],[-14,{"n":5.5,"e":3792}],[-11,{"n":4,"e":3818}],[-8,{"n":5,"e":3856}],[6,{"n":3,"e":6148}],[-5,{"n":5,"e":3881,"s":1}],[5,{"n":6,"e":6160}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6180}],[2,{"n":4.5,"e":6188}]],"fo":[[6160,[{"t":"Y"}]]]}],[278,{"n":"Amalfitano","f":"Romain","fp":"MD","r":13,"c":7,"s":{"s":9,"n":2,"a":4.5,"d":1.41,"Og":1,"Os":124,"On":24,"Oa":5.17,"Od":1.02,"pd":1,"pm":23},"p":[[-13,{"n":4.5,"e":3801}],[-9,{"n":4.5,"e":3840,"s":1}],[-28,{"n":5.5,"e":3649,"s":1}],[-27,{"n":4.5,"e":3666,"s":1}],[-26,{"n":4.5,"e":3669}],[-25,{"n":4.5,"e":3679,"s":1}],[-24,{"n":5,"e":3690}],[-23,{"n":3.5,"e":3705}],[-22,{"n":8,"e":3711}],[-21,{"n":5,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":6.5,"e":3738,"g":1}],[-18,{"n":6,"e":3748}],[-17,{"n":4.5,"e":3762}],[-16,{"n":5.5,"e":3772}],[-15,{"n":4.5,"e":3778,"s":1}],[-14,{"n":6,"e":3792}],[-12,{"n":5.5,"e":3811,"s":1}],[-10,{"n":5,"e":3830,"s":1}],[-7,{"n":5,"e":3860}],[-6,{"n":5,"e":3873,"s":1}],[-5,{"n":5,"e":3881}],[2,{"n":3.5,"e":6188}],[1,{"n":5.5,"e":6200,"s":1}]]}],[330,{"n":"Lautoa","f":"Wesley","fp":"DC","r":11,"c":7,"s":{"ao":1,"s":26,"n":6,"a":4.33,"d":0.88,"Sao":1,"Ss":26,"Sn":6,"Sa":4.33,"Sd":0.88,"Oao":1,"Os":131.5,"On":26,"Oa":5.06,"Od":0.8,"pd":15,"pm":11},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":4,"e":3666}],[-25,{"n":5.5,"e":3679}],[-24,{"n":4,"e":3690}],[-23,{"n":5,"e":3705}],[-22,{"n":6,"e":3711}],[-21,{"n":4.5,"e":3723}],[-20,{"n":6,"e":3731}],[-19,{"n":6,"e":3738}],[-16,{"n":5.5,"e":3772}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5,"e":3792}],[-13,{"n":4.5,"e":3801}],[-12,{"n":6,"e":3811}],[-11,{"n":5,"e":3818}],[-10,{"n":5,"e":3830}],[-9,{"n":5,"e":3840}],[-8,{"n":5.5,"e":3856}],[-7,{"n":5.5,"e":3860,"s":1}],[-6,{"n":6,"e":3873}],[6,{"n":4.5,"e":6148,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4,"e":6177,"s":1}],[3,{"n":4,"e":6180,"s":1}],[2,{"n":3,"e":6188,"a":1}],[1,{"n":5.5,"e":6200}]]}],[905,{"n":"Ndong","f":"Didier","fp":"MD","r":15,"c":7,"s":{"s":29.5,"n":6,"a":4.92,"d":0.58,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.58,"Os":157.5,"On":29,"Oa":5.43,"Od":0.75,"pd":2,"pm":27},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":4,"e":3666}],[-26,{"n":6,"e":3669}],[-25,{"n":6,"e":3679}],[-24,{"n":5.5,"e":3690}],[-23,{"n":4,"e":3705}],[-22,{"n":7,"e":3711}],[-21,{"n":5,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":5,"e":3738}],[-18,{"n":5.5,"e":3748}],[-17,{"n":5,"e":3762}],[-15,{"n":5.5,"e":3778}],[-14,{"n":6,"e":3792}],[-13,{"n":5.5,"e":3801}],[-12,{"n":5,"e":3811}],[-11,{"n":5,"e":3818}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":5.5,"e":3856}],[-7,{"n":6,"e":3860}],[-6,{"n":6,"e":3873}],[6,{"n":4,"e":6148}],[-5,{"n":6,"e":3881}],[5,{"n":5,"e":6160}],[4,{"n":5.5,"e":6177}],[3,{"n":4.5,"e":6180}],[2,{"n":5,"e":6188}],[1,{"n":5.5,"e":6200}]],"fo":[[6180,[{"t":"Y"}]],[6188,[{"t":"Y"}]]]}],[1527,{"n":"Pape Cheikh","f":"","fp":"MD","r":9,"c":7,"s":{"s":16.5,"n":4,"a":4.13,"d":0.48,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Os":85,"On":18,"Oa":4.72,"Od":0.57,"pm":18},"p":[[-38,{"n":5,"e":4310,"s":1}],[-28,{"n":4.5,"e":4409}],[-26,{"n":5,"e":4431,"s":1}],[-20,{"n":5,"e":4488,"s":1}],[-16,{"n":5,"e":4531}],[-15,{"n":6,"e":4541}],[-14,{"n":4.5,"e":4558}],[-13,{"n":5.5,"e":4561}],[-12,{"n":4.5,"e":4568,"s":1}],[-10,{"n":4,"e":4590}],[-8,{"n":5,"e":4609,"s":1}],[-7,{"n":5,"e":4621,"s":1}],[-5,{"n":4.5,"e":4639,"s":1}],[-4,{"n":5,"e":4650,"s":1}],[6,{"n":4,"e":6148}],[5,{"n":4.5,"e":6160}],[3,{"n":3.5,"e":6180}],[1,{"n":4.5,"e":6200}]],"fo":[[4409,[{"t":"Y"}]],[6180,[{"t":"Y"}]]]}],[2524,{"n":"Ecuele Manga","f":"Bruno","fp":"DC","r":12,"c":7,"s":{"g":1,"s":30,"n":6,"a":5,"d":1.22,"Sg":1,"Ss":30,"Sn":6,"Sa":5,"Sd":1.22,"Og":1,"Os":151,"On":30,"Oa":5.03,"Od":1.02,"pd":30},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":3,"e":3666}],[-26,{"n":5,"e":3669}],[-25,{"n":4,"e":3679}],[-24,{"n":3.5,"e":3690}],[-23,{"n":4,"e":3705}],[-22,{"n":5.5,"e":3711}],[-21,{"n":4,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":4.5,"e":3738}],[-18,{"n":5,"e":3748}],[-17,{"n":5.5,"e":3762}],[-16,{"n":5,"e":3772}],[-15,{"n":6,"e":3778}],[-14,{"n":5,"e":3792}],[-13,{"n":6,"e":3801}],[-12,{"n":5,"e":3811}],[-11,{"n":4.5,"e":3818}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":6,"e":3856}],[-7,{"n":5.5,"e":3860}],[-6,{"n":3.5,"e":3873}],[6,{"n":3.5,"e":6148}],[-5,{"n":6,"e":3881}],[5,{"n":7,"e":6160,"g":1}],[4,{"n":5,"e":6177}],[3,{"n":5,"e":6180}],[2,{"n":4,"e":6188}],[1,{"n":5.5,"e":6200}]],"a":{"m":13,"a":15,"M":21,"n":11}}],[2633,{"n":"Ntumba","f":"Lévi","fp":"G","r":1,"c":7}],[2639,{"n":"Coulibaly","f":"Senou","fp":"DC","r":5,"c":7,"s":{"Os":28,"On":6,"Oa":4.67,"Od":0.93,"pd":6},"p":[[-27,{"n":4,"e":3666}],[-16,{"n":4.5,"e":3772}],[-15,{"n":6,"e":3778}],[-12,{"n":4.5,"e":3811}],[-11,{"n":3.5,"e":3818}],[-10,{"n":5.5,"e":3830,"s":1}]]}],[2665,{"n":"Racioppi","f":"Anthony","fp":"G","r":1,"c":7}],[2693,{"n":"Panzo","f":"Jonathan","fp":"DC","r":3,"c":7,"s":{"s":23,"n":5,"a":4.6,"d":0.55,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.55,"Os":23,"On":5,"Oa":4.6,"Od":0.55,"pd":5},"p":[[6,{"n":4,"e":6148}],[5,{"n":4.5,"e":6160}],[4,{"n":5.5,"e":6177}],[3,{"n":4.5,"e":6180}],[2,{"n":4.5,"e":6188,"s":1}]],"fo":[[6180,[{"t":"I"}]],[6148,[{"t":"Y"}]],[6160,[{"t":"Y"}]]]}],[2853,{"n":"Dobre","f":"Mihai-Alexandru","fp":"MO","r":8,"c":7,"s":{"s":13.5,"n":3,"a":4.5,"d":0.87,"Os":13.5,"On":3,"Oa":4.5,"Od":0.87,"pm":2,"pa":1},"p":[[3,{"n":3.5,"e":6180}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":5,"e":6200,"s":1}]]}],[3768,{"n":"Mama Baldé","f":"","fp":"MO","r":13,"c":7,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Og":6,"Os":116,"On":22,"Oa":5.27,"Od":1.32,"pm":17,"pa":5},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":4,"e":3666}],[-26,{"n":7,"e":3669,"g":1,"s":1}],[-25,{"n":4.5,"e":3679}],[-24,{"n":5.5,"e":3690,"s":1}],[-23,{"n":4.5,"e":3705}],[-22,{"n":8,"e":3711,"g":2}],[-21,{"n":6,"e":3723,"g":1}],[-20,{"n":7,"e":3731}],[-19,{"n":7,"e":3738,"g":1}],[-18,{"n":5,"e":3748,"s":1}],[-17,{"n":3.5,"e":3762}],[-16,{"n":5,"e":3772}],[-15,{"n":4.5,"e":3778}],[-14,{"n":4.5,"e":3792,"s":1}],[-12,{"n":5,"e":3811}],[-11,{"n":4,"e":3818}],[-8,{"n":7.5,"e":3856,"g":1}],[-7,{"n":5,"e":3860}],[6,{"n":3.5,"e":6148}],[-5,{"n":4,"e":3881}],[5,{"n":5,"e":6160}]],"fo":[[6148,[{"t":"I"}]]],"a":{"m":16,"a":21,"M":35,"n":27}}],[4633,{"n":"Gomis","f":"Alfred","fp":"G","r":20,"c":7,"s":{"s":28.5,"n":5,"a":5.7,"d":0.97,"Os":138.5,"On":24,"Oa":5.77,"Od":1.33,"pg":24},"p":[[-24,{"n":4,"e":3690}],[-23,{"n":4,"e":3705}],[-22,{"n":7,"e":3711}],[-21,{"n":5,"e":3723}],[-20,{"n":8,"e":3731}],[-19,{"n":4,"e":3738}],[-18,{"n":5,"e":3748}],[-16,{"n":4,"e":3772}],[-15,{"n":6,"e":3778}],[-14,{"n":5.5,"e":3792}],[-13,{"n":8,"e":3801}],[-12,{"n":5.5,"e":3811}],[-11,{"n":6,"e":3818}],[-10,{"n":9,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":5.5,"e":3856}],[-7,{"n":6,"e":3860}],[-6,{"n":5,"e":3873}],[-5,{"n":6.5,"e":3881}],[5,{"n":5,"e":6160}],[4,{"n":6,"e":6177}],[3,{"n":4.5,"e":6180}],[2,{"n":7,"e":6188}],[1,{"n":6,"e":6200}]],"a":{"m":19,"a":26,"M":37,"n":22}}],[4931,{"n":"Scheidler","f":"Aurelien","fp":"A","r":12,"c":7,"s":{"g":1,"s":17,"n":4,"a":4.25,"d":0.5,"Ss":4,"Sn":1,"Sa":4,"Og":5,"Os":112.5,"On":24,"Oa":4.69,"Od":1.14,"pa":24},"p":[[-26,{"n":5.5,"e":4813}],[-25,{"n":4,"e":4825,"s":1}],[-24,{"n":4,"e":4834,"s":1}],[-23,{"n":4,"e":4844}],[-22,{"n":6,"e":4850,"g":1}],[-21,{"n":4.5,"e":4865}],[-20,{"n":4,"e":4869}],[-19,{"n":5,"e":4883}],[-18,{"n":6,"e":4892}],[-16,{"n":5,"e":4908}],[-15,{"n":3.5,"e":4925}],[-14,{"n":4,"e":4934}],[-13,{"n":4,"e":4939}],[-12,{"n":7,"e":4953,"g":1}],[-11,{"n":4.5,"e":4963}],[-10,{"n":3,"e":4974}],[-9,{"n":7,"e":4987,"g":1}],[-8,{"n":6.5,"e":4994,"g":1}],[-7,{"n":5,"e":4998}],[-17,{"n":3,"e":4900}],[6,{"n":4,"e":6148,"s":1}],[4,{"n":4,"e":6177}],[2,{"n":5,"e":6188,"g":1}],[1,{"n":4,"e":6200}]],"fo":[[6200,[{"t":"I"}]]],"a":{"m":9,"a":13,"M":16,"n":6}}],[4945,{"n":"Ebimbe","f":"Éric","fp":"MO","r":9,"c":7,"s":{"g":1,"s":26.5,"n":6,"a":4.42,"d":0.92,"Sg":1,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":0.92,"Og":3,"Os":120,"On":25,"Oa":4.8,"Od":1.05,"pm":17,"pa":8},"p":[[-27,{"n":6.5,"e":4800,"g":1,"s":1}],[-25,{"n":4.5,"e":4826,"s":1}],[-24,{"n":4.5,"e":4832,"s":1}],[-23,{"n":5,"e":4840,"s":1}],[-22,{"n":4,"e":4852}],[-21,{"n":5,"e":4862}],[-19,{"n":4,"e":4885}],[-18,{"n":3.5,"e":4890}],[-16,{"n":5.5,"e":4915}],[-15,{"n":8,"e":4922,"g":1}],[-14,{"n":4,"e":4936}],[-12,{"n":6,"e":4957}],[-10,{"n":4.5,"e":4968}],[-9,{"n":4.5,"e":4983}],[-7,{"n":5,"e":5002}],[-26,{"n":3.5,"e":4813}],[-17,{"n":5,"e":4906}],[-11,{"n":5.5,"e":4964}],[-8,{"n":5,"e":4994}],[6,{"n":4,"e":6148}],[5,{"n":6,"e":6160,"g":1}],[4,{"n":4,"e":6177}],[3,{"n":3.5,"e":6180}],[2,{"n":5,"e":6188}],[1,{"n":4,"e":6200}]],"fo":[[6148,[{"t":"Y"}]],[6160,[{"t":"Y"}]]]}],[5057,{"n":"Chouiar","f":"Mounir","fp":"MO","r":15,"c":7,"s":{"s":22.5,"n":5,"a":4.5,"d":0.35,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":4,"Os":137,"On":25,"Oa":5.48,"Od":1.18,"pm":18,"pa":7},"p":[[-26,{"n":5,"e":3669}],[-25,{"n":8,"e":3679,"g":2}],[-24,{"n":6,"e":3690}],[-23,{"n":5.5,"e":3705}],[-21,{"n":3,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":5.5,"e":3738}],[-18,{"n":5,"e":3748}],[-17,{"n":5,"e":3762}],[-16,{"n":6.5,"e":3772}],[-15,{"n":6,"e":3778}],[-14,{"n":7.5,"e":3792,"g":1}],[-13,{"n":5.5,"e":3801}],[-12,{"n":7.5,"e":3811,"g":1}],[-11,{"n":5.5,"e":3818,"s":1}],[-10,{"n":5,"e":3830}],[-9,{"n":6,"e":3840}],[-7,{"n":6,"e":3860}],[-6,{"n":4.5,"e":3873}],[6,{"n":4,"e":6148}],[-5,{"n":4.5,"e":3881,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4.5,"e":6177,"s":1}],[2,{"n":4.5,"e":6188}],[1,{"n":4.5,"e":6200}]],"fo":[[6148,[{"t":"Y"}]]],"a":{"m":17,"a":22,"M":31,"n":37}}],[6198,{"n":"Philippe","f":"Rayan","fp":"A","r":7,"c":7,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Os":24.5,"On":5,"Oa":4.9,"Od":0.22,"pm":3,"pa":2},"p":[[6,{"n":5,"e":6535}],[4,{"n":5,"e":6177,"s":1}],[3,{"n":4.5,"e":6180}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":5,"e":6200,"s":1}]]}],[6201,{"n":"Muzinga","f":"Ngonda","fp":"DL","r":5,"c":7,"s":{"s":10,"n":2,"a":5,"Os":28,"On":6,"Oa":4.67,"Od":0.88,"pd":6},"p":[[-23,{"n":3.5,"e":3705}],[-21,{"n":4,"e":3723}],[-12,{"n":4.5,"e":3811}],[-10,{"n":6,"e":3830}],[5,{"n":5,"e":6160,"s":1}],[1,{"n":5,"e":6200}]],"fo":[[6200,[{"t":"I"}]]],"a":{"m":6,"a":7,"M":10,"n":6}}],[6306,{"n":"Ngouyamsa Nounchil","f":"Ahmad Toure","fp":"DL","r":9,"c":7,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":12,"On":3,"Oa":4,"Od":0.87,"pd":3},"p":[[-20,{"n":4.5,"e":3731,"s":1}],[2,{"n":3,"e":6188}],[1,{"n":4.5,"e":6200}]],"fo":[[6188,[{"t":"Y"}]]]}],[6529,{"n":"Assalé","f":"Roger","fp":"A","r":10,"c":7,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Og":2,"Os":79.5,"On":16,"Oa":4.97,"Od":0.97,"pm":1,"pa":15},"p":[[-38,{"n":6.5,"e":4312,"g":1,"s":1}],[-37,{"n":7,"e":4318,"g":1,"s":1}],[-35,{"n":4.5,"e":4341,"s":1}],[-34,{"n":4,"e":4351,"s":1}],[-33,{"n":5,"e":4361,"s":1}],[-32,{"n":3.5,"e":4375}],[-31,{"n":5,"e":4381,"s":1}],[-30,{"n":5.5,"e":4394}],[-29,{"n":4.5,"e":4399,"s":1}],[-28,{"n":5.5,"e":4412,"s":1}],[-27,{"n":6,"e":4427,"s":1}],[-25,{"n":4.5,"e":4441,"s":1}],[-24,{"n":4.5,"e":4452,"s":1}],[-23,{"n":5,"e":4463,"s":1}],[6,{"n":3.5,"e":6148}],[5,{"n":5,"e":6160}]],"fo":[[4351,[{"t":"Y"}]]],"a":{"m":11,"a":11,"M":11,"n":6}}],[6860,{"n":"Younoussa","f":"Wilitty","fp":"MD","r":1,"c":7,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[4,{"n":5,"e":6177,"s":1}],[3,{"n":4.5,"e":6180,"s":1}]]}],[6922,{"n":"Arli","f":"Amir","fp":"MO","r":1,"c":7}],[6923,{"n":"Racovitan","f":"Bogdan","fp":"DC","r":1,"c":7}],[7146,{"n":"Chalá","f":"Aníbal","fp":"DL","r":8,"c":7,"s":{"s":17,"n":4,"a":4.25,"d":0.65,"Ss":17,"Sn":4,"Sa":4.25,"Sd":0.65,"Os":17,"On":4,"Oa":4.25,"Od":0.65,"pd":4},"p":[[6,{"n":3.5,"e":6148}],[5,{"n":5,"e":6160}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6180}]]}],[7270,{"n":"Celina","f":"Bersant","fp":"MO","r":5,"c":7,"s":{"s":15.5,"n":3,"a":5.17,"d":1.26,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.26,"Os":15.5,"On":3,"Oa":5.17,"Od":1.26,"pm":2,"pa":1},"p":[[6,{"n":5,"e":6148,"s":1}],[5,{"n":6.5,"e":6160}],[4,{"n":4,"e":6177}]],"fo":[[6160,[{"t":"Y"}]]]}],[81,{"n":"Cahuzac","f":"Yannick","fp":"MD","r":15,"c":104,"s":{"s":32,"n":6,"a":5.33,"d":0.26,"Ss":16.5,"Sn":3,"Sa":5.5,"Os":141,"On":26,"Oa":5.42,"Od":0.8,"pm":26},"p":[[6,{"n":5.5,"e":6150}],[5,{"n":5.5,"e":6165}],[3,{"n":5,"e":6182}],[2,{"n":5.5,"e":6190,"s":1}],[1,{"n":5,"e":6205}],[-28,{"n":6,"e":4794}],[-27,{"n":7,"e":4805}],[-25,{"n":4.5,"e":4820}],[-24,{"n":4.5,"e":4833}],[-23,{"n":6,"e":4841}],[-21,{"n":5,"e":4863}],[-20,{"n":5.5,"e":4871}],[-19,{"n":6.5,"e":4882}],[-18,{"n":4.5,"e":4888}],[-16,{"n":3.5,"e":4917}],[-15,{"n":6.5,"e":4923}],[-14,{"n":5.5,"e":4935}],[-12,{"n":5,"e":4952}],[-11,{"n":5,"e":4966}],[-9,{"n":5,"e":4984}],[-8,{"n":7,"e":4989}],[-7,{"n":5.5,"e":5003}],[-22,{"n":6,"e":4852}],[-13,{"n":5,"e":4945}],[-10,{"n":5.5,"e":4974}],[4,{"n":5.5,"e":6169}]],"fo":[[6182,[{"t":"Y"}]],[6205,[{"t":"Y"}]]]}],[92,{"n":"Leca","f":"Jean-Louis","fp":"G","r":18,"c":104,"s":{"s":32,"n":6,"a":5.33,"d":0.75,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.75,"Os":159.5,"On":28,"Oa":5.7,"Od":0.8,"pg":28},"p":[[-26,{"n":5,"e":4814}],[-17,{"n":6,"e":4903}],[-28,{"n":6,"e":4794}],[-27,{"n":6,"e":4805}],[-25,{"n":4,"e":4820}],[-24,{"n":6,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":6,"e":4852}],[-21,{"n":6,"e":4863}],[-20,{"n":5.5,"e":4871}],[-19,{"n":6,"e":4882}],[-18,{"n":5,"e":4888}],[-16,{"n":7,"e":4917}],[-15,{"n":6,"e":4923}],[-14,{"n":5,"e":4935}],[-13,{"n":6.5,"e":4945}],[-12,{"n":7.5,"e":4952}],[-11,{"n":6,"e":4966}],[-10,{"n":4.5,"e":4974}],[-9,{"n":5,"e":4984}],[-8,{"n":6,"e":4989}],[-7,{"n":6.5,"e":5003}],[6,{"n":6,"e":6150}],[5,{"n":5.5,"e":6165}],[4,{"n":5.5,"e":6169}],[3,{"n":5,"e":6182}],[2,{"n":6,"e":6190}],[1,{"n":4,"e":6205}]]}],[144,{"n":"Sylla","f":"Issiaga","fp":"DL","r":8,"c":104,"s":{"s":25.5,"n":5,"a":5.1,"d":0.42,"Os":131,"On":29,"Oa":4.52,"Od":0.66,"pd":26,"pm":3},"p":[[-27,{"n":5,"e":3667}],[-26,{"n":4.5,"e":3670}],[-24,{"n":5,"e":3691}],[-23,{"n":5,"e":3707}],[-22,{"n":5,"e":3708}],[-21,{"n":4,"e":3720}],[-19,{"n":4.5,"e":3743}],[-17,{"n":3.5,"e":3767}],[-16,{"n":4.5,"e":3777}],[-15,{"n":5,"e":3782}],[-14,{"n":5,"e":3797}],[-13,{"n":3,"e":3802}],[-12,{"n":4.5,"e":3817}],[-11,{"n":4,"e":3825}],[-10,{"n":4.5,"e":3837}],[-8,{"n":4,"e":3852}],[-5,{"n":5,"e":3887}],[-28,{"n":3.5,"e":3649}],[-25,{"n":5,"e":3687}],[-20,{"n":4,"e":3737}],[-18,{"n":4.5,"e":3757}],[-9,{"n":3,"e":3847}],[-7,{"n":4.5,"e":3867}],[-6,{"n":5,"e":3874}],[5,{"n":4.5,"e":6165}],[4,{"n":5,"e":6169}],[3,{"n":5,"e":6182,"s":1}],[2,{"n":5.5,"e":6190}],[1,{"n":5.5,"e":6205,"s":1}]]}],[302,{"n":"Jean","f":"Corentin","fp":"A","r":8,"c":104,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.41,"Og":3,"Os":78.5,"On":16,"Oa":4.91,"Od":0.66,"pa":16},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":4.5,"e":4805,"s":1}],[-26,{"n":6,"e":4814,"g":1}],[-25,{"n":5.5,"e":4820}],[-24,{"n":4,"e":4833}],[-23,{"n":6,"e":4841,"g":1,"s":1}],[-22,{"n":4.5,"e":4852}],[-21,{"n":6,"e":4863,"g":1,"s":1}],[-20,{"n":4.5,"e":4871,"s":1}],[-16,{"n":4.5,"e":3777,"s":1}],[6,{"n":4,"e":6150,"s":1}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":4.5,"e":6169,"s":1}],[3,{"n":5,"e":6182}],[2,{"n":4.5,"e":6190,"s":1}],[1,{"n":5,"e":6205,"s":1}]],"fo":[[6169,[{"t":"Y"}]]]}],[481,{"n":"Michelin","f":"Clement","fp":"DL","r":16,"c":104,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Og":1,"Os":122.5,"On":23,"Oa":5.33,"Od":0.89,"pd":3,"pm":20},"p":[[-28,{"n":5,"e":4794}],[-26,{"n":3,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":5,"e":4852}],[-21,{"n":5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":5.5,"e":4882}],[-18,{"n":5.5,"e":4888}],[-17,{"n":6.5,"e":4903}],[-16,{"n":5,"e":4917}],[-15,{"n":7,"e":4923}],[-14,{"n":5,"e":4935}],[-13,{"n":6.5,"e":4945}],[-12,{"n":5,"e":4952,"s":1}],[-11,{"n":5.5,"e":4966}],[-10,{"n":5,"e":4974}],[-9,{"n":6,"e":4984,"g":1}],[-8,{"n":6.5,"e":4989}],[3,{"n":5,"e":6182,"s":1}],[2,{"n":6,"e":6190}],[1,{"n":4.5,"e":6205}]],"a":{"m":19,"a":23,"M":32,"n":7}}],[1208,{"n":"Steven Fortes","f":"","fp":"DC","r":9,"c":104,"s":{"s":10,"n":2,"a":5,"Os":55.5,"On":11,"Oa":5.05,"Od":1.01,"pd":11},"p":[[-28,{"n":5.5,"e":4794}],[-27,{"n":5.5,"e":4805}],[-26,{"n":2.5,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":5.5,"e":4852}],[-21,{"n":5.5,"e":4863,"s":1}],[-7,{"n":6,"e":5003}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":5,"e":6169}]],"fo":[[6169,[{"t":"Y"}]]]}],[1272,{"n":"Ganago","f":"Ignatius","fp":"A","r":10,"c":104,"s":{"g":4,"s":38,"n":6,"a":6.33,"d":1.33,"Sg":4,"Ss":38,"Sn":6,"Sa":6.33,"Sd":1.33,"Og":6,"Os":141.5,"On":28,"Oa":5.05,"Od":1.17,"pm":4,"pa":24},"p":[[-17,{"n":7,"e":3763,"g":1,"s":1}],[-11,{"n":4,"e":3827}],[-9,{"n":4,"e":3843,"s":1}],[-8,{"n":4,"e":3854,"s":1}],[-7,{"n":4,"e":3862,"s":1}],[-5,{"n":4,"e":3884,"s":1}],[-28,{"n":4.5,"e":3653,"s":1}],[-27,{"n":4.5,"e":3659,"s":1}],[-26,{"n":4.5,"e":3673}],[-25,{"n":4.5,"e":3687,"s":1}],[-24,{"n":4.5,"e":3694,"s":1}],[-23,{"n":6.5,"e":3701}],[-22,{"n":4,"e":3713,"s":1}],[-21,{"n":4.5,"e":3725,"s":1}],[-20,{"n":5.5,"e":3729}],[-18,{"n":5.5,"e":3751}],[-16,{"n":4.5,"e":3776,"s":1}],[-14,{"n":4.5,"e":3793}],[-13,{"n":4,"e":3804}],[-12,{"n":4.5,"e":3814}],[-10,{"n":6,"e":3834,"g":1}],[-6,{"n":4.5,"e":3873,"s":1}],[6,{"n":6,"e":6150}],[5,{"n":7,"e":6165,"g":1}],[4,{"n":8,"e":6169,"g":1}],[3,{"n":6.5,"e":6182,"g":1,"s":1}],[2,{"n":6.5,"e":6190,"g":1}],[1,{"n":4,"e":6205}]],"fo":[[6150,[{"t":"I"}]],[6165,[{"t":"I"}]]],"a":{"m":11,"a":18,"M":35,"n":31}}],[1436,{"n":"Kakuta","f":"Gaël","fp":"MO","r":12,"c":104,"s":{"g":4,"s":38.5,"n":6,"a":6.42,"d":0.58,"Sg":4,"Ss":38.5,"Sn":6,"Sa":6.42,"Sd":0.58,"Og":6,"Os":145.5,"On":27,"Oa":5.39,"Od":1.08,"pm":20,"pa":7},"p":[[-28,{"n":5,"e":3651}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4.5,"e":3677}],[-25,{"n":7.5,"e":3678,"g":1}],[-24,{"n":4.5,"e":3688}],[-23,{"n":5,"e":3704}],[-17,{"n":3,"e":3760}],[-15,{"n":6,"e":3781,"g":1}],[-14,{"n":3.5,"e":3788}],[-13,{"n":5,"e":3806}],[-11,{"n":4,"e":3826}],[-9,{"n":6.5,"e":3838}],[-6,{"n":5,"e":3872}],[-5,{"n":4.5,"e":3878}],[-22,{"n":6,"e":3708}],[-21,{"n":5.5,"e":3718}],[-18,{"n":5.5,"e":3748}],[-12,{"n":6,"e":3808}],[-10,{"n":5,"e":3835}],[-8,{"n":4.5,"e":3848}],[-7,{"n":5,"e":3858,"s":1}],[6,{"n":6.5,"e":6150,"g":1}],[5,{"n":6,"e":6165}],[4,{"n":7,"e":6169,"g":1}],[3,{"n":7,"e":6182,"g":1}],[2,{"n":5.5,"e":6190}],[1,{"n":6.5,"e":6205,"g":1}]],"fo":[[6150,[{"t":"I"},{"t":"Y"}]]],"a":{"m":13,"a":18,"M":41,"n":27}}],[1518,{"n":"Haidara","f":"Massadio","fp":"DL","r":13,"c":104,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":104,"On":20,"Oa":5.2,"Od":0.64,"pd":3,"pm":17},"p":[[-26,{"n":5,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5.5,"e":4833}],[-23,{"n":4.5,"e":4841}],[-22,{"n":5,"e":4852}],[-21,{"n":5.5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":5,"e":4882}],[-18,{"n":6,"e":4888}],[-16,{"n":4.5,"e":4917}],[-15,{"n":7,"e":4923,"g":1}],[-14,{"n":5.5,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":5,"e":4952}],[-11,{"n":5,"e":4966}],[-10,{"n":5,"e":4974}],[-9,{"n":5,"e":4984,"s":1}],[-8,{"n":5,"e":4989,"s":1}],[-7,{"n":5,"e":5003}],[6,{"n":5.5,"e":6150}]]}],[2710,{"n":"Gradit","f":"Jonathan","fp":"DL","r":7,"c":104,"s":{"s":28.5,"n":6,"a":4.75,"d":0.82,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.82,"Os":84.5,"On":16,"Oa":5.28,"Od":0.73,"pd":16},"p":[[-21,{"n":5.5,"e":4863}],[-20,{"n":5.5,"e":4871,"s":1}],[-17,{"n":5.5,"e":4903}],[-16,{"n":5.5,"e":4917,"s":1}],[-12,{"n":4.5,"e":4952}],[-11,{"n":6,"e":4966}],[-10,{"n":6,"e":4974}],[-9,{"n":6,"e":4984}],[-8,{"n":6,"e":4989}],[-7,{"n":5.5,"e":5003}],[6,{"n":5.5,"e":6150}],[5,{"n":4,"e":6165}],[4,{"n":4,"e":6169}],[3,{"n":5.5,"e":6182}],[2,{"n":5.5,"e":6190}],[1,{"n":4,"e":6205}]],"fo":[[6165,[{"t":"Y"}]],[6169,[{"t":"Y"}]]]}],[2722,{"n":"Traoré","f":"Cheick","fp":"DL","r":5,"c":104,"s":{"Os":39,"On":8,"Oa":4.88,"Od":0.35,"pd":5,"pm":3},"p":[[-27,{"n":5.5,"e":4805}],[-26,{"n":4.5,"e":4814,"s":1}],[-19,{"n":4.5,"e":4882,"s":1}],[-16,{"n":5,"e":4917,"s":1}],[-14,{"n":5,"e":4935,"s":1}],[-13,{"n":5,"e":4945,"s":1}],[-12,{"n":4.5,"e":4952}],[-7,{"n":5,"e":5003}]]}],[4516,{"n":"Fofana","f":"Seko","fp":"MD","r":14,"c":104,"s":{"s":5.5,"n":1,"a":5.5,"Og":3,"Os":174.5,"On":31,"Oa":5.63,"Od":1.05,"pm":29,"pa":2},"p":[[-38,{"n":4.5,"e":5457,"s":1}],[-37,{"n":5,"e":5466}],[-35,{"n":7.5,"e":5487,"g":1}],[-34,{"n":5.5,"e":5494}],[-33,{"n":5.5,"e":5507}],[-32,{"n":5.5,"e":5517,"s":1}],[-31,{"n":7,"e":5525}],[-30,{"n":6.5,"e":5537,"g":1}],[-29,{"n":6,"e":5544,"s":1}],[-28,{"n":6,"e":5557}],[-27,{"n":5,"e":5566}],[-26,{"n":5.5,"e":5577,"s":1}],[-25,{"n":5.5,"e":5579}],[-24,{"n":6,"e":5597}],[-23,{"n":5.5,"e":5598}],[-22,{"n":4.5,"e":5617}],[-21,{"n":4.5,"e":5622}],[-20,{"n":5,"e":5635}],[-19,{"n":8,"e":5646}],[-18,{"n":6.5,"e":5653}],[-17,{"n":8,"e":5667,"g":1}],[-16,{"n":5,"e":5673}],[-15,{"n":7,"e":5687}],[-14,{"n":5.5,"e":5694,"s":1}],[-12,{"n":5,"e":5717,"s":1}],[-9,{"n":5,"e":5738,"s":1}],[-6,{"n":5.5,"e":5777}],[-5,{"n":4.5,"e":5787}],[-4,{"n":3.5,"e":5797}],[-3,{"n":5,"e":5801}],[4,{"n":5.5,"e":6169,"s":1}]],"fo":[[5537,[{"t":"Y"}]],[5566,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":26,"n":24}}],[4944,{"n":"Doucoure","f":"Cheick Oumar","fp":"MD","r":14,"c":104,"s":{"s":32.5,"n":6,"a":5.42,"d":0.74,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.74,"Og":1,"Os":137,"On":26,"Oa":5.27,"Od":0.82,"pd":11,"pm":15},"p":[[-28,{"n":4.5,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":3,"e":4814}],[-25,{"n":6,"e":4820,"g":1}],[-24,{"n":4.5,"e":4833}],[-23,{"n":5,"e":4841}],[-22,{"n":5.5,"e":4852}],[-21,{"n":5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":6,"e":4882}],[-18,{"n":5.5,"e":4888}],[-17,{"n":7,"e":4903}],[-16,{"n":4.5,"e":4917}],[-15,{"n":6,"e":4923}],[-14,{"n":5.5,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":5,"e":4952,"s":1}],[-9,{"n":4.5,"e":4984,"s":1}],[-8,{"n":5,"e":4989,"s":1}],[-7,{"n":5,"e":5003}],[6,{"n":6,"e":6150}],[5,{"n":5.5,"e":6165}],[4,{"n":5.5,"e":6169}],[3,{"n":5.5,"e":6182}],[2,{"n":6,"e":6190}],[1,{"n":4,"e":6205}]],"fo":[[6169,[{"t":"Y"}]],[6190,[{"t":"Y"}]]]}],[4965,{"n":"Robail","f":"Gaëtan","fp":"MO","r":19,"c":104,"s":{"Og":6,"Os":97,"On":18,"Oa":5.39,"Od":1.29,"pm":1,"pa":17},"p":[[-26,{"n":3,"e":4814}],[-25,{"n":6,"e":4820,"s":1}],[-24,{"n":4,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":5,"e":4852}],[-21,{"n":4.5,"e":4863}],[-20,{"n":6,"e":4871,"g":1}],[-19,{"n":7,"e":4882,"g":1}],[-18,{"n":5,"e":4888}],[-17,{"n":6.5,"e":4903,"g":1}],[-16,{"n":5,"e":4917}],[-15,{"n":6.5,"e":4923}],[-14,{"n":8,"e":4935,"g":2}],[-13,{"n":5,"e":4945}],[-11,{"n":3.5,"e":4966}],[-10,{"n":6,"e":4974,"g":1,"s":1}],[-9,{"n":6,"e":4984}],[-8,{"n":4,"e":4989}]],"a":{"m":20,"a":23,"M":27,"n":20}}],[4993,{"n":"Bayala","f":"Cyrille","fp":"MO","r":5,"c":104,"s":{"Og":4,"Oao":1,"Os":121.5,"On":21,"Oa":5.79,"Od":0.77,"pm":21},"p":[[-27,{"n":6,"e":4806}],[-26,{"n":7,"e":4808,"g":1}],[-24,{"n":5,"e":4828}],[-23,{"n":6,"e":4845}],[-22,{"n":4.5,"e":4848}],[-21,{"n":5.5,"e":4859}],[-20,{"n":5,"e":4868,"a":1}],[-19,{"n":4.5,"e":4886}],[-17,{"n":6.5,"e":4899}],[-16,{"n":6,"e":4909}],[-15,{"n":5,"e":4918}],[-14,{"n":6,"e":4930,"g":1}],[-13,{"n":5.5,"e":4938}],[-12,{"n":7,"e":4956,"g":1}],[-11,{"n":5,"e":4958}],[-9,{"n":6,"e":4978}],[-28,{"n":7,"e":4788,"g":1}],[-25,{"n":6.5,"e":4825}],[-10,{"n":6,"e":4972}],[-8,{"n":6,"e":4991}],[-7,{"n":5.5,"e":4998}]],"a":{"m":6,"a":9,"M":21,"n":5}}],[5003,{"n":"Radovanovic","f":"Aleksandar","fp":"DC","r":16,"c":104,"s":{"Og":2,"Os":83,"On":16,"Oa":5.19,"Od":1.21,"pd":16},"p":[[-28,{"n":6,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":3,"e":4814}],[-25,{"n":3,"e":4820}],[-20,{"n":4.5,"e":4871}],[-19,{"n":6,"e":4882}],[-18,{"n":5,"e":4888}],[-16,{"n":3,"e":4917}],[-15,{"n":6,"e":4923}],[-14,{"n":5,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":5.5,"e":4952}],[-11,{"n":5.5,"e":4966}],[-10,{"n":6.5,"e":4974,"g":1}],[-9,{"n":6.5,"e":4984,"g":1}],[-8,{"n":5.5,"e":4989}]],"a":{"m":17,"a":21,"M":34,"n":8}}],[5013,{"n":"Desprez","f":"Didier","fp":"G","r":3,"c":104}],[5030,{"n":"Banza","f":"Simon","fp":"A","r":10,"c":104,"s":{"s":24,"n":5,"a":4.8,"d":0.27,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.29,"Og":6,"Os":112.5,"On":23,"Oa":4.89,"Od":1.22,"pa":23},"p":[[-27,{"n":6.5,"e":4805}],[-26,{"n":3,"e":4814}],[-25,{"n":6,"e":4820,"g":1,"s":1}],[-24,{"n":4,"e":4833}],[-23,{"n":4,"e":4841}],[-22,{"n":4.5,"e":4852,"s":1}],[-19,{"n":2,"e":4882,"s":1}],[-17,{"n":8,"e":4903,"g":2}],[-16,{"n":4.5,"e":4917}],[-15,{"n":6,"e":4923,"g":1}],[-14,{"n":4.5,"e":4935}],[-13,{"n":4,"e":4945,"s":1}],[-12,{"n":5.5,"e":4952}],[-11,{"n":4.5,"e":4966,"s":1}],[-10,{"n":6,"e":4974,"g":1,"s":1}],[-9,{"n":4.5,"e":4984,"s":1}],[-8,{"n":6,"e":4989,"g":1,"s":1}],[-7,{"n":5,"e":5003,"s":1}],[6,{"n":5,"e":6150,"s":1}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":4.5,"e":6169,"s":1}],[2,{"n":5,"e":6190}],[1,{"n":4.5,"e":6205,"s":1}]],"a":{"m":11,"a":12,"M":14,"n":8}}],[5061,{"n":"Sotoca","f":"Florian","fp":"A","r":17,"c":104,"s":{"g":1,"s":32,"n":6,"a":5.33,"d":1.33,"Sg":1,"Ss":32,"Sn":6,"Sa":5.33,"Sd":1.33,"Og":8,"Os":137.5,"On":26,"Oa":5.29,"Od":1.27,"pa":26},"p":[[-28,{"n":6,"e":4794,"g":1}],[-27,{"n":8,"e":4805,"g":2}],[-25,{"n":3.5,"e":4820}],[-24,{"n":4,"e":4833,"s":1}],[-23,{"n":4.5,"e":4841,"s":1}],[-22,{"n":3.5,"e":4852}],[-21,{"n":6,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":5,"e":4882}],[-18,{"n":7.5,"e":4888,"g":2}],[-16,{"n":4.5,"e":4917}],[-15,{"n":7,"e":4923,"g":1}],[-14,{"n":5,"e":4935}],[-13,{"n":4.5,"e":4945}],[-12,{"n":4.5,"e":4952}],[-11,{"n":4,"e":4966}],[-10,{"n":6.5,"e":4974,"g":1}],[-9,{"n":5,"e":4984}],[-8,{"n":6.5,"e":4989}],[-7,{"n":5,"e":5003}],[6,{"n":7,"e":6150,"g":1}],[5,{"n":4.5,"e":6165}],[4,{"n":5,"e":6169}],[3,{"n":7,"e":6182}],[2,{"n":4,"e":6190,"s":1}],[1,{"n":4.5,"e":6205}]],"fo":[[6190,[{"t":"Y"}]]],"a":{"m":18,"a":27,"M":41,"n":35}}],[5074,{"n":"Mauricio","f":"Tony","fp":"MO","r":16,"c":104,"s":{"s":25.5,"n":5,"a":5.1,"d":0.42,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":133.5,"On":26,"Oa":5.13,"Od":0.77,"pm":11,"pa":15},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":4,"e":4814,"s":1}],[-25,{"n":4.5,"e":4820}],[-24,{"n":4.5,"e":4833,"s":1}],[-23,{"n":4.5,"e":4841}],[-22,{"n":5.5,"e":4852,"s":1}],[-21,{"n":5,"e":4863}],[-20,{"n":4.5,"e":4871}],[-19,{"n":4.5,"e":4882}],[-18,{"n":4.5,"e":4888}],[-17,{"n":4.5,"e":4903}],[-16,{"n":5,"e":4917,"s":1}],[-15,{"n":5.5,"e":4923,"s":1}],[-13,{"n":7,"e":4945,"g":1}],[-12,{"n":4.5,"e":4952}],[-11,{"n":5,"e":4966}],[-10,{"n":7,"e":4974}],[-9,{"n":5,"e":4984}],[-8,{"n":6,"e":4989}],[-7,{"n":6,"e":5003,"g":1}],[6,{"n":5.5,"e":6150,"s":1}],[4,{"n":4.5,"e":6169,"s":1}],[3,{"n":5.5,"e":6182,"s":1}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":5,"e":6205,"s":1}]],"a":{"m":18,"a":20,"M":24,"n":5}}],[5176,{"n":"Perez","f":"Manuel","fp":"MD","r":6,"c":104,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":69,"On":14,"Oa":4.93,"Od":0.51,"pm":14},"p":[[-28,{"n":4.5,"e":4794,"s":1}],[-27,{"n":5,"e":4805,"s":1}],[-21,{"n":4,"e":4863}],[-20,{"n":5,"e":4871,"s":1}],[-19,{"n":5,"e":4882,"s":1}],[-17,{"n":6,"e":4903}],[-15,{"n":5.5,"e":4923,"s":1}],[-14,{"n":5,"e":4935,"s":1}],[-13,{"n":5,"e":4945,"s":1}],[-12,{"n":5.5,"e":4952,"s":1}],[6,{"n":4.5,"e":6150,"s":1}],[5,{"n":5,"e":6165,"s":1}],[3,{"n":4.5,"e":6182,"s":1}],[2,{"n":4.5,"e":6190}]],"fo":[[6165,[{"t":"Y"}]]]}],[5346,{"n":"Sene","f":"Cheikh Cory","fp":"DC","r":2,"c":104}],[5360,{"n":"Boli","f":"Charles","fp":"MO","r":8,"c":104,"s":{"Os":43,"On":8,"Oa":5.38,"Od":0.52,"pm":6,"pa":2},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":6,"e":4805}],[-24,{"n":5,"e":4833,"s":1}],[-23,{"n":5,"e":4841,"s":1}],[-11,{"n":5,"e":4966,"s":1}],[-10,{"n":5,"e":4974}],[-9,{"n":6,"e":4984}],[-7,{"n":6,"e":5003}]]}],[6188,{"n":"Diallo","f":"Zakaria","fp":"DC","r":16,"c":104,"s":{"Os":122,"On":22,"Oa":5.55,"Od":0.77,"pd":22},"p":[[-28,{"n":6,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":4,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5.5,"e":4833}],[-23,{"n":5.5,"e":4841}],[-22,{"n":6,"e":4852}],[-21,{"n":4.5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":7,"e":4882}],[-18,{"n":5.5,"e":4888}],[-17,{"n":6,"e":4903}],[-16,{"n":4.5,"e":4917}],[-15,{"n":6.5,"e":4923}],[-14,{"n":6,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":6,"e":4952}],[-11,{"n":5.5,"e":4966}],[-10,{"n":5.5,"e":4974}],[-9,{"n":5,"e":4984}],[-8,{"n":6,"e":4989}],[-7,{"n":6,"e":5003}]],"a":{"m":17,"a":21,"M":32,"n":10}}],[6413,{"n":"Bade","f":"Loic","fp":"DC","r":8,"c":104,"s":{"s":26.5,"n":5,"a":5.3,"d":0.84,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Os":57,"On":11,"Oa":5.18,"Od":0.9,"pd":11},"p":[[-26,{"n":5,"e":4813}],[-25,{"n":4,"e":4826}],[-24,{"n":4,"e":4832}],[-23,{"n":5,"e":4840}],[-22,{"n":6.5,"e":4852}],[-21,{"n":6,"e":4862}],[6,{"n":6,"e":6150}],[5,{"n":5.5,"e":6165}],[3,{"n":4,"e":6182}],[2,{"n":6,"e":6190}],[1,{"n":5,"e":6205}]],"fo":[[6182,[{"t":"Y"},{"t":"O"}]]]}],[6415,{"n":"Diawara","f":"Kandet","fp":"MD","r":1,"c":104}],[6416,{"n":"Sow","f":"Ansou","fp":"A","r":1,"c":104}],[6580,{"n":"Pereira Da Costa","f":"David","fp":"MD","r":1,"c":104,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[6,{"n":5,"e":6150,"s":1}]]}],[6708,{"n":"Medina","f":"Facundo","fp":"DL","r":6,"c":104,"s":{"g":1,"s":29.5,"n":6,"a":4.92,"d":1.16,"Sg":1,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":1.16,"Og":1,"Os":29.5,"On":6,"Oa":4.92,"Od":1.16,"pd":6},"p":[[6,{"n":6,"e":6150}],[5,{"n":4.5,"e":6165}],[4,{"n":4.5,"e":6169}],[3,{"n":5.5,"e":6182,"g":1}],[2,{"n":6,"e":6190}],[1,{"n":3,"e":6205}]],"fo":[[6165,[{"t":"Y"}]],[6169,[{"t":"Y"}]],[6205,[{"t":"Y"}]]],"a":{"m":8,"a":8,"M":10,"n":7}}],[6709,{"n":"Clauss","f":"Jonathan","fp":"MD","r":7,"c":104,"s":{"s":22.5,"n":4,"a":5.63,"d":1.11,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.11,"Os":22.5,"On":4,"Oa":5.63,"Od":1.11,"pm":4},"p":[[6,{"n":7,"e":6150}],[5,{"n":5,"e":6165}],[4,{"n":6,"e":6169}],[3,{"n":4.5,"e":6182}]]}],[6711,{"n":"Fariñez","f":"Wuilker","fp":"G","r":7,"c":104}],[6789,{"n":"Oudjani","f":"Adam","fp":"MO","r":1,"c":104}],[6862,{"n":"Boura","f":"Ismael","fp":"DL","r":3,"c":104,"s":{"s":24,"n":5,"a":4.8,"d":0.45,"Os":24,"On":5,"Oa":4.8,"Od":0.45,"pd":3,"pm":2},"p":[[5,{"n":5,"e":6165,"s":1}],[4,{"n":5,"e":6169,"s":1}],[3,{"n":5,"e":6182}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":4,"e":6205}]],"fo":[[6205,[{"t":"Y"}]]]}],[101,{"n":"André","f":"Benjamin","fp":"MD","r":18,"c":12,"s":{"s":34,"n":6,"a":5.67,"d":0.68,"Ss":34,"Sn":6,"Sa":5.67,"Sd":0.68,"Og":2,"Os":153.5,"On":28,"Oa":5.48,"Od":1.06,"pm":28},"p":[[6,{"n":6.5,"e":6156}],[5,{"n":5.5,"e":6161}],[4,{"n":5.5,"e":6171}],[3,{"n":4.5,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":6,"e":6201}],[-28,{"n":5,"e":3650}],[-27,{"n":7,"e":3664,"g":1}],[-23,{"n":6.5,"e":3699}],[-22,{"n":4.5,"e":3717}],[-21,{"n":3.5,"e":3719}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5,"e":3752}],[-16,{"n":7,"e":3773}],[-14,{"n":5,"e":3795}],[-13,{"n":6,"e":3799}],[-12,{"n":4.5,"e":3812}],[-7,{"n":5.5,"e":3861,"s":1}],[-6,{"n":5,"e":3876}],[-26,{"n":5.5,"e":3670}],[-24,{"n":6,"e":3689}],[-20,{"n":5,"e":3731,"s":1}],[-17,{"n":6,"e":3758}],[-15,{"n":5,"e":3778,"s":1}],[-11,{"n":7,"e":3819,"g":1}],[-9,{"n":5,"e":3841}],[-8,{"n":6,"e":3854}],[-5,{"n":7,"e":3882}]],"fo":[[6201,[{"t":"I"}]],[6171,[{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":20,"a":24,"M":33,"n":14}}],[181,{"n":"Soumaoro","f":"Adama","fp":"DC","r":7,"c":12,"s":{"Og":2,"Os":68.5,"On":13,"Oa":5.27,"Od":1.28,"pd":13},"p":[[-29,{"n":4,"e":5541}],[-28,{"n":4,"e":5548}],[-27,{"n":3,"e":5561}],[-26,{"n":6,"e":5572}],[-25,{"n":4,"e":5582}],[-24,{"n":7.5,"e":5589,"g":1}],[-23,{"n":7,"e":5600}],[-30,{"n":5,"e":5537,"s":1}],[-20,{"n":5,"e":3731}],[-12,{"n":6,"e":3812,"g":1}],[-11,{"n":5.5,"e":3819,"s":1}],[-9,{"n":5.5,"e":3841}],[-7,{"n":6,"e":3861}]]}],[316,{"n":"Maignan","f":"Mike","fp":"G","r":21,"c":12,"s":{"s":35.5,"n":6,"a":5.92,"d":0.8,"Ss":35.5,"Sn":6,"Sa":5.92,"Sd":0.8,"Os":166,"On":30,"Oa":5.53,"Od":0.95,"pg":30},"p":[[-25,{"n":6,"e":3681}],[-28,{"n":6,"e":3650}],[-27,{"n":6,"e":3664}],[-26,{"n":5.5,"e":3670}],[-24,{"n":6,"e":3689}],[-23,{"n":6.5,"e":3699}],[-22,{"n":5.5,"e":3717}],[-21,{"n":5.5,"e":3719}],[-20,{"n":6.5,"e":3731}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5,"e":3752}],[-17,{"n":5.5,"e":3758}],[-16,{"n":6.5,"e":3773}],[-15,{"n":5.5,"e":3778}],[-14,{"n":4.5,"e":3795}],[-13,{"n":5.5,"e":3799}],[-12,{"n":3,"e":3812}],[-11,{"n":6,"e":3819}],[-10,{"n":6,"e":3837}],[-9,{"n":5,"e":3841}],[-8,{"n":6,"e":3854}],[-7,{"n":5.5,"e":3861}],[-6,{"n":5,"e":3876}],[6,{"n":6,"e":6156}],[-5,{"n":5.5,"e":3882}],[5,{"n":7,"e":6161}],[4,{"n":4.5,"e":6171}],[3,{"n":6,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":6,"e":6201}]],"a":{"m":21,"a":26,"M":33,"n":19}}],[425,{"n":"Xeka","f":"","fp":"MD","r":14,"c":12,"s":{"s":23.5,"n":4,"a":5.88,"d":1.03,"Ss":10,"Sn":2,"Sa":5,"Os":108,"On":21,"Oa":5.14,"Od":0.59,"pm":21},"p":[[-27,{"n":5,"e":3664,"s":1}],[-26,{"n":5,"e":3670,"s":1}],[-24,{"n":5,"e":3689,"s":1}],[-23,{"n":5,"e":3699,"s":1}],[-22,{"n":4.5,"e":3717}],[-21,{"n":5.5,"e":3719,"s":1}],[-20,{"n":4.5,"e":3731}],[-18,{"n":5,"e":3752,"s":1}],[-17,{"n":5,"e":3758}],[-16,{"n":5,"e":3773,"s":1}],[-15,{"n":5.5,"e":3778}],[-14,{"n":4.5,"e":3795}],[-13,{"n":5,"e":3799,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":5,"e":3841}],[-8,{"n":5,"e":3854,"s":1}],[-7,{"n":5,"e":3861}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}],[2,{"n":7,"e":6191}],[1,{"n":6.5,"e":6201}]],"a":{"m":7,"a":15,"M":32,"n":10}}],[455,{"n":"Ikoné","f":"Jonathan","fp":"MO","r":17,"c":12,"s":{"s":30,"n":6,"a":5,"d":0.32,"Ss":30,"Sn":6,"Sa":5,"Sd":0.32,"Og":3,"Os":161.5,"On":30,"Oa":5.38,"Od":0.85,"pm":26,"pa":4},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":7,"e":3664}],[-26,{"n":6,"e":3670}],[-25,{"n":4,"e":3681}],[-24,{"n":5.5,"e":3689}],[-23,{"n":6,"e":3699}],[-22,{"n":5.5,"e":3717,"s":1}],[-21,{"n":5,"e":3719}],[-20,{"n":5.5,"e":3731}],[-19,{"n":6,"e":3740}],[-18,{"n":7,"e":3752,"g":1}],[-17,{"n":6.5,"e":3758}],[-16,{"n":6,"e":3773,"g":1}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":3,"e":3812}],[-11,{"n":6,"e":3819}],[-10,{"n":4,"e":3837}],[-9,{"n":5.5,"e":3841}],[-8,{"n":5.5,"e":3854,"s":1}],[-7,{"n":5,"e":3861}],[-6,{"n":6,"e":3876,"g":1}],[6,{"n":5,"e":6156,"s":1}],[-5,{"n":5,"e":3882}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5,"e":6171,"s":1}],[3,{"n":5.5,"e":6181}],[2,{"n":4.5,"e":6191}],[1,{"n":5,"e":6201}]],"a":{"m":18,"a":27,"M":41,"n":18}}],[482,{"n":"Bamba","f":"Jonathan","fp":"MO","r":19,"c":12,"s":{"g":2,"s":38,"n":6,"a":6.33,"d":0.68,"Sg":2,"Ss":38,"Sn":6,"Sa":6.33,"Sd":0.68,"Og":2,"Os":158,"On":28,"Oa":5.64,"Od":0.9,"pm":24,"pa":4},"p":[[-28,{"n":6.5,"e":3650}],[-27,{"n":6.5,"e":3664}],[-26,{"n":4.5,"e":3670}],[-25,{"n":6,"e":3681}],[-24,{"n":7,"e":3689}],[-23,{"n":6,"e":3699}],[-22,{"n":5.5,"e":3717}],[-21,{"n":5,"e":3719,"s":1}],[-20,{"n":5,"e":3731,"s":1}],[-19,{"n":3.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":6.5,"e":3758}],[-16,{"n":5.5,"e":3773}],[-15,{"n":5.5,"e":3778}],[-13,{"n":4.5,"e":3799}],[-12,{"n":5,"e":3812,"s":1}],[-11,{"n":4,"e":3819,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":5,"e":3841}],[-8,{"n":6,"e":3854}],[-6,{"n":6,"e":3876}],[6,{"n":6.5,"e":6156}],[-5,{"n":6,"e":3882}],[5,{"n":5.5,"e":6161}],[4,{"n":6.5,"e":6171}],[3,{"n":5.5,"e":6181}],[2,{"n":7,"e":6191,"g":1}],[1,{"n":7,"e":6201,"g":1}]],"a":{"m":17,"a":32,"M":71,"n":36}}],[819,{"n":"José Fonte","f":"","fp":"DC","r":15,"c":12,"s":{"s":35.5,"n":6,"a":5.92,"d":0.2,"Ss":35.5,"Sn":6,"Sa":5.92,"Sd":0.2,"Og":1,"Os":145.5,"On":27,"Oa":5.39,"Od":0.86,"pd":27},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":6,"e":3664}],[-26,{"n":6,"e":3670}],[-25,{"n":4.5,"e":3681}],[-24,{"n":6,"e":3689}],[-23,{"n":5.5,"e":3699}],[-22,{"n":6,"e":3717}],[-21,{"n":4.5,"e":3719}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":6,"e":3758}],[-16,{"n":5.5,"e":3773}],[-15,{"n":4,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5.5,"e":3799}],[-11,{"n":5,"e":3819}],[-10,{"n":6,"e":3837,"g":1}],[-9,{"n":4,"e":3841}],[-8,{"n":5,"e":3854}],[-6,{"n":5.5,"e":3876}],[6,{"n":6,"e":6156}],[-5,{"n":6,"e":3882}],[5,{"n":6,"e":6161}],[4,{"n":6,"e":6171}],[3,{"n":6,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":5.5,"e":6201}]],"a":{"m":18,"a":24,"M":32,"n":13}}],[1020,{"n":"Pied","f":"Jérémy","fp":"DL","r":6,"c":12,"s":{"s":10,"n":2,"a":5,"Os":33.5,"On":7,"Oa":4.79,"Od":0.81,"pd":7},"p":[[-20,{"n":5,"e":3731}],[-15,{"n":5.5,"e":3778}],[-10,{"n":3,"e":3837}],[-8,{"n":5,"e":3854}],[-5,{"n":5,"e":3882}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6191,"s":1}]],"fo":[[6181,[{"t":"Y"}]]]}],[1215,{"n":"Luiz Araújo","f":"","fp":"A","r":8,"c":12,"s":{"g":2,"s":33,"n":6,"a":5.5,"d":1,"Sg":2,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1,"Og":4,"Os":135,"On":26,"Oa":5.19,"Od":0.83,"pm":9,"pa":17},"p":[[-27,{"n":5,"e":3664,"s":1}],[-26,{"n":5,"e":3670,"s":1}],[-25,{"n":4.5,"e":3681,"s":1}],[-24,{"n":5,"e":3689,"s":1}],[-23,{"n":4.5,"e":3699,"s":1}],[-22,{"n":5,"e":3717,"s":1}],[-21,{"n":5,"e":3719}],[-20,{"n":6,"e":3731}],[-19,{"n":4,"e":3740,"s":1}],[-18,{"n":5,"e":3752,"s":1}],[-17,{"n":4.5,"e":3758,"s":1}],[-15,{"n":5,"e":3778,"s":1}],[-14,{"n":5.5,"e":3795}],[-13,{"n":4.5,"e":3799,"s":1}],[-12,{"n":4.5,"e":3812,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":5,"e":3841,"s":1}],[-8,{"n":7,"e":3854,"g":1}],[-6,{"n":5,"e":3876}],[6,{"n":5,"e":6156}],[-5,{"n":7,"e":3882,"g":1}],[5,{"n":6,"e":6161}],[4,{"n":7,"e":6171,"g":1}],[3,{"n":6,"e":6181,"g":1,"s":1}],[2,{"n":4.5,"e":6191,"s":1}],[1,{"n":4.5,"e":6201,"s":1}]],"fo":[[6156,[{"t":"Y"}]]],"a":{"m":9,"a":14,"M":19,"n":12}}],[2021,{"n":"Renato Sanches","f":"","fp":"MO","r":16,"c":12,"s":{"g":1,"s":22.5,"n":4,"a":5.63,"d":1.6,"Sg":1,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":1.89,"Og":4,"Os":122.5,"On":22,"Oa":5.57,"Od":1.16,"pm":22},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":7,"e":3664}],[-26,{"n":6.5,"e":3670,"g":1}],[-25,{"n":4.5,"e":3681}],[-24,{"n":7.5,"e":3689,"g":1}],[-23,{"n":5,"e":3699}],[-22,{"n":4.5,"e":3717}],[-21,{"n":5.5,"e":3719}],[-20,{"n":4,"e":3731}],[-19,{"n":3.5,"e":3740}],[-18,{"n":7.5,"e":3752,"g":1}],[-17,{"n":6,"e":3758}],[-16,{"n":5.5,"e":3773}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5.5,"e":3795,"s":1}],[-7,{"n":5.5,"e":3861}],[-6,{"n":5.5,"e":3876,"s":1}],[6,{"n":8,"e":6156,"g":1}],[-5,{"n":5,"e":3882,"s":1}],[5,{"n":5,"e":6161}],[4,{"n":4.5,"e":6171,"s":1}],[1,{"n":5,"e":6201}]],"fo":[[6171,[{"t":"Y"}]]],"a":{"m":17,"a":27,"M":51,"n":26}}],[2027,{"n":"Karnezis","f":"Orestis","fp":"G","r":7,"c":12}],[2039,{"n":"Soumaré","f":"Boubakary","fp":"MD","r":8,"c":12,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Os":103,"On":21,"Oa":4.9,"Od":0.78,"pm":21},"p":[[-28,{"n":4.5,"e":3650,"s":1}],[-21,{"n":4,"e":3719}],[-20,{"n":3.5,"e":3731}],[-19,{"n":3.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":5,"e":3758,"s":1}],[-16,{"n":5.5,"e":3773}],[-14,{"n":4.5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":4.5,"e":3812}],[-11,{"n":6,"e":3819}],[-10,{"n":4,"e":3837}],[-9,{"n":5,"e":3841,"s":1}],[-8,{"n":6.5,"e":3854}],[-7,{"n":5,"e":3861,"s":1}],[-6,{"n":5.5,"e":3876}],[-5,{"n":6,"e":3882}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5,"e":6171}],[3,{"n":4.5,"e":6181}],[1,{"n":5,"e":6201,"s":1}]]}],[2082,{"n":"Flips","f":"Alexis","fp":"MO","r":1,"c":12,"s":{"Os":60,"On":12,"Oa":5,"Od":0.43,"pm":12},"p":[[-28,{"n":5,"e":4788,"s":1}],[-27,{"n":5,"e":4806,"s":1}],[-26,{"n":5,"e":4808,"s":1}],[-25,{"n":5,"e":4825,"s":1}],[-23,{"n":5,"e":4845}],[-22,{"n":4.5,"e":4848,"s":1}],[-20,{"n":5,"e":4868,"s":1}],[-19,{"n":5,"e":4886,"s":1}],[-18,{"n":6,"e":4888}],[-17,{"n":5.5,"e":4899}],[-10,{"n":4.5,"e":4972,"s":1}],[-8,{"n":4.5,"e":4991}]]}],[2328,{"n":"Weah","f":"Timothy","fp":"A","r":5,"c":12,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":22,"On":5,"Oa":4.4,"Od":0.22,"pa":5},"p":[[-25,{"n":4.5,"e":3681,"s":1}],[6,{"n":4.5,"e":6156,"s":1}],[4,{"n":4,"e":6171,"s":1}],[3,{"n":4.5,"e":6181,"s":1}],[2,{"n":4.5,"e":6191,"s":1}]]}],[2714,{"n":"Zeki Çelik","f":"Mehmet","fp":"DL","r":10,"c":12,"s":{"g":1,"s":33.5,"n":6,"a":5.58,"d":1.24,"Sg":1,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.24,"Og":1,"Os":120,"On":25,"Oa":4.8,"Od":1.13,"pd":23,"pm":2},"p":[[-28,{"n":5.5,"e":3650}],[-27,{"n":5,"e":3664}],[-26,{"n":5,"e":3670}],[-25,{"n":4,"e":3681}],[-24,{"n":5,"e":3689}],[-23,{"n":4.5,"e":3699}],[-22,{"n":5,"e":3717}],[-21,{"n":3.5,"e":3719}],[-19,{"n":2,"e":3740}],[-18,{"n":4.5,"e":3752}],[-17,{"n":5,"e":3758}],[-16,{"n":5,"e":3773}],[-14,{"n":3.5,"e":3795}],[-13,{"n":4.5,"e":3799}],[-12,{"n":3,"e":3812}],[-11,{"n":6,"e":3819}],[-9,{"n":4.5,"e":3841}],[-7,{"n":6,"e":3861}],[-6,{"n":5,"e":3876}],[6,{"n":8,"e":6156,"g":1}],[5,{"n":5.5,"e":6161}],[4,{"n":5,"e":6171}],[3,{"n":5,"e":6181,"s":1}],[2,{"n":5.5,"e":6191}],[1,{"n":4.5,"e":6201}]],"fo":[[6191,[{"t":"I"},{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":20,"n":11}}],[2771,{"n":"Zekaj","f":"Arton","fp":"MD","r":3,"c":12}],[2784,{"n":"Ouro-Sama","f":"Hakim","fp":"DC","r":1,"c":12}],[3359,{"n":"Reinildo","f":"","fp":"DL","r":8,"c":12,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Oao":1,"Os":79,"On":17,"Oa":4.65,"Od":0.68,"pd":15,"pm":2},"p":[[-28,{"n":5,"e":3650,"s":1}],[-25,{"n":3,"e":3681,"a":1}],[-24,{"n":5,"e":3689}],[-23,{"n":5,"e":3699}],[-22,{"n":5,"e":3717}],[-21,{"n":3.5,"e":3719}],[-15,{"n":5,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":4,"e":3812}],[-11,{"n":5,"e":3819}],[-8,{"n":5,"e":3854}],[-7,{"n":5,"e":3861,"s":1}],[-6,{"n":5,"e":3876}],[-5,{"n":5,"e":3882,"s":1}],[4,{"n":5,"e":6171,"s":1}],[1,{"n":3.5,"e":6201}]],"fo":[[6201,[{"t":"R"}]]]}],[4031,{"n":"Bradaric","f":"Domagoj","fp":"DL","r":8,"c":12,"s":{"s":32.5,"n":6,"a":5.42,"d":1.02,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.02,"Os":103.5,"On":20,"Oa":5.18,"Od":0.89,"pd":20},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":5,"e":3664}],[-26,{"n":6.5,"e":3670}],[-20,{"n":4.5,"e":3731}],[-19,{"n":3,"e":3740}],[-18,{"n":5,"e":3752}],[-17,{"n":6,"e":3758}],[-16,{"n":5,"e":3773}],[-15,{"n":5,"e":3778,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":4.5,"e":3841}],[-7,{"n":5.5,"e":3861}],[-6,{"n":4.5,"e":3876,"s":1}],[6,{"n":6,"e":6156}],[-5,{"n":5.5,"e":3882}],[5,{"n":5,"e":6161}],[4,{"n":5,"e":6171}],[3,{"n":7,"e":6181}],[2,{"n":5.5,"e":6191}],[1,{"n":4,"e":6201,"s":1}]],"fo":[[6171,[{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":9,"a":12,"M":25,"n":14}}],[6015,{"n":"Tiago Djaló","f":"","fp":"DC","r":5,"c":12,"s":{"Os":17,"On":4,"Oa":4.25,"Od":0.87,"pd":4},"p":[[-25,{"n":3.5,"e":3681}],[-14,{"n":4,"e":3795}],[-12,{"n":4,"e":3812}],[-11,{"n":5.5,"e":3819}]]}],[6017,{"n":"Yazici","f":"Yusuf","fp":"MO","r":7,"c":12,"s":{"s":24.5,"n":5,"a":4.9,"d":0.22,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":96,"On":19,"Oa":5.05,"Od":0.81,"pm":17,"pa":2},"p":[[-19,{"n":4,"e":3740,"s":1}],[-18,{"n":5,"e":3752,"s":1}],[-17,{"n":5,"e":3758,"s":1}],[-16,{"n":5,"e":3773,"s":1}],[-15,{"n":5,"e":3778}],[-14,{"n":5.5,"e":3795,"s":1}],[-13,{"n":5,"e":3799}],[-12,{"n":6,"e":3812}],[-11,{"n":7,"e":3819,"g":1}],[-10,{"n":6,"e":3837,"s":1}],[-9,{"n":4.5,"e":3841,"s":1}],[-8,{"n":3,"e":3854}],[-7,{"n":5.5,"e":3861}],[-6,{"n":5,"e":3876,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}],[3,{"n":5,"e":6181,"s":1}],[2,{"n":5,"e":6191,"s":1}],[1,{"n":4.5,"e":6201,"s":1}]],"a":{"m":6,"a":8,"M":10,"n":6}}],[6163,{"n":"Lihadji","f":"Isaac","fp":"A","r":4,"c":12,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":4},"p":[[-9,{"n":4.5,"e":3838,"s":1}],[-7,{"n":4.5,"e":3860,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}]]}],[6197,{"n":"Niasse","f":"Cheikh","fp":"MD","r":3,"c":12}],[6506,{"n":"Ouattara","f":"Fadiga","fp":"A","r":1,"c":12}],[6803,{"n":"Pizzuto","f":"Eugenio","fp":"MD","r":4,"c":12}],[6809,{"n":"Botman","f":"Sven","fp":"DC","r":13,"c":12,"s":{"s":35,"n":6,"a":5.83,"d":0.52,"Ss":35,"Sn":6,"Sa":5.83,"Sd":0.52,"Os":35,"On":6,"Oa":5.83,"Od":0.52,"pd":6},"p":[[6,{"n":6,"e":6156}],[5,{"n":6.5,"e":6161}],[4,{"n":5.5,"e":6171}],[3,{"n":6,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":5,"e":6201}]],"a":{"m":13,"a":16,"M":25,"n":30}}],[6810,{"n":"Yilmaz","f":"Burak","fp":"A","r":13,"c":12,"s":{"g":2,"s":30.5,"n":6,"a":5.08,"d":1.2,"Sg":2,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":1.2,"Og":2,"Os":30.5,"On":6,"Oa":5.08,"Od":1.2,"pa":6},"p":[[6,{"n":7,"e":6156,"g":1}],[5,{"n":6,"e":6161,"g":1}],[4,{"n":4,"e":6171}],[3,{"n":5,"e":6181}],[2,{"n":4.5,"e":6191}],[1,{"n":4,"e":6201,"s":1}]],"a":{"m":14,"a":24,"M":34,"n":17}}],[6865,{"n":"Chevalier","f":"Lucas","fp":"G","r":1,"c":12}],[6867,{"n":"David","f":"Jonathan Christian","fp":"A","r":16,"c":12,"s":{"s":29,"n":6,"a":4.83,"d":0.41,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.41,"Os":29,"On":6,"Oa":4.83,"Od":0.41,"pa":6},"p":[[6,{"n":5,"e":6156}],[5,{"n":5,"e":6161}],[4,{"n":5,"e":6171}],[3,{"n":5,"e":6181}],[2,{"n":4,"e":6191}],[1,{"n":5,"e":6201}]],"a":{"m":17,"a":41,"M":68,"n":33}}],[7268,{"n":"Innocenti","f":"Nassim","fp":"DC","r":2,"c":12}],[127,{"n":"Marveaux","f":"Sylvain","fp":"MO","r":9,"c":6,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":108,"On":20,"Oa":5.4,"Od":0.99,"pm":20},"p":[[6,{"n":5,"e":6151,"s":1}],[2,{"n":4.5,"e":6195,"s":1}],[1,{"n":5,"e":6202,"s":1}],[-27,{"n":3.5,"e":4802}],[-26,{"n":5,"e":4816}],[-25,{"n":5.5,"e":4823}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":8,"e":4842,"g":1}],[-22,{"n":4.5,"e":4856,"s":1}],[-21,{"n":7,"e":4864,"g":1}],[-20,{"n":5,"e":4873}],[-18,{"n":5.5,"e":4893}],[-16,{"n":5.5,"e":4913}],[-15,{"n":6,"e":4920}],[-14,{"n":5.5,"e":4932}],[-13,{"n":5,"e":4945,"s":1}],[-12,{"n":5,"e":4951,"s":1}],[-8,{"n":5,"e":4992}],[-7,{"n":7,"e":5000,"g":1}],[3,{"n":5.5,"e":6182}]],"a":{"m":10,"a":13,"M":15,"n":6}}],[154,{"n":"Delaplace","f":"Jonathan","fp":"MD","r":4,"c":6,"s":{"s":5.5,"n":1,"a":5.5,"Os":42,"On":8,"Oa":5.25,"Od":0.53,"pd":7,"pm":1},"p":[[5,{"n":5.5,"e":6162,"s":1}],[-28,{"n":4.5,"e":4788}],[-15,{"n":5,"e":4920}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951}],[-11,{"n":6,"e":4964}],[-10,{"n":5,"e":4972}],[-9,{"n":6,"e":4979}]]}],[164,{"n":"Le Goff","f":"Vincent","fp":"DL","r":14,"c":6,"s":{"s":25.5,"n":6,"a":4.25,"d":0.76,"Ss":25.5,"Sn":6,"Sa":4.25,"Sd":0.76,"Og":1,"Os":137,"On":27,"Oa":5.07,"Od":0.82,"pd":27},"p":[[-28,{"n":4.5,"e":4788}],[-27,{"n":4.5,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":5,"e":4823}],[-24,{"n":5.5,"e":4831}],[-23,{"n":6.5,"e":4842,"g":1}],[-21,{"n":5,"e":4864}],[-20,{"n":5.5,"e":4873}],[-19,{"n":4.5,"e":4887}],[-18,{"n":5,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":5,"e":4913}],[-15,{"n":6.5,"e":4920}],[-14,{"n":5,"e":4932}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951}],[-11,{"n":6,"e":4964}],[-10,{"n":5,"e":4972}],[-9,{"n":6.5,"e":4979}],[-8,{"n":4.5,"e":4992}],[-7,{"n":5,"e":5000}],[6,{"n":4.5,"e":6151}],[5,{"n":5,"e":6162}],[4,{"n":3,"e":6168}],[3,{"n":4,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5,"e":6202}]],"a":{"m":18,"a":26,"M":58,"n":6}}],[248,{"n":"Morel","f":"Jérémy","fp":"DC","r":10,"c":6,"s":{"s":25.5,"n":6,"a":4.25,"d":0.82,"Ss":25.5,"Sn":6,"Sa":4.25,"Sd":0.82,"Os":109,"On":23,"Oa":4.74,"Od":0.81,"pd":23},"p":[[-20,{"n":4,"e":3735}],[-18,{"n":5.5,"e":3753}],[-16,{"n":5.5,"e":3774}],[-10,{"n":3,"e":3833}],[-8,{"n":5,"e":3851}],[-7,{"n":4,"e":3864}],[-24,{"n":5,"e":3696}],[-21,{"n":6,"e":3725}],[-19,{"n":6,"e":3746}],[-17,{"n":4.5,"e":3766}],[-15,{"n":5,"e":3786}],[-14,{"n":4.5,"e":3792}],[-13,{"n":5,"e":3806}],[-11,{"n":5,"e":3825,"s":1}],[-9,{"n":5,"e":3845}],[-6,{"n":5,"e":3876}],[6,{"n":4,"e":6151}],[-5,{"n":5.5,"e":3880}],[5,{"n":5,"e":6162}],[4,{"n":3.5,"e":6168}],[3,{"n":4,"e":6182}],[2,{"n":3.5,"e":6195}],[1,{"n":5.5,"e":6202}]],"a":{"m":11,"a":12,"M":14,"n":6}}],[309,{"n":"Dreyer","f":"Matthieu","fp":"G","r":7,"c":6}],[340,{"n":"Lemoine","f":"Fabien","fp":"MD","r":12,"c":6,"s":{"s":28,"n":6,"a":4.67,"d":0.75,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.75,"Os":127,"On":25,"Oa":5.08,"Od":0.81,"pm":25},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4802}],[-25,{"n":4.5,"e":4823}],[-24,{"n":5,"e":4831}],[-21,{"n":5,"e":4864}],[-20,{"n":6,"e":4873}],[-19,{"n":5,"e":4887}],[-18,{"n":5,"e":4893}],[-17,{"n":7,"e":4900}],[-16,{"n":6,"e":4913}],[-15,{"n":5,"e":4920}],[-14,{"n":5.5,"e":4932}],[-13,{"n":5.5,"e":4945}],[-12,{"n":4,"e":4951}],[-11,{"n":3.5,"e":4964}],[-10,{"n":5.5,"e":4972}],[-9,{"n":6,"e":4979}],[-8,{"n":4.5,"e":4992}],[-7,{"n":6,"e":5000}],[6,{"n":4,"e":6151}],[5,{"n":5.5,"e":6162}],[4,{"n":5,"e":6168}],[3,{"n":4,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5.5,"e":6202}]]}],[468,{"n":"Mara","f":"Mohamed","fp":"A","r":1,"c":6,"s":{"Os":23.5,"On":5,"Oa":4.7,"Od":0.27,"pm":1,"pa":4},"p":[[-28,{"n":null,"e":3657,"d":1}],[-16,{"n":4.5,"e":4914,"s":1}],[-8,{"n":5,"e":4995,"s":1}],[-12,{"n":4.5,"e":4954,"s":1}],[-9,{"n":4.5,"e":4984,"s":1}],[-7,{"n":5,"e":5002}]]}],[570,{"n":"Hamel","f":"Pierre-Yves","fp":"A","r":16,"c":6,"s":{"g":2,"s":27.5,"n":5,"a":5.5,"d":0.61,"Sg":1,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.29,"Og":10,"Os":132,"On":26,"Oa":5.08,"Od":1.23,"pa":26},"p":[[-28,{"n":4,"e":4788}],[-27,{"n":3.5,"e":4802}],[-26,{"n":6,"e":4816,"g":1}],[-25,{"n":4.5,"e":4823,"s":1}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":4.5,"e":4842}],[-22,{"n":4,"e":4856,"s":1}],[-21,{"n":4.5,"e":4864}],[-20,{"n":6,"e":4873,"g":1}],[-19,{"n":4.5,"e":4887,"s":1}],[-18,{"n":4,"e":4893}],[-17,{"n":8.5,"e":4900,"g":2}],[-15,{"n":5,"e":4920}],[-14,{"n":7,"e":4932,"g":2}],[-13,{"n":3.5,"e":4945}],[-12,{"n":4,"e":4951}],[-11,{"n":6.5,"e":4964,"g":1}],[-10,{"n":3.5,"e":4972}],[-9,{"n":4,"e":4979}],[-8,{"n":6,"e":4992,"g":1}],[-7,{"n":6,"e":5000}],[6,{"n":6,"e":6151,"g":1}],[5,{"n":5.5,"e":6162,"s":1}],[4,{"n":5.5,"e":6168,"s":1}],[2,{"n":4.5,"e":6195,"s":1}],[1,{"n":6,"e":6202,"g":1,"s":1}]],"fo":[[6162,[{"t":"Y"}]],[6168,[{"t":"Y"}]]],"a":{"m":17,"a":31,"M":62,"n":12}}],[1273,{"n":"Boisgard","f":"Quentin","fp":"MO","r":12,"c":6,"s":{"s":20,"n":4,"a":5,"d":1.08,"Og":1,"Os":103,"On":21,"Oa":4.9,"Od":0.7,"pd":1,"pm":17,"pa":3},"p":[[-28,{"n":5,"e":3649,"g":1}],[-27,{"n":6,"e":3667}],[-26,{"n":5,"e":3670,"s":1}],[-24,{"n":5.5,"e":3691}],[-23,{"n":4.5,"e":3707}],[-22,{"n":5,"e":3708,"s":1}],[-21,{"n":3.5,"e":3720}],[-20,{"n":5,"e":3737}],[-19,{"n":4,"e":3743}],[-18,{"n":5,"e":3757}],[-16,{"n":4.5,"e":3777}],[-15,{"n":5,"e":3782}],[-14,{"n":5.5,"e":3797}],[-13,{"n":5.5,"e":3802,"s":1}],[-11,{"n":5,"e":3825,"s":1}],[-7,{"n":4,"e":3867}],[-6,{"n":5,"e":3874,"s":1}],[4,{"n":4.5,"e":6168}],[3,{"n":5,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":6.5,"e":6202}]],"fo":[[6168,[{"t":"I"}]],[6182,[{"t":"Y"}]],[6202,[{"t":"Y"}]]],"a":{"m":12,"a":20,"M":26,"n":8}}],[1404,{"n":"Monconduit","f":"Thomas","fp":"MD","r":9,"c":6,"s":{"g":1,"s":15,"n":3,"a":5,"d":0.87,"Sg":1,"Ss":15,"Sn":3,"Sa":5,"Sd":0.87,"Og":1,"Os":84.5,"On":19,"Oa":4.45,"Od":0.66,"pm":19},"p":[[-16,{"n":5,"e":3768,"s":1}],[-20,{"n":3.5,"e":3728}],[-19,{"n":4,"e":3744}],[-28,{"n":4.5,"e":3651}],[-27,{"n":4,"e":3658}],[-26,{"n":3.5,"e":3677}],[-24,{"n":4.5,"e":3688}],[-23,{"n":4.5,"e":3704}],[-22,{"n":5.5,"e":3708}],[-21,{"n":4.5,"e":3718}],[-17,{"n":4,"e":3760}],[-14,{"n":5,"e":3788,"s":1}],[-13,{"n":3.5,"e":3806}],[-11,{"n":5,"e":3826,"s":1}],[-7,{"n":4,"e":3858}],[6,{"n":4.5,"e":6151}],[-5,{"n":4.5,"e":3878,"s":1}],[5,{"n":4.5,"e":6162,"s":1}],[4,{"n":6,"e":6168,"g":1,"s":1}]]}],[2615,{"n":"Fontaine","f":"Thomas","fp":"DC","r":8,"c":6,"s":{"s":12.5,"n":3,"a":4.17,"d":1.26,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":1.26,"Oao":1,"Os":81.5,"On":17,"Oa":4.79,"Od":1.06,"pd":17},"p":[[-28,{"n":4.5,"e":4788,"s":1}],[-27,{"n":3.5,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":4.5,"e":4823}],[-24,{"n":4.5,"e":4831}],[-23,{"n":4,"e":4842,"a":1}],[-22,{"n":7,"e":4856}],[-21,{"n":5,"e":4864,"s":1}],[-19,{"n":3.5,"e":4887}],[-18,{"n":6,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":5,"e":4913,"s":1}],[-13,{"n":5,"e":4945}],[-11,{"n":4.5,"e":4964,"s":1}],[6,{"n":3,"e":6151}],[5,{"n":5.5,"e":6162}],[4,{"n":4,"e":6168}]]}],[2666,{"n":"Bozok","f":"Umut","fp":"A","r":6,"c":6,"s":{"s":18,"n":4,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":79,"On":17,"Oa":4.65,"Od":0.77,"pa":17},"p":[[-28,{"n":4,"e":4788,"s":1}],[-27,{"n":5,"e":4802,"s":1}],[-21,{"n":6,"e":4864,"g":1,"s":1}],[-20,{"n":5,"e":4873,"s":1}],[-19,{"n":5,"e":4887}],[-16,{"n":5.5,"e":4913}],[-14,{"n":5,"e":4932,"s":1}],[-13,{"n":3,"e":4945}],[-12,{"n":4,"e":4951}],[-11,{"n":6,"e":4964,"g":1}],[-10,{"n":4.5,"e":4972,"s":1}],[-9,{"n":4,"e":4979,"s":1}],[-8,{"n":4,"e":4992,"s":1}],[6,{"n":4.5,"e":6151,"s":1}],[4,{"n":4.5,"e":6168,"s":1}],[3,{"n":4.5,"e":6182,"s":1}],[2,{"n":4.5,"e":6195,"s":1}]]}],[3358,{"n":"Laurienté","f":"Armand","fp":"MO","r":4,"c":6,"s":{"Og":2,"Os":102,"On":19,"Oa":5.37,"Od":0.83,"pm":19},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4802}],[-26,{"n":5.5,"e":4816,"s":1}],[-25,{"n":4.5,"e":4823}],[-24,{"n":5.5,"e":4831}],[-23,{"n":7.5,"e":4842,"g":1}],[-22,{"n":6,"e":4856,"s":1}],[-21,{"n":5.5,"e":4864}],[-20,{"n":5,"e":4873,"s":1}],[-19,{"n":5,"e":4887,"s":1}],[-18,{"n":5.5,"e":4893}],[-17,{"n":6.5,"e":4900,"g":1,"s":1}],[-16,{"n":4.5,"e":4913}],[-15,{"n":6,"e":4920}],[-14,{"n":6.5,"e":4932}],[-13,{"n":4.5,"e":4945,"s":1}],[-10,{"n":4.5,"e":4972,"s":1}],[-8,{"n":4.5,"e":4992,"s":1}],[-7,{"n":5,"e":5000,"s":1}]]}],[3682,{"n":"Chalobah","f":"Trevoh","fp":"MD","r":6,"c":6,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[3,{"n":5,"e":6182,"s":1}]]}],[3805,{"n":"Nardi","f":"Paul","fp":"G","r":14,"c":6,"s":{"s":28,"n":6,"a":4.67,"d":0.75,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.75,"Os":148,"On":28,"Oa":5.29,"Od":1.08,"pg":28},"p":[[-28,{"n":6,"e":4788}],[-27,{"n":4,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":3.5,"e":4823}],[-24,{"n":6,"e":4831}],[-23,{"n":4,"e":4842}],[-22,{"n":6.5,"e":4856}],[-21,{"n":4,"e":4864}],[-20,{"n":6,"e":4873}],[-19,{"n":4.5,"e":4887}],[-18,{"n":6,"e":4893}],[-17,{"n":7,"e":4900}],[-16,{"n":5.5,"e":4913}],[-15,{"n":5,"e":4920}],[-14,{"n":4.5,"e":4932}],[-13,{"n":6,"e":4945}],[-12,{"n":6,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":6,"e":4972}],[-9,{"n":6,"e":4979}],[-8,{"n":5,"e":4992}],[-7,{"n":8,"e":5000}],[6,{"n":4.5,"e":6151}],[5,{"n":6,"e":6162}],[4,{"n":4,"e":6168}],[3,{"n":4.5,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5,"e":6202}]],"fo":[[6162,[{"t":"Y"}]]]}],[4344,{"n":"Gravillon","f":"Andreaw","fp":"DC","r":9,"c":6}],[4855,{"n":"Le Fée","f":"Enzo","fp":"MO","r":10,"c":6,"s":{"s":30.5,"n":6,"a":5.08,"d":0.74,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.74,"Os":142.5,"On":27,"Oa":5.28,"Od":0.68,"pm":27},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4802,"s":1}],[-26,{"n":6,"e":4816}],[-25,{"n":5,"e":4823,"s":1}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":6.5,"e":4842}],[-22,{"n":7,"e":4856}],[-20,{"n":5,"e":4873,"s":1}],[-19,{"n":5.5,"e":4887}],[-18,{"n":5.5,"e":4893}],[-17,{"n":5.5,"e":4900}],[-16,{"n":4.5,"e":4913,"s":1}],[-15,{"n":5,"e":4920,"s":1}],[-14,{"n":5.5,"e":4932}],[-13,{"n":6,"e":4945,"s":1}],[-12,{"n":4.5,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":5.5,"e":4972}],[-9,{"n":4.5,"e":4979}],[-8,{"n":5,"e":4992}],[-7,{"n":6,"e":5000}],[6,{"n":5,"e":6151,"s":1}],[5,{"n":5,"e":6162}],[4,{"n":5,"e":6168}],[3,{"n":4.5,"e":6182,"s":1}],[2,{"n":4.5,"e":6195}],[1,{"n":6.5,"e":6202}]],"fo":[[6162,[{"t":"I"}]],[6182,[{"t":"Y"}]],[6195,[{"t":"Y"}]]],"a":{"m":11,"a":12,"M":15,"n":16}}],[4877,{"n":"Bartouche","f":"Teddy","fp":"G","r":1,"c":6}],[4900,{"n":"Ponceau","f":"Julien","fp":"MO","r":2,"c":6,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-26,{"n":5,"e":4816,"s":1}]]}],[4952,{"n":"Wadja","f":"Franklin","fp":"MD","r":4,"c":6,"s":{"s":15,"n":3,"a":5,"Os":41,"On":8,"Oa":5.13,"Od":0.58,"pm":8},"p":[[-26,{"n":5,"e":4816,"s":1}],[-22,{"n":6.5,"e":4856}],[-19,{"n":5,"e":4887,"s":1}],[-18,{"n":5,"e":4893,"s":1}],[-9,{"n":4.5,"e":4979}],[5,{"n":5,"e":6162,"s":1}],[4,{"n":5,"e":6168,"s":1}],[1,{"n":5,"e":6202,"s":1}]],"fo":[[6202,[{"t":"Y"}]]]}],[5009,{"n":"Mendes","f":"Houboulang","fp":"DL","r":9,"c":6,"s":{"s":22.5,"n":6,"a":3.75,"d":0.82,"Ss":22.5,"Sn":6,"Sa":3.75,"Sd":0.82,"Os":39.5,"On":9,"Oa":4.39,"Od":1.22,"pd":9},"p":[[-26,{"n":5.5,"e":4816}],[-22,{"n":6.5,"e":4856}],[-20,{"n":5,"e":4873}],[6,{"n":3.5,"e":6151}],[5,{"n":5,"e":6162}],[4,{"n":3,"e":6168}],[3,{"n":3,"e":6182}],[2,{"n":3.5,"e":6195}],[1,{"n":4.5,"e":6202}]]}],[5017,{"n":"Diarra","f":"Stéphane","fp":"A","r":7,"c":6,"s":{"s":22.5,"n":5,"a":4.5,"d":0.87,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":3,"Os":110.5,"On":22,"Oa":5.02,"Od":1.09,"pm":15,"pa":7},"p":[[-20,{"n":5.5,"e":4872}],[-15,{"n":5,"e":4919}],[-13,{"n":4.5,"e":4942}],[-12,{"n":5,"e":4950}],[-11,{"n":5,"e":4967,"s":1}],[-7,{"n":3.5,"e":5005}],[-28,{"n":7,"e":4789}],[-27,{"n":6,"e":4801}],[-26,{"n":4.5,"e":4808,"s":1}],[-25,{"n":5,"e":4822,"s":1}],[-19,{"n":7,"e":4884,"g":1,"s":1}],[-18,{"n":5,"e":4892,"s":1}],[-17,{"n":5,"e":4906,"s":1}],[-16,{"n":4,"e":4912}],[-14,{"n":4.5,"e":4931}],[-9,{"n":4,"e":4982}],[-8,{"n":7.5,"e":4991,"g":2}],[6,{"n":4.5,"e":6151,"s":1}],[4,{"n":5,"e":6168,"s":1}],[3,{"n":3,"e":6182}],[2,{"n":5,"e":6195,"s":1}],[1,{"n":5,"e":6202}]],"fo":[[6202,[{"t":"I"}]],[6182,[{"t":"Y"}]]]}],[5033,{"n":"Wissa","f":"Yoane","fp":"A","r":19,"c":6,"s":{"g":3,"s":34.5,"n":6,"a":5.75,"d":1.33,"Sg":3,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":1.33,"Og":14,"Os":167.5,"On":28,"Oa":5.98,"Od":1.24,"pm":26,"pa":2},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":4.5,"e":4802}],[-26,{"n":5,"e":4816}],[-25,{"n":5,"e":4823}],[-24,{"n":7,"e":4831,"g":1}],[-23,{"n":4.5,"e":4842}],[-22,{"n":8,"e":4856,"g":2}],[-21,{"n":5.5,"e":4864}],[-20,{"n":8,"e":4873,"g":1}],[-19,{"n":5.5,"e":4887}],[-18,{"n":5,"e":4893,"s":1}],[-17,{"n":6.5,"e":4900}],[-16,{"n":5.5,"e":4913,"g":1}],[-15,{"n":8,"e":4920,"g":2}],[-14,{"n":7,"e":4932,"g":1}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951,"s":1}],[-11,{"n":5,"e":4964}],[-10,{"n":6,"e":4972}],[-9,{"n":7.5,"e":4979,"g":1}],[-8,{"n":7.5,"e":4992,"g":1}],[-7,{"n":7,"e":5000,"g":1}],[6,{"n":5,"e":6151}],[5,{"n":7,"e":6162,"g":1}],[4,{"n":5,"e":6168}],[3,{"n":6,"e":6182,"g":1}],[2,{"n":4,"e":6195}],[1,{"n":7.5,"e":6202,"g":1}]],"fo":[[6151,[{"t":"Y"}]]],"a":{"m":19,"a":29,"M":66,"n":57}}],[5056,{"n":"Laporte","f":"Julien","fp":"DC","r":13,"c":6,"s":{"s":20.5,"n":5,"a":4.1,"d":0.89,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Og":1,"Os":116.5,"On":23,"Oa":5.07,"Od":1.04,"pd":23},"p":[[-28,{"n":4.5,"e":4788}],[-27,{"n":4,"e":4802}],[-26,{"n":5.5,"e":4816}],[-25,{"n":5.5,"e":4823}],[-24,{"n":3.5,"e":4831}],[-23,{"n":5.5,"e":4842}],[-22,{"n":7,"e":4856}],[-21,{"n":5,"e":4864}],[-20,{"n":5,"e":4873}],[-16,{"n":7,"e":4913,"g":1}],[-15,{"n":6,"e":4920}],[-14,{"n":5,"e":4932}],[-12,{"n":5,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":6,"e":4972}],[-9,{"n":5,"e":4979}],[-8,{"n":6,"e":4992}],[-7,{"n":6,"e":5000}],[6,{"n":3.5,"e":6151}],[5,{"n":5,"e":6162}],[3,{"n":3,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5,"e":6202}]],"fo":[[6182,[{"t":"Y"}]],[6202,[{"t":"Y"}]]]}],[5065,{"n":"Hergault","f":"Jerome","fp":"DL","r":9,"c":6,"s":{"Os":50.5,"On":10,"Oa":5.05,"Od":0.76,"pd":10},"p":[[-27,{"n":4,"e":4802}],[-25,{"n":5,"e":4823}],[-24,{"n":4,"e":4831}],[-23,{"n":5,"e":4842}],[-21,{"n":6,"e":4864}],[-19,{"n":5,"e":4887}],[-18,{"n":6,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":4.5,"e":4913}],[-15,{"n":5,"e":4920,"s":1}]]}],[5100,{"n":"Grbic","f":"Adrian","fp":"A","r":17,"c":6,"s":{"g":2,"s":29.5,"n":6,"a":4.92,"d":1.43,"Sg":2,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":1.43,"Og":14,"Os":150,"On":26,"Oa":5.77,"Od":1.31,"pa":26},"p":[[-28,{"n":7,"e":4791,"g":1}],[-27,{"n":6,"e":4803}],[-26,{"n":5,"e":4810}],[-24,{"n":6.5,"e":4830}],[-23,{"n":4.5,"e":4838}],[-20,{"n":9,"e":4870,"g":3}],[-17,{"n":6.5,"e":4907,"g":1}],[-16,{"n":6,"e":4910}],[-14,{"n":5,"e":4929}],[-12,{"n":7,"e":4949,"g":1}],[-11,{"n":4,"e":4962}],[-10,{"n":4.5,"e":4976}],[-9,{"n":6,"e":4980,"g":1}],[-25,{"n":6.5,"e":4823}],[-22,{"n":7,"e":4850,"g":1}],[-21,{"n":6,"e":4863,"g":1}],[-18,{"n":6.5,"e":4890,"g":1,"s":1}],[-15,{"n":6,"e":4918,"g":1}],[-8,{"n":7,"e":4995,"g":1}],[-7,{"n":4.5,"e":5000}],[6,{"n":5,"e":6151,"s":1}],[5,{"n":4.5,"e":6162}],[4,{"n":4,"e":6168}],[3,{"n":6,"e":6182,"g":1}],[2,{"n":3,"e":6195}],[1,{"n":7,"e":6202,"g":1}]],"fo":[[6162,[{"t":"I"}]]],"a":{"m":18,"a":28,"M":69,"n":63}}],[5162,{"n":"Abergel","f":"Laurent","fp":"DL","r":17,"c":6,"s":{"s":30.5,"n":6,"a":5.08,"d":0.86,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.86,"Og":2,"Os":139.5,"On":26,"Oa":5.37,"Od":0.99,"pd":3,"pm":23},"p":[[-28,{"n":4,"e":4788}],[-27,{"n":5,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":5,"e":4823}],[-24,{"n":5,"e":4831}],[-23,{"n":6.5,"e":4842}],[-22,{"n":7.5,"e":4856,"g":1}],[-21,{"n":5,"e":4864}],[-20,{"n":4.5,"e":4873}],[-19,{"n":4.5,"e":4887}],[-17,{"n":7,"e":4900}],[-16,{"n":4.5,"e":4913}],[-15,{"n":7,"e":4920,"g":1}],[-14,{"n":5,"e":4932}],[-13,{"n":5.5,"e":4945}],[-12,{"n":5.5,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":5,"e":4972}],[-8,{"n":5,"e":4992}],[-7,{"n":7,"e":5000}],[6,{"n":4,"e":6151}],[5,{"n":4.5,"e":6162}],[4,{"n":6.5,"e":6168}],[3,{"n":5,"e":6182,"s":1}],[2,{"n":5,"e":6195}],[1,{"n":5.5,"e":6202,"s":1}]],"fo":[[6151,[{"t":"Y"}]]],"a":{"m":18,"a":22,"M":35,"n":26}}],[5186,{"n":"Saunier","f":"Matthieu","fp":"DC","r":13,"c":6,"s":{"Os":86.5,"On":16,"Oa":5.41,"Od":0.84,"pd":16},"p":[[-28,{"n":5,"e":4788}],[-21,{"n":6,"e":4864}],[-20,{"n":6,"e":4873}],[-19,{"n":3,"e":4887}],[-18,{"n":6.5,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":5.5,"e":4913}],[-15,{"n":5.5,"e":4920}],[-14,{"n":5.5,"e":4932}],[-13,{"n":5,"e":4945}],[-12,{"n":4.5,"e":4951}],[-11,{"n":5.5,"e":4964}],[-10,{"n":5,"e":4972}],[-9,{"n":5.5,"e":4979}],[-8,{"n":5.5,"e":4992}],[-7,{"n":6.5,"e":5000}]]}],[67,{"n":"Toko Ekambi","f":"Karl","fp":"A","r":18,"c":18,"s":{"s":24,"n":5,"a":4.8,"d":0.91,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":8,"Os":142.5,"On":28,"Oa":5.09,"Od":1.22,"pm":1,"pa":27},"p":[[6,{"n":5.5,"e":6157}],[4,{"n":4,"e":6170,"s":1}],[1,{"n":4.5,"e":6204}],[-26,{"n":6,"e":3672}],[-25,{"n":4,"e":3682}],[-24,{"n":5.5,"e":3695,"s":1}],[-18,{"n":4,"e":4517,"s":1}],[-17,{"n":6,"e":4526,"g":1,"s":1}],[-16,{"n":4.5,"e":4537,"s":1}],[-15,{"n":4,"e":4547}],[-13,{"n":5,"e":4564}],[-12,{"n":4,"e":4577}],[-11,{"n":4,"e":4581}],[-10,{"n":7.5,"e":4597,"g":2}],[-9,{"n":6.5,"e":4602,"g":1}],[-8,{"n":3.5,"e":4612}],[-7,{"n":8,"e":4627,"g":2}],[-6,{"n":4.5,"e":4628,"s":1}],[-5,{"n":4.5,"e":4647,"s":1}],[-4,{"n":5.5,"e":4652,"s":1}],[-28,{"n":4.5,"e":3650}],[-27,{"n":5,"e":3661,"s":1}],[-23,{"n":5,"e":3704}],[-22,{"n":7,"e":3713,"g":1}],[-21,{"n":6.5,"e":3720,"g":1,"s":1}],[-14,{"n":3.5,"e":4558}],[3,{"n":4,"e":6179}],[2,{"n":6,"e":6188}]],"fo":[[6204,[{"t":"Y"}]]],"a":{"m":19,"a":35,"M":61,"n":37}}],[72,{"n":"Depay","f":"Memphis","fp":"A","r":22,"c":18,"s":{"g":4,"s":32.5,"n":6,"a":5.42,"d":1.39,"Sg":4,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.39,"Og":9,"Os":82.5,"On":15,"Oa":5.5,"Od":1.73,"pm":2,"pa":13},"p":[[-11,{"n":8,"e":3820,"g":1}],[-8,{"n":4.5,"e":3850}],[-6,{"n":3.5,"e":3870}],[-18,{"n":4.5,"e":3753}],[-17,{"n":8.5,"e":3764,"g":2}],[-16,{"n":5,"e":3773}],[-12,{"n":8,"e":3817,"g":2}],[-9,{"n":4,"e":3846}],[-7,{"n":4,"e":3859,"s":1}],[6,{"n":4.5,"e":6157,"s":1}],[5,{"n":4.5,"e":6162,"s":1}],[4,{"n":5,"e":6170}],[3,{"n":4.5,"e":6179}],[2,{"n":8,"e":6188,"g":3}],[1,{"n":6,"e":6204,"g":1,"s":1}]],"fo":[[6188,[{"t":"Y"}]]],"a":{"m":19,"a":41,"M":103,"n":25}}],[130,{"n":"Cornet","f":"Maxwel","fp":"MO","r":19,"c":18,"s":{"s":32,"n":6,"a":5.33,"d":1.03,"Ss":32,"Sn":6,"Sa":5.33,"Sd":1.03,"Og":4,"Os":140,"On":25,"Oa":5.6,"Od":1.04,"pd":2,"pm":15,"pa":8},"p":[[-15,{"n":7.5,"e":3787,"g":1}],[-13,{"n":5.5,"e":3800}],[-28,{"n":5,"e":3650}],[-26,{"n":6,"e":3672}],[-25,{"n":5.5,"e":3682}],[-23,{"n":5,"e":3704}],[-22,{"n":6,"e":3713}],[-21,{"n":7,"e":3720,"g":1}],[-20,{"n":8,"e":3730,"g":1}],[-19,{"n":6,"e":3745}],[-18,{"n":4.5,"e":3753,"s":1}],[-16,{"n":4.5,"e":3773}],[-14,{"n":5.5,"e":3793,"s":1}],[-12,{"n":5,"e":3817,"s":1}],[-11,{"n":4.5,"e":3820,"s":1}],[-10,{"n":6,"e":3830}],[-8,{"n":5,"e":3850,"s":1}],[-7,{"n":7,"e":3859,"g":1}],[6,{"n":5.5,"e":6157}],[-5,{"n":4.5,"e":3878,"s":1}],[5,{"n":5,"e":6162}],[4,{"n":4,"e":6170}],[3,{"n":6.5,"e":6179}],[2,{"n":6.5,"e":6188}],[1,{"n":4.5,"e":6204}]],"fo":[[6170,[{"t":"Y"}]]],"a":{"m":18,"a":25,"M":46,"n":21}}],[244,{"n":"Dubois","f":"Léo","fp":"DL","r":13,"c":18,"s":{"g":1,"s":32,"n":6,"a":5.33,"d":1.17,"Sg":1,"Ss":32,"Sn":6,"Sa":5.33,"Sd":1.17,"Og":1,"Os":91.5,"On":18,"Oa":5.08,"Od":0.75,"pd":10,"pm":8},"p":[[-28,{"n":4.5,"e":3650}],[-27,{"n":5.5,"e":3661}],[-26,{"n":5,"e":3672}],[-15,{"n":5,"e":3787,"s":1}],[-14,{"n":5,"e":3793}],[-13,{"n":5,"e":3800}],[-12,{"n":4.5,"e":3817}],[-11,{"n":6,"e":3820}],[-9,{"n":4.5,"e":3846}],[-8,{"n":4.5,"e":3850}],[-6,{"n":5,"e":3870}],[6,{"n":4.5,"e":6157}],[-5,{"n":5,"e":3878}],[5,{"n":7,"e":6162,"g":1}],[4,{"n":4.5,"e":6170}],[3,{"n":6,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":4,"e":6204}]],"fo":[[6170,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":28,"n":20}}],[537,{"n":"Aouar","f":"Houssem","fp":"MO","r":20,"c":18,"s":{"g":1,"s":21,"n":4,"a":5.25,"d":0.65,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":3,"Os":134.5,"On":25,"Oa":5.38,"Od":0.92,"pm":22,"pa":3},"p":[[-28,{"n":5,"e":3650}],[-27,{"n":5,"e":3661}],[-26,{"n":6.5,"e":3672,"g":1,"s":1}],[-25,{"n":5,"e":3682}],[-24,{"n":4.5,"e":3695}],[-23,{"n":5.5,"e":3704}],[-22,{"n":7,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":7,"e":3730}],[-19,{"n":5,"e":3745}],[-18,{"n":4,"e":3753}],[-17,{"n":7,"e":3764,"g":1}],[-16,{"n":5,"e":3773,"s":1}],[-13,{"n":4.5,"e":3800}],[-12,{"n":5.5,"e":3817}],[-11,{"n":4.5,"e":3820}],[-10,{"n":7,"e":3830}],[-9,{"n":4.5,"e":3846}],[-8,{"n":4.5,"e":3850}],[-6,{"n":5,"e":3870}],[6,{"n":6,"e":6157,"g":1}],[-5,{"n":5.5,"e":3878}],[5,{"n":5,"e":6162}],[3,{"n":5.5,"e":6179,"s":1}],[1,{"n":4.5,"e":6204}]],"fo":[[6204,[{"t":"R"}]]],"a":{"m":21,"a":31,"M":45,"n":20}}],[1052,{"n":"Denayer","f":"Jason","fp":"DC","r":16,"c":18,"s":{"s":33,"n":6,"a":5.5,"d":0.63,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.63,"Os":144.5,"On":27,"Oa":5.35,"Od":0.85,"pd":27},"p":[[-28,{"n":4.5,"e":3650}],[-27,{"n":6,"e":3661}],[-26,{"n":7,"e":3672}],[-24,{"n":3.5,"e":3695}],[-23,{"n":6,"e":3704}],[-22,{"n":4.5,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":5,"e":3730,"s":1}],[-19,{"n":6,"e":3745}],[-18,{"n":4.5,"e":3753}],[-17,{"n":6.5,"e":3764}],[-16,{"n":4.5,"e":3773}],[-15,{"n":5.5,"e":3787}],[-14,{"n":5.5,"e":3793}],[-13,{"n":4.5,"e":3800}],[-12,{"n":5,"e":3817}],[-11,{"n":7,"e":3820}],[-10,{"n":5.5,"e":3830}],[-8,{"n":5,"e":3850}],[-7,{"n":5,"e":3859}],[-6,{"n":4.5,"e":3870}],[6,{"n":5.5,"e":6157}],[5,{"n":4.5,"e":6162}],[4,{"n":6,"e":6170}],[3,{"n":6,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":5,"e":6204}]],"a":{"m":17,"a":23,"M":32,"n":27}}],[1069,{"n":"Reine-Adélaïde","f":"Jeff","fp":"MO","r":10,"c":18,"s":{"s":5.5,"n":1,"a":5.5,"Og":2,"Os":73,"On":14,"Oa":5.21,"Od":0.78,"pm":14},"p":[[-18,{"n":5.5,"e":3753}],[-17,{"n":5,"e":3764,"s":1}],[-16,{"n":5,"e":3773}],[-15,{"n":6.5,"e":3787,"g":1}],[-14,{"n":6.5,"e":3793,"g":1}],[-13,{"n":4.5,"e":3800}],[-12,{"n":6,"e":3817}],[-11,{"n":5,"e":3820}],[-10,{"n":5,"e":3830,"s":1}],[-8,{"n":4,"e":3850}],[-7,{"n":5,"e":3859,"s":1}],[-6,{"n":4,"e":3870}],[-5,{"n":5.5,"e":3878}],[2,{"n":5.5,"e":6188,"s":1}]],"a":{"m":11,"a":14,"M":28,"n":23}}],[1191,{"n":"Thiago Mendes","f":"","fp":"MD","r":14,"c":18,"s":{"s":15.5,"n":3,"a":5.17,"d":0.58,"Ss":11,"Sn":2,"Sa":5.5,"Os":113,"On":21,"Oa":5.38,"Od":0.82,"pm":21},"p":[[-25,{"n":5,"e":3682}],[-24,{"n":5,"e":3695}],[-23,{"n":5,"e":3704,"s":1}],[-22,{"n":5.5,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":6.5,"e":3730}],[-19,{"n":7,"e":3745}],[-17,{"n":7,"e":3764}],[-16,{"n":5,"e":3773}],[-14,{"n":5,"e":3793}],[-13,{"n":4,"e":3800}],[-12,{"n":6,"e":3817}],[-11,{"n":6,"e":3820}],[-10,{"n":5,"e":3830}],[-9,{"n":4,"e":3846}],[-8,{"n":5.5,"e":3850}],[-7,{"n":5,"e":3859}],[-6,{"n":5,"e":3870}],[6,{"n":5.5,"e":6157}],[5,{"n":5.5,"e":6162,"s":1}],[3,{"n":4.5,"e":6179,"s":1}]]}],[1524,{"n":"Anthony Lopes","f":"","fp":"G","r":18,"c":18,"s":{"s":29.5,"n":6,"a":4.92,"d":0.74,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.74,"Oao":1,"Os":147,"On":28,"Oa":5.25,"Od":0.9,"pg":28},"p":[[-28,{"n":4.5,"e":3650}],[-27,{"n":6.5,"e":3661}],[-26,{"n":5.5,"e":3672}],[-25,{"n":4,"e":3682}],[-24,{"n":4,"e":3695}],[-23,{"n":6,"e":3704}],[-20,{"n":5,"e":3730}],[-19,{"n":6,"e":3745}],[-18,{"n":6,"e":3753}],[-17,{"n":6,"e":3764}],[-16,{"n":5,"e":3773}],[-15,{"n":5.5,"e":3787}],[-14,{"n":7,"e":3793}],[-13,{"n":5,"e":3800}],[-12,{"n":4,"e":3817,"a":1}],[-11,{"n":6,"e":3820}],[-10,{"n":5.5,"e":3830}],[-9,{"n":5.5,"e":3846}],[-8,{"n":5,"e":3850}],[-7,{"n":4.5,"e":3859}],[-6,{"n":7,"e":3870}],[6,{"n":4,"e":6157}],[-5,{"n":4,"e":3878}],[5,{"n":5,"e":6162}],[4,{"n":6,"e":6170}],[3,{"n":5.5,"e":6179}],[2,{"n":4.5,"e":6188}],[1,{"n":4.5,"e":6204}]],"a":{"m":20,"a":28,"M":41,"n":14}}],[2032,{"n":"Marcelo","f":"","fp":"DC","r":13,"c":18,"s":{"s":34.5,"n":6,"a":5.75,"d":0.27,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.27,"Os":124,"On":23,"Oa":5.39,"Od":0.74,"pd":23},"p":[[-28,{"n":5,"e":3650}],[-27,{"n":6,"e":3661}],[-26,{"n":6,"e":3672}],[-25,{"n":6,"e":3682}],[-24,{"n":3,"e":3695}],[-23,{"n":5.5,"e":3704}],[-22,{"n":5,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":5.5,"e":3730}],[-19,{"n":5.5,"e":3745}],[-16,{"n":4,"e":3773}],[-15,{"n":5.5,"e":3787}],[-10,{"n":6,"e":3830}],[-9,{"n":5.5,"e":3846}],[-8,{"n":4.5,"e":3850}],[-6,{"n":5,"e":3870}],[6,{"n":5.5,"e":6157}],[-5,{"n":5.5,"e":3878}],[5,{"n":6,"e":6162}],[4,{"n":5.5,"e":6170}],[3,{"n":5.5,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":6,"e":6204}]],"fo":[[6157,[{"t":"I"}]],[6179,[{"t":"Y"}]],[6188,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":24,"n":23}}],[2685,{"n":"Caqueret","f":"Maxence","fp":"MD","r":11,"c":18,"s":{"s":26,"n":5,"a":5.2,"d":0.57,"Ss":5,"Sn":1,"Sa":5,"Os":70,"On":13,"Oa":5.38,"Od":0.87,"pm":13},"p":[[-28,{"n":4.5,"e":3650,"s":1}],[-25,{"n":4.5,"e":3682}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3720}],[-20,{"n":6,"e":3730}],[-18,{"n":5,"e":3753}],[-17,{"n":7,"e":3764}],[-15,{"n":7,"e":3787}],[6,{"n":5,"e":6157}],[4,{"n":4.5,"e":6170}],[3,{"n":5.5,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":5,"e":6204}]],"a":{"m":11,"a":18,"M":30,"n":20}}],[2861,{"n":"Dembele","f":"Moussa","fp":"A","r":32,"c":18,"s":{"s":27.5,"n":6,"a":4.58,"d":0.38,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":0.38,"Og":13,"Os":150,"On":30,"Oa":5,"Od":1.07,"pa":30},"p":[[-28,{"n":4,"e":3650}],[-27,{"n":6,"e":3661,"g":2}],[-26,{"n":6.5,"e":3672,"g":1}],[-25,{"n":4,"e":3682,"s":1}],[-24,{"n":6,"e":3695,"g":1}],[-23,{"n":4,"e":3704}],[-22,{"n":5,"e":3713}],[-21,{"n":6.5,"e":3720,"g":1}],[-20,{"n":7,"e":3730,"g":1}],[-19,{"n":3,"e":3745}],[-18,{"n":3.5,"e":3753}],[-17,{"n":5,"e":3764}],[-16,{"n":4.5,"e":3773,"s":1}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3793,"g":1}],[-13,{"n":6,"e":3800,"g":1}],[-12,{"n":6,"e":3817,"g":1}],[-11,{"n":6,"e":3820,"g":1}],[-10,{"n":5,"e":3830}],[-9,{"n":4.5,"e":3846,"s":1}],[-8,{"n":4,"e":3850}],[-7,{"n":5,"e":3859,"g":1}],[-6,{"n":4,"e":3870}],[6,{"n":4.5,"e":6157,"s":1}],[-5,{"n":7,"e":3878,"g":2}],[5,{"n":4.5,"e":6162}],[4,{"n":4,"e":6170}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6188}],[1,{"n":5,"e":6204,"s":1}]],"fo":[[6179,[{"t":"Y"}]],[6188,[{"t":"Y"}]]],"a":{"m":33,"a":69,"M":107,"n":40}}],[3760,{"n":"Fofana","f":"Boubacar","fp":"A","r":1,"c":18}],[3761,{"n":"Jean Lucas","f":"","fp":"MD","r":5,"c":18,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Os":55.5,"On":11,"Oa":5.05,"Od":0.27,"pm":11},"p":[[-23,{"n":5,"e":3704}],[-19,{"n":5,"e":3745,"s":1}],[-13,{"n":5,"e":3800,"s":1}],[-12,{"n":5,"e":3817,"s":1}],[-11,{"n":5,"e":3820,"s":1}],[-9,{"n":4.5,"e":3846,"s":1}],[-8,{"n":5.5,"e":3850,"s":1}],[-5,{"n":5,"e":3878,"s":1}],[5,{"n":5.5,"e":6162}],[4,{"n":5,"e":6170,"s":1}],[1,{"n":5,"e":6204,"s":1}]],"fo":[[6170,[{"t":"Y"}]]]}],[3799,{"n":"Andersen","f":"Joachim","fp":"DC","r":12,"c":18,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Og":1,"Os":85,"On":17,"Oa":5,"Od":0.9,"pd":17},"p":[[-28,{"n":4.5,"e":3650}],[-25,{"n":5,"e":3682}],[-20,{"n":4.5,"e":3730}],[-18,{"n":4.5,"e":3753}],[-17,{"n":8,"e":3764,"g":1}],[-15,{"n":5,"e":3787,"s":1}],[-14,{"n":5,"e":3793}],[-13,{"n":4.5,"e":3800}],[-12,{"n":4.5,"e":3817}],[-11,{"n":6,"e":3820}],[-9,{"n":5.5,"e":3846}],[-7,{"n":4.5,"e":3859}],[-6,{"n":5,"e":3870}],[-5,{"n":4,"e":3878}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":5,"e":6204}]],"fo":[[6179,[{"t":"Y"}]]]}],[5036,{"n":"Kadewere","f":"Tinotenda","fp":"A","r":8,"c":18,"s":{"s":22.5,"n":5,"a":4.5,"d":0.35,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.25,"Og":11,"Os":118.5,"On":23,"Oa":5.15,"Od":1.27,"pa":23},"p":[[-28,{"n":7,"e":4793,"g":1}],[-20,{"n":6,"e":4875,"g":1}],[-13,{"n":4,"e":4944,"g":1}],[-27,{"n":7,"e":4800,"g":1}],[-22,{"n":4,"e":4852}],[-21,{"n":4,"e":4862}],[-19,{"n":5,"e":4885,"g":1}],[-18,{"n":6,"e":4890,"g":1}],[-17,{"n":7,"e":4906}],[-16,{"n":7,"e":4915,"g":2}],[-15,{"n":7,"e":4922,"g":1}],[-14,{"n":5,"e":4936}],[-12,{"n":4.5,"e":4957}],[-11,{"n":6,"e":4964,"g":1}],[-10,{"n":3.5,"e":4968}],[-9,{"n":3,"e":4983}],[-8,{"n":6,"e":4994,"g":1}],[-7,{"n":4,"e":5002}],[6,{"n":4,"e":6157}],[5,{"n":4.5,"e":6162,"s":1}],[4,{"n":4.5,"e":6170,"s":1}],[3,{"n":4.5,"e":6179,"s":1}],[1,{"n":5,"e":6204}]],"a":{"m":9,"a":16,"M":46,"n":52}}],[5459,{"n":"Augarreau","f":"Cedric","fp":"MD","r":1,"c":18}],[6012,{"n":"Deyonge","f":"Heritier","fp":"DL","r":2,"c":18}],[6280,{"n":"Cherki","f":"Rayan","fp":"MO","r":8,"c":18,"s":{"s":31,"n":6,"a":5.17,"d":0.75,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.75,"Os":56.5,"On":11,"Oa":5.14,"Od":0.55,"pm":10,"pa":1},"p":[[-24,{"n":5,"e":3695}],[-23,{"n":5,"e":3704,"s":1}],[-21,{"n":5,"e":3720,"s":1}],[-19,{"n":5,"e":3745,"s":1}],[-13,{"n":5.5,"e":3800,"s":1}],[6,{"n":5,"e":6157,"s":1}],[5,{"n":4,"e":6162}],[4,{"n":6,"e":6170}],[3,{"n":5,"e":6179,"s":1}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":6,"e":6204,"s":1}]],"a":{"m":6,"a":13,"M":21,"n":20}}],[6345,{"n":"Bard","f":"Melvin","fp":"DL","r":5,"c":18,"s":{"s":27.5,"n":5,"a":5.5,"d":0.87,"Ss":17,"Sn":3,"Sa":5.67,"Sd":1.15,"Os":27.5,"On":5,"Oa":5.5,"Od":0.87,"pd":5},"p":[[6,{"n":7,"e":6157}],[5,{"n":5,"e":6162,"s":1}],[4,{"n":5,"e":6170}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":5.5,"e":6204,"s":1}]]}],[6512,{"n":"Bruno Guimarães","f":"","fp":"MD","r":16,"c":18,"s":{"s":33.5,"n":6,"a":5.58,"d":0.58,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.58,"Os":51.5,"On":9,"Oa":5.72,"Od":0.57,"pm":9},"p":[[-28,{"n":5.5,"e":3650}],[-27,{"n":6,"e":3661}],[-26,{"n":6.5,"e":3672}],[6,{"n":5.5,"e":6157,"s":1}],[5,{"n":6.5,"e":6162}],[4,{"n":5,"e":6170}],[3,{"n":5,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":5.5,"e":6204}]],"fo":[[6157,[{"t":"Y"}]],[6204,[{"t":"Y"}]]],"a":{"m":17,"a":24,"M":49,"n":26}}],[6592,{"n":"Diomande","f":"Sinaly","fp":"DC","r":1,"c":18,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pd":3},"p":[[6,{"n":5,"e":6157,"s":1}],[5,{"n":4.5,"e":6162}],[4,{"n":4.5,"e":6170,"s":1}]]}],[6801,{"n":"Mbenga","f":"Modeste Duku","fp":"MO","r":1,"c":18}],[6802,{"n":"Soumare","f":"Yaya","fp":"MO","r":1,"c":18}],[6904,{"n":"Özkacar","f":"Cenk","fp":"DC","r":1,"c":18}],[7341,{"n":"Pollersbeck","f":"Julian","fp":"G","r":6,"c":18}],[6,{"n":"Payet","f":"Dimitri","fp":"MO","r":32,"c":9,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":0.57,"Sg":1,"Ss":5,"Sn":1,"Sa":5,"Og":9,"Os":143,"On":23,"Oa":6.22,"Od":1,"pm":6,"pa":17},"p":[[5,{"n":5.5,"e":6163}],[1,{"n":5,"e":6198}],[3,{"n":6,"e":6187}],[-26,{"n":4,"e":3671}],[-18,{"n":6,"e":3754}],[-11,{"n":5,"e":3823}],[-6,{"n":6.5,"e":3871}],[-5,{"n":7,"e":3883,"g":1}],[-28,{"n":7,"e":3651,"g":1}],[-27,{"n":7,"e":3665}],[-24,{"n":6.5,"e":3691,"g":1}],[-23,{"n":7,"e":3702,"g":1}],[-22,{"n":6,"e":3710}],[-20,{"n":6,"e":3735}],[-19,{"n":7,"e":3739,"g":1}],[-17,{"n":7,"e":3759}],[-16,{"n":7,"e":3769,"g":1}],[-15,{"n":7,"e":3779}],[-14,{"n":7,"e":3797}],[-13,{"n":8,"e":3800,"g":2}],[-12,{"n":6,"e":3812}],[6,{"n":5,"e":6157,"g":1}],[4,{"n":4.5,"e":6171}]],"fo":[[6157,[{"t":"R"}]],[6187,[{"t":"Y"}]]],"a":{"m":34,"a":51,"M":84,"n":45}}],[10,{"n":"Germain","f":"Valère","fp":"A","r":8,"c":9,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":0.76,"Og":3,"Os":128,"On":26,"Oa":4.92,"Od":0.92,"pm":4,"pa":22},"p":[[-10,{"n":4.5,"e":3831}],[-28,{"n":6,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":4.5,"e":3671}],[-25,{"n":6.5,"e":3681}],[-24,{"n":4,"e":3691}],[-23,{"n":4.5,"e":3702,"s":1}],[-22,{"n":4.5,"e":3710,"s":1}],[-21,{"n":4.5,"e":3721,"s":1}],[-20,{"n":4.5,"e":3735,"s":1}],[-18,{"n":5.5,"e":3754,"s":1}],[-17,{"n":4,"e":3759}],[-15,{"n":4.5,"e":3779,"s":1}],[-14,{"n":5,"e":3797,"s":1}],[-13,{"n":4.5,"e":3800,"s":1}],[-11,{"n":4,"e":3823}],[-9,{"n":4,"e":3838}],[-8,{"n":5,"e":3851}],[-7,{"n":4.5,"e":3860}],[-6,{"n":7,"e":3871,"g":1}],[-5,{"n":7,"e":3883,"g":1}],[5,{"n":4.5,"e":6163,"s":1}],[4,{"n":6,"e":6171,"g":1,"s":1}],[3,{"n":4.5,"e":6187,"s":1}],[2,{"n":4,"e":6197,"s":1}],[1,{"n":4.5,"e":6198,"s":1}]]}],[22,{"n":"Thauvin","f":"Florian","fp":"MO","r":20,"c":9,"s":{"g":2,"s":34.5,"n":6,"a":5.75,"d":1.6,"Sg":2,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":1.6,"Og":2,"Os":39.5,"On":7,"Oa":5.64,"Od":1.49,"pm":4,"pa":3},"p":[[-28,{"n":5,"e":3651,"s":1}],[6,{"n":6.5,"e":6157}],[5,{"n":5.5,"e":6163}],[4,{"n":4.5,"e":6171}],[3,{"n":6.5,"e":6187,"g":1}],[2,{"n":8,"e":6197,"g":1}],[1,{"n":3.5,"e":6198}]],"fo":[[6171,[{"t":"Y"}]]],"a":{"m":19,"a":43,"M":70,"n":28}}],[41,{"n":"Sanson","f":"Morgan","fp":"MO","r":25,"c":9,"s":{"g":1,"s":29,"n":5,"a":5.8,"d":0.91,"Sg":1,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":0.76,"Og":6,"Os":165.5,"On":28,"Oa":5.91,"Od":0.83,"pm":28},"p":[[-28,{"n":7.5,"e":3651,"g":1}],[-27,{"n":6,"e":3665}],[-26,{"n":5.5,"e":3671,"g":1}],[-25,{"n":5.5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":6.5,"e":3702}],[-22,{"n":5,"e":3710}],[-21,{"n":5,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":6,"e":3739}],[-18,{"n":5.5,"e":3754}],[-17,{"n":7,"e":3759,"g":1}],[-16,{"n":7,"e":3769,"g":1}],[-15,{"n":7,"e":3779}],[-14,{"n":5.5,"e":3797}],[-13,{"n":6,"e":3800}],[-12,{"n":7,"e":3812,"g":1}],[-11,{"n":5,"e":3823,"s":1}],[-9,{"n":4.5,"e":3838}],[-8,{"n":5,"e":3851}],[-7,{"n":7,"e":3860}],[-6,{"n":6,"e":3871}],[6,{"n":5.5,"e":6157}],[-5,{"n":5.5,"e":3883}],[5,{"n":7,"e":6163,"g":1}],[4,{"n":6,"e":6171}],[2,{"n":6,"e":6197}],[1,{"n":4.5,"e":6198}]],"fo":[[6198,[{"t":"Y"}]]],"a":{"m":26,"a":38,"M":63,"n":30}}],[99,{"n":"Lopez","f":"Maxime","fp":"MO","r":7,"c":9,"s":{"s":17.5,"n":4,"a":4.38,"d":0.75,"Ss":10,"Sn":2,"Sa":5,"Os":118.5,"On":24,"Oa":4.94,"Od":0.71,"pm":20,"pa":4},"p":[[-28,{"n":5,"e":3651,"s":1}],[-27,{"n":5,"e":3665,"s":1}],[-26,{"n":4.5,"e":3671,"s":1}],[-24,{"n":5,"e":3691}],[-23,{"n":5,"e":3702,"s":1}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5,"e":3735,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-17,{"n":5,"e":3759,"s":1}],[-16,{"n":5,"e":3769,"s":1}],[-15,{"n":4.5,"e":3779,"s":1}],[-14,{"n":4.5,"e":3797}],[-13,{"n":5,"e":3800}],[-12,{"n":5,"e":3812,"s":1}],[-11,{"n":3.5,"e":3823}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5,"e":3838}],[-7,{"n":5,"e":3860}],[-6,{"n":7,"e":3871}],[6,{"n":5,"e":6157,"s":1}],[-5,{"n":6,"e":3883}],[5,{"n":5,"e":6163,"s":1}],[3,{"n":4,"e":6187}],[1,{"n":3.5,"e":6198}]],"fo":[[6187,[{"t":"Y"}]]]}],[102,{"n":"Pelé","f":"Yohann","fp":"G","r":7,"c":9,"s":{"Os":11.5,"On":2,"Oa":5.75,"Od":0.35,"pg":2},"p":[[-19,{"n":5.5,"e":3739}],[-18,{"n":6,"e":3754,"s":1}]]}],[210,{"n":"Sakai","f":"Hiroki","fp":"DL","r":9,"c":9,"s":{"s":30,"n":6,"a":5,"d":0.89,"Ss":30,"Sn":6,"Sa":5,"Sd":0.89,"Oao":1,"Os":112.5,"On":23,"Oa":4.89,"Od":0.78,"pd":23},"p":[[-28,{"n":5,"e":3651,"s":1}],[-25,{"n":5,"e":3681}],[-24,{"n":5,"e":3691,"s":1}],[-22,{"n":5,"e":3710}],[-21,{"n":4.5,"e":3721}],[-19,{"n":5,"e":3739}],[-18,{"n":3.5,"e":3754}],[-17,{"n":5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":5.5,"e":3779}],[-14,{"n":6.5,"e":3797}],[-12,{"n":4.5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":5,"e":3831}],[-9,{"n":4,"e":3838}],[-8,{"n":4.5,"e":3851,"a":1}],[-7,{"n":5,"e":3860}],[6,{"n":5,"e":6157}],[5,{"n":4.5,"e":6163}],[4,{"n":6.5,"e":6171}],[3,{"n":5.5,"e":6187}],[2,{"n":4.5,"e":6197}],[1,{"n":4,"e":6198}]],"fo":[[6187,[{"t":"Y"}]],[6198,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":19,"n":5}}],[216,{"n":"Sarr","f":"Bouna","fp":"MO","r":13,"c":9,"s":{"s":10,"n":2,"a":5,"Og":1,"Oao":1,"Os":131,"On":25,"Oa":5.24,"Od":0.94,"pd":16,"pm":2,"pa":7},"p":[[-28,{"n":6,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":3,"e":3671}],[-25,{"n":5.5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":5.5,"e":3702}],[-22,{"n":6,"e":3710}],[-20,{"n":5,"e":3735}],[-19,{"n":4.5,"e":3739,"s":1}],[-18,{"n":4,"e":3754}],[-17,{"n":4.5,"e":3759}],[-16,{"n":5.5,"e":3769}],[-15,{"n":6,"e":3779,"g":1}],[-14,{"n":6.5,"e":3797}],[-13,{"n":4.5,"e":3800}],[-12,{"n":5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6.5,"e":3831}],[-9,{"n":5,"e":3838}],[-8,{"n":7,"e":3851}],[-7,{"n":5.5,"e":3860}],[-6,{"n":5,"e":3871,"a":1}],[-5,{"n":5,"e":3883}],[4,{"n":5,"e":6171,"s":1}],[1,{"n":5,"e":6198,"s":1}]]}],[242,{"n":"Rongier","f":"Valentin","fp":"MD","r":21,"c":9,"s":{"s":32,"n":6,"a":5.33,"d":0.75,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.75,"Os":166,"On":29,"Oa":5.72,"Od":0.74,"pm":29},"p":[[-28,{"n":5,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":5,"e":3671}],[-25,{"n":5.5,"e":3681}],[-23,{"n":6.5,"e":3702}],[-22,{"n":6,"e":3710}],[-21,{"n":6.5,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":5.5,"e":3739}],[-18,{"n":6.5,"e":3754}],[-17,{"n":7,"e":3759}],[-16,{"n":7,"e":3769}],[-15,{"n":6.5,"e":3779}],[-14,{"n":7,"e":3797}],[-13,{"n":5.5,"e":3800}],[-12,{"n":6.5,"e":3812}],[-11,{"n":5,"e":3823}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5.5,"e":3838}],[-8,{"n":5.5,"e":3851}],[-7,{"n":5,"e":3860,"s":1}],[-6,{"n":5,"e":3871,"s":1}],[6,{"n":6,"e":6157}],[-5,{"n":5,"e":3883,"s":1}],[5,{"n":4.5,"e":6163}],[4,{"n":6,"e":6171}],[3,{"n":6,"e":6187}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":5,"e":6198}]],"a":{"m":22,"a":30,"M":51,"n":19}}],[480,{"n":"Khaoui","f":"Saif-Eddine","fp":"MO","r":4,"c":9,"s":{"s":5,"n":1,"a":5,"Os":34.5,"On":7,"Oa":4.93,"Od":0.35,"pm":7},"p":[[-24,{"n":5,"e":3691,"s":1}],[-21,{"n":5,"e":3721,"s":1}],[-13,{"n":4.5,"e":3800,"s":1}],[-10,{"n":5,"e":3831,"s":1}],[-9,{"n":4.5,"e":3838,"s":1}],[-8,{"n":5.5,"e":3851,"s":1}],[5,{"n":5,"e":6163,"s":1}]]}],[800,{"n":"Mandanda","f":"Steve","fp":"G","r":20,"c":9,"s":{"s":33.5,"n":6,"a":5.58,"d":1.2,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.2,"Os":157.5,"On":29,"Oa":5.43,"Od":1.11,"pg":29},"p":[[-28,{"n":4.5,"e":3651}],[-27,{"n":5.5,"e":3665}],[-26,{"n":3.5,"e":3671}],[-25,{"n":5,"e":3681}],[-24,{"n":7,"e":3691}],[-23,{"n":7,"e":3702}],[-22,{"n":6.5,"e":3710}],[-21,{"n":5.5,"e":3721}],[-20,{"n":6.5,"e":3735}],[-18,{"n":5.5,"e":3754}],[-17,{"n":4.5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":4,"e":3779}],[-14,{"n":6,"e":3797}],[-13,{"n":6,"e":3800}],[-12,{"n":5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6,"e":3831}],[-9,{"n":4,"e":3838}],[-8,{"n":5.5,"e":3851}],[-7,{"n":7,"e":3860}],[-6,{"n":4,"e":3871}],[6,{"n":5.5,"e":6157}],[-5,{"n":6,"e":3883}],[5,{"n":5,"e":6163}],[4,{"n":7,"e":6171}],[3,{"n":7,"e":6187}],[2,{"n":5,"e":6197}],[1,{"n":4,"e":6198}]],"a":{"m":21,"a":26,"M":46,"n":9}}],[1181,{"n":"Amavi","f":"Jordan","fp":"DL","r":13,"c":9,"s":{"s":17.5,"n":3,"a":5.83,"d":1.04,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":127,"On":25,"Oa":5.08,"Od":0.98,"pd":25},"p":[[-28,{"n":3.5,"e":3651}],[-27,{"n":4.5,"e":3665}],[-26,{"n":2.5,"e":3671}],[-25,{"n":5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":5.5,"e":3702}],[-22,{"n":5,"e":3710}],[-21,{"n":6,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":4.5,"e":3739}],[-18,{"n":5,"e":3754}],[-17,{"n":6.5,"e":3759,"g":1}],[-16,{"n":6.5,"e":3769}],[-15,{"n":5,"e":3779}],[-13,{"n":5,"e":3800}],[-12,{"n":5,"e":3812}],[-11,{"n":5,"e":3823,"s":1}],[-10,{"n":5,"e":3831,"s":1}],[-8,{"n":3.5,"e":3851}],[-7,{"n":5,"e":3860}],[-6,{"n":4.5,"e":3871}],[6,{"n":7,"e":6157}],[-5,{"n":5.5,"e":3883}],[3,{"n":5.5,"e":6187}],[2,{"n":5,"e":6197}]],"fo":[[6187,[{"t":"R"}]],[6197,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":27,"n":7}}],[1250,{"n":"Kamara","f":"Boubacar","fp":"DC","r":20,"c":9,"s":{"s":30.5,"n":6,"a":5.08,"d":0.66,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.66,"Og":1,"Os":143,"On":26,"Oa":5.5,"Od":0.89,"pd":9,"pm":17},"p":[[-28,{"n":5,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":5,"e":3671}],[-25,{"n":5.5,"e":3681}],[-24,{"n":5.5,"e":3691}],[-23,{"n":7,"e":3702}],[-22,{"n":5.5,"e":3710}],[-20,{"n":6,"e":3735}],[-19,{"n":5.5,"e":3739}],[-18,{"n":5.5,"e":3754}],[-17,{"n":5.5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":5,"e":3779}],[-14,{"n":6,"e":3797}],[-13,{"n":5,"e":3800}],[-12,{"n":7.5,"e":3812}],[-11,{"n":4,"e":3823}],[-10,{"n":7.5,"e":3831,"g":1}],[-6,{"n":5.5,"e":3871}],[6,{"n":6,"e":6157}],[-5,{"n":4,"e":3883}],[5,{"n":5,"e":6163}],[4,{"n":4,"e":6171}],[3,{"n":5,"e":6187}],[2,{"n":5.5,"e":6197}],[1,{"n":5,"e":6198}]],"fo":[[6197,[{"t":"Y"}]]],"a":{"m":21,"a":27,"M":41,"n":24}}],[1522,{"n":"Mitroglou","f":"Kostas","fp":"A","r":8,"c":9}],[1726,{"n":"González","f":"Álvaro","fp":"DC","r":13,"c":9,"s":{"s":25,"n":5,"a":5,"d":0.94,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.48,"Oao":1,"Os":112,"On":22,"Oa":5.09,"Od":0.88,"pd":22},"p":[[-28,{"n":4.5,"e":3651}],[-27,{"n":4.5,"e":3665}],[-26,{"n":2.5,"e":3671,"a":1}],[-25,{"n":5,"e":3681}],[-24,{"n":5,"e":3691}],[-23,{"n":6,"e":3702}],[-22,{"n":6,"e":3710}],[-21,{"n":5.5,"e":3721}],[-20,{"n":6,"e":3735}],[-19,{"n":5.5,"e":3739}],[-18,{"n":6,"e":3754}],[-17,{"n":5.5,"e":3759}],[-16,{"n":5.5,"e":3769,"s":1}],[-13,{"n":4,"e":3800}],[-12,{"n":5.5,"e":3812}],[-6,{"n":5,"e":3871}],[6,{"n":5,"e":6157}],[-5,{"n":5,"e":3883}],[5,{"n":6,"e":6163}],[4,{"n":5,"e":6171}],[3,{"n":5.5,"e":6187}],[1,{"n":3.5,"e":6198}]],"fo":[[6171,[{"t":"Y"}]],[6187,[{"t":"Y"}]]],"a":{"m":15,"a":18,"M":22,"n":9}}],[2155,{"n":"Rocchia","f":"Christopher","fp":"DL","r":4,"c":9,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":117.5,"On":23,"Oa":5.11,"Od":1,"pd":23},"p":[[-27,{"n":5.5,"e":4804}],[-26,{"n":5,"e":4812}],[-25,{"n":3.5,"e":4827}],[-24,{"n":5.5,"e":4836}],[-23,{"n":5,"e":4843,"s":1}],[-21,{"n":4,"e":4858}],[-20,{"n":5.5,"e":4877,"s":1}],[-18,{"n":5,"e":4896}],[-17,{"n":5,"e":4905}],[-16,{"n":4.5,"e":4916}],[-13,{"n":6.5,"e":4946}],[-11,{"n":5,"e":4960,"s":1}],[-9,{"n":6.5,"e":4986}],[-8,{"n":6,"e":4996}],[-7,{"n":6,"e":5006}],[-28,{"n":4.5,"e":4791}],[-22,{"n":3.5,"e":4856}],[-19,{"n":5,"e":4883}],[-15,{"n":3,"e":4923}],[-14,{"n":6,"e":4936,"g":1,"s":1}],[-12,{"n":5,"e":4956}],[-10,{"n":7,"e":4976}],[1,{"n":5,"e":6198,"s":1}]]}],[2634,{"n":"Perrin","f":"Lucas","fp":"DC","r":4,"c":9,"s":{"Os":20,"On":4,"Oa":5,"Od":1.22,"pd":4},"p":[[-14,{"n":6,"e":3797}],[-9,{"n":3.5,"e":3838}],[-8,{"n":4.5,"e":3851}],[-7,{"n":6,"e":3860}]]}],[2712,{"n":"Caleta-Car","f":"Duje","fp":"DC","r":17,"c":9,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":1.08,"Sg":2,"Ss":34,"Sn":6,"Sa":5.67,"Sd":1.08,"Og":3,"Os":146,"On":27,"Oa":5.41,"Od":0.9,"pd":27},"p":[[-27,{"n":5.5,"e":3665}],[-26,{"n":4,"e":3671}],[-25,{"n":4.5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":6,"e":3702}],[-22,{"n":5.5,"e":3710}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":5.5,"e":3739}],[-17,{"n":5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":6.5,"e":3779}],[-13,{"n":5.5,"e":3800}],[-12,{"n":5.5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6.5,"e":3831}],[-9,{"n":3.5,"e":3838}],[-8,{"n":6,"e":3851,"g":1}],[-7,{"n":6,"e":3860}],[-6,{"n":5,"e":3871,"s":1}],[6,{"n":6,"e":6157}],[-5,{"n":5,"e":3883,"s":1}],[5,{"n":5,"e":6163}],[4,{"n":5,"e":6171}],[3,{"n":6,"e":6187}],[2,{"n":7.5,"e":6197,"g":2}],[1,{"n":4.5,"e":6198}]],"fo":[[6157,[{"t":"Y"}]]],"a":{"m":15,"a":23,"M":32,"n":27}}],[2779,{"n":"Chabrolle","f":"Florian","fp":"MO","r":1,"c":9}],[2835,{"n":"Strootman","f":"Kevin","fp":"MD","r":10,"c":9,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Og":2,"Os":127,"On":24,"Oa":5.29,"Od":0.79,"pm":24},"p":[[-28,{"n":6,"e":3651}],[-26,{"n":4.5,"e":3671,"s":1}],[-25,{"n":5,"e":3681,"s":1}],[-24,{"n":4.5,"e":3691,"s":1}],[-23,{"n":5,"e":3702,"s":1}],[-22,{"n":4.5,"e":3710,"s":1}],[-21,{"n":5.5,"e":3721}],[-20,{"n":7,"e":3735,"g":1,"s":1}],[-18,{"n":5,"e":3754}],[-17,{"n":5,"e":3759,"s":1}],[-16,{"n":5.5,"e":3769}],[-15,{"n":5,"e":3779}],[-14,{"n":5.5,"e":3797}],[-13,{"n":5,"e":3800,"s":1}],[-12,{"n":5,"e":3812,"s":1}],[-11,{"n":3.5,"e":3823}],[-10,{"n":7,"e":3831,"g":1}],[-8,{"n":5,"e":3851}],[-7,{"n":6,"e":3860}],[-6,{"n":5.5,"e":3871}],[-5,{"n":6.5,"e":3883}],[3,{"n":5,"e":6187,"s":1}],[2,{"n":5.5,"e":6197}],[1,{"n":5,"e":6198,"s":1}]],"fo":[[6187,[{"t":"Y"}]]]}],[2860,{"n":"Radonjic","f":"Nemanja","fp":"MO","r":8,"c":9,"s":{"s":22.5,"n":5,"a":4.5,"d":0.61,"Ss":22.5,"Sn":5,"Sa":4.5,"Sd":0.61,"Og":5,"Os":119,"On":24,"Oa":4.96,"Od":0.88,"pm":2,"pa":22},"p":[[-25,{"n":4,"e":3681,"s":1}],[-24,{"n":4,"e":3691}],[-23,{"n":6.5,"e":3702,"g":1}],[-22,{"n":5,"e":3710,"s":1}],[-21,{"n":5,"e":3721}],[-20,{"n":4,"e":3735}],[-19,{"n":5,"e":3739}],[-18,{"n":7,"e":3754,"g":1,"s":1}],[-17,{"n":6.5,"e":3759,"g":1,"s":1}],[-16,{"n":4.5,"e":3769,"s":1}],[-15,{"n":6,"e":3779,"g":1,"s":1}],[-14,{"n":6,"e":3797,"g":1,"s":1}],[-12,{"n":4.5,"e":3812,"s":1}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5,"e":3838}],[-8,{"n":4.5,"e":3851,"s":1}],[-7,{"n":4.5,"e":3860,"s":1}],[-6,{"n":4.5,"e":3871,"s":1}],[6,{"n":4,"e":6157,"s":1}],[-5,{"n":4.5,"e":3883,"s":1}],[5,{"n":5.5,"e":6163,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[3,{"n":4.5,"e":6187,"s":1}],[2,{"n":4,"e":6197}]],"fo":[[6197,[{"t":"Y"}]]],"a":{"m":15,"a":21,"M":29,"n":11}}],[2939,{"n":"Phliponeau","f":"Alexandre","fp":"MD","r":1,"c":9}],[2953,{"n":"Mohamed Abdallah","f":"Abdallah","fp":"DL","r":1,"c":9}],[4968,{"n":"Gueye","f":"Pape Alassane","fp":"MD","r":7,"c":9,"s":{"s":23.5,"n":5,"a":4.7,"d":0.27,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.27,"Os":124.5,"On":24,"Oa":5.19,"Od":0.86,"pm":24},"p":[[-28,{"n":6.5,"e":4793}],[-26,{"n":4,"e":4813}],[-25,{"n":4.5,"e":4826}],[-23,{"n":5,"e":4840}],[-22,{"n":4.5,"e":4852}],[-21,{"n":4.5,"e":4862}],[-20,{"n":6,"e":4875}],[-19,{"n":5,"e":4885}],[-18,{"n":7,"e":4890}],[-17,{"n":5,"e":4906}],[-16,{"n":5,"e":4915}],[-15,{"n":7,"e":4922}],[-14,{"n":4,"e":4936}],[-13,{"n":5.5,"e":4944}],[-12,{"n":6,"e":4957}],[-11,{"n":5.5,"e":4964}],[-10,{"n":4.5,"e":4968}],[-9,{"n":5.5,"e":4983}],[-7,{"n":6,"e":5002}],[6,{"n":5,"e":6157,"s":1}],[5,{"n":5,"e":6163,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":4.5,"e":6197,"s":1}]],"fo":[[6187,[{"t":"Y"}]]]}],[6021,{"n":"Benedetto","f":"Darío","fp":"A","r":28,"c":9,"s":{"s":21,"n":5,"a":4.2,"d":1.04,"Ss":21,"Sn":5,"Sa":4.2,"Sd":1.04,"Og":9,"Os":135.5,"On":27,"Oa":5.02,"Od":1.37,"pa":27},"p":[[-28,{"n":4,"e":3651}],[-27,{"n":8.5,"e":3665,"g":3}],[-26,{"n":4.5,"e":3671}],[-25,{"n":6.5,"e":3681,"g":1}],[-23,{"n":4,"e":3702}],[-22,{"n":4.5,"e":3710}],[-21,{"n":4.5,"e":3721}],[-20,{"n":4,"e":3735}],[-19,{"n":7,"e":3739,"g":1}],[-18,{"n":4,"e":3754}],[-16,{"n":5,"e":3769}],[-15,{"n":5,"e":3779}],[-14,{"n":7,"e":3797,"g":1}],[-13,{"n":4.5,"e":3800}],[-12,{"n":4,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6,"e":3831}],[-9,{"n":6.5,"e":3838,"g":1}],[-8,{"n":5,"e":3851}],[-7,{"n":4,"e":3860}],[-6,{"n":5,"e":3871}],[6,{"n":5,"e":6157}],[-5,{"n":7.5,"e":3883,"g":2}],[5,{"n":5,"e":6163}],[4,{"n":4,"e":6171}],[3,{"n":2.5,"e":6187,"s":1}],[2,{"n":4.5,"e":6197}]],"fo":[[6187,[{"t":"Y"},{"t":"O"}]]],"a":{"m":30,"a":51,"M":107,"n":27}}],[6154,{"n":"Dia","f":"Ahmadou","fp":"G","r":1,"c":9}],[6158,{"n":"Aké","f":"Marley","fp":"MO","r":7,"c":9,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":59,"On":12,"Oa":4.92,"Od":0.29,"pm":11,"pa":1},"p":[[-27,{"n":5,"e":3665,"s":1}],[-26,{"n":5,"e":3671,"s":1}],[-25,{"n":5.5,"e":3681,"s":1}],[-21,{"n":5,"e":3721,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-14,{"n":5,"e":3797,"s":1}],[-11,{"n":5,"e":3823,"s":1}],[-10,{"n":5,"e":3831,"s":1}],[-8,{"n":4.5,"e":3851,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[2,{"n":5,"e":6197,"s":1}],[1,{"n":4.5,"e":6198,"s":1}]]}],[6199,{"n":"Ngapandouetnbu","f":"Simon","fp":"G","r":1,"c":9}],[6785,{"n":"Kamardin","f":"Aaron","fp":"DC","r":1,"c":9}],[6786,{"n":"Bertelli","f":"Ugo","fp":"MD","r":1,"c":9}],[6787,{"n":"Ahmed","f":"Nassim","fp":"MD","r":1,"c":9}],[6788,{"n":"Souaré","f":"Cheick","fp":"MD","r":1,"c":9}],[6795,{"n":"Rahou","f":"Jores","fp":"MO","r":1,"c":9}],[6799,{"n":"Richard","f":"Richecarde","fp":"DL","r":1,"c":9}],[6805,{"n":"Balerdi","f":"Leonardo","fp":"DC","r":9,"c":9,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pd":2},"p":[[2,{"n":4.5,"e":6197}],[1,{"n":3,"e":6198}]],"fo":[[6197,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":20,"n":15}}],[7139,{"n":"Vanni","f":"Fabio","fp":"G","r":1,"c":9}],[7147,{"n":"Nagatomo","f":"Yuto","fp":"DL","r":8,"c":9,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[5,{"n":5,"e":6163}],[4,{"n":4.5,"e":6171}]],"fo":[[6171,[{"t":"Y"}]]]}],[7364,{"n":"Luis Henrique","f":"","fp":"A","r":5,"c":9}],[176,{"n":"Pajot","f":"Vincent","fp":"MD","r":11,"c":11,"s":{"s":29.5,"n":5,"a":5.9,"d":0.65,"Ss":7,"Sn":1,"Sa":7,"Os":85.5,"On":15,"Oa":5.7,"Od":0.7,"pm":15},"p":[[4,{"n":5.5,"e":6172}],[1,{"n":6,"e":6207}],[2,{"n":5.5,"e":6193}],[-23,{"n":5,"e":3703}],[-21,{"n":6,"e":3726}],[-20,{"n":6,"e":3732}],[-28,{"n":6,"e":3652}],[-27,{"n":6,"e":3658}],[-24,{"n":4.5,"e":3692}],[-22,{"n":7,"e":3712}],[-17,{"n":5.5,"e":3766,"s":1}],[-7,{"n":5,"e":3867,"s":1}],[6,{"n":7,"e":6151}],[-5,{"n":5,"e":3882,"s":1}],[3,{"n":5.5,"e":6181}]],"fo":[[6151,[{"t":"I"}]],[6181,[{"t":"Y"}]]]}],[273,{"n":"Delecroix","f":"Paul","fp":"G","r":7,"c":11,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pg":2},"p":[[-17,{"n":3.5,"e":3763}],[-16,{"n":5,"e":3774,"s":1}]]}],[337,{"n":"Nguette","f":"Opa","fp":"MO","r":22,"c":11,"s":{"s":30,"n":6,"a":5,"d":0.89,"Ss":30,"Sn":6,"Sa":5,"Sd":0.89,"Og":5,"Os":140.5,"On":28,"Oa":5.02,"Od":1.16,"pm":8,"pa":20},"p":[[-25,{"n":5,"e":3684}],[-12,{"n":7,"e":3813,"g":1}],[-10,{"n":4.5,"e":3832,"s":1}],[-7,{"n":4,"e":3866}],[-28,{"n":6.5,"e":3652,"g":1}],[-27,{"n":5,"e":3658,"s":1}],[-26,{"n":3.5,"e":3672}],[-24,{"n":5,"e":3692}],[-22,{"n":8.5,"e":3712,"g":2}],[-21,{"n":5.5,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":5.5,"e":3738}],[-18,{"n":6.5,"e":3754,"g":1}],[-16,{"n":4,"e":3774}],[-15,{"n":4,"e":3784}],[-14,{"n":4,"e":3794}],[-13,{"n":5,"e":3799}],[-11,{"n":5.5,"e":3820,"s":1}],[-9,{"n":4,"e":3839}],[-8,{"n":4,"e":3852}],[-6,{"n":4,"e":3872}],[6,{"n":6.5,"e":6151}],[-5,{"n":4,"e":3879}],[5,{"n":5.5,"e":6163}],[4,{"n":4,"e":6172}],[3,{"n":4.5,"e":6181}],[2,{"n":4.5,"e":6193}],[1,{"n":5,"e":6207,"s":1}]],"a":{"m":23,"a":28,"M":46,"n":12}}],[408,{"n":"N'Doram","f":"Kevin","fp":"MD","r":9,"c":11,"s":{"Os":97,"On":18,"Oa":5.39,"Od":0.58,"pm":18},"p":[[-28,{"n":6.5,"e":3652}],[-27,{"n":5.5,"e":3658}],[-26,{"n":5,"e":3672}],[-25,{"n":5.5,"e":3684}],[-24,{"n":5.5,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5,"e":3732,"s":1}],[-19,{"n":5.5,"e":3738}],[-14,{"n":4.5,"e":3794}],[-12,{"n":4.5,"e":3813}],[-11,{"n":5,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":5.5,"e":3839}],[-8,{"n":5.5,"e":3852}],[-7,{"n":6.5,"e":3866}],[-5,{"n":5,"e":3879}]]}],[498,{"n":"Boulaya","f":"Farid","fp":"MO","r":9,"c":11,"s":{"s":22,"n":4,"a":5.5,"d":0.58,"Og":2,"Os":98,"On":19,"Oa":5.16,"Od":0.76,"pm":10,"pa":9},"p":[[-28,{"n":5,"e":3652}],[-27,{"n":7,"e":3658,"g":1}],[-25,{"n":3.5,"e":3684,"s":1}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":6,"e":3703,"g":1,"s":1}],[-20,{"n":4.5,"e":3732,"s":1}],[-19,{"n":5,"e":3738}],[-15,{"n":4.5,"e":3784,"s":1}],[-14,{"n":5,"e":3794,"s":1}],[-13,{"n":5,"e":3799,"s":1}],[-12,{"n":5,"e":3813,"s":1}],[-11,{"n":5,"e":3820}],[-10,{"n":6,"e":3832,"s":1}],[-9,{"n":5,"e":3839,"s":1}],[-6,{"n":4.5,"e":3872}],[5,{"n":5,"e":6163}],[4,{"n":6,"e":6172}],[2,{"n":5,"e":6193}],[1,{"n":6,"e":6207}]],"fo":[[6172,[{"t":"Y"}]]]}],[554,{"n":"Maziz","f":"Youssef","fp":"MO","r":1,"c":11,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":55,"On":10,"Oa":5.5,"Od":1.11,"pm":10},"p":[[-22,{"n":5,"e":4853}],[-20,{"n":5,"e":4872}],[-19,{"n":8,"e":4884,"g":1}],[-18,{"n":5.5,"e":4892}],[-17,{"n":4.5,"e":4906}],[-16,{"n":5,"e":4912,"g":1}],[-15,{"n":7,"e":4919,"s":1}],[-14,{"n":5,"e":4931}],[6,{"n":5,"e":6151,"s":1}],[1,{"n":5,"e":6207,"s":1}]]}],[576,{"n":"Udol","f":"Matthieu","fp":"DL","r":8,"c":11,"s":{"s":28.5,"n":5,"a":5.7,"d":0.67,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":0.67,"Os":94,"On":18,"Oa":5.22,"Od":0.81,"pd":18},"p":[[-28,{"n":5.5,"e":3652}],[-26,{"n":3.5,"e":3672}],[-25,{"n":6,"e":3684}],[-24,{"n":4.5,"e":3692}],[-22,{"n":5,"e":3712}],[-21,{"n":5.5,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":4,"e":3738}],[-18,{"n":5,"e":3754}],[-17,{"n":4.5,"e":3763}],[-15,{"n":6.5,"e":3784}],[-14,{"n":5,"e":3794}],[-13,{"n":5,"e":3799,"s":1}],[6,{"n":6,"e":6151}],[5,{"n":6,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":6,"e":6181}],[2,{"n":4.5,"e":6193}]]}],[1185,{"n":"Diallo","f":"Habib","fp":"A","r":19,"c":11,"s":{"s":16,"n":4,"a":4,"d":0.41,"Og":9,"Os":127.5,"On":26,"Oa":4.9,"Od":1.36,"pa":26},"p":[[-26,{"n":3,"e":3672}],[-25,{"n":5,"e":3684}],[-24,{"n":4.5,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":7.5,"e":3712,"g":1}],[-21,{"n":6.5,"e":3726,"g":1}],[-20,{"n":5,"e":3732}],[-19,{"n":7,"e":3738,"g":1}],[-18,{"n":2.5,"e":3754}],[-17,{"n":4,"e":3763}],[-16,{"n":5,"e":3774}],[-15,{"n":6,"e":3784,"g":1}],[-14,{"n":4,"e":3794}],[-13,{"n":3.5,"e":3799}],[-12,{"n":6.5,"e":3813,"g":1}],[-11,{"n":4,"e":3820}],[-10,{"n":6,"e":3832,"g":1}],[-9,{"n":4,"e":3839}],[-8,{"n":6,"e":3852,"g":1}],[-7,{"n":7,"e":3866,"g":1}],[-6,{"n":6,"e":3872,"g":1}],[-5,{"n":3.5,"e":3879}],[5,{"n":4.5,"e":6163,"s":1}],[3,{"n":4,"e":6181,"s":1}],[2,{"n":4,"e":6193,"s":1}],[1,{"n":3.5,"e":6207}]],"a":{"m":20,"a":36,"M":61,"n":40}}],[1232,{"n":"Niane","f":"Ibrahima","fp":"A","r":7,"c":11,"s":{"g":6,"s":34,"n":6,"a":5.67,"d":2.02,"Sg":6,"Ss":34,"Sn":6,"Sa":5.67,"Sd":2.02,"Og":9,"Os":118,"On":23,"Oa":5.13,"Od":1.18,"pa":23},"p":[[-28,{"n":4.5,"e":3652}],[-27,{"n":5,"e":3658}],[-26,{"n":4.5,"e":3672}],[-25,{"n":4,"e":3684}],[-24,{"n":7,"e":3692,"g":1}],[-23,{"n":5,"e":3703}],[-22,{"n":5,"e":3712}],[-21,{"n":4.5,"e":3726}],[-18,{"n":4.5,"e":3754,"s":1}],[-17,{"n":6,"e":3763,"g":1,"s":1}],[-13,{"n":4.5,"e":3799,"s":1}],[-12,{"n":5,"e":3813,"s":1}],[-9,{"n":4.5,"e":3839,"s":1}],[-8,{"n":5.5,"e":3852,"g":1,"s":1}],[-7,{"n":5,"e":3866,"s":1}],[-6,{"n":5,"e":3872,"s":1}],[6,{"n":8.5,"e":6151,"g":3}],[-5,{"n":4.5,"e":3879,"s":1}],[5,{"n":6,"e":6163,"g":1}],[4,{"n":7.5,"e":6172,"g":2}],[3,{"n":3.5,"e":6181}],[2,{"n":4,"e":6193}],[1,{"n":4.5,"e":6207}]],"a":{"m":8,"a":12,"M":19,"n":22}}],[1248,{"n":"Maïga","f":"Habib","fp":"MD","r":20,"c":11,"s":{"s":33.5,"n":6,"a":5.58,"d":1.11,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.11,"Og":1,"Os":164,"On":29,"Oa":5.66,"Od":0.89,"pm":29},"p":[[-28,{"n":7,"e":3652}],[-27,{"n":6,"e":3658}],[-25,{"n":6,"e":3684}],[-24,{"n":6,"e":3692}],[-23,{"n":4.5,"e":3703}],[-22,{"n":6.5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":7,"e":3738,"g":1}],[-18,{"n":5,"e":3754}],[-17,{"n":5,"e":3763}],[-16,{"n":5,"e":3774}],[-15,{"n":5.5,"e":3784}],[-14,{"n":5.5,"e":3794}],[-13,{"n":5.5,"e":3799}],[-12,{"n":5.5,"e":3813}],[-11,{"n":5,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":4.5,"e":3839}],[-8,{"n":7,"e":3852}],[-7,{"n":7,"e":3866}],[-6,{"n":5.5,"e":3872}],[6,{"n":7.5,"e":6151}],[-5,{"n":4,"e":3879}],[5,{"n":5.5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":5.5,"e":6181}],[2,{"n":4.5,"e":6193}],[1,{"n":4.5,"e":6207}]],"fo":[[6163,[{"t":"Y"}]],[6181,[{"t":"Y"}]],[6207,[{"t":"Y"}]]],"a":{"m":22,"a":28,"M":44,"n":19}}],[1264,{"n":"Caillard","f":"Marc-Aurèle","fp":"G","r":7,"c":11,"s":{"Os":86,"On":16,"Oa":5.38,"Od":0.85,"pg":16},"p":[[-28,{"n":4,"e":4796}],[-25,{"n":5.5,"e":4824}],[-23,{"n":5.5,"e":4847}],[-22,{"n":6,"e":4851}],[-13,{"n":6,"e":4940}],[-11,{"n":6,"e":4965}],[-10,{"n":4.5,"e":4970}],[-7,{"n":6,"e":5001}],[-27,{"n":5,"e":4801}],[-26,{"n":4.5,"e":4812}],[-24,{"n":7,"e":4831}],[-21,{"n":4,"e":4865}],[-20,{"n":5,"e":4871}],[-12,{"n":5,"e":4949}],[-9,{"n":6,"e":4982}],[-8,{"n":6,"e":4996}]]}],[1266,{"n":"Poblete","f":"Gerónimo","fp":"MD","r":7,"c":11}],[1415,{"n":"Oukidja","f":"Alexandre","fp":"G","r":22,"c":11,"s":{"s":35,"n":6,"a":5.83,"d":0.75,"Ss":35,"Sn":6,"Sa":5.83,"Sd":0.75,"Os":168,"On":29,"Oa":5.79,"Od":0.99,"pg":29},"p":[[-28,{"n":6.5,"e":3652}],[-27,{"n":7.5,"e":3658}],[-26,{"n":6,"e":3672}],[-25,{"n":7,"e":3684}],[-24,{"n":5,"e":3692}],[-23,{"n":6.5,"e":3703}],[-22,{"n":6.5,"e":3712}],[-21,{"n":6.5,"e":3726}],[-20,{"n":7,"e":3732}],[-19,{"n":5,"e":3738}],[-18,{"n":5.5,"e":3754}],[-16,{"n":4,"e":3774}],[-15,{"n":5,"e":3784}],[-14,{"n":6,"e":3794}],[-13,{"n":7,"e":3799}],[-12,{"n":4,"e":3813}],[-11,{"n":6.5,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":4,"e":3839}],[-8,{"n":5.5,"e":3852}],[-7,{"n":6.5,"e":3866}],[-6,{"n":4.5,"e":3872}],[6,{"n":6,"e":6151}],[-5,{"n":5,"e":3879}],[5,{"n":5.5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":6.5,"e":6181}],[2,{"n":4.5,"e":6193}],[1,{"n":6.5,"e":6207}]],"a":{"m":23,"a":26,"M":30,"n":12}}],[2139,{"n":"Vágner","f":"","fp":"MO","r":10,"c":11,"s":{"Og":4,"Os":58.5,"On":10,"Oa":5.85,"Od":1.31,"pm":5,"pa":5},"p":[[-15,{"n":7,"e":4921,"g":1}],[-14,{"n":4.5,"e":4933}],[-10,{"n":7.5,"e":4973,"g":1}],[-8,{"n":8,"e":4993,"g":1}],[-16,{"n":5.5,"e":4914}],[-13,{"n":6,"e":4944,"g":1}],[-12,{"n":6,"e":4952}],[-11,{"n":5,"e":4958}],[-9,{"n":4,"e":4980}],[-7,{"n":5,"e":5001}]],"a":{"m":11,"a":12,"M":16,"n":11}}],[3758,{"n":"Sabaly","f":"Cheick Tidiane","fp":"A","r":6,"c":11,"s":{"s":4.5,"n":1,"a":4.5,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[6,{"n":4,"e":6535}],[2,{"n":4.5,"e":6193,"s":1}]],"fo":[[6535,[{"t":"Y"}]]]}],[3776,{"n":"Cabit","f":"Manuel","fp":"DL","r":4,"c":11,"s":{"Os":14,"On":3,"Oa":4.67,"Od":1.53,"pd":3},"p":[[-12,{"n":5,"e":3813}],[-11,{"n":3,"e":3820}],[-10,{"n":6,"e":3832}]]}],[3781,{"n":"Fofana","f":"Mamadou","fp":"DC","r":10,"c":11,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Os":98,"On":20,"Oa":4.9,"Od":0.66,"pd":12,"pm":8},"p":[[-26,{"n":4.5,"e":3672}],[-23,{"n":5,"e":3703}],[-21,{"n":5,"e":3726,"s":1}],[-20,{"n":5.5,"e":3732}],[-19,{"n":4.5,"e":3738}],[-18,{"n":4.5,"e":3754}],[-17,{"n":4,"e":3763}],[-16,{"n":4,"e":3774}],[-15,{"n":5.5,"e":3784}],[-14,{"n":5.5,"e":3794}],[-13,{"n":6,"e":3799}],[-12,{"n":4.5,"e":3813}],[-11,{"n":4,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":4.5,"e":3839}],[-8,{"n":5,"e":3852}],[-7,{"n":5.5,"e":3866}],[5,{"n":5.5,"e":6163}],[3,{"n":4,"e":6181}],[1,{"n":5,"e":6207}]]}],[3787,{"n":"Centonze","f":"Fabien","fp":"DL","r":15,"c":11,"s":{"s":32,"n":6,"a":5.33,"d":0.52,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.52,"Os":156,"On":30,"Oa":5.2,"Od":0.9,"pd":28,"pm":2},"p":[[-28,{"n":7,"e":3652}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4,"e":3672}],[-25,{"n":6,"e":3684}],[-24,{"n":5,"e":3692}],[-23,{"n":6,"e":3703}],[-22,{"n":5.5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":4,"e":3738}],[-18,{"n":7,"e":3754}],[-17,{"n":4,"e":3763}],[-16,{"n":5,"e":3774}],[-15,{"n":6,"e":3784}],[-14,{"n":5,"e":3794}],[-13,{"n":5.5,"e":3799}],[-12,{"n":5,"e":3813}],[-11,{"n":5,"e":3820}],[-10,{"n":5,"e":3832}],[-9,{"n":3.5,"e":3839}],[-8,{"n":3.5,"e":3852}],[-7,{"n":6,"e":3866}],[-6,{"n":4,"e":3872}],[6,{"n":6,"e":6151}],[-5,{"n":5,"e":3879}],[5,{"n":5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6193}],[1,{"n":5,"e":6207}]],"fo":[[6181,[{"t":"Y"}]],[6207,[{"t":"Y"}]]],"a":{"m":18,"a":21,"M":24,"n":9}}],[3790,{"n":"Angban","f":"Victorien","fp":"MD","r":7,"c":11,"s":{"s":31,"n":6,"a":5.17,"d":0.26,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.26,"Os":114,"On":22,"Oa":5.18,"Od":0.52,"pm":22},"p":[[-28,{"n":5,"e":3652,"s":1}],[-27,{"n":5,"e":3658,"s":1}],[-26,{"n":4.5,"e":3672}],[-25,{"n":6.5,"e":3684}],[-23,{"n":4.5,"e":3703,"s":1}],[-22,{"n":5,"e":3712,"s":1}],[-20,{"n":5,"e":3732,"s":1}],[-19,{"n":5.5,"e":3738,"s":1}],[-18,{"n":5,"e":3754}],[-14,{"n":5.5,"e":3794}],[-13,{"n":6,"e":3799}],[-12,{"n":4.5,"e":3813}],[-11,{"n":5,"e":3820,"s":1}],[-7,{"n":6,"e":3866}],[-6,{"n":5.5,"e":3872}],[6,{"n":5.5,"e":6151}],[-5,{"n":4.5,"e":3879}],[5,{"n":5.5,"e":6163}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6193}],[1,{"n":5,"e":6207,"s":1}]],"fo":[[6151,[{"t":"Y"}]],[6163,[{"t":"Y"}]]]}],[3800,{"n":"Ambrose","f":"Thierry","fp":"A","r":6,"c":11,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Ss":6,"Sn":1,"Sa":6,"Os":91.5,"On":20,"Oa":4.58,"Od":0.54,"pm":2,"pa":18},"p":[[-28,{"n":4,"e":3652,"s":1}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4.5,"e":3672,"s":1}],[-24,{"n":5,"e":3692,"s":1}],[-22,{"n":4.5,"e":3712,"s":1}],[-19,{"n":4.5,"e":3738,"s":1}],[-17,{"n":4,"e":3763}],[-16,{"n":4.5,"e":3774,"s":1}],[-15,{"n":4.5,"e":3784,"s":1}],[-14,{"n":4,"e":3794,"s":1}],[-11,{"n":4,"e":3820}],[-10,{"n":4,"e":3832}],[-9,{"n":5,"e":3839,"s":1}],[-8,{"n":4.5,"e":3852,"s":1}],[-6,{"n":5,"e":3872,"s":1}],[6,{"n":6,"e":6151}],[-5,{"n":4.5,"e":3879,"s":1}],[4,{"n":5,"e":6172,"s":1}],[2,{"n":4.5,"e":6193,"s":1}],[1,{"n":4,"e":6207,"s":1}]]}],[3809,{"n":"Delaine","f":"Thomas","fp":"DL","r":7,"c":11,"s":{"s":5,"n":1,"a":5,"Os":58,"On":13,"Oa":4.46,"Od":0.52,"pd":10,"pm":3},"p":[[-27,{"n":4.5,"e":3658}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":5,"e":3703}],[-22,{"n":4.5,"e":3712,"s":1}],[-17,{"n":3.5,"e":3763}],[-16,{"n":4,"e":3774}],[-13,{"n":5,"e":3799}],[-9,{"n":4,"e":3839}],[-8,{"n":4,"e":3852}],[-7,{"n":5,"e":3866}],[-6,{"n":4.5,"e":3872}],[-5,{"n":4,"e":3879}],[1,{"n":5,"e":6207}]]}],[3815,{"n":"Boye","f":"John","fp":"DC","r":16,"c":11,"s":{"s":32,"n":6,"a":5.33,"d":0.41,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.41,"Og":2,"Os":138,"On":27,"Oa":5.11,"Od":0.82,"pd":27},"p":[[-28,{"n":6.5,"e":3652,"g":1}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4.5,"e":3672}],[-25,{"n":5.5,"e":3684}],[-24,{"n":5,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":6,"e":3712}],[-21,{"n":6.5,"e":3726}],[-20,{"n":6.5,"e":3732,"g":1}],[-18,{"n":5,"e":3754}],[-17,{"n":3.5,"e":3763}],[-16,{"n":4.5,"e":3774}],[-15,{"n":5,"e":3784}],[-14,{"n":5.5,"e":3794}],[-13,{"n":5.5,"e":3799}],[-10,{"n":3.5,"e":3832}],[-9,{"n":4,"e":3839}],[-8,{"n":4.5,"e":3852}],[-7,{"n":5.5,"e":3866}],[-6,{"n":4.5,"e":3872}],[6,{"n":5.5,"e":6151}],[-5,{"n":4,"e":3879}],[5,{"n":5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6193}],[1,{"n":5.5,"e":6207}]],"a":{"m":17,"a":19,"M":22,"n":9}}],[4897,{"n":"Tchimbembé","f":"Warren","fp":"A","r":5,"c":11,"s":{"s":20,"n":4,"a":5,"Ss":20,"Sn":4,"Sa":5,"Og":3,"Os":86,"On":17,"Oa":5.06,"Od":0.88,"pm":12,"pa":5},"p":[[-28,{"n":6,"e":4797,"g":1}],[-27,{"n":5,"e":4807}],[-26,{"n":8,"e":4817,"g":2}],[-25,{"n":5,"e":4819}],[-24,{"n":5,"e":4837}],[-22,{"n":4,"e":4857,"s":1}],[-18,{"n":4.5,"e":4891,"s":1}],[-17,{"n":4.5,"e":4902}],[-10,{"n":4.5,"e":4975,"s":1}],[-23,{"n":5,"e":4841}],[-19,{"n":4.5,"e":4886,"s":1}],[-16,{"n":5.5,"e":4916}],[-14,{"n":4.5,"e":4933,"s":1}],[6,{"n":5,"e":6151,"s":1}],[5,{"n":5,"e":6163,"s":1}],[4,{"n":5,"e":6172,"s":1}],[3,{"n":5,"e":6181,"s":1}]]}],[5012,{"n":"Kiki Kouyate","f":"","fp":"DC","r":7,"c":11,"s":{"s":5,"n":1,"a":5,"Og":3,"Os":82,"On":15,"Oa":5.47,"Od":1.33,"pd":15},"p":[[-15,{"n":3.5,"e":4927}],[-13,{"n":7,"e":4947,"g":1}],[-8,{"n":5.5,"e":4988}],[-28,{"n":5,"e":4797,"s":1}],[-21,{"n":5,"e":4862}],[-20,{"n":4,"e":4870}],[-19,{"n":8,"e":4886,"g":1}],[-18,{"n":7.5,"e":4891,"g":1}],[-17,{"n":6,"e":4902}],[-16,{"n":5.5,"e":4916}],[-12,{"n":6,"e":4951}],[-11,{"n":4,"e":4967}],[-9,{"n":4,"e":4987}],[-7,{"n":6,"e":5007}],[5,{"n":5,"e":6163,"s":1}]]}],[6003,{"n":"Yade","f":"Papa Ndiaga","fp":"MO","r":6,"c":11,"s":{"s":26,"n":5,"a":5.2,"d":0.84,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.84,"Os":36,"On":7,"Oa":5.14,"Od":0.69,"pm":7},"p":[[-26,{"n":5,"e":3672,"s":1}],[-21,{"n":5,"e":3726,"s":1}],[6,{"n":4.5,"e":6151,"s":1}],[5,{"n":5,"e":6163,"s":1}],[4,{"n":6.5,"e":6172,"s":1}],[3,{"n":4.5,"e":6181,"s":1}],[2,{"n":5.5,"e":6193,"s":1}]]}],[6289,{"n":"Traore","f":"Boubacar","fp":"MD","r":1,"c":11}],[6392,{"n":"Lacroix","f":"Lenny","fp":"DC","r":1,"c":11}],[6393,{"n":"Bronn","f":"Dylan","fp":"DC","r":8,"c":11,"s":{"s":31,"n":6,"a":5.17,"d":0.61,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.61,"Os":78,"On":15,"Oa":5.2,"Od":0.62,"pd":15},"p":[[-28,{"n":5.5,"e":3652}],[-27,{"n":6,"e":3658}],[-26,{"n":4.5,"e":3672}],[-25,{"n":5,"e":3684}],[-24,{"n":4,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":5.5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5.5,"e":3732}],[6,{"n":5.5,"e":6151}],[5,{"n":5.5,"e":6163}],[4,{"n":5.5,"e":6172}],[3,{"n":5.5,"e":6181}],[2,{"n":4,"e":6193}],[1,{"n":5,"e":6207}]],"fo":[[6181,[{"t":"Y"}]]],"a":{"m":9,"a":9,"M":9,"n":7}}],[6700,{"n":"Gueye","f":"Lamine","fp":"MO","r":3,"c":11,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[3,{"n":4.5,"e":6181,"s":1}]]}],[6714,{"n":"Jans","f":"Laurent","fp":"DL","r":6,"c":11}],[24,{"n":"Sidibé","f":"Djibril","fp":"DL","r":8,"c":13,"s":{"s":10,"n":2,"a":5,"Os":135,"On":27,"Oa":5,"Od":0.9,"pd":24,"pm":3},"p":[[4,{"n":5,"e":6176}],[-38,{"n":5,"e":3932,"s":1}],[-37,{"n":5.5,"e":3943}],[-34,{"n":5.5,"e":3973,"s":1}],[-33,{"n":5,"e":3986,"s":1}],[-29,{"n":3,"e":4020}],[-28,{"n":5,"e":4031,"s":1}],[-27,{"n":4,"e":4038}],[-26,{"n":5,"e":4052,"s":1}],[-25,{"n":6,"e":4066}],[-24,{"n":4,"e":4070}],[-23,{"n":5.5,"e":4087,"s":1}],[-22,{"n":5,"e":4092}],[-21,{"n":5,"e":4102}],[-20,{"n":5,"e":4113}],[-19,{"n":7,"e":4122}],[-18,{"n":5,"e":4131}],[-16,{"n":6,"e":4151}],[-15,{"n":3.5,"e":4167}],[-14,{"n":5.5,"e":4170}],[-13,{"n":4,"e":4183}],[-12,{"n":6.5,"e":4193}],[-11,{"n":4.5,"e":4203}],[-10,{"n":4,"e":4209}],[-9,{"n":6,"e":4222}],[-8,{"n":4.5,"e":4229,"s":1}],[2,{"n":5,"e":6193}]]}],[94,{"n":"Jemerson","f":"","fp":"DC","r":7,"c":13,"s":{"Os":48.5,"On":10,"Oa":4.85,"Od":0.67,"pd":10},"p":[[-12,{"n":4.5,"e":3816}],[-11,{"n":3.5,"e":3822}],[-19,{"n":6,"e":3740}],[-18,{"n":4.5,"e":3749}],[-17,{"n":5,"e":3760}],[-16,{"n":5,"e":3777}],[-14,{"n":5,"e":3790}],[-10,{"n":5,"e":3833}],[-8,{"n":5.5,"e":3853}],[-7,{"n":4.5,"e":3862}]]}],[208,{"n":"Aït Bennasser","f":"Youssef","fp":"MD","r":6,"c":13,"s":{"Os":61,"On":12,"Oa":5.08,"Od":0.9,"pm":12},"p":[[-28,{"n":5,"e":3656}],[-23,{"n":5,"e":3698}],[-22,{"n":5,"e":3710,"s":1}],[-18,{"n":4.5,"e":3750}],[-16,{"n":7.5,"e":3770}],[-15,{"n":5,"e":3785,"s":1}],[-13,{"n":5,"e":3804,"s":1}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5.5,"e":3829}],[-9,{"n":5,"e":3847,"s":1}],[-8,{"n":5,"e":3849,"s":1}],[-7,{"n":5,"e":3858,"s":1}]]}],[250,{"n":"Lecomte","f":"Benjamin","fp":"G","r":22,"c":13,"s":{"s":26.5,"n":5,"a":5.3,"d":1.57,"Ss":6,"Sn":1,"Sa":6,"Os":160,"On":29,"Oa":5.52,"Od":1.18,"pg":29},"p":[[5,{"n":6,"e":6164}],[1,{"n":4.5,"e":6203}],[-27,{"n":7,"e":3662}],[-25,{"n":6,"e":3683}],[-21,{"n":4,"e":3722}],[-15,{"n":6,"e":3780}],[-20,{"n":6,"e":3734}],[-9,{"n":5.5,"e":3842}],[-28,{"n":5,"e":3653}],[-26,{"n":5,"e":3669}],[-24,{"n":4,"e":3688}],[-23,{"n":6.5,"e":3706}],[-22,{"n":5,"e":3714}],[-19,{"n":6,"e":3740}],[-18,{"n":7,"e":3749}],[-17,{"n":6,"e":3760}],[-16,{"n":6,"e":3777}],[-14,{"n":5.5,"e":3790}],[-13,{"n":6.5,"e":3801}],[-12,{"n":6,"e":3816}],[-11,{"n":7,"e":3822}],[-10,{"n":4.5,"e":3833}],[-8,{"n":4.5,"e":3853}],[-7,{"n":5,"e":3862}],[6,{"n":6,"e":6149}],[-6,{"n":7,"e":3875}],[-5,{"n":2.5,"e":3883}],[4,{"n":3,"e":6176}],[2,{"n":7,"e":6193}]],"a":{"m":22,"a":29,"M":40,"n":8}}],[324,{"n":"Badiashile","f":"Loic","fp":"G","r":2,"c":13}],[336,{"n":"Jorge","f":"","fp":"DL","r":2,"c":13}],[646,{"n":"Fàbregas","f":"Cesc","fp":"MO","r":7,"c":13,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Os":103.5,"On":21,"Oa":4.93,"Od":0.84,"pm":20,"pa":1},"p":[[3,{"n":6,"e":6183}],[-28,{"n":5,"e":3653}],[-26,{"n":5,"e":3669,"s":1}],[-24,{"n":5.5,"e":3688,"s":1}],[-23,{"n":5,"e":3706}],[-21,{"n":4,"e":3722}],[-20,{"n":4,"e":3734}],[-18,{"n":4.5,"e":3749,"s":1}],[-17,{"n":6,"e":3760}],[-16,{"n":4.5,"e":3777,"s":1}],[-15,{"n":3.5,"e":3780}],[-11,{"n":5,"e":3822,"s":1}],[-10,{"n":7,"e":3833}],[-9,{"n":4.5,"e":3842}],[-8,{"n":5.5,"e":3853}],[-7,{"n":6,"e":3862}],[-6,{"n":4.5,"e":3875,"s":1}],[6,{"n":4,"e":6149}],[-5,{"n":4.5,"e":3883}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6176}]]}],[807,{"n":"Mannone","f":"Vito","fp":"G","r":6,"c":13}],[1227,{"n":"Aguilar","f":"Ruben","fp":"DL","r":13,"c":13,"s":{"g":1,"s":33,"n":6,"a":5.5,"d":1.05,"Sg":1,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.05,"Og":1,"Os":122,"On":23,"Oa":5.3,"Od":1.03,"pd":20,"pm":3},"p":[[-28,{"n":4.5,"e":3653}],[-26,{"n":5,"e":3669}],[-25,{"n":7,"e":3683}],[-23,{"n":6,"e":3706}],[-21,{"n":5,"e":3722,"s":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-19,{"n":7,"e":3740}],[-18,{"n":5.5,"e":3749,"s":1}],[-17,{"n":5,"e":3760,"s":1}],[-16,{"n":6.5,"e":3777}],[-14,{"n":5.5,"e":3790,"s":1}],[-12,{"n":4,"e":3816,"s":1}],[-10,{"n":4.5,"e":3833}],[-9,{"n":5,"e":3842,"s":1}],[-8,{"n":5,"e":3853,"s":1}],[-6,{"n":6,"e":3875}],[6,{"n":5,"e":6149}],[-5,{"n":3,"e":3883}],[5,{"n":7,"e":6164,"g":1}],[4,{"n":4,"e":6176}],[3,{"n":6,"e":6183}],[2,{"n":6,"e":6193}],[1,{"n":5,"e":6203}]],"fo":[[6193,[{"t":"Y"}]]],"a":{"m":10,"a":16,"M":27,"n":13}}],[1256,{"n":"Ballo-Toure","f":"Fode","fp":"DL","r":10,"c":13,"s":{"s":16,"n":3,"a":5.33,"d":0.58,"Oao":1,"Os":95,"On":20,"Oa":4.75,"Od":0.91,"pd":17,"pm":3},"p":[[-28,{"n":4.5,"e":3653}],[-27,{"n":4.5,"e":3662}],[-26,{"n":5,"e":3669}],[-25,{"n":5,"e":3683}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6,"e":3706}],[-22,{"n":3,"e":3714}],[-21,{"n":3.5,"e":3722}],[-20,{"n":4.5,"e":3734,"a":1}],[-16,{"n":5,"e":3777}],[-15,{"n":3.5,"e":3780}],[-13,{"n":5,"e":3801,"s":1}],[-12,{"n":5,"e":3816,"s":1}],[-9,{"n":4,"e":3842}],[-8,{"n":6.5,"e":3853}],[-7,{"n":5,"e":3862,"s":1}],[-5,{"n":3.5,"e":3883}],[5,{"n":6,"e":6164}],[3,{"n":5,"e":6183}],[1,{"n":5,"e":6203}]],"fo":[[6164,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":15,"n":7}}],[1417,{"n":"Grandsir","f":"Samuel","fp":"MO","r":7,"c":13,"s":{"Og":3,"Os":106,"On":20,"Oa":5.3,"Od":0.86,"pm":19,"pa":1},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":5.5,"e":3660}],[-26,{"n":6,"e":3673,"g":1}],[-25,{"n":6,"e":3680}],[-23,{"n":5.5,"e":3698}],[-22,{"n":5,"e":3711,"s":1}],[-21,{"n":5,"e":3718,"s":1}],[-19,{"n":4.5,"e":3741,"s":1}],[-17,{"n":5,"e":3758,"s":1}],[-15,{"n":5,"e":3779,"s":1}],[-14,{"n":4.5,"e":3791}],[-13,{"n":7,"e":3798,"g":1,"s":1}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5.5,"e":3818}],[-10,{"n":4.5,"e":3828}],[-9,{"n":5.5,"e":3839}],[-8,{"n":4,"e":3853,"s":1}],[-7,{"n":4.5,"e":3859}],[-6,{"n":7.5,"e":3869,"g":1}],[-5,{"n":5.5,"e":3880}]]}],[1433,{"n":"Aholou","f":"Jean Eudes","fp":"MD","r":8,"c":13,"s":{"s":14,"n":3,"a":4.67,"d":1.04,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":51.5,"On":10,"Oa":5.15,"Od":0.82,"pm":10},"p":[[-18,{"n":4,"e":3756}],[-28,{"n":5.5,"e":3656}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3702,"s":1}],[-17,{"n":5.5,"e":3765,"s":1}],[-16,{"n":6,"e":3776}],[-12,{"n":5.5,"e":3816,"s":1}],[6,{"n":3.5,"e":6156}],[2,{"n":5,"e":6193,"s":1}],[1,{"n":5.5,"e":6203,"s":1}]]}],[1523,{"n":"Jovetic","f":"Stevan","fp":"A","r":7,"c":13,"s":{"s":23.5,"n":5,"a":4.7,"d":0.27,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.27,"Og":2,"Os":68.5,"On":14,"Oa":4.89,"Od":0.53,"pm":1,"pa":13},"p":[[-28,{"n":4.5,"e":3653}],[-27,{"n":5,"e":3662,"s":1}],[-26,{"n":4.5,"e":3669}],[-25,{"n":5,"e":3683}],[-24,{"n":5,"e":3688}],[-23,{"n":6,"e":3706,"g":1}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":6,"e":3722,"g":1,"s":1}],[-15,{"n":4.5,"e":3780,"s":1}],[6,{"n":5,"e":6149,"s":1}],[5,{"n":5,"e":6164}],[4,{"n":4.5,"e":6176,"s":1}],[3,{"n":4.5,"e":6183,"s":1}],[2,{"n":4.5,"e":6193,"s":1}]]}],[1623,{"n":"Ben Yedder","f":"Wissam","fp":"A","r":38,"c":13,"s":{"g":3,"s":31.5,"n":6,"a":5.25,"d":1.25,"Sg":3,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.25,"Og":20,"Os":170.5,"On":29,"Oa":5.88,"Od":1.23,"pa":29},"p":[[-28,{"n":6,"e":3653,"g":1}],[-27,{"n":6,"e":3662,"g":1}],[-26,{"n":5,"e":3669}],[-25,{"n":5.5,"e":3683}],[-24,{"n":6.5,"e":3688,"g":1}],[-23,{"n":4.5,"e":3706}],[-22,{"n":6,"e":3714,"g":1}],[-21,{"n":5,"e":3722}],[-20,{"n":7.5,"e":3734,"g":1}],[-19,{"n":8.5,"e":3740,"g":2}],[-18,{"n":4.5,"e":3749}],[-17,{"n":7.5,"e":3760,"g":1}],[-16,{"n":7,"e":3777,"g":1}],[-15,{"n":4,"e":3780}],[-14,{"n":6,"e":3790}],[-13,{"n":5,"e":3801}],[-12,{"n":4.5,"e":3816}],[-11,{"n":6,"e":3822,"g":1}],[-10,{"n":7.5,"e":3833,"g":2}],[-9,{"n":6,"e":3842,"g":1}],[-8,{"n":7.5,"e":3853,"g":1}],[-7,{"n":6,"e":3862,"g":1,"s":1}],[6,{"n":4,"e":6149}],[-5,{"n":7,"e":3883,"g":2}],[5,{"n":7,"e":6164,"g":2}],[4,{"n":6.5,"e":6176,"g":1}],[3,{"n":5,"e":6183}],[2,{"n":5,"e":6193}],[1,{"n":4,"e":6203}]],"a":{"m":50,"a":88,"M":181,"n":37}}],[1928,{"n":"Maripán","f":"Guillermo","fp":"DC","r":8,"c":13,"s":{"s":10,"n":2,"a":5,"Og":2,"Os":106.5,"On":21,"Oa":5.07,"Od":1.18,"pd":21},"p":[[-28,{"n":4.5,"e":3653}],[-26,{"n":7,"e":3669,"g":1}],[-25,{"n":5.5,"e":3683}],[-24,{"n":5,"e":3688}],[-23,{"n":6.5,"e":3706}],[-22,{"n":4,"e":3714}],[-21,{"n":3.5,"e":3722}],[-20,{"n":5,"e":3734}],[-19,{"n":5.5,"e":3740}],[-18,{"n":5.5,"e":3749}],[-17,{"n":7.5,"e":3760,"g":1}],[-16,{"n":5,"e":3777}],[-15,{"n":3.5,"e":3780}],[-14,{"n":4.5,"e":3790}],[-13,{"n":6,"e":3801}],[-9,{"n":3,"e":3842}],[-7,{"n":6,"e":3862}],[-6,{"n":5.5,"e":3875}],[-5,{"n":3.5,"e":3883}],[4,{"n":5,"e":6176,"s":1}],[2,{"n":5,"e":6193,"s":1}]],"a":{"m":12,"a":23,"M":31,"n":8}}],[2034,{"n":"Keita","f":"","fp":"A","r":6,"c":13,"s":{"Og":4,"Os":94.5,"On":19,"Oa":4.97,"Od":1.2,"pm":5,"pa":14},"p":[[-27,{"n":5.5,"e":3662}],[-25,{"n":4,"e":3683,"s":1}],[-24,{"n":4.5,"e":3688}],[-23,{"n":4.5,"e":3706,"s":1}],[-22,{"n":4,"e":3714}],[-20,{"n":5,"e":3734}],[-19,{"n":8,"e":3740,"g":1}],[-18,{"n":5,"e":3749,"s":1}],[-17,{"n":7,"e":3760,"g":1}],[-16,{"n":5.5,"e":3777,"s":1}],[-15,{"n":3.5,"e":3780}],[-14,{"n":4.5,"e":3790,"s":1}],[-12,{"n":3,"e":3816}],[-11,{"n":4.5,"e":3822,"s":1}],[-10,{"n":5,"e":3833,"s":1}],[-9,{"n":4,"e":3842,"s":1}],[-8,{"n":6,"e":3853,"g":1,"s":1}],[-6,{"n":5,"e":3875}],[-5,{"n":6,"e":3883,"g":1,"s":1}]]}],[2038,{"n":"Geubbels","f":"Willem","fp":"A","r":8,"c":13,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":0.97,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":24,"On":5,"Oa":4.8,"Od":0.97,"pa":5},"p":[[6,{"n":4.5,"e":6149,"s":1}],[4,{"n":4,"e":6176,"s":1}],[3,{"n":6.5,"e":6183,"g":1,"s":1}],[2,{"n":4.5,"e":6193,"s":1}],[1,{"n":4.5,"e":6203,"s":1}]],"fo":[[6176,[{"t":"Y"}]],[6183,[{"t":"Y"}]]],"a":{"m":3,"a":7,"M":14,"n":6}}],[2238,{"n":"Tchouameni","f":"Aurelien","fp":"MD","r":11,"c":13,"s":{"s":26,"n":5,"a":5.2,"d":0.76,"Os":105.5,"On":20,"Oa":5.28,"Od":0.85,"pm":20},"p":[[-27,{"n":5,"e":3662,"s":1}],[-23,{"n":4.5,"e":3706,"s":1}],[-22,{"n":5,"e":3714,"s":1}],[-21,{"n":5,"e":3724,"s":1}],[-20,{"n":4,"e":3730}],[-19,{"n":5,"e":3746,"s":1}],[-17,{"n":4.5,"e":3759}],[-15,{"n":5.5,"e":3785}],[-14,{"n":6.5,"e":3790}],[-13,{"n":5.5,"e":3804}],[-12,{"n":7,"e":3810}],[-9,{"n":4.5,"e":3847}],[-8,{"n":5,"e":3849}],[-7,{"n":7,"e":3858}],[-5,{"n":5.5,"e":3879}],[5,{"n":4,"e":6164}],[4,{"n":5.5,"e":6176}],[3,{"n":5.5,"e":6183}],[2,{"n":5,"e":6193}],[1,{"n":6,"e":6203}]],"fo":[[6164,[{"t":"Y"},{"t":"O"}]],[6183,[{"t":"Y"}]],[6193,[{"t":"Y"}]]],"a":{"m":10,"a":14,"M":24,"n":5}}],[2275,{"n":"Pellegri","f":"Pietro","fp":"A","r":2,"c":13,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[6,{"n":4.5,"e":6149,"s":1}],[3,{"n":4,"e":6183,"s":1}]]}],[2459,{"n":"Gelson Martins","f":"","fp":"A","r":10,"c":13,"s":{"s":25,"n":5,"a":5,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Og":4,"Os":112.5,"On":22,"Oa":5.11,"Od":1.22,"pm":15,"pa":7},"p":[[-22,{"n":2.5,"e":3714}],[-21,{"n":4,"e":3722}],[-20,{"n":7,"e":3734,"g":1}],[-19,{"n":7.5,"e":3740,"g":1}],[-18,{"n":5.5,"e":3749}],[-17,{"n":6,"e":3760}],[-16,{"n":6,"e":3777,"g":1,"s":1}],[-15,{"n":3.5,"e":3780}],[-14,{"n":5,"e":3790}],[-13,{"n":5,"e":3801}],[-12,{"n":4.5,"e":3816}],[-11,{"n":6.5,"e":3822}],[-9,{"n":4,"e":3842}],[-8,{"n":6.5,"e":3853,"g":1}],[-7,{"n":6,"e":3862}],[-6,{"n":3.5,"e":3875}],[6,{"n":5,"e":6149}],[-5,{"n":4.5,"e":3883}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":4.5,"e":6183}],[2,{"n":5,"e":6193}],[1,{"n":5.5,"e":6203}]],"fo":[[6149,[{"t":"Y"}]],[6193,[{"t":"Y"}]]],"a":{"m":2,"a":12,"M":28,"n":19}}],[2614,{"n":"Pelé","f":"","fp":"MD","r":5,"c":13}],[2622,{"n":"Diop","f":"Sofiane","fp":"MO","r":7,"c":13,"s":{"g":1,"s":33.5,"n":6,"a":5.58,"d":0.86,"Sg":1,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.86,"Og":2,"Os":111,"On":21,"Oa":5.29,"Od":0.77,"pm":20,"pa":1},"p":[[-28,{"n":5,"e":4791,"s":1}],[-27,{"n":5,"e":4804}],[-26,{"n":5.5,"e":4812}],[-25,{"n":7.5,"e":4827,"g":1}],[-22,{"n":5,"e":4856,"s":1}],[-21,{"n":4.5,"e":4858,"s":1}],[-19,{"n":5,"e":4883,"s":1}],[-18,{"n":5,"e":4896,"s":1}],[-17,{"n":5,"e":4905,"s":1}],[-15,{"n":5.5,"e":4923}],[-14,{"n":5.5,"e":4936}],[-13,{"n":5,"e":4946,"s":1}],[-12,{"n":4.5,"e":4956}],[-11,{"n":4.5,"e":4960}],[-10,{"n":5,"e":4976,"s":1}],[6,{"n":6,"e":6149}],[5,{"n":5,"e":6164,"s":1}],[4,{"n":4.5,"e":6176}],[3,{"n":7,"e":6183,"g":1}],[2,{"n":5.5,"e":6193,"s":1}],[1,{"n":5.5,"e":6203,"s":1}]],"fo":[[6183,[{"t":"Y"}]]],"a":{"m":7,"a":9,"M":11,"n":10}}],[2683,{"n":"Disasi","f":"Axel","fp":"DC","r":17,"c":13,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":0.91,"Og":2,"Os":139,"On":28,"Oa":4.96,"Od":0.88,"pd":28},"p":[[-25,{"n":5,"e":3686}],[-24,{"n":4,"e":3697}],[-27,{"n":5.5,"e":3662}],[-26,{"n":5,"e":3676}],[-23,{"n":6,"e":3701}],[-22,{"n":5.5,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":3,"e":3733}],[-19,{"n":4,"e":3745}],[-18,{"n":5.5,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":3.5,"e":3768}],[-15,{"n":5,"e":3785}],[-14,{"n":6,"e":3794,"g":1}],[-13,{"n":6,"e":3805}],[-12,{"n":5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":5,"e":3845}],[-8,{"n":4.5,"e":3856}],[-7,{"n":7,"e":3865}],[-6,{"n":5.5,"e":3875}],[-5,{"n":4.5,"e":3885}],[5,{"n":3.5,"e":6164}],[4,{"n":4,"e":6176}],[3,{"n":5.5,"e":6183}],[2,{"n":5.5,"e":6193}],[1,{"n":5,"e":6203,"g":1}]],"fo":[[6164,[{"t":"R"}]],[6176,[{"t":"Y"}]],[6203,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":37,"n":22}}],[2720,{"n":"Golovin","f":"Aleksandr","fp":"MO","r":21,"c":13,"s":{"s":12,"n":2,"a":6,"d":1.41,"Og":3,"Os":135,"On":24,"Oa":5.63,"Od":1.27,"pm":23,"pa":1},"p":[[-28,{"n":5.5,"e":3653}],[-27,{"n":6,"e":3662}],[-25,{"n":7,"e":3683}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6,"e":3706}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":4.5,"e":3722}],[-20,{"n":6,"e":3734}],[-19,{"n":7,"e":3740}],[-18,{"n":6,"e":3749}],[-17,{"n":7,"e":3760}],[-16,{"n":5.5,"e":3777}],[-15,{"n":3.5,"e":3780}],[-14,{"n":4,"e":3790}],[-13,{"n":7,"e":3801,"g":1}],[-12,{"n":4.5,"e":3816}],[-11,{"n":7,"e":3822}],[-9,{"n":4,"e":3842}],[-8,{"n":4.5,"e":3853}],[-7,{"n":8.5,"e":3862,"g":2}],[-6,{"n":4.5,"e":3875}],[-5,{"n":5,"e":3883}],[2,{"n":5,"e":6193}],[1,{"n":7,"e":6203}]],"fo":[[6193,[{"t":"I"}]]],"a":{"m":21,"a":29,"M":41,"n":19}}],[2721,{"n":"Barreca","f":"Antonio","fp":"DL","r":4,"c":13,"s":{"Os":74,"On":16,"Oa":4.63,"Od":0.81,"pd":7,"pm":9},"p":[[-38,{"n":6,"e":5451,"s":1}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5491,"s":1}],[-33,{"n":4.5,"e":5506}],[-32,{"n":5.5,"e":5511,"s":1}],[-31,{"n":4,"e":5521}],[-21,{"n":5,"e":5619}],[-20,{"n":3.5,"e":5631}],[-19,{"n":6,"e":5647}],[-11,{"n":3.5,"e":5721,"s":1}],[-6,{"n":3.5,"e":5770}],[-5,{"n":5,"e":5780}],[-3,{"n":5,"e":5800}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":4,"e":5548}],[-27,{"n":4.5,"e":5561,"s":1}]]}],[2768,{"n":"Fofana","f":"Youssouf","fp":"MD","r":14,"c":13,"s":{"s":21,"n":5,"a":4.2,"d":0.57,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.76,"Og":1,"Os":124,"On":24,"Oa":5.17,"Od":0.99,"pm":24},"p":[[-19,{"n":5,"e":3747}],[-28,{"n":5.5,"e":3653}],[-27,{"n":4.5,"e":3662}],[-26,{"n":6,"e":3669}],[-25,{"n":7,"e":3683}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6.5,"e":3706}],[-22,{"n":4.5,"e":3714}],[-21,{"n":5,"e":3722}],[-20,{"n":4.5,"e":3732}],[-18,{"n":5.5,"e":3750}],[-17,{"n":5,"e":3767,"s":1}],[-16,{"n":3.5,"e":3771}],[-15,{"n":6.5,"e":3787,"g":1}],[-14,{"n":7,"e":3788}],[-13,{"n":6,"e":3807}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5,"e":3827}],[-10,{"n":5,"e":3831}],[6,{"n":3.5,"e":6149}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6176}],[2,{"n":4,"e":6193}],[1,{"n":4,"e":6203}]],"fo":[[6193,[{"t":"Y"},{"t":"O"}]]]}],[2955,{"n":"Gouano","f":"Gobe","fp":"A","r":1,"c":13}],[2956,{"n":"Biancone","f":"Giulian","fp":"DL","r":2,"c":13,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[6,{"n":5,"e":6149}],[5,{"n":4.5,"e":6164,"s":1}]],"fo":[[6149,[{"t":"Y"}]]]}],[2961,{"n":"Badiashile Mukinayi","f":"Benoit","fp":"DC","r":17,"c":13,"s":{"g":2,"s":31.5,"n":6,"a":5.25,"d":0.94,"Sg":2,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.94,"Og":2,"Os":99,"On":19,"Oa":5.21,"Od":0.82,"pd":19},"p":[[-27,{"n":5,"e":3662}],[-26,{"n":6,"e":3669}],[-24,{"n":6,"e":3688}],[-22,{"n":3.5,"e":3714}],[-14,{"n":4.5,"e":3790}],[-13,{"n":6,"e":3801}],[-12,{"n":5,"e":3816}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3833}],[-9,{"n":4,"e":3842}],[-8,{"n":6,"e":3853}],[-7,{"n":5.5,"e":3862}],[-6,{"n":5.5,"e":3875}],[6,{"n":4,"e":6149}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6176}],[3,{"n":6,"e":6183}],[2,{"n":6.5,"e":6193,"g":1}],[1,{"n":5.5,"e":6203,"g":1}]],"a":{"m":13,"a":22,"M":31,"n":24}}],[3652,{"n":"Onyekuru","f":"Henry","fp":"MO","r":10,"c":13,"s":{"s":19,"n":4,"a":4.75,"d":0.96,"Os":23,"On":5,"Oa":4.6,"Od":0.89,"pa":5},"p":[[-6,{"n":4,"e":3875,"s":1}],[4,{"n":4,"e":6176,"s":1}],[3,{"n":6,"e":6183,"s":1}],[2,{"n":5,"e":6193}],[1,{"n":4,"e":6203}]],"a":{"m":7,"a":10,"M":12,"n":9}}],[3764,{"n":"Zagre","f":"Arthur","fp":"DL","r":2,"c":13}],[3780,{"n":"Gil Dias","f":"","fp":"MO","r":4,"c":13,"s":{"Os":111,"On":23,"Oa":4.83,"Od":0.56,"pd":3,"pm":20},"p":[[-38,{"n":5.5,"e":4311,"s":1}],[-37,{"n":5,"e":4323,"s":1}],[-36,{"n":4.5,"e":4331}],[-35,{"n":4.5,"e":4346,"s":1}],[-34,{"n":5,"e":4352,"s":1}],[-33,{"n":5.5,"e":4358}],[-32,{"n":5,"e":4373,"s":1}],[-30,{"n":5,"e":4393,"s":1}],[-28,{"n":4.5,"e":4411,"s":1}],[-24,{"n":4.5,"e":4451}],[-23,{"n":5,"e":4459,"s":1}],[-31,{"n":5,"e":4381,"s":1}],[-21,{"n":4,"e":3722}],[-19,{"n":5,"e":3740}],[-18,{"n":5,"e":3749}],[-17,{"n":5.5,"e":3760}],[-14,{"n":3.5,"e":3790}],[-13,{"n":6,"e":3801}],[-12,{"n":4,"e":3816}],[-11,{"n":5,"e":3822}],[-10,{"n":4.5,"e":3833}],[-7,{"n":4.5,"e":3862}],[-6,{"n":5,"e":3875}]],"fo":[[4331,[{"t":"Y"}]]]}],[6701,{"n":"Pavlovic","f":"Strahinja","fp":"DC","r":3,"c":13}],[6707,{"n":"Majecki","f":"Radoslaw","fp":"G","r":7,"c":13,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[3,{"n":5,"e":6183}]]}],[6926,{"n":"Millot","f":"Enzo","fp":"MO","r":1,"c":13,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[6,{"n":4.5,"e":6149,"s":1}]]}],[6927,{"n":"Matazo","f":"Eliot","fp":"MD","r":1,"c":13,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[5,{"n":5,"e":6164,"s":1}]]}],[6928,{"n":"Matsima","f":"Chrislain","fp":"DC","r":3,"c":13,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.06,"Os":9.5,"On":2,"Oa":4.75,"Od":1.06,"pd":2},"p":[[6,{"n":4,"e":6149}],[5,{"n":5.5,"e":6164,"s":1}]],"fo":[[6149,[{"t":"Y"}]]]}],[6929,{"n":"Bakali Wawina","f":"Jonathan","fp":"A","r":1,"c":13}],[7145,{"n":"Caio Henrique","f":"","fp":"DL","r":6,"c":13}],[7182,{"n":"Volland","f":"Kevin","fp":"A","r":16,"c":13,"s":{"s":19.5,"n":4,"a":4.88,"d":1.55,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.55,"Os":19.5,"On":4,"Oa":4.88,"Od":1.55,"pa":4},"p":[[6,{"n":3.5,"e":6149}],[5,{"n":7,"e":6164}],[4,{"n":4,"e":6176}],[3,{"n":5,"e":6183}]],"fo":[[6149,[{"t":"Y"}]]],"a":{"m":17,"a":26,"M":36,"n":16}}],[7225,{"n":"Gabriel Pereira","f":"","fp":"G","r":3,"c":13}],[7366,{"n":"Florentino Luís","f":"","fp":"MD","r":6,"c":13,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[6,{"n":4.5,"e":6149,"s":1}]]}],[40,{"n":"Delort","f":"Andy","fp":"A","r":21,"c":15,"s":{"g":3,"s":30.5,"n":5,"a":6.1,"d":1.95,"Sg":3,"Ss":19,"Sn":3,"Sa":6.33,"Sd":2.08,"Og":11,"Os":151,"On":27,"Oa":5.59,"Od":1.4,"pa":27},"p":[[6,{"n":4,"e":6152}],[3,{"n":7.5,"e":6184}],[-28,{"n":3.5,"e":3655}],[-27,{"n":6,"e":3663}],[-22,{"n":4,"e":3715}],[-17,{"n":4,"e":3761}],[-8,{"n":4,"e":3857}],[-26,{"n":5,"e":3668}],[-24,{"n":7,"e":3693,"g":1}],[-23,{"n":4,"e":3703}],[-21,{"n":6,"e":3723,"g":1}],[-20,{"n":7,"e":3728,"g":1}],[-19,{"n":6,"e":3741}],[-18,{"n":6,"e":3752,"g":1}],[-16,{"n":6,"e":3772}],[-15,{"n":7,"e":3781,"g":1}],[-14,{"n":4,"e":3796}],[-13,{"n":6,"e":3802}],[-12,{"n":6,"e":3813,"g":1}],[-11,{"n":5,"e":3821}],[-9,{"n":7.5,"e":3842,"g":1}],[-7,{"n":4.5,"e":3863}],[-6,{"n":4.5,"e":3871}],[-5,{"n":7.5,"e":3884,"g":1}],[5,{"n":7,"e":6160,"g":1}],[4,{"n":8,"e":6173,"g":2}],[1,{"n":4,"e":6204}]],"fo":[[6173,[{"t":"Y"}]],[6204,[{"t":"Y"}]]],"a":{"m":22,"a":39,"M":70,"n":51}}],[150,{"n":"Hilton","f":"","fp":"DC","r":17,"c":15,"s":{"s":19.5,"n":4,"a":4.88,"d":0.63,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":151.5,"On":28,"Oa":5.41,"Od":1,"pd":28},"p":[[-28,{"n":3.5,"e":3655}],[-27,{"n":7.5,"e":3663}],[-26,{"n":5,"e":3668}],[-25,{"n":5.5,"e":3683}],[-24,{"n":7,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":4,"e":3715}],[-21,{"n":5.5,"e":3723}],[-20,{"n":5.5,"e":3728}],[-19,{"n":7,"e":3741}],[-18,{"n":6,"e":3752}],[-17,{"n":3.5,"e":3761}],[-16,{"n":5.5,"e":3772}],[-15,{"n":6,"e":3781}],[-14,{"n":5.5,"e":3796}],[-13,{"n":6,"e":3802}],[-12,{"n":5,"e":3813}],[-11,{"n":5.5,"e":3821}],[-10,{"n":4.5,"e":3836}],[-9,{"n":6.5,"e":3842}],[-8,{"n":4.5,"e":3857}],[-7,{"n":6,"e":3863}],[-6,{"n":6.5,"e":3871}],[6,{"n":5,"e":6152}],[-5,{"n":5.5,"e":3884}],[5,{"n":4,"e":6160}],[3,{"n":5.5,"e":6184}],[1,{"n":5,"e":6204}]],"fo":[[6204,[{"t":"R"},{"t":"Y"}]]],"a":{"m":18,"a":23,"M":32,"n":28}}],[153,{"n":"Pedro Mendes","f":"","fp":"DC","r":10,"c":15,"s":{"s":30,"n":6,"a":5,"d":0.71,"Ss":20,"Sn":4,"Sa":5,"Sd":0.82,"Og":1,"Os":87,"On":18,"Oa":4.83,"Od":1.1,"pd":18},"p":[[2,{"n":4.5,"e":6189}],[-28,{"n":3,"e":3655}],[-19,{"n":5.5,"e":3741}],[-17,{"n":4,"e":3761}],[-15,{"n":3.5,"e":3781}],[-14,{"n":5.5,"e":3796}],[-12,{"n":3.5,"e":3813}],[-11,{"n":6,"e":3821}],[-10,{"n":4.5,"e":3836}],[-9,{"n":7.5,"e":3842,"g":1}],[-8,{"n":4,"e":3857}],[6,{"n":4,"e":6152}],[-6,{"n":5,"e":3871}],[-5,{"n":5,"e":3884}],[5,{"n":5,"e":6160}],[4,{"n":6,"e":6173}],[3,{"n":5,"e":6184}],[1,{"n":5.5,"e":6204}]],"a":{"m":12,"a":15,"M":24,"n":13}}],[197,{"n":"Congré","f":"Daniel","fp":"DC","r":11,"c":15,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":1.29,"Sg":2,"Ss":34,"Sn":6,"Sa":5.67,"Sd":1.29,"Og":2,"Oao":1,"Os":136,"On":27,"Oa":5.04,"Od":1.08,"pd":27},"p":[[-28,{"n":3.5,"e":3655}],[-27,{"n":6.5,"e":3663}],[-26,{"n":5,"e":3668}],[-25,{"n":4.5,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":3,"e":3715,"a":1}],[-21,{"n":5,"e":3723}],[-20,{"n":5.5,"e":3728}],[-19,{"n":5.5,"e":3741}],[-18,{"n":4,"e":3752}],[-17,{"n":4.5,"e":3761}],[-15,{"n":4,"e":3781}],[-14,{"n":4.5,"e":3796}],[-13,{"n":7,"e":3802}],[-12,{"n":3.5,"e":3813}],[-11,{"n":5,"e":3821}],[-9,{"n":5,"e":3842,"s":1}],[-8,{"n":5,"e":3857}],[-7,{"n":5.5,"e":3863}],[6,{"n":5.5,"e":6152}],[-5,{"n":4.5,"e":3884}],[5,{"n":5.5,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":8,"e":6184,"g":2}],[2,{"n":4,"e":6189}],[1,{"n":5.5,"e":6204}]],"fo":[[6173,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":36,"n":17}}],[212,{"n":"Ferri","f":"Jordan","fp":"MD","r":10,"c":15,"s":{"s":29,"n":6,"a":4.83,"d":0.61,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.61,"Os":85,"On":18,"Oa":4.72,"Od":0.62,"pm":18},"p":[[-28,{"n":4.5,"e":3655,"s":1}],[-27,{"n":5.5,"e":3663}],[-26,{"n":5,"e":3668,"s":1}],[-25,{"n":5,"e":3683}],[-24,{"n":5.5,"e":3693}],[-23,{"n":4.5,"e":3703}],[-22,{"n":3.5,"e":3715}],[-21,{"n":4,"e":3723}],[-20,{"n":4.5,"e":3728,"s":1}],[-10,{"n":4.5,"e":3836}],[-6,{"n":4,"e":3871}],[6,{"n":4.5,"e":6152}],[-5,{"n":5.5,"e":3884}],[5,{"n":4,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":5.5,"e":6184}],[2,{"n":5,"e":6189}],[1,{"n":4.5,"e":6204}]],"fo":[[6204,[{"t":"Y"}]]]}],[243,{"n":"Laborde","f":"Gaetan","fp":"A","r":18,"c":15,"s":{"g":2,"s":36.5,"n":6,"a":6.08,"d":1.28,"Sg":2,"Ss":36.5,"Sn":6,"Sa":6.08,"Sd":1.28,"Og":8,"Os":156,"On":30,"Oa":5.2,"Od":1.49,"pa":30},"p":[[-28,{"n":3,"e":3655}],[-27,{"n":7.5,"e":3663,"g":1}],[-26,{"n":3.5,"e":3668}],[-25,{"n":3.5,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":4.5,"e":3715}],[-21,{"n":4,"e":3723}],[-20,{"n":7.5,"e":3728,"g":1}],[-19,{"n":8,"e":3741,"g":2}],[-18,{"n":3.5,"e":3752}],[-17,{"n":4,"e":3761}],[-16,{"n":4,"e":3772}],[-15,{"n":7,"e":3781,"g":1}],[-14,{"n":5,"e":3796}],[-13,{"n":6,"e":3802,"g":1}],[-12,{"n":3.5,"e":3813}],[-11,{"n":4,"e":3821}],[-10,{"n":4.5,"e":3836}],[-9,{"n":7,"e":3842}],[-8,{"n":5,"e":3857,"s":1}],[-7,{"n":4.5,"e":3863}],[-6,{"n":4,"e":3871}],[6,{"n":4.5,"e":6152}],[-5,{"n":5,"e":3884}],[5,{"n":6.5,"e":6160}],[4,{"n":7.5,"e":6173}],[3,{"n":7,"e":6184,"g":1}],[2,{"n":6.5,"e":6189,"g":1}],[1,{"n":4.5,"e":6204}]],"a":{"m":19,"a":31,"M":62,"n":38}}],[270,{"n":"Souquet","f":"Arnaud","fp":"DL","r":12,"c":15,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":0.45,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":123,"On":25,"Oa":4.92,"Od":0.93,"pd":4,"pm":21},"p":[[-26,{"n":4.5,"e":3668}],[-25,{"n":5.5,"e":3683}],[-24,{"n":5,"e":3693,"s":1}],[-23,{"n":4.5,"e":3703}],[-22,{"n":3,"e":3715}],[-21,{"n":6,"e":3723}],[-20,{"n":6,"e":3728}],[-19,{"n":5.5,"e":3741}],[-18,{"n":4,"e":3752}],[-17,{"n":2.5,"e":3761}],[-16,{"n":5,"e":3772,"s":1}],[-15,{"n":5,"e":3781}],[-14,{"n":5,"e":3796}],[-13,{"n":5.5,"e":3802}],[-12,{"n":5,"e":3813}],[-11,{"n":6.5,"e":3821}],[-10,{"n":4,"e":3836}],[-7,{"n":6.5,"e":3863,"g":1}],[-6,{"n":5,"e":3871}],[6,{"n":5,"e":6152}],[-5,{"n":5,"e":3884}],[4,{"n":5,"e":6173,"g":1}],[3,{"n":5,"e":6184}],[2,{"n":4,"e":6189}],[1,{"n":5,"e":6204}]],"fo":[[6152,[{"t":"Y"}]],[6173,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":25,"n":16}}],[320,{"n":"Mollet","f":"Florent","fp":"MO","r":22,"c":15,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":0.91,"Sg":1,"Ss":15,"Sn":3,"Sa":5,"Sd":0.87,"Og":7,"Os":152,"On":28,"Oa":5.43,"Od":1.25,"pm":12,"pa":16},"p":[[-28,{"n":3,"e":3655}],[-27,{"n":7,"e":3663}],[-26,{"n":5,"e":3668,"s":1}],[-25,{"n":4.5,"e":3683}],[-24,{"n":5.5,"e":3693}],[-23,{"n":5.5,"e":3703}],[-22,{"n":5,"e":3715}],[-21,{"n":7.5,"e":3723,"g":1}],[-20,{"n":5,"e":3728,"s":1}],[-19,{"n":8,"e":3741,"g":1}],[-18,{"n":5,"e":3752}],[-17,{"n":4.5,"e":3761,"s":1}],[-16,{"n":7,"e":3772,"g":1}],[-15,{"n":6,"e":3781,"g":1,"s":1}],[-14,{"n":5,"e":3796,"s":1}],[-12,{"n":4.5,"e":3813}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5,"e":3836}],[-9,{"n":8,"e":3842,"g":1}],[-8,{"n":4.5,"e":3857,"s":1}],[-7,{"n":5,"e":3863}],[-6,{"n":5.5,"e":3871}],[6,{"n":4.5,"e":6152,"s":1}],[-5,{"n":7,"e":3884,"g":1}],[5,{"n":4.5,"e":6160,"s":1}],[4,{"n":6,"e":6173,"g":1,"s":1}],[2,{"n":3.5,"e":6189}],[1,{"n":5,"e":6204,"s":1}]],"fo":[[6189,[{"t":"R"}]]],"a":{"m":24,"a":32,"M":44,"n":28}}],[440,{"n":"Dolly","f":"Keagan","fp":"MO","r":6,"c":15,"s":{"s":10,"n":2,"a":5,"Os":20.5,"On":4,"Oa":5.13,"Od":0.25,"pm":3,"pa":1},"p":[[-8,{"n":5.5,"e":3857}],[-5,{"n":5,"e":3884,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5,"e":6189,"s":1}]]}],[1242,{"n":"Bertaud","f":"Dimitry","fp":"G","r":7,"c":15,"s":{"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pg":2},"p":[[-25,{"n":4.5,"e":3683}],[-22,{"n":3,"e":3715}]]}],[1244,{"n":"Cozza","f":"Nicolas","fp":"DC","r":6,"c":15,"s":{"s":5,"n":1,"a":5,"Os":37,"On":7,"Oa":5.29,"Od":0.57,"pd":7},"p":[[-13,{"n":6,"e":3802}],[-10,{"n":4.5,"e":3836}],[-9,{"n":5,"e":3842}],[-7,{"n":6,"e":3863}],[-6,{"n":5.5,"e":3871}],[-5,{"n":5,"e":3884,"s":1}],[4,{"n":5,"e":6173}]],"fo":[[6173,[{"t":"Y"}]]]}],[1532,{"n":"Junior Sambia","f":"","fp":"MD","r":7,"c":15,"s":{"s":28.5,"n":6,"a":4.75,"d":0.99,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.99,"Og":1,"Oao":1,"Os":110,"On":23,"Oa":4.78,"Od":0.74,"pd":1,"pm":22},"p":[[-28,{"n":4.5,"e":3655,"s":1}],[-27,{"n":5,"e":3663,"s":1}],[-26,{"n":4.5,"e":3668}],[-24,{"n":4.5,"e":3693}],[-23,{"n":5,"e":3703,"s":1}],[-22,{"n":5,"e":3715,"s":1}],[-21,{"n":5,"e":3723,"s":1}],[-20,{"n":5,"e":3728}],[-19,{"n":5.5,"e":3741,"s":1}],[-17,{"n":4.5,"e":3761,"s":1}],[-16,{"n":3,"e":3772,"a":1}],[-15,{"n":5.5,"e":3781,"s":1}],[-14,{"n":4.5,"e":3796,"s":1}],[-13,{"n":4,"e":3802,"s":1}],[-12,{"n":6,"e":3813,"g":1,"s":1}],[-9,{"n":5,"e":3842}],[-6,{"n":5,"e":3871,"s":1}],[6,{"n":5,"e":6152,"s":1}],[5,{"n":3,"e":6160}],[4,{"n":6,"e":6173,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5,"e":6189,"s":1}],[1,{"n":4.5,"e":6204,"s":1}]]}],[2268,{"n":"Oyongo","f":"Ambroise","fp":"DL","r":9,"c":15,"s":{"s":25.5,"n":5,"a":5.1,"d":0.22,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":0.22,"Os":112,"On":23,"Oa":4.87,"Od":0.69,"pd":6,"pm":17},"p":[[-26,{"n":5,"e":3668}],[-23,{"n":5,"e":3703}],[-22,{"n":3.5,"e":3715}],[-21,{"n":5,"e":3723}],[-20,{"n":5,"e":3728}],[-19,{"n":5.5,"e":3741}],[-18,{"n":4.5,"e":3752}],[-17,{"n":3,"e":3761}],[-15,{"n":5,"e":3781}],[-14,{"n":5,"e":3796}],[-13,{"n":5,"e":3802}],[-12,{"n":4,"e":3813}],[-11,{"n":5,"e":3821}],[-10,{"n":5,"e":3836}],[-9,{"n":6,"e":3842}],[-7,{"n":6,"e":3863}],[-6,{"n":4,"e":3871}],[6,{"n":5,"e":6152,"s":1}],[-5,{"n":5,"e":3884}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5.5,"e":6189,"s":1}]]}],[2326,{"n":"Ammour","f":"Yannis","fp":"MO","r":1,"c":15}],[2613,{"n":"Skuletic","f":"Petar","fp":"A","r":7,"c":15,"s":{"s":5,"n":1,"a":5,"Os":21.5,"On":5,"Oa":4.3,"Od":0.76,"pa":5},"p":[[-18,{"n":4.5,"e":3752,"s":1}],[-10,{"n":4.5,"e":3836,"s":1}],[-8,{"n":3,"e":3857}],[-6,{"n":4.5,"e":3871,"s":1}],[2,{"n":5,"e":6189,"s":1}]]}],[2617,{"n":"Le Tallec","f":"Damien","fp":"MD","r":15,"c":15,"s":{"ao":1,"s":29,"n":6,"a":4.83,"d":1.37,"Sao":1,"Ss":29,"Sn":6,"Sa":4.83,"Sd":1.37,"Og":2,"Oao":1,"Os":147,"On":30,"Oa":4.9,"Od":1.06,"pd":9,"pm":21},"p":[[-28,{"n":3,"e":3655}],[-27,{"n":5.5,"e":3663}],[-26,{"n":5,"e":3668}],[-25,{"n":4,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":3,"e":3715}],[-21,{"n":5,"e":3723}],[-20,{"n":5.5,"e":3728}],[-19,{"n":6.5,"e":3741}],[-18,{"n":4,"e":3752}],[-17,{"n":5,"e":3761}],[-16,{"n":4.5,"e":3772}],[-15,{"n":6,"e":3781,"g":1}],[-14,{"n":4.5,"e":3796}],[-13,{"n":6.5,"e":3802,"g":1}],[-12,{"n":3.5,"e":3813}],[-11,{"n":5,"e":3821}],[-10,{"n":3.5,"e":3836}],[-9,{"n":5,"e":3842}],[-8,{"n":5,"e":3857}],[-7,{"n":5.5,"e":3863}],[-6,{"n":6,"e":3871}],[6,{"n":4,"e":6152}],[-5,{"n":5.5,"e":3884}],[5,{"n":4,"e":6160}],[4,{"n":6,"e":6173}],[3,{"n":6.5,"e":6184}],[2,{"n":3,"e":6189,"a":1}],[1,{"n":5.5,"e":6204}]],"a":{"m":16,"a":18,"M":21,"n":6}}],[2636,{"n":"Adouyev","f":"Amir","fp":"MO","r":1,"c":15}],[2638,{"n":"Vidal","f":"Clement","fp":"DC","r":3,"c":15,"s":{"Os":4,"On":1,"Oa":4,"pd":1},"p":[[-16,{"n":4,"e":3772}]]}],[2733,{"n":"Savanier","f":"Téji","fp":"MD","r":24,"c":15,"s":{"g":3,"s":37,"n":6,"a":6.17,"d":1.33,"Sg":3,"Ss":37,"Sn":6,"Sa":6.17,"Sd":1.33,"Og":9,"Os":147.5,"On":25,"Oa":5.9,"Od":1.32,"pm":19,"pa":6},"p":[[-28,{"n":2.5,"e":3655}],[-27,{"n":8.5,"e":3663,"g":2}],[-26,{"n":5.5,"e":3668}],[-25,{"n":4,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":6,"e":3703,"g":1}],[-22,{"n":4.5,"e":3715}],[-21,{"n":6,"e":3723}],[-20,{"n":6.5,"e":3728}],[-19,{"n":7.5,"e":3741,"g":1}],[-18,{"n":5.5,"e":3752}],[-17,{"n":6,"e":3761}],[-16,{"n":6.5,"e":3772,"g":1}],[-15,{"n":7,"e":3781}],[-14,{"n":6.5,"e":3796}],[-13,{"n":7,"e":3802,"g":1}],[-12,{"n":5,"e":3813}],[-11,{"n":5,"e":3821}],[-10,{"n":5,"e":3836,"s":1}],[6,{"n":4.5,"e":6152}],[5,{"n":7,"e":6160,"g":1}],[4,{"n":6.5,"e":6173}],[3,{"n":7,"e":6184}],[2,{"n":4.5,"e":6189}],[1,{"n":7.5,"e":6204,"g":2}]],"fo":[[6152,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":25,"a":35,"M":55,"n":46}}],[2936,{"n":"Carvalho","f":"Matis","fp":"G","r":1,"c":15,"s":{"Os":4,"On":1,"Oa":4,"pg":1},"p":[[-22,{"n":4,"e":3715,"s":1}]]}],[3126,{"n":"Ristic","f":"Mihailo","fp":"DL","r":7,"c":15,"s":{"s":31,"n":6,"a":5.17,"d":0.98,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.98,"Os":100.5,"On":20,"Oa":5.03,"Od":0.79,"pd":8,"pm":12},"p":[[-28,{"n":4,"e":3655}],[-27,{"n":7,"e":3663}],[-25,{"n":4.5,"e":3683}],[-24,{"n":5.5,"e":3693}],[-23,{"n":4.5,"e":3703,"s":1}],[-18,{"n":4.5,"e":3752,"s":1}],[-16,{"n":4.5,"e":3772}],[-15,{"n":5,"e":3781,"s":1}],[-13,{"n":5,"e":3802,"s":1}],[-9,{"n":5,"e":3842,"s":1}],[-8,{"n":5,"e":3857}],[-7,{"n":5.5,"e":3863,"s":1}],[-6,{"n":4.5,"e":3871,"s":1}],[6,{"n":4.5,"e":6152}],[-5,{"n":5,"e":3884,"s":1}],[5,{"n":4.5,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":5,"e":6184}],[2,{"n":4.5,"e":6189}],[1,{"n":7,"e":6204}]],"fo":[[6189,[{"t":"Y"}]]]}],[4517,{"n":"Mavididi","f":"Stephy","fp":"A","r":11,"c":15,"s":{"s":22.5,"n":5,"a":4.5,"d":0.35,"Ss":18,"Sn":4,"Sa":4.5,"Sd":0.41,"Og":5,"Os":135.5,"On":28,"Oa":4.84,"Od":0.99,"pm":10,"pa":18},"p":[[-28,{"n":4,"e":3649}],[-27,{"n":4,"e":3666}],[-26,{"n":5,"e":3669}],[-25,{"n":4,"e":3679,"s":1}],[-24,{"n":8,"e":3690,"g":2}],[-23,{"n":3.5,"e":3705}],[-22,{"n":7,"e":3711,"g":1}],[-21,{"n":5,"e":3723}],[-20,{"n":5.5,"e":3731}],[-19,{"n":4.5,"e":3738,"s":1}],[-18,{"n":4,"e":3748,"s":1}],[-17,{"n":4,"e":3762,"s":1}],[-16,{"n":6,"e":3772,"g":1}],[-15,{"n":4.5,"e":3778}],[-13,{"n":4.5,"e":3801,"s":1}],[-12,{"n":4.5,"e":3811,"s":1}],[-11,{"n":5.5,"e":3818}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840,"g":1}],[-8,{"n":4.5,"e":3856}],[-7,{"n":5,"e":3860,"s":1}],[-6,{"n":4,"e":3873}],[6,{"n":4.5,"e":6152,"s":1}],[-5,{"n":4.5,"e":3881}],[5,{"n":4,"e":6160,"s":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":4.5,"e":6184,"s":1}],[1,{"n":4.5,"e":6204,"s":1}]],"fo":[[6160,[{"t":"Y"}]]],"a":{"m":12,"a":14,"M":23,"n":15}}],[6160,{"n":"Chotard","f":"Joris","fp":"MD","r":8,"c":15,"s":{"s":23.5,"n":5,"a":4.7,"d":0.27,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":116.5,"On":24,"Oa":4.85,"Od":0.67,"pm":23,"pa":1},"p":[[-27,{"n":5,"e":3663,"s":1}],[-25,{"n":4.5,"e":3683}],[-24,{"n":5,"e":3693,"s":1}],[-22,{"n":3.5,"e":3715,"s":1}],[-21,{"n":5,"e":3723,"s":1}],[-20,{"n":5,"e":3728}],[-19,{"n":4.5,"e":3741,"s":1}],[-18,{"n":4.5,"e":3752}],[-17,{"n":4.5,"e":3761}],[-16,{"n":5.5,"e":3772}],[-15,{"n":6.5,"e":3781}],[-14,{"n":5.5,"e":3796}],[-13,{"n":6.5,"e":3802}],[-12,{"n":4.5,"e":3813,"s":1}],[-11,{"n":4.5,"e":3821,"s":1}],[-10,{"n":4,"e":3836}],[-9,{"n":5,"e":3842}],[-8,{"n":4.5,"e":3857}],[-7,{"n":5,"e":3863}],[6,{"n":4.5,"e":6152,"s":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":4.5,"e":6189}],[1,{"n":4.5,"e":6204,"s":1}]]}],[6288,{"n":"Badu","f":"Bastian","fp":"A","r":5,"c":15,"s":{"Os":18.5,"On":4,"Oa":4.63,"Od":1.03,"pa":4},"p":[[-23,{"n":6,"e":4846}],[-22,{"n":3.5,"e":4849}],[-21,{"n":4.5,"e":4861,"s":1}],[-20,{"n":4.5,"e":4869,"s":1}]]}],[6431,{"n":"Yun Il-Lok","f":"","fp":"MO","r":3,"c":15,"s":{"Os":22.5,"On":5,"Oa":4.5,"Od":0.5,"pa":5},"p":[[-28,{"n":4,"e":3655,"s":1}],[-27,{"n":5,"e":3663,"s":1}],[-26,{"n":5,"e":3668}],[-25,{"n":4.5,"e":3683,"s":1}],[-23,{"n":4,"e":3703,"s":1}]]}],[6437,{"n":"Vargas","f":"Thibaut","fp":"DL","r":7,"c":15,"s":{"Os":14,"On":3,"Oa":4.67,"Od":1.26,"pm":3},"p":[[-28,{"n":3.5,"e":3655}],[-27,{"n":6,"e":3663}],[-24,{"n":4.5,"e":3693,"s":1}]]}],[6797,{"n":"Tamas","f":"Thibault","fp":"DL","r":1,"c":15}],[6798,{"n":"Benchama","f":"Samy","fp":"MD","r":3,"c":15,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[2,{"n":4.5,"e":6189,"s":1}]]}],[6868,{"n":"Omlin","f":"Jonas","fp":"G","r":17,"c":15,"s":{"s":32.5,"n":6,"a":5.42,"d":0.74,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.74,"Os":32.5,"On":6,"Oa":5.42,"Od":0.74,"pg":6},"p":[[6,{"n":4.5,"e":6152}],[5,{"n":5,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":5,"e":6184}],[2,{"n":6,"e":6189}],[1,{"n":6.5,"e":6204}]],"a":{"m":17,"a":20,"M":28,"n":17}}],[7144,{"n":"Ben Achour","f":"Adil","fp":"MO","r":2,"c":15}],[73,{"n":"Pallois","f":"Nicolas","fp":"DC","r":13,"c":8,"s":{"ao":1,"s":30.5,"n":6,"a":5.08,"d":0.66,"Sao":1,"Ss":9,"Sn":2,"Sa":4.5,"Oao":1,"Os":118,"On":23,"Oa":5.13,"Od":0.93,"pd":23},"p":[[6,{"n":4.5,"e":6153}],[4,{"n":5.5,"e":6174}],[-16,{"n":5.5,"e":3775}],[-6,{"n":5,"e":3877}],[-28,{"n":4.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":5.5,"e":3684}],[-19,{"n":3.5,"e":3742}],[-18,{"n":6,"e":3755}],[-17,{"n":5,"e":3762}],[-15,{"n":6,"e":3782}],[-13,{"n":4,"e":3803}],[-12,{"n":3,"e":3810}],[-11,{"n":5,"e":3822}],[-9,{"n":6.5,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":6,"e":3864}],[-5,{"n":6,"e":3885}],[5,{"n":4.5,"e":6161,"a":1}],[3,{"n":4.5,"e":6183}],[2,{"n":6,"e":6194}],[1,{"n":5.5,"e":6199}]],"fo":[[6153,[{"t":"Y"}]],[6174,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":19,"n":14}}],[82,{"n":"Lafont","f":"Alban","fp":"G","r":20,"c":8,"s":{"s":34,"n":6,"a":5.67,"d":1.47,"Ss":34,"Sn":6,"Sa":5.67,"Sd":1.47,"Os":164.5,"On":29,"Oa":5.67,"Od":1.11,"pg":29},"p":[[-22,{"n":6.5,"e":3716}],[-28,{"n":4,"e":3648}],[-27,{"n":6,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":6,"e":3684}],[-24,{"n":3.5,"e":3690}],[-21,{"n":5,"e":3724}],[-20,{"n":6,"e":3736}],[-19,{"n":6,"e":3742}],[-18,{"n":7,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":6,"e":3775}],[-15,{"n":5.5,"e":3782}],[-14,{"n":5,"e":3791}],[-13,{"n":4,"e":3803}],[-12,{"n":6,"e":3810}],[-11,{"n":5,"e":3822}],[-10,{"n":4.5,"e":3832}],[-9,{"n":6,"e":3843}],[-8,{"n":8,"e":3850}],[-7,{"n":7,"e":3864}],[-6,{"n":5.5,"e":3877}],[6,{"n":6.5,"e":6153}],[-5,{"n":6,"e":3885}],[5,{"n":4.5,"e":6161}],[4,{"n":4,"e":6174}],[3,{"n":5,"e":6183}],[2,{"n":8,"e":6194}],[1,{"n":6,"e":6199}]],"fo":[[6194,[{"t":"Y"}]]],"a":{"m":18,"a":27,"M":41,"n":20}}],[112,{"n":"Abeid","f":"Mehdi","fp":"MD","r":9,"c":8,"s":{"s":21.5,"n":4,"a":5.38,"d":0.48,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.5,"Og":1,"Os":134.5,"On":26,"Oa":5.17,"Od":0.76,"pm":26},"p":[[-23,{"n":6,"e":3700}],[-28,{"n":4,"e":3648}],[-27,{"n":4.5,"e":3664}],[-26,{"n":5,"e":3671}],[-25,{"n":5,"e":3684}],[-24,{"n":4.5,"e":3690}],[-22,{"n":5,"e":3716,"s":1}],[-21,{"n":6,"e":3724}],[-20,{"n":6.5,"e":3736,"g":1}],[-19,{"n":4.5,"e":3742}],[-18,{"n":5.5,"e":3755,"s":1}],[-17,{"n":5,"e":3762,"s":1}],[-16,{"n":5,"e":3775}],[-15,{"n":4,"e":3782,"s":1}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":7,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":5,"e":3864,"s":1}],[-6,{"n":4,"e":3877}],[6,{"n":6,"e":6153}],[-5,{"n":5.5,"e":3885}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5.5,"e":6174}],[2,{"n":5,"e":6194,"s":1}]]}],[200,{"n":"Coco","f":"Marcus","fp":"MO","r":8,"c":8,"s":{"s":26,"n":5,"a":5.2,"d":0.76,"Ss":15,"Sn":3,"Sa":5,"Os":26,"On":5,"Oa":5.2,"Od":0.76,"pm":3,"pa":2},"p":[[6,{"n":5,"e":6153,"s":1}],[5,{"n":5,"e":6161}],[4,{"n":5,"e":6174}],[2,{"n":6.5,"e":6194}],[1,{"n":4.5,"e":6199,"s":1}]]}],[231,{"n":"Petric","f":"Denis","fp":"G","r":7,"c":8,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-23,{"n":5,"e":3700}]]}],[398,{"n":"Blas","f":"Ludovic","fp":"MO","r":19,"c":8,"s":{"g":1,"s":31,"n":6,"a":5.17,"d":0.52,"Sg":1,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.52,"Og":6,"Os":162.5,"On":30,"Oa":5.42,"Od":0.87,"pm":25,"pa":5},"p":[[-28,{"n":5.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":5.5,"e":3671}],[-25,{"n":5.5,"e":3684,"s":1}],[-24,{"n":5,"e":3690}],[-23,{"n":6,"e":3700}],[-22,{"n":5.5,"e":3716}],[-21,{"n":4.5,"e":3724}],[-20,{"n":7,"e":3736,"g":1}],[-19,{"n":7,"e":3742,"g":1}],[-18,{"n":5,"e":3755}],[-17,{"n":7,"e":3762,"g":1}],[-16,{"n":5,"e":3775}],[-15,{"n":6.5,"e":3782,"g":1}],[-14,{"n":5,"e":3791}],[-13,{"n":7.5,"e":3803,"g":1}],[-12,{"n":4,"e":3810}],[-11,{"n":4.5,"e":3822}],[-10,{"n":5.5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":5,"e":3850,"s":1}],[-7,{"n":5,"e":3864}],[-6,{"n":5,"e":3877}],[6,{"n":5,"e":6153}],[-5,{"n":5.5,"e":3885}],[5,{"n":4.5,"e":6161}],[4,{"n":5,"e":6174}],[3,{"n":6,"e":6183,"g":1}],[2,{"n":5.5,"e":6194}],[1,{"n":5,"e":6199,"s":1}]],"a":{"m":20,"a":26,"M":51,"n":26}}],[476,{"n":"Touré","f":"Abdoulaye","fp":"MD","r":17,"c":8,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":137,"On":26,"Oa":5.27,"Od":0.89,"pm":26},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":4.5,"e":3664,"s":1}],[-26,{"n":5.5,"e":3671,"s":1}],[-25,{"n":5,"e":3684}],[-24,{"n":5,"e":3690,"s":1}],[-23,{"n":4.5,"e":3700}],[-22,{"n":5,"e":3716}],[-21,{"n":5.5,"e":3724}],[-20,{"n":6.5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":5.5,"e":3755}],[-17,{"n":7,"e":3762}],[-15,{"n":7,"e":3782,"g":1}],[-14,{"n":5.5,"e":3791}],[-13,{"n":4.5,"e":3803}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":7,"e":3864,"g":1}],[-6,{"n":4.5,"e":3877}],[6,{"n":5,"e":6153,"s":1}],[-5,{"n":6,"e":3885}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":4,"e":6183}]],"fo":[[6183,[{"t":"Y"}]]]}],[506,{"n":"Walongwa","f":"Anthony","fp":"DC","r":2,"c":8}],[941,{"n":"Fabio","f":"","fp":"DL","r":12,"c":8,"s":{"s":23,"n":5,"a":4.6,"d":0.42,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.29,"Os":54.5,"On":11,"Oa":4.95,"Od":0.52,"pd":11},"p":[[-11,{"n":5,"e":3822}],[-9,{"n":5.5,"e":3843}],[-8,{"n":5,"e":3850}],[-7,{"n":6,"e":3864}],[-6,{"n":5,"e":3877}],[6,{"n":4.5,"e":6153}],[-5,{"n":5,"e":3885}],[5,{"n":4,"e":6161}],[4,{"n":4.5,"e":6174}],[2,{"n":5,"e":6194}],[1,{"n":5,"e":6199}]],"fo":[[6194,[{"t":"Y"},{"t":"O"}]]]}],[1171,{"n":"Coulibaly","f":"Kalifa","fp":"A","r":10,"c":8,"s":{"s":3.5,"n":1,"a":3.5,"Og":3,"Os":81,"On":18,"Oa":4.5,"Od":0.8,"pa":18},"p":[[-28,{"n":4.5,"e":3648,"s":1}],[-27,{"n":4,"e":3664,"s":1}],[-25,{"n":3.5,"e":3684}],[-19,{"n":3.5,"e":3742}],[-18,{"n":4.5,"e":3755}],[-17,{"n":4,"e":3762}],[-15,{"n":4.5,"e":3782}],[-14,{"n":6,"e":3791,"g":1}],[-13,{"n":4,"e":3803}],[-12,{"n":5,"e":3810,"s":1}],[-11,{"n":4,"e":3822}],[-10,{"n":4.5,"e":3832}],[-9,{"n":4.5,"e":3843}],[-8,{"n":4.5,"e":3850}],[-7,{"n":4.5,"e":3864}],[-6,{"n":6,"e":3877,"g":1}],[-5,{"n":6,"e":3885,"g":1}],[1,{"n":3.5,"e":6199}]],"a":{"m":15,"a":21,"M":32,"n":7}}],[1174,{"n":"Andrei Girotto","f":"","fp":"DC","r":15,"c":8,"s":{"g":1,"s":30,"n":6,"a":5,"d":0.95,"Sg":1,"Ss":30,"Sn":6,"Sa":5,"Sd":0.95,"Og":2,"Os":139.5,"On":27,"Oa":5.17,"Od":1.02,"pd":27},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":5,"e":3664}],[-26,{"n":5,"e":3671}],[-25,{"n":5,"e":3684}],[-24,{"n":4.5,"e":3690,"g":1}],[-23,{"n":5.5,"e":3700}],[-21,{"n":4,"e":3724}],[-20,{"n":7,"e":3736}],[-18,{"n":5.5,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":6,"e":3775}],[-15,{"n":6.5,"e":3782}],[-13,{"n":3,"e":3803}],[-12,{"n":3.5,"e":3810}],[-11,{"n":4.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":7,"e":3850}],[-7,{"n":6,"e":3864}],[-6,{"n":4.5,"e":3877}],[6,{"n":4,"e":6153}],[-5,{"n":6,"e":3885}],[5,{"n":5,"e":6161}],[4,{"n":4,"e":6174}],[3,{"n":5,"e":6183}],[2,{"n":6.5,"e":6194,"g":1}],[1,{"n":5.5,"e":6199}]],"fo":[[6153,[{"t":"R"}]],[6161,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":26,"n":33}}],[1255,{"n":"Moutoussamy","f":"Samuel","fp":"MD","r":7,"c":8,"s":{"s":5,"n":1,"a":5,"Os":77,"On":16,"Oa":4.81,"Od":0.4,"pd":2,"pm":13,"pa":1},"p":[[-22,{"n":5,"e":3716,"s":1}],[-20,{"n":4.5,"e":3736,"s":1}],[-18,{"n":4.5,"e":3755,"s":1}],[-17,{"n":5,"e":3762,"s":1}],[-16,{"n":5,"e":3775,"s":1}],[-15,{"n":5,"e":3782,"s":1}],[-14,{"n":5,"e":3791,"s":1}],[-13,{"n":4.5,"e":3803,"s":1}],[-12,{"n":4,"e":3810}],[-11,{"n":5,"e":3822,"s":1}],[-10,{"n":4,"e":3832}],[-9,{"n":5,"e":3843,"s":1}],[-8,{"n":5.5,"e":3850}],[-7,{"n":5,"e":3864,"s":1}],[-5,{"n":5,"e":3885,"s":1}],[1,{"n":5,"e":6199}]]}],[1444,{"n":"Charles Traoré","f":"","fp":"DL","r":11,"c":8,"s":{"s":10,"n":2,"a":5,"d":1.41,"Os":92.5,"On":19,"Oa":4.87,"Od":0.86,"pd":19},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":5.5,"e":3684}],[-23,{"n":5,"e":3700}],[-22,{"n":3.5,"e":3716}],[-21,{"n":5,"e":3724}],[-20,{"n":5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":5,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":6,"e":3782}],[-14,{"n":5,"e":3791}],[-13,{"n":3,"e":3803}],[-6,{"n":5,"e":3877}],[-5,{"n":5,"e":3885}],[3,{"n":4,"e":6183}],[1,{"n":6,"e":6199}]],"fo":[[6199,[{"t":"Y"}]]]}],[1552,{"n":"Kolo Muani","f":"Randal","fp":"A","r":7,"c":8,"s":{"s":26,"n":5,"a":5.2,"d":0.76,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.76,"Os":26,"On":5,"Oa":5.2,"Od":0.76,"pa":5},"p":[[6,{"n":6,"e":6153}],[5,{"n":5,"e":6161}],[4,{"n":4.5,"e":6174}],[3,{"n":4.5,"e":6183}],[2,{"n":6,"e":6194}]]}],[2669,{"n":"Dabo","f":"Abdoulaye","fp":"MO","r":1,"c":8}],[2686,{"n":"Mendy","f":"Batista","fp":"DC","r":1,"c":8,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[3,{"n":4.5,"e":6183,"s":1}]]}],[2696,{"n":"Basila","f":"Thomas","fp":"DC","r":5,"c":8,"s":{"Os":34,"On":7,"Oa":4.86,"Od":0.38,"pd":7},"p":[[-21,{"n":5,"e":3724,"s":1}],[-20,{"n":5.5,"e":3736,"s":1}],[-14,{"n":4.5,"e":3791}],[-13,{"n":4.5,"e":3803}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5,"e":3822,"s":1}],[-10,{"n":5,"e":3832,"s":1}]]}],[2744,{"n":"Simon","f":"Moses","fp":"MO","r":18,"c":8,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.13,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.13,"Og":5,"Os":159.5,"On":30,"Oa":5.32,"Od":0.95,"pm":24,"pa":6},"p":[[-28,{"n":4,"e":3648}],[-27,{"n":4.5,"e":3664}],[-26,{"n":5,"e":3671}],[-25,{"n":5.5,"e":3684}],[-24,{"n":6,"e":3690,"g":1}],[-23,{"n":6,"e":3700,"g":1}],[-22,{"n":6,"e":3716,"g":1}],[-21,{"n":4,"e":3724}],[-20,{"n":6,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":6,"e":3755}],[-17,{"n":5,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":7,"e":3782}],[-14,{"n":6,"e":3791}],[-13,{"n":4,"e":3803}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":7.5,"e":3843,"g":1}],[-8,{"n":5,"e":3850}],[-7,{"n":5.5,"e":3864}],[-6,{"n":5,"e":3877}],[6,{"n":5.5,"e":6153}],[-5,{"n":6,"e":3885}],[5,{"n":4,"e":6161}],[4,{"n":7,"e":6174,"g":1}],[3,{"n":4,"e":6183}],[2,{"n":5.5,"e":6194}],[1,{"n":5.5,"e":6199}]],"a":{"m":19,"a":25,"M":40,"n":34}}],[2834,{"n":"Limbombe","f":"Anthony","fp":"MO","r":7,"c":8,"s":{"Og":1,"Os":21.5,"On":4,"Oa":5.38,"Od":1.11,"pm":4},"p":[[-28,{"n":5,"e":3648,"s":1}],[-27,{"n":4.5,"e":3664}],[-26,{"n":7,"e":3671,"g":1}],[-25,{"n":5,"e":3684,"s":1}]]}],[2938,{"n":"Louza","f":"Imran","fp":"MO","r":17,"c":8,"s":{"g":2,"s":22.5,"n":4,"a":5.63,"d":0.48,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":4,"Os":130.5,"On":25,"Oa":5.22,"Od":0.84,"pm":23,"pa":2},"p":[[-28,{"n":4,"e":3648}],[-27,{"n":4.5,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":6,"e":3684}],[-24,{"n":5.5,"e":3690}],[-23,{"n":5.5,"e":3700}],[-22,{"n":4.5,"e":3716}],[-21,{"n":5.5,"e":3724}],[-20,{"n":5.5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":7,"e":3755,"g":1}],[-17,{"n":4.5,"e":3762}],[-16,{"n":4.5,"e":3775}],[-15,{"n":6,"e":3782}],[-14,{"n":4.5,"e":3791}],[-13,{"n":6.5,"e":3803,"g":1}],[-12,{"n":5.5,"e":3810}],[-9,{"n":5,"e":3843,"s":1}],[-8,{"n":5,"e":3850,"s":1}],[-6,{"n":3.5,"e":3877}],[6,{"n":6,"e":6153,"g":1}],[-5,{"n":5,"e":3885}],[5,{"n":5,"e":6161}],[2,{"n":6,"e":6194,"g":1}],[1,{"n":5.5,"e":6199}]],"fo":[[6194,[{"t":"R"}]]],"a":{"m":17,"a":20,"M":27,"n":14}}],[2993,{"n":"Bamba","f":"Abdoul Kader","fp":"MO","r":15,"c":8,"s":{"s":29,"n":6,"a":4.83,"d":0.26,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.26,"Og":1,"Os":157.5,"On":29,"Oa":5.43,"Od":0.78,"pm":25,"pa":4},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":5.5,"e":3664}],[-26,{"n":7.5,"e":3671,"g":1}],[-25,{"n":5,"e":3684}],[-24,{"n":6.5,"e":3690}],[-23,{"n":7,"e":3700}],[-22,{"n":5,"e":3716}],[-21,{"n":4.5,"e":3724,"s":1}],[-20,{"n":6,"e":3736}],[-18,{"n":6.5,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":6.5,"e":3782}],[-14,{"n":5,"e":3791,"s":1}],[-13,{"n":5,"e":3803,"s":1}],[-12,{"n":5,"e":3810,"s":1}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832,"s":1}],[-9,{"n":6,"e":3843,"s":1}],[-8,{"n":5.5,"e":3850,"s":1}],[-7,{"n":5.5,"e":3864}],[-6,{"n":5,"e":3877,"s":1}],[6,{"n":5,"e":6153,"s":1}],[-5,{"n":5.5,"e":3885,"s":1}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5,"e":6174,"s":1}],[3,{"n":4.5,"e":6183}],[2,{"n":4.5,"e":6194,"s":1}],[1,{"n":5,"e":6199}]],"fo":[[6174,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":35,"n":18}}],[3516,{"n":"Homawoo","f":"Josué","fp":"DC","r":1,"c":8,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-24,{"n":5,"e":3690,"s":1}]]}],[3802,{"n":"Castelletto","f":"Jean-Charles","fp":"DC","r":9,"c":8,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":103,"On":21,"Oa":4.9,"Od":1.03,"pd":21},"p":[[-23,{"n":4.5,"e":3698}],[-22,{"n":3.5,"e":3711}],[-21,{"n":5.5,"e":3718}],[-20,{"n":5.5,"e":3737}],[-19,{"n":3.5,"e":3741}],[-18,{"n":4.5,"e":3751}],[-17,{"n":5,"e":3758}],[-16,{"n":6,"e":3771}],[-15,{"n":4,"e":3779}],[-14,{"n":4.5,"e":3791}],[-13,{"n":4,"e":3798}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5.5,"e":3818}],[-10,{"n":6.5,"e":3828}],[-9,{"n":7.5,"e":3839,"g":1}],[-8,{"n":4,"e":3853}],[-7,{"n":5,"e":3859}],[-6,{"n":3.5,"e":3869}],[6,{"n":5.5,"e":6153,"s":1}],[-5,{"n":5.5,"e":3880}],[2,{"n":5,"e":6194,"s":1}]]}],[3812,{"n":"Appiah","f":"Dennis","fp":"DL","r":12,"c":8,"s":{"s":28.5,"n":6,"a":4.75,"d":0.88,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.88,"Os":120.5,"On":25,"Oa":4.82,"Od":0.66,"pd":25},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":5,"e":3684}],[-22,{"n":4,"e":3716}],[-21,{"n":4.5,"e":3724}],[-20,{"n":5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":5,"e":3755}],[-17,{"n":4.5,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":4.5,"e":3782}],[-14,{"n":5,"e":3791}],[-11,{"n":4.5,"e":3822}],[-10,{"n":4.5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":5.5,"e":3864}],[-6,{"n":5,"e":3877,"s":1}],[6,{"n":4,"e":6153}],[5,{"n":3.5,"e":6161}],[4,{"n":5,"e":6174}],[3,{"n":5,"e":6183}],[2,{"n":6,"e":6194}],[1,{"n":5,"e":6199,"s":1}]],"fo":[[6161,[{"t":"Y"}]]]}],[6009,{"n":"Ndilu","f":"Bridge","fp":"A","r":3,"c":8,"s":{"s":8,"n":2,"a":4,"Os":8,"On":2,"Oa":4,"pa":2},"p":[[3,{"n":4,"e":6183,"s":1}],[1,{"n":4,"e":6199,"s":1}]],"fo":[[6199,[{"t":"Y"}]]]}],[6124,{"n":"Chirivella","f":"Pedro","fp":"MD","r":10,"c":8,"s":{"s":28.5,"n":6,"a":4.75,"d":0.52,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.52,"Os":28.5,"On":6,"Oa":4.75,"Od":0.52,"pm":6},"p":[[6,{"n":5,"e":6153}],[5,{"n":4.5,"e":6161}],[4,{"n":5,"e":6174}],[3,{"n":4,"e":6183}],[2,{"n":5.5,"e":6194}],[1,{"n":4.5,"e":6199}]],"fo":[[6199,[{"t":"Y"}]]]}],[6153,{"n":"Moustache","f":"Wesley","fp":"DL","r":1,"c":8,"s":{"Os":3,"On":1,"Oa":3,"pd":1},"p":[[-24,{"n":3,"e":3690}]]}],[6262,{"n":"Pereira De Sa","f":"Roli","fp":"MO","r":2,"c":8,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-16,{"n":5,"e":3775,"s":1}]]}],[6403,{"n":"Emond","f":"Renaud","fp":"A","r":8,"c":8,"s":{"g":1,"s":24.5,"n":5,"a":4.9,"d":0.65,"Sg":1,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":0.65,"Og":1,"Os":50.5,"On":11,"Oa":4.59,"Od":0.58,"pa":11},"p":[[-28,{"n":4.5,"e":3648,"s":1}],[-24,{"n":4.5,"e":3690}],[-23,{"n":4,"e":3700,"s":1}],[-22,{"n":4,"e":3716}],[-21,{"n":4,"e":3724}],[-20,{"n":5,"e":3736,"s":1}],[6,{"n":4.5,"e":6153,"s":1}],[5,{"n":4.5,"e":6161,"s":1}],[4,{"n":6,"e":6174,"g":1,"s":1}],[3,{"n":4.5,"e":6183,"s":1}],[2,{"n":5,"e":6194,"s":1}]]}],[6861,{"n":"Jan","f":"Charly","fp":"G","r":1,"c":8}],[11,{"n":"Cyprien","f":"Wylan","fp":"MO","r":13,"c":19,"s":{"Og":4,"Os":88,"On":16,"Oa":5.5,"Od":1.34,"pm":16},"p":[[-21,{"n":5,"e":3725}],[-20,{"n":6,"e":3729,"g":1}],[-19,{"n":7,"e":3743}],[-18,{"n":5,"e":3751}],[-17,{"n":8,"e":3763,"g":2}],[-16,{"n":4.5,"e":3776}],[-15,{"n":5.5,"e":3783}],[-14,{"n":6,"e":3793}],[-13,{"n":5.5,"e":3804}],[-12,{"n":8,"e":3814,"g":1}],[-10,{"n":3,"e":3834}],[-9,{"n":4.5,"e":3843}],[-8,{"n":5,"e":3854}],[-7,{"n":4,"e":3862}],[-6,{"n":5,"e":3873}],[-5,{"n":6,"e":3884}]],"a":{"m":14,"a":23,"M":36,"n":31}}],[70,{"n":"Dante","f":"","fp":"DC","r":15,"c":19,"s":{"g":2,"s":32,"n":6,"a":5.33,"d":0.93,"Sg":1,"Ss":12.5,"Sn":2,"Sa":6.25,"Sd":1.06,"Og":2,"Oao":1,"Os":125.5,"On":24,"Oa":5.23,"Od":1.01,"pd":24},"p":[[4,{"n":4.5,"e":6175}],[2,{"n":5.5,"e":6196}],[-28,{"n":5.5,"e":3653}],[-27,{"n":6,"e":3659}],[-26,{"n":4,"e":3673,"a":1}],[-24,{"n":3.5,"e":3694}],[-23,{"n":5.5,"e":3701}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3725}],[-20,{"n":6,"e":3729}],[-19,{"n":6.5,"e":3743}],[-18,{"n":4,"e":3751}],[-17,{"n":5.5,"e":3763}],[-15,{"n":6,"e":3783}],[-14,{"n":4.5,"e":3793}],[-13,{"n":5,"e":3804}],[-12,{"n":7,"e":3814}],[-11,{"n":5.5,"e":3827}],[-10,{"n":3,"e":3834}],[-9,{"n":6,"e":3843}],[6,{"n":7,"e":6153,"g":1}],[5,{"n":5.5,"e":6159}],[3,{"n":5,"e":6184,"g":1}],[1,{"n":4.5,"e":6205}]],"fo":[[6196,[{"t":"Y"}]],[6205,[{"t":"Y"}]]],"a":{"m":16,"a":20,"M":27,"n":16}}],[71,{"n":"Lees-Melou","f":"Pierre","fp":"MO","r":25,"c":19,"s":{"s":33.5,"n":6,"a":5.58,"d":0.74,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.74,"Og":5,"Os":167,"On":29,"Oa":5.76,"Od":1.15,"pm":29},"p":[[-28,{"n":5,"e":3653}],[-27,{"n":5.5,"e":3659}],[-26,{"n":5.5,"e":3673}],[-25,{"n":7,"e":3687,"g":1}],[-24,{"n":5.5,"e":3694}],[-23,{"n":7,"e":3701,"g":1}],[-22,{"n":6,"e":3713}],[-21,{"n":7,"e":3725}],[-20,{"n":5,"e":3729}],[-19,{"n":8,"e":3743,"g":1}],[-18,{"n":5.5,"e":3751}],[-17,{"n":7,"e":3763,"g":1}],[-16,{"n":3.5,"e":3776}],[-15,{"n":7.5,"e":3783}],[-14,{"n":4.5,"e":3793}],[-13,{"n":7,"e":3804,"g":1}],[-12,{"n":7,"e":3814}],[-10,{"n":3.5,"e":3834}],[-9,{"n":4.5,"e":3843}],[-8,{"n":5.5,"e":3854}],[-7,{"n":4.5,"e":3862,"s":1}],[-6,{"n":6,"e":3873}],[6,{"n":6,"e":6153}],[-5,{"n":6,"e":3884}],[5,{"n":5.5,"e":6159}],[4,{"n":4.5,"e":6175}],[3,{"n":5,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":6.5,"e":6205}]],"fo":[[6196,[{"t":"Y"}]]],"a":{"m":26,"a":35,"M":59,"n":35}}],[129,{"n":"Cardinale","f":"Yoan","fp":"G","r":6,"c":19,"a":{"m":2,"a":6,"M":9,"n":6}}],[239,{"n":"Benítez","f":"Walter","fp":"G","r":25,"c":19,"s":{"s":36.5,"n":6,"a":6.08,"d":1.07,"Ss":36.5,"Sn":6,"Sa":6.08,"Sd":1.07,"Os":174,"On":30,"Oa":5.8,"Od":1.06,"pg":30},"p":[[-28,{"n":6,"e":3653}],[-27,{"n":4,"e":3659}],[-26,{"n":4.5,"e":3673}],[-25,{"n":8,"e":3687}],[-24,{"n":4,"e":3694}],[-23,{"n":6,"e":3701}],[-22,{"n":7,"e":3713}],[-21,{"n":5.5,"e":3725}],[-20,{"n":7,"e":3729}],[-19,{"n":5.5,"e":3743}],[-18,{"n":6.5,"e":3751}],[-17,{"n":5.5,"e":3763}],[-16,{"n":4,"e":3776}],[-15,{"n":6,"e":3783}],[-14,{"n":5,"e":3793}],[-13,{"n":6,"e":3804}],[-12,{"n":6.5,"e":3814}],[-11,{"n":6,"e":3827}],[-10,{"n":5.5,"e":3834}],[-9,{"n":6,"e":3843}],[-8,{"n":6,"e":3854}],[-7,{"n":4,"e":3862}],[-6,{"n":7,"e":3873}],[6,{"n":5.5,"e":6153}],[-5,{"n":6,"e":3884}],[5,{"n":7.5,"e":6159}],[4,{"n":4.5,"e":6175}],[3,{"n":7,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":6,"e":6205}]],"a":{"m":25,"a":32,"M":40,"n":26}}],[284,{"n":"Rony Lopes","f":"","fp":"MO","r":15,"c":19,"s":{"s":22.5,"n":5,"a":4.5,"d":0.87,"Ss":22.5,"Sn":5,"Sa":4.5,"Sd":0.87,"Os":40,"On":9,"Oa":4.44,"Od":0.63,"pm":1,"pa":8},"p":[[-32,{"n":4.5,"e":4376,"s":1}],[-31,{"n":4,"e":4387}],[-26,{"n":4.5,"e":4436}],[-20,{"n":4.5,"e":4496,"s":1}],[6,{"n":5,"e":6153}],[5,{"n":5,"e":6159}],[4,{"n":3,"e":6175}],[3,{"n":4.5,"e":6184}],[2,{"n":5,"e":6196,"s":1}]],"a":{"m":16,"a":21,"M":34,"n":23}}],[449,{"n":"Makengo","f":"Jean-Victor","fp":"MD","r":8,"c":19,"s":{"Os":68,"On":15,"Oa":4.53,"Od":0.55,"pm":14,"pa":1},"p":[[-28,{"n":4,"e":3649}],[-25,{"n":5,"e":3687}],[-24,{"n":4.5,"e":3691}],[-22,{"n":5,"e":3708,"s":1}],[-20,{"n":4.5,"e":3737,"s":1}],[-19,{"n":3.5,"e":3743}],[-18,{"n":5,"e":3757,"s":1}],[-15,{"n":4.5,"e":3782,"s":1}],[-12,{"n":4.5,"e":3817,"s":1}],[-11,{"n":5,"e":3825,"s":1}],[-10,{"n":5,"e":3837,"s":1}],[-9,{"n":3.5,"e":3847}],[-8,{"n":5,"e":3852}],[-6,{"n":4,"e":3874}],[-5,{"n":5,"e":3887}]]}],[583,{"n":"Claude Maurice","f":"Alexis","fp":"MO","r":13,"c":19,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Og":1,"Os":129,"On":25,"Oa":5.16,"Od":0.73,"pm":11,"pa":14},"p":[[-28,{"n":6,"e":3653}],[-27,{"n":6,"e":3659}],[-26,{"n":6,"e":3673}],[-25,{"n":5.5,"e":3687}],[-24,{"n":6,"e":3694,"g":1}],[-23,{"n":5,"e":3701}],[-22,{"n":6,"e":3713}],[-21,{"n":4,"e":3725}],[-20,{"n":5,"e":3729}],[-19,{"n":6,"e":3743}],[-18,{"n":5.5,"e":3751}],[-17,{"n":5.5,"e":3763}],[-16,{"n":4,"e":3776}],[-15,{"n":5,"e":3783,"s":1}],[-12,{"n":5.5,"e":3814}],[-11,{"n":6,"e":3827}],[-10,{"n":4,"e":3834}],[-9,{"n":4.5,"e":3843}],[-8,{"n":4,"e":3854}],[-7,{"n":5,"e":3862}],[-6,{"n":5.5,"e":3873,"s":1}],[-5,{"n":5,"e":3884,"s":1}],[5,{"n":5,"e":6159,"s":1}],[3,{"n":4,"e":6184,"s":1}],[1,{"n":5,"e":6205}]],"a":{"m":16,"a":20,"M":32,"n":7}}],[833,{"n":"Schneiderlin","f":"Morgan","fp":"MD","r":15,"c":19,"s":{"s":28.5,"n":5,"a":5.7,"d":0.91,"Os":90.5,"On":18,"Oa":5.03,"Od":0.85,"pm":18},"p":[[-7,{"n":4.5,"e":4246}],[-6,{"n":4,"e":4252}],[-5,{"n":4.5,"e":4265}],[-27,{"n":3.5,"e":4038}],[-26,{"n":6,"e":4052}],[-25,{"n":5,"e":4066,"s":1}],[-24,{"n":5.5,"e":4070}],[-16,{"n":5.5,"e":4151}],[-15,{"n":5,"e":4167,"s":1}],[-14,{"n":5,"e":4170,"s":1}],[-13,{"n":4.5,"e":4183}],[-12,{"n":5,"e":4193}],[-8,{"n":4,"e":4229}],[5,{"n":6,"e":6159}],[4,{"n":5,"e":6175}],[3,{"n":4.5,"e":6184}],[2,{"n":6.5,"e":6196}],[1,{"n":6.5,"e":6205}]],"fo":[[6175,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":14,"a":19,"M":30,"n":12}}],[1210,{"n":"Gouiri","f":"Amine","fp":"A","r":15,"c":19,"s":{"g":2,"s":38.5,"n":6,"a":6.42,"d":0.92,"Sg":2,"Ss":38.5,"Sn":6,"Sa":6.42,"Sd":0.92,"Og":2,"Os":43,"On":7,"Oa":6.14,"Od":1.11,"pm":2,"pa":5},"p":[[-26,{"n":4.5,"e":3672,"s":1}],[6,{"n":7,"e":6153}],[5,{"n":7,"e":6159}],[4,{"n":5,"e":6175}],[3,{"n":6,"e":6184,"s":1}],[2,{"n":6,"e":6196}],[1,{"n":7.5,"e":6205,"g":2}]],"fo":[[6159,[{"t":"Y"}]]],"a":{"m":8,"a":25,"M":55,"n":29}}],[1229,{"n":"Maolida","f":"Myziane","fp":"A","r":7,"c":19,"s":{"s":14,"n":3,"a":4.67,"d":0.76,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Og":1,"Os":94.5,"On":20,"Oa":4.72,"Od":0.88,"pm":4,"pa":16},"p":[[-28,{"n":4.5,"e":3653,"s":1}],[-26,{"n":4.5,"e":3673,"s":1}],[-25,{"n":3.5,"e":3687,"s":1}],[-24,{"n":6,"e":3694}],[-21,{"n":5.5,"e":3725}],[-20,{"n":4.5,"e":3729,"s":1}],[-19,{"n":5,"e":3743}],[-18,{"n":4.5,"e":3751,"s":1}],[-16,{"n":4.5,"e":3776}],[-15,{"n":7.5,"e":3783,"g":1}],[-14,{"n":4,"e":3793,"s":1}],[-13,{"n":5,"e":3804,"s":1}],[-11,{"n":4,"e":3827}],[-10,{"n":4.5,"e":3834,"s":1}],[-9,{"n":4,"e":3843,"s":1}],[-8,{"n":4.5,"e":3854,"s":1}],[6,{"n":5.5,"e":6153}],[-5,{"n":4.5,"e":3884,"s":1}],[5,{"n":4.5,"e":6159,"s":1}],[3,{"n":4,"e":6184}]],"fo":[[6184,[{"t":"Y"}]]]}],[1540,{"n":"Coly","f":"Racine","fp":"DL","r":5,"c":19,"s":{"Os":36.5,"On":8,"Oa":4.56,"Od":0.98,"pd":6,"pm":2},"p":[[-19,{"n":5,"e":3743,"s":1}],[-16,{"n":3,"e":3776}],[-15,{"n":5,"e":3783,"s":1}],[-12,{"n":6,"e":3814}],[-11,{"n":3.5,"e":3827}],[-8,{"n":5,"e":3854}],[-6,{"n":5,"e":3873}],[-5,{"n":4,"e":3884}]]}],[2151,{"n":"N'Soki","f":"Stanley","fp":"DL","r":13,"c":19,"s":{"Os":82.5,"On":16,"Oa":5.16,"Od":0.68,"pd":16},"p":[[-27,{"n":5,"e":3659,"s":1}],[-26,{"n":5,"e":3673}],[-25,{"n":6,"e":3687}],[-24,{"n":4.5,"e":3694}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3725,"s":1}],[-20,{"n":5,"e":3729}],[-19,{"n":7,"e":3743}],[-18,{"n":5,"e":3751}],[-17,{"n":5.5,"e":3763}],[-15,{"n":5,"e":3783}],[-14,{"n":4.5,"e":3793}],[-13,{"n":5,"e":3804}],[-8,{"n":5.5,"e":3854}],[-7,{"n":4,"e":3862}],[-6,{"n":5.5,"e":3873}]],"a":{"m":14,"a":17,"M":20,"n":6}}],[2276,{"n":"Pelmard","f":"Andy","fp":"DC","r":8,"c":19,"s":{"s":29,"n":6,"a":4.83,"d":1.17,"Ss":29,"Sn":6,"Sa":4.83,"Sd":1.17,"Os":63,"On":13,"Oa":4.85,"Od":0.92,"pd":13},"p":[[-11,{"n":5,"e":3827}],[-10,{"n":4,"e":3834,"s":1}],[-9,{"n":5.5,"e":3843}],[-8,{"n":5,"e":3854}],[-7,{"n":4,"e":3862}],[-6,{"n":6,"e":3873}],[6,{"n":3.5,"e":6153}],[-5,{"n":4.5,"e":3884}],[5,{"n":6,"e":6159}],[4,{"n":4.5,"e":6175}],[3,{"n":3.5,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":5.5,"e":6205,"s":1}]],"fo":[[6153,[{"t":"Y"}]]]}],[2659,{"n":"Atal","f":"Youcef","fp":"DL","r":14,"c":19,"s":{"s":8,"n":2,"a":4,"d":0.71,"Og":1,"Os":60.5,"On":13,"Oa":4.65,"Od":1.33,"pd":5,"pm":3,"pa":5},"p":[[-17,{"n":5,"e":3763}],[-16,{"n":3,"e":3776}],[-15,{"n":5.5,"e":3783}],[-13,{"n":7.5,"e":3804}],[-12,{"n":6,"e":3814}],[-11,{"n":4.5,"e":3827}],[-9,{"n":3.5,"e":3843}],[-8,{"n":4.5,"e":3854}],[-7,{"n":3,"e":3862}],[-6,{"n":6,"e":3873,"g":1}],[-5,{"n":4,"e":3884}],[4,{"n":4.5,"e":6175}],[3,{"n":3.5,"e":6184}]],"fo":[[6175,[{"t":"I"}]]],"a":{"m":16,"a":21,"M":35,"n":23}}],[2715,{"n":"Kamara","f":"Hassane","fp":"DL","r":17,"c":19,"s":{"s":33.5,"n":6,"a":5.58,"d":1.11,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.11,"Og":2,"Os":150,"On":27,"Oa":5.56,"Od":0.93,"pd":17,"pm":9,"pa":1},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":7,"e":3662,"g":1}],[-26,{"n":6,"e":3676}],[-25,{"n":6.5,"e":3686}],[-24,{"n":4,"e":3697}],[-23,{"n":6,"e":3701}],[-22,{"n":5,"e":3709,"s":1}],[-21,{"n":5,"e":3726,"s":1}],[-20,{"n":5,"e":3733}],[-19,{"n":5.5,"e":3745}],[-18,{"n":7,"e":3757}],[-17,{"n":5,"e":3765}],[-16,{"n":5,"e":3768,"s":1}],[-15,{"n":6.5,"e":3785}],[-14,{"n":5,"e":3794}],[-13,{"n":6.5,"e":3805}],[-12,{"n":4.5,"e":3814}],[-10,{"n":5,"e":3836,"s":1}],[-9,{"n":5,"e":3845,"s":1}],[-7,{"n":7,"e":3865,"g":1}],[6,{"n":6,"e":6153}],[-5,{"n":4.5,"e":3885}],[5,{"n":5,"e":6159}],[4,{"n":5,"e":6175}],[3,{"n":4,"e":6184}],[2,{"n":7,"e":6196}],[1,{"n":6.5,"e":6205}]],"fo":[[6205,[{"t":"Y"}]]],"a":{"m":16,"a":20,"M":28,"n":44}}],[2740,{"n":"Danilo","f":"","fp":"MD","r":9,"c":19,"s":{"Os":83,"On":16,"Oa":5.19,"Od":0.89,"pd":9,"pm":7},"p":[[-28,{"n":5,"e":3653}],[-27,{"n":6,"e":3659}],[-26,{"n":5,"e":3673}],[-25,{"n":6.5,"e":3687}],[-24,{"n":3.5,"e":3694}],[-23,{"n":4.5,"e":3701}],[-22,{"n":5.5,"e":3713}],[-21,{"n":4.5,"e":3725}],[-20,{"n":5,"e":3729}],[-19,{"n":5,"e":3743,"s":1}],[-13,{"n":6,"e":3804}],[-12,{"n":7,"e":3814}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":4,"e":3834}],[-9,{"n":5.5,"e":3843,"s":1}],[-8,{"n":5,"e":3854,"s":1}]]}],[2946,{"n":"Sylvestre","f":"Eddy","fp":"MO","r":8,"c":19,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Og":2,"Os":105.5,"On":20,"Oa":5.28,"Od":0.72,"pm":19,"pa":1},"p":[[-27,{"n":7,"e":4798,"g":1}],[-25,{"n":5,"e":4818,"s":1}],[-19,{"n":6,"e":4878}],[-17,{"n":4.5,"e":4898}],[-12,{"n":4.5,"e":4948}],[-9,{"n":5.5,"e":4985,"s":1}],[-7,{"n":7,"e":4999,"g":1}],[-28,{"n":5,"e":4793}],[-26,{"n":5,"e":4817,"s":1}],[-23,{"n":6,"e":4838}],[-22,{"n":5,"e":4851,"s":1}],[-21,{"n":5,"e":4858,"s":1}],[-20,{"n":5,"e":4872,"s":1}],[-18,{"n":5,"e":4893}],[-10,{"n":5,"e":4968,"s":1}],[-8,{"n":4.5,"e":4988}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5.5,"e":6196}],[1,{"n":5,"e":6205,"s":1}]],"fo":[[6196,[{"t":"Y"}]]]}],[2959,{"n":"Kephren Thuram","f":"","fp":"MD","r":9,"c":19,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":1.89,"Sg":1,"Ss":8,"Sn":1,"Sa":8,"Og":1,"Os":92.5,"On":18,"Oa":5.14,"Od":0.97,"pm":18},"p":[[-27,{"n":5.5,"e":3659}],[-26,{"n":5.5,"e":3673}],[-25,{"n":5.5,"e":3687}],[-24,{"n":5.5,"e":3694}],[-23,{"n":5,"e":3701}],[-22,{"n":5.5,"e":3713}],[-20,{"n":5,"e":3729,"s":1}],[-19,{"n":5,"e":3743,"s":1}],[-18,{"n":5,"e":3751,"s":1}],[-17,{"n":5,"e":3763,"s":1}],[-16,{"n":5,"e":3776,"s":1}],[-12,{"n":4.5,"e":3814,"s":1}],[-11,{"n":4.5,"e":3827}],[6,{"n":8,"e":6153,"g":1}],[4,{"n":3.5,"e":6175}],[3,{"n":3.5,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":5,"e":6205}]],"fo":[[6153,[{"t":"I"},{"t":"Y"}]]],"a":{"m":8,"a":12,"M":21,"n":5}}],[3502,{"n":"Wade","f":"Paul","fp":"MD","r":1,"c":19}],[3756,{"n":"Pedro Brazao","f":"","fp":"MO","r":1,"c":19}],[6246,{"n":"Guessand","f":"Evann","fp":"A","r":4,"c":19,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[5,{"n":4.5,"e":6159,"s":1}],[4,{"n":5,"e":6175,"s":1}],[1,{"n":4.5,"e":6205,"s":1}]]}],[6247,{"n":"Boudaoui","f":"Hichem","fp":"MO","r":7,"c":19,"s":{"Og":1,"Os":46,"On":9,"Oa":5.11,"Od":1.52,"pm":7,"pa":2},"p":[[-24,{"n":2.5,"e":3694}],[-23,{"n":6.5,"e":3701}],[-22,{"n":7,"e":3713}],[-20,{"n":4,"e":3729}],[-19,{"n":7,"e":3743,"g":1}],[-17,{"n":4.5,"e":3763,"s":1}],[-15,{"n":4.5,"e":3783,"s":1}],[-14,{"n":5.5,"e":3793}],[-7,{"n":4.5,"e":3862,"s":1}]]}],[6250,{"n":"Dolberg","f":"Kasper","fp":"A","r":27,"c":19,"s":{"g":2,"s":24,"n":5,"a":4.8,"d":1.3,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Og":13,"Os":146,"On":28,"Oa":5.21,"Od":1.28,"pa":28},"p":[[-28,{"n":7.5,"e":3653,"g":2}],[-27,{"n":4,"e":3659}],[-26,{"n":7,"e":3673,"g":1}],[-25,{"n":6,"e":3687}],[-24,{"n":5,"e":3694}],[-23,{"n":4.5,"e":3701}],[-22,{"n":7.5,"e":3713,"g":2}],[-21,{"n":6.5,"e":3725,"g":1}],[-20,{"n":4,"e":3729}],[-19,{"n":5,"e":3743}],[-18,{"n":4.5,"e":3751}],[-17,{"n":4.5,"e":3763}],[-16,{"n":6,"e":3776,"g":1}],[-15,{"n":7,"e":3783,"g":1}],[-14,{"n":6,"e":3793,"g":1}],[-13,{"n":4,"e":3804}],[-12,{"n":4.5,"e":3814,"s":1}],[-10,{"n":5,"e":3834}],[-9,{"n":3.5,"e":3843}],[-8,{"n":6.5,"e":3854,"g":1}],[-7,{"n":3.5,"e":3862}],[-6,{"n":6,"e":3873,"g":1}],[6,{"n":5,"e":6153}],[-5,{"n":4,"e":3884}],[5,{"n":4,"e":6159}],[3,{"n":4,"e":6184}],[2,{"n":7,"e":6196,"g":2}],[1,{"n":4,"e":6205}]],"fo":[[6184,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":27,"a":60,"M":94,"n":34}}],[6398,{"n":"Crétier","f":"Noah","fp":"DC","r":1,"c":19}],[6591,{"n":"Trouillet","f":"Alexis","fp":"MO","r":5,"c":19,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[6,{"n":4.5,"e":6153,"s":1}],[2,{"n":5,"e":6196,"s":1}]]}],[6705,{"n":"Robson Bambu","f":"","fp":"DC","r":7,"c":19,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[1,{"n":5,"e":6205}]],"fo":[[6205,[{"t":"I"}]]]}],[6804,{"n":"Ndoye","f":"Dan","fp":"A","r":6,"c":19,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.41,"Os":28,"On":6,"Oa":4.67,"Od":0.41,"pm":1,"pa":5},"p":[[6,{"n":5,"e":6153,"s":1}],[5,{"n":5,"e":6159}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":4,"e":6184,"s":1}],[2,{"n":4.5,"e":6196,"s":1}],[1,{"n":4.5,"e":6205,"s":1}]]}],[6808,{"n":"Lotomba","f":"Jordan","fp":"DL","r":12,"c":19,"s":{"s":27,"n":5,"a":5.4,"d":0.65,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.76,"Os":27,"On":5,"Oa":5.4,"Od":0.65,"pd":5},"p":[[6,{"n":6,"e":6153}],[5,{"n":5.5,"e":6159}],[4,{"n":4.5,"e":6175}],[2,{"n":6,"e":6196}],[1,{"n":5,"e":6205}]],"fo":[[6196,[{"t":"Y"}]]],"a":{"m":10,"a":13,"M":14,"n":10}}],[6866,{"n":"Daniliuc","f":"Flavius","fp":"DC","r":3,"c":19,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Os":15.5,"On":3,"Oa":5.17,"Od":0.29,"pd":3},"p":[[6,{"n":5.5,"e":6153,"s":1}],[5,{"n":5,"e":6159,"s":1}],[4,{"n":5,"e":6175,"s":1}]]}],[7142,{"n":"Ben Seghir","f":"Salim","fp":"A","r":1,"c":19}],[7221,{"n":"Parsemain","f":"Alexandre","fp":"A","r":1,"c":19}],[7222,{"n":"Sellouki","f":"Malik","fp":"MD","r":1,"c":19}],[7223,{"n":"Kari","f":"Soudeysse","fp":"MD","r":1,"c":19}],[7224,{"n":"Pionnier Bertrand","f":"Theo","fp":"DL","r":1,"c":19}],[115,{"n":"Roux","f":"Nolan","fp":"A","r":13,"c":67,"s":{"s":17.5,"n":4,"a":4.38,"d":0.48,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.48,"Og":4,"Os":98.5,"On":20,"Oa":4.93,"Od":0.94,"pa":20},"p":[[-19,{"n":4,"e":4880,"s":1}],[-28,{"n":5,"e":3652}],[-27,{"n":5.5,"e":3665}],[-26,{"n":6,"e":3675,"g":1}],[-25,{"n":5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":7,"e":3705,"g":1}],[-22,{"n":5.5,"e":3714}],[-21,{"n":4,"e":4865,"s":1}],[-20,{"n":4.5,"e":4871,"s":1}],[-15,{"n":3.5,"e":4922}],[-14,{"n":6.5,"e":4930,"g":1,"s":1}],[-13,{"n":4.5,"e":4940,"s":1}],[-12,{"n":6,"e":4949,"g":1,"s":1}],[-11,{"n":5,"e":4965}],[-10,{"n":4,"e":4970,"s":1}],[6,{"n":4.5,"e":6152,"s":1}],[5,{"n":4,"e":6165}],[4,{"n":4,"e":6170,"s":1}],[3,{"n":5,"e":6185,"s":1}]],"a":{"m":14,"a":21,"M":33,"n":14}}],[122,{"n":"Reynet","f":"Baptiste","fp":"G","r":15,"c":67,"s":{"s":33,"n":6,"a":5.5,"d":1.14,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.14,"Os":123.5,"On":25,"Oa":4.94,"Od":1.01,"pg":25},"p":[[-28,{"n":4,"e":3649}],[-25,{"n":5,"e":3687}],[-24,{"n":5,"e":3691,"s":1}],[-20,{"n":3,"e":3737}],[-19,{"n":4,"e":3743}],[-18,{"n":5.5,"e":3757}],[-17,{"n":4,"e":3767}],[-16,{"n":6,"e":3777}],[-15,{"n":6.5,"e":3782}],[-14,{"n":6,"e":3797}],[-13,{"n":3.5,"e":3802}],[-12,{"n":5.5,"e":3817}],[-11,{"n":4,"e":3825}],[-10,{"n":5,"e":3837}],[-9,{"n":4,"e":3847}],[-8,{"n":4.5,"e":3852}],[-7,{"n":5,"e":3867}],[-6,{"n":5.5,"e":3874}],[6,{"n":6,"e":6152}],[-5,{"n":4.5,"e":3887}],[5,{"n":5.5,"e":6165}],[4,{"n":6.5,"e":6170}],[3,{"n":3.5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":6.5,"e":6206}]]}],[163,{"n":"Deaux","f":"Lucas","fp":"MD","r":15,"c":67,"s":{"s":20.5,"n":4,"a":5.13,"d":0.63,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":97.5,"On":18,"Oa":5.42,"Od":1.18,"pm":18},"p":[[-28,{"n":7,"e":3652,"g":1}],[-27,{"n":6,"e":3665,"g":1,"s":1}],[-23,{"n":6,"e":3705}],[-22,{"n":6,"e":3714}],[-21,{"n":4.5,"e":3727}],[-20,{"n":7,"e":3733}],[-16,{"n":2.5,"e":3770}],[-15,{"n":5.5,"e":3784}],[-14,{"n":4,"e":3789,"s":1}],[-9,{"n":5,"e":3841}],[-8,{"n":6.5,"e":3855}],[-7,{"n":4.5,"e":3863}],[-6,{"n":7,"e":3874}],[6,{"n":6,"e":6152}],[-5,{"n":5.5,"e":3881}],[3,{"n":4.5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":5,"e":6206}]],"fo":[[6206,[{"t":"Y"}]]]}],[447,{"n":"Burner","f":"Patrick","fp":"DL","r":8,"c":67,"s":{"s":15,"n":3,"a":5,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":94.5,"On":19,"Oa":4.97,"Od":0.61,"pd":19},"p":[[-24,{"n":4.5,"e":3694}],[-23,{"n":5,"e":3701,"s":1}],[-19,{"n":5.5,"e":3743}],[-18,{"n":6,"e":3751}],[-17,{"n":5,"e":3763}],[-16,{"n":5,"e":3776,"s":1}],[-14,{"n":5.5,"e":3793}],[-13,{"n":5.5,"e":3804,"s":1}],[-12,{"n":5,"e":3814,"s":1}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":3,"e":3834}],[-9,{"n":5,"e":3843}],[-8,{"n":5,"e":3854}],[-7,{"n":4.5,"e":3862,"g":1}],[-6,{"n":5.5,"e":3873}],[6,{"n":5,"e":6152}],[-5,{"n":4.5,"e":3884}],[5,{"n":5,"e":6165,"s":1}],[1,{"n":5,"e":6205,"s":1}]]}],[460,{"n":"Martinez","f":"Pablo","fp":"DC","r":15,"c":67,"s":{"s":15.5,"n":3,"a":5.17,"d":2.02,"Og":2,"Os":124,"On":25,"Oa":4.96,"Od":1.31,"pd":25},"p":[[-28,{"n":4.5,"e":3652}],[-27,{"n":4,"e":3665}],[-25,{"n":6,"e":3685}],[-24,{"n":5.5,"e":3694}],[-23,{"n":4.5,"e":3705}],[-22,{"n":6.5,"e":3714,"g":1}],[-21,{"n":6,"e":3727}],[-20,{"n":7,"e":3733}],[-19,{"n":4,"e":3739}],[-18,{"n":4.5,"e":3755}],[-17,{"n":3,"e":3764}],[-16,{"n":2.5,"e":3770}],[-15,{"n":4.5,"e":3784}],[-14,{"n":5,"e":3789}],[-13,{"n":3,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":7,"e":3835,"g":1}],[-9,{"n":4,"e":3841}],[-8,{"n":4.5,"e":3855}],[-7,{"n":6,"e":3863}],[-6,{"n":5,"e":3874}],[-5,{"n":6,"e":3881}],[3,{"n":3,"e":6185}],[2,{"n":5.5,"e":6194}],[1,{"n":7,"e":6206}]],"a":{"m":14,"a":18,"M":23,"n":14}}],[1548,{"n":"Ahlinvi","f":"Matteo","fp":"MD","r":1,"c":67,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[4,{"n":5,"e":6170,"s":1}]]}],[2606,{"n":"Landre","f":"Loïck","fp":"DC","r":8,"c":67,"s":{"s":25.5,"n":6,"a":4.25,"d":1.44,"Ss":25.5,"Sn":6,"Sa":4.25,"Sd":1.44,"Og":1,"Os":72.5,"On":15,"Oa":4.83,"Od":1.23,"pd":15},"p":[[-28,{"n":4,"e":3652}],[-27,{"n":4,"e":3665}],[-26,{"n":5.5,"e":3675}],[-25,{"n":6,"e":3685}],[-24,{"n":7,"e":3694,"g":1}],[-23,{"n":5.5,"e":3705}],[-22,{"n":5.5,"e":3714}],[-21,{"n":5,"e":3727}],[-7,{"n":4.5,"e":3863}],[6,{"n":5.5,"e":6152}],[5,{"n":4,"e":6165}],[4,{"n":4.5,"e":6170}],[3,{"n":2,"e":6185}],[2,{"n":3.5,"e":6194}],[1,{"n":6,"e":6206}]],"fo":[[6194,[{"t":"Y"}]]],"a":{"m":9,"a":10,"M":17,"n":11}}],[2651,{"n":"Guessoum","f":"Kelyan","fp":"DC","r":1,"c":67}],[2654,{"n":"Buades","f":"Lucas","fp":"MO","r":2,"c":67,"s":{"s":4.5,"n":1,"a":4.5,"Os":30.5,"On":7,"Oa":4.36,"Od":0.24,"pa":7},"p":[[-24,{"n":4.5,"e":3694,"s":1}],[-21,{"n":4.5,"e":3727,"s":1}],[-17,{"n":4,"e":3764}],[-16,{"n":4,"e":3770,"s":1}],[-11,{"n":4.5,"e":3824,"s":1}],[-10,{"n":4.5,"e":3835,"s":1}],[4,{"n":4.5,"e":6170,"s":1}]]}],[2663,{"n":"Ben Amar","f":"Sami","fp":"A","r":2,"c":67,"s":{"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[-6,{"n":4.5,"e":3874,"s":1}],[-5,{"n":4.5,"e":3881,"s":1}]]}],[2680,{"n":"Alakouch","f":"Sofiane","fp":"DL","r":8,"c":67,"s":{"s":4,"n":1,"a":4,"Oao":1,"Os":57,"On":13,"Oa":4.38,"Od":0.68,"pd":13},"p":[[-26,{"n":4.5,"e":3675}],[-21,{"n":3.5,"e":3727}],[-20,{"n":5,"e":3733}],[-19,{"n":3.5,"e":3739,"a":1}],[-18,{"n":4.5,"e":3755}],[-16,{"n":3,"e":3770}],[-15,{"n":5,"e":3784}],[-14,{"n":5,"e":3789}],[-10,{"n":5,"e":3835}],[-8,{"n":4.5,"e":3855}],[-6,{"n":5,"e":3874}],[-5,{"n":4.5,"e":3881}],[3,{"n":4,"e":6185,"s":1}]]}],[2695,{"n":"Benrahou","f":"Yassine","fp":"MO","r":12,"c":67,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Og":2,"Os":81.5,"On":15,"Oa":5.43,"Od":0.96,"pm":13,"pa":2},"p":[[-28,{"n":5.5,"e":3652}],[-27,{"n":5.5,"e":3665}],[-26,{"n":6,"e":3675}],[-25,{"n":5,"e":3685}],[-24,{"n":5.5,"e":3694}],[-23,{"n":7,"e":3705,"g":1}],[-22,{"n":6,"e":3714}],[-21,{"n":4.5,"e":3727}],[-20,{"n":7.5,"e":3733,"g":1}],[-14,{"n":5,"e":3790,"s":1}],[-6,{"n":6,"e":3869}],[5,{"n":5,"e":6165}],[3,{"n":4.5,"e":6185}],[2,{"n":4,"e":6194}],[1,{"n":4.5,"e":6206}]],"fo":[[6206,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":25,"n":5}}],[2699,{"n":"Depres","f":"Clement","fp":"A","r":2,"c":67}],[2700,{"n":"Miguel","f":"Florian","fp":"DL","r":8,"c":67,"s":{"s":15,"n":3,"a":5,"Og":1,"Os":102,"On":22,"Oa":4.64,"Od":1.04,"pd":22},"p":[[-26,{"n":5.5,"e":3675,"s":1}],[-25,{"n":5.5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":5,"e":3705}],[-22,{"n":7,"e":3714,"g":1}],[-21,{"n":4,"e":3727}],[-20,{"n":5,"e":3733}],[-19,{"n":4,"e":3739}],[-18,{"n":4.5,"e":3755}],[-17,{"n":3,"e":3764}],[-16,{"n":2,"e":3770}],[-15,{"n":5,"e":3784}],[-13,{"n":3,"e":3807}],[-11,{"n":5,"e":3824}],[-9,{"n":4.5,"e":3841}],[-8,{"n":4.5,"e":3855}],[-7,{"n":4,"e":3863}],[-6,{"n":5.5,"e":3874}],[-5,{"n":5,"e":3881}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":5,"e":6170}],[1,{"n":5,"e":6206,"s":1}]]}],[2709,{"n":"Briancon","f":"Anthony","fp":"DC","r":12,"c":67,"s":{"s":22,"n":4,"a":5.5,"d":0.41,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.41,"Og":1,"Os":109,"On":22,"Oa":4.95,"Od":1.02,"pd":22},"p":[[-26,{"n":4,"e":3675}],[-25,{"n":5,"e":3685,"s":1}],[-24,{"n":4.5,"e":3694,"s":1}],[-20,{"n":7,"e":3733}],[-19,{"n":5.5,"e":3739,"g":1}],[-18,{"n":4,"e":3755}],[-17,{"n":4.5,"e":3764}],[-16,{"n":2.5,"e":3770}],[-15,{"n":5,"e":3784}],[-14,{"n":5,"e":3789}],[-13,{"n":3,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":5,"e":3835}],[-9,{"n":4.5,"e":3841}],[-8,{"n":4.5,"e":3855}],[-7,{"n":5.5,"e":3863}],[-6,{"n":6.5,"e":3874}],[6,{"n":5.5,"e":6152}],[-5,{"n":5.5,"e":3881}],[5,{"n":5.5,"e":6165}],[4,{"n":6,"e":6170}],[3,{"n":5,"e":6185,"s":1}]],"fo":[[6152,[{"t":"Y"}]]]}],[2716,{"n":"Paquiez","f":"Gaetan","fp":"DL","r":6,"c":67,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Os":94,"On":21,"Oa":4.48,"Od":0.97,"pd":20,"pm":1},"p":[[-28,{"n":3,"e":3652}],[-27,{"n":3,"e":3665}],[-26,{"n":3.5,"e":3675}],[-25,{"n":5.5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":5.5,"e":3705}],[-22,{"n":6,"e":3714}],[-20,{"n":5,"e":3733,"s":1}],[-19,{"n":4,"e":3739}],[-17,{"n":3.5,"e":3764}],[-16,{"n":4,"e":3770,"s":1}],[-14,{"n":4.5,"e":3789}],[-13,{"n":2.5,"e":3807}],[-11,{"n":5,"e":3824}],[-10,{"n":4.5,"e":3835}],[-9,{"n":4.5,"e":3841}],[-7,{"n":4.5,"e":3863}],[-6,{"n":5,"e":3874,"s":1}],[-5,{"n":4.5,"e":3881,"s":1}],[5,{"n":5,"e":6165}],[4,{"n":6,"e":6170}]]}],[2723,{"n":"Ripart","f":"Renaud","fp":"DL","r":12,"c":67,"s":{"g":1,"s":32,"n":6,"a":5.33,"d":1.54,"Sg":1,"Ss":32,"Sn":6,"Sa":5.33,"Sd":1.54,"Og":4,"Os":122.5,"On":25,"Oa":4.9,"Od":1.27,"pd":5,"pm":3,"pa":17},"p":[[-28,{"n":3.5,"e":3652}],[-27,{"n":3.5,"e":3665}],[-26,{"n":6,"e":3675}],[-25,{"n":4,"e":3685,"s":1}],[-20,{"n":7,"e":3733,"g":1}],[-19,{"n":4,"e":3739}],[-18,{"n":6,"e":3755}],[-17,{"n":4,"e":3764}],[-16,{"n":3,"e":3770}],[-15,{"n":6,"e":3784,"g":1}],[-14,{"n":4,"e":3789}],[-13,{"n":3.5,"e":3807}],[-11,{"n":4.5,"e":3824}],[-10,{"n":5,"e":3835}],[-9,{"n":6.5,"e":3841,"g":1}],[-8,{"n":5,"e":3855}],[-7,{"n":5,"e":3863}],[-6,{"n":6,"e":3874}],[6,{"n":7,"e":6152,"g":1}],[-5,{"n":4,"e":3881}],[5,{"n":6,"e":6165}],[4,{"n":5.5,"e":6170}],[3,{"n":3,"e":6185}],[2,{"n":4,"e":6194}],[1,{"n":6.5,"e":6206}]],"fo":[[6185,[{"t":"Y"}]]],"a":{"m":13,"a":19,"M":36,"n":14}}],[2957,{"n":"Lionel Dias","f":"Lucas","fp":"G","r":7,"c":67,"s":{"Os":22,"On":4,"Oa":5.5,"Od":0.82,"pg":4},"p":[[-13,{"n":5.5,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":6.5,"e":3835}],[-9,{"n":4.5,"e":3841,"s":1}]]}],[3771,{"n":"Denkey","f":"Kévin","fp":"A","r":12,"c":67,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":1.35,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Og":2,"Os":87,"On":19,"Oa":4.58,"Od":0.87,"pa":19},"p":[[-28,{"n":4.5,"e":3652,"s":1}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":5,"e":3727}],[-20,{"n":4,"e":3733,"s":1}],[-19,{"n":4.5,"e":3739,"s":1}],[-18,{"n":3.5,"e":3755}],[-15,{"n":4.5,"e":3784,"s":1}],[-14,{"n":4,"e":3789}],[-13,{"n":4.5,"e":3807,"s":1}],[-11,{"n":4,"e":3824}],[-10,{"n":4.5,"e":3835}],[-9,{"n":6.5,"e":3841,"g":1}],[-8,{"n":4.5,"e":3855,"s":1}],[-7,{"n":4.5,"e":3863,"s":1}],[6,{"n":4.5,"e":6152}],[5,{"n":4,"e":6165,"s":1}],[3,{"n":3.5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":7,"e":6206,"g":1}]],"fo":[[6185,[{"t":"Y"}]],[6194,[{"t":"Y"}]]],"a":{"m":8,"a":18,"M":41,"n":23}}],[3797,{"n":"Ferhat","f":"Zinedine","fp":"MO","r":22,"c":67,"s":{"g":3,"s":39.5,"n":6,"a":6.58,"d":0.58,"Sg":3,"Ss":39.5,"Sn":6,"Sa":6.58,"Sd":0.58,"Og":5,"Os":154.5,"On":27,"Oa":5.72,"Od":1.16,"pm":18,"pa":9},"p":[[-28,{"n":5.5,"e":3652}],[-27,{"n":7,"e":3665,"g":1}],[-26,{"n":5,"e":3675}],[-25,{"n":5.5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":6,"e":3705}],[-22,{"n":8,"e":3714}],[-21,{"n":7,"e":3727,"g":1}],[-20,{"n":6,"e":3733}],[-19,{"n":7,"e":3739}],[-18,{"n":6,"e":3755}],[-17,{"n":4.5,"e":3764}],[-16,{"n":3,"e":3770}],[-15,{"n":5,"e":3784}],[-14,{"n":5,"e":3789}],[-13,{"n":4.5,"e":3807,"s":1}],[-9,{"n":5.5,"e":3841}],[-8,{"n":6,"e":3855}],[-7,{"n":4,"e":3863}],[-6,{"n":5.5,"e":3874}],[6,{"n":6,"e":6152}],[-5,{"n":4,"e":3881}],[5,{"n":6.5,"e":6165,"g":1}],[4,{"n":6,"e":6170}],[3,{"n":6.5,"e":6185,"g":1}],[2,{"n":7,"e":6194,"g":1}],[1,{"n":7.5,"e":6206}]],"a":{"m":20,"a":30,"M":55,"n":44}}],[5031,{"n":"Fomba","f":"Lamine","fp":"MD","r":7,"c":67,"s":{"s":27,"n":5,"a":5.4,"d":0.42,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.41,"Os":111.5,"On":22,"Oa":5.07,"Od":0.79,"pm":22},"p":[[-27,{"n":5,"e":3665}],[-26,{"n":4.5,"e":3675}],[-25,{"n":6,"e":3685}],[-24,{"n":6.5,"e":3694}],[-23,{"n":5.5,"e":3705,"s":1}],[-22,{"n":4.5,"e":3714,"s":1}],[-17,{"n":4,"e":3764}],[-16,{"n":3,"e":3770}],[-14,{"n":6,"e":3789}],[-13,{"n":4,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":5,"e":3835}],[-9,{"n":5,"e":3841,"s":1}],[-8,{"n":5,"e":3855}],[-7,{"n":5.5,"e":3863}],[-6,{"n":4.5,"e":3874,"s":1}],[6,{"n":6,"e":6152}],[-5,{"n":5,"e":3881}],[5,{"n":5.5,"e":6165}],[4,{"n":5.5,"e":6170}],[3,{"n":5,"e":6185,"s":1}],[1,{"n":5,"e":6206,"s":1}]],"fo":[[6170,[{"t":"Y"}]]]}],[5051,{"n":"Sarr","f":"Sidy","fp":"MD","r":8,"c":67,"s":{"s":15,"n":3,"a":5,"Os":108,"On":22,"Oa":4.91,"Od":0.73,"pm":22},"p":[[-28,{"n":5,"e":3652}],[-27,{"n":4.5,"e":3665}],[-26,{"n":5,"e":3675}],[-25,{"n":7,"e":3685}],[-24,{"n":5,"e":3694}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":4.5,"e":3727,"s":1}],[-19,{"n":4.5,"e":3739}],[-18,{"n":5.5,"e":3755}],[-16,{"n":3,"e":3770}],[-15,{"n":5,"e":3784,"s":1}],[-13,{"n":4,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":5.5,"e":3835,"s":1}],[-9,{"n":4.5,"e":3841,"s":1}],[-8,{"n":4.5,"e":3855,"s":1}],[-7,{"n":5,"e":3863}],[-6,{"n":5.5,"e":3874}],[-5,{"n":5,"e":3881,"s":1}],[4,{"n":5,"e":6170}],[2,{"n":5,"e":6194,"s":1}],[1,{"n":5,"e":6206,"s":1}]]}],[6022,{"n":"Duljevic","f":"Haris","fp":"MO","r":7,"c":67,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":53.5,"On":11,"Oa":4.86,"Od":0.71,"pm":8,"pa":3},"p":[[-23,{"n":5,"e":3705,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-18,{"n":5,"e":3755,"s":1}],[-16,{"n":3,"e":3770}],[-15,{"n":6,"e":3784,"s":1}],[-14,{"n":5,"e":3789,"s":1}],[-13,{"n":5,"e":3807}],[-11,{"n":5,"e":3824,"s":1}],[-10,{"n":5,"e":3835}],[4,{"n":4.5,"e":6170}],[2,{"n":5,"e":6194,"s":1}]]}],[6259,{"n":"Valerio","f":"Antoine","fp":"MO","r":2,"c":67,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":0.22,"pm":5},"p":[[-23,{"n":5,"e":3705,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-18,{"n":4.5,"e":3755}],[-17,{"n":5,"e":3764,"s":1}],[-10,{"n":5,"e":3835,"s":1}]]}],[6279,{"n":"Rabouille","f":"Valentin","fp":"G","r":1,"c":67}],[6307,{"n":"Chadli","f":"Nassim","fp":"A","r":1,"c":67}],[6309,{"n":"Karraoui","f":"Amine","fp":"A","r":1,"c":67}],[6340,{"n":"Valls","f":"Lucas","fp":"MD","r":1,"c":67}],[6436,{"n":"Megier","f":"Julien","fp":"DC","r":1,"c":67}],[6438,{"n":"Nazih","f":"Amjhad","fp":"G","r":1,"c":67}],[6507,{"n":"Koné","f":"Moussa","fp":"A","r":9,"c":67,"s":{"g":1,"s":14.5,"n":3,"a":4.83,"d":1.04,"Og":3,"Os":39.5,"On":8,"Oa":4.94,"Od":1.05,"pa":8},"p":[[-28,{"n":4,"e":3652}],[-27,{"n":4.5,"e":3665,"s":1}],[-26,{"n":4,"e":3675,"s":1}],[-25,{"n":6.5,"e":3685,"g":1,"s":1}],[-24,{"n":6,"e":3694,"g":1,"s":1}],[3,{"n":4.5,"e":6185,"s":1}],[2,{"n":4,"e":6194,"s":1}],[1,{"n":6,"e":6206,"g":1,"s":1}]],"a":{"m":9,"a":12,"M":15,"n":5}}],[6712,{"n":"Meling","f":"Birger","fp":"DL","r":11,"c":67,"s":{"g":1,"s":29,"n":5,"a":5.8,"d":1.3,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":1,"Os":29,"On":5,"Oa":5.8,"Od":1.3,"pd":5},"p":[[6,{"n":6,"e":6152}],[5,{"n":5,"e":6165}],[3,{"n":5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":8,"e":6206,"g":1}]],"a":{"m":9,"a":13,"M":21,"n":27}}],[6869,{"n":"Cubas","f":"Adrián","fp":"MD","r":14,"c":67,"s":{"g":1,"s":38,"n":6,"a":6.33,"d":0.98,"Sg":1,"Ss":38,"Sn":6,"Sa":6.33,"Sd":0.98,"Og":1,"Os":38,"On":6,"Oa":6.33,"Od":0.98,"pm":6},"p":[[6,{"n":7,"e":6152}],[5,{"n":6,"e":6165}],[4,{"n":6.5,"e":6170}],[3,{"n":7,"e":6185,"g":1}],[2,{"n":4.5,"e":6194}],[1,{"n":7,"e":6206}]],"fo":[[6170,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":26,"n":15}}],[7330,{"n":"Ludivin Majouga","f":"Marco","fp":"A","r":1,"c":67,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[5,{"n":4.5,"e":6165,"s":1}]]}],[7,{"n":"Di María","f":"Ángel","fp":"MO","r":34,"c":2,"s":{"g":1,"s":24,"n":4,"a":6,"d":1.68,"Og":7,"Os":163,"On":26,"Oa":6.27,"Od":1.04,"pm":17,"pa":9},"p":[[5,{"n":5.5,"e":6166}],[-5,{"n":6,"e":3886}],[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666}],[-26,{"n":7,"e":3674}],[-25,{"n":6.5,"e":3678}],[-24,{"n":7,"e":3695,"g":1}],[-23,{"n":7,"e":3700}],[-22,{"n":7,"e":3715,"g":1}],[-21,{"n":6,"e":3719}],[-20,{"n":5,"e":3734}],[-19,{"n":6,"e":3744}],[-18,{"n":7,"e":3756}],[-16,{"n":6,"e":3775}],[-15,{"n":7,"e":3780}],[-14,{"n":6.5,"e":3795,"g":1}],[-13,{"n":7,"e":3798,"g":1}],[-12,{"n":6.5,"e":3811}],[-11,{"n":7.5,"e":3823}],[-10,{"n":8,"e":3834,"g":2}],[-9,{"n":5,"e":3844,"s":1}],[-8,{"n":5,"e":3849}],[-7,{"n":4.5,"e":3865,"s":1}],[-6,{"n":6.5,"e":3870}],[4,{"n":8,"e":6175,"g":1}],[3,{"n":4,"e":6187}],[1,{"n":6.5,"e":6207}]],"fo":[[6187,[{"t":"Y"}]]],"a":{"m":35,"a":61,"M":97,"n":32}}],[12,{"n":"Draxler","f":"Julian","fp":"MO","r":9,"c":2,"s":{"g":2,"s":29.5,"n":5,"a":5.9,"d":0.89,"Sg":1,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":0.75,"Og":2,"Os":82,"On":14,"Oa":5.86,"Od":0.93,"pm":14},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":7.5,"e":3666,"s":1}],[-25,{"n":6,"e":3678}],[-24,{"n":5.5,"e":3695}],[-23,{"n":5.5,"e":3700,"s":1}],[-16,{"n":5,"e":3775}],[-15,{"n":4.5,"e":3780,"s":1}],[-14,{"n":6.5,"e":3795}],[-13,{"n":7,"e":3798}],[-12,{"n":5,"e":3811,"s":1}],[6,{"n":6.5,"e":6154,"g":1}],[5,{"n":5,"e":6166}],[4,{"n":6,"e":6175}],[3,{"n":5,"e":6187,"s":1}],[1,{"n":7,"e":6207,"g":1}]],"fo":[[6166,[{"t":"Y"}]],[6207,[{"t":"Y"}]]]}],[17,{"n":"Verratti","f":"Marco","fp":"MD","r":22,"c":2,"s":{"s":28.5,"n":5,"a":5.7,"d":1.52,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":1.52,"Os":125,"On":21,"Oa":5.95,"Od":1.04,"pm":21},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":7,"e":3674}],[-25,{"n":5.5,"e":3678,"s":1}],[-24,{"n":5,"e":3695}],[-23,{"n":5.5,"e":3700}],[-22,{"n":6.5,"e":3715}],[-21,{"n":7,"e":3719}],[-20,{"n":6,"e":3734}],[-19,{"n":6,"e":3744,"s":1}],[-18,{"n":4.5,"e":3756,"s":1}],[-15,{"n":6,"e":3780,"s":1}],[-13,{"n":5,"e":3798}],[-11,{"n":7.5,"e":3823}],[-9,{"n":7,"e":3844}],[-8,{"n":7,"e":3849}],[-6,{"n":5.5,"e":3870,"s":1}],[6,{"n":7.5,"e":6154}],[-5,{"n":5.5,"e":3886}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":6.5,"e":6175}],[3,{"n":3.5,"e":6187}],[2,{"n":6,"e":6190}]],"fo":[[6175,[{"t":"Y"}]]],"a":{"m":24,"a":35,"M":56,"n":22}}],[28,{"n":"Mbappé","f":"Kylian","fp":"A","r":42,"c":2,"s":{"g":2,"s":22,"n":3,"a":7.33,"d":0.29,"Sg":2,"Ss":22,"Sn":3,"Sa":7.33,"Sd":0.29,"Og":19,"Os":134.5,"On":20,"Oa":6.73,"Od":1.09,"pm":1,"pa":19},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":8.5,"e":3666,"g":2}],[-26,{"n":7,"e":3674,"g":1}],[-24,{"n":6.5,"e":3695,"g":1}],[-23,{"n":5,"e":3700}],[-22,{"n":7,"e":3715,"g":1}],[-21,{"n":5.5,"e":3719}],[-20,{"n":5.5,"e":3734}],[-19,{"n":8,"e":3744,"g":2}],[-18,{"n":7,"e":3756,"g":2}],[-17,{"n":7,"e":3761,"g":1}],[-16,{"n":6,"e":3775,"g":1}],[-15,{"n":8,"e":3780,"g":2}],[-14,{"n":4.5,"e":3795,"s":1}],[-12,{"n":6.5,"e":3811,"g":1}],[-11,{"n":8,"e":3823,"g":2}],[-10,{"n":7,"e":3834,"g":1,"s":1}],[-8,{"n":5.5,"e":3849,"s":1}],[6,{"n":7.5,"e":6154,"g":1}],[5,{"n":7,"e":6166}],[4,{"n":7.5,"e":6175,"g":1}]],"a":{"m":43,"a":124,"M":234,"n":35}}],[44,{"n":"Marquinhos","f":"","fp":"DC","r":25,"c":2,"s":{"g":1,"s":24.5,"n":4,"a":6.13,"d":0.95,"Sg":1,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":1.15,"Og":3,"Os":113,"On":19,"Oa":5.95,"Od":1.12,"pd":10,"pm":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":7.5,"e":3666}],[-26,{"n":8,"e":3674,"g":2}],[-25,{"n":5,"e":3678,"s":1}],[-20,{"n":5,"e":3734}],[-19,{"n":6,"e":3744}],[-18,{"n":7.5,"e":3756}],[-16,{"n":7,"e":3775}],[-14,{"n":5.5,"e":3795}],[-13,{"n":4.5,"e":3798,"s":1}],[-12,{"n":4.5,"e":3811}],[-11,{"n":6.5,"e":3823}],[-10,{"n":4.5,"e":3834,"s":1}],[-8,{"n":6,"e":3849}],[-7,{"n":5,"e":3865,"s":1}],[-6,{"n":6,"e":3870}],[6,{"n":5.5,"e":6154}],[5,{"n":5.5,"e":6166}],[4,{"n":7.5,"e":6175,"g":1}],[1,{"n":6,"e":6207}]],"fo":[[6166,[{"t":"Y"}]]],"a":{"m":26,"a":41,"M":60,"n":38}}],[49,{"n":"Kurzawa","f":"Layvin","fp":"DL","r":8,"c":2,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Og":1,"Os":73.5,"On":15,"Oa":4.9,"Od":0.93,"pd":15},"p":[[-28,{"n":null,"e":3657,"d":1}],[-24,{"n":5,"e":3695}],[-23,{"n":4.5,"e":3700}],[-22,{"n":7,"e":3715,"g":1}],[-18,{"n":5,"e":3756,"s":1}],[-16,{"n":6,"e":3775}],[-15,{"n":6.5,"e":3780}],[-13,{"n":4.5,"e":3798}],[-12,{"n":4.5,"e":3811,"s":1}],[-10,{"n":4.5,"e":3834,"s":1}],[-8,{"n":5,"e":3849}],[-7,{"n":3.5,"e":3865}],[-6,{"n":4.5,"e":3870,"s":1}],[-5,{"n":4.5,"e":3886}],[3,{"n":4,"e":6187,"s":1}],[2,{"n":4.5,"e":6190}]],"fo":[[6187,[{"t":"R"}]]]}],[180,{"n":"Kimpembe","f":"Presnel","fp":"DC","r":18,"c":2,"s":{"s":32.5,"n":6,"a":5.42,"d":0.49,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.49,"Os":121,"On":22,"Oa":5.5,"Od":0.62,"pd":22},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3666}],[-26,{"n":5,"e":3674}],[-24,{"n":5,"e":3695}],[-23,{"n":5,"e":3700}],[-22,{"n":6,"e":3715}],[-21,{"n":6,"e":3719}],[-17,{"n":5,"e":3761}],[-15,{"n":6,"e":3780}],[-14,{"n":5.5,"e":3795}],[-12,{"n":4.5,"e":3811}],[-11,{"n":6.5,"e":3823}],[-10,{"n":5.5,"e":3834}],[-9,{"n":7,"e":3844}],[-7,{"n":5.5,"e":3865}],[-6,{"n":5,"e":3870,"s":1}],[6,{"n":5,"e":6154}],[-5,{"n":5,"e":3886,"s":1}],[5,{"n":6,"e":6166}],[4,{"n":6,"e":6175}],[3,{"n":5.5,"e":6187}],[2,{"n":5,"e":6190}],[1,{"n":5,"e":6207,"s":1}]],"fo":[[6154,[{"t":"Y"}]]],"a":{"m":19,"a":29,"M":57,"n":32}}],[432,{"n":"Diallo","f":"Abdou","fp":"DC","r":7,"c":2,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":10,"Sn":2,"Sa":5,"Os":91,"On":17,"Oa":5.35,"Od":0.88,"pd":17},"p":[[-28,{"n":null,"e":3657,"d":1}],[-21,{"n":5,"e":3719}],[-19,{"n":5,"e":3744}],[-18,{"n":6,"e":3756}],[-17,{"n":5.5,"e":3761,"s":1}],[-16,{"n":6.5,"e":3775}],[-13,{"n":6,"e":3798}],[-12,{"n":4,"e":3811}],[-10,{"n":5,"e":3834}],[-9,{"n":5,"e":3844,"s":1}],[-8,{"n":6,"e":3849}],[-7,{"n":4,"e":3865}],[-6,{"n":5.5,"e":3870}],[6,{"n":5,"e":6154,"s":1}],[-5,{"n":7.5,"e":3886}],[5,{"n":5,"e":6166,"s":1}],[2,{"n":5.5,"e":6190,"s":1}],[1,{"n":4.5,"e":6207}]],"fo":[[6207,[{"t":"Y"},{"t":"O"}]]],"a":{"m":8,"a":11,"M":16,"n":5}}],[510,{"n":"Letellier","f":"Alexandre","fp":"G","r":1,"c":2,"s":{"Os":22,"On":5,"Oa":4.4,"Od":0.82,"pg":5},"p":[[-27,{"n":5,"e":4807}],[-26,{"n":5.5,"e":4813}],[-25,{"n":3.5,"e":4825}],[-24,{"n":4,"e":4834}],[-23,{"n":4,"e":4844}]]}],[647,{"n":"Herrera","f":"Ander","fp":"MD","r":8,"c":2,"s":{"s":31.5,"n":6,"a":5.25,"d":0.52,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.52,"Og":1,"Os":75,"On":14,"Oa":5.36,"Od":0.69,"pd":2,"pm":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-25,{"n":4.5,"e":3678,"g":1}],[-21,{"n":4.5,"e":3719,"s":1}],[-11,{"n":6,"e":3823}],[-10,{"n":5.5,"e":3834}],[-9,{"n":7,"e":3844}],[-7,{"n":5,"e":3865}],[-6,{"n":5.5,"e":3870}],[6,{"n":5.5,"e":6154,"s":1}],[-5,{"n":5.5,"e":3886,"s":1}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":5.5,"e":6175,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":5,"e":6190}],[1,{"n":6,"e":6207}]],"a":{"m":9,"a":11,"M":20,"n":13}}],[657,{"n":"Gueye","f":"Idrissa","fp":"MD","r":22,"c":2,"s":{"g":1,"s":28.5,"n":5,"a":5.7,"d":0.97,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":2,"Os":137.5,"On":23,"Oa":5.98,"Od":1.03,"pm":23},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":7,"e":3666}],[-26,{"n":5.5,"e":3674,"s":1}],[-25,{"n":4,"e":3678}],[-24,{"n":6,"e":3695}],[-23,{"n":6,"e":3700}],[-22,{"n":7,"e":3715}],[-21,{"n":6.5,"e":3719}],[-20,{"n":4.5,"e":3734}],[-17,{"n":4.5,"e":3761}],[-16,{"n":7,"e":3775}],[-15,{"n":5.5,"e":3780}],[-14,{"n":7,"e":3795}],[-13,{"n":7,"e":3798}],[-12,{"n":5.5,"e":3811}],[-9,{"n":8,"e":3844,"g":1}],[-8,{"n":5.5,"e":3849}],[-6,{"n":6.5,"e":3870}],[6,{"n":7,"e":6154,"g":1,"s":1}],[-5,{"n":6,"e":3886}],[4,{"n":5,"e":6175}],[3,{"n":4.5,"e":6187}],[2,{"n":6,"e":6190}],[1,{"n":6,"e":6207}]],"fo":[[6175,[{"t":"I"}]]],"a":{"m":23,"a":30,"M":42,"n":15}}],[1155,{"n":"Neymar","f":"","fp":"A","r":40,"c":2,"s":{"g":2,"s":18,"n":3,"a":6,"d":2.29,"Sg":2,"Ss":14,"Sn":2,"Sa":7,"Sd":2.12,"Og":15,"Os":121.5,"On":18,"Oa":6.75,"Od":1.51,"pm":11,"pa":7},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":6.5,"e":3674}],[-22,{"n":8,"e":3715}],[-21,{"n":8,"e":3719,"g":2}],[-20,{"n":8,"e":3734,"g":2}],[-19,{"n":8,"e":3744,"g":1}],[-18,{"n":8.5,"e":3756,"g":1}],[-17,{"n":8,"e":3761,"g":1}],[-16,{"n":6,"e":3775,"g":1}],[-15,{"n":7,"e":3780,"g":1}],[-14,{"n":5,"e":3795}],[-9,{"n":7,"e":3844,"g":1}],[-8,{"n":6.5,"e":3849,"g":1}],[-7,{"n":3.5,"e":3865}],[-6,{"n":7.5,"e":3870,"g":1}],[6,{"n":8.5,"e":6154,"g":2}],[-5,{"n":6,"e":3886,"g":1}],[5,{"n":5.5,"e":6166}],[3,{"n":4,"e":6187}]],"fo":[[6187,[{"t":"R"},{"t":"Y"}]]],"a":{"m":41,"a":104,"M":171,"n":40}}],[1325,{"n":"Jesé","f":"","fp":"A","r":2,"c":2,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[2,{"n":4,"e":6190,"s":1}]]}],[1369,{"n":"Bulka","f":"Marcin","fp":"G","r":1,"c":2,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pg":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[2,{"n":4,"e":6190}]]}],[1605,{"n":"Navas","f":"Keylor","fp":"G","r":20,"c":2,"s":{"s":24,"n":4,"a":6,"d":0.82,"Ss":18,"Sn":3,"Sa":6,"Sd":1,"Os":136,"On":25,"Oa":5.44,"Od":1.15,"pg":25},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6.5,"e":3666}],[-25,{"n":3,"e":3678}],[-24,{"n":3,"e":3695}],[-23,{"n":6,"e":3700}],[-22,{"n":6,"e":3715}],[-21,{"n":6,"e":3719}],[-20,{"n":4,"e":3734}],[-19,{"n":5,"e":3744}],[-18,{"n":6,"e":3756}],[-17,{"n":5,"e":3761}],[-16,{"n":6.5,"e":3775}],[-15,{"n":5.5,"e":3780}],[-14,{"n":7.5,"e":3795}],[-12,{"n":4,"e":3811}],[-11,{"n":6,"e":3823}],[-10,{"n":4.5,"e":3834}],[-9,{"n":6,"e":3844}],[-8,{"n":5.5,"e":3849}],[-7,{"n":4,"e":3865}],[-6,{"n":6,"e":3870}],[6,{"n":5,"e":6154}],[-5,{"n":6,"e":3886}],[5,{"n":6,"e":6166}],[4,{"n":7,"e":6175}],[1,{"n":6,"e":6207}]],"a":{"m":21,"a":32,"M":50,"n":9}}],[1609,{"n":"Sarabia","f":"Pablo","fp":"MO","r":15,"c":2,"s":{"s":28,"n":6,"a":4.67,"d":0.88,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.88,"Og":4,"Os":121,"On":23,"Oa":5.26,"Od":1.19,"pm":15,"pa":8},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":8,"e":3666,"g":1}],[-26,{"n":5,"e":3674,"s":1}],[-24,{"n":5.5,"e":3695,"s":1}],[-23,{"n":5,"e":3700}],[-22,{"n":7.5,"e":3715,"g":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-19,{"n":5,"e":3744,"s":1}],[-17,{"n":5.5,"e":3761}],[-16,{"n":5,"e":3775,"s":1}],[-15,{"n":6,"e":3780,"g":1,"s":1}],[-13,{"n":5.5,"e":3798}],[-11,{"n":4.5,"e":3823,"s":1}],[-10,{"n":5,"e":3834}],[-9,{"n":8,"e":3844,"g":1}],[-8,{"n":4,"e":3849}],[-7,{"n":4.5,"e":3865}],[6,{"n":6,"e":6154,"s":1}],[-5,{"n":4.5,"e":3886}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":3.5,"e":6190}],[1,{"n":4,"e":6207}]],"fo":[[6190,[{"t":"Y"}]]],"a":{"m":17,"a":23,"M":31,"n":11}}],[1626,{"n":"Rico","f":"Sergio","fp":"G","r":7,"c":2,"s":{"s":4.5,"n":1,"a":4.5,"Os":13,"On":3,"Oa":4.33,"Od":1.26,"pg":3},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":3,"e":3674}],[-13,{"n":5.5,"e":3798}],[3,{"n":4.5,"e":6187}]]}],[2237,{"n":"Steven Sila","f":"Richard","fp":"A","r":3,"c":2,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[2,{"n":4.5,"e":6575,"s":1}],[-28,{"n":null,"e":3657,"d":1}],[-10,{"n":4,"e":4975,"s":1}]]}],[2627,{"n":"Dagba","f":"Colin","fp":"DL","r":6,"c":2,"s":{"s":25,"n":5,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":60,"On":12,"Oa":5,"Od":0.37,"pd":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-21,{"n":5,"e":3719,"s":1}],[-15,{"n":5,"e":3780}],[-14,{"n":4.5,"e":3795,"s":1}],[-13,{"n":5,"e":3798}],[-12,{"n":4.5,"e":3811}],[-11,{"n":5,"e":3823}],[6,{"n":5,"e":6154,"s":1}],[-5,{"n":6,"e":3886}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":5,"e":6187,"s":1}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":5,"e":6207}]]}],[2821,{"n":"Kehrer","f":"Thilo","fp":"DL","r":8,"c":2,"s":{"s":9,"n":2,"a":4.5,"Og":1,"Os":39,"On":8,"Oa":4.88,"Od":0.69,"pd":8},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3666}],[-26,{"n":4.5,"e":3674}],[-24,{"n":4.5,"e":3695}],[-23,{"n":6,"e":3700,"g":1}],[-19,{"n":4.5,"e":3744,"s":1}],[-18,{"n":4.5,"e":3756,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":4.5,"e":6190}]],"a":{"m":9,"a":12,"M":16,"n":7}}],[2864,{"n":"Bernat","f":"Juan","fp":"DL","r":15,"c":2,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":86,"On":17,"Oa":5.06,"Od":0.81,"pd":15,"pm":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666}],[-26,{"n":4,"e":3674}],[-25,{"n":6,"e":3678,"s":1}],[-20,{"n":3.5,"e":3734}],[-19,{"n":7,"e":3744}],[-18,{"n":5,"e":3756}],[-17,{"n":5.5,"e":3761}],[-14,{"n":5,"e":3795}],[-12,{"n":4.5,"e":3811}],[-11,{"n":5,"e":3823}],[-9,{"n":5.5,"e":3844}],[-8,{"n":5,"e":3849,"s":1}],[-7,{"n":4.5,"e":3865}],[-6,{"n":6,"e":3870}],[3,{"n":4.5,"e":6187}],[2,{"n":5,"e":6190}],[1,{"n":5,"e":6207,"s":1}]],"fo":[[6187,[{"t":"Y"}]],[6190,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":31,"n":11}}],[3367,{"n":"Paredes","f":"Leandro","fp":"MD","r":9,"c":2,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Oao":1,"Os":90.5,"On":17,"Oa":5.32,"Od":1.06,"pm":17},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666,"s":1}],[-25,{"n":5.5,"e":3678}],[-24,{"n":5,"e":3695,"s":1}],[-23,{"n":5,"e":3700,"s":1}],[-22,{"n":5,"e":3715,"s":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-19,{"n":5.5,"e":3744}],[-18,{"n":7.5,"e":3756}],[-17,{"n":5,"e":3761,"a":1}],[-12,{"n":4,"e":3811}],[-11,{"n":5.5,"e":3823,"s":1}],[-10,{"n":6,"e":3834}],[-9,{"n":8,"e":3844}],[-7,{"n":4.5,"e":3865}],[6,{"n":5,"e":6154}],[5,{"n":5.5,"e":6166}],[3,{"n":4,"e":6187,"s":1}]],"fo":[[6187,[{"t":"Y"},{"t":"O"}]]],"a":{"m":10,"a":14,"M":20,"n":9}}],[4033,{"n":"Innocent","f":"Garissone","fp":"G","r":1,"c":2,"s":{},"p":[[-28,{"n":null,"e":3657,"d":1}]]}],[4035,{"n":"Bakker","f":"Mitchel","fp":"DL","r":3,"c":2,"s":{"s":29.5,"n":5,"a":5.9,"d":0.89,"Ss":19.5,"Sn":3,"Sa":6.5,"Sd":0.5,"Os":33,"On":6,"Oa":5.5,"Od":1.26,"pd":6},"p":[[-28,{"n":null,"e":3657,"d":1}],[-25,{"n":3.5,"e":3678}],[6,{"n":7,"e":6154}],[5,{"n":6.5,"e":6166}],[4,{"n":6,"e":6175}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":5,"e":6207}]],"fo":[[6175,[{"t":"Y"}]]]}],[4603,{"n":"Icardi","f":"Mauro","fp":"A","r":31,"c":2,"s":{"g":2,"s":24,"n":4,"a":6,"d":1.35,"Sg":2,"Ss":19,"Sn":3,"Sa":6.33,"Sd":1.44,"Og":14,"Os":139,"On":24,"Oa":5.79,"Od":1.12,"pa":24},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3666,"g":1,"s":1}],[-26,{"n":4.5,"e":3674,"s":1}],[-25,{"n":7,"e":3678,"g":1}],[-24,{"n":5,"e":3695}],[-23,{"n":6.5,"e":3700,"g":1}],[-22,{"n":4.5,"e":3715,"s":1}],[-21,{"n":5,"e":3719}],[-20,{"n":4.5,"e":3734}],[-19,{"n":7,"e":3744,"g":1}],[-18,{"n":6.5,"e":3756,"g":1}],[-17,{"n":6.5,"e":3761,"g":1}],[-16,{"n":6,"e":3775,"s":1}],[-15,{"n":5,"e":3780}],[-14,{"n":6.5,"e":3795,"g":1}],[-13,{"n":6,"e":3798,"g":1,"s":1}],[-12,{"n":3.5,"e":3811}],[-11,{"n":7.5,"e":3823,"g":2}],[-10,{"n":7,"e":3834,"g":1}],[-9,{"n":6,"e":3844,"g":1}],[6,{"n":5.5,"e":6154}],[-5,{"n":4.5,"e":3886,"s":1}],[5,{"n":8,"e":6166,"g":2}],[4,{"n":5.5,"e":6175}],[1,{"n":5,"e":6207}]],"a":{"m":34,"a":60,"M":171,"n":29}}],[4621,{"n":"Florenzi","f":"Alessandro","fp":"DL","r":15,"c":2,"s":{"g":1,"s":25,"n":4,"a":6.25,"d":0.87,"Sg":1,"Ss":25,"Sn":4,"Sa":6.25,"Sd":0.87,"Og":1,"Os":144,"On":28,"Oa":5.14,"Od":0.87,"pd":25,"pm":3},"p":[[-38,{"n":5,"e":4316}],[-37,{"n":5,"e":4327,"s":1}],[-36,{"n":5,"e":4332,"s":1}],[-35,{"n":5,"e":4347}],[-33,{"n":4.5,"e":4367}],[-32,{"n":4.5,"e":4377}],[-31,{"n":5,"e":4380,"s":1}],[-30,{"n":6.5,"e":4397}],[-28,{"n":4.5,"e":4417}],[-27,{"n":4.5,"e":4418}],[-23,{"n":2.5,"e":4462}],[-22,{"n":5,"e":4476}],[-19,{"n":5,"e":5643}],[-18,{"n":5,"e":5656}],[-17,{"n":5.5,"e":5659}],[-16,{"n":6,"e":5676}],[-15,{"n":5,"e":5680,"s":1}],[-13,{"n":6,"e":5702}],[-10,{"n":5,"e":5737,"s":1}],[-8,{"n":5,"e":5755}],[-6,{"n":5,"e":5771}],[-5,{"n":4.5,"e":5784}],[-4,{"n":5.5,"e":5789}],[-3,{"n":4.5,"e":5804}],[6,{"n":7.5,"e":6154,"g":1}],[5,{"n":6,"e":6166}],[4,{"n":6,"e":6175}],[3,{"n":5.5,"e":6187}]],"fo":[[6187,[{"t":"Y"}]]],"a":{"m":16,"a":19,"M":22,"n":12}}],[6261,{"n":"Muinga","f":"Arnaud Kalimuendo","fp":"A","r":1,"c":2,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[2,{"n":4.5,"e":6190}]]}],[6702,{"n":"Pembele","f":"Timothee","fp":"DC","r":2,"c":2}],[6703,{"n":"Ruiz-Atil","f":"Kays","fp":"MD","r":1,"c":2,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pm":1,"pa":1},"p":[[5,{"n":5,"e":6166,"s":1}],[2,{"n":3.5,"e":6190}]],"a":{"m":2,"a":2,"M":2,"n":7}}],[6783,{"n":"Bitshiabu","f":"El Chadaille","fp":"DC","r":2,"c":2}],[6790,{"n":"Nagera","f":"Kenny","fp":"A","r":1,"c":2}],[6791,{"n":"Simons","f":"Xavi","fp":"MD","r":1,"c":2}],[6792,{"n":"Michut","f":"Edouard","fp":"MD","r":1,"c":2}],[6793,{"n":"Kamara","f":"Abdoulaye","fp":"MD","r":1,"c":2}],[6911,{"n":"Camara","f":"Ousmane","fp":"MD","r":3,"c":2,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[2,{"n":5,"e":6575,"s":1}]]}],[6912,{"n":"Hadjam","f":"Jaouen","fp":"DL","r":3,"c":2}],[7269,{"n":"Fadiga","f":"Bandiougou","fp":"MO","r":1,"c":2,"s":{"s":9,"n":2,"a":4.5,"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[4,{"n":4.5,"e":6175,"s":1}],[1,{"n":4.5,"e":6207,"s":1}]]}],[7331,{"n":"Kapo","f":"Maxen","fp":"MD","r":1,"c":2}],[341,{"n":"Donis","f":"Anastasios","fp":"A","r":6,"c":68,"s":{"s":9,"n":2,"a":4.5,"Os":76,"On":17,"Oa":4.47,"Od":0.6,"pm":4,"pa":13},"p":[[-27,{"n":6,"e":3662}],[-26,{"n":4.5,"e":3676,"s":1}],[-25,{"n":5,"e":3686,"s":1}],[-21,{"n":3.5,"e":3726}],[-20,{"n":4.5,"e":3733,"s":1}],[-19,{"n":4,"e":3745,"s":1}],[-15,{"n":5,"e":3785}],[-14,{"n":4,"e":3794,"s":1}],[-13,{"n":3.5,"e":3805}],[-11,{"n":5,"e":3824,"s":1}],[-10,{"n":4.5,"e":3836,"s":1}],[-9,{"n":4.5,"e":3845}],[-8,{"n":4.5,"e":3856,"s":1}],[-7,{"n":4,"e":3865}],[-6,{"n":4.5,"e":3875,"s":1}],[5,{"n":4.5,"e":6166}],[2,{"n":4.5,"e":6191,"s":1}]]}],[346,{"n":"Abdelhamid","f":"Yunis","fp":"DC","r":21,"c":68,"s":{"g":1,"s":21.5,"n":5,"a":4.3,"d":0.97,"Sg":1,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":1.32,"Og":4,"Os":153.5,"On":29,"Oa":5.29,"Od":1.03,"pd":29},"p":[[6,{"n":5.5,"e":6155,"g":1}],[-28,{"n":6,"e":3654}],[-27,{"n":6,"e":3662}],[-26,{"n":6,"e":3676}],[-25,{"n":5.5,"e":3686}],[-24,{"n":2.5,"e":3697}],[-23,{"n":6,"e":3701,"g":1}],[-22,{"n":7,"e":3709,"g":1}],[-21,{"n":5,"e":3726}],[-20,{"n":4.5,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":5,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":5.5,"e":3768}],[-15,{"n":6,"e":3785}],[-14,{"n":6,"e":3794}],[-13,{"n":5.5,"e":3805}],[-12,{"n":4.5,"e":3814}],[-11,{"n":6,"e":3824}],[-10,{"n":7,"e":3836,"g":1}],[-9,{"n":6,"e":3845}],[-8,{"n":4.5,"e":3856}],[-7,{"n":6,"e":3865}],[-6,{"n":6,"e":3875}],[-5,{"n":5,"e":3885}],[5,{"n":5,"e":6166}],[4,{"n":3,"e":6172}],[2,{"n":4,"e":6191}],[1,{"n":4,"e":6203}]],"fo":[[6172,[{"t":"Y"}]]],"a":{"m":22,"a":29,"M":41,"n":40}}],[563,{"n":"Cafaro","f":"Mathieu","fp":"MO","r":10,"c":68,"s":{"s":25,"n":5,"a":5,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":99,"On":18,"Oa":5.5,"Od":0.66,"pm":18},"p":[[-23,{"n":5.5,"e":3701}],[-19,{"n":7,"e":3745,"g":1}],[-18,{"n":6,"e":3757}],[-17,{"n":5.5,"e":3765}],[-14,{"n":7,"e":3794}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3814}],[-11,{"n":5.5,"e":3824}],[-10,{"n":6,"e":3836}],[-8,{"n":5,"e":3856}],[-7,{"n":5.5,"e":3865}],[-6,{"n":5.5,"e":3875}],[6,{"n":5,"e":6155,"s":1}],[-5,{"n":5,"e":3885,"s":1}],[4,{"n":5,"e":6172}],[3,{"n":5.5,"e":6178}],[2,{"n":4.5,"e":6191}],[1,{"n":5,"e":6203}]],"fo":[[6172,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":13,"n":7}}],[1410,{"n":"Dingome","f":"Tristan","fp":"MO","r":7,"c":68,"s":{"s":4.5,"n":1,"a":4.5,"Os":58.5,"On":12,"Oa":4.88,"Od":0.68,"pm":12},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":6,"e":3662}],[-26,{"n":5,"e":3676,"s":1}],[-23,{"n":4.5,"e":3701}],[-22,{"n":5,"e":3709,"s":1}],[-21,{"n":3.5,"e":3726}],[-19,{"n":4,"e":3745}],[-18,{"n":5,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":5,"e":3768}],[-15,{"n":5,"e":3785,"s":1}],[3,{"n":4.5,"e":6178,"s":1}]]}],[1459,{"n":"Diouf","f":"Yehvann","fp":"G","r":1,"c":68,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":5.5,"On":1,"Oa":5.5,"pg":1},"p":[[6,{"n":5.5,"e":6155,"s":1}]]}],[2219,{"n":"Hornby","f":"Fraser","fp":"MO","r":6,"c":68,"s":{"s":13,"n":3,"a":4.33,"d":0.58,"Os":13,"On":3,"Oa":4.33,"Od":0.58,"pa":3},"p":[[5,{"n":4,"e":6166,"s":1}],[3,{"n":5,"e":6178,"s":1}],[2,{"n":4,"e":6191,"s":1}]],"fo":[[6191,[{"t":"Y"}]]]}],[2667,{"n":"Konan","f":"Ghislain","fp":"DL","r":9,"c":68,"s":{"s":27,"n":6,"a":4.5,"d":0.45,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.45,"Os":89.5,"On":19,"Oa":4.71,"Od":0.99,"pd":19},"p":[[-28,{"n":4,"e":3654}],[-27,{"n":5.5,"e":3662}],[-24,{"n":4.5,"e":3697}],[-22,{"n":6,"e":3709}],[-21,{"n":3.5,"e":3726}],[-20,{"n":3,"e":3733}],[-16,{"n":4.5,"e":3768}],[-11,{"n":4.5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":5.5,"e":3845}],[-8,{"n":3.5,"e":3856}],[-7,{"n":7,"e":3865}],[-6,{"n":6,"e":3875}],[6,{"n":5,"e":6155}],[5,{"n":4.5,"e":6166}],[4,{"n":4,"e":6172}],[3,{"n":5,"e":6178}],[2,{"n":4,"e":6191}],[1,{"n":4.5,"e":6203}]],"fo":[[6172,[{"t":"Y"}]]]}],[2705,{"n":"Doumbia","f":"Moussa","fp":"MO","r":14,"c":68,"s":{"Og":1,"Os":113.5,"On":22,"Oa":5.16,"Od":0.75,"pm":17,"pa":5},"p":[[-28,{"n":6,"e":3654}],[-27,{"n":5.5,"e":3662,"s":1}],[-26,{"n":4,"e":3676}],[-25,{"n":5,"e":3686}],[-24,{"n":4,"e":3697}],[-22,{"n":5.5,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":5,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":5.5,"e":3757,"s":1}],[-17,{"n":6.5,"e":3765,"g":1,"s":1}],[-16,{"n":5,"e":3768}],[-15,{"n":5.5,"e":3785}],[-14,{"n":5,"e":3794}],[-12,{"n":3.5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":6,"e":3836}],[-9,{"n":6,"e":3845}],[-8,{"n":5.5,"e":3856}],[-7,{"n":4.5,"e":3865,"s":1}],[-6,{"n":6,"e":3875}],[-5,{"n":5,"e":3885}]]}],[2724,{"n":"Chavalerin","f":"Xavier","fp":"MD","r":15,"c":68,"s":{"s":31.5,"n":6,"a":5.25,"d":0.61,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.61,"Og":1,"Os":143,"On":26,"Oa":5.5,"Od":0.93,"pm":26},"p":[[-26,{"n":5,"e":3676}],[-25,{"n":5.5,"e":3686}],[-24,{"n":4,"e":3697}],[-23,{"n":7,"e":3701}],[-22,{"n":7,"e":3709}],[-21,{"n":4,"e":3726}],[-20,{"n":4.5,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":6,"e":3757}],[-17,{"n":6.5,"e":3765}],[-15,{"n":7,"e":3785}],[-14,{"n":5,"e":3794}],[-12,{"n":5,"e":3814}],[-11,{"n":4.5,"e":3824}],[-10,{"n":5.5,"e":3836}],[-9,{"n":5.5,"e":3845}],[-8,{"n":6,"e":3856,"g":1}],[-7,{"n":7,"e":3865}],[-6,{"n":6.5,"e":3875}],[6,{"n":6,"e":6155}],[-5,{"n":5,"e":3885}],[5,{"n":5,"e":6166}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6178}],[2,{"n":4.5,"e":6191}],[1,{"n":6,"e":6203}]],"fo":[[6155,[{"t":"Y"}]],[6191,[{"t":"Y"}]]]}],[2858,{"n":"Pinson","f":"Virgile","fp":"A","r":1,"c":68}],[2862,{"n":"Foket","f":"Thomas","fp":"DL","r":10,"c":68,"s":{"s":22.5,"n":5,"a":4.5,"d":0.5,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.48,"Os":141,"On":28,"Oa":5.04,"Od":0.72,"pd":28},"p":[[-28,{"n":6,"e":3654}],[-27,{"n":4.5,"e":3662}],[-26,{"n":5,"e":3676}],[-25,{"n":6,"e":3686}],[-23,{"n":4.5,"e":3701}],[-22,{"n":5,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":4,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":6.5,"e":3757}],[-17,{"n":5,"e":3765}],[-16,{"n":5,"e":3768}],[-15,{"n":5,"e":3785}],[-14,{"n":5.5,"e":3794}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":5.5,"e":3845}],[-8,{"n":4,"e":3856}],[-7,{"n":7,"e":3865}],[-6,{"n":5,"e":3875}],[6,{"n":4.5,"e":6155}],[-5,{"n":5,"e":3885}],[5,{"n":4,"e":6166}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6178}],[1,{"n":4,"e":6203}]],"fo":[[6166,[{"t":"Y"}]],[6203,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":21,"n":15}}],[2951,{"n":"Dia","f":"Boulaye","fp":"A","r":18,"c":68,"s":{"g":3,"s":28,"n":5,"a":5.6,"d":0.55,"Sg":2,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.58,"Og":9,"Os":125.5,"On":25,"Oa":5.02,"Od":1.06,"pm":1,"pa":24},"p":[[-27,{"n":4.5,"e":3662,"s":1}],[-26,{"n":6,"e":3676,"g":1}],[-25,{"n":5,"e":3686}],[-24,{"n":3.5,"e":3697}],[-23,{"n":5.5,"e":3701}],[-22,{"n":6.5,"e":3709,"g":1,"s":1}],[-20,{"n":3.5,"e":3733}],[-18,{"n":3.5,"e":3757}],[-17,{"n":6.5,"e":3765,"g":1}],[-16,{"n":5,"e":3768}],[-15,{"n":6,"e":3785,"g":1}],[-14,{"n":4,"e":3794}],[-12,{"n":5,"e":3814}],[-11,{"n":3.5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":6.5,"e":3845,"g":1}],[-8,{"n":3.5,"e":3856}],[-7,{"n":6,"e":3865,"g":1,"s":1}],[-6,{"n":4.5,"e":3875}],[6,{"n":6,"e":6155,"g":1}],[-5,{"n":4,"e":3885}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":6,"e":6172,"g":1}],[3,{"n":5,"e":6178}],[1,{"n":6,"e":6203,"g":1}]],"a":{"m":18,"a":28,"M":50,"n":33}}],[3360,{"n":"Sissoko","f":"Sambou","fp":"MD","r":4,"c":68,"s":{"Os":15,"On":3,"Oa":5,"pd":3},"p":[[-19,{"n":5,"e":3745,"s":1}],[-18,{"n":5,"e":3757,"s":1}],[-17,{"n":5,"e":3765,"s":1}]]}],[3364,{"n":"Zeneli","f":"Arbër","fp":"MO","r":6,"c":68,"s":{"s":30.5,"n":6,"a":5.08,"d":0.49,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.49,"Os":35,"On":7,"Oa":5,"Od":0.5,"pm":4,"pa":3},"p":[[-27,{"n":4.5,"e":3662,"s":1}],[6,{"n":6,"e":6155}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6178}],[2,{"n":4.5,"e":6191,"s":1}],[1,{"n":5,"e":6203,"s":1}]],"a":{"m":6,"a":8,"M":12,"n":9}}],[3365,{"n":"Moreto Cassamã","f":"","fp":"MD","r":9,"c":68,"s":{"s":25.5,"n":5,"a":5.1,"d":0.55,"Os":66,"On":12,"Oa":5.5,"Od":1.04,"pm":12},"p":[[-28,{"n":6.5,"e":3654}],[-26,{"n":6,"e":3676}],[-25,{"n":5,"e":3686}],[-24,{"n":3.5,"e":3697}],[-23,{"n":6,"e":3701}],[-22,{"n":7.5,"e":3709}],[-16,{"n":6,"e":3768}],[5,{"n":5.5,"e":6166}],[4,{"n":4.5,"e":6172}],[3,{"n":5.5,"e":6178}],[2,{"n":4.5,"e":6191}],[1,{"n":5.5,"e":6203,"s":1}]],"fo":[[6166,[{"t":"Y"}]],[6172,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":12,"n":8}}],[3766,{"n":"Munetsi","f":"Marshall","fp":"MD","r":10,"c":68,"s":{"s":22.5,"n":5,"a":4.5,"d":0.71,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":107.5,"On":21,"Oa":5.12,"Od":0.88,"pd":9,"pm":12},"p":[[-28,{"n":4.5,"e":3654,"s":1}],[-27,{"n":6,"e":3662}],[-26,{"n":5.5,"e":3676}],[-25,{"n":5.5,"e":3686}],[-24,{"n":3.5,"e":3697,"s":1}],[-20,{"n":5.5,"e":3733,"s":1}],[-19,{"n":5.5,"e":3745}],[-17,{"n":5.5,"e":3765}],[-16,{"n":6,"e":3768}],[-13,{"n":5,"e":3805}],[-12,{"n":4.5,"e":3814,"s":1}],[-10,{"n":5,"e":3836,"s":1}],[-9,{"n":5.5,"e":3845,"s":1}],[-7,{"n":7.5,"e":3865}],[-6,{"n":5,"e":3875,"s":1}],[6,{"n":5.5,"e":6155}],[-5,{"n":5,"e":3885,"s":1}],[4,{"n":3.5,"e":6172}],[3,{"n":4.5,"e":6178,"s":1}],[2,{"n":4.5,"e":6191}],[1,{"n":4.5,"e":6203}]],"fo":[[6191,[{"t":"I"}]],[6172,[{"t":"R"}]],[6155,[{"t":"Y"}]],[6178,[{"t":"Y"}]]]}],[3807,{"n":"Rajkovic","f":"Predrag","fp":"G","r":24,"c":68,"s":{"s":32.5,"n":6,"a":5.42,"d":1.43,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.43,"Os":170,"On":29,"Oa":5.86,"Od":1.13,"pg":29},"p":[[-28,{"n":8,"e":3654}],[-27,{"n":7.5,"e":3662}],[-26,{"n":5.5,"e":3676}],[-25,{"n":7,"e":3686}],[-23,{"n":6,"e":3701}],[-22,{"n":5.5,"e":3709}],[-21,{"n":5.5,"e":3726}],[-20,{"n":4.5,"e":3733}],[-19,{"n":6.5,"e":3745}],[-18,{"n":7,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":6,"e":3768}],[-15,{"n":4,"e":3785}],[-14,{"n":4.5,"e":3794}],[-13,{"n":6,"e":3805}],[-12,{"n":6,"e":3814}],[-11,{"n":6,"e":3824}],[-10,{"n":6,"e":3836}],[-9,{"n":6.5,"e":3845}],[-8,{"n":4,"e":3856}],[-7,{"n":7,"e":3865}],[-6,{"n":7,"e":3875}],[6,{"n":4,"e":6155}],[-5,{"n":6,"e":3885}],[5,{"n":6,"e":6166}],[4,{"n":4.5,"e":6172}],[3,{"n":8,"e":6178}],[2,{"n":5,"e":6191}],[1,{"n":5,"e":6203}]],"fo":[[6191,[{"t":"Y"}]]],"a":{"m":25,"a":32,"M":45,"n":43}}],[4695,{"n":"Berisha","f":"Valon","fp":"MO","r":8,"c":68,"s":{"s":27.5,"n":6,"a":4.58,"d":0.38,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":0.38,"Os":42.5,"On":9,"Oa":4.72,"Od":0.36,"pm":9},"p":[[-19,{"n":5,"e":5641,"s":1}],[-12,{"n":5,"e":5712,"s":1}],[-5,{"n":5,"e":5781,"s":1}],[6,{"n":5,"e":6155,"s":1}],[5,{"n":5,"e":6166}],[4,{"n":4.5,"e":6172}],[3,{"n":4.5,"e":6178,"s":1}],[2,{"n":4,"e":6191,"s":1}],[1,{"n":4.5,"e":6203,"s":1}]]}],[6162,{"n":"Mbuku","f":"Nathanael","fp":"A","r":6,"c":68,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":44.5,"On":9,"Oa":4.94,"Od":0.46,"pm":3,"pa":6},"p":[[-26,{"n":4.5,"e":3676,"s":1}],[-25,{"n":4.5,"e":3686,"s":1}],[-24,{"n":4.5,"e":3697,"s":1}],[-23,{"n":5.5,"e":3701,"s":1}],[-22,{"n":5.5,"e":3709}],[-15,{"n":5,"e":3785}],[-7,{"n":4.5,"e":3865}],[6,{"n":5.5,"e":6155}],[5,{"n":5,"e":6166}]]}],[6216,{"n":"Maresic","f":"Dario","fp":"DC","r":8,"c":68,"s":{"s":18,"n":4,"a":4.5,"d":0.82,"Os":24,"On":5,"Oa":4.8,"Od":0.97,"pd":5},"p":[[-28,{"n":6,"e":3654}],[5,{"n":3.5,"e":6166}],[4,{"n":5.5,"e":6172,"s":1}],[3,{"n":4.5,"e":6178}],[2,{"n":4.5,"e":6191}]]}],[6217,{"n":"Kutesa","f":"Dereck","fp":"MO","r":9,"c":68,"s":{"s":29.5,"n":6,"a":4.92,"d":0.58,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.58,"Og":1,"Os":98.5,"On":20,"Oa":4.93,"Od":0.65,"pm":19,"pa":1},"p":[[-28,{"n":5,"e":3654,"s":1}],[-24,{"n":5,"e":3697,"s":1}],[-23,{"n":4.5,"e":3701,"s":1}],[-21,{"n":3.5,"e":3726}],[-20,{"n":4.5,"e":3733,"s":1}],[-19,{"n":5,"e":3745,"s":1}],[-16,{"n":6.5,"e":3768,"g":1}],[-14,{"n":5,"e":3794,"s":1}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3814,"s":1}],[-11,{"n":5,"e":3824,"s":1}],[-8,{"n":5,"e":3856,"s":1}],[-6,{"n":5.5,"e":3875,"s":1}],[6,{"n":6,"e":6155,"s":1}],[-5,{"n":4,"e":3885}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":4.5,"e":6172,"s":1}],[3,{"n":4.5,"e":6178,"s":1}],[2,{"n":4.5,"e":6191}],[1,{"n":5,"e":6203}]],"fo":[[6203,[{"t":"Y"}]]]}],[6402,{"n":"Sakava","f":"Moise","fp":"MD","r":1,"c":68}],[6510,{"n":"Touré","f":"El Bilal","fp":"A","r":12,"c":68,"s":{"g":1,"s":26.5,"n":6,"a":4.42,"d":1.46,"Sg":1,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":1.46,"Og":3,"Os":55.5,"On":12,"Oa":4.63,"Od":1.4,"pa":12},"p":[[-28,{"n":7,"e":3654,"g":1}],[-27,{"n":4,"e":3662}],[-26,{"n":4.5,"e":3676}],[-25,{"n":6,"e":3686,"g":1}],[-24,{"n":3,"e":3697}],[-23,{"n":4.5,"e":3701,"s":1}],[6,{"n":3,"e":6155}],[5,{"n":3.5,"e":6166}],[4,{"n":4.5,"e":6172,"s":1}],[3,{"n":5,"e":6178}],[2,{"n":3.5,"e":6191}],[1,{"n":7,"e":6203,"g":1}]],"fo":[[6178,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":21,"n":28}}],[6511,{"n":"Sierhuis","f":"Kaj","fp":"A","r":5,"c":68,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":22,"On":5,"Oa":4.4,"Od":0.22,"pa":5},"p":[[-23,{"n":4.5,"e":3701}],[6,{"n":4.5,"e":6155,"s":1}],[4,{"n":4.5,"e":6172,"s":1}],[2,{"n":4,"e":6191,"s":1}],[1,{"n":4.5,"e":6203,"s":1}]]}],[6706,{"n":"De Smet","f":"Thibault","fp":"DL","r":4,"c":68}],[6710,{"n":"Faes","f":"Wout","fp":"DC","r":10,"c":68,"s":{"s":17.5,"n":4,"a":4.38,"d":1.03,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":17.5,"On":4,"Oa":4.38,"Od":1.03,"pd":4},"p":[[6,{"n":4.5,"e":6155}],[3,{"n":3,"e":6178}],[2,{"n":5.5,"e":6191}],[1,{"n":4.5,"e":6203}]],"fo":[[6178,[{"t":"R"}]],[6155,[{"t":"Y"}]],[6191,[{"t":"Y"}]],[6203,[{"t":"Y"}]]],"a":{"m":7,"a":10,"M":15,"n":7}}],[6784,{"n":"Ekitike","f":"Hugo","fp":"MO","r":1,"c":68}],[6800,{"n":"Dialy Ndiaye","f":"","fp":"G","r":3,"c":68,"a":{"m":4,"a":4,"M":5,"n":5}}],[7141,{"n":"Doucouré","f":"Fodé","fp":"DL","r":3,"c":68}],[188,{"n":"Da Silva","f":"Damien","fp":"DC","r":17,"c":20,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":0.82,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":3,"Oao":1,"Os":139,"On":26,"Oa":5.35,"Od":0.92,"pd":26},"p":[[5,{"n":6,"e":6167}],[-28,{"n":7,"e":3655}],[-27,{"n":6,"e":3667}],[-26,{"n":5.5,"e":3675}],[-25,{"n":3.5,"e":3686}],[-24,{"n":6,"e":3696}],[-23,{"n":4.5,"e":3699}],[-22,{"n":4,"e":3716,"a":1}],[-20,{"n":5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":6,"e":3753}],[-17,{"n":5.5,"e":3766}],[-16,{"n":6,"e":3774}],[-15,{"n":6,"e":3786,"g":1}],[-14,{"n":4,"e":3792}],[-13,{"n":6,"e":3806}],[-11,{"n":5,"e":3825}],[-10,{"n":3.5,"e":3833}],[-8,{"n":5.5,"e":3851}],[-7,{"n":5,"e":3864}],[6,{"n":6,"e":6155,"g":1}],[-5,{"n":5,"e":3880}],[4,{"n":5,"e":6176}],[3,{"n":5,"e":6185}],[2,{"n":5,"e":6189}],[1,{"n":7,"e":6201,"g":1}]],"fo":[[6155,[{"t":"Y"}]],[6185,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":16,"a":22,"M":34,"n":38}}],[333,{"n":"Hunou","f":"Adrien","fp":"A","r":16,"c":20,"s":{"g":1,"s":16,"n":3,"a":5.33,"d":0.58,"Og":8,"Os":128,"On":24,"Oa":5.33,"Od":1.05,"pm":13,"pa":11},"p":[[-28,{"n":7.5,"e":3655,"g":2}],[-27,{"n":5,"e":3667,"s":1}],[-26,{"n":4.5,"e":3675,"s":1}],[-23,{"n":5.5,"e":3699,"s":1}],[-22,{"n":4,"e":3716}],[-21,{"n":5,"e":3725}],[-20,{"n":5,"e":3735,"s":1}],[-19,{"n":3.5,"e":3746}],[-18,{"n":5.5,"e":3753,"s":1}],[-17,{"n":5,"e":3766}],[-16,{"n":7,"e":3774,"g":1}],[-15,{"n":4,"e":3786}],[-14,{"n":4.5,"e":3792}],[-13,{"n":7,"e":3806,"g":1}],[-11,{"n":6,"e":3825,"g":1}],[-10,{"n":6.5,"e":3833,"g":1}],[-9,{"n":4.5,"e":3845,"s":1}],[-8,{"n":5,"e":3851,"s":1}],[-7,{"n":5,"e":3864}],[-6,{"n":7,"e":3876,"g":1,"s":1}],[-5,{"n":5,"e":3880,"s":1}],[5,{"n":6,"e":6167,"g":1,"s":1}],[3,{"n":5,"e":6185,"s":1}],[2,{"n":5,"e":6189}]],"a":{"m":20,"a":30,"M":73,"n":22}}],[370,{"n":"Tait","f":"Flavien","fp":"MO","r":8,"c":20,"s":{"s":25.5,"n":5,"a":5.1,"d":0.55,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.63,"Og":2,"Os":104.5,"On":20,"Oa":5.23,"Od":0.88,"pm":18,"pa":2},"p":[[-28,{"n":8,"e":3655,"g":1}],[-27,{"n":5.5,"e":3667,"s":1}],[-25,{"n":4.5,"e":3686}],[-24,{"n":5.5,"e":3696}],[-23,{"n":5,"e":3699}],[-22,{"n":4.5,"e":3716}],[-21,{"n":7,"e":3725,"g":1}],[-20,{"n":5,"e":3735,"s":1}],[-19,{"n":5,"e":3746,"s":1}],[-17,{"n":5,"e":3766,"s":1}],[-16,{"n":5,"e":3774,"s":1}],[-14,{"n":5,"e":3792,"s":1}],[-9,{"n":4.5,"e":3845,"s":1}],[-8,{"n":4.5,"e":3851,"s":1}],[-6,{"n":5,"e":3876}],[6,{"n":4.5,"e":6155}],[5,{"n":5,"e":6167,"s":1}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":6,"e":6185}],[1,{"n":5,"e":6201,"s":1}]],"fo":[[6155,[{"t":"Y"}]],[6201,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":17,"n":10}}],[374,{"n":"Salin","f":"Romain","fp":"G","r":10,"c":20,"s":{"s":28.5,"n":5,"a":5.7,"d":1.15,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":1.15,"Os":38.5,"On":7,"Oa":5.5,"Od":1.15,"pg":7},"p":[[-10,{"n":4,"e":3833}],[-9,{"n":6,"e":3845}],[6,{"n":4,"e":6155}],[5,{"n":7,"e":6167}],[4,{"n":5.5,"e":6176}],[3,{"n":6.5,"e":6185}],[2,{"n":5.5,"e":6189}]],"fo":[[6185,[{"t":"Y"}]]],"a":{"m":8,"a":12,"M":23,"n":12}}],[409,{"n":"Terrier","f":"Martin","fp":"MO","r":11,"c":20,"s":{"s":21,"n":4,"a":5.25,"d":1.32,"Og":1,"Os":121.5,"On":24,"Oa":5.06,"Od":0.81,"pm":15,"pa":9},"p":[[-28,{"n":5,"e":3650,"s":1}],[-27,{"n":6.5,"e":3661}],[-26,{"n":6.5,"e":3672}],[-25,{"n":5,"e":3682,"s":1}],[-24,{"n":6,"e":3695,"g":1}],[-23,{"n":5,"e":3704,"s":1}],[-21,{"n":4.5,"e":3720}],[-20,{"n":5,"e":3730,"s":1}],[-19,{"n":5,"e":3745}],[-18,{"n":4,"e":3753,"s":1}],[-16,{"n":5,"e":3773}],[-15,{"n":5,"e":3787}],[-14,{"n":5.5,"e":3793}],[-13,{"n":5,"e":3800,"s":1}],[-11,{"n":4.5,"e":3820,"s":1}],[-10,{"n":4,"e":3830}],[-9,{"n":4,"e":3846}],[-8,{"n":5.5,"e":3850,"s":1}],[-7,{"n":5,"e":3859}],[-5,{"n":4.5,"e":3878}],[5,{"n":6,"e":6167}],[4,{"n":6.5,"e":6176}],[2,{"n":3.5,"e":6189}],[1,{"n":5,"e":6201}]],"fo":[[6189,[{"t":"R"}]],[6176,[{"t":"Y"}]]],"a":{"m":12,"a":22,"M":42,"n":23}}],[439,{"n":"Faitout Maouassa","f":"","fp":"DL","r":17,"c":20,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Og":3,"Os":116,"On":22,"Oa":5.27,"Od":0.83,"pd":22},"p":[[-28,{"n":8,"e":3655,"g":1}],[-27,{"n":7,"e":3667,"g":1}],[-26,{"n":5,"e":3675}],[-25,{"n":4.5,"e":3686}],[-24,{"n":4.5,"e":3696}],[-23,{"n":5,"e":3699}],[-22,{"n":5,"e":3716}],[-21,{"n":5,"e":3725}],[-20,{"n":4.5,"e":3735}],[-18,{"n":5,"e":3753}],[-17,{"n":5,"e":3766}],[-16,{"n":5.5,"e":3774}],[-15,{"n":5,"e":3786}],[-11,{"n":5.5,"e":3825}],[-10,{"n":6,"e":3833,"g":1}],[-9,{"n":5,"e":3845}],[-8,{"n":4.5,"e":3851}],[-5,{"n":5.5,"e":3880}],[4,{"n":5,"e":6176}],[3,{"n":5,"e":6185}],[2,{"n":5.5,"e":6189}],[1,{"n":5,"e":6201}]],"fo":[[6176,[{"t":"I"}]],[6185,[{"t":"Y"}]]],"a":{"m":18,"a":21,"M":29,"n":42}}],[528,{"n":"Lea Siliki","f":"James","fp":"MD","r":8,"c":20,"s":{"Os":78,"On":15,"Oa":5.2,"Od":0.56,"pm":15},"p":[[-28,{"n":6,"e":3655}],[-26,{"n":5,"e":3675,"s":1}],[-25,{"n":4.5,"e":3686}],[-24,{"n":6,"e":3696}],[-22,{"n":5.5,"e":3716}],[-21,{"n":4,"e":3725}],[-20,{"n":5.5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":5.5,"e":3753}],[-17,{"n":5,"e":3766}],[-15,{"n":5,"e":3786,"s":1}],[-14,{"n":5,"e":3792,"s":1}],[-9,{"n":5,"e":3845,"s":1}],[-7,{"n":5,"e":3864}],[-6,{"n":5,"e":3876,"s":1}]]}],[532,{"n":"Diallo","f":"Namakoro","fp":"DL","r":1,"c":20}],[922,{"n":"Niang","f":"M'Baye","fp":"A","r":28,"c":20,"s":{"s":5,"n":1,"a":5,"Og":7,"Os":116,"On":22,"Oa":5.27,"Od":1.44,"pm":1,"pa":21},"p":[[-27,{"n":5,"e":3667}],[-26,{"n":7,"e":3675,"g":2}],[-25,{"n":4.5,"e":3686,"s":1}],[-24,{"n":5,"e":3696}],[-23,{"n":4,"e":3699}],[-22,{"n":7,"e":3716}],[-21,{"n":6.5,"e":3725}],[-20,{"n":4,"e":3735}],[-19,{"n":6.5,"e":3746,"g":1}],[-18,{"n":5,"e":3753}],[-17,{"n":7.5,"e":3766,"g":2}],[-16,{"n":4.5,"e":3774,"s":1}],[-15,{"n":4,"e":3786}],[-14,{"n":4,"e":3792}],[-13,{"n":8,"e":3806,"g":1}],[-11,{"n":7,"e":3825,"g":1}],[-10,{"n":3.5,"e":3833}],[-9,{"n":5,"e":3845}],[-8,{"n":5.5,"e":3851}],[-7,{"n":2.5,"e":3864}],[-6,{"n":5,"e":3876}],[1,{"n":5,"e":6201}]],"a":{"m":31,"a":47,"M":71,"n":15}}],[1182,{"n":"Hamari Traoré","f":"","fp":"DL","r":14,"c":20,"s":{"s":21,"n":4,"a":5.25,"d":0.96,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.96,"Os":137.5,"On":26,"Oa":5.29,"Od":0.86,"pd":26},"p":[[-28,{"n":6.5,"e":3655}],[-27,{"n":5,"e":3667}],[-26,{"n":6.5,"e":3675}],[-25,{"n":5.5,"e":3686}],[-24,{"n":5,"e":3696}],[-23,{"n":4.5,"e":3699}],[-22,{"n":4.5,"e":3716}],[-20,{"n":4.5,"e":3735}],[-19,{"n":5.5,"e":3746}],[-18,{"n":6.5,"e":3753}],[-17,{"n":5,"e":3766}],[-16,{"n":5,"e":3774}],[-15,{"n":6.5,"e":3786}],[-14,{"n":4.5,"e":3792}],[-13,{"n":6.5,"e":3806}],[-11,{"n":4.5,"e":3825}],[-10,{"n":4.5,"e":3833}],[-9,{"n":4,"e":3845}],[-8,{"n":5,"e":3851}],[-7,{"n":4.5,"e":3864}],[-6,{"n":6.5,"e":3876}],[6,{"n":4.5,"e":6155}],[-5,{"n":6,"e":3880}],[5,{"n":6.5,"e":6167}],[4,{"n":5.5,"e":6176}],[3,{"n":4.5,"e":6185}]],"a":{"m":15,"a":19,"M":26,"n":23}}],[1187,{"n":"Bourigeaud","f":"Benjamin","fp":"MO","r":17,"c":20,"s":{"g":1,"s":36,"n":6,"a":6,"d":0.95,"Sg":1,"Ss":36,"Sn":6,"Sa":6,"Sd":0.95,"Og":3,"Os":152,"On":27,"Oa":5.63,"Od":0.74,"pm":26,"pa":1},"p":[[-28,{"n":6,"e":3655,"s":1}],[-27,{"n":7,"e":3667,"g":1}],[-26,{"n":5,"e":3675}],[-25,{"n":4,"e":3686}],[-24,{"n":5,"e":3696}],[-23,{"n":6,"e":3699}],[-22,{"n":6,"e":3716,"g":1,"s":1}],[-20,{"n":5.5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":5.5,"e":3753}],[-17,{"n":5,"e":3766}],[-16,{"n":6,"e":3774}],[-15,{"n":6.5,"e":3786}],[-13,{"n":5.5,"e":3806}],[-11,{"n":5.5,"e":3825}],[-10,{"n":5.5,"e":3833}],[-9,{"n":5,"e":3845}],[-8,{"n":5,"e":3851}],[-7,{"n":5,"e":3864,"s":1}],[-6,{"n":6,"e":3876}],[6,{"n":4.5,"e":6155}],[-5,{"n":5,"e":3880}],[5,{"n":7,"e":6167}],[4,{"n":6,"e":6176}],[3,{"n":7,"e":6185,"g":1,"s":1}],[2,{"n":5.5,"e":6189}],[1,{"n":6,"e":6201}]],"fo":[[6185,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":18,"a":27,"M":55,"n":18}}],[1194,{"n":"Grenier","f":"Clément","fp":"MO","r":6,"c":20,"s":{"Os":34,"On":7,"Oa":4.86,"Od":0.63,"pm":6,"pa":1},"p":[[-18,{"n":5,"e":3753}],[-14,{"n":5,"e":3792}],[-10,{"n":4,"e":3833}],[-9,{"n":4,"e":3845}],[-8,{"n":5,"e":3851,"s":1}],[-7,{"n":5.5,"e":3864}],[-5,{"n":5.5,"e":3880}]]}],[1239,{"n":"Del Castillo","f":"Romain","fp":"A","r":9,"c":20,"s":{"s":33.5,"n":6,"a":5.58,"d":0.8,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.8,"Og":1,"Os":131.5,"On":24,"Oa":5.48,"Od":0.91,"pm":16,"pa":8},"p":[[-28,{"n":6,"e":3655,"g":1}],[-27,{"n":6,"e":3667}],[-26,{"n":5.5,"e":3675}],[-25,{"n":4.5,"e":3686,"s":1}],[-24,{"n":5,"e":3696}],[-23,{"n":5,"e":3699,"s":1}],[-22,{"n":5,"e":3716,"s":1}],[-20,{"n":3.5,"e":3735}],[-19,{"n":5.5,"e":3746,"s":1}],[-18,{"n":6,"e":3753,"s":1}],[-17,{"n":5.5,"e":3766}],[-16,{"n":7,"e":3774}],[-15,{"n":7,"e":3786}],[-14,{"n":5,"e":3792}],[-13,{"n":7,"e":3806,"s":1}],[-11,{"n":5.5,"e":3825}],[-7,{"n":5,"e":3864}],[-6,{"n":4,"e":3876}],[6,{"n":5,"e":6155,"s":1}],[5,{"n":7,"e":6167}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":6,"e":6185,"s":1}],[2,{"n":5,"e":6189,"s":1}],[1,{"n":5.5,"e":6201,"s":1}]],"a":{"m":10,"a":13,"M":18,"n":15}}],[1400,{"n":"Martin","f":"Jonas","fp":"MD","r":7,"c":20,"s":{"s":31,"n":6,"a":5.17,"d":0.26,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.26,"Os":47,"On":9,"Oa":5.22,"Od":0.36,"pm":9},"p":[[-8,{"n":6,"e":3851}],[-6,{"n":5,"e":3876,"s":1}],[6,{"n":5,"e":6155,"s":1}],[-5,{"n":5,"e":3880,"s":1}],[5,{"n":5,"e":6167,"s":1}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":5.5,"e":6185}],[2,{"n":5.5,"e":6189,"s":1}],[1,{"n":5,"e":6201}]]}],[1598,{"n":"Nzonzi","f":"Steven","fp":"MD","r":16,"c":20,"s":{"g":1,"s":33.5,"n":6,"a":5.58,"d":1.02,"Sg":1,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.02,"Og":1,"Os":63.5,"On":11,"Oa":5.77,"Od":1.19,"pm":11},"p":[[-28,{"n":8,"e":3655}],[-27,{"n":7,"e":3667}],[-26,{"n":5,"e":3675}],[-25,{"n":5.5,"e":3686}],[-24,{"n":4.5,"e":3696,"s":1}],[6,{"n":5,"e":6155}],[5,{"n":6,"e":6167}],[4,{"n":7.5,"e":6176,"g":1}],[3,{"n":5,"e":6185}],[2,{"n":5,"e":6189}],[1,{"n":5,"e":6201}]],"fo":[[6167,[{"t":"Y"}]],[6185,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":17,"a":24,"M":38,"n":12}}],[2035,{"n":"Nyamsi","f":"Gerzino","fp":"DC","r":3,"c":20,"s":{"Os":10,"On":2,"Oa":5,"pd":2},"p":[[-21,{"n":5,"e":3725,"s":1}],[-17,{"n":5,"e":3766,"s":1}]]}],[2084,{"n":"Gelin","f":"Jeremy","fp":"DC","r":7,"c":20,"s":{"Os":49.5,"On":10,"Oa":4.95,"Od":0.69,"pd":9,"pm":1},"p":[[-27,{"n":5,"e":3667,"s":1}],[-24,{"n":5,"e":3696,"s":1}],[-22,{"n":4.5,"e":3716}],[-21,{"n":5,"e":3725,"s":1}],[-14,{"n":6,"e":3792}],[-13,{"n":5,"e":3806,"s":1}],[-9,{"n":4,"e":3845}],[-8,{"n":6,"e":3851}],[-6,{"n":4,"e":3876}],[-5,{"n":5,"e":3880}]]}],[2692,{"n":"Aguerd","f":"Nayef","fp":"DC","r":10,"c":20,"s":{"g":2,"s":33.5,"n":6,"a":5.58,"d":1.32,"Sg":2,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.32,"Og":3,"Os":84.5,"On":16,"Oa":5.28,"Od":1.21,"pd":16},"p":[[-28,{"n":7,"e":3649,"g":1}],[-27,{"n":3,"e":3666}],[-26,{"n":5,"e":3669}],[-25,{"n":5,"e":3679}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":6,"e":3856}],[-7,{"n":5,"e":3860}],[-6,{"n":3.5,"e":3873}],[6,{"n":4,"e":6155}],[-5,{"n":5,"e":3881}],[5,{"n":7.5,"e":6167,"g":1}],[4,{"n":6,"e":6176}],[3,{"n":6.5,"e":6185,"g":1}],[2,{"n":5,"e":6189}],[1,{"n":4.5,"e":6201}]],"fo":[[6155,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":21,"n":16}}],[2787,{"n":"Gboho","f":"Yann","fp":"MO","r":5,"c":20,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":1,"Os":44,"On":9,"Oa":4.89,"Od":0.65,"pm":7,"pa":2},"p":[[-24,{"n":5,"e":3696,"s":1}],[-23,{"n":4,"e":3699}],[-22,{"n":5.5,"e":3716,"s":1}],[-21,{"n":5,"e":3725,"s":1}],[-13,{"n":4,"e":3806}],[-11,{"n":6,"e":3825,"g":1,"s":1}],[-10,{"n":5,"e":3833,"s":1}],[3,{"n":4.5,"e":6185,"s":1}],[2,{"n":5,"e":6189,"s":1}]]}],[2819,{"n":"Rutter","f":"Georginio","fp":"A","r":1,"c":20,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[5,{"n":4,"e":6167,"s":1}]]}],[3186,{"n":"Camavinga","f":"Eduardo","fp":"MD","r":19,"c":20,"s":{"g":1,"s":35,"n":6,"a":5.83,"d":1.03,"Sg":1,"Ss":35,"Sn":6,"Sa":5.83,"Sd":1.03,"Og":2,"Os":149,"On":26,"Oa":5.73,"Od":1.04,"pm":26},"p":[[-28,{"n":7.5,"e":3655}],[-27,{"n":7,"e":3667}],[-26,{"n":4.5,"e":3675}],[-23,{"n":5.5,"e":3699}],[-22,{"n":5.5,"e":3716}],[-21,{"n":5,"e":3725}],[-20,{"n":5,"e":3735}],[-19,{"n":6.5,"e":3746}],[-18,{"n":8,"e":3753,"g":1}],[-17,{"n":5,"e":3766,"s":1}],[-16,{"n":6.5,"e":3774}],[-15,{"n":6,"e":3786}],[-13,{"n":7,"e":3806}],[-11,{"n":5,"e":3825}],[-10,{"n":4.5,"e":3833}],[-9,{"n":5,"e":3845}],[-8,{"n":4.5,"e":3851}],[-7,{"n":6,"e":3864}],[-6,{"n":4.5,"e":3876}],[6,{"n":5,"e":6155}],[-5,{"n":5.5,"e":3880}],[5,{"n":7,"e":6167}],[4,{"n":4.5,"e":6176}],[3,{"n":5.5,"e":6185}],[2,{"n":7,"e":6189,"g":1}],[1,{"n":6,"e":6201,"s":1}]],"fo":[[6155,[{"t":"Y"}]],[6185,[{"t":"Y"}]]],"a":{"m":20,"a":36,"M":68,"n":30}}],[3366,{"n":"Guirassy","f":"Serhou","fp":"A","r":18,"c":20,"s":{"g":3,"s":28.5,"n":5,"a":5.7,"d":1.44,"Sg":3,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":1.44,"Og":12,"Os":131,"On":25,"Oa":5.24,"Od":1.35,"pa":25},"p":[[1,{"n":6,"e":6580,"g":1}],[-28,{"n":6,"e":3651,"g":1}],[-26,{"n":4,"e":3677}],[-25,{"n":7.5,"e":3678,"g":2}],[-24,{"n":6,"e":3688,"g":1}],[-23,{"n":4.5,"e":3704}],[-22,{"n":4.5,"e":3708}],[-21,{"n":5.5,"e":3718,"g":1}],[-20,{"n":3.5,"e":3728}],[-17,{"n":4.5,"e":3760}],[-16,{"n":4.5,"e":3768}],[-14,{"n":3.5,"e":3788}],[-13,{"n":6,"e":3806,"g":1}],[-12,{"n":2.5,"e":3808}],[-11,{"n":5,"e":3826}],[-10,{"n":4.5,"e":3835}],[-9,{"n":7,"e":3838,"g":1}],[-7,{"n":4.5,"e":3858}],[-6,{"n":7.5,"e":3872,"g":1}],[6,{"n":5,"e":6155}],[-5,{"n":5.5,"e":3878}],[5,{"n":7,"e":6167,"g":1}],[4,{"n":4.5,"e":6176}],[3,{"n":7.5,"e":6185,"g":2}],[2,{"n":4.5,"e":6189,"s":1}]],"a":{"m":19,"a":28,"M":45,"n":25}}],[3525,{"n":"Boey","f":"Sacha","fp":"DL","r":4,"c":20,"s":{"s":8,"n":2,"a":4,"d":0.71,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":24,"On":5,"Oa":4.8,"Od":0.91,"pd":5},"p":[[-28,{"n":6,"e":3655,"s":1}],[-25,{"n":5,"e":3686,"s":1}],[-21,{"n":5,"e":3725}],[6,{"n":4.5,"e":6155}],[1,{"n":3.5,"e":6201}]],"fo":[[6201,[{"t":"R"}]]]}],[4924,{"n":"Brassier","f":"Lilian","fp":"DC","r":4,"c":20,"s":{"Os":91.5,"On":19,"Oa":4.82,"Od":0.97,"pd":10,"pm":9},"p":[[-28,{"n":5.5,"e":4792}],[-22,{"n":4.5,"e":4855}],[-20,{"n":4.5,"e":4874}],[-18,{"n":6.5,"e":4897}],[-14,{"n":5,"e":4937}],[-11,{"n":5,"e":4959}],[-10,{"n":3,"e":4977}],[-8,{"n":5.5,"e":4997,"s":1}],[-27,{"n":5,"e":4806,"s":1}],[-24,{"n":4,"e":4830}],[-23,{"n":5,"e":4847}],[-21,{"n":6,"e":4867}],[-19,{"n":6,"e":4887}],[-17,{"n":3.5,"e":4898}],[-16,{"n":5,"e":4917}],[-15,{"n":5.5,"e":4925}],[-12,{"n":4,"e":4957}],[-9,{"n":3,"e":4978}],[-7,{"n":5,"e":5006}]]}],[6150,{"n":"Damergy","f":"Elias","fp":"G","r":1,"c":20}],[6249,{"n":"Raphinha","f":"","fp":"MO","r":24,"c":20,"s":{"g":1,"s":35.5,"n":6,"a":5.92,"d":0.97,"Sg":1,"Ss":35.5,"Sn":6,"Sa":5.92,"Sd":0.97,"Og":6,"Os":156,"On":27,"Oa":5.78,"Od":1.11,"pm":18,"pa":9},"p":[[-28,{"n":4.5,"e":3655,"s":1}],[-27,{"n":6.5,"e":3667}],[-26,{"n":6,"e":3675}],[-25,{"n":5,"e":3686}],[-23,{"n":4.5,"e":3699}],[-22,{"n":8,"e":3716,"g":2}],[-21,{"n":7,"e":3725}],[-20,{"n":4.5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":5.5,"e":3753}],[-17,{"n":7.5,"e":3766}],[-16,{"n":5.5,"e":3774}],[-15,{"n":7,"e":3786,"g":1}],[-14,{"n":6,"e":3792,"g":1}],[-13,{"n":7.5,"e":3806,"g":1}],[-11,{"n":6,"e":3825}],[-9,{"n":4.5,"e":3845}],[-8,{"n":5,"e":3851}],[-7,{"n":4,"e":3864,"s":1}],[-6,{"n":5.5,"e":3876}],[6,{"n":7.5,"e":6155,"g":1}],[-5,{"n":4.5,"e":3880}],[5,{"n":6,"e":6167,"s":1}],[4,{"n":4.5,"e":6176}],[3,{"n":6,"e":6185}],[2,{"n":6,"e":6189}],[1,{"n":5.5,"e":6201}]],"a":{"m":24,"a":35,"M":80,"n":26}}],[6274,{"n":"Bonet","f":"Pépé","fp":"G","r":1,"c":20}],[6344,{"n":"Da Cunha","f":"Lucas","fp":"MO","r":5,"c":20,"s":{"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-24,{"n":5,"e":3696}],[-23,{"n":5,"e":3699,"s":1}]]}],[6863,{"n":"Truffert","f":"Adrien","fp":"DL","r":1,"c":20,"s":{"g":1,"s":7.5,"n":1,"a":7.5,"Og":1,"Os":7.5,"On":1,"Oa":7.5,"pm":1},"p":[[4,{"n":7.5,"e":6176,"g":1,"s":1}]],"a":{"m":2,"a":6,"M":9,"n":6}}],[6925,{"n":"Soppy","f":"Brandon","fp":"DL","r":7,"c":20,"s":{"s":15,"n":3,"a":5,"Os":15,"On":3,"Oa":5,"pd":3},"p":[[5,{"n":5,"e":6167}],[3,{"n":5,"e":6185,"s":1}],[2,{"n":5,"e":6189}]]}],[13,{"n":"Hamouma","f":"Romain","fp":"MO","r":16,"c":4,"s":{"g":3,"s":31.5,"n":6,"a":5.25,"d":1.54,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":0.29,"Og":8,"Os":94,"On":17,"Oa":5.53,"Od":1.34,"pm":8,"pa":9},"p":[[3,{"n":5,"e":6186}],[-23,{"n":4.5,"e":3702}],[-22,{"n":6.5,"e":3712,"g":1,"s":1}],[-17,{"n":6,"e":3765,"g":1,"s":1}],[-16,{"n":8,"e":3776,"g":1}],[-13,{"n":4,"e":3803}],[-12,{"n":6,"e":3816}],[-11,{"n":5.5,"e":3826,"s":1}],[-8,{"n":4.5,"e":3855}],[-7,{"n":5,"e":3866}],[6,{"n":4,"e":6150,"s":1}],[-6,{"n":5,"e":3868,"s":1}],[-5,{"n":7.5,"e":3887,"g":2}],[5,{"n":4,"e":6167}],[4,{"n":4.5,"e":6174,"s":1}],[2,{"n":8,"e":6195,"g":2}],[1,{"n":6,"e":6198,"g":1}]],"a":{"m":14,"a":22,"M":36,"n":32}}],[31,{"n":"Boudebouz","f":"Ryad","fp":"MO","r":8,"c":4,"s":{"Og":1,"Os":101.5,"On":20,"Oa":5.08,"Od":1,"pm":9,"pa":11},"p":[[-28,{"n":6.5,"e":3656}],[-27,{"n":5,"e":3661,"s":1}],[-26,{"n":4.5,"e":3676}],[-25,{"n":5,"e":3680}],[-24,{"n":6.5,"e":3693}],[-20,{"n":3.5,"e":3736}],[-19,{"n":5.5,"e":3747,"g":1}],[-18,{"n":6,"e":3756,"s":1}],[-17,{"n":4,"e":3765}],[-16,{"n":4.5,"e":3776,"s":1}],[-15,{"n":4.5,"e":3786}],[-14,{"n":5,"e":3796}],[-13,{"n":6,"e":3803}],[-12,{"n":6,"e":3816}],[-11,{"n":5.5,"e":3826}],[-10,{"n":5.5,"e":3829}],[-9,{"n":6.5,"e":3846}],[-7,{"n":4.5,"e":3866,"s":1}],[-6,{"n":3.5,"e":3868}],[-5,{"n":3.5,"e":3887}]]}],[47,{"n":"Ruffier","f":"Stéphane","fp":"G","r":7,"c":4,"s":{"Os":87,"On":18,"Oa":4.83,"Od":1.42,"pg":18},"p":[[-25,{"n":2.5,"e":3680}],[-24,{"n":5,"e":3693}],[-23,{"n":3,"e":3702}],[-22,{"n":4,"e":3712}],[-21,{"n":5,"e":3727}],[-20,{"n":4.5,"e":3736}],[-19,{"n":4,"e":3747}],[-18,{"n":7,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":3.5,"e":3776}],[-15,{"n":4.5,"e":3786}],[-14,{"n":6,"e":3796}],[-13,{"n":6,"e":3803}],[-12,{"n":6.5,"e":3816}],[-11,{"n":5,"e":3826}],[-10,{"n":7.5,"e":3829}],[-6,{"n":3.5,"e":3868}],[-5,{"n":6,"e":3887}]]}],[98,{"n":"Monnet-Paquet","f":"Kévin","fp":"A","r":5,"c":4,"s":{"s":13.5,"n":3,"a":4.5,"Os":13.5,"On":3,"Oa":4.5,"pa":3},"p":[[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":4.5,"e":6195,"s":1}]]}],[195,{"n":"Moulin","f":"Jessy","fp":"G","r":16,"c":4,"s":{"s":31,"n":6,"a":5.17,"d":1.91,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.91,"Os":63,"On":11,"Oa":5.73,"Od":1.75,"pg":11},"p":[[-28,{"n":4.5,"e":3656}],[-27,{"n":7.5,"e":3661}],[-26,{"n":5.5,"e":3676}],[-9,{"n":6.5,"e":3846}],[-8,{"n":8,"e":3855}],[6,{"n":5.5,"e":6150}],[5,{"n":2,"e":6167}],[4,{"n":4,"e":6174}],[3,{"n":7.5,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":6,"e":6198}]],"a":{"m":17,"a":22,"M":31,"n":21}}],[411,{"n":"Nordin","f":"Arnaud","fp":"MO","r":12,"c":4,"s":{"s":32.5,"n":6,"a":5.42,"d":1.53,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.53,"Og":1,"Os":110,"On":21,"Oa":5.24,"Od":0.9,"pm":15,"pa":6},"p":[[-28,{"n":5,"e":3656,"s":1}],[-21,{"n":6,"e":3727}],[-20,{"n":5.5,"e":3736}],[-19,{"n":4,"e":3747}],[-18,{"n":6,"e":3756}],[-15,{"n":5,"e":3786,"s":1}],[-14,{"n":5,"e":3796}],[-13,{"n":5,"e":3803,"s":1}],[-12,{"n":5,"e":3816,"s":1}],[-11,{"n":5,"e":3826,"s":1}],[-10,{"n":5.5,"e":3829,"s":1}],[-8,{"n":5,"e":3855}],[-7,{"n":4.5,"e":3866}],[-6,{"n":6,"e":3868,"g":1}],[6,{"n":5.5,"e":6150}],[-5,{"n":5,"e":3887,"s":1}],[5,{"n":3,"e":6167}],[4,{"n":4.5,"e":6174}],[3,{"n":6,"e":6186}],[2,{"n":7.5,"e":6195}],[1,{"n":6,"e":6198,"s":1}]],"fo":[[6186,[{"t":"I"}]],[6195,[{"t":"I"}]]]}],[887,{"n":"Khazri","f":"Wahbi","fp":"MO","r":7,"c":4,"s":{"s":2,"n":1,"a":2,"Ss":2,"Sn":1,"Sa":2,"Og":3,"Os":62,"On":13,"Oa":4.77,"Od":1.3,"pm":6,"pa":7},"p":[[-23,{"n":4.5,"e":3702}],[-22,{"n":5,"e":3712}],[-21,{"n":7.5,"e":3727,"g":2}],[-20,{"n":4,"e":3736}],[-13,{"n":5,"e":3803,"s":1}],[-11,{"n":6.5,"e":3826,"g":1}],[-10,{"n":5,"e":3829}],[-9,{"n":4.5,"e":3846,"s":1}],[-8,{"n":5,"e":3855}],[-7,{"n":4,"e":3866}],[-6,{"n":4,"e":3868,"s":1}],[6,{"n":2,"e":6150,"s":1}],[-5,{"n":5,"e":3887}]],"fo":[[6150,[{"t":"R"}]]]}],[1031,{"n":"Debuchy","f":"Mathieu","fp":"DL","r":13,"c":4,"s":{"s":16,"n":3,"a":5.33,"d":0.58,"Og":1,"Os":94,"On":20,"Oa":4.7,"Od":1.14,"pd":18,"pm":2},"p":[[-28,{"n":5,"e":3656}],[-27,{"n":4,"e":3661}],[-26,{"n":5,"e":3676}],[-23,{"n":4.5,"e":3702}],[-22,{"n":3,"e":3712}],[-21,{"n":4.5,"e":3727}],[-19,{"n":4,"e":3747}],[-18,{"n":2,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":6.5,"e":3776}],[-13,{"n":4,"e":3803}],[-12,{"n":5,"e":3816}],[-11,{"n":5,"e":3826,"s":1}],[-8,{"n":7,"e":3855,"g":1}],[-7,{"n":5,"e":3866}],[-6,{"n":4.5,"e":3868}],[-5,{"n":5.5,"e":3887}],[3,{"n":6,"e":6186}],[2,{"n":5,"e":6195}],[1,{"n":5,"e":6198}]],"fo":[[6198,[{"t":"I"}]]],"a":{"m":14,"a":18,"M":24,"n":8}}],[1192,{"n":"Gabriel Silva","f":"","fp":"DL","r":7,"c":4,"s":{"Os":19.5,"On":4,"Oa":4.88,"Od":1.03,"pd":3,"pm":1},"p":[[-26,{"n":5,"e":3676,"s":1}],[-18,{"n":5,"e":3756}],[-17,{"n":3.5,"e":3765}],[-12,{"n":6,"e":3816}]]}],[1247,{"n":"Souici","f":"Rayan","fp":"DC","r":1,"c":4}],[1549,{"n":"Youssouf","f":"Zaydou","fp":"MD","r":6,"c":4,"s":{"s":24,"n":5,"a":4.8,"d":0.57,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.65,"Os":94.5,"On":18,"Oa":5.25,"Od":0.88,"pm":14,"pa":4},"p":[[-22,{"n":5,"e":3712,"s":1}],[-19,{"n":5,"e":3747}],[-18,{"n":6,"e":3756,"s":1}],[-15,{"n":4.5,"e":3786}],[-14,{"n":6,"e":3796}],[-13,{"n":6,"e":3803}],[-12,{"n":7,"e":3816}],[-11,{"n":5.5,"e":3826}],[-10,{"n":6,"e":3829}],[-9,{"n":6.5,"e":3846}],[-8,{"n":5,"e":3855,"s":1}],[-6,{"n":4,"e":3868}],[6,{"n":5,"e":6150,"s":1}],[-5,{"n":4,"e":3887,"s":1}],[5,{"n":4,"e":6167}],[4,{"n":4.5,"e":6174}],[3,{"n":5.5,"e":6186,"s":1}],[1,{"n":5,"e":6198,"s":1}]]}],[2143,{"n":"Camara","f":"Mahdi","fp":"MD","r":11,"c":4,"s":{"g":1,"s":35,"n":6,"a":5.83,"d":1.03,"Sg":1,"Ss":35,"Sn":6,"Sa":5.83,"Sd":1.03,"Og":1,"Os":95.5,"On":18,"Oa":5.31,"Od":0.81,"pm":18},"p":[[-28,{"n":5,"e":3656}],[-26,{"n":6,"e":3676}],[-25,{"n":5,"e":3680}],[-21,{"n":5,"e":3727,"s":1}],[-20,{"n":4.5,"e":3736}],[-19,{"n":4.5,"e":3747}],[-18,{"n":4.5,"e":3756}],[-17,{"n":4.5,"e":3765}],[-16,{"n":6,"e":3776}],[-15,{"n":5,"e":3786,"s":1}],[-14,{"n":5.5,"e":3796}],[-13,{"n":5,"e":3803}],[6,{"n":5.5,"e":6150}],[5,{"n":4.5,"e":6167}],[4,{"n":5,"e":6174}],[3,{"n":7,"e":6186,"g":1}],[2,{"n":7,"e":6195}],[1,{"n":6,"e":6198}]],"a":{"m":11,"a":16,"M":22,"n":9}}],[2147,{"n":"Guendouz","f":"Alexis","fp":"G","r":1,"c":4}],[2272,{"n":"Fofana","f":"Wesley","fp":"DC","r":10,"c":4,"s":{"s":22,"n":4,"a":5.5,"d":1.08,"Og":1,"Os":89.5,"On":18,"Oa":4.97,"Od":0.99,"pd":18},"p":[[-28,{"n":4,"e":3656}],[-27,{"n":5,"e":3661}],[-25,{"n":4,"e":3680}],[-24,{"n":5,"e":3693}],[-23,{"n":4.5,"e":3702}],[-21,{"n":5.5,"e":3727}],[-19,{"n":4.5,"e":3747}],[-18,{"n":3.5,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":7,"e":3776,"g":1}],[-15,{"n":5.5,"e":3786,"s":1}],[-12,{"n":5.5,"e":3816}],[-11,{"n":4.5,"e":3826}],[-10,{"n":5.5,"e":3829}],[5,{"n":4,"e":6167,"s":1}],[3,{"n":6,"e":6186}],[2,{"n":5.5,"e":6195}],[1,{"n":6.5,"e":6198}]],"fo":[[6195,[{"t":"Y"}]]],"a":{"m":11,"a":15,"M":25,"n":12}}],[2434,{"n":"Palencia","f":"Sergi","fp":"DL","r":5,"c":4,"s":{"Os":22.5,"On":5,"Oa":4.5,"Od":0.5,"pd":1,"pm":4},"p":[[-20,{"n":4,"e":3736}],[-19,{"n":4,"e":3747}],[-15,{"n":4.5,"e":3786}],[-11,{"n":5,"e":3826}],[-10,{"n":5,"e":3829}]]}],[2616,{"n":"Kolodziejczak","f":"Timothée","fp":"DC","r":12,"c":4,"s":{"s":30,"n":6,"a":5,"d":1.55,"Ss":30,"Sn":6,"Sa":5,"Sd":1.55,"Os":93.5,"On":20,"Oa":4.68,"Od":1.15,"pd":20},"p":[[-28,{"n":4.5,"e":3656}],[-27,{"n":3,"e":3661}],[-26,{"n":4.5,"e":3676}],[-25,{"n":4,"e":3680}],[-15,{"n":3.5,"e":3786}],[-14,{"n":5.5,"e":3796}],[-13,{"n":4,"e":3803}],[-12,{"n":6,"e":3816}],[-10,{"n":5,"e":3829,"s":1}],[-9,{"n":6,"e":3846}],[-8,{"n":5,"e":3855}],[-7,{"n":5,"e":3866}],[-6,{"n":3,"e":3868}],[6,{"n":3,"e":6150}],[-5,{"n":4.5,"e":3887}],[5,{"n":3.5,"e":6167}],[4,{"n":4.5,"e":6174}],[3,{"n":6.5,"e":6186}],[2,{"n":6.5,"e":6195}],[1,{"n":6,"e":6198}]],"fo":[[6150,[{"t":"R"}]]],"a":{"m":9,"a":16,"M":26,"n":14}}],[2790,{"n":"Bouanga","f":"Denis","fp":"MO","r":29,"c":4,"s":{"g":2,"s":31.5,"n":6,"a":5.25,"d":1.41,"Sg":2,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.41,"Og":11,"Os":147.5,"On":28,"Oa":5.27,"Od":1.38,"pm":15,"pa":13},"p":[[-28,{"n":6.5,"e":3656,"g":1}],[-27,{"n":5,"e":3661}],[-26,{"n":5.5,"e":3676,"g":1}],[-25,{"n":5.5,"e":3680,"g":1}],[-24,{"n":4.5,"e":3693}],[-23,{"n":3.5,"e":3702}],[-22,{"n":4,"e":3712}],[-21,{"n":5,"e":3727,"s":1}],[-18,{"n":3.5,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":8.5,"e":3776,"g":2}],[-15,{"n":4.5,"e":3786}],[-14,{"n":4.5,"e":3796}],[-13,{"n":7,"e":3803,"g":2}],[-12,{"n":7,"e":3816,"g":1}],[-11,{"n":5.5,"e":3826}],[-10,{"n":7.5,"e":3829,"g":1}],[-9,{"n":6.5,"e":3846}],[-8,{"n":4.5,"e":3855}],[-7,{"n":5,"e":3866,"s":1}],[-6,{"n":3.5,"e":3868}],[6,{"n":5,"e":6150}],[-5,{"n":5.5,"e":3887}],[5,{"n":4,"e":6167}],[4,{"n":4,"e":6174}],[3,{"n":7,"e":6186,"g":1}],[2,{"n":4.5,"e":6195}],[1,{"n":7,"e":6198,"g":1}]],"a":{"m":31,"a":42,"M":65,"n":67}}],[2893,{"n":"Bajic","f":"Stefan","fp":"G","r":3,"c":4,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-7,{"n":4.5,"e":3866}]]}],[2990,{"n":"Tshibuabua","f":"Marvin","fp":"DC","r":1,"c":4}],[2991,{"n":"Abi","f":"Charles","fp":"A","r":12,"c":4,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":75.5,"On":17,"Oa":4.44,"Od":0.63,"pa":17},"p":[[-28,{"n":5,"e":3656,"s":1}],[-27,{"n":4,"e":3661,"s":1}],[-25,{"n":3.5,"e":3680}],[-24,{"n":4.5,"e":3693,"s":1}],[-23,{"n":4,"e":3702,"s":1}],[-22,{"n":3.5,"e":3712}],[-21,{"n":5,"e":3727}],[-20,{"n":4,"e":3736,"s":1}],[-19,{"n":6,"e":3747,"s":1}],[-11,{"n":5,"e":3826}],[-10,{"n":4,"e":3829}],[-9,{"n":4.5,"e":3846}],[-8,{"n":4.5,"e":3855,"s":1}],[-7,{"n":4.5,"e":3866,"s":1}],[-6,{"n":4.5,"e":3868,"s":1}],[3,{"n":4,"e":6186,"s":1}],[1,{"n":5,"e":6198}]]}],[2992,{"n":"Benkhedim","f":"Bilal","fp":"MO","r":5,"c":4,"s":{"Os":15.5,"On":3,"Oa":5.17,"Od":0.29,"pm":2,"pa":1},"p":[[-25,{"n":5,"e":3680,"s":1}],[-19,{"n":5,"e":3747}],[-14,{"n":5.5,"e":3796,"s":1}]]}],[3765,{"n":"Sissoko","f":"Alpha","fp":"DL","r":1,"c":4,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[6,{"n":4.5,"e":6150}],[1,{"n":5,"e":6198,"s":1}]]}],[3788,{"n":"Moukoudi","f":"Harold","fp":"DC","r":6,"c":4,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Os":44.5,"On":10,"Oa":4.45,"Od":0.96,"pd":10},"p":[[-20,{"n":4,"e":3736}],[-15,{"n":4,"e":3786}],[-14,{"n":5.5,"e":3796}],[-13,{"n":4.5,"e":3803}],[-8,{"n":6,"e":3855}],[-6,{"n":2.5,"e":3868}],[6,{"n":5,"e":6150}],[-5,{"n":4.5,"e":3887}],[5,{"n":4,"e":6167}],[4,{"n":4.5,"e":6174}]]}],[4030,{"n":"Aouchiche","f":"Adil","fp":"MO","r":16,"c":4,"s":{"g":1,"s":33.5,"n":6,"a":5.58,"d":0.97,"Sg":1,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.97,"Og":1,"Os":33.5,"On":6,"Oa":5.58,"Od":0.97,"pm":5,"pa":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[6,{"n":4.5,"e":6150}],[5,{"n":5.5,"e":6167}],[4,{"n":7,"e":6174,"g":1}],[3,{"n":6,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":4.5,"e":6198}]],"a":{"m":16,"a":19,"M":26,"n":32}}],[6019,{"n":"Trauco","f":"Miguel","fp":"DL","r":7,"c":4,"s":{"Og":1,"Os":69,"On":16,"Oa":4.31,"Od":1.17,"pd":9,"pm":7},"p":[[-27,{"n":4.5,"e":3661}],[-26,{"n":5,"e":3676,"s":1}],[-24,{"n":4,"e":3693}],[-22,{"n":3,"e":3712}],[-21,{"n":5,"e":3727}],[-20,{"n":3.5,"e":3736}],[-19,{"n":4,"e":3747}],[-18,{"n":3.5,"e":3756}],[-16,{"n":6.5,"e":3776}],[-15,{"n":3,"e":3786}],[-14,{"n":5,"e":3796}],[-13,{"n":6.5,"e":3803,"g":1}],[-12,{"n":5,"e":3816,"s":1}],[-9,{"n":4.5,"e":3846}],[-7,{"n":3.5,"e":3866}],[-6,{"n":2.5,"e":3868}]]}],[6342,{"n":"Indjai Correia","f":"Edmilson","fp":"A","r":4,"c":4,"s":{"Os":15,"On":3,"Oa":5,"pm":3},"p":[[-24,{"n":5,"e":3693,"s":1}],[-20,{"n":5,"e":3736,"s":1}],[-18,{"n":5,"e":3756,"s":1}]]}],[6391,{"n":"Petit","f":"Victor","fp":"MD","r":1,"c":4}],[6400,{"n":"Rivera","f":"Maxence","fp":"A","r":5,"c":4,"s":{"s":23.5,"n":5,"a":4.7,"d":0.27,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.27,"Os":28,"On":6,"Oa":4.67,"Od":0.26,"pm":1,"pa":5},"p":[[-20,{"n":4.5,"e":3736,"s":1}],[6,{"n":5,"e":6150}],[5,{"n":4.5,"e":6167,"s":1}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":5,"e":6195,"s":1}]]}],[6401,{"n":"Moueffek","f":"Aïmen","fp":"MD","r":1,"c":4,"s":{"s":13,"n":3,"a":4.33,"d":1.26,"Os":13,"On":3,"Oa":4.33,"Od":1.26,"pd":2,"pm":1},"p":[[5,{"n":3,"e":6167}],[4,{"n":4.5,"e":6174}],[1,{"n":5.5,"e":6198,"s":1}]],"fo":[[6174,[{"t":"Y"}]]]}],[6509,{"n":"Maçon","f":"Yvann","fp":"DL","r":9,"c":4,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.44,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.44,"Og":1,"Os":38.5,"On":8,"Oa":4.81,"Od":1.49,"pd":7,"pm":1},"p":[[-25,{"n":3,"e":3680}],[-24,{"n":4,"e":3693}],[6,{"n":4,"e":6150}],[5,{"n":3,"e":6167}],[4,{"n":5.5,"e":6174,"g":1}],[3,{"n":6.5,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":6.5,"e":6198}]],"fo":[[6195,[{"t":"I"}]],[6150,[{"t":"Y"}]],[6198,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":20,"n":7}}],[6593,{"n":"Gourna-Douath","f":"Lucas","fp":"MD","r":1,"c":4,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":5,"Sn":1,"Sa":5,"Os":19.5,"On":4,"Oa":4.88,"Od":0.25,"pd":4},"p":[[6,{"n":5,"e":6150,"s":1}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":5,"e":6186,"s":1}],[1,{"n":5,"e":6198,"s":1}]],"fo":[[6198,[{"t":"Y"}]]]}],[6704,{"n":"Neyou","f":"Yvan","fp":"MD","r":8,"c":4,"s":{"s":32.5,"n":6,"a":5.42,"d":0.66,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.66,"Os":32.5,"On":6,"Oa":5.42,"Od":0.66,"pm":6},"p":[[6,{"n":4.5,"e":6150}],[5,{"n":5,"e":6167,"s":1}],[4,{"n":6,"e":6174}],[3,{"n":5,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":6,"e":6198}]],"fo":[[6174,[{"t":"I"}]],[6167,[{"t":"Y"}]],[6186,[{"t":"Y"}]],[6195,[{"t":"Y"}]]],"a":{"m":4,"a":12,"M":19,"n":7}}],[6794,{"n":"Green","f":"Etienne","fp":"G","r":1,"c":4}],[6806,{"n":"Krasso","f":"Jean-Phillipe","fp":"A","r":5,"c":4,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[5,{"n":5,"e":6167,"s":1}],[2,{"n":4.5,"e":6195,"s":1}]]}],[7138,{"n":"Sow","f":"Saidou","fp":"DL","r":1,"c":4,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[6,{"n":5,"e":6150,"s":1}]]}],[7329,{"n":"Sidibé","f":"Abdoulaye","fp":"A","r":1,"c":4}],[7363,{"n":"Tormin","f":"Tyrone","fp":"MO","r":1,"c":4}],[23,{"n":"Majeed Waris","f":"","fp":"A","r":8,"c":41,"s":{"s":21,"n":5,"a":4.2,"d":0.45,"Og":2,"Os":59,"On":12,"Oa":4.92,"Od":1.02,"pm":4,"pa":8},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663,"s":1}],[-26,{"n":5.5,"e":3677}],[-25,{"n":6,"e":3682}],[-24,{"n":7,"e":3697,"g":1}],[-23,{"n":6,"e":3707,"g":1,"s":1}],[-22,{"n":5,"e":3717}],[-21,{"n":4.5,"e":3722,"s":1}],[5,{"n":3.5,"e":6164}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6186}],[2,{"n":4.5,"e":6196,"s":1}],[1,{"n":4.5,"e":6202,"s":1}]],"a":{"m":9,"a":16,"M":31,"n":19}}],[297,{"n":"Prcic","f":"Sanjin","fp":"MD","r":8,"c":41,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":29.5,"On":6,"Oa":4.92,"Od":0.2,"pm":6},"p":[[-28,{"n":null,"e":3657,"d":1}],[-9,{"n":5,"e":3840}],[-7,{"n":5,"e":3861,"s":1}],[-5,{"n":5,"e":3886,"s":1}],[5,{"n":5,"e":6164,"s":1}],[4,{"n":5,"e":6177,"s":1}],[1,{"n":4.5,"e":6202}]]}],[332,{"n":"Djiku","f":"Alexander","fp":"DC","r":11,"c":41,"s":{"s":26,"n":6,"a":4.33,"d":0.75,"Ss":26,"Sn":6,"Sa":4.33,"Sd":0.75,"Og":1,"Os":139.5,"On":27,"Oa":5.17,"Od":1.12,"pd":18,"pm":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":2.5,"e":3663}],[-26,{"n":5,"e":3677,"s":1}],[-25,{"n":5,"e":3682,"s":1}],[-24,{"n":7.5,"e":3697,"g":1}],[-23,{"n":6.5,"e":3707}],[-22,{"n":5,"e":3717}],[-21,{"n":6,"e":3722}],[-20,{"n":4.5,"e":3732}],[-19,{"n":6,"e":3747}],[-18,{"n":5.5,"e":3750}],[-17,{"n":5.5,"e":3767}],[-15,{"n":4.5,"e":3787}],[-14,{"n":7,"e":3788}],[-13,{"n":6.5,"e":3807}],[-12,{"n":5.5,"e":3809}],[-11,{"n":6,"e":3827}],[-9,{"n":5,"e":3840}],[-8,{"n":6,"e":3857}],[-7,{"n":4.5,"e":3861}],[-6,{"n":4,"e":3877}],[6,{"n":4,"e":6156}],[-5,{"n":5.5,"e":3886}],[5,{"n":5,"e":6164}],[4,{"n":4.5,"e":6177}],[3,{"n":3,"e":6186}],[2,{"n":4.5,"e":6196}],[1,{"n":5,"e":6202,"s":1}]],"fo":[[6156,[{"t":"Y"}]],[6186,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":12,"a":18,"M":26,"n":27}}],[357,{"n":"Thomasson","f":"Adrien","fp":"MO","r":25,"c":41,"s":{"s":28,"n":6,"a":4.67,"d":0.52,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.52,"Og":5,"Os":153.5,"On":28,"Oa":5.48,"Od":1.2,"pm":22,"pa":6},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3663}],[-26,{"n":6,"e":3677}],[-25,{"n":5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":6.5,"e":3707}],[-22,{"n":6.5,"e":3717,"g":1}],[-21,{"n":8,"e":3722,"g":1}],[-20,{"n":4.5,"e":3732}],[-19,{"n":7,"e":3747,"g":1}],[-18,{"n":5.5,"e":3750}],[-17,{"n":6.5,"e":3767,"g":1}],[-16,{"n":4.5,"e":3771}],[-15,{"n":4,"e":3787}],[-14,{"n":8,"e":3788}],[-13,{"n":7,"e":3807}],[-12,{"n":5,"e":3809}],[-11,{"n":7,"e":3827,"g":1}],[-10,{"n":4.5,"e":3831}],[-9,{"n":5.5,"e":3840}],[-8,{"n":5,"e":3857,"s":1}],[-6,{"n":5,"e":3877}],[6,{"n":5,"e":6156,"s":1}],[-5,{"n":3.5,"e":3886}],[5,{"n":4,"e":6164}],[4,{"n":5.5,"e":6177}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":4.5,"e":6196}],[1,{"n":4.5,"e":6202}]],"fo":[[6164,[{"t":"Y"}]]],"a":{"m":28,"a":35,"M":56,"n":60}}],[486,{"n":"Kawashima","f":"Eiji","fp":"G","r":13,"c":41,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pg":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[2,{"n":4,"e":6196}],[1,{"n":5,"e":6202}]]}],[747,{"n":"Koné","f":"Lamine","fp":"DC","r":11,"c":41,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"Og":1,"Os":86.5,"On":18,"Oa":4.81,"Od":0.97,"pd":18},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5,"e":3682}],[-21,{"n":5.5,"e":3722}],[-20,{"n":4.5,"e":3732}],[-19,{"n":5.5,"e":3747}],[-18,{"n":6.5,"e":3750}],[-17,{"n":6,"e":3767,"g":1}],[-16,{"n":3.5,"e":3771}],[-13,{"n":4.5,"e":3807,"s":1}],[-10,{"n":5.5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":5,"e":3857}],[-7,{"n":3,"e":3861}],[-6,{"n":5.5,"e":3877}],[-5,{"n":5.5,"e":3886}],[2,{"n":3.5,"e":6196}],[1,{"n":4,"e":6202}]],"fo":[[6196,[{"t":"I"},{"t":"Y"}]]]}],[1405,{"n":"Saadi","f":"Idriss","fp":"A","r":7,"c":41,"s":{"s":27,"n":6,"a":4.5,"d":0.32,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.32,"Os":27,"On":6,"Oa":4.5,"Od":0.32,"pa":6},"p":[[-28,{"n":null,"e":3657,"d":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":4.5,"e":6164,"s":1}],[4,{"n":4,"e":6177,"s":1}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":4.5,"e":6196,"s":1}],[1,{"n":4.5,"e":6202,"s":1}]]}],[1409,{"n":"Lienard","f":"Dimitri","fp":"MO","r":15,"c":41,"s":{"s":25,"n":5,"a":5,"d":0.79,"Ss":25,"Sn":5,"Sa":5,"Sd":0.79,"Og":2,"Os":130,"On":24,"Oa":5.42,"Od":1.07,"pm":24},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4.5,"e":3663}],[-26,{"n":5,"e":3677,"s":1}],[-25,{"n":4.5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":6,"e":3707}],[-22,{"n":6,"e":3717}],[-19,{"n":5.5,"e":3747}],[-18,{"n":5,"e":3750,"s":1}],[-17,{"n":7,"e":3767}],[-16,{"n":4,"e":3771,"s":1}],[-15,{"n":5,"e":3787}],[-13,{"n":8,"e":3807,"g":1}],[-12,{"n":5,"e":3809}],[-11,{"n":7,"e":3827}],[-9,{"n":4.5,"e":3840}],[-8,{"n":6,"e":3857}],[-7,{"n":4,"e":3861}],[-6,{"n":7,"e":3877,"g":1,"s":1}],[6,{"n":4,"e":6156}],[-5,{"n":5,"e":3886,"s":1}],[5,{"n":5.5,"e":6164,"s":1}],[4,{"n":6,"e":6177,"s":1}],[3,{"n":5,"e":6186,"s":1}],[2,{"n":4.5,"e":6196,"s":1}]]}],[1428,{"n":"Kamara","f":"Bingourou","fp":"G","r":10,"c":41,"s":{"s":18,"n":4,"a":4.5,"d":1,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1,"Os":18,"On":4,"Oa":4.5,"Od":1,"pg":4},"p":[[-28,{"n":null,"e":3657,"d":1}],[6,{"n":4,"e":6156}],[5,{"n":4,"e":6164}],[4,{"n":6,"e":6177}],[3,{"n":4,"e":6186}]]}],[1461,{"n":"Caci","f":"Anthony","fp":"DL","r":8,"c":41,"s":{"s":17,"n":4,"a":4.25,"d":0.65,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":1,"Os":62.5,"On":12,"Oa":5.21,"Od":1.32,"pd":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-19,{"n":7,"e":3747}],[-17,{"n":6,"e":3767}],[-15,{"n":4.5,"e":3787}],[-14,{"n":8,"e":3788,"g":1}],[-13,{"n":5,"e":3807}],[-12,{"n":5,"e":3809}],[-11,{"n":6,"e":3827}],[-10,{"n":4,"e":3831}],[6,{"n":3.5,"e":6156}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6186}],[2,{"n":5,"e":6196,"s":1}]]}],[1462,{"n":"Lala","f":"Kenny","fp":"DL","r":18,"c":41,"s":{"s":25,"n":6,"a":4.17,"d":0.68,"Ss":25,"Sn":6,"Sa":4.17,"Sd":0.68,"Og":1,"Os":137,"On":27,"Oa":5.07,"Od":1.05,"pd":19,"pm":8},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4.5,"e":3663}],[-26,{"n":5,"e":3677}],[-25,{"n":6,"e":3682}],[-24,{"n":8,"e":3697,"g":1}],[-23,{"n":6.5,"e":3707}],[-22,{"n":5.5,"e":3717}],[-21,{"n":7,"e":3722}],[-20,{"n":4,"e":3732}],[-19,{"n":5,"e":3747}],[-18,{"n":5,"e":3750}],[-17,{"n":5,"e":3767}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3788}],[-13,{"n":4.5,"e":3807}],[-12,{"n":5.5,"e":3809,"s":1}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":5,"e":3857}],[-6,{"n":6,"e":3877}],[6,{"n":3,"e":6156}],[-5,{"n":5.5,"e":3886}],[5,{"n":4,"e":6164}],[4,{"n":5,"e":6177}],[3,{"n":4.5,"e":6186}],[2,{"n":4,"e":6196}],[1,{"n":4.5,"e":6202}]],"a":{"m":19,"a":29,"M":56,"n":23}}],[1463,{"n":"Zohi","f":"Kévin","fp":"A","r":6,"c":41,"s":{"s":23.5,"n":5,"a":4.7,"d":0.45,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":97,"On":20,"Oa":4.85,"Od":0.56,"pm":4,"pa":16},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663,"s":1}],[-26,{"n":5,"e":3677}],[-25,{"n":5.5,"e":3682,"g":1}],[-24,{"n":5,"e":3697}],[-23,{"n":5.5,"e":3707}],[-22,{"n":4.5,"e":3717,"s":1}],[-21,{"n":6.5,"e":3722}],[-20,{"n":5,"e":3732,"s":1}],[-18,{"n":4.5,"e":3750,"s":1}],[-17,{"n":4.5,"e":3767,"s":1}],[-16,{"n":5,"e":3771,"s":1}],[-15,{"n":4.5,"e":3787,"s":1}],[-12,{"n":4.5,"e":3809,"s":1}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":4.5,"e":3831,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6164,"s":1}],[3,{"n":5,"e":6186}],[2,{"n":4,"e":6196,"s":1}],[1,{"n":4.5,"e":6202,"s":1}]],"a":{"m":6,"a":8,"M":12,"n":5}}],[1871,{"n":"Carole","f":"Lionel","fp":"DL","r":9,"c":41,"s":{"s":21.5,"n":5,"a":4.3,"d":0.57,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.76,"Os":94.5,"On":20,"Oa":4.72,"Od":0.83,"pd":16,"pm":4},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-24,{"n":6.5,"e":3697}],[-23,{"n":5,"e":3707,"s":1}],[-22,{"n":4,"e":3717}],[-21,{"n":5.5,"e":3722}],[-20,{"n":4.5,"e":3732}],[-19,{"n":4.5,"e":3747,"s":1}],[-18,{"n":6.5,"e":3750}],[-16,{"n":3.5,"e":3771}],[-14,{"n":5,"e":3788,"s":1}],[-10,{"n":5,"e":3831}],[-8,{"n":5,"e":3857,"s":1}],[-7,{"n":4,"e":3861}],[-6,{"n":5.5,"e":3877}],[6,{"n":4.5,"e":6156,"s":1}],[-5,{"n":4.5,"e":3886}],[5,{"n":3.5,"e":6164}],[4,{"n":5,"e":6177,"s":1}],[2,{"n":4.5,"e":6196}],[1,{"n":4,"e":6202}]],"fo":[[6202,[{"t":"Y"}]]]}],[2077,{"n":"Aaneba","f":"Ismaël","fp":"DC","r":1,"c":41,"s":{},"p":[[-28,{"n":null,"e":3657,"d":1}]]}],[2309,{"n":"Mothiba","f":"Lebo","fp":"A","r":8,"c":41,"s":{"Og":4,"Os":85,"On":18,"Oa":4.72,"Od":1.44,"pa":18},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":4.5,"e":3677,"s":1}],[-25,{"n":5,"e":3682,"s":1}],[-24,{"n":4.5,"e":3697,"s":1}],[-19,{"n":3.5,"e":3747}],[-17,{"n":7,"e":3767,"g":1}],[-16,{"n":3,"e":3771}],[-15,{"n":4.5,"e":3787}],[-14,{"n":7.5,"e":3788,"g":1}],[-13,{"n":8,"e":3807,"g":2}],[-12,{"n":3,"e":3809}],[-11,{"n":5.5,"e":3827}],[-10,{"n":4.5,"e":3831,"s":1}],[-9,{"n":4.5,"e":3840,"s":1}],[-8,{"n":4,"e":3857,"s":1}],[-7,{"n":3.5,"e":3861}],[-6,{"n":4,"e":3877,"s":1}],[-5,{"n":4.5,"e":3886,"s":1}]]}],[2609,{"n":"Sels","f":"Matz","fp":"G","r":3,"c":41,"s":{"Os":130.5,"On":23,"Oa":5.67,"Od":0.95,"pg":23},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":6,"e":3707}],[-22,{"n":4.5,"e":3717}],[-21,{"n":5.5,"e":3722}],[-20,{"n":5.5,"e":3732}],[-19,{"n":5,"e":3747}],[-18,{"n":7,"e":3750}],[-17,{"n":6,"e":3767}],[-16,{"n":4,"e":3771}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3788}],[-13,{"n":5.5,"e":3807}],[-12,{"n":6,"e":3809}],[-11,{"n":7.5,"e":3827}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5.5,"e":3840}],[-8,{"n":8,"e":3857}],[-7,{"n":5,"e":3861}],[-6,{"n":5.5,"e":3877}],[-5,{"n":6,"e":3886}]]}],[2679,{"n":"Sissoko","f":"Ibrahima","fp":"MD","r":10,"c":41,"s":{"s":29,"n":6,"a":4.83,"d":0.82,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.82,"Os":135.5,"On":27,"Oa":5.02,"Od":0.96,"pm":27},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5.5,"e":3663,"s":1}],[-26,{"n":4.5,"e":3677}],[-24,{"n":5.5,"e":3697}],[-23,{"n":5,"e":3707}],[-22,{"n":5.5,"e":3717}],[-21,{"n":7,"e":3722}],[-20,{"n":4,"e":3732}],[-19,{"n":5,"e":3747,"s":1}],[-18,{"n":5.5,"e":3750}],[-17,{"n":5,"e":3767}],[-16,{"n":3,"e":3771}],[-14,{"n":7,"e":3788}],[-13,{"n":5,"e":3807,"s":1}],[-12,{"n":5,"e":3809,"s":1}],[-11,{"n":4.5,"e":3827,"s":1}],[-10,{"n":4.5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":5.5,"e":3857}],[-7,{"n":3.5,"e":3861}],[-6,{"n":6,"e":3877}],[6,{"n":6,"e":6156,"s":1}],[-5,{"n":6,"e":3886}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6177}],[3,{"n":5,"e":6186}],[2,{"n":3.5,"e":6196}],[1,{"n":5,"e":6202}]],"fo":[[6186,[{"t":"Y"}]]]}],[2717,{"n":"Ajorque","f":"Ludovic","fp":"A","r":17,"c":41,"s":{"g":1,"s":28,"n":6,"a":4.67,"d":0.88,"Sg":1,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.88,"Og":9,"Os":147.5,"On":29,"Oa":5.09,"Od":1.4,"pa":29},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":3,"e":3663}],[-26,{"n":4.5,"e":3677}],[-25,{"n":4.5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":4.5,"e":3707}],[-22,{"n":4,"e":3717}],[-21,{"n":7,"e":3722,"g":1}],[-20,{"n":3.5,"e":3732}],[-19,{"n":6.5,"e":3747,"g":1}],[-18,{"n":7,"e":3750,"g":1}],[-17,{"n":8,"e":3767,"g":1}],[-16,{"n":4.5,"e":3771,"s":1}],[-15,{"n":5,"e":3787}],[-14,{"n":7,"e":3788,"g":1}],[-13,{"n":8,"e":3807,"g":1}],[-12,{"n":3.5,"e":3809}],[-11,{"n":5,"e":3827}],[-10,{"n":3.5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":6,"e":3857,"g":1}],[-7,{"n":4.5,"e":3861,"s":1}],[-6,{"n":6,"e":3877,"g":1}],[6,{"n":4,"e":6156}],[-5,{"n":4,"e":3886}],[5,{"n":6,"e":6164,"g":1}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6186}],[2,{"n":4,"e":6196}],[1,{"n":5.5,"e":6202}]],"fo":[[6177,[{"t":"Y"}]]],"a":{"m":18,"a":29,"M":47,"n":41}}],[2726,{"n":"Mitrovic","f":"Stefan","fp":"DC","r":10,"c":41,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":1.75,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.66,"Og":2,"Os":125.5,"On":25,"Oa":5.02,"Od":1.22,"pd":25},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5.5,"e":3682}],[-24,{"n":7,"e":3697}],[-23,{"n":6,"e":3707}],[-22,{"n":4.5,"e":3717}],[-21,{"n":7,"e":3722,"g":1}],[-20,{"n":4,"e":3732}],[-19,{"n":4.5,"e":3747}],[-18,{"n":5.5,"e":3750}],[-16,{"n":3,"e":3771}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3788}],[-13,{"n":5.5,"e":3807}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5,"e":3827}],[-9,{"n":5,"e":3840}],[-7,{"n":3,"e":3861}],[-6,{"n":5.5,"e":3877}],[6,{"n":4,"e":6156}],[-5,{"n":5.5,"e":3886}],[5,{"n":4,"e":6164}],[4,{"n":7.5,"e":6177,"g":1}],[3,{"n":5.5,"e":6186}],[1,{"n":3,"e":6202}]],"a":{"m":11,"a":19,"M":26,"n":8}}],[2769,{"n":"Simakan","f":"Mohamed","fp":"DC","r":10,"c":41,"s":{"s":28,"n":6,"a":4.67,"d":1.47,"Ss":28,"Sn":6,"Sa":4.67,"Sd":1.47,"Os":106.5,"On":22,"Oa":4.84,"Od":1.03,"pd":20,"pm":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":5,"e":3677}],[-25,{"n":5,"e":3682}],[-24,{"n":5,"e":3697,"s":1}],[-23,{"n":6,"e":3707}],[-22,{"n":5,"e":3717}],[-17,{"n":5,"e":3767}],[-16,{"n":3,"e":3771}],[-15,{"n":4.5,"e":3787}],[-14,{"n":6,"e":3788}],[-12,{"n":5.5,"e":3809}],[-11,{"n":6,"e":3827}],[-10,{"n":4.5,"e":3831}],[-8,{"n":3.5,"e":3857}],[-7,{"n":4,"e":3861}],[-6,{"n":5,"e":3877,"s":1}],[6,{"n":4,"e":6156}],[-5,{"n":5.5,"e":3886}],[5,{"n":3,"e":6164}],[4,{"n":7,"e":6177}],[3,{"n":5,"e":6186}],[2,{"n":5.5,"e":6196}],[1,{"n":3.5,"e":6202}]],"fo":[[6202,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":18,"n":7}}],[2820,{"n":"Pelletier","f":"Louis","fp":"G","r":1,"c":41,"s":{},"p":[[-28,{"n":null,"e":3657,"d":1}]]}],[3775,{"n":"Bellegarde","f":"Jean-Ricner","fp":"MD","r":9,"c":41,"s":{"s":29,"n":6,"a":4.83,"d":0.52,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.52,"Os":135,"On":26,"Oa":5.19,"Od":0.6,"pm":25,"pa":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5.5,"e":3682}],[-24,{"n":5,"e":3697,"s":1}],[-23,{"n":6,"e":3707}],[-22,{"n":5.5,"e":3717,"s":1}],[-21,{"n":5.5,"e":3722,"s":1}],[-20,{"n":5,"e":3732}],[-16,{"n":4.5,"e":3771}],[-15,{"n":5,"e":3787,"s":1}],[-14,{"n":5,"e":3788,"s":1}],[-13,{"n":5.5,"e":3807}],[-12,{"n":5,"e":3809}],[-11,{"n":6,"e":3827}],[-10,{"n":4.5,"e":3831}],[-9,{"n":5,"e":3840,"s":1}],[-8,{"n":6,"e":3857}],[-7,{"n":5.5,"e":3861}],[-6,{"n":6.5,"e":3877}],[6,{"n":5,"e":6156}],[-5,{"n":5.5,"e":3886}],[5,{"n":4,"e":6164}],[4,{"n":5.5,"e":6177}],[3,{"n":5,"e":6186}],[2,{"n":4.5,"e":6196}],[1,{"n":5,"e":6202,"s":1}]],"fo":[[6186,[{"t":"Y"}]]]}],[4918,{"n":"Siby","f":"Mahamé","fp":"MD","r":3,"c":41,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-25,{"n":5,"e":4827,"s":1}]]}],[5457,{"n":"Lebeau","f":"Adrien","fp":"MO","r":4,"c":41,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[-25,{"n":5,"e":3682,"s":1}]]}],[6864,{"n":"Chahiri","f":"Mehdi","fp":"MO","r":12,"c":41,"s":{"g":2,"s":31,"n":6,"a":5.17,"d":1.03,"Sg":2,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.03,"Og":2,"Os":31,"On":6,"Oa":5.17,"Od":1.03,"pm":5,"pa":1},"p":[[6,{"n":4,"e":6156}],[5,{"n":6.5,"e":6164,"g":1,"s":1}],[4,{"n":5.5,"e":6177,"s":1}],[3,{"n":5,"e":6186,"s":1}],[2,{"n":4,"e":6196}],[1,{"n":6,"e":6202,"g":1}]],"a":{"m":7,"a":10,"M":14,"n":11}}],[7267,{"n":"Besic","f":"Benjamin","fp":"MO","r":3,"c":41}]],"np":638,"c":[[16,{"n":"Angers","rn":"Angers SCO","cn":"Angers","crn":"Angers-SCO","a":"ANG","el":1046,"s":{"w":3,"l":3,"d":0,"pl":6,"GA":-7,"GS":7,"GT":14,"p":9},"nm":[[6138,0.635],[6137,0.344]],"pM":[null,6200,6192,6178,6173,6158,6154,3867,3848,3844,3828,3821,3809,3805,3789,3783,3769,3766,3749,3742,3729,3721,3709,3706,3689,3685,3668,3660,3648],"DMI":[3766]}],[3,{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Bordeaux","crn":"Girondins-de-Bordeaux","a":"BOD","el":1048,"s":{"w":2,"l":1,"d":3,"pl":6,"GA":4,"GS":6,"GT":2,"p":9},"nm":[[6141,0.285],[6128,0.685]],"pM":[null,6199,6192,6179,6169,6159,6148,3858,3849,3847,3829,3819,3810,3804,3790,3785,3770,3759,3750,3746,3730,3724,3710,3698,3692,3679,3674,3659,3656],"DMI":[3710,3759,3770]}],[75,{"n":"Brest","rn":"Stade Brestois 29","cn":"Brest","crn":"Stade-Brestois-29","a":"BRS","el":1035,"s":{"w":3,"l":3,"d":0,"pl":6,"GA":-2,"GS":10,"GT":12,"p":9},"nm":[[6143,0.423],[6129,0.463]],"pM":[null,6206,6197,6180,6168,3880,6149,3859,3853,3839,3828,3818,3808,3798,3791,3779,3771,3758,3751,3741,3737,3718,3711,3698,3696,3680,3673,3660,3654],"DMI":[3791,3771]}],[7,{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon","crn":"Dijon-FCO","a":"DIJ","el":1022,"s":{"w":0,"l":5,"d":1,"pl":6,"GA":-10,"GS":3,"GT":13,"p":1},"nm":[[6139,0.314],[6136,0.211]],"pM":[null,6200,6188,6180,6177,6160,3873,3860,3856,3840,3830,3818,3811,3801,3792,3778,3772,3762,3748,3738,3731,3723,3711,3705,3690,3679,3669,3666,3649],"DMI":[3792,3666,3811]}],[104,{"n":"Lens","rn":"Racing Club de Lens","cn":"Lens","crn":"Racing-Club-de-Lens","a":"LEN","el":1000,"s":{"w":4,"l":1,"d":1,"pl":6,"GA":4,"GS":10,"GT":6,"p":13},"nm":[[6140,0.253],[6130,0.375]],"pM":[null,6205,6190,6182,6169,6165,6150,5003,4989,4984,4974,4966,4952,4945,4935,4923,4917,4903,4888,4882,4871,4863,4852,4841,4833,4820,4814,4805,4794],"DMI":[]}],[12,{"n":"Lille","rn":"LOSC","cn":"Lille","crn":"LOSC","a":"LIL","el":1188,"s":{"w":4,"l":0,"d":2,"pl":6,"GA":7,"GS":9,"GT":2,"p":14},"nm":[[6140,0.747],[6135,0.671]],"pM":[null,6201,6191,6181,6171,6161,6156,3861,3854,3841,3837,3819,3812,3799,3795,3778,3773,3758,3752,3740,3731,3719,3717,3699,3689,3681,3670,3664,3650],"DMI":[3854]}],[6,{"n":"Lorient","rn":"FC Lorient","cn":"Lorient","crn":"FC-Lorient","a":"LOR","el":948,"s":{"w":1,"l":4,"d":1,"pl":6,"GA":-4,"GS":9,"GT":13,"p":4},"nm":[[6145,0.324],[6131,0.183]],"pM":[null,6202,6195,6182,6168,6162,6151,5000,4992,4979,4972,4964,4951,4945,4932,4920,4913,4900,4893,4887,4873,4864,4856,4842,4831,4823,4816,4802,4788],"DMI":[]}],[18,{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Lyon","crn":"Olympique-Lyonnais","a":"LYO","el":1100,"s":{"w":1,"l":1,"d":4,"pl":6,"GA":2,"GS":7,"GT":5,"p":7},"nm":[[6147,0.556],[6132,0.516]],"pM":[null,6204,6188,6179,6170,6162,3870,3859,3850,3846,3830,3820,3817,3800,3793,3787,3773,3764,3753,3745,3730,3720,3713,3704,3695,3682,3672,3661,3650],"DMI":[3682,3787]}],[9,{"n":"Marseille","rn":"Olympique de Marseille","cn":"Marseille","crn":"Olympique-de-Marseille","a":"MRS","el":1208,"s":{"w":2,"l":1,"d":3,"pl":6,"GA":0,"GS":7,"GT":7,"p":9},"nm":[[6141,0.715],[6131,0.817]],"pM":[null,6198,6197,6187,6171,6163,3871,3860,3851,3838,3831,3823,3812,3800,3797,3779,3769,3759,3754,3739,3735,3721,3710,3702,3691,3681,3671,3665,3651],"DMI":[3710,3759]}],[11,{"n":"Metz","rn":"FC Metz","cn":"Metz","crn":"FC-Metz","a":"MET","el":950,"s":{"w":2,"l":3,"d":1,"pl":6,"GA":0,"GS":6,"GT":6,"p":7},"nm":[[6138,0.365],[6133,0.305]],"pM":[null,6207,6193,6181,6172,6163,6151,3866,3852,3839,3832,3820,3813,3799,3794,3784,3774,3763,3754,3738,3732,3726,3712,3703,3692,3684,3672,3658,3652],"DMI":[3712,3866]}],[13,{"n":"Monaco","rn":"AS Monaco","cn":"Monaco","crn":"AS-Monaco","a":"MON","el":1089,"s":{"w":3,"l":2,"d":1,"pl":6,"GA":1,"GS":9,"GT":8,"p":10},"nm":[[6132,0.484],[6142,0.497]],"pM":[null,6203,6193,6183,6176,6164,6149,3862,3853,3842,3833,3822,3816,3801,3790,3780,3777,3760,3749,3740,3734,3722,3714,3706,3688,3683,3669,3662,3653],"DMI":[3683,3842]}],[15,{"n":"Montpellier","rn":"Montpellier Hérault SC","cn":"Montpellier","crn":"Montpellier-Herault-SC","a":"MTP","el":1091,"s":{"w":3,"l":2,"d":1,"pl":6,"GA":4,"GS":12,"GT":8,"p":10},"nm":[[6142,0.503],[6134,0.522]],"pM":[null,6204,6189,6184,6173,3884,6152,3863,3857,3842,3836,3821,3813,3802,3796,3781,3772,3761,3752,3741,3728,3723,3715,3703,3693,3683,3668,3663,3655],"DMI":[3683,3842,3836]}],[8,{"n":"Nantes","rn":"FC Nantes","cn":"Nantes","crn":"FC-Nantes","a":"NTE","el":1089,"s":{"w":1,"l":3,"d":2,"pl":6,"GA":-3,"GS":6,"GT":9,"p":5},"nm":[[6143,0.577],[6130,0.625]],"pM":[null,6199,6194,6183,6174,6161,6153,3864,3850,3843,3832,3822,3810,3803,3791,3782,3775,3762,3755,3742,3736,3724,3716,3700,3690,3684,3671,3664,3648],"DMI":[3791]}],[19,{"n":"Nice","rn":"OGC Nice","cn":"Nice","crn":"OGC-Nice","a":"NCE","el":1064,"s":{"w":3,"l":2,"d":1,"pl":6,"GA":-1,"GS":7,"GT":8,"p":10},"nm":[[6135,0.329],[6146,0.458]],"pM":[null,6205,6196,6184,6175,3884,6153,3862,3854,3843,3834,3827,3814,3804,3793,3783,3776,3763,3751,3743,3729,3725,3713,3701,3694,3687,3673,3659,3653],"DMI":[3776,3854]}],[67,{"n":"Nîmes","rn":"Nîmes Olympique","cn":"Nimes","crn":"Nimes-Olympique","a":"NIM","el":913,"s":{"w":2,"l":2,"d":2,"pl":6,"GA":2,"GS":9,"GT":7,"p":8},"nm":[[6128,0.315],[6144,0.125]],"pM":[null,6206,6194,6185,6170,6165,6152,3863,3855,3841,3835,3824,null,3807,3789,3784,3770,3764,3755,3739,3733,3727,3714,3705,3694,3685,3675,3665,3652],"DMI":[3770]}],[2,{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris","crn":"Paris-Saint-Germain","a":"PAR","el":1251,"s":{"w":4,"l":2,"d":0,"pl":6,"GA":9,"GS":12,"GT":3,"p":12},"nm":[[6136,0.789],[6144,0.875]],"pM":[null,6207,6190,6187,6175,6166,3870,3865,3849,3844,3834,3823,3811,3798,3795,3780,3775,3761,3756,3744,3734,3719,3715,3700,3695,3678,3674,3666,3657],"DMI":[3666,3811]}],[68,{"n":"Reims","rn":"Stade de Reims","cn":"Reims","crn":"Stade-de-Reims","a":"RMS","el":1076,"s":{"w":0,"l":4,"d":2,"pl":6,"GA":-5,"GS":5,"GT":10,"p":2},"nm":[[6145,0.676],[6134,0.478]],"pM":[null,6203,6191,6178,6172,6166,6155,3865,3856,3845,3836,3824,3814,3805,3794,3785,3768,3765,3757,3745,3733,3726,3709,3701,3697,3686,3676,3662,3654],"DMI":[3836]}],[20,{"n":"Rennes","rn":"Stade Rennais FC","cn":"Rennes","crn":"Stade-Rennais-FC","a":"REN","el":1158,"s":{"w":4,"l":0,"d":2,"pl":6,"GA":7,"GS":14,"GT":7,"p":14},"nm":[[6137,0.656],[6139,0.686]],"pM":[null,6201,6189,6185,6176,6167,6155,3864,3851,3845,3833,3825,null,3806,3792,3786,3774,3766,3753,3746,3735,3725,3716,3699,3696,3686,3675,3667,3655],"DMI":[3792,3766]}],[4,{"n":"Saint-Étienne","rn":"AS Saint-Etienne","cn":"Saint-Etienne","crn":"AS-Saint-Etienne","a":"STE","el":1093,"s":{"w":3,"l":2,"d":1,"pl":6,"GA":1,"GS":8,"GT":7,"p":10},"nm":[[6133,0.695],[6146,0.542]],"pM":[null,6198,6195,6186,6174,6167,6150,3866,3855,3846,3829,3826,3816,3803,3796,3786,3776,3765,3756,3747,3736,3727,3712,3702,3693,3680,3676,3661,3656],"DMI":[3776,3712,3866]}],[41,{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"Strasbourg","crn":"RC-Strasbourg-Alsace","a":"STB","el":1061,"s":{"w":1,"l":5,"d":0,"pl":6,"GA":-9,"GS":4,"GT":13,"p":3},"nm":[[6129,0.537],[6147,0.444]],"pM":[null,6202,6196,6186,6177,3886,3877,3861,3857,3840,3831,3827,3809,3807,3788,3787,3771,3767,3750,3747,3732,3722,3717,3707,3697,3682,3677,3663,3657],"DMI":[3682,3787,3771]}]],"nc":20,"op":[[42,{"n":"Amiens"}],[10,{"n":"Toulouse"}],[88,{"n":"Ajaccio"}],[100,{"n":"Rodez"}],[92,{"n":"Clermont"}],[14,{"n":"Guingamp"}],[103,{"n":"Le Mans"}],[102,{"n":"Sochaux"}],[17,{"n":"Nancy"}],[5,{"n":"Caen"}],[91,{"n":"Valenciennes"}],[101,{"n":"Auxerre"}],[97,{"n":"Orléans"}],[94,{"n":"Grenoble"}],[93,{"n":"Châteauroux"}],[98,{"n":"Niort"}],[43,{"n":"Troyes"}],[89,{"n":"Le Havre"}],[90,{"n":"Chambly"}],[107,{"n":"Paris FC"}],[56,{"n":"Espanyol"}],[51,{"n":"Celta"}],[64,{"n":"Villarreal"}],[86,{"n":"Granada"}],[57,{"n":"Bilbao"}],[47,{"n":"Leganés"}],[74,{"n":"Valladolid"}],[59,{"n":"Barcelona"}],[58,{"n":"Getafe"}],[52,{"n":"Real Sociedad"}],[66,{"n":"Eibar"}],[54,{"n":"Atlético"}],[129,{"n":"Pau"}],[62,{"n":"Real Madrid"}],[55,{"n":"Sevilla"}],[85,{"n":"Osasuna"}],[87,{"n":"Mallorca"}],[60,{"n":"Betis"}],[63,{"n":"Levante"}],[123,{"n":"Sassuolo"}],[124,{"n":"Udinese"}],[113,{"n":"Lecce"}],[115,{"n":"Juventus"}],[111,{"n":"Napoli"}],[121,{"n":"Lazio"}],[120,{"n":"Sampdoria"}],[118,{"n":"Spal"}],[117,{"n":"Genoa"}],[116,{"n":"Roma"}],[119,{"n":"Atalanta"}],[122,{"n":"Torino"}],[110,{"n":"Fiorentina"}],[127,{"n":"Bologna"}],[126,{"n":"Verona"}],[109,{"n":"Brescia"}],[112,{"n":"Inter"}],[114,{"n":"Parma"}],[125,{"n":"Milan"}],[108,{"n":"Cagliari"}],[49,{"n":"Valencia"}],[48,{"n":"Alavés"}],[22,{"n":"Everton"}],[36,{"n":"Bournemouth"}],[77,{"n":"Sheffield"}],[35,{"n":"Southampton"}],[24,{"n":"Tottenham"}],[25,{"n":"Chelsea"}],[31,{"n":"Man. United"}],[39,{"n":"Arsenal"}],[26,{"n":"Crystal Palace"}],[33,{"n":"Watford"}],[46,{"n":"Newcastle"}],[28,{"n":"West Ham"}],[45,{"n":"Brighton"}],[40,{"n":"Man. City"}],[23,{"n":"Burnley"}],[21,{"n":"Liverpool"}],[29,{"n":"Leicester"}],[76,{"n":"Norwich"}]],"Ne":[[6138,{"d":7,"dB":1603026000,"t1":16,"t2":11,"o":{"h":2.1,"d":3.22,"a":3.5}}],[6137,{"d":8,"dB":1603634400,"t1":20,"t2":16}],[6141,{"d":7,"dB":1603026000,"t1":9,"t2":3,"o":{"h":1.84,"d":3.58,"a":4.05}}],[6128,{"d":8,"dB":1603634400,"t1":3,"t2":67}],[6143,{"d":7,"dB":1603026000,"t1":8,"t2":75,"o":{"h":2.26,"d":3.22,"a":3.15}}],[6129,{"d":8,"dB":1603634400,"t1":75,"t2":41}],[6139,{"d":7,"dB":1603026000,"t1":7,"t2":20,"o":{"h":3.48,"d":3.35,"a":2.07}}],[6136,{"d":8,"dB":1603634400,"t1":2,"t2":7}],[6140,{"d":7,"dB":1603026000,"t1":12,"t2":104,"o":{"h":1.64,"d":3.7,"a":5.3}}],[6130,{"d":8,"dB":1603634400,"t1":104,"t2":8}],[6135,{"d":8,"dB":1603634400,"t1":19,"t2":12}],[6145,{"d":7,"dB":1603026000,"t1":68,"t2":6,"o":{"h":2.07,"d":3.38,"a":3.45}}],[6131,{"d":8,"dB":1603634400,"t1":6,"t2":9}],[6147,{"d":7,"dB":1603026000,"t1":41,"t2":18,"o":{"h":2.88,"d":3.35,"a":2.37}}],[6132,{"d":8,"dB":1603634400,"t1":18,"t2":13}],[6133,{"d":8,"dB":1603634400,"t1":11,"t2":4}],[6142,{"d":7,"dB":1603026000,"t1":13,"t2":15,"o":{"h":1.83,"d":3.52,"a":4.15}}],[6134,{"d":8,"dB":1603634400,"t1":15,"t2":68}],[6146,{"d":7,"dB":1603026000,"t1":4,"t2":19,"o":{"h":2.08,"d":3.35,"a":3.45}}],[6144,{"d":7,"dB":1603026000,"t1":67,"t2":2,"o":{"h":10.2,"d":6.3,"a":1.23}}]],"e":[[3648,{"d":28,"dB":1583607600,"t1s":2,"t2s":0,"t1":16,"t2":8}],[3685,{"d":25,"dB":1581793200,"t1s":1,"t2s":0,"t1":67,"t2":16}],[3689,{"d":24,"dB":1581104700,"t1s":0,"t2s":2,"t1":16,"t2":12}],[3709,{"d":22,"dB":1580583600,"t1s":1,"t2s":4,"t1":16,"t2":68}],[3721,{"d":21,"dB":1579969800,"t1s":0,"t2s":0,"t1":9,"t2":16}],[3729,{"d":20,"dB":1578769200,"t1s":1,"t2s":1,"t1":16,"t2":19}],[3742,{"d":19,"dB":1576957500,"t1s":1,"t2s":2,"t1":8,"t2":16}],[3749,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":16,"t2":13}],[3766,{"d":17,"dB":1575745200,"t1s":2,"t2s":1,"t1":20,"t2":16}],[3769,{"d":16,"dB":1575396000,"t1s":0,"t2s":2,"t1":16,"t2":9}],[3783,{"d":15,"dB":1575140400,"t1s":3,"t2s":1,"t1":19,"t2":16}],[3789,{"d":14,"dB":1574535600,"t1s":1,"t2s":0,"t1":16,"t2":67}],[3805,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":68,"t2":16}],[3809,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":16,"t2":41}],[3821,{"d":11,"dB":1572112800,"t1s":0,"t2s":0,"t1":15,"t2":16}],[3828,{"d":10,"dB":1571508000,"t1s":0,"t2s":1,"t1":16,"t2":75}],[3844,{"d":9,"dB":1570289400,"t1s":4,"t2s":0,"t1":2,"t2":16}],[3848,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":16,"t2":42}],[3868,{"d":6,"dB":1569164400,"t1s":4,"t2s":1,"t1":16,"t2":4}],[3882,{"d":5,"dB":1568394000,"t1s":2,"t2s":1,"t1":12,"t2":16}],[6154,{"d":6,"dB":1601665200,"t1s":6,"t2s":1,"t1":2,"t2":16}],[6158,{"d":5,"dB":1601211600,"t1s":3,"t2s":2,"t1":16,"t2":75}],[6173,{"d":4,"dB":1600606800,"t1s":4,"t2s":1,"t1":15,"t2":16}],[6178,{"d":3,"dB":1600002000,"t1s":1,"t2s":0,"t1":16,"t2":68}],[6192,{"d":2,"dB":1598792400,"t1s":0,"t2s":2,"t1":16,"t2":3}],[6200,{"d":1,"dB":1598108400,"t1s":0,"t2s":1,"t1":7,"t2":16}],[3656,{"d":28,"dB":1583676000,"t1s":1,"t2s":1,"t1":4,"t2":3}],[3661,{"d":27,"dB":1583092800,"t1s":2,"t2s":0,"t1":18,"t2":4}],[3676,{"d":26,"dB":1582466400,"t1s":1,"t2s":1,"t1":4,"t2":68}],[3680,{"d":25,"dB":1581868800,"t1s":3,"t2s":2,"t1":75,"t2":4}],[3693,{"d":24,"dB":1581256800,"t1s":1,"t2s":0,"t1":15,"t2":4}],[3702,{"d":23,"dB":1580932800,"t1s":0,"t2s":2,"t1":4,"t2":9}],[3712,{"d":22,"dB":1580659200,"t1s":3,"t2s":1,"t1":11,"t2":4}],[3765,{"d":17,"dB":1575813600,"t1s":3,"t2s":1,"t1":68,"t2":4}],[3776,{"d":16,"dB":1575482400,"t1s":4,"t2s":1,"t1":4,"t2":19}],[3786,{"d":15,"dB":1575216000,"t1s":2,"t2s":1,"t1":20,"t2":4}],[3846,{"d":9,"dB":1570388400,"t1s":1,"t2s":0,"t1":4,"t2":18}],[3660,{"d":27,"dB":1583002800,"t1s":0,"t2s":1,"t1":75,"t2":16}],[3668,{"d":26,"dB":1582398000,"t1s":1,"t2s":0,"t1":16,"t2":15}],[3867,{"d":7,"dB":1569430800,"t1s":0,"t2s":2,"t1":10,"t2":16}],[3706,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":13,"t2":16}],[4788,{"d":28,"dB":1583589600,"t1s":1,"t2s":0,"t1":88,"t2":6}],[4816,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":100,"t2":6}],[4823,{"d":25,"dB":1581775200,"t1s":0,"t2s":1,"t1":6,"t2":92}],[4831,{"d":24,"dB":1581170400,"t1s":2,"t2s":1,"t1":14,"t2":6}],[4842,{"d":23,"dB":1580846700,"t1s":4,"t2s":2,"t1":6,"t2":103}],[4856,{"d":22,"dB":1580567400,"t1s":0,"t2s":4,"t1":102,"t2":6}],[4864,{"d":21,"dB":1579892400,"t1s":2,"t2s":1,"t1":6,"t2":17}],[4873,{"d":20,"dB":1578944700,"t1s":2,"t2s":1,"t1":6,"t2":5}],[4887,{"d":19,"dB":1576868400,"t1s":3,"t2s":0,"t1":91,"t2":6}],[4893,{"d":18,"dB":1576263600,"t1s":1,"t2s":0,"t1":6,"t2":101}],[4900,{"d":17,"dB":1575403200,"t1s":0,"t2s":4,"t1":97,"t2":6}],[4913,{"d":16,"dB":1575054000,"t1s":2,"t2s":1,"t1":6,"t2":94}],[4920,{"d":15,"dB":1574449200,"t1s":1,"t2s":3,"t1":93,"t2":6}],[4932,{"d":14,"dB":1573239600,"t1s":4,"t2s":1,"t1":6,"t2":98}],[4945,{"d":13,"dB":1572703200,"t1s":1,"t2s":0,"t1":104,"t2":6}],[4951,{"d":12,"dB":1572094800,"t1s":0,"t2s":1,"t1":6,"t2":43}],[4964,{"d":11,"dB":1571490000,"t1s":2,"t2s":2,"t1":89,"t2":6}],[4972,{"d":10,"dB":1570212000,"t1s":0,"t2s":0,"t1":6,"t2":88}],[4979,{"d":9,"dB":1569607200,"t1s":0,"t2s":1,"t1":90,"t2":6}],[4992,{"d":8,"dB":1569264300,"t1s":2,"t2s":1,"t1":6,"t2":100}],[5000,{"d":7,"dB":1568465100,"t1s":0,"t2s":2,"t1":92,"t2":6}],[3652,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":11,"t2":67}],[3665,{"d":27,"dB":1582919100,"t1s":2,"t2s":3,"t1":67,"t2":9}],[3675,{"d":26,"dB":1582473600,"t1s":2,"t2s":1,"t1":20,"t2":67}],[3694,{"d":24,"dB":1581188400,"t1s":1,"t2s":3,"t1":19,"t2":67}],[3705,{"d":23,"dB":1580925600,"t1s":2,"t2s":0,"t1":67,"t2":7}],[3714,{"d":22,"dB":1580583600,"t1s":3,"t2s":1,"t1":67,"t2":13}],[3727,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":4,"t2":67}],[3733,{"d":20,"dB":1578769200,"t1s":2,"t2s":0,"t1":67,"t2":68}],[3739,{"d":19,"dB":1576957500,"t1s":3,"t2s":1,"t1":9,"t2":67}],[3755,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":67,"t2":8}],[3764,{"d":17,"dB":1575661500,"t1s":0,"t2s":4,"t1":67,"t2":18}],[3770,{"d":16,"dB":1575396000,"t1s":6,"t2s":0,"t1":3,"t2":67}],[3784,{"d":15,"dB":1575140400,"t1s":1,"t2s":1,"t1":67,"t2":11}],[3841,{"d":9,"dB":1570366800,"t1s":2,"t2s":2,"t1":12,"t2":67}],[3855,{"d":8,"dB":1569769200,"t1s":0,"t2s":1,"t1":67,"t2":4}],[3863,{"d":7,"dB":1569430800,"t1s":1,"t2s":0,"t1":15,"t2":67}],[3874,{"d":6,"dB":1569088800,"t1s":1,"t2s":0,"t1":67,"t2":10}],[3881,{"d":5,"dB":1568484000,"t1s":0,"t2s":0,"t1":7,"t2":67}],[3746,{"d":19,"dB":1576957500,"t1s":1,"t2s":0,"t1":20,"t2":3}],[4895,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":100,"t2":5}],[4954,{"d":12,"dB":1572026400,"t1s":2,"t2s":4,"t1":107,"t2":5}],[5007,{"d":7,"dB":1568397600,"t1s":2,"t2s":1,"t1":43,"t2":5}],[4789,{"d":28,"dB":1583521200,"t1s":2,"t2s":2,"t1":90,"t2":103}],[4801,{"d":27,"dB":1582916400,"t1s":2,"t2s":1,"t1":103,"t2":14}],[4822,{"d":25,"dB":1581706800,"t1s":0,"t2s":0,"t1":103,"t2":100}],[4853,{"d":22,"dB":1580497200,"t1s":1,"t2s":1,"t1":103,"t2":17}],[4867,{"d":21,"dB":1579892400,"t1s":1,"t2s":0,"t1":91,"t2":103}],[4884,{"d":19,"dB":1576936800,"t1s":0,"t2s":3,"t1":107,"t2":103}],[4906,{"d":17,"dB":1575403200,"t1s":2,"t2s":0,"t1":89,"t2":103}],[4912,{"d":16,"dB":1575054000,"t1s":1,"t2s":2,"t1":103,"t2":93}],[4931,{"d":14,"dB":1573239600,"t1s":0,"t2s":0,"t1":103,"t2":94}],[4982,{"d":9,"dB":1569869100,"t1s":3,"t2s":0,"t1":14,"t2":103}],[4991,{"d":8,"dB":1569002400,"t1s":2,"t2s":4,"t1":103,"t2":88}],[3659,{"d":27,"dB":1583078400,"t1s":1,"t2s":1,"t1":3,"t2":19}],[3674,{"d":26,"dB":1582488000,"t1s":4,"t2s":3,"t1":2,"t2":3}],[3679,{"d":25,"dB":1581793200,"t1s":2,"t2s":2,"t1":3,"t2":7}],[3692,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":11,"t2":3}],[3698,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":75,"t2":3}],[3710,{"d":22,"dB":1580673600,"t1s":0,"t2s":0,"t1":3,"t2":9}],[3724,{"d":21,"dB":1580054400,"t1s":0,"t2s":1,"t1":8,"t2":3}],[3730,{"d":20,"dB":1578760200,"t1s":1,"t2s":2,"t1":3,"t2":18}],[3750,{"d":18,"dB":1576418400,"t1s":0,"t2s":1,"t1":3,"t2":41}],[3759,{"d":17,"dB":1575835200,"t1s":3,"t2s":1,"t1":9,"t2":3}],[3785,{"d":15,"dB":1575140400,"t1s":1,"t2s":1,"t1":68,"t2":3}],[3790,{"d":14,"dB":1574604000,"t1s":2,"t2s":1,"t1":3,"t2":13}],[3804,{"d":13,"dB":1573242300,"t1s":1,"t2s":1,"t1":19,"t2":3}],[3810,{"d":12,"dB":1572789600,"t1s":2,"t2s":0,"t1":3,"t2":8}],[3819,{"d":11,"dB":1572103800,"t1s":3,"t2s":0,"t1":12,"t2":3}],[3829,{"d":10,"dB":1571576400,"t1s":0,"t2s":1,"t1":3,"t2":4}],[3847,{"d":9,"dB":1570298400,"t1s":1,"t2s":3,"t1":10,"t2":3}],[3849,{"d":8,"dB":1569684600,"t1s":0,"t2s":1,"t1":3,"t2":2}],[3858,{"d":7,"dB":1569430800,"t1s":1,"t2s":3,"t1":42,"t2":3}],[3869,{"d":6,"dB":1569088800,"t1s":2,"t2s":2,"t1":3,"t2":75}],[3879,{"d":5,"dB":1568484000,"t1s":2,"t2s":0,"t1":3,"t2":11}],[6148,{"d":6,"dB":1601816400,"t1s":3,"t2s":0,"t1":3,"t2":7}],[6159,{"d":5,"dB":1601204400,"t1s":0,"t2s":0,"t1":3,"t2":19}],[6169,{"d":4,"dB":1600527600,"t1s":2,"t2s":1,"t1":104,"t2":3}],[6179,{"d":3,"dB":1599850800,"t1s":0,"t2s":0,"t1":3,"t2":18}],[6199,{"d":1,"dB":1598029200,"t1s":0,"t2s":0,"t1":3,"t2":8}],[3654,{"d":28,"dB":1583607600,"t1s":1,"t2s":0,"t1":68,"t2":75}],[3711,{"d":22,"dB":1580583600,"t1s":3,"t2s":0,"t1":7,"t2":75}],[3718,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":75,"t2":42}],[3737,{"d":20,"dB":1578769200,"t1s":2,"t2s":5,"t1":10,"t2":75}],[3741,{"d":19,"dB":1576957500,"t1s":4,"t2s":0,"t1":15,"t2":75}],[3751,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":75,"t2":19}],[3758,{"d":17,"dB":1575655200,"t1s":1,"t2s":0,"t1":12,"t2":75}],[3771,{"d":16,"dB":1575396000,"t1s":5,"t2s":0,"t1":75,"t2":41}],[3779,{"d":15,"dB":1575056700,"t1s":2,"t2s":1,"t1":9,"t2":75}],[3791,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":75,"t2":8}],[3798,{"d":13,"dB":1573317000,"t1s":1,"t2s":2,"t1":75,"t2":2}],[3808,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":42,"t2":75}],[3818,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":75,"t2":7}],[3853,{"d":8,"dB":1569693600,"t1s":4,"t2s":1,"t1":13,"t2":75}],[3859,{"d":7,"dB":1569430800,"t1s":2,"t2s":2,"t1":75,"t2":18}],[3880,{"d":5,"dB":1568484000,"t1s":0,"t2s":0,"t1":75,"t2":20}],[3745,{"d":19,"dB":1576957500,"t1s":1,"t2s":1,"t1":68,"t2":18}],[3757,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":10,"t2":68}],[3794,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":11,"t2":68}],[3814,{"d":12,"dB":1572796800,"t1s":2,"t2s":0,"t1":19,"t2":68}],[3824,{"d":11,"dB":1572112800,"t1s":0,"t2s":0,"t1":68,"t2":67}],[3836,{"d":10,"dB":1571508000,"t1s":1,"t2s":0,"t1":68,"t2":15}],[3845,{"d":9,"dB":1570374000,"t1s":0,"t2s":1,"t1":20,"t2":68}],[3856,{"d":8,"dB":1569693600,"t1s":1,"t2s":2,"t1":68,"t2":7}],[3865,{"d":7,"dB":1569438000,"t1s":0,"t2s":2,"t1":2,"t2":68}],[3875,{"d":6,"dB":1569088800,"t1s":0,"t2s":0,"t1":68,"t2":13}],[3885,{"d":5,"dB":1568552400,"t1s":1,"t2s":0,"t1":8,"t2":68}],[6149,{"d":6,"dB":1601816400,"t1s":1,"t2s":0,"t1":75,"t2":13}],[6168,{"d":4,"dB":1600606800,"t1s":3,"t2s":2,"t1":75,"t2":6}],[3696,{"d":24,"dB":1581188400,"t1s":0,"t2s":0,"t1":20,"t2":75}],[6197,{"d":2,"dB":1598814000,"t1s":2,"t2s":3,"t1":75,"t2":9}],[3673,{"d":26,"dB":1582308000,"t1s":2,"t2s":2,"t1":19,"t2":75}],[3807,{"d":13,"dB":1573326000,"t1s":4,"t2s":1,"t1":41,"t2":67}],[3835,{"d":10,"dB":1571508000,"t1s":1,"t2s":1,"t1":67,"t2":42}],[6185,{"d":3,"dB":1600002000,"t1s":2,"t2s":4,"t1":67,"t2":20}],[6194,{"d":2,"dB":1598792400,"t1s":2,"t2s":1,"t1":8,"t2":67}],[6206,{"d":1,"dB":1598187600,"t1s":4,"t2s":0,"t1":67,"t2":75}],[6180,{"d":3,"dB":1600002000,"t1s":0,"t2s":2,"t1":7,"t2":75}],[3839,{"d":9,"dB":1570298400,"t1s":2,"t2s":0,"t1":75,"t2":11}],[3653,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":19,"t2":13}],[3687,{"d":25,"dB":1581793200,"t1s":0,"t2s":2,"t1":10,"t2":19}],[3701,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":68,"t2":19}],[3713,{"d":22,"dB":1580652000,"t1s":2,"t2s":1,"t1":19,"t2":18}],[3725,{"d":21,"dB":1579895100,"t1s":1,"t2s":1,"t1":19,"t2":20}],[3793,{"d":14,"dB":1574526600,"t1s":2,"t2s":1,"t1":18,"t2":19}],[3834,{"d":10,"dB":1571424300,"t1s":1,"t2s":4,"t1":19,"t2":2}],[3736,{"d":20,"dB":1578837600,"t1s":0,"t2s":2,"t1":4,"t2":8}],[3796,{"d":14,"dB":1574611200,"t1s":0,"t2s":0,"t1":4,"t2":15}],[3803,{"d":13,"dB":1573401600,"t1s":2,"t2s":3,"t1":8,"t2":4}],[3669,{"d":26,"dB":1582398000,"t1s":1,"t2s":1,"t1":7,"t2":13}],[3690,{"d":24,"dB":1581188400,"t1s":3,"t2s":3,"t1":7,"t2":8}],[3723,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":15,"t2":7}],[3731,{"d":20,"dB":1578844800,"t1s":1,"t2s":0,"t1":7,"t2":12}],[6160,{"d":5,"dB":1601211600,"t1s":2,"t2s":2,"t1":7,"t2":15}],[6177,{"d":4,"dB":1600606800,"t1s":1,"t2s":0,"t1":41,"t2":7}],[6188,{"d":2,"dB":1598641200,"t1s":4,"t2s":1,"t1":18,"t2":7}],[3649,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":7,"t2":10}],[3666,{"d":27,"dB":1582993800,"t1s":4,"t2s":0,"t1":2,"t2":7}],[3792,{"d":14,"dB":1574535600,"t1s":2,"t2s":1,"t1":7,"t2":20}],[3830,{"d":10,"dB":1571499000,"t1s":0,"t2s":0,"t1":18,"t2":7}],[3738,{"d":19,"dB":1576957500,"t1s":2,"t2s":2,"t1":7,"t2":11}],[3748,{"d":18,"dB":1576350000,"t1s":1,"t2s":1,"t1":42,"t2":7}],[3762,{"d":17,"dB":1575820800,"t1s":1,"t2s":0,"t1":8,"t2":7}],[3772,{"d":16,"dB":1575482400,"t1s":2,"t2s":2,"t1":7,"t2":15}],[3778,{"d":15,"dB":1575140400,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3811,{"d":12,"dB":1572637500,"t1s":2,"t2s":1,"t1":7,"t2":2}],[3860,{"d":7,"dB":1569344400,"t1s":0,"t2s":0,"t1":7,"t2":9}],[3873,{"d":6,"dB":1569088800,"t1s":2,"t2s":1,"t1":19,"t2":7}],[3801,{"d":13,"dB":1573326000,"t1s":1,"t2s":0,"t1":13,"t2":7}],[3840,{"d":9,"dB":1570298400,"t1s":1,"t2s":0,"t1":7,"t2":41}],[4310,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":56,"t2":51}],[4409,{"d":28,"dB":1592060400,"t1s":0,"t2s":1,"t1":51,"t2":64}],[4431,{"d":26,"dB":1583006400,"t1s":0,"t2s":0,"t1":86,"t2":51}],[4488,{"d":20,"dB":1579455000,"t1s":1,"t2s":1,"t1":57,"t2":51}],[4531,{"d":16,"dB":1575826200,"t1s":3,"t2s":2,"t1":47,"t2":51}],[4541,{"d":15,"dB":1575057600,"t1s":0,"t2s":0,"t1":51,"t2":74}],[4558,{"d":14,"dB":1574616600,"t1s":1,"t2s":3,"t1":64,"t2":51}],[4561,{"d":13,"dB":1573329600,"t1s":4,"t2s":1,"t1":59,"t2":51}],[4568,{"d":12,"dB":1572802200,"t1s":0,"t2s":1,"t1":51,"t2":58}],[4590,{"d":10,"dB":1572174000,"t1s":0,"t2s":1,"t1":51,"t2":52}],[4609,{"d":8,"dB":1570363200,"t1s":1,"t2s":0,"t1":51,"t2":57}],[4621,{"d":7,"dB":1569758400,"t1s":2,"t2s":0,"t1":66,"t2":51}],[4639,{"d":5,"dB":1569083400,"t1s":0,"t2s":0,"t1":54,"t2":51}],[4650,{"d":4,"dB":1568556000,"t1s":0,"t2s":2,"t1":51,"t2":86}],[4813,{"d":26,"dB":1582311600,"t1s":1,"t2s":2,"t1":89,"t2":97}],[4825,{"d":25,"dB":1581706800,"t1s":0,"t2s":3,"t1":97,"t2":88}],[4834,{"d":24,"dB":1581102000,"t1s":2,"t2s":0,"t1":98,"t2":97}],[4844,{"d":23,"dB":1580846700,"t1s":1,"t2s":2,"t1":97,"t2":100}],[4850,{"d":22,"dB":1580497200,"t1s":3,"t2s":1,"t1":92,"t2":97}],[4865,{"d":21,"dB":1579892400,"t1s":2,"t2s":0,"t1":97,"t2":14}],[4869,{"d":20,"dB":1578682800,"t1s":1,"t2s":0,"t1":90,"t2":97}],[4883,{"d":19,"dB":1576868400,"t1s":1,"t2s":0,"t1":97,"t2":102}],[4892,{"d":18,"dB":1576263600,"t1s":3,"t2s":2,"t1":103,"t2":97}],[4908,{"d":16,"dB":1575054000,"t1s":2,"t2s":2,"t1":101,"t2":97}],[4925,{"d":15,"dB":1574449200,"t1s":0,"t2s":1,"t1":97,"t2":91}],[4934,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":97,"t2":107}],[4939,{"d":13,"dB":1572634800,"t1s":2,"t2s":1,"t1":5,"t2":97}],[4953,{"d":12,"dB":1572026400,"t1s":1,"t2s":1,"t1":97,"t2":93}],[4963,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":94,"t2":97}],[4974,{"d":10,"dB":1570473900,"t1s":1,"t2s":4,"t1":97,"t2":104}],[4987,{"d":9,"dB":1569607200,"t1s":1,"t2s":2,"t1":43,"t2":97}],[4994,{"d":8,"dB":1569002400,"t1s":2,"t2s":2,"t1":97,"t2":89}],[4998,{"d":7,"dB":1568397600,"t1s":0,"t2s":0,"t1":88,"t2":97}],[4800,{"d":27,"dB":1582916400,"t1s":0,"t2s":3,"t1":93,"t2":89}],[4826,{"d":25,"dB":1581706800,"t1s":1,"t2s":0,"t1":107,"t2":89}],[4832,{"d":24,"dB":1581102000,"t1s":1,"t2s":1,"t1":89,"t2":5}],[4840,{"d":23,"dB":1580759100,"t1s":1,"t2s":1,"t1":94,"t2":89}],[4852,{"d":22,"dB":1580497200,"t1s":0,"t2s":0,"t1":89,"t2":104}],[4862,{"d":21,"dB":1580154300,"t1s":1,"t2s":0,"t1":89,"t2":43}],[4885,{"d":19,"dB":1576868400,"t1s":1,"t2s":1,"t1":89,"t2":90}],[4890,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":92,"t2":89}],[4915,{"d":16,"dB":1575054000,"t1s":1,"t2s":2,"t1":100,"t2":89}],[4922,{"d":15,"dB":1574711100,"t1s":4,"t2s":0,"t1":89,"t2":14}],[4936,{"d":14,"dB":1573239600,"t1s":2,"t2s":0,"t1":102,"t2":89}],[4957,{"d":12,"dB":1572291900,"t1s":0,"t2s":0,"t1":91,"t2":89}],[4968,{"d":10,"dB":1570279500,"t1s":2,"t2s":0,"t1":101,"t2":89}],[4983,{"d":9,"dB":1569607200,"t1s":0,"t2s":1,"t1":89,"t2":93}],[5002,{"d":7,"dB":1568397600,"t1s":0,"t2s":0,"t1":89,"t2":107}],[6535,{"d":6,"dB":1601744400,"t1s":1,"t2s":1,"t1":129,"t2":17}],[4312,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":47,"t2":62}],[4318,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":57,"t2":47}],[4341,{"d":35,"dB":1594315800,"t1s":0,"t2s":0,"t1":66,"t2":47}],[4351,{"d":34,"dB":1593961200,"t1s":0,"t2s":1,"t1":56,"t2":47}],[4361,{"d":33,"dB":1593543600,"t1s":0,"t2s":3,"t1":47,"t2":55}],[4375,{"d":32,"dB":1593279000,"t1s":2,"t2s":1,"t1":85,"t2":47}],[4381,{"d":31,"dB":1592856000,"t1s":0,"t2s":0,"t1":47,"t2":86}],[4394,{"d":30,"dB":1592587800,"t1s":1,"t2s":1,"t1":87,"t2":47}],[4399,{"d":29,"dB":1592337600,"t1s":2,"t2s":0,"t1":59,"t2":47}],[4412,{"d":28,"dB":1592069400,"t1s":1,"t2s":2,"t1":47,"t2":74}],[4427,{"d":27,"dB":1583688600,"t1s":1,"t2s":2,"t1":64,"t2":47}],[4441,{"d":25,"dB":1582372800,"t1s":1,"t2s":0,"t1":51,"t2":47}],[4452,{"d":24,"dB":1581858000,"t1s":0,"t2s":0,"t1":47,"t2":60}],[4463,{"d":23,"dB":1581163200,"t1s":2,"t2s":0,"t1":63,"t2":47}],[4794,{"d":28,"dB":1583783100,"t1s":1,"t2s":0,"t1":104,"t2":97}],[4805,{"d":27,"dB":1583178300,"t1s":0,"t2s":2,"t1":107,"t2":104}],[4820,{"d":25,"dB":1581968700,"t1s":3,"t2s":2,"t1":93,"t2":104}],[4833,{"d":24,"dB":1581363900,"t1s":0,"t2s":0,"t1":104,"t2":94}],[4841,{"d":23,"dB":1580846700,"t1s":1,"t2s":0,"t1":104,"t2":43}],[4863,{"d":21,"dB":1579960800,"t1s":1,"t2s":1,"t1":104,"t2":92}],[4871,{"d":20,"dB":1579368600,"t1s":1,"t2s":1,"t1":14,"t2":104}],[4882,{"d":19,"dB":1576936800,"t1s":1,"t2s":0,"t1":104,"t2":98}],[4888,{"d":18,"dB":1576332000,"t1s":1,"t2s":2,"t1":88,"t2":104}],[4917,{"d":16,"dB":1575054000,"t1s":2,"t2s":0,"t1":91,"t2":104}],[4923,{"d":15,"dB":1574517600,"t1s":4,"t2s":0,"t1":104,"t2":102}],[4935,{"d":14,"dB":1573501500,"t1s":1,"t2s":2,"t1":100,"t2":104}],[4952,{"d":12,"dB":1572026400,"t1s":0,"t2s":0,"t1":17,"t2":104}],[4966,{"d":11,"dB":1571683500,"t1s":0,"t2s":0,"t1":104,"t2":101}],[4984,{"d":9,"dB":1569674700,"t1s":2,"t2s":1,"t1":104,"t2":107}],[4989,{"d":8,"dB":1569070800,"t1s":0,"t2s":2,"t1":5,"t2":104}],[5003,{"d":7,"dB":1568659500,"t1s":1,"t2s":0,"t1":104,"t2":93}],[6150,{"d":6,"dB":1601737200,"t1s":2,"t2s":0,"t1":104,"t2":4}],[6165,{"d":5,"dB":1601211600,"t1s":1,"t2s":1,"t1":67,"t2":104}],[6182,{"d":3,"dB":1600002000,"t1s":2,"t2s":3,"t1":6,"t2":104}],[6190,{"d":2,"dB":1599764400,"t1s":1,"t2s":0,"t1":104,"t2":2}],[6205,{"d":1,"dB":1598194800,"t1s":2,"t2s":1,"t1":19,"t2":104}],[4814,{"d":26,"dB":1582380000,"t1s":1,"t2s":4,"t1":104,"t2":5}],[4903,{"d":17,"dB":1575403200,"t1s":3,"t2s":0,"t1":104,"t2":90}],[3667,{"d":27,"dB":1583002800,"t1s":0,"t2s":2,"t1":10,"t2":20}],[3670,{"d":26,"dB":1582398000,"t1s":3,"t2s":0,"t1":12,"t2":10}],[3691,{"d":24,"dB":1581179400,"t1s":1,"t2s":0,"t1":9,"t2":10}],[3707,{"d":23,"dB":1580925600,"t1s":0,"t2s":1,"t1":10,"t2":41}],[3708,{"d":22,"dB":1580583600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3720,{"d":21,"dB":1580047200,"t1s":3,"t2s":0,"t1":18,"t2":10}],[3743,{"d":19,"dB":1576957500,"t1s":3,"t2s":0,"t1":19,"t2":10}],[3767,{"d":17,"dB":1575745200,"t1s":4,"t2s":2,"t1":41,"t2":10}],[3777,{"d":16,"dB":1575482400,"t1s":1,"t2s":2,"t1":10,"t2":13}],[3782,{"d":15,"dB":1575208800,"t1s":2,"t2s":1,"t1":8,"t2":10}],[3797,{"d":14,"dB":1574625600,"t1s":0,"t2s":2,"t1":10,"t2":9}],[3802,{"d":13,"dB":1573401600,"t1s":3,"t2s":0,"t1":15,"t2":10}],[3817,{"d":12,"dB":1572721200,"t1s":2,"t2s":3,"t1":10,"t2":18}],[3825,{"d":11,"dB":1572184800,"t1s":3,"t2s":2,"t1":20,"t2":10}],[3837,{"d":10,"dB":1571508000,"t1s":2,"t2s":1,"t1":10,"t2":12}],[3852,{"d":8,"dB":1569693600,"t1s":2,"t2s":2,"t1":11,"t2":10}],[3887,{"d":5,"dB":1568559600,"t1s":2,"t2s":2,"t1":4,"t2":10}],[3763,{"d":17,"dB":1575745200,"t1s":4,"t2s":1,"t1":19,"t2":11}],[3827,{"d":11,"dB":1572112800,"t1s":1,"t2s":0,"t1":41,"t2":19}],[3843,{"d":9,"dB":1570298400,"t1s":1,"t2s":0,"t1":8,"t2":19}],[3854,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":19,"t2":12}],[3862,{"d":7,"dB":1569351600,"t1s":3,"t2s":1,"t1":13,"t2":19}],[3884,{"d":5,"dB":1568484000,"t1s":2,"t2s":1,"t1":15,"t2":19}],[3651,{"d":28,"dB":1583524800,"t1s":2,"t2s":2,"t1":9,"t2":42}],[3658,{"d":27,"dB":1583002800,"t1s":0,"t2s":1,"t1":42,"t2":11}],[3677,{"d":26,"dB":1582398000,"t1s":0,"t2s":0,"t1":41,"t2":42}],[3678,{"d":25,"dB":1581784200,"t1s":4,"t2s":4,"t1":42,"t2":2}],[3688,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":42,"t2":13}],[3704,{"d":23,"dB":1580925600,"t1s":0,"t2s":0,"t1":18,"t2":42}],[3760,{"d":17,"dB":1575745200,"t1s":3,"t2s":0,"t1":13,"t2":42}],[3781,{"d":15,"dB":1575140400,"t1s":4,"t2s":2,"t1":15,"t2":42}],[3788,{"d":14,"dB":1574535600,"t1s":0,"t2s":4,"t1":42,"t2":41}],[3806,{"d":13,"dB":1573394400,"t1s":3,"t2s":1,"t1":20,"t2":42}],[3826,{"d":11,"dB":1572192000,"t1s":2,"t2s":2,"t1":4,"t2":42}],[3838,{"d":9,"dB":1570214700,"t1s":3,"t2s":1,"t1":42,"t2":9}],[3872,{"d":6,"dB":1569088800,"t1s":1,"t2s":2,"t1":11,"t2":42}],[3878,{"d":5,"dB":1568400300,"t1s":2,"t2s":2,"t1":42,"t2":18}],[5457,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":123,"t2":124}],[5466,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":124,"t2":113}],[5487,{"d":35,"dB":1595525400,"t1s":2,"t2s":1,"t1":124,"t2":115}],[5494,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":111,"t2":124}],[5507,{"d":33,"dB":1594842300,"t1s":0,"t2s":0,"t1":124,"t2":121}],[5517,{"d":32,"dB":1594575000,"t1s":1,"t2s":3,"t1":124,"t2":120}],[5525,{"d":31,"dB":1594315800,"t1s":0,"t2s":3,"t1":118,"t2":124}],[5537,{"d":30,"dB":1593970200,"t1s":2,"t2s":2,"t1":124,"t2":117}],[5544,{"d":29,"dB":1593719100,"t1s":0,"t2s":2,"t1":116,"t2":124}],[5557,{"d":28,"dB":1593365400,"t1s":2,"t2s":3,"t1":124,"t2":119}],[5566,{"d":27,"dB":1592941500,"t1s":1,"t2s":0,"t1":122,"t2":124}],[5577,{"d":26,"dB":1583686800,"t1s":0,"t2s":0,"t1":124,"t2":110}],[5579,{"d":25,"dB":1582380000,"t1s":1,"t2s":1,"t1":127,"t2":124}],[5597,{"d":24,"dB":1581852600,"t1s":0,"t2s":0,"t1":124,"t2":126}],[5598,{"d":23,"dB":1581256800,"t1s":1,"t2s":1,"t1":109,"t2":124}],[5617,{"d":22,"dB":1580672700,"t1s":0,"t2s":2,"t1":124,"t2":112}],[5622,{"d":21,"dB":1580047200,"t1s":2,"t2s":0,"t1":114,"t2":124}],[5635,{"d":20,"dB":1579433400,"t1s":3,"t2s":2,"t1":125,"t2":124}],[5646,{"d":19,"dB":1578828600,"t1s":3,"t2s":0,"t1":124,"t2":123}],[5653,{"d":18,"dB":1578330000,"t1s":0,"t2s":1,"t1":113,"t2":124}],[5667,{"d":17,"dB":1576936800,"t1s":2,"t2s":1,"t1":124,"t2":108}],[5673,{"d":16,"dB":1576418400,"t1s":3,"t2s":1,"t1":115,"t2":124}],[5687,{"d":15,"dB":1575738000,"t1s":1,"t2s":1,"t1":124,"t2":111}],[5694,{"d":14,"dB":1575208800,"t1s":3,"t2s":0,"t1":121,"t2":124}],[5717,{"d":12,"dB":1573394400,"t1s":0,"t2s":0,"t1":124,"t2":118}],[5738,{"d":9,"dB":1572184800,"t1s":7,"t2s":1,"t1":119,"t2":124}],[5777,{"d":6,"dB":1569762000,"t1s":1,"t2s":0,"t1":124,"t2":127}],[5787,{"d":5,"dB":1569344400,"t1s":0,"t2s":0,"t1":126,"t2":124}],[5797,{"d":4,"dB":1569070800,"t1s":0,"t2s":1,"t1":124,"t2":109}],[5801,{"d":3,"dB":1568486700,"t1s":1,"t2s":0,"t1":112,"t2":124}],[4806,{"d":27,"dB":1582916400,"t1s":0,"t2s":0,"t1":91,"t2":88}],[4808,{"d":26,"dB":1582311600,"t1s":2,"t2s":0,"t1":88,"t2":103}],[4828,{"d":24,"dB":1581102000,"t1s":2,"t2s":3,"t1":88,"t2":101}],[4845,{"d":23,"dB":1580846700,"t1s":2,"t2s":3,"t1":107,"t2":88}],[4848,{"d":22,"dB":1580497200,"t1s":0,"t2s":1,"t1":88,"t2":93}],[4859,{"d":21,"dB":1579892400,"t1s":0,"t2s":1,"t1":5,"t2":88}],[4868,{"d":20,"dB":1578682800,"t1s":3,"t2s":1,"t1":88,"t2":94}],[4886,{"d":19,"dB":1576940400,"t1s":2,"t2s":1,"t1":43,"t2":88}],[4899,{"d":17,"dB":1575403200,"t1s":0,"t2s":1,"t1":98,"t2":88}],[4909,{"d":16,"dB":1575054000,"t1s":0,"t2s":2,"t1":90,"t2":88}],[4918,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":88,"t2":92}],[4930,{"d":14,"dB":1573307100,"t1s":1,"t2s":1,"t1":14,"t2":88}],[4938,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":88,"t2":100}],[4956,{"d":12,"dB":1572026400,"t1s":0,"t2s":2,"t1":102,"t2":88}],[4958,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":88,"t2":17}],[4978,{"d":9,"dB":1569607200,"t1s":2,"t2s":0,"t1":88,"t2":91}],[3650,{"d":28,"dB":1583697600,"t1s":1,"t2s":0,"t1":12,"t2":18}],[3664,{"d":27,"dB":1583071200,"t1s":0,"t2s":1,"t1":8,"t2":12}],[3699,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":12,"t2":20}],[3717,{"d":22,"dB":1580583600,"t1s":1,"t2s":2,"t1":41,"t2":12}],[3719,{"d":21,"dB":1580068800,"t1s":0,"t2s":2,"t1":12,"t2":2}],[3740,{"d":19,"dB":1576957500,"t1s":5,"t2s":1,"t1":13,"t2":12}],[3752,{"d":18,"dB":1576266300,"t1s":2,"t2s":1,"t1":12,"t2":15}],[3773,{"d":16,"dB":1575403500,"t1s":0,"t2s":1,"t1":18,"t2":12}],[3795,{"d":14,"dB":1574451900,"t1s":2,"t2s":0,"t1":2,"t2":12}],[3799,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":12,"t2":11}],[3812,{"d":12,"dB":1572712200,"t1s":2,"t2s":1,"t1":9,"t2":12}],[3861,{"d":7,"dB":1569430800,"t1s":2,"t2s":0,"t1":12,"t2":41}],[3876,{"d":6,"dB":1569157200,"t1s":1,"t2s":1,"t1":20,"t2":12}],[6156,{"d":6,"dB":1601816400,"t1s":0,"t2s":3,"t1":41,"t2":12}],[6161,{"d":5,"dB":1601060400,"t1s":2,"t2s":0,"t1":12,"t2":8}],[6171,{"d":4,"dB":1600628400,"t1s":1,"t2s":1,"t1":9,"t2":12}],[6181,{"d":3,"dB":1599994800,"t1s":1,"t2s":0,"t1":12,"t2":11}],[6191,{"d":2,"dB":1598785200,"t1s":0,"t2s":1,"t1":68,"t2":12}],[6201,{"d":1,"dB":1598122800,"t1s":1,"t2s":1,"t1":12,"t2":20}],[5541,{"d":29,"dB":1593546300,"t1s":1,"t2s":3,"t1":117,"t2":115}],[5548,{"d":28,"dB":1593270900,"t1s":2,"t2s":2,"t1":109,"t2":117}],[5561,{"d":27,"dB":1592941500,"t1s":1,"t2s":4,"t1":117,"t2":114}],[5572,{"d":26,"dB":1583676000,"t1s":1,"t2s":2,"t1":125,"t2":117}],[5582,{"d":25,"dB":1582457400,"t1s":2,"t2s":3,"t1":117,"t2":121}],[5589,{"d":24,"dB":1581786000,"t1s":0,"t2s":3,"t1":127,"t2":117}],[5600,{"d":23,"dB":1581256800,"t1s":1,"t2s":0,"t1":117,"t2":108}],[3681,{"d":25,"dB":1581883200,"t1s":1,"t2s":2,"t1":12,"t2":9}],[4802,{"d":27,"dB":1582984800,"t1s":1,"t2s":2,"t1":6,"t2":90}],[6151,{"d":6,"dB":1601816400,"t1s":3,"t2s":1,"t1":11,"t2":6}],[6195,{"d":2,"dB":1598792400,"t1s":2,"t2s":0,"t1":4,"t2":6}],[6202,{"d":1,"dB":1598187600,"t1s":3,"t2s":1,"t1":6,"t2":41}],[6162,{"d":5,"dB":1601218800,"t1s":1,"t2s":1,"t1":6,"t2":18}],[3735,{"d":20,"dB":1578685500,"t1s":0,"t2s":1,"t1":20,"t2":9}],[3753,{"d":18,"dB":1576425600,"t1s":0,"t2s":1,"t1":18,"t2":20}],[3774,{"d":16,"dB":1575482400,"t1s":0,"t2s":1,"t1":11,"t2":20}],[3833,{"d":10,"dB":1571583600,"t1s":3,"t2s":2,"t1":13,"t2":20}],[3851,{"d":8,"dB":1569783600,"t1s":1,"t2s":1,"t1":9,"t2":20}],[3864,{"d":7,"dB":1569430800,"t1s":1,"t2s":0,"t1":8,"t2":20}],[3657,{"d":28,"dB":1584561600,"dl":1,"t1s":null,"t2s":null,"t1":41,"t2":2}],[4914,{"d":16,"dB":1575054000,"t1s":2,"t2s":0,"t1":17,"t2":107}],[4995,{"d":8,"dB":1569002400,"t1s":0,"t2s":2,"t1":107,"t2":92}],[3728,{"d":20,"dB":1578769200,"t1s":1,"t2s":2,"t1":42,"t2":15}],[3744,{"d":19,"dB":1576957500,"t1s":4,"t2s":1,"t1":2,"t2":42}],[3768,{"d":16,"dB":1579111200,"t1s":1,"t2s":1,"t1":42,"t2":68}],[4872,{"d":20,"dB":1578682800,"t1s":0,"t2s":1,"t1":103,"t2":101}],[4919,{"d":15,"dB":1574449200,"t1s":3,"t2s":3,"t1":5,"t2":103}],[4942,{"d":13,"dB":1572703200,"t1s":0,"t2s":1,"t1":92,"t2":103}],[4950,{"d":12,"dB":1572026400,"t1s":1,"t2s":0,"t1":103,"t2":98}],[4967,{"d":11,"dB":1571421600,"t1s":2,"t2s":1,"t1":43,"t2":103}],[5005,{"d":7,"dB":1568397600,"t1s":4,"t2s":1,"t1":100,"t2":103}],[4791,{"d":28,"dB":1583521200,"t1s":2,"t2s":0,"t1":92,"t2":102}],[4803,{"d":27,"dB":1582916400,"t1s":1,"t2s":2,"t1":17,"t2":92}],[4810,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":92,"t2":107}],[4830,{"d":24,"dB":1581102000,"t1s":3,"t2s":1,"t1":92,"t2":91}],[4838,{"d":23,"dB":1580846700,"t1s":0,"t2s":0,"t1":101,"t2":92}],[4870,{"d":20,"dB":1578682800,"t1s":3,"t2s":2,"t1":92,"t2":43}],[4907,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":94,"t2":92}],[4910,{"d":16,"dB":1575054000,"t1s":1,"t2s":0,"t1":92,"t2":98}],[4929,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":90,"t2":92}],[4949,{"d":12,"dB":1572026400,"t1s":1,"t2s":2,"t1":14,"t2":92}],[4962,{"d":11,"dB":1571421600,"t1s":0,"t2s":1,"t1":92,"t2":100}],[4976,{"d":10,"dB":1570212000,"t1s":4,"t2s":0,"t1":102,"t2":92}],[4980,{"d":9,"dB":1569607200,"t1s":2,"t2s":2,"t1":92,"t2":17}],[3672,{"d":26,"dB":1582314300,"t1s":0,"t2s":2,"t1":11,"t2":18}],[3682,{"d":25,"dB":1581861600,"t1s":1,"t2s":1,"t1":18,"t2":41}],[3695,{"d":24,"dB":1581278700,"t1s":4,"t2s":2,"t1":2,"t2":18}],[4517,{"d":18,"dB":1576949400,"t1s":1,"t2s":0,"t1":64,"t2":58}],[4526,{"d":17,"dB":1576431000,"t1s":1,"t2s":2,"t1":55,"t2":64}],[4537,{"d":16,"dB":1575662400,"t1s":0,"t2s":0,"t1":64,"t2":54}],[4547,{"d":15,"dB":1575144000,"t1s":2,"t2s":1,"t1":49,"t2":64}],[4564,{"d":13,"dB":1573383600,"t1s":3,"t2s":1,"t1":87,"t2":64}],[4577,{"d":12,"dB":1572786000,"t1s":0,"t2s":0,"t1":64,"t2":57}],[4581,{"d":11,"dB":1572544800,"t1s":2,"t2s":1,"t1":66,"t2":64}],[4597,{"d":10,"dB":1572030000,"t1s":4,"t2s":1,"t1":64,"t2":48}],[4602,{"d":9,"dB":1571580000,"t1s":0,"t2s":1,"t1":56,"t2":64}],[4612,{"d":8,"dB":1570302000,"t1s":2,"t2s":1,"t1":85,"t2":64}],[4627,{"d":7,"dB":1569610800,"t1s":5,"t2s":1,"t1":64,"t2":60}],[4628,{"d":6,"dB":1569351600,"t1s":2,"t2s":1,"t1":59,"t2":64}],[4647,{"d":5,"dB":1569063600,"t1s":2,"t2s":0,"t1":64,"t2":74}],[4652,{"d":4,"dB":1568469600,"t1s":0,"t2s":3,"t1":47,"t2":64}],[6157,{"d":6,"dB":1601838000,"t1s":1,"t2s":1,"t1":18,"t2":9}],[6170,{"d":4,"dB":1600455600,"t1s":0,"t2s":0,"t1":18,"t2":67}],[6204,{"d":1,"dB":1600196400,"t1s":2,"t2s":1,"t1":15,"t2":18}],[3820,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":18,"t2":11}],[3850,{"d":8,"dB":1569670200,"t1s":0,"t2s":1,"t1":18,"t2":8}],[3870,{"d":6,"dB":1569178800,"t1s":0,"t2s":1,"t1":18,"t2":2}],[3787,{"d":15,"dB":1575131400,"t1s":1,"t2s":2,"t1":41,"t2":18}],[3800,{"d":13,"dB":1573416000,"t1s":2,"t2s":1,"t1":9,"t2":18}],[4793,{"d":28,"dB":1583521200,"t1s":1,"t2s":0,"t1":89,"t2":101}],[4875,{"d":20,"dB":1578682800,"t1s":0,"t2s":1,"t1":98,"t2":89}],[4944,{"d":13,"dB":1572896700,"t1s":1,"t2s":1,"t1":89,"t2":17}],[3671,{"d":26,"dB":1582389000,"t1s":1,"t2s":3,"t1":9,"t2":8}],[3754,{"d":18,"dB":1576341000,"t1s":1,"t2s":1,"t1":11,"t2":9}],[3823,{"d":11,"dB":1572206400,"t1s":4,"t2s":0,"t1":2,"t2":9}],[3871,{"d":6,"dB":1569079800,"t1s":1,"t2s":1,"t1":9,"t2":15}],[3883,{"d":5,"dB":1568574000,"t1s":3,"t2s":4,"t1":13,"t2":9}],[6163,{"d":5,"dB":1601146800,"t1s":1,"t2s":1,"t1":9,"t2":11}],[6187,{"d":3,"dB":1600023600,"t1s":0,"t2s":1,"t1":2,"t2":9}],[6198,{"d":1,"dB":1600369200,"t1s":0,"t2s":2,"t1":9,"t2":4}],[3831,{"d":10,"dB":1571598000,"t1s":2,"t2s":0,"t1":9,"t2":41}],[4804,{"d":27,"dB":1582916400,"t1s":1,"t2s":1,"t1":102,"t2":100}],[4812,{"d":26,"dB":1582311600,"t1s":1,"t2s":1,"t1":14,"t2":102}],[4827,{"d":25,"dB":1581706800,"t1s":3,"t2s":2,"t1":91,"t2":102}],[4836,{"d":24,"dB":1581102000,"t1s":1,"t2s":0,"t1":102,"t2":103}],[4843,{"d":23,"dB":1580846700,"t1s":1,"t2s":1,"t1":17,"t2":102}],[4858,{"d":21,"dB":1579892400,"t1s":2,"t2s":1,"t1":101,"t2":102}],[4877,{"d":20,"dB":1578682800,"t1s":1,"t2s":1,"t1":102,"t2":107}],[4896,{"d":18,"dB":1576263600,"t1s":1,"t2s":1,"t1":102,"t2":94}],[4905,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":93,"t2":102}],[4916,{"d":16,"dB":1575120600,"t1s":0,"t2s":1,"t1":102,"t2":43}],[4946,{"d":13,"dB":1572703200,"t1s":0,"t2s":2,"t1":98,"t2":102}],[4960,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":90,"t2":102}],[4986,{"d":9,"dB":1569607200,"t1s":0,"t2s":2,"t1":100,"t2":102}],[4996,{"d":8,"dB":1569002400,"t1s":3,"t2s":1,"t1":102,"t2":14}],[5006,{"d":7,"dB":1568397600,"t1s":0,"t2s":0,"t1":102,"t2":91}],[3703,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":15,"t2":11}],[3726,{"d":21,"dB":1579978800,"t1s":0,"t2s":1,"t1":68,"t2":11}],[3732,{"d":20,"dB":1578769200,"t1s":1,"t2s":0,"t1":11,"t2":41}],[6172,{"d":4,"dB":1600606800,"t1s":2,"t2s":1,"t1":11,"t2":68}],[6193,{"d":2,"dB":1598792400,"t1s":0,"t2s":1,"t1":11,"t2":13}],[6207,{"d":1,"dB":1600282800,"t1s":1,"t2s":0,"t1":2,"t2":11}],[3684,{"d":25,"dB":1581793200,"t1s":0,"t2s":0,"t1":8,"t2":11}],[3813,{"d":12,"dB":1572721200,"t1s":2,"t2s":2,"t1":11,"t2":15}],[3832,{"d":10,"dB":1571508000,"t1s":1,"t2s":0,"t1":11,"t2":8}],[3866,{"d":7,"dB":1569430800,"t1s":0,"t2s":1,"t1":4,"t2":11}],[4796,{"d":28,"dB":1583521200,"t1s":2,"t2s":1,"t1":100,"t2":14}],[4824,{"d":25,"dB":1581775200,"t1s":0,"t2s":1,"t1":17,"t2":14}],[4847,{"d":23,"dB":1580846700,"t1s":0,"t2s":0,"t1":91,"t2":14}],[4851,{"d":22,"dB":1580497200,"t1s":1,"t2s":0,"t1":14,"t2":101}],[4940,{"d":13,"dB":1572634800,"t1s":1,"t2s":5,"t1":90,"t2":14}],[4965,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":98,"t2":14}],[4970,{"d":10,"dB":1570212000,"t1s":4,"t2s":1,"t1":14,"t2":100}],[5001,{"d":7,"dB":1568397600,"t1s":1,"t2s":1,"t1":14,"t2":17}],[4921,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":94,"t2":17}],[4933,{"d":14,"dB":1573239600,"t1s":0,"t2s":0,"t1":17,"t2":43}],[4973,{"d":10,"dB":1570212000,"t1s":2,"t2s":1,"t1":17,"t2":98}],[4993,{"d":8,"dB":1569002400,"t1s":3,"t2s":0,"t1":17,"t2":90}],[4797,{"d":28,"dB":1583521200,"t1s":1,"t2s":1,"t1":43,"t2":107}],[4807,{"d":27,"dB":1582916400,"t1s":0,"t2s":2,"t1":97,"t2":43}],[4817,{"d":26,"dB":1582573500,"t1s":3,"t2s":1,"t1":43,"t2":101}],[4819,{"d":25,"dB":1581706800,"t1s":0,"t2s":1,"t1":5,"t2":43}],[4837,{"d":24,"dB":1581102000,"t1s":2,"t2s":0,"t1":43,"t2":93}],[4857,{"d":22,"dB":1580497200,"t1s":1,"t2s":2,"t1":43,"t2":94}],[4891,{"d":18,"dB":1576525500,"t1s":0,"t2s":1,"t1":14,"t2":43}],[4902,{"d":17,"dB":1575403200,"t1s":1,"t2s":0,"t1":43,"t2":100}],[4975,{"d":10,"dB":1570212000,"t1s":1,"t2s":0,"t1":107,"t2":43}],[4927,{"d":15,"dB":1574449200,"t1s":0,"t2s":4,"t1":43,"t2":90}],[4947,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":43,"t2":91}],[4988,{"d":8,"dB":1569002400,"t1s":1,"t2s":2,"t1":101,"t2":43}],[3932,{"d":38,"dB":1595775600,"t1s":1,"t2s":3,"t1":22,"t2":36}],[3943,{"d":37,"dB":1595264400,"t1s":0,"t2s":1,"t1":77,"t2":22}],[3973,{"d":34,"dB":1594314000,"t1s":1,"t2s":1,"t1":22,"t2":35}],[3986,{"d":33,"dB":1594062000,"t1s":1,"t2s":0,"t1":24,"t2":22}],[4020,{"d":29,"dB":1583676000,"t1s":4,"t2s":0,"t1":25,"t2":22}],[4031,{"d":28,"dB":1583071200,"t1s":1,"t2s":1,"t1":22,"t2":31}],[4038,{"d":27,"dB":1582475400,"t1s":3,"t2s":2,"t1":39,"t2":22}],[4052,{"d":26,"dB":1581165000,"t1s":3,"t2s":1,"t1":22,"t2":26}],[4066,{"d":25,"dB":1580569200,"t1s":2,"t2s":3,"t1":33,"t2":22}],[4070,{"d":24,"dB":1579635000,"t1s":2,"t2s":2,"t1":22,"t2":46}],[4087,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":28,"t2":22}],[4092,{"d":22,"dB":1578754800,"t1s":1,"t2s":0,"t1":22,"t2":45}],[4102,{"d":21,"dB":1577899800,"t1s":2,"t2s":1,"t1":40,"t2":22}],[4113,{"d":20,"dB":1577545200,"t1s":1,"t2s":2,"t1":46,"t2":22}],[4122,{"d":19,"dB":1577372400,"t1s":1,"t2s":0,"t1":22,"t2":23}],[4131,{"d":18,"dB":1576931400,"t1s":0,"t2s":0,"t1":22,"t2":39}],[4151,{"d":16,"dB":1575721800,"t1s":3,"t2s":1,"t1":22,"t2":25}],[4167,{"d":15,"dB":1575490500,"t1s":5,"t2s":2,"t1":21,"t2":22}],[4170,{"d":14,"dB":1575217800,"t1s":2,"t2s":1,"t1":29,"t2":22}],[4183,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":22,"t2":76}],[4193,{"d":12,"dB":1573311600,"t1s":1,"t2s":2,"t1":35,"t2":22}],[4203,{"d":11,"dB":1572798600,"t1s":1,"t2s":1,"t1":22,"t2":24}],[4209,{"d":10,"dB":1572098400,"t1s":3,"t2s":2,"t1":45,"t2":22}],[4222,{"d":9,"dB":1571484600,"t1s":2,"t2s":0,"t1":22,"t2":28}],[4229,{"d":8,"dB":1570284000,"t1s":1,"t2s":0,"t1":23,"t2":22}],[6176,{"d":4,"dB":1600542000,"t1s":2,"t2s":1,"t1":20,"t2":13}],[3816,{"d":12,"dB":1572811200,"t1s":1,"t2s":0,"t1":4,"t2":13}],[3822,{"d":11,"dB":1572029100,"t1s":0,"t2s":1,"t1":8,"t2":13}],[3662,{"d":27,"dB":1583002800,"t1s":1,"t2s":1,"t1":13,"t2":68}],[3683,{"d":25,"dB":1581709500,"t1s":1,"t2s":0,"t1":13,"t2":15}],[3722,{"d":21,"dB":1579978800,"t1s":1,"t2s":3,"t1":13,"t2":41}],[3734,{"d":20,"dB":1578859200,"t1s":3,"t2s":3,"t1":2,"t2":13}],[3780,{"d":15,"dB":1579118400,"t1s":1,"t2s":4,"t1":13,"t2":2}],[3842,{"d":9,"dB":1570298400,"t1s":3,"t2s":1,"t1":15,"t2":13}],[6164,{"d":5,"dB":1601211600,"t1s":3,"t2s":2,"t1":13,"t2":41}],[6203,{"d":1,"dB":1598180400,"t1s":2,"t2s":2,"t1":13,"t2":68}],[6183,{"d":3,"dB":1600009200,"t1s":2,"t2s":1,"t1":13,"t2":8}],[3756,{"d":18,"dB":1576440000,"t1s":0,"t2s":4,"t1":4,"t2":2}],[3686,{"d":25,"dB":1581868800,"t1s":1,"t2s":0,"t1":68,"t2":20}],[3697,{"d":24,"dB":1581264000,"t1s":3,"t2s":0,"t1":41,"t2":68}],[5451,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":117,"t2":126}],[5484,{"d":35,"dB":1595447100,"t1s":1,"t2s":2,"t1":120,"t2":117}],[5491,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":117,"t2":113}],[5506,{"d":33,"dB":1594920600,"t1s":3,"t2s":0,"t1":122,"t2":117}],[5511,{"d":32,"dB":1594566900,"t1s":2,"t2s":0,"t1":117,"t2":118}],[5521,{"d":31,"dB":1594229400,"t1s":1,"t2s":2,"t1":117,"t2":111}],[5619,{"d":21,"dB":1579971600,"t1s":0,"t2s":0,"t1":110,"t2":117}],[5631,{"d":20,"dB":1579453200,"t1s":1,"t2s":3,"t1":117,"t2":116}],[5647,{"d":19,"dB":1578848400,"t1s":2,"t2s":1,"t1":126,"t2":117}],[5721,{"d":11,"dB":1572789600,"t1s":1,"t2s":3,"t1":117,"t2":124}],[5770,{"d":6,"dB":1569762000,"t1s":4,"t2s":0,"t1":121,"t2":117}],[5780,{"d":5,"dB":1569438000,"t1s":0,"t2s":0,"t1":117,"t2":127}],[5800,{"d":3,"dB":1568543400,"t1s":1,"t2s":2,"t1":117,"t2":119}],[3747,{"d":19,"dB":1576957500,"t1s":2,"t2s":1,"t1":41,"t2":4}],[4311,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":86,"t2":57}],[4323,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":87,"t2":86}],[4331,{"d":36,"dB":1594670400,"t1s":1,"t2s":2,"t1":86,"t2":62}],[4346,{"d":35,"dB":1594402200,"t1s":2,"t2s":3,"t1":52,"t2":86}],[4352,{"d":34,"dB":1593892800,"t1s":2,"t2s":2,"t1":86,"t2":49}],[4358,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":48,"t2":86}],[4373,{"d":32,"dB":1593365400,"t1s":1,"t2s":2,"t1":86,"t2":66}],[4393,{"d":30,"dB":1592587800,"t1s":0,"t2s":1,"t1":86,"t2":64}],[4411,{"d":28,"dB":1591983000,"t1s":2,"t2s":1,"t1":86,"t2":58}],[4451,{"d":24,"dB":1581796800,"t1s":2,"t2s":1,"t1":86,"t2":74}],[4459,{"d":23,"dB":1581192000,"t1s":1,"t2s":0,"t1":54,"t2":86}],[3655,{"d":28,"dB":1583683200,"t1s":5,"t2s":0,"t1":20,"t2":15}],[3663,{"d":27,"dB":1583002800,"t1s":3,"t2s":0,"t1":15,"t2":41}],[3715,{"d":22,"dB":1580574600,"t1s":5,"t2s":0,"t1":2,"t2":15}],[3761,{"d":17,"dB":1575736200,"t1s":1,"t2s":3,"t1":15,"t2":2}],[3857,{"d":8,"dB":1569762000,"t1s":1,"t2s":0,"t1":41,"t2":15}],[6152,{"d":6,"dB":1601809200,"t1s":0,"t2s":1,"t1":15,"t2":67}],[6184,{"d":3,"dB":1599922800,"t1s":3,"t2s":1,"t1":15,"t2":19}],[6189,{"d":2,"dB":1598713200,"t1s":2,"t2s":1,"t1":20,"t2":15}],[4846,{"d":23,"dB":1580846700,"t1s":0,"t2s":3,"t1":93,"t2":90}],[4849,{"d":22,"dB":1580497200,"t1s":0,"t2s":1,"t1":90,"t2":5}],[4861,{"d":21,"dB":1579892400,"t1s":0,"t2s":0,"t1":94,"t2":90}],[3775,{"d":16,"dB":1575489900,"t1s":2,"t2s":0,"t1":2,"t2":8}],[3877,{"d":6,"dB":1569005100,"t1s":2,"t2s":1,"t1":41,"t2":8}],[6153,{"d":6,"dB":1601751600,"t1s":2,"t2s":1,"t1":19,"t2":8}],[6174,{"d":4,"dB":1600614000,"t1s":2,"t2s":2,"t1":8,"t2":4}],[3716,{"d":22,"dB":1580499900,"t1s":3,"t2s":2,"t1":20,"t2":8}],[3700,{"d":23,"dB":1580846700,"t1s":1,"t2s":2,"t1":8,"t2":2}],[6175,{"d":4,"dB":1600599600,"t1s":0,"t2s":3,"t1":19,"t2":2}],[6196,{"d":2,"dB":1598727600,"t1s":0,"t2s":2,"t1":41,"t2":19}],[4376,{"d":32,"dB":1593201600,"t1s":1,"t2s":1,"t1":55,"t2":74}],[4387,{"d":31,"dB":1592847000,"t1s":2,"t2s":2,"t1":64,"t2":55}],[4436,{"d":26,"dB":1583060400,"t1s":3,"t2s":2,"t1":55,"t2":85}],[4496,{"d":20,"dB":1579359600,"t1s":2,"t2s":1,"t1":62,"t2":55}],[4246,{"d":7,"dB":1569688200,"t1s":1,"t2s":3,"t1":22,"t2":40}],[4252,{"d":6,"dB":1569074400,"t1s":0,"t2s":2,"t1":22,"t2":77}],[4265,{"d":5,"dB":1568552400,"t1s":3,"t2s":1,"t1":36,"t2":22}],[4798,{"d":27,"dB":1582916400,"t1s":3,"t2s":1,"t1":101,"t2":98}],[4818,{"d":25,"dB":1581706800,"t1s":0,"t2s":0,"t1":101,"t2":90}],[4878,{"d":19,"dB":1576868400,"t1s":0,"t2s":0,"t1":101,"t2":17}],[4898,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":101,"t2":91}],[4948,{"d":12,"dB":1572026400,"t1s":0,"t2s":1,"t1":101,"t2":94}],[4985,{"d":9,"dB":1569607200,"t1s":2,"t2s":2,"t1":98,"t2":101}],[4999,{"d":7,"dB":1568397600,"t1s":1,"t2s":4,"t1":90,"t2":101}],[4880,{"d":19,"dB":1576868400,"t1s":1,"t2s":5,"t1":93,"t2":14}],[3886,{"d":5,"dB":1568475000,"t1s":1,"t2s":0,"t1":2,"t2":41}],[6166,{"d":5,"dB":1601233200,"t1s":0,"t2s":2,"t1":68,"t2":2}],[6575,{"d":2,"dB":1598720400,"t1s":1,"t2s":0,"t1":2,"t2":91}],[4316,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":55,"t2":49}],[4327,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":49,"t2":56}],[4332,{"d":36,"dB":1594575000,"t1s":1,"t2s":0,"t1":47,"t2":49}],[4347,{"d":35,"dB":1594143000,"t1s":2,"t2s":1,"t1":49,"t2":74}],[4367,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":49,"t2":57}],[4377,{"d":32,"dB":1593356400,"t1s":2,"t2s":0,"t1":64,"t2":49}],[4380,{"d":31,"dB":1593106200,"t1s":1,"t2s":0,"t1":66,"t2":49}],[4397,{"d":30,"dB":1592760600,"t1s":2,"t2s":0,"t1":49,"t2":85}],[4417,{"d":28,"dB":1591992000,"t1s":1,"t2s":1,"t1":49,"t2":63}],[4418,{"d":27,"dB":1583524800,"t1s":1,"t2s":1,"t1":48,"t2":49}],[4462,{"d":23,"dB":1581174000,"t1s":3,"t2s":0,"t1":58,"t2":49}],[4476,{"d":22,"dB":1580587200,"t1s":1,"t2s":0,"t1":49,"t2":51}],[5643,{"d":19,"dB":1578858300,"t1s":1,"t2s":2,"t1":116,"t2":115}],[5656,{"d":18,"dB":1578253500,"t1s":0,"t2s":2,"t1":116,"t2":122}],[5659,{"d":17,"dB":1576871100,"t1s":1,"t2s":4,"t1":110,"t2":116}],[5676,{"d":16,"dB":1576429200,"t1s":3,"t2s":1,"t1":116,"t2":118}],[5680,{"d":15,"dB":1575661500,"t1s":0,"t2s":0,"t1":112,"t2":116}],[5702,{"d":13,"dB":1574604000,"t1s":3,"t2s":0,"t1":116,"t2":109}],[5737,{"d":10,"dB":1572465600,"t1s":0,"t2s":4,"t1":124,"t2":116}],[5755,{"d":8,"dB":1571576400,"t1s":0,"t2s":0,"t1":120,"t2":116}],[5771,{"d":6,"dB":1569762000,"t1s":0,"t2s":1,"t1":113,"t2":116}],[5784,{"d":5,"dB":1569430800,"t1s":0,"t2s":2,"t1":116,"t2":119}],[5789,{"d":4,"dB":1569157200,"t1s":1,"t2s":2,"t1":127,"t2":116}],[5804,{"d":3,"dB":1568563200,"t1s":4,"t2s":2,"t1":116,"t2":123}],[6155,{"d":6,"dB":1601823600,"t1s":2,"t2s":2,"t1":20,"t2":68}],[5641,{"d":19,"dB":1578762000,"t1s":1,"t2s":0,"t1":121,"t2":111}],[5712,{"d":12,"dB":1573394400,"t1s":4,"t2s":2,"t1":121,"t2":113}],[5781,{"d":5,"dB":1569438000,"t1s":1,"t2s":0,"t1":112,"t2":121}],[6167,{"d":5,"dB":1601132400,"t1s":0,"t2s":3,"t1":4,"t2":20}],[6580,{"d":1,"dB":1598115600,"t1s":1,"t2s":0,"t1":42,"t2":17}],[4792,{"d":28,"dB":1583521200,"t1s":1,"t2s":3,"t1":94,"t2":91}],[4855,{"d":22,"dB":1580497200,"t1s":1,"t2s":1,"t1":100,"t2":91}],[4874,{"d":20,"dB":1578682800,"t1s":1,"t2s":0,"t1":17,"t2":91}],[4897,{"d":18,"dB":1576263600,"t1s":1,"t2s":0,"t1":91,"t2":107}],[4937,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":91,"t2":93}],[4959,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":5,"t2":91}],[4977,{"d":10,"dB":1570212000,"t1s":0,"t2s":2,"t1":91,"t2":94}],[4997,{"d":8,"dB":1569002400,"t1s":1,"t2s":1,"t1":91,"t2":98}],[6186,{"d":3,"dB":1599937200,"t1s":2,"t2s":0,"t1":4,"t2":41}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.ligue-1.20201021.json b/src/test/resources/__files/mlnstats.ligue-1.20201021.json deleted file mode 100644 index 0bc4abe..0000000 --- a/src/test/resources/__files/mlnstats.ligue-1.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2020-10-21T15:40:24.202Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","aS":{"i":14,"n":"Ligue 1 2020-2021","cN":"Ligue-1-2020-2021","mD":38,"cD":{"d":7,"lD":7,"p":0}},"lS":{"i":9,"n":"Ligue 1 2019-2020","cN":"Ligue-1-2019-2020","mD":28}},"le":[[1,"Ligue-1"],[2,"Premier-League"],[3,"Liga"],[4,"Ligue-2"],[5,"Serie-A"]],"p":[[108,{"n":"Mangani","f":"Thomas","fp":"MD","r":12,"c":16,"s":{"g":1,"s":36.5,"n":7,"a":5.21,"d":0.99,"Sg":1,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.99,"Og":2,"Os":123.5,"On":25,"Oa":4.94,"Od":0.92,"pm":25},"p":[[7,{"n":6.5,"e":6138,"g":1}],[6,{"n":5.5,"e":6154,"s":1}],[5,{"n":4.5,"e":6158}],[4,{"n":3.5,"e":6173}],[3,{"n":6,"e":6178}],[2,{"n":5,"e":6192}],[1,{"n":5.5,"e":6200}],[-28,{"n":4.5,"e":3648,"s":1}],[-25,{"n":4.5,"e":3685,"s":1}],[-24,{"n":3.5,"e":3689}],[-22,{"n":3,"e":3709}],[-21,{"n":4.5,"e":3721}],[-20,{"n":6,"e":3729}],[-19,{"n":5.5,"e":3742}],[-18,{"n":4.5,"e":3749}],[-17,{"n":4.5,"e":3766}],[-16,{"n":4.5,"e":3769}],[-15,{"n":5,"e":3783}],[-14,{"n":7,"e":3789,"g":1}],[-13,{"n":5,"e":3805}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5,"e":3828}],[-9,{"n":4.5,"e":3844,"s":1}],[-8,{"n":4.5,"e":3848}]],"fo":[[6158,[{"t":"Y"}]]]}],[133,{"n":"Amadou","f":"Ibrahim","fp":"MD","r":10,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":92,"On":19,"Oa":4.84,"Od":0.93,"pd":4,"pm":15},"p":[[-38,{"n":4.5,"e":4312}],[-37,{"n":5.5,"e":4318}],[-36,{"n":5.5,"e":4332}],[-35,{"n":5,"e":4341}],[-34,{"n":6,"e":4351}],[-33,{"n":4,"e":4361}],[-30,{"n":5,"e":4394}],[-29,{"n":5.5,"e":4399,"s":1}],[-28,{"n":5,"e":4412}],[-27,{"n":5,"e":4427}],[-22,{"n":5,"e":4094,"s":1}],[-15,{"n":3.5,"e":4165}],[-14,{"n":6,"e":4176}],[-13,{"n":5,"e":4183,"s":1}],[-10,{"n":3.5,"e":4214}],[-9,{"n":6.5,"e":4219}],[-8,{"n":3,"e":4232}],[-7,{"n":4,"e":4242}],[7,{"n":4.5,"e":6138}]],"fo":[[4361,[{"t":"Y"}]],[4394,[{"t":"Y"}]]]}],[138,{"n":"Diony","f":"Lois","fp":"A","r":8,"c":16,"s":{"s":22,"n":5,"a":4.4,"d":0.42,"Ss":22,"Sn":5,"Sa":4.4,"Sd":0.42,"Og":2,"Os":71,"On":16,"Oa":4.44,"Od":0.68,"pa":16},"p":[[-28,{"n":4,"e":3656}],[-27,{"n":4,"e":3661}],[-26,{"n":4.5,"e":3676}],[-25,{"n":6,"e":3680,"g":1,"s":1}],[-24,{"n":4,"e":3693}],[-23,{"n":4,"e":3702}],[-22,{"n":4.5,"e":3712,"s":1}],[-17,{"n":4,"e":3765}],[-16,{"n":4,"e":3776,"s":1}],[-15,{"n":6,"e":3786,"g":1}],[-9,{"n":4,"e":3846}],[7,{"n":4,"e":6138}],[6,{"n":4,"e":6154,"s":1}],[5,{"n":5,"e":6158,"s":1}],[4,{"n":4.5,"e":6173,"s":1}],[3,{"n":4.5,"e":6178,"s":1}]],"a":{"m":9,"a":13,"M":21,"n":6}}],[143,{"n":"Thomas","f":"Romain","fp":"DC","r":8,"c":16,"s":{"s":20,"n":4,"a":5,"d":0.71,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":129,"On":25,"Oa":5.16,"Od":1.12,"pd":25},"p":[[-27,{"n":6,"e":3660}],[-26,{"n":6,"e":3668}],[-7,{"n":7,"e":3867}],[-28,{"n":7,"e":3648,"g":1}],[-25,{"n":5,"e":3685}],[-24,{"n":4.5,"e":3689}],[-22,{"n":3,"e":3709}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5.5,"e":3729}],[-19,{"n":6,"e":3742}],[-18,{"n":6,"e":3749}],[-17,{"n":3.5,"e":3766}],[-16,{"n":3,"e":3769}],[-15,{"n":3.5,"e":3783}],[-14,{"n":6,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":6,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5,"e":3828}],[-9,{"n":4,"e":3844}],[-8,{"n":5.5,"e":3848}],[7,{"n":4.5,"e":6138}],[3,{"n":5,"e":6178}],[2,{"n":4.5,"e":6192}],[1,{"n":6,"e":6200}]],"fo":[[6138,[{"t":"Y"}]],[6178,[{"t":"Y"},{"t":"O"}]]],"a":{"m":9,"a":18,"M":25,"n":22}}],[159,{"n":"Traoré","f":"Ismael","fp":"DC","r":20,"c":16,"s":{"g":3,"s":34.5,"n":7,"a":4.93,"d":1.37,"Sg":3,"Ss":34.5,"Sn":7,"Sa":4.93,"Sd":1.37,"Og":3,"Os":129,"On":26,"Oa":4.96,"Od":1.02,"pd":26},"p":[[-23,{"n":5,"e":3706}],[-28,{"n":6,"e":3648}],[-27,{"n":6,"e":3660}],[-25,{"n":5,"e":3685}],[-24,{"n":4,"e":3689}],[-22,{"n":3,"e":3709}],[-21,{"n":5.5,"e":3721}],[-20,{"n":6,"e":3729}],[-19,{"n":5,"e":3742}],[-18,{"n":5.5,"e":3749}],[-17,{"n":4.5,"e":3766}],[-16,{"n":4,"e":3769}],[-14,{"n":5,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5.5,"e":3828}],[-9,{"n":3,"e":3844}],[-8,{"n":5,"e":3848}],[7,{"n":5,"e":6138}],[6,{"n":4,"e":6154,"g":1}],[5,{"n":5.5,"e":6158,"g":1}],[4,{"n":3,"e":6173}],[3,{"n":6,"e":6178}],[2,{"n":4,"e":6192}],[1,{"n":7,"e":6200,"g":1}]],"fo":[[6138,[{"t":"Y"}]]],"a":{"m":15,"a":22,"M":42,"n":33}}],[179,{"n":"Cabot","f":"Jimmy","fp":"MO","r":10,"c":16,"s":{"s":10,"n":2,"a":5,"d":0.71,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Og":2,"Os":117.5,"On":22,"Oa":5.34,"Od":0.86,"pm":22},"p":[[-28,{"n":5,"e":4788,"s":1}],[-26,{"n":5,"e":4816}],[-25,{"n":5.5,"e":4823,"s":1}],[-24,{"n":5,"e":4831}],[-23,{"n":4.5,"e":4842,"s":1}],[-22,{"n":5.5,"e":4856}],[-21,{"n":5,"e":4864,"s":1}],[-20,{"n":6.5,"e":4873}],[-19,{"n":4.5,"e":4887}],[-18,{"n":7,"e":4893,"g":1}],[-17,{"n":8,"e":4900,"g":1}],[-16,{"n":4.5,"e":4913,"s":1}],[-15,{"n":5,"e":4920,"s":1}],[-14,{"n":5,"e":4932,"s":1}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951}],[-11,{"n":5,"e":4964,"s":1}],[-10,{"n":5.5,"e":4972}],[-9,{"n":6,"e":4979}],[-8,{"n":5,"e":4992}],[7,{"n":5.5,"e":6138,"s":1}],[6,{"n":4.5,"e":6154,"s":1}]],"fo":[[6154,[{"t":"Y"}]]]}],[202,{"n":"Capelle","f":"Pierrick","fp":"MO","r":11,"c":16,"s":{"s":33.5,"n":7,"a":4.79,"d":1.44,"Ss":33.5,"Sn":7,"Sa":4.79,"Sd":1.44,"Os":122.5,"On":25,"Oa":4.9,"Od":1.04,"pd":3,"pm":22},"p":[[-27,{"n":6,"e":3660}],[-26,{"n":6,"e":3668}],[-24,{"n":4,"e":3689}],[-23,{"n":6,"e":3706}],[-22,{"n":3,"e":3709}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5,"e":3729}],[-19,{"n":4.5,"e":3742}],[-18,{"n":5,"e":3749}],[-17,{"n":5,"e":3766}],[-16,{"n":4,"e":3769}],[-15,{"n":5.5,"e":3783,"s":1}],[-14,{"n":5,"e":3789,"s":1}],[-11,{"n":5,"e":3821,"s":1}],[-10,{"n":5.5,"e":3828}],[-9,{"n":3.5,"e":3844}],[-8,{"n":6,"e":3848}],[-7,{"n":4.5,"e":3867,"s":1}],[7,{"n":4.5,"e":6138}],[6,{"n":3.5,"e":6154}],[5,{"n":7.5,"e":6158}],[4,{"n":3,"e":6173}],[3,{"n":5,"e":6178}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":5,"e":6200,"s":1}]],"a":{"m":11,"a":13,"M":17,"n":9}}],[214,{"n":"Manceau","f":"Vincent","fp":"DL","r":7,"c":16,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":90.5,"On":19,"Oa":4.76,"Od":0.81,"pd":19},"p":[[-26,{"n":5,"e":3668}],[-25,{"n":4.5,"e":3685}],[-24,{"n":4,"e":3689}],[-23,{"n":5,"e":3706}],[-22,{"n":4,"e":3709}],[-21,{"n":5,"e":3721}],[-20,{"n":4,"e":3729}],[-19,{"n":6,"e":3742}],[-18,{"n":5.5,"e":3749}],[-17,{"n":4,"e":3766}],[-16,{"n":4,"e":3769}],[-13,{"n":5,"e":3805}],[-12,{"n":6,"e":3809}],[-11,{"n":5,"e":3821}],[-10,{"n":5,"e":3828}],[-9,{"n":3,"e":3844}],[-7,{"n":6,"e":3867}],[7,{"n":5,"e":6138,"s":1}],[6,{"n":4.5,"e":6154,"s":1}]]}],[235,{"n":"Pavlovic","f":"Mateo","fp":"DC","r":8,"c":16,"s":{"s":14.5,"n":4,"a":3.63,"d":1.38,"Os":53.5,"On":12,"Oa":4.46,"Od":1.23,"pd":12},"p":[[-27,{"n":5,"e":3660,"s":1}],[-26,{"n":6,"e":3668}],[-24,{"n":4.5,"e":3689}],[-23,{"n":5.5,"e":3706}],[-16,{"n":4.5,"e":3769,"s":1}],[-15,{"n":3,"e":3783}],[-10,{"n":4.5,"e":3828,"s":1}],[-7,{"n":6,"e":3867}],[6,{"n":2,"e":6154}],[5,{"n":4.5,"e":6158}],[4,{"n":3,"e":6173}],[3,{"n":5,"e":6178,"s":1}]],"fo":[[6158,[{"t":"Y"}]],[6173,[{"t":"Y"}]]]}],[283,{"n":"Lassana Coulibaly","f":"","fp":"MD","r":9,"c":16,"s":{"s":29.5,"n":6,"a":4.92,"d":1.07,"Os":29.5,"On":6,"Oa":4.92,"Od":1.07,"pm":6},"p":[[6,{"n":3,"e":6154}],[5,{"n":5.5,"e":6158,"s":1}],[4,{"n":5.5,"e":6173}],[3,{"n":6,"e":6178,"s":1}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":4.5,"e":6200,"s":1}]]}],[287,{"n":"Bamba","f":"Abdoulaye","fp":"DL","r":10,"c":16,"s":{"s":31.5,"n":7,"a":4.5,"d":1.15,"Ss":31.5,"Sn":7,"Sa":4.5,"Sd":1.15,"Os":62,"On":13,"Oa":4.77,"Od":1.03,"pd":12,"pm":1},"p":[[-28,{"n":6,"e":3648}],[-27,{"n":5,"e":3660}],[-26,{"n":5.5,"e":3668}],[-22,{"n":5.5,"e":3709,"s":1}],[-15,{"n":3.5,"e":3783}],[-14,{"n":5,"e":3789}],[7,{"n":4.5,"e":6138}],[6,{"n":3,"e":6154}],[5,{"n":5,"e":6158}],[4,{"n":3,"e":6173}],[3,{"n":5.5,"e":6178}],[2,{"n":4.5,"e":6192}],[1,{"n":6,"e":6200}]],"a":{"m":8,"a":13,"M":20,"n":17}}],[514,{"n":"Bernardoni","f":"Paul","fp":"G","r":14,"c":16,"s":{"s":36.5,"n":7,"a":5.21,"d":1.35,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":1.35,"Os":133.5,"On":25,"Oa":5.34,"Od":1.09,"pg":25},"p":[[-28,{"n":4.5,"e":3652}],[-27,{"n":3.5,"e":3665}],[-26,{"n":6,"e":3675}],[-24,{"n":5.5,"e":3694}],[-23,{"n":6.5,"e":3705}],[-22,{"n":5.5,"e":3714}],[-21,{"n":5.5,"e":3727}],[-20,{"n":6,"e":3733}],[-19,{"n":6,"e":3739}],[-18,{"n":6,"e":3755}],[-17,{"n":5.5,"e":3764}],[-16,{"n":2.5,"e":3770}],[-15,{"n":5.5,"e":3784}],[-9,{"n":6,"e":3841}],[-8,{"n":5.5,"e":3855}],[-7,{"n":5,"e":3863}],[-25,{"n":5.5,"e":3685}],[-14,{"n":6.5,"e":3789}],[7,{"n":5,"e":6138}],[6,{"n":3,"e":6154}],[5,{"n":6,"e":6158}],[4,{"n":4,"e":6173}],[3,{"n":7,"e":6178}],[2,{"n":5.5,"e":6192}],[1,{"n":6,"e":6200}]],"a":{"m":16,"a":20,"M":32,"n":30}}],[826,{"n":"Boufal","f":"Sofiane","fp":"MO","r":13,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":76,"On":16,"Oa":4.75,"Od":0.48,"pm":15,"pa":1},"p":[[-30,{"n":5,"e":4014,"s":1}],[-29,{"n":4.5,"e":4026}],[-28,{"n":4,"e":4037}],[-26,{"n":5,"e":4056}],[-25,{"n":5,"e":4062,"s":1}],[-23,{"n":5,"e":4085,"s":1}],[-20,{"n":5,"e":4115}],[-19,{"n":4.5,"e":4120,"s":1}],[-16,{"n":5,"e":4153,"s":1}],[-14,{"n":5.5,"e":4177,"s":1}],[-13,{"n":5.5,"e":4178,"s":1}],[-12,{"n":4,"e":4193,"s":1}],[-9,{"n":5,"e":4227,"s":1}],[-8,{"n":4.5,"e":4233,"s":1}],[-7,{"n":4,"e":4243}],[7,{"n":4.5,"e":6138}]],"a":{"m":14,"a":17,"M":24,"n":12}}],[1179,{"n":"Fulgini","f":"Angelo","fp":"MO","r":14,"c":16,"s":{"g":1,"s":36,"n":7,"a":5.14,"d":1.14,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":1.14,"Og":2,"Os":136,"On":26,"Oa":5.23,"Od":0.97,"pm":24,"pa":2},"p":[[-28,{"n":5.5,"e":3648}],[-27,{"n":5.5,"e":3660}],[-26,{"n":6,"e":3668}],[-25,{"n":3.5,"e":3685}],[-24,{"n":6,"e":3689}],[-23,{"n":5.5,"e":3706}],[-22,{"n":3.5,"e":3709}],[-21,{"n":4.5,"e":3721}],[-20,{"n":5.5,"e":3729}],[-19,{"n":5.5,"e":3742}],[-18,{"n":6.5,"e":3749}],[-17,{"n":4.5,"e":3766}],[-16,{"n":4.5,"e":3769}],[-15,{"n":7,"e":3783,"g":1}],[-13,{"n":4.5,"e":3805}],[-12,{"n":6,"e":3809}],[-11,{"n":6,"e":3821}],[-8,{"n":5,"e":3848,"s":1}],[-7,{"n":5,"e":3867}],[7,{"n":4.5,"e":6138}],[6,{"n":3.5,"e":6154}],[5,{"n":7,"e":6158,"g":1}],[4,{"n":5,"e":6173}],[3,{"n":6,"e":6178}],[2,{"n":4.5,"e":6192}],[1,{"n":5.5,"e":6200}]],"fo":[[6138,[{"t":"Y"}]],[6178,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":26,"n":16}}],[1401,{"n":"Bahoken","f":"Stéphane","fp":"A","r":12,"c":16,"s":{"g":2,"s":23,"n":5,"a":4.6,"d":1.29,"Og":5,"Os":91.5,"On":20,"Oa":4.58,"Od":0.92,"pa":20},"p":[[-28,{"n":4,"e":3648}],[-27,{"n":6,"e":3660,"g":1}],[-26,{"n":6,"e":3668,"g":1,"s":1}],[-25,{"n":3.5,"e":3685}],[-24,{"n":4.5,"e":3689,"s":1}],[-23,{"n":4.5,"e":3706,"s":1}],[-22,{"n":4.5,"e":3709,"s":1}],[-21,{"n":4,"e":3721,"s":1}],[-20,{"n":4,"e":3729}],[-19,{"n":4,"e":3742}],[-18,{"n":4.5,"e":3749,"s":1}],[-12,{"n":5.5,"e":3809,"g":1}],[-11,{"n":3.5,"e":3821}],[-10,{"n":4.5,"e":3828,"s":1}],[-7,{"n":5.5,"e":3867}],[6,{"n":2.5,"e":6154}],[5,{"n":4.5,"e":6158}],[4,{"n":5,"e":6173,"g":1}],[3,{"n":6,"e":6178,"g":1}],[2,{"n":5,"e":6192,"s":1}]],"fo":[[6154,[{"t":"Y"}]],[6173,[{"t":"Y"}]],[6178,[{"t":"Y"}]]],"a":{"m":12,"a":17,"M":33,"n":33}}],[2136,{"n":"Butelle","f":"Ludovic","fp":"G","r":7,"c":16,"s":{"Os":102.5,"On":20,"Oa":5.13,"Od":1.07,"pg":20},"p":[[-28,{"n":7,"e":3648}],[-26,{"n":6,"e":3668}],[-25,{"n":5,"e":3685}],[-24,{"n":5,"e":3689}],[-22,{"n":3.5,"e":3709}],[-21,{"n":6,"e":3721}],[-20,{"n":5,"e":3729}],[-19,{"n":3.5,"e":3742}],[-18,{"n":6,"e":3749}],[-17,{"n":4,"e":3766}],[-16,{"n":4.5,"e":3769}],[-15,{"n":4,"e":3783}],[-14,{"n":6,"e":3789}],[-13,{"n":6,"e":3805}],[-12,{"n":6.5,"e":3809}],[-11,{"n":6,"e":3821}],[-10,{"n":4,"e":3828}],[-9,{"n":4,"e":3844}],[-8,{"n":4.5,"e":3848}],[-7,{"n":6,"e":3867}]]}],[2698,{"n":"Thioub","f":"Sada","fp":"A","r":11,"c":16,"s":{"g":1,"s":36,"n":7,"a":5.14,"d":1.11,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":1.11,"Og":2,"Os":137.5,"On":27,"Oa":5.09,"Od":0.89,"pm":15,"pa":12},"p":[[-28,{"n":5.5,"e":3648}],[-27,{"n":5.5,"e":3660}],[-26,{"n":4.5,"e":3668}],[-25,{"n":4.5,"e":3685}],[-24,{"n":5.5,"e":3689}],[-23,{"n":5,"e":3706}],[-22,{"n":4,"e":3709}],[-21,{"n":6,"e":3721}],[-20,{"n":7.5,"e":3729,"g":1}],[-19,{"n":5,"e":3742,"s":1}],[-18,{"n":5.5,"e":3749}],[-17,{"n":4,"e":3766,"s":1}],[-16,{"n":5,"e":3769}],[-15,{"n":5,"e":3783}],[-14,{"n":4.5,"e":3789,"s":1}],[-13,{"n":4.5,"e":3805}],[-12,{"n":5,"e":3809,"s":1}],[-11,{"n":5,"e":3821,"s":1}],[-9,{"n":4,"e":3844,"s":1}],[-8,{"n":6,"e":3848}],[7,{"n":4.5,"e":6138,"s":1}],[6,{"n":4,"e":6154}],[5,{"n":6,"e":6158,"g":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":4,"e":6178,"s":1}],[2,{"n":5.5,"e":6192}],[1,{"n":7,"e":6200}]],"a":{"m":9,"a":17,"M":36,"n":24}}],[2702,{"n":"Bobichon","f":"Antonin","fp":"MO","r":11,"c":16,"s":{"s":20,"n":4,"a":5,"d":1.68,"Og":2,"Os":75.5,"On":15,"Oa":5.03,"Od":1.17,"pm":13,"pa":2},"p":[[-28,{"n":7.5,"e":3648,"g":1}],[-27,{"n":4.5,"e":3660}],[-23,{"n":4.5,"e":3706}],[-21,{"n":5.5,"e":3721,"s":1}],[-19,{"n":6,"e":3742,"g":1}],[-16,{"n":4.5,"e":3769,"s":1}],[-15,{"n":4,"e":3783}],[-14,{"n":4.5,"e":3789}],[-12,{"n":5,"e":3809,"s":1}],[-9,{"n":4,"e":3844}],[-7,{"n":5.5,"e":3867}],[5,{"n":4,"e":6158}],[4,{"n":4,"e":6173}],[3,{"n":7.5,"e":6178}],[2,{"n":4.5,"e":6192,"s":1}]],"a":{"m":10,"a":13,"M":21,"n":7}}],[2731,{"n":"Alioui","f":"Rachid","fp":"A","r":8,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":5,"Os":108.5,"On":23,"Oa":4.72,"Od":1.07,"pa":23},"p":[[-28,{"n":4,"e":3648,"s":1}],[-27,{"n":4.5,"e":3660,"s":1}],[-26,{"n":5,"e":3668}],[-25,{"n":4,"e":3685,"s":1}],[-24,{"n":3.5,"e":3689}],[-23,{"n":4,"e":3706}],[-22,{"n":5,"e":3709,"g":1}],[-21,{"n":4,"e":3721}],[-20,{"n":5,"e":3729,"s":1}],[-19,{"n":4.5,"e":3742,"s":1}],[-18,{"n":4,"e":3749}],[-17,{"n":6,"e":3766,"g":1}],[-16,{"n":4,"e":3769}],[-15,{"n":4.5,"e":3783,"s":1}],[-14,{"n":5,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5.5,"e":3809,"s":1}],[-11,{"n":4.5,"e":3821,"s":1}],[-10,{"n":4,"e":3828}],[-9,{"n":3,"e":3844}],[-8,{"n":6.5,"e":3848,"g":1}],[-7,{"n":8,"e":3867,"g":2,"s":1}],[7,{"n":4.5,"e":6138,"s":1}]],"a":{"m":9,"a":22,"M":42,"n":9}}],[2831,{"n":"El Melali","f":"Farid","fp":"MO","r":6,"c":16,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":1,"Os":35,"On":7,"Oa":5,"Od":0.71,"pm":7},"p":[[-28,{"n":5,"e":3648,"s":1}],[-21,{"n":4.5,"e":3721}],[-20,{"n":5,"e":3729,"s":1}],[-19,{"n":6.5,"e":3742,"g":1,"s":1}],[-10,{"n":4.5,"e":3828}],[2,{"n":5,"e":6192}],[1,{"n":4.5,"e":6200,"s":1}]]}],[2944,{"n":"Mouanga","f":"Kevin","fp":"DC","r":1,"c":16}],[3125,{"n":"Doumbia","f":"Souleyman","fp":"DL","r":7,"c":16,"s":{"s":20,"n":4,"a":5,"d":1.41,"Ss":4,"Sn":1,"Sa":4,"Os":53,"On":10,"Oa":5.3,"Od":1.01,"pd":10},"p":[[-19,{"n":6,"e":3746}],[-28,{"n":5.5,"e":3648}],[-27,{"n":6.5,"e":3660}],[-26,{"n":5.5,"e":3668}],[-25,{"n":4.5,"e":3685}],[-23,{"n":5,"e":3706}],[7,{"n":4,"e":6138}],[3,{"n":5,"e":6178}],[2,{"n":4,"e":6192}],[1,{"n":7,"e":6200}]],"fo":[[6200,[{"t":"I"}]],[6138,[{"t":"Y"}]]],"a":{"m":14,"a":16,"M":23,"n":21}}],[3189,{"n":"Elhadji Djibril Diaw","f":"","fp":"DC","r":1,"c":16,"s":{"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pd":2},"p":[[-18,{"n":4,"e":4895}],[-12,{"n":5,"e":4954,"s":1}]]}],[4037,{"n":"Petkovic","f":"Danijel","fp":"G","r":5,"c":16,"s":{"Os":12,"On":2,"Oa":6,"Od":1.41,"pg":2},"p":[[-27,{"n":7,"e":3660}],[-23,{"n":5,"e":3706}]]}],[5018,{"n":"Pereira Lage","f":"Mathias","fp":"MO","r":7,"c":16,"s":{"s":4.5,"n":1,"a":4.5,"Os":95,"On":20,"Oa":4.75,"Od":0.73,"pm":20},"p":[[-27,{"n":5,"e":3660,"s":1}],[-26,{"n":5,"e":3668,"s":1}],[-25,{"n":3.5,"e":3685}],[-24,{"n":4.5,"e":3689,"s":1}],[-23,{"n":5,"e":3706,"s":1}],[-22,{"n":4,"e":3709}],[-21,{"n":5,"e":3721,"s":1}],[-18,{"n":5,"e":3749,"s":1}],[-17,{"n":5.5,"e":3766}],[-16,{"n":5,"e":3769,"s":1}],[-15,{"n":4.5,"e":3783}],[-14,{"n":6,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-10,{"n":4,"e":3828}],[-9,{"n":3.5,"e":3844}],[-8,{"n":3.5,"e":3848}],[-7,{"n":5.5,"e":3867}],[1,{"n":4.5,"e":6200}]]}],[5054,{"n":"Ebosse","f":"Enzo","fp":"DL","r":7,"c":16,"s":{"s":21,"n":5,"a":4.2,"d":1.44,"Ss":15.5,"Sn":4,"Sa":3.88,"Sd":1.44,"Os":76.5,"On":16,"Oa":4.78,"Od":1.14,"pd":16},"p":[[-28,{"n":4,"e":4789}],[-27,{"n":6.5,"e":4801}],[-25,{"n":5,"e":4822}],[-22,{"n":5.5,"e":4853}],[-21,{"n":5.5,"e":4867}],[-19,{"n":6.5,"e":4884}],[-17,{"n":4.5,"e":4906}],[-16,{"n":4,"e":4912}],[-14,{"n":5.5,"e":4931}],[-9,{"n":4.5,"e":4982}],[-23,{"n":4,"e":4842}],[7,{"n":5,"e":6138,"s":1}],[6,{"n":2,"e":6154}],[5,{"n":5,"e":6158,"s":1}],[4,{"n":3.5,"e":6173}],[1,{"n":5.5,"e":6200,"s":1}]],"fo":[[6173,[{"t":"Y"}]]]}],[5456,{"n":"Ould Khaled","f":"Zinédine","fp":"MD","r":4,"c":16,"s":{"Os":5.5,"On":1,"Oa":5.5,"pm":1},"p":[[-28,{"n":5.5,"e":3648}]]}],[6260,{"n":"Loucif","f":"Haithem","fp":"MO","r":4,"c":16}],[6859,{"n":"Bemanga","f":"Kevin","fp":"MO","r":1,"c":16}],[6921,{"n":"Boma","f":"Kévin","fp":"DC","r":1,"c":16}],[6924,{"n":"Taibi","f":"Waniss","fp":"MO","r":1,"c":16}],[7143,{"n":"Ali-Cho","f":"Mohamed","fp":"MO","r":7,"c":16,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[6,{"n":4.5,"e":6154,"s":1}],[5,{"n":4.5,"e":6158,"s":1}],[4,{"n":5,"e":6173,"s":1}]],"fo":[[6158,[{"t":"Y"}]]]}],[38,{"n":"Costil","f":"Benoît","fp":"G","r":23,"c":3,"s":{"s":40.5,"n":7,"a":5.79,"d":0.39,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.42,"Os":162.5,"On":29,"Oa":5.6,"Od":0.71,"pg":29},"p":[[7,{"n":5,"e":6141}],[6,{"n":6,"e":6148}],[5,{"n":6,"e":6159}],[4,{"n":5.5,"e":6169}],[3,{"n":6,"e":6179}],[1,{"n":6,"e":6199}],[-27,{"n":5,"e":3659}],[-26,{"n":5,"e":3674}],[-25,{"n":4,"e":3679}],[-24,{"n":5.5,"e":3692}],[-23,{"n":6.5,"e":3698}],[-22,{"n":6.5,"e":3710}],[-21,{"n":6,"e":3724}],[-20,{"n":5.5,"e":3730}],[-18,{"n":5,"e":3750}],[-17,{"n":4,"e":3759}],[-15,{"n":6.5,"e":3785}],[-14,{"n":5.5,"e":3790}],[-13,{"n":6,"e":3804}],[-12,{"n":6,"e":3810}],[-11,{"n":4,"e":3819}],[-10,{"n":6,"e":3829}],[-9,{"n":5.5,"e":3847}],[-8,{"n":6.5,"e":3849}],[-7,{"n":5.5,"e":3858}],[-28,{"n":5.5,"e":3656}],[-19,{"n":6,"e":3746}],[-16,{"n":6,"e":3770}],[2,{"n":6,"e":6192}]],"a":{"m":20,"a":29,"M":46,"n":35}}],[56,{"n":"Briand","f":"Jimmy","fp":"A","r":8,"c":3,"s":{"s":32.5,"n":7,"a":4.64,"d":0.56,"Ss":32.5,"Sn":7,"Sa":4.64,"Sd":0.56,"Og":4,"Os":111.5,"On":23,"Oa":4.85,"Od":0.9,"pm":1,"pa":22},"p":[[-25,{"n":6,"e":3679,"g":1}],[-24,{"n":5,"e":3692}],[-23,{"n":4.5,"e":3698}],[-22,{"n":4.5,"e":3710}],[-21,{"n":6.5,"e":3724,"g":1}],[-20,{"n":6,"e":3730,"g":1}],[-19,{"n":5,"e":3746}],[-18,{"n":4,"e":3750,"s":1}],[-17,{"n":4.5,"e":3759,"s":1}],[-13,{"n":6,"e":3804,"g":1}],[-12,{"n":6,"e":3810}],[-11,{"n":3,"e":3819}],[-10,{"n":4,"e":3829}],[-9,{"n":5,"e":3847}],[-8,{"n":3.5,"e":3849}],[-7,{"n":5.5,"e":3858}],[7,{"n":5.5,"e":6141,"s":1}],[6,{"n":4.5,"e":6148,"s":1}],[5,{"n":5,"e":6159,"s":1}],[4,{"n":5,"e":6169}],[3,{"n":4,"e":6179,"s":1}],[2,{"n":4,"e":6192,"s":1}],[1,{"n":4.5,"e":6199,"s":1}]],"fo":[[6179,[{"t":"Y"}]]],"a":{"m":11,"a":20,"M":37,"n":14}}],[105,{"n":"Sabaly","f":"Youssouf","fp":"DL","r":10,"c":3,"s":{"s":32.5,"n":7,"a":4.64,"d":1.03,"Ss":32.5,"Sn":7,"Sa":4.64,"Sd":1.03,"Os":85,"On":18,"Oa":4.72,"Od":1.1,"pd":15,"pm":3},"p":[[-28,{"n":5,"e":3656}],[-27,{"n":5.5,"e":3659}],[-26,{"n":3,"e":3674}],[-25,{"n":4,"e":3679}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":5,"e":3698}],[-22,{"n":5,"e":3710}],[-20,{"n":3.5,"e":3730}],[-17,{"n":4,"e":3759}],[-16,{"n":7.5,"e":3770}],[-15,{"n":5,"e":3785,"s":1}],[7,{"n":2.5,"e":6141}],[6,{"n":5.5,"e":6148}],[5,{"n":5,"e":6159}],[4,{"n":4.5,"e":6169}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6192}],[1,{"n":5.5,"e":6199}]],"fo":[[6159,[{"t":"Y"}]],[6192,[{"t":"Y"}]]],"a":{"m":7,"a":12,"M":15,"n":13}}],[139,{"n":"Baysse","f":"Paul","fp":"DC","r":12,"c":3,"s":{"s":29.5,"n":6,"a":4.92,"d":1.77,"Ss":9,"Sn":2,"Sa":4.5,"Sd":1.41,"Os":29.5,"On":6,"Oa":4.92,"Od":1.77,"pd":6},"p":[[7,{"n":3.5,"e":6141}],[6,{"n":5.5,"e":6148,"s":1}],[4,{"n":2,"e":6169}],[3,{"n":6,"e":6179}],[2,{"n":6.5,"e":6192}],[1,{"n":6,"e":6199}]],"fo":[[6169,[{"t":"Y"},{"t":"O"}]]],"a":{"m":5,"a":14,"M":25,"n":18}}],[156,{"n":"Ben Arfa","f":"Hatem","fp":"MO","r":8,"c":3,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":26,"On":6,"Oa":4.33,"Od":0.61,"pm":5,"pa":1},"p":[[-35,{"n":3.5,"e":4347}],[-32,{"n":4,"e":4376}],[-29,{"n":4.5,"e":4406,"s":1}],[-27,{"n":5,"e":4426,"s":1}],[-23,{"n":5,"e":4467,"s":1}],[7,{"n":4,"e":6141}]],"a":{"m":9,"a":17,"M":25,"n":11}}],[168,{"n":"Mexer","f":"","fp":"DC","r":6,"c":3,"s":{"Os":66.5,"On":14,"Oa":4.75,"Od":0.7,"pd":14},"p":[[-28,{"n":5,"e":3656}],[-22,{"n":5,"e":3710,"s":1}],[-21,{"n":6,"e":3724,"s":1}],[-20,{"n":3.5,"e":3730}],[-19,{"n":4,"e":3746}],[-18,{"n":4.5,"e":3750}],[-15,{"n":5,"e":3785}],[-13,{"n":4,"e":3804}],[-12,{"n":5.5,"e":3810}],[-11,{"n":4.5,"e":3819}],[-10,{"n":4,"e":3829}],[-9,{"n":5.5,"e":3847}],[-8,{"n":5,"e":3849}],[-7,{"n":5,"e":3858}]]}],[189,{"n":"Jovanovic","f":"Vukasin","fp":"DC","r":5,"c":3,"s":{"Os":35.5,"On":7,"Oa":5.07,"Od":0.89,"pd":7},"p":[[-27,{"n":5.5,"e":3659,"s":1}],[-17,{"n":3.5,"e":3759}],[-16,{"n":6,"e":3770}],[-15,{"n":4.5,"e":3785,"s":1}],[-13,{"n":5,"e":3804}],[-12,{"n":5,"e":3810,"s":1}],[-10,{"n":6,"e":3829,"s":1}]]}],[268,{"n":"de Preville","f":"Nicolas","fp":"A","r":15,"c":3,"s":{"s":36.5,"n":7,"a":5.21,"d":0.81,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.81,"Og":4,"Os":141,"On":26,"Oa":5.42,"Od":1.23,"pm":10,"pa":16},"p":[[-27,{"n":7,"e":3659,"g":1}],[-26,{"n":5,"e":3674}],[-25,{"n":4.5,"e":3679}],[-24,{"n":6,"e":3692}],[-23,{"n":7,"e":3698}],[-22,{"n":6,"e":3710}],[-21,{"n":4.5,"e":3724}],[-20,{"n":4,"e":3730}],[-19,{"n":4.5,"e":3746}],[-18,{"n":6,"e":3750}],[-17,{"n":4,"e":3759}],[-16,{"n":7,"e":3770,"g":1}],[-15,{"n":5,"e":3785}],[-14,{"n":8,"e":3790,"g":1}],[-13,{"n":5,"e":3804}],[-12,{"n":5,"e":3810}],[-11,{"n":3.5,"e":3819}],[-9,{"n":8,"e":3847,"g":1}],[-8,{"n":4.5,"e":3849,"s":1}],[7,{"n":4,"e":6141}],[6,{"n":5,"e":6148}],[5,{"n":6,"e":6159}],[4,{"n":6,"e":6169}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6192}],[1,{"n":6,"e":6199}]],"fo":[[6199,[{"t":"Y"}]]],"a":{"m":16,"a":25,"M":74,"n":57}}],[362,{"n":"Poundjé","f":"Maxime","fp":"DL","r":6,"c":3,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Ss":5,"Sn":1,"Sa":5,"Os":30.5,"On":6,"Oa":5.08,"Od":0.2,"pd":6},"p":[[-19,{"n":5,"e":3746,"s":1}],[-14,{"n":5,"e":3790,"s":1}],[7,{"n":5,"e":6141,"s":1}],[3,{"n":5,"e":6179,"s":1}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":5.5,"e":6199}]]}],[445,{"n":"Kwateng","f":"Enock","fp":"DL","r":8,"c":3,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":56.5,"On":12,"Oa":4.71,"Od":0.89,"pd":10,"pm":2},"p":[[-27,{"n":4,"e":3659}],[-26,{"n":2.5,"e":3674}],[-24,{"n":4.5,"e":3692}],[-23,{"n":5,"e":3698}],[-22,{"n":6,"e":3710}],[-21,{"n":5,"e":3724}],[-16,{"n":5,"e":3770,"s":1}],[-14,{"n":5,"e":3790}],[-8,{"n":4,"e":3849}],[-7,{"n":5,"e":3858}],[5,{"n":5,"e":6159,"s":1}],[1,{"n":5.5,"e":6199,"s":1}]]}],[621,{"n":"Koscielny","f":"Laurent","fp":"DC","r":19,"c":3,"s":{"s":36.5,"n":6,"a":6.08,"d":0.74,"Os":135,"On":26,"Oa":5.19,"Od":0.98,"pd":26},"p":[[-28,{"n":4.5,"e":3656}],[-27,{"n":5,"e":3659}],[-26,{"n":4,"e":3674}],[-25,{"n":3.5,"e":3679}],[-24,{"n":5,"e":3692}],[-22,{"n":5.5,"e":3710}],[-21,{"n":5.5,"e":3724}],[-20,{"n":4,"e":3730}],[-19,{"n":5,"e":3746}],[-18,{"n":5,"e":3750}],[-17,{"n":3.5,"e":3759}],[-16,{"n":6,"e":3770}],[-15,{"n":5.5,"e":3785}],[-13,{"n":5.5,"e":3804}],[-12,{"n":6,"e":3810}],[-11,{"n":3,"e":3819}],[-10,{"n":5,"e":3829}],[-9,{"n":5.5,"e":3847}],[-8,{"n":5.5,"e":3849}],[-7,{"n":6,"e":3858}],[6,{"n":6,"e":6148}],[5,{"n":5.5,"e":6159}],[4,{"n":5.5,"e":6169}],[3,{"n":6,"e":6179}],[2,{"n":7.5,"e":6192}],[1,{"n":6,"e":6199}]],"a":{"m":14,"a":24,"M":39,"n":40}}],[1075,{"n":"Maja","f":"Josh","fp":"A","r":11,"c":3,"s":{"g":2,"s":35.5,"n":7,"a":5.07,"d":1.06,"Sg":2,"Ss":35.5,"Sn":7,"Sa":5.07,"Sd":1.06,"Og":7,"Os":110.5,"On":22,"Oa":5.02,"Od":1.23,"pa":22},"p":[[-28,{"n":6.5,"e":3656,"g":1}],[-27,{"n":4.5,"e":3659,"s":1}],[-26,{"n":4.5,"e":3674,"s":1}],[-25,{"n":4,"e":3679,"s":1}],[-23,{"n":4,"e":3698,"s":1}],[-18,{"n":3.5,"e":3750}],[-17,{"n":5,"e":3759}],[-16,{"n":9,"e":3770,"g":3}],[-15,{"n":6,"e":3785,"g":1}],[-14,{"n":5,"e":3790}],[-13,{"n":4.5,"e":3804,"s":1}],[-12,{"n":4.5,"e":3810,"s":1}],[-11,{"n":5,"e":3819,"s":1}],[-10,{"n":4.5,"e":3829,"s":1}],[-7,{"n":4.5,"e":3858,"s":1}],[7,{"n":6.5,"e":6141,"g":1,"s":1}],[6,{"n":4,"e":6148}],[5,{"n":4.5,"e":6159}],[4,{"n":4,"e":6169,"s":1}],[3,{"n":5,"e":6179,"s":1}],[2,{"n":6.5,"e":6192,"g":1}],[1,{"n":5,"e":6199}]],"fo":[[6169,[{"t":"Y"}]]],"a":{"m":10,"a":22,"M":35,"n":28}}],[1175,{"n":"Otávio","f":"","fp":"MD","r":18,"c":3,"s":{"s":35,"n":6,"a":5.83,"d":0.88,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":148,"On":26,"Oa":5.69,"Od":1.21,"pm":26},"p":[[-28,{"n":5.5,"e":3656}],[-27,{"n":5.5,"e":3659}],[-26,{"n":5,"e":3674}],[-25,{"n":5.5,"e":3679}],[-24,{"n":7.5,"e":3692}],[-22,{"n":5.5,"e":3710}],[-21,{"n":4.5,"e":3724}],[-20,{"n":5.5,"e":3730}],[-19,{"n":5.5,"e":3746}],[-18,{"n":5,"e":3750}],[-17,{"n":3,"e":3759}],[-16,{"n":9,"e":3770,"g":2}],[-15,{"n":5.5,"e":3785}],[-13,{"n":7,"e":3804}],[-12,{"n":6.5,"e":3810}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5,"e":3829}],[-9,{"n":6,"e":3847}],[-8,{"n":6,"e":3849}],[-7,{"n":6.5,"e":3858}],[7,{"n":4.5,"e":6141}],[5,{"n":6,"e":6159}],[4,{"n":5.5,"e":6169}],[3,{"n":5.5,"e":6179}],[2,{"n":7,"e":6192}],[1,{"n":6.5,"e":6199}]],"fo":[[6169,[{"t":"Y"}]],[6179,[{"t":"Y"}]],[6199,[{"t":"Y"}]]],"a":{"m":18,"a":26,"M":44,"n":29}}],[1261,{"n":"Mandanda","f":"Over","fp":"G","r":1,"c":3}],[1271,{"n":"Poussin","f":"Gaëtan","fp":"G","r":7,"c":3,"a":{"m":8,"a":9,"M":13,"n":10}}],[2142,{"n":"Adli","f":"Yacine","fp":"MO","r":15,"c":3,"s":{"s":25.5,"n":5,"a":5.1,"d":1.02,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":1.02,"Og":3,"Os":117.5,"On":23,"Oa":5.11,"Od":1.12,"pm":5,"pa":18},"p":[[-28,{"n":5,"e":3656}],[-26,{"n":5,"e":3674,"s":1}],[-25,{"n":4.5,"e":3679,"s":1}],[-24,{"n":6,"e":3692}],[-23,{"n":4.5,"e":3698,"s":1}],[-22,{"n":4.5,"e":3710,"s":1}],[-21,{"n":4.5,"e":3724,"s":1}],[-19,{"n":4.5,"e":3746}],[-18,{"n":4.5,"e":3750}],[-17,{"n":5.5,"e":3759,"g":1}],[-16,{"n":8,"e":3770}],[-15,{"n":5.5,"e":3785}],[-14,{"n":4.5,"e":3790,"s":1}],[-11,{"n":4.5,"e":3819,"s":1}],[-10,{"n":5,"e":3829}],[-9,{"n":4,"e":3847,"s":1}],[-8,{"n":4,"e":3849}],[-7,{"n":8,"e":3858,"g":2}],[7,{"n":4,"e":6141}],[6,{"n":6,"e":6148}],[5,{"n":5.5,"e":6159}],[4,{"n":6,"e":6169,"s":1}],[3,{"n":4,"e":6179,"s":1}]],"fo":[[6141,[{"t":"Y"}]]],"a":{"m":15,"a":18,"M":30,"n":11}}],[2152,{"n":"Pablo","f":"","fp":"DC","r":10,"c":3,"s":{"ao":1,"s":19.5,"n":4,"a":4.88,"d":1.6,"Sao":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.6,"Og":3,"Oao":1,"Os":122.5,"On":24,"Oa":5.1,"Od":1.09,"pd":24},"p":[[-27,{"n":5,"e":3659}],[-26,{"n":5,"e":3674,"g":1}],[-25,{"n":4.5,"e":3679}],[-24,{"n":6,"e":3692}],[-23,{"n":4,"e":3698}],[-22,{"n":6,"e":3710}],[-21,{"n":6,"e":3724}],[-20,{"n":3.5,"e":3730}],[-19,{"n":5.5,"e":3746}],[-18,{"n":5,"e":3750}],[-17,{"n":4,"e":3759}],[-16,{"n":6,"e":3770}],[-15,{"n":6,"e":3785}],[-14,{"n":7.5,"e":3790,"g":1}],[-12,{"n":5.5,"e":3810}],[-11,{"n":4.5,"e":3819}],[-10,{"n":3.5,"e":3829}],[-9,{"n":6,"e":3847,"g":1}],[-8,{"n":4.5,"e":3849}],[-7,{"n":5,"e":3858}],[7,{"n":2.5,"e":6141,"a":1}],[6,{"n":6,"e":6148}],[5,{"n":5.5,"e":6159}],[4,{"n":5.5,"e":6169,"s":1}]],"fo":[[6148,[{"t":"Y"}]]],"a":{"m":8,"a":13,"M":25,"n":35}}],[2630,{"n":"Diarra","f":"Ibrahim","fp":"A","r":1,"c":3}],[2673,{"n":"Oudin","f":"Remi","fp":"MO","r":23,"c":3,"s":{"g":1,"s":39.5,"n":7,"a":5.64,"d":1.18,"Sg":1,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":1.18,"Og":4,"Os":151.5,"On":27,"Oa":5.61,"Od":0.86,"pm":23,"pa":4},"p":[[-19,{"n":5,"e":3745}],[-18,{"n":6.5,"e":3757,"g":1}],[-14,{"n":6,"e":3794}],[-12,{"n":5.5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":6,"e":3836}],[-9,{"n":7,"e":3845}],[-8,{"n":6,"e":3856}],[-7,{"n":5,"e":3865,"s":1}],[-28,{"n":5,"e":3656}],[-27,{"n":5,"e":3659,"s":1}],[-25,{"n":6.5,"e":3679}],[-24,{"n":6.5,"e":3692,"g":1,"s":1}],[-23,{"n":5,"e":3698}],[-22,{"n":5.5,"e":3710}],[-21,{"n":5.5,"e":3724}],[-20,{"n":4,"e":3730,"s":1}],[-17,{"n":6.5,"e":3765,"g":1}],[-15,{"n":5,"e":3785,"s":1}],[-13,{"n":5.5,"e":3805}],[7,{"n":5,"e":6141}],[6,{"n":7.5,"e":6148,"g":1}],[5,{"n":4.5,"e":6159,"s":1}],[4,{"n":4.5,"e":6169}],[3,{"n":5.5,"e":6179}],[2,{"n":7,"e":6192}],[1,{"n":5.5,"e":6199,"s":1}]],"fo":[[6192,[{"t":"Y"}]]],"a":{"m":24,"a":33,"M":55,"n":30}}],[2788,{"n":"Kalu","f":"Samuel","fp":"MO","r":15,"c":3,"s":{"g":2,"s":32.5,"n":6,"a":5.42,"d":0.92,"Og":3,"Os":100.5,"On":20,"Oa":5.03,"Od":0.85,"pm":11,"pa":9},"p":[[-28,{"n":5,"e":3656}],[-27,{"n":5.5,"e":3659}],[-26,{"n":5.5,"e":3674}],[-20,{"n":4,"e":3730,"s":1}],[-19,{"n":5,"e":3746}],[-18,{"n":5,"e":3750,"s":1}],[-16,{"n":4,"e":3770,"s":1}],[-15,{"n":4.5,"e":3785}],[-14,{"n":5.5,"e":3790}],[-13,{"n":4,"e":3804,"s":1}],[-11,{"n":5,"e":3819,"s":1}],[-10,{"n":3.5,"e":3829}],[-8,{"n":5,"e":3849}],[-7,{"n":6.5,"e":3858,"g":1}],[6,{"n":7,"e":6148,"g":1}],[5,{"n":5,"e":6159}],[4,{"n":6,"e":6169,"g":1,"s":1}],[3,{"n":5,"e":6179}],[2,{"n":5,"e":6192,"s":1}],[1,{"n":4.5,"e":6199,"s":1}]],"fo":[[6148,[{"t":"Y"}]]],"a":{"m":9,"a":18,"M":29,"n":20}}],[2792,{"n":"Basic","f":"Toma","fp":"MD","r":17,"c":3,"s":{"g":2,"s":40,"n":7,"a":5.71,"d":1.11,"Sg":2,"Ss":40,"Sn":7,"Sa":5.71,"Sd":1.11,"Og":3,"Os":110,"On":20,"Oa":5.5,"Od":0.86,"pm":19,"pa":1},"p":[[-27,{"n":6,"e":3659}],[-26,{"n":6,"e":3674}],[-25,{"n":5,"e":3679}],[-24,{"n":6.5,"e":3692,"g":1}],[-23,{"n":6,"e":3698}],[-22,{"n":4,"e":3710}],[-21,{"n":5,"e":3724}],[-20,{"n":4.5,"e":3730}],[-19,{"n":5.5,"e":3746}],[-16,{"n":5.5,"e":3770,"s":1}],[-14,{"n":6,"e":3790}],[-12,{"n":5,"e":3810,"s":1}],[-9,{"n":5,"e":3847,"s":1}],[7,{"n":4,"e":6141}],[6,{"n":7,"e":6148,"g":1}],[5,{"n":6,"e":6159}],[4,{"n":5,"e":6169}],[3,{"n":5,"e":6179}],[2,{"n":7,"e":6192,"g":1}],[1,{"n":6,"e":6199}]],"fo":[[6169,[{"t":"I"}]],[6192,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":26,"n":41}}],[2962,{"n":"Bessile","f":"Loic","fp":"DC","r":1,"c":3}],[3792,{"n":"Hwang Ui-Jo","f":"","fp":"A","r":11,"c":3,"s":{"s":34.5,"n":7,"a":4.93,"d":0.79,"Ss":34.5,"Sn":7,"Sa":4.93,"Sd":0.79,"Og":5,"Os":128,"On":25,"Oa":5.12,"Od":0.99,"pm":8,"pa":17},"p":[[-28,{"n":4.5,"e":3656,"s":1}],[-27,{"n":4.5,"e":3659}],[-26,{"n":5.5,"e":3674,"g":1}],[-25,{"n":7,"e":3679,"g":1}],[-24,{"n":4.5,"e":3692}],[-23,{"n":6,"e":3698,"g":1}],[-22,{"n":5,"e":3710}],[-21,{"n":5.5,"e":3724}],[-20,{"n":4.5,"e":3730,"s":1}],[-18,{"n":4,"e":3750,"s":1}],[-17,{"n":4.5,"e":3759,"s":1}],[-14,{"n":5,"e":3790}],[-13,{"n":5,"e":3804}],[-12,{"n":7.5,"e":3810,"g":1}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5,"e":3829,"s":1}],[-9,{"n":7,"e":3847,"g":1}],[-8,{"n":5,"e":3849}],[7,{"n":5,"e":6141,"s":1}],[6,{"n":4.5,"e":6148,"s":1}],[5,{"n":5,"e":6159,"s":1}],[4,{"n":4.5,"e":6169}],[3,{"n":4,"e":6179}],[2,{"n":6.5,"e":6192}],[1,{"n":5,"e":6199}]],"a":{"m":15,"a":25,"M":55,"n":24}}],[3816,{"n":"Benito","f":"Loris","fp":"DL","r":13,"c":3,"s":{"s":30.5,"n":6,"a":5.08,"d":0.97,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.97,"Oao":1,"Os":119.5,"On":25,"Oa":4.78,"Od":0.79,"pd":15,"pm":10},"p":[[-28,{"n":5,"e":3656}],[-26,{"n":4,"e":3674}],[-25,{"n":4,"e":3679}],[-24,{"n":5,"e":3692}],[-23,{"n":6,"e":3698,"a":1}],[-21,{"n":5,"e":3724}],[-20,{"n":4,"e":3730}],[-19,{"n":4.5,"e":3746}],[-18,{"n":5.5,"e":3750}],[-17,{"n":3.5,"e":3759}],[-15,{"n":5,"e":3785}],[-14,{"n":4,"e":3790}],[-13,{"n":4,"e":3804}],[-12,{"n":5.5,"e":3810}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5.5,"e":3829}],[-9,{"n":5,"e":3847}],[-8,{"n":5,"e":3849,"s":1}],[-7,{"n":5,"e":3858,"s":1}],[7,{"n":3.5,"e":6141}],[6,{"n":6,"e":6148}],[5,{"n":6,"e":6159}],[4,{"n":4.5,"e":6169}],[3,{"n":5,"e":6179}],[2,{"n":5.5,"e":6192}]],"fo":[[6141,[{"t":"I"}]],[6169,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":24,"n":17}}],[5453,{"n":"Cardoso","f":"David","fp":"DC","r":1,"c":3}],[5454,{"n":"Sow","f":"Ismael","fp":"DL","r":1,"c":3}],[5455,{"n":"Rouyard","f":"Davy","fp":"G","r":1,"c":3}],[6161,{"n":"Traoré","f":"Amadou","fp":"A","r":3,"c":3}],[6347,{"n":"Zerkane","f":"Mehdi","fp":"MO","r":6,"c":3,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":14.5,"On":3,"Oa":4.83,"Od":0.76,"pm":3},"p":[[7,{"n":5.5,"e":6141,"s":1}],[6,{"n":5,"e":6148,"s":1}],[1,{"n":4,"e":6199}]],"fo":[[6199,[{"t":"R"}]]],"a":{"m":3,"a":6,"M":9,"n":5}}],[6905,{"n":"Mara","f":"Sékou","fp":"A","r":1,"c":3}],[7365,{"n":"Bakwa","f":"Dilane","fp":"A","r":7,"c":3,"s":{"s":6,"n":1,"a":6,"Os":6,"On":1,"Oa":6,"pa":1},"p":[[6,{"n":6,"e":6148,"s":1}]],"a":{"m":7,"a":8,"M":11,"n":6}}],[7456,{"n":"Lima Semedo","f":"Darren","fp":"G","r":1,"c":3}],[85,{"n":"Mounie","f":"Steve","fp":"A","r":16,"c":75,"s":{"g":2,"s":22,"n":4,"a":5.5,"d":1.08,"Sg":1,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Og":2,"Os":22,"On":4,"Oa":5.5,"Od":1.08,"pa":4},"p":[[7,{"n":4.5,"e":6143}],[6,{"n":5,"e":6149}],[4,{"n":7,"e":6168,"g":1}],[5,{"n":5.5,"e":6158,"g":1}]],"fo":[[6149,[{"t":"Y"}]]],"a":{"m":13,"a":21,"M":51,"n":35}}],[106,{"n":"Baal","f":"Ludovic","fp":"DL","r":6,"c":75,"s":{"s":7,"n":2,"a":3.5,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":60,"On":12,"Oa":5,"Od":0.95,"pd":12},"p":[[2,{"n":3.5,"e":6197}],[-24,{"n":5,"e":3696,"s":1}],[-20,{"n":6,"e":3737}],[-19,{"n":4.5,"e":3741}],[-18,{"n":5.5,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":5.5,"e":3771}],[-12,{"n":5,"e":3808}],[-11,{"n":6,"e":3818}],[-23,{"n":4.5,"e":3698}],[-10,{"n":6.5,"e":3828}],[7,{"n":3.5,"e":6143}]]}],[227,{"n":"Lasne","f":"Paul","fp":"MD","r":13,"c":75,"s":{"s":11,"n":2,"a":5.5,"d":1.41,"Og":2,"Os":93.5,"On":17,"Oa":5.5,"Od":1.03,"pm":17},"p":[[-26,{"n":5,"e":3673,"s":1}],[-15,{"n":4.5,"e":3779}],[-8,{"n":5,"e":3853}],[-7,{"n":5.5,"e":3859,"s":1}],[-27,{"n":4.5,"e":3660}],[-25,{"n":7,"e":3680,"g":1}],[-24,{"n":5,"e":3696}],[-20,{"n":5.5,"e":3737}],[-19,{"n":4.5,"e":3741}],[-18,{"n":6.5,"e":3751}],[-17,{"n":5,"e":3758}],[-16,{"n":6,"e":3771}],[-12,{"n":4.5,"e":3808}],[-11,{"n":8,"e":3818,"g":1}],[-10,{"n":6,"e":3828}],[6,{"n":6.5,"e":6149}],[5,{"n":4.5,"e":6158,"s":1}]],"fo":[[6149,[{"t":"Y"}]]]}],[310,{"n":"Philippoteaux","f":"Romain","fp":"MO","r":16,"c":75,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":1.64,"Ss":4,"Sn":1,"Sa":4,"Og":4,"Os":131,"On":25,"Oa":5.24,"Od":1.01,"pm":23,"pa":2},"p":[[3,{"n":4,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":8,"e":6206,"g":1}],[-13,{"n":5.5,"e":3807,"g":1}],[-10,{"n":6,"e":3835}],[-28,{"n":5,"e":3652,"s":1}],[-27,{"n":4,"e":3665}],[-26,{"n":5,"e":3675,"s":1}],[-25,{"n":5,"e":3685}],[-24,{"n":7,"e":3694,"g":1}],[-23,{"n":6,"e":3705}],[-22,{"n":7,"e":3714,"g":1}],[-21,{"n":5,"e":3727}],[-20,{"n":5.5,"e":3733}],[-19,{"n":5,"e":3739}],[-18,{"n":5,"e":3755}],[-17,{"n":4,"e":3764}],[-15,{"n":4.5,"e":3784}],[-14,{"n":4,"e":3789}],[-11,{"n":5,"e":3824}],[-9,{"n":6,"e":3841}],[-8,{"n":5.5,"e":3855}],[-7,{"n":5,"e":3863,"s":1}],[7,{"n":4,"e":6143}],[5,{"n":5,"e":6158,"s":1}]],"a":{"m":18,"a":28,"M":45,"n":51}}],[368,{"n":"Pierre-Gabriel","f":"Ronaël","fp":"DL","r":10,"c":75,"s":{"s":22,"n":5,"a":4.4,"d":0.96,"Os":22,"On":5,"Oa":4.4,"Od":0.96,"pd":5},"p":[[3,{"n":5,"e":6180}],[6,{"n":5.5,"e":6149}],[5,{"n":4.5,"e":6158}],[2,{"n":4,"e":6197}],[1,{"n":3,"e":6206}]],"fo":[[6180,[{"t":"I"}]],[6197,[{"t":"Y"}]],[6206,[{"t":"Y"}]]]}],[552,{"n":"Perraud","f":"Romain","fp":"DL","r":18,"c":75,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":1.91,"Sg":2,"Ss":34,"Sn":6,"Sa":5.67,"Sd":1.91,"Og":2,"Os":99,"On":20,"Oa":4.95,"Od":1.28,"pd":20},"p":[[-28,{"n":4.5,"e":3654}],[-22,{"n":3.5,"e":3711}],[-21,{"n":6,"e":3718}],[-14,{"n":5,"e":3791}],[-13,{"n":5,"e":3798}],[-9,{"n":4,"e":3839}],[-27,{"n":5,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":6,"e":3680}],[-24,{"n":5,"e":3696}],[-20,{"n":5,"e":3737,"s":1}],[-15,{"n":4,"e":3779}],[-8,{"n":3.5,"e":3853}],[-7,{"n":4,"e":3859}],[7,{"n":3.5,"e":6143}],[6,{"n":6.5,"e":6149}],[5,{"n":4.5,"e":6158}],[4,{"n":7.5,"e":6168,"g":1}],[3,{"n":8,"e":6180,"g":1}],[2,{"n":4,"e":6197}]],"a":{"m":12,"a":21,"M":31,"n":37}}],[564,{"n":"Magnetti","f":"Hugo","fp":"MD","r":6,"c":75,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":55,"On":11,"Oa":5,"Od":0.45,"pm":11},"p":[[-28,{"n":5,"e":3654,"s":1}],[-26,{"n":5.5,"e":3673,"s":1}],[-25,{"n":5,"e":3680,"s":1}],[-24,{"n":5,"e":3696,"s":1}],[-22,{"n":4.5,"e":3711}],[-21,{"n":6,"e":3718}],[-19,{"n":5,"e":3741,"s":1}],[-14,{"n":5,"e":3791,"s":1}],[7,{"n":4.5,"e":6143}],[6,{"n":5,"e":6149,"s":1}],[2,{"n":4.5,"e":6197,"s":1}]],"fo":[[6143,[{"t":"Y"}]],[6197,[{"t":"Y"}]]]}],[580,{"n":"Cardona","f":"Irvin","fp":"A","r":10,"c":75,"s":{"g":1,"s":27,"n":6,"a":4.5,"d":1.34,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":7,"Os":124.5,"On":25,"Oa":4.98,"Od":1.33,"pm":5,"pa":20},"p":[[-28,{"n":4.5,"e":3654,"s":1}],[-27,{"n":4,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":6.5,"e":3680,"g":1}],[-24,{"n":5.5,"e":3696}],[-23,{"n":5,"e":3698}],[-22,{"n":4,"e":3711}],[-21,{"n":6,"e":3718,"g":1}],[-20,{"n":7.5,"e":3737,"g":1}],[-19,{"n":3,"e":3741}],[-18,{"n":5,"e":3751}],[-17,{"n":3,"e":3758}],[-16,{"n":7,"e":3771}],[-15,{"n":6,"e":3779,"g":1}],[-14,{"n":7,"e":3791,"g":1}],[-13,{"n":4.5,"e":3798}],[-12,{"n":4.5,"e":3808,"s":1}],[-10,{"n":6,"e":3828,"g":1,"s":1}],[-9,{"n":4,"e":3839,"s":1}],[7,{"n":4.5,"e":6143,"s":1}],[5,{"n":4,"e":6158,"s":1}],[4,{"n":6,"e":6168,"s":1}],[3,{"n":6,"e":6180,"g":1,"s":1}],[2,{"n":4,"e":6197}],[1,{"n":2.5,"e":6206}]],"fo":[[6158,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":26,"n":25}}],[1426,{"n":"Herelle","f":"Christophe","fp":"DC","r":14,"c":75,"s":{"ao":1,"s":18,"n":4,"a":4.5,"d":1.22,"Ss":3,"Sn":1,"Sa":3,"Og":2,"Oao":1,"Os":79.5,"On":16,"Oa":4.97,"Od":1.19,"pd":16},"p":[[-28,{"n":5,"e":3653,"s":1}],[-25,{"n":7.5,"e":3687,"g":1}],[-23,{"n":5,"e":3701}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3725}],[-14,{"n":3,"e":3793}],[-10,{"n":4,"e":3834}],[-26,{"n":5,"e":3673}],[-24,{"n":5,"e":3694,"s":1}],[-20,{"n":5.5,"e":3729}],[-13,{"n":4.5,"e":3804}],[-12,{"n":7,"e":3814,"g":1}],[7,{"n":3,"e":6143}],[5,{"n":4.5,"e":6158}],[4,{"n":4.5,"e":6168,"a":1}],[3,{"n":6,"e":6180}]],"a":{"m":15,"a":21,"M":32,"n":17}}],[2145,{"n":"Faivre","f":"Romain","fp":"MO","r":17,"c":75,"s":{"g":3,"s":43,"n":7,"a":6.14,"d":0.9,"Sg":3,"Ss":43,"Sn":7,"Sa":6.14,"Sd":0.9,"Og":3,"Os":43,"On":7,"Oa":6.14,"Od":0.9,"pm":7},"p":[[7,{"n":6,"e":6143,"g":1}],[6,{"n":7.5,"e":6149,"g":1}],[5,{"n":5.5,"e":6158}],[4,{"n":5.5,"e":6168}],[3,{"n":6.5,"e":6180}],[2,{"n":7,"e":6197,"g":1}],[1,{"n":5,"e":6206}]],"a":{"m":5,"a":20,"M":31,"n":42}}],[2311,{"n":"Cibois","f":"Sebastien","fp":"G","r":6,"c":75}],[2963,{"n":"Honorat","f":"Franck","fp":"MO","r":10,"c":75,"s":{"g":1,"s":31,"n":6,"a":5.17,"d":0.98,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.19,"Og":1,"Os":92.5,"On":18,"Oa":5.14,"Od":0.9,"pm":11,"pa":7},"p":[[-20,{"n":4,"e":3736}],[-14,{"n":5,"e":3796}],[-13,{"n":6.5,"e":3803}],[-27,{"n":4.5,"e":3661}],[-26,{"n":6,"e":3676}],[-25,{"n":4.5,"e":3680,"s":1}],[-24,{"n":5,"e":3693,"s":1}],[-23,{"n":5,"e":3702,"s":1}],[-22,{"n":5,"e":3712}],[-21,{"n":4.5,"e":3727}],[-17,{"n":4.5,"e":3765}],[-16,{"n":7,"e":3776}],[7,{"n":5,"e":6143,"s":1}],[6,{"n":4.5,"e":6149,"s":1}],[5,{"n":4.5,"e":6158,"s":1}],[4,{"n":7,"e":6168,"g":1,"s":1}],[2,{"n":5.5,"e":6197}],[1,{"n":4.5,"e":6206}]]}],[3779,{"n":"N'Goma","f":"Ferris","fp":"MD","r":4,"c":75,"s":{"Og":1,"Os":16,"On":3,"Oa":5.33,"Od":1.04,"pm":3},"p":[[-16,{"n":6.5,"e":3771,"g":1,"s":1}],[-14,{"n":5,"e":3791,"s":1}],[-12,{"n":4.5,"e":3808,"s":1}]]}],[3785,{"n":"Larsonneur","f":"Gautier","fp":"G","r":20,"c":75,"s":{"s":31.5,"n":7,"a":4.5,"d":1.35,"Ss":31.5,"Sn":7,"Sa":4.5,"Sd":1.35,"Os":157,"On":28,"Oa":5.61,"Od":1.4,"pg":28},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":4.5,"e":3660}],[-26,{"n":5.5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":6,"e":3696}],[-23,{"n":6,"e":3698}],[-22,{"n":4,"e":3711}],[-21,{"n":6,"e":3718}],[-20,{"n":5,"e":3737}],[-19,{"n":4,"e":3741}],[-18,{"n":8,"e":3751}],[-17,{"n":8.5,"e":3758}],[-16,{"n":7,"e":3771}],[-15,{"n":6,"e":3779}],[-14,{"n":6,"e":3791}],[-13,{"n":6,"e":3798}],[-12,{"n":6,"e":3808}],[-11,{"n":7,"e":3818}],[-10,{"n":8,"e":3828}],[-8,{"n":6.5,"e":3853}],[-7,{"n":5,"e":3859}],[7,{"n":4.5,"e":6143}],[6,{"n":6,"e":6149}],[5,{"n":4,"e":6158}],[4,{"n":4,"e":6168}],[3,{"n":6.5,"e":6180}],[2,{"n":4,"e":6197}],[1,{"n":2.5,"e":6206}]],"a":{"m":21,"a":30,"M":36,"n":29}}],[3795,{"n":"Belkebla","f":"Haris","fp":"MD","r":11,"c":75,"s":{"s":32,"n":7,"a":4.57,"d":0.73,"Ss":32,"Sn":7,"Sa":4.57,"Sd":0.73,"Os":123,"On":24,"Oa":5.13,"Od":0.91,"pm":24},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":5,"e":3660}],[-26,{"n":6,"e":3673}],[-25,{"n":6,"e":3680}],[-24,{"n":5.5,"e":3696}],[-23,{"n":6.5,"e":3698}],[-22,{"n":5,"e":3711,"s":1}],[-17,{"n":5.5,"e":3758}],[-16,{"n":5,"e":3771,"s":1}],[-15,{"n":4.5,"e":3779}],[-13,{"n":6,"e":3798}],[-12,{"n":5.5,"e":3808}],[-11,{"n":6,"e":3818}],[-10,{"n":6,"e":3828}],[-9,{"n":6.5,"e":3839}],[-8,{"n":3.5,"e":3853}],[-7,{"n":3.5,"e":3859}],[7,{"n":5.5,"e":6143}],[6,{"n":5.5,"e":6149}],[5,{"n":4.5,"e":6158}],[4,{"n":4.5,"e":6168}],[3,{"n":4.5,"e":6180}],[2,{"n":4,"e":6197}],[1,{"n":3.5,"e":6206}]],"fo":[[6180,[{"t":"I"}]],[6149,[{"t":"Y"}]],[6168,[{"t":"Y"}]]]}],[3801,{"n":"Chardonnet","f":"Brendan","fp":"DC","r":9,"c":75,"s":{"s":19.5,"n":4,"a":4.88,"d":1.03,"Os":67.5,"On":14,"Oa":4.82,"Od":0.87,"pd":14},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":5.5,"e":3660}],[-26,{"n":4,"e":3673}],[-25,{"n":4.5,"e":3680}],[-24,{"n":6,"e":3696}],[-23,{"n":5.5,"e":3698,"s":1}],[-21,{"n":5,"e":3718,"s":1}],[-19,{"n":3,"e":3741}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5,"e":3818,"s":1}],[6,{"n":6,"e":6149}],[4,{"n":5,"e":6168,"s":1}],[3,{"n":5,"e":6180,"s":1}],[1,{"n":3.5,"e":6206}]],"fo":[[6206,[{"t":"R"}]]],"a":{"m":9,"a":10,"M":10,"n":9}}],[3810,{"n":"Bain","f":"Denys","fp":"DC","r":6,"c":75,"s":{"Og":1,"Os":53,"On":10,"Oa":5.3,"Od":0.89,"pd":10},"p":[[-18,{"n":5.5,"e":3751,"s":1}],[-17,{"n":5.5,"e":3758,"s":1}],[-15,{"n":4.5,"e":3779}],[-14,{"n":5,"e":3791}],[-13,{"n":4.5,"e":3798}],[-11,{"n":7,"e":3818,"g":1}],[-10,{"n":6,"e":3828}],[-9,{"n":6,"e":3839}],[-8,{"n":4,"e":3853}],[-7,{"n":5,"e":3859}]]}],[3811,{"n":"Battocchio","f":"Cristian","fp":"MO","r":8,"c":75,"s":{"s":20,"n":4,"a":5,"d":0.71,"Og":3,"Os":117,"On":22,"Oa":5.32,"Od":1.03,"pm":22},"p":[[-28,{"n":4.5,"e":3654}],[-27,{"n":4.5,"e":3660}],[-26,{"n":5.5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":5.5,"e":3696}],[-23,{"n":4,"e":3698}],[-22,{"n":4.5,"e":3711}],[-21,{"n":6.5,"e":3718}],[-20,{"n":6,"e":3737}],[-19,{"n":5,"e":3741}],[-18,{"n":5,"e":3751}],[-17,{"n":5.5,"e":3758}],[-16,{"n":9,"e":3771,"g":3}],[-15,{"n":5,"e":3779,"s":1}],[-11,{"n":6,"e":3818}],[-10,{"n":5.5,"e":3828}],[-9,{"n":5,"e":3839,"s":1}],[-7,{"n":5,"e":3859,"s":1}],[5,{"n":5,"e":6158,"s":1}],[4,{"n":4.5,"e":6168,"s":1}],[3,{"n":6,"e":6180,"s":1}],[1,{"n":4.5,"e":6206,"s":1}]]}],[3818,{"n":"Charbonnier","f":"Gaëtan","fp":"A","r":17,"c":75,"s":{"g":2,"s":39.5,"n":7,"a":5.64,"d":1.25,"Sg":2,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":1.25,"Og":5,"Os":139.5,"On":27,"Oa":5.17,"Od":1.23,"pm":8,"pa":19},"p":[[-28,{"n":4,"e":3654,"s":1}],[-27,{"n":5,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":6,"e":3680,"g":1}],[-24,{"n":4.5,"e":3696}],[-23,{"n":4.5,"e":3698,"s":1}],[-22,{"n":4,"e":3711}],[-21,{"n":5.5,"e":3718}],[-20,{"n":8.5,"e":3737,"g":2}],[-18,{"n":3.5,"e":3751}],[-17,{"n":4.5,"e":3758,"s":1}],[-16,{"n":6,"e":3771}],[-15,{"n":5.5,"e":3779}],[-14,{"n":5.5,"e":3791}],[-13,{"n":4.5,"e":3798}],[-11,{"n":6,"e":3818}],[-10,{"n":5,"e":3828}],[-9,{"n":5.5,"e":3839}],[-8,{"n":2.5,"e":3853}],[-7,{"n":5,"e":3859}],[7,{"n":4,"e":6143}],[6,{"n":6,"e":6149}],[5,{"n":6,"e":6158,"g":1}],[4,{"n":5.5,"e":6168}],[3,{"n":7,"e":6180}],[2,{"n":7,"e":6197,"g":1}],[1,{"n":4,"e":6206,"s":1}]],"a":{"m":14,"a":24,"M":38,"n":48}}],[3819,{"n":"Faussurier","f":"Julien","fp":"DL","r":11,"c":75,"s":{"s":26,"n":5,"a":5.2,"d":1.35,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":103.5,"On":21,"Oa":4.93,"Od":1.03,"pd":21},"p":[[-23,{"n":4.5,"e":3698}],[-22,{"n":3,"e":3711}],[-21,{"n":5,"e":3718}],[-20,{"n":5,"e":3737}],[-19,{"n":4,"e":3741}],[-18,{"n":4.5,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":5,"e":3771}],[-15,{"n":4.5,"e":3779}],[-14,{"n":5,"e":3791}],[-13,{"n":4.5,"e":3798}],[-11,{"n":6,"e":3818}],[-10,{"n":4.5,"e":3828}],[-9,{"n":7.5,"e":3839,"g":1}],[-8,{"n":5,"e":3853}],[-7,{"n":5,"e":3859}],[7,{"n":5,"e":6143,"s":1}],[4,{"n":6.5,"e":6168}],[3,{"n":5.5,"e":6180,"s":1}],[2,{"n":6,"e":6197,"s":1}],[1,{"n":3,"e":6206}]],"fo":[[6168,[{"t":"I"}]],[6206,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":21,"n":6}}],[4924,{"n":"Brassier","f":"Lilian","fp":"DC","r":3,"c":75,"s":{"Os":81,"On":17,"Oa":4.76,"Od":1.02,"pd":8,"pm":9},"p":[[-28,{"n":5.5,"e":4792}],[-27,{"n":5,"e":4806,"s":1}],[-24,{"n":4,"e":4830}],[-23,{"n":5,"e":4847}],[-22,{"n":4.5,"e":4855}],[-20,{"n":4.5,"e":4874}],[-18,{"n":6.5,"e":4897}],[-17,{"n":3.5,"e":4898}],[-16,{"n":5,"e":4917}],[-15,{"n":5.5,"e":4925}],[-14,{"n":5,"e":4937}],[-12,{"n":4,"e":4957}],[-11,{"n":5,"e":4959}],[-10,{"n":3,"e":4977}],[-9,{"n":3,"e":4978}],[-21,{"n":6,"e":4867}],[-19,{"n":6,"e":4887}]]}],[5002,{"n":"Duverne","f":"Jean-Kevin","fp":"DC","r":10,"c":75,"s":{"s":28.5,"n":7,"a":4.07,"d":1.46,"Ss":28.5,"Sn":7,"Sa":4.07,"Sd":1.46,"Os":95.5,"On":21,"Oa":4.55,"Od":1.12,"pd":21},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":4,"e":3660}],[-26,{"n":5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":5,"e":3696}],[-23,{"n":5.5,"e":3698}],[-22,{"n":3,"e":3711}],[-21,{"n":5,"e":3718}],[-20,{"n":4.5,"e":3737}],[-19,{"n":3.5,"e":3741}],[-18,{"n":5.5,"e":3751}],[-17,{"n":4.5,"e":3758}],[-16,{"n":6.5,"e":3771}],[-10,{"n":5,"e":3828,"s":1}],[7,{"n":3,"e":6143}],[6,{"n":5.5,"e":6149}],[5,{"n":3.5,"e":6158}],[4,{"n":5,"e":6168}],[3,{"n":6,"e":6180}],[2,{"n":3.5,"e":6197}],[1,{"n":2,"e":6206}]],"fo":[[6143,[{"t":"Y"}]],[6206,[{"t":"Y"}]]]}],[6008,{"n":"M'Bock","f":"Hianga'a","fp":"MD","r":8,"c":75,"s":{"s":20,"n":4,"a":5,"d":0.71,"Og":1,"Os":31,"On":6,"Oa":5.17,"Od":0.88,"pm":6},"p":[[-20,{"n":6.5,"e":3737,"g":1,"s":1}],[-14,{"n":4.5,"e":3791}],[4,{"n":4.5,"e":6168,"s":1}],[3,{"n":6,"e":6180,"s":1}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":5,"e":6206,"s":1}]],"fo":[[6168,[{"t":"Y"}]]]}],[6807,{"n":"Heriberto Tavares","f":"","fp":"A","r":7,"c":75,"s":{"s":13,"n":3,"a":4.33,"d":0.29,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[7,{"n":4.5,"e":6143,"s":1}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":4,"e":6206,"s":1}]]}],[6856,{"n":"Le Douaron","f":"Jeremy","fp":"A","r":11,"c":75,"s":{"s":34,"n":7,"a":4.86,"d":0.99,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.99,"Os":34,"On":7,"Oa":4.86,"Od":0.99,"pm":5,"pa":2},"p":[[7,{"n":4,"e":6143,"s":1}],[6,{"n":5,"e":6149}],[5,{"n":6.5,"e":6158}],[4,{"n":5,"e":6168}],[3,{"n":5.5,"e":6180}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":3.5,"e":6206}]],"a":{"m":6,"a":11,"M":17,"n":11}}],[6857,{"n":"Dioh","f":"Idrissa","fp":"MD","r":1,"c":75}],[6858,{"n":"Said","f":"Rafiki","fp":"A","r":1,"c":75}],[6920,{"n":"Benvindo","f":"Killian","fp":"MO","r":1,"c":75}],[7140,{"n":"Bangoura","f":"Cheick Djibril","fp":"MO","r":5,"c":75}],[167,{"n":"Marié","f":"Jordan","fp":"MD","r":8,"c":7,"s":{"s":27.5,"n":6,"a":4.58,"d":0.38,"Ss":5,"Sn":1,"Sa":5,"Os":61.5,"On":13,"Oa":4.73,"Od":0.44,"pm":13},"p":[[7,{"n":5,"e":6139,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4.5,"e":6177}],[2,{"n":4,"e":6188}],[-26,{"n":5.5,"e":3669,"s":1}],[-24,{"n":5,"e":3690,"s":1}],[-21,{"n":4.5,"e":3723,"s":1}],[-20,{"n":5,"e":3731,"s":1}],[-25,{"n":5,"e":3679,"s":1}],[-23,{"n":4,"e":3705,"s":1}],[-22,{"n":5,"e":3711,"s":1}],[3,{"n":4.5,"e":6180}],[1,{"n":4.5,"e":6200}]]}],[187,{"n":"Sammaritano","f":"Frédéric","fp":"MO","r":7,"c":7,"s":{"s":34.5,"n":7,"a":4.93,"d":0.35,"Ss":34.5,"Sn":7,"Sa":4.93,"Sd":0.35,"Og":1,"Os":68,"On":13,"Oa":5.23,"Od":0.75,"pm":13},"p":[[-28,{"n":6.5,"e":3649}],[-27,{"n":4.5,"e":3666,"s":1}],[-14,{"n":7,"e":3792,"g":1,"s":1}],[-10,{"n":5,"e":3830,"s":1}],[-26,{"n":5,"e":3669}],[-22,{"n":5.5,"e":3711}],[7,{"n":5,"e":6139}],[6,{"n":5,"e":6148,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4.5,"e":6177}],[3,{"n":5,"e":6180,"s":1}],[2,{"n":5.5,"e":6188,"s":1}],[1,{"n":4.5,"e":6200,"s":1}]],"fo":[[6177,[{"t":"Y"}]],[6188,[{"t":"Y"}]]]}],[192,{"n":"Benzia","f":"Yassine","fp":"MO","r":7,"c":7,"s":{"Os":15.5,"On":3,"Oa":5.17,"Od":0.58,"pm":3},"p":[[-25,{"n":4.5,"e":3679}],[-24,{"n":5.5,"e":3690}],[-23,{"n":5.5,"e":3705,"s":1}]]}],[252,{"n":"Chafik","f":"Fouad","fp":"DL","r":10,"c":7,"s":{"s":27,"n":6,"a":4.5,"d":1,"Ss":27,"Sn":6,"Sa":4.5,"Sd":1,"Os":108,"On":22,"Oa":4.91,"Od":0.91,"pd":22},"p":[[-19,{"n":5,"e":3738}],[-18,{"n":5.5,"e":3748}],[-17,{"n":5,"e":3762}],[-16,{"n":4.5,"e":3772}],[-15,{"n":4.5,"e":3778}],[-12,{"n":4.5,"e":3811}],[-7,{"n":5.5,"e":3860}],[-28,{"n":5,"e":3649}],[-26,{"n":5,"e":3669}],[-23,{"n":4,"e":3705}],[-22,{"n":7.5,"e":3711}],[-21,{"n":4.5,"e":3723}],[-20,{"n":6,"e":3731}],[-14,{"n":5.5,"e":3792}],[-11,{"n":4,"e":3818}],[-8,{"n":5,"e":3856}],[7,{"n":5,"e":6139}],[6,{"n":3,"e":6148}],[5,{"n":6,"e":6160}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6180}],[2,{"n":4.5,"e":6188}]],"fo":[[6139,[{"t":"Y"}]],[6160,[{"t":"Y"}]]]}],[278,{"n":"Amalfitano","f":"Romain","fp":"MD","r":9,"c":7,"s":{"s":9,"n":2,"a":4.5,"d":1.41,"Og":1,"Os":114,"On":22,"Oa":5.18,"Od":1.06,"pd":1,"pm":21},"p":[[-13,{"n":4.5,"e":3801}],[-9,{"n":4.5,"e":3840,"s":1}],[-28,{"n":5.5,"e":3649,"s":1}],[-27,{"n":4.5,"e":3666,"s":1}],[-26,{"n":4.5,"e":3669}],[-25,{"n":4.5,"e":3679,"s":1}],[-24,{"n":5,"e":3690}],[-23,{"n":3.5,"e":3705}],[-22,{"n":8,"e":3711}],[-21,{"n":5,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":6.5,"e":3738,"g":1}],[-18,{"n":6,"e":3748}],[-17,{"n":4.5,"e":3762}],[-16,{"n":5.5,"e":3772}],[-15,{"n":4.5,"e":3778,"s":1}],[-14,{"n":6,"e":3792}],[-12,{"n":5.5,"e":3811,"s":1}],[-10,{"n":5,"e":3830,"s":1}],[-7,{"n":5,"e":3860}],[2,{"n":3.5,"e":6188}],[1,{"n":5.5,"e":6200,"s":1}]]}],[330,{"n":"Lautoa","f":"Wesley","fp":"DC","r":8,"c":7,"s":{"ao":1,"s":30,"n":7,"a":4.29,"d":0.81,"Sao":1,"Ss":30,"Sn":7,"Sa":4.29,"Sd":0.81,"Oao":1,"Os":129.5,"On":26,"Oa":4.98,"Od":0.81,"pd":15,"pm":11},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":4,"e":3666}],[-25,{"n":5.5,"e":3679}],[-24,{"n":4,"e":3690}],[-23,{"n":5,"e":3705}],[-22,{"n":6,"e":3711}],[-21,{"n":4.5,"e":3723}],[-20,{"n":6,"e":3731}],[-19,{"n":6,"e":3738}],[-16,{"n":5.5,"e":3772}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5,"e":3792}],[-13,{"n":4.5,"e":3801}],[-12,{"n":6,"e":3811}],[-11,{"n":5,"e":3818}],[-10,{"n":5,"e":3830}],[-9,{"n":5,"e":3840}],[-8,{"n":5.5,"e":3856}],[-7,{"n":5.5,"e":3860,"s":1}],[7,{"n":4,"e":6139}],[6,{"n":4.5,"e":6148,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4,"e":6177,"s":1}],[3,{"n":4,"e":6180,"s":1}],[2,{"n":3,"e":6188,"a":1}],[1,{"n":5.5,"e":6200}]],"a":{"m":11,"a":15,"M":17,"n":6}}],[905,{"n":"Ndong","f":"Didier","fp":"MD","r":13,"c":7,"s":{"s":35,"n":7,"a":5,"d":0.58,"Ss":35,"Sn":7,"Sa":5,"Sd":0.58,"Os":151,"On":28,"Oa":5.39,"Od":0.75,"pd":2,"pm":26},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":4,"e":3666}],[-26,{"n":6,"e":3669}],[-25,{"n":6,"e":3679}],[-24,{"n":5.5,"e":3690}],[-23,{"n":4,"e":3705}],[-22,{"n":7,"e":3711}],[-21,{"n":5,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":5,"e":3738}],[-18,{"n":5.5,"e":3748}],[-17,{"n":5,"e":3762}],[-15,{"n":5.5,"e":3778}],[-14,{"n":6,"e":3792}],[-13,{"n":5.5,"e":3801}],[-12,{"n":5,"e":3811}],[-11,{"n":5,"e":3818}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":5.5,"e":3856}],[-7,{"n":6,"e":3860}],[7,{"n":5.5,"e":6139}],[6,{"n":4,"e":6148}],[5,{"n":5,"e":6160}],[4,{"n":5.5,"e":6177}],[3,{"n":4.5,"e":6180}],[2,{"n":5,"e":6188}],[1,{"n":5.5,"e":6200}]],"fo":[[6139,[{"t":"Y"}]],[6180,[{"t":"Y"}]],[6188,[{"t":"Y"}]]]}],[1527,{"n":"Pape Cheikh Diop Gueye","f":"","fp":"MD","r":9,"c":7,"s":{"s":21.5,"n":5,"a":4.3,"d":0.57,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Os":80.5,"On":17,"Oa":4.74,"Od":0.59,"pm":17},"p":[[-38,{"n":5,"e":4310,"s":1}],[-28,{"n":4.5,"e":4409}],[-26,{"n":5,"e":4431,"s":1}],[-20,{"n":5,"e":4488,"s":1}],[-16,{"n":5,"e":4531}],[-15,{"n":6,"e":4541}],[-14,{"n":4.5,"e":4558}],[-13,{"n":5.5,"e":4561}],[-12,{"n":4.5,"e":4568,"s":1}],[-10,{"n":4,"e":4590}],[-8,{"n":5,"e":4609,"s":1}],[-7,{"n":5,"e":4621,"s":1}],[7,{"n":5,"e":6139,"s":1}],[6,{"n":4,"e":6148}],[5,{"n":4.5,"e":6160}],[3,{"n":3.5,"e":6180}],[1,{"n":4.5,"e":6200}]],"fo":[[4409,[{"t":"Y"}]],[6139,[{"t":"Y"}]],[6180,[{"t":"Y"}]]]}],[2524,{"n":"Ecuele Manga","f":"Bruno","fp":"DC","r":13,"c":7,"s":{"g":1,"s":35,"n":7,"a":5,"d":1.12,"Sg":1,"Ss":35,"Sn":7,"Sa":5,"Sd":1.12,"Og":1,"Os":146.5,"On":29,"Oa":5.05,"Od":0.99,"pd":29},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":3,"e":3666}],[-26,{"n":5,"e":3669}],[-25,{"n":4,"e":3679}],[-24,{"n":3.5,"e":3690}],[-23,{"n":4,"e":3705}],[-22,{"n":5.5,"e":3711}],[-21,{"n":4,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":4.5,"e":3738}],[-18,{"n":5,"e":3748}],[-17,{"n":5.5,"e":3762}],[-16,{"n":5,"e":3772}],[-15,{"n":6,"e":3778}],[-14,{"n":5,"e":3792}],[-13,{"n":6,"e":3801}],[-12,{"n":5,"e":3811}],[-11,{"n":4.5,"e":3818}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":6,"e":3856}],[-7,{"n":5.5,"e":3860}],[7,{"n":5,"e":6139}],[6,{"n":3.5,"e":6148}],[5,{"n":7,"e":6160,"g":1}],[4,{"n":5,"e":6177}],[3,{"n":5,"e":6180}],[2,{"n":4,"e":6188}],[1,{"n":5.5,"e":6200}]],"a":{"m":13,"a":17,"M":38,"n":21}}],[2633,{"n":"Ntumba","f":"Lévi","fp":"G","r":1,"c":7}],[2639,{"n":"Senou Coulibaly","f":"","fp":"DC","r":4,"c":7,"s":{"Os":28,"On":6,"Oa":4.67,"Od":0.93,"pd":6},"p":[[-27,{"n":4,"e":3666}],[-16,{"n":4.5,"e":3772}],[-15,{"n":6,"e":3778}],[-12,{"n":4.5,"e":3811}],[-11,{"n":3.5,"e":3818}],[-10,{"n":5.5,"e":3830,"s":1}]]}],[2665,{"n":"Racioppi","f":"Anthony","fp":"G","r":1,"c":7}],[2693,{"n":"Panzo","f":"Jonathan","fp":"DC","r":10,"c":7,"s":{"s":29,"n":6,"a":4.83,"d":0.75,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.75,"Os":29,"On":6,"Oa":4.83,"Od":0.75,"pd":6},"p":[[7,{"n":6,"e":6139}],[6,{"n":4,"e":6148}],[5,{"n":4.5,"e":6160}],[4,{"n":5.5,"e":6177}],[3,{"n":4.5,"e":6180}],[2,{"n":4.5,"e":6188,"s":1}]],"fo":[[6180,[{"t":"I"}]],[6148,[{"t":"Y"}]],[6160,[{"t":"Y"}]]]}],[2853,{"n":"Dobre","f":"Mihai-Alexandru","fp":"MO","r":7,"c":7,"s":{"s":18.5,"n":4,"a":4.63,"d":0.75,"Ss":5,"Sn":1,"Sa":5,"Os":18.5,"On":4,"Oa":4.63,"Od":0.75,"pm":3,"pa":1},"p":[[7,{"n":5,"e":6139,"s":1}],[3,{"n":3.5,"e":6180}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":5,"e":6200,"s":1}]]}],[3525,{"n":"Boey","f":"Sacha","fp":"DL","r":5,"c":7,"s":{"s":8,"n":2,"a":4,"d":0.71,"Os":24,"On":5,"Oa":4.8,"Od":0.91,"pd":5},"p":[[6,{"n":4.5,"e":6155}],[1,{"n":3.5,"e":6201}],[-28,{"n":6,"e":3655,"s":1}],[-25,{"n":5,"e":3686,"s":1}],[-21,{"n":5,"e":3725}]],"fo":[[6201,[{"t":"R"}]]]}],[3764,{"n":"Zagre","f":"Arthur","fp":"DL","r":2,"c":7}],[3768,{"n":"Mama Baldé","f":"","fp":"MO","r":11,"c":7,"s":{"g":1,"s":14.5,"n":3,"a":4.83,"d":1.26,"Sg":1,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.26,"Og":7,"Os":118,"On":22,"Oa":5.36,"Od":1.29,"pm":17,"pa":5},"p":[[-28,{"n":6,"e":3649}],[-27,{"n":4,"e":3666}],[-26,{"n":7,"e":3669,"g":1,"s":1}],[-25,{"n":4.5,"e":3679}],[-24,{"n":5.5,"e":3690,"s":1}],[-23,{"n":4.5,"e":3705}],[-22,{"n":8,"e":3711,"g":2}],[-21,{"n":6,"e":3723,"g":1}],[-20,{"n":7,"e":3731}],[-19,{"n":7,"e":3738,"g":1}],[-18,{"n":5,"e":3748,"s":1}],[-17,{"n":3.5,"e":3762}],[-16,{"n":5,"e":3772}],[-15,{"n":4.5,"e":3778}],[-14,{"n":4.5,"e":3792,"s":1}],[-12,{"n":5,"e":3811}],[-11,{"n":4,"e":3818}],[-8,{"n":7.5,"e":3856,"g":1}],[-7,{"n":5,"e":3860}],[7,{"n":6,"e":6139,"g":1}],[6,{"n":3.5,"e":6148}],[5,{"n":5,"e":6160}]],"fo":[[6148,[{"t":"I"}]]],"a":{"m":13,"a":20,"M":41,"n":33}}],[4931,{"n":"Scheidler","f":"Aurelien","fp":"A","r":10,"c":7,"s":{"g":1,"s":21,"n":5,"a":4.2,"d":0.45,"Ss":8,"Sn":2,"Sa":4,"Og":4,"Os":105,"On":23,"Oa":4.57,"Od":1.1,"pa":23},"p":[[-26,{"n":5.5,"e":4813}],[-25,{"n":4,"e":4825,"s":1}],[-24,{"n":4,"e":4834,"s":1}],[-23,{"n":4,"e":4844}],[-22,{"n":6,"e":4850,"g":1}],[-21,{"n":4.5,"e":4865}],[-20,{"n":4,"e":4869}],[-19,{"n":5,"e":4883}],[-18,{"n":6,"e":4892}],[-16,{"n":5,"e":4908}],[-14,{"n":4,"e":4934}],[-13,{"n":4,"e":4939}],[-12,{"n":7,"e":4953,"g":1}],[-11,{"n":4.5,"e":4963}],[-10,{"n":3,"e":4974}],[-9,{"n":7,"e":4987,"g":1}],[-17,{"n":3,"e":4900}],[-15,{"n":3.5,"e":4925}],[7,{"n":4,"e":6139,"s":1}],[6,{"n":4,"e":6148,"s":1}],[4,{"n":4,"e":6177}],[2,{"n":5,"e":6188,"g":1}],[1,{"n":4,"e":6200}]],"fo":[[6200,[{"t":"I"}]]],"a":{"m":9,"a":13,"M":16,"n":8}}],[4945,{"n":"Ebimbe","f":"Éric","fp":"MO","r":11,"c":7,"s":{"g":1,"s":32.5,"n":7,"a":4.64,"d":1.03,"Sg":1,"Ss":32.5,"Sn":7,"Sa":4.64,"Sd":1.03,"Og":3,"Os":116,"On":24,"Oa":4.83,"Od":1.1,"pm":16,"pa":8},"p":[[-27,{"n":6.5,"e":4800,"g":1,"s":1}],[-25,{"n":4.5,"e":4826,"s":1}],[-24,{"n":4.5,"e":4832,"s":1}],[-23,{"n":5,"e":4840,"s":1}],[-22,{"n":4,"e":4852}],[-21,{"n":5,"e":4862}],[-19,{"n":4,"e":4885}],[-18,{"n":3.5,"e":4890}],[-16,{"n":5.5,"e":4915}],[-15,{"n":8,"e":4922,"g":1}],[-14,{"n":4,"e":4936}],[-10,{"n":4.5,"e":4968}],[-9,{"n":4.5,"e":4983}],[-26,{"n":3.5,"e":4813}],[-17,{"n":5,"e":4906}],[-12,{"n":6,"e":4957}],[-11,{"n":5.5,"e":4964}],[7,{"n":6,"e":6139}],[6,{"n":4,"e":6148}],[5,{"n":6,"e":6160,"g":1}],[4,{"n":4,"e":6177}],[3,{"n":3.5,"e":6180}],[2,{"n":5,"e":6188}],[1,{"n":4,"e":6200}]],"fo":[[6148,[{"t":"Y"}]],[6160,[{"t":"Y"}]]]}],[5057,{"n":"Chouiar","f":"Mounir","fp":"MO","r":9,"c":7,"s":{"s":29,"n":6,"a":4.83,"d":0.88,"Ss":20,"Sn":4,"Sa":5,"Sd":1.08,"Og":4,"Os":134.5,"On":24,"Oa":5.6,"Od":1.18,"pm":18,"pa":6},"p":[[-26,{"n":5,"e":3669}],[-25,{"n":8,"e":3679,"g":2}],[-24,{"n":6,"e":3690}],[-23,{"n":5.5,"e":3705}],[-21,{"n":3,"e":3723}],[-20,{"n":7,"e":3731}],[-19,{"n":5.5,"e":3738}],[-18,{"n":5,"e":3748}],[-17,{"n":5,"e":3762}],[-16,{"n":6.5,"e":3772}],[-15,{"n":6,"e":3778}],[-14,{"n":7.5,"e":3792,"g":1}],[-13,{"n":5.5,"e":3801}],[-12,{"n":7.5,"e":3811,"g":1}],[-11,{"n":5.5,"e":3818,"s":1}],[-10,{"n":5,"e":3830}],[-9,{"n":6,"e":3840}],[-7,{"n":6,"e":3860}],[7,{"n":6.5,"e":6139}],[6,{"n":4,"e":6148}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":4.5,"e":6177,"s":1}],[2,{"n":4.5,"e":6188}],[1,{"n":4.5,"e":6200}]],"fo":[[6148,[{"t":"Y"}]]],"a":{"m":10,"a":21,"M":31,"n":49}}],[5069,{"n":"Allagbe","f":"Saturnin","fp":"G","r":13,"c":7,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":69,"On":13,"Oa":5.31,"Od":0.9,"pg":13},"p":[[5,{"n":5.5,"e":6543}],[4,{"n":7,"e":6553}],[3,{"n":6,"e":6563}],[2,{"n":4.5,"e":6574}],[1,{"n":6.5,"e":6584}],[-28,{"n":5,"e":4795}],[-13,{"n":5,"e":4946}],[-12,{"n":5.5,"e":4950}],[-11,{"n":6,"e":4965}],[-10,{"n":5,"e":4973}],[-9,{"n":4,"e":4985}],[7,{"n":5,"e":6139}],[6,{"n":4,"e":6148}]],"fo":[[6139,[{"t":"Y"}]]]}],[6201,{"n":"Muzinga","f":"Ngonda","fp":"DL","r":5,"c":7,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":32.5,"On":7,"Oa":4.64,"Od":0.8,"pd":7},"p":[[-23,{"n":3.5,"e":3705}],[-21,{"n":4,"e":3723}],[-12,{"n":4.5,"e":3811}],[-10,{"n":6,"e":3830}],[7,{"n":4.5,"e":6139,"s":1}],[5,{"n":5,"e":6160,"s":1}],[1,{"n":5,"e":6200}]],"fo":[[6200,[{"t":"I"}]]],"a":{"m":6,"a":7,"M":10,"n":9}}],[6306,{"n":"Ngouyamsa Nounchil","f":"Ahmad Toure","fp":"DL","r":7,"c":7,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":12,"On":3,"Oa":4,"Od":0.87,"pd":3},"p":[[-20,{"n":4.5,"e":3731,"s":1}],[2,{"n":3,"e":6188}],[1,{"n":4.5,"e":6200}]],"fo":[[6188,[{"t":"Y"}]]]}],[6529,{"n":"Assalé","f":"Roger","fp":"A","r":9,"c":7,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Og":2,"Os":79.5,"On":16,"Oa":4.97,"Od":0.97,"pm":1,"pa":15},"p":[[-32,{"n":3.5,"e":4375}],[-31,{"n":5,"e":4381,"s":1}],[-25,{"n":4.5,"e":4441,"s":1}],[-24,{"n":4.5,"e":4452,"s":1}],[-23,{"n":5,"e":4463,"s":1}],[-38,{"n":6.5,"e":4312,"g":1,"s":1}],[-37,{"n":7,"e":4318,"g":1,"s":1}],[-35,{"n":4.5,"e":4341,"s":1}],[-34,{"n":4,"e":4351,"s":1}],[-33,{"n":5,"e":4361,"s":1}],[-30,{"n":5.5,"e":4394}],[-29,{"n":4.5,"e":4399,"s":1}],[-28,{"n":5.5,"e":4412,"s":1}],[-27,{"n":6,"e":4427,"s":1}],[6,{"n":3.5,"e":6148}],[5,{"n":5,"e":6160}]],"fo":[[4351,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":11,"n":8}}],[6860,{"n":"Younoussa","f":"Wilitty","fp":"MD","r":6,"c":7,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[4,{"n":5,"e":6177,"s":1}],[3,{"n":4.5,"e":6180,"s":1}]],"a":{"m":6,"a":6,"M":6,"n":5}}],[6922,{"n":"Arli","f":"Amir","fp":"MO","r":1,"c":7}],[6923,{"n":"Racovitan","f":"Bogdan","fp":"DC","r":1,"c":7}],[7146,{"n":"Chalá","f":"Aníbal","fp":"DL","r":8,"c":7,"s":{"s":21,"n":5,"a":4.2,"d":0.57,"Ss":21,"Sn":5,"Sa":4.2,"Sd":0.57,"Os":21,"On":5,"Oa":4.2,"Od":0.57,"pd":5},"p":[[7,{"n":4,"e":6139}],[6,{"n":3.5,"e":6148}],[5,{"n":5,"e":6160}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6180}]]}],[7270,{"n":"Celina","f":"Bersant","fp":"MO","r":9,"c":7,"s":{"s":15.5,"n":3,"a":5.17,"d":1.26,"Os":15.5,"On":3,"Oa":5.17,"Od":1.26,"pm":2,"pa":1},"p":[[6,{"n":5,"e":6148,"s":1}],[5,{"n":6.5,"e":6160}],[4,{"n":4,"e":6177}]],"fo":[[6160,[{"t":"Y"}]]]}],[81,{"n":"Cahuzac","f":"Yannick","fp":"MD","r":15,"c":104,"s":{"s":37,"n":7,"a":5.29,"d":0.27,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.25,"Os":133.5,"On":25,"Oa":5.34,"Od":0.75,"pm":25},"p":[[7,{"n":5,"e":6140}],[6,{"n":5.5,"e":6150}],[5,{"n":5.5,"e":6165}],[3,{"n":5,"e":6182}],[2,{"n":5.5,"e":6190,"s":1}],[1,{"n":5,"e":6205}],[-28,{"n":6,"e":4794}],[-27,{"n":7,"e":4805}],[-25,{"n":4.5,"e":4820}],[-24,{"n":4.5,"e":4833}],[-23,{"n":6,"e":4841}],[-21,{"n":5,"e":4863}],[-20,{"n":5.5,"e":4871}],[-19,{"n":6.5,"e":4882}],[-18,{"n":4.5,"e":4888}],[-15,{"n":6.5,"e":4923}],[-14,{"n":5.5,"e":4935}],[-12,{"n":5,"e":4952}],[-11,{"n":5,"e":4966}],[-9,{"n":5,"e":4984}],[-22,{"n":6,"e":4852}],[-16,{"n":3.5,"e":4917}],[-13,{"n":5,"e":4945}],[-10,{"n":5.5,"e":4974}],[4,{"n":5.5,"e":6169}]],"fo":[[6140,[{"t":"Y"}]],[6182,[{"t":"Y"}]],[6205,[{"t":"Y"}]]]}],[92,{"n":"Leca","f":"Jean-Louis","fp":"G","r":20,"c":104,"s":{"s":35,"n":7,"a":5,"d":1.12,"Ss":35,"Sn":7,"Sa":5,"Sd":1.12,"Os":150,"On":27,"Oa":5.56,"Od":0.94,"pg":27},"p":[[-26,{"n":5,"e":4814}],[-17,{"n":6,"e":4903}],[-28,{"n":6,"e":4794}],[-27,{"n":6,"e":4805}],[-25,{"n":4,"e":4820}],[-24,{"n":6,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":6,"e":4852}],[-21,{"n":6,"e":4863}],[-20,{"n":5.5,"e":4871}],[-19,{"n":6,"e":4882}],[-18,{"n":5,"e":4888}],[-16,{"n":7,"e":4917}],[-15,{"n":6,"e":4923}],[-14,{"n":5,"e":4935}],[-13,{"n":6.5,"e":4945}],[-12,{"n":7.5,"e":4952}],[-11,{"n":6,"e":4966}],[-10,{"n":4.5,"e":4974}],[-9,{"n":5,"e":4984}],[7,{"n":3,"e":6140}],[6,{"n":6,"e":6150}],[5,{"n":5.5,"e":6165}],[4,{"n":5.5,"e":6169}],[3,{"n":5,"e":6182}],[2,{"n":6,"e":6190}],[1,{"n":4,"e":6205}]],"a":{"m":20,"a":24,"M":31,"n":12}}],[144,{"n":"Sylla","f":"Issiaga","fp":"DL","r":10,"c":104,"s":{"s":25.5,"n":5,"a":5.1,"d":0.42,"Os":121,"On":27,"Oa":4.48,"Od":0.67,"pd":24,"pm":3},"p":[[-27,{"n":5,"e":3667}],[-26,{"n":4.5,"e":3670}],[-24,{"n":5,"e":3691}],[-23,{"n":5,"e":3707}],[-22,{"n":5,"e":3708}],[-21,{"n":4,"e":3720}],[-19,{"n":4.5,"e":3743}],[-17,{"n":3.5,"e":3767}],[-16,{"n":4.5,"e":3777}],[-15,{"n":5,"e":3782}],[-14,{"n":5,"e":3797}],[-13,{"n":3,"e":3802}],[-12,{"n":4.5,"e":3817}],[-11,{"n":4,"e":3825}],[-10,{"n":4.5,"e":3837}],[-8,{"n":4,"e":3852}],[-28,{"n":3.5,"e":3649}],[-25,{"n":5,"e":3687}],[-20,{"n":4,"e":3737}],[-18,{"n":4.5,"e":3757}],[-9,{"n":3,"e":3847}],[-7,{"n":4.5,"e":3867}],[5,{"n":4.5,"e":6165}],[4,{"n":5,"e":6169}],[3,{"n":5,"e":6182,"s":1}],[2,{"n":5.5,"e":6190}],[1,{"n":5.5,"e":6205,"s":1}]],"a":{"m":10,"a":12,"M":18,"n":6}}],[302,{"n":"Jean","f":"Corentin","fp":"A","r":7,"c":104,"s":{"s":31.5,"n":7,"a":4.5,"d":0.58,"Ss":31.5,"Sn":7,"Sa":4.5,"Sd":0.58,"Og":3,"Os":82,"On":17,"Oa":4.82,"Od":0.73,"pa":17},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":4.5,"e":4805,"s":1}],[-26,{"n":6,"e":4814,"g":1}],[-25,{"n":5.5,"e":4820}],[-24,{"n":4,"e":4833}],[-23,{"n":6,"e":4841,"g":1,"s":1}],[-22,{"n":4.5,"e":4852}],[-21,{"n":6,"e":4863,"g":1,"s":1}],[-20,{"n":4.5,"e":4871,"s":1}],[-16,{"n":4.5,"e":3777,"s":1}],[7,{"n":3.5,"e":6140}],[6,{"n":4,"e":6150,"s":1}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":4.5,"e":6169,"s":1}],[3,{"n":5,"e":6182}],[2,{"n":4.5,"e":6190,"s":1}],[1,{"n":5,"e":6205,"s":1}]],"fo":[[6169,[{"t":"Y"}]]]}],[481,{"n":"Michelin","f":"Clement","fp":"DL","r":9,"c":104,"s":{"s":19,"n":4,"a":4.75,"d":1.04,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":1,"Os":119.5,"On":23,"Oa":5.2,"Od":0.93,"pd":4,"pm":19},"p":[[-28,{"n":5,"e":4794}],[-26,{"n":3,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":5,"e":4852}],[-21,{"n":5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":5.5,"e":4882}],[-18,{"n":5.5,"e":4888}],[-17,{"n":6.5,"e":4903}],[-16,{"n":5,"e":4917}],[-15,{"n":7,"e":4923}],[-14,{"n":5,"e":4935}],[-13,{"n":6.5,"e":4945}],[-12,{"n":5,"e":4952,"s":1}],[-11,{"n":5.5,"e":4966}],[-10,{"n":5,"e":4974}],[-9,{"n":6,"e":4984,"g":1}],[7,{"n":3.5,"e":6140,"s":1}],[3,{"n":5,"e":6182,"s":1}],[2,{"n":6,"e":6190}],[1,{"n":4.5,"e":6205}]],"fo":[[6140,[{"t":"R"}]]],"a":{"m":16,"a":22,"M":32,"n":7}}],[1208,{"n":"Steven Fortes","f":"","fp":"DC","r":9,"c":104,"s":{"s":10,"n":2,"a":5,"Os":49.5,"On":10,"Oa":4.95,"Od":1.01,"pd":10},"p":[[-28,{"n":5.5,"e":4794}],[-27,{"n":5.5,"e":4805}],[-26,{"n":2.5,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5,"e":4833}],[-23,{"n":6,"e":4841}],[-22,{"n":5.5,"e":4852}],[-21,{"n":5.5,"e":4863,"s":1}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":5,"e":6169}]],"fo":[[6169,[{"t":"Y"}]]]}],[1272,{"n":"Ganago","f":"Ignatius","fp":"A","r":18,"c":104,"s":{"g":4,"s":38,"n":6,"a":6.33,"d":1.33,"Og":6,"Os":133,"On":26,"Oa":5.12,"Od":1.19,"pm":4,"pa":22},"p":[[-17,{"n":7,"e":3763,"g":1,"s":1}],[-11,{"n":4,"e":3827}],[-9,{"n":4,"e":3843,"s":1}],[-8,{"n":4,"e":3854,"s":1}],[-7,{"n":4,"e":3862,"s":1}],[-28,{"n":4.5,"e":3653,"s":1}],[-27,{"n":4.5,"e":3659,"s":1}],[-26,{"n":4.5,"e":3673}],[-25,{"n":4.5,"e":3687,"s":1}],[-24,{"n":4.5,"e":3694,"s":1}],[-23,{"n":6.5,"e":3701}],[-22,{"n":4,"e":3713,"s":1}],[-21,{"n":4.5,"e":3725,"s":1}],[-20,{"n":5.5,"e":3729}],[-18,{"n":5.5,"e":3751}],[-16,{"n":4.5,"e":3776,"s":1}],[-14,{"n":4.5,"e":3793}],[-13,{"n":4,"e":3804}],[-12,{"n":4.5,"e":3814}],[-10,{"n":6,"e":3834,"g":1}],[6,{"n":6,"e":6150}],[5,{"n":7,"e":6165,"g":1}],[4,{"n":8,"e":6169,"g":1}],[3,{"n":6.5,"e":6182,"g":1,"s":1}],[2,{"n":6.5,"e":6190,"g":1}],[1,{"n":4,"e":6205}]],"fo":[[6150,[{"t":"I"}]],[6165,[{"t":"I"}]]],"a":{"m":11,"a":22,"M":41,"n":43}}],[1436,{"n":"Kakuta","f":"Gaël","fp":"MO","r":21,"c":104,"s":{"g":4,"s":42.5,"n":7,"a":6.07,"d":1.06,"Sg":4,"Ss":42.5,"Sn":7,"Sa":6.07,"Sd":1.06,"Og":6,"Os":140,"On":26,"Oa":5.38,"Od":1.12,"pm":18,"pa":8},"p":[[-28,{"n":5,"e":3651}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4.5,"e":3677}],[-25,{"n":7.5,"e":3678,"g":1}],[-24,{"n":4.5,"e":3688}],[-23,{"n":5,"e":3704}],[-17,{"n":3,"e":3760}],[-15,{"n":6,"e":3781,"g":1}],[-14,{"n":3.5,"e":3788}],[-13,{"n":5,"e":3806}],[-11,{"n":4,"e":3826}],[-9,{"n":6.5,"e":3838}],[-22,{"n":6,"e":3708}],[-21,{"n":5.5,"e":3718}],[-18,{"n":5.5,"e":3748}],[-12,{"n":6,"e":3808}],[-10,{"n":5,"e":3835}],[-8,{"n":4.5,"e":3848}],[-7,{"n":5,"e":3858,"s":1}],[7,{"n":4,"e":6140}],[6,{"n":6.5,"e":6150,"g":1}],[5,{"n":6,"e":6165}],[4,{"n":7,"e":6169,"g":1}],[3,{"n":7,"e":6182,"g":1}],[2,{"n":5.5,"e":6190}],[1,{"n":6.5,"e":6205,"g":1}]],"fo":[[6150,[{"t":"I"},{"t":"Y"}]]],"a":{"m":13,"a":28,"M":74,"n":54}}],[1518,{"n":"Massadio Haidara","f":"","fp":"DL","r":9,"c":104,"s":{"s":8.5,"n":2,"a":4.25,"d":1.77,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.77,"Og":1,"Os":97,"On":19,"Oa":5.11,"Od":0.83,"pd":2,"pm":17},"p":[[-26,{"n":5,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5.5,"e":4833}],[-23,{"n":4.5,"e":4841}],[-22,{"n":5,"e":4852}],[-21,{"n":5.5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":5,"e":4882}],[-18,{"n":6,"e":4888}],[-16,{"n":4.5,"e":4917}],[-15,{"n":7,"e":4923,"g":1}],[-14,{"n":5.5,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":5,"e":4952}],[-11,{"n":5,"e":4966}],[-10,{"n":5,"e":4974}],[-9,{"n":5,"e":4984,"s":1}],[7,{"n":3,"e":6140}],[6,{"n":5.5,"e":6150}]]}],[2710,{"n":"Gradit","f":"Jonathan","fp":"DL","r":8,"c":104,"s":{"s":31.5,"n":7,"a":4.5,"d":1,"Ss":31.5,"Sn":7,"Sa":4.5,"Sd":1,"Os":76,"On":15,"Oa":5.07,"Od":0.92,"pd":15},"p":[[-21,{"n":5.5,"e":4863}],[-20,{"n":5.5,"e":4871,"s":1}],[-17,{"n":5.5,"e":4903}],[-16,{"n":5.5,"e":4917,"s":1}],[-12,{"n":4.5,"e":4952}],[-11,{"n":6,"e":4966}],[-10,{"n":6,"e":4974}],[-9,{"n":6,"e":4984}],[7,{"n":3,"e":6140}],[6,{"n":5.5,"e":6150}],[5,{"n":4,"e":6165}],[4,{"n":4,"e":6169}],[3,{"n":5.5,"e":6182}],[2,{"n":5.5,"e":6190}],[1,{"n":4,"e":6205}]],"fo":[[6140,[{"t":"Y"},{"t":"O"}]],[6165,[{"t":"Y"}]],[6169,[{"t":"Y"}]]],"a":{"m":8,"a":11,"M":15,"n":6}}],[2722,{"n":"Cheick Traoré","f":"","fp":"DL","r":4,"c":104,"s":{"Os":34,"On":7,"Oa":4.86,"Od":0.38,"pd":5,"pm":2},"p":[[-27,{"n":5.5,"e":4805}],[-26,{"n":4.5,"e":4814,"s":1}],[-19,{"n":4.5,"e":4882,"s":1}],[-16,{"n":5,"e":4917,"s":1}],[-14,{"n":5,"e":4935,"s":1}],[-13,{"n":5,"e":4945,"s":1}],[-12,{"n":4.5,"e":4952}]]}],[4516,{"n":"Fofana","f":"Seko","fp":"MD","r":10,"c":104,"s":{"s":5.5,"n":1,"a":5.5,"Og":3,"Os":166,"On":29,"Oa":5.72,"Od":1,"pm":29},"p":[[-38,{"n":4.5,"e":5457,"s":1}],[-37,{"n":5,"e":5466}],[-35,{"n":7.5,"e":5487,"g":1}],[-34,{"n":5.5,"e":5494}],[-33,{"n":5.5,"e":5507}],[-32,{"n":5.5,"e":5517,"s":1}],[-31,{"n":7,"e":5525}],[-30,{"n":6.5,"e":5537,"g":1}],[-29,{"n":6,"e":5544,"s":1}],[-28,{"n":6,"e":5557}],[-27,{"n":5,"e":5566}],[-26,{"n":5.5,"e":5577,"s":1}],[-25,{"n":5.5,"e":5579}],[-24,{"n":6,"e":5597}],[-23,{"n":5.5,"e":5598}],[-22,{"n":4.5,"e":5617}],[-21,{"n":4.5,"e":5622}],[-20,{"n":5,"e":5635}],[-19,{"n":8,"e":5646}],[-18,{"n":6.5,"e":5653}],[-17,{"n":8,"e":5667,"g":1}],[-16,{"n":5,"e":5673}],[-15,{"n":7,"e":5687}],[-14,{"n":5.5,"e":5694,"s":1}],[-12,{"n":5,"e":5717,"s":1}],[-9,{"n":5,"e":5738,"s":1}],[-6,{"n":5.5,"e":5777}],[-5,{"n":4.5,"e":5787}],[4,{"n":5.5,"e":6169,"s":1}]],"fo":[[5537,[{"t":"Y"}]],[5566,[{"t":"Y"}]]],"a":{"m":11,"a":17,"M":26,"n":39}}],[4944,{"n":"Cheick Oumar Doucoure","f":"","fp":"MD","r":15,"c":104,"s":{"s":36.5,"n":7,"a":5.21,"d":0.86,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.86,"Og":1,"Os":131,"On":25,"Oa":5.24,"Od":0.87,"pd":11,"pm":14},"p":[[-28,{"n":4.5,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":3,"e":4814}],[-25,{"n":6,"e":4820,"g":1}],[-24,{"n":4.5,"e":4833}],[-23,{"n":5,"e":4841}],[-22,{"n":5.5,"e":4852}],[-21,{"n":5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":6,"e":4882}],[-18,{"n":5.5,"e":4888}],[-17,{"n":7,"e":4903}],[-16,{"n":4.5,"e":4917}],[-15,{"n":6,"e":4923}],[-14,{"n":5.5,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":5,"e":4952,"s":1}],[-9,{"n":4.5,"e":4984,"s":1}],[7,{"n":4,"e":6140}],[6,{"n":6,"e":6150}],[5,{"n":5.5,"e":6165}],[4,{"n":5.5,"e":6169}],[3,{"n":5.5,"e":6182}],[2,{"n":6,"e":6190}],[1,{"n":4,"e":6205}]],"fo":[[6169,[{"t":"Y"}]],[6190,[{"t":"Y"}]]],"a":{"m":15,"a":16,"M":20,"n":6}}],[4993,{"n":"Bayala","f":"Cyrille","fp":"MO","r":4,"c":104,"s":{"Og":4,"Oao":1,"Os":110,"On":19,"Oa":5.79,"Od":0.8,"pm":19},"p":[[-26,{"n":7,"e":4808,"g":1}],[-24,{"n":5,"e":4828}],[-23,{"n":6,"e":4845}],[-22,{"n":4.5,"e":4848}],[-21,{"n":5.5,"e":4859}],[-20,{"n":5,"e":4868,"a":1}],[-19,{"n":4.5,"e":4886}],[-17,{"n":6.5,"e":4899}],[-16,{"n":6,"e":4909}],[-15,{"n":5,"e":4918}],[-14,{"n":6,"e":4930,"g":1}],[-13,{"n":5.5,"e":4938}],[-12,{"n":7,"e":4956,"g":1}],[-11,{"n":5,"e":4958}],[-28,{"n":7,"e":4788,"g":1}],[-27,{"n":6,"e":4806}],[-25,{"n":6.5,"e":4825}],[-10,{"n":6,"e":4972}],[-9,{"n":6,"e":4978}]],"a":{"m":5,"a":9,"M":21,"n":6}}],[5003,{"n":"Radovanovic","f":"Aleksandar","fp":"DC","r":9,"c":104,"s":{"s":3,"n":1,"a":3,"Ss":3,"Sn":1,"Sa":3,"Og":2,"Os":80.5,"On":16,"Oa":5.03,"Od":1.32,"pd":16},"p":[[-28,{"n":6,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":3,"e":4814}],[-25,{"n":3,"e":4820}],[-20,{"n":4.5,"e":4871}],[-19,{"n":6,"e":4882}],[-18,{"n":5,"e":4888}],[-16,{"n":3,"e":4917}],[-15,{"n":6,"e":4923}],[-14,{"n":5,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":5.5,"e":4952}],[-11,{"n":5.5,"e":4966}],[-10,{"n":6.5,"e":4974,"g":1}],[-9,{"n":6.5,"e":4984,"g":1}],[7,{"n":3,"e":6140}]],"a":{"m":11,"a":20,"M":34,"n":10}}],[5013,{"n":"Desprez","f":"Didier","fp":"G","r":3,"c":104}],[5030,{"n":"Banza","f":"Simon","fp":"A","r":8,"c":104,"s":{"s":29,"n":6,"a":4.83,"d":0.26,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Og":5,"Os":106.5,"On":22,"Oa":4.84,"Od":1.23,"pa":22},"p":[[-27,{"n":6.5,"e":4805}],[-26,{"n":3,"e":4814}],[-25,{"n":6,"e":4820,"g":1,"s":1}],[-24,{"n":4,"e":4833}],[-23,{"n":4,"e":4841}],[-22,{"n":4.5,"e":4852,"s":1}],[-19,{"n":2,"e":4882,"s":1}],[-17,{"n":8,"e":4903,"g":2}],[-16,{"n":4.5,"e":4917}],[-15,{"n":6,"e":4923,"g":1}],[-14,{"n":4.5,"e":4935}],[-13,{"n":4,"e":4945,"s":1}],[-12,{"n":5.5,"e":4952}],[-11,{"n":4.5,"e":4966,"s":1}],[-10,{"n":6,"e":4974,"g":1,"s":1}],[-9,{"n":4.5,"e":4984,"s":1}],[7,{"n":5,"e":6140,"s":1}],[6,{"n":5,"e":6150,"s":1}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":4.5,"e":6169,"s":1}],[2,{"n":5,"e":6190}],[1,{"n":4.5,"e":6205,"s":1}]],"a":{"m":10,"a":12,"M":15,"n":10}}],[5061,{"n":"Sotoca","f":"Florian","fp":"A","r":18,"c":104,"s":{"g":1,"s":36,"n":7,"a":5.14,"d":1.31,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":1.31,"Og":8,"Os":130,"On":25,"Oa":5.2,"Od":1.3,"pa":25},"p":[[-28,{"n":6,"e":4794,"g":1}],[-27,{"n":8,"e":4805,"g":2}],[-25,{"n":3.5,"e":4820}],[-24,{"n":4,"e":4833,"s":1}],[-23,{"n":4.5,"e":4841,"s":1}],[-22,{"n":3.5,"e":4852}],[-21,{"n":6,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":5,"e":4882}],[-18,{"n":7.5,"e":4888,"g":2}],[-16,{"n":4.5,"e":4917}],[-15,{"n":7,"e":4923,"g":1}],[-14,{"n":5,"e":4935}],[-13,{"n":4.5,"e":4945}],[-12,{"n":4.5,"e":4952}],[-11,{"n":4,"e":4966}],[-10,{"n":6.5,"e":4974,"g":1}],[-9,{"n":5,"e":4984}],[7,{"n":4,"e":6140}],[6,{"n":7,"e":6150,"g":1}],[5,{"n":4.5,"e":6165}],[4,{"n":5,"e":6169}],[3,{"n":7,"e":6182}],[2,{"n":4,"e":6190,"s":1}],[1,{"n":4.5,"e":6205}]],"fo":[[6190,[{"t":"Y"}]]],"a":{"m":18,"a":26,"M":41,"n":55}}],[5074,{"n":"Mauricio","f":"Tony","fp":"MO","r":8,"c":104,"s":{"s":30.5,"n":6,"a":5.08,"d":0.38,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":1,"Os":126.5,"On":25,"Oa":5.06,"Od":0.74,"pm":12,"pa":13},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":4,"e":4814,"s":1}],[-25,{"n":4.5,"e":4820}],[-24,{"n":4.5,"e":4833,"s":1}],[-23,{"n":4.5,"e":4841}],[-22,{"n":5.5,"e":4852,"s":1}],[-21,{"n":5,"e":4863}],[-20,{"n":4.5,"e":4871}],[-19,{"n":4.5,"e":4882}],[-18,{"n":4.5,"e":4888}],[-17,{"n":4.5,"e":4903}],[-16,{"n":5,"e":4917,"s":1}],[-15,{"n":5.5,"e":4923,"s":1}],[-13,{"n":7,"e":4945,"g":1}],[-12,{"n":4.5,"e":4952}],[-11,{"n":5,"e":4966}],[-10,{"n":7,"e":4974}],[-9,{"n":5,"e":4984}],[7,{"n":5,"e":6140,"s":1}],[6,{"n":5.5,"e":6150,"s":1}],[4,{"n":4.5,"e":6169,"s":1}],[3,{"n":5.5,"e":6182,"s":1}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":5,"e":6205,"s":1}]]}],[5346,{"n":"Sene","f":"Cheikh Cory","fp":"DC","r":2,"c":104}],[5360,{"n":"Boli","f":"Charles","fp":"MO","r":7,"c":104,"s":{"Os":37,"On":7,"Oa":5.29,"Od":0.49,"pm":6,"pa":1},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":6,"e":4805}],[-24,{"n":5,"e":4833,"s":1}],[-23,{"n":5,"e":4841,"s":1}],[-11,{"n":5,"e":4966,"s":1}],[-10,{"n":5,"e":4974}],[-9,{"n":6,"e":4984}]]}],[6188,{"n":"Diallo","f":"Zakaria","fp":"DC","r":6,"c":104,"s":{"Os":110,"On":20,"Oa":5.5,"Od":0.79,"pd":20},"p":[[-28,{"n":6,"e":4794}],[-27,{"n":6,"e":4805}],[-26,{"n":4,"e":4814}],[-25,{"n":4,"e":4820}],[-24,{"n":5.5,"e":4833}],[-23,{"n":5.5,"e":4841}],[-22,{"n":6,"e":4852}],[-21,{"n":4.5,"e":4863}],[-20,{"n":5,"e":4871}],[-19,{"n":7,"e":4882}],[-18,{"n":5.5,"e":4888}],[-17,{"n":6,"e":4903}],[-16,{"n":4.5,"e":4917}],[-15,{"n":6.5,"e":4923}],[-14,{"n":6,"e":4935}],[-13,{"n":6,"e":4945}],[-12,{"n":6,"e":4952}],[-11,{"n":5.5,"e":4966}],[-10,{"n":5.5,"e":4974}],[-9,{"n":5,"e":4984}]],"a":{"m":16,"a":19,"M":22,"n":11}}],[6261,{"n":"Muinga","f":"Arnaud Kalimuendo","fp":"A","r":6,"c":104,"s":{"s":9,"n":2,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[7,{"n":4.5,"e":6140,"s":1}],[2,{"n":4.5,"e":6190}]],"a":{"m":3,"a":8,"M":17,"n":6}}],[6413,{"n":"Bade","f":"Loic","fp":"DC","r":11,"c":104,"s":{"s":29.5,"n":6,"a":4.92,"d":1.2,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.61,"Os":60,"On":12,"Oa":5,"Od":1.07,"pd":12},"p":[[-26,{"n":5,"e":4813}],[-25,{"n":4,"e":4826}],[-24,{"n":4,"e":4832}],[-23,{"n":5,"e":4840}],[-22,{"n":6.5,"e":4852}],[-21,{"n":6,"e":4862}],[7,{"n":3,"e":6140}],[6,{"n":6,"e":6150}],[5,{"n":5.5,"e":6165}],[3,{"n":4,"e":6182}],[2,{"n":6,"e":6190}],[1,{"n":5,"e":6205}]],"fo":[[6182,[{"t":"Y"},{"t":"O"}]]],"a":{"m":4,"a":12,"M":20,"n":18}}],[6415,{"n":"Diawara","f":"Kandet","fp":"MD","r":1,"c":104}],[6416,{"n":"Sow","f":"Ansou","fp":"A","r":1,"c":104}],[6580,{"n":"Pereira Da Costa","f":"David","fp":"MD","r":5,"c":104,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[6,{"n":5,"e":6150,"s":1}]]}],[6708,{"n":"Medina","f":"Facundo","fp":"DL","r":11,"c":104,"s":{"g":1,"s":29.5,"n":6,"a":4.92,"d":1.16,"Og":1,"Os":29.5,"On":6,"Oa":4.92,"Od":1.16,"pd":6},"p":[[6,{"n":6,"e":6150}],[5,{"n":4.5,"e":6165}],[4,{"n":4.5,"e":6169}],[3,{"n":5.5,"e":6182,"g":1}],[2,{"n":6,"e":6190}],[1,{"n":3,"e":6205}]],"fo":[[6165,[{"t":"Y"}]],[6169,[{"t":"Y"}]],[6205,[{"t":"Y"}]]],"a":{"m":8,"a":13,"M":25,"n":14}}],[6709,{"n":"Clauss","f":"Jonathan","fp":"MD","r":13,"c":104,"s":{"s":26.5,"n":5,"a":5.3,"d":1.2,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.2,"Os":26.5,"On":5,"Oa":5.3,"Od":1.2,"pm":5},"p":[[7,{"n":4,"e":6140}],[6,{"n":7,"e":6150}],[5,{"n":5,"e":6165}],[4,{"n":6,"e":6169}],[3,{"n":4.5,"e":6182}]],"a":{"m":13,"a":16,"M":25,"n":11}}],[6711,{"n":"Fariñez","f":"Wuilker","fp":"G","r":7,"c":104}],[6789,{"n":"Oudjani","f":"Adam","fp":"MO","r":1,"c":104}],[6862,{"n":"Boura","f":"Ismael","fp":"DL","r":7,"c":104,"s":{"s":29.5,"n":6,"a":4.92,"d":0.49,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":29.5,"On":6,"Oa":4.92,"Od":0.49,"pd":4,"pm":2},"p":[[7,{"n":5.5,"e":6140,"s":1}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":5,"e":6169,"s":1}],[3,{"n":5,"e":6182}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":4,"e":6205}]],"fo":[[6205,[{"t":"Y"}]]]}],[101,{"n":"André","f":"Benjamin","fp":"MD","r":18,"c":12,"s":{"s":41,"n":7,"a":5.86,"d":0.8,"Ss":7,"Sn":1,"Sa":7,"Og":2,"Os":148.5,"On":27,"Oa":5.5,"Od":1.07,"pm":27},"p":[[6,{"n":6.5,"e":6156}],[5,{"n":5.5,"e":6161}],[4,{"n":5.5,"e":6171}],[3,{"n":4.5,"e":6181}],[2,{"n":6,"e":6191}],[-28,{"n":5,"e":3650}],[-27,{"n":7,"e":3664,"g":1}],[-23,{"n":6.5,"e":3699}],[-22,{"n":4.5,"e":3717}],[-21,{"n":3.5,"e":3719}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5,"e":3752}],[-16,{"n":7,"e":3773}],[-14,{"n":5,"e":3795}],[-13,{"n":6,"e":3799}],[-12,{"n":4.5,"e":3812}],[-7,{"n":5.5,"e":3861,"s":1}],[-26,{"n":5.5,"e":3670}],[-24,{"n":6,"e":3689}],[-20,{"n":5,"e":3731,"s":1}],[-17,{"n":6,"e":3758}],[-15,{"n":5,"e":3778,"s":1}],[-11,{"n":7,"e":3819,"g":1}],[-9,{"n":5,"e":3841}],[-8,{"n":6,"e":3854}],[7,{"n":7,"e":6140}],[1,{"n":6,"e":6201}]],"fo":[[6201,[{"t":"I"}]],[6171,[{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":20,"a":25,"M":33,"n":24}}],[181,{"n":"Soumaoro","f":"Adama","fp":"DC","r":6,"c":12,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":73.5,"On":14,"Oa":5.25,"Od":1.24,"pd":14},"p":[[-29,{"n":4,"e":5541}],[-28,{"n":4,"e":5548}],[-27,{"n":3,"e":5561}],[-26,{"n":6,"e":5572}],[-25,{"n":4,"e":5582}],[-24,{"n":7.5,"e":5589,"g":1}],[-23,{"n":7,"e":5600}],[-30,{"n":5,"e":5537,"s":1}],[-20,{"n":5,"e":3731}],[-12,{"n":6,"e":3812,"g":1}],[-11,{"n":5.5,"e":3819,"s":1}],[-9,{"n":5.5,"e":3841}],[-7,{"n":6,"e":3861}],[7,{"n":5,"e":6140,"s":1}]]}],[316,{"n":"Maignan","f":"Mike","fp":"G","r":24,"c":12,"s":{"s":41.5,"n":7,"a":5.93,"d":0.73,"Ss":41.5,"Sn":7,"Sa":5.93,"Sd":0.73,"Os":161.5,"On":29,"Oa":5.57,"Od":0.96,"pg":29},"p":[[-25,{"n":6,"e":3681}],[-28,{"n":6,"e":3650}],[-27,{"n":6,"e":3664}],[-26,{"n":5.5,"e":3670}],[-24,{"n":6,"e":3689}],[-23,{"n":6.5,"e":3699}],[-22,{"n":5.5,"e":3717}],[-21,{"n":5.5,"e":3719}],[-20,{"n":6.5,"e":3731}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5,"e":3752}],[-17,{"n":5.5,"e":3758}],[-16,{"n":6.5,"e":3773}],[-15,{"n":5.5,"e":3778}],[-14,{"n":4.5,"e":3795}],[-13,{"n":5.5,"e":3799}],[-12,{"n":3,"e":3812}],[-11,{"n":6,"e":3819}],[-10,{"n":6,"e":3837}],[-9,{"n":5,"e":3841}],[-8,{"n":6,"e":3854}],[-7,{"n":5.5,"e":3861}],[7,{"n":6,"e":6140}],[6,{"n":6,"e":6156}],[5,{"n":7,"e":6161}],[4,{"n":4.5,"e":6171}],[3,{"n":6,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":6,"e":6201}]],"a":{"m":21,"a":28,"M":46,"n":39}}],[425,{"n":"Xeka","f":"","fp":"MD","r":9,"c":12,"s":{"s":28.5,"n":5,"a":5.7,"d":0.97,"Ss":15,"Sn":3,"Sa":5,"Os":113,"On":22,"Oa":5.14,"Od":0.58,"pm":22},"p":[[-27,{"n":5,"e":3664,"s":1}],[-26,{"n":5,"e":3670,"s":1}],[-24,{"n":5,"e":3689,"s":1}],[-23,{"n":5,"e":3699,"s":1}],[-22,{"n":4.5,"e":3717}],[-21,{"n":5.5,"e":3719,"s":1}],[-20,{"n":4.5,"e":3731}],[-18,{"n":5,"e":3752,"s":1}],[-17,{"n":5,"e":3758}],[-16,{"n":5,"e":3773,"s":1}],[-15,{"n":5.5,"e":3778}],[-14,{"n":4.5,"e":3795}],[-13,{"n":5,"e":3799,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":5,"e":3841}],[-8,{"n":5,"e":3854,"s":1}],[-7,{"n":5,"e":3861}],[7,{"n":5,"e":6140,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}],[2,{"n":7,"e":6191}],[1,{"n":6.5,"e":6201}]],"a":{"m":7,"a":14,"M":32,"n":13}}],[455,{"n":"Ikoné","f":"Jonathan","fp":"MO","r":12,"c":12,"s":{"g":1,"s":36,"n":7,"a":5.14,"d":0.48,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":0.48,"Og":3,"Os":156.5,"On":29,"Oa":5.4,"Od":0.86,"pm":25,"pa":4},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":7,"e":3664}],[-26,{"n":6,"e":3670}],[-25,{"n":4,"e":3681}],[-24,{"n":5.5,"e":3689}],[-23,{"n":6,"e":3699}],[-22,{"n":5.5,"e":3717,"s":1}],[-21,{"n":5,"e":3719}],[-20,{"n":5.5,"e":3731}],[-19,{"n":6,"e":3740}],[-18,{"n":7,"e":3752,"g":1}],[-17,{"n":6.5,"e":3758}],[-16,{"n":6,"e":3773,"g":1}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":3,"e":3812}],[-11,{"n":6,"e":3819}],[-10,{"n":4,"e":3837}],[-9,{"n":5.5,"e":3841}],[-8,{"n":5.5,"e":3854,"s":1}],[-7,{"n":5,"e":3861}],[7,{"n":6,"e":6140,"g":1,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5,"e":6171,"s":1}],[3,{"n":5.5,"e":6181}],[2,{"n":4.5,"e":6191}],[1,{"n":5,"e":6201}]],"a":{"m":13,"a":24,"M":41,"n":31}}],[482,{"n":"Bamba","f":"Jonathan","fp":"MO","r":19,"c":12,"s":{"g":3,"s":46,"n":7,"a":6.57,"d":0.89,"Sg":3,"Ss":46,"Sn":7,"Sa":6.57,"Sd":0.89,"Og":3,"Os":154,"On":27,"Oa":5.7,"Od":1.02,"pm":23,"pa":4},"p":[[-28,{"n":6.5,"e":3650}],[-27,{"n":6.5,"e":3664}],[-26,{"n":4.5,"e":3670}],[-25,{"n":6,"e":3681}],[-24,{"n":7,"e":3689}],[-23,{"n":6,"e":3699}],[-22,{"n":5.5,"e":3717}],[-21,{"n":5,"e":3719,"s":1}],[-20,{"n":5,"e":3731,"s":1}],[-19,{"n":3.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":6.5,"e":3758}],[-16,{"n":5.5,"e":3773}],[-15,{"n":5.5,"e":3778}],[-13,{"n":4.5,"e":3799}],[-12,{"n":5,"e":3812,"s":1}],[-11,{"n":4,"e":3819,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":5,"e":3841}],[-8,{"n":6,"e":3854}],[7,{"n":8,"e":6140,"g":1}],[6,{"n":6.5,"e":6156}],[5,{"n":5.5,"e":6161}],[4,{"n":6.5,"e":6171}],[3,{"n":5.5,"e":6181}],[2,{"n":7,"e":6191,"g":1}],[1,{"n":7,"e":6201,"g":1}]],"a":{"m":18,"a":31,"M":71,"n":63}}],[819,{"n":"José Fonte","f":"","fp":"DC","r":17,"c":12,"s":{"s":42.5,"n":7,"a":6.07,"d":0.45,"Ss":42.5,"Sn":7,"Sa":6.07,"Sd":0.45,"Og":1,"Os":141,"On":26,"Oa":5.42,"Od":0.92,"pd":26},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":6,"e":3664}],[-26,{"n":6,"e":3670}],[-25,{"n":4.5,"e":3681}],[-24,{"n":6,"e":3689}],[-23,{"n":5.5,"e":3699}],[-22,{"n":6,"e":3717}],[-21,{"n":4.5,"e":3719}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":6,"e":3758}],[-16,{"n":5.5,"e":3773}],[-15,{"n":4,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5.5,"e":3799}],[-11,{"n":5,"e":3819}],[-10,{"n":6,"e":3837,"g":1}],[-9,{"n":4,"e":3841}],[-8,{"n":5,"e":3854}],[7,{"n":7,"e":6140}],[6,{"n":6,"e":6156}],[5,{"n":6,"e":6161}],[4,{"n":6,"e":6171}],[3,{"n":6,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":5.5,"e":6201}]],"a":{"m":18,"a":24,"M":38,"n":33}}],[1020,{"n":"Pied","f":"Jérémy","fp":"DL","r":6,"c":12,"s":{"s":10,"n":2,"a":5,"Os":28.5,"On":6,"Oa":4.75,"Od":0.88,"pd":6},"p":[[-20,{"n":5,"e":3731}],[-15,{"n":5.5,"e":3778}],[-10,{"n":3,"e":3837}],[-8,{"n":5,"e":3854}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6191,"s":1}]],"fo":[[6181,[{"t":"Y"}]]]}],[1215,{"n":"Luiz Araújo","f":"","fp":"A","r":16,"c":12,"s":{"g":2,"s":39.5,"n":7,"a":5.64,"d":0.99,"Sg":2,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":0.99,"Og":3,"Os":129.5,"On":25,"Oa":5.18,"Od":0.8,"pm":8,"pa":17},"p":[[-27,{"n":5,"e":3664,"s":1}],[-26,{"n":5,"e":3670,"s":1}],[-25,{"n":4.5,"e":3681,"s":1}],[-24,{"n":5,"e":3689,"s":1}],[-23,{"n":4.5,"e":3699,"s":1}],[-22,{"n":5,"e":3717,"s":1}],[-21,{"n":5,"e":3719}],[-20,{"n":6,"e":3731}],[-19,{"n":4,"e":3740,"s":1}],[-18,{"n":5,"e":3752,"s":1}],[-17,{"n":4.5,"e":3758,"s":1}],[-15,{"n":5,"e":3778,"s":1}],[-14,{"n":5.5,"e":3795}],[-13,{"n":4.5,"e":3799,"s":1}],[-12,{"n":4.5,"e":3812,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":5,"e":3841,"s":1}],[-8,{"n":7,"e":3854,"g":1}],[7,{"n":6.5,"e":6140}],[6,{"n":5,"e":6156}],[5,{"n":6,"e":6161}],[4,{"n":7,"e":6171,"g":1}],[3,{"n":6,"e":6181,"g":1,"s":1}],[2,{"n":4.5,"e":6191,"s":1}],[1,{"n":4.5,"e":6201,"s":1}]],"fo":[[6156,[{"t":"Y"}]]],"a":{"m":9,"a":20,"M":41,"n":29}}],[2021,{"n":"Renato Sanches","f":"","fp":"MO","r":17,"c":12,"s":{"g":1,"s":29.5,"n":5,"a":5.9,"d":1.52,"Sg":1,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":1.65,"Og":4,"Os":119,"On":21,"Oa":5.67,"Od":1.22,"pm":21},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":7,"e":3664}],[-26,{"n":6.5,"e":3670,"g":1}],[-25,{"n":4.5,"e":3681}],[-24,{"n":7.5,"e":3689,"g":1}],[-23,{"n":5,"e":3699}],[-22,{"n":4.5,"e":3717}],[-21,{"n":5.5,"e":3719}],[-20,{"n":4,"e":3731}],[-19,{"n":3.5,"e":3740}],[-18,{"n":7.5,"e":3752,"g":1}],[-17,{"n":6,"e":3758}],[-16,{"n":5.5,"e":3773}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5.5,"e":3795,"s":1}],[-7,{"n":5.5,"e":3861}],[7,{"n":7,"e":6140}],[6,{"n":8,"e":6156,"g":1}],[5,{"n":5,"e":6161}],[4,{"n":4.5,"e":6171,"s":1}],[1,{"n":5,"e":6201}]],"fo":[[6171,[{"t":"Y"}]]],"a":{"m":17,"a":28,"M":51,"n":40}}],[2027,{"n":"Karnezis","f":"Orestis","fp":"G","r":7,"c":12}],[2039,{"n":"Soumaré","f":"Boubakary","fp":"MD","r":8,"c":12,"s":{"s":24.5,"n":5,"a":4.9,"d":0.22,"Ss":5,"Sn":1,"Sa":5,"Os":96.5,"On":20,"Oa":4.83,"Od":0.75,"pm":20},"p":[[-28,{"n":4.5,"e":3650,"s":1}],[-21,{"n":4,"e":3719}],[-20,{"n":3.5,"e":3731}],[-19,{"n":3.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":5,"e":3758,"s":1}],[-16,{"n":5.5,"e":3773}],[-14,{"n":4.5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":4.5,"e":3812}],[-11,{"n":6,"e":3819}],[-10,{"n":4,"e":3837}],[-9,{"n":5,"e":3841,"s":1}],[-8,{"n":6.5,"e":3854}],[-7,{"n":5,"e":3861,"s":1}],[7,{"n":5,"e":6140,"s":1}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5,"e":6171}],[3,{"n":4.5,"e":6181}],[1,{"n":5,"e":6201,"s":1}]]}],[2082,{"n":"Flips","f":"Alexis","fp":"MO","r":1,"c":12,"s":{"Os":55.5,"On":11,"Oa":5.05,"Od":0.42,"pm":11},"p":[[-28,{"n":5,"e":4788,"s":1}],[-27,{"n":5,"e":4806,"s":1}],[-26,{"n":5,"e":4808,"s":1}],[-25,{"n":5,"e":4825,"s":1}],[-23,{"n":5,"e":4845}],[-22,{"n":4.5,"e":4848,"s":1}],[-20,{"n":5,"e":4868,"s":1}],[-19,{"n":5,"e":4886,"s":1}],[-18,{"n":6,"e":4888}],[-17,{"n":5.5,"e":4899}],[-10,{"n":4.5,"e":4972,"s":1}]]}],[2328,{"n":"Weah","f":"Timothy","fp":"A","r":7,"c":12,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Os":22,"On":5,"Oa":4.4,"Od":0.22,"pa":5},"p":[[-25,{"n":4.5,"e":3681,"s":1}],[6,{"n":4.5,"e":6156,"s":1}],[4,{"n":4,"e":6171,"s":1}],[3,{"n":4.5,"e":6181,"s":1}],[2,{"n":4.5,"e":6191,"s":1}]],"a":{"m":7,"a":7,"M":10,"n":7}}],[2714,{"n":"Zeki Çelik","f":"Mehmet","fp":"DL","r":14,"c":12,"s":{"g":1,"s":40,"n":7,"a":5.71,"d":1.19,"Sg":1,"Ss":40,"Sn":7,"Sa":5.71,"Sd":1.19,"Og":1,"Os":121.5,"On":25,"Oa":4.86,"Od":1.18,"pd":23,"pm":2},"p":[[-28,{"n":5.5,"e":3650}],[-27,{"n":5,"e":3664}],[-26,{"n":5,"e":3670}],[-25,{"n":4,"e":3681}],[-24,{"n":5,"e":3689}],[-23,{"n":4.5,"e":3699}],[-22,{"n":5,"e":3717}],[-21,{"n":3.5,"e":3719}],[-19,{"n":2,"e":3740}],[-18,{"n":4.5,"e":3752}],[-17,{"n":5,"e":3758}],[-16,{"n":5,"e":3773}],[-14,{"n":3.5,"e":3795}],[-13,{"n":4.5,"e":3799}],[-12,{"n":3,"e":3812}],[-11,{"n":6,"e":3819}],[-9,{"n":4.5,"e":3841}],[-7,{"n":6,"e":3861}],[7,{"n":6.5,"e":6140}],[6,{"n":8,"e":6156,"g":1}],[5,{"n":5.5,"e":6161}],[4,{"n":5,"e":6171}],[3,{"n":5,"e":6181,"s":1}],[2,{"n":5.5,"e":6191}],[1,{"n":4.5,"e":6201}]],"fo":[[6191,[{"t":"I"},{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":11,"a":17,"M":32,"n":28}}],[2771,{"n":"Zekaj","f":"Arton","fp":"MD","r":3,"c":12}],[2784,{"n":"Ouro-Sama","f":"Hakim","fp":"DC","r":1,"c":12}],[3359,{"n":"Reinildo","f":"","fp":"DL","r":7,"c":12,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Oao":1,"Os":69,"On":15,"Oa":4.6,"Od":0.71,"pd":13,"pm":2},"p":[[-28,{"n":5,"e":3650,"s":1}],[-25,{"n":3,"e":3681,"a":1}],[-24,{"n":5,"e":3689}],[-23,{"n":5,"e":3699}],[-22,{"n":5,"e":3717}],[-21,{"n":3.5,"e":3719}],[-15,{"n":5,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":4,"e":3812}],[-11,{"n":5,"e":3819}],[-8,{"n":5,"e":3854}],[-7,{"n":5,"e":3861,"s":1}],[4,{"n":5,"e":6171,"s":1}],[1,{"n":3.5,"e":6201}]],"fo":[[6201,[{"t":"R"}]]]}],[4031,{"n":"Bradaric","f":"Domagoj","fp":"DL","r":15,"c":12,"s":{"s":38.5,"n":7,"a":5.5,"d":0.96,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":0.96,"Os":99.5,"On":19,"Oa":5.24,"Od":0.92,"pd":19},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":5,"e":3664}],[-26,{"n":6.5,"e":3670}],[-20,{"n":4.5,"e":3731}],[-19,{"n":3,"e":3740}],[-18,{"n":5,"e":3752}],[-17,{"n":6,"e":3758}],[-16,{"n":5,"e":3773}],[-15,{"n":5,"e":3778,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":4.5,"e":3841}],[-7,{"n":5.5,"e":3861}],[7,{"n":6,"e":6140}],[6,{"n":6,"e":6156}],[5,{"n":5,"e":6161}],[4,{"n":5,"e":6171}],[3,{"n":7,"e":6181}],[2,{"n":5.5,"e":6191}],[1,{"n":4,"e":6201,"s":1}]],"fo":[[6171,[{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":9,"a":15,"M":30,"n":24}}],[6015,{"n":"Tiago Djaló","f":"","fp":"DC","r":4,"c":12,"s":{"Os":17,"On":4,"Oa":4.25,"Od":0.87,"pd":4},"p":[[-25,{"n":3.5,"e":3681}],[-14,{"n":4,"e":3795}],[-12,{"n":4,"e":3812}],[-11,{"n":5.5,"e":3819}]]}],[6017,{"n":"Yazici","f":"Yusuf","fp":"MO","r":7,"c":12,"s":{"g":1,"s":31,"n":6,"a":5.17,"d":0.68,"Sg":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.87,"Og":2,"Os":97.5,"On":19,"Oa":5.13,"Od":0.88,"pm":17,"pa":2},"p":[[-19,{"n":4,"e":3740,"s":1}],[-18,{"n":5,"e":3752,"s":1}],[-17,{"n":5,"e":3758,"s":1}],[-16,{"n":5,"e":3773,"s":1}],[-15,{"n":5,"e":3778}],[-14,{"n":5.5,"e":3795,"s":1}],[-13,{"n":5,"e":3799}],[-12,{"n":6,"e":3812}],[-11,{"n":7,"e":3819,"g":1}],[-10,{"n":6,"e":3837,"s":1}],[-9,{"n":4.5,"e":3841,"s":1}],[-8,{"n":3,"e":3854}],[-7,{"n":5.5,"e":3861}],[7,{"n":6.5,"e":6140,"g":1,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}],[3,{"n":5,"e":6181,"s":1}],[2,{"n":5,"e":6191,"s":1}],[1,{"n":4.5,"e":6201,"s":1}]],"a":{"m":6,"a":8,"M":10,"n":7}}],[6163,{"n":"Lihadji","f":"Isaac","fp":"A","r":6,"c":12,"s":{"s":10,"n":2,"a":5,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":4},"p":[[-9,{"n":4.5,"e":3838,"s":1}],[-7,{"n":4.5,"e":3860,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6161,"s":1}]]}],[6197,{"n":"Niasse","f":"Cheikh","fp":"MD","r":3,"c":12}],[6506,{"n":"Ouattara","f":"Fadiga","fp":"A","r":1,"c":12}],[6803,{"n":"Pizzuto","f":"Eugenio","fp":"MD","r":4,"c":12}],[6809,{"n":"Botman","f":"Sven","fp":"DC","r":17,"c":12,"s":{"s":41,"n":7,"a":5.86,"d":0.48,"Ss":41,"Sn":7,"Sa":5.86,"Sd":0.48,"Os":41,"On":7,"Oa":5.86,"Od":0.48,"pd":7},"p":[[7,{"n":6,"e":6140}],[6,{"n":6,"e":6156}],[5,{"n":6.5,"e":6161}],[4,{"n":5.5,"e":6171}],[3,{"n":6,"e":6181}],[2,{"n":6,"e":6191}],[1,{"n":5,"e":6201}]],"a":{"m":13,"a":18,"M":33,"n":46}}],[6810,{"n":"Yilmaz","f":"Burak","fp":"A","r":16,"c":12,"s":{"g":3,"s":37.5,"n":7,"a":5.36,"d":1.31,"Sg":3,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":1.31,"Og":3,"Os":37.5,"On":7,"Oa":5.36,"Od":1.31,"pa":7},"p":[[7,{"n":7,"e":6140,"g":1}],[6,{"n":7,"e":6156,"g":1}],[5,{"n":6,"e":6161,"g":1}],[4,{"n":4,"e":6171}],[3,{"n":5,"e":6181}],[2,{"n":4.5,"e":6191}],[1,{"n":4,"e":6201,"s":1}]],"a":{"m":14,"a":25,"M":47,"n":37}}],[6865,{"n":"Chevalier","f":"Lucas","fp":"G","r":1,"c":12}],[6867,{"n":"David","f":"Jonathan Christian","fp":"A","r":13,"c":12,"s":{"s":34,"n":7,"a":4.86,"d":0.38,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.38,"Os":34,"On":7,"Oa":4.86,"Od":0.38,"pa":7},"p":[[7,{"n":5,"e":6140}],[6,{"n":5,"e":6156}],[5,{"n":5,"e":6161}],[4,{"n":5,"e":6171}],[3,{"n":5,"e":6181}],[2,{"n":4,"e":6191}],[1,{"n":5,"e":6201}]],"a":{"m":16,"a":37,"M":68,"n":57}}],[7268,{"n":"Innocenti","f":"Nassim","fp":"DC","r":2,"c":12}],[127,{"n":"Marveaux","f":"Sylvain","fp":"MO","r":8,"c":6,"s":{"s":20,"n":4,"a":5,"d":0.41,"Og":2,"Os":101,"On":19,"Oa":5.32,"Od":0.95,"pm":19},"p":[[6,{"n":5,"e":6151,"s":1}],[2,{"n":4.5,"e":6195,"s":1}],[1,{"n":5,"e":6202,"s":1}],[-27,{"n":3.5,"e":4802}],[-26,{"n":5,"e":4816}],[-25,{"n":5.5,"e":4823}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":8,"e":4842,"g":1}],[-22,{"n":4.5,"e":4856,"s":1}],[-21,{"n":7,"e":4864,"g":1}],[-20,{"n":5,"e":4873}],[-18,{"n":5.5,"e":4893}],[-16,{"n":5.5,"e":4913}],[-15,{"n":6,"e":4920}],[-14,{"n":5.5,"e":4932}],[-13,{"n":5,"e":4945,"s":1}],[-12,{"n":5,"e":4951,"s":1}],[-8,{"n":5,"e":4992}],[3,{"n":5.5,"e":6182}]],"a":{"m":10,"a":13,"M":15,"n":6}}],[154,{"n":"Delaplace","f":"Jonathan","fp":"MD","r":6,"c":6,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Os":47,"On":9,"Oa":5.22,"Od":0.51,"pd":7,"pm":2},"p":[[7,{"n":5,"e":6145,"s":1}],[5,{"n":5.5,"e":6162,"s":1}],[-28,{"n":4.5,"e":4788}],[-15,{"n":5,"e":4920}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951}],[-11,{"n":6,"e":4964}],[-10,{"n":5,"e":4972}],[-9,{"n":6,"e":4979}]]}],[164,{"n":"Le Goff","f":"Vincent","fp":"DL","r":10,"c":6,"s":{"s":25.5,"n":6,"a":4.25,"d":0.76,"Og":1,"Os":132,"On":26,"Oa":5.08,"Od":0.83,"pd":26},"p":[[-28,{"n":4.5,"e":4788}],[-27,{"n":4.5,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":5,"e":4823}],[-24,{"n":5.5,"e":4831}],[-23,{"n":6.5,"e":4842,"g":1}],[-21,{"n":5,"e":4864}],[-20,{"n":5.5,"e":4873}],[-19,{"n":4.5,"e":4887}],[-18,{"n":5,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":5,"e":4913}],[-15,{"n":6.5,"e":4920}],[-14,{"n":5,"e":4932}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951}],[-11,{"n":6,"e":4964}],[-10,{"n":5,"e":4972}],[-9,{"n":6.5,"e":4979}],[-8,{"n":4.5,"e":4992}],[6,{"n":4.5,"e":6151}],[5,{"n":5,"e":6162}],[4,{"n":3,"e":6168}],[3,{"n":4,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5,"e":6202}]],"a":{"m":15,"a":24,"M":58,"n":8}}],[248,{"n":"Morel","f":"Jérémy","fp":"DC","r":9,"c":6,"s":{"s":30.5,"n":7,"a":4.36,"d":0.8,"Ss":30.5,"Sn":7,"Sa":4.36,"Sd":0.8,"Os":103.5,"On":22,"Oa":4.7,"Od":0.81,"pd":22},"p":[[-20,{"n":4,"e":3735}],[-18,{"n":5.5,"e":3753}],[-16,{"n":5.5,"e":3774}],[-10,{"n":3,"e":3833}],[-8,{"n":5,"e":3851}],[-7,{"n":4,"e":3864}],[-24,{"n":5,"e":3696}],[-21,{"n":6,"e":3725}],[-19,{"n":6,"e":3746}],[-17,{"n":4.5,"e":3766}],[-15,{"n":5,"e":3786}],[-14,{"n":4.5,"e":3792}],[-13,{"n":5,"e":3806}],[-11,{"n":5,"e":3825,"s":1}],[-9,{"n":5,"e":3845}],[7,{"n":5,"e":6145}],[6,{"n":4,"e":6151}],[5,{"n":5,"e":6162}],[4,{"n":3.5,"e":6168}],[3,{"n":4,"e":6182}],[2,{"n":3.5,"e":6195}],[1,{"n":5.5,"e":6202}]],"a":{"m":10,"a":12,"M":14,"n":7}}],[309,{"n":"Dreyer","f":"Matthieu","fp":"G","r":7,"c":6}],[340,{"n":"Lemoine","f":"Fabien","fp":"MD","r":11,"c":6,"s":{"s":33,"n":7,"a":4.71,"d":0.7,"Ss":33,"Sn":7,"Sa":4.71,"Sd":0.7,"Os":126,"On":25,"Oa":5.04,"Od":0.79,"pm":25},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4802}],[-25,{"n":4.5,"e":4823}],[-24,{"n":5,"e":4831}],[-21,{"n":5,"e":4864}],[-20,{"n":6,"e":4873}],[-19,{"n":5,"e":4887}],[-18,{"n":5,"e":4893}],[-17,{"n":7,"e":4900}],[-16,{"n":6,"e":4913}],[-15,{"n":5,"e":4920}],[-14,{"n":5.5,"e":4932}],[-13,{"n":5.5,"e":4945}],[-12,{"n":4,"e":4951}],[-11,{"n":3.5,"e":4964}],[-10,{"n":5.5,"e":4972}],[-9,{"n":6,"e":4979}],[-8,{"n":4.5,"e":4992}],[7,{"n":5,"e":6145,"s":1}],[6,{"n":4,"e":6151}],[5,{"n":5.5,"e":6162}],[4,{"n":5,"e":6168}],[3,{"n":4,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5.5,"e":6202}]]}],[570,{"n":"Hamel","f":"Pierre-Yves","fp":"A","r":16,"c":6,"s":{"g":3,"s":34.5,"n":6,"a":5.75,"d":0.82,"Sg":2,"Ss":24,"Sn":4,"Sa":6,"Sd":0.71,"Og":11,"Os":133,"On":26,"Oa":5.12,"Od":1.28,"pa":26},"p":[[-28,{"n":4,"e":4788}],[-27,{"n":3.5,"e":4802}],[-26,{"n":6,"e":4816,"g":1}],[-25,{"n":4.5,"e":4823,"s":1}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":4.5,"e":4842}],[-22,{"n":4,"e":4856,"s":1}],[-21,{"n":4.5,"e":4864}],[-20,{"n":6,"e":4873,"g":1}],[-19,{"n":4.5,"e":4887,"s":1}],[-18,{"n":4,"e":4893}],[-17,{"n":8.5,"e":4900,"g":2}],[-15,{"n":5,"e":4920}],[-14,{"n":7,"e":4932,"g":2}],[-13,{"n":3.5,"e":4945}],[-12,{"n":4,"e":4951}],[-11,{"n":6.5,"e":4964,"g":1}],[-10,{"n":3.5,"e":4972}],[-9,{"n":4,"e":4979}],[-8,{"n":6,"e":4992,"g":1}],[7,{"n":7,"e":6145,"g":1}],[6,{"n":6,"e":6151,"g":1}],[5,{"n":5.5,"e":6162,"s":1}],[4,{"n":5.5,"e":6168,"s":1}],[2,{"n":4.5,"e":6195,"s":1}],[1,{"n":6,"e":6202,"g":1,"s":1}]],"fo":[[6145,[{"t":"I"},{"t":"Y"}]],[6162,[{"t":"Y"}]],[6168,[{"t":"Y"}]]],"a":{"m":17,"a":29,"M":62,"n":20}}],[1273,{"n":"Boisgard","f":"Quentin","fp":"MO","r":10,"c":6,"s":{"s":25.5,"n":5,"a":5.1,"d":0.96,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":103.5,"On":21,"Oa":4.93,"Od":0.71,"pd":1,"pm":17,"pa":3},"p":[[-28,{"n":5,"e":3649,"g":1}],[-27,{"n":6,"e":3667}],[-26,{"n":5,"e":3670,"s":1}],[-24,{"n":5.5,"e":3691}],[-23,{"n":4.5,"e":3707}],[-22,{"n":5,"e":3708,"s":1}],[-21,{"n":3.5,"e":3720}],[-20,{"n":5,"e":3737}],[-19,{"n":4,"e":3743}],[-18,{"n":5,"e":3757}],[-16,{"n":4.5,"e":3777}],[-15,{"n":5,"e":3782}],[-14,{"n":5.5,"e":3797}],[-13,{"n":5.5,"e":3802,"s":1}],[-11,{"n":5,"e":3825,"s":1}],[-7,{"n":4,"e":3867}],[7,{"n":5.5,"e":6145}],[4,{"n":4.5,"e":6168}],[3,{"n":5,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":6.5,"e":6202}]],"fo":[[6168,[{"t":"I"}]],[6182,[{"t":"Y"}]],[6202,[{"t":"Y"}]]],"a":{"m":11,"a":19,"M":26,"n":10}}],[1404,{"n":"Monconduit","f":"Thomas","fp":"MD","r":11,"c":6,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":0.75,"Sg":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.75,"Og":1,"Os":84.5,"On":19,"Oa":4.45,"Od":0.66,"pm":19},"p":[[-16,{"n":5,"e":3768,"s":1}],[-20,{"n":3.5,"e":3728}],[-19,{"n":4,"e":3744}],[-28,{"n":4.5,"e":3651}],[-27,{"n":4,"e":3658}],[-26,{"n":3.5,"e":3677}],[-24,{"n":4.5,"e":3688}],[-23,{"n":4.5,"e":3704}],[-22,{"n":5.5,"e":3708}],[-21,{"n":4.5,"e":3718}],[-17,{"n":4,"e":3760}],[-14,{"n":5,"e":3788,"s":1}],[-13,{"n":3.5,"e":3806}],[-11,{"n":5,"e":3826,"s":1}],[-7,{"n":4,"e":3858}],[7,{"n":4.5,"e":6145,"s":1}],[6,{"n":4.5,"e":6151}],[5,{"n":4.5,"e":6162,"s":1}],[4,{"n":6,"e":6168,"g":1,"s":1}]],"a":{"m":11,"a":11,"M":11,"n":5}}],[2615,{"n":"Fontaine","f":"Thomas","fp":"DC","r":8,"c":6,"s":{"s":12.5,"n":3,"a":4.17,"d":1.26,"Oao":1,"Os":81.5,"On":17,"Oa":4.79,"Od":1.06,"pd":17},"p":[[-28,{"n":4.5,"e":4788,"s":1}],[-27,{"n":3.5,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":4.5,"e":4823}],[-24,{"n":4.5,"e":4831}],[-23,{"n":4,"e":4842,"a":1}],[-22,{"n":7,"e":4856}],[-21,{"n":5,"e":4864,"s":1}],[-19,{"n":3.5,"e":4887}],[-18,{"n":6,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":5,"e":4913,"s":1}],[-13,{"n":5,"e":4945}],[-11,{"n":4.5,"e":4964,"s":1}],[6,{"n":3,"e":6151}],[5,{"n":5.5,"e":6162}],[4,{"n":4,"e":6168}]]}],[2632,{"n":"Callens","f":"Thomas","fp":"G","r":2,"c":6}],[2666,{"n":"Bozok","f":"Umut","fp":"A","r":7,"c":6,"s":{"s":18,"n":4,"a":4.5,"Og":2,"Os":79,"On":17,"Oa":4.65,"Od":0.77,"pa":17},"p":[[-28,{"n":4,"e":4788,"s":1}],[-27,{"n":5,"e":4802,"s":1}],[-21,{"n":6,"e":4864,"g":1,"s":1}],[-20,{"n":5,"e":4873,"s":1}],[-19,{"n":5,"e":4887}],[-16,{"n":5.5,"e":4913}],[-14,{"n":5,"e":4932,"s":1}],[-13,{"n":3,"e":4945}],[-12,{"n":4,"e":4951}],[-11,{"n":6,"e":4964,"g":1}],[-10,{"n":4.5,"e":4972,"s":1}],[-9,{"n":4,"e":4979,"s":1}],[-8,{"n":4,"e":4992,"s":1}],[6,{"n":4.5,"e":6151,"s":1}],[4,{"n":4.5,"e":6168,"s":1}],[3,{"n":4.5,"e":6182,"s":1}],[2,{"n":4.5,"e":6195,"s":1}]],"a":{"m":7,"a":7,"M":8,"n":5}}],[3358,{"n":"Laurienté","f":"Armand","fp":"MO","r":4,"c":6,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":103,"On":19,"Oa":5.42,"Od":0.84,"pm":18,"pa":1},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4802}],[-26,{"n":5.5,"e":4816,"s":1}],[-25,{"n":4.5,"e":4823}],[-24,{"n":5.5,"e":4831}],[-23,{"n":7.5,"e":4842,"g":1}],[-22,{"n":6,"e":4856,"s":1}],[-21,{"n":5.5,"e":4864}],[-20,{"n":5,"e":4873,"s":1}],[-19,{"n":5,"e":4887,"s":1}],[-18,{"n":5.5,"e":4893}],[-17,{"n":6.5,"e":4900,"g":1,"s":1}],[-16,{"n":4.5,"e":4913}],[-15,{"n":6,"e":4920}],[-14,{"n":6.5,"e":4932}],[-13,{"n":4.5,"e":4945,"s":1}],[-10,{"n":4.5,"e":4972,"s":1}],[-8,{"n":4.5,"e":4992,"s":1}],[7,{"n":6,"e":6145,"s":1}]]}],[3682,{"n":"Chalobah","f":"Trevoh","fp":"MD","r":6,"c":6,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Ss":6,"Sn":1,"Sa":6,"Os":11,"On":2,"Oa":5.5,"Od":0.71,"pm":2},"p":[[7,{"n":6,"e":6145}],[3,{"n":5,"e":6182,"s":1}]]}],[3805,{"n":"Nardi","f":"Paul","fp":"G","r":13,"c":6,"s":{"s":33.5,"n":7,"a":4.79,"d":0.76,"Ss":33.5,"Sn":7,"Sa":4.79,"Sd":0.76,"Os":145.5,"On":28,"Oa":5.2,"Od":0.95,"pg":28},"p":[[-28,{"n":6,"e":4788}],[-27,{"n":4,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":3.5,"e":4823}],[-24,{"n":6,"e":4831}],[-23,{"n":4,"e":4842}],[-22,{"n":6.5,"e":4856}],[-21,{"n":4,"e":4864}],[-20,{"n":6,"e":4873}],[-19,{"n":4.5,"e":4887}],[-18,{"n":6,"e":4893}],[-17,{"n":7,"e":4900}],[-16,{"n":5.5,"e":4913}],[-15,{"n":5,"e":4920}],[-14,{"n":4.5,"e":4932}],[-13,{"n":6,"e":4945}],[-12,{"n":6,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":6,"e":4972}],[-9,{"n":6,"e":4979}],[-8,{"n":5,"e":4992}],[7,{"n":5.5,"e":6145}],[6,{"n":4.5,"e":6151}],[5,{"n":6,"e":6162}],[4,{"n":4,"e":6168}],[3,{"n":4.5,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5,"e":6202}]],"fo":[[6162,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":22,"n":5}}],[4344,{"n":"Gravillon","f":"Andreaw","fp":"DC","r":9,"c":6,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":6,"On":1,"Oa":6,"pd":1},"p":[[7,{"n":6,"e":6145}]]}],[4855,{"n":"Le Fée","f":"Enzo","fp":"MO","r":9,"c":6,"s":{"s":30.5,"n":6,"a":5.08,"d":0.74,"Os":136.5,"On":26,"Oa":5.25,"Od":0.68,"pm":26},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4802,"s":1}],[-26,{"n":6,"e":4816}],[-25,{"n":5,"e":4823,"s":1}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":6.5,"e":4842}],[-22,{"n":7,"e":4856}],[-20,{"n":5,"e":4873,"s":1}],[-19,{"n":5.5,"e":4887}],[-18,{"n":5.5,"e":4893}],[-17,{"n":5.5,"e":4900}],[-16,{"n":4.5,"e":4913,"s":1}],[-15,{"n":5,"e":4920,"s":1}],[-14,{"n":5.5,"e":4932}],[-13,{"n":6,"e":4945,"s":1}],[-12,{"n":4.5,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":5.5,"e":4972}],[-9,{"n":4.5,"e":4979}],[-8,{"n":5,"e":4992}],[6,{"n":5,"e":6151,"s":1}],[5,{"n":5,"e":6162}],[4,{"n":5,"e":6168}],[3,{"n":4.5,"e":6182,"s":1}],[2,{"n":4.5,"e":6195}],[1,{"n":6.5,"e":6202}]],"fo":[[6162,[{"t":"I"}]],[6182,[{"t":"Y"}]],[6195,[{"t":"Y"}]]],"a":{"m":10,"a":12,"M":15,"n":22}}],[4877,{"n":"Bartouche","f":"Teddy","fp":"G","r":1,"c":6}],[4952,{"n":"Wadja","f":"Franklin","fp":"MD","r":7,"c":6,"s":{"s":15,"n":3,"a":5,"Os":41,"On":8,"Oa":5.13,"Od":0.58,"pm":8},"p":[[-26,{"n":5,"e":4816,"s":1}],[-22,{"n":6.5,"e":4856}],[-19,{"n":5,"e":4887,"s":1}],[-18,{"n":5,"e":4893,"s":1}],[-9,{"n":4.5,"e":4979}],[5,{"n":5,"e":6162,"s":1}],[4,{"n":5,"e":6168,"s":1}],[1,{"n":5,"e":6202,"s":1}]],"fo":[[6202,[{"t":"Y"}]]],"a":{"m":4,"a":6,"M":7,"n":5}}],[5009,{"n":"Mendes","f":"Houboulang","fp":"DL","r":8,"c":6,"s":{"s":27.5,"n":7,"a":3.93,"d":0.89,"Ss":27.5,"Sn":7,"Sa":3.93,"Sd":0.89,"Os":44.5,"On":10,"Oa":4.45,"Od":1.17,"pd":10},"p":[[-26,{"n":5.5,"e":4816}],[-22,{"n":6.5,"e":4856}],[-20,{"n":5,"e":4873}],[7,{"n":5,"e":6145}],[6,{"n":3.5,"e":6151}],[5,{"n":5,"e":6162}],[4,{"n":3,"e":6168}],[3,{"n":3,"e":6182}],[2,{"n":3.5,"e":6195}],[1,{"n":4.5,"e":6202}]]}],[5017,{"n":"Diarra","f":"Stéphane","fp":"A","r":7,"c":6,"s":{"s":22.5,"n":5,"a":4.5,"d":0.87,"Og":1,"Os":99.5,"On":20,"Oa":4.97,"Od":0.92,"pm":13,"pa":7},"p":[[-20,{"n":5.5,"e":4872}],[-15,{"n":5,"e":4919}],[-13,{"n":4.5,"e":4942}],[-11,{"n":5,"e":4967,"s":1}],[-28,{"n":7,"e":4789}],[-27,{"n":6,"e":4801}],[-26,{"n":4.5,"e":4808,"s":1}],[-25,{"n":5,"e":4822,"s":1}],[-19,{"n":7,"e":4884,"g":1,"s":1}],[-18,{"n":5,"e":4892,"s":1}],[-17,{"n":5,"e":4906,"s":1}],[-16,{"n":4,"e":4912}],[-14,{"n":4.5,"e":4931}],[-12,{"n":5,"e":4950}],[-9,{"n":4,"e":4982}],[6,{"n":4.5,"e":6151,"s":1}],[4,{"n":5,"e":6168,"s":1}],[3,{"n":3,"e":6182}],[2,{"n":5,"e":6195,"s":1}],[1,{"n":5,"e":6202}]],"fo":[[6202,[{"t":"I"}]],[6182,[{"t":"Y"}]]]}],[5033,{"n":"Wissa","f":"Yoane","fp":"A","r":23,"c":6,"s":{"g":4,"s":42.5,"n":7,"a":6.07,"d":1.48,"Sg":4,"Ss":42.5,"Sn":7,"Sa":6.07,"Sd":1.48,"Og":14,"Os":168.5,"On":28,"Oa":6.02,"Od":1.28,"pm":26,"pa":2},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":4.5,"e":4802}],[-26,{"n":5,"e":4816}],[-25,{"n":5,"e":4823}],[-24,{"n":7,"e":4831,"g":1}],[-23,{"n":4.5,"e":4842}],[-22,{"n":8,"e":4856,"g":2}],[-21,{"n":5.5,"e":4864}],[-20,{"n":8,"e":4873,"g":1}],[-19,{"n":5.5,"e":4887}],[-18,{"n":5,"e":4893,"s":1}],[-17,{"n":6.5,"e":4900}],[-16,{"n":5.5,"e":4913,"g":1}],[-15,{"n":8,"e":4920,"g":2}],[-14,{"n":7,"e":4932,"g":1}],[-13,{"n":5,"e":4945}],[-12,{"n":5,"e":4951,"s":1}],[-11,{"n":5,"e":4964}],[-10,{"n":6,"e":4972}],[-9,{"n":7.5,"e":4979,"g":1}],[-8,{"n":7.5,"e":4992,"g":1}],[7,{"n":8,"e":6145,"g":1}],[6,{"n":5,"e":6151}],[5,{"n":7,"e":6162,"g":1}],[4,{"n":5,"e":6168}],[3,{"n":6,"e":6182,"g":1}],[2,{"n":4,"e":6195}],[1,{"n":7.5,"e":6202,"g":1}]],"fo":[[6151,[{"t":"Y"}]]],"a":{"m":20,"a":31,"M":66,"n":84}}],[5056,{"n":"Laporte","f":"Julien","fp":"DC","r":10,"c":6,"s":{"s":26.5,"n":6,"a":4.42,"d":1.11,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.26,"Og":1,"Os":116.5,"On":23,"Oa":5.07,"Od":1.04,"pd":23},"p":[[-28,{"n":4.5,"e":4788}],[-27,{"n":4,"e":4802}],[-26,{"n":5.5,"e":4816}],[-25,{"n":5.5,"e":4823}],[-24,{"n":3.5,"e":4831}],[-23,{"n":5.5,"e":4842}],[-22,{"n":7,"e":4856}],[-21,{"n":5,"e":4864}],[-20,{"n":5,"e":4873}],[-16,{"n":7,"e":4913,"g":1}],[-15,{"n":6,"e":4920}],[-14,{"n":5,"e":4932}],[-12,{"n":5,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":6,"e":4972}],[-9,{"n":5,"e":4979}],[-8,{"n":6,"e":4992}],[7,{"n":6,"e":6145}],[6,{"n":3.5,"e":6151}],[5,{"n":5,"e":6162}],[3,{"n":3,"e":6182}],[2,{"n":4,"e":6195}],[1,{"n":5,"e":6202}]],"fo":[[6182,[{"t":"Y"}]],[6202,[{"t":"Y"}]]]}],[5065,{"n":"Hergault","f":"Jerome","fp":"DL","r":6,"c":6,"s":{"Os":50.5,"On":10,"Oa":5.05,"Od":0.76,"pd":10},"p":[[-27,{"n":4,"e":4802}],[-25,{"n":5,"e":4823}],[-24,{"n":4,"e":4831}],[-23,{"n":5,"e":4842}],[-21,{"n":6,"e":4864}],[-19,{"n":5,"e":4887}],[-18,{"n":6,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":4.5,"e":4913}],[-15,{"n":5,"e":4920,"s":1}]]}],[5100,{"n":"Grbic","f":"Adrian","fp":"A","r":15,"c":6,"s":{"g":2,"s":34,"n":7,"a":4.86,"d":1.31,"Sg":2,"Ss":34,"Sn":7,"Sa":4.86,"Sd":1.31,"Og":13,"Os":143,"On":25,"Oa":5.72,"Od":1.31,"pa":25},"p":[[-28,{"n":7,"e":4791,"g":1}],[-27,{"n":6,"e":4803}],[-26,{"n":5,"e":4810}],[-23,{"n":4.5,"e":4838}],[-20,{"n":9,"e":4870,"g":3}],[-17,{"n":6.5,"e":4907,"g":1}],[-16,{"n":6,"e":4910}],[-14,{"n":5,"e":4929}],[-12,{"n":7,"e":4949,"g":1}],[-11,{"n":4,"e":4962}],[-10,{"n":4.5,"e":4976}],[-9,{"n":6,"e":4980,"g":1}],[-25,{"n":6.5,"e":4823}],[-24,{"n":6.5,"e":4830}],[-22,{"n":7,"e":4850,"g":1}],[-21,{"n":6,"e":4863,"g":1}],[-18,{"n":6.5,"e":4890,"g":1,"s":1}],[-15,{"n":6,"e":4918,"g":1}],[7,{"n":4.5,"e":6145,"s":1}],[6,{"n":5,"e":6151,"s":1}],[5,{"n":4.5,"e":6162}],[4,{"n":4,"e":6168}],[3,{"n":6,"e":6182,"g":1}],[2,{"n":3,"e":6195}],[1,{"n":7,"e":6202,"g":1}]],"fo":[[6162,[{"t":"I"}]]],"a":{"m":16,"a":27,"M":69,"n":97}}],[5162,{"n":"Abergel","f":"Laurent","fp":"DL","r":14,"c":6,"s":{"s":36,"n":7,"a":5.14,"d":0.8,"Ss":36,"Sn":7,"Sa":5.14,"Sd":0.8,"Og":2,"Os":138,"On":26,"Oa":5.31,"Od":0.93,"pd":2,"pm":24},"p":[[-28,{"n":4,"e":4788}],[-27,{"n":5,"e":4802}],[-26,{"n":6,"e":4816}],[-25,{"n":5,"e":4823}],[-24,{"n":5,"e":4831}],[-23,{"n":6.5,"e":4842}],[-22,{"n":7.5,"e":4856,"g":1}],[-21,{"n":5,"e":4864}],[-20,{"n":4.5,"e":4873}],[-19,{"n":4.5,"e":4887}],[-17,{"n":7,"e":4900}],[-16,{"n":4.5,"e":4913}],[-15,{"n":7,"e":4920,"g":1}],[-14,{"n":5,"e":4932}],[-13,{"n":5.5,"e":4945}],[-12,{"n":5.5,"e":4951}],[-11,{"n":4.5,"e":4964}],[-10,{"n":5,"e":4972}],[-8,{"n":5,"e":4992}],[7,{"n":5.5,"e":6145}],[6,{"n":4,"e":6151}],[5,{"n":4.5,"e":6162}],[4,{"n":6.5,"e":6168}],[3,{"n":5,"e":6182,"s":1}],[2,{"n":5,"e":6195}],[1,{"n":5.5,"e":6202,"s":1}]],"fo":[[6151,[{"t":"Y"}]]],"a":{"m":15,"a":21,"M":35,"n":31}}],[5186,{"n":"Saunier","f":"Matthieu","fp":"DC","r":8,"c":6,"s":{"Os":80,"On":15,"Oa":5.33,"Od":0.82,"pd":15},"p":[[-28,{"n":5,"e":4788}],[-21,{"n":6,"e":4864}],[-20,{"n":6,"e":4873}],[-19,{"n":3,"e":4887}],[-18,{"n":6.5,"e":4893}],[-17,{"n":6,"e":4900}],[-16,{"n":5.5,"e":4913}],[-15,{"n":5.5,"e":4920}],[-14,{"n":5.5,"e":4932}],[-13,{"n":5,"e":4945}],[-12,{"n":4.5,"e":4951}],[-11,{"n":5.5,"e":4964}],[-10,{"n":5,"e":4972}],[-9,{"n":5.5,"e":4979}],[-8,{"n":5.5,"e":4992}]]}],[7411,{"n":"Moffi","f":"Terem Igobor","fp":"A","r":8,"c":6,"s":{"g":1,"s":7,"n":1,"a":7,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":7,"On":1,"Oa":7,"pa":1},"p":[[7,{"n":7,"e":6145,"g":1}]]}],[67,{"n":"Toko Ekambi","f":"Karl","fp":"A","r":13,"c":18,"s":{"g":2,"s":31.5,"n":6,"a":5.25,"d":1.37,"Sg":2,"Ss":13,"Sn":2,"Sa":6.5,"Sd":1.41,"Og":10,"Os":140,"On":27,"Oa":5.19,"Od":1.32,"pm":1,"pa":26},"p":[[7,{"n":7.5,"e":6147,"g":2}],[6,{"n":5.5,"e":6157}],[4,{"n":4,"e":6170,"s":1}],[1,{"n":4.5,"e":6204}],[-26,{"n":6,"e":3672}],[-25,{"n":4,"e":3682}],[-24,{"n":5.5,"e":3695,"s":1}],[-18,{"n":4,"e":4517,"s":1}],[-17,{"n":6,"e":4526,"g":1,"s":1}],[-16,{"n":4.5,"e":4537,"s":1}],[-15,{"n":4,"e":4547}],[-13,{"n":5,"e":4564}],[-12,{"n":4,"e":4577}],[-11,{"n":4,"e":4581}],[-10,{"n":7.5,"e":4597,"g":2}],[-9,{"n":6.5,"e":4602,"g":1}],[-8,{"n":3.5,"e":4612}],[-7,{"n":8,"e":4627,"g":2}],[-6,{"n":4.5,"e":4628,"s":1}],[-28,{"n":4.5,"e":3650}],[-27,{"n":5,"e":3661,"s":1}],[-23,{"n":5,"e":3704}],[-22,{"n":7,"e":3713,"g":1}],[-21,{"n":6.5,"e":3720,"g":1,"s":1}],[-14,{"n":3.5,"e":4558}],[3,{"n":4,"e":6179}],[2,{"n":6,"e":6188}]],"fo":[[6147,[{"t":"Y"}]],[6204,[{"t":"Y"}]]],"a":{"m":14,"a":32,"M":61,"n":43}}],[72,{"n":"Depay","f":"Memphis","fp":"A","r":20,"c":18,"s":{"g":4,"s":40.5,"n":7,"a":5.79,"d":1.6,"Sg":4,"Ss":40.5,"Sn":7,"Sa":5.79,"Sd":1.6,"Og":9,"Os":90.5,"On":16,"Oa":5.66,"Od":1.79,"pm":2,"pa":14},"p":[[-11,{"n":8,"e":3820,"g":1}],[-8,{"n":4.5,"e":3850}],[-6,{"n":3.5,"e":3870}],[-18,{"n":4.5,"e":3753}],[-17,{"n":8.5,"e":3764,"g":2}],[-16,{"n":5,"e":3773}],[-12,{"n":8,"e":3817,"g":2}],[-9,{"n":4,"e":3846}],[-7,{"n":4,"e":3859,"s":1}],[7,{"n":8,"e":6147}],[6,{"n":4.5,"e":6157,"s":1}],[5,{"n":4.5,"e":6162,"s":1}],[4,{"n":5,"e":6170}],[3,{"n":4.5,"e":6179}],[2,{"n":8,"e":6188,"g":3}],[1,{"n":6,"e":6204,"g":1,"s":1}]],"fo":[[6188,[{"t":"Y"}]]],"a":{"m":19,"a":43,"M":103,"n":40}}],[130,{"n":"Cornet","f":"Maxwel","fp":"MO","r":17,"c":18,"s":{"s":35,"n":7,"a":5,"d":1.29,"Ss":35,"Sn":7,"Sa":5,"Sd":1.29,"Og":4,"Os":138.5,"On":25,"Oa":5.54,"Od":1.14,"pd":3,"pm":14,"pa":8},"p":[[-15,{"n":7.5,"e":3787,"g":1}],[-13,{"n":5.5,"e":3800}],[-28,{"n":5,"e":3650}],[-26,{"n":6,"e":3672}],[-25,{"n":5.5,"e":3682}],[-23,{"n":5,"e":3704}],[-22,{"n":6,"e":3713}],[-21,{"n":7,"e":3720,"g":1}],[-20,{"n":8,"e":3730,"g":1}],[-19,{"n":6,"e":3745}],[-18,{"n":4.5,"e":3753,"s":1}],[-16,{"n":4.5,"e":3773}],[-14,{"n":5.5,"e":3793,"s":1}],[-12,{"n":5,"e":3817,"s":1}],[-11,{"n":4.5,"e":3820,"s":1}],[-10,{"n":6,"e":3830}],[-8,{"n":5,"e":3850,"s":1}],[-7,{"n":7,"e":3859,"g":1}],[7,{"n":3,"e":6147}],[6,{"n":5.5,"e":6157}],[5,{"n":5,"e":6162}],[4,{"n":4,"e":6170}],[3,{"n":6.5,"e":6179}],[2,{"n":6.5,"e":6188}],[1,{"n":4.5,"e":6204}]],"fo":[[6147,[{"t":"Y"}]],[6170,[{"t":"Y"}]]],"a":{"m":18,"a":25,"M":46,"n":29}}],[244,{"n":"Dubois","f":"Léo","fp":"DL","r":15,"c":18,"s":{"g":1,"s":36,"n":7,"a":5.14,"d":1.18,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":1.18,"Og":1,"Os":90.5,"On":18,"Oa":5.03,"Od":0.79,"pd":10,"pm":8},"p":[[-28,{"n":4.5,"e":3650}],[-27,{"n":5.5,"e":3661}],[-26,{"n":5,"e":3672}],[-15,{"n":5,"e":3787,"s":1}],[-14,{"n":5,"e":3793}],[-13,{"n":5,"e":3800}],[-12,{"n":4.5,"e":3817}],[-11,{"n":6,"e":3820}],[-9,{"n":4.5,"e":3846}],[-8,{"n":4.5,"e":3850}],[7,{"n":4,"e":6147}],[-6,{"n":5,"e":3870}],[6,{"n":4.5,"e":6157}],[5,{"n":7,"e":6162,"g":1}],[4,{"n":4.5,"e":6170}],[3,{"n":6,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":4,"e":6204}]],"fo":[[6170,[{"t":"Y"}]]],"a":{"m":10,"a":17,"M":33,"n":36}}],[537,{"n":"Aouar","f":"Houssem","fp":"MO","r":22,"c":18,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":0.57,"Sg":1,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.58,"Og":3,"Os":134,"On":25,"Oa":5.36,"Od":0.92,"pm":22,"pa":3},"p":[[-28,{"n":5,"e":3650}],[-27,{"n":5,"e":3661}],[-26,{"n":6.5,"e":3672,"g":1,"s":1}],[-25,{"n":5,"e":3682}],[-24,{"n":4.5,"e":3695}],[-23,{"n":5.5,"e":3704}],[-22,{"n":7,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":7,"e":3730}],[-19,{"n":5,"e":3745}],[-18,{"n":4,"e":3753}],[-17,{"n":7,"e":3764,"g":1}],[-16,{"n":5,"e":3773,"s":1}],[-13,{"n":4.5,"e":3800}],[-12,{"n":5.5,"e":3817}],[-11,{"n":4.5,"e":3820}],[-10,{"n":7,"e":3830}],[-9,{"n":4.5,"e":3846}],[-8,{"n":4.5,"e":3850}],[7,{"n":5,"e":6147}],[-6,{"n":5,"e":3870}],[6,{"n":6,"e":6157,"g":1}],[5,{"n":5,"e":6162}],[3,{"n":5.5,"e":6179,"s":1}],[1,{"n":4.5,"e":6204}]],"fo":[[6147,[{"t":"I"}]],[6204,[{"t":"R"}]]],"a":{"m":21,"a":33,"M":54,"n":36}}],[1052,{"n":"Denayer","f":"Jason","fp":"DC","r":17,"c":18,"s":{"s":37.5,"n":7,"a":5.36,"d":0.69,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":0.69,"Os":149,"On":28,"Oa":5.32,"Od":0.85,"pd":28},"p":[[-28,{"n":4.5,"e":3650}],[-27,{"n":6,"e":3661}],[-26,{"n":7,"e":3672}],[-24,{"n":3.5,"e":3695}],[-23,{"n":6,"e":3704}],[-22,{"n":4.5,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":5,"e":3730,"s":1}],[-19,{"n":6,"e":3745}],[-18,{"n":4.5,"e":3753}],[-17,{"n":6.5,"e":3764}],[-16,{"n":4.5,"e":3773}],[-15,{"n":5.5,"e":3787}],[-14,{"n":5.5,"e":3793}],[-13,{"n":4.5,"e":3800}],[-12,{"n":5,"e":3817}],[-11,{"n":7,"e":3820}],[-10,{"n":5.5,"e":3830}],[-8,{"n":5,"e":3850}],[-7,{"n":5,"e":3859}],[7,{"n":4.5,"e":6147}],[-6,{"n":4.5,"e":3870}],[6,{"n":5.5,"e":6157}],[5,{"n":4.5,"e":6162}],[4,{"n":6,"e":6170}],[3,{"n":6,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":5,"e":6204}]],"a":{"m":17,"a":24,"M":40,"n":42}}],[1191,{"n":"Thiago Mendes","f":"","fp":"MD","r":12,"c":18,"s":{"s":21,"n":4,"a":5.25,"d":0.5,"Ss":16.5,"Sn":3,"Sa":5.5,"Os":118.5,"On":22,"Oa":5.39,"Od":0.8,"pm":22},"p":[[-25,{"n":5,"e":3682}],[-24,{"n":5,"e":3695}],[-23,{"n":5,"e":3704,"s":1}],[-22,{"n":5.5,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":6.5,"e":3730}],[-19,{"n":7,"e":3745}],[-17,{"n":7,"e":3764}],[-16,{"n":5,"e":3773}],[-14,{"n":5,"e":3793}],[-13,{"n":4,"e":3800}],[-12,{"n":6,"e":3817}],[-11,{"n":6,"e":3820}],[-10,{"n":5,"e":3830}],[-9,{"n":4,"e":3846}],[-8,{"n":5.5,"e":3850}],[-7,{"n":5,"e":3859}],[7,{"n":5.5,"e":6147}],[-6,{"n":5,"e":3870}],[6,{"n":5.5,"e":6157}],[5,{"n":5.5,"e":6162,"s":1}],[3,{"n":4.5,"e":6179,"s":1}]]}],[1524,{"n":"Anthony Lopes","f":"","fp":"G","r":18,"c":18,"s":{"s":36.5,"n":7,"a":5.21,"d":1.04,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":1.04,"Oao":1,"Os":150,"On":28,"Oa":5.36,"Od":0.92,"pg":28},"p":[[-28,{"n":4.5,"e":3650}],[-27,{"n":6.5,"e":3661}],[-26,{"n":5.5,"e":3672}],[-25,{"n":4,"e":3682}],[-24,{"n":4,"e":3695}],[-23,{"n":6,"e":3704}],[-20,{"n":5,"e":3730}],[-19,{"n":6,"e":3745}],[-18,{"n":6,"e":3753}],[-17,{"n":6,"e":3764}],[-16,{"n":5,"e":3773}],[-15,{"n":5.5,"e":3787}],[-14,{"n":7,"e":3793}],[-13,{"n":5,"e":3800}],[-12,{"n":4,"e":3817,"a":1}],[-11,{"n":6,"e":3820}],[-10,{"n":5.5,"e":3830}],[-9,{"n":5.5,"e":3846}],[-8,{"n":5,"e":3850}],[-7,{"n":4.5,"e":3859}],[7,{"n":7,"e":6147}],[-6,{"n":7,"e":3870}],[6,{"n":4,"e":6157}],[5,{"n":5,"e":6162}],[4,{"n":6,"e":6170}],[3,{"n":5.5,"e":6179}],[2,{"n":4.5,"e":6188}],[1,{"n":4.5,"e":6204}]],"a":{"m":20,"a":27,"M":41,"n":21}}],[2032,{"n":"Marcelo","f":"","fp":"DC","r":15,"c":18,"s":{"s":39.5,"n":7,"a":5.64,"d":0.38,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":0.38,"Os":123.5,"On":23,"Oa":5.37,"Od":0.74,"pd":23},"p":[[-28,{"n":5,"e":3650}],[-27,{"n":6,"e":3661}],[-26,{"n":6,"e":3672}],[-25,{"n":6,"e":3682}],[-24,{"n":3,"e":3695}],[-23,{"n":5.5,"e":3704}],[-22,{"n":5,"e":3713}],[-21,{"n":6,"e":3720}],[-20,{"n":5.5,"e":3730}],[-19,{"n":5.5,"e":3745}],[-16,{"n":4,"e":3773}],[-15,{"n":5.5,"e":3787}],[-10,{"n":6,"e":3830}],[-9,{"n":5.5,"e":3846}],[-8,{"n":4.5,"e":3850}],[7,{"n":5,"e":6147}],[6,{"n":5.5,"e":6157}],[-6,{"n":5,"e":3870}],[5,{"n":6,"e":6162}],[4,{"n":5.5,"e":6170}],[3,{"n":5.5,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":6,"e":6204}]],"fo":[[6157,[{"t":"I"}]],[6179,[{"t":"Y"}]],[6188,[{"t":"Y"}]]],"a":{"m":14,"a":18,"M":27,"n":36}}],[2685,{"n":"Caqueret","f":"Maxence","fp":"MD","r":11,"c":18,"s":{"s":26,"n":5,"a":5.2,"d":0.57,"Os":70,"On":13,"Oa":5.38,"Od":0.87,"pm":13},"p":[[-28,{"n":4.5,"e":3650,"s":1}],[-25,{"n":4.5,"e":3682}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3720}],[-20,{"n":6,"e":3730}],[-18,{"n":5,"e":3753}],[-17,{"n":7,"e":3764}],[-15,{"n":7,"e":3787}],[6,{"n":5,"e":6157}],[4,{"n":4.5,"e":6170}],[3,{"n":5.5,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":5,"e":6204}]],"a":{"m":11,"a":18,"M":30,"n":32}}],[2861,{"n":"Dembele","f":"Moussa","fp":"A","r":20,"c":18,"s":{"s":31.5,"n":7,"a":4.5,"d":0.41,"Ss":31.5,"Sn":7,"Sa":4.5,"Sd":0.41,"Og":11,"Os":147,"On":30,"Oa":4.9,"Od":1.01,"pa":30},"p":[[-28,{"n":4,"e":3650}],[-27,{"n":6,"e":3661,"g":2}],[-26,{"n":6.5,"e":3672,"g":1}],[-25,{"n":4,"e":3682,"s":1}],[-24,{"n":6,"e":3695,"g":1}],[-23,{"n":4,"e":3704}],[-22,{"n":5,"e":3713}],[-21,{"n":6.5,"e":3720,"g":1}],[-20,{"n":7,"e":3730,"g":1}],[-19,{"n":3,"e":3745}],[-18,{"n":3.5,"e":3753}],[-17,{"n":5,"e":3764}],[-16,{"n":4.5,"e":3773,"s":1}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3793,"g":1}],[-13,{"n":6,"e":3800,"g":1}],[-12,{"n":6,"e":3817,"g":1}],[-11,{"n":6,"e":3820,"g":1}],[-10,{"n":5,"e":3830}],[-9,{"n":4.5,"e":3846,"s":1}],[-8,{"n":4,"e":3850}],[-7,{"n":5,"e":3859,"g":1}],[7,{"n":4,"e":6147,"s":1}],[-6,{"n":4,"e":3870}],[6,{"n":4.5,"e":6157,"s":1}],[5,{"n":4.5,"e":6162}],[4,{"n":4,"e":6170}],[3,{"n":4.5,"e":6179}],[2,{"n":5,"e":6188}],[1,{"n":5,"e":6204,"s":1}]],"fo":[[6179,[{"t":"Y"}]],[6188,[{"t":"Y"}]]],"a":{"m":24,"a":63,"M":107,"n":52}}],[3761,{"n":"Jean Lucas","f":"","fp":"MD","r":6,"c":18,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":55,"On":11,"Oa":5,"Od":0.32,"pm":11},"p":[[-23,{"n":5,"e":3704}],[-19,{"n":5,"e":3745,"s":1}],[-13,{"n":5,"e":3800,"s":1}],[-12,{"n":5,"e":3817,"s":1}],[-11,{"n":5,"e":3820,"s":1}],[-9,{"n":4.5,"e":3846,"s":1}],[-8,{"n":5.5,"e":3850,"s":1}],[7,{"n":4.5,"e":6147,"s":1}],[5,{"n":5.5,"e":6162}],[4,{"n":5,"e":6170,"s":1}],[1,{"n":5,"e":6204,"s":1}]],"fo":[[6170,[{"t":"Y"}]]]}],[4327,{"n":"Lucas Paquetá","f":"","fp":"MO","r":9,"c":18,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":106,"On":21,"Oa":5.05,"Od":0.84,"pm":21},"p":[[-37,{"n":5,"e":5463,"s":1}],[-32,{"n":3.5,"e":5515}],[-31,{"n":3.5,"e":5523}],[-30,{"n":6,"e":5532,"s":1}],[-29,{"n":7,"e":5545}],[-28,{"n":5.5,"e":5552,"s":1}],[-27,{"n":4.5,"e":5563,"s":1}],[-24,{"n":5,"e":5594}],[-23,{"n":5,"e":5601,"s":1}],[-22,{"n":5.5,"e":5614,"s":1}],[-18,{"n":5,"e":5654,"s":1}],[-16,{"n":5,"e":5674,"s":1}],[-15,{"n":5,"e":5679,"s":1}],[-13,{"n":5,"e":5701}],[-12,{"n":5.5,"e":5711}],[-11,{"n":4,"e":5723}],[-10,{"n":6,"e":5732}],[-9,{"n":4,"e":5744}],[-8,{"n":5,"e":5752}],[-7,{"n":5.5,"e":5762,"s":1}],[7,{"n":5.5,"e":6147}]],"fo":[[5523,[{"t":"Y"}]],[5532,[{"t":"Y"}]]],"a":{"m":10,"a":14,"M":26,"n":13}}],[4600,{"n":"De Sciglio","f":"Mattia","fp":"DL","r":8,"c":18,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":45.5,"On":9,"Oa":5.06,"Od":0.3,"pd":9},"p":[[1,{"n":5,"e":7474,"s":1}],[-27,{"n":5.5,"e":5559}],[-26,{"n":4.5,"e":5569,"s":1}],[-23,{"n":5,"e":5607,"s":1}],[-17,{"n":5,"e":5664,"s":1}],[-13,{"n":5,"e":5698}],[-11,{"n":5,"e":5726}],[-16,{"n":5,"e":5673}],[7,{"n":5.5,"e":6147,"s":1}]],"fo":[[5559,[{"t":"I"},{"t":"Y"}]]],"a":{"m":9,"a":14,"M":21,"n":8}}],[5036,{"n":"Kadewere","f":"Tinotenda","fp":"A","r":9,"c":18,"s":{"g":1,"s":28.5,"n":6,"a":4.75,"d":0.69,"Sg":1,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.76,"Og":11,"Os":114.5,"On":22,"Oa":5.2,"Od":1.28,"pa":22},"p":[[-28,{"n":7,"e":4793,"g":1}],[-20,{"n":6,"e":4875,"g":1}],[-13,{"n":4,"e":4944,"g":1}],[-27,{"n":7,"e":4800,"g":1}],[-22,{"n":4,"e":4852}],[-21,{"n":4,"e":4862}],[-19,{"n":5,"e":4885,"g":1}],[-18,{"n":6,"e":4890,"g":1}],[-17,{"n":7,"e":4906}],[-16,{"n":7,"e":4915,"g":2}],[-15,{"n":7,"e":4922,"g":1}],[-14,{"n":5,"e":4936}],[-12,{"n":4.5,"e":4957}],[-11,{"n":6,"e":4964,"g":1}],[-10,{"n":3.5,"e":4968}],[-9,{"n":3,"e":4983}],[7,{"n":6,"e":6147,"g":1}],[6,{"n":4,"e":6157}],[5,{"n":4.5,"e":6162,"s":1}],[4,{"n":4.5,"e":6170,"s":1}],[3,{"n":4.5,"e":6179,"s":1}],[1,{"n":5,"e":6204}]],"fo":[[6147,[{"t":"Y"}]]],"a":{"m":9,"a":15,"M":46,"n":66}}],[5459,{"n":"Augarreau","f":"Cedric","fp":"MD","r":1,"c":18}],[6280,{"n":"Cherki","f":"Rayan","fp":"MO","r":10,"c":18,"s":{"s":31,"n":6,"a":5.17,"d":0.75,"Os":56.5,"On":11,"Oa":5.14,"Od":0.55,"pm":10,"pa":1},"p":[[-24,{"n":5,"e":3695}],[-23,{"n":5,"e":3704,"s":1}],[-21,{"n":5,"e":3720,"s":1}],[-19,{"n":5,"e":3745,"s":1}],[-13,{"n":5.5,"e":3800,"s":1}],[6,{"n":5,"e":6157,"s":1}],[5,{"n":4,"e":6162}],[4,{"n":6,"e":6170}],[3,{"n":5,"e":6179,"s":1}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":6,"e":6204,"s":1}]],"a":{"m":6,"a":13,"M":21,"n":30}}],[6345,{"n":"Bard","f":"Melvin","fp":"DL","r":11,"c":18,"s":{"s":27.5,"n":5,"a":5.5,"d":0.87,"Os":27.5,"On":5,"Oa":5.5,"Od":0.87,"pd":5},"p":[[6,{"n":7,"e":6157}],[5,{"n":5,"e":6162,"s":1}],[4,{"n":5,"e":6170}],[2,{"n":5,"e":6188,"s":1}],[1,{"n":5.5,"e":6204,"s":1}]],"a":{"m":4,"a":13,"M":17,"n":10}}],[6512,{"n":"Bruno Guimarães","f":"","fp":"MD","r":17,"c":18,"s":{"s":33.5,"n":6,"a":5.58,"d":0.58,"Os":51.5,"On":9,"Oa":5.72,"Od":0.57,"pm":9},"p":[[-28,{"n":5.5,"e":3650}],[-27,{"n":6,"e":3661}],[-26,{"n":6.5,"e":3672}],[6,{"n":5.5,"e":6157,"s":1}],[5,{"n":6.5,"e":6162}],[4,{"n":5,"e":6170}],[3,{"n":5,"e":6179}],[2,{"n":6,"e":6188}],[1,{"n":5.5,"e":6204}]],"fo":[[6157,[{"t":"Y"}]],[6204,[{"t":"Y"}]]],"a":{"m":17,"a":25,"M":49,"n":37}}],[6592,{"n":"Diomande","f":"Sinaly","fp":"DC","r":6,"c":18,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pd":4},"p":[[7,{"n":5,"e":6147,"s":1}],[6,{"n":5,"e":6157,"s":1}],[5,{"n":4.5,"e":6162}],[4,{"n":4.5,"e":6170,"s":1}]]}],[6801,{"n":"Mbenga","f":"Modeste Duku","fp":"MO","r":1,"c":18}],[6904,{"n":"Özkacar","f":"Cenk","fp":"DC","r":1,"c":18}],[7341,{"n":"Pollersbeck","f":"Julian","fp":"G","r":6,"c":18}],[7408,{"n":"Keita","f":"Habib","fp":"MD","r":6,"c":18}],[7413,{"n":"Benlamri","f":"Djamel","fp":"DC","r":7,"c":18}],[7419,{"n":"Barcola","f":"Malcolm","fp":"G","r":2,"c":18}],[7457,{"n":"Gusto","f":"Malo","fp":"DL","r":1,"c":18}],[6,{"n":"Payet","f":"Dimitri","fp":"MO","r":28,"c":9,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":0.57,"Og":8,"Os":129.5,"On":21,"Oa":6.17,"Od":1.03,"pm":6,"pa":15},"p":[[5,{"n":5.5,"e":6163}],[1,{"n":5,"e":6198}],[3,{"n":6,"e":6187}],[-26,{"n":4,"e":3671}],[-18,{"n":6,"e":3754}],[-11,{"n":5,"e":3823}],[-28,{"n":7,"e":3651,"g":1}],[-27,{"n":7,"e":3665}],[-24,{"n":6.5,"e":3691,"g":1}],[-23,{"n":7,"e":3702,"g":1}],[-22,{"n":6,"e":3710}],[-20,{"n":6,"e":3735}],[-19,{"n":7,"e":3739,"g":1}],[-17,{"n":7,"e":3759}],[-16,{"n":7,"e":3769,"g":1}],[-15,{"n":7,"e":3779}],[-14,{"n":7,"e":3797}],[-13,{"n":8,"e":3800,"g":2}],[-12,{"n":6,"e":3812}],[6,{"n":5,"e":6157,"g":1}],[4,{"n":4.5,"e":6171}]],"fo":[[6157,[{"t":"R"}]],[6187,[{"t":"Y"}]]],"a":{"m":30,"a":50,"M":84,"n":61}}],[10,{"n":"Germain","f":"Valère","fp":"A","r":9,"c":9,"s":{"g":1,"s":28,"n":6,"a":4.67,"d":0.68,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":118.5,"On":25,"Oa":4.74,"Od":0.71,"pm":4,"pa":21},"p":[[-10,{"n":4.5,"e":3831}],[-28,{"n":6,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":4.5,"e":3671}],[-25,{"n":6.5,"e":3681}],[-24,{"n":4,"e":3691}],[-23,{"n":4.5,"e":3702,"s":1}],[-22,{"n":4.5,"e":3710,"s":1}],[-21,{"n":4.5,"e":3721,"s":1}],[-20,{"n":4.5,"e":3735,"s":1}],[-18,{"n":5.5,"e":3754,"s":1}],[-17,{"n":4,"e":3759}],[-15,{"n":4.5,"e":3779,"s":1}],[-14,{"n":5,"e":3797,"s":1}],[-13,{"n":4.5,"e":3800,"s":1}],[-11,{"n":4,"e":3823}],[-9,{"n":4,"e":3838}],[-8,{"n":5,"e":3851}],[-7,{"n":4.5,"e":3860}],[7,{"n":4.5,"e":6141,"s":1}],[5,{"n":4.5,"e":6163,"s":1}],[4,{"n":6,"e":6171,"g":1,"s":1}],[3,{"n":4.5,"e":6187,"s":1}],[2,{"n":4,"e":6197,"s":1}],[1,{"n":4.5,"e":6198,"s":1}]],"a":{"m":9,"a":12,"M":17,"n":6}}],[22,{"n":"Thauvin","f":"Florian","fp":"MO","r":22,"c":9,"s":{"g":3,"s":41.5,"n":7,"a":5.93,"d":1.54,"Sg":3,"Ss":41.5,"Sn":7,"Sa":5.93,"Sd":1.54,"Og":3,"Os":46.5,"On":8,"Oa":5.81,"Od":1.46,"pm":4,"pa":4},"p":[[-28,{"n":5,"e":3651,"s":1}],[7,{"n":7,"e":6141,"g":1}],[6,{"n":6.5,"e":6157}],[5,{"n":5.5,"e":6163}],[4,{"n":4.5,"e":6171}],[3,{"n":6.5,"e":6187,"g":1}],[2,{"n":8,"e":6197,"g":1}],[1,{"n":3.5,"e":6198}]],"fo":[[6171,[{"t":"Y"}]]],"a":{"m":19,"a":42,"M":81,"n":48}}],[41,{"n":"Sanson","f":"Morgan","fp":"MO","r":26,"c":9,"s":{"g":1,"s":35,"n":6,"a":5.83,"d":0.82,"Sg":1,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":0.63,"Og":6,"Os":160,"On":27,"Oa":5.93,"Od":0.84,"pm":27},"p":[[-28,{"n":7.5,"e":3651,"g":1}],[-27,{"n":6,"e":3665}],[-26,{"n":5.5,"e":3671,"g":1}],[-25,{"n":5.5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":6.5,"e":3702}],[-22,{"n":5,"e":3710}],[-21,{"n":5,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":6,"e":3739}],[-18,{"n":5.5,"e":3754}],[-17,{"n":7,"e":3759,"g":1}],[-16,{"n":7,"e":3769,"g":1}],[-15,{"n":7,"e":3779}],[-14,{"n":5.5,"e":3797}],[-13,{"n":6,"e":3800}],[-12,{"n":7,"e":3812,"g":1}],[-11,{"n":5,"e":3823,"s":1}],[-9,{"n":4.5,"e":3838}],[-8,{"n":5,"e":3851}],[-7,{"n":7,"e":3860}],[7,{"n":6,"e":6141}],[6,{"n":5.5,"e":6157}],[5,{"n":7,"e":6163,"g":1}],[4,{"n":6,"e":6171}],[2,{"n":6,"e":6197}],[1,{"n":4.5,"e":6198}]],"fo":[[6141,[{"t":"Y"}]],[6198,[{"t":"Y"}]]],"a":{"m":26,"a":37,"M":63,"n":40}}],[102,{"n":"Pelé","f":"Yohann","fp":"G","r":7,"c":9,"s":{"Os":11.5,"On":2,"Oa":5.75,"Od":0.35,"pg":2},"p":[[-19,{"n":5.5,"e":3739}],[-18,{"n":6,"e":3754,"s":1}]]}],[210,{"n":"Sakai","f":"Hiroki","fp":"DL","r":11,"c":9,"s":{"s":35,"n":7,"a":5,"d":0.82,"Ss":35,"Sn":7,"Sa":5,"Sd":0.82,"Oao":1,"Os":117.5,"On":24,"Oa":4.9,"Od":0.77,"pd":24},"p":[[-28,{"n":5,"e":3651,"s":1}],[-25,{"n":5,"e":3681}],[-24,{"n":5,"e":3691,"s":1}],[-22,{"n":5,"e":3710}],[-21,{"n":4.5,"e":3721}],[-19,{"n":5,"e":3739}],[-18,{"n":3.5,"e":3754}],[-17,{"n":5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":5.5,"e":3779}],[-14,{"n":6.5,"e":3797}],[-12,{"n":4.5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":5,"e":3831}],[-9,{"n":4,"e":3838}],[-8,{"n":4.5,"e":3851,"a":1}],[-7,{"n":5,"e":3860}],[7,{"n":5,"e":6141}],[6,{"n":5,"e":6157}],[5,{"n":4.5,"e":6163}],[4,{"n":6.5,"e":6171}],[3,{"n":5.5,"e":6187}],[2,{"n":4.5,"e":6197}],[1,{"n":4,"e":6198}]],"fo":[[6141,[{"t":"Y"}]],[6187,[{"t":"Y"}]],[6198,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":19,"n":10}}],[242,{"n":"Rongier","f":"Valentin","fp":"MD","r":22,"c":9,"s":{"s":38.5,"n":7,"a":5.5,"d":0.82,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":0.82,"Os":162.5,"On":28,"Oa":5.8,"Od":0.74,"pm":28},"p":[[-28,{"n":5,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":5,"e":3671}],[-25,{"n":5.5,"e":3681}],[-23,{"n":6.5,"e":3702}],[-22,{"n":6,"e":3710}],[-21,{"n":6.5,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":5.5,"e":3739}],[-18,{"n":6.5,"e":3754}],[-17,{"n":7,"e":3759}],[-16,{"n":7,"e":3769}],[-15,{"n":6.5,"e":3779}],[-14,{"n":7,"e":3797}],[-13,{"n":5.5,"e":3800}],[-12,{"n":6.5,"e":3812}],[-11,{"n":5,"e":3823}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5.5,"e":3838}],[-8,{"n":5.5,"e":3851}],[-7,{"n":5,"e":3860,"s":1}],[7,{"n":6.5,"e":6141}],[6,{"n":6,"e":6157}],[5,{"n":4.5,"e":6163}],[4,{"n":6,"e":6171}],[3,{"n":6,"e":6187}],[2,{"n":4.5,"e":6197,"s":1}],[1,{"n":5,"e":6198}]],"a":{"m":22,"a":30,"M":51,"n":29}}],[480,{"n":"Khaoui","f":"Saif-Eddine","fp":"MO","r":5,"c":9,"s":{"s":5,"n":1,"a":5,"Os":34.5,"On":7,"Oa":4.93,"Od":0.35,"pm":7},"p":[[-24,{"n":5,"e":3691,"s":1}],[-21,{"n":5,"e":3721,"s":1}],[-13,{"n":4.5,"e":3800,"s":1}],[-10,{"n":5,"e":3831,"s":1}],[-9,{"n":4.5,"e":3838,"s":1}],[-8,{"n":5.5,"e":3851,"s":1}],[5,{"n":5,"e":6163,"s":1}]]}],[800,{"n":"Mandanda","f":"Steve","fp":"G","r":24,"c":9,"s":{"s":39.5,"n":7,"a":5.64,"d":1.11,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":1.11,"Os":153.5,"On":28,"Oa":5.48,"Od":1.09,"pg":28},"p":[[-28,{"n":4.5,"e":3651}],[-27,{"n":5.5,"e":3665}],[-26,{"n":3.5,"e":3671}],[-25,{"n":5,"e":3681}],[-24,{"n":7,"e":3691}],[-23,{"n":7,"e":3702}],[-22,{"n":6.5,"e":3710}],[-21,{"n":5.5,"e":3721}],[-20,{"n":6.5,"e":3735}],[-18,{"n":5.5,"e":3754}],[-17,{"n":4.5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":4,"e":3779}],[-14,{"n":6,"e":3797}],[-13,{"n":6,"e":3800}],[-12,{"n":5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6,"e":3831}],[-9,{"n":4,"e":3838}],[-8,{"n":5.5,"e":3851}],[-7,{"n":7,"e":3860}],[7,{"n":6,"e":6141}],[6,{"n":5.5,"e":6157}],[5,{"n":5,"e":6163}],[4,{"n":7,"e":6171}],[3,{"n":7,"e":6187}],[2,{"n":5,"e":6197}],[1,{"n":4,"e":6198}]],"a":{"m":21,"a":26,"M":46,"n":19}}],[1181,{"n":"Amavi","f":"Jordan","fp":"DL","r":14,"c":9,"s":{"g":1,"s":24.5,"n":4,"a":6.13,"d":1.03,"Sg":1,"Ss":14,"Sn":2,"Sa":7,"Og":2,"Os":124,"On":24,"Oa":5.17,"Od":1.06,"pd":24},"p":[[-28,{"n":3.5,"e":3651}],[-27,{"n":4.5,"e":3665}],[-26,{"n":2.5,"e":3671}],[-25,{"n":5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":5.5,"e":3702}],[-22,{"n":5,"e":3710}],[-21,{"n":6,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":4.5,"e":3739}],[-18,{"n":5,"e":3754}],[-17,{"n":6.5,"e":3759,"g":1}],[-16,{"n":6.5,"e":3769}],[-15,{"n":5,"e":3779}],[-13,{"n":5,"e":3800}],[-12,{"n":5,"e":3812}],[-11,{"n":5,"e":3823,"s":1}],[-10,{"n":5,"e":3831,"s":1}],[-8,{"n":3.5,"e":3851}],[-7,{"n":5,"e":3860}],[7,{"n":7,"e":6141,"g":1}],[6,{"n":7,"e":6157}],[3,{"n":5.5,"e":6187}],[2,{"n":5,"e":6197}]],"fo":[[6187,[{"t":"R"}]],[6197,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":27,"n":17}}],[1250,{"n":"Kamara","f":"Boubacar","fp":"DC","r":18,"c":9,"s":{"s":36,"n":7,"a":5.14,"d":0.63,"Ss":36,"Sn":7,"Sa":5.14,"Sd":0.63,"Og":1,"Os":139,"On":25,"Oa":5.56,"Od":0.86,"pd":7,"pm":18},"p":[[-28,{"n":5,"e":3651}],[-27,{"n":6,"e":3665}],[-26,{"n":5,"e":3671}],[-25,{"n":5.5,"e":3681}],[-24,{"n":5.5,"e":3691}],[-23,{"n":7,"e":3702}],[-22,{"n":5.5,"e":3710}],[-20,{"n":6,"e":3735}],[-19,{"n":5.5,"e":3739}],[-18,{"n":5.5,"e":3754}],[-17,{"n":5.5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":5,"e":3779}],[-14,{"n":6,"e":3797}],[-13,{"n":5,"e":3800}],[-12,{"n":7.5,"e":3812}],[-11,{"n":4,"e":3823}],[-10,{"n":7.5,"e":3831,"g":1}],[7,{"n":5.5,"e":6141}],[6,{"n":6,"e":6157}],[5,{"n":5,"e":6163}],[4,{"n":4,"e":6171}],[3,{"n":5,"e":6187}],[2,{"n":5.5,"e":6197}],[1,{"n":5,"e":6198}]],"fo":[[6197,[{"t":"Y"}]]],"a":{"m":19,"a":26,"M":51,"n":45}}],[1522,{"n":"Mitroglou","f":"Kostas","fp":"A","r":5,"c":9}],[1726,{"n":"González","f":"Álvaro","fp":"DC","r":16,"c":9,"s":{"s":31,"n":6,"a":5.17,"d":0.93,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":0.5,"Oao":1,"Os":108,"On":21,"Oa":5.14,"Od":0.92,"pd":21},"p":[[-28,{"n":4.5,"e":3651}],[-27,{"n":4.5,"e":3665}],[-26,{"n":2.5,"e":3671,"a":1}],[-25,{"n":5,"e":3681}],[-24,{"n":5,"e":3691}],[-23,{"n":6,"e":3702}],[-22,{"n":6,"e":3710}],[-21,{"n":5.5,"e":3721}],[-20,{"n":6,"e":3735}],[-19,{"n":5.5,"e":3739}],[-18,{"n":6,"e":3754}],[-17,{"n":5.5,"e":3759}],[-16,{"n":5.5,"e":3769,"s":1}],[-13,{"n":4,"e":3800}],[-12,{"n":5.5,"e":3812}],[7,{"n":6,"e":6141}],[6,{"n":5,"e":6157}],[5,{"n":6,"e":6163}],[4,{"n":5,"e":6171}],[3,{"n":5.5,"e":6187}],[1,{"n":3.5,"e":6198}]],"fo":[[6171,[{"t":"Y"}]],[6187,[{"t":"Y"}]]],"a":{"m":15,"a":20,"M":25,"n":12}}],[2155,{"n":"Rocchia","f":"Christopher","fp":"DL","r":3,"c":9,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":105.5,"On":21,"Oa":5.02,"Od":1.01,"pd":21},"p":[[-27,{"n":5.5,"e":4804}],[-26,{"n":5,"e":4812}],[-25,{"n":3.5,"e":4827}],[-24,{"n":5.5,"e":4836}],[-23,{"n":5,"e":4843,"s":1}],[-21,{"n":4,"e":4858}],[-20,{"n":5.5,"e":4877,"s":1}],[-18,{"n":5,"e":4896}],[-17,{"n":5,"e":4905}],[-16,{"n":4.5,"e":4916}],[-11,{"n":5,"e":4960,"s":1}],[-9,{"n":6.5,"e":4986}],[-28,{"n":4.5,"e":4791}],[-22,{"n":3.5,"e":4856}],[-19,{"n":5,"e":4883}],[-15,{"n":3,"e":4923}],[-14,{"n":6,"e":4936,"g":1,"s":1}],[-13,{"n":6.5,"e":4946}],[-12,{"n":5,"e":4956}],[-10,{"n":7,"e":4976}],[1,{"n":5,"e":6198,"s":1}]]}],[2634,{"n":"Perrin","f":"Lucas","fp":"DC","r":3,"c":9,"s":{"Os":20,"On":4,"Oa":5,"Od":1.22,"pd":4},"p":[[-14,{"n":6,"e":3797}],[-9,{"n":3.5,"e":3838}],[-8,{"n":4.5,"e":3851}],[-7,{"n":6,"e":3860}]]}],[2712,{"n":"Caleta-Car","f":"Duje","fp":"DC","r":18,"c":9,"s":{"g":2,"s":38.5,"n":7,"a":5.5,"d":1.08,"Sg":2,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":1.08,"Og":3,"Os":140.5,"On":26,"Oa":5.4,"Od":0.93,"pd":26},"p":[[-27,{"n":5.5,"e":3665}],[-26,{"n":4,"e":3671}],[-25,{"n":4.5,"e":3681}],[-24,{"n":6,"e":3691}],[-23,{"n":6,"e":3702}],[-22,{"n":5.5,"e":3710}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5.5,"e":3735}],[-19,{"n":5.5,"e":3739}],[-17,{"n":5,"e":3759}],[-16,{"n":6,"e":3769}],[-15,{"n":6.5,"e":3779}],[-13,{"n":5.5,"e":3800}],[-12,{"n":5.5,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6.5,"e":3831}],[-9,{"n":3.5,"e":3838}],[-8,{"n":6,"e":3851,"g":1}],[-7,{"n":6,"e":3860}],[7,{"n":4.5,"e":6141}],[6,{"n":6,"e":6157}],[5,{"n":5,"e":6163}],[4,{"n":5,"e":6171}],[3,{"n":6,"e":6187}],[2,{"n":7.5,"e":6197,"g":2}],[1,{"n":4.5,"e":6198}]],"fo":[[6141,[{"t":"I"},{"t":"Y"}]],[6157,[{"t":"Y"}]]],"a":{"m":15,"a":24,"M":33,"n":54}}],[2779,{"n":"Chabrolle","f":"Florian","fp":"MO","r":1,"c":9}],[2835,{"n":"Strootman","f":"Kevin","fp":"MD","r":7,"c":9,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":119.5,"On":23,"Oa":5.2,"Od":0.78,"pm":23},"p":[[-28,{"n":6,"e":3651}],[-26,{"n":4.5,"e":3671,"s":1}],[-25,{"n":5,"e":3681,"s":1}],[-24,{"n":4.5,"e":3691,"s":1}],[-23,{"n":5,"e":3702,"s":1}],[-22,{"n":4.5,"e":3710,"s":1}],[-21,{"n":5.5,"e":3721}],[-20,{"n":7,"e":3735,"g":1,"s":1}],[-18,{"n":5,"e":3754}],[-17,{"n":5,"e":3759,"s":1}],[-16,{"n":5.5,"e":3769}],[-15,{"n":5,"e":3779}],[-14,{"n":5.5,"e":3797}],[-13,{"n":5,"e":3800,"s":1}],[-12,{"n":5,"e":3812,"s":1}],[-11,{"n":3.5,"e":3823}],[-10,{"n":7,"e":3831,"g":1}],[-8,{"n":5,"e":3851}],[-7,{"n":6,"e":3860}],[7,{"n":4.5,"e":6141,"s":1}],[3,{"n":5,"e":6187,"s":1}],[2,{"n":5.5,"e":6197}],[1,{"n":5,"e":6198,"s":1}]],"fo":[[6187,[{"t":"Y"}]]]}],[2860,{"n":"Radonjic","f":"Nemanja","fp":"MO","r":7,"c":9,"s":{"s":22.5,"n":5,"a":4.5,"d":0.61,"Og":5,"Os":110,"On":22,"Oa":5,"Od":0.91,"pm":2,"pa":20},"p":[[-25,{"n":4,"e":3681,"s":1}],[-24,{"n":4,"e":3691}],[-23,{"n":6.5,"e":3702,"g":1}],[-22,{"n":5,"e":3710,"s":1}],[-21,{"n":5,"e":3721}],[-20,{"n":4,"e":3735}],[-19,{"n":5,"e":3739}],[-18,{"n":7,"e":3754,"g":1,"s":1}],[-17,{"n":6.5,"e":3759,"g":1,"s":1}],[-16,{"n":4.5,"e":3769,"s":1}],[-15,{"n":6,"e":3779,"g":1,"s":1}],[-14,{"n":6,"e":3797,"g":1,"s":1}],[-12,{"n":4.5,"e":3812,"s":1}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5,"e":3838}],[-8,{"n":4.5,"e":3851,"s":1}],[-7,{"n":4.5,"e":3860,"s":1}],[6,{"n":4,"e":6157,"s":1}],[5,{"n":5.5,"e":6163,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[3,{"n":4.5,"e":6187,"s":1}],[2,{"n":4,"e":6197}]],"fo":[[6197,[{"t":"Y"}]]],"a":{"m":13,"a":20,"M":29,"n":14}}],[2939,{"n":"Phliponeau","f":"Alexandre","fp":"MD","r":1,"c":9}],[4968,{"n":"Gueye","f":"Pape Alassane","fp":"MD","r":8,"c":9,"s":{"s":28,"n":6,"a":4.67,"d":0.26,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.26,"Os":123,"On":24,"Oa":5.13,"Od":0.85,"pm":24},"p":[[-28,{"n":6.5,"e":4793}],[-26,{"n":4,"e":4813}],[-25,{"n":4.5,"e":4826}],[-23,{"n":5,"e":4840}],[-22,{"n":4.5,"e":4852}],[-21,{"n":4.5,"e":4862}],[-20,{"n":6,"e":4875}],[-19,{"n":5,"e":4885}],[-18,{"n":7,"e":4890}],[-17,{"n":5,"e":4906}],[-16,{"n":5,"e":4915}],[-15,{"n":7,"e":4922}],[-14,{"n":4,"e":4936}],[-13,{"n":5.5,"e":4944}],[-12,{"n":6,"e":4957}],[-11,{"n":5.5,"e":4964}],[-10,{"n":4.5,"e":4968}],[-9,{"n":5.5,"e":4983}],[7,{"n":4.5,"e":6141,"s":1}],[6,{"n":5,"e":6157,"s":1}],[5,{"n":5,"e":6163,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":4.5,"e":6197,"s":1}]],"fo":[[6187,[{"t":"Y"}]]],"a":{"m":5,"a":8,"M":12,"n":7}}],[6021,{"n":"Benedetto","f":"Darío","fp":"A","r":21,"c":9,"s":{"s":26,"n":6,"a":4.33,"d":0.98,"Ss":26,"Sn":6,"Sa":4.33,"Sd":0.98,"Og":7,"Os":128,"On":26,"Oa":4.92,"Od":1.3,"pa":26},"p":[[-28,{"n":4,"e":3651}],[-27,{"n":8.5,"e":3665,"g":3}],[-26,{"n":4.5,"e":3671}],[-25,{"n":6.5,"e":3681,"g":1}],[-23,{"n":4,"e":3702}],[-22,{"n":4.5,"e":3710}],[-21,{"n":4.5,"e":3721}],[-20,{"n":4,"e":3735}],[-19,{"n":7,"e":3739,"g":1}],[-18,{"n":4,"e":3754}],[-16,{"n":5,"e":3769}],[-15,{"n":5,"e":3779}],[-14,{"n":7,"e":3797,"g":1}],[-13,{"n":4.5,"e":3800}],[-12,{"n":4,"e":3812}],[-11,{"n":3.5,"e":3823}],[-10,{"n":6,"e":3831}],[-9,{"n":6.5,"e":3838,"g":1}],[-8,{"n":5,"e":3851}],[-7,{"n":4,"e":3860}],[7,{"n":5,"e":6141}],[6,{"n":5,"e":6157}],[5,{"n":5,"e":6163}],[4,{"n":4,"e":6171}],[3,{"n":2.5,"e":6187,"s":1}],[2,{"n":4.5,"e":6197}]],"fo":[[6187,[{"t":"Y"},{"t":"O"}]]],"a":{"m":25,"a":48,"M":107,"n":41}}],[6158,{"n":"Aké","f":"Marley","fp":"MO","r":7,"c":9,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":63.5,"On":13,"Oa":4.88,"Od":0.3,"pm":12,"pa":1},"p":[[-27,{"n":5,"e":3665,"s":1}],[-26,{"n":5,"e":3671,"s":1}],[-25,{"n":5.5,"e":3681,"s":1}],[-21,{"n":5,"e":3721,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-14,{"n":5,"e":3797,"s":1}],[-11,{"n":5,"e":3823,"s":1}],[-10,{"n":5,"e":3831,"s":1}],[-8,{"n":4.5,"e":3851,"s":1}],[7,{"n":4.5,"e":6141,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[2,{"n":5,"e":6197,"s":1}],[1,{"n":4.5,"e":6198,"s":1}]]}],[6199,{"n":"Ngapandouetnbu","f":"Simon","fp":"G","r":1,"c":9}],[6785,{"n":"Kamardin","f":"Aaron","fp":"DC","r":1,"c":9}],[6786,{"n":"Bertelli","f":"Ugo","fp":"MD","r":1,"c":9}],[6787,{"n":"Ahmed","f":"Nassim","fp":"MD","r":1,"c":9}],[6788,{"n":"Souaré","f":"Cheick","fp":"MD","r":1,"c":9}],[6795,{"n":"Rahou","f":"Jores","fp":"MO","r":1,"c":9}],[6799,{"n":"Richard","f":"Richecarde","fp":"DL","r":1,"c":9}],[6805,{"n":"Balerdi","f":"Leonardo","fp":"DC","r":7,"c":9,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pd":2},"p":[[2,{"n":4.5,"e":6197}],[1,{"n":3,"e":6198}]],"fo":[[6197,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":21,"n":15}}],[7139,{"n":"Vanni","f":"Fabio","fp":"G","r":1,"c":9}],[7147,{"n":"Nagatomo","f":"Yuto","fp":"DL","r":9,"c":9,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[5,{"n":5,"e":6163}],[4,{"n":4.5,"e":6171}]],"fo":[[6171,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":21,"n":5}}],[7364,{"n":"Luis Henrique","f":"","fp":"A","r":5,"c":9,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[7,{"n":4.5,"e":6141,"s":1}]],"a":{"m":6,"a":9,"M":18,"n":11}}],[7414,{"n":"Cuisance","f":"Michaël","fp":"MD","r":9,"c":9,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[7,{"n":5,"e":6141}]],"a":{"m":10,"a":16,"M":29,"n":13}}],[176,{"n":"Pajot","f":"Vincent","fp":"MD","r":14,"c":11,"s":{"s":36.5,"n":6,"a":6.08,"d":0.74,"Ss":14,"Sn":2,"Sa":7,"Os":87.5,"On":15,"Oa":5.83,"Od":0.75,"pm":15},"p":[[4,{"n":5.5,"e":6172}],[1,{"n":6,"e":6207}],[2,{"n":5.5,"e":6193}],[-23,{"n":5,"e":3703}],[-21,{"n":6,"e":3726}],[-20,{"n":6,"e":3732}],[-28,{"n":6,"e":3652}],[-27,{"n":6,"e":3658}],[-24,{"n":4.5,"e":3692}],[-22,{"n":7,"e":3712}],[-17,{"n":5.5,"e":3766,"s":1}],[-7,{"n":5,"e":3867,"s":1}],[7,{"n":7,"e":6138}],[6,{"n":7,"e":6151}],[3,{"n":5.5,"e":6181}]],"fo":[[6151,[{"t":"I"}]],[6138,[{"t":"Y"}]],[6181,[{"t":"Y"}]]],"a":{"m":11,"a":17,"M":25,"n":11}}],[273,{"n":"Delecroix","f":"Paul","fp":"G","r":1,"c":11,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pg":2},"p":[[-17,{"n":3.5,"e":3763}],[-16,{"n":5,"e":3774,"s":1}]]}],[337,{"n":"Nguette","f":"Opa","fp":"MO","r":18,"c":11,"s":{"g":1,"s":36,"n":7,"a":5.14,"d":0.9,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":0.9,"Og":6,"Os":138.5,"On":27,"Oa":5.13,"Od":1.16,"pm":8,"pa":19},"p":[[-25,{"n":5,"e":3684}],[-12,{"n":7,"e":3813,"g":1}],[-10,{"n":4.5,"e":3832,"s":1}],[-7,{"n":4,"e":3866}],[-28,{"n":6.5,"e":3652,"g":1}],[-27,{"n":5,"e":3658,"s":1}],[-26,{"n":3.5,"e":3672}],[-24,{"n":5,"e":3692}],[-22,{"n":8.5,"e":3712,"g":2}],[-21,{"n":5.5,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":5.5,"e":3738}],[-18,{"n":6.5,"e":3754,"g":1}],[-16,{"n":4,"e":3774}],[-15,{"n":4,"e":3784}],[-14,{"n":4,"e":3794}],[-13,{"n":5,"e":3799}],[-11,{"n":5.5,"e":3820,"s":1}],[-9,{"n":4,"e":3839}],[-8,{"n":4,"e":3852}],[7,{"n":6,"e":6138,"g":1}],[6,{"n":6.5,"e":6151}],[5,{"n":5.5,"e":6163}],[4,{"n":4,"e":6172}],[3,{"n":4.5,"e":6181}],[2,{"n":4.5,"e":6193}],[1,{"n":5,"e":6207,"s":1}]],"a":{"m":23,"a":28,"M":46,"n":16}}],[408,{"n":"N'Doram","f":"Kevin","fp":"MD","r":7,"c":11,"s":{"Os":92,"On":17,"Oa":5.41,"Od":0.59,"pm":17},"p":[[-28,{"n":6.5,"e":3652}],[-27,{"n":5.5,"e":3658}],[-26,{"n":5,"e":3672}],[-25,{"n":5.5,"e":3684}],[-24,{"n":5.5,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5,"e":3732,"s":1}],[-19,{"n":5.5,"e":3738}],[-14,{"n":4.5,"e":3794}],[-12,{"n":4.5,"e":3813}],[-11,{"n":5,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":5.5,"e":3839}],[-8,{"n":5.5,"e":3852}],[-7,{"n":6.5,"e":3866}]]}],[498,{"n":"Boulaya","f":"Farid","fp":"MO","r":9,"c":11,"s":{"s":27.5,"n":5,"a":5.5,"d":0.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":99,"On":19,"Oa":5.21,"Od":0.75,"pm":11,"pa":8},"p":[[-28,{"n":5,"e":3652}],[-27,{"n":7,"e":3658,"g":1}],[-25,{"n":3.5,"e":3684,"s":1}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":6,"e":3703,"g":1,"s":1}],[-20,{"n":4.5,"e":3732,"s":1}],[-19,{"n":5,"e":3738}],[-15,{"n":4.5,"e":3784,"s":1}],[-14,{"n":5,"e":3794,"s":1}],[-13,{"n":5,"e":3799,"s":1}],[-12,{"n":5,"e":3813,"s":1}],[-11,{"n":5,"e":3820}],[-10,{"n":6,"e":3832,"s":1}],[-9,{"n":5,"e":3839,"s":1}],[7,{"n":5.5,"e":6138}],[5,{"n":5,"e":6163}],[4,{"n":6,"e":6172}],[2,{"n":5,"e":6193}],[1,{"n":6,"e":6207}]],"fo":[[6172,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":16,"n":5}}],[554,{"n":"Maziz","f":"Youssef","fp":"MO","r":5,"c":11,"s":{"s":15,"n":3,"a":5,"Ss":10,"Sn":2,"Sa":5,"Og":2,"Os":60,"On":11,"Oa":5.45,"Od":1.06,"pm":11},"p":[[-22,{"n":5,"e":4853}],[-20,{"n":5,"e":4872}],[-19,{"n":8,"e":4884,"g":1}],[-18,{"n":5.5,"e":4892}],[-17,{"n":4.5,"e":4906}],[-16,{"n":5,"e":4912,"g":1}],[-15,{"n":7,"e":4919,"s":1}],[-14,{"n":5,"e":4931}],[7,{"n":5,"e":6138,"s":1}],[6,{"n":5,"e":6151,"s":1}],[1,{"n":5,"e":6207,"s":1}]]}],[576,{"n":"Udol","f":"Matthieu","fp":"DL","r":13,"c":11,"s":{"s":33,"n":6,"a":5.5,"d":0.77,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.77,"Os":98.5,"On":19,"Oa":5.18,"Od":0.8,"pd":19},"p":[[-28,{"n":5.5,"e":3652}],[-26,{"n":3.5,"e":3672}],[-25,{"n":6,"e":3684}],[-24,{"n":4.5,"e":3692}],[-22,{"n":5,"e":3712}],[-21,{"n":5.5,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":4,"e":3738}],[-18,{"n":5,"e":3754}],[-17,{"n":4.5,"e":3763}],[-15,{"n":6.5,"e":3784}],[-14,{"n":5,"e":3794}],[-13,{"n":5,"e":3799,"s":1}],[7,{"n":4.5,"e":6138}],[6,{"n":6,"e":6151}],[5,{"n":6,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":6,"e":6181}],[2,{"n":4.5,"e":6193}]],"fo":[[6138,[{"t":"Y"}]]],"a":{"m":9,"a":15,"M":23,"n":26}}],[1232,{"n":"Niane","f":"Ibrahima","fp":"A","r":21,"c":11,"s":{"g":6,"s":34,"n":6,"a":5.67,"d":2.02,"Og":9,"Os":108.5,"On":21,"Oa":5.17,"Od":1.23,"pa":21},"p":[[-28,{"n":4.5,"e":3652}],[-27,{"n":5,"e":3658}],[-26,{"n":4.5,"e":3672}],[-25,{"n":4,"e":3684}],[-24,{"n":7,"e":3692,"g":1}],[-23,{"n":5,"e":3703}],[-22,{"n":5,"e":3712}],[-21,{"n":4.5,"e":3726}],[-18,{"n":4.5,"e":3754,"s":1}],[-17,{"n":6,"e":3763,"g":1,"s":1}],[-13,{"n":4.5,"e":3799,"s":1}],[-12,{"n":5,"e":3813,"s":1}],[-9,{"n":4.5,"e":3839,"s":1}],[-8,{"n":5.5,"e":3852,"g":1,"s":1}],[-7,{"n":5,"e":3866,"s":1}],[6,{"n":8.5,"e":6151,"g":3}],[5,{"n":6,"e":6163,"g":1}],[4,{"n":7.5,"e":6172,"g":2}],[3,{"n":3.5,"e":6181}],[2,{"n":4,"e":6193}],[1,{"n":4.5,"e":6207}]],"a":{"m":8,"a":25,"M":79,"n":37}}],[1248,{"n":"Maïga","f":"Habib","fp":"MD","r":23,"c":11,"s":{"s":33.5,"n":6,"a":5.58,"d":1.11,"Og":1,"Os":154.5,"On":27,"Oa":5.72,"Od":0.86,"pm":27},"p":[[-28,{"n":7,"e":3652}],[-27,{"n":6,"e":3658}],[-25,{"n":6,"e":3684}],[-24,{"n":6,"e":3692}],[-23,{"n":4.5,"e":3703}],[-22,{"n":6.5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":7,"e":3738,"g":1}],[-18,{"n":5,"e":3754}],[-17,{"n":5,"e":3763}],[-16,{"n":5,"e":3774}],[-15,{"n":5.5,"e":3784}],[-14,{"n":5.5,"e":3794}],[-13,{"n":5.5,"e":3799}],[-12,{"n":5.5,"e":3813}],[-11,{"n":5,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":4.5,"e":3839}],[-8,{"n":7,"e":3852}],[-7,{"n":7,"e":3866}],[6,{"n":7.5,"e":6151}],[5,{"n":5.5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":5.5,"e":6181}],[2,{"n":4.5,"e":6193}],[1,{"n":4.5,"e":6207}]],"fo":[[6163,[{"t":"Y"}]],[6181,[{"t":"Y"}]],[6207,[{"t":"Y"}]]],"a":{"m":22,"a":27,"M":44,"n":26}}],[1264,{"n":"Caillard","f":"Marc-Aurèle","fp":"G","r":7,"c":11,"s":{"Os":74,"On":14,"Oa":5.29,"Od":0.87,"pg":14},"p":[[-28,{"n":4,"e":4796}],[-25,{"n":5.5,"e":4824}],[-22,{"n":6,"e":4851}],[-13,{"n":6,"e":4940}],[-10,{"n":4.5,"e":4970}],[-27,{"n":5,"e":4801}],[-26,{"n":4.5,"e":4812}],[-24,{"n":7,"e":4831}],[-23,{"n":5.5,"e":4847}],[-21,{"n":4,"e":4865}],[-20,{"n":5,"e":4871}],[-12,{"n":5,"e":4949}],[-11,{"n":6,"e":4965}],[-9,{"n":6,"e":4982}]]}],[1266,{"n":"Poblete","f":"Gerónimo","fp":"MD","r":5,"c":11}],[1415,{"n":"Oukidja","f":"Alexandre","fp":"G","r":25,"c":11,"s":{"s":40,"n":7,"a":5.71,"d":0.76,"Ss":40,"Sn":7,"Sa":5.71,"Sd":0.76,"Os":163.5,"On":28,"Oa":5.84,"Od":0.97,"pg":28},"p":[[-28,{"n":6.5,"e":3652}],[-27,{"n":7.5,"e":3658}],[-26,{"n":6,"e":3672}],[-25,{"n":7,"e":3684}],[-24,{"n":5,"e":3692}],[-23,{"n":6.5,"e":3703}],[-22,{"n":6.5,"e":3712}],[-21,{"n":6.5,"e":3726}],[-20,{"n":7,"e":3732}],[-19,{"n":5,"e":3738}],[-18,{"n":5.5,"e":3754}],[-16,{"n":4,"e":3774}],[-15,{"n":5,"e":3784}],[-14,{"n":6,"e":3794}],[-13,{"n":7,"e":3799}],[-12,{"n":4,"e":3813}],[-11,{"n":6.5,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":4,"e":3839}],[-8,{"n":5.5,"e":3852}],[-7,{"n":6.5,"e":3866}],[7,{"n":5,"e":6138}],[6,{"n":6,"e":6151}],[5,{"n":5.5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":6.5,"e":6181}],[2,{"n":4.5,"e":6193}],[1,{"n":6.5,"e":6207}]],"a":{"m":23,"a":29,"M":40,"n":25}}],[2139,{"n":"Vágner","f":"","fp":"MO","r":6,"c":11,"s":{"Og":3,"Os":45.5,"On":8,"Oa":5.69,"Od":1.19,"pm":3,"pa":5},"p":[[-16,{"n":5.5,"e":4914}],[-15,{"n":7,"e":4921,"g":1}],[-14,{"n":4.5,"e":4933}],[-13,{"n":6,"e":4944,"g":1}],[-12,{"n":6,"e":4952}],[-11,{"n":5,"e":4958}],[-10,{"n":7.5,"e":4973,"g":1}],[-9,{"n":4,"e":4980}]],"a":{"m":10,"a":12,"M":16,"n":11}}],[3776,{"n":"Cabit","f":"Manuel","fp":"DL","r":3,"c":11,"s":{"Os":14,"On":3,"Oa":4.67,"Od":1.53,"pd":3},"p":[[-12,{"n":5,"e":3813}],[-11,{"n":3,"e":3820}],[-10,{"n":6,"e":3832}]]}],[3781,{"n":"Fofana","f":"Mamadou","fp":"DC","r":10,"c":11,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Os":98,"On":20,"Oa":4.9,"Od":0.66,"pd":12,"pm":8},"p":[[-26,{"n":4.5,"e":3672}],[-23,{"n":5,"e":3703}],[-21,{"n":5,"e":3726,"s":1}],[-20,{"n":5.5,"e":3732}],[-19,{"n":4.5,"e":3738}],[-18,{"n":4.5,"e":3754}],[-17,{"n":4,"e":3763}],[-16,{"n":4,"e":3774}],[-15,{"n":5.5,"e":3784}],[-14,{"n":5.5,"e":3794}],[-13,{"n":6,"e":3799}],[-12,{"n":4.5,"e":3813}],[-11,{"n":4,"e":3820}],[-10,{"n":6,"e":3832}],[-9,{"n":4.5,"e":3839}],[-8,{"n":5,"e":3852}],[-7,{"n":5.5,"e":3866}],[5,{"n":5.5,"e":6163}],[3,{"n":4,"e":6181}],[1,{"n":5,"e":6207}]]}],[3782,{"n":"Adama Traoré","f":"","fp":"A","r":3,"c":11}],[3787,{"n":"Centonze","f":"Fabien","fp":"DL","r":17,"c":11,"s":{"s":38,"n":7,"a":5.43,"d":0.53,"Ss":38,"Sn":7,"Sa":5.43,"Sd":0.53,"Os":153,"On":29,"Oa":5.28,"Od":0.89,"pd":27,"pm":2},"p":[[-28,{"n":7,"e":3652}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4,"e":3672}],[-25,{"n":6,"e":3684}],[-24,{"n":5,"e":3692}],[-23,{"n":6,"e":3703}],[-22,{"n":5.5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5.5,"e":3732}],[-19,{"n":4,"e":3738}],[-18,{"n":7,"e":3754}],[-17,{"n":4,"e":3763}],[-16,{"n":5,"e":3774}],[-15,{"n":6,"e":3784}],[-14,{"n":5,"e":3794}],[-13,{"n":5.5,"e":3799}],[-12,{"n":5,"e":3813}],[-11,{"n":5,"e":3820}],[-10,{"n":5,"e":3832}],[-9,{"n":3.5,"e":3839}],[-8,{"n":3.5,"e":3852}],[-7,{"n":6,"e":3866}],[7,{"n":6,"e":6138}],[6,{"n":6,"e":6151}],[5,{"n":5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6193}],[1,{"n":5,"e":6207}]],"fo":[[6181,[{"t":"Y"}]],[6207,[{"t":"Y"}]]],"a":{"m":17,"a":20,"M":26,"n":23}}],[3790,{"n":"Angban","f":"Victorien","fp":"MD","r":10,"c":11,"s":{"s":37.5,"n":7,"a":5.36,"d":0.56,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":0.56,"Os":110.5,"On":21,"Oa":5.26,"Od":0.58,"pm":21},"p":[[-28,{"n":5,"e":3652,"s":1}],[-27,{"n":5,"e":3658,"s":1}],[-26,{"n":4.5,"e":3672}],[-25,{"n":6.5,"e":3684}],[-23,{"n":4.5,"e":3703,"s":1}],[-22,{"n":5,"e":3712,"s":1}],[-20,{"n":5,"e":3732,"s":1}],[-19,{"n":5.5,"e":3738,"s":1}],[-18,{"n":5,"e":3754}],[-14,{"n":5.5,"e":3794}],[-13,{"n":6,"e":3799}],[-12,{"n":4.5,"e":3813}],[-11,{"n":5,"e":3820,"s":1}],[-7,{"n":6,"e":3866}],[7,{"n":6.5,"e":6138}],[6,{"n":5.5,"e":6151}],[5,{"n":5.5,"e":6163}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6193}],[1,{"n":5,"e":6207,"s":1}]],"fo":[[6151,[{"t":"Y"}]],[6163,[{"t":"Y"}]]]}],[3800,{"n":"Ambrose","f":"Thierry","fp":"A","r":8,"c":11,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Os":82,"On":18,"Oa":4.56,"Od":0.57,"pm":2,"pa":16},"p":[[-28,{"n":4,"e":3652,"s":1}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4.5,"e":3672,"s":1}],[-24,{"n":5,"e":3692,"s":1}],[-22,{"n":4.5,"e":3712,"s":1}],[-19,{"n":4.5,"e":3738,"s":1}],[-17,{"n":4,"e":3763}],[-16,{"n":4.5,"e":3774,"s":1}],[-15,{"n":4.5,"e":3784,"s":1}],[-14,{"n":4,"e":3794,"s":1}],[-11,{"n":4,"e":3820}],[-10,{"n":4,"e":3832}],[-9,{"n":5,"e":3839,"s":1}],[-8,{"n":4.5,"e":3852,"s":1}],[6,{"n":6,"e":6151}],[4,{"n":5,"e":6172,"s":1}],[2,{"n":4.5,"e":6193,"s":1}],[1,{"n":4,"e":6207,"s":1}]]}],[3809,{"n":"Delaine","f":"Thomas","fp":"DL","r":6,"c":11,"s":{"s":5,"n":1,"a":5,"Os":49.5,"On":11,"Oa":4.5,"Od":0.55,"pd":8,"pm":3},"p":[[-27,{"n":4.5,"e":3658}],[-24,{"n":5,"e":3692,"s":1}],[-23,{"n":5,"e":3703}],[-22,{"n":4.5,"e":3712,"s":1}],[-17,{"n":3.5,"e":3763}],[-16,{"n":4,"e":3774}],[-13,{"n":5,"e":3799}],[-9,{"n":4,"e":3839}],[-8,{"n":4,"e":3852}],[-7,{"n":5,"e":3866}],[1,{"n":5,"e":6207}]]}],[3815,{"n":"Boye","f":"John","fp":"DC","r":17,"c":11,"s":{"s":37.5,"n":7,"a":5.36,"d":0.38,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":0.38,"Og":2,"Os":135,"On":26,"Oa":5.19,"Od":0.8,"pd":26},"p":[[-28,{"n":6.5,"e":3652,"g":1}],[-27,{"n":5.5,"e":3658}],[-26,{"n":4.5,"e":3672}],[-25,{"n":5.5,"e":3684}],[-24,{"n":5,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":6,"e":3712}],[-21,{"n":6.5,"e":3726}],[-20,{"n":6.5,"e":3732,"g":1}],[-18,{"n":5,"e":3754}],[-17,{"n":3.5,"e":3763}],[-16,{"n":4.5,"e":3774}],[-15,{"n":5,"e":3784}],[-14,{"n":5.5,"e":3794}],[-13,{"n":5.5,"e":3799}],[-10,{"n":3.5,"e":3832}],[-9,{"n":4,"e":3839}],[-8,{"n":4.5,"e":3852}],[-7,{"n":5.5,"e":3866}],[7,{"n":5.5,"e":6138}],[6,{"n":5.5,"e":6151}],[5,{"n":5,"e":6163}],[4,{"n":6,"e":6172}],[3,{"n":5,"e":6181}],[2,{"n":5,"e":6193}],[1,{"n":5.5,"e":6207}]],"fo":[[6138,[{"t":"I"}]]],"a":{"m":17,"a":19,"M":23,"n":15}}],[4897,{"n":"Tchimbembé","f":"Warren","fp":"A","r":8,"c":11,"s":{"s":25,"n":5,"a":5,"Ss":25,"Sn":5,"Sa":5,"Og":3,"Os":91,"On":18,"Oa":5.06,"Od":0.86,"pm":13,"pa":5},"p":[[-28,{"n":6,"e":4797,"g":1}],[-27,{"n":5,"e":4807}],[-26,{"n":8,"e":4817,"g":2}],[-25,{"n":5,"e":4819}],[-24,{"n":5,"e":4837}],[-22,{"n":4,"e":4857,"s":1}],[-18,{"n":4.5,"e":4891,"s":1}],[-17,{"n":4.5,"e":4902}],[-10,{"n":4.5,"e":4975,"s":1}],[-23,{"n":5,"e":4841}],[-19,{"n":4.5,"e":4886,"s":1}],[-16,{"n":5.5,"e":4916}],[-14,{"n":4.5,"e":4933,"s":1}],[7,{"n":5,"e":6138}],[6,{"n":5,"e":6151,"s":1}],[5,{"n":5,"e":6163,"s":1}],[4,{"n":5,"e":6172,"s":1}],[3,{"n":5,"e":6181,"s":1}]],"a":{"m":7,"a":8,"M":8,"n":5}}],[5012,{"n":"Kiki Kouyate","f":"","fp":"DC","r":7,"c":11,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":75.5,"On":14,"Oa":5.39,"Od":1.38,"pd":14},"p":[[-15,{"n":3.5,"e":4927}],[-13,{"n":7,"e":4947,"g":1}],[-28,{"n":5,"e":4797,"s":1}],[-21,{"n":5,"e":4862}],[-20,{"n":4,"e":4870}],[-19,{"n":8,"e":4886,"g":1}],[-18,{"n":7.5,"e":4891,"g":1}],[-17,{"n":6,"e":4902}],[-16,{"n":5.5,"e":4916}],[-12,{"n":6,"e":4951}],[-11,{"n":4,"e":4967}],[-9,{"n":4,"e":4987}],[7,{"n":5,"e":6138,"s":1}],[5,{"n":5,"e":6163,"s":1}]]}],[6003,{"n":"Yade","f":"Papa Ndiaga","fp":"MO","r":8,"c":11,"s":{"s":31,"n":6,"a":5.17,"d":0.75,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.75,"Os":41,"On":8,"Oa":5.13,"Od":0.64,"pm":8},"p":[[-26,{"n":5,"e":3672,"s":1}],[-21,{"n":5,"e":3726,"s":1}],[7,{"n":5,"e":6138,"s":1}],[6,{"n":4.5,"e":6151,"s":1}],[5,{"n":5,"e":6163,"s":1}],[4,{"n":6.5,"e":6172,"s":1}],[3,{"n":4.5,"e":6181,"s":1}],[2,{"n":5.5,"e":6193,"s":1}]],"a":{"m":6,"a":8,"M":9,"n":6}}],[6289,{"n":"Traore","f":"Boubacar","fp":"MD","r":1,"c":11}],[6392,{"n":"Lacroix","f":"Lenny","fp":"DC","r":1,"c":11}],[6393,{"n":"Bronn","f":"Dylan","fp":"DC","r":12,"c":11,"s":{"s":36.5,"n":7,"a":5.21,"d":0.57,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.57,"Os":83.5,"On":16,"Oa":5.22,"Od":0.6,"pd":16},"p":[[-28,{"n":5.5,"e":3652}],[-27,{"n":6,"e":3658}],[-26,{"n":4.5,"e":3672}],[-25,{"n":5,"e":3684}],[-24,{"n":4,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":5.5,"e":3712}],[-21,{"n":6,"e":3726}],[-20,{"n":5.5,"e":3732}],[7,{"n":5.5,"e":6138}],[6,{"n":5.5,"e":6151}],[5,{"n":5.5,"e":6163}],[4,{"n":5.5,"e":6172}],[3,{"n":5.5,"e":6181}],[2,{"n":4,"e":6193}],[1,{"n":5,"e":6207}]],"fo":[[6181,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":19,"n":12}}],[6700,{"n":"Gueye","f":"Lamine","fp":"MO","r":6,"c":11,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[3,{"n":4.5,"e":6181,"s":1}]]}],[7458,{"n":"Sarr","f":"Pape","fp":"MD","r":3,"c":11}],[24,{"n":"Sidibé","f":"Djibril","fp":"DL","r":8,"c":13,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Ss":4,"Sn":1,"Sa":4,"Os":139,"On":28,"Oa":4.96,"Od":0.9,"pd":25,"pm":3},"p":[[7,{"n":4,"e":6142}],[4,{"n":5,"e":6176}],[-38,{"n":5,"e":3932,"s":1}],[-37,{"n":5.5,"e":3943}],[-34,{"n":5.5,"e":3973,"s":1}],[-33,{"n":5,"e":3986,"s":1}],[-29,{"n":3,"e":4020}],[-28,{"n":5,"e":4031,"s":1}],[-27,{"n":4,"e":4038}],[-26,{"n":5,"e":4052,"s":1}],[-25,{"n":6,"e":4066}],[-24,{"n":4,"e":4070}],[-23,{"n":5.5,"e":4087,"s":1}],[-22,{"n":5,"e":4092}],[-21,{"n":5,"e":4102}],[-20,{"n":5,"e":4113}],[-19,{"n":7,"e":4122}],[-18,{"n":5,"e":4131}],[-16,{"n":6,"e":4151}],[-15,{"n":3.5,"e":4167}],[-14,{"n":5.5,"e":4170}],[-11,{"n":4.5,"e":4203}],[-10,{"n":4,"e":4209}],[-9,{"n":6,"e":4222}],[-8,{"n":4.5,"e":4229,"s":1}],[-13,{"n":4,"e":4183}],[-12,{"n":6.5,"e":4193}],[2,{"n":5,"e":6193}]]}],[94,{"n":"Jemerson","f":"","fp":"DC","r":6,"c":13,"s":{"Os":48.5,"On":10,"Oa":4.85,"Od":0.67,"pd":10},"p":[[-12,{"n":4.5,"e":3816}],[-11,{"n":3.5,"e":3822}],[-19,{"n":6,"e":3740}],[-18,{"n":4.5,"e":3749}],[-17,{"n":5,"e":3760}],[-16,{"n":5,"e":3777}],[-14,{"n":5,"e":3790}],[-10,{"n":5,"e":3833}],[-8,{"n":5.5,"e":3853}],[-7,{"n":4.5,"e":3862}]]}],[208,{"n":"Aït Bennasser","f":"Youssef","fp":"MD","r":5,"c":13,"s":{"Os":61,"On":12,"Oa":5.08,"Od":0.9,"pm":12},"p":[[-28,{"n":5,"e":3656}],[-23,{"n":5,"e":3698}],[-22,{"n":5,"e":3710,"s":1}],[-18,{"n":4.5,"e":3750}],[-16,{"n":7.5,"e":3770}],[-15,{"n":5,"e":3785,"s":1}],[-13,{"n":5,"e":3804,"s":1}],[-11,{"n":3.5,"e":3819}],[-10,{"n":5.5,"e":3829}],[-9,{"n":5,"e":3847,"s":1}],[-8,{"n":5,"e":3849,"s":1}],[-7,{"n":5,"e":3858,"s":1}]]}],[250,{"n":"Lecomte","f":"Benjamin","fp":"G","r":20,"c":13,"s":{"s":31,"n":6,"a":5.17,"d":1.44,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Os":155,"On":28,"Oa":5.54,"Od":1.04,"pg":28},"p":[[5,{"n":6,"e":6164}],[1,{"n":4.5,"e":6203}],[-27,{"n":7,"e":3662}],[-25,{"n":6,"e":3683}],[-21,{"n":4,"e":3722}],[-15,{"n":6,"e":3780}],[-20,{"n":6,"e":3734}],[-9,{"n":5.5,"e":3842}],[-28,{"n":5,"e":3653}],[-26,{"n":5,"e":3669}],[-24,{"n":4,"e":3688}],[-23,{"n":6.5,"e":3706}],[-22,{"n":5,"e":3714}],[-19,{"n":6,"e":3740}],[-18,{"n":7,"e":3749}],[-17,{"n":6,"e":3760}],[-16,{"n":6,"e":3777}],[-14,{"n":5.5,"e":3790}],[-13,{"n":6.5,"e":3801}],[-12,{"n":6,"e":3816}],[-11,{"n":7,"e":3822}],[-10,{"n":4.5,"e":3833}],[-8,{"n":4.5,"e":3853}],[-7,{"n":5,"e":3862}],[7,{"n":4.5,"e":6142}],[6,{"n":6,"e":6149}],[4,{"n":3,"e":6176}],[2,{"n":7,"e":6193}]],"a":{"m":21,"a":26,"M":40,"n":18}}],[646,{"n":"Fàbregas","f":"Cesc","fp":"MO","r":10,"c":13,"s":{"s":24.5,"n":5,"a":4.9,"d":0.74,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.48,"Os":99.5,"On":20,"Oa":4.97,"Od":0.85,"pm":19,"pa":1},"p":[[3,{"n":6,"e":6183}],[-28,{"n":5,"e":3653}],[-26,{"n":5,"e":3669,"s":1}],[-24,{"n":5.5,"e":3688,"s":1}],[-23,{"n":5,"e":3706}],[-21,{"n":4,"e":3722}],[-20,{"n":4,"e":3734}],[-18,{"n":4.5,"e":3749,"s":1}],[-17,{"n":6,"e":3760}],[-16,{"n":4.5,"e":3777,"s":1}],[-15,{"n":3.5,"e":3780}],[-11,{"n":5,"e":3822,"s":1}],[-10,{"n":7,"e":3833}],[-9,{"n":4.5,"e":3842}],[-8,{"n":5.5,"e":3853}],[-7,{"n":6,"e":3862}],[7,{"n":5,"e":6142,"s":1}],[6,{"n":4,"e":6149}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6176}]],"a":{"m":8,"a":11,"M":18,"n":7}}],[807,{"n":"Mannone","f":"Vito","fp":"G","r":6,"c":13}],[1227,{"n":"Aguilar","f":"Ruben","fp":"DL","r":15,"c":13,"s":{"g":1,"s":38,"n":7,"a":5.43,"d":0.98,"Sg":1,"Ss":38,"Sn":7,"Sa":5.43,"Sd":0.98,"Og":1,"Os":118,"On":22,"Oa":5.36,"Od":0.92,"pd":20,"pm":2},"p":[[-28,{"n":4.5,"e":3653}],[-26,{"n":5,"e":3669}],[-25,{"n":7,"e":3683}],[-23,{"n":6,"e":3706}],[-21,{"n":5,"e":3722,"s":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-19,{"n":7,"e":3740}],[-18,{"n":5.5,"e":3749,"s":1}],[-17,{"n":5,"e":3760,"s":1}],[-16,{"n":6.5,"e":3777}],[-14,{"n":5.5,"e":3790,"s":1}],[-12,{"n":4,"e":3816,"s":1}],[-10,{"n":4.5,"e":3833}],[-9,{"n":5,"e":3842,"s":1}],[-8,{"n":5,"e":3853,"s":1}],[7,{"n":5,"e":6142}],[6,{"n":5,"e":6149}],[5,{"n":7,"e":6164,"g":1}],[4,{"n":4,"e":6176}],[3,{"n":6,"e":6183}],[2,{"n":6,"e":6193}],[1,{"n":5,"e":6203}]],"fo":[[6193,[{"t":"Y"}]]],"a":{"m":10,"a":18,"M":33,"n":33}}],[1256,{"n":"Ballo-Toure","f":"Fode","fp":"DL","r":9,"c":13,"s":{"s":16,"n":3,"a":5.33,"d":0.58,"Oao":1,"Os":91.5,"On":19,"Oa":4.82,"Od":0.89,"pd":16,"pm":3},"p":[[-28,{"n":4.5,"e":3653}],[-27,{"n":4.5,"e":3662}],[-26,{"n":5,"e":3669}],[-25,{"n":5,"e":3683}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6,"e":3706}],[-22,{"n":3,"e":3714}],[-21,{"n":3.5,"e":3722}],[-20,{"n":4.5,"e":3734,"a":1}],[-16,{"n":5,"e":3777}],[-15,{"n":3.5,"e":3780}],[-13,{"n":5,"e":3801,"s":1}],[-12,{"n":5,"e":3816,"s":1}],[-9,{"n":4,"e":3842}],[-8,{"n":6.5,"e":3853}],[-7,{"n":5,"e":3862,"s":1}],[5,{"n":6,"e":6164}],[3,{"n":5,"e":6183}],[1,{"n":5,"e":6203}]],"fo":[[6164,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":15,"n":9}}],[1417,{"n":"Grandsir","f":"Samuel","fp":"MO","r":6,"c":13,"s":{"Og":2,"Os":93,"On":18,"Oa":5.17,"Od":0.73,"pm":17,"pa":1},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":5.5,"e":3660}],[-26,{"n":6,"e":3673,"g":1}],[-25,{"n":6,"e":3680}],[-23,{"n":5.5,"e":3698}],[-22,{"n":5,"e":3711,"s":1}],[-21,{"n":5,"e":3718,"s":1}],[-19,{"n":4.5,"e":3741,"s":1}],[-17,{"n":5,"e":3758,"s":1}],[-15,{"n":5,"e":3779,"s":1}],[-14,{"n":4.5,"e":3791}],[-13,{"n":7,"e":3798,"g":1,"s":1}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5.5,"e":3818}],[-10,{"n":4.5,"e":3828}],[-9,{"n":5.5,"e":3839}],[-8,{"n":4,"e":3853,"s":1}],[-7,{"n":4.5,"e":3859}]]}],[1523,{"n":"Jovetic","f":"Stevan","fp":"A","r":8,"c":13,"s":{"s":29.5,"n":6,"a":4.92,"d":0.58,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.58,"Og":2,"Os":74.5,"On":15,"Oa":4.97,"Od":0.58,"pm":1,"pa":14},"p":[[-28,{"n":4.5,"e":3653}],[-27,{"n":5,"e":3662,"s":1}],[-26,{"n":4.5,"e":3669}],[-25,{"n":5,"e":3683}],[-24,{"n":5,"e":3688}],[-23,{"n":6,"e":3706,"g":1}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":6,"e":3722,"g":1,"s":1}],[-15,{"n":4.5,"e":3780,"s":1}],[7,{"n":6,"e":6142,"s":1}],[6,{"n":5,"e":6149,"s":1}],[5,{"n":5,"e":6164}],[4,{"n":4.5,"e":6176,"s":1}],[3,{"n":4.5,"e":6183,"s":1}],[2,{"n":4.5,"e":6193,"s":1}]]}],[1623,{"n":"Ben Yedder","f":"Wissam","fp":"A","r":40,"c":13,"s":{"g":4,"s":37.5,"n":7,"a":5.36,"d":1.18,"Sg":4,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":1.18,"Og":19,"Os":169.5,"On":29,"Oa":5.84,"Od":1.21,"pa":29},"p":[[-28,{"n":6,"e":3653,"g":1}],[-27,{"n":6,"e":3662,"g":1}],[-26,{"n":5,"e":3669}],[-25,{"n":5.5,"e":3683}],[-24,{"n":6.5,"e":3688,"g":1}],[-23,{"n":4.5,"e":3706}],[-22,{"n":6,"e":3714,"g":1}],[-21,{"n":5,"e":3722}],[-20,{"n":7.5,"e":3734,"g":1}],[-19,{"n":8.5,"e":3740,"g":2}],[-18,{"n":4.5,"e":3749}],[-17,{"n":7.5,"e":3760,"g":1}],[-16,{"n":7,"e":3777,"g":1}],[-15,{"n":4,"e":3780}],[-14,{"n":6,"e":3790}],[-13,{"n":5,"e":3801}],[-12,{"n":4.5,"e":3816}],[-11,{"n":6,"e":3822,"g":1}],[-10,{"n":7.5,"e":3833,"g":2}],[-9,{"n":6,"e":3842,"g":1}],[-8,{"n":7.5,"e":3853,"g":1}],[-7,{"n":6,"e":3862,"g":1,"s":1}],[7,{"n":6,"e":6142,"g":1}],[6,{"n":4,"e":6149}],[5,{"n":7,"e":6164,"g":2}],[4,{"n":6.5,"e":6176,"g":1}],[3,{"n":5,"e":6183}],[2,{"n":5,"e":6193}],[1,{"n":4,"e":6203}]],"a":{"m":41,"a":85,"M":181,"n":70}}],[1928,{"n":"Maripán","f":"Guillermo","fp":"DC","r":8,"c":13,"s":{"s":10,"n":2,"a":5,"Og":2,"Os":97.5,"On":19,"Oa":5.13,"Od":1.18,"pd":19},"p":[[-28,{"n":4.5,"e":3653}],[-26,{"n":7,"e":3669,"g":1}],[-25,{"n":5.5,"e":3683}],[-24,{"n":5,"e":3688}],[-23,{"n":6.5,"e":3706}],[-22,{"n":4,"e":3714}],[-21,{"n":3.5,"e":3722}],[-20,{"n":5,"e":3734}],[-19,{"n":5.5,"e":3740}],[-18,{"n":5.5,"e":3749}],[-17,{"n":7.5,"e":3760,"g":1}],[-16,{"n":5,"e":3777}],[-15,{"n":3.5,"e":3780}],[-14,{"n":4.5,"e":3790}],[-13,{"n":6,"e":3801}],[-9,{"n":3,"e":3842}],[-7,{"n":6,"e":3862}],[4,{"n":5,"e":6176,"s":1}],[2,{"n":5,"e":6193,"s":1}]],"a":{"m":12,"a":24,"M":35,"n":9}}],[2038,{"n":"Geubbels","f":"Willem","fp":"A","r":9,"c":13,"s":{"g":1,"s":28.5,"n":6,"a":4.75,"d":0.88,"Ss":9,"Sn":2,"Sa":4.5,"Og":1,"Os":28.5,"On":6,"Oa":4.75,"Od":0.88,"pa":6},"p":[[7,{"n":4.5,"e":6142,"s":1}],[6,{"n":4.5,"e":6149,"s":1}],[4,{"n":4,"e":6176,"s":1}],[3,{"n":6.5,"e":6183,"g":1,"s":1}],[2,{"n":4.5,"e":6193,"s":1}],[1,{"n":4.5,"e":6203,"s":1}]],"fo":[[6142,[{"t":"Y"}]],[6176,[{"t":"Y"}]],[6183,[{"t":"Y"}]]],"a":{"m":3,"a":8,"M":14,"n":7}}],[2238,{"n":"Tchouameni","f":"Aurelien","fp":"MD","r":10,"c":13,"s":{"s":31,"n":6,"a":5.17,"d":0.68,"Ss":5,"Sn":1,"Sa":5,"Os":105,"On":20,"Oa":5.25,"Od":0.85,"pm":20},"p":[[-27,{"n":5,"e":3662,"s":1}],[-23,{"n":4.5,"e":3706,"s":1}],[-22,{"n":5,"e":3714,"s":1}],[-21,{"n":5,"e":3724,"s":1}],[-20,{"n":4,"e":3730}],[-19,{"n":5,"e":3746,"s":1}],[-17,{"n":4.5,"e":3759}],[-15,{"n":5.5,"e":3785}],[-14,{"n":6.5,"e":3790}],[-13,{"n":5.5,"e":3804}],[-12,{"n":7,"e":3810}],[-9,{"n":4.5,"e":3847}],[-8,{"n":5,"e":3849}],[-7,{"n":7,"e":3858}],[7,{"n":5,"e":6142}],[5,{"n":4,"e":6164}],[4,{"n":5.5,"e":6176}],[3,{"n":5.5,"e":6183}],[2,{"n":5,"e":6193}],[1,{"n":6,"e":6203}]],"fo":[[6164,[{"t":"Y"},{"t":"O"}]],[6183,[{"t":"Y"}]],[6193,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":24,"n":6}}],[2275,{"n":"Pellegri","f":"Pietro","fp":"A","r":6,"c":13,"s":{"s":13,"n":3,"a":4.33,"d":0.29,"Ss":9,"Sn":2,"Sa":4.5,"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[7,{"n":4.5,"e":6142,"s":1}],[6,{"n":4.5,"e":6149,"s":1}],[3,{"n":4,"e":6183,"s":1}]],"fo":[[6142,[{"t":"Y"}]]],"a":{"m":3,"a":5,"M":6,"n":5}}],[2459,{"n":"Gelson Martins","f":"","fp":"A","r":9,"c":13,"s":{"s":31,"n":6,"a":5.17,"d":0.52,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":4,"Os":110.5,"On":21,"Oa":5.26,"Od":1.2,"pm":14,"pa":7},"p":[[-22,{"n":2.5,"e":3714}],[-21,{"n":4,"e":3722}],[-20,{"n":7,"e":3734,"g":1}],[-19,{"n":7.5,"e":3740,"g":1}],[-18,{"n":5.5,"e":3749}],[-17,{"n":6,"e":3760}],[-16,{"n":6,"e":3777,"g":1,"s":1}],[-15,{"n":3.5,"e":3780}],[-14,{"n":5,"e":3790}],[-13,{"n":5,"e":3801}],[-12,{"n":4.5,"e":3816}],[-11,{"n":6.5,"e":3822}],[-9,{"n":4,"e":3842}],[-8,{"n":6.5,"e":3853,"g":1}],[-7,{"n":6,"e":3862}],[7,{"n":6,"e":6142}],[6,{"n":5,"e":6149}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":4.5,"e":6183}],[2,{"n":5,"e":6193}],[1,{"n":5.5,"e":6203}]],"fo":[[6149,[{"t":"Y"}]],[6193,[{"t":"Y"}]]],"a":{"m":2,"a":13,"M":28,"n":31}}],[2622,{"n":"Diop","f":"Sofiane","fp":"MO","r":12,"c":13,"s":{"g":1,"s":38.5,"n":7,"a":5.5,"d":0.82,"Sg":1,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":0.82,"Og":2,"Os":116,"On":22,"Oa":5.27,"Od":0.75,"pm":21,"pa":1},"p":[[-28,{"n":5,"e":4791,"s":1}],[-27,{"n":5,"e":4804}],[-26,{"n":5.5,"e":4812}],[-25,{"n":7.5,"e":4827,"g":1}],[-22,{"n":5,"e":4856,"s":1}],[-21,{"n":4.5,"e":4858,"s":1}],[-19,{"n":5,"e":4883,"s":1}],[-18,{"n":5,"e":4896,"s":1}],[-17,{"n":5,"e":4905,"s":1}],[-15,{"n":5.5,"e":4923}],[-14,{"n":5.5,"e":4936}],[-13,{"n":5,"e":4946,"s":1}],[-12,{"n":4.5,"e":4956}],[-11,{"n":4.5,"e":4960}],[-10,{"n":5,"e":4976,"s":1}],[7,{"n":5,"e":6142}],[6,{"n":6,"e":6149}],[5,{"n":5,"e":6164,"s":1}],[4,{"n":4.5,"e":6176}],[3,{"n":7,"e":6183,"g":1}],[2,{"n":5.5,"e":6193,"s":1}],[1,{"n":5.5,"e":6203,"s":1}]],"fo":[[6183,[{"t":"Y"}]]],"a":{"m":7,"a":12,"M":24,"n":19}}],[2683,{"n":"Disasi","f":"Axel","fp":"DC","r":13,"c":13,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":0.91,"Og":2,"Os":129,"On":26,"Oa":4.96,"Od":0.9,"pd":26},"p":[[-24,{"n":4,"e":3697}],[-27,{"n":5.5,"e":3662}],[-26,{"n":5,"e":3676}],[-25,{"n":5,"e":3686}],[-23,{"n":6,"e":3701}],[-22,{"n":5.5,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":3,"e":3733}],[-19,{"n":4,"e":3745}],[-18,{"n":5.5,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":3.5,"e":3768}],[-15,{"n":5,"e":3785}],[-14,{"n":6,"e":3794,"g":1}],[-13,{"n":6,"e":3805}],[-12,{"n":5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":5,"e":3845}],[-8,{"n":4.5,"e":3856}],[-7,{"n":7,"e":3865}],[5,{"n":3.5,"e":6164}],[4,{"n":4,"e":6176}],[3,{"n":5.5,"e":6183}],[2,{"n":5.5,"e":6193}],[1,{"n":5,"e":6203,"g":1}]],"fo":[[6164,[{"t":"R"}]],[6176,[{"t":"Y"}]],[6203,[{"t":"Y"}]]],"a":{"m":16,"a":21,"M":37,"n":38}}],[2720,{"n":"Golovin","f":"Aleksandr","fp":"MO","r":18,"c":13,"s":{"s":12,"n":2,"a":6,"d":1.41,"Og":3,"Os":125.5,"On":22,"Oa":5.7,"Od":1.3,"pm":21,"pa":1},"p":[[-28,{"n":5.5,"e":3653}],[-27,{"n":6,"e":3662}],[-25,{"n":7,"e":3683}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6,"e":3706}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":4.5,"e":3722}],[-20,{"n":6,"e":3734}],[-19,{"n":7,"e":3740}],[-18,{"n":6,"e":3749}],[-17,{"n":7,"e":3760}],[-16,{"n":5.5,"e":3777}],[-15,{"n":3.5,"e":3780}],[-14,{"n":4,"e":3790}],[-13,{"n":7,"e":3801,"g":1}],[-12,{"n":4.5,"e":3816}],[-11,{"n":7,"e":3822}],[-9,{"n":4,"e":3842}],[-8,{"n":4.5,"e":3853}],[-7,{"n":8.5,"e":3862,"g":2}],[2,{"n":5,"e":6193}],[1,{"n":7,"e":6203}]],"fo":[[6193,[{"t":"I"}]]],"a":{"m":21,"a":27,"M":41,"n":29}}],[2768,{"n":"Fofana","f":"Youssouf","fp":"MD","r":12,"c":13,"s":{"s":21,"n":5,"a":4.2,"d":0.57,"Og":1,"Os":124,"On":24,"Oa":5.17,"Od":0.99,"pm":24},"p":[[-19,{"n":5,"e":3747}],[-28,{"n":5.5,"e":3653}],[-27,{"n":4.5,"e":3662}],[-26,{"n":6,"e":3669}],[-25,{"n":7,"e":3683}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6.5,"e":3706}],[-22,{"n":4.5,"e":3714}],[-21,{"n":5,"e":3722}],[-20,{"n":4.5,"e":3732}],[-18,{"n":5.5,"e":3750}],[-17,{"n":5,"e":3767,"s":1}],[-16,{"n":3.5,"e":3771}],[-15,{"n":6.5,"e":3787,"g":1}],[-14,{"n":7,"e":3788}],[-13,{"n":6,"e":3807}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5,"e":3827}],[-10,{"n":5,"e":3831}],[6,{"n":3.5,"e":6149}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6176}],[2,{"n":4,"e":6193}],[1,{"n":4,"e":6203}]],"fo":[[6193,[{"t":"Y"},{"t":"O"}]]],"a":{"m":16,"a":20,"M":21,"n":5}}],[2955,{"n":"Gouano","f":"Gobe","fp":"A","r":1,"c":13}],[2961,{"n":"Badiashile Mukinayi","f":"Benoit","fp":"DC","r":15,"c":13,"s":{"g":2,"s":37,"n":7,"a":5.29,"d":0.86,"Sg":2,"Ss":37,"Sn":7,"Sa":5.29,"Sd":0.86,"Og":2,"Os":99,"On":19,"Oa":5.21,"Od":0.82,"pd":19},"p":[[-27,{"n":5,"e":3662}],[-26,{"n":6,"e":3669}],[-24,{"n":6,"e":3688}],[-22,{"n":3.5,"e":3714}],[-14,{"n":4.5,"e":3790}],[-13,{"n":6,"e":3801}],[-12,{"n":5,"e":3816}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3833}],[-9,{"n":4,"e":3842}],[-8,{"n":6,"e":3853}],[-7,{"n":5.5,"e":3862}],[7,{"n":5.5,"e":6142}],[6,{"n":4,"e":6149}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6176}],[3,{"n":6,"e":6183}],[2,{"n":6.5,"e":6193,"g":1}],[1,{"n":5.5,"e":6203,"g":1}]],"a":{"m":13,"a":21,"M":31,"n":43}}],[3652,{"n":"Onyekuru","f":"Henry","fp":"MO","r":8,"c":13,"s":{"s":19,"n":4,"a":4.75,"d":0.96,"Os":19,"On":4,"Oa":4.75,"Od":0.96,"pa":4},"p":[[4,{"n":4,"e":6176,"s":1}],[3,{"n":6,"e":6183,"s":1}],[2,{"n":5,"e":6193}],[1,{"n":4,"e":6203}]],"a":{"m":7,"a":10,"M":12,"n":10}}],[6701,{"n":"Pavlovic","f":"Strahinja","fp":"DC","r":3,"c":13}],[6707,{"n":"Majecki","f":"Radoslaw","fp":"G","r":7,"c":13,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[3,{"n":5,"e":6183}]]}],[6926,{"n":"Millot","f":"Enzo","fp":"MO","r":4,"c":13,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[6,{"n":4.5,"e":6149,"s":1}]]}],[6927,{"n":"Matazo","f":"Eliot","fp":"MD","r":5,"c":13,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[5,{"n":5,"e":6164,"s":1}]]}],[6928,{"n":"Matsima","f":"Chrislain","fp":"DC","r":7,"c":13,"s":{"s":15,"n":3,"a":5,"d":0.87,"Ss":15,"Sn":3,"Sa":5,"Sd":0.87,"Os":15,"On":3,"Oa":5,"Od":0.87,"pd":3},"p":[[7,{"n":5.5,"e":6142}],[6,{"n":4,"e":6149}],[5,{"n":5.5,"e":6164,"s":1}]],"fo":[[6149,[{"t":"Y"}]]]}],[6929,{"n":"Bakali Wawina","f":"Jonathan","fp":"A","r":1,"c":13}],[7145,{"n":"Caio Henrique","f":"","fp":"DL","r":5,"c":13,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[7,{"n":5,"e":6142,"s":1}]]}],[7182,{"n":"Volland","f":"Kevin","fp":"A","r":14,"c":13,"s":{"s":23.5,"n":5,"a":4.7,"d":1.4,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.4,"Os":23.5,"On":5,"Oa":4.7,"Od":1.4,"pa":5},"p":[[7,{"n":4,"e":6142}],[6,{"n":3.5,"e":6149}],[5,{"n":7,"e":6164}],[4,{"n":4,"e":6176}],[3,{"n":5,"e":6183}]],"fo":[[6149,[{"t":"Y"}]]],"a":{"m":16,"a":25,"M":53,"n":31}}],[7366,{"n":"Florentino Luís","f":"","fp":"MD","r":6,"c":13,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[7,{"n":5,"e":6142}],[6,{"n":4.5,"e":6149,"s":1}]]}],[40,{"n":"Delort","f":"Andy","fp":"A","r":25,"c":15,"s":{"g":3,"s":35.5,"n":6,"a":5.92,"d":1.8,"Ss":5,"Sn":1,"Sa":5,"Og":10,"Os":144,"On":26,"Oa":5.54,"Od":1.36,"pa":26},"p":[[6,{"n":4,"e":6152}],[3,{"n":7.5,"e":6184}],[-27,{"n":6,"e":3663}],[-22,{"n":4,"e":3715}],[-17,{"n":4,"e":3761}],[-8,{"n":4,"e":3857}],[-28,{"n":3.5,"e":3655}],[-26,{"n":5,"e":3668}],[-24,{"n":7,"e":3693,"g":1}],[-23,{"n":4,"e":3703}],[-21,{"n":6,"e":3723,"g":1}],[-20,{"n":7,"e":3728,"g":1}],[-19,{"n":6,"e":3741}],[-18,{"n":6,"e":3752,"g":1}],[-16,{"n":6,"e":3772}],[-15,{"n":7,"e":3781,"g":1}],[-14,{"n":4,"e":3796}],[-13,{"n":6,"e":3802}],[-12,{"n":6,"e":3813,"g":1}],[-11,{"n":5,"e":3821}],[-9,{"n":7.5,"e":3842,"g":1}],[-7,{"n":4.5,"e":3863}],[7,{"n":5,"e":6142}],[5,{"n":7,"e":6160,"g":1}],[4,{"n":8,"e":6173,"g":2}],[1,{"n":4,"e":6204}]],"fo":[[6173,[{"t":"Y"}]],[6204,[{"t":"Y"}]]],"a":{"m":22,"a":44,"M":83,"n":78}}],[150,{"n":"Hilton","f":"","fp":"DC","r":15,"c":15,"s":{"s":26.5,"n":5,"a":5.3,"d":1.1,"Ss":16,"Sn":3,"Sa":5.33,"Sd":1.53,"Os":146.5,"On":27,"Oa":5.43,"Od":1.04,"pd":27},"p":[[-28,{"n":3.5,"e":3655}],[-27,{"n":7.5,"e":3663}],[-26,{"n":5,"e":3668}],[-25,{"n":5.5,"e":3683}],[-24,{"n":7,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":4,"e":3715}],[-21,{"n":5.5,"e":3723}],[-20,{"n":5.5,"e":3728}],[-19,{"n":7,"e":3741}],[-18,{"n":6,"e":3752}],[-17,{"n":3.5,"e":3761}],[-16,{"n":5.5,"e":3772}],[-15,{"n":6,"e":3781}],[-14,{"n":5.5,"e":3796}],[-13,{"n":6,"e":3802}],[-12,{"n":5,"e":3813}],[-11,{"n":5.5,"e":3821}],[-10,{"n":4.5,"e":3836}],[-9,{"n":6.5,"e":3842}],[-8,{"n":4.5,"e":3857}],[-7,{"n":6,"e":3863}],[7,{"n":7,"e":6142}],[6,{"n":5,"e":6152}],[5,{"n":4,"e":6160}],[3,{"n":5.5,"e":6184}],[1,{"n":5,"e":6204}]],"fo":[[6204,[{"t":"R"},{"t":"Y"}]]],"a":{"m":17,"a":22,"M":35,"n":40}}],[153,{"n":"Pedro Mendes","f":"","fp":"DC","r":10,"c":15,"s":{"s":30,"n":6,"a":5,"d":0.71,"Og":1,"Os":77,"On":16,"Oa":4.81,"Od":1.17,"pd":16},"p":[[2,{"n":4.5,"e":6189}],[-28,{"n":3,"e":3655}],[-19,{"n":5.5,"e":3741}],[-17,{"n":4,"e":3761}],[-15,{"n":3.5,"e":3781}],[-14,{"n":5.5,"e":3796}],[-12,{"n":3.5,"e":3813}],[-11,{"n":6,"e":3821}],[-10,{"n":4.5,"e":3836}],[-9,{"n":7.5,"e":3842,"g":1}],[-8,{"n":4,"e":3857}],[6,{"n":4,"e":6152}],[5,{"n":5,"e":6160}],[4,{"n":6,"e":6173}],[3,{"n":5,"e":6184}],[1,{"n":5.5,"e":6204}]],"a":{"m":11,"a":14,"M":24,"n":19}}],[197,{"n":"Congré","f":"Daniel","fp":"DC","r":16,"c":15,"s":{"g":2,"s":40.5,"n":7,"a":5.79,"d":1.22,"Sg":2,"Ss":40.5,"Sn":7,"Sa":5.79,"Sd":1.22,"Og":2,"Oao":1,"Os":138,"On":27,"Oa":5.11,"Od":1.11,"pd":27},"p":[[-28,{"n":3.5,"e":3655}],[-27,{"n":6.5,"e":3663}],[-26,{"n":5,"e":3668}],[-25,{"n":4.5,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":3,"e":3715,"a":1}],[-21,{"n":5,"e":3723}],[-20,{"n":5.5,"e":3728}],[-19,{"n":5.5,"e":3741}],[-18,{"n":4,"e":3752}],[-17,{"n":4.5,"e":3761}],[-15,{"n":4,"e":3781}],[-14,{"n":4.5,"e":3796}],[-13,{"n":7,"e":3802}],[-12,{"n":3.5,"e":3813}],[-11,{"n":5,"e":3821}],[-9,{"n":5,"e":3842,"s":1}],[-8,{"n":5,"e":3857}],[-7,{"n":5.5,"e":3863}],[7,{"n":6.5,"e":6142}],[6,{"n":5.5,"e":6152}],[5,{"n":5.5,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":8,"e":6184,"g":2}],[2,{"n":4,"e":6189}],[1,{"n":5.5,"e":6204}]],"fo":[[6173,[{"t":"Y"}]]],"a":{"m":12,"a":18,"M":36,"n":36}}],[212,{"n":"Ferri","f":"Jordan","fp":"MD","r":10,"c":15,"s":{"s":34,"n":7,"a":4.86,"d":0.56,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.56,"Os":80.5,"On":17,"Oa":4.74,"Od":0.59,"pm":17},"p":[[-28,{"n":4.5,"e":3655,"s":1}],[-27,{"n":5.5,"e":3663}],[-26,{"n":5,"e":3668,"s":1}],[-25,{"n":5,"e":3683}],[-24,{"n":5.5,"e":3693}],[-23,{"n":4.5,"e":3703}],[-22,{"n":3.5,"e":3715}],[-21,{"n":4,"e":3723}],[-20,{"n":4.5,"e":3728,"s":1}],[-10,{"n":4.5,"e":3836}],[7,{"n":5,"e":6142,"s":1}],[6,{"n":4.5,"e":6152}],[5,{"n":4,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":5.5,"e":6184}],[2,{"n":5,"e":6189}],[1,{"n":4.5,"e":6204}]],"fo":[[6204,[{"t":"Y"}]]]}],[243,{"n":"Laborde","f":"Gaetan","fp":"A","r":21,"c":15,"s":{"g":2,"s":41.5,"n":7,"a":5.93,"d":1.24,"Sg":2,"Ss":41.5,"Sn":7,"Sa":5.93,"Sd":1.24,"Og":8,"Os":152,"On":29,"Oa":5.24,"Od":1.5,"pa":29},"p":[[-28,{"n":3,"e":3655}],[-27,{"n":7.5,"e":3663,"g":1}],[-26,{"n":3.5,"e":3668}],[-25,{"n":3.5,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":4.5,"e":3715}],[-21,{"n":4,"e":3723}],[-20,{"n":7.5,"e":3728,"g":1}],[-19,{"n":8,"e":3741,"g":2}],[-18,{"n":3.5,"e":3752}],[-17,{"n":4,"e":3761}],[-16,{"n":4,"e":3772}],[-15,{"n":7,"e":3781,"g":1}],[-14,{"n":5,"e":3796}],[-13,{"n":6,"e":3802,"g":1}],[-12,{"n":3.5,"e":3813}],[-11,{"n":4,"e":3821}],[-10,{"n":4.5,"e":3836}],[-9,{"n":7,"e":3842}],[-8,{"n":5,"e":3857,"s":1}],[-7,{"n":4.5,"e":3863}],[7,{"n":5,"e":6142}],[6,{"n":4.5,"e":6152}],[5,{"n":6.5,"e":6160}],[4,{"n":7.5,"e":6173}],[3,{"n":7,"e":6184,"g":1}],[2,{"n":6.5,"e":6189,"g":1}],[1,{"n":4.5,"e":6204}]],"a":{"m":19,"a":32,"M":62,"n":64}}],[270,{"n":"Souquet","f":"Arnaud","fp":"DL","r":13,"c":15,"s":{"g":1,"s":28.5,"n":6,"a":4.75,"d":0.42,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":2,"Os":117.5,"On":24,"Oa":4.9,"Od":0.96,"pd":4,"pm":20},"p":[[-26,{"n":4.5,"e":3668}],[-25,{"n":5.5,"e":3683}],[-24,{"n":5,"e":3693,"s":1}],[-23,{"n":4.5,"e":3703}],[-22,{"n":3,"e":3715}],[-21,{"n":6,"e":3723}],[-20,{"n":6,"e":3728}],[-19,{"n":5.5,"e":3741}],[-18,{"n":4,"e":3752}],[-17,{"n":2.5,"e":3761}],[-16,{"n":5,"e":3772,"s":1}],[-15,{"n":5,"e":3781}],[-14,{"n":5,"e":3796}],[-13,{"n":5.5,"e":3802}],[-12,{"n":5,"e":3813}],[-11,{"n":6.5,"e":3821}],[-10,{"n":4,"e":3836}],[-7,{"n":6.5,"e":3863,"g":1}],[7,{"n":4.5,"e":6142}],[6,{"n":5,"e":6152}],[4,{"n":5,"e":6173,"g":1}],[3,{"n":5,"e":6184}],[2,{"n":4,"e":6189}],[1,{"n":5,"e":6204}]],"fo":[[6142,[{"t":"Y"}]],[6152,[{"t":"Y"}]],[6173,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":25,"n":19}}],[320,{"n":"Mollet","f":"Florent","fp":"MO","r":22,"c":15,"s":{"g":1,"s":28.5,"n":6,"a":4.75,"d":0.82,"Sg":1,"Ss":20,"Sn":4,"Sa":5,"Sd":0.71,"Og":6,"Os":144.5,"On":27,"Oa":5.35,"Od":1.23,"pm":12,"pa":15},"p":[[-28,{"n":3,"e":3655}],[-27,{"n":7,"e":3663}],[-26,{"n":5,"e":3668,"s":1}],[-25,{"n":4.5,"e":3683}],[-24,{"n":5.5,"e":3693}],[-23,{"n":5.5,"e":3703}],[-22,{"n":5,"e":3715}],[-21,{"n":7.5,"e":3723,"g":1}],[-20,{"n":5,"e":3728,"s":1}],[-19,{"n":8,"e":3741,"g":1}],[-18,{"n":5,"e":3752}],[-17,{"n":4.5,"e":3761,"s":1}],[-16,{"n":7,"e":3772,"g":1}],[-15,{"n":6,"e":3781,"g":1,"s":1}],[-14,{"n":5,"e":3796,"s":1}],[-12,{"n":4.5,"e":3813}],[-11,{"n":5.5,"e":3821}],[-10,{"n":5,"e":3836}],[-9,{"n":8,"e":3842,"g":1}],[-8,{"n":4.5,"e":3857,"s":1}],[-7,{"n":5,"e":3863}],[7,{"n":5,"e":6142}],[6,{"n":4.5,"e":6152,"s":1}],[5,{"n":4.5,"e":6160,"s":1}],[4,{"n":6,"e":6173,"g":1,"s":1}],[2,{"n":3.5,"e":6189}],[1,{"n":5,"e":6204,"s":1}]],"fo":[[6189,[{"t":"R"}]]],"a":{"m":23,"a":32,"M":48,"n":36}}],[440,{"n":"Dolly","f":"Keagan","fp":"MO","r":6,"c":15,"s":{"s":15,"n":3,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":20.5,"On":4,"Oa":5.13,"Od":0.25,"pm":3,"pa":1},"p":[[-8,{"n":5.5,"e":3857}],[7,{"n":5,"e":6142,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5,"e":6189,"s":1}]]}],[1242,{"n":"Bertaud","f":"Dimitry","fp":"G","r":7,"c":15,"s":{"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pg":2},"p":[[-25,{"n":4.5,"e":3683}],[-22,{"n":3,"e":3715}]]}],[1244,{"n":"Cozza","f":"Nicolas","fp":"DC","r":6,"c":15,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Ss":6,"Sn":1,"Sa":6,"Os":32.5,"On":6,"Oa":5.42,"Od":0.66,"pd":6},"p":[[-13,{"n":6,"e":3802}],[-10,{"n":4.5,"e":3836}],[-9,{"n":5,"e":3842}],[-7,{"n":6,"e":3863}],[7,{"n":6,"e":6142}],[4,{"n":5,"e":6173}]],"fo":[[6173,[{"t":"Y"}]]]}],[1532,{"n":"Junior Sambia","f":"","fp":"MD","r":7,"c":15,"s":{"s":33.5,"n":7,"a":4.79,"d":0.91,"Ss":33.5,"Sn":7,"Sa":4.79,"Sd":0.91,"Og":1,"Oao":1,"Os":110,"On":23,"Oa":4.78,"Od":0.74,"pd":1,"pm":22},"p":[[-28,{"n":4.5,"e":3655,"s":1}],[-27,{"n":5,"e":3663,"s":1}],[-26,{"n":4.5,"e":3668}],[-24,{"n":4.5,"e":3693}],[-23,{"n":5,"e":3703,"s":1}],[-22,{"n":5,"e":3715,"s":1}],[-21,{"n":5,"e":3723,"s":1}],[-20,{"n":5,"e":3728}],[-19,{"n":5.5,"e":3741,"s":1}],[-17,{"n":4.5,"e":3761,"s":1}],[-16,{"n":3,"e":3772,"a":1}],[-15,{"n":5.5,"e":3781,"s":1}],[-14,{"n":4.5,"e":3796,"s":1}],[-13,{"n":4,"e":3802,"s":1}],[-12,{"n":6,"e":3813,"g":1,"s":1}],[-9,{"n":5,"e":3842}],[7,{"n":5,"e":6142,"s":1}],[6,{"n":5,"e":6152,"s":1}],[5,{"n":3,"e":6160}],[4,{"n":6,"e":6173,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5,"e":6189,"s":1}],[1,{"n":4.5,"e":6204,"s":1}]]}],[2268,{"n":"Oyongo","f":"Ambroise","fp":"DL","r":9,"c":15,"s":{"s":30.5,"n":6,"a":5.08,"d":0.2,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.2,"Os":108,"On":22,"Oa":4.91,"Od":0.68,"pd":6,"pm":16},"p":[[-26,{"n":5,"e":3668}],[-23,{"n":5,"e":3703}],[-22,{"n":3.5,"e":3715}],[-21,{"n":5,"e":3723}],[-20,{"n":5,"e":3728}],[-19,{"n":5.5,"e":3741}],[-18,{"n":4.5,"e":3752}],[-17,{"n":3,"e":3761}],[-15,{"n":5,"e":3781}],[-14,{"n":5,"e":3796}],[-13,{"n":5,"e":3802}],[-12,{"n":4,"e":3813}],[-11,{"n":5,"e":3821}],[-10,{"n":5,"e":3836}],[-9,{"n":6,"e":3842}],[-7,{"n":6,"e":3863}],[7,{"n":5,"e":6142}],[6,{"n":5,"e":6152,"s":1}],[5,{"n":5,"e":6160,"s":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":5.5,"e":6189,"s":1}]]}],[2326,{"n":"Ammour","f":"Yannis","fp":"MO","r":1,"c":15}],[2613,{"n":"Skuletic","f":"Petar","fp":"A","r":6,"c":15,"s":{"s":5,"n":1,"a":5,"Os":17,"On":4,"Oa":4.25,"Od":0.87,"pa":4},"p":[[-18,{"n":4.5,"e":3752,"s":1}],[-10,{"n":4.5,"e":3836,"s":1}],[-8,{"n":3,"e":3857}],[2,{"n":5,"e":6189,"s":1}]]}],[2617,{"n":"Le Tallec","f":"Damien","fp":"MD","r":13,"c":15,"s":{"ao":1,"s":34,"n":7,"a":4.86,"d":1.25,"Sao":1,"Ss":34,"Sn":7,"Sa":4.86,"Sd":1.25,"Og":2,"Oao":1,"Os":140.5,"On":29,"Oa":4.84,"Od":1.05,"pd":9,"pm":20},"p":[[-28,{"n":3,"e":3655}],[-27,{"n":5.5,"e":3663}],[-26,{"n":5,"e":3668}],[-25,{"n":4,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3703}],[-22,{"n":3,"e":3715}],[-21,{"n":5,"e":3723}],[-20,{"n":5.5,"e":3728}],[-19,{"n":6.5,"e":3741}],[-18,{"n":4,"e":3752}],[-17,{"n":5,"e":3761}],[-16,{"n":4.5,"e":3772}],[-15,{"n":6,"e":3781,"g":1}],[-14,{"n":4.5,"e":3796}],[-13,{"n":6.5,"e":3802,"g":1}],[-12,{"n":3.5,"e":3813}],[-11,{"n":5,"e":3821}],[-10,{"n":3.5,"e":3836}],[-9,{"n":5,"e":3842}],[-8,{"n":5,"e":3857}],[-7,{"n":5.5,"e":3863}],[7,{"n":5,"e":6142,"s":1}],[6,{"n":4,"e":6152}],[5,{"n":4,"e":6160}],[4,{"n":6,"e":6173}],[3,{"n":6.5,"e":6184}],[2,{"n":3,"e":6189,"a":1}],[1,{"n":5.5,"e":6204}]],"a":{"m":16,"a":18,"M":21,"n":7}}],[2638,{"n":"Vidal","f":"Clement","fp":"DC","r":2,"c":15,"s":{"Os":4,"On":1,"Oa":4,"pd":1},"p":[[-16,{"n":4,"e":3772}]]}],[2733,{"n":"Savanier","f":"Téji","fp":"MD","r":27,"c":15,"s":{"g":3,"s":40,"n":7,"a":5.71,"d":1.7,"Sg":3,"Ss":40,"Sn":7,"Sa":5.71,"Sd":1.7,"Og":9,"Os":150.5,"On":26,"Oa":5.79,"Od":1.42,"pm":20,"pa":6},"p":[[-28,{"n":2.5,"e":3655}],[-27,{"n":8.5,"e":3663,"g":2}],[-26,{"n":5.5,"e":3668}],[-25,{"n":4,"e":3683}],[-24,{"n":6,"e":3693}],[-23,{"n":6,"e":3703,"g":1}],[-22,{"n":4.5,"e":3715}],[-21,{"n":6,"e":3723}],[-20,{"n":6.5,"e":3728}],[-19,{"n":7.5,"e":3741,"g":1}],[-18,{"n":5.5,"e":3752}],[-17,{"n":6,"e":3761}],[-16,{"n":6.5,"e":3772,"g":1}],[-15,{"n":7,"e":3781}],[-14,{"n":6.5,"e":3796}],[-13,{"n":7,"e":3802,"g":1}],[-12,{"n":5,"e":3813}],[-11,{"n":5,"e":3821}],[-10,{"n":5,"e":3836,"s":1}],[7,{"n":3,"e":6142}],[6,{"n":4.5,"e":6152}],[5,{"n":7,"e":6160,"g":1}],[4,{"n":6.5,"e":6173}],[3,{"n":7,"e":6184}],[2,{"n":4.5,"e":6189}],[1,{"n":7.5,"e":6204,"g":2}]],"fo":[[6142,[{"t":"R"}]],[6152,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":25,"a":36,"M":52,"n":66}}],[2936,{"n":"Carvalho","f":"Matis","fp":"G","r":1,"c":15,"s":{"Os":4,"On":1,"Oa":4,"pg":1},"p":[[-22,{"n":4,"e":3715,"s":1}]]}],[3126,{"n":"Ristic","f":"Mihailo","fp":"DL","r":9,"c":15,"s":{"s":31,"n":6,"a":5.17,"d":0.98,"Os":91,"On":18,"Oa":5.06,"Od":0.82,"pd":6,"pm":12},"p":[[-28,{"n":4,"e":3655}],[-27,{"n":7,"e":3663}],[-25,{"n":4.5,"e":3683}],[-24,{"n":5.5,"e":3693}],[-23,{"n":4.5,"e":3703,"s":1}],[-18,{"n":4.5,"e":3752,"s":1}],[-16,{"n":4.5,"e":3772}],[-15,{"n":5,"e":3781,"s":1}],[-13,{"n":5,"e":3802,"s":1}],[-9,{"n":5,"e":3842,"s":1}],[-8,{"n":5,"e":3857}],[-7,{"n":5.5,"e":3863,"s":1}],[6,{"n":4.5,"e":6152}],[5,{"n":4.5,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":5,"e":6184}],[2,{"n":4.5,"e":6189}],[1,{"n":7,"e":6204}]],"fo":[[6189,[{"t":"Y"}]]],"a":{"m":8,"a":12,"M":16,"n":9}}],[4517,{"n":"Mavididi","f":"Stephy","fp":"A","r":8,"c":15,"s":{"g":1,"s":29.5,"n":6,"a":4.92,"d":1.07,"Sg":1,"Ss":25,"Sn":5,"Sa":5,"Sd":1.17,"Og":6,"Os":134,"On":27,"Oa":4.96,"Od":1.07,"pm":9,"pa":18},"p":[[-28,{"n":4,"e":3649}],[-27,{"n":4,"e":3666}],[-26,{"n":5,"e":3669}],[-25,{"n":4,"e":3679,"s":1}],[-24,{"n":8,"e":3690,"g":2}],[-23,{"n":3.5,"e":3705}],[-22,{"n":7,"e":3711,"g":1}],[-21,{"n":5,"e":3723}],[-20,{"n":5.5,"e":3731}],[-19,{"n":4.5,"e":3738,"s":1}],[-18,{"n":4,"e":3748,"s":1}],[-17,{"n":4,"e":3762,"s":1}],[-16,{"n":6,"e":3772,"g":1}],[-15,{"n":4.5,"e":3778}],[-13,{"n":4.5,"e":3801,"s":1}],[-12,{"n":4.5,"e":3811,"s":1}],[-11,{"n":5.5,"e":3818}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840,"g":1}],[-8,{"n":4.5,"e":3856}],[-7,{"n":5,"e":3860,"s":1}],[7,{"n":7,"e":6142,"g":1,"s":1}],[6,{"n":4.5,"e":6152,"s":1}],[5,{"n":4,"e":6160,"s":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":4.5,"e":6184,"s":1}],[1,{"n":4.5,"e":6204,"s":1}]],"fo":[[6160,[{"t":"Y"}]]],"a":{"m":9,"a":14,"M":23,"n":18}}],[6160,{"n":"Chotard","f":"Joris","fp":"MD","r":8,"c":15,"s":{"s":29.5,"n":6,"a":4.92,"d":0.58,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Os":122.5,"On":25,"Oa":4.9,"Od":0.69,"pm":24,"pa":1},"p":[[-27,{"n":5,"e":3663,"s":1}],[-25,{"n":4.5,"e":3683}],[-24,{"n":5,"e":3693,"s":1}],[-22,{"n":3.5,"e":3715,"s":1}],[-21,{"n":5,"e":3723,"s":1}],[-20,{"n":5,"e":3728}],[-19,{"n":4.5,"e":3741,"s":1}],[-18,{"n":4.5,"e":3752}],[-17,{"n":4.5,"e":3761}],[-16,{"n":5.5,"e":3772}],[-15,{"n":6.5,"e":3781}],[-14,{"n":5.5,"e":3796}],[-13,{"n":6.5,"e":3802}],[-12,{"n":4.5,"e":3813,"s":1}],[-11,{"n":4.5,"e":3821,"s":1}],[-10,{"n":4,"e":3836}],[-9,{"n":5,"e":3842}],[-8,{"n":4.5,"e":3857}],[-7,{"n":5,"e":3863}],[7,{"n":6,"e":6142}],[6,{"n":4.5,"e":6152,"s":1}],[4,{"n":5,"e":6173,"s":1}],[3,{"n":5,"e":6184,"s":1}],[2,{"n":4.5,"e":6189}],[1,{"n":4.5,"e":6204,"s":1}]]}],[6431,{"n":"Yun Il-Lok","f":"","fp":"MO","r":2,"c":15,"s":{"Os":22.5,"On":5,"Oa":4.5,"Od":0.5,"pa":5},"p":[[-28,{"n":4,"e":3655,"s":1}],[-27,{"n":5,"e":3663,"s":1}],[-26,{"n":5,"e":3668}],[-25,{"n":4.5,"e":3683,"s":1}],[-23,{"n":4,"e":3703,"s":1}]]}],[6437,{"n":"Vargas","f":"Thibaut","fp":"DL","r":6,"c":15,"s":{"Os":14,"On":3,"Oa":4.67,"Od":1.26,"pm":3},"p":[[-28,{"n":3.5,"e":3655}],[-27,{"n":6,"e":3663}],[-24,{"n":4.5,"e":3693,"s":1}]]}],[6797,{"n":"Tamas","f":"Thibault","fp":"DL","r":1,"c":15}],[6798,{"n":"Benchama","f":"Samy","fp":"MD","r":2,"c":15,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[2,{"n":4.5,"e":6189,"s":1}]]}],[6868,{"n":"Omlin","f":"Jonas","fp":"G","r":16,"c":15,"s":{"s":40,"n":7,"a":5.71,"d":1.04,"Ss":40,"Sn":7,"Sa":5.71,"Sd":1.04,"Os":40,"On":7,"Oa":5.71,"Od":1.04,"pg":7},"p":[[7,{"n":7.5,"e":6142}],[6,{"n":4.5,"e":6152}],[5,{"n":5,"e":6160}],[4,{"n":5.5,"e":6173}],[3,{"n":5,"e":6184}],[2,{"n":6,"e":6189}],[1,{"n":6.5,"e":6204}]],"a":{"m":17,"a":20,"M":28,"n":26}}],[7144,{"n":"Ben Achour","f":"Adil","fp":"MO","r":1,"c":15}],[62,{"n":"Corchia","f":"Sébastien","fp":"DL","r":8,"c":8,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[-8,{"n":4.5,"e":4611}],[7,{"n":5,"e":6143}]],"a":{"m":9,"a":11,"M":15,"n":5}}],[73,{"n":"Pallois","f":"Nicolas","fp":"DC","r":11,"c":8,"s":{"ao":1,"s":35.5,"n":7,"a":5.07,"d":0.61,"Ss":5,"Sn":1,"Sa":5,"Oao":1,"Os":112,"On":22,"Oa":5.09,"Od":0.93,"pd":22},"p":[[6,{"n":4.5,"e":6153}],[4,{"n":5.5,"e":6174}],[-16,{"n":5.5,"e":3775}],[-28,{"n":4.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":5.5,"e":3684}],[-19,{"n":3.5,"e":3742}],[-18,{"n":6,"e":3755}],[-17,{"n":5,"e":3762}],[-15,{"n":6,"e":3782}],[-13,{"n":4,"e":3803}],[-12,{"n":3,"e":3810}],[-11,{"n":5,"e":3822}],[-9,{"n":6.5,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":6,"e":3864}],[7,{"n":5,"e":6143}],[5,{"n":4.5,"e":6161,"a":1}],[3,{"n":4.5,"e":6183}],[2,{"n":6,"e":6194}],[1,{"n":5.5,"e":6199}]],"fo":[[6143,[{"t":"Y"}]],[6153,[{"t":"Y"}]],[6174,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":21,"n":26}}],[82,{"n":"Lafont","f":"Alban","fp":"G","r":16,"c":8,"s":{"s":40,"n":7,"a":5.71,"d":1.35,"Ss":40,"Sn":7,"Sa":5.71,"Sd":1.35,"Os":159,"On":28,"Oa":5.68,"Od":1.13,"pg":28},"p":[[-22,{"n":6.5,"e":3716}],[-28,{"n":4,"e":3648}],[-27,{"n":6,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":6,"e":3684}],[-24,{"n":3.5,"e":3690}],[-21,{"n":5,"e":3724}],[-20,{"n":6,"e":3736}],[-19,{"n":6,"e":3742}],[-18,{"n":7,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":6,"e":3775}],[-15,{"n":5.5,"e":3782}],[-14,{"n":5,"e":3791}],[-13,{"n":4,"e":3803}],[-12,{"n":6,"e":3810}],[-11,{"n":5,"e":3822}],[-10,{"n":4.5,"e":3832}],[-9,{"n":6,"e":3843}],[-8,{"n":8,"e":3850}],[-7,{"n":7,"e":3864}],[7,{"n":6,"e":6143}],[6,{"n":6.5,"e":6153}],[5,{"n":4.5,"e":6161}],[4,{"n":4,"e":6174}],[3,{"n":5,"e":6183}],[2,{"n":8,"e":6194}],[1,{"n":6,"e":6199}]],"fo":[[6194,[{"t":"Y"}]]],"a":{"m":17,"a":25,"M":41,"n":34}}],[112,{"n":"Abeid","f":"Mehdi","fp":"MD","r":10,"c":8,"s":{"s":26.5,"n":5,"a":5.3,"d":0.45,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.48,"Og":1,"Os":130,"On":25,"Oa":5.2,"Od":0.74,"pm":25},"p":[[-23,{"n":6,"e":3700}],[-28,{"n":4,"e":3648}],[-27,{"n":4.5,"e":3664}],[-26,{"n":5,"e":3671}],[-25,{"n":5,"e":3684}],[-24,{"n":4.5,"e":3690}],[-22,{"n":5,"e":3716,"s":1}],[-21,{"n":6,"e":3724}],[-20,{"n":6.5,"e":3736,"g":1}],[-19,{"n":4.5,"e":3742}],[-18,{"n":5.5,"e":3755,"s":1}],[-17,{"n":5,"e":3762,"s":1}],[-16,{"n":5,"e":3775}],[-15,{"n":4,"e":3782,"s":1}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":7,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":5,"e":3864,"s":1}],[7,{"n":5,"e":6143}],[6,{"n":6,"e":6153}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5.5,"e":6174}],[2,{"n":5,"e":6194,"s":1}]],"fo":[[6143,[{"t":"Y"}]]]}],[200,{"n":"Coco","f":"Marcus","fp":"MO","r":8,"c":8,"s":{"s":31.5,"n":6,"a":5.25,"d":0.69,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.25,"Os":31.5,"On":6,"Oa":5.25,"Od":0.69,"pm":4,"pa":2},"p":[[7,{"n":5.5,"e":6143}],[6,{"n":5,"e":6153,"s":1}],[5,{"n":5,"e":6161}],[4,{"n":5,"e":6174}],[2,{"n":6.5,"e":6194}],[1,{"n":4.5,"e":6199,"s":1}]],"a":{"m":8,"a":11,"M":16,"n":6}}],[231,{"n":"Petric","f":"Denis","fp":"G","r":7,"c":8,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-23,{"n":5,"e":3700}]],"a":{"m":8,"a":8,"M":9,"n":5}}],[307,{"n":"Augustin","f":"Jean-Kévin","fp":"A","r":9,"c":8,"s":{"Os":36.5,"On":8,"Oa":4.56,"Od":0.73,"pa":8},"p":[[-19,{"n":5,"e":3740,"s":1}],[-17,{"n":5,"e":3760,"s":1}],[-16,{"n":6,"e":3777}],[-15,{"n":4,"e":3780,"s":1}],[-14,{"n":4,"e":3790,"s":1}],[-13,{"n":4.5,"e":3801,"s":1}],[-12,{"n":4,"e":3816,"s":1}],[-7,{"n":4,"e":3862}]],"a":{"m":11,"a":17,"M":28,"n":12}}],[398,{"n":"Blas","f":"Ludovic","fp":"MO","r":19,"c":8,"s":{"g":2,"s":38.5,"n":7,"a":5.5,"d":1,"Sg":2,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":1,"Og":7,"Os":159.5,"On":29,"Oa":5.5,"Od":0.96,"pm":24,"pa":5},"p":[[-28,{"n":5.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":5.5,"e":3671}],[-25,{"n":5.5,"e":3684,"s":1}],[-24,{"n":5,"e":3690}],[-23,{"n":6,"e":3700}],[-22,{"n":5.5,"e":3716}],[-21,{"n":4.5,"e":3724}],[-20,{"n":7,"e":3736,"g":1}],[-19,{"n":7,"e":3742,"g":1}],[-18,{"n":5,"e":3755}],[-17,{"n":7,"e":3762,"g":1}],[-16,{"n":5,"e":3775}],[-15,{"n":6.5,"e":3782,"g":1}],[-14,{"n":5,"e":3791}],[-13,{"n":7.5,"e":3803,"g":1}],[-12,{"n":4,"e":3810}],[-11,{"n":4.5,"e":3822}],[-10,{"n":5.5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":5,"e":3850,"s":1}],[-7,{"n":5,"e":3864}],[7,{"n":7.5,"e":6143,"g":1}],[6,{"n":5,"e":6153}],[5,{"n":4.5,"e":6161}],[4,{"n":5,"e":6174}],[3,{"n":6,"e":6183,"g":1}],[2,{"n":5.5,"e":6194}],[1,{"n":5,"e":6199,"s":1}]],"a":{"m":20,"a":25,"M":51,"n":39}}],[476,{"n":"Touré","f":"Abdoulaye","fp":"MD","r":9,"c":8,"s":{"s":18.5,"n":4,"a":4.63,"d":0.48,"Ss":10,"Sn":2,"Sa":5,"Og":2,"Os":131.5,"On":25,"Oa":5.26,"Od":0.88,"pm":25},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":4.5,"e":3664,"s":1}],[-26,{"n":5.5,"e":3671,"s":1}],[-25,{"n":5,"e":3684}],[-24,{"n":5,"e":3690,"s":1}],[-23,{"n":4.5,"e":3700}],[-22,{"n":5,"e":3716}],[-21,{"n":5.5,"e":3724}],[-20,{"n":6.5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":5.5,"e":3755}],[-17,{"n":7,"e":3762}],[-15,{"n":7,"e":3782,"g":1}],[-14,{"n":5.5,"e":3791}],[-13,{"n":4.5,"e":3803}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":7,"e":3864,"g":1}],[7,{"n":5,"e":6143,"s":1}],[6,{"n":5,"e":6153,"s":1}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":4,"e":6183}]],"fo":[[6183,[{"t":"Y"}]]],"a":{"m":17,"a":22,"M":34,"n":5}}],[506,{"n":"Walongwa","f":"Anthony","fp":"DC","r":2,"c":8}],[941,{"n":"Fabio","f":"","fp":"DL","r":10,"c":8,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Ss":18,"Sn":4,"Sa":4.5,"Sd":0.41,"Os":49.5,"On":10,"Oa":4.95,"Od":0.55,"pd":10},"p":[[-11,{"n":5,"e":3822}],[-9,{"n":5.5,"e":3843}],[-8,{"n":5,"e":3850}],[-7,{"n":6,"e":3864}],[7,{"n":5,"e":6143}],[6,{"n":4.5,"e":6153}],[5,{"n":4,"e":6161}],[4,{"n":4.5,"e":6174}],[2,{"n":5,"e":6194}],[1,{"n":5,"e":6199}]],"fo":[[6143,[{"t":"Y"}]],[6194,[{"t":"Y"},{"t":"O"}]]],"a":{"m":10,"a":13,"M":16,"n":5}}],[1171,{"n":"Kalifa Coulibaly","f":"","fp":"A","r":6,"c":8,"s":{"s":3.5,"n":1,"a":3.5,"Og":1,"Os":69,"On":16,"Oa":4.31,"Od":0.63,"pa":16},"p":[[-28,{"n":4.5,"e":3648,"s":1}],[-27,{"n":4,"e":3664,"s":1}],[-25,{"n":3.5,"e":3684}],[-19,{"n":3.5,"e":3742}],[-18,{"n":4.5,"e":3755}],[-17,{"n":4,"e":3762}],[-15,{"n":4.5,"e":3782}],[-14,{"n":6,"e":3791,"g":1}],[-13,{"n":4,"e":3803}],[-12,{"n":5,"e":3810,"s":1}],[-11,{"n":4,"e":3822}],[-10,{"n":4.5,"e":3832}],[-9,{"n":4.5,"e":3843}],[-8,{"n":4.5,"e":3850}],[-7,{"n":4.5,"e":3864}],[1,{"n":3.5,"e":6199}]],"a":{"m":15,"a":20,"M":32,"n":8}}],[1174,{"n":"Andrei Girotto","f":"","fp":"DC","r":12,"c":8,"s":{"g":1,"s":30,"n":6,"a":5,"d":0.95,"Og":2,"Os":129,"On":25,"Oa":5.16,"Od":1.04,"pd":25},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":5,"e":3664}],[-26,{"n":5,"e":3671}],[-25,{"n":5,"e":3684}],[-24,{"n":4.5,"e":3690,"g":1}],[-23,{"n":5.5,"e":3700}],[-21,{"n":4,"e":3724}],[-20,{"n":7,"e":3736}],[-18,{"n":5.5,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":6,"e":3775}],[-15,{"n":6.5,"e":3782}],[-13,{"n":3,"e":3803}],[-12,{"n":3.5,"e":3810}],[-11,{"n":4.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":7,"e":3850}],[-7,{"n":6,"e":3864}],[6,{"n":4,"e":6153}],[5,{"n":5,"e":6161}],[4,{"n":4,"e":6174}],[3,{"n":5,"e":6183}],[2,{"n":6.5,"e":6194,"g":1}],[1,{"n":5.5,"e":6199}]],"fo":[[6153,[{"t":"R"}]],[6161,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":26,"n":49}}],[1444,{"n":"Charles Traoré","f":"","fp":"DL","r":6,"c":8,"s":{"s":10,"n":2,"a":5,"d":1.41,"Os":82.5,"On":17,"Oa":4.85,"Od":0.91,"pd":17},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":5.5,"e":3684}],[-23,{"n":5,"e":3700}],[-22,{"n":3.5,"e":3716}],[-21,{"n":5,"e":3724}],[-20,{"n":5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":5,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":6,"e":3782}],[-14,{"n":5,"e":3791}],[-13,{"n":3,"e":3803}],[3,{"n":4,"e":6183}],[1,{"n":6,"e":6199}]],"fo":[[6199,[{"t":"Y"}]]]}],[1552,{"n":"Kolo Muani","f":"Randal","fp":"A","r":10,"c":8,"s":{"g":1,"s":33,"n":6,"a":5.5,"d":1,"Sg":1,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1,"Og":1,"Os":33,"On":6,"Oa":5.5,"Od":1,"pa":6},"p":[[7,{"n":7,"e":6143,"g":1}],[6,{"n":6,"e":6153}],[5,{"n":5,"e":6161}],[4,{"n":4.5,"e":6174}],[3,{"n":4.5,"e":6183}],[2,{"n":6,"e":6194}]],"a":{"m":8,"a":14,"M":25,"n":10}}],[2669,{"n":"Dabo","f":"Abdoulaye","fp":"MO","r":1,"c":8}],[2686,{"n":"Mendy","f":"Batista","fp":"DC","r":4,"c":8,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[3,{"n":4.5,"e":6183,"s":1}]],"a":{"m":4,"a":4,"M":4,"n":5}}],[2696,{"n":"Basila","f":"Thomas","fp":"DC","r":4,"c":8,"s":{"Os":34,"On":7,"Oa":4.86,"Od":0.38,"pd":7},"p":[[-21,{"n":5,"e":3724,"s":1}],[-20,{"n":5.5,"e":3736,"s":1}],[-14,{"n":4.5,"e":3791}],[-13,{"n":4.5,"e":3803}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5,"e":3822,"s":1}],[-10,{"n":5,"e":3832,"s":1}]]}],[2744,{"n":"Simon","f":"Moses","fp":"MO","r":17,"c":8,"s":{"g":1,"s":37.5,"n":7,"a":5.36,"d":1.07,"Sg":1,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":1.07,"Og":5,"Os":154.5,"On":29,"Oa":5.33,"Od":0.97,"pm":22,"pa":7},"p":[[-28,{"n":4,"e":3648}],[-27,{"n":4.5,"e":3664}],[-26,{"n":5,"e":3671}],[-25,{"n":5.5,"e":3684}],[-24,{"n":6,"e":3690,"g":1}],[-23,{"n":6,"e":3700,"g":1}],[-22,{"n":6,"e":3716,"g":1}],[-21,{"n":4,"e":3724}],[-20,{"n":6,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":6,"e":3755}],[-17,{"n":5,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":7,"e":3782}],[-14,{"n":6,"e":3791}],[-13,{"n":4,"e":3803}],[-12,{"n":4.5,"e":3810}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832}],[-9,{"n":7.5,"e":3843,"g":1}],[-8,{"n":5,"e":3850}],[-7,{"n":5.5,"e":3864}],[7,{"n":6,"e":6143,"s":1}],[6,{"n":5.5,"e":6153}],[5,{"n":4,"e":6161}],[4,{"n":7,"e":6174,"g":1}],[3,{"n":4,"e":6183}],[2,{"n":5.5,"e":6194}],[1,{"n":5.5,"e":6199}]],"a":{"m":18,"a":24,"M":40,"n":52}}],[2834,{"n":"Limbombe","f":"Anthony","fp":"MO","r":6,"c":8,"s":{"Og":1,"Os":21.5,"On":4,"Oa":5.38,"Od":1.11,"pm":4},"p":[[-28,{"n":5,"e":3648,"s":1}],[-27,{"n":4.5,"e":3664}],[-26,{"n":7,"e":3671,"g":1}],[-25,{"n":5,"e":3684,"s":1}]]}],[2938,{"n":"Louza","f":"Imran","fp":"MO","r":18,"c":8,"s":{"g":2,"s":28.5,"n":5,"a":5.7,"d":0.45,"Sg":1,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.58,"Og":4,"Os":128,"On":24,"Oa":5.33,"Od":0.79,"pm":23,"pa":1},"p":[[-28,{"n":4,"e":3648}],[-27,{"n":4.5,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":6,"e":3684}],[-24,{"n":5.5,"e":3690}],[-23,{"n":5.5,"e":3700}],[-22,{"n":4.5,"e":3716}],[-21,{"n":5.5,"e":3724}],[-20,{"n":5.5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":7,"e":3755,"g":1}],[-17,{"n":4.5,"e":3762}],[-16,{"n":4.5,"e":3775}],[-15,{"n":6,"e":3782}],[-14,{"n":4.5,"e":3791}],[-13,{"n":6.5,"e":3803,"g":1}],[-12,{"n":5.5,"e":3810}],[-9,{"n":5,"e":3843,"s":1}],[-8,{"n":5,"e":3850,"s":1}],[7,{"n":6,"e":6143}],[6,{"n":6,"e":6153,"g":1}],[5,{"n":5,"e":6161}],[2,{"n":6,"e":6194,"g":1}],[1,{"n":5.5,"e":6199}]],"fo":[[6194,[{"t":"R"}]]],"a":{"m":17,"a":22,"M":36,"n":35}}],[2993,{"n":"Bamba","f":"Abdoul Kader","fp":"MO","r":9,"c":8,"s":{"g":1,"s":35,"n":7,"a":5,"d":0.5,"Sg":1,"Ss":35,"Sn":7,"Sa":5,"Sd":0.5,"Og":2,"Os":153,"On":28,"Oa":5.46,"Od":0.79,"pm":23,"pa":5},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":5.5,"e":3664}],[-26,{"n":7.5,"e":3671,"g":1}],[-25,{"n":5,"e":3684}],[-24,{"n":6.5,"e":3690}],[-23,{"n":7,"e":3700}],[-22,{"n":5,"e":3716}],[-21,{"n":4.5,"e":3724,"s":1}],[-20,{"n":6,"e":3736}],[-18,{"n":6.5,"e":3755}],[-17,{"n":6,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":6.5,"e":3782}],[-14,{"n":5,"e":3791,"s":1}],[-13,{"n":5,"e":3803,"s":1}],[-12,{"n":5,"e":3810,"s":1}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5,"e":3832,"s":1}],[-9,{"n":6,"e":3843,"s":1}],[-8,{"n":5.5,"e":3850,"s":1}],[-7,{"n":5.5,"e":3864}],[7,{"n":6,"e":6143,"g":1,"s":1}],[6,{"n":5,"e":6153,"s":1}],[5,{"n":5,"e":6161,"s":1}],[4,{"n":5,"e":6174,"s":1}],[3,{"n":4.5,"e":6183}],[2,{"n":4.5,"e":6194,"s":1}],[1,{"n":5,"e":6199}]],"fo":[[6174,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":35,"n":19}}],[3516,{"n":"Homawoo","f":"Josué","fp":"DC","r":1,"c":8,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-24,{"n":5,"e":3690,"s":1}]]}],[3802,{"n":"Castelletto","f":"Jean-Charles","fp":"DC","r":7,"c":8,"s":{"s":16.5,"n":3,"a":5.5,"d":0.5,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":1,"Os":100,"On":20,"Oa":5,"Od":1.03,"pd":20},"p":[[-23,{"n":4.5,"e":3698}],[-22,{"n":3.5,"e":3711}],[-21,{"n":5.5,"e":3718}],[-20,{"n":5.5,"e":3737}],[-19,{"n":3.5,"e":3741}],[-18,{"n":4.5,"e":3751}],[-17,{"n":5,"e":3758}],[-16,{"n":6,"e":3771}],[-15,{"n":4,"e":3779}],[-14,{"n":4.5,"e":3791}],[-13,{"n":4,"e":3798}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5.5,"e":3818}],[-10,{"n":6.5,"e":3828}],[-9,{"n":7.5,"e":3839,"g":1}],[-8,{"n":4,"e":3853}],[-7,{"n":5,"e":3859}],[7,{"n":6,"e":6143}],[6,{"n":5.5,"e":6153,"s":1}],[2,{"n":5,"e":6194,"s":1}]],"a":{"m":9,"a":11,"M":12,"n":5}}],[3812,{"n":"Appiah","f":"Dennis","fp":"DL","r":10,"c":8,"s":{"s":28.5,"n":6,"a":4.75,"d":0.88,"Os":115.5,"On":24,"Oa":4.81,"Od":0.67,"pd":24},"p":[[-28,{"n":4.5,"e":3648}],[-27,{"n":4,"e":3664}],[-26,{"n":6,"e":3671}],[-25,{"n":5,"e":3684}],[-22,{"n":4,"e":3716}],[-21,{"n":4.5,"e":3724}],[-20,{"n":5,"e":3736}],[-19,{"n":4,"e":3742}],[-18,{"n":5,"e":3755}],[-17,{"n":4.5,"e":3762}],[-16,{"n":5,"e":3775}],[-15,{"n":4.5,"e":3782}],[-14,{"n":5,"e":3791}],[-11,{"n":4.5,"e":3822}],[-10,{"n":4.5,"e":3832}],[-9,{"n":5.5,"e":3843}],[-8,{"n":6,"e":3850}],[-7,{"n":5.5,"e":3864}],[6,{"n":4,"e":6153}],[5,{"n":3.5,"e":6161}],[4,{"n":5,"e":6174}],[3,{"n":5,"e":6183}],[2,{"n":6,"e":6194}],[1,{"n":5,"e":6199,"s":1}]],"fo":[[6161,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":16,"n":6}}],[6009,{"n":"Ndilu","f":"Bridge","fp":"A","r":4,"c":8,"s":{"s":8,"n":2,"a":4,"Os":8,"On":2,"Oa":4,"pa":2},"p":[[3,{"n":4,"e":6183,"s":1}],[1,{"n":4,"e":6199,"s":1}]],"fo":[[6199,[{"t":"Y"}]]]}],[6124,{"n":"Chirivella","f":"Pedro","fp":"MD","r":10,"c":8,"s":{"s":33,"n":7,"a":4.71,"d":0.49,"Ss":33,"Sn":7,"Sa":4.71,"Sd":0.49,"Os":33,"On":7,"Oa":4.71,"Od":0.49,"pm":7},"p":[[7,{"n":4.5,"e":6143}],[6,{"n":5,"e":6153}],[5,{"n":4.5,"e":6161}],[4,{"n":5,"e":6174}],[3,{"n":4,"e":6183}],[2,{"n":5.5,"e":6194}],[1,{"n":4.5,"e":6199}]],"fo":[[6199,[{"t":"Y"}]]]}],[6153,{"n":"Moustache","f":"Wesley","fp":"DL","r":1,"c":8,"s":{"Os":3,"On":1,"Oa":3,"pd":1},"p":[[-24,{"n":3,"e":3690}]]}],[6262,{"n":"Pereira De Sa","f":"Roli","fp":"MO","r":1,"c":8,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-16,{"n":5,"e":3775,"s":1}]]}],[6403,{"n":"Emond","f":"Renaud","fp":"A","r":8,"c":8,"s":{"g":1,"s":24.5,"n":5,"a":4.9,"d":0.65,"Og":1,"Os":50.5,"On":11,"Oa":4.59,"Od":0.58,"pa":11},"p":[[-28,{"n":4.5,"e":3648,"s":1}],[-24,{"n":4.5,"e":3690}],[-23,{"n":4,"e":3700,"s":1}],[-22,{"n":4,"e":3716}],[-21,{"n":4,"e":3724}],[-20,{"n":5,"e":3736,"s":1}],[6,{"n":4.5,"e":6153,"s":1}],[5,{"n":4.5,"e":6161,"s":1}],[4,{"n":6,"e":6174,"g":1,"s":1}],[3,{"n":4.5,"e":6183,"s":1}],[2,{"n":5,"e":6194,"s":1}]]}],[6861,{"n":"Jan","f":"Charly","fp":"G","r":1,"c":8}],[70,{"n":"Dante","f":"","fp":"DC","r":20,"c":19,"s":{"g":2,"s":37.5,"n":7,"a":5.36,"d":0.85,"Sg":1,"Ss":18,"Sn":3,"Sa":6,"Sd":0.87,"Og":2,"Oao":1,"Os":131,"On":25,"Oa":5.24,"Od":0.99,"pd":25},"p":[[7,{"n":5.5,"e":6146}],[4,{"n":4.5,"e":6175}],[2,{"n":5.5,"e":6196}],[-28,{"n":5.5,"e":3653}],[-27,{"n":6,"e":3659}],[-26,{"n":4,"e":3673,"a":1}],[-24,{"n":3.5,"e":3694}],[-23,{"n":5.5,"e":3701}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3725}],[-20,{"n":6,"e":3729}],[-19,{"n":6.5,"e":3743}],[-18,{"n":4,"e":3751}],[-17,{"n":5.5,"e":3763}],[-15,{"n":6,"e":3783}],[-14,{"n":4.5,"e":3793}],[-13,{"n":5,"e":3804}],[-12,{"n":7,"e":3814}],[-11,{"n":5.5,"e":3827}],[-10,{"n":3,"e":3834}],[-9,{"n":6,"e":3843}],[6,{"n":7,"e":6153,"g":1}],[5,{"n":5.5,"e":6159}],[3,{"n":5,"e":6184,"g":1}],[1,{"n":4.5,"e":6205}]],"fo":[[6196,[{"t":"Y"}]],[6205,[{"t":"Y"}]]],"a":{"m":16,"a":21,"M":30,"n":30}}],[71,{"n":"Lees-Melou","f":"Pierre","fp":"MO","r":23,"c":19,"s":{"g":1,"s":41,"n":7,"a":5.86,"d":0.99,"Sg":1,"Ss":41,"Sn":7,"Sa":5.86,"Sd":0.99,"Og":6,"Os":162.5,"On":28,"Oa":5.8,"Od":1.21,"pm":27,"pa":1},"p":[[-28,{"n":5,"e":3653}],[-27,{"n":5.5,"e":3659}],[-26,{"n":5.5,"e":3673}],[-25,{"n":7,"e":3687,"g":1}],[-24,{"n":5.5,"e":3694}],[-23,{"n":7,"e":3701,"g":1}],[-22,{"n":6,"e":3713}],[-21,{"n":7,"e":3725}],[-20,{"n":5,"e":3729}],[-19,{"n":8,"e":3743,"g":1}],[-18,{"n":5.5,"e":3751}],[-17,{"n":7,"e":3763,"g":1}],[-16,{"n":3.5,"e":3776}],[-15,{"n":7.5,"e":3783}],[-14,{"n":4.5,"e":3793}],[-13,{"n":7,"e":3804,"g":1}],[-12,{"n":7,"e":3814}],[-10,{"n":3.5,"e":3834}],[-9,{"n":4.5,"e":3843}],[-8,{"n":5.5,"e":3854}],[-7,{"n":4.5,"e":3862,"s":1}],[7,{"n":7.5,"e":6146,"g":1}],[6,{"n":6,"e":6153}],[5,{"n":5.5,"e":6159}],[4,{"n":4.5,"e":6175}],[3,{"n":5,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":6.5,"e":6205}]],"fo":[[6196,[{"t":"Y"}]]],"a":{"m":24,"a":35,"M":59,"n":57}}],[129,{"n":"Cardinale","f":"Yoan","fp":"G","r":6,"c":19,"a":{"m":2,"a":6,"M":9,"n":9}}],[239,{"n":"Benítez","f":"Walter","fp":"G","r":27,"c":19,"s":{"s":40.5,"n":7,"a":5.79,"d":1.25,"Ss":40.5,"Sn":7,"Sa":5.79,"Sd":1.25,"Os":165,"On":29,"Oa":5.69,"Od":1.1,"pg":29},"p":[[-28,{"n":6,"e":3653}],[-27,{"n":4,"e":3659}],[-26,{"n":4.5,"e":3673}],[-25,{"n":8,"e":3687}],[-24,{"n":4,"e":3694}],[-23,{"n":6,"e":3701}],[-22,{"n":7,"e":3713}],[-21,{"n":5.5,"e":3725}],[-20,{"n":7,"e":3729}],[-19,{"n":5.5,"e":3743}],[-18,{"n":6.5,"e":3751}],[-17,{"n":5.5,"e":3763}],[-16,{"n":4,"e":3776}],[-15,{"n":6,"e":3783}],[-14,{"n":5,"e":3793}],[-13,{"n":6,"e":3804}],[-12,{"n":6.5,"e":3814}],[-11,{"n":6,"e":3827}],[-10,{"n":5.5,"e":3834}],[-9,{"n":6,"e":3843}],[-8,{"n":6,"e":3854}],[-7,{"n":4,"e":3862}],[7,{"n":4,"e":6146}],[6,{"n":5.5,"e":6153}],[5,{"n":7.5,"e":6159}],[4,{"n":4.5,"e":6175}],[3,{"n":7,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":6,"e":6205}]],"fo":[[6146,[{"t":"Y"}]]],"a":{"m":25,"a":33,"M":40,"n":36}}],[284,{"n":"Rony Lopes","f":"","fp":"MO","r":12,"c":19,"s":{"s":28,"n":6,"a":4.67,"d":0.88,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.88,"Os":45.5,"On":10,"Oa":4.55,"Od":0.69,"pm":1,"pa":9},"p":[[-31,{"n":4,"e":4387}],[-26,{"n":4.5,"e":4436}],[-20,{"n":4.5,"e":4496,"s":1}],[-32,{"n":4.5,"e":4376,"s":1}],[7,{"n":5.5,"e":6146}],[6,{"n":5,"e":6153}],[5,{"n":5,"e":6159}],[4,{"n":3,"e":6175}],[3,{"n":4.5,"e":6184}],[2,{"n":5,"e":6196,"s":1}]],"a":{"m":14,"a":21,"M":37,"n":34}}],[583,{"n":"Claude Maurice","f":"Alexis","fp":"MO","r":8,"c":19,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Og":1,"Os":118.5,"On":23,"Oa":5.15,"Od":0.76,"pm":9,"pa":14},"p":[[-28,{"n":6,"e":3653}],[-27,{"n":6,"e":3659}],[-26,{"n":6,"e":3673}],[-25,{"n":5.5,"e":3687}],[-24,{"n":6,"e":3694,"g":1}],[-23,{"n":5,"e":3701}],[-22,{"n":6,"e":3713}],[-21,{"n":4,"e":3725}],[-20,{"n":5,"e":3729}],[-19,{"n":6,"e":3743}],[-18,{"n":5.5,"e":3751}],[-17,{"n":5.5,"e":3763}],[-16,{"n":4,"e":3776}],[-15,{"n":5,"e":3783,"s":1}],[-12,{"n":5.5,"e":3814}],[-11,{"n":6,"e":3827}],[-10,{"n":4,"e":3834}],[-9,{"n":4.5,"e":3843}],[-8,{"n":4,"e":3854}],[-7,{"n":5,"e":3862}],[5,{"n":5,"e":6159,"s":1}],[3,{"n":4,"e":6184,"s":1}],[1,{"n":5,"e":6205}]],"a":{"m":13,"a":17,"M":25,"n":7}}],[833,{"n":"Schneiderlin","f":"Morgan","fp":"MD","r":14,"c":19,"s":{"s":34,"n":6,"a":5.67,"d":0.82,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":87.5,"On":17,"Oa":5.15,"Od":0.82,"pm":17},"p":[[-7,{"n":4.5,"e":4246}],[-27,{"n":3.5,"e":4038}],[-26,{"n":6,"e":4052}],[-25,{"n":5,"e":4066,"s":1}],[-24,{"n":5.5,"e":4070}],[-16,{"n":5.5,"e":4151}],[-15,{"n":5,"e":4167,"s":1}],[-14,{"n":5,"e":4170,"s":1}],[-13,{"n":4.5,"e":4183}],[-12,{"n":5,"e":4193}],[-8,{"n":4,"e":4229}],[7,{"n":5.5,"e":6146}],[5,{"n":6,"e":6159}],[4,{"n":5,"e":6175}],[3,{"n":4.5,"e":6184}],[2,{"n":6.5,"e":6196}],[1,{"n":6.5,"e":6205}]],"fo":[[6175,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":30,"n":17}}],[1069,{"n":"Reine-Adélaïde","f":"Jeff","fp":"MO","r":10,"c":19,"s":{"s":5.5,"n":1,"a":5.5,"Og":2,"Os":67.5,"On":13,"Oa":5.19,"Od":0.8,"pm":13},"p":[[-18,{"n":5.5,"e":3753}],[-17,{"n":5,"e":3764,"s":1}],[-16,{"n":5,"e":3773}],[-15,{"n":6.5,"e":3787,"g":1}],[-14,{"n":6.5,"e":3793,"g":1}],[-13,{"n":4.5,"e":3800}],[-12,{"n":6,"e":3817}],[-11,{"n":5,"e":3820}],[-10,{"n":5,"e":3830,"s":1}],[-8,{"n":4,"e":3850}],[-7,{"n":5,"e":3859,"s":1}],[-6,{"n":4,"e":3870}],[2,{"n":5.5,"e":6188,"s":1}]],"a":{"m":11,"a":15,"M":33,"n":38}}],[1210,{"n":"Gouiri","f":"Amine","fp":"A","r":20,"c":19,"s":{"g":3,"s":45,"n":7,"a":6.43,"d":0.84,"Sg":3,"Ss":45,"Sn":7,"Sa":6.43,"Sd":0.84,"Og":3,"Os":49.5,"On":8,"Oa":6.19,"Od":1.03,"pm":2,"pa":6},"p":[[-26,{"n":4.5,"e":3672,"s":1}],[7,{"n":6.5,"e":6146,"g":1}],[6,{"n":7,"e":6153}],[5,{"n":7,"e":6159}],[4,{"n":5,"e":6175}],[3,{"n":6,"e":6184,"s":1}],[2,{"n":6,"e":6196}],[1,{"n":7.5,"e":6205,"g":2}]],"fo":[[6159,[{"t":"Y"}]]],"a":{"m":8,"a":30,"M":121,"n":54}}],[1229,{"n":"Maolida","f":"Myziane","fp":"A","r":8,"c":19,"s":{"g":1,"s":20,"n":4,"a":5,"d":0.91,"Sg":1,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.76,"Og":2,"Os":96,"On":20,"Oa":4.8,"Od":0.92,"pm":4,"pa":16},"p":[[-28,{"n":4.5,"e":3653,"s":1}],[-26,{"n":4.5,"e":3673,"s":1}],[-25,{"n":3.5,"e":3687,"s":1}],[-24,{"n":6,"e":3694}],[-21,{"n":5.5,"e":3725}],[-20,{"n":4.5,"e":3729,"s":1}],[-19,{"n":5,"e":3743}],[-18,{"n":4.5,"e":3751,"s":1}],[-16,{"n":4.5,"e":3776}],[-15,{"n":7.5,"e":3783,"g":1}],[-14,{"n":4,"e":3793,"s":1}],[-13,{"n":5,"e":3804,"s":1}],[-11,{"n":4,"e":3827}],[-10,{"n":4.5,"e":3834,"s":1}],[-9,{"n":4,"e":3843,"s":1}],[-8,{"n":4.5,"e":3854,"s":1}],[7,{"n":6,"e":6146,"g":1,"s":1}],[6,{"n":5.5,"e":6153}],[5,{"n":4.5,"e":6159,"s":1}],[3,{"n":4,"e":6184}]],"fo":[[6184,[{"t":"Y"}]]],"a":{"m":8,"a":10,"M":13,"n":5}}],[1540,{"n":"Coly","f":"Racine","fp":"DL","r":4,"c":19,"s":{"Os":27.5,"On":6,"Oa":4.58,"Od":1.11,"pd":4,"pm":2},"p":[[-19,{"n":5,"e":3743,"s":1}],[-16,{"n":3,"e":3776}],[-15,{"n":5,"e":3783,"s":1}],[-12,{"n":6,"e":3814}],[-11,{"n":3.5,"e":3827}],[-8,{"n":5,"e":3854}]]}],[2151,{"n":"N'Soki","f":"Stanley","fp":"DL","r":6,"c":19,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":83,"On":16,"Oa":5.19,"Od":0.7,"pd":16},"p":[[-27,{"n":5,"e":3659,"s":1}],[-26,{"n":5,"e":3673}],[-25,{"n":6,"e":3687}],[-24,{"n":4.5,"e":3694}],[-22,{"n":5,"e":3713}],[-21,{"n":5,"e":3725,"s":1}],[-20,{"n":5,"e":3729}],[-19,{"n":7,"e":3743}],[-18,{"n":5,"e":3751}],[-17,{"n":5.5,"e":3763}],[-15,{"n":5,"e":3783}],[-14,{"n":4.5,"e":3793}],[-13,{"n":5,"e":3804}],[-8,{"n":5.5,"e":3854}],[-7,{"n":4,"e":3862}],[7,{"n":6,"e":6146}]],"fo":[[6146,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":20,"n":9}}],[2276,{"n":"Pelmard","f":"Andy","fp":"DC","r":8,"c":19,"s":{"s":29,"n":6,"a":4.83,"d":1.17,"Os":52.5,"On":11,"Oa":4.77,"Od":0.93,"pd":11},"p":[[-11,{"n":5,"e":3827}],[-10,{"n":4,"e":3834,"s":1}],[-9,{"n":5.5,"e":3843}],[-8,{"n":5,"e":3854}],[-7,{"n":4,"e":3862}],[6,{"n":3.5,"e":6153}],[5,{"n":6,"e":6159}],[4,{"n":4.5,"e":6175}],[3,{"n":3.5,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":5.5,"e":6205,"s":1}]],"fo":[[6153,[{"t":"Y"}]]],"a":{"m":7,"a":10,"M":12,"n":7}}],[2659,{"n":"Atal","f":"Youcef","fp":"DL","r":8,"c":19,"s":{"s":8,"n":2,"a":4,"d":0.71,"Os":50.5,"On":11,"Oa":4.59,"Od":1.38,"pd":5,"pm":3,"pa":3},"p":[[-17,{"n":5,"e":3763}],[-16,{"n":3,"e":3776}],[-15,{"n":5.5,"e":3783}],[-13,{"n":7.5,"e":3804}],[-12,{"n":6,"e":3814}],[-11,{"n":4.5,"e":3827}],[-9,{"n":3.5,"e":3843}],[-8,{"n":4.5,"e":3854}],[-7,{"n":3,"e":3862}],[4,{"n":4.5,"e":6175}],[3,{"n":3.5,"e":6184}]],"fo":[[6175,[{"t":"I"}]]],"a":{"m":14,"a":21,"M":35,"n":27}}],[2715,{"n":"Kamara","f":"Hassane","fp":"DL","r":15,"c":19,"s":{"s":38,"n":7,"a":5.43,"d":1.1,"Ss":38,"Sn":7,"Sa":5.43,"Sd":1.1,"Og":2,"Os":150,"On":27,"Oa":5.56,"Od":0.93,"pd":16,"pm":10,"pa":1},"p":[[-28,{"n":5.5,"e":3654}],[-27,{"n":7,"e":3662,"g":1}],[-26,{"n":6,"e":3676}],[-25,{"n":6.5,"e":3686}],[-24,{"n":4,"e":3697}],[-23,{"n":6,"e":3701}],[-22,{"n":5,"e":3709,"s":1}],[-21,{"n":5,"e":3726,"s":1}],[-20,{"n":5,"e":3733}],[-19,{"n":5.5,"e":3745}],[-18,{"n":7,"e":3757}],[-17,{"n":5,"e":3765}],[-16,{"n":5,"e":3768,"s":1}],[-15,{"n":6.5,"e":3785}],[-14,{"n":5,"e":3794}],[-13,{"n":6.5,"e":3805}],[-12,{"n":4.5,"e":3814}],[-10,{"n":5,"e":3836,"s":1}],[-9,{"n":5,"e":3845,"s":1}],[-7,{"n":7,"e":3865,"g":1}],[7,{"n":4.5,"e":6146}],[6,{"n":6,"e":6153}],[5,{"n":5,"e":6159}],[4,{"n":5,"e":6175}],[3,{"n":4,"e":6184}],[2,{"n":7,"e":6196}],[1,{"n":6.5,"e":6205}]],"fo":[[6146,[{"t":"Y"}]],[6205,[{"t":"Y"}]]],"a":{"m":16,"a":20,"M":28,"n":72}}],[2740,{"n":"Danilo","f":"","fp":"MD","r":7,"c":19,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":88,"On":17,"Oa":5.18,"Od":0.86,"pd":9,"pm":8},"p":[[-28,{"n":5,"e":3653}],[-27,{"n":6,"e":3659}],[-26,{"n":5,"e":3673}],[-25,{"n":6.5,"e":3687}],[-24,{"n":3.5,"e":3694}],[-23,{"n":4.5,"e":3701}],[-22,{"n":5.5,"e":3713}],[-21,{"n":4.5,"e":3725}],[-20,{"n":5,"e":3729}],[-19,{"n":5,"e":3743,"s":1}],[-13,{"n":6,"e":3804}],[-12,{"n":7,"e":3814}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":4,"e":3834}],[-9,{"n":5.5,"e":3843,"s":1}],[-8,{"n":5,"e":3854,"s":1}],[7,{"n":5,"e":6146,"s":1}]]}],[2959,{"n":"Kephren Thuram","f":"","fp":"MD","r":11,"c":19,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.7,"Sg":1,"Ss":13.5,"Sn":2,"Sa":6.75,"Sd":1.77,"Og":1,"Os":98,"On":19,"Oa":5.16,"Od":0.94,"pm":19},"p":[[-27,{"n":5.5,"e":3659}],[-26,{"n":5.5,"e":3673}],[-25,{"n":5.5,"e":3687}],[-24,{"n":5.5,"e":3694}],[-23,{"n":5,"e":3701}],[-22,{"n":5.5,"e":3713}],[-20,{"n":5,"e":3729,"s":1}],[-19,{"n":5,"e":3743,"s":1}],[-18,{"n":5,"e":3751,"s":1}],[-17,{"n":5,"e":3763,"s":1}],[-16,{"n":5,"e":3776,"s":1}],[-12,{"n":4.5,"e":3814,"s":1}],[-11,{"n":4.5,"e":3827}],[7,{"n":5.5,"e":6146}],[6,{"n":8,"e":6153,"g":1}],[4,{"n":3.5,"e":6175}],[3,{"n":3.5,"e":6184}],[2,{"n":6,"e":6196}],[1,{"n":5,"e":6205}]],"fo":[[6153,[{"t":"I"},{"t":"Y"}]]],"a":{"m":8,"a":12,"M":21,"n":8}}],[3502,{"n":"Wade","f":"Paul","fp":"MD","r":1,"c":19}],[6247,{"n":"Boudaoui","f":"Hichem","fp":"MO","r":6,"c":19,"s":{"Og":1,"Os":46,"On":9,"Oa":5.11,"Od":1.52,"pm":7,"pa":2},"p":[[-24,{"n":2.5,"e":3694}],[-23,{"n":6.5,"e":3701}],[-22,{"n":7,"e":3713}],[-20,{"n":4,"e":3729}],[-19,{"n":7,"e":3743,"g":1}],[-17,{"n":4.5,"e":3763,"s":1}],[-15,{"n":4.5,"e":3783,"s":1}],[-14,{"n":5.5,"e":3793}],[-7,{"n":4.5,"e":3862,"s":1}]]}],[6250,{"n":"Dolberg","f":"Kasper","fp":"A","r":24,"c":19,"s":{"g":2,"s":24,"n":5,"a":4.8,"d":1.3,"Og":12,"Os":136,"On":26,"Oa":5.23,"Od":1.3,"pa":26},"p":[[-28,{"n":7.5,"e":3653,"g":2}],[-27,{"n":4,"e":3659}],[-26,{"n":7,"e":3673,"g":1}],[-25,{"n":6,"e":3687}],[-24,{"n":5,"e":3694}],[-23,{"n":4.5,"e":3701}],[-22,{"n":7.5,"e":3713,"g":2}],[-21,{"n":6.5,"e":3725,"g":1}],[-20,{"n":4,"e":3729}],[-19,{"n":5,"e":3743}],[-18,{"n":4.5,"e":3751}],[-17,{"n":4.5,"e":3763}],[-16,{"n":6,"e":3776,"g":1}],[-15,{"n":7,"e":3783,"g":1}],[-14,{"n":6,"e":3793,"g":1}],[-13,{"n":4,"e":3804}],[-12,{"n":4.5,"e":3814,"s":1}],[-10,{"n":5,"e":3834}],[-9,{"n":3.5,"e":3843}],[-8,{"n":6.5,"e":3854,"g":1}],[-7,{"n":3.5,"e":3862}],[6,{"n":5,"e":6153}],[5,{"n":4,"e":6159}],[3,{"n":4,"e":6184}],[2,{"n":7,"e":6196,"g":2}],[1,{"n":4,"e":6205}]],"fo":[[6184,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":25,"a":56,"M":111,"n":55}}],[6398,{"n":"Crétier","f":"Noah","fp":"DC","r":1,"c":19}],[6591,{"n":"Trouillet","f":"Alexis","fp":"MO","r":5,"c":19,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[6,{"n":4.5,"e":6153,"s":1}],[2,{"n":5,"e":6196,"s":1}]]}],[6705,{"n":"Robson Bambu","f":"","fp":"DC","r":6,"c":19,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Ss":6,"Sn":1,"Sa":6,"Os":11,"On":2,"Oa":5.5,"Od":0.71,"pd":2},"p":[[7,{"n":6,"e":6146}],[1,{"n":5,"e":6205}]],"fo":[[6205,[{"t":"I"}]],[6146,[{"t":"Y"}]]]}],[6804,{"n":"Ndoye","f":"Dan","fp":"A","r":7,"c":19,"s":{"s":33.5,"n":7,"a":4.79,"d":0.49,"Ss":33.5,"Sn":7,"Sa":4.79,"Sd":0.49,"Os":33.5,"On":7,"Oa":4.79,"Od":0.49,"pm":1,"pa":6},"p":[[7,{"n":5.5,"e":6146,"s":1}],[6,{"n":5,"e":6153,"s":1}],[5,{"n":5,"e":6159}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":4,"e":6184,"s":1}],[2,{"n":4.5,"e":6196,"s":1}],[1,{"n":4.5,"e":6205,"s":1}]],"a":{"m":6,"a":7,"M":7,"n":5}}],[6808,{"n":"Lotomba","f":"Jordan","fp":"DL","r":13,"c":19,"s":{"s":32.5,"n":6,"a":5.42,"d":0.58,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.63,"Os":32.5,"On":6,"Oa":5.42,"Od":0.58,"pd":5,"pm":1},"p":[[7,{"n":5.5,"e":6146}],[6,{"n":6,"e":6153}],[5,{"n":5.5,"e":6159}],[4,{"n":4.5,"e":6175}],[2,{"n":6,"e":6196}],[1,{"n":5,"e":6205}]],"fo":[[6146,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":10,"a":14,"M":25,"n":15}}],[6866,{"n":"Daniliuc","f":"Flavius","fp":"DC","r":8,"c":19,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Os":15.5,"On":3,"Oa":5.17,"Od":0.29,"pd":3},"p":[[6,{"n":5.5,"e":6153,"s":1}],[5,{"n":5,"e":6159,"s":1}],[4,{"n":5,"e":6175,"s":1}]]}],[7142,{"n":"Ben Seghir","f":"Salim","fp":"A","r":1,"c":19}],[7221,{"n":"Parsemain","f":"Alexandre","fp":"A","r":1,"c":19}],[7222,{"n":"Sellouki","f":"Malik","fp":"MD","r":1,"c":19}],[7223,{"n":"Kari","f":"Soudeysse","fp":"MD","r":1,"c":19}],[7224,{"n":"Pionnier Bertrand","f":"Theo","fp":"DL","r":1,"c":19}],[7418,{"n":"Sotona","f":"Ayodeji","fp":"A","r":3,"c":19}],[115,{"n":"Roux","f":"Nolan","fp":"A","r":8,"c":67,"s":{"s":22,"n":5,"a":4.4,"d":0.42,"Ss":22,"Sn":5,"Sa":4.4,"Sd":0.42,"Og":4,"Os":103,"On":21,"Oa":4.9,"Od":0.92,"pa":21},"p":[[7,{"n":4.5,"e":6144}],[-19,{"n":4,"e":4880,"s":1}],[-28,{"n":5,"e":3652}],[-27,{"n":5.5,"e":3665}],[-26,{"n":6,"e":3675,"g":1}],[-25,{"n":5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":7,"e":3705,"g":1}],[-22,{"n":5.5,"e":3714}],[-21,{"n":4,"e":4865,"s":1}],[-20,{"n":4.5,"e":4871,"s":1}],[-15,{"n":3.5,"e":4922}],[-14,{"n":6.5,"e":4930,"g":1,"s":1}],[-13,{"n":4.5,"e":4940,"s":1}],[-12,{"n":6,"e":4949,"g":1,"s":1}],[-11,{"n":5,"e":4965}],[-10,{"n":4,"e":4970,"s":1}],[6,{"n":4.5,"e":6152,"s":1}],[5,{"n":4,"e":6165}],[4,{"n":4,"e":6170,"s":1}],[3,{"n":5,"e":6185,"s":1}]],"a":{"m":10,"a":18,"M":33,"n":16}}],[122,{"n":"Reynet","f":"Baptiste","fp":"G","r":16,"c":67,"s":{"s":39,"n":7,"a":5.57,"d":1.06,"Ss":39,"Sn":7,"Sa":5.57,"Sd":1.06,"Os":119.5,"On":24,"Oa":4.98,"Od":1.05,"pg":24},"p":[[-28,{"n":4,"e":3649}],[-25,{"n":5,"e":3687}],[-24,{"n":5,"e":3691,"s":1}],[-20,{"n":3,"e":3737}],[-19,{"n":4,"e":3743}],[-18,{"n":5.5,"e":3757}],[-17,{"n":4,"e":3767}],[-16,{"n":6,"e":3777}],[-15,{"n":6.5,"e":3782}],[-14,{"n":6,"e":3797}],[-13,{"n":3.5,"e":3802}],[-12,{"n":5.5,"e":3817}],[-11,{"n":4,"e":3825}],[-10,{"n":5,"e":3837}],[-9,{"n":4,"e":3847}],[-8,{"n":4.5,"e":3852}],[-7,{"n":5,"e":3867}],[7,{"n":6,"e":6144}],[6,{"n":6,"e":6152}],[5,{"n":5.5,"e":6165}],[4,{"n":6.5,"e":6170}],[3,{"n":3.5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":6.5,"e":6206}]],"a":{"m":14,"a":18,"M":23,"n":12}}],[163,{"n":"Deaux","f":"Lucas","fp":"MD","r":14,"c":67,"s":{"s":25.5,"n":5,"a":5.1,"d":0.55,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":2,"Os":90,"On":17,"Oa":5.29,"Od":1.15,"pm":17},"p":[[-28,{"n":7,"e":3652,"g":1}],[-27,{"n":6,"e":3665,"g":1,"s":1}],[-23,{"n":6,"e":3705}],[-22,{"n":6,"e":3714}],[-21,{"n":4.5,"e":3727}],[-20,{"n":7,"e":3733}],[-16,{"n":2.5,"e":3770}],[-15,{"n":5.5,"e":3784}],[-14,{"n":4,"e":3789,"s":1}],[-9,{"n":5,"e":3841}],[-8,{"n":6.5,"e":3855}],[-7,{"n":4.5,"e":3863}],[7,{"n":5,"e":6144}],[6,{"n":6,"e":6152}],[3,{"n":4.5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":5,"e":6206}]],"fo":[[6144,[{"t":"Y"}]],[6206,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":30,"n":7}}],[447,{"n":"Burner","f":"Patrick","fp":"DL","r":7,"c":67,"s":{"s":19,"n":4,"a":4.75,"d":0.5,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.58,"Og":1,"Os":88.5,"On":18,"Oa":4.92,"Od":0.65,"pd":18},"p":[[-24,{"n":4.5,"e":3694}],[-23,{"n":5,"e":3701,"s":1}],[-19,{"n":5.5,"e":3743}],[-18,{"n":6,"e":3751}],[-17,{"n":5,"e":3763}],[-16,{"n":5,"e":3776,"s":1}],[-14,{"n":5.5,"e":3793}],[-13,{"n":5.5,"e":3804,"s":1}],[-12,{"n":5,"e":3814,"s":1}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":3,"e":3834}],[-9,{"n":5,"e":3843}],[-8,{"n":5,"e":3854}],[-7,{"n":4.5,"e":3862,"g":1}],[7,{"n":4,"e":6144}],[6,{"n":5,"e":6152}],[5,{"n":5,"e":6165,"s":1}],[1,{"n":5,"e":6205,"s":1}]]}],[460,{"n":"Martinez","f":"Pablo","fp":"DC","r":8,"c":67,"s":{"s":19.5,"n":4,"a":4.88,"d":1.75,"Ss":4,"Sn":1,"Sa":4,"Og":2,"Os":117,"On":24,"Oa":4.88,"Od":1.34,"pd":24},"p":[[-28,{"n":4.5,"e":3652}],[-27,{"n":4,"e":3665}],[-25,{"n":6,"e":3685}],[-24,{"n":5.5,"e":3694}],[-23,{"n":4.5,"e":3705}],[-22,{"n":6.5,"e":3714,"g":1}],[-21,{"n":6,"e":3727}],[-20,{"n":7,"e":3733}],[-19,{"n":4,"e":3739}],[-18,{"n":4.5,"e":3755}],[-17,{"n":3,"e":3764}],[-16,{"n":2.5,"e":3770}],[-15,{"n":4.5,"e":3784}],[-14,{"n":5,"e":3789}],[-13,{"n":3,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":7,"e":3835,"g":1}],[-9,{"n":4,"e":3841}],[-8,{"n":4.5,"e":3855}],[-7,{"n":6,"e":3863}],[7,{"n":4,"e":6144,"s":1}],[3,{"n":3,"e":6185}],[2,{"n":5.5,"e":6194}],[1,{"n":7,"e":6206}]],"a":{"m":14,"a":18,"M":23,"n":16}}],[1548,{"n":"Ahlinvi","f":"Matteo","fp":"MD","r":4,"c":67,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[7,{"n":5,"e":6144,"s":1}],[4,{"n":5,"e":6170,"s":1}]]}],[2606,{"n":"Landre","f":"Loïck","fp":"DC","r":8,"c":67,"s":{"s":29.5,"n":7,"a":4.21,"d":1.32,"Ss":29.5,"Sn":7,"Sa":4.21,"Sd":1.32,"Og":1,"Os":76.5,"On":16,"Oa":4.78,"Od":1.21,"pd":16},"p":[[-28,{"n":4,"e":3652}],[-27,{"n":4,"e":3665}],[-26,{"n":5.5,"e":3675}],[-25,{"n":6,"e":3685}],[-24,{"n":7,"e":3694,"g":1}],[-23,{"n":5.5,"e":3705}],[-22,{"n":5.5,"e":3714}],[-21,{"n":5,"e":3727}],[-7,{"n":4.5,"e":3863}],[7,{"n":4,"e":6144}],[6,{"n":5.5,"e":6152}],[5,{"n":4,"e":6165}],[4,{"n":4.5,"e":6170}],[3,{"n":2,"e":6185}],[2,{"n":3.5,"e":6194}],[1,{"n":6,"e":6206}]],"fo":[[6144,[{"t":"R"}]],[6194,[{"t":"Y"}]]],"a":{"m":9,"a":10,"M":17,"n":10}}],[2651,{"n":"Guessoum","f":"Kelyan","fp":"DC","r":1,"c":67}],[2654,{"n":"Buades","f":"Lucas","fp":"MO","r":4,"c":67,"s":{"s":4.5,"n":1,"a":4.5,"Os":30.5,"On":7,"Oa":4.36,"Od":0.24,"pa":7},"p":[[-24,{"n":4.5,"e":3694,"s":1}],[-21,{"n":4.5,"e":3727,"s":1}],[-17,{"n":4,"e":3764}],[-16,{"n":4,"e":3770,"s":1}],[-11,{"n":4.5,"e":3824,"s":1}],[-10,{"n":4.5,"e":3835,"s":1}],[4,{"n":4.5,"e":6170,"s":1}]]}],[2663,{"n":"Ben Amar","f":"Sami","fp":"A","r":1,"c":67}],[2680,{"n":"Alakouch","f":"Sofiane","fp":"DL","r":6,"c":67,"s":{"s":4,"n":1,"a":4,"Oao":1,"Os":47.5,"On":11,"Oa":4.32,"Od":0.72,"pd":11},"p":[[-26,{"n":4.5,"e":3675}],[-21,{"n":3.5,"e":3727}],[-20,{"n":5,"e":3733}],[-19,{"n":3.5,"e":3739,"a":1}],[-18,{"n":4.5,"e":3755}],[-16,{"n":3,"e":3770}],[-15,{"n":5,"e":3784}],[-14,{"n":5,"e":3789}],[-10,{"n":5,"e":3835}],[-8,{"n":4.5,"e":3855}],[3,{"n":4,"e":6185,"s":1}]]}],[2695,{"n":"Benrahou","f":"Yassine","fp":"MO","r":10,"c":67,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Og":2,"Os":75.5,"On":14,"Oa":5.39,"Od":0.98,"pm":13,"pa":1},"p":[[-28,{"n":5.5,"e":3652}],[-27,{"n":5.5,"e":3665}],[-26,{"n":6,"e":3675}],[-25,{"n":5,"e":3685}],[-24,{"n":5.5,"e":3694}],[-23,{"n":7,"e":3705,"g":1}],[-22,{"n":6,"e":3714}],[-21,{"n":4.5,"e":3727}],[-20,{"n":7.5,"e":3733,"g":1}],[-14,{"n":5,"e":3790,"s":1}],[5,{"n":5,"e":6165}],[3,{"n":4.5,"e":6185}],[2,{"n":4,"e":6194}],[1,{"n":4.5,"e":6206}]],"fo":[[6206,[{"t":"Y"}]]],"a":{"m":11,"a":17,"M":25,"n":9}}],[2699,{"n":"Depres","f":"Clement","fp":"A","r":2,"c":67}],[2700,{"n":"Miguel","f":"Florian","fp":"DL","r":8,"c":67,"s":{"s":19,"n":4,"a":4.75,"d":0.5,"Ss":4,"Sn":1,"Sa":4,"Og":1,"Os":95.5,"On":21,"Oa":4.55,"Od":1.05,"pd":21},"p":[[-26,{"n":5.5,"e":3675,"s":1}],[-25,{"n":5.5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":5,"e":3705}],[-22,{"n":7,"e":3714,"g":1}],[-21,{"n":4,"e":3727}],[-20,{"n":5,"e":3733}],[-19,{"n":4,"e":3739}],[-18,{"n":4.5,"e":3755}],[-17,{"n":3,"e":3764}],[-16,{"n":2,"e":3770}],[-15,{"n":5,"e":3784}],[-13,{"n":3,"e":3807}],[-11,{"n":5,"e":3824}],[-9,{"n":4.5,"e":3841}],[-8,{"n":4.5,"e":3855}],[-7,{"n":4,"e":3863}],[7,{"n":4,"e":6144}],[5,{"n":5,"e":6165,"s":1}],[4,{"n":5,"e":6170}],[1,{"n":5,"e":6206,"s":1}]]}],[2709,{"n":"Briancon","f":"Anthony","fp":"DC","r":14,"c":67,"s":{"s":22,"n":4,"a":5.5,"d":0.41,"Og":1,"Os":97,"On":20,"Oa":4.85,"Od":1,"pd":20},"p":[[-26,{"n":4,"e":3675}],[-25,{"n":5,"e":3685,"s":1}],[-24,{"n":4.5,"e":3694,"s":1}],[-20,{"n":7,"e":3733}],[-19,{"n":5.5,"e":3739,"g":1}],[-18,{"n":4,"e":3755}],[-17,{"n":4.5,"e":3764}],[-16,{"n":2.5,"e":3770}],[-15,{"n":5,"e":3784}],[-14,{"n":5,"e":3789}],[-13,{"n":3,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":5,"e":3835}],[-9,{"n":4.5,"e":3841}],[-8,{"n":4.5,"e":3855}],[-7,{"n":5.5,"e":3863}],[6,{"n":5.5,"e":6152}],[5,{"n":5.5,"e":6165}],[4,{"n":6,"e":6170}],[3,{"n":5,"e":6185,"s":1}]],"fo":[[6152,[{"t":"Y"}]]],"a":{"m":13,"a":18,"M":24,"n":15}}],[2716,{"n":"Paquiez","f":"Gaetan","fp":"DL","r":8,"c":67,"s":{"s":14,"n":3,"a":4.67,"d":1.53,"Ss":3,"Sn":1,"Sa":3,"Os":87.5,"On":20,"Oa":4.38,"Od":1.04,"pd":19,"pm":1},"p":[[-28,{"n":3,"e":3652}],[-27,{"n":3,"e":3665}],[-26,{"n":3.5,"e":3675}],[-25,{"n":5.5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":5.5,"e":3705}],[-22,{"n":6,"e":3714}],[-20,{"n":5,"e":3733,"s":1}],[-19,{"n":4,"e":3739}],[-17,{"n":3.5,"e":3764}],[-16,{"n":4,"e":3770,"s":1}],[-14,{"n":4.5,"e":3789}],[-13,{"n":2.5,"e":3807}],[-11,{"n":5,"e":3824}],[-10,{"n":4.5,"e":3835}],[-9,{"n":4.5,"e":3841}],[-7,{"n":4.5,"e":3863}],[7,{"n":3,"e":6144}],[5,{"n":5,"e":6165}],[4,{"n":6,"e":6170}]],"a":{"m":7,"a":8,"M":8,"n":5}}],[2723,{"n":"Ripart","f":"Renaud","fp":"DL","r":13,"c":67,"s":{"g":1,"s":37,"n":7,"a":5.29,"d":1.41,"Sg":1,"Ss":37,"Sn":7,"Sa":5.29,"Sd":1.41,"Og":4,"Os":117.5,"On":24,"Oa":4.9,"Od":1.26,"pd":5,"pm":3,"pa":16},"p":[[-28,{"n":3.5,"e":3652}],[-27,{"n":3.5,"e":3665}],[-26,{"n":6,"e":3675}],[-25,{"n":4,"e":3685,"s":1}],[-20,{"n":7,"e":3733,"g":1}],[-19,{"n":4,"e":3739}],[-18,{"n":6,"e":3755}],[-17,{"n":4,"e":3764}],[-16,{"n":3,"e":3770}],[-15,{"n":6,"e":3784,"g":1}],[-14,{"n":4,"e":3789}],[-13,{"n":3.5,"e":3807}],[-11,{"n":4.5,"e":3824}],[-10,{"n":5,"e":3835}],[-9,{"n":6.5,"e":3841,"g":1}],[-8,{"n":5,"e":3855}],[-7,{"n":5,"e":3863}],[7,{"n":5,"e":6144}],[6,{"n":7,"e":6152,"g":1}],[5,{"n":6,"e":6165}],[4,{"n":5.5,"e":6170}],[3,{"n":3,"e":6185}],[2,{"n":4,"e":6194}],[1,{"n":6.5,"e":6206}]],"fo":[[6185,[{"t":"Y"}]]],"a":{"m":13,"a":19,"M":36,"n":29}}],[2957,{"n":"Lionel Dias","f":"Lucas","fp":"G","r":7,"c":67,"s":{"Os":22,"On":4,"Oa":5.5,"Od":0.82,"pg":4},"p":[[-13,{"n":5.5,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":6.5,"e":3835}],[-9,{"n":4.5,"e":3841,"s":1}]]}],[3771,{"n":"Denkey","f":"Kévin","fp":"A","r":9,"c":67,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":1.35,"Og":2,"Os":87,"On":19,"Oa":4.58,"Od":0.87,"pa":19},"p":[[-28,{"n":4.5,"e":3652,"s":1}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":5,"e":3727}],[-20,{"n":4,"e":3733,"s":1}],[-19,{"n":4.5,"e":3739,"s":1}],[-18,{"n":3.5,"e":3755}],[-15,{"n":4.5,"e":3784,"s":1}],[-14,{"n":4,"e":3789}],[-13,{"n":4.5,"e":3807,"s":1}],[-11,{"n":4,"e":3824}],[-10,{"n":4.5,"e":3835}],[-9,{"n":6.5,"e":3841,"g":1}],[-8,{"n":4.5,"e":3855,"s":1}],[-7,{"n":4.5,"e":3863,"s":1}],[6,{"n":4.5,"e":6152}],[5,{"n":4,"e":6165,"s":1}],[3,{"n":3.5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":7,"e":6206,"g":1}]],"fo":[[6185,[{"t":"Y"}]],[6194,[{"t":"Y"}]]],"a":{"m":8,"a":18,"M":41,"n":27}}],[3797,{"n":"Ferhat","f":"Zinedine","fp":"MO","r":24,"c":67,"s":{"g":3,"s":39.5,"n":6,"a":6.58,"d":0.58,"Og":5,"Os":145,"On":25,"Oa":5.8,"Od":1.15,"pm":17,"pa":8},"p":[[-28,{"n":5.5,"e":3652}],[-27,{"n":7,"e":3665,"g":1}],[-26,{"n":5,"e":3675}],[-25,{"n":5.5,"e":3685}],[-24,{"n":5,"e":3694}],[-23,{"n":6,"e":3705}],[-22,{"n":8,"e":3714}],[-21,{"n":7,"e":3727,"g":1}],[-20,{"n":6,"e":3733}],[-19,{"n":7,"e":3739}],[-18,{"n":6,"e":3755}],[-17,{"n":4.5,"e":3764}],[-16,{"n":3,"e":3770}],[-15,{"n":5,"e":3784}],[-14,{"n":5,"e":3789}],[-13,{"n":4.5,"e":3807,"s":1}],[-9,{"n":5.5,"e":3841}],[-8,{"n":6,"e":3855}],[-7,{"n":4,"e":3863}],[6,{"n":6,"e":6152}],[5,{"n":6.5,"e":6165,"g":1}],[4,{"n":6,"e":6170}],[3,{"n":6.5,"e":6185,"g":1}],[2,{"n":7,"e":6194,"g":1}],[1,{"n":7.5,"e":6206}]],"a":{"m":20,"a":32,"M":55,"n":76}}],[5031,{"n":"Fomba","f":"Lamine","fp":"MD","r":10,"c":67,"s":{"s":31,"n":6,"a":5.17,"d":0.68,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.76,"Os":106,"On":21,"Oa":5.05,"Od":0.84,"pm":21},"p":[[-27,{"n":5,"e":3665}],[-26,{"n":4.5,"e":3675}],[-25,{"n":6,"e":3685}],[-24,{"n":6.5,"e":3694}],[-23,{"n":5.5,"e":3705,"s":1}],[-22,{"n":4.5,"e":3714,"s":1}],[-17,{"n":4,"e":3764}],[-16,{"n":3,"e":3770}],[-14,{"n":6,"e":3789}],[-13,{"n":4,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":5,"e":3835}],[-9,{"n":5,"e":3841,"s":1}],[-8,{"n":5,"e":3855}],[-7,{"n":5.5,"e":3863}],[7,{"n":4,"e":6144}],[6,{"n":6,"e":6152}],[5,{"n":5.5,"e":6165}],[4,{"n":5.5,"e":6170}],[3,{"n":5,"e":6185,"s":1}],[1,{"n":5,"e":6206,"s":1}]],"fo":[[6170,[{"t":"Y"}]]],"a":{"m":10,"a":12,"M":15,"n":6}}],[5051,{"n":"Sidy Sarr","f":"","fp":"MD","r":7,"c":67,"s":{"s":15,"n":3,"a":5,"Os":97.5,"On":20,"Oa":4.88,"Od":0.76,"pm":20},"p":[[-28,{"n":5,"e":3652}],[-27,{"n":4.5,"e":3665}],[-26,{"n":5,"e":3675}],[-25,{"n":7,"e":3685}],[-24,{"n":5,"e":3694}],[-22,{"n":4.5,"e":3714,"s":1}],[-21,{"n":4.5,"e":3727,"s":1}],[-19,{"n":4.5,"e":3739}],[-18,{"n":5.5,"e":3755}],[-16,{"n":3,"e":3770}],[-15,{"n":5,"e":3784,"s":1}],[-13,{"n":4,"e":3807}],[-11,{"n":5.5,"e":3824}],[-10,{"n":5.5,"e":3835,"s":1}],[-9,{"n":4.5,"e":3841,"s":1}],[-8,{"n":4.5,"e":3855,"s":1}],[-7,{"n":5,"e":3863}],[4,{"n":5,"e":6170}],[2,{"n":5,"e":6194,"s":1}],[1,{"n":5,"e":6206,"s":1}]]}],[6022,{"n":"Duljevic","f":"Haris","fp":"MO","r":7,"c":67,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":53.5,"On":11,"Oa":4.86,"Od":0.71,"pm":8,"pa":3},"p":[[-23,{"n":5,"e":3705,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-18,{"n":5,"e":3755,"s":1}],[-16,{"n":3,"e":3770}],[-15,{"n":6,"e":3784,"s":1}],[-14,{"n":5,"e":3789,"s":1}],[-13,{"n":5,"e":3807}],[-11,{"n":5,"e":3824,"s":1}],[-10,{"n":5,"e":3835}],[4,{"n":4.5,"e":6170}],[2,{"n":5,"e":6194,"s":1}]]}],[6259,{"n":"Valerio","f":"Antoine","fp":"MO","r":1,"c":67,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":0.22,"pm":5},"p":[[-23,{"n":5,"e":3705,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-18,{"n":4.5,"e":3755}],[-17,{"n":5,"e":3764,"s":1}],[-10,{"n":5,"e":3835,"s":1}]]}],[6307,{"n":"Chadli","f":"Nassim","fp":"A","r":1,"c":67}],[6309,{"n":"Karraoui","f":"Amine","fp":"A","r":1,"c":67}],[6436,{"n":"Megier","f":"Julien","fp":"DC","r":1,"c":67}],[6438,{"n":"Nazih","f":"Amjhad","fp":"G","r":1,"c":67}],[6507,{"n":"Koné","f":"Moussa","fp":"A","r":7,"c":67,"s":{"g":1,"s":19,"n":4,"a":4.75,"d":0.87,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":3,"Os":44,"On":9,"Oa":4.89,"Od":0.99,"pa":9},"p":[[-28,{"n":4,"e":3652}],[-27,{"n":4.5,"e":3665,"s":1}],[-26,{"n":4,"e":3675,"s":1}],[-25,{"n":6.5,"e":3685,"g":1,"s":1}],[-24,{"n":6,"e":3694,"g":1,"s":1}],[7,{"n":4.5,"e":6144,"s":1}],[3,{"n":4.5,"e":6185,"s":1}],[2,{"n":4,"e":6194,"s":1}],[1,{"n":6,"e":6206,"g":1,"s":1}]],"a":{"m":9,"a":11,"M":15,"n":7}}],[6712,{"n":"Meling","f":"Birger","fp":"DL","r":13,"c":67,"s":{"g":1,"s":29,"n":5,"a":5.8,"d":1.3,"Og":1,"Os":29,"On":5,"Oa":5.8,"Od":1.3,"pd":5},"p":[[6,{"n":6,"e":6152}],[5,{"n":5,"e":6165}],[3,{"n":5,"e":6185}],[2,{"n":5,"e":6194}],[1,{"n":8,"e":6206,"g":1}]],"a":{"m":9,"a":14,"M":21,"n":36}}],[6869,{"n":"Cubas","f":"Adrián","fp":"MD","r":19,"c":67,"s":{"g":1,"s":44,"n":7,"a":6.29,"d":0.91,"Sg":1,"Ss":44,"Sn":7,"Sa":6.29,"Sd":0.91,"Og":1,"Os":44,"On":7,"Oa":6.29,"Od":0.91,"pm":7},"p":[[7,{"n":6,"e":6144}],[6,{"n":7,"e":6152}],[5,{"n":6,"e":6165}],[4,{"n":6.5,"e":6170}],[3,{"n":7,"e":6185,"g":1}],[2,{"n":4.5,"e":6194}],[1,{"n":7,"e":6206}]],"fo":[[6170,[{"t":"Y"}]]],"a":{"m":14,"a":21,"M":31,"n":43}}],[7330,{"n":"Ludivin Majouga","f":"Marco","fp":"A","r":4,"c":67,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Ss":4,"Sn":1,"Sa":4,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[7,{"n":4,"e":6144,"s":1}],[5,{"n":4.5,"e":6165,"s":1}]]}],[7410,{"n":"Aribi","f":"Karim","fp":"A","r":7,"c":67,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[7,{"n":4,"e":6144,"s":1}]]}],[7415,{"n":"Eliasson","f":"Niclas","fp":"MD","r":9,"c":67,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[7,{"n":4,"e":6144}]]}],[7,{"n":"Di María","f":"Ángel","fp":"MO","r":34,"c":2,"s":{"g":1,"s":24,"n":4,"a":6,"d":1.68,"Og":7,"Os":157,"On":25,"Oa":6.28,"Od":1.06,"pm":16,"pa":9},"p":[[5,{"n":5.5,"e":6166}],[-18,{"n":7,"e":3756}],[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666}],[-26,{"n":7,"e":3674}],[-25,{"n":6.5,"e":3678}],[-24,{"n":7,"e":3695,"g":1}],[-23,{"n":7,"e":3700}],[-22,{"n":7,"e":3715,"g":1}],[-21,{"n":6,"e":3719}],[-20,{"n":5,"e":3734}],[-19,{"n":6,"e":3744}],[-16,{"n":6,"e":3775}],[-15,{"n":7,"e":3780}],[-14,{"n":6.5,"e":3795,"g":1}],[-13,{"n":7,"e":3798,"g":1}],[-12,{"n":6.5,"e":3811}],[-11,{"n":7.5,"e":3823}],[-10,{"n":8,"e":3834,"g":2}],[-9,{"n":5,"e":3844,"s":1}],[-8,{"n":5,"e":3849}],[-7,{"n":4.5,"e":3865,"s":1}],[-6,{"n":6.5,"e":3870}],[4,{"n":8,"e":6175,"g":1}],[3,{"n":4,"e":6187}],[1,{"n":6.5,"e":6207}]],"fo":[[6187,[{"t":"Y"}]]],"a":{"m":35,"a":64,"M":98,"n":47}}],[12,{"n":"Draxler","f":"Julian","fp":"MO","r":14,"c":2,"s":{"g":2,"s":29.5,"n":5,"a":5.9,"d":0.89,"Og":2,"Os":82,"On":14,"Oa":5.86,"Od":0.93,"pm":14},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":7.5,"e":3666,"s":1}],[-25,{"n":6,"e":3678}],[-24,{"n":5.5,"e":3695}],[-23,{"n":5.5,"e":3700,"s":1}],[-16,{"n":5,"e":3775}],[-15,{"n":4.5,"e":3780,"s":1}],[-14,{"n":6.5,"e":3795}],[-13,{"n":7,"e":3798}],[-12,{"n":5,"e":3811,"s":1}],[6,{"n":6.5,"e":6154,"g":1}],[5,{"n":5,"e":6166}],[4,{"n":6,"e":6175}],[3,{"n":5,"e":6187,"s":1}],[1,{"n":7,"e":6207,"g":1}]],"fo":[[6166,[{"t":"Y"}]],[6207,[{"t":"Y"}]]],"a":{"m":10,"a":17,"M":36,"n":13}}],[17,{"n":"Verratti","f":"Marco","fp":"MD","r":23,"c":2,"s":{"s":28.5,"n":5,"a":5.7,"d":1.52,"Os":119.5,"On":20,"Oa":5.98,"Od":1.06,"pm":20},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":7,"e":3674}],[-25,{"n":5.5,"e":3678,"s":1}],[-24,{"n":5,"e":3695}],[-23,{"n":5.5,"e":3700}],[-22,{"n":6.5,"e":3715}],[-21,{"n":7,"e":3719}],[-20,{"n":6,"e":3734}],[-19,{"n":6,"e":3744,"s":1}],[-18,{"n":4.5,"e":3756,"s":1}],[-15,{"n":6,"e":3780,"s":1}],[-13,{"n":5,"e":3798}],[-11,{"n":7.5,"e":3823}],[-9,{"n":7,"e":3844}],[-8,{"n":7,"e":3849}],[-6,{"n":5.5,"e":3870,"s":1}],[6,{"n":7.5,"e":6154}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":6.5,"e":6175}],[3,{"n":3.5,"e":6187}],[2,{"n":6,"e":6190}]],"fo":[[6175,[{"t":"Y"}]]],"a":{"m":24,"a":34,"M":56,"n":45}}],[28,{"n":"Mbappé","f":"Kylian","fp":"A","r":43,"c":2,"s":{"g":4,"s":30,"n":4,"a":7.5,"d":0.41,"Sg":4,"Ss":30,"Sn":4,"Sa":7.5,"Sd":0.41,"Og":21,"Os":142.5,"On":21,"Oa":6.79,"Od":1.1,"pm":1,"pa":20},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":8.5,"e":3666,"g":2}],[-26,{"n":7,"e":3674,"g":1}],[-24,{"n":6.5,"e":3695,"g":1}],[-23,{"n":5,"e":3700}],[-22,{"n":7,"e":3715,"g":1}],[-21,{"n":5.5,"e":3719}],[-20,{"n":5.5,"e":3734}],[-19,{"n":8,"e":3744,"g":2}],[-18,{"n":7,"e":3756,"g":2}],[-17,{"n":7,"e":3761,"g":1}],[-16,{"n":6,"e":3775,"g":1}],[-15,{"n":8,"e":3780,"g":2}],[-14,{"n":4.5,"e":3795,"s":1}],[-12,{"n":6.5,"e":3811,"g":1}],[-11,{"n":8,"e":3823,"g":2}],[-10,{"n":7,"e":3834,"g":1,"s":1}],[-8,{"n":5.5,"e":3849,"s":1}],[7,{"n":8,"e":6144,"g":2}],[6,{"n":7.5,"e":6154,"g":1}],[5,{"n":7,"e":6166}],[4,{"n":7.5,"e":6175,"g":1}]],"a":{"m":43,"a":122,"M":234,"n":60}}],[44,{"n":"Marquinhos","f":"","fp":"DC","r":26,"c":2,"s":{"g":1,"s":24.5,"n":4,"a":6.13,"d":0.95,"Og":3,"Os":113,"On":19,"Oa":5.95,"Od":1.12,"pd":10,"pm":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":7.5,"e":3666}],[-26,{"n":8,"e":3674,"g":2}],[-25,{"n":5,"e":3678,"s":1}],[-20,{"n":5,"e":3734}],[-19,{"n":6,"e":3744}],[-18,{"n":7.5,"e":3756}],[-16,{"n":7,"e":3775}],[-14,{"n":5.5,"e":3795}],[-13,{"n":4.5,"e":3798,"s":1}],[-12,{"n":4.5,"e":3811}],[-11,{"n":6.5,"e":3823}],[-10,{"n":4.5,"e":3834,"s":1}],[-8,{"n":6,"e":3849}],[-7,{"n":5,"e":3865,"s":1}],[-6,{"n":6,"e":3870}],[6,{"n":5.5,"e":6154}],[5,{"n":5.5,"e":6166}],[4,{"n":7.5,"e":6175,"g":1}],[1,{"n":6,"e":6207}]],"fo":[[6166,[{"t":"Y"}]]],"a":{"m":26,"a":41,"M":60,"n":53}}],[49,{"n":"Kurzawa","f":"Layvin","fp":"DL","r":7,"c":2,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Og":1,"Os":69,"On":14,"Oa":4.93,"Od":0.96,"pd":14},"p":[[-28,{"n":null,"e":3657,"d":1}],[-24,{"n":5,"e":3695}],[-23,{"n":4.5,"e":3700}],[-22,{"n":7,"e":3715,"g":1}],[-18,{"n":5,"e":3756,"s":1}],[-16,{"n":6,"e":3775}],[-15,{"n":6.5,"e":3780}],[-13,{"n":4.5,"e":3798}],[-12,{"n":4.5,"e":3811,"s":1}],[-10,{"n":4.5,"e":3834,"s":1}],[-8,{"n":5,"e":3849}],[-7,{"n":3.5,"e":3865}],[-6,{"n":4.5,"e":3870,"s":1}],[3,{"n":4,"e":6187,"s":1}],[2,{"n":4.5,"e":6190}]],"fo":[[6187,[{"t":"R"}]]]}],[180,{"n":"Kimpembe","f":"Presnel","fp":"DC","r":20,"c":2,"s":{"s":39.5,"n":7,"a":5.64,"d":0.75,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":0.75,"Os":123,"On":22,"Oa":5.59,"Od":0.68,"pd":22},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3666}],[-26,{"n":5,"e":3674}],[-24,{"n":5,"e":3695}],[-23,{"n":5,"e":3700}],[-22,{"n":6,"e":3715}],[-21,{"n":6,"e":3719}],[-17,{"n":5,"e":3761}],[-15,{"n":6,"e":3780}],[-14,{"n":5.5,"e":3795}],[-12,{"n":4.5,"e":3811}],[-11,{"n":6.5,"e":3823}],[-10,{"n":5.5,"e":3834}],[-9,{"n":7,"e":3844}],[-7,{"n":5.5,"e":3865}],[7,{"n":7,"e":6144}],[6,{"n":5,"e":6154}],[-6,{"n":5,"e":3870,"s":1}],[5,{"n":6,"e":6166}],[4,{"n":6,"e":6175}],[3,{"n":5.5,"e":6187}],[2,{"n":5,"e":6190}],[1,{"n":5,"e":6207,"s":1}]],"fo":[[6154,[{"t":"Y"}]]],"a":{"m":19,"a":30,"M":57,"n":44}}],[432,{"n":"Diallo","f":"Abdou","fp":"DC","r":7,"c":2,"s":{"s":26,"n":5,"a":5.2,"d":0.57,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.58,"Os":89.5,"On":17,"Oa":5.26,"Od":0.71,"pd":17},"p":[[-28,{"n":null,"e":3657,"d":1}],[-21,{"n":5,"e":3719}],[-19,{"n":5,"e":3744}],[-18,{"n":6,"e":3756}],[-17,{"n":5.5,"e":3761,"s":1}],[-16,{"n":6.5,"e":3775}],[-13,{"n":6,"e":3798}],[-12,{"n":4,"e":3811}],[-10,{"n":5,"e":3834}],[-9,{"n":5,"e":3844,"s":1}],[-8,{"n":6,"e":3849}],[-7,{"n":4,"e":3865}],[7,{"n":6,"e":6144}],[-6,{"n":5.5,"e":3870}],[6,{"n":5,"e":6154,"s":1}],[5,{"n":5,"e":6166,"s":1}],[2,{"n":5.5,"e":6190,"s":1}],[1,{"n":4.5,"e":6207}]],"fo":[[6207,[{"t":"Y"},{"t":"O"}]]],"a":{"m":8,"a":9,"M":14,"n":5}}],[510,{"n":"Letellier","f":"Alexandre","fp":"G","r":3,"c":2,"s":{"Os":22,"On":5,"Oa":4.4,"Od":0.82,"pg":5},"p":[[-27,{"n":5,"e":4807}],[-26,{"n":5.5,"e":4813}],[-25,{"n":3.5,"e":4825}],[-24,{"n":4,"e":4834}],[-23,{"n":4,"e":4844}]]}],[647,{"n":"Herrera","f":"Ander","fp":"MD","r":8,"c":2,"s":{"s":38.5,"n":7,"a":5.5,"d":0.82,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":0.82,"Og":1,"Os":76.5,"On":14,"Oa":5.46,"Od":0.82,"pd":2,"pm":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-25,{"n":4.5,"e":3678,"g":1}],[-21,{"n":4.5,"e":3719,"s":1}],[-11,{"n":6,"e":3823}],[-10,{"n":5.5,"e":3834}],[-9,{"n":7,"e":3844}],[-7,{"n":5,"e":3865}],[7,{"n":7,"e":6144,"s":1}],[-6,{"n":5.5,"e":3870}],[6,{"n":5.5,"e":6154,"s":1}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":5.5,"e":6175,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":5,"e":6190}],[1,{"n":6,"e":6207}]],"a":{"m":9,"a":11,"M":20,"n":18}}],[657,{"n":"Idrissa Gueye","f":"","fp":"MD","r":23,"c":2,"s":{"g":1,"s":35.5,"n":6,"a":5.92,"d":1.02,"Sg":1,"Ss":14,"Sn":2,"Sa":7,"Og":2,"Os":138.5,"On":23,"Oa":6.02,"Od":1.05,"pm":23},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":7,"e":3666}],[-26,{"n":5.5,"e":3674,"s":1}],[-25,{"n":4,"e":3678}],[-24,{"n":6,"e":3695}],[-23,{"n":6,"e":3700}],[-22,{"n":7,"e":3715}],[-21,{"n":6.5,"e":3719}],[-20,{"n":4.5,"e":3734}],[-17,{"n":4.5,"e":3761}],[-16,{"n":7,"e":3775}],[-15,{"n":5.5,"e":3780}],[-14,{"n":7,"e":3795}],[-13,{"n":7,"e":3798}],[-12,{"n":5.5,"e":3811}],[-9,{"n":8,"e":3844,"g":1}],[-8,{"n":5.5,"e":3849}],[7,{"n":7,"e":6144}],[-6,{"n":6.5,"e":3870}],[6,{"n":7,"e":6154,"g":1,"s":1}],[4,{"n":5,"e":6175}],[3,{"n":4.5,"e":6187}],[2,{"n":6,"e":6190}],[1,{"n":6,"e":6207}]],"fo":[[6175,[{"t":"I"}]],[6144,[{"t":"Y"}]]],"a":{"m":23,"a":30,"M":42,"n":26}}],[1155,{"n":"Neymar","f":"","fp":"A","r":41,"c":2,"s":{"g":2,"s":18,"n":3,"a":6,"d":2.29,"Og":14,"Os":115.5,"On":17,"Oa":6.79,"Od":1.54,"pm":10,"pa":7},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":6.5,"e":3674}],[-22,{"n":8,"e":3715}],[-21,{"n":8,"e":3719,"g":2}],[-20,{"n":8,"e":3734,"g":2}],[-19,{"n":8,"e":3744,"g":1}],[-18,{"n":8.5,"e":3756,"g":1}],[-17,{"n":8,"e":3761,"g":1}],[-16,{"n":6,"e":3775,"g":1}],[-15,{"n":7,"e":3780,"g":1}],[-14,{"n":5,"e":3795}],[-9,{"n":7,"e":3844,"g":1}],[-8,{"n":6.5,"e":3849,"g":1}],[-7,{"n":3.5,"e":3865}],[-6,{"n":7.5,"e":3870,"g":1}],[6,{"n":8.5,"e":6154,"g":2}],[5,{"n":5.5,"e":6166}],[3,{"n":4,"e":6187}]],"fo":[[6187,[{"t":"R"},{"t":"Y"}]]],"a":{"m":41,"a":101,"M":174,"n":62}}],[1325,{"n":"Jesé","f":"","fp":"A","r":2,"c":2,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[7,{"n":4.5,"e":6144,"s":1}],[2,{"n":4,"e":6190,"s":1}]]}],[1605,{"n":"Navas","f":"Keylor","fp":"G","r":24,"c":2,"s":{"s":30,"n":5,"a":6,"d":0.71,"Ss":24,"Sn":4,"Sa":6,"Sd":0.82,"Os":136,"On":25,"Oa":5.44,"Od":1.15,"pg":25},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6.5,"e":3666}],[-25,{"n":3,"e":3678}],[-24,{"n":3,"e":3695}],[-23,{"n":6,"e":3700}],[-22,{"n":6,"e":3715}],[-21,{"n":6,"e":3719}],[-20,{"n":4,"e":3734}],[-19,{"n":5,"e":3744}],[-18,{"n":6,"e":3756}],[-17,{"n":5,"e":3761}],[-16,{"n":6.5,"e":3775}],[-15,{"n":5.5,"e":3780}],[-14,{"n":7.5,"e":3795}],[-12,{"n":4,"e":3811}],[-11,{"n":6,"e":3823}],[-10,{"n":4.5,"e":3834}],[-9,{"n":6,"e":3844}],[-8,{"n":5.5,"e":3849}],[-7,{"n":4,"e":3865}],[7,{"n":6,"e":6144}],[-6,{"n":6,"e":3870}],[6,{"n":5,"e":6154}],[5,{"n":6,"e":6166}],[4,{"n":7,"e":6175}],[1,{"n":6,"e":6207}]],"a":{"m":21,"a":32,"M":50,"n":21}}],[1609,{"n":"Sarabia","f":"Pablo","fp":"MO","r":9,"c":2,"s":{"g":1,"s":36.5,"n":7,"a":5.21,"d":1.65,"Sg":1,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":1.65,"Og":5,"Os":125,"On":23,"Oa":5.43,"Od":1.35,"pm":14,"pa":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":8,"e":3666,"g":1}],[-26,{"n":5,"e":3674,"s":1}],[-24,{"n":5.5,"e":3695,"s":1}],[-23,{"n":5,"e":3700}],[-22,{"n":7.5,"e":3715,"g":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-19,{"n":5,"e":3744,"s":1}],[-17,{"n":5.5,"e":3761}],[-16,{"n":5,"e":3775,"s":1}],[-15,{"n":6,"e":3780,"g":1,"s":1}],[-13,{"n":5.5,"e":3798}],[-11,{"n":4.5,"e":3823,"s":1}],[-10,{"n":5,"e":3834}],[-9,{"n":8,"e":3844,"g":1}],[-8,{"n":4,"e":3849}],[-7,{"n":4.5,"e":3865}],[7,{"n":8.5,"e":6144,"g":1}],[6,{"n":6,"e":6154,"s":1}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":3.5,"e":6190}],[1,{"n":4,"e":6207}]],"fo":[[6190,[{"t":"Y"}]]],"a":{"m":10,"a":20,"M":38,"n":25}}],[1626,{"n":"Rico","f":"Sergio","fp":"G","r":7,"c":2,"s":{"s":4.5,"n":1,"a":4.5,"Os":13,"On":3,"Oa":4.33,"Od":1.26,"pg":3},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":3,"e":3674}],[-13,{"n":5.5,"e":3798}],[3,{"n":4.5,"e":6187}]]}],[1797,{"n":"Rafinha","f":"","fp":"MO","r":8,"c":2,"s":{"s":6.5,"n":1,"a":6.5,"Ss":6.5,"Sn":1,"Sa":6.5,"Og":4,"Os":169,"On":29,"Oa":5.83,"Od":1.01,"pm":28,"pa":1},"p":[[-37,{"n":4.5,"e":4320}],[-36,{"n":5,"e":4334}],[-35,{"n":5.5,"e":4340,"s":1}],[-34,{"n":5,"e":4350}],[-33,{"n":5,"e":4362}],[-32,{"n":6,"e":4370,"s":1}],[-31,{"n":7,"e":4385}],[-30,{"n":8,"e":4390,"g":2}],[-27,{"n":5.5,"e":4422}],[-24,{"n":5.5,"e":4454}],[-23,{"n":7.5,"e":4460}],[-22,{"n":5.5,"e":4476}],[-21,{"n":5.5,"e":4480}],[-19,{"n":6.5,"e":4500}],[-18,{"n":5,"e":4511}],[-17,{"n":8,"e":4521,"g":1}],[-11,{"n":5.5,"e":4584}],[-9,{"n":4.5,"e":4598}],[-6,{"n":5.5,"e":4629}],[-29,{"n":6,"e":4406}],[-28,{"n":5,"e":4409}],[-26,{"n":7,"e":4431}],[-25,{"n":6,"e":4441}],[-20,{"n":7,"e":4488,"g":1}],[-16,{"n":4.5,"e":4531}],[-15,{"n":6,"e":4541,"s":1}],[-8,{"n":6,"e":4609}],[-7,{"n":4.5,"e":4621,"s":1}],[7,{"n":6.5,"e":6144}]],"fo":[[4320,[{"t":"Y"}]],[4334,[{"t":"Y"}]],[4385,[{"t":"Y"}]],[6144,[{"t":"Y"}]]],"a":{"m":9,"a":14,"M":27,"n":16}}],[2627,{"n":"Dagba","f":"Colin","fp":"DL","r":6,"c":2,"s":{"s":31,"n":6,"a":5.17,"d":0.41,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Os":60,"On":12,"Oa":5,"Od":0.37,"pd":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-21,{"n":5,"e":3719,"s":1}],[-15,{"n":5,"e":3780}],[-14,{"n":4.5,"e":3795,"s":1}],[-13,{"n":5,"e":3798}],[-12,{"n":4.5,"e":3811}],[-11,{"n":5,"e":3823}],[7,{"n":6,"e":6144,"s":1}],[6,{"n":5,"e":6154,"s":1}],[4,{"n":5,"e":6175,"s":1}],[3,{"n":5,"e":6187,"s":1}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":5,"e":6207}]],"a":{"m":7,"a":8,"M":12,"n":6}}],[2821,{"n":"Kehrer","f":"Thilo","fp":"DL","r":6,"c":2,"s":{"s":9,"n":2,"a":4.5,"Og":1,"Os":39,"On":8,"Oa":4.88,"Od":0.69,"pd":8},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3666}],[-26,{"n":4.5,"e":3674}],[-24,{"n":4.5,"e":3695}],[-23,{"n":6,"e":3700,"g":1}],[-19,{"n":4.5,"e":3744,"s":1}],[-18,{"n":4.5,"e":3756,"s":1}],[3,{"n":4.5,"e":6187}],[2,{"n":4.5,"e":6190}]],"a":{"m":8,"a":10,"M":16,"n":11}}],[2864,{"n":"Bernat","f":"Juan","fp":"DL","r":3,"c":2,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":86,"On":17,"Oa":5.06,"Od":0.81,"pd":15,"pm":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666}],[-26,{"n":4,"e":3674}],[-25,{"n":6,"e":3678,"s":1}],[-20,{"n":3.5,"e":3734}],[-19,{"n":7,"e":3744}],[-18,{"n":5,"e":3756}],[-17,{"n":5.5,"e":3761}],[-14,{"n":5,"e":3795}],[-12,{"n":4.5,"e":3811}],[-11,{"n":5,"e":3823}],[-9,{"n":5.5,"e":3844}],[-8,{"n":5,"e":3849,"s":1}],[-7,{"n":4.5,"e":3865}],[-6,{"n":6,"e":3870}],[3,{"n":4.5,"e":6187}],[2,{"n":5,"e":6190}],[1,{"n":5,"e":6207,"s":1}]],"fo":[[6187,[{"t":"Y"}]],[6190,[{"t":"Y"}]]],"a":{"m":15,"a":21,"M":31,"n":14}}],[3367,{"n":"Paredes","f":"Leandro","fp":"MD","r":11,"c":2,"s":{"s":19,"n":4,"a":4.75,"d":0.65,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Oao":1,"Os":95,"On":18,"Oa":5.28,"Od":1.05,"pm":18},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666,"s":1}],[-25,{"n":5.5,"e":3678}],[-24,{"n":5,"e":3695,"s":1}],[-23,{"n":5,"e":3700,"s":1}],[-22,{"n":5,"e":3715,"s":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-19,{"n":5.5,"e":3744}],[-18,{"n":7.5,"e":3756}],[-17,{"n":5,"e":3761,"a":1}],[-12,{"n":4,"e":3811}],[-11,{"n":5.5,"e":3823,"s":1}],[-10,{"n":6,"e":3834}],[-9,{"n":8,"e":3844}],[-7,{"n":4.5,"e":3865}],[7,{"n":4.5,"e":6144}],[6,{"n":5,"e":6154}],[5,{"n":5.5,"e":6166}],[3,{"n":4,"e":6187,"s":1}]],"fo":[[6144,[{"t":"I"}]],[6187,[{"t":"Y"},{"t":"O"}]]],"a":{"m":10,"a":15,"M":29,"n":16}}],[4035,{"n":"Bakker","f":"Mitchel","fp":"DL","r":15,"c":2,"s":{"s":35.5,"n":6,"a":5.92,"d":0.8,"Ss":25.5,"Sn":4,"Sa":6.38,"Sd":0.48,"Os":39,"On":7,"Oa":5.57,"Od":1.17,"pd":7},"p":[[-28,{"n":null,"e":3657,"d":1}],[-25,{"n":3.5,"e":3678}],[7,{"n":6,"e":6144}],[6,{"n":7,"e":6154}],[5,{"n":6.5,"e":6166}],[4,{"n":6,"e":6175}],[2,{"n":5,"e":6190,"s":1}],[1,{"n":5,"e":6207}]],"fo":[[6175,[{"t":"Y"}]]],"a":{"m":4,"a":19,"M":35,"n":11}}],[4293,{"n":"Kean","f":"Moise","fp":"A","r":8,"c":2,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":119.5,"On":26,"Oa":4.6,"Od":0.79,"pa":26},"p":[[2,{"n":4,"e":6915,"s":1}],[1,{"n":4.5,"e":6925,"s":1}],[-36,{"n":4,"e":3952,"s":1}],[-35,{"n":4,"e":3967,"s":1}],[-31,{"n":4.5,"e":4004,"s":1}],[-30,{"n":4.5,"e":4011,"s":1}],[-17,{"n":3.5,"e":4144,"s":1}],[-38,{"n":7,"e":3932,"g":1}],[-34,{"n":4,"e":3973,"s":1}],[-33,{"n":4.5,"e":3986,"s":1}],[-29,{"n":4.5,"e":4020,"s":1}],[-28,{"n":5,"e":4031,"s":1}],[-27,{"n":4.5,"e":4038,"s":1}],[-25,{"n":5.5,"e":4066,"s":1}],[-24,{"n":6.5,"e":4070,"g":1}],[-23,{"n":5,"e":4087}],[-21,{"n":4.5,"e":4102,"s":1}],[-20,{"n":4.5,"e":4113}],[-19,{"n":4,"e":4122,"s":1}],[-18,{"n":4,"e":4131,"s":1}],[-15,{"n":4,"e":4167,"s":1}],[-14,{"n":4.5,"e":4170,"s":1}],[-9,{"n":4.5,"e":4222,"s":1}],[-8,{"n":4,"e":4229,"s":1}],[-7,{"n":4.5,"e":4246,"s":1}],[7,{"n":5.5,"e":6144}]],"fo":[[4004,[{"t":"Y"}]]],"a":{"m":8,"a":15,"M":57,"n":13}}],[4603,{"n":"Icardi","f":"Mauro","fp":"A","r":33,"c":2,"s":{"g":2,"s":24,"n":4,"a":6,"d":1.35,"Og":14,"Os":134.5,"On":23,"Oa":5.85,"Od":1.11,"pa":23},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3666,"g":1,"s":1}],[-26,{"n":4.5,"e":3674,"s":1}],[-25,{"n":7,"e":3678,"g":1}],[-24,{"n":5,"e":3695}],[-23,{"n":6.5,"e":3700,"g":1}],[-22,{"n":4.5,"e":3715,"s":1}],[-21,{"n":5,"e":3719}],[-20,{"n":4.5,"e":3734}],[-19,{"n":7,"e":3744,"g":1}],[-18,{"n":6.5,"e":3756,"g":1}],[-17,{"n":6.5,"e":3761,"g":1}],[-16,{"n":6,"e":3775,"s":1}],[-15,{"n":5,"e":3780}],[-14,{"n":6.5,"e":3795,"g":1}],[-13,{"n":6,"e":3798,"g":1,"s":1}],[-12,{"n":3.5,"e":3811}],[-11,{"n":7.5,"e":3823,"g":2}],[-10,{"n":7,"e":3834,"g":1}],[-9,{"n":6,"e":3844,"g":1}],[6,{"n":5.5,"e":6154}],[5,{"n":8,"e":6166,"g":2}],[4,{"n":5.5,"e":6175}],[1,{"n":5,"e":6207}]],"a":{"m":34,"a":60,"M":171,"n":42}}],[4621,{"n":"Florenzi","f":"Alessandro","fp":"DL","r":19,"c":2,"s":{"g":2,"s":33,"n":5,"a":6.6,"d":1.08,"Sg":2,"Ss":33,"Sn":5,"Sa":6.6,"Sd":1.08,"Og":2,"Os":142,"On":27,"Oa":5.26,"Od":1.03,"pd":24,"pm":3},"p":[[-38,{"n":5,"e":4316}],[-37,{"n":5,"e":4327,"s":1}],[-33,{"n":4.5,"e":4367}],[-32,{"n":4.5,"e":4377}],[-31,{"n":5,"e":4380,"s":1}],[-30,{"n":6.5,"e":4397}],[-28,{"n":4.5,"e":4417}],[-27,{"n":4.5,"e":4418}],[-23,{"n":2.5,"e":4462}],[-19,{"n":5,"e":5643}],[-18,{"n":5,"e":5656}],[-17,{"n":5.5,"e":5659}],[-16,{"n":6,"e":5676}],[-15,{"n":5,"e":5680,"s":1}],[-13,{"n":6,"e":5702}],[-10,{"n":5,"e":5737,"s":1}],[-8,{"n":5,"e":5755}],[-6,{"n":5,"e":5771}],[-5,{"n":4.5,"e":5784}],[-36,{"n":5,"e":4332,"s":1}],[-35,{"n":5,"e":4347}],[-22,{"n":5,"e":4476}],[7,{"n":8,"e":6144,"g":1}],[6,{"n":7.5,"e":6154,"g":1}],[5,{"n":6,"e":6166}],[4,{"n":6,"e":6175}],[3,{"n":5.5,"e":6187}]],"fo":[[6187,[{"t":"Y"}]]],"a":{"m":16,"a":26,"M":53,"n":33}}],[6702,{"n":"Pembele","f":"Timothee","fp":"DC","r":2,"c":2}],[6703,{"n":"Ruiz-Atil","f":"Kays","fp":"MD","r":4,"c":2,"s":{"s":13.5,"n":3,"a":4.5,"d":0.87,"Ss":5,"Sn":1,"Sa":5,"Os":13.5,"On":3,"Oa":4.5,"Od":0.87,"pm":2,"pa":1},"p":[[7,{"n":5,"e":6144,"s":1}],[5,{"n":5,"e":6166,"s":1}],[2,{"n":3.5,"e":6190}]],"a":{"m":2,"a":3,"M":4,"n":12}}],[6783,{"n":"Bitshiabu","f":"El Chadaille","fp":"DC","r":2,"c":2}],[6790,{"n":"Nagera","f":"Kenny","fp":"A","r":1,"c":2}],[6791,{"n":"Simons","f":"Xavi","fp":"MD","r":1,"c":2}],[6792,{"n":"Michut","f":"Edouard","fp":"MD","r":1,"c":2}],[6793,{"n":"Kamara","f":"Abdoulaye","fp":"MD","r":1,"c":2}],[6911,{"n":"Camara","f":"Ousmane","fp":"MD","r":1,"c":2,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[2,{"n":5,"e":6575,"s":1}]]}],[6912,{"n":"Hadjam","f":"Jaouen","fp":"DL","r":1,"c":2}],[7269,{"n":"Fadiga","f":"Bandiougou","fp":"MO","r":4,"c":2,"s":{"s":9,"n":2,"a":4.5,"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[4,{"n":4.5,"e":6175,"s":1}],[1,{"n":4.5,"e":6207,"s":1}]]}],[7331,{"n":"Kapo","f":"Maxen","fp":"MD","r":1,"c":2}],[7385,{"n":"Pembele","f":"Andy","fp":"MO","r":1,"c":2}],[7416,{"n":"Danilo Pereira","f":"","fp":"MD","r":8,"c":2,"a":{"m":9,"a":14,"M":20,"n":11}}],[341,{"n":"Donis","f":"Anastasios","fp":"A","r":6,"c":68,"s":{"s":11,"n":3,"a":3.67,"d":1.44,"Ss":2,"Sn":1,"Sa":2,"Os":73.5,"On":17,"Oa":4.32,"Od":0.85,"pm":4,"pa":13},"p":[[-27,{"n":6,"e":3662}],[-26,{"n":4.5,"e":3676,"s":1}],[-25,{"n":5,"e":3686,"s":1}],[-21,{"n":3.5,"e":3726}],[-20,{"n":4.5,"e":3733,"s":1}],[-19,{"n":4,"e":3745,"s":1}],[-15,{"n":5,"e":3785}],[-14,{"n":4,"e":3794,"s":1}],[-13,{"n":3.5,"e":3805}],[-11,{"n":5,"e":3824,"s":1}],[-10,{"n":4.5,"e":3836,"s":1}],[-9,{"n":4.5,"e":3845}],[-8,{"n":4.5,"e":3856,"s":1}],[-7,{"n":4,"e":3865}],[7,{"n":2,"e":6145,"s":1}],[5,{"n":4.5,"e":6166}],[2,{"n":4.5,"e":6191,"s":1}]],"fo":[[6145,[{"t":"R"}]]]}],[346,{"n":"Abdelhamid","f":"Yunis","fp":"DC","r":21,"c":68,"s":{"g":1,"s":25.5,"n":6,"a":4.25,"d":0.88,"Sg":1,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":1.11,"Og":4,"Os":146.5,"On":28,"Oa":5.23,"Od":1.07,"pd":28},"p":[[-28,{"n":6,"e":3654}],[-27,{"n":6,"e":3662}],[-26,{"n":6,"e":3676}],[-25,{"n":5.5,"e":3686}],[-24,{"n":2.5,"e":3697}],[-23,{"n":6,"e":3701,"g":1}],[-22,{"n":7,"e":3709,"g":1}],[-21,{"n":5,"e":3726}],[-20,{"n":4.5,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":5,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":5.5,"e":3768}],[-15,{"n":6,"e":3785}],[-14,{"n":6,"e":3794}],[-13,{"n":5.5,"e":3805}],[-12,{"n":4.5,"e":3814}],[-11,{"n":6,"e":3824}],[-10,{"n":7,"e":3836,"g":1}],[-9,{"n":6,"e":3845}],[-8,{"n":4.5,"e":3856}],[-7,{"n":6,"e":3865}],[7,{"n":4,"e":6145}],[6,{"n":5.5,"e":6155,"g":1}],[5,{"n":5,"e":6166}],[4,{"n":3,"e":6172}],[2,{"n":4,"e":6191}],[1,{"n":4,"e":6203}]],"fo":[[6172,[{"t":"Y"}]]],"a":{"m":22,"a":29,"M":41,"n":56}}],[563,{"n":"Cafaro","f":"Mathieu","fp":"MO","r":10,"c":68,"s":{"s":30,"n":6,"a":5,"d":0.32,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":93.5,"On":17,"Oa":5.5,"Od":0.68,"pm":17},"p":[[-23,{"n":5.5,"e":3701}],[-19,{"n":7,"e":3745,"g":1}],[-18,{"n":6,"e":3757}],[-17,{"n":5.5,"e":3765}],[-14,{"n":7,"e":3794}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3814}],[-11,{"n":5.5,"e":3824}],[-10,{"n":6,"e":3836}],[-8,{"n":5,"e":3856}],[-7,{"n":5.5,"e":3865}],[7,{"n":5,"e":6145}],[6,{"n":5,"e":6155,"s":1}],[4,{"n":5,"e":6172}],[3,{"n":5.5,"e":6178}],[2,{"n":4.5,"e":6191}],[1,{"n":5,"e":6203}]],"fo":[[6172,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":12,"n":8}}],[1459,{"n":"Diouf","f":"Yehvann","fp":"G","r":7,"c":68,"s":{"s":5.5,"n":1,"a":5.5,"Os":5.5,"On":1,"Oa":5.5,"pg":1},"p":[[6,{"n":5.5,"e":6155,"s":1}]],"a":{"m":3,"a":6,"M":8,"n":6}}],[2219,{"n":"Hornby","f":"Fraser","fp":"MO","r":6,"c":68,"s":{"s":13,"n":3,"a":4.33,"d":0.58,"Os":13,"On":3,"Oa":4.33,"Od":0.58,"pa":3},"p":[[5,{"n":4,"e":6166,"s":1}],[3,{"n":5,"e":6178,"s":1}],[2,{"n":4,"e":6191,"s":1}]],"fo":[[6191,[{"t":"Y"}]]]}],[2667,{"n":"Konan","f":"Ghislain","fp":"DL","r":9,"c":68,"s":{"s":27,"n":6,"a":4.5,"d":0.45,"Os":83.5,"On":18,"Oa":4.64,"Od":0.97,"pd":18},"p":[[-28,{"n":4,"e":3654}],[-27,{"n":5.5,"e":3662}],[-24,{"n":4.5,"e":3697}],[-22,{"n":6,"e":3709}],[-21,{"n":3.5,"e":3726}],[-20,{"n":3,"e":3733}],[-16,{"n":4.5,"e":3768}],[-11,{"n":4.5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":5.5,"e":3845}],[-8,{"n":3.5,"e":3856}],[-7,{"n":7,"e":3865}],[6,{"n":5,"e":6155}],[5,{"n":4.5,"e":6166}],[4,{"n":4,"e":6172}],[3,{"n":5,"e":6178}],[2,{"n":4,"e":6191}],[1,{"n":4.5,"e":6203}]],"fo":[[6172,[{"t":"Y"}]]]}],[2705,{"n":"Doumbia","f":"Moussa","fp":"MO","r":8,"c":68,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":107.5,"On":21,"Oa":5.12,"Od":0.74,"pm":16,"pa":5},"p":[[-28,{"n":6,"e":3654}],[-27,{"n":5.5,"e":3662,"s":1}],[-26,{"n":4,"e":3676}],[-25,{"n":5,"e":3686}],[-24,{"n":4,"e":3697}],[-22,{"n":5.5,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":5,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":5.5,"e":3757,"s":1}],[-17,{"n":6.5,"e":3765,"g":1,"s":1}],[-16,{"n":5,"e":3768}],[-15,{"n":5.5,"e":3785}],[-14,{"n":5,"e":3794}],[-12,{"n":3.5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":6,"e":3836}],[-9,{"n":6,"e":3845}],[-8,{"n":5.5,"e":3856}],[-7,{"n":4.5,"e":3865,"s":1}],[7,{"n":5,"e":6145,"s":1}]]}],[2724,{"n":"Chavalerin","f":"Xavier","fp":"MD","r":16,"c":68,"s":{"s":35.5,"n":7,"a":5.07,"d":0.73,"Ss":35.5,"Sn":7,"Sa":5.07,"Sd":0.73,"Og":1,"Os":135.5,"On":25,"Oa":5.42,"Od":0.96,"pm":25},"p":[[-26,{"n":5,"e":3676}],[-25,{"n":5.5,"e":3686}],[-24,{"n":4,"e":3697}],[-23,{"n":7,"e":3701}],[-22,{"n":7,"e":3709}],[-21,{"n":4,"e":3726}],[-20,{"n":4.5,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":6,"e":3757}],[-17,{"n":6.5,"e":3765}],[-15,{"n":7,"e":3785}],[-14,{"n":5,"e":3794}],[-12,{"n":5,"e":3814}],[-11,{"n":4.5,"e":3824}],[-10,{"n":5.5,"e":3836}],[-9,{"n":5.5,"e":3845}],[-8,{"n":6,"e":3856,"g":1}],[-7,{"n":7,"e":3865}],[7,{"n":4,"e":6145}],[6,{"n":6,"e":6155}],[5,{"n":5,"e":6166}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6178}],[2,{"n":4.5,"e":6191}],[1,{"n":6,"e":6203}]],"fo":[[6145,[{"t":"Y"}]],[6155,[{"t":"Y"}]],[6191,[{"t":"Y"}]]],"a":{"m":16,"a":19,"M":21,"n":10}}],[2862,{"n":"Foket","f":"Thomas","fp":"DL","r":10,"c":68,"s":{"s":25.5,"n":6,"a":4.25,"d":0.76,"Ss":21.5,"Sn":5,"Sa":4.3,"Sd":0.84,"Os":134,"On":27,"Oa":4.96,"Od":0.83,"pd":27},"p":[[-28,{"n":6,"e":3654}],[-27,{"n":4.5,"e":3662}],[-26,{"n":5,"e":3676}],[-25,{"n":6,"e":3686}],[-23,{"n":4.5,"e":3701}],[-22,{"n":5,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":4,"e":3733}],[-19,{"n":5,"e":3745}],[-18,{"n":6.5,"e":3757}],[-17,{"n":5,"e":3765}],[-16,{"n":5,"e":3768}],[-15,{"n":5,"e":3785}],[-14,{"n":5.5,"e":3794}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3814}],[-11,{"n":5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":5.5,"e":3845}],[-8,{"n":4,"e":3856}],[-7,{"n":7,"e":3865}],[7,{"n":3,"e":6145}],[6,{"n":4.5,"e":6155}],[5,{"n":4,"e":6166}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6178}],[1,{"n":4,"e":6203}]],"fo":[[6166,[{"t":"Y"}]],[6203,[{"t":"Y"}]]],"a":{"m":11,"a":15,"M":21,"n":20}}],[2951,{"n":"Dia","f":"Boulaye","fp":"A","r":20,"c":68,"s":{"g":3,"s":28,"n":5,"a":5.6,"d":0.55,"Og":9,"Os":117,"On":23,"Oa":5.09,"Od":1.07,"pm":1,"pa":22},"p":[[-27,{"n":4.5,"e":3662,"s":1}],[-26,{"n":6,"e":3676,"g":1}],[-25,{"n":5,"e":3686}],[-24,{"n":3.5,"e":3697}],[-23,{"n":5.5,"e":3701}],[-22,{"n":6.5,"e":3709,"g":1,"s":1}],[-20,{"n":3.5,"e":3733}],[-18,{"n":3.5,"e":3757}],[-17,{"n":6.5,"e":3765,"g":1}],[-16,{"n":5,"e":3768}],[-15,{"n":6,"e":3785,"g":1}],[-14,{"n":4,"e":3794}],[-12,{"n":5,"e":3814}],[-11,{"n":3.5,"e":3824}],[-10,{"n":5,"e":3836}],[-9,{"n":6.5,"e":3845,"g":1}],[-8,{"n":3.5,"e":3856}],[-7,{"n":6,"e":3865,"g":1,"s":1}],[6,{"n":6,"e":6155,"g":1}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":6,"e":6172,"g":1}],[3,{"n":5,"e":6178}],[1,{"n":6,"e":6203,"g":1}]],"a":{"m":18,"a":29,"M":50,"n":52}}],[3364,{"n":"Zeneli","f":"Arbër","fp":"MO","r":11,"c":68,"s":{"s":30.5,"n":6,"a":5.08,"d":0.49,"Os":35,"On":7,"Oa":5,"Od":0.5,"pm":4,"pa":3},"p":[[-27,{"n":4.5,"e":3662,"s":1}],[6,{"n":6,"e":6155}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":5,"e":6172}],[3,{"n":5,"e":6178}],[2,{"n":4.5,"e":6191,"s":1}],[1,{"n":5,"e":6203,"s":1}]],"a":{"m":6,"a":10,"M":21,"n":14}}],[3365,{"n":"Moreto Cassamã","f":"","fp":"MD","r":10,"c":68,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":0.61,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Os":72,"On":13,"Oa":5.54,"Od":1.01,"pm":13},"p":[[-28,{"n":6.5,"e":3654}],[-26,{"n":6,"e":3676}],[-25,{"n":5,"e":3686}],[-24,{"n":3.5,"e":3697}],[-23,{"n":6,"e":3701}],[-22,{"n":7.5,"e":3709}],[-16,{"n":6,"e":3768}],[7,{"n":6,"e":6145,"g":1}],[5,{"n":5.5,"e":6166}],[4,{"n":4.5,"e":6172}],[3,{"n":5.5,"e":6178}],[2,{"n":4.5,"e":6191}],[1,{"n":5.5,"e":6203,"s":1}]],"fo":[[6145,[{"t":"R"}]],[6166,[{"t":"Y"}]],[6172,[{"t":"Y"}]]],"a":{"m":10,"a":10,"M":11,"n":9}}],[3766,{"n":"Munetsi","f":"Marshall","fp":"MD","r":8,"c":68,"s":{"s":22.5,"n":5,"a":4.5,"d":0.71,"Os":97.5,"On":19,"Oa":5.13,"Od":0.93,"pd":7,"pm":12},"p":[[-28,{"n":4.5,"e":3654,"s":1}],[-27,{"n":6,"e":3662}],[-26,{"n":5.5,"e":3676}],[-25,{"n":5.5,"e":3686}],[-24,{"n":3.5,"e":3697,"s":1}],[-20,{"n":5.5,"e":3733,"s":1}],[-19,{"n":5.5,"e":3745}],[-17,{"n":5.5,"e":3765}],[-16,{"n":6,"e":3768}],[-13,{"n":5,"e":3805}],[-12,{"n":4.5,"e":3814,"s":1}],[-10,{"n":5,"e":3836,"s":1}],[-9,{"n":5.5,"e":3845,"s":1}],[-7,{"n":7.5,"e":3865}],[6,{"n":5.5,"e":6155}],[4,{"n":3.5,"e":6172}],[3,{"n":4.5,"e":6178,"s":1}],[2,{"n":4.5,"e":6191}],[1,{"n":4.5,"e":6203}]],"fo":[[6191,[{"t":"I"}]],[6172,[{"t":"R"}]],[6155,[{"t":"Y"}]],[6178,[{"t":"Y"}]]]}],[3807,{"n":"Rajkovic","f":"Predrag","fp":"G","r":24,"c":68,"s":{"s":35,"n":7,"a":5,"d":1.71,"Ss":35,"Sn":7,"Sa":5,"Sd":1.71,"Os":159.5,"On":28,"Oa":5.7,"Od":1.29,"pg":28},"p":[[-28,{"n":8,"e":3654}],[-27,{"n":7.5,"e":3662}],[-26,{"n":5.5,"e":3676}],[-25,{"n":7,"e":3686}],[-23,{"n":6,"e":3701}],[-22,{"n":5.5,"e":3709}],[-21,{"n":5.5,"e":3726}],[-20,{"n":4.5,"e":3733}],[-19,{"n":6.5,"e":3745}],[-18,{"n":7,"e":3757}],[-17,{"n":5.5,"e":3765}],[-16,{"n":6,"e":3768}],[-15,{"n":4,"e":3785}],[-14,{"n":4.5,"e":3794}],[-13,{"n":6,"e":3805}],[-12,{"n":6,"e":3814}],[-11,{"n":6,"e":3824}],[-10,{"n":6,"e":3836}],[-9,{"n":6.5,"e":3845}],[-8,{"n":4,"e":3856}],[-7,{"n":7,"e":3865}],[7,{"n":2.5,"e":6145}],[6,{"n":4,"e":6155}],[5,{"n":6,"e":6166}],[4,{"n":4.5,"e":6172}],[3,{"n":8,"e":6178}],[2,{"n":5,"e":6191}],[1,{"n":5,"e":6203}]],"fo":[[6191,[{"t":"Y"}]]],"a":{"m":25,"a":32,"M":45,"n":57}}],[4695,{"n":"Berisha","f":"Valon","fp":"MO","r":8,"c":68,"s":{"s":27.5,"n":6,"a":4.58,"d":0.38,"Os":42.5,"On":9,"Oa":4.72,"Od":0.36,"pm":9},"p":[[-19,{"n":5,"e":5641,"s":1}],[-12,{"n":5,"e":5712,"s":1}],[-5,{"n":5,"e":5781,"s":1}],[6,{"n":5,"e":6155,"s":1}],[5,{"n":5,"e":6166}],[4,{"n":4.5,"e":6172}],[3,{"n":4.5,"e":6178,"s":1}],[2,{"n":4,"e":6191,"s":1}],[1,{"n":4.5,"e":6203,"s":1}]]}],[6162,{"n":"Mbuku","f":"Nathanael","fp":"A","r":9,"c":68,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Os":49.5,"On":10,"Oa":4.95,"Od":0.44,"pm":4,"pa":6},"p":[[-26,{"n":4.5,"e":3676,"s":1}],[-25,{"n":4.5,"e":3686,"s":1}],[-24,{"n":4.5,"e":3697,"s":1}],[-23,{"n":5.5,"e":3701,"s":1}],[-22,{"n":5.5,"e":3709}],[-15,{"n":5,"e":3785}],[-7,{"n":4.5,"e":3865}],[7,{"n":5,"e":6145}],[6,{"n":5.5,"e":6155}],[5,{"n":5,"e":6166}]]}],[6216,{"n":"Maresic","f":"Dario","fp":"DC","r":8,"c":68,"s":{"s":18,"n":4,"a":4.5,"d":0.82,"Os":24,"On":5,"Oa":4.8,"Od":0.97,"pd":5},"p":[[-28,{"n":6,"e":3654}],[5,{"n":3.5,"e":6166}],[4,{"n":5.5,"e":6172,"s":1}],[3,{"n":4.5,"e":6178}],[2,{"n":4.5,"e":6191}]]}],[6217,{"n":"Kutesa","f":"Dereck","fp":"MO","r":8,"c":68,"s":{"s":34.5,"n":7,"a":4.93,"d":0.53,"Ss":34.5,"Sn":7,"Sa":4.93,"Sd":0.53,"Og":1,"Os":94,"On":19,"Oa":4.95,"Od":0.62,"pm":19},"p":[[-28,{"n":5,"e":3654,"s":1}],[-24,{"n":5,"e":3697,"s":1}],[-23,{"n":4.5,"e":3701,"s":1}],[-21,{"n":3.5,"e":3726}],[-20,{"n":4.5,"e":3733,"s":1}],[-19,{"n":5,"e":3745,"s":1}],[-16,{"n":6.5,"e":3768,"g":1}],[-14,{"n":5,"e":3794,"s":1}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3814,"s":1}],[-11,{"n":5,"e":3824,"s":1}],[-8,{"n":5,"e":3856,"s":1}],[7,{"n":5,"e":6145}],[6,{"n":6,"e":6155,"s":1}],[5,{"n":5,"e":6166,"s":1}],[4,{"n":4.5,"e":6172,"s":1}],[3,{"n":4.5,"e":6178,"s":1}],[2,{"n":4.5,"e":6191}],[1,{"n":5,"e":6203}]],"fo":[[6145,[{"t":"I"}]],[6203,[{"t":"Y"}]]]}],[6402,{"n":"Sakava","f":"Moise","fp":"MD","r":1,"c":68}],[6510,{"n":"Touré","f":"El Bilal","fp":"A","r":9,"c":68,"s":{"g":1,"s":26.5,"n":6,"a":4.42,"d":1.46,"Og":3,"Os":55.5,"On":12,"Oa":4.63,"Od":1.4,"pa":12},"p":[[-28,{"n":7,"e":3654,"g":1}],[-27,{"n":4,"e":3662}],[-26,{"n":4.5,"e":3676}],[-25,{"n":6,"e":3686,"g":1}],[-24,{"n":3,"e":3697}],[-23,{"n":4.5,"e":3701,"s":1}],[6,{"n":3,"e":6155}],[5,{"n":3.5,"e":6166}],[4,{"n":4.5,"e":6172,"s":1}],[3,{"n":5,"e":6178}],[2,{"n":3.5,"e":6191}],[1,{"n":7,"e":6203,"g":1}]],"fo":[[6178,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":25,"n":33}}],[6511,{"n":"Sierhuis","f":"Kaj","fp":"A","r":5,"c":68,"s":{"s":22,"n":5,"a":4.4,"d":0.22,"Ss":9,"Sn":2,"Sa":4.5,"Os":26.5,"On":6,"Oa":4.42,"Od":0.2,"pa":6},"p":[[-23,{"n":4.5,"e":3701}],[7,{"n":4.5,"e":6145}],[6,{"n":4.5,"e":6155,"s":1}],[4,{"n":4.5,"e":6172,"s":1}],[2,{"n":4,"e":6191,"s":1}],[1,{"n":4.5,"e":6203,"s":1}]]}],[6706,{"n":"De Smet","f":"Thibault","fp":"DL","r":3,"c":68,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[7,{"n":4.5,"e":6145}]]}],[6710,{"n":"Faes","f":"Wout","fp":"DC","r":8,"c":68,"s":{"s":21.5,"n":5,"a":4.3,"d":0.91,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Os":21.5,"On":5,"Oa":4.3,"Od":0.91,"pd":5},"p":[[7,{"n":4,"e":6145}],[6,{"n":4.5,"e":6155}],[3,{"n":3,"e":6178}],[2,{"n":5.5,"e":6191}],[1,{"n":4.5,"e":6203}]],"fo":[[6178,[{"t":"R"}]],[6145,[{"t":"Y"}]],[6155,[{"t":"Y"}]],[6191,[{"t":"Y"}]],[6203,[{"t":"Y"}]]],"a":{"m":7,"a":11,"M":17,"n":8}}],[6784,{"n":"Ekitike","f":"Hugo","fp":"MO","r":1,"c":68,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[7,{"n":4.5,"e":6145,"s":1}]],"fo":[[6145,[{"t":"Y"}]]]}],[6800,{"n":"Dialy Ndiaye","f":"","fp":"G","r":1,"c":68,"a":{"m":2,"a":4,"M":5,"n":8}}],[7141,{"n":"Doucouré","f":"Fodé","fp":"DL","r":2,"c":68}],[7417,{"n":"Lopy","f":"Dion","fp":"MD","r":4,"c":68}],[7455,{"n":"Drammeh","f":"Mouhamadou","fp":"DC","r":1,"c":68}],[91,{"n":"Dalbert","f":"","fp":"DL","r":10,"c":20,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":143.5,"On":30,"Oa":4.78,"Od":0.8,"pd":5,"pm":25},"p":[[-37,{"n":6,"e":5459}],[-35,{"n":5,"e":5479}],[-32,{"n":5,"e":5510}],[-31,{"n":5,"e":5520,"s":1}],[-30,{"n":5,"e":5534}],[-29,{"n":4,"e":5540}],[-28,{"n":4.5,"e":5551}],[-27,{"n":4.5,"e":5560}],[-25,{"n":4.5,"e":5581}],[-24,{"n":5.5,"e":5595}],[-23,{"n":3,"e":5599}],[-22,{"n":4.5,"e":5611}],[-20,{"n":6,"e":5636}],[-19,{"n":5,"e":5639}],[-18,{"n":5.5,"e":5649}],[-16,{"n":5,"e":5671}],[-15,{"n":5,"e":5686}],[-14,{"n":5.5,"e":5690}],[-13,{"n":5,"e":5707}],[-12,{"n":3,"e":5709}],[-11,{"n":5,"e":5720}],[-10,{"n":5,"e":5736}],[-9,{"n":4,"e":5740}],[-8,{"n":4.5,"e":5748}],[-7,{"n":5.5,"e":5761}],[-6,{"n":4.5,"e":5772}],[-5,{"n":6,"e":5779}],[-4,{"n":5,"e":5788}],[-17,{"n":3,"e":5659}],[7,{"n":4.5,"e":6139}]],"fo":[[5479,[{"t":"I"}]],[5459,[{"t":"Y"}]],[5551,[{"t":"Y"}]],[5560,[{"t":"Y"}]],[6139,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":18,"n":12}}],[188,{"n":"Da Silva","f":"Damien","fp":"DC","r":20,"c":20,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":0.82,"Og":3,"Oao":1,"Os":134,"On":25,"Oa":5.36,"Od":0.94,"pd":25},"p":[[5,{"n":6,"e":6167}],[-28,{"n":7,"e":3655}],[-27,{"n":6,"e":3667}],[-26,{"n":5.5,"e":3675}],[-25,{"n":3.5,"e":3686}],[-24,{"n":6,"e":3696}],[-23,{"n":4.5,"e":3699}],[-22,{"n":4,"e":3716,"a":1}],[-20,{"n":5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":6,"e":3753}],[-17,{"n":5.5,"e":3766}],[-16,{"n":6,"e":3774}],[-15,{"n":6,"e":3786,"g":1}],[-14,{"n":4,"e":3792}],[-13,{"n":6,"e":3806}],[-11,{"n":5,"e":3825}],[-10,{"n":3.5,"e":3833}],[-8,{"n":5.5,"e":3851}],[-7,{"n":5,"e":3864}],[6,{"n":6,"e":6155,"g":1}],[4,{"n":5,"e":6176}],[3,{"n":5,"e":6185}],[2,{"n":5,"e":6189}],[1,{"n":7,"e":6201,"g":1}]],"fo":[[6155,[{"t":"Y"}]],[6185,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":34,"n":57}}],[333,{"n":"Hunou","f":"Adrien","fp":"A","r":10,"c":20,"s":{"g":1,"s":21,"n":4,"a":5.25,"d":0.5,"Ss":5,"Sn":1,"Sa":5,"Og":7,"Os":121,"On":23,"Oa":5.26,"Od":1.01,"pm":12,"pa":11},"p":[[-28,{"n":7.5,"e":3655,"g":2}],[-27,{"n":5,"e":3667,"s":1}],[-26,{"n":4.5,"e":3675,"s":1}],[-23,{"n":5.5,"e":3699,"s":1}],[-22,{"n":4,"e":3716}],[-21,{"n":5,"e":3725}],[-20,{"n":5,"e":3735,"s":1}],[-19,{"n":3.5,"e":3746}],[-18,{"n":5.5,"e":3753,"s":1}],[-17,{"n":5,"e":3766}],[-16,{"n":7,"e":3774,"g":1}],[-15,{"n":4,"e":3786}],[-14,{"n":4.5,"e":3792}],[-13,{"n":7,"e":3806,"g":1}],[-11,{"n":6,"e":3825,"g":1}],[-10,{"n":6.5,"e":3833,"g":1}],[-9,{"n":4.5,"e":3845,"s":1}],[-8,{"n":5,"e":3851,"s":1}],[-7,{"n":5,"e":3864}],[7,{"n":5,"e":6139,"s":1}],[5,{"n":6,"e":6167,"g":1,"s":1}],[3,{"n":5,"e":6185,"s":1}],[2,{"n":5,"e":6189}]],"a":{"m":11,"a":27,"M":73,"n":31}}],[370,{"n":"Tait","f":"Flavien","fp":"MO","r":8,"c":20,"s":{"s":31.5,"n":6,"a":5.25,"d":0.61,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.67,"Og":2,"Os":105.5,"On":20,"Oa":5.28,"Od":0.9,"pm":18,"pa":2},"p":[[-28,{"n":8,"e":3655,"g":1}],[-27,{"n":5.5,"e":3667,"s":1}],[-25,{"n":4.5,"e":3686}],[-24,{"n":5.5,"e":3696}],[-23,{"n":5,"e":3699}],[-22,{"n":4.5,"e":3716}],[-21,{"n":7,"e":3725,"g":1}],[-20,{"n":5,"e":3735,"s":1}],[-19,{"n":5,"e":3746,"s":1}],[-17,{"n":5,"e":3766,"s":1}],[-16,{"n":5,"e":3774,"s":1}],[-14,{"n":5,"e":3792,"s":1}],[-9,{"n":4.5,"e":3845,"s":1}],[-8,{"n":4.5,"e":3851,"s":1}],[7,{"n":6,"e":6139}],[6,{"n":4.5,"e":6155}],[5,{"n":5,"e":6167,"s":1}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":6,"e":6185}],[1,{"n":5,"e":6201,"s":1}]],"fo":[[6155,[{"t":"Y"}]],[6201,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":17,"n":11}}],[374,{"n":"Salin","f":"Romain","fp":"G","r":14,"c":20,"s":{"s":33.5,"n":6,"a":5.58,"d":1.07,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.07,"Os":43.5,"On":8,"Oa":5.44,"Od":1.08,"pg":8},"p":[[-10,{"n":4,"e":3833}],[-9,{"n":6,"e":3845}],[7,{"n":5,"e":6139}],[6,{"n":4,"e":6155}],[5,{"n":7,"e":6167}],[4,{"n":5.5,"e":6176}],[3,{"n":6.5,"e":6185}],[2,{"n":5.5,"e":6189}]],"fo":[[6185,[{"t":"Y"}]]],"a":{"m":8,"a":14,"M":23,"n":15}}],[409,{"n":"Terrier","f":"Martin","fp":"MO","r":13,"c":20,"s":{"g":1,"s":27,"n":5,"a":5.4,"d":1.19,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":123,"On":24,"Oa":5.13,"Od":0.82,"pm":15,"pa":9},"p":[[-28,{"n":5,"e":3650,"s":1}],[-27,{"n":6.5,"e":3661}],[-26,{"n":6.5,"e":3672}],[-25,{"n":5,"e":3682,"s":1}],[-24,{"n":6,"e":3695,"g":1}],[-23,{"n":5,"e":3704,"s":1}],[-21,{"n":4.5,"e":3720}],[-20,{"n":5,"e":3730,"s":1}],[-19,{"n":5,"e":3745}],[-18,{"n":4,"e":3753,"s":1}],[-16,{"n":5,"e":3773}],[-15,{"n":5,"e":3787}],[-14,{"n":5.5,"e":3793}],[-13,{"n":5,"e":3800,"s":1}],[-11,{"n":4.5,"e":3820,"s":1}],[-10,{"n":4,"e":3830}],[-9,{"n":4,"e":3846}],[-8,{"n":5.5,"e":3850,"s":1}],[-7,{"n":5,"e":3859}],[7,{"n":6,"e":6139,"g":1}],[5,{"n":6,"e":6167}],[4,{"n":6.5,"e":6176}],[2,{"n":3.5,"e":6189}],[1,{"n":5,"e":6201}]],"fo":[[6189,[{"t":"R"}]],[6176,[{"t":"Y"}]]],"a":{"m":12,"a":22,"M":45,"n":33}}],[439,{"n":"Faitout Maouassa","f":"","fp":"DL","r":8,"c":20,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Og":3,"Os":110.5,"On":21,"Oa":5.26,"Od":0.85,"pd":21},"p":[[-28,{"n":8,"e":3655,"g":1}],[-27,{"n":7,"e":3667,"g":1}],[-26,{"n":5,"e":3675}],[-25,{"n":4.5,"e":3686}],[-24,{"n":4.5,"e":3696}],[-23,{"n":5,"e":3699}],[-22,{"n":5,"e":3716}],[-21,{"n":5,"e":3725}],[-20,{"n":4.5,"e":3735}],[-18,{"n":5,"e":3753}],[-17,{"n":5,"e":3766}],[-16,{"n":5.5,"e":3774}],[-15,{"n":5,"e":3786}],[-11,{"n":5.5,"e":3825}],[-10,{"n":6,"e":3833,"g":1}],[-9,{"n":5,"e":3845}],[-8,{"n":4.5,"e":3851}],[4,{"n":5,"e":6176}],[3,{"n":5,"e":6185}],[2,{"n":5.5,"e":6189}],[1,{"n":5,"e":6201}]],"fo":[[6176,[{"t":"I"}]],[6185,[{"t":"Y"}]]],"a":{"m":14,"a":21,"M":29,"n":44}}],[528,{"n":"Lea Siliki","f":"James","fp":"MD","r":6,"c":20,"s":{"Os":73,"On":14,"Oa":5.21,"Od":0.58,"pm":14},"p":[[-28,{"n":6,"e":3655}],[-26,{"n":5,"e":3675,"s":1}],[-25,{"n":4.5,"e":3686}],[-24,{"n":6,"e":3696}],[-22,{"n":5.5,"e":3716}],[-21,{"n":4,"e":3725}],[-20,{"n":5.5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":5.5,"e":3753}],[-17,{"n":5,"e":3766}],[-15,{"n":5,"e":3786,"s":1}],[-14,{"n":5,"e":3792,"s":1}],[-9,{"n":5,"e":3845,"s":1}],[-7,{"n":5,"e":3864}]]}],[532,{"n":"Diallo","f":"Namakoro","fp":"DL","r":1,"c":20}],[922,{"n":"Niang","f":"M'Baye","fp":"A","r":17,"c":20,"s":{"s":5,"n":1,"a":5,"Og":7,"Os":111,"On":21,"Oa":5.29,"Od":1.47,"pm":1,"pa":20},"p":[[-27,{"n":5,"e":3667}],[-26,{"n":7,"e":3675,"g":2}],[-25,{"n":4.5,"e":3686,"s":1}],[-24,{"n":5,"e":3696}],[-23,{"n":4,"e":3699}],[-22,{"n":7,"e":3716}],[-21,{"n":6.5,"e":3725}],[-20,{"n":4,"e":3735}],[-19,{"n":6.5,"e":3746,"g":1}],[-18,{"n":5,"e":3753}],[-17,{"n":7.5,"e":3766,"g":2}],[-16,{"n":4.5,"e":3774,"s":1}],[-15,{"n":4,"e":3786}],[-14,{"n":4,"e":3792}],[-13,{"n":8,"e":3806,"g":1}],[-11,{"n":7,"e":3825,"g":1}],[-10,{"n":3.5,"e":3833}],[-9,{"n":5,"e":3845}],[-8,{"n":5.5,"e":3851}],[-7,{"n":2.5,"e":3864}],[1,{"n":5,"e":6201}]],"a":{"m":19,"a":41,"M":80,"n":23}}],[1182,{"n":"Hamari Traoré","f":"","fp":"DL","r":15,"c":20,"s":{"s":26,"n":5,"a":5.2,"d":0.84,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.84,"Os":130,"On":25,"Oa":5.2,"Od":0.83,"pd":25},"p":[[-28,{"n":6.5,"e":3655}],[-27,{"n":5,"e":3667}],[-26,{"n":6.5,"e":3675}],[-25,{"n":5.5,"e":3686}],[-24,{"n":5,"e":3696}],[-23,{"n":4.5,"e":3699}],[-22,{"n":4.5,"e":3716}],[-20,{"n":4.5,"e":3735}],[-19,{"n":5.5,"e":3746}],[-18,{"n":6.5,"e":3753}],[-17,{"n":5,"e":3766}],[-16,{"n":5,"e":3774}],[-15,{"n":6.5,"e":3786}],[-14,{"n":4.5,"e":3792}],[-13,{"n":6.5,"e":3806}],[-11,{"n":4.5,"e":3825}],[-10,{"n":4.5,"e":3833}],[-9,{"n":4,"e":3845}],[-8,{"n":5,"e":3851}],[-7,{"n":4.5,"e":3864}],[7,{"n":5,"e":6139}],[6,{"n":4.5,"e":6155}],[5,{"n":6.5,"e":6167}],[4,{"n":5.5,"e":6176}],[3,{"n":4.5,"e":6185}]],"a":{"m":15,"a":19,"M":26,"n":33}}],[1187,{"n":"Bourigeaud","f":"Benjamin","fp":"MO","r":20,"c":20,"s":{"g":1,"s":40.5,"n":7,"a":5.79,"d":1.04,"Sg":1,"Ss":40.5,"Sn":7,"Sa":5.79,"Sd":1.04,"Og":3,"Os":145.5,"On":26,"Oa":5.6,"Od":0.77,"pm":25,"pa":1},"p":[[-28,{"n":6,"e":3655,"s":1}],[-27,{"n":7,"e":3667,"g":1}],[-26,{"n":5,"e":3675}],[-25,{"n":4,"e":3686}],[-24,{"n":5,"e":3696}],[-23,{"n":6,"e":3699}],[-22,{"n":6,"e":3716,"g":1,"s":1}],[-20,{"n":5.5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":5.5,"e":3753}],[-17,{"n":5,"e":3766}],[-16,{"n":6,"e":3774}],[-15,{"n":6.5,"e":3786}],[-13,{"n":5.5,"e":3806}],[-11,{"n":5.5,"e":3825}],[-10,{"n":5.5,"e":3833}],[-9,{"n":5,"e":3845}],[-8,{"n":5,"e":3851}],[-7,{"n":5,"e":3864,"s":1}],[7,{"n":4.5,"e":6139}],[6,{"n":4.5,"e":6155}],[5,{"n":7,"e":6167}],[4,{"n":6,"e":6176}],[3,{"n":7,"e":6185,"g":1,"s":1}],[2,{"n":5.5,"e":6189}],[1,{"n":6,"e":6201}]],"fo":[[6185,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":18,"a":28,"M":55,"n":36}}],[1194,{"n":"Grenier","f":"Clément","fp":"MO","r":5,"c":20,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":32.5,"On":7,"Oa":4.64,"Od":0.63,"pm":6,"pa":1},"p":[[-18,{"n":5,"e":3753}],[-14,{"n":5,"e":3792}],[-10,{"n":4,"e":3833}],[-9,{"n":4,"e":3845}],[-8,{"n":5,"e":3851,"s":1}],[-7,{"n":5.5,"e":3864}],[7,{"n":4,"e":6139}]]}],[1239,{"n":"Del Castillo","f":"Romain","fp":"A","r":10,"c":20,"s":{"s":38,"n":7,"a":5.43,"d":0.84,"Ss":38,"Sn":7,"Sa":5.43,"Sd":0.84,"Og":1,"Os":132,"On":24,"Oa":5.5,"Od":0.88,"pm":16,"pa":8},"p":[[-28,{"n":6,"e":3655,"g":1}],[-27,{"n":6,"e":3667}],[-26,{"n":5.5,"e":3675}],[-25,{"n":4.5,"e":3686,"s":1}],[-24,{"n":5,"e":3696}],[-23,{"n":5,"e":3699,"s":1}],[-22,{"n":5,"e":3716,"s":1}],[-20,{"n":3.5,"e":3735}],[-19,{"n":5.5,"e":3746,"s":1}],[-18,{"n":6,"e":3753,"s":1}],[-17,{"n":5.5,"e":3766}],[-16,{"n":7,"e":3774}],[-15,{"n":7,"e":3786}],[-14,{"n":5,"e":3792}],[-13,{"n":7,"e":3806,"s":1}],[-11,{"n":5.5,"e":3825}],[-7,{"n":5,"e":3864}],[7,{"n":4.5,"e":6139}],[6,{"n":5,"e":6155,"s":1}],[5,{"n":7,"e":6167}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":6,"e":6185,"s":1}],[2,{"n":5,"e":6189,"s":1}],[1,{"n":5.5,"e":6201,"s":1}]],"a":{"m":10,"a":14,"M":25,"n":24}}],[1400,{"n":"Martin","f":"Jonas","fp":"MD","r":7,"c":20,"s":{"s":36.5,"n":7,"a":5.21,"d":0.27,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.27,"Os":42.5,"On":8,"Oa":5.31,"Od":0.37,"pm":8},"p":[[-8,{"n":6,"e":3851}],[7,{"n":5.5,"e":6139,"s":1}],[6,{"n":5,"e":6155,"s":1}],[5,{"n":5,"e":6167,"s":1}],[4,{"n":5,"e":6176,"s":1}],[3,{"n":5.5,"e":6185}],[2,{"n":5.5,"e":6189,"s":1}],[1,{"n":5,"e":6201}]]}],[1598,{"n":"Nzonzi","f":"Steven","fp":"MD","r":20,"c":20,"s":{"g":1,"s":33.5,"n":6,"a":5.58,"d":1.02,"Og":1,"Os":63.5,"On":11,"Oa":5.77,"Od":1.19,"pm":11},"p":[[-28,{"n":8,"e":3655}],[-27,{"n":7,"e":3667}],[-26,{"n":5,"e":3675}],[-25,{"n":5.5,"e":3686}],[-24,{"n":4.5,"e":3696,"s":1}],[6,{"n":5,"e":6155}],[5,{"n":6,"e":6167}],[4,{"n":7.5,"e":6176,"g":1}],[3,{"n":5,"e":6185}],[2,{"n":5,"e":6189}],[1,{"n":5,"e":6201}]],"fo":[[6167,[{"t":"Y"}]],[6185,[{"t":"Y"}]],[6189,[{"t":"Y"}]]],"a":{"m":17,"a":28,"M":54,"n":22}}],[2035,{"n":"Nyamsi","f":"Gerzino","fp":"DC","r":2,"c":20,"s":{"Os":10,"On":2,"Oa":5,"pd":2},"p":[[-21,{"n":5,"e":3725,"s":1}],[-17,{"n":5,"e":3766,"s":1}]]}],[2692,{"n":"Aguerd","f":"Nayef","fp":"DC","r":17,"c":20,"s":{"g":2,"s":38,"n":7,"a":5.43,"d":1.27,"Sg":2,"Ss":38,"Sn":7,"Sa":5.43,"Sd":1.27,"Og":3,"Os":80.5,"On":15,"Oa":5.37,"Od":1.17,"pd":15},"p":[[-28,{"n":7,"e":3649,"g":1}],[-27,{"n":3,"e":3666}],[-26,{"n":5,"e":3669}],[-25,{"n":5,"e":3679}],[-10,{"n":5.5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":6,"e":3856}],[-7,{"n":5,"e":3860}],[7,{"n":4.5,"e":6139}],[6,{"n":4,"e":6155}],[5,{"n":7.5,"e":6167,"g":1}],[4,{"n":6,"e":6176}],[3,{"n":6.5,"e":6185,"g":1}],[2,{"n":5,"e":6189}],[1,{"n":4.5,"e":6201}]],"fo":[[6155,[{"t":"Y"}]]],"a":{"m":11,"a":17,"M":32,"n":29}}],[2787,{"n":"Gboho","f":"Yann","fp":"MO","r":5,"c":20,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":49,"On":10,"Oa":4.9,"Od":0.61,"pm":8,"pa":2},"p":[[-24,{"n":5,"e":3696,"s":1}],[-23,{"n":4,"e":3699}],[-22,{"n":5.5,"e":3716,"s":1}],[-21,{"n":5,"e":3725,"s":1}],[-13,{"n":4,"e":3806}],[-11,{"n":6,"e":3825,"g":1,"s":1}],[-10,{"n":5,"e":3833,"s":1}],[7,{"n":5,"e":6139,"s":1}],[3,{"n":4.5,"e":6185,"s":1}],[2,{"n":5,"e":6189,"s":1}]]}],[2819,{"n":"Rutter","f":"Georginio","fp":"A","r":5,"c":20,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[5,{"n":4,"e":6167,"s":1}]],"a":{"m":2,"a":4,"M":5,"n":5}}],[3186,{"n":"Camavinga","f":"Eduardo","fp":"MD","r":18,"c":20,"s":{"g":1,"s":41,"n":7,"a":5.86,"d":0.94,"Sg":1,"Ss":41,"Sn":7,"Sa":5.86,"Sd":0.94,"Og":2,"Os":145,"On":25,"Oa":5.8,"Od":1.03,"pm":25},"p":[[-28,{"n":7.5,"e":3655}],[-27,{"n":7,"e":3667}],[-26,{"n":4.5,"e":3675}],[-23,{"n":5.5,"e":3699}],[-22,{"n":5.5,"e":3716}],[-21,{"n":5,"e":3725}],[-20,{"n":5,"e":3735}],[-19,{"n":6.5,"e":3746}],[-18,{"n":8,"e":3753,"g":1}],[-17,{"n":5,"e":3766,"s":1}],[-16,{"n":6.5,"e":3774}],[-15,{"n":6,"e":3786}],[-13,{"n":7,"e":3806}],[-11,{"n":5,"e":3825}],[-10,{"n":4.5,"e":3833}],[-9,{"n":5,"e":3845}],[-8,{"n":4.5,"e":3851}],[-7,{"n":6,"e":3864}],[7,{"n":6,"e":6139,"s":1}],[6,{"n":5,"e":6155}],[5,{"n":7,"e":6167}],[4,{"n":4.5,"e":6176}],[3,{"n":5.5,"e":6185}],[2,{"n":7,"e":6189,"g":1}],[1,{"n":6,"e":6201,"s":1}]],"fo":[[6155,[{"t":"Y"}]],[6185,[{"t":"Y"}]]],"a":{"m":20,"a":37,"M":68,"n":41}}],[3366,{"n":"Guirassy","f":"Serhou","fp":"A","r":24,"c":20,"s":{"g":3,"s":33,"n":6,"a":5.5,"d":1.38,"Sg":3,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.38,"Og":11,"Os":122.5,"On":24,"Oa":5.1,"Od":1.29,"pa":24},"p":[[1,{"n":6,"e":6580,"g":1}],[-28,{"n":6,"e":3651,"g":1}],[-26,{"n":4,"e":3677}],[-25,{"n":7.5,"e":3678,"g":2}],[-24,{"n":6,"e":3688,"g":1}],[-23,{"n":4.5,"e":3704}],[-22,{"n":4.5,"e":3708}],[-21,{"n":5.5,"e":3718,"g":1}],[-20,{"n":3.5,"e":3728}],[-17,{"n":4.5,"e":3760}],[-16,{"n":4.5,"e":3768}],[-14,{"n":3.5,"e":3788}],[-13,{"n":6,"e":3806,"g":1}],[-12,{"n":2.5,"e":3808}],[-11,{"n":5,"e":3826}],[-10,{"n":4.5,"e":3835}],[-9,{"n":7,"e":3838,"g":1}],[-7,{"n":4.5,"e":3858}],[7,{"n":4.5,"e":6139}],[6,{"n":5,"e":6155}],[5,{"n":7,"e":6167,"g":1}],[4,{"n":4.5,"e":6176}],[3,{"n":7.5,"e":6185,"g":2}],[2,{"n":4.5,"e":6189,"s":1}]],"a":{"m":19,"a":34,"M":66,"n":49}}],[4529,{"n":"Rugani","f":"Daniele","fp":"DC","r":8,"c":20,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":50,"On":11,"Oa":4.55,"Od":0.72,"pd":11},"p":[[-38,{"n":4,"e":5452}],[-37,{"n":4,"e":5458}],[-36,{"n":5,"e":5472,"s":1}],[-34,{"n":5,"e":5492,"s":1}],[-33,{"n":4,"e":5505,"s":1}],[-25,{"n":4.5,"e":5585}],[-24,{"n":6,"e":5591}],[-10,{"n":5,"e":5730}],[-35,{"n":4,"e":5487}],[-31,{"n":3.5,"e":5523}],[7,{"n":5,"e":6139}]],"fo":[[5452,[{"t":"Y"}]],[6139,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":16,"n":5}}],[4633,{"n":"Gomis","f":"Alfred","fp":"G","r":20,"c":20,"s":{"s":28.5,"n":5,"a":5.7,"d":0.97,"Os":127,"On":22,"Oa":5.77,"Od":1.38,"pg":22},"p":[[-24,{"n":4,"e":3690}],[-23,{"n":4,"e":3705}],[-22,{"n":7,"e":3711}],[-21,{"n":5,"e":3723}],[-20,{"n":8,"e":3731}],[-19,{"n":4,"e":3738}],[-18,{"n":5,"e":3748}],[-16,{"n":4,"e":3772}],[-15,{"n":6,"e":3778}],[-14,{"n":5.5,"e":3792}],[-13,{"n":8,"e":3801}],[-12,{"n":5.5,"e":3811}],[-11,{"n":6,"e":3818}],[-10,{"n":9,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":5.5,"e":3856}],[-7,{"n":6,"e":3860}],[5,{"n":5,"e":6160}],[4,{"n":6,"e":6177}],[3,{"n":4.5,"e":6180}],[2,{"n":7,"e":6188}],[1,{"n":6,"e":6200}]],"a":{"m":20,"a":25,"M":37,"n":31}}],[6150,{"n":"Damergy","f":"Elias","fp":"G","r":1,"c":20}],[6274,{"n":"Bonet","f":"Pépé","fp":"G","r":1,"c":20}],[6863,{"n":"Truffert","f":"Adrien","fp":"DL","r":8,"c":20,"s":{"g":1,"s":7.5,"n":1,"a":7.5,"Og":1,"Os":7.5,"On":1,"Oa":7.5,"pm":1},"p":[[4,{"n":7.5,"e":6176,"g":1,"s":1}]],"a":{"m":2,"a":7,"M":11,"n":17}}],[6925,{"n":"Soppy","f":"Brandon","fp":"DL","r":7,"c":20,"s":{"s":15,"n":3,"a":5,"Os":15,"On":3,"Oa":5,"pd":3},"p":[[5,{"n":5,"e":6167}],[3,{"n":5,"e":6185,"s":1}],[2,{"n":5,"e":6189}]]}],[7409,{"n":"Assignon","f":"Lorenz","fp":"DL","r":1,"c":20}],[7412,{"n":"Doku","f":"Jéremy","fp":"MO","r":12,"c":20,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[7,{"n":4.5,"e":6139,"s":1}]],"a":{"m":13,"a":23,"M":75,"n":23}}],[13,{"n":"Hamouma","f":"Romain","fp":"MO","r":11,"c":4,"s":{"g":3,"s":36.5,"n":7,"a":5.21,"d":1.41,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.48,"Og":6,"Os":86.5,"On":16,"Oa":5.41,"Od":1.28,"pm":6,"pa":10},"p":[[3,{"n":5,"e":6186}],[-23,{"n":4.5,"e":3702}],[-22,{"n":6.5,"e":3712,"g":1,"s":1}],[-17,{"n":6,"e":3765,"g":1,"s":1}],[-16,{"n":8,"e":3776,"g":1}],[-13,{"n":4,"e":3803}],[-12,{"n":6,"e":3816}],[-11,{"n":5.5,"e":3826,"s":1}],[-8,{"n":4.5,"e":3855}],[7,{"n":5,"e":6146}],[-7,{"n":5,"e":3866}],[6,{"n":4,"e":6150,"s":1}],[5,{"n":4,"e":6167}],[4,{"n":4.5,"e":6174,"s":1}],[2,{"n":8,"e":6195,"g":2}],[1,{"n":6,"e":6198,"g":1}]],"fo":[[6146,[{"t":"Y"}]]],"a":{"m":12,"a":21,"M":36,"n":49}}],[31,{"n":"Boudebouz","f":"Ryad","fp":"MO","r":7,"c":4,"s":{"Og":1,"Os":94.5,"On":18,"Oa":5.25,"Od":0.9,"pm":7,"pa":11},"p":[[-28,{"n":6.5,"e":3656}],[-27,{"n":5,"e":3661,"s":1}],[-26,{"n":4.5,"e":3676}],[-25,{"n":5,"e":3680}],[-24,{"n":6.5,"e":3693}],[-20,{"n":3.5,"e":3736}],[-19,{"n":5.5,"e":3747,"g":1}],[-18,{"n":6,"e":3756,"s":1}],[-17,{"n":4,"e":3765}],[-16,{"n":4.5,"e":3776,"s":1}],[-15,{"n":4.5,"e":3786}],[-14,{"n":5,"e":3796}],[-13,{"n":6,"e":3803}],[-12,{"n":6,"e":3816}],[-11,{"n":5.5,"e":3826}],[-10,{"n":5.5,"e":3829}],[-9,{"n":6.5,"e":3846}],[-7,{"n":4.5,"e":3866,"s":1}]]}],[47,{"n":"Ruffier","f":"Stéphane","fp":"G","r":7,"c":4,"s":{"Os":77.5,"On":16,"Oa":4.84,"Od":1.45,"pg":16},"p":[[-25,{"n":2.5,"e":3680}],[-24,{"n":5,"e":3693}],[-23,{"n":3,"e":3702}],[-22,{"n":4,"e":3712}],[-21,{"n":5,"e":3727}],[-20,{"n":4.5,"e":3736}],[-19,{"n":4,"e":3747}],[-18,{"n":7,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":3.5,"e":3776}],[-15,{"n":4.5,"e":3786}],[-14,{"n":6,"e":3796}],[-13,{"n":6,"e":3803}],[-12,{"n":6.5,"e":3816}],[-11,{"n":5,"e":3826}],[-10,{"n":7.5,"e":3829}]]}],[98,{"n":"Monnet-Paquet","f":"Kévin","fp":"A","r":5,"c":4,"s":{"s":16.5,"n":4,"a":4.13,"d":0.75,"Ss":3,"Sn":1,"Sa":3,"Os":16.5,"On":4,"Oa":4.13,"Od":0.75,"pm":1,"pa":3},"p":[[7,{"n":3,"e":6146}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":4.5,"e":6195,"s":1}]]}],[195,{"n":"Moulin","f":"Jessy","fp":"G","r":13,"c":4,"s":{"s":33.5,"n":7,"a":4.79,"d":2.02,"Ss":33.5,"Sn":7,"Sa":4.79,"Sd":2.02,"Os":65.5,"On":12,"Oa":5.46,"Od":1.91,"pg":12},"p":[[-28,{"n":4.5,"e":3656}],[-27,{"n":7.5,"e":3661}],[-26,{"n":5.5,"e":3676}],[-9,{"n":6.5,"e":3846}],[-8,{"n":8,"e":3855}],[7,{"n":2.5,"e":6146}],[6,{"n":5.5,"e":6150}],[5,{"n":2,"e":6167}],[4,{"n":4,"e":6174}],[3,{"n":7.5,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":6,"e":6198}]],"a":{"m":14,"a":21,"M":31,"n":33}}],[411,{"n":"Nordin","f":"Arnaud","fp":"MO","r":9,"c":4,"s":{"s":32.5,"n":6,"a":5.42,"d":1.53,"Os":99,"On":19,"Oa":5.21,"Od":0.93,"pm":13,"pa":6},"p":[[-28,{"n":5,"e":3656,"s":1}],[-21,{"n":6,"e":3727}],[-20,{"n":5.5,"e":3736}],[-19,{"n":4,"e":3747}],[-18,{"n":6,"e":3756}],[-15,{"n":5,"e":3786,"s":1}],[-14,{"n":5,"e":3796}],[-13,{"n":5,"e":3803,"s":1}],[-12,{"n":5,"e":3816,"s":1}],[-11,{"n":5,"e":3826,"s":1}],[-10,{"n":5.5,"e":3829,"s":1}],[-8,{"n":5,"e":3855}],[-7,{"n":4.5,"e":3866}],[6,{"n":5.5,"e":6150}],[5,{"n":3,"e":6167}],[4,{"n":4.5,"e":6174}],[3,{"n":6,"e":6186}],[2,{"n":7.5,"e":6195}],[1,{"n":6,"e":6198,"s":1}]],"fo":[[6186,[{"t":"I"}]],[6195,[{"t":"I"}]]],"a":{"m":10,"a":13,"M":24,"n":7}}],[887,{"n":"Khazri","f":"Wahbi","fp":"MO","r":5,"c":4,"s":{"s":2,"n":1,"a":2,"Og":3,"Os":53,"On":11,"Oa":4.82,"Od":1.4,"pm":5,"pa":6},"p":[[-23,{"n":4.5,"e":3702}],[-22,{"n":5,"e":3712}],[-21,{"n":7.5,"e":3727,"g":2}],[-20,{"n":4,"e":3736}],[-13,{"n":5,"e":3803,"s":1}],[-11,{"n":6.5,"e":3826,"g":1}],[-10,{"n":5,"e":3829}],[-9,{"n":4.5,"e":3846,"s":1}],[-8,{"n":5,"e":3855}],[-7,{"n":4,"e":3866}],[6,{"n":2,"e":6150,"s":1}]],"fo":[[6150,[{"t":"R"}]]]}],[1031,{"n":"Debuchy","f":"Mathieu","fp":"DL","r":9,"c":4,"s":{"s":16,"n":3,"a":5.33,"d":0.58,"Og":1,"Os":84,"On":18,"Oa":4.67,"Od":1.19,"pd":16,"pm":2},"p":[[-28,{"n":5,"e":3656}],[-27,{"n":4,"e":3661}],[-26,{"n":5,"e":3676}],[-23,{"n":4.5,"e":3702}],[-22,{"n":3,"e":3712}],[-21,{"n":4.5,"e":3727}],[-19,{"n":4,"e":3747}],[-18,{"n":2,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":6.5,"e":3776}],[-13,{"n":4,"e":3803}],[-12,{"n":5,"e":3816}],[-11,{"n":5,"e":3826,"s":1}],[-8,{"n":7,"e":3855,"g":1}],[-7,{"n":5,"e":3866}],[3,{"n":6,"e":6186}],[2,{"n":5,"e":6195}],[1,{"n":5,"e":6198}]],"fo":[[6198,[{"t":"I"}]]],"a":{"m":12,"a":17,"M":24,"n":15}}],[1192,{"n":"Gabriel Silva","f":"","fp":"DL","r":6,"c":4,"s":{"Os":19.5,"On":4,"Oa":4.88,"Od":1.03,"pd":3,"pm":1},"p":[[-26,{"n":5,"e":3676,"s":1}],[-18,{"n":5,"e":3756}],[-17,{"n":3.5,"e":3765}],[-12,{"n":6,"e":3816}]]}],[1247,{"n":"Souici","f":"Rayan","fp":"DC","r":1,"c":4}],[1549,{"n":"Youssouf","f":"Zaydou","fp":"MD","r":7,"c":4,"s":{"s":28,"n":6,"a":4.67,"d":0.61,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.65,"Os":90.5,"On":17,"Oa":5.32,"Od":0.85,"pm":14,"pa":3},"p":[[-22,{"n":5,"e":3712,"s":1}],[-19,{"n":5,"e":3747}],[-18,{"n":6,"e":3756,"s":1}],[-15,{"n":4.5,"e":3786}],[-14,{"n":6,"e":3796}],[-13,{"n":6,"e":3803}],[-12,{"n":7,"e":3816}],[-11,{"n":5.5,"e":3826}],[-10,{"n":6,"e":3829}],[-9,{"n":6.5,"e":3846}],[-8,{"n":5,"e":3855,"s":1}],[7,{"n":4,"e":6146}],[6,{"n":5,"e":6150,"s":1}],[5,{"n":4,"e":6167}],[4,{"n":4.5,"e":6174}],[3,{"n":5.5,"e":6186,"s":1}],[1,{"n":5,"e":6198,"s":1}]]}],[2143,{"n":"Camara","f":"Mahdi","fp":"MD","r":13,"c":4,"s":{"g":1,"s":39.5,"n":7,"a":5.64,"d":1.07,"Sg":1,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":1.07,"Og":1,"Os":100,"On":19,"Oa":5.26,"Od":0.81,"pm":19},"p":[[-28,{"n":5,"e":3656}],[-26,{"n":6,"e":3676}],[-25,{"n":5,"e":3680}],[-21,{"n":5,"e":3727,"s":1}],[-20,{"n":4.5,"e":3736}],[-19,{"n":4.5,"e":3747}],[-18,{"n":4.5,"e":3756}],[-17,{"n":4.5,"e":3765}],[-16,{"n":6,"e":3776}],[-15,{"n":5,"e":3786,"s":1}],[-14,{"n":5.5,"e":3796}],[-13,{"n":5,"e":3803}],[7,{"n":4.5,"e":6146}],[6,{"n":5.5,"e":6150}],[5,{"n":4.5,"e":6167}],[4,{"n":5,"e":6174}],[3,{"n":7,"e":6186,"g":1}],[2,{"n":7,"e":6195}],[1,{"n":6,"e":6198}]],"a":{"m":11,"a":16,"M":22,"n":22}}],[2147,{"n":"Guendouz","f":"Alexis","fp":"G","r":1,"c":4}],[2616,{"n":"Kolodziejczak","f":"Timothée","fp":"DC","r":8,"c":4,"s":{"s":30,"n":6,"a":5,"d":1.55,"Os":86,"On":18,"Oa":4.78,"Od":1.14,"pd":18},"p":[[-28,{"n":4.5,"e":3656}],[-27,{"n":3,"e":3661}],[-26,{"n":4.5,"e":3676}],[-25,{"n":4,"e":3680}],[-15,{"n":3.5,"e":3786}],[-14,{"n":5.5,"e":3796}],[-13,{"n":4,"e":3803}],[-12,{"n":6,"e":3816}],[-10,{"n":5,"e":3829,"s":1}],[-9,{"n":6,"e":3846}],[-8,{"n":5,"e":3855}],[-7,{"n":5,"e":3866}],[6,{"n":3,"e":6150}],[5,{"n":3.5,"e":6167}],[4,{"n":4.5,"e":6174}],[3,{"n":6.5,"e":6186}],[2,{"n":6.5,"e":6195}],[1,{"n":6,"e":6198}]],"fo":[[6150,[{"t":"R"}]]],"a":{"m":9,"a":15,"M":26,"n":23}}],[2790,{"n":"Bouanga","f":"Denis","fp":"MO","r":29,"c":4,"s":{"g":2,"s":36,"n":7,"a":5.14,"d":1.31,"Sg":2,"Ss":36,"Sn":7,"Sa":5.14,"Sd":1.31,"Og":11,"Os":143,"On":27,"Oa":5.3,"Od":1.37,"pm":13,"pa":14},"p":[[-28,{"n":6.5,"e":3656,"g":1}],[-27,{"n":5,"e":3661}],[-26,{"n":5.5,"e":3676,"g":1}],[-25,{"n":5.5,"e":3680,"g":1}],[-24,{"n":4.5,"e":3693}],[-23,{"n":3.5,"e":3702}],[-22,{"n":4,"e":3712}],[-21,{"n":5,"e":3727,"s":1}],[-18,{"n":3.5,"e":3756}],[-17,{"n":3.5,"e":3765}],[-16,{"n":8.5,"e":3776,"g":2}],[-15,{"n":4.5,"e":3786}],[-14,{"n":4.5,"e":3796}],[-13,{"n":7,"e":3803,"g":2}],[-12,{"n":7,"e":3816,"g":1}],[-11,{"n":5.5,"e":3826}],[-10,{"n":7.5,"e":3829,"g":1}],[-9,{"n":6.5,"e":3846}],[-8,{"n":4.5,"e":3855}],[-7,{"n":5,"e":3866,"s":1}],[7,{"n":4.5,"e":6146,"s":1}],[6,{"n":5,"e":6150}],[5,{"n":4,"e":6167}],[4,{"n":4,"e":6174}],[3,{"n":7,"e":6186,"g":1}],[2,{"n":4.5,"e":6195}],[1,{"n":7,"e":6198,"g":1}]],"a":{"m":30,"a":42,"M":65,"n":86}}],[2893,{"n":"Bajic","f":"Stefan","fp":"G","r":3,"c":4,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-7,{"n":4.5,"e":3866}]]}],[2990,{"n":"Tshibuabua","f":"Marvin","fp":"DC","r":1,"c":4}],[2991,{"n":"Abi","f":"Charles","fp":"A","r":7,"c":4,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":71,"On":16,"Oa":4.44,"Od":0.66,"pa":16},"p":[[-28,{"n":5,"e":3656,"s":1}],[-27,{"n":4,"e":3661,"s":1}],[-25,{"n":3.5,"e":3680}],[-24,{"n":4.5,"e":3693,"s":1}],[-23,{"n":4,"e":3702,"s":1}],[-22,{"n":3.5,"e":3712}],[-21,{"n":5,"e":3727}],[-20,{"n":4,"e":3736,"s":1}],[-19,{"n":6,"e":3747,"s":1}],[-11,{"n":5,"e":3826}],[-10,{"n":4,"e":3829}],[-9,{"n":4.5,"e":3846}],[-8,{"n":4.5,"e":3855,"s":1}],[-7,{"n":4.5,"e":3866,"s":1}],[3,{"n":4,"e":6186,"s":1}],[1,{"n":5,"e":6198}]]}],[2992,{"n":"Benkhedim","f":"Bilal","fp":"MO","r":4,"c":4,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":20.5,"On":4,"Oa":5.13,"Od":0.25,"pm":3,"pa":1},"p":[[-25,{"n":5,"e":3680,"s":1}],[-19,{"n":5,"e":3747}],[-14,{"n":5.5,"e":3796,"s":1}],[7,{"n":5,"e":6146,"s":1}]]}],[3765,{"n":"Sissoko","f":"Alpha","fp":"DL","r":4,"c":4,"s":{"s":12.5,"n":3,"a":4.17,"d":1.04,"Ss":7.5,"Sn":2,"Sa":3.75,"Sd":1.06,"Os":12.5,"On":3,"Oa":4.17,"Od":1.04,"pd":2,"pm":1},"p":[[7,{"n":3,"e":6146}],[6,{"n":4.5,"e":6150}],[1,{"n":5,"e":6198,"s":1}]]}],[3788,{"n":"Moukoudi","f":"Harold","fp":"DC","r":9,"c":4,"s":{"s":17.5,"n":4,"a":4.38,"d":0.48,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.48,"Os":41.5,"On":9,"Oa":4.61,"Od":0.74,"pd":9},"p":[[-20,{"n":4,"e":3736}],[-15,{"n":4,"e":3786}],[-14,{"n":5.5,"e":3796}],[-13,{"n":4.5,"e":3803}],[-8,{"n":6,"e":3855}],[7,{"n":4,"e":6146}],[6,{"n":5,"e":6150}],[5,{"n":4,"e":6167}],[4,{"n":4.5,"e":6174}]],"fo":[[6146,[{"t":"Y"}]]]}],[4030,{"n":"Aouchiche","f":"Adil","fp":"MO","r":17,"c":4,"s":{"g":2,"s":39.5,"n":7,"a":5.64,"d":0.9,"Sg":2,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":0.9,"Og":2,"Os":39.5,"On":7,"Oa":5.64,"Od":0.9,"pm":5,"pa":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[7,{"n":6,"e":6146,"g":1}],[6,{"n":4.5,"e":6150}],[5,{"n":5.5,"e":6167}],[4,{"n":7,"e":6174,"g":1}],[3,{"n":6,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":4.5,"e":6198}]],"a":{"m":16,"a":20,"M":30,"n":48}}],[6019,{"n":"Trauco","f":"Miguel","fp":"DL","r":6,"c":4,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":71,"On":16,"Oa":4.44,"Od":1.06,"pd":9,"pm":7},"p":[[-27,{"n":4.5,"e":3661}],[-26,{"n":5,"e":3676,"s":1}],[-24,{"n":4,"e":3693}],[-22,{"n":3,"e":3712}],[-21,{"n":5,"e":3727}],[-20,{"n":3.5,"e":3736}],[-19,{"n":4,"e":3747}],[-18,{"n":3.5,"e":3756}],[-16,{"n":6.5,"e":3776}],[-15,{"n":3,"e":3786}],[-14,{"n":5,"e":3796}],[-13,{"n":6.5,"e":3803,"g":1}],[-12,{"n":5,"e":3816,"s":1}],[-9,{"n":4.5,"e":3846}],[-7,{"n":3.5,"e":3866}],[7,{"n":4.5,"e":6146,"s":1}]]}],[6342,{"n":"Indjai Correia","f":"Edmilson","fp":"A","r":3,"c":4,"s":{"Os":15,"On":3,"Oa":5,"pm":3},"p":[[-24,{"n":5,"e":3693,"s":1}],[-20,{"n":5,"e":3736,"s":1}],[-18,{"n":5,"e":3756,"s":1}]]}],[6391,{"n":"Petit","f":"Victor","fp":"MD","r":1,"c":4}],[6400,{"n":"Rivera","f":"Maxence","fp":"A","r":7,"c":4,"s":{"s":28,"n":6,"a":4.67,"d":0.26,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.26,"Os":32.5,"On":7,"Oa":4.64,"Od":0.24,"pm":1,"pa":6},"p":[[-20,{"n":4.5,"e":3736,"s":1}],[7,{"n":4.5,"e":6146,"s":1}],[6,{"n":5,"e":6150}],[5,{"n":4.5,"e":6167,"s":1}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":5,"e":6195,"s":1}]],"a":{"m":6,"a":7,"M":7,"n":5}}],[6401,{"n":"Moueffek","f":"Aïmen","fp":"MD","r":5,"c":4,"s":{"s":13,"n":3,"a":4.33,"d":1.26,"Os":13,"On":3,"Oa":4.33,"Od":1.26,"pd":2,"pm":1},"p":[[5,{"n":3,"e":6167}],[4,{"n":4.5,"e":6174}],[1,{"n":5.5,"e":6198,"s":1}]],"fo":[[6174,[{"t":"Y"}]]]}],[6509,{"n":"Maçon","f":"Yvann","fp":"DL","r":10,"c":4,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.44,"Og":1,"Os":38.5,"On":8,"Oa":4.81,"Od":1.49,"pd":7,"pm":1},"p":[[-25,{"n":3,"e":3680}],[-24,{"n":4,"e":3693}],[6,{"n":4,"e":6150}],[5,{"n":3,"e":6167}],[4,{"n":5.5,"e":6174,"g":1}],[3,{"n":6.5,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":6.5,"e":6198}]],"fo":[[6195,[{"t":"I"}]],[6150,[{"t":"Y"}]],[6198,[{"t":"Y"}]]],"a":{"m":10,"a":13,"M":20,"n":21}}],[6549,{"n":"Retsos","f":"Panagiotis","fp":"DC","r":7,"c":4,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[7,{"n":4.5,"e":6146}]]}],[6593,{"n":"Gourna-Douath","f":"Lucas","fp":"MD","r":8,"c":4,"s":{"s":24,"n":5,"a":4.8,"d":0.27,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":24,"On":5,"Oa":4.8,"Od":0.27,"pd":4,"pm":1},"p":[[7,{"n":4.5,"e":6146,"s":1}],[6,{"n":5,"e":6150,"s":1}],[4,{"n":4.5,"e":6174,"s":1}],[3,{"n":5,"e":6186,"s":1}],[1,{"n":5,"e":6198,"s":1}]],"fo":[[6198,[{"t":"Y"}]]]}],[6704,{"n":"Neyou","f":"Yvan","fp":"MD","r":8,"c":4,"s":{"s":32.5,"n":6,"a":5.42,"d":0.66,"Os":32.5,"On":6,"Oa":5.42,"Od":0.66,"pm":6},"p":[[6,{"n":4.5,"e":6150}],[5,{"n":5,"e":6167,"s":1}],[4,{"n":6,"e":6174}],[3,{"n":5,"e":6186}],[2,{"n":6,"e":6195}],[1,{"n":6,"e":6198}]],"fo":[[6174,[{"t":"I"}]],[6167,[{"t":"Y"}]],[6186,[{"t":"Y"}]],[6195,[{"t":"Y"}]]],"a":{"m":4,"a":13,"M":19,"n":10}}],[6794,{"n":"Green","f":"Etienne","fp":"G","r":1,"c":4}],[6806,{"n":"Krasso","f":"Jean-Phillipe","fp":"A","r":5,"c":4,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":13,"On":3,"Oa":4.33,"Od":0.76,"pm":2,"pa":1},"p":[[7,{"n":3.5,"e":6146}],[5,{"n":5,"e":6167,"s":1}],[2,{"n":4.5,"e":6195,"s":1}]]}],[7138,{"n":"Sow","f":"Saidou","fp":"DL","r":5,"c":4,"s":{"s":8,"n":2,"a":4,"d":1.41,"Ss":8,"Sn":2,"Sa":4,"Sd":1.41,"Os":8,"On":2,"Oa":4,"Od":1.41,"pd":2},"p":[[7,{"n":3,"e":6146}],[6,{"n":5,"e":6150,"s":1}]]}],[7329,{"n":"Sidibé","f":"Abdoulaye","fp":"A","r":3,"c":4}],[7363,{"n":"Tormin","f":"Tyrone","fp":"MO","r":5,"c":4}],[23,{"n":"Majeed Waris","f":"","fp":"A","r":8,"c":41,"s":{"s":25,"n":6,"a":4.17,"d":0.41,"Ss":4,"Sn":1,"Sa":4,"Og":2,"Os":63,"On":13,"Oa":4.85,"Od":1.01,"pm":4,"pa":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663,"s":1}],[-26,{"n":5.5,"e":3677}],[-25,{"n":6,"e":3682}],[-24,{"n":7,"e":3697,"g":1}],[-23,{"n":6,"e":3707,"g":1,"s":1}],[-22,{"n":5,"e":3717}],[-21,{"n":4.5,"e":3722,"s":1}],[7,{"n":4,"e":6147,"s":1}],[5,{"n":3.5,"e":6164}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6186}],[2,{"n":4.5,"e":6196,"s":1}],[1,{"n":4.5,"e":6202,"s":1}]],"a":{"m":9,"a":15,"M":31,"n":20}}],[297,{"n":"Prcic","f":"Sanjin","fp":"MD","r":8,"c":41,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":24.5,"On":5,"Oa":4.9,"Od":0.22,"pm":5},"p":[[-28,{"n":null,"e":3657,"d":1}],[-9,{"n":5,"e":3840}],[-7,{"n":5,"e":3861,"s":1}],[5,{"n":5,"e":6164,"s":1}],[4,{"n":5,"e":6177,"s":1}],[1,{"n":4.5,"e":6202}]]}],[332,{"n":"Djiku","f":"Alexander","fp":"DC","r":10,"c":41,"s":{"s":26,"n":6,"a":4.33,"d":0.75,"Og":1,"Os":130,"On":25,"Oa":5.2,"Od":1.14,"pd":16,"pm":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":2.5,"e":3663}],[-26,{"n":5,"e":3677,"s":1}],[-25,{"n":5,"e":3682,"s":1}],[-24,{"n":7.5,"e":3697,"g":1}],[-23,{"n":6.5,"e":3707}],[-22,{"n":5,"e":3717}],[-21,{"n":6,"e":3722}],[-20,{"n":4.5,"e":3732}],[-19,{"n":6,"e":3747}],[-18,{"n":5.5,"e":3750}],[-17,{"n":5.5,"e":3767}],[-15,{"n":4.5,"e":3787}],[-14,{"n":7,"e":3788}],[-13,{"n":6.5,"e":3807}],[-12,{"n":5.5,"e":3809}],[-11,{"n":6,"e":3827}],[-9,{"n":5,"e":3840}],[-8,{"n":6,"e":3857}],[-7,{"n":4.5,"e":3861}],[6,{"n":4,"e":6156}],[5,{"n":5,"e":6164}],[4,{"n":4.5,"e":6177}],[3,{"n":3,"e":6186}],[2,{"n":4.5,"e":6196}],[1,{"n":5,"e":6202,"s":1}]],"fo":[[6156,[{"t":"Y"}]],[6186,[{"t":"Y"}]],[6196,[{"t":"Y"}]]],"a":{"m":12,"a":17,"M":26,"n":27}}],[357,{"n":"Thomasson","f":"Adrien","fp":"MO","r":19,"c":41,"s":{"s":32,"n":7,"a":4.57,"d":0.53,"Ss":32,"Sn":7,"Sa":4.57,"Sd":0.53,"Og":5,"Os":149,"On":27,"Oa":5.52,"Od":1.19,"pm":23,"pa":4},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3663}],[-26,{"n":6,"e":3677}],[-25,{"n":5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":6.5,"e":3707}],[-22,{"n":6.5,"e":3717,"g":1}],[-21,{"n":8,"e":3722,"g":1}],[-20,{"n":4.5,"e":3732}],[-19,{"n":7,"e":3747,"g":1}],[-18,{"n":5.5,"e":3750}],[-17,{"n":6.5,"e":3767,"g":1}],[-16,{"n":4.5,"e":3771}],[-15,{"n":4,"e":3787}],[-14,{"n":8,"e":3788}],[-13,{"n":7,"e":3807}],[-12,{"n":5,"e":3809}],[-11,{"n":7,"e":3827,"g":1}],[-10,{"n":4.5,"e":3831}],[-9,{"n":5.5,"e":3840}],[-8,{"n":5,"e":3857,"s":1}],[7,{"n":4,"e":6147}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":4,"e":6164}],[4,{"n":5.5,"e":6177}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":4.5,"e":6196}],[1,{"n":4.5,"e":6202}]],"fo":[[6164,[{"t":"Y"}]]],"a":{"m":20,"a":33,"M":56,"n":79}}],[486,{"n":"Kawashima","f":"Eiji","fp":"G","r":7,"c":41,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pg":2},"p":[[-28,{"n":null,"e":3657,"d":1}],[2,{"n":4,"e":6196}],[1,{"n":5,"e":6202}]]}],[747,{"n":"Koné","f":"Lamine","fp":"DC","r":8,"c":41,"s":{"s":11,"n":3,"a":3.67,"d":0.29,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":1,"Os":79,"On":17,"Oa":4.65,"Od":1.01,"pd":17},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5,"e":3682}],[-21,{"n":5.5,"e":3722}],[-20,{"n":4.5,"e":3732}],[-19,{"n":5.5,"e":3747}],[-18,{"n":6.5,"e":3750}],[-17,{"n":6,"e":3767,"g":1}],[-16,{"n":3.5,"e":3771}],[-13,{"n":4.5,"e":3807,"s":1}],[-10,{"n":5.5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":5,"e":3857}],[-7,{"n":3,"e":3861}],[7,{"n":3.5,"e":6147}],[2,{"n":3.5,"e":6196}],[1,{"n":4,"e":6202}]],"fo":[[6196,[{"t":"I"},{"t":"Y"}]]]}],[1185,{"n":"Diallo","f":"Habib","fp":"A","r":15,"c":41,"s":{"g":1,"s":22,"n":5,"a":4.4,"d":0.96,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":9,"Os":124,"On":25,"Oa":4.96,"Od":1.35,"pa":25},"p":[[-26,{"n":3,"e":3672}],[-25,{"n":5,"e":3684}],[-24,{"n":4.5,"e":3692}],[-23,{"n":5,"e":3703}],[-22,{"n":7.5,"e":3712,"g":1}],[-21,{"n":6.5,"e":3726,"g":1}],[-20,{"n":5,"e":3732}],[-19,{"n":7,"e":3738,"g":1}],[-18,{"n":2.5,"e":3754}],[-17,{"n":4,"e":3763}],[-16,{"n":5,"e":3774}],[-15,{"n":6,"e":3784,"g":1}],[-14,{"n":4,"e":3794}],[-13,{"n":3.5,"e":3799}],[-12,{"n":6.5,"e":3813,"g":1}],[-11,{"n":4,"e":3820}],[-10,{"n":6,"e":3832,"g":1}],[-9,{"n":4,"e":3839}],[-8,{"n":6,"e":3852,"g":1}],[-7,{"n":7,"e":3866,"g":1}],[7,{"n":6,"e":6147,"g":1,"s":1}],[5,{"n":4.5,"e":6163,"s":1}],[3,{"n":4,"e":6181,"s":1}],[2,{"n":4,"e":6193,"s":1}],[1,{"n":3.5,"e":6207}]],"a":{"m":16,"a":31,"M":59,"n":56}}],[1405,{"n":"Saadi","f":"Idriss","fp":"A","r":7,"c":41,"s":{"s":27,"n":6,"a":4.5,"d":0.32,"Os":27,"On":6,"Oa":4.5,"Od":0.32,"pa":6},"p":[[-28,{"n":null,"e":3657,"d":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":4.5,"e":6164,"s":1}],[4,{"n":4,"e":6177,"s":1}],[3,{"n":4.5,"e":6186,"s":1}],[2,{"n":4.5,"e":6196,"s":1}],[1,{"n":4.5,"e":6202,"s":1}]]}],[1409,{"n":"Lienard","f":"Dimitri","fp":"MO","r":15,"c":41,"s":{"s":30.5,"n":6,"a":5.08,"d":0.74,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.74,"Og":1,"Os":123.5,"On":23,"Oa":5.37,"Od":1.04,"pm":23},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4.5,"e":3663}],[-26,{"n":5,"e":3677,"s":1}],[-25,{"n":4.5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":6,"e":3707}],[-22,{"n":6,"e":3717}],[-19,{"n":5.5,"e":3747}],[-18,{"n":5,"e":3750,"s":1}],[-17,{"n":7,"e":3767}],[-16,{"n":4,"e":3771,"s":1}],[-15,{"n":5,"e":3787}],[-13,{"n":8,"e":3807,"g":1}],[-12,{"n":5,"e":3809}],[-11,{"n":7,"e":3827}],[-9,{"n":4.5,"e":3840}],[-8,{"n":6,"e":3857}],[-7,{"n":4,"e":3861}],[7,{"n":5.5,"e":6147}],[6,{"n":4,"e":6156}],[5,{"n":5.5,"e":6164,"s":1}],[4,{"n":6,"e":6177,"s":1}],[3,{"n":5,"e":6186,"s":1}],[2,{"n":4.5,"e":6196,"s":1}]],"a":{"m":16,"a":19,"M":22,"n":8}}],[1428,{"n":"Kamara","f":"Bingourou","fp":"G","r":12,"c":41,"s":{"s":21,"n":5,"a":4.2,"d":1.1,"Ss":21,"Sn":5,"Sa":4.2,"Sd":1.1,"Os":21,"On":5,"Oa":4.2,"Od":1.1,"pg":5},"p":[[-28,{"n":null,"e":3657,"d":1}],[7,{"n":3,"e":6147}],[6,{"n":4,"e":6156}],[5,{"n":4,"e":6164}],[4,{"n":6,"e":6177}],[3,{"n":4,"e":6186}]]}],[1433,{"n":"Aholou","f":"Jean Eudes","fp":"MD","r":6,"c":41,"s":{"g":1,"s":20,"n":4,"a":5,"d":1.08,"Sg":1,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.77,"Og":1,"Os":57.5,"On":11,"Oa":5.23,"Od":0.82,"pm":11},"p":[[-28,{"n":5.5,"e":3656}],[-24,{"n":6,"e":3693}],[-23,{"n":5,"e":3702,"s":1}],[-18,{"n":4,"e":3756}],[-17,{"n":5.5,"e":3765,"s":1}],[-16,{"n":6,"e":3776}],[-12,{"n":5.5,"e":3816,"s":1}],[7,{"n":6,"e":6147,"g":1}],[6,{"n":3.5,"e":6156}],[2,{"n":5,"e":6193,"s":1}],[1,{"n":5.5,"e":6203,"s":1}]],"fo":[[6147,[{"t":"Y"}]]]}],[1461,{"n":"Caci","f":"Anthony","fp":"DL","r":8,"c":41,"s":{"s":17,"n":4,"a":4.25,"d":0.65,"Og":1,"Os":62.5,"On":12,"Oa":5.21,"Od":1.32,"pd":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-19,{"n":7,"e":3747}],[-17,{"n":6,"e":3767}],[-15,{"n":4.5,"e":3787}],[-14,{"n":8,"e":3788,"g":1}],[-13,{"n":5,"e":3807}],[-12,{"n":5,"e":3809}],[-11,{"n":6,"e":3827}],[-10,{"n":4,"e":3831}],[6,{"n":3.5,"e":6156}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6186}],[2,{"n":5,"e":6196,"s":1}]]}],[1462,{"n":"Lala","f":"Kenny","fp":"DL","r":13,"c":41,"s":{"s":29.5,"n":7,"a":4.21,"d":0.64,"Ss":29.5,"Sn":7,"Sa":4.21,"Sd":0.64,"Og":1,"Os":130,"On":26,"Oa":5,"Od":1.06,"pd":20,"pm":6},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4.5,"e":3663}],[-26,{"n":5,"e":3677}],[-25,{"n":6,"e":3682}],[-24,{"n":8,"e":3697,"g":1}],[-23,{"n":6.5,"e":3707}],[-22,{"n":5.5,"e":3717}],[-21,{"n":7,"e":3722}],[-20,{"n":4,"e":3732}],[-19,{"n":5,"e":3747}],[-18,{"n":5,"e":3750}],[-17,{"n":5,"e":3767}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3788}],[-13,{"n":4.5,"e":3807}],[-12,{"n":5.5,"e":3809,"s":1}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":5,"e":3857}],[7,{"n":4.5,"e":6147}],[6,{"n":3,"e":6156}],[5,{"n":4,"e":6164}],[4,{"n":5,"e":6177}],[3,{"n":4.5,"e":6186}],[2,{"n":4,"e":6196}],[1,{"n":4.5,"e":6202}]],"a":{"m":15,"a":26,"M":56,"n":41}}],[1463,{"n":"Zohi","f":"Kévin","fp":"A","r":7,"c":41,"s":{"s":23.5,"n":5,"a":4.7,"d":0.45,"Og":1,"Os":97,"On":20,"Oa":4.85,"Od":0.56,"pm":4,"pa":16},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663,"s":1}],[-26,{"n":5,"e":3677}],[-25,{"n":5.5,"e":3682,"g":1}],[-24,{"n":5,"e":3697}],[-23,{"n":5.5,"e":3707}],[-22,{"n":4.5,"e":3717,"s":1}],[-21,{"n":6.5,"e":3722}],[-20,{"n":5,"e":3732,"s":1}],[-18,{"n":4.5,"e":3750,"s":1}],[-17,{"n":4.5,"e":3767,"s":1}],[-16,{"n":5,"e":3771,"s":1}],[-15,{"n":4.5,"e":3787,"s":1}],[-12,{"n":4.5,"e":3809,"s":1}],[-11,{"n":5,"e":3827,"s":1}],[-10,{"n":4.5,"e":3831,"s":1}],[6,{"n":5,"e":6156,"s":1}],[5,{"n":5,"e":6164,"s":1}],[3,{"n":5,"e":6186}],[2,{"n":4,"e":6196,"s":1}],[1,{"n":4.5,"e":6202,"s":1}]],"a":{"m":6,"a":7,"M":12,"n":9}}],[1871,{"n":"Carole","f":"Lionel","fp":"DL","r":8,"c":41,"s":{"s":25,"n":6,"a":4.17,"d":0.61,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":0.75,"Os":88,"On":19,"Oa":4.63,"Od":0.88,"pd":16,"pm":3},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-24,{"n":6.5,"e":3697}],[-23,{"n":5,"e":3707,"s":1}],[-22,{"n":4,"e":3717}],[-21,{"n":5.5,"e":3722}],[-20,{"n":4.5,"e":3732}],[-19,{"n":4.5,"e":3747,"s":1}],[-18,{"n":6.5,"e":3750}],[-16,{"n":3.5,"e":3771}],[-14,{"n":5,"e":3788,"s":1}],[-10,{"n":5,"e":3831}],[-8,{"n":5,"e":3857,"s":1}],[-7,{"n":4,"e":3861}],[7,{"n":3.5,"e":6147}],[6,{"n":4.5,"e":6156,"s":1}],[5,{"n":3.5,"e":6164}],[4,{"n":5,"e":6177,"s":1}],[2,{"n":4.5,"e":6196}],[1,{"n":4,"e":6202}]],"fo":[[6202,[{"t":"Y"}]]]}],[2077,{"n":"Aaneba","f":"Ismaël","fp":"DC","r":1,"c":41,"s":{},"p":[[-28,{"n":null,"e":3657,"d":1}]]}],[2309,{"n":"Mothiba","f":"Lebo","fp":"A","r":7,"c":41,"s":{"Og":4,"Os":76.5,"On":16,"Oa":4.78,"Od":1.52,"pa":16},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":4.5,"e":3677,"s":1}],[-25,{"n":5,"e":3682,"s":1}],[-24,{"n":4.5,"e":3697,"s":1}],[-19,{"n":3.5,"e":3747}],[-17,{"n":7,"e":3767,"g":1}],[-16,{"n":3,"e":3771}],[-15,{"n":4.5,"e":3787}],[-14,{"n":7.5,"e":3788,"g":1}],[-13,{"n":8,"e":3807,"g":2}],[-12,{"n":3,"e":3809}],[-11,{"n":5.5,"e":3827}],[-10,{"n":4.5,"e":3831,"s":1}],[-9,{"n":4.5,"e":3840,"s":1}],[-8,{"n":4,"e":3857,"s":1}],[-7,{"n":3.5,"e":3861}]]}],[2609,{"n":"Sels","f":"Matz","fp":"G","r":3,"c":41,"s":{"Os":119,"On":21,"Oa":5.67,"Od":0.99,"pg":21},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":6,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":6,"e":3707}],[-22,{"n":4.5,"e":3717}],[-21,{"n":5.5,"e":3722}],[-20,{"n":5.5,"e":3732}],[-19,{"n":5,"e":3747}],[-18,{"n":7,"e":3750}],[-17,{"n":6,"e":3767}],[-16,{"n":4,"e":3771}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3788}],[-13,{"n":5.5,"e":3807}],[-12,{"n":6,"e":3809}],[-11,{"n":7.5,"e":3827}],[-10,{"n":5.5,"e":3831}],[-9,{"n":5.5,"e":3840}],[-8,{"n":8,"e":3857}],[-7,{"n":5,"e":3861}]]}],[2679,{"n":"Sissoko","f":"Ibrahima","fp":"MD","r":9,"c":41,"s":{"s":34,"n":7,"a":4.86,"d":0.75,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.75,"Os":128.5,"On":26,"Oa":4.94,"Od":0.93,"pm":26},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5.5,"e":3663,"s":1}],[-26,{"n":4.5,"e":3677}],[-24,{"n":5.5,"e":3697}],[-23,{"n":5,"e":3707}],[-22,{"n":5.5,"e":3717}],[-21,{"n":7,"e":3722}],[-20,{"n":4,"e":3732}],[-19,{"n":5,"e":3747,"s":1}],[-18,{"n":5.5,"e":3750}],[-17,{"n":5,"e":3767}],[-16,{"n":3,"e":3771}],[-14,{"n":7,"e":3788}],[-13,{"n":5,"e":3807,"s":1}],[-12,{"n":5,"e":3809,"s":1}],[-11,{"n":4.5,"e":3827,"s":1}],[-10,{"n":4.5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":5.5,"e":3857}],[-7,{"n":3.5,"e":3861}],[7,{"n":5,"e":6147,"s":1}],[6,{"n":6,"e":6156,"s":1}],[5,{"n":4.5,"e":6164}],[4,{"n":5,"e":6177}],[3,{"n":5,"e":6186}],[2,{"n":3.5,"e":6196}],[1,{"n":5,"e":6202}]],"fo":[[6186,[{"t":"Y"}]]]}],[2717,{"n":"Ajorque","f":"Ludovic","fp":"A","r":14,"c":41,"s":{"g":1,"s":32.5,"n":7,"a":4.64,"d":0.8,"Sg":1,"Ss":32.5,"Sn":7,"Sa":4.64,"Sd":0.8,"Og":8,"Os":142,"On":28,"Oa":5.07,"Od":1.4,"pa":28},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":3,"e":3663}],[-26,{"n":4.5,"e":3677}],[-25,{"n":4.5,"e":3682}],[-24,{"n":6,"e":3697}],[-23,{"n":4.5,"e":3707}],[-22,{"n":4,"e":3717}],[-21,{"n":7,"e":3722,"g":1}],[-20,{"n":3.5,"e":3732}],[-19,{"n":6.5,"e":3747,"g":1}],[-18,{"n":7,"e":3750,"g":1}],[-17,{"n":8,"e":3767,"g":1}],[-16,{"n":4.5,"e":3771,"s":1}],[-15,{"n":5,"e":3787}],[-14,{"n":7,"e":3788,"g":1}],[-13,{"n":8,"e":3807,"g":1}],[-12,{"n":3.5,"e":3809}],[-11,{"n":5,"e":3827}],[-10,{"n":3.5,"e":3831}],[-9,{"n":4,"e":3840}],[-8,{"n":6,"e":3857,"g":1}],[-7,{"n":4.5,"e":3861,"s":1}],[7,{"n":4.5,"e":6147}],[6,{"n":4,"e":6156}],[5,{"n":6,"e":6164,"g":1}],[4,{"n":4.5,"e":6177}],[3,{"n":4,"e":6186}],[2,{"n":4,"e":6196}],[1,{"n":5.5,"e":6202}]],"fo":[[6147,[{"t":"Y"}]],[6177,[{"t":"Y"}]]],"a":{"m":15,"a":28,"M":62,"n":58}}],[2726,{"n":"Stefan Mitrovic","f":"","fp":"DC","r":11,"c":41,"s":{"g":1,"s":29.5,"n":6,"a":4.92,"d":1.59,"Sg":1,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.44,"Og":2,"Os":120,"On":24,"Oa":5,"Od":1.24,"pd":24},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5.5,"e":3682}],[-24,{"n":7,"e":3697}],[-23,{"n":6,"e":3707}],[-22,{"n":4.5,"e":3717}],[-21,{"n":7,"e":3722,"g":1}],[-20,{"n":4,"e":3732}],[-19,{"n":4.5,"e":3747}],[-18,{"n":5.5,"e":3750}],[-16,{"n":3,"e":3771}],[-15,{"n":4,"e":3787}],[-14,{"n":6,"e":3788}],[-13,{"n":5.5,"e":3807}],[-12,{"n":5.5,"e":3809}],[-11,{"n":5,"e":3827}],[-9,{"n":5,"e":3840}],[-7,{"n":3,"e":3861}],[7,{"n":5.5,"e":6147}],[6,{"n":4,"e":6156}],[5,{"n":4,"e":6164}],[4,{"n":7.5,"e":6177,"g":1}],[3,{"n":5.5,"e":6186}],[1,{"n":3,"e":6202}]],"a":{"m":11,"a":17,"M":26,"n":10}}],[2769,{"n":"Simakan","f":"Mohamed","fp":"DC","r":10,"c":41,"s":{"s":33,"n":7,"a":4.71,"d":1.35,"Ss":33,"Sn":7,"Sa":4.71,"Sd":1.35,"Os":101,"On":21,"Oa":4.81,"Od":1.04,"pd":18,"pm":3},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":5,"e":3677}],[-25,{"n":5,"e":3682}],[-24,{"n":5,"e":3697,"s":1}],[-23,{"n":6,"e":3707}],[-22,{"n":5,"e":3717}],[-17,{"n":5,"e":3767}],[-16,{"n":3,"e":3771}],[-15,{"n":4.5,"e":3787}],[-14,{"n":6,"e":3788}],[-12,{"n":5.5,"e":3809}],[-11,{"n":6,"e":3827}],[-10,{"n":4.5,"e":3831}],[-8,{"n":3.5,"e":3857}],[-7,{"n":4,"e":3861}],[7,{"n":5,"e":6147}],[6,{"n":4,"e":6156}],[5,{"n":3,"e":6164}],[4,{"n":7,"e":6177}],[3,{"n":5,"e":6186}],[2,{"n":5.5,"e":6196}],[1,{"n":3.5,"e":6202}]],"fo":[[6202,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":18,"n":11}}],[2820,{"n":"Pelletier","f":"Louis","fp":"G","r":1,"c":41,"s":{},"p":[[-28,{"n":null,"e":3657,"d":1}]]}],[3775,{"n":"Bellegarde","f":"Jean-Ricner","fp":"MD","r":10,"c":41,"s":{"s":35,"n":7,"a":5,"d":0.65,"Ss":35,"Sn":7,"Sa":5,"Sd":0.65,"Os":129,"On":25,"Oa":5.16,"Od":0.57,"pm":24,"pa":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":4,"e":3663}],[-26,{"n":5.5,"e":3677}],[-25,{"n":5.5,"e":3682}],[-24,{"n":5,"e":3697,"s":1}],[-23,{"n":6,"e":3707}],[-22,{"n":5.5,"e":3717,"s":1}],[-21,{"n":5.5,"e":3722,"s":1}],[-20,{"n":5,"e":3732}],[-16,{"n":4.5,"e":3771}],[-15,{"n":5,"e":3787,"s":1}],[-14,{"n":5,"e":3788,"s":1}],[-13,{"n":5.5,"e":3807}],[-12,{"n":5,"e":3809}],[-11,{"n":6,"e":3827}],[-10,{"n":4.5,"e":3831}],[-9,{"n":5,"e":3840,"s":1}],[-8,{"n":6,"e":3857}],[-7,{"n":5.5,"e":3861}],[7,{"n":6,"e":6147}],[6,{"n":5,"e":6156}],[5,{"n":4,"e":6164}],[4,{"n":5.5,"e":6177}],[3,{"n":5,"e":6186}],[2,{"n":4.5,"e":6196}],[1,{"n":5,"e":6202,"s":1}]],"fo":[[6186,[{"t":"Y"}]]]}],[4918,{"n":"Siby","f":"Mahamé","fp":"MD","r":2,"c":41,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-25,{"n":5,"e":4827,"s":1}]]}],[5457,{"n":"Lebeau","f":"Adrien","fp":"MO","r":3,"c":41,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[-25,{"n":5,"e":3682,"s":1}]]}],[6864,{"n":"Chahiri","f":"Mehdi","fp":"MO","r":13,"c":41,"s":{"g":2,"s":31,"n":6,"a":5.17,"d":1.03,"Og":2,"Os":31,"On":6,"Oa":5.17,"Od":1.03,"pm":5,"pa":1},"p":[[6,{"n":4,"e":6156}],[5,{"n":6.5,"e":6164,"g":1,"s":1}],[4,{"n":5.5,"e":6177,"s":1}],[3,{"n":5,"e":6186,"s":1}],[2,{"n":4,"e":6196}],[1,{"n":6,"e":6202,"g":1}]],"a":{"m":7,"a":15,"M":26,"n":19}}],[7267,{"n":"Besic","f":"Benjamin","fp":"MO","r":2,"c":41}]],"np":620,"c":[[16,{"n":"Angers","rn":"Angers SCO","cn":"Angers","crn":"Angers-SCO","a":"ANG","el":1046,"s":{"w":3,"l":3,"d":1,"pl":7,"GA":-7,"GS":8,"GT":15,"p":10},"nm":[[6137,0.344],[6118,0.474]],"pM":[null,6200,6192,6178,6173,6158,6154,3867,3848,3844,3828,3821,3809,3805,3789,3783,3769,3766,3749,3742,3729,3721,3709,3706,3689,3685,3668,3660,3648],"DMI":[3766,3729,3783]}],[3,{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Bordeaux","crn":"Girondins-de-Bordeaux","a":"BOD","el":1048,"s":{"w":2,"l":2,"d":3,"pl":7,"GA":2,"GS":7,"GT":5,"p":9},"nm":[[6128,0.685],[6122,0.441]],"pM":[null,6199,6192,6179,6169,6159,6148,6141,3849,3847,3829,3819,3810,3804,3790,3785,3770,3759,3750,3746,3730,3724,3710,3698,3692,3679,3674,3659,3656],"DMI":[3770,3790]}],[75,{"n":"Brest","rn":"Stade Brestois 29","cn":"Brest","crn":"Stade-Brestois-29","a":"BRS","el":1035,"s":{"w":3,"l":4,"d":0,"pl":7,"GA":-4,"GS":11,"GT":15,"p":9},"nm":[[6129,0.463],[6126,0.33]],"pM":[null,6206,6197,6180,6168,6158,6149,3859,3853,3839,3828,3818,3808,3798,3791,3779,3771,3758,3751,3741,3737,3718,3711,3698,3696,3680,3673,3660,3654],"DMI":[3771,3696]}],[7,{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon","crn":"Dijon-FCO","a":"DIJ","el":1022,"s":{"w":0,"l":5,"d":2,"pl":7,"GA":-10,"GS":4,"GT":14,"p":2},"nm":[[6136,0.211],[6119,0.605]],"pM":[null,6200,6188,6180,6177,6160,6148,3860,3856,3840,3830,3818,3811,3801,3792,3778,3772,3762,3748,3738,3731,3723,3711,3705,3690,3679,3669,3666,3649],"DMI":[3666,3811]}],[104,{"n":"Lens","rn":"Racing Club de Lens","cn":"Lens","crn":"Racing-Club-de-Lens","a":"LEN","el":1000,"s":{"w":4,"l":2,"d":1,"pl":7,"GA":0,"GS":10,"GT":10,"p":13},"nm":[[6130,0.375],[6121,0.232]],"pM":[null,6205,6190,6182,6169,6165,6150,6140,null,4984,4974,4966,4952,4945,4935,4923,4917,4903,4888,4882,4871,4863,4852,4841,4833,4820,4814,4805,4794],"DMI":[]}],[12,{"n":"Lille","rn":"LOSC","cn":"Lille","crn":"LOSC","a":"LIL","el":1188,"s":{"w":5,"l":0,"d":2,"pl":7,"GA":11,"GS":13,"GT":2,"p":17},"nm":[[6135,0.671],[6120,0.624]],"pM":[null,6201,6191,6181,6171,6161,6156,3861,3854,3841,3837,3819,3812,3799,3795,3778,3773,3758,3752,3740,3731,3719,3717,3699,3689,3681,3670,3664,3650],"DMI":[3854,3650,3773]}],[6,{"n":"Lorient","rn":"FC Lorient","cn":"Lorient","crn":"FC-Lorient","a":"LOR","el":948,"s":{"w":2,"l":4,"d":1,"pl":7,"GA":-2,"GS":12,"GT":14,"p":7},"nm":[[6119,0.395],[6131,0.183]],"pM":[null,6202,6195,6182,6168,6162,6151,6145,4992,4979,4972,4964,4951,4945,4932,4920,4913,4900,4893,4887,4873,4864,4856,4842,4831,4823,4816,4802,4788],"DMI":[]}],[18,{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Lyon","crn":"Olympique-Lyonnais","a":"LYO","el":1100,"s":{"w":2,"l":1,"d":4,"pl":7,"GA":3,"GS":10,"GT":7,"p":10},"nm":[[6120,0.376],[6132,0.516]],"pM":[null,6204,6188,6179,6170,6162,3870,6147,3850,3846,3830,3820,3817,3800,3793,3787,3773,3764,3753,3745,3730,3720,3713,3704,3695,3682,3672,3661,3650],"DMI":[3650,3773]}],[9,{"n":"Marseille","rn":"Olympique de Marseille","cn":"Marseille","crn":"Olympique-de-Marseille","a":"MRS","el":1208,"s":{"w":3,"l":1,"d":3,"pl":7,"GA":2,"GS":10,"GT":8,"p":12},"nm":[[6121,0.768],[6131,0.817]],"pM":[null,6198,6197,6187,6171,6163,6157,3860,3851,3838,3831,3823,3812,3800,3797,3779,3769,3759,3754,3739,3735,3721,3710,3702,3691,3681,3671,3665,3651],"DMI":[]}],[11,{"n":"Metz","rn":"FC Metz","cn":"Metz","crn":"FC-Metz","a":"MET","el":950,"s":{"w":2,"l":3,"d":2,"pl":7,"GA":0,"GS":7,"GT":7,"p":8},"nm":[[6133,0.305],[6124,0.553]],"pM":[null,6207,6193,6181,6172,6163,6151,3866,3852,3839,3832,3820,3813,3799,3794,3784,3774,3763,3754,3738,3732,3726,3712,3703,3692,3684,3672,3658,3652],"DMI":[3712,3866,3652,3784]}],[13,{"n":"Monaco","rn":"AS Monaco","cn":"Monaco","crn":"AS-Monaco","a":"MON","el":1089,"s":{"w":3,"l":2,"d":2,"pl":7,"GA":1,"GS":10,"GT":9,"p":11},"nm":[[6122,0.559],[6132,0.484]],"pM":[null,6203,6193,6183,6176,6164,6149,6142,3853,3842,3833,3822,3816,3801,3790,3780,3777,3760,3749,3740,3734,3722,3714,3706,3688,3683,3669,3662,3653],"DMI":[3790]}],[15,{"n":"Montpellier","rn":"Montpellier Hérault SC","cn":"Montpellier","crn":"Montpellier-Herault-SC","a":"MTP","el":1091,"s":{"w":3,"l":2,"d":2,"pl":7,"GA":4,"GS":13,"GT":9,"p":11},"nm":[[6134,0.522],[6127,0.497]],"pM":[null,6204,6189,6184,6173,6160,6152,6142,3857,3842,3836,3821,3813,3802,3796,3781,3772,3761,3752,3741,3728,3723,3715,3703,3693,3683,3668,3663,3655],"DMI":[3836,3693,3796]}],[8,{"n":"Nantes","rn":"FC Nantes","cn":"Nantes","crn":"FC-Nantes","a":"NTE","el":1089,"s":{"w":2,"l":3,"d":2,"pl":7,"GA":-1,"GS":9,"GT":10,"p":8},"nm":[[6130,0.625],[6123,0.282]],"pM":[null,6199,6194,6183,6174,6161,6153,3864,3850,3843,3832,3822,3810,3803,3791,3782,3775,3762,3755,3742,3736,3724,3716,3700,3690,3684,3671,3664,3648],"DMI":[3775,3700]}],[19,{"n":"Nice","rn":"OGC Nice","cn":"Nice","crn":"OGC-Nice","a":"NCE","el":1064,"s":{"w":4,"l":2,"d":1,"pl":7,"GA":1,"GS":10,"GT":9,"p":13},"nm":[[6118,0.526],[6135,0.329]],"pM":[null,6205,6196,6184,6175,6159,6153,6146,3854,3843,3834,3827,3814,3804,3793,3783,3776,3763,3751,3743,3729,3725,3713,3701,3694,3687,3673,3659,3653],"DMI":[3854,3729,3783]}],[67,{"n":"Nîmes","rn":"Nîmes Olympique","cn":"Nimes","crn":"Nimes-Olympique","a":"NIM","el":913,"s":{"w":2,"l":3,"d":2,"pl":7,"GA":-2,"GS":9,"GT":11,"p":8},"nm":[[6128,0.315],[6124,0.447]],"pM":[null,6206,6194,6185,6170,6165,6152,6144,3855,3841,3835,3824,null,3807,3789,3784,3770,3764,3755,3739,3733,3727,3714,3705,3694,3685,3675,3665,3652],"DMI":[3770,3652,3784]}],[2,{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris","crn":"Paris-Saint-Germain","a":"PAR","el":1251,"s":{"w":5,"l":2,"d":0,"pl":7,"GA":13,"GS":16,"GT":3,"p":15},"nm":[[6136,0.789],[6123,0.718]],"pM":[null,6207,6190,6187,6175,6166,3870,6144,3849,3844,3834,3823,3811,3798,3795,3780,3775,3761,3756,3744,3734,3719,3715,3700,3695,3678,3674,3666,3657],"DMI":[3666,3811,3775,3700]}],[68,{"n":"Reims","rn":"Stade de Reims","cn":"Reims","crn":"Stade-de-Reims","a":"RMS","el":1076,"s":{"w":0,"l":5,"d":2,"pl":7,"GA":-7,"GS":6,"GT":13,"p":2},"nm":[[6134,0.478],[6125,0.522]],"pM":[null,6203,6191,6178,6172,6166,6155,6145,3856,3845,3836,3824,3814,3805,3794,3785,3768,3765,3757,3745,3733,3726,3709,3701,3697,3686,3676,3662,3654],"DMI":[3836,3697]}],[20,{"n":"Rennes","rn":"Stade Rennais FC","cn":"Rennes","crn":"Stade-Rennais-FC","a":"REN","el":1158,"s":{"w":4,"l":0,"d":3,"pl":7,"GA":7,"GS":15,"GT":8,"p":15},"nm":[[6137,0.656],[6126,0.67]],"pM":[null,6201,6189,6185,6176,6167,6155,3864,3851,3845,3833,3825,null,3806,3792,3786,3774,3766,3753,3746,3735,3725,3716,3699,3696,3686,3675,3667,3655],"DMI":[3766,3696]}],[4,{"n":"Saint-Étienne","rn":"AS Saint-Etienne","cn":"Saint-Etienne","crn":"AS-Saint-Etienne","a":"STE","el":1093,"s":{"w":3,"l":3,"d":1,"pl":7,"GA":-1,"GS":9,"GT":10,"p":10},"nm":[[6133,0.695],[6127,0.503]],"pM":[null,6198,6195,6186,6174,6167,6150,6146,3855,3846,3829,3826,3816,3803,3796,3786,3776,3765,3756,3747,3736,3727,3712,3702,3693,3680,3676,3661,3656],"DMI":[3712,3866,3693,3796]}],[41,{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"Strasbourg","crn":"RC-Strasbourg-Alsace","a":"STB","el":1061,"s":{"w":1,"l":6,"d":0,"pl":7,"GA":-10,"GS":6,"GT":16,"p":3},"nm":[[6129,0.537],[6125,0.478]],"pM":[null,6202,6196,6186,6177,6164,6156,6147,3857,3840,3831,3827,3809,3807,3788,3787,3771,3767,3750,3747,3732,3722,3717,3707,3697,3682,3677,3663,3657],"DMI":[3771,3697]}]],"nc":20,"op":[[42,{"n":"Amiens"}],[31,{"n":"Man. United"}],[76,{"n":"Norwich"}],[35,{"n":"Southampton"}],[39,{"n":"Arsenal"}],[22,{"n":"Everton"}],[36,{"n":"Bournemouth"}],[78,{"n":"Aston Villa"}],[26,{"n":"Crystal Palace"}],[47,{"n":"Leganés"}],[62,{"n":"Real Madrid"}],[57,{"n":"Bilbao"}],[49,{"n":"Valencia"}],[66,{"n":"Eibar"}],[56,{"n":"Espanyol"}],[55,{"n":"Sevilla"}],[87,{"n":"Mallorca"}],[59,{"n":"Barcelona"}],[74,{"n":"Valladolid"}],[64,{"n":"Villarreal"}],[10,{"n":"Toulouse"}],[88,{"n":"Ajaccio"}],[100,{"n":"Rodez"}],[92,{"n":"Clermont"}],[14,{"n":"Guingamp"}],[103,{"n":"Le Mans"}],[102,{"n":"Sochaux"}],[17,{"n":"Nancy"}],[5,{"n":"Caen"}],[91,{"n":"Valenciennes"}],[101,{"n":"Auxerre"}],[97,{"n":"Orléans"}],[94,{"n":"Grenoble"}],[93,{"n":"Châteauroux"}],[98,{"n":"Niort"}],[43,{"n":"Troyes"}],[89,{"n":"Le Havre"}],[90,{"n":"Chambly"}],[46,{"n":"Newcastle"}],[28,{"n":"West Ham"}],[23,{"n":"Burnley"}],[21,{"n":"Liverpool"}],[69,{"n":"Wolverhampton"}],[25,{"n":"Chelsea"}],[33,{"n":"Watford"}],[24,{"n":"Tottenham"}],[107,{"n":"Paris FC"}],[51,{"n":"Celta"}],[86,{"n":"Granada"}],[58,{"n":"Getafe"}],[52,{"n":"Real Sociedad"}],[85,{"n":"Osasuna"}],[60,{"n":"Betis"}],[63,{"n":"Levante"}],[123,{"n":"Sassuolo"}],[124,{"n":"Udinese"}],[113,{"n":"Lecce"}],[115,{"n":"Juventus"}],[111,{"n":"Napoli"}],[121,{"n":"Lazio"}],[120,{"n":"Sampdoria"}],[118,{"n":"Spal"}],[117,{"n":"Genoa"}],[116,{"n":"Roma"}],[119,{"n":"Atalanta"}],[122,{"n":"Torino"}],[110,{"n":"Fiorentina"}],[127,{"n":"Bologna"}],[126,{"n":"Verona"}],[109,{"n":"Brescia"}],[112,{"n":"Inter"}],[114,{"n":"Parma"}],[125,{"n":"Milan"}],[108,{"n":"Cagliari"}],[54,{"n":"Atlético"}],[48,{"n":"Alavés"}],[77,{"n":"Sheffield"}],[45,{"n":"Brighton"}],[40,{"n":"Man. City"}],[29,{"n":"Leicester"}],[32,{"n":"West Bromwich"}]],"Ne":[[6137,{"d":8,"dB":1603479600,"t1":20,"t2":16,"o":{"h":1.78,"d":3.72,"a":4.75}}],[6118,{"d":9,"dB":1604239200,"t1":16,"t2":19}],[6128,{"d":8,"dB":1603634400,"t1":3,"t2":67,"o":{"h":1.93,"d":3.55,"a":4.1}}],[6122,{"d":9,"dB":1604246400,"t1":13,"t2":3}],[6129,{"d":8,"dB":1603634400,"t1":75,"t2":41,"o":{"h":2.33,"d":3.55,"a":3.02}}],[6126,{"d":9,"dB":1604160000,"t1":20,"t2":75}],[6136,{"d":8,"dB":1603566000,"t1":2,"t2":7,"o":{"h":1.05,"d":14.5,"a":30}}],[6119,{"d":9,"dB":1604239200,"t1":7,"t2":6}],[6130,{"d":8,"dB":1603627200,"t1":104,"t2":8,"o":{"h":2.14,"d":3.3,"a":3.65}}],[6121,{"d":9,"dB":1604088000,"t1":9,"t2":104}],[6135,{"d":8,"dB":1603641600,"t1":19,"t2":12,"o":{"h":3.35,"d":3.4,"a":2.22}}],[6120,{"d":9,"dB":1604260800,"t1":12,"t2":18}],[6131,{"d":8,"dB":1603551600,"t1":6,"t2":9,"o":{"h":3.15,"d":3.35,"a":2.33}}],[6132,{"d":8,"dB":1603656000,"t1":18,"t2":13,"o":{"h":1.67,"d":4.3,"a":4.7}}],[6133,{"d":8,"dB":1603634400,"t1":11,"t2":4,"o":{"h":2.39,"d":3.35,"a":3.05}}],[6124,{"d":9,"dB":1604239200,"t1":67,"t2":11}],[6134,{"d":8,"dB":1603634400,"t1":15,"t2":68,"o":{"h":2.24,"d":3.12,"a":3.32}}],[6127,{"d":9,"dB":1604232000,"t1":4,"t2":15}],[6123,{"d":9,"dB":1604174400,"t1":8,"t2":2}],[6125,{"d":9,"dB":1604239200,"t1":68,"t2":41}]],"e":[[3648,{"d":28,"dB":1583607600,"t1s":2,"t2s":0,"t1":16,"t2":8}],[3685,{"d":25,"dB":1581793200,"t1s":1,"t2s":0,"t1":67,"t2":16}],[3689,{"d":24,"dB":1581104700,"t1s":0,"t2s":2,"t1":16,"t2":12}],[3709,{"d":22,"dB":1580583600,"t1s":1,"t2s":4,"t1":16,"t2":68}],[3721,{"d":21,"dB":1579969800,"t1s":0,"t2s":0,"t1":9,"t2":16}],[3729,{"d":20,"dB":1578769200,"t1s":1,"t2s":1,"t1":16,"t2":19}],[3742,{"d":19,"dB":1576957500,"t1s":1,"t2s":2,"t1":8,"t2":16}],[3749,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":16,"t2":13}],[3766,{"d":17,"dB":1575745200,"t1s":2,"t2s":1,"t1":20,"t2":16}],[3769,{"d":16,"dB":1575396000,"t1s":0,"t2s":2,"t1":16,"t2":9}],[3783,{"d":15,"dB":1575140400,"t1s":3,"t2s":1,"t1":19,"t2":16}],[3789,{"d":14,"dB":1574535600,"t1s":1,"t2s":0,"t1":16,"t2":67}],[3805,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":68,"t2":16}],[3809,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":16,"t2":41}],[3821,{"d":11,"dB":1572112800,"t1s":0,"t2s":0,"t1":15,"t2":16}],[3828,{"d":10,"dB":1571508000,"t1s":0,"t2s":1,"t1":16,"t2":75}],[3844,{"d":9,"dB":1570289400,"t1s":4,"t2s":0,"t1":2,"t2":16}],[3848,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":16,"t2":42}],[6138,{"d":7,"dB":1603026000,"t1s":1,"t2s":1,"t1":16,"t2":11}],[6154,{"d":6,"dB":1601665200,"t1s":6,"t2s":1,"t1":2,"t2":16}],[6158,{"d":5,"dB":1601211600,"t1s":3,"t2s":2,"t1":16,"t2":75}],[6173,{"d":4,"dB":1600606800,"t1s":4,"t2s":1,"t1":15,"t2":16}],[6178,{"d":3,"dB":1600002000,"t1s":1,"t2s":0,"t1":16,"t2":68}],[6192,{"d":2,"dB":1598792400,"t1s":0,"t2s":2,"t1":16,"t2":3}],[6200,{"d":1,"dB":1598108400,"t1s":0,"t2s":1,"t1":7,"t2":16}],[4094,{"d":22,"dB":1578754800,"t1s":4,"t2s":0,"t1":31,"t2":76}],[4165,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":35,"t2":76}],[4176,{"d":14,"dB":1575208800,"t1s":2,"t2s":2,"t1":76,"t2":39}],[4183,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":22,"t2":76}],[4214,{"d":10,"dB":1572193800,"t1s":1,"t2s":3,"t1":76,"t2":31}],[4219,{"d":9,"dB":1571493600,"t1s":0,"t2s":0,"t1":36,"t2":76}],[4232,{"d":8,"dB":1570284000,"t1s":1,"t2s":5,"t1":76,"t2":78}],[4242,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":26,"t2":76}],[4312,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":47,"t2":62}],[4318,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":57,"t2":47}],[4332,{"d":36,"dB":1594575000,"t1s":1,"t2s":0,"t1":47,"t2":49}],[4341,{"d":35,"dB":1594315800,"t1s":0,"t2s":0,"t1":66,"t2":47}],[4351,{"d":34,"dB":1593961200,"t1s":0,"t2s":1,"t1":56,"t2":47}],[4361,{"d":33,"dB":1593543600,"t1s":0,"t2s":3,"t1":47,"t2":55}],[4394,{"d":30,"dB":1592587800,"t1s":1,"t2s":1,"t1":87,"t2":47}],[4399,{"d":29,"dB":1592337600,"t1s":2,"t2s":0,"t1":59,"t2":47}],[4412,{"d":28,"dB":1592069400,"t1s":1,"t2s":2,"t1":47,"t2":74}],[4427,{"d":27,"dB":1583688600,"t1s":1,"t2s":2,"t1":64,"t2":47}],[3656,{"d":28,"dB":1583676000,"t1s":1,"t2s":1,"t1":4,"t2":3}],[3661,{"d":27,"dB":1583092800,"t1s":2,"t2s":0,"t1":18,"t2":4}],[3676,{"d":26,"dB":1582466400,"t1s":1,"t2s":1,"t1":4,"t2":68}],[3680,{"d":25,"dB":1581868800,"t1s":3,"t2s":2,"t1":75,"t2":4}],[3693,{"d":24,"dB":1581256800,"t1s":1,"t2s":0,"t1":15,"t2":4}],[3702,{"d":23,"dB":1580932800,"t1s":0,"t2s":2,"t1":4,"t2":9}],[3712,{"d":22,"dB":1580659200,"t1s":3,"t2s":1,"t1":11,"t2":4}],[3765,{"d":17,"dB":1575813600,"t1s":3,"t2s":1,"t1":68,"t2":4}],[3776,{"d":16,"dB":1575482400,"t1s":4,"t2s":1,"t1":4,"t2":19}],[3786,{"d":15,"dB":1575216000,"t1s":2,"t2s":1,"t1":20,"t2":4}],[3846,{"d":9,"dB":1570388400,"t1s":1,"t2s":0,"t1":4,"t2":18}],[3660,{"d":27,"dB":1583002800,"t1s":0,"t2s":1,"t1":75,"t2":16}],[3668,{"d":26,"dB":1582398000,"t1s":1,"t2s":0,"t1":16,"t2":15}],[3867,{"d":7,"dB":1569430800,"t1s":0,"t2s":2,"t1":10,"t2":16}],[3706,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":13,"t2":16}],[4788,{"d":28,"dB":1583589600,"t1s":1,"t2s":0,"t1":88,"t2":6}],[4816,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":100,"t2":6}],[4823,{"d":25,"dB":1581775200,"t1s":0,"t2s":1,"t1":6,"t2":92}],[4831,{"d":24,"dB":1581170400,"t1s":2,"t2s":1,"t1":14,"t2":6}],[4842,{"d":23,"dB":1580846700,"t1s":4,"t2s":2,"t1":6,"t2":103}],[4856,{"d":22,"dB":1580567400,"t1s":0,"t2s":4,"t1":102,"t2":6}],[4864,{"d":21,"dB":1579892400,"t1s":2,"t2s":1,"t1":6,"t2":17}],[4873,{"d":20,"dB":1578944700,"t1s":2,"t2s":1,"t1":6,"t2":5}],[4887,{"d":19,"dB":1576868400,"t1s":3,"t2s":0,"t1":91,"t2":6}],[4893,{"d":18,"dB":1576263600,"t1s":1,"t2s":0,"t1":6,"t2":101}],[4900,{"d":17,"dB":1575403200,"t1s":0,"t2s":4,"t1":97,"t2":6}],[4913,{"d":16,"dB":1575054000,"t1s":2,"t2s":1,"t1":6,"t2":94}],[4920,{"d":15,"dB":1574449200,"t1s":1,"t2s":3,"t1":93,"t2":6}],[4932,{"d":14,"dB":1573239600,"t1s":4,"t2s":1,"t1":6,"t2":98}],[4945,{"d":13,"dB":1572703200,"t1s":1,"t2s":0,"t1":104,"t2":6}],[4951,{"d":12,"dB":1572094800,"t1s":0,"t2s":1,"t1":6,"t2":43}],[4964,{"d":11,"dB":1571490000,"t1s":2,"t2s":2,"t1":89,"t2":6}],[4972,{"d":10,"dB":1570212000,"t1s":0,"t2s":0,"t1":6,"t2":88}],[4979,{"d":9,"dB":1569607200,"t1s":0,"t2s":1,"t1":90,"t2":6}],[4992,{"d":8,"dB":1569264300,"t1s":2,"t2s":1,"t1":6,"t2":100}],[3652,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":11,"t2":67}],[3665,{"d":27,"dB":1582919100,"t1s":2,"t2s":3,"t1":67,"t2":9}],[3675,{"d":26,"dB":1582473600,"t1s":2,"t2s":1,"t1":20,"t2":67}],[3694,{"d":24,"dB":1581188400,"t1s":1,"t2s":3,"t1":19,"t2":67}],[3705,{"d":23,"dB":1580925600,"t1s":2,"t2s":0,"t1":67,"t2":7}],[3714,{"d":22,"dB":1580583600,"t1s":3,"t2s":1,"t1":67,"t2":13}],[3727,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":4,"t2":67}],[3733,{"d":20,"dB":1578769200,"t1s":2,"t2s":0,"t1":67,"t2":68}],[3739,{"d":19,"dB":1576957500,"t1s":3,"t2s":1,"t1":9,"t2":67}],[3755,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":67,"t2":8}],[3764,{"d":17,"dB":1575661500,"t1s":0,"t2s":4,"t1":67,"t2":18}],[3770,{"d":16,"dB":1575396000,"t1s":6,"t2s":0,"t1":3,"t2":67}],[3784,{"d":15,"dB":1575140400,"t1s":1,"t2s":1,"t1":67,"t2":11}],[3841,{"d":9,"dB":1570366800,"t1s":2,"t2s":2,"t1":12,"t2":67}],[3855,{"d":8,"dB":1569769200,"t1s":0,"t2s":1,"t1":67,"t2":4}],[3863,{"d":7,"dB":1569430800,"t1s":1,"t2s":0,"t1":15,"t2":67}],[4014,{"d":30,"dB":1592586000,"t1s":0,"t2s":3,"t1":76,"t2":35}],[4026,{"d":29,"dB":1583593200,"t1s":0,"t2s":1,"t1":35,"t2":46}],[4037,{"d":28,"dB":1582988400,"t1s":3,"t2s":1,"t1":28,"t2":35}],[4056,{"d":26,"dB":1581769800,"t1s":1,"t2s":2,"t1":35,"t2":23}],[4062,{"d":25,"dB":1580569200,"t1s":4,"t2s":0,"t1":21,"t2":35}],[4085,{"d":23,"dB":1579359600,"t1s":2,"t2s":3,"t1":35,"t2":69}],[4115,{"d":20,"dB":1577545200,"t1s":1,"t2s":1,"t1":35,"t2":26}],[4120,{"d":19,"dB":1577372400,"t1s":0,"t2s":2,"t1":25,"t2":35}],[4153,{"d":16,"dB":1575813600,"t1s":2,"t2s":1,"t1":46,"t2":35}],[4177,{"d":14,"dB":1575135000,"t1s":2,"t2s":1,"t1":35,"t2":33}],[4178,{"d":13,"dB":1574521200,"t1s":2,"t2s":2,"t1":39,"t2":35}],[4193,{"d":12,"dB":1573311600,"t1s":1,"t2s":2,"t1":35,"t2":22}],[4227,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":69,"t2":35}],[4233,{"d":8,"dB":1570366800,"t1s":1,"t2s":4,"t1":35,"t2":25}],[4243,{"d":7,"dB":1569679200,"t1s":2,"t2s":1,"t1":24,"t2":35}],[3746,{"d":19,"dB":1576957500,"t1s":1,"t2s":0,"t1":20,"t2":3}],[4895,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":100,"t2":5}],[4954,{"d":12,"dB":1572026400,"t1s":2,"t2s":4,"t1":107,"t2":5}],[4789,{"d":28,"dB":1583521200,"t1s":2,"t2s":2,"t1":90,"t2":103}],[4801,{"d":27,"dB":1582916400,"t1s":2,"t2s":1,"t1":103,"t2":14}],[4822,{"d":25,"dB":1581706800,"t1s":0,"t2s":0,"t1":103,"t2":100}],[4853,{"d":22,"dB":1580497200,"t1s":1,"t2s":1,"t1":103,"t2":17}],[4867,{"d":21,"dB":1579892400,"t1s":1,"t2s":0,"t1":91,"t2":103}],[4884,{"d":19,"dB":1576936800,"t1s":0,"t2s":3,"t1":107,"t2":103}],[4906,{"d":17,"dB":1575403200,"t1s":2,"t2s":0,"t1":89,"t2":103}],[4912,{"d":16,"dB":1575054000,"t1s":1,"t2s":2,"t1":103,"t2":93}],[4931,{"d":14,"dB":1573239600,"t1s":0,"t2s":0,"t1":103,"t2":94}],[4982,{"d":9,"dB":1569869100,"t1s":3,"t2s":0,"t1":14,"t2":103}],[3659,{"d":27,"dB":1583078400,"t1s":1,"t2s":1,"t1":3,"t2":19}],[3674,{"d":26,"dB":1582488000,"t1s":4,"t2s":3,"t1":2,"t2":3}],[3679,{"d":25,"dB":1581793200,"t1s":2,"t2s":2,"t1":3,"t2":7}],[3692,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":11,"t2":3}],[3698,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":75,"t2":3}],[3710,{"d":22,"dB":1580673600,"t1s":0,"t2s":0,"t1":3,"t2":9}],[3724,{"d":21,"dB":1580054400,"t1s":0,"t2s":1,"t1":8,"t2":3}],[3730,{"d":20,"dB":1578760200,"t1s":1,"t2s":2,"t1":3,"t2":18}],[3750,{"d":18,"dB":1576418400,"t1s":0,"t2s":1,"t1":3,"t2":41}],[3759,{"d":17,"dB":1575835200,"t1s":3,"t2s":1,"t1":9,"t2":3}],[3785,{"d":15,"dB":1575140400,"t1s":1,"t2s":1,"t1":68,"t2":3}],[3790,{"d":14,"dB":1574604000,"t1s":2,"t2s":1,"t1":3,"t2":13}],[3804,{"d":13,"dB":1573242300,"t1s":1,"t2s":1,"t1":19,"t2":3}],[3810,{"d":12,"dB":1572789600,"t1s":2,"t2s":0,"t1":3,"t2":8}],[3819,{"d":11,"dB":1572103800,"t1s":3,"t2s":0,"t1":12,"t2":3}],[3829,{"d":10,"dB":1571576400,"t1s":0,"t2s":1,"t1":3,"t2":4}],[3847,{"d":9,"dB":1570298400,"t1s":1,"t2s":3,"t1":10,"t2":3}],[3849,{"d":8,"dB":1569684600,"t1s":0,"t2s":1,"t1":3,"t2":2}],[3858,{"d":7,"dB":1569430800,"t1s":1,"t2s":3,"t1":42,"t2":3}],[6141,{"d":7,"dB":1602961200,"t1s":3,"t2s":1,"t1":9,"t2":3}],[6148,{"d":6,"dB":1601816400,"t1s":3,"t2s":0,"t1":3,"t2":7}],[6159,{"d":5,"dB":1601204400,"t1s":0,"t2s":0,"t1":3,"t2":19}],[6169,{"d":4,"dB":1600527600,"t1s":2,"t2s":1,"t1":104,"t2":3}],[6179,{"d":3,"dB":1599850800,"t1s":0,"t2s":0,"t1":3,"t2":18}],[6199,{"d":1,"dB":1598029200,"t1s":0,"t2s":0,"t1":3,"t2":8}],[4347,{"d":35,"dB":1594143000,"t1s":2,"t2s":1,"t1":49,"t2":74}],[4376,{"d":32,"dB":1593201600,"t1s":1,"t2s":1,"t1":55,"t2":74}],[4406,{"d":29,"dB":1592415000,"t1s":0,"t2s":0,"t1":74,"t2":51}],[4426,{"d":27,"dB":1583672400,"t1s":1,"t2s":4,"t1":74,"t2":57}],[4467,{"d":23,"dB":1581183000,"t1s":1,"t2s":1,"t1":74,"t2":64}],[3745,{"d":19,"dB":1576957500,"t1s":1,"t2s":1,"t1":68,"t2":18}],[3757,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":10,"t2":68}],[3794,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":11,"t2":68}],[3814,{"d":12,"dB":1572796800,"t1s":2,"t2s":0,"t1":19,"t2":68}],[3824,{"d":11,"dB":1572112800,"t1s":0,"t2s":0,"t1":68,"t2":67}],[3836,{"d":10,"dB":1571508000,"t1s":1,"t2s":0,"t1":68,"t2":15}],[3845,{"d":9,"dB":1570374000,"t1s":0,"t2s":1,"t1":20,"t2":68}],[3856,{"d":8,"dB":1569693600,"t1s":1,"t2s":2,"t1":68,"t2":7}],[3865,{"d":7,"dB":1569438000,"t1s":0,"t2s":2,"t1":2,"t2":68}],[6143,{"d":7,"dB":1603026000,"t1s":3,"t2s":1,"t1":8,"t2":75}],[6149,{"d":6,"dB":1601816400,"t1s":1,"t2s":0,"t1":75,"t2":13}],[6168,{"d":4,"dB":1600606800,"t1s":3,"t2s":2,"t1":75,"t2":6}],[3696,{"d":24,"dB":1581188400,"t1s":0,"t2s":0,"t1":20,"t2":75}],[3737,{"d":20,"dB":1578769200,"t1s":2,"t2s":5,"t1":10,"t2":75}],[3741,{"d":19,"dB":1576957500,"t1s":4,"t2s":0,"t1":15,"t2":75}],[3751,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":75,"t2":19}],[3758,{"d":17,"dB":1575655200,"t1s":1,"t2s":0,"t1":12,"t2":75}],[3771,{"d":16,"dB":1575396000,"t1s":5,"t2s":0,"t1":75,"t2":41}],[3808,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":42,"t2":75}],[3818,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":75,"t2":7}],[6197,{"d":2,"dB":1598814000,"t1s":2,"t2s":3,"t1":75,"t2":9}],[3673,{"d":26,"dB":1582308000,"t1s":2,"t2s":2,"t1":19,"t2":75}],[3779,{"d":15,"dB":1575056700,"t1s":2,"t2s":1,"t1":9,"t2":75}],[3853,{"d":8,"dB":1569693600,"t1s":4,"t2s":1,"t1":13,"t2":75}],[3859,{"d":7,"dB":1569430800,"t1s":2,"t2s":2,"t1":75,"t2":18}],[3807,{"d":13,"dB":1573326000,"t1s":4,"t2s":1,"t1":41,"t2":67}],[3835,{"d":10,"dB":1571508000,"t1s":1,"t2s":1,"t1":67,"t2":42}],[6185,{"d":3,"dB":1600002000,"t1s":2,"t2s":4,"t1":67,"t2":20}],[6194,{"d":2,"dB":1598792400,"t1s":2,"t2s":1,"t1":8,"t2":67}],[6206,{"d":1,"dB":1598187600,"t1s":4,"t2s":0,"t1":67,"t2":75}],[6180,{"d":3,"dB":1600002000,"t1s":0,"t2s":2,"t1":7,"t2":75}],[3654,{"d":28,"dB":1583607600,"t1s":1,"t2s":0,"t1":68,"t2":75}],[3711,{"d":22,"dB":1580583600,"t1s":3,"t2s":0,"t1":7,"t2":75}],[3718,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":75,"t2":42}],[3791,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":75,"t2":8}],[3798,{"d":13,"dB":1573317000,"t1s":1,"t2s":2,"t1":75,"t2":2}],[3839,{"d":9,"dB":1570298400,"t1s":2,"t2s":0,"t1":75,"t2":11}],[3653,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":19,"t2":13}],[3687,{"d":25,"dB":1581793200,"t1s":0,"t2s":2,"t1":10,"t2":19}],[3701,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":68,"t2":19}],[3713,{"d":22,"dB":1580652000,"t1s":2,"t2s":1,"t1":19,"t2":18}],[3725,{"d":21,"dB":1579895100,"t1s":1,"t2s":1,"t1":19,"t2":20}],[3793,{"d":14,"dB":1574526600,"t1s":2,"t2s":1,"t1":18,"t2":19}],[3834,{"d":10,"dB":1571424300,"t1s":1,"t2s":4,"t1":19,"t2":2}],[3736,{"d":20,"dB":1578837600,"t1s":0,"t2s":2,"t1":4,"t2":8}],[3796,{"d":14,"dB":1574611200,"t1s":0,"t2s":0,"t1":4,"t2":15}],[3803,{"d":13,"dB":1573401600,"t1s":2,"t2s":3,"t1":8,"t2":4}],[4792,{"d":28,"dB":1583521200,"t1s":1,"t2s":3,"t1":94,"t2":91}],[4806,{"d":27,"dB":1582916400,"t1s":0,"t2s":0,"t1":91,"t2":88}],[4830,{"d":24,"dB":1581102000,"t1s":3,"t2s":1,"t1":92,"t2":91}],[4847,{"d":23,"dB":1580846700,"t1s":0,"t2s":0,"t1":91,"t2":14}],[4855,{"d":22,"dB":1580497200,"t1s":1,"t2s":1,"t1":100,"t2":91}],[4874,{"d":20,"dB":1578682800,"t1s":1,"t2s":0,"t1":17,"t2":91}],[4897,{"d":18,"dB":1576263600,"t1s":1,"t2s":0,"t1":91,"t2":107}],[4898,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":101,"t2":91}],[4917,{"d":16,"dB":1575054000,"t1s":2,"t2s":0,"t1":91,"t2":104}],[4925,{"d":15,"dB":1574449200,"t1s":0,"t2s":1,"t1":97,"t2":91}],[4937,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":91,"t2":93}],[4957,{"d":12,"dB":1572291900,"t1s":0,"t2s":0,"t1":91,"t2":89}],[4959,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":5,"t2":91}],[4977,{"d":10,"dB":1570212000,"t1s":0,"t2s":2,"t1":91,"t2":94}],[4978,{"d":9,"dB":1569607200,"t1s":2,"t2s":0,"t1":88,"t2":91}],[3669,{"d":26,"dB":1582398000,"t1s":1,"t2s":1,"t1":7,"t2":13}],[3690,{"d":24,"dB":1581188400,"t1s":3,"t2s":3,"t1":7,"t2":8}],[3723,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":15,"t2":7}],[3731,{"d":20,"dB":1578844800,"t1s":1,"t2s":0,"t1":7,"t2":12}],[6139,{"d":7,"dB":1602867600,"t1s":1,"t2s":1,"t1":7,"t2":20}],[6160,{"d":5,"dB":1601211600,"t1s":2,"t2s":2,"t1":7,"t2":15}],[6177,{"d":4,"dB":1600606800,"t1s":1,"t2s":0,"t1":41,"t2":7}],[6188,{"d":2,"dB":1598641200,"t1s":4,"t2s":1,"t1":18,"t2":7}],[3649,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":7,"t2":10}],[3666,{"d":27,"dB":1582993800,"t1s":4,"t2s":0,"t1":2,"t2":7}],[3792,{"d":14,"dB":1574535600,"t1s":2,"t2s":1,"t1":7,"t2":20}],[3830,{"d":10,"dB":1571499000,"t1s":0,"t2s":0,"t1":18,"t2":7}],[3738,{"d":19,"dB":1576957500,"t1s":2,"t2s":2,"t1":7,"t2":11}],[3748,{"d":18,"dB":1576350000,"t1s":1,"t2s":1,"t1":42,"t2":7}],[3762,{"d":17,"dB":1575820800,"t1s":1,"t2s":0,"t1":8,"t2":7}],[3772,{"d":16,"dB":1575482400,"t1s":2,"t2s":2,"t1":7,"t2":15}],[3778,{"d":15,"dB":1575140400,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3811,{"d":12,"dB":1572637500,"t1s":2,"t2s":1,"t1":7,"t2":2}],[3860,{"d":7,"dB":1569344400,"t1s":0,"t2s":0,"t1":7,"t2":9}],[3801,{"d":13,"dB":1573326000,"t1s":1,"t2s":0,"t1":13,"t2":7}],[3840,{"d":9,"dB":1570298400,"t1s":1,"t2s":0,"t1":7,"t2":41}],[4310,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":56,"t2":51}],[4409,{"d":28,"dB":1592060400,"t1s":0,"t2s":1,"t1":51,"t2":64}],[4431,{"d":26,"dB":1583006400,"t1s":0,"t2s":0,"t1":86,"t2":51}],[4488,{"d":20,"dB":1579455000,"t1s":1,"t2s":1,"t1":57,"t2":51}],[4531,{"d":16,"dB":1575826200,"t1s":3,"t2s":2,"t1":47,"t2":51}],[4541,{"d":15,"dB":1575057600,"t1s":0,"t2s":0,"t1":51,"t2":74}],[4558,{"d":14,"dB":1574616600,"t1s":1,"t2s":3,"t1":64,"t2":51}],[4561,{"d":13,"dB":1573329600,"t1s":4,"t2s":1,"t1":59,"t2":51}],[4568,{"d":12,"dB":1572802200,"t1s":0,"t2s":1,"t1":51,"t2":58}],[4590,{"d":10,"dB":1572174000,"t1s":0,"t2s":1,"t1":51,"t2":52}],[4609,{"d":8,"dB":1570363200,"t1s":1,"t2s":0,"t1":51,"t2":57}],[4621,{"d":7,"dB":1569758400,"t1s":2,"t2s":0,"t1":66,"t2":51}],[3655,{"d":28,"dB":1583683200,"t1s":5,"t2s":0,"t1":20,"t2":15}],[3686,{"d":25,"dB":1581868800,"t1s":1,"t2s":0,"t1":68,"t2":20}],[6155,{"d":6,"dB":1601823600,"t1s":2,"t2s":2,"t1":20,"t2":68}],[6201,{"d":1,"dB":1598122800,"t1s":1,"t2s":1,"t1":12,"t2":20}],[4813,{"d":26,"dB":1582311600,"t1s":1,"t2s":2,"t1":89,"t2":97}],[4825,{"d":25,"dB":1581706800,"t1s":0,"t2s":3,"t1":97,"t2":88}],[4834,{"d":24,"dB":1581102000,"t1s":2,"t2s":0,"t1":98,"t2":97}],[4844,{"d":23,"dB":1580846700,"t1s":1,"t2s":2,"t1":97,"t2":100}],[4850,{"d":22,"dB":1580497200,"t1s":3,"t2s":1,"t1":92,"t2":97}],[4865,{"d":21,"dB":1579892400,"t1s":2,"t2s":0,"t1":97,"t2":14}],[4869,{"d":20,"dB":1578682800,"t1s":1,"t2s":0,"t1":90,"t2":97}],[4883,{"d":19,"dB":1576868400,"t1s":1,"t2s":0,"t1":97,"t2":102}],[4892,{"d":18,"dB":1576263600,"t1s":3,"t2s":2,"t1":103,"t2":97}],[4908,{"d":16,"dB":1575054000,"t1s":2,"t2s":2,"t1":101,"t2":97}],[4934,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":97,"t2":107}],[4939,{"d":13,"dB":1572634800,"t1s":2,"t2s":1,"t1":5,"t2":97}],[4953,{"d":12,"dB":1572026400,"t1s":1,"t2s":1,"t1":97,"t2":93}],[4963,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":94,"t2":97}],[4974,{"d":10,"dB":1570473900,"t1s":1,"t2s":4,"t1":97,"t2":104}],[4987,{"d":9,"dB":1569607200,"t1s":1,"t2s":2,"t1":43,"t2":97}],[4800,{"d":27,"dB":1582916400,"t1s":0,"t2s":3,"t1":93,"t2":89}],[4826,{"d":25,"dB":1581706800,"t1s":1,"t2s":0,"t1":107,"t2":89}],[4832,{"d":24,"dB":1581102000,"t1s":1,"t2s":1,"t1":89,"t2":5}],[4840,{"d":23,"dB":1580759100,"t1s":1,"t2s":1,"t1":94,"t2":89}],[4852,{"d":22,"dB":1580497200,"t1s":0,"t2s":0,"t1":89,"t2":104}],[4862,{"d":21,"dB":1580154300,"t1s":1,"t2s":0,"t1":89,"t2":43}],[4885,{"d":19,"dB":1576868400,"t1s":1,"t2s":1,"t1":89,"t2":90}],[4890,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":92,"t2":89}],[4915,{"d":16,"dB":1575054000,"t1s":1,"t2s":2,"t1":100,"t2":89}],[4922,{"d":15,"dB":1574711100,"t1s":4,"t2s":0,"t1":89,"t2":14}],[4936,{"d":14,"dB":1573239600,"t1s":2,"t2s":0,"t1":102,"t2":89}],[4968,{"d":10,"dB":1570279500,"t1s":2,"t2s":0,"t1":101,"t2":89}],[4983,{"d":9,"dB":1569607200,"t1s":0,"t2s":1,"t1":89,"t2":93}],[4795,{"d":28,"dB":1583521200,"t1s":1,"t2s":1,"t1":98,"t2":17}],[4946,{"d":13,"dB":1572703200,"t1s":0,"t2s":2,"t1":98,"t2":102}],[4950,{"d":12,"dB":1572026400,"t1s":1,"t2s":0,"t1":103,"t2":98}],[4965,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":98,"t2":14}],[4973,{"d":10,"dB":1570212000,"t1s":2,"t2s":1,"t1":17,"t2":98}],[4985,{"d":9,"dB":1569607200,"t1s":2,"t2s":2,"t1":98,"t2":101}],[6543,{"d":5,"dB":1601139600,"t1s":2,"t2s":2,"t1":98,"t2":2}],[6553,{"d":4,"dB":1600534800,"t1s":0,"t2s":1,"t1":89,"t2":98}],[6563,{"d":3,"dB":1599930000,"t1s":1,"t2s":0,"t1":98,"t2":17}],[6574,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":98,"t2":90}],[6584,{"d":1,"dB":1598115600,"t1s":0,"t2s":1,"t1":14,"t2":98}],[4375,{"d":32,"dB":1593279000,"t1s":2,"t2s":1,"t1":85,"t2":47}],[4381,{"d":31,"dB":1592856000,"t1s":0,"t2s":0,"t1":47,"t2":86}],[4441,{"d":25,"dB":1582372800,"t1s":1,"t2s":0,"t1":51,"t2":47}],[4452,{"d":24,"dB":1581858000,"t1s":0,"t2s":0,"t1":47,"t2":60}],[4463,{"d":23,"dB":1581163200,"t1s":2,"t2s":0,"t1":63,"t2":47}],[4794,{"d":28,"dB":1583783100,"t1s":1,"t2s":0,"t1":104,"t2":97}],[4805,{"d":27,"dB":1583178300,"t1s":0,"t2s":2,"t1":107,"t2":104}],[4820,{"d":25,"dB":1581968700,"t1s":3,"t2s":2,"t1":93,"t2":104}],[4833,{"d":24,"dB":1581363900,"t1s":0,"t2s":0,"t1":104,"t2":94}],[4841,{"d":23,"dB":1580846700,"t1s":1,"t2s":0,"t1":104,"t2":43}],[4863,{"d":21,"dB":1579960800,"t1s":1,"t2s":1,"t1":104,"t2":92}],[4871,{"d":20,"dB":1579368600,"t1s":1,"t2s":1,"t1":14,"t2":104}],[4882,{"d":19,"dB":1576936800,"t1s":1,"t2s":0,"t1":104,"t2":98}],[4888,{"d":18,"dB":1576332000,"t1s":1,"t2s":2,"t1":88,"t2":104}],[4923,{"d":15,"dB":1574517600,"t1s":4,"t2s":0,"t1":104,"t2":102}],[4935,{"d":14,"dB":1573501500,"t1s":1,"t2s":2,"t1":100,"t2":104}],[4952,{"d":12,"dB":1572026400,"t1s":0,"t2s":0,"t1":17,"t2":104}],[4966,{"d":11,"dB":1571683500,"t1s":0,"t2s":0,"t1":104,"t2":101}],[4984,{"d":9,"dB":1569674700,"t1s":2,"t2s":1,"t1":104,"t2":107}],[6140,{"d":7,"dB":1603047600,"t1s":4,"t2s":0,"t1":12,"t2":104}],[6150,{"d":6,"dB":1601737200,"t1s":2,"t2s":0,"t1":104,"t2":4}],[6165,{"d":5,"dB":1601211600,"t1s":1,"t2s":1,"t1":67,"t2":104}],[6182,{"d":3,"dB":1600002000,"t1s":2,"t2s":3,"t1":6,"t2":104}],[6190,{"d":2,"dB":1599764400,"t1s":1,"t2s":0,"t1":104,"t2":2}],[6205,{"d":1,"dB":1598194800,"t1s":2,"t2s":1,"t1":19,"t2":104}],[4814,{"d":26,"dB":1582380000,"t1s":1,"t2s":4,"t1":104,"t2":5}],[4903,{"d":17,"dB":1575403200,"t1s":3,"t2s":0,"t1":104,"t2":90}],[3667,{"d":27,"dB":1583002800,"t1s":0,"t2s":2,"t1":10,"t2":20}],[3670,{"d":26,"dB":1582398000,"t1s":3,"t2s":0,"t1":12,"t2":10}],[3691,{"d":24,"dB":1581179400,"t1s":1,"t2s":0,"t1":9,"t2":10}],[3707,{"d":23,"dB":1580925600,"t1s":0,"t2s":1,"t1":10,"t2":41}],[3708,{"d":22,"dB":1580583600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3720,{"d":21,"dB":1580047200,"t1s":3,"t2s":0,"t1":18,"t2":10}],[3743,{"d":19,"dB":1576957500,"t1s":3,"t2s":0,"t1":19,"t2":10}],[3767,{"d":17,"dB":1575745200,"t1s":4,"t2s":2,"t1":41,"t2":10}],[3777,{"d":16,"dB":1575482400,"t1s":1,"t2s":2,"t1":10,"t2":13}],[3782,{"d":15,"dB":1575208800,"t1s":2,"t2s":1,"t1":8,"t2":10}],[3797,{"d":14,"dB":1574625600,"t1s":0,"t2s":2,"t1":10,"t2":9}],[3802,{"d":13,"dB":1573401600,"t1s":3,"t2s":0,"t1":15,"t2":10}],[3817,{"d":12,"dB":1572721200,"t1s":2,"t2s":3,"t1":10,"t2":18}],[3825,{"d":11,"dB":1572184800,"t1s":3,"t2s":2,"t1":20,"t2":10}],[3837,{"d":10,"dB":1571508000,"t1s":2,"t2s":1,"t1":10,"t2":12}],[3852,{"d":8,"dB":1569693600,"t1s":2,"t2s":2,"t1":11,"t2":10}],[3763,{"d":17,"dB":1575745200,"t1s":4,"t2s":1,"t1":19,"t2":11}],[3827,{"d":11,"dB":1572112800,"t1s":1,"t2s":0,"t1":41,"t2":19}],[3843,{"d":9,"dB":1570298400,"t1s":1,"t2s":0,"t1":8,"t2":19}],[3854,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":19,"t2":12}],[3862,{"d":7,"dB":1569351600,"t1s":3,"t2s":1,"t1":13,"t2":19}],[3651,{"d":28,"dB":1583524800,"t1s":2,"t2s":2,"t1":9,"t2":42}],[3658,{"d":27,"dB":1583002800,"t1s":0,"t2s":1,"t1":42,"t2":11}],[3677,{"d":26,"dB":1582398000,"t1s":0,"t2s":0,"t1":41,"t2":42}],[3678,{"d":25,"dB":1581784200,"t1s":4,"t2s":4,"t1":42,"t2":2}],[3688,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":42,"t2":13}],[3704,{"d":23,"dB":1580925600,"t1s":0,"t2s":0,"t1":18,"t2":42}],[3760,{"d":17,"dB":1575745200,"t1s":3,"t2s":0,"t1":13,"t2":42}],[3781,{"d":15,"dB":1575140400,"t1s":4,"t2s":2,"t1":15,"t2":42}],[3788,{"d":14,"dB":1574535600,"t1s":0,"t2s":4,"t1":42,"t2":41}],[3806,{"d":13,"dB":1573394400,"t1s":3,"t2s":1,"t1":20,"t2":42}],[3826,{"d":11,"dB":1572192000,"t1s":2,"t2s":2,"t1":4,"t2":42}],[3838,{"d":9,"dB":1570214700,"t1s":3,"t2s":1,"t1":42,"t2":9}],[5457,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":123,"t2":124}],[5466,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":124,"t2":113}],[5487,{"d":35,"dB":1595525400,"t1s":2,"t2s":1,"t1":124,"t2":115}],[5494,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":111,"t2":124}],[5507,{"d":33,"dB":1594842300,"t1s":0,"t2s":0,"t1":124,"t2":121}],[5517,{"d":32,"dB":1594575000,"t1s":1,"t2s":3,"t1":124,"t2":120}],[5525,{"d":31,"dB":1594315800,"t1s":0,"t2s":3,"t1":118,"t2":124}],[5537,{"d":30,"dB":1593970200,"t1s":2,"t2s":2,"t1":124,"t2":117}],[5544,{"d":29,"dB":1593719100,"t1s":0,"t2s":2,"t1":116,"t2":124}],[5557,{"d":28,"dB":1593365400,"t1s":2,"t2s":3,"t1":124,"t2":119}],[5566,{"d":27,"dB":1592941500,"t1s":1,"t2s":0,"t1":122,"t2":124}],[5577,{"d":26,"dB":1583686800,"t1s":0,"t2s":0,"t1":124,"t2":110}],[5579,{"d":25,"dB":1582380000,"t1s":1,"t2s":1,"t1":127,"t2":124}],[5597,{"d":24,"dB":1581852600,"t1s":0,"t2s":0,"t1":124,"t2":126}],[5598,{"d":23,"dB":1581256800,"t1s":1,"t2s":1,"t1":109,"t2":124}],[5617,{"d":22,"dB":1580672700,"t1s":0,"t2s":2,"t1":124,"t2":112}],[5622,{"d":21,"dB":1580047200,"t1s":2,"t2s":0,"t1":114,"t2":124}],[5635,{"d":20,"dB":1579433400,"t1s":3,"t2s":2,"t1":125,"t2":124}],[5646,{"d":19,"dB":1578828600,"t1s":3,"t2s":0,"t1":124,"t2":123}],[5653,{"d":18,"dB":1578330000,"t1s":0,"t2s":1,"t1":113,"t2":124}],[5667,{"d":17,"dB":1576936800,"t1s":2,"t2s":1,"t1":124,"t2":108}],[5673,{"d":16,"dB":1576418400,"t1s":3,"t2s":1,"t1":115,"t2":124}],[5687,{"d":15,"dB":1575738000,"t1s":1,"t2s":1,"t1":124,"t2":111}],[5694,{"d":14,"dB":1575208800,"t1s":3,"t2s":0,"t1":121,"t2":124}],[5717,{"d":12,"dB":1573394400,"t1s":0,"t2s":0,"t1":124,"t2":118}],[5738,{"d":9,"dB":1572184800,"t1s":7,"t2s":1,"t1":119,"t2":124}],[5777,{"d":6,"dB":1569762000,"t1s":1,"t2s":0,"t1":124,"t2":127}],[5787,{"d":5,"dB":1569344400,"t1s":0,"t2s":0,"t1":126,"t2":124}],[4808,{"d":26,"dB":1582311600,"t1s":2,"t2s":0,"t1":88,"t2":103}],[4828,{"d":24,"dB":1581102000,"t1s":2,"t2s":3,"t1":88,"t2":101}],[4845,{"d":23,"dB":1580846700,"t1s":2,"t2s":3,"t1":107,"t2":88}],[4848,{"d":22,"dB":1580497200,"t1s":0,"t2s":1,"t1":88,"t2":93}],[4859,{"d":21,"dB":1579892400,"t1s":0,"t2s":1,"t1":5,"t2":88}],[4868,{"d":20,"dB":1578682800,"t1s":3,"t2s":1,"t1":88,"t2":94}],[4886,{"d":19,"dB":1576940400,"t1s":2,"t2s":1,"t1":43,"t2":88}],[4899,{"d":17,"dB":1575403200,"t1s":0,"t2s":1,"t1":98,"t2":88}],[4909,{"d":16,"dB":1575054000,"t1s":0,"t2s":2,"t1":90,"t2":88}],[4918,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":88,"t2":92}],[4930,{"d":14,"dB":1573307100,"t1s":1,"t2s":1,"t1":14,"t2":88}],[4938,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":88,"t2":100}],[4956,{"d":12,"dB":1572026400,"t1s":0,"t2s":2,"t1":102,"t2":88}],[4958,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":88,"t2":17}],[3657,{"d":28,"dB":1584561600,"dl":1,"t1s":null,"t2s":null,"t1":41,"t2":2}],[3650,{"d":28,"dB":1583697600,"t1s":1,"t2s":0,"t1":12,"t2":18}],[3664,{"d":27,"dB":1583071200,"t1s":0,"t2s":1,"t1":8,"t2":12}],[3699,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":12,"t2":20}],[3717,{"d":22,"dB":1580583600,"t1s":1,"t2s":2,"t1":41,"t2":12}],[3719,{"d":21,"dB":1580068800,"t1s":0,"t2s":2,"t1":12,"t2":2}],[3740,{"d":19,"dB":1576957500,"t1s":5,"t2s":1,"t1":13,"t2":12}],[3752,{"d":18,"dB":1576266300,"t1s":2,"t2s":1,"t1":12,"t2":15}],[3773,{"d":16,"dB":1575403500,"t1s":0,"t2s":1,"t1":18,"t2":12}],[3795,{"d":14,"dB":1574451900,"t1s":2,"t2s":0,"t1":2,"t2":12}],[3799,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":12,"t2":11}],[3812,{"d":12,"dB":1572712200,"t1s":2,"t2s":1,"t1":9,"t2":12}],[3861,{"d":7,"dB":1569430800,"t1s":2,"t2s":0,"t1":12,"t2":41}],[6156,{"d":6,"dB":1601816400,"t1s":0,"t2s":3,"t1":41,"t2":12}],[6161,{"d":5,"dB":1601060400,"t1s":2,"t2s":0,"t1":12,"t2":8}],[6171,{"d":4,"dB":1600628400,"t1s":1,"t2s":1,"t1":9,"t2":12}],[6181,{"d":3,"dB":1599994800,"t1s":1,"t2s":0,"t1":12,"t2":11}],[6191,{"d":2,"dB":1598785200,"t1s":0,"t2s":1,"t1":68,"t2":12}],[5541,{"d":29,"dB":1593546300,"t1s":1,"t2s":3,"t1":117,"t2":115}],[5548,{"d":28,"dB":1593270900,"t1s":2,"t2s":2,"t1":109,"t2":117}],[5561,{"d":27,"dB":1592941500,"t1s":1,"t2s":4,"t1":117,"t2":114}],[5572,{"d":26,"dB":1583676000,"t1s":1,"t2s":2,"t1":125,"t2":117}],[5582,{"d":25,"dB":1582457400,"t1s":2,"t2s":3,"t1":117,"t2":121}],[5589,{"d":24,"dB":1581786000,"t1s":0,"t2s":3,"t1":127,"t2":117}],[5600,{"d":23,"dB":1581256800,"t1s":1,"t2s":0,"t1":117,"t2":108}],[3681,{"d":25,"dB":1581883200,"t1s":1,"t2s":2,"t1":12,"t2":9}],[4802,{"d":27,"dB":1582984800,"t1s":1,"t2s":2,"t1":6,"t2":90}],[6151,{"d":6,"dB":1601816400,"t1s":3,"t2s":1,"t1":11,"t2":6}],[6195,{"d":2,"dB":1598792400,"t1s":2,"t2s":0,"t1":4,"t2":6}],[6202,{"d":1,"dB":1598187600,"t1s":3,"t2s":1,"t1":6,"t2":41}],[6145,{"d":7,"dB":1602946800,"t1s":1,"t2s":3,"t1":68,"t2":6}],[6162,{"d":5,"dB":1601218800,"t1s":1,"t2s":1,"t1":6,"t2":18}],[3735,{"d":20,"dB":1578685500,"t1s":0,"t2s":1,"t1":20,"t2":9}],[3753,{"d":18,"dB":1576425600,"t1s":0,"t2s":1,"t1":18,"t2":20}],[3774,{"d":16,"dB":1575482400,"t1s":0,"t2s":1,"t1":11,"t2":20}],[3833,{"d":10,"dB":1571583600,"t1s":3,"t2s":2,"t1":13,"t2":20}],[3851,{"d":8,"dB":1569783600,"t1s":1,"t2s":1,"t1":9,"t2":20}],[3864,{"d":7,"dB":1569430800,"t1s":1,"t2s":0,"t1":8,"t2":20}],[3728,{"d":20,"dB":1578769200,"t1s":1,"t2s":2,"t1":42,"t2":15}],[3744,{"d":19,"dB":1576957500,"t1s":4,"t2s":1,"t1":2,"t2":42}],[3768,{"d":16,"dB":1579111200,"t1s":1,"t2s":1,"t1":42,"t2":68}],[4872,{"d":20,"dB":1578682800,"t1s":0,"t2s":1,"t1":103,"t2":101}],[4919,{"d":15,"dB":1574449200,"t1s":3,"t2s":3,"t1":5,"t2":103}],[4942,{"d":13,"dB":1572703200,"t1s":0,"t2s":1,"t1":92,"t2":103}],[4967,{"d":11,"dB":1571421600,"t1s":2,"t2s":1,"t1":43,"t2":103}],[4791,{"d":28,"dB":1583521200,"t1s":2,"t2s":0,"t1":92,"t2":102}],[4803,{"d":27,"dB":1582916400,"t1s":1,"t2s":2,"t1":17,"t2":92}],[4810,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":92,"t2":107}],[4838,{"d":23,"dB":1580846700,"t1s":0,"t2s":0,"t1":101,"t2":92}],[4870,{"d":20,"dB":1578682800,"t1s":3,"t2s":2,"t1":92,"t2":43}],[4907,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":94,"t2":92}],[4910,{"d":16,"dB":1575054000,"t1s":1,"t2s":0,"t1":92,"t2":98}],[4929,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":90,"t2":92}],[4949,{"d":12,"dB":1572026400,"t1s":1,"t2s":2,"t1":14,"t2":92}],[4962,{"d":11,"dB":1571421600,"t1s":0,"t2s":1,"t1":92,"t2":100}],[4976,{"d":10,"dB":1570212000,"t1s":4,"t2s":0,"t1":102,"t2":92}],[4980,{"d":9,"dB":1569607200,"t1s":2,"t2s":2,"t1":92,"t2":17}],[3672,{"d":26,"dB":1582314300,"t1s":0,"t2s":2,"t1":11,"t2":18}],[3682,{"d":25,"dB":1581861600,"t1s":1,"t2s":1,"t1":18,"t2":41}],[3695,{"d":24,"dB":1581278700,"t1s":4,"t2s":2,"t1":2,"t2":18}],[4517,{"d":18,"dB":1576949400,"t1s":1,"t2s":0,"t1":64,"t2":58}],[4526,{"d":17,"dB":1576431000,"t1s":1,"t2s":2,"t1":55,"t2":64}],[4537,{"d":16,"dB":1575662400,"t1s":0,"t2s":0,"t1":64,"t2":54}],[4547,{"d":15,"dB":1575144000,"t1s":2,"t2s":1,"t1":49,"t2":64}],[4564,{"d":13,"dB":1573383600,"t1s":3,"t2s":1,"t1":87,"t2":64}],[4577,{"d":12,"dB":1572786000,"t1s":0,"t2s":0,"t1":64,"t2":57}],[4581,{"d":11,"dB":1572544800,"t1s":2,"t2s":1,"t1":66,"t2":64}],[4597,{"d":10,"dB":1572030000,"t1s":4,"t2s":1,"t1":64,"t2":48}],[4602,{"d":9,"dB":1571580000,"t1s":0,"t2s":1,"t1":56,"t2":64}],[4612,{"d":8,"dB":1570302000,"t1s":2,"t2s":1,"t1":85,"t2":64}],[4627,{"d":7,"dB":1569610800,"t1s":5,"t2s":1,"t1":64,"t2":60}],[4628,{"d":6,"dB":1569351600,"t1s":2,"t2s":1,"t1":59,"t2":64}],[6147,{"d":7,"dB":1603018800,"t1s":2,"t2s":3,"t1":41,"t2":18}],[6157,{"d":6,"dB":1601838000,"t1s":1,"t2s":1,"t1":18,"t2":9}],[6170,{"d":4,"dB":1600455600,"t1s":0,"t2s":0,"t1":18,"t2":67}],[6204,{"d":1,"dB":1600196400,"t1s":2,"t2s":1,"t1":15,"t2":18}],[3820,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":18,"t2":11}],[3850,{"d":8,"dB":1569670200,"t1s":0,"t2s":1,"t1":18,"t2":8}],[3870,{"d":6,"dB":1569178800,"t1s":0,"t2s":1,"t1":18,"t2":2}],[3787,{"d":15,"dB":1575131400,"t1s":1,"t2s":2,"t1":41,"t2":18}],[3800,{"d":13,"dB":1573416000,"t1s":2,"t2s":1,"t1":9,"t2":18}],[5463,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":120,"t2":125}],[5515,{"d":32,"dB":1594583100,"t1s":2,"t2s":2,"t1":111,"t2":125}],[5523,{"d":31,"dB":1594151100,"t1s":4,"t2s":2,"t1":125,"t2":115}],[5532,{"d":30,"dB":1593891900,"t1s":0,"t2s":3,"t1":121,"t2":125}],[5545,{"d":29,"dB":1593632700,"t1s":2,"t2s":2,"t1":118,"t2":125}],[5552,{"d":28,"dB":1593357300,"t1s":2,"t2s":0,"t1":125,"t2":116}],[5563,{"d":27,"dB":1592847000,"t1s":1,"t2s":4,"t1":113,"t2":125}],[5594,{"d":24,"dB":1581968700,"t1s":1,"t2s":0,"t1":125,"t2":122}],[5601,{"d":23,"dB":1581277500,"t1s":4,"t2s":2,"t1":112,"t2":125}],[5614,{"d":22,"dB":1580652000,"t1s":1,"t2s":1,"t1":125,"t2":126}],[5654,{"d":18,"dB":1578319200,"t1s":0,"t2s":0,"t1":125,"t2":120}],[5674,{"d":16,"dB":1576418400,"t1s":0,"t2s":0,"t1":125,"t2":123}],[5679,{"d":15,"dB":1575834300,"t1s":2,"t2s":3,"t1":127,"t2":125}],[5701,{"d":13,"dB":1574528400,"t1s":1,"t2s":1,"t1":125,"t2":111}],[5711,{"d":12,"dB":1573415100,"t1s":1,"t2s":0,"t1":115,"t2":125}],[5723,{"d":11,"dB":1572810300,"t1s":1,"t2s":2,"t1":125,"t2":121}],[5732,{"d":10,"dB":1572552000,"t1s":1,"t2s":0,"t1":125,"t2":118}],[5744,{"d":9,"dB":1572195600,"t1s":2,"t2s":1,"t1":116,"t2":125}],[5752,{"d":8,"dB":1571597100,"t1s":2,"t2s":2,"t1":125,"t2":113}],[5762,{"d":7,"dB":1570301100,"t1s":1,"t2s":2,"t1":117,"t2":125}],[5559,{"d":27,"dB":1592855100,"t1s":0,"t2s":2,"t1":127,"t2":115}],[5569,{"d":26,"dB":1583696700,"t1s":2,"t2s":0,"t1":115,"t2":112}],[5607,{"d":23,"dB":1581191100,"t1s":2,"t2s":1,"t1":126,"t2":115}],[5664,{"d":17,"dB":1576691700,"t1s":1,"t2s":2,"t1":120,"t2":115}],[5698,{"d":13,"dB":1574517600,"t1s":1,"t2s":3,"t1":119,"t2":115}],[5726,{"d":11,"dB":1572723900,"t1s":0,"t2s":1,"t1":122,"t2":115}],[7474,{"d":1,"dB":1600627500,"t1s":3,"t2s":0,"t1":115,"t2":120}],[4793,{"d":28,"dB":1583521200,"t1s":1,"t2s":0,"t1":89,"t2":101}],[4875,{"d":20,"dB":1578682800,"t1s":0,"t2s":1,"t1":98,"t2":89}],[4944,{"d":13,"dB":1572896700,"t1s":1,"t2s":1,"t1":89,"t2":17}],[3671,{"d":26,"dB":1582389000,"t1s":1,"t2s":3,"t1":9,"t2":8}],[3754,{"d":18,"dB":1576341000,"t1s":1,"t2s":1,"t1":11,"t2":9}],[3823,{"d":11,"dB":1572206400,"t1s":4,"t2s":0,"t1":2,"t2":9}],[6163,{"d":5,"dB":1601146800,"t1s":1,"t2s":1,"t1":9,"t2":11}],[6187,{"d":3,"dB":1600023600,"t1s":0,"t2s":1,"t1":2,"t2":9}],[6198,{"d":1,"dB":1600369200,"t1s":0,"t2s":2,"t1":9,"t2":4}],[3831,{"d":10,"dB":1571598000,"t1s":2,"t2s":0,"t1":9,"t2":41}],[4804,{"d":27,"dB":1582916400,"t1s":1,"t2s":1,"t1":102,"t2":100}],[4812,{"d":26,"dB":1582311600,"t1s":1,"t2s":1,"t1":14,"t2":102}],[4827,{"d":25,"dB":1581706800,"t1s":3,"t2s":2,"t1":91,"t2":102}],[4836,{"d":24,"dB":1581102000,"t1s":1,"t2s":0,"t1":102,"t2":103}],[4843,{"d":23,"dB":1580846700,"t1s":1,"t2s":1,"t1":17,"t2":102}],[4858,{"d":21,"dB":1579892400,"t1s":2,"t2s":1,"t1":101,"t2":102}],[4877,{"d":20,"dB":1578682800,"t1s":1,"t2s":1,"t1":102,"t2":107}],[4896,{"d":18,"dB":1576263600,"t1s":1,"t2s":1,"t1":102,"t2":94}],[4905,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":93,"t2":102}],[4916,{"d":16,"dB":1575120600,"t1s":0,"t2s":1,"t1":102,"t2":43}],[4960,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":90,"t2":102}],[4986,{"d":9,"dB":1569607200,"t1s":0,"t2s":2,"t1":100,"t2":102}],[3703,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":15,"t2":11}],[3726,{"d":21,"dB":1579978800,"t1s":0,"t2s":1,"t1":68,"t2":11}],[3732,{"d":20,"dB":1578769200,"t1s":1,"t2s":0,"t1":11,"t2":41}],[6172,{"d":4,"dB":1600606800,"t1s":2,"t2s":1,"t1":11,"t2":68}],[6193,{"d":2,"dB":1598792400,"t1s":0,"t2s":1,"t1":11,"t2":13}],[6207,{"d":1,"dB":1600282800,"t1s":1,"t2s":0,"t1":2,"t2":11}],[3684,{"d":25,"dB":1581793200,"t1s":0,"t2s":0,"t1":8,"t2":11}],[3813,{"d":12,"dB":1572721200,"t1s":2,"t2s":2,"t1":11,"t2":15}],[3832,{"d":10,"dB":1571508000,"t1s":1,"t2s":0,"t1":11,"t2":8}],[3866,{"d":7,"dB":1569430800,"t1s":0,"t2s":1,"t1":4,"t2":11}],[4796,{"d":28,"dB":1583521200,"t1s":2,"t2s":1,"t1":100,"t2":14}],[4824,{"d":25,"dB":1581775200,"t1s":0,"t2s":1,"t1":17,"t2":14}],[4851,{"d":22,"dB":1580497200,"t1s":1,"t2s":0,"t1":14,"t2":101}],[4940,{"d":13,"dB":1572634800,"t1s":1,"t2s":5,"t1":90,"t2":14}],[4970,{"d":10,"dB":1570212000,"t1s":4,"t2s":1,"t1":14,"t2":100}],[4914,{"d":16,"dB":1575054000,"t1s":2,"t2s":0,"t1":17,"t2":107}],[4921,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":94,"t2":17}],[4933,{"d":14,"dB":1573239600,"t1s":0,"t2s":0,"t1":17,"t2":43}],[4797,{"d":28,"dB":1583521200,"t1s":1,"t2s":1,"t1":43,"t2":107}],[4807,{"d":27,"dB":1582916400,"t1s":0,"t2s":2,"t1":97,"t2":43}],[4817,{"d":26,"dB":1582573500,"t1s":3,"t2s":1,"t1":43,"t2":101}],[4819,{"d":25,"dB":1581706800,"t1s":0,"t2s":1,"t1":5,"t2":43}],[4837,{"d":24,"dB":1581102000,"t1s":2,"t2s":0,"t1":43,"t2":93}],[4857,{"d":22,"dB":1580497200,"t1s":1,"t2s":2,"t1":43,"t2":94}],[4891,{"d":18,"dB":1576525500,"t1s":0,"t2s":1,"t1":14,"t2":43}],[4902,{"d":17,"dB":1575403200,"t1s":1,"t2s":0,"t1":43,"t2":100}],[4975,{"d":10,"dB":1570212000,"t1s":1,"t2s":0,"t1":107,"t2":43}],[4927,{"d":15,"dB":1574449200,"t1s":0,"t2s":4,"t1":43,"t2":90}],[4947,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":43,"t2":91}],[3932,{"d":38,"dB":1595775600,"t1s":1,"t2s":3,"t1":22,"t2":36}],[3943,{"d":37,"dB":1595264400,"t1s":0,"t2s":1,"t1":77,"t2":22}],[3973,{"d":34,"dB":1594314000,"t1s":1,"t2s":1,"t1":22,"t2":35}],[3986,{"d":33,"dB":1594062000,"t1s":1,"t2s":0,"t1":24,"t2":22}],[4020,{"d":29,"dB":1583676000,"t1s":4,"t2s":0,"t1":25,"t2":22}],[4031,{"d":28,"dB":1583071200,"t1s":1,"t2s":1,"t1":22,"t2":31}],[4038,{"d":27,"dB":1582475400,"t1s":3,"t2s":2,"t1":39,"t2":22}],[4052,{"d":26,"dB":1581165000,"t1s":3,"t2s":1,"t1":22,"t2":26}],[4066,{"d":25,"dB":1580569200,"t1s":2,"t2s":3,"t1":33,"t2":22}],[4070,{"d":24,"dB":1579635000,"t1s":2,"t2s":2,"t1":22,"t2":46}],[4087,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":28,"t2":22}],[4092,{"d":22,"dB":1578754800,"t1s":1,"t2s":0,"t1":22,"t2":45}],[4102,{"d":21,"dB":1577899800,"t1s":2,"t2s":1,"t1":40,"t2":22}],[4113,{"d":20,"dB":1577545200,"t1s":1,"t2s":2,"t1":46,"t2":22}],[4122,{"d":19,"dB":1577372400,"t1s":1,"t2s":0,"t1":22,"t2":23}],[4131,{"d":18,"dB":1576931400,"t1s":0,"t2s":0,"t1":22,"t2":39}],[4151,{"d":16,"dB":1575721800,"t1s":3,"t2s":1,"t1":22,"t2":25}],[4167,{"d":15,"dB":1575490500,"t1s":5,"t2s":2,"t1":21,"t2":22}],[4170,{"d":14,"dB":1575217800,"t1s":2,"t2s":1,"t1":29,"t2":22}],[4203,{"d":11,"dB":1572798600,"t1s":1,"t2s":1,"t1":22,"t2":24}],[4209,{"d":10,"dB":1572098400,"t1s":3,"t2s":2,"t1":45,"t2":22}],[4222,{"d":9,"dB":1571484600,"t1s":2,"t2s":0,"t1":22,"t2":28}],[4229,{"d":8,"dB":1570284000,"t1s":1,"t2s":0,"t1":23,"t2":22}],[6142,{"d":7,"dB":1603026000,"t1s":1,"t2s":1,"t1":13,"t2":15}],[6176,{"d":4,"dB":1600542000,"t1s":2,"t2s":1,"t1":20,"t2":13}],[3816,{"d":12,"dB":1572811200,"t1s":1,"t2s":0,"t1":4,"t2":13}],[3822,{"d":11,"dB":1572029100,"t1s":0,"t2s":1,"t1":8,"t2":13}],[3662,{"d":27,"dB":1583002800,"t1s":1,"t2s":1,"t1":13,"t2":68}],[3683,{"d":25,"dB":1581709500,"t1s":1,"t2s":0,"t1":13,"t2":15}],[3722,{"d":21,"dB":1579978800,"t1s":1,"t2s":3,"t1":13,"t2":41}],[3734,{"d":20,"dB":1578859200,"t1s":3,"t2s":3,"t1":2,"t2":13}],[3780,{"d":15,"dB":1579118400,"t1s":1,"t2s":4,"t1":13,"t2":2}],[3842,{"d":9,"dB":1570298400,"t1s":3,"t2s":1,"t1":15,"t2":13}],[6164,{"d":5,"dB":1601211600,"t1s":3,"t2s":2,"t1":13,"t2":41}],[6203,{"d":1,"dB":1598180400,"t1s":2,"t2s":2,"t1":13,"t2":68}],[6183,{"d":3,"dB":1600009200,"t1s":2,"t2s":1,"t1":13,"t2":8}],[3697,{"d":24,"dB":1581264000,"t1s":3,"t2s":0,"t1":41,"t2":68}],[3747,{"d":19,"dB":1576957500,"t1s":2,"t2s":1,"t1":41,"t2":4}],[3663,{"d":27,"dB":1583002800,"t1s":3,"t2s":0,"t1":15,"t2":41}],[3715,{"d":22,"dB":1580574600,"t1s":5,"t2s":0,"t1":2,"t2":15}],[3761,{"d":17,"dB":1575736200,"t1s":1,"t2s":3,"t1":15,"t2":2}],[3857,{"d":8,"dB":1569762000,"t1s":1,"t2s":0,"t1":41,"t2":15}],[6152,{"d":6,"dB":1601809200,"t1s":0,"t2s":1,"t1":15,"t2":67}],[6184,{"d":3,"dB":1599922800,"t1s":3,"t2s":1,"t1":15,"t2":19}],[6189,{"d":2,"dB":1598713200,"t1s":2,"t2s":1,"t1":20,"t2":15}],[4611,{"d":8,"dB":1570356000,"t1s":2,"t2s":0,"t1":87,"t2":56}],[3775,{"d":16,"dB":1575489900,"t1s":2,"t2s":0,"t1":2,"t2":8}],[6153,{"d":6,"dB":1601751600,"t1s":2,"t2s":1,"t1":19,"t2":8}],[6174,{"d":4,"dB":1600614000,"t1s":2,"t2s":2,"t1":8,"t2":4}],[3716,{"d":22,"dB":1580499900,"t1s":3,"t2s":2,"t1":20,"t2":8}],[3700,{"d":23,"dB":1580846700,"t1s":1,"t2s":2,"t1":8,"t2":2}],[6146,{"d":7,"dB":1603033200,"t1s":1,"t2s":3,"t1":4,"t2":19}],[6175,{"d":4,"dB":1600599600,"t1s":0,"t2s":3,"t1":19,"t2":2}],[6196,{"d":2,"dB":1598727600,"t1s":0,"t2s":2,"t1":41,"t2":19}],[4387,{"d":31,"dB":1592847000,"t1s":2,"t2s":2,"t1":64,"t2":55}],[4436,{"d":26,"dB":1583060400,"t1s":3,"t2s":2,"t1":55,"t2":85}],[4496,{"d":20,"dB":1579359600,"t1s":2,"t2s":1,"t1":62,"t2":55}],[4246,{"d":7,"dB":1569688200,"t1s":1,"t2s":3,"t1":22,"t2":40}],[4880,{"d":19,"dB":1576868400,"t1s":1,"t2s":5,"t1":93,"t2":14}],[6144,{"d":7,"dB":1602874800,"t1s":0,"t2s":4,"t1":67,"t2":2}],[3756,{"d":18,"dB":1576440000,"t1s":0,"t2s":4,"t1":4,"t2":2}],[6166,{"d":5,"dB":1601233200,"t1s":0,"t2s":2,"t1":68,"t2":2}],[4320,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":51,"t2":63}],[4334,{"d":36,"dB":1594479600,"t1s":2,"t2s":1,"t1":85,"t2":51}],[4340,{"d":35,"dB":1594152000,"t1s":1,"t2s":1,"t1":51,"t2":54}],[4350,{"d":34,"dB":1593874800,"t1s":1,"t2s":1,"t1":51,"t2":60}],[4362,{"d":33,"dB":1593538200,"t1s":5,"t2s":1,"t1":87,"t2":51}],[4370,{"d":32,"dB":1593270000,"t1s":2,"t2s":2,"t1":51,"t2":59}],[4385,{"d":31,"dB":1593019800,"t1s":0,"t2s":1,"t1":52,"t2":51}],[4390,{"d":30,"dB":1592740800,"t1s":6,"t2s":0,"t1":51,"t2":48}],[4422,{"d":27,"dB":1583611200,"t1s":0,"t2s":0,"t1":58,"t2":51}],[4454,{"d":24,"dB":1581883200,"t1s":2,"t2s":2,"t1":62,"t2":51}],[4460,{"d":23,"dB":1581269400,"t1s":2,"t2s":1,"t1":51,"t2":55}],[4476,{"d":22,"dB":1580587200,"t1s":1,"t2s":0,"t1":49,"t2":51}],[4480,{"d":21,"dB":1580043600,"t1s":0,"t2s":0,"t1":51,"t2":66}],[4500,{"d":19,"dB":1578254400,"t1s":1,"t2s":1,"t1":51,"t2":85}],[4511,{"d":18,"dB":1577035800,"t1s":3,"t2s":1,"t1":63,"t2":51}],[4521,{"d":17,"dB":1576414800,"t1s":2,"t2s":2,"t1":51,"t2":87}],[4584,{"d":11,"dB":1572465600,"t1s":2,"t2s":1,"t1":60,"t2":51}],[4598,{"d":9,"dB":1571565600,"t1s":2,"t2s":0,"t1":48,"t2":51}],[4629,{"d":6,"dB":1569520800,"t1s":1,"t2s":1,"t1":51,"t2":56}],[3952,{"d":36,"dB":1594918800,"t1s":1,"t2s":1,"t1":22,"t2":78}],[3967,{"d":35,"dB":1594551600,"t1s":3,"t2s":0,"t1":69,"t2":22}],[4004,{"d":31,"dB":1593018000,"t1s":0,"t2s":1,"t1":76,"t2":22}],[4011,{"d":30,"dB":1592762400,"t1s":0,"t2s":0,"t1":22,"t2":21}],[4144,{"d":17,"dB":1576418400,"t1s":1,"t2s":1,"t1":31,"t2":22}],[6915,{"d":2,"dB":1600515000,"t1s":5,"t2s":2,"t1":22,"t2":32}],[6925,{"d":1,"dB":1600011000,"t1s":0,"t2s":1,"t1":24,"t2":22}],[4316,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":55,"t2":49}],[4327,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":49,"t2":56}],[4367,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":49,"t2":57}],[4377,{"d":32,"dB":1593356400,"t1s":2,"t2s":0,"t1":64,"t2":49}],[4380,{"d":31,"dB":1593106200,"t1s":1,"t2s":0,"t1":66,"t2":49}],[4397,{"d":30,"dB":1592760600,"t1s":2,"t2s":0,"t1":49,"t2":85}],[4417,{"d":28,"dB":1591992000,"t1s":1,"t2s":1,"t1":49,"t2":63}],[4418,{"d":27,"dB":1583524800,"t1s":1,"t2s":1,"t1":48,"t2":49}],[4462,{"d":23,"dB":1581174000,"t1s":3,"t2s":0,"t1":58,"t2":49}],[5643,{"d":19,"dB":1578858300,"t1s":1,"t2s":2,"t1":116,"t2":115}],[5656,{"d":18,"dB":1578253500,"t1s":0,"t2s":2,"t1":116,"t2":122}],[5659,{"d":17,"dB":1576871100,"t1s":1,"t2s":4,"t1":110,"t2":116}],[5676,{"d":16,"dB":1576429200,"t1s":3,"t2s":1,"t1":116,"t2":118}],[5680,{"d":15,"dB":1575661500,"t1s":0,"t2s":0,"t1":112,"t2":116}],[5702,{"d":13,"dB":1574604000,"t1s":3,"t2s":0,"t1":116,"t2":109}],[5737,{"d":10,"dB":1572465600,"t1s":0,"t2s":4,"t1":124,"t2":116}],[5755,{"d":8,"dB":1571576400,"t1s":0,"t2s":0,"t1":120,"t2":116}],[5771,{"d":6,"dB":1569762000,"t1s":0,"t2s":1,"t1":113,"t2":116}],[5784,{"d":5,"dB":1569430800,"t1s":0,"t2s":2,"t1":116,"t2":119}],[6575,{"d":2,"dB":1598720400,"t1s":1,"t2s":0,"t1":2,"t2":91}],[5641,{"d":19,"dB":1578762000,"t1s":1,"t2s":0,"t1":121,"t2":111}],[5712,{"d":12,"dB":1573394400,"t1s":4,"t2s":2,"t1":121,"t2":113}],[5781,{"d":5,"dB":1569438000,"t1s":1,"t2s":0,"t1":112,"t2":121}],[5459,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":110,"t2":127}],[5479,{"d":35,"dB":1595447100,"t1s":0,"t2s":0,"t1":112,"t2":110}],[5510,{"d":32,"dB":1594575000,"t1s":1,"t2s":1,"t1":110,"t2":126}],[5520,{"d":31,"dB":1594229400,"t1s":0,"t2s":0,"t1":110,"t2":108}],[5534,{"d":30,"dB":1593970200,"t1s":1,"t2s":2,"t1":114,"t2":110}],[5540,{"d":29,"dB":1593632700,"t1s":1,"t2s":3,"t1":110,"t2":123}],[5551,{"d":28,"dB":1593287100,"t1s":2,"t2s":1,"t1":121,"t2":110}],[5560,{"d":27,"dB":1592847000,"t1s":1,"t2s":1,"t1":110,"t2":109}],[5581,{"d":25,"dB":1582400700,"t1s":1,"t2s":1,"t1":110,"t2":125}],[5595,{"d":24,"dB":1581861600,"t1s":1,"t2s":5,"t1":120,"t2":110}],[5599,{"d":23,"dB":1581170400,"t1s":1,"t2s":2,"t1":110,"t2":119}],[5611,{"d":22,"dB":1580643000,"t1s":3,"t2s":0,"t1":115,"t2":110}],[5636,{"d":20,"dB":1579376700,"t1s":0,"t2s":2,"t1":111,"t2":110}],[5639,{"d":19,"dB":1578837600,"t1s":1,"t2s":0,"t1":110,"t2":118}],[5649,{"d":18,"dB":1578310200,"t1s":1,"t2s":1,"t1":127,"t2":110}],[5671,{"d":16,"dB":1576439100,"t1s":1,"t2s":1,"t1":110,"t2":112}],[5686,{"d":15,"dB":1575813600,"t1s":2,"t2s":1,"t1":122,"t2":110}],[5690,{"d":14,"dB":1575143100,"t1s":0,"t2s":1,"t1":110,"t2":113}],[5707,{"d":13,"dB":1574604000,"t1s":1,"t2s":0,"t1":126,"t2":110}],[5709,{"d":12,"dB":1573385400,"t1s":5,"t2s":2,"t1":108,"t2":110}],[5720,{"d":11,"dB":1572800400,"t1s":1,"t2s":1,"t1":110,"t2":114}],[5736,{"d":10,"dB":1572465600,"t1s":1,"t2s":2,"t1":123,"t2":110}],[5740,{"d":9,"dB":1572205500,"t1s":1,"t2s":2,"t1":110,"t2":121}],[5748,{"d":8,"dB":1571683500,"t1s":0,"t2s":0,"t1":109,"t2":110}],[5761,{"d":7,"dB":1570357800,"t1s":1,"t2s":0,"t1":110,"t2":124}],[5772,{"d":6,"dB":1569782700,"t1s":1,"t2s":3,"t1":125,"t2":110}],[5779,{"d":5,"dB":1569438000,"t1s":2,"t2s":1,"t1":110,"t2":120}],[5788,{"d":4,"dB":1569168000,"t1s":2,"t2s":2,"t1":119,"t2":110}],[6167,{"d":5,"dB":1601132400,"t1s":0,"t2s":3,"t1":4,"t2":20}],[6580,{"d":1,"dB":1598115600,"t1s":1,"t2s":0,"t1":42,"t2":17}],[5452,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":115,"t2":116}],[5458,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":108,"t2":115}],[5472,{"d":36,"dB":1595792700,"t1s":2,"t2s":0,"t1":115,"t2":120}],[5492,{"d":34,"dB":1595274300,"t1s":2,"t2s":1,"t1":115,"t2":121}],[5505,{"d":33,"dB":1594842300,"t1s":3,"t2s":3,"t1":123,"t2":115}],[5585,{"d":25,"dB":1582390800,"t1s":1,"t2s":2,"t1":118,"t2":115}],[5591,{"d":24,"dB":1581861600,"t1s":2,"t2s":0,"t1":115,"t2":109}],[5730,{"d":10,"dB":1572465600,"t1s":2,"t2s":1,"t1":115,"t2":117}],[6186,{"d":3,"dB":1599937200,"t1s":2,"t2s":0,"t1":4,"t2":41}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.ligue-2.20201006.json b/src/test/resources/__files/mlnstats.ligue-2.20201006.json deleted file mode 100644 index 33bc630..0000000 --- a/src/test/resources/__files/mlnstats.ligue-2.20201006.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2020-10-04T02:31:55.335Z","mL":{"i":4,"n":"Ligue 2","cN":"Ligue-2","aS":{"i":15,"n":"Ligue 2 2020-2021","cN":"Ligue-2-2020-2021","mD":38,"cD":{"d":6,"lD":6,"p":0}},"lS":{"i":12,"n":"Ligue 2 2019-2020","cN":"Ligue-2-2019-2020","mD":28}},"le":[[4,"Ligue-2"],[1,"Ligue-1"],[5,"Serie-A"]],"p":[[348,{"n":"Leroy","f":"Benjamin","fp":"G","r":22,"c":88,"s":{"s":23.5,"n":5,"a":4.7,"d":1.2,"Ss":8,"Sn":2,"Sa":4,"Sd":1.41,"Os":154.5,"On":27,"Oa":5.72,"Od":1.08,"pg":27},"p":[[6,{"n":3,"e":6528}],[3,{"n":6,"e":6558}],[5,{"n":5,"e":6538}],[2,{"n":5.5,"e":6568}],[1,{"n":4,"e":6579}],[-28,{"n":6,"e":4788}],[-27,{"n":7,"e":4806}],[-26,{"n":5.5,"e":4808}],[-25,{"n":6,"e":4825}],[-24,{"n":4,"e":4828}],[-23,{"n":5,"e":4845}],[-22,{"n":4.5,"e":4848}],[-21,{"n":6,"e":4859}],[-20,{"n":7,"e":4868}],[-19,{"n":6.5,"e":4886}],[-18,{"n":5,"e":4888}],[-17,{"n":6,"e":4899}],[-16,{"n":6,"e":4909}],[-15,{"n":5.5,"e":4918}],[-14,{"n":6,"e":4930}],[-13,{"n":7,"e":4938}],[-12,{"n":8,"e":4956}],[-11,{"n":6,"e":4958}],[-10,{"n":6,"e":4972}],[-9,{"n":7,"e":4978}],[-8,{"n":5,"e":4991}],[-7,{"n":6,"e":4998}]]}],[365,{"n":"Keita","f":"Abdoulaye","fp":"MD","r":4,"c":88,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Ss":4,"Sn":1,"Sa":4,"Os":14.5,"On":3,"Oa":4.83,"Od":0.76,"pm":3},"p":[[4,{"n":5,"e":6552,"s":1}],[6,{"n":4,"e":6528}],[3,{"n":5.5,"e":6558,"s":1}]]}],[4834,{"n":"Huard","f":"Matthieu","fp":"DL","r":12,"c":88,"s":{"s":23,"n":5,"a":4.6,"d":0.65,"Ss":8,"Sn":2,"Sa":4,"Os":127,"On":26,"Oa":4.88,"Od":0.55,"pd":26},"p":[[-28,{"n":5.5,"e":4788}],[-27,{"n":5,"e":4806}],[-26,{"n":5,"e":4808}],[-25,{"n":5,"e":4825}],[-24,{"n":3.5,"e":4828}],[-23,{"n":4.5,"e":4845}],[-22,{"n":5,"e":4848}],[-21,{"n":5,"e":4859}],[-20,{"n":5,"e":4868}],[-19,{"n":4.5,"e":4886}],[-18,{"n":4,"e":4888}],[-17,{"n":5.5,"e":4899}],[-16,{"n":5,"e":4909}],[-15,{"n":5,"e":4918}],[-13,{"n":5.5,"e":4938}],[-12,{"n":5,"e":4956}],[-11,{"n":5,"e":4958}],[-10,{"n":5,"e":4972}],[-9,{"n":6,"e":4978}],[-8,{"n":5,"e":4991}],[-7,{"n":5,"e":4998}],[6,{"n":4,"e":6528}],[5,{"n":4,"e":6538}],[3,{"n":5.5,"e":6558,"s":1}],[2,{"n":5,"e":6568}],[1,{"n":4.5,"e":6579}]]}],[4860,{"n":"Corinus","f":"Jérémy","fp":"DC","r":3,"c":88,"s":{"s":9,"n":2,"a":4.5,"Os":24,"On":5,"Oa":4.8,"Od":0.45,"pd":3,"pm":2},"p":[[-9,{"n":5.5,"e":4978,"s":1}],[-8,{"n":5,"e":4991,"s":1}],[-7,{"n":4.5,"e":4998}],[4,{"n":4.5,"e":6552}],[2,{"n":4.5,"e":6568,"s":1}]]}],[4878,{"n":"El Idrissy","f":"Mounaim","fp":"A","r":11,"c":88,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Ss":18,"Sn":4,"Sa":4.5,"Sd":0.41,"Og":4,"Os":89.5,"On":19,"Oa":4.71,"Od":0.75,"pa":19},"p":[[-28,{"n":4.5,"e":4788}],[-27,{"n":4,"e":4806,"s":1}],[-26,{"n":4.5,"e":4808,"s":1}],[-24,{"n":5.5,"e":4828,"g":1}],[-23,{"n":6,"e":4845,"g":1}],[-22,{"n":4,"e":4848,"s":1}],[-21,{"n":4,"e":4859}],[-20,{"n":6.5,"e":4868,"g":1,"s":1}],[-18,{"n":4.5,"e":4888,"s":1}],[-17,{"n":4.5,"e":4899,"s":1}],[-16,{"n":6,"e":4909,"g":1,"s":1}],[-15,{"n":4.5,"e":4918,"s":1}],[-11,{"n":4.5,"e":4958,"s":1}],[-10,{"n":4.5,"e":4972}],[-9,{"n":4,"e":4978,"s":1}],[6,{"n":4.5,"e":6528,"s":1}],[5,{"n":5,"e":6538}],[4,{"n":4,"e":6552,"s":1}],[3,{"n":4.5,"e":6558}]]}],[4879,{"n":"Marsella","f":"Lucas","fp":"G","r":1,"c":88}],[4960,{"n":"Moussiti-Oko","f":"Bevic","fp":"A","r":12,"c":88,"s":{"s":20,"n":5,"a":4,"d":0.35,"Ss":11.5,"Sn":3,"Sa":3.83,"Sd":0.29,"Og":2,"Os":106.5,"On":23,"Oa":4.63,"Od":1.02,"pm":1,"pa":22},"p":[[-28,{"n":6,"e":4789,"g":1}],[-27,{"n":4.5,"e":4801}],[-25,{"n":5.5,"e":4822}],[-20,{"n":3.5,"e":4872}],[-19,{"n":6,"e":4884}],[-18,{"n":7,"e":4892,"g":1}],[-17,{"n":4,"e":4906}],[-16,{"n":5,"e":4912,"s":1}],[-15,{"n":6,"e":4919}],[-14,{"n":4,"e":4931,"s":1}],[-13,{"n":5,"e":4942}],[-12,{"n":4.5,"e":4950}],[-11,{"n":3.5,"e":4967}],[-10,{"n":6,"e":4971}],[-9,{"n":3.5,"e":4982}],[-7,{"n":5,"e":5005}],[-26,{"n":3.5,"e":4808}],[-8,{"n":4,"e":4991}],[6,{"n":4,"e":6528}],[5,{"n":4,"e":6538,"s":1}],[4,{"n":3.5,"e":6552}],[2,{"n":4.5,"e":6568}],[1,{"n":4,"e":6579}]],"fo":[[6528,[{"t":"Y"}]],[6568,[{"t":"Y"}]]]}],[5039,{"n":"Laci","f":"Qazim","fp":"MD","r":23,"c":88,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.41,"Og":3,"Os":151.5,"On":27,"Oa":5.61,"Od":1,"pm":27},"p":[[-28,{"n":7,"e":4788}],[-27,{"n":6,"e":4806}],[-26,{"n":5,"e":4808}],[-25,{"n":6.5,"e":4825}],[-24,{"n":5.5,"e":4828}],[-23,{"n":6,"e":4845,"g":1}],[-22,{"n":4,"e":4848}],[-21,{"n":6,"e":4859}],[-20,{"n":5.5,"e":4868}],[-19,{"n":6.5,"e":4886}],[-18,{"n":7,"e":4888,"g":1}],[-17,{"n":6,"e":4899}],[-16,{"n":8,"e":4909}],[-15,{"n":6,"e":4918}],[-14,{"n":5,"e":4930}],[-13,{"n":7,"e":4938,"g":1}],[-12,{"n":6,"e":4956}],[-11,{"n":4.5,"e":4958}],[-10,{"n":4.5,"e":4972}],[-9,{"n":6,"e":4978}],[-8,{"n":5.5,"e":4991}],[6,{"n":4.5,"e":6528,"s":1}],[5,{"n":5,"e":6538}],[4,{"n":5,"e":6552}],[3,{"n":4,"e":6558}],[2,{"n":4.5,"e":6568,"s":1}],[1,{"n":5,"e":6579}]]}],[5044,{"n":"Coutadeur","f":"Mathieu","fp":"MD","r":23,"c":88,"s":{"s":31,"n":6,"a":5.17,"d":0.75,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.75,"Og":1,"Os":158,"On":28,"Oa":5.64,"Od":0.97,"pm":28},"p":[[-28,{"n":5.5,"e":4788}],[-27,{"n":5.5,"e":4806}],[-26,{"n":7,"e":4808,"g":1}],[-25,{"n":6,"e":4825}],[-24,{"n":4,"e":4828}],[-23,{"n":6,"e":4845}],[-22,{"n":5,"e":4848}],[-21,{"n":7.5,"e":4859}],[-20,{"n":5.5,"e":4868}],[-19,{"n":4.5,"e":4886}],[-18,{"n":3.5,"e":4888}],[-17,{"n":7,"e":4899}],[-16,{"n":5,"e":4909}],[-15,{"n":6,"e":4918}],[-14,{"n":6,"e":4930}],[-13,{"n":6,"e":4938}],[-12,{"n":5.5,"e":4956}],[-11,{"n":7,"e":4958}],[-10,{"n":6,"e":4972}],[-9,{"n":7,"e":4978}],[-8,{"n":6,"e":4991}],[-7,{"n":5.5,"e":4998}],[6,{"n":4.5,"e":6528}],[5,{"n":5.5,"e":6538}],[4,{"n":4.5,"e":6552}],[3,{"n":6,"e":6558}],[2,{"n":6,"e":6568}],[1,{"n":4.5,"e":6579,"s":1}]],"fo":[[6568,[{"t":"Y"}]]]}],[5077,{"n":"Lecoeuche","f":"Quentin","fp":"DL","r":10,"c":88,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.41,"Os":63,"On":13,"Oa":4.85,"Od":0.43,"pd":9,"pm":4},"p":[[-23,{"n":4.5,"e":4842,"s":1}],[-22,{"n":5.5,"e":4856}],[-18,{"n":5,"e":4893,"s":1}],[-17,{"n":4.5,"e":4900,"s":1}],[-14,{"n":5.5,"e":4932,"s":1}],[-11,{"n":5,"e":4964,"s":1}],[-9,{"n":5,"e":4979,"s":1}],[6,{"n":5,"e":6528}],[5,{"n":4.5,"e":6538,"s":1}],[4,{"n":4,"e":6552}],[3,{"n":5,"e":6558}],[2,{"n":5,"e":6568}],[1,{"n":4.5,"e":6579}]],"fo":[[6552,[{"t":"Y"}]]]}],[5086,{"n":"Sollacaro","f":"Francois-Joseph","fp":"G","r":7,"c":88,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pg":1},"p":[[4,{"n":4,"e":6552}]]}],[5099,{"n":"Diallo","f":"Ismaël","fp":"DL","r":12,"c":88,"s":{"s":21,"n":5,"a":4.2,"d":1.64,"Ss":7,"Sn":2,"Sa":3.5,"Sd":2.12,"Os":101,"On":21,"Oa":4.81,"Od":1.17,"pd":21},"p":[[-28,{"n":5.5,"e":4788}],[-26,{"n":5,"e":4808}],[-25,{"n":6.5,"e":4825}],[-24,{"n":3,"e":4828}],[-23,{"n":5.5,"e":4845}],[-22,{"n":5.5,"e":4848}],[-21,{"n":5.5,"e":4859}],[-20,{"n":5.5,"e":4868}],[-19,{"n":4,"e":4886}],[-18,{"n":3,"e":4888}],[-17,{"n":5,"e":4899,"s":1}],[-13,{"n":5.5,"e":4938}],[-12,{"n":6,"e":4956}],[-10,{"n":4.5,"e":4972}],[-9,{"n":5,"e":4978}],[-7,{"n":5,"e":4998,"s":1}],[6,{"n":2,"e":6528}],[5,{"n":5,"e":6538}],[3,{"n":6,"e":6558}],[2,{"n":3,"e":6568}],[1,{"n":5,"e":6579}]],"fo":[[6558,[{"t":"Y"}]],[6568,[{"t":"Y"}]]]}],[5154,{"n":"N'Diaye","f":"Alassane","fp":"A","r":9,"c":88,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":74,"On":15,"Oa":4.93,"Od":0.46,"pm":15},"p":[[-24,{"n":5,"e":4830,"s":1}],[-23,{"n":5,"e":4838}],[-22,{"n":5,"e":4850,"s":1}],[-21,{"n":4.5,"e":4863,"s":1}],[-20,{"n":5,"e":4870,"s":1}],[-17,{"n":5.5,"e":4907}],[-16,{"n":5,"e":4910,"s":1}],[-14,{"n":5.5,"e":4929}],[-12,{"n":5,"e":4949,"s":1}],[-11,{"n":4.5,"e":4962}],[-7,{"n":5.5,"e":5000}],[-15,{"n":4.5,"e":4918}],[-13,{"n":5.5,"e":4942,"s":1}],[2,{"n":4.5,"e":6568}],[1,{"n":4,"e":6579}]]}],[5170,{"n":"Courtet","f":"Gaëtan","fp":"A","r":12,"c":88,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Og":6,"Os":125,"On":24,"Oa":5.21,"Od":1.28,"pa":24},"p":[[-27,{"n":5,"e":4806}],[-26,{"n":6.5,"e":4808}],[-25,{"n":8,"e":4825,"g":2}],[-24,{"n":4.5,"e":4828,"s":1}],[-23,{"n":4.5,"e":4845,"s":1}],[-22,{"n":3.5,"e":4848}],[-21,{"n":5,"e":4859}],[-20,{"n":8,"e":4868,"g":2}],[-19,{"n":6.5,"e":4886,"g":1,"s":1}],[-18,{"n":3.5,"e":4888}],[-17,{"n":5,"e":4899}],[-16,{"n":7,"e":4909}],[-15,{"n":4.5,"e":4918}],[-14,{"n":4.5,"e":4930}],[-13,{"n":4.5,"e":4938}],[-12,{"n":5,"e":4956}],[-11,{"n":4,"e":4958}],[-9,{"n":4,"e":4978}],[-8,{"n":7,"e":4991,"g":1}],[-7,{"n":5,"e":4998}],[6,{"n":4.5,"e":6528,"s":1}],[5,{"n":5,"e":6538}],[4,{"n":5,"e":6552}],[3,{"n":5,"e":6558}]],"fo":[[6552,[{"t":"Y"}]],[6558,[{"t":"Y"}]]]}],[5174,{"n":"Barreto","f":"Michael","fp":"MO","r":12,"c":88,"s":{"g":2,"s":24,"n":4,"a":6,"d":1.22,"Sg":2,"Ss":24,"Sn":4,"Sa":6,"Sd":1.22,"Og":2,"Os":126.5,"On":23,"Oa":5.5,"Od":1.03,"pm":22,"pa":1},"p":[[-28,{"n":5,"e":4793}],[-27,{"n":7,"e":4798}],[-26,{"n":3.5,"e":4817}],[-25,{"n":5,"e":4818}],[-22,{"n":5,"e":4851}],[-21,{"n":5,"e":4858}],[-17,{"n":5,"e":4898}],[-16,{"n":4.5,"e":4908,"s":1}],[-15,{"n":5,"e":4926}],[-14,{"n":6,"e":4928}],[-12,{"n":3.5,"e":4948,"s":1}],[-11,{"n":5,"e":4966}],[-10,{"n":6,"e":4968}],[-9,{"n":6.5,"e":4985}],[-8,{"n":5.5,"e":4988}],[-7,{"n":6.5,"e":4999}],[-24,{"n":6,"e":4828}],[-20,{"n":7,"e":4872}],[-18,{"n":5.5,"e":4893,"s":1}],[6,{"n":4.5,"e":6528}],[5,{"n":7,"e":6538,"g":1}],[4,{"n":5.5,"e":6552,"s":1}],[3,{"n":7,"e":6558,"g":1}]]}],[5206,{"n":"Youssouf","f":"Mohamed","fp":"DL","r":5,"c":88,"s":{"s":18,"n":4,"a":4.5,"d":1,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1,"Og":1,"Os":50,"On":10,"Oa":5,"Od":1.18,"pd":8,"pm":2},"p":[[-27,{"n":5,"e":4806}],[-24,{"n":4,"e":4828}],[-22,{"n":4,"e":4848}],[-21,{"n":7,"e":4859,"g":1}],[-20,{"n":6.5,"e":4868}],[-14,{"n":5.5,"e":4930}],[6,{"n":3,"e":6528}],[5,{"n":5,"e":6538,"s":1}],[4,{"n":5,"e":6552,"s":1}],[3,{"n":5,"e":6558}]],"fo":[[6538,[{"t":"Y"}]],[6552,[{"t":"Y"}]]]}],[5214,{"n":"Avinel","f":"Cédric","fp":"DC","r":16,"c":88,"s":{"s":26.5,"n":6,"a":4.42,"d":1.16,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":1.16,"Os":142,"On":28,"Oa":5.07,"Od":0.98,"pd":28},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":6,"e":4806}],[-26,{"n":6,"e":4808}],[-25,{"n":6,"e":4825}],[-24,{"n":3.5,"e":4828}],[-23,{"n":5,"e":4845}],[-22,{"n":4.5,"e":4848}],[-21,{"n":7,"e":4859}],[-20,{"n":5.5,"e":4868}],[-19,{"n":3.5,"e":4886}],[-18,{"n":4.5,"e":4888}],[-17,{"n":6,"e":4899}],[-16,{"n":6,"e":4909}],[-15,{"n":4.5,"e":4918}],[-14,{"n":5,"e":4930}],[-13,{"n":5.5,"e":4938}],[-12,{"n":6,"e":4956}],[-11,{"n":5,"e":4958}],[-10,{"n":5.5,"e":4972}],[-9,{"n":6,"e":4978}],[-8,{"n":4.5,"e":4991}],[-7,{"n":5,"e":4998}],[6,{"n":2.5,"e":6528}],[5,{"n":4.5,"e":6538}],[4,{"n":4,"e":6552}],[3,{"n":6,"e":6558}],[2,{"n":5,"e":6568}],[1,{"n":4.5,"e":6579}]],"fo":[[6558,[{"t":"Y"}]]]}],[5979,{"n":"Kalulu Kyatengwa","f":"Gedeon","fp":"DL","r":14,"c":88,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":1,"Os":106.5,"On":20,"Oa":5.33,"Od":0.69,"pd":20},"p":[[-28,{"n":5,"e":4788}],[-27,{"n":6,"e":4806}],[-26,{"n":5,"e":4808}],[-25,{"n":5.5,"e":4825}],[-23,{"n":5,"e":4845}],[-17,{"n":6,"e":4899}],[-16,{"n":7,"e":4909,"g":1}],[-15,{"n":5,"e":4918}],[-14,{"n":5,"e":4930}],[-13,{"n":6,"e":4938}],[-12,{"n":6,"e":4956}],[-11,{"n":5.5,"e":4958}],[-10,{"n":5,"e":4972}],[-9,{"n":6,"e":4978}],[-8,{"n":5,"e":4991}],[-7,{"n":5.5,"e":4998}],[6,{"n":4,"e":6528,"s":1}],[5,{"n":5,"e":6538}],[4,{"n":4.5,"e":6552}],[1,{"n":4.5,"e":6579}]],"fo":[[6538,[{"t":"I"},{"t":"Y"}]],[6579,[{"t":"I"}]]]}],[6232,{"n":"Loufilou","f":"Clench","fp":"MD","r":1,"c":88,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-25,{"n":5,"e":4825,"s":1}]]}],[6358,{"n":"Mattoir","f":"Faiz","fp":"A","r":6,"c":88,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":1,"pa":3},"p":[[5,{"n":4.5,"e":6538,"s":1}],[3,{"n":4.5,"e":6558,"s":1}],[2,{"n":5,"e":6568}],[1,{"n":5,"e":6579,"s":1}]],"fo":[[6568,[{"t":"Y"}]]]}],[6585,{"n":"Obissa","f":"Sidney","fp":"DC","r":1,"c":88}],[6831,{"n":"Cimignani","f":"Yanis","fp":"MO","r":5,"c":88,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[4,{"n":4.5,"e":6552}],[2,{"n":5,"e":6568,"s":1}],[1,{"n":4.5,"e":6579}]]}],[6833,{"n":"N'Jike","f":"Tony","fp":"MD","r":1,"c":88,"s":{"s":15,"n":3,"a":5,"Os":15,"On":3,"Oa":5,"pm":3},"p":[[4,{"n":5,"e":6552,"s":1}],[2,{"n":5,"e":6568}],[1,{"n":5,"e":6579}]]}],[6909,{"n":"Dedola","f":"Baptiste","fp":"MO","r":7,"c":88,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[2,{"n":5,"e":6568}]]}],[6910,{"n":"Elisor","f":"Simon","fp":"A","r":3,"c":88,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":0.85,"Sg":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":1,"Os":19.5,"On":4,"Oa":4.88,"Od":0.85,"pa":4},"p":[[6,{"n":6,"e":6528,"g":1}],[5,{"n":4.5,"e":6538,"s":1}],[3,{"n":4,"e":6558,"s":1}],[2,{"n":5,"e":6568,"s":1}]]}],[7203,{"n":"Nouri","f":"Riad","fp":"MO","r":10,"c":88,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Os":19.5,"On":4,"Oa":4.88,"Od":0.25,"pm":3,"pa":1},"p":[[6,{"n":5,"e":6528,"s":1}],[5,{"n":5,"e":6538}],[4,{"n":5,"e":6552}],[3,{"n":4.5,"e":6558}]]}],[238,{"n":"Blin","f":"Alexis","fp":"MD","r":14,"c":42,"s":{"s":31.5,"n":6,"a":5.25,"d":0.52,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.52,"Os":129,"On":26,"Oa":4.96,"Od":0.58,"pm":26},"p":[[6,{"n":5,"e":6529}],[5,{"n":5.5,"e":6539}],[4,{"n":5.5,"e":6549}],[3,{"n":4.5,"e":6559}],[2,{"n":5,"e":6573}],[1,{"n":6,"e":6580}],[-28,{"n":5,"e":3651,"s":1}],[-27,{"n":4.5,"e":3658}],[-26,{"n":5,"e":3677,"s":1}],[-25,{"n":4,"e":3678}],[-24,{"n":4.5,"e":3688}],[-23,{"n":6,"e":3704}],[-22,{"n":4.5,"e":3708}],[-21,{"n":5,"e":3718}],[-20,{"n":4.5,"e":3728}],[-19,{"n":4.5,"e":3744,"s":1}],[-18,{"n":5,"e":3748}],[-17,{"n":4,"e":3760}],[-14,{"n":5,"e":3788}],[-12,{"n":5,"e":3808}],[-11,{"n":5,"e":3826}],[-10,{"n":5.5,"e":3835}],[-9,{"n":5.5,"e":3838}],[-8,{"n":4,"e":3848}],[-6,{"n":6,"e":3872}],[-5,{"n":5,"e":3878}]],"fo":[[6529,[{"t":"Y"}]]]}],[1007,{"n":"Wagué","f":"Molla","fp":"DC","r":8,"c":42,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":49.5,"On":10,"Oa":4.95,"Od":0.69,"pd":10},"p":[[-24,{"n":5.5,"e":3690}],[-23,{"n":4.5,"e":3700}],[-22,{"n":4,"e":3716}],[-20,{"n":4.5,"e":3736}],[-19,{"n":5,"e":3742}],[-18,{"n":5.5,"e":3755,"s":1}],[-14,{"n":6,"e":3791}],[-10,{"n":4,"e":3832}],[6,{"n":5.5,"e":6529}],[5,{"n":5,"e":6539}]],"fo":[[6539,[{"t":"Y"}]]]}],[1403,{"n":"Gurtner","f":"Régis","fp":"G","r":9,"c":42,"s":{"s":22,"n":4,"a":5.5,"d":0.58,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.58,"Os":144.5,"On":28,"Oa":5.16,"Od":0.93,"pg":28},"p":[[-16,{"n":5,"e":3768}],[-15,{"n":4,"e":3781}],[-13,{"n":6,"e":3806}],[-7,{"n":2.5,"e":3858}],[-28,{"n":4,"e":3651}],[-27,{"n":6,"e":3658}],[-26,{"n":6,"e":3677}],[-25,{"n":4,"e":3678}],[-24,{"n":5.5,"e":3688}],[-23,{"n":6,"e":3704}],[-22,{"n":6,"e":3708}],[-21,{"n":4.5,"e":3718}],[-20,{"n":4.5,"e":3728}],[-19,{"n":5,"e":3744}],[-18,{"n":6,"e":3748}],[-17,{"n":5,"e":3760}],[-14,{"n":4,"e":3788}],[-12,{"n":6,"e":3808}],[-11,{"n":4,"e":3826}],[-10,{"n":5,"e":3835}],[-9,{"n":6,"e":3838}],[-8,{"n":6,"e":3848}],[-6,{"n":6,"e":3872}],[6,{"n":5,"e":6529}],[-5,{"n":5.5,"e":3878}],[5,{"n":6,"e":6539}],[4,{"n":6,"e":6549}],[3,{"n":5,"e":6559}]]}],[1416,{"n":"Konaté","f":"Moussa","fp":"A","r":9,"c":42,"s":{"s":15,"n":4,"a":3.75,"d":0.87,"Ss":15,"Sn":4,"Sa":3.75,"Sd":0.87,"Og":2,"Os":55,"On":13,"Oa":4.23,"Od":0.9,"pa":13},"p":[[-27,{"n":4,"e":3658}],[-22,{"n":4.5,"e":3708}],[-21,{"n":4.5,"e":3718,"s":1}],[-20,{"n":5,"e":3728,"s":1}],[-19,{"n":3,"e":3744}],[-18,{"n":6,"e":3748,"g":1}],[-17,{"n":3.5,"e":3760,"s":1}],[-16,{"n":5,"e":3768,"g":1}],[6,{"n":4,"e":6529}],[-5,{"n":4.5,"e":3878}],[5,{"n":4,"e":6539,"s":1}],[4,{"n":4.5,"e":6549}],[3,{"n":2.5,"e":6559}]]}],[1449,{"n":"Prince","f":"","fp":"DC","r":5,"c":42}],[1538,{"n":"Zungu","f":"Bongani","fp":"MO","r":6,"c":42,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":88.5,"On":19,"Oa":4.66,"Od":0.6,"pm":19},"p":[[-28,{"n":5.5,"e":3651}],[-27,{"n":4.5,"e":3658,"s":1}],[-26,{"n":5,"e":3677}],[-25,{"n":5.5,"e":3678}],[-24,{"n":4.5,"e":3688,"s":1}],[-23,{"n":5.5,"e":3704,"s":1}],[-21,{"n":4,"e":3718}],[-19,{"n":4,"e":3744}],[-18,{"n":4.5,"e":3748,"s":1}],[-16,{"n":4.5,"e":3768}],[-15,{"n":3.5,"e":3781}],[-13,{"n":5.5,"e":3806}],[-12,{"n":4.5,"e":3808,"s":1}],[-9,{"n":5,"e":3838,"s":1}],[-8,{"n":4.5,"e":3848,"s":1}],[-7,{"n":4,"e":3858}],[-6,{"n":5,"e":3872,"s":1}],[6,{"n":4,"e":6529}],[5,{"n":5,"e":6539,"s":1}]],"fo":[[6529,[{"t":"Y"}]]]}],[2041,{"n":"Khalid","f":"Driss","fp":"MO","r":4,"c":42,"s":{"s":7,"n":2,"a":3.5,"d":1.41,"Os":7,"On":2,"Oa":3.5,"Od":1.41,"pa":2},"p":[[4,{"n":4.5,"e":6549,"s":1}],[1,{"n":2.5,"e":6580,"s":1}]],"fo":[[6580,[{"t":"R"}]],[6549,[{"t":"Y"}]]]}],[2235,{"n":"Mendoza","f":"John Stiven","fp":"MO","r":6,"c":42,"s":{"g":1,"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":86.5,"On":17,"Oa":5.09,"Od":1.11,"pm":14,"pa":3},"p":[[-24,{"n":4.5,"e":3688,"s":1}],[-23,{"n":5,"e":3704,"s":1}],[-20,{"n":3.5,"e":3728}],[-19,{"n":6,"e":3744,"g":1}],[-18,{"n":5,"e":3748,"s":1}],[-16,{"n":4,"e":3768}],[-15,{"n":4,"e":3781}],[-14,{"n":3.5,"e":3788}],[-13,{"n":5,"e":3806}],[-12,{"n":5.5,"e":3808}],[-11,{"n":6.5,"e":3826,"g":1}],[-10,{"n":4.5,"e":3835}],[-9,{"n":7,"e":3838,"g":1}],[-8,{"n":7,"e":3848,"g":1}],[-7,{"n":6,"e":3858,"g":1}],[6,{"n":4.5,"e":6529}],[3,{"n":5,"e":6559,"g":1,"s":1}]],"fo":[[6559,[{"t":"Y"}]]]}],[2605,{"n":"Alphonse","f":"Mickaël","fp":"DL","r":10,"c":42,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":15,"Sn":3,"Sa":5,"Oao":1,"Os":81,"On":17,"Oa":4.76,"Od":0.73,"pd":16,"pm":1},"p":[[-27,{"n":3,"e":3666}],[-25,{"n":4.5,"e":3679}],[-19,{"n":5,"e":3738,"s":1}],[-17,{"n":4.5,"e":3762}],[-15,{"n":5,"e":3778}],[-14,{"n":6,"e":3792}],[-10,{"n":5,"e":3830}],[-9,{"n":6,"e":3840}],[-8,{"n":5,"e":3856,"s":1}],[-6,{"n":4.5,"e":3873}],[-5,{"n":5,"e":3881}],[-24,{"n":3.5,"e":3690,"a":1}],[-18,{"n":4.5,"e":3748}],[6,{"n":5,"e":6529}],[5,{"n":5,"e":6539}],[4,{"n":5,"e":6549}],[2,{"n":4.5,"e":6573}]],"fo":[[6549,[{"t":"Y"}]],[6573,[{"t":"Y"},{"t":"O"}]]]}],[2706,{"n":"Otero","f":"Juan Ferney","fp":"A","r":16,"c":42,"s":{"s":25.5,"n":5,"a":5.1,"d":0.89,"Og":1,"Os":108,"On":22,"Oa":4.91,"Od":0.96,"pm":15,"pa":7},"p":[[-27,{"n":3.5,"e":3658}],[-26,{"n":5,"e":3677}],[-25,{"n":5.5,"e":3678}],[-24,{"n":6,"e":3688}],[-23,{"n":6,"e":3704}],[-22,{"n":4.5,"e":3708,"s":1}],[-16,{"n":4.5,"e":3768,"s":1}],[-15,{"n":2.5,"e":3781}],[-14,{"n":4.5,"e":3788,"s":1}],[-13,{"n":4,"e":3806}],[-12,{"n":6.5,"e":3808,"g":1}],[-10,{"n":5,"e":3835}],[-9,{"n":5,"e":3838}],[-8,{"n":4,"e":3848}],[-7,{"n":5.5,"e":3858}],[-6,{"n":5.5,"e":3872}],[-5,{"n":5,"e":3878,"s":1}],[5,{"n":5,"e":6539}],[4,{"n":5,"e":6549,"s":1}],[3,{"n":4,"e":6559}],[2,{"n":5,"e":6573}],[1,{"n":6.5,"e":6580}]]}],[2775,{"n":"Traore","f":"Gaoussou","fp":"MO","r":2,"c":42}],[2777,{"n":"Sy","f":"Sanasi","fp":"DL","r":10,"c":42,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":10,"On":2,"Oa":5,"pd":2},"p":[[6,{"n":5,"e":6529}],[1,{"n":5,"e":6580,"s":1}]]}],[2778,{"n":"Gendrey","f":"Valentin","fp":"DL","r":10,"c":42,"s":{"s":10.5,"n":2,"a":5.25,"d":1.77,"Os":10.5,"On":2,"Oa":5.25,"Od":1.77,"pd":2},"p":[[3,{"n":4,"e":6559}],[1,{"n":6.5,"e":6580}]],"fo":[[6559,[{"t":"Y"}]]]}],[2789,{"n":"Timité","f":"Cheick","fp":"MO","r":14,"c":42,"s":{"s":22,"n":5,"a":4.4,"d":0.89,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":100.5,"On":22,"Oa":4.57,"Od":0.76,"pd":7,"pm":3,"pa":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-28,{"n":4,"e":4797}],[-27,{"n":4,"e":4805,"s":1}],[-26,{"n":6,"e":4810,"g":1,"s":1}],[-25,{"n":4.5,"e":4826}],[-24,{"n":5,"e":4829}],[-22,{"n":5.5,"e":4854,"s":1}],[-18,{"n":4.5,"e":4897,"s":1}],[-17,{"n":3.5,"e":4901}],[-16,{"n":4.5,"e":4914,"s":1}],[-13,{"n":6,"e":4943}],[-12,{"n":5,"e":4954}],[-11,{"n":4.5,"e":4961}],[-10,{"n":4,"e":4975}],[-9,{"n":5,"e":4984}],[-8,{"n":4.5,"e":4995,"s":1}],[-23,{"n":4.5,"e":4845,"s":1}],[-19,{"n":3.5,"e":4884,"s":1}],[6,{"n":5,"e":6529,"s":1}],[5,{"n":5,"e":6539,"s":1}],[3,{"n":3,"e":6559}],[2,{"n":4,"e":6573}],[1,{"n":5,"e":6580,"s":1}]],"fo":[[6573,[{"t":"I"}]],[6559,[{"t":"Y"}]]]}],[2794,{"n":"Kurzawa","f":"Rafal","fp":"MO","r":8,"c":42}],[3515,{"n":"Gomis","f":"Iron","fp":"MD","r":10,"c":42,"s":{"s":32,"n":6,"a":5.33,"d":0.88,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.88,"Os":32,"On":6,"Oa":5.33,"Od":0.88,"pm":6},"p":[[6,{"n":5,"e":6529}],[5,{"n":5,"e":6539}],[4,{"n":5,"e":6549}],[3,{"n":4.5,"e":6559}],[2,{"n":5.5,"e":6573}],[1,{"n":7,"e":6580}]],"fo":[[6529,[{"t":"Y"}]]]}],[3672,{"n":"Lewis","f":"Adam","fp":"DL","r":12,"c":42,"s":{"s":30,"n":6,"a":5,"d":0.32,"Ss":30,"Sn":6,"Sa":5,"Sd":0.32,"Os":30,"On":6,"Oa":5,"Od":0.32,"pd":6},"p":[[6,{"n":5,"e":6529,"s":1}],[5,{"n":5,"e":6539}],[4,{"n":5,"e":6549}],[3,{"n":4.5,"e":6559}],[2,{"n":5,"e":6573}],[1,{"n":5.5,"e":6580}]],"fo":[[6539,[{"t":"Y"}]],[6580,[{"t":"Y"}]]]}],[3759,{"n":"Lahne","f":"Jack","fp":"A","r":5,"c":42,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Og":1,"Os":24,"On":5,"Oa":4.8,"Od":0.76,"pa":5},"p":[[-15,{"n":6,"e":3781,"g":1,"s":1}],[4,{"n":4.5,"e":6549,"s":1}],[3,{"n":4.5,"e":6559,"s":1}],[2,{"n":4,"e":6573,"s":1}],[1,{"n":5,"e":6580,"s":1}]]}],[4265,{"n":"Opoku","f":"Nicholas","fp":"DC","r":10,"c":42,"s":{"s":24.5,"n":5,"a":4.9,"d":1.08,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.08,"Os":90.5,"On":19,"Oa":4.76,"Od":0.93,"pd":17,"pm":2},"p":[[-13,{"n":5,"e":5704}],[-11,{"n":5,"e":5721}],[-9,{"n":2.5,"e":5738}],[-8,{"n":6,"e":5757}],[-7,{"n":5,"e":5761}],[-5,{"n":5,"e":5787,"s":1}],[-3,{"n":6,"e":5801}],[-28,{"n":4,"e":3651}],[-27,{"n":4.5,"e":3658}],[-26,{"n":5,"e":3677}],[-25,{"n":3.5,"e":3678}],[-24,{"n":4.5,"e":3688}],[-23,{"n":5,"e":3704}],[-22,{"n":5,"e":3708}],[6,{"n":5.5,"e":6529}],[5,{"n":6,"e":6539}],[4,{"n":5.5,"e":6549}],[3,{"n":4,"e":6559}],[2,{"n":3.5,"e":6573}]],"fo":[[6573,[{"t":"Y"}]]]}],[5193,{"n":"Thuram-Ulien","f":"Yohann","fp":"G","r":10,"c":42,"s":{"s":10,"n":2,"a":5,"d":0.71,"Os":16.5,"On":4,"Oa":4.13,"Od":1.11,"pg":4},"p":[[-8,{"n":3,"e":4991}],[-7,{"n":3.5,"e":5005}],[2,{"n":4.5,"e":6573}],[1,{"n":5.5,"e":6580}]]}],[6004,{"n":"Demirel","f":"Umit","fp":"MO","r":1,"c":42}],[6005,{"n":"Papeau","f":"Jayson","fp":"MO","r":8,"c":42,"s":{"s":30.5,"n":6,"a":5.08,"d":0.86,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.86,"Os":36,"On":7,"Oa":5.14,"Od":0.8,"pm":6,"pa":1},"p":[[-20,{"n":5.5,"e":4869}],[6,{"n":4,"e":6529}],[5,{"n":6.5,"e":6539}],[4,{"n":4.5,"e":6549}],[3,{"n":5.5,"e":6559,"s":1}],[2,{"n":5,"e":6573,"s":1}],[1,{"n":5,"e":6580}]],"fo":[[6539,[{"t":"Y"}]],[6549,[{"t":"Y"}]],[6580,[{"t":"Y"}]]]}],[6006,{"n":"Bumbu","f":"Jonathan","fp":"MD","r":2,"c":42}],[6010,{"n":"Tokpa","f":"Darell","fp":"A","r":1,"c":42}],[6020,{"n":"Akolo","f":"Chadrac","fp":"MO","r":9,"c":42,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Og":1,"Os":66.5,"On":14,"Oa":4.75,"Od":0.61,"pm":6,"pa":8},"p":[[-28,{"n":4.5,"e":3651,"s":1}],[-21,{"n":4.5,"e":3718,"s":1}],[-19,{"n":4.5,"e":3744,"s":1}],[-18,{"n":4,"e":3748}],[-17,{"n":5,"e":3760,"s":1}],[-14,{"n":4.5,"e":3788}],[-13,{"n":4,"e":3806,"s":1}],[-12,{"n":5,"e":3808,"s":1}],[-11,{"n":6.5,"e":3826,"g":1,"s":1}],[-8,{"n":4.5,"e":3848,"s":1}],[-6,{"n":5,"e":3872,"s":1}],[3,{"n":4.5,"e":6559}],[2,{"n":5,"e":6573}],[1,{"n":5,"e":6580,"s":1}]]}],[6746,{"n":"Coudert","f":"Grégoire","fp":"G","r":3,"c":42}],[6776,{"n":"Rafael Fonseca","f":"","fp":"DL","r":1,"c":42}],[6834,{"n":"Monzango","f":"Nathan","fp":"DC","r":8,"c":42,"s":{"ao":1,"s":13.5,"n":3,"a":4.5,"d":0.87,"Oao":1,"Os":13.5,"On":3,"Oa":4.5,"Od":0.87,"pd":3},"p":[[3,{"n":4,"e":6559}],[2,{"n":4,"e":6573,"a":1}],[1,{"n":5.5,"e":6580}]]}],[6844,{"n":"Ciss","f":"Amadou","fp":"MO","r":6,"c":42,"s":{"s":15,"n":3,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":15,"On":3,"Oa":5,"pm":3},"p":[[6,{"n":5,"e":6529,"s":1}],[5,{"n":5,"e":6539,"s":1}],[2,{"n":5,"e":6573,"s":1}]]}],[6846,{"n":"Toure","f":"Abdoulaye","fp":"MO","r":1,"c":42}],[6847,{"n":"Gomez","f":"Charbel","fp":"A","r":2,"c":42}],[6875,{"n":"Lomotey","f":"Emmanuel","fp":"MD","r":10,"c":42,"s":{"s":24.5,"n":5,"a":4.9,"d":0.65,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.25,"Os":24.5,"On":5,"Oa":4.9,"Od":0.65,"pd":1,"pm":4},"p":[[6,{"n":4.5,"e":6529,"s":1}],[5,{"n":4.5,"e":6539}],[4,{"n":5,"e":6549}],[3,{"n":4.5,"e":6559,"s":1}],[1,{"n":6,"e":6580}]]}],[7201,{"n":"Popovic","f":"Boris","fp":"DC","r":3,"c":42}],[7243,{"n":"Odey","f":"Stephen Pius","fp":"A","r":8,"c":42,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Os":13.5,"On":3,"Oa":4.5,"Od":0.5,"pa":3},"p":[[6,{"n":4.5,"e":6529,"s":1}],[5,{"n":4,"e":6539}],[4,{"n":5,"e":6549}]]}],[7295,{"n":"Bianchini","f":"Florian","fp":"A","r":1,"c":42}],[107,{"n":"Michel","f":"Mathieu","fp":"G","r":5,"c":101,"s":{"Os":117.5,"On":21,"Oa":5.6,"Od":0.86,"pg":21},"p":[[-19,{"n":5.5,"e":4878}],[-13,{"n":5,"e":4941}],[-27,{"n":5,"e":4798}],[-26,{"n":5,"e":4817}],[-25,{"n":5.5,"e":4818}],[-24,{"n":6,"e":4828}],[-23,{"n":6,"e":4838}],[-22,{"n":6,"e":4851}],[-21,{"n":5.5,"e":4858}],[-20,{"n":7,"e":4872}],[-18,{"n":7,"e":4893}],[-17,{"n":6,"e":4898}],[-16,{"n":4,"e":4908}],[-15,{"n":5,"e":4926}],[-14,{"n":4.5,"e":4928}],[-12,{"n":4,"e":4948}],[-11,{"n":6,"e":4966}],[-10,{"n":6,"e":4968}],[-9,{"n":5.5,"e":4985}],[-8,{"n":6,"e":4988}],[-7,{"n":7,"e":4999}]]}],[306,{"n":"Bellugou","f":"François","fp":"MD","r":9,"c":101,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":116.5,"On":23,"Oa":5.07,"Od":0.77,"pm":23},"p":[[5,{"n":4.5,"e":6545,"s":1}],[4,{"n":5,"e":6557,"s":1}],[3,{"n":4.5,"e":6560,"s":1}],[-27,{"n":5,"e":4798}],[-26,{"n":4,"e":4817}],[-25,{"n":5.5,"e":4818}],[-24,{"n":5,"e":4828,"s":1}],[-23,{"n":5,"e":4838}],[-22,{"n":5.5,"e":4851}],[-21,{"n":6,"e":4858}],[-20,{"n":6,"e":4872}],[-19,{"n":5,"e":4878}],[-18,{"n":4,"e":4893}],[-17,{"n":5,"e":4898}],[-16,{"n":5.5,"e":4908}],[-15,{"n":3.5,"e":4926}],[-14,{"n":5.5,"e":4928}],[-13,{"n":4.5,"e":4941}],[-12,{"n":5,"e":4948}],[-11,{"n":6,"e":4966}],[-9,{"n":4.5,"e":4985}],[-8,{"n":5,"e":4988}],[-7,{"n":7,"e":4999}]]}],[377,{"n":"Ngando","f":"Axel","fp":"MO","r":16,"c":101,"s":{"g":1,"s":33.5,"n":6,"a":5.58,"d":0.97,"Sg":1,"Ss":23,"Sn":4,"Sa":5.75,"Sd":1.19,"Og":6,"Os":114.5,"On":21,"Oa":5.45,"Od":0.82,"pm":19,"pa":2},"p":[[2,{"n":5.5,"e":6570,"s":1}],[1,{"n":5,"e":6581,"s":1}],[-27,{"n":6,"e":4798,"g":1}],[-26,{"n":6.5,"e":4817,"g":1}],[-25,{"n":5,"e":4818,"s":1}],[-24,{"n":5,"e":4828}],[-23,{"n":5,"e":4838,"s":1}],[-18,{"n":5,"e":4893}],[-17,{"n":6.5,"e":4898,"g":1}],[-16,{"n":6.5,"e":4908,"g":1}],[-15,{"n":5,"e":4926}],[-13,{"n":5,"e":4941}],[-11,{"n":4.5,"e":4966,"s":1}],[-10,{"n":4.5,"e":4968}],[-9,{"n":5.5,"e":4985}],[-8,{"n":4.5,"e":4988,"s":1}],[-7,{"n":6.5,"e":4999,"g":1,"s":1}],[6,{"n":6.5,"e":6528}],[5,{"n":4.5,"e":6545}],[4,{"n":7,"e":6557,"g":1}],[3,{"n":5,"e":6560,"s":1}]]}],[397,{"n":"Hein","f":"Gauthier","fp":"MO","r":9,"c":101,"s":{"s":18.5,"n":4,"a":4.63,"d":0.48,"Ss":5,"Sn":1,"Sa":5,"Os":123.5,"On":25,"Oa":4.94,"Od":0.56,"pm":7,"pa":18},"p":[[-26,{"n":4.5,"e":4815,"s":1}],[-25,{"n":4.5,"e":4827}],[-23,{"n":4.5,"e":4847}],[-22,{"n":5,"e":4855}],[-21,{"n":6,"e":4867}],[-20,{"n":5,"e":4874}],[-19,{"n":5.5,"e":4887}],[-16,{"n":5.5,"e":4917}],[-15,{"n":5.5,"e":4925}],[-14,{"n":6.5,"e":4937}],[-13,{"n":4.5,"e":4947}],[-12,{"n":4.5,"e":4957,"s":1}],[-11,{"n":4.5,"e":4959,"s":1}],[-10,{"n":5,"e":4977,"s":1}],[-8,{"n":5.5,"e":4997}],[-7,{"n":5,"e":5006,"s":1}],[-27,{"n":4.5,"e":4806,"s":1}],[-24,{"n":4.5,"e":4830,"s":1}],[-18,{"n":5,"e":4897}],[-17,{"n":4.5,"e":4898}],[-9,{"n":5,"e":4978,"s":1}],[6,{"n":5,"e":6528,"s":1}],[3,{"n":4,"e":6560}],[2,{"n":5,"e":6570}],[1,{"n":4.5,"e":6581}]],"fo":[[6570,[{"t":"I"}]]]}],[494,{"n":"Georgen","f":"Alec","fp":"DL","r":6,"c":101,"s":{"s":3.5,"n":1,"a":3.5,"Os":3.5,"On":1,"Oa":3.5,"pd":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[1,{"n":3.5,"e":6581}]]}],[495,{"n":"Lloris","f":"Gautier","fp":"DC","r":2,"c":101,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":17.5,"On":4,"Oa":4.38,"Od":0.63,"pd":4},"p":[[-16,{"n":3.5,"e":3776}],[-5,{"n":4.5,"e":3884}],[5,{"n":4.5,"e":6545}],[4,{"n":5,"e":6557}]]}],[519,{"n":"Arcus","f":"Carlens","fp":"DL","r":13,"c":101,"s":{"s":33,"n":6,"a":5.5,"d":0.89,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.89,"Oao":1,"Os":122.5,"On":24,"Oa":5.1,"Od":0.64,"pd":24},"p":[[-28,{"n":5,"e":4793}],[-27,{"n":5,"e":4798,"a":1}],[-26,{"n":4,"e":4817}],[-24,{"n":5,"e":4828}],[-23,{"n":5,"e":4838}],[-22,{"n":5,"e":4851}],[-21,{"n":5.5,"e":4858}],[-20,{"n":5,"e":4872}],[-19,{"n":5,"e":4878}],[-16,{"n":4.5,"e":4908}],[-15,{"n":5,"e":4926}],[-13,{"n":4,"e":4941}],[-12,{"n":5.5,"e":4948}],[-11,{"n":5,"e":4966}],[-10,{"n":5.5,"e":4968}],[-9,{"n":4.5,"e":4985}],[-8,{"n":5,"e":4988}],[-7,{"n":6,"e":4999}],[6,{"n":5,"e":6528}],[5,{"n":4.5,"e":6545}],[4,{"n":7,"e":6557}],[3,{"n":5,"e":6560}],[2,{"n":6,"e":6570}],[1,{"n":5.5,"e":6581,"s":1}]],"fo":[[6528,[{"t":"Y"}]],[6557,[{"t":"Y"}]]]}],[561,{"n":"Le Bihan","f":"Mickael","fp":"A","r":13,"c":101,"s":{"g":4,"s":30,"n":5,"a":6,"d":1.37,"Sg":4,"Ss":20.5,"Sn":3,"Sa":6.83,"Sd":1.04,"Og":8,"Os":113.5,"On":22,"Oa":5.16,"Od":1.33,"pa":22},"p":[[-28,{"n":3.5,"e":4793}],[-27,{"n":5.5,"e":4798}],[-26,{"n":5,"e":4817,"s":1}],[-25,{"n":4.5,"e":4818}],[-24,{"n":6,"e":4828,"g":1}],[-23,{"n":5,"e":4838}],[-21,{"n":6.5,"e":4858,"g":1}],[-20,{"n":4.5,"e":4872,"s":1}],[-19,{"n":5,"e":4878}],[-18,{"n":4.5,"e":4893}],[-17,{"n":6,"e":4898}],[-16,{"n":6,"e":4908,"g":1,"s":1}],[-14,{"n":4,"e":4928}],[-12,{"n":3.5,"e":4948}],[-11,{"n":4,"e":4966}],[-8,{"n":2.5,"e":4988}],[-7,{"n":7.5,"e":4999,"g":1}],[6,{"n":8,"e":6528,"g":2}],[5,{"n":6,"e":6545,"g":1}],[4,{"n":6.5,"e":6557,"g":1}],[2,{"n":5,"e":6570}],[1,{"n":4.5,"e":6581}]],"fo":[[6528,[{"t":"Y"}]],[6581,[{"t":"Y"}]]]}],[2689,{"n":"Ndom","f":"Aly","fp":"MD","r":9,"c":101,"s":{"s":27,"n":5,"a":5.4,"d":0.42,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":1,"Os":63.5,"On":12,"Oa":5.29,"Od":0.69,"pm":12},"p":[[-28,{"n":4.5,"e":4793}],[-27,{"n":7,"e":4798,"g":1}],[-25,{"n":5,"e":4818,"s":1}],[-23,{"n":4.5,"e":4838}],[-22,{"n":5,"e":4851,"s":1}],[-21,{"n":5,"e":4858,"s":1}],[-20,{"n":5.5,"e":4872,"s":1}],[6,{"n":6,"e":6528,"s":1}],[5,{"n":5.5,"e":6545,"s":1}],[3,{"n":5,"e":6560}],[2,{"n":5.5,"e":6570,"s":1}],[1,{"n":5,"e":6581,"s":1}]]}],[3808,{"n":"Léon","f":"Donovan","fp":"G","r":10,"c":101,"s":{"s":19,"n":4,"a":4.75,"d":1.32,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.76,"Os":30,"On":6,"Oa":5,"Od":1.45,"pg":6},"p":[[-9,{"n":7,"e":3839}],[-8,{"n":4,"e":3853,"s":1}],[6,{"n":5.5,"e":6528}],[5,{"n":4.5,"e":6545}],[4,{"n":6,"e":6557}],[1,{"n":3,"e":6581}]],"fo":[[6581,[{"t":"R"}]]]}],[3813,{"n":"Autret","f":"Mathias","fp":"MO","r":18,"c":101,"s":{"g":1,"s":33,"n":6,"a":5.5,"d":1.7,"Sg":1,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.7,"Og":2,"Os":127.5,"On":25,"Oa":5.1,"Od":0.92,"pm":23,"pa":2},"p":[[-27,{"n":4.5,"e":3660,"s":1}],[-26,{"n":4.5,"e":3673,"s":1}],[-24,{"n":4.5,"e":3696,"s":1}],[-23,{"n":5.5,"e":3698}],[-22,{"n":5,"e":3711,"s":1}],[-18,{"n":5.5,"e":3751,"s":1}],[-17,{"n":4,"e":3758}],[-16,{"n":6,"e":3771,"s":1}],[-15,{"n":4,"e":3779}],[-13,{"n":5,"e":3798}],[-10,{"n":5,"e":3828}],[-7,{"n":5,"e":3859}],[-6,{"n":5.5,"e":3869,"g":1}],[-5,{"n":5,"e":3880}],[-21,{"n":5,"e":3718,"s":1}],[-14,{"n":5.5,"e":3791}],[-12,{"n":5,"e":3808,"s":1}],[-9,{"n":5,"e":3839}],[-8,{"n":5,"e":3853}],[6,{"n":7.5,"e":6528}],[5,{"n":3.5,"e":6545}],[4,{"n":5.5,"e":6557}],[3,{"n":5,"e":6560}],[2,{"n":7.5,"e":6570,"g":1}],[1,{"n":4,"e":6581}]]}],[4859,{"n":"Chergui","f":"Samir Sophian","fp":"MO","r":1,"c":101}],[4923,{"n":"Begraoui","f":"Yanis","fp":"A","r":3,"c":101,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":0.67,"Sg":1,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.67,"Og":1,"Os":31.5,"On":7,"Oa":4.5,"Od":0.87,"pa":7},"p":[[-22,{"n":3,"e":4851}],[-18,{"n":4.5,"e":4893,"s":1}],[6,{"n":4.5,"e":6528,"s":1}],[5,{"n":4.5,"e":6545,"s":1}],[4,{"n":4.5,"e":6557,"s":1}],[3,{"n":4.5,"e":6560,"s":1}],[2,{"n":6,"e":6570,"g":1,"s":1}]]}],[4949,{"n":"Laiton","f":"Sonny","fp":"G","r":7,"c":101,"s":{"s":15,"n":3,"a":5,"Os":15,"On":3,"Oa":5,"pg":3},"p":[[3,{"n":5,"e":6560}],[2,{"n":5,"e":6570}],[1,{"n":5,"e":6581,"s":1}]]}],[4977,{"n":"Merdji","f":"Yanis","fp":"A","r":8,"c":101,"s":{"Os":64.5,"On":15,"Oa":4.3,"Od":0.37,"pa":15},"p":[[-24,{"n":4,"e":4836}],[-22,{"n":4,"e":4853}],[-28,{"n":4,"e":4789,"s":1}],[-27,{"n":4.5,"e":4801,"s":1}],[-26,{"n":4,"e":4808}],[-23,{"n":4.5,"e":4842}],[-21,{"n":4,"e":4867}],[-19,{"n":4.5,"e":4878,"s":1}],[-15,{"n":4,"e":4926}],[-14,{"n":5,"e":4928,"s":1}],[-13,{"n":4,"e":4941,"s":1}],[-12,{"n":4.5,"e":4948,"s":1}],[-11,{"n":5,"e":4966,"s":1}],[-10,{"n":4.5,"e":4968,"s":1}],[-7,{"n":4,"e":4999}]]}],[5004,{"n":"Fortuné","f":"Kévin","fp":"A","r":13,"c":101,"s":{"g":1,"s":30,"n":6,"a":5,"d":0.32,"Sg":1,"Ss":30,"Sn":6,"Sa":5,"Sd":0.32,"Og":1,"Os":30,"On":6,"Oa":5,"Od":0.32,"pm":1,"pa":5},"p":[[6,{"n":5.5,"e":6528,"g":1,"s":1}],[5,{"n":5,"e":6545}],[4,{"n":5,"e":6557}],[3,{"n":4.5,"e":6560}],[2,{"n":5,"e":6570}],[1,{"n":5,"e":6581,"s":1}]]}],[5070,{"n":"Boto","f":"Kenji-Van","fp":"DL","r":9,"c":101,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":48,"On":10,"Oa":4.8,"Od":0.35,"pd":10},"p":[[-28,{"n":5,"e":4793,"s":1}],[-25,{"n":5,"e":4818}],[-24,{"n":4.5,"e":4828}],[-19,{"n":5,"e":4878,"s":1}],[-15,{"n":4,"e":4926,"s":1}],[-14,{"n":5,"e":4928,"s":1}],[-7,{"n":5,"e":4999}],[3,{"n":5,"e":6560,"s":1}],[2,{"n":5,"e":6570}],[1,{"n":4.5,"e":6581}]],"fo":[[6570,[{"t":"Y"}]]]}],[5102,{"n":"Ba","f":"Abdoul","fp":"DC","r":1,"c":101}],[5109,{"n":"Sakhi","f":"Hamza","fp":"MO","r":14,"c":101,"s":{"s":33,"n":6,"a":5.5,"d":1.26,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.26,"Og":2,"Os":138.5,"On":25,"Oa":5.54,"Od":1.01,"pm":23,"pa":2},"p":[[-28,{"n":4,"e":4793}],[-26,{"n":6,"e":4817}],[-25,{"n":4.5,"e":4818}],[-24,{"n":7.5,"e":4828,"g":2}],[-23,{"n":5.5,"e":4838}],[-22,{"n":6,"e":4851}],[-21,{"n":8,"e":4858}],[-20,{"n":6,"e":4872}],[-19,{"n":5.5,"e":4878}],[-17,{"n":5.5,"e":4898,"s":1}],[-16,{"n":4.5,"e":4908}],[-15,{"n":5.5,"e":4926,"s":1}],[-14,{"n":5,"e":4928}],[-13,{"n":6,"e":4941}],[-12,{"n":5.5,"e":4948}],[-11,{"n":5,"e":4966,"s":1}],[-10,{"n":5,"e":4968,"s":1}],[-9,{"n":5,"e":4985}],[-8,{"n":5.5,"e":4988,"s":1}],[6,{"n":7,"e":6528}],[5,{"n":4,"e":6545}],[4,{"n":5.5,"e":6557}],[3,{"n":5,"e":6560}],[2,{"n":7,"e":6570}],[1,{"n":4.5,"e":6581}]],"fo":[[6545,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":22,"n":5}}],[5121,{"n":"Ji Xiaoxuan","f":"","fp":"A","r":1,"c":101}],[5137,{"n":"Touré","f":"Birama","fp":"MD","r":14,"c":101,"s":{"s":16.5,"n":3,"a":5.5,"d":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Os":117.5,"On":22,"Oa":5.34,"Od":0.73,"pm":22},"p":[[-28,{"n":5,"e":4793}],[-26,{"n":4.5,"e":4817}],[-25,{"n":6,"e":4818}],[-24,{"n":4.5,"e":4828}],[-22,{"n":5,"e":4851}],[-21,{"n":4.5,"e":4858}],[-20,{"n":5.5,"e":4872}],[-19,{"n":5.5,"e":4878}],[-18,{"n":4,"e":4893}],[-17,{"n":6,"e":4898}],[-16,{"n":6,"e":4908}],[-14,{"n":6,"e":4928}],[-13,{"n":4.5,"e":4941}],[-12,{"n":6,"e":4948}],[-11,{"n":5.5,"e":4966}],[-10,{"n":6,"e":4968}],[-9,{"n":4.5,"e":4985}],[-8,{"n":6,"e":4988}],[-7,{"n":6,"e":4999}],[6,{"n":6.5,"e":6528}],[2,{"n":5.5,"e":6570}],[1,{"n":4.5,"e":6581}]],"fo":[[6528,[{"t":"Y"}]],[6581,[{"t":"Y"}]]]}],[5155,{"n":"Bernard","f":"Quentin","fp":"DL","r":10,"c":101,"s":{"s":28.5,"n":6,"a":4.75,"d":1.21,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":1.21,"Og":1,"Os":135,"On":28,"Oa":4.82,"Od":0.72,"pd":28},"p":[[-28,{"n":4.5,"e":4793}],[-27,{"n":5,"e":4798}],[-26,{"n":4,"e":4817}],[-25,{"n":4.5,"e":4818}],[-24,{"n":5.5,"e":4828,"s":1}],[-23,{"n":6,"e":4838}],[-22,{"n":5,"e":4851}],[-21,{"n":4.5,"e":4858}],[-20,{"n":5,"e":4872}],[-19,{"n":4.5,"e":4878}],[-18,{"n":4,"e":4893}],[-17,{"n":5,"e":4898}],[-16,{"n":4,"e":4908}],[-15,{"n":5,"e":4926}],[-14,{"n":4.5,"e":4928}],[-13,{"n":4.5,"e":4941}],[-12,{"n":4.5,"e":4948}],[-11,{"n":5,"e":4966}],[-10,{"n":6,"e":4968}],[-9,{"n":5,"e":4985,"g":1}],[-8,{"n":5,"e":4988}],[-7,{"n":5.5,"e":4999}],[6,{"n":6.5,"e":6528}],[5,{"n":4,"e":6545}],[4,{"n":5,"e":6557}],[3,{"n":4.5,"e":6560}],[2,{"n":5.5,"e":6570}],[1,{"n":3,"e":6581}]]}],[5171,{"n":"Dugimont","f":"Rémy","fp":"A","r":8,"c":101,"s":{"g":2,"s":21.5,"n":4,"a":5.38,"d":2.1,"Sg":2,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":2.1,"Og":6,"Os":135,"On":25,"Oa":5.4,"Od":1.13,"pm":11,"pa":14},"p":[[-28,{"n":4.5,"e":4793,"s":1}],[-27,{"n":5,"e":4798,"s":1}],[-26,{"n":5,"e":4817}],[-25,{"n":5,"e":4818}],[-24,{"n":4,"e":4828,"s":1}],[-23,{"n":5,"e":4838}],[-22,{"n":6,"e":4851}],[-21,{"n":7,"e":4858,"g":1}],[-20,{"n":5,"e":4872}],[-19,{"n":4.5,"e":4878,"s":1}],[-18,{"n":5,"e":4893}],[-17,{"n":4.5,"e":4898,"s":1}],[-16,{"n":5.5,"e":4908}],[-15,{"n":5,"e":4926}],[-14,{"n":7,"e":4928,"g":1}],[-13,{"n":5.5,"e":4941}],[-12,{"n":4.5,"e":4948,"s":1}],[-11,{"n":6,"e":4966}],[-10,{"n":6,"e":4968}],[-9,{"n":6,"e":4985,"g":1,"s":1}],[-7,{"n":7.5,"e":4999,"g":1,"s":1}],[6,{"n":8.5,"e":6528,"g":2}],[5,{"n":4.5,"e":6545,"s":1}],[4,{"n":4,"e":6557,"s":1}],[3,{"n":4.5,"e":6560,"s":1}]]}],[5192,{"n":"Souprayen","f":"Samuel","fp":"DC","r":10,"c":101,"s":{"Os":80.5,"On":16,"Oa":5.03,"Od":0.56,"pd":16},"p":[[-28,{"n":5,"e":4793}],[-27,{"n":5.5,"e":4798}],[-26,{"n":4,"e":4817}],[-25,{"n":5,"e":4818}],[-24,{"n":5.5,"e":4828}],[-23,{"n":5.5,"e":4838}],[-22,{"n":4.5,"e":4851}],[-18,{"n":5,"e":4893}],[-17,{"n":5.5,"e":4898}],[-15,{"n":4.5,"e":4926}],[-14,{"n":5,"e":4928}],[-13,{"n":5,"e":4941,"s":1}],[-12,{"n":5.5,"e":4948}],[-10,{"n":6,"e":4968}],[-9,{"n":5,"e":4985}],[-8,{"n":4,"e":4988}]]}],[5369,{"n":"Camara","f":"Ousoumane","fp":"MD","r":4,"c":101,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[1,{"n":4.5,"e":6581}]]}],[5378,{"n":"Coeff","f":"Alexandre","fp":"DC","r":12,"c":101,"s":{"s":32,"n":6,"a":5.33,"d":0.88,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.88,"Oao":1,"Os":132.5,"On":26,"Oa":5.1,"Od":0.74,"pd":23,"pm":3},"p":[[-28,{"n":4,"e":4793}],[-27,{"n":5.5,"e":4798}],[-26,{"n":4,"e":4817}],[-25,{"n":6,"e":4818}],[-24,{"n":4.5,"e":4828,"a":1}],[-23,{"n":5.5,"e":4838}],[-22,{"n":5,"e":4851}],[-21,{"n":5.5,"e":4858}],[-20,{"n":6,"e":4872}],[-19,{"n":6,"e":4878}],[-18,{"n":4.5,"e":4893}],[-17,{"n":5,"e":4898}],[-16,{"n":4.5,"e":4908}],[-15,{"n":4.5,"e":4926}],[-14,{"n":4,"e":4928}],[-13,{"n":6,"e":4941}],[-11,{"n":5.5,"e":4966}],[-9,{"n":5,"e":4985}],[-8,{"n":4.5,"e":4988}],[-7,{"n":5,"e":4999}],[6,{"n":6,"e":6528}],[5,{"n":6,"e":6545}],[4,{"n":6,"e":6557}],[3,{"n":4.5,"e":6560}],[2,{"n":5.5,"e":6570}],[1,{"n":4,"e":6581}]]}],[5379,{"n":"Sorgic","f":"Dejan","fp":"A","r":5,"c":101,"s":{"s":3.5,"n":1,"a":3.5,"Og":1,"Os":50.5,"On":11,"Oa":4.59,"Od":0.66,"pa":11},"p":[[-28,{"n":4.5,"e":4793,"s":1}],[-27,{"n":4.5,"e":4798,"s":1}],[-20,{"n":6,"e":4872,"g":1}],[-18,{"n":4.5,"e":4893,"s":1}],[-17,{"n":4.5,"e":4898,"s":1}],[-16,{"n":4,"e":4908,"s":1}],[-15,{"n":4.5,"e":4926,"s":1}],[-14,{"n":4.5,"e":4928,"s":1}],[-13,{"n":4.5,"e":4941,"s":1}],[-9,{"n":5.5,"e":4985,"s":1}],[3,{"n":3.5,"e":6560}]]}],[6508,{"n":"Sinayoko","f":"Lassine","fp":"A","r":1,"c":101}],[6872,{"n":"Chapelle","f":"Kryss","fp":"MO","r":1,"c":101}],[6873,{"n":"Ponti","f":"Ryan","fp":"MO","r":1,"c":101}],[7202,{"n":"Jubal","f":"","fp":"DC","r":7,"c":101,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":20,"Sn":4,"Sa":5,"Sd":0.41,"Os":20,"On":4,"Oa":5,"Od":0.41,"pd":4},"p":[[6,{"n":5.5,"e":6528}],[5,{"n":4.5,"e":6545}],[4,{"n":5,"e":6557}],[3,{"n":5,"e":6560}]]}],[78,{"n":"Oniangué","f":"Prince","fp":"MD","r":17,"c":5,"s":{"s":34,"n":6,"a":5.67,"d":0.82,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":5,"Os":146,"On":27,"Oa":5.41,"Od":0.96,"pm":27},"p":[[5,{"n":4.5,"e":6547}],[4,{"n":6,"e":6548}],[3,{"n":7,"e":6564}],[1,{"n":5.5,"e":6583}],[-28,{"n":4.5,"e":4790}],[-27,{"n":6,"e":4799}],[-26,{"n":8,"e":4814,"g":2}],[-25,{"n":5,"e":4819}],[-24,{"n":7,"e":4832,"g":1}],[-23,{"n":6,"e":4839}],[-22,{"n":4.5,"e":4849}],[-20,{"n":5,"e":4873}],[-19,{"n":5,"e":4879}],[-18,{"n":4.5,"e":4895}],[-17,{"n":6,"e":4904}],[-16,{"n":4.5,"e":4911}],[-13,{"n":5,"e":4939}],[-10,{"n":6,"e":4969,"g":1}],[-9,{"n":4.5,"e":4981}],[-8,{"n":5,"e":4989,"s":1}],[-21,{"n":5,"e":4859}],[-15,{"n":3.5,"e":4919}],[-14,{"n":6,"e":4928,"g":1}],[-12,{"n":6,"e":4954}],[-11,{"n":5,"e":4959}],[6,{"n":5.5,"e":6529}],[2,{"n":5.5,"e":6568}]]}],[162,{"n":"Riou","f":"Rémy","fp":"G","r":17,"c":5,"s":{"s":36.5,"n":6,"a":6.08,"d":0.8,"Ss":36.5,"Sn":6,"Sa":6.08,"Sd":0.8,"Os":151,"On":28,"Oa":5.39,"Od":0.85,"pg":28},"p":[[-7,{"n":5.5,"e":5007}],[-28,{"n":5,"e":4790}],[-27,{"n":6,"e":4799}],[-26,{"n":4.5,"e":4814}],[-25,{"n":5.5,"e":4819}],[-24,{"n":5.5,"e":4832}],[-23,{"n":4,"e":4839}],[-22,{"n":6,"e":4849}],[-21,{"n":6,"e":4859}],[-20,{"n":6,"e":4873}],[-19,{"n":5.5,"e":4879}],[-18,{"n":4.5,"e":4895}],[-17,{"n":6.5,"e":4904}],[-16,{"n":4,"e":4911}],[-15,{"n":4.5,"e":4919}],[-14,{"n":4,"e":4928}],[-13,{"n":6,"e":4939}],[-12,{"n":5,"e":4954}],[-11,{"n":5.5,"e":4959}],[-10,{"n":5.5,"e":4969}],[-9,{"n":5.5,"e":4981}],[-8,{"n":4,"e":4989}],[6,{"n":7.5,"e":6529}],[5,{"n":5,"e":6547}],[4,{"n":6,"e":6548}],[3,{"n":6,"e":6564}],[2,{"n":6,"e":6568}],[1,{"n":6,"e":6583}]]}],[172,{"n":"Bammou","f":"Yacine","fp":"A","r":18,"c":5,"s":{"g":2,"s":24,"n":5,"a":4.8,"d":1.15,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":24,"On":5,"Oa":4.8,"Od":1.15,"pa":5},"p":[[6,{"n":4.5,"e":6529}],[4,{"n":3,"e":6548}],[3,{"n":6,"e":6564,"g":1}],[2,{"n":5.5,"e":6568,"g":1}],[1,{"n":5,"e":6583}]],"fo":[[6548,[{"t":"Y"},{"t":"O"}]],[6564,[{"t":"Y"}]]]}],[182,{"n":"Yago","f":"Steeve","fp":"DC","r":12,"c":5,"s":{"s":32.5,"n":6,"a":5.42,"d":0.58,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.58,"Os":102.5,"On":21,"Oa":4.88,"Od":0.67,"pd":21},"p":[[-24,{"n":4,"e":4832}],[-23,{"n":4.5,"e":4839}],[-22,{"n":6,"e":4849}],[-21,{"n":4.5,"e":4859}],[-20,{"n":4,"e":4873}],[-19,{"n":5,"e":4879}],[-17,{"n":5.5,"e":4904}],[-15,{"n":4,"e":4919}],[-14,{"n":4.5,"e":4928}],[-13,{"n":4.5,"e":4939}],[-12,{"n":4.5,"e":4954}],[-11,{"n":5,"e":4959}],[-10,{"n":5,"e":4969}],[-9,{"n":5,"e":4981}],[-8,{"n":4,"e":4989}],[6,{"n":5,"e":6529,"s":1}],[5,{"n":4.5,"e":6547}],[4,{"n":5.5,"e":6548}],[3,{"n":6,"e":6564}],[2,{"n":6,"e":6568}],[1,{"n":5.5,"e":6583}]]}],[311,{"n":"Pi","f":"Jessy","fp":"MD","r":10,"c":5,"s":{"s":10,"n":2,"a":5,"Og":5,"Os":94.5,"On":17,"Oa":5.56,"Od":0.75,"pm":17},"p":[[-27,{"n":7,"e":4799,"g":1}],[-26,{"n":5,"e":4814,"s":1}],[-25,{"n":5.5,"e":4819}],[-23,{"n":6,"e":4839,"g":1}],[-22,{"n":5.5,"e":4849}],[-20,{"n":6,"e":4873,"g":1}],[-18,{"n":5,"e":4895}],[-17,{"n":5.5,"e":4904}],[-16,{"n":5.5,"e":4911,"s":1}],[-15,{"n":5.5,"e":4919}],[-14,{"n":5,"e":4928}],[-13,{"n":7,"e":4939,"g":1}],[-12,{"n":6,"e":4954,"g":1}],[-11,{"n":6,"e":4959}],[-8,{"n":4,"e":4989}],[5,{"n":5,"e":6547,"s":1}],[4,{"n":5,"e":6548,"s":1}]]}],[322,{"n":"Jeannot","f":"Benjamin","fp":"A","r":8,"c":5,"s":{"s":24,"n":5,"a":4.8,"d":0.67,"Og":2,"Os":83,"On":19,"Oa":4.37,"Od":0.93,"pa":19},"p":[[-24,{"n":4,"e":4832}],[-23,{"n":7,"e":4839,"g":2,"s":1}],[-21,{"n":2.5,"e":4859}],[-20,{"n":4.5,"e":4873,"s":1}],[-19,{"n":3.5,"e":4879}],[-18,{"n":4.5,"e":4895}],[-17,{"n":4.5,"e":4904,"s":1}],[-16,{"n":4.5,"e":4911}],[-15,{"n":4,"e":4919,"s":1}],[-11,{"n":3.5,"e":4959}],[-10,{"n":4,"e":4969}],[-9,{"n":4,"e":4981}],[-8,{"n":4.5,"e":4989}],[-7,{"n":4,"e":5007}],[5,{"n":4.5,"e":6547,"s":1}],[4,{"n":4.5,"e":6548,"s":1}],[3,{"n":6,"e":6564,"s":1}],[2,{"n":4.5,"e":6568,"s":1}],[1,{"n":4.5,"e":6583,"s":1}]],"fo":[[6564,[{"t":"Y"}]]]}],[335,{"n":"Rivierez","f":"Jonathan","fp":"DL","r":13,"c":5,"s":{"s":32.5,"n":6,"a":5.42,"d":0.38,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.38,"Oao":1,"Os":140,"On":28,"Oa":5,"Od":0.62,"pd":28},"p":[[-28,{"n":4.5,"e":4790}],[-27,{"n":6,"e":4799}],[-26,{"n":5,"e":4814}],[-25,{"n":4.5,"e":4819}],[-24,{"n":6,"e":4832}],[-23,{"n":4,"e":4839}],[-22,{"n":5.5,"e":4849}],[-21,{"n":5.5,"e":4859}],[-20,{"n":5,"e":4873}],[-19,{"n":5,"e":4879}],[-18,{"n":4.5,"e":4895}],[-17,{"n":5.5,"e":4904}],[-16,{"n":4.5,"e":4911}],[-15,{"n":4,"e":4919}],[-14,{"n":5,"e":4928}],[-13,{"n":5.5,"e":4939}],[-12,{"n":5,"e":4954}],[-11,{"n":5,"e":4959}],[-10,{"n":4.5,"e":4969}],[-9,{"n":5,"e":4981}],[-8,{"n":3.5,"e":4989,"a":1}],[-7,{"n":4.5,"e":5007}],[6,{"n":6,"e":6529}],[5,{"n":5,"e":6547}],[4,{"n":5.5,"e":6548}],[3,{"n":5.5,"e":6564}],[2,{"n":5.5,"e":6568}],[1,{"n":5,"e":6583}]]}],[1223,{"n":"Mbengue","f":"Adama","fp":"DL","r":7,"c":5,"s":{"Og":1,"Os":77,"On":15,"Oa":5.13,"Od":0.81,"pd":14,"pm":1},"p":[[-28,{"n":4.5,"e":4790}],[-27,{"n":5.5,"e":4799}],[-26,{"n":5,"e":4814}],[-25,{"n":5,"e":4819,"s":1}],[-23,{"n":4.5,"e":4839,"s":1}],[-21,{"n":5,"e":4859}],[-20,{"n":4,"e":4873}],[-19,{"n":6,"e":4879}],[-18,{"n":7,"e":4895,"g":1}],[-17,{"n":6.5,"e":4904}],[-16,{"n":5,"e":4911}],[-13,{"n":5,"e":4939}],[-12,{"n":4.5,"e":4954,"s":1}],[-11,{"n":5,"e":4959,"s":1}],[-9,{"n":4.5,"e":4981}]]}],[1431,{"n":"Gonçalves","f":"Anthony","fp":"MD","r":13,"c":5,"s":{"s":32,"n":6,"a":5.33,"d":0.98,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.98,"Og":1,"Os":116,"On":22,"Oa":5.27,"Od":0.87,"pd":2,"pm":20},"p":[[-28,{"n":5.5,"e":4790}],[-26,{"n":5.5,"e":4814}],[-24,{"n":5.5,"e":4832}],[-23,{"n":5,"e":4839,"s":1}],[-22,{"n":6,"e":4849}],[-21,{"n":5,"e":4859,"s":1}],[-18,{"n":4.5,"e":4895}],[-17,{"n":6,"e":4904}],[-16,{"n":5.5,"e":4911}],[-15,{"n":6,"e":4919}],[-14,{"n":5.5,"e":4928}],[-13,{"n":5,"e":4939}],[-12,{"n":7,"e":4954,"g":1}],[-9,{"n":3.5,"e":4981}],[-8,{"n":4.5,"e":4989}],[-7,{"n":4,"e":5007}],[6,{"n":5,"e":6529,"s":1}],[5,{"n":4,"e":6547}],[4,{"n":5,"e":6548}],[3,{"n":7,"e":6564}],[2,{"n":5.5,"e":6568}],[1,{"n":5.5,"e":6583,"s":1}]],"fo":[[6547,[{"t":"Y"}]],[6548,[{"t":"Y"}]]]}],[1451,{"n":"Zelazny","f":"Erwin","fp":"G","r":1,"c":5}],[2045,{"n":"Deminguet","f":"Jessy","fp":"MO","r":18,"c":5,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.04,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.04,"Og":5,"Os":137.5,"On":25,"Oa":5.5,"Od":1.04,"pm":25},"p":[[-28,{"n":4.5,"e":4790}],[-27,{"n":6,"e":4799}],[-26,{"n":6,"e":4814}],[-25,{"n":5.5,"e":4819}],[-24,{"n":5.5,"e":4832}],[-23,{"n":7,"e":4839,"g":1}],[-22,{"n":5,"e":4849}],[-21,{"n":5.5,"e":4859}],[-20,{"n":6.5,"e":4873}],[-18,{"n":4,"e":4895}],[-17,{"n":6.5,"e":4904}],[-16,{"n":5,"e":4911}],[-15,{"n":8.5,"e":4919,"g":3}],[-14,{"n":6,"e":4928}],[-13,{"n":4.5,"e":4939,"s":1}],[-11,{"n":5.5,"e":4959}],[-10,{"n":5,"e":4969}],[-9,{"n":5,"e":4981}],[-7,{"n":4.5,"e":5007}],[6,{"n":5.5,"e":6529}],[5,{"n":4,"e":6547}],[4,{"n":4.5,"e":6548}],[3,{"n":7,"e":6564,"g":1}],[2,{"n":5.5,"e":6568}],[1,{"n":5,"e":6583}]],"fo":[[6547,[{"t":"Y"}]],[6548,[{"t":"Y"}]]]}],[2078,{"n":"Armougom","f":"Yoel","fp":"DL","r":10,"c":5,"s":{"s":32,"n":6,"a":5.33,"d":0.52,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.52,"Os":112,"On":22,"Oa":5.09,"Od":0.8,"pd":15,"pm":7},"p":[[-25,{"n":5,"e":4819}],[-24,{"n":4,"e":4832}],[-21,{"n":5.5,"e":4859}],[-20,{"n":5.5,"e":4873,"s":1}],[-19,{"n":5,"e":4879}],[-18,{"n":3.5,"e":4895,"s":1}],[-17,{"n":5,"e":4904,"s":1}],[-16,{"n":4.5,"e":4911}],[-15,{"n":6,"e":4919,"s":1}],[-14,{"n":5,"e":4928,"s":1}],[-13,{"n":5.5,"e":4939,"s":1}],[-12,{"n":5,"e":4954}],[-11,{"n":5.5,"e":4959}],[-10,{"n":7,"e":4969}],[-8,{"n":4,"e":4989}],[-7,{"n":4,"e":5007}],[6,{"n":5.5,"e":6529}],[5,{"n":5,"e":6547}],[4,{"n":4.5,"e":6548}],[3,{"n":6,"e":6564}],[2,{"n":5.5,"e":6568}],[1,{"n":5.5,"e":6583}]]}],[2086,{"n":"Ngom","f":"Santy","fp":"A","r":1,"c":5,"s":{"Os":13.5,"On":3,"Oa":4.5,"pa":3},"p":[[-11,{"n":4.5,"e":4959,"s":1}],[-9,{"n":4.5,"e":4981,"s":1}],[-8,{"n":4.5,"e":4989,"s":1}]]}],[2632,{"n":"Callens","f":"Thomas","fp":"G","r":7,"c":5}],[3503,{"n":"Kyeremeh","f":"Godson","fp":"MD","r":1,"c":5}],[3504,{"n":"Tutu","f":"Brice","fp":"A","r":1,"c":5}],[3505,{"n":"Toufiqui","f":"Azzeddine","fp":"MD","r":1,"c":5,"s":{"Os":9,"On":2,"Oa":4.5,"pm":2},"p":[[-8,{"n":4.5,"e":4989}],[-7,{"n":4.5,"e":5007}]]}],[3524,{"n":"Moussaki","f":"Herman","fp":"A","r":3,"c":5,"s":{"Os":34.5,"On":8,"Oa":4.31,"Od":0.59,"pm":1,"pa":7},"p":[[-28,{"n":4.5,"e":4790,"s":1}],[-27,{"n":4.5,"e":4799,"s":1}],[-26,{"n":5,"e":4814,"s":1}],[-23,{"n":4.5,"e":4839}],[-21,{"n":4.5,"e":4859,"s":1}],[-14,{"n":4,"e":4928,"s":1}],[-13,{"n":4.5,"e":4939,"s":1}],[-7,{"n":3,"e":5007}]]}],[3817,{"n":"Court","f":"Yoann","fp":"MO","r":13,"c":5,"s":{"s":10,"n":2,"a":5,"d":1.41,"Ss":10,"Sn":2,"Sa":5,"Sd":1.41,"Og":3,"Os":114,"On":21,"Oa":5.43,"Od":1.23,"pm":18,"pa":3},"p":[[-28,{"n":4.5,"e":3654}],[-25,{"n":5,"e":3680,"s":1}],[-20,{"n":7,"e":3737,"g":1}],[-19,{"n":5,"e":3741,"s":1}],[-11,{"n":7,"e":3818}],[-27,{"n":5,"e":3660,"s":1}],[-26,{"n":5,"e":3673}],[-24,{"n":5.5,"e":3696}],[-23,{"n":4.5,"e":3698,"s":1}],[-22,{"n":4,"e":3711}],[-21,{"n":5,"e":3718}],[-18,{"n":5,"e":3751,"s":1}],[-13,{"n":7,"e":3798}],[-12,{"n":5,"e":3808}],[-9,{"n":7,"e":3839}],[-8,{"n":3,"e":3853}],[-7,{"n":7.5,"e":3859,"g":2}],[-6,{"n":7,"e":3869}],[6,{"n":6,"e":6529}],[-5,{"n":5,"e":3880}],[5,{"n":4,"e":6547}]]}],[3820,{"n":"Weber","f":"Anthony","fp":"DC","r":17,"c":5,"s":{"s":33.5,"n":6,"a":5.58,"d":0.58,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.58,"Os":137.5,"On":26,"Oa":5.29,"Od":0.97,"pd":26},"p":[[-28,{"n":5.5,"e":4790}],[-27,{"n":7.5,"e":4799}],[-26,{"n":6,"e":4814}],[-25,{"n":4.5,"e":4819}],[-24,{"n":6,"e":4832}],[-23,{"n":4.5,"e":4839}],[-22,{"n":5.5,"e":4849}],[-21,{"n":5.5,"e":4859}],[-20,{"n":3.5,"e":4873}],[-19,{"n":5.5,"e":4879}],[-17,{"n":6,"e":4904}],[-16,{"n":5,"e":4911}],[-15,{"n":4,"e":4919}],[-14,{"n":5,"e":4928}],[-13,{"n":6,"e":4939}],[-12,{"n":5,"e":4954}],[-11,{"n":6,"e":4959}],[-10,{"n":6,"e":4969}],[-9,{"n":4,"e":4981}],[-8,{"n":3,"e":4989}],[6,{"n":6,"e":6529}],[5,{"n":4.5,"e":6547}],[4,{"n":5.5,"e":6548}],[3,{"n":6,"e":6564}],[2,{"n":6,"e":6568}],[1,{"n":5.5,"e":6583}]],"fo":[[6548,[{"t":"Y"}]],[6564,[{"t":"Y"}]]]}],[4882,{"n":"Zady Sery","f":"Caleb","fp":"A","r":8,"c":5,"s":{"Og":1,"Os":93,"On":17,"Oa":5.47,"Od":1.32,"pm":14,"pa":3},"p":[[-28,{"n":5,"e":4790}],[-27,{"n":7,"e":4799}],[-26,{"n":7.5,"e":4814}],[-25,{"n":4,"e":4819}],[-22,{"n":7,"e":4849,"g":1}],[-20,{"n":4.5,"e":4873,"s":1}],[-19,{"n":5,"e":4879,"s":1}],[-18,{"n":4,"e":4895}],[-17,{"n":5.5,"e":4904}],[-16,{"n":3.5,"e":4911}],[-15,{"n":7.5,"e":4919}],[-14,{"n":5,"e":4928}],[-13,{"n":6,"e":4939}],[-12,{"n":7,"e":4954}],[-11,{"n":5,"e":4959}],[-10,{"n":5.5,"e":4969}],[-9,{"n":4,"e":4981}]]}],[5037,{"n":"Issoko","f":"Arnold","fp":"DC","r":1,"c":5,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-10,{"n":5,"e":4969,"s":1}]]}],[5353,{"n":"Vandermersch","f":"Hugo","fp":"DL","r":9,"c":5,"s":{"s":30,"n":6,"a":5,"d":0.32,"Ss":30,"Sn":6,"Sa":5,"Sd":0.32,"Os":110,"On":23,"Oa":4.78,"Od":0.85,"pd":22,"pm":1},"p":[[-28,{"n":5,"e":4790}],[-27,{"n":6,"e":4799}],[-26,{"n":4,"e":4814}],[-25,{"n":5,"e":4819}],[-24,{"n":4.5,"e":4832,"s":1}],[-23,{"n":3.5,"e":4839}],[-22,{"n":5.5,"e":4849}],[-20,{"n":5,"e":4873}],[-19,{"n":5.5,"e":4879,"s":1}],[-18,{"n":3,"e":4895}],[-16,{"n":4.5,"e":4911}],[-15,{"n":3,"e":4919}],[-14,{"n":4.5,"e":4928}],[-13,{"n":4.5,"e":4939}],[-12,{"n":6.5,"e":4954}],[-11,{"n":5.5,"e":4959}],[-10,{"n":4.5,"e":4969}],[6,{"n":5.5,"e":6529}],[5,{"n":5,"e":6547,"s":1}],[4,{"n":5,"e":6548,"s":1}],[3,{"n":5,"e":6564,"s":1}],[2,{"n":5,"e":6568,"s":1}],[1,{"n":4.5,"e":6583,"s":1}]],"fo":[[6529,[{"t":"I"},{"t":"Y"}]]]}],[6272,{"n":"Gioacchini","f":"Nicholas","fp":"A","r":12,"c":5,"s":{"g":2,"s":30.5,"n":6,"a":5.08,"d":1.59,"Sg":2,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":1.59,"Og":4,"Os":113,"On":22,"Oa":5.14,"Od":1.05,"pm":5,"pa":17},"p":[[-28,{"n":4.5,"e":4790}],[-27,{"n":6,"e":4799}],[-26,{"n":5,"e":4814}],[-25,{"n":5.5,"e":4819}],[-24,{"n":5,"e":4832}],[-23,{"n":6,"e":4839}],[-21,{"n":5.5,"e":4859}],[-20,{"n":4.5,"e":4873}],[-19,{"n":5.5,"e":4879}],[-18,{"n":4.5,"e":4895,"s":1}],[-17,{"n":6.5,"e":4904,"g":1}],[-16,{"n":4.5,"e":4911,"s":1}],[-15,{"n":3.5,"e":4919}],[-14,{"n":4.5,"e":4928}],[-13,{"n":5,"e":4939}],[-12,{"n":6.5,"e":4954,"g":1}],[6,{"n":7,"e":6529,"g":1}],[5,{"n":3.5,"e":6547}],[4,{"n":3.5,"e":6548}],[3,{"n":7,"e":6564,"g":1}],[2,{"n":4.5,"e":6568}],[1,{"n":5,"e":6583}]]}],[6277,{"n":"Beka Beka","f":"Alexis","fp":"MD","r":6,"c":5,"s":{"s":5,"n":1,"a":5,"Os":27.5,"On":6,"Oa":4.58,"Od":0.58,"pd":2,"pm":4},"p":[[-27,{"n":4,"e":4799,"s":1}],[-25,{"n":4.5,"e":4819,"s":1}],[-24,{"n":4.5,"e":4832}],[-21,{"n":5.5,"e":4859}],[-19,{"n":4,"e":4879}],[1,{"n":5,"e":6583}]],"fo":[[6583,[{"t":"I"}]]]}],[6328,{"n":"Wa Saka","f":"Kelian Nsona","fp":"MO","r":10,"c":5,"s":{"s":31,"n":6,"a":5.17,"d":0.68,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.68,"Os":50,"On":10,"Oa":5,"Od":0.58,"pm":5,"pa":5},"p":[[-27,{"n":5,"e":4799,"s":1}],[-20,{"n":5,"e":4873}],[-19,{"n":4.5,"e":4879}],[-18,{"n":4.5,"e":4895,"s":1}],[6,{"n":5.5,"e":6529}],[5,{"n":4,"e":6547}],[4,{"n":5,"e":6548}],[3,{"n":6,"e":6564}],[2,{"n":5.5,"e":6568}],[1,{"n":5,"e":6583}]]}],[6724,{"n":"Golitin","f":"Marvin","fp":"G","r":1,"c":5}],[6829,{"n":"Jabbari","f":"Ayoub","fp":"A","r":1,"c":5}],[6830,{"n":"Hervieu","f":"Loup","fp":"MD","r":3,"c":5,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pm":3},"p":[[5,{"n":4.5,"e":6547,"s":1}],[3,{"n":5,"e":6564,"s":1}],[2,{"n":5,"e":6568,"s":1}]]}],[6832,{"n":"Fouda","f":"Aloys","fp":"DL","r":1,"c":5}],[6839,{"n":"Ngouabi Lougagui","f":"Jason","fp":"DC","r":1,"c":5,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[4,{"n":5,"e":6548,"s":1}]]}],[6840,{"n":"Lepenant","f":"Johann","fp":"MD","r":1,"c":5,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[6,{"n":5,"e":6529,"s":1}],[3,{"n":5,"e":6564,"s":1}]]}],[6841,{"n":"Malumandsoko","f":"Pathy","fp":"DC","r":1,"c":5}],[6874,{"n":"Traore","f":"Aliou Badara","fp":"MO","r":5,"c":5,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[2,{"n":5,"e":6568,"s":1}],[1,{"n":5,"e":6583,"s":1}]]}],[7241,{"n":"Inoussa","f":"Zeidane","fp":"MO","r":3,"c":5,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[5,{"n":5,"e":6547,"s":1}],[4,{"n":5,"e":6548,"s":1}]]}],[350,{"n":"Martin","f":"Marvin","fp":"MO","r":7,"c":90,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":37,"On":8,"Oa":4.63,"Od":0.44,"pm":6,"pa":2},"p":[[2,{"n":4.5,"e":6574}],[1,{"n":5,"e":6582,"s":1}],[-26,{"n":4.5,"e":4809,"s":1}],[-15,{"n":5,"e":4927,"s":1}],[-11,{"n":5,"e":4960}],[-16,{"n":5,"e":4909,"s":1}],[-10,{"n":4,"e":4971}],[-9,{"n":4,"e":4979}]]}],[534,{"n":"Callegari","f":"Lorenzo","fp":"MD","r":7,"c":90,"s":{"s":8,"n":2,"a":4,"d":0.71,"Os":8,"On":2,"Oa":4,"Od":0.71,"pm":2},"p":[[3,{"n":4.5,"e":6561,"s":1}],[1,{"n":3.5,"e":6582}]]}],[1220,{"n":"Gonzalez","f":"Oumar","fp":"DC","r":9,"c":90,"s":{"Og":1,"Os":74.5,"On":15,"Oa":4.97,"Od":1.2,"pd":15},"p":[[-23,{"n":7,"e":4846,"g":1}],[-21,{"n":6,"e":4861}],[-19,{"n":6,"e":4885}],[-12,{"n":4.5,"e":4955}],[-8,{"n":3,"e":4993}],[-28,{"n":3.5,"e":4789}],[-26,{"n":5.5,"e":4809}],[-25,{"n":5.5,"e":4818}],[-24,{"n":5,"e":4829}],[-22,{"n":4.5,"e":4849}],[-20,{"n":5.5,"e":4869}],[-16,{"n":4.5,"e":4909}],[-15,{"n":6.5,"e":4927}],[-9,{"n":4.5,"e":4979}],[-7,{"n":3,"e":4999}]]}],[1551,{"n":"Le Roy","f":"Killian","fp":"G","r":3,"c":90}],[3774,{"n":"Mamilonne","f":"Yannick","fp":"A","r":1,"c":90,"s":{"Os":34.5,"On":8,"Oa":4.31,"Od":0.84,"pa":8},"p":[[-18,{"n":4,"e":4889,"s":1}],[-19,{"n":6,"e":4885}],[-12,{"n":4,"e":4955}],[-11,{"n":4.5,"e":4960}],[-10,{"n":4,"e":4971,"s":1}],[-9,{"n":4.5,"e":4979,"s":1}],[-8,{"n":3,"e":4993}],[-7,{"n":4.5,"e":4999}]]}],[3784,{"n":"Stojanovski","f":"Vlatko","fp":"A","r":11,"c":90,"s":{"s":14,"n":3,"a":4.67,"d":0.76,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.76,"Os":36.5,"On":8,"Oa":4.56,"Od":0.42,"pa":8},"p":[[6,{"n":4,"e":6536}],[5,{"n":5.5,"e":6540}],[-21,{"n":4.5,"e":3727,"s":1}],[-15,{"n":4.5,"e":3784}],[-14,{"n":4.5,"e":3789,"s":1}],[-8,{"n":4.5,"e":3855,"s":1}],[-18,{"n":4.5,"e":3755,"s":1}],[4,{"n":4.5,"e":6548,"s":1}]]}],[4909,{"n":"Boubacari Doucouré","f":"","fp":"DC","r":1,"c":90}],[4975,{"n":"Pinoteau","f":"Xavier","fp":"G","r":7,"c":90,"s":{"s":16,"n":3,"a":5.33,"d":1.61,"Ss":16,"Sn":3,"Sa":5.33,"Sd":1.61,"Os":33,"On":6,"Oa":5.5,"Od":1.22,"pg":6},"p":[[-27,{"n":6.5,"e":4802}],[-26,{"n":4.5,"e":4809}],[-25,{"n":6,"e":4818}],[6,{"n":3.5,"e":6536}],[5,{"n":6.5,"e":6540,"s":1}],[4,{"n":6,"e":6548}]]}],[4980,{"n":"Guezoui","f":"Medhy","fp":"A","r":9,"c":90,"s":{"g":1,"s":20,"n":4,"a":5,"d":0.71,"Og":2,"Os":96,"On":21,"Oa":4.57,"Od":0.98,"pa":21},"p":[[-17,{"n":2.5,"e":4903}],[-13,{"n":4,"e":4940,"s":1}],[-28,{"n":5,"e":4789,"s":1}],[-24,{"n":4.5,"e":4829}],[-23,{"n":7,"e":4846}],[-22,{"n":4,"e":4849,"s":1}],[-21,{"n":5,"e":4861}],[-20,{"n":4.5,"e":4869}],[-18,{"n":5,"e":4889}],[-16,{"n":4,"e":4909}],[-15,{"n":5,"e":4927}],[-14,{"n":3.5,"e":4929}],[-11,{"n":4,"e":4960}],[-10,{"n":3.5,"e":4971}],[-9,{"n":4.5,"e":4979,"s":1}],[-8,{"n":4,"e":4993}],[-7,{"n":6,"e":4999,"g":1}],[4,{"n":4.5,"e":6548}],[3,{"n":6,"e":6561,"g":1}],[2,{"n":5,"e":6574}],[1,{"n":4.5,"e":6582,"s":1}]],"fo":[[6548,[{"t":"I"}]]]}],[4984,{"n":"El Hriti","f":"Aniss","fp":"DC","r":9,"c":90,"s":{"s":17,"n":4,"a":4.25,"d":0.96,"Ss":8,"Sn":2,"Sa":4,"Sd":1.41,"Og":1,"Os":95.5,"On":21,"Oa":4.55,"Od":1.06,"pd":17,"pm":4},"p":[[-28,{"n":5,"e":4789,"s":1}],[-27,{"n":5,"e":4802}],[-25,{"n":5,"e":4818}],[-24,{"n":4,"e":4829}],[-23,{"n":5,"e":4846}],[-22,{"n":4.5,"e":4849}],[-21,{"n":4.5,"e":4861}],[-20,{"n":5,"e":4869}],[-16,{"n":3.5,"e":4909}],[-15,{"n":8,"e":4927,"g":1}],[-13,{"n":3,"e":4940}],[-12,{"n":4.5,"e":4955}],[-11,{"n":4.5,"e":4960}],[-10,{"n":4.5,"e":4971}],[-9,{"n":4.5,"e":4979,"s":1}],[-8,{"n":5,"e":4993,"s":1}],[-7,{"n":3,"e":4999}],[6,{"n":3,"e":6536}],[5,{"n":5,"e":6540,"s":1}],[2,{"n":5,"e":6574}],[1,{"n":4,"e":6582}]]}],[5060,{"n":"Jaques","f":"Thibault","fp":"DC","r":20,"c":90,"s":{"g":2,"s":29,"n":6,"a":4.83,"d":1.97,"Sg":2,"Ss":29,"Sn":6,"Sa":4.83,"Sd":1.97,"Og":5,"Os":142.5,"On":28,"Oa":5.09,"Od":1.36,"pd":28},"p":[[-28,{"n":6.5,"e":4789,"g":1}],[-27,{"n":5.5,"e":4802}],[-26,{"n":7,"e":4809,"g":1}],[-25,{"n":5.5,"e":4818}],[-24,{"n":5,"e":4829}],[-23,{"n":5.5,"e":4846}],[-22,{"n":5,"e":4849}],[-21,{"n":5.5,"e":4861}],[-20,{"n":7,"e":4869}],[-19,{"n":6,"e":4885}],[-18,{"n":6,"e":4889,"g":1}],[-17,{"n":3.5,"e":4903}],[-16,{"n":4.5,"e":4909}],[-15,{"n":6.5,"e":4927}],[-14,{"n":5.5,"e":4929}],[-13,{"n":2.5,"e":4940}],[-12,{"n":4,"e":4955}],[-11,{"n":5.5,"e":4960}],[-10,{"n":5,"e":4971}],[-9,{"n":5,"e":4979}],[-8,{"n":4,"e":4993}],[-7,{"n":3,"e":4999}],[6,{"n":3,"e":6536}],[5,{"n":7.5,"e":6540,"g":1}],[4,{"n":6,"e":6548}],[3,{"n":4,"e":6561}],[2,{"n":6,"e":6574,"g":1}],[1,{"n":2.5,"e":6582}]]}],[5090,{"n":"David","f":"Florian","fp":"MO","r":10,"c":90,"s":{"s":9,"n":2,"a":4.5,"Og":3,"Os":113.5,"On":23,"Oa":4.93,"Od":1.05,"pm":13,"pa":10},"p":[[-27,{"n":5,"e":4802,"s":1}],[-26,{"n":5,"e":4809,"s":1}],[-25,{"n":5,"e":4818,"s":1}],[-24,{"n":4,"e":4829}],[-23,{"n":6,"e":4846,"g":1,"s":1}],[-22,{"n":5,"e":4849}],[-21,{"n":5,"e":4861,"s":1}],[-20,{"n":5.5,"e":4869,"s":1}],[-19,{"n":5.5,"e":4885}],[-18,{"n":7.5,"e":4889,"g":1}],[-17,{"n":4,"e":4903,"s":1}],[-16,{"n":5.5,"e":4909}],[-15,{"n":7.5,"e":4927,"g":1}],[-14,{"n":5,"e":4929,"s":1}],[-13,{"n":4,"e":4940}],[-12,{"n":4.5,"e":4955,"s":1}],[-11,{"n":5,"e":4960,"s":1}],[-10,{"n":4,"e":4971}],[-9,{"n":4.5,"e":4979}],[-8,{"n":4,"e":4993}],[-7,{"n":3,"e":4999}],[4,{"n":4.5,"e":6548,"s":1}],[1,{"n":4.5,"e":6582,"s":1}]]}],[5106,{"n":"Derrien","f":"Maxence","fp":"DC","r":14,"c":90,"s":{"s":27,"n":6,"a":4.5,"d":0.63,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.63,"Os":128.5,"On":27,"Oa":4.76,"Od":0.98,"pd":7,"pm":20},"p":[[-28,{"n":6,"e":4789}],[-27,{"n":4.5,"e":4802}],[-26,{"n":5,"e":4809}],[-25,{"n":6,"e":4818}],[-24,{"n":3.5,"e":4829}],[-23,{"n":6,"e":4846}],[-22,{"n":5,"e":4849}],[-21,{"n":5,"e":4861}],[-20,{"n":5,"e":4869}],[-19,{"n":5.5,"e":4885}],[-18,{"n":5,"e":4889,"s":1}],[-17,{"n":3,"e":4903}],[-16,{"n":5,"e":4909}],[-15,{"n":7.5,"e":4927}],[-14,{"n":4,"e":4929}],[-13,{"n":4,"e":4940,"s":1}],[-12,{"n":4.5,"e":4955}],[-11,{"n":5,"e":4960,"s":1}],[-10,{"n":5,"e":4971}],[-8,{"n":3,"e":4993}],[-7,{"n":4,"e":4999}],[6,{"n":4,"e":6536}],[5,{"n":5,"e":6540}],[4,{"n":5,"e":6548}],[3,{"n":4.5,"e":6561}],[2,{"n":5,"e":6574}],[1,{"n":3.5,"e":6582}]],"fo":[[6548,[{"t":"Y"}]],[6574,[{"t":"Y"}]]]}],[5110,{"n":"Beaulieu","f":"Jonathan","fp":"MD","r":10,"c":90,"s":{"s":20.5,"n":4,"a":5.13,"d":0.63,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.63,"Os":111,"On":21,"Oa":5.29,"Od":0.86,"pm":21},"p":[[-28,{"n":5,"e":4789}],[-27,{"n":5.5,"e":4802,"s":1}],[-25,{"n":5.5,"e":4818}],[-23,{"n":6,"e":4846}],[-22,{"n":5,"e":4849}],[-21,{"n":5.5,"e":4861}],[-20,{"n":6,"e":4869}],[-19,{"n":5.5,"e":4885}],[-18,{"n":6,"e":4889}],[-16,{"n":5.5,"e":4909}],[-15,{"n":7.5,"e":4927}],[-14,{"n":5,"e":4929,"s":1}],[-13,{"n":3.5,"e":4940}],[-10,{"n":5.5,"e":4971}],[-9,{"n":5.5,"e":4979}],[-8,{"n":4,"e":4993}],[-7,{"n":4,"e":4999}],[6,{"n":5,"e":6536}],[5,{"n":6,"e":6540}],[4,{"n":5,"e":6548}],[3,{"n":4.5,"e":6561,"s":1}]],"fo":[[6536,[{"t":"Y"}]]]}],[5112,{"n":"Dequaire","f":"Guillaume","fp":"DC","r":12,"c":90,"s":{"s":30.5,"n":6,"a":5.08,"d":0.66,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.66,"Og":2,"Os":116.5,"On":23,"Oa":5.07,"Od":1.01,"pd":23},"p":[[-28,{"n":5.5,"e":4789}],[-27,{"n":5,"e":4802}],[-26,{"n":5,"e":4809}],[-25,{"n":5.5,"e":4818}],[-24,{"n":4.5,"e":4829}],[-23,{"n":7.5,"e":4846,"g":1}],[-22,{"n":4.5,"e":4849}],[-21,{"n":5,"e":4861}],[-20,{"n":7.5,"e":4869,"g":1}],[-19,{"n":5,"e":4885}],[-18,{"n":4.5,"e":4889}],[-17,{"n":3,"e":4903}],[-16,{"n":4,"e":4909}],[-15,{"n":5.5,"e":4927}],[-14,{"n":4.5,"e":4929}],[-10,{"n":4,"e":4971}],[-9,{"n":5.5,"e":4979}],[6,{"n":5,"e":6536}],[5,{"n":6,"e":6540}],[4,{"n":5.5,"e":6548}],[3,{"n":5,"e":6561}],[2,{"n":5,"e":6574}],[1,{"n":4,"e":6582}]],"fo":[[6536,[{"t":"I"}]]]}],[5123,{"n":"Eickmayer","f":"Joachim","fp":"MD","r":1,"c":90,"s":{"Og":1,"Os":51.5,"On":11,"Oa":4.68,"Od":1.1,"pm":11},"p":[[-18,{"n":5,"e":4889}],[-17,{"n":4,"e":4903}],[-16,{"n":4.5,"e":4909}],[-15,{"n":7,"e":4927,"g":1}],[-14,{"n":5,"e":4929}],[-13,{"n":3.5,"e":4940}],[-12,{"n":4.5,"e":4955}],[-11,{"n":6,"e":4960}],[-9,{"n":5,"e":4979}],[-8,{"n":3.5,"e":4993}],[-7,{"n":3.5,"e":4999}]]}],[5125,{"n":"Soubervie","f":"Anthony","fp":"DL","r":9,"c":90,"s":{"s":15.5,"n":3,"a":5.17,"d":1.26,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.26,"Og":1,"Os":93,"On":20,"Oa":4.65,"Od":1.25,"pd":12,"pm":8},"p":[[-28,{"n":4,"e":4789}],[-27,{"n":5.5,"e":4802}],[-26,{"n":5,"e":4809}],[-25,{"n":4.5,"e":4818}],[-24,{"n":5.5,"e":4829}],[-23,{"n":5,"e":4846}],[-22,{"n":5,"e":4849,"s":1}],[-17,{"n":3,"e":4903}],[-16,{"n":4,"e":4909}],[-15,{"n":8,"e":4927,"g":1}],[-14,{"n":5,"e":4929,"s":1}],[-13,{"n":3,"e":4940}],[-12,{"n":5,"e":4955,"s":1}],[-10,{"n":5,"e":4971}],[-9,{"n":4,"e":4979}],[-8,{"n":3,"e":4993}],[-7,{"n":3,"e":4999}],[6,{"n":4,"e":6536}],[5,{"n":6.5,"e":6540}],[4,{"n":5,"e":6548}]],"fo":[[6548,[{"t":"Y"}]]]}],[5127,{"n":"Correa","f":"Joris","fp":"A","r":15,"c":90,"s":{"g":2,"s":30,"n":6,"a":5,"d":1.26,"Sg":2,"Ss":30,"Sn":6,"Sa":5,"Sd":1.26,"Og":5,"Os":92,"On":18,"Oa":5.11,"Od":1.2,"pm":4,"pa":14},"p":[[-14,{"n":4.5,"e":4934,"s":1}],[-12,{"n":4.5,"e":4953,"s":1}],[-28,{"n":6,"e":4789}],[-27,{"n":8,"e":4802,"g":2}],[-26,{"n":7,"e":4809,"g":1}],[-25,{"n":5,"e":4818}],[-23,{"n":5,"e":4846,"s":1}],[-22,{"n":4.5,"e":4849,"s":1}],[-21,{"n":4,"e":4861}],[-16,{"n":4.5,"e":4908}],[-15,{"n":4.5,"e":4925}],[-7,{"n":4.5,"e":4998}],[6,{"n":6,"e":6536,"g":1}],[5,{"n":7,"e":6540,"g":1,"s":1}],[4,{"n":4.5,"e":6548,"s":1}],[3,{"n":4.5,"e":6561}],[2,{"n":4.5,"e":6574}],[1,{"n":3.5,"e":6582}]],"fo":[[6582,[{"t":"Y"}]]]}],[5134,{"n":"Latour","f":"Mickaël","fp":"A","r":1,"c":90,"s":{"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[-13,{"n":4.5,"e":4940,"s":1}]]}],[5148,{"n":"Heinry","f":"Guillaume","fp":"MD","r":6,"c":90,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":9,"Sn":2,"Sa":4.5,"Os":38.5,"On":8,"Oa":4.81,"Od":0.65,"pm":5,"pa":3},"p":[[-27,{"n":5.5,"e":4802}],[-26,{"n":6,"e":4809}],[-25,{"n":5,"e":4818,"s":1}],[-24,{"n":4.5,"e":4829,"s":1}],[6,{"n":4.5,"e":6536,"s":1}],[5,{"n":4.5,"e":6540,"s":1}],[3,{"n":4.5,"e":6561}],[1,{"n":4,"e":6582}]],"fo":[[6582,[{"t":"I"},{"t":"Y"}]]]}],[5156,{"n":"Popelard","f":"John","fp":"DL","r":6,"c":90,"s":{"s":9,"n":2,"a":4.5,"Os":70.5,"On":15,"Oa":4.7,"Od":0.41,"pm":14,"pa":1},"p":[[-27,{"n":5,"e":4802,"s":1}],[-24,{"n":5,"e":4829}],[-23,{"n":5,"e":4846,"s":1}],[-21,{"n":4.5,"e":4861}],[-19,{"n":5,"e":4885,"s":1}],[-18,{"n":5,"e":4889,"s":1}],[-17,{"n":4.5,"e":4903}],[-16,{"n":4.5,"e":4909,"s":1}],[-15,{"n":5,"e":4927,"s":1}],[-14,{"n":5,"e":4929}],[-13,{"n":3.5,"e":4940}],[-12,{"n":4.5,"e":4955,"s":1}],[-11,{"n":5,"e":4960,"s":1}],[2,{"n":4.5,"e":6574,"s":1}],[1,{"n":4.5,"e":6582,"s":1}]]}],[5157,{"n":"Lassana Doucouré","f":"","fp":"MO","r":10,"c":90,"s":{"s":22.5,"n":5,"a":4.5,"d":0.94,"Og":2,"Os":69,"On":15,"Oa":4.6,"Od":0.95,"pd":1,"pm":5,"pa":9},"p":[[-28,{"n":6.5,"e":4789,"g":1}],[-27,{"n":5,"e":4802}],[-26,{"n":3.5,"e":4809}],[-25,{"n":4,"e":4818}],[-24,{"n":6,"e":4829,"g":1,"s":1}],[-22,{"n":4,"e":4849}],[-20,{"n":5,"e":4869}],[-19,{"n":4.5,"e":4885,"s":1}],[-9,{"n":3.5,"e":4979}],[-7,{"n":4.5,"e":4999,"s":1}],[5,{"n":5.5,"e":6540}],[4,{"n":5,"e":6548}],[3,{"n":4.5,"e":6561,"s":1}],[2,{"n":4.5,"e":6574,"s":1}],[1,{"n":3,"e":6582}]],"fo":[[6548,[{"t":"Y"}]]]}],[5211,{"n":"Pontdemé","f":"Simon","fp":"G","r":14,"c":90,"s":{"s":17,"n":4,"a":4.25,"d":0.87,"Os":116.5,"On":23,"Oa":5.07,"Od":1.2,"pg":23},"p":[[-28,{"n":6,"e":4789}],[-24,{"n":5.5,"e":4829}],[-23,{"n":7,"e":4846}],[-22,{"n":6,"e":4849}],[-21,{"n":6,"e":4861}],[-20,{"n":6,"e":4869}],[-19,{"n":4,"e":4885}],[-18,{"n":5,"e":4889}],[-17,{"n":3.5,"e":4903}],[-16,{"n":5.5,"e":4909}],[-15,{"n":6,"e":4927}],[-14,{"n":4.5,"e":4929}],[-13,{"n":2.5,"e":4940}],[-12,{"n":5,"e":4955}],[-11,{"n":6,"e":4960}],[-10,{"n":6,"e":4971}],[-9,{"n":6,"e":4979}],[-8,{"n":6,"e":4993}],[-7,{"n":3,"e":4999}],[5,{"n":3.5,"e":6540}],[3,{"n":4,"e":6561}],[2,{"n":5.5,"e":6574}],[1,{"n":4,"e":6582}]],"fo":[[6540,[{"t":"R"}]]]}],[5357,{"n":"Delos","f":"Shaquil","fp":"DL","r":9,"c":90,"s":{"s":24,"n":5,"a":4.8,"d":0.57,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.63,"Og":1,"Os":64.5,"On":13,"Oa":4.96,"Od":0.72,"pd":9,"pm":4},"p":[[-26,{"n":5,"e":4809,"s":1}],[-25,{"n":4.5,"e":4818}],[-22,{"n":4.5,"e":4849}],[-21,{"n":5,"e":4861}],[-20,{"n":5,"e":4869}],[-19,{"n":5,"e":4885}],[-18,{"n":7,"e":4889,"g":1}],[-17,{"n":4.5,"e":4903,"s":1}],[6,{"n":5,"e":6536,"s":1}],[5,{"n":5.5,"e":6540,"s":1}],[4,{"n":5,"e":6548,"s":1}],[3,{"n":4,"e":6561}],[1,{"n":4.5,"e":6582}]]}],[5374,{"n":"Flochon","f":"Sébastien","fp":"MO","r":11,"c":90,"s":{"s":31.5,"n":6,"a":5.25,"d":0.42,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.42,"Os":93,"On":19,"Oa":4.89,"Od":0.66,"pm":19},"p":[[-28,{"n":5.5,"e":4789}],[-27,{"n":5,"e":4802}],[-26,{"n":6,"e":4809}],[-25,{"n":5,"e":4818,"s":1}],[-24,{"n":5,"e":4829,"s":1}],[-23,{"n":4,"e":4846}],[-19,{"n":5,"e":4885,"s":1}],[-18,{"n":3.5,"e":4889}],[-17,{"n":4,"e":4903}],[-15,{"n":4.5,"e":4927,"s":1}],[-14,{"n":5,"e":4929}],[-12,{"n":4,"e":4955}],[-11,{"n":5,"e":4960}],[6,{"n":5,"e":6536}],[5,{"n":5,"e":6540}],[4,{"n":5.5,"e":6548}],[3,{"n":6,"e":6561}],[2,{"n":5,"e":6574}],[1,{"n":5,"e":6582,"s":1}]],"fo":[[6536,[{"t":"Y"}]]]}],[6734,{"n":"Camelo","f":"Lucas","fp":"DC","r":1,"c":90}],[6738,{"n":"Petkovic","f":"Nikola","fp":"A","r":1,"c":90}],[6756,{"n":"Danger","f":"Bradley","fp":"DC","r":10,"c":90,"s":{"g":1,"s":28.5,"n":6,"a":4.75,"d":0.82,"Sg":1,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.82,"Og":1,"Os":28.5,"On":6,"Oa":4.75,"Od":0.82,"pd":6},"p":[[6,{"n":4.5,"e":6536,"g":1}],[5,{"n":6,"e":6540}],[4,{"n":5,"e":6548}],[3,{"n":4.5,"e":6561}],[2,{"n":5,"e":6574}],[1,{"n":3.5,"e":6582}]]}],[6842,{"n":"Zabou","f":"Cyril","fp":"MO","r":1,"c":90,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[6,{"n":5,"e":6536,"s":1}],[3,{"n":4.5,"e":6561,"s":1}]]}],[7046,{"n":"Susnjara","f":"Luka","fp":"MO","r":12,"c":90,"s":{"s":17.5,"n":4,"a":4.38,"d":0.63,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.63,"Os":17.5,"On":4,"Oa":4.38,"Od":0.63,"pm":1,"pa":3},"p":[[6,{"n":3.5,"e":6536,"s":1}],[5,{"n":5,"e":6540}],[4,{"n":4.5,"e":6548}],[3,{"n":4.5,"e":6561}]],"fo":[[6536,[{"t":"Y"}]]]}],[279,{"n":"Sunu","f":"Gilles","fp":"A","r":9,"c":93,"s":{"s":30.5,"n":6,"a":5.08,"d":0.86,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.76,"Os":51,"On":10,"Oa":5.1,"Od":0.66,"pm":6,"pa":4},"p":[[6,{"n":5,"e":6530,"s":1}],[3,{"n":5,"e":6567}],[-25,{"n":5,"e":4820}],[-21,{"n":5,"e":4860}],[-23,{"n":5,"e":4846}],[-22,{"n":5.5,"e":4848}],[5,{"n":4,"e":6540}],[4,{"n":5.5,"e":6549}],[2,{"n":4.5,"e":6570}],[1,{"n":6.5,"e":6579}]],"fo":[[6540,[{"t":"Y"}]]]}],[462,{"n":"Alhadhur","f":"Chaker","fp":"DL","r":11,"c":93,"s":{"s":31.5,"n":6,"a":5.25,"d":0.61,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.61,"Og":1,"Os":122,"On":23,"Oa":5.3,"Od":0.9,"pd":23},"p":[[-26,{"n":6,"e":4811}],[-19,{"n":3,"e":4880}],[-18,{"n":4.5,"e":4894}],[-17,{"n":5,"e":4905}],[-15,{"n":5,"e":4920,"s":1}],[-9,{"n":6,"e":4983}],[-8,{"n":5,"e":4990}],[-28,{"n":6,"e":4790}],[-23,{"n":4,"e":4846}],[-22,{"n":7.5,"e":4848,"g":1}],[-21,{"n":5,"e":4860}],[-16,{"n":6,"e":4912}],[-14,{"n":6,"e":4937}],[-13,{"n":5,"e":4941}],[-12,{"n":6,"e":4953}],[-11,{"n":5,"e":4961}],[-10,{"n":5.5,"e":4969}],[6,{"n":6,"e":6530}],[5,{"n":5,"e":6540}],[4,{"n":6,"e":6549}],[3,{"n":5,"e":6567}],[2,{"n":4.5,"e":6570}],[1,{"n":5,"e":6579}]]}],[1432,{"n":"Cordoval","f":"Jérémy","fp":"DL","r":10,"c":93,"s":{"s":21,"n":4,"a":5.25,"d":0.29,"Os":72,"On":16,"Oa":4.5,"Od":0.75,"pd":12,"pa":4},"p":[[-27,{"n":4,"e":4800}],[-24,{"n":4.5,"e":4837}],[-20,{"n":5,"e":4876}],[-7,{"n":5,"e":5003}],[-25,{"n":5,"e":4820}],[-19,{"n":3,"e":4880}],[-18,{"n":3.5,"e":4894}],[-16,{"n":4,"e":4912}],[-15,{"n":4.5,"e":4920}],[-11,{"n":4,"e":4961}],[-9,{"n":3.5,"e":4983}],[-8,{"n":5,"e":4990}],[5,{"n":5,"e":6540}],[4,{"n":5,"e":6549,"s":1}],[3,{"n":5.5,"e":6567,"s":1}],[2,{"n":5.5,"e":6570}]]}],[2631,{"n":"Marega","f":"Issa","fp":"DC","r":1,"c":93,"s":{"Os":15,"On":3,"Oa":5,"Od":1,"pd":2,"pm":1},"p":[[-18,{"n":4,"e":4894,"s":1}],[-9,{"n":6,"e":4983}],[-7,{"n":5,"e":5003}]]}],[3804,{"n":"Fabri","f":"Julien","fp":"G","r":17,"c":93,"s":{"s":35,"n":6,"a":5.83,"d":0.52,"Ss":35,"Sn":6,"Sa":5.83,"Sd":0.52,"Os":119.5,"On":21,"Oa":5.69,"Od":1.07,"pg":21},"p":[[-27,{"n":4,"e":4800}],[-26,{"n":7,"e":4811}],[-25,{"n":8,"e":4820}],[-24,{"n":5,"e":4837}],[-23,{"n":4,"e":4846}],[-22,{"n":6,"e":4848}],[-21,{"n":4.5,"e":4860}],[-20,{"n":5.5,"e":4876}],[-19,{"n":4,"e":4880}],[-18,{"n":6.5,"e":4894}],[-17,{"n":5,"e":4905}],[-16,{"n":6,"e":4912}],[-15,{"n":5.5,"e":4920}],[-14,{"n":7,"e":4937}],[-13,{"n":6.5,"e":4941}],[6,{"n":6,"e":6530}],[5,{"n":5,"e":6540}],[4,{"n":6.5,"e":6549}],[3,{"n":6,"e":6567}],[2,{"n":5.5,"e":6570}],[1,{"n":6,"e":6579}]]}],[4141,{"n":"Cisse","f":"Ibrahim","fp":"DC","r":9,"c":93,"s":{"s":31.5,"n":6,"a":5.25,"d":1.33,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.33,"Os":31.5,"On":6,"Oa":5.25,"Od":1.33,"pd":6},"p":[[6,{"n":6,"e":6530}],[5,{"n":3.5,"e":6540}],[4,{"n":7,"e":6549}],[3,{"n":5,"e":6567}],[2,{"n":4,"e":6570}],[1,{"n":6,"e":6579}]],"fo":[[6530,[{"t":"Y"}]],[6540,[{"t":"Y"}]],[6567,[{"t":"Y"}]]]}],[4849,{"n":"Keny","f":"Philippe","fp":"A","r":8,"c":93,"s":{"g":1,"s":27,"n":6,"a":4.5,"d":0.84,"Sg":1,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.84,"Og":2,"Os":99,"On":21,"Oa":4.71,"Od":0.73,"pm":1,"pa":20},"p":[[-26,{"n":5,"e":4811}],[-25,{"n":6,"e":4820,"g":1,"s":1}],[-24,{"n":4,"e":4837}],[-23,{"n":4.5,"e":4846,"s":1}],[-22,{"n":4.5,"e":4848,"s":1}],[-21,{"n":5,"e":4860,"s":1}],[-20,{"n":4.5,"e":4876,"s":1}],[-18,{"n":4.5,"e":4894,"s":1}],[-17,{"n":4,"e":4905}],[-16,{"n":5,"e":4912,"s":1}],[-15,{"n":3.5,"e":4920}],[-14,{"n":6,"e":4937}],[-13,{"n":5,"e":4941}],[-12,{"n":5.5,"e":4953}],[-11,{"n":5,"e":4961}],[6,{"n":4.5,"e":6530,"s":1}],[5,{"n":6,"e":6540,"g":1}],[4,{"n":4.5,"e":6549,"s":1}],[3,{"n":4,"e":6567}],[2,{"n":3.5,"e":6570}],[1,{"n":4.5,"e":6579,"s":1}]],"fo":[[6579,[{"t":"Y"}]]]}],[4864,{"n":"Leroy","f":"Leo","fp":"MO","r":9,"c":93,"s":{"s":27,"n":6,"a":4.5,"d":0.63,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.63,"Og":1,"Os":103,"On":22,"Oa":4.68,"Od":0.72,"pm":19,"pa":3},"p":[[-28,{"n":4.5,"e":4790}],[-27,{"n":4,"e":4800,"s":1}],[-26,{"n":5,"e":4811,"s":1}],[-24,{"n":4,"e":4837}],[-23,{"n":5,"e":4846}],[-22,{"n":5.5,"e":4848}],[-21,{"n":5,"e":4860,"s":1}],[-20,{"n":5,"e":4876}],[-19,{"n":4.5,"e":4880,"s":1}],[-18,{"n":4.5,"e":4894}],[-17,{"n":7,"e":4905,"g":1,"s":1}],[-16,{"n":4.5,"e":4912,"s":1}],[-15,{"n":4,"e":4920}],[-14,{"n":5,"e":4937}],[-13,{"n":4.5,"e":4941,"s":1}],[-7,{"n":4,"e":5003}],[6,{"n":5,"e":6530}],[5,{"n":4.5,"e":6540}],[4,{"n":5,"e":6549}],[3,{"n":3.5,"e":6567}],[2,{"n":5,"e":6570,"s":1}],[1,{"n":4,"e":6579}]],"fo":[[6567,[{"t":"Y"}]]]}],[4881,{"n":"Bedfian","f":"Wilfried","fp":"G","r":3,"c":93}],[4908,{"n":"Hassan","f":"Haissem","fp":"A","r":7,"c":93,"s":{"Os":31.5,"On":7,"Oa":4.5,"Od":0.58,"pa":7},"p":[[-28,{"n":5.5,"e":4790,"s":1}],[-25,{"n":4.5,"e":4820,"s":1}],[-24,{"n":4.5,"e":4837,"s":1}],[-19,{"n":4.5,"e":4880,"s":1}],[-10,{"n":4.5,"e":4969,"s":1}],[-8,{"n":3.5,"e":4990}],[-7,{"n":4.5,"e":5003,"s":1}]]}],[4922,{"n":"Tormin","f":"Guevin","fp":"A","r":1,"c":93,"s":{"g":1,"s":17,"n":3,"a":5.67,"d":1.15,"Sg":1,"Ss":12,"Sn":2,"Sa":6,"Sd":1.41,"Og":1,"Os":21,"On":4,"Oa":5.25,"Od":1.26,"pm":1,"pa":3},"p":[[-24,{"n":4,"e":4837,"s":1}],[6,{"n":7,"e":6530,"g":1}],[5,{"n":5,"e":6540,"s":1}],[3,{"n":5,"e":6567,"s":1}]],"fo":[[6530,[{"t":"I"}]]]}],[4990,{"n":"Operi","f":"Christopher","fp":"DL","r":10,"c":93,"s":{"s":5,"n":1,"a":5,"Og":2,"Os":116,"On":23,"Oa":5.04,"Od":0.98,"pd":21,"pm":1,"pa":1},"p":[[-28,{"n":6,"e":4790}],[-27,{"n":4.5,"e":4800}],[-26,{"n":5.5,"e":4811}],[-25,{"n":5,"e":4820,"g":1}],[-24,{"n":4.5,"e":4837}],[-23,{"n":3,"e":4846}],[-22,{"n":5,"e":4848}],[-21,{"n":5,"e":4860}],[-20,{"n":4.5,"e":4876}],[-19,{"n":4,"e":4880}],[-18,{"n":6,"e":4894,"g":1}],[-17,{"n":5,"e":4905}],[-16,{"n":5,"e":4912}],[-15,{"n":3,"e":4920}],[-14,{"n":6.5,"e":4937}],[-13,{"n":7,"e":4941}],[-12,{"n":4.5,"e":4953}],[-11,{"n":5,"e":4961}],[-10,{"n":5,"e":4969}],[-9,{"n":6.5,"e":4983}],[-8,{"n":5,"e":4990}],[-7,{"n":5.5,"e":5003}],[4,{"n":5,"e":6549}]],"a":{"m":12,"a":12,"M":13,"n":5}}],[5024,{"n":"Sangante","f":"Opa","fp":"MD","r":10,"c":93,"s":{"s":26,"n":5,"a":5.2,"d":0.67,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.29,"Os":117.5,"On":23,"Oa":5.11,"Od":0.85,"pd":3,"pm":20},"p":[[-27,{"n":4,"e":4800}],[-26,{"n":4.5,"e":4811,"s":1}],[-24,{"n":4.5,"e":4837}],[-23,{"n":3.5,"e":4846}],[-22,{"n":6.5,"e":4848}],[-21,{"n":5,"e":4860}],[-20,{"n":5,"e":4876}],[-19,{"n":3.5,"e":4880}],[-18,{"n":4.5,"e":4894}],[-17,{"n":5.5,"e":4905}],[-16,{"n":5.5,"e":4912}],[-15,{"n":5,"e":4920,"s":1}],[-12,{"n":6.5,"e":4953}],[-11,{"n":5.5,"e":4961}],[-10,{"n":5.5,"e":4969}],[-9,{"n":5,"e":4983}],[-8,{"n":5.5,"e":4990}],[-7,{"n":6.5,"e":5003}],[6,{"n":5.5,"e":6530}],[5,{"n":6,"e":6540}],[4,{"n":5.5,"e":6549}],[2,{"n":4.5,"e":6570}],[1,{"n":4.5,"e":6579}]],"fo":[[6530,[{"t":"Y"}]]]}],[5064,{"n":"Fofana","f":"Nama","fp":"DL","r":5,"c":93,"s":{"s":20.5,"n":4,"a":5.13,"d":0.85,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":25.5,"On":5,"Oa":5.1,"Od":0.74,"pd":5},"p":[[-20,{"n":5,"e":4876}],[6,{"n":5.5,"e":6530}],[5,{"n":5,"e":6540,"s":1}],[3,{"n":4,"e":6567}],[1,{"n":6,"e":6579}]],"fo":[[6567,[{"t":"R"}]]]}],[5164,{"n":"M'Bone","f":"Yannick","fp":"MD","r":13,"c":93,"s":{"s":32,"n":6,"a":5.33,"d":0.68,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.68,"Og":2,"Os":144,"On":28,"Oa":5.14,"Od":1.01,"pd":28},"p":[[-28,{"n":5.5,"e":4790}],[-27,{"n":3.5,"e":4800}],[-26,{"n":6,"e":4811}],[-25,{"n":4.5,"e":4820}],[-24,{"n":4.5,"e":4837}],[-23,{"n":4,"e":4846}],[-22,{"n":6,"e":4848}],[-21,{"n":5,"e":4860}],[-20,{"n":5.5,"e":4876}],[-19,{"n":3,"e":4880}],[-18,{"n":4,"e":4894}],[-17,{"n":5,"e":4905}],[-16,{"n":5.5,"e":4912}],[-15,{"n":3.5,"e":4920}],[-14,{"n":6.5,"e":4937}],[-13,{"n":7.5,"e":4941,"g":1}],[-12,{"n":6,"e":4953,"g":1}],[-11,{"n":4.5,"e":4961}],[-10,{"n":5.5,"e":4969}],[-9,{"n":6,"e":4983}],[-8,{"n":5,"e":4990}],[-7,{"n":5.5,"e":5003}],[6,{"n":5.5,"e":6530}],[5,{"n":4.5,"e":6540}],[4,{"n":5.5,"e":6549}],[3,{"n":6,"e":6567}],[2,{"n":4.5,"e":6570}],[1,{"n":6,"e":6579}]]}],[5185,{"n":"Pillot","f":"Rémi","fp":"G","r":7,"c":93,"s":{"Os":44,"On":8,"Oa":5.5,"Od":0.89,"pg":8},"p":[[-28,{"n":6,"e":4790}],[-27,{"n":4,"e":4800,"s":1}],[-12,{"n":5,"e":4953}],[-11,{"n":5,"e":4961}],[-10,{"n":5.5,"e":4969}],[-9,{"n":7,"e":4983}],[-8,{"n":5.5,"e":4990}],[-7,{"n":6,"e":5003}]]}],[5212,{"n":"Raineau","f":"Alexandre","fp":"DL","r":7,"c":93,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":47.5,"On":9,"Oa":5.28,"Od":0.75,"pd":4,"pm":5},"p":[[-28,{"n":7,"e":4790}],[-26,{"n":5,"e":4811}],[-25,{"n":6,"e":4820}],[-21,{"n":5,"e":4860}],[-14,{"n":5,"e":4937,"s":1}],[-10,{"n":5,"e":4969}],[4,{"n":5,"e":6549,"s":1}],[3,{"n":4.5,"e":6567,"s":1}],[1,{"n":5,"e":6579,"s":1}]]}],[5215,{"n":"Boukari","f":"Abdoulrazak","fp":"MO","r":1,"c":93,"s":{"s":10,"n":2,"a":5,"d":0.71,"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[4,{"n":5.5,"e":6549,"s":1}],[3,{"n":4.5,"e":6567,"s":1}]]}],[5970,{"n":"Ez Zaytouni","f":"Ayoub","fp":"MO","r":1,"c":93}],[6144,{"n":"Grange","f":"Romain","fp":"MO","r":14,"c":93,"s":{"s":16,"n":3,"a":5.33,"d":0.29,"Ss":11,"Sn":2,"Sa":5.5,"Og":5,"Os":139.5,"On":24,"Oa":5.81,"Od":0.89,"pm":20,"pa":4},"p":[[-28,{"n":7,"e":4790,"g":1}],[-27,{"n":4,"e":4800}],[-26,{"n":6.5,"e":4811}],[-25,{"n":5.5,"e":4820}],[-24,{"n":5,"e":4837}],[-23,{"n":4.5,"e":4846}],[-22,{"n":6.5,"e":4848}],[-21,{"n":7,"e":4860,"g":1}],[-20,{"n":7,"e":4876}],[-18,{"n":4.5,"e":4894}],[-17,{"n":6,"e":4905}],[-16,{"n":6.5,"e":4912}],[-15,{"n":6.5,"e":4920,"g":1}],[-14,{"n":5.5,"e":4937}],[-13,{"n":5.5,"e":4941}],[-12,{"n":5.5,"e":4953}],[-11,{"n":6,"e":4961}],[-10,{"n":7,"e":4969,"g":1}],[-9,{"n":5.5,"e":4983}],[-8,{"n":7,"e":4990,"g":1}],[-7,{"n":5,"e":5003,"s":1}],[6,{"n":5.5,"e":6530}],[5,{"n":5.5,"e":6540,"s":1}],[1,{"n":5,"e":6579}]],"fo":[[6579,[{"t":"I"}]],[6530,[{"t":"Y"}]]]}],[6213,{"n":"Mulumba","f":"Rémi","fp":"MD","r":14,"c":93,"s":{"g":2,"s":32.5,"n":5,"a":6.5,"d":1.12,"Sg":2,"Ss":32.5,"Sn":5,"Sa":6.5,"Sd":1.12,"Og":3,"Os":128.5,"On":24,"Oa":5.35,"Od":1.12,"pm":22,"pa":2},"p":[[-28,{"n":7,"e":4790}],[-27,{"n":4,"e":4800}],[-26,{"n":6.5,"e":4811,"g":1}],[-25,{"n":4.5,"e":4820}],[-24,{"n":4.5,"e":4837}],[-23,{"n":4,"e":4846}],[-22,{"n":6.5,"e":4848}],[-20,{"n":5,"e":4876}],[-19,{"n":3.5,"e":4880}],[-18,{"n":4.5,"e":4894}],[-17,{"n":5,"e":4905}],[-16,{"n":5.5,"e":4912}],[-15,{"n":4,"e":4920}],[-13,{"n":5,"e":4941}],[-12,{"n":5.5,"e":4953}],[-11,{"n":5,"e":4961}],[-10,{"n":5.5,"e":4969}],[-9,{"n":5,"e":4983,"s":1}],[-7,{"n":5.5,"e":5003}],[6,{"n":8,"e":6530,"g":1}],[5,{"n":5,"e":6540}],[4,{"n":6.5,"e":6549}],[3,{"n":6,"e":6567}],[2,{"n":7,"e":6570,"g":1}]],"fo":[[6540,[{"t":"Y"}]],[6567,[{"t":"Y"}]]]}],[6231,{"n":"Chouaref","f":"Ylyas","fp":"A","r":11,"c":93,"s":{"s":24.5,"n":5,"a":4.9,"d":1.29,"Ss":7,"Sn":1,"Sa":7,"Og":2,"Os":137.5,"On":26,"Oa":5.29,"Od":1,"pm":5,"pa":21},"p":[[-28,{"n":5,"e":4790,"s":1}],[-27,{"n":4.5,"e":4800}],[-26,{"n":5,"e":4811,"s":1}],[-24,{"n":5,"e":4837}],[-23,{"n":5,"e":4846,"s":1}],[-22,{"n":4.5,"e":4848,"s":1}],[-21,{"n":7,"e":4860}],[-20,{"n":7,"e":4876,"g":1}],[-19,{"n":6,"e":4880}],[-18,{"n":5,"e":4894}],[-17,{"n":4.5,"e":4905}],[-16,{"n":8,"e":4912,"g":1}],[-15,{"n":5,"e":4920}],[-14,{"n":6,"e":4937}],[-13,{"n":5.5,"e":4941}],[-12,{"n":5.5,"e":4953}],[-11,{"n":5,"e":4961,"s":1}],[-10,{"n":4.5,"e":4969}],[-9,{"n":5,"e":4983}],[-8,{"n":5,"e":4990}],[-7,{"n":5,"e":5003}],[6,{"n":7,"e":6530}],[4,{"n":3.5,"e":6549}],[3,{"n":5,"e":6567}],[2,{"n":4.5,"e":6570}],[1,{"n":4.5,"e":6579}]],"fo":[[6549,[{"t":"R"}]]]}],[6253,{"n":"Gonçalves Pereira","f":"Alexis","fp":"A","r":9,"c":93,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Og":3,"Os":88,"On":19,"Oa":4.63,"Od":1.03,"pa":19},"p":[[-28,{"n":4,"e":4790}],[-27,{"n":4.5,"e":4800,"s":1}],[-23,{"n":2,"e":4846}],[-22,{"n":4,"e":4848}],[-21,{"n":5,"e":4860}],[-20,{"n":6,"e":4876,"g":1,"s":1}],[-19,{"n":6.5,"e":4880,"g":1,"s":1}],[-17,{"n":5,"e":4905,"s":1}],[-15,{"n":4.5,"e":4920,"s":1}],[-14,{"n":5,"e":4937}],[-13,{"n":4,"e":4941}],[-12,{"n":4,"e":4953}],[-11,{"n":4,"e":4961,"s":1}],[-10,{"n":6,"e":4969}],[-9,{"n":6,"e":4983,"g":1,"s":1}],[6,{"n":4.5,"e":6530,"s":1}],[5,{"n":4,"e":6540,"s":1}],[2,{"n":4.5,"e":6570,"s":1}],[1,{"n":4.5,"e":6579,"s":1}]]}],[6254,{"n":"Plumain","f":"Tommy","fp":"G","r":3,"c":93}],[6737,{"n":"Nouri","f":"Amir","fp":"MD","r":12,"c":93,"s":{"g":1,"s":32.5,"n":6,"a":5.42,"d":1.16,"Sg":1,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.16,"Og":1,"Os":32.5,"On":6,"Oa":5.42,"Od":1.16,"pm":6},"p":[[6,{"n":5,"e":6530,"s":1}],[5,{"n":4,"e":6540}],[4,{"n":5.5,"e":6549}],[3,{"n":5.5,"e":6567}],[2,{"n":5,"e":6570}],[1,{"n":7.5,"e":6579,"g":1}]]}],[6827,{"n":"Canelhas","f":"Baptiste","fp":"MD","r":1,"c":93}],[6828,{"n":"Doucouré","f":"Siriné","fp":"A","r":1,"c":93,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[3,{"n":4,"e":6567,"s":1}]]}],[6835,{"n":"Morante","f":"Leandro","fp":"DC","r":3,"c":93}],[1206,{"n":"Tell","f":"Jordan","fp":"A","r":9,"c":92,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":34,"On":7,"Oa":4.86,"Od":0.63,"pm":1,"pa":6},"p":[[2,{"n":4,"e":6571}],[-28,{"n":4.5,"e":4790,"s":1}],[-27,{"n":6,"e":4799}],[-26,{"n":4.5,"e":4814,"s":1}],[-25,{"n":5,"e":4819,"s":1}],[-24,{"n":5,"e":4832,"s":1}],[1,{"n":5,"e":6583}]]}],[3521,{"n":"Trichard","f":"Driss","fp":"DL","r":1,"c":92,"s":{"Oao":1,"Os":3,"On":1,"Oa":3,"pd":1},"p":[[-17,{"n":3,"e":4907,"a":1}]]}],[4833,{"n":"Abdul Samed","f":"Salis","fp":"MD","r":3,"c":92,"s":{"s":5,"n":1,"a":5,"Os":29.5,"On":6,"Oa":4.92,"Od":0.2,"pm":6},"p":[[-25,{"n":5,"e":4823,"s":1}],[-10,{"n":4.5,"e":4976,"s":1}],[-22,{"n":5,"e":4850,"s":1}],[-15,{"n":5,"e":4918,"s":1}],[-8,{"n":5,"e":4995,"s":1}],[1,{"n":5,"e":6583,"s":1}]]}],[4856,{"n":"Diako","f":"Lassana","fp":"A","r":1,"c":92}],[4869,{"n":"Allevinah","f":"Jim","fp":"A","r":18,"c":92,"s":{"g":1,"s":34.5,"n":6,"a":5.75,"d":0.82,"Sg":1,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.82,"Og":3,"Os":134,"On":25,"Oa":5.36,"Od":1.06,"pm":18,"pa":7},"p":[[6,{"n":7,"e":6531,"g":1,"s":1}],[5,{"n":5.5,"e":6546}],[4,{"n":5,"e":6550}],[-28,{"n":6.5,"e":4791,"g":1}],[-27,{"n":6,"e":4803}],[-18,{"n":4.5,"e":4890}],[-9,{"n":5.5,"e":4980}],[-26,{"n":5,"e":4810}],[-25,{"n":6.5,"e":4823}],[-24,{"n":7,"e":4830}],[-23,{"n":4.5,"e":4838,"s":1}],[-22,{"n":6,"e":4850}],[-21,{"n":5,"e":4863}],[-20,{"n":5.5,"e":4870}],[-17,{"n":5,"e":4907,"s":1}],[-16,{"n":5,"e":4910}],[-15,{"n":4.5,"e":4918,"s":1}],[-14,{"n":4.5,"e":4929,"s":1}],[-11,{"n":2.5,"e":4962,"s":1}],[-10,{"n":4,"e":4976}],[-8,{"n":7,"e":4995,"g":1}],[-7,{"n":5,"e":5000,"s":1}],[3,{"n":5.5,"e":6560}],[2,{"n":6.5,"e":6571}],[1,{"n":5,"e":6583}]],"fo":[[6550,[{"t":"Y"}]]]}],[4904,{"n":"Djoco","f":"Ouparine","fp":"G","r":7,"c":92,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"Os":11.5,"On":2,"Oa":5.75,"Od":0.35,"pg":2},"p":[[5,{"n":6,"e":6546}],[4,{"n":5.5,"e":6550,"s":1}]]}],[4905,{"n":"Magnin","f":"Yohann","fp":"MD","r":16,"c":92,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":1.21,"Sg":2,"Ss":34,"Sn":6,"Sa":5.67,"Sd":1.21,"Og":3,"Os":131,"On":23,"Oa":5.7,"Od":0.86,"pd":1,"pm":22},"p":[[-28,{"n":6,"e":4791}],[-27,{"n":7,"e":4803}],[-26,{"n":4.5,"e":4810,"s":1}],[-25,{"n":6,"e":4823}],[-24,{"n":5.5,"e":4830,"g":1}],[-23,{"n":6,"e":4838}],[-22,{"n":6.5,"e":4850}],[-21,{"n":4.5,"e":4863}],[-20,{"n":5,"e":4870}],[-19,{"n":7,"e":4879}],[-18,{"n":5.5,"e":4890}],[-17,{"n":5.5,"e":4907}],[-16,{"n":6,"e":4910}],[-15,{"n":6,"e":4918}],[-14,{"n":6,"e":4929}],[-12,{"n":5,"e":4949,"s":1}],[-9,{"n":5,"e":4980,"s":1}],[6,{"n":7,"e":6531,"g":1}],[5,{"n":4.5,"e":6546}],[4,{"n":5.5,"e":6550}],[3,{"n":6.5,"e":6560}],[2,{"n":6.5,"e":6571,"g":1}],[1,{"n":4,"e":6583}]],"fo":[[6550,[{"t":"Y"}]]]}],[4957,{"n":"Gomis","f":"David","fp":"A","r":10,"c":92,"s":{"s":31.5,"n":6,"a":5.25,"d":0.42,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.42,"Og":1,"Os":130,"On":24,"Oa":5.42,"Od":0.65,"pm":24},"p":[[-28,{"n":5,"e":4791,"s":1}],[-23,{"n":5.5,"e":4838}],[-22,{"n":5,"e":4850}],[-21,{"n":6.5,"e":4863}],[-20,{"n":5.5,"e":4870}],[-19,{"n":5.5,"e":4879}],[-18,{"n":7,"e":4890,"g":1}],[-17,{"n":4.5,"e":4907}],[-16,{"n":5.5,"e":4910}],[-15,{"n":5.5,"e":4918}],[-14,{"n":6,"e":4929}],[-13,{"n":6,"e":4942}],[-12,{"n":6.5,"e":4949}],[-11,{"n":5,"e":4962}],[-10,{"n":4.5,"e":4976,"s":1}],[-9,{"n":4.5,"e":4980}],[-8,{"n":5.5,"e":4995}],[-7,{"n":5,"e":5000}],[6,{"n":5,"e":6531}],[5,{"n":5,"e":6546}],[4,{"n":5,"e":6550}],[3,{"n":6,"e":6560}],[2,{"n":5.5,"e":6571}],[1,{"n":5,"e":6583}]],"fo":[[6531,[{"t":"I"}]]]}],[4964,{"n":"Rajot","f":"Lorenzo","fp":"MO","r":8,"c":92,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":83.5,"On":17,"Oa":4.91,"Od":0.71,"pm":14,"pa":3},"p":[[-27,{"n":5,"e":4801}],[-26,{"n":5,"e":4808}],[-25,{"n":5,"e":4822}],[-24,{"n":5,"e":4836}],[-23,{"n":5.5,"e":4842}],[-22,{"n":6.5,"e":4853}],[-21,{"n":3.5,"e":4867}],[-20,{"n":6,"e":4870}],[-18,{"n":5,"e":4890,"s":1}],[-17,{"n":5,"e":4907,"s":1}],[-13,{"n":5,"e":4942,"s":1}],[-11,{"n":4,"e":4962}],[-10,{"n":4,"e":4976,"s":1}],[-9,{"n":5,"e":4980,"s":1}],[-7,{"n":4.5,"e":5000}],[5,{"n":5,"e":6546,"s":1}],[2,{"n":4.5,"e":6571,"s":1}]]}],[5035,{"n":"Desmas","f":"Arthur","fp":"G","r":18,"c":92,"s":{"s":28,"n":5,"a":5.6,"d":1.39,"Ss":6.5,"Sn":1,"Sa":6.5,"Os":142,"On":26,"Oa":5.46,"Od":0.97,"pg":26},"p":[[-28,{"n":7.5,"e":4796}],[-27,{"n":5.5,"e":4804}],[-26,{"n":4.5,"e":4816}],[-24,{"n":5,"e":4835}],[-23,{"n":6.5,"e":4844}],[-21,{"n":6,"e":4866}],[-19,{"n":4.5,"e":4881}],[-17,{"n":5,"e":4902}],[-16,{"n":5,"e":4915}],[-15,{"n":5,"e":4924}],[-14,{"n":6,"e":4935}],[-10,{"n":4.5,"e":4970}],[-9,{"n":5,"e":4986}],[-8,{"n":5,"e":4992}],[-22,{"n":5.5,"e":4855}],[-20,{"n":5,"e":4876}],[-18,{"n":5.5,"e":4895}],[-13,{"n":4.5,"e":4938}],[-12,{"n":6,"e":4955}],[-11,{"n":7.5,"e":4962}],[-7,{"n":5,"e":5005}],[6,{"n":6.5,"e":6531}],[4,{"n":3.5,"e":6550}],[3,{"n":6,"e":6560}],[2,{"n":5,"e":6571}],[1,{"n":7,"e":6583}]],"fo":[[6550,[{"t":"R"}]]]}],[5041,{"n":"N'Simba","f":"Vital","fp":"DL","r":20,"c":92,"s":{"s":32.5,"n":6,"a":5.42,"d":0.74,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.74,"Os":143.5,"On":27,"Oa":5.31,"Od":1.03,"pd":27},"p":[[-28,{"n":6,"e":4791}],[-27,{"n":5.5,"e":4803}],[-26,{"n":4.5,"e":4810}],[-25,{"n":6,"e":4823}],[-24,{"n":5.5,"e":4830}],[-23,{"n":6,"e":4838}],[-22,{"n":7.5,"e":4850}],[-21,{"n":4,"e":4863}],[-20,{"n":5,"e":4870}],[-19,{"n":5,"e":4879}],[-18,{"n":5.5,"e":4890}],[-16,{"n":6,"e":4910}],[-15,{"n":5,"e":4918}],[-14,{"n":5,"e":4929}],[-13,{"n":5,"e":4942}],[-12,{"n":5,"e":4949}],[-11,{"n":5,"e":4962}],[-10,{"n":3,"e":4976}],[-9,{"n":4,"e":4980}],[-8,{"n":8,"e":4995}],[-7,{"n":4.5,"e":5000}],[6,{"n":6,"e":6531}],[5,{"n":4.5,"e":6546}],[4,{"n":5,"e":6550}],[3,{"n":6.5,"e":6560}],[2,{"n":5.5,"e":6571}],[1,{"n":5,"e":6583}]],"fo":[[6571,[{"t":"Y"}]]]}],[5066,{"n":"Albert","f":"Josue","fp":"DC","r":6,"c":92,"s":{"s":5,"n":1,"a":5,"Os":56.5,"On":11,"Oa":5.14,"Od":0.55,"pd":11},"p":[[-27,{"n":5.5,"e":4803}],[-23,{"n":5.5,"e":4838}],[-21,{"n":4,"e":4863}],[-20,{"n":5,"e":4870}],[-19,{"n":5,"e":4879}],[-18,{"n":5.5,"e":4890}],[-17,{"n":6,"e":4907}],[-16,{"n":5.5,"e":4910,"s":1}],[-9,{"n":4.5,"e":4980}],[-8,{"n":5,"e":4995,"s":1}],[5,{"n":5,"e":6546,"s":1}]]}],[5085,{"n":"Zedadka","f":"Akim","fp":"DL","r":19,"c":92,"s":{"s":35,"n":6,"a":5.83,"d":0.82,"Ss":35,"Sn":6,"Sa":5.83,"Sd":0.82,"Og":1,"Os":141.5,"On":27,"Oa":5.24,"Od":0.91,"pd":27},"p":[[-28,{"n":6,"e":4791}],[-27,{"n":5,"e":4803}],[-26,{"n":5,"e":4810}],[-25,{"n":6,"e":4823}],[-24,{"n":7,"e":4830,"g":1}],[-23,{"n":6,"e":4838}],[-22,{"n":5,"e":4850}],[-21,{"n":5,"e":4863}],[-20,{"n":4,"e":4870}],[-19,{"n":5.5,"e":4879}],[-18,{"n":5,"e":4890}],[-17,{"n":5,"e":4907}],[-16,{"n":5,"e":4910}],[-15,{"n":5,"e":4918}],[-14,{"n":5,"e":4929}],[-13,{"n":3.5,"e":4942}],[-12,{"n":5,"e":4949}],[-11,{"n":5,"e":4962}],[-10,{"n":3,"e":4976}],[-9,{"n":4.5,"e":4980}],[-8,{"n":6,"e":4995}],[6,{"n":6,"e":6531}],[5,{"n":5.5,"e":6546}],[4,{"n":4.5,"e":6550}],[3,{"n":6,"e":6560}],[2,{"n":7,"e":6571}],[1,{"n":6,"e":6583}]],"fo":[[6531,[{"t":"Y"}]]]}],[5103,{"n":"Hountondji","f":"Cédric","fp":"DC","r":15,"c":92,"s":{"s":34.5,"n":6,"a":5.75,"d":0.52,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.52,"Os":118,"On":21,"Oa":5.62,"Od":0.63,"pd":21},"p":[[-28,{"n":6,"e":4791}],[-27,{"n":5.5,"e":4803}],[-26,{"n":4.5,"e":4810}],[-25,{"n":6,"e":4823}],[-24,{"n":5.5,"e":4830}],[-23,{"n":5.5,"e":4838}],[-22,{"n":5.5,"e":4850}],[-21,{"n":5.5,"e":4863}],[-16,{"n":5,"e":4910}],[-15,{"n":5.5,"e":4918}],[-14,{"n":7,"e":4929}],[-13,{"n":5,"e":4942}],[-12,{"n":6,"e":4949}],[-8,{"n":6.5,"e":4995}],[-7,{"n":4.5,"e":5000}],[6,{"n":6.5,"e":6531}],[5,{"n":5.5,"e":6546}],[4,{"n":5,"e":6550}],[3,{"n":5.5,"e":6560}],[2,{"n":6,"e":6571}],[1,{"n":6,"e":6583}]],"fo":[[6560,[{"t":"Y"}]]]}],[5122,{"n":"Iglesias","f":"Jonathan","fp":"MO","r":15,"c":92,"s":{"s":30.5,"n":6,"a":5.08,"d":0.49,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.49,"Og":1,"Os":146,"On":28,"Oa":5.21,"Od":0.88,"pm":28},"p":[[-28,{"n":7,"e":4791}],[-27,{"n":4.5,"e":4803}],[-26,{"n":4,"e":4810}],[-25,{"n":6,"e":4823}],[-24,{"n":4,"e":4830}],[-23,{"n":5,"e":4838,"s":1}],[-22,{"n":4.5,"e":4850}],[-21,{"n":5,"e":4863,"s":1}],[-20,{"n":7,"e":4870}],[-19,{"n":6,"e":4879}],[-18,{"n":4.5,"e":4890}],[-17,{"n":5,"e":4907}],[-16,{"n":7,"e":4910,"g":1}],[-15,{"n":5.5,"e":4918}],[-14,{"n":6,"e":4929}],[-13,{"n":4.5,"e":4942}],[-12,{"n":5,"e":4949}],[-11,{"n":5,"e":4962}],[-10,{"n":4.5,"e":4976}],[-9,{"n":5.5,"e":4980}],[-8,{"n":6,"e":4995}],[-7,{"n":4,"e":5000}],[6,{"n":6,"e":6531}],[5,{"n":5,"e":6546,"s":1}],[4,{"n":4.5,"e":6550,"s":1}],[3,{"n":5,"e":6560,"s":1}],[2,{"n":5,"e":6571,"s":1}],[1,{"n":5,"e":6583,"s":1}]],"fo":[[6560,[{"t":"Y"}]]]}],[5129,{"n":"Berthomier","f":"Jason","fp":"MO","r":15,"c":92,"s":{"g":1,"s":32.5,"n":6,"a":5.42,"d":0.86,"Sg":1,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.86,"Og":5,"Os":123.5,"On":23,"Oa":5.37,"Od":0.91,"pm":23},"p":[[-28,{"n":5,"e":4791}],[-27,{"n":5,"e":4803,"s":1}],[-26,{"n":4.5,"e":4810}],[-25,{"n":4.5,"e":4823}],[-24,{"n":5.5,"e":4830,"s":1}],[-23,{"n":6,"e":4838}],[-22,{"n":7.5,"e":4850,"g":2,"s":1}],[-21,{"n":5,"e":4863}],[-20,{"n":6,"e":4870}],[-19,{"n":5,"e":4879,"s":1}],[-14,{"n":5,"e":4929}],[-13,{"n":5,"e":4942}],[-12,{"n":7,"e":4949,"g":1}],[-10,{"n":3.5,"e":4976}],[-9,{"n":6,"e":4980,"g":1}],[-8,{"n":5.5,"e":4995}],[-7,{"n":5,"e":5000,"s":1}],[6,{"n":5.5,"e":6531,"s":1}],[5,{"n":4.5,"e":6546}],[4,{"n":7,"e":6550,"g":1}],[3,{"n":5,"e":6560}],[2,{"n":5.5,"e":6571}],[1,{"n":5,"e":6583}]]}],[5140,{"n":"Phojo","f":"Jerome","fp":"DL","r":1,"c":92,"s":{"Os":4,"On":1,"Oa":4,"pd":1},"p":[[-7,{"n":4,"e":5000}]]}],[5180,{"n":"Ogier","f":"Florent","fp":"DC","r":12,"c":92,"s":{"s":31.5,"n":6,"a":5.25,"d":0.69,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.69,"Og":1,"Os":118.5,"On":24,"Oa":4.94,"Od":1.1,"pd":24},"p":[[-28,{"n":7.5,"e":4791}],[-26,{"n":4.5,"e":4810}],[-25,{"n":5,"e":4823}],[-24,{"n":4.5,"e":4830}],[-22,{"n":4.5,"e":4850}],[-19,{"n":4.5,"e":4879}],[-18,{"n":4.5,"e":4890}],[-17,{"n":5.5,"e":4907}],[-16,{"n":6,"e":4910}],[-15,{"n":4.5,"e":4918}],[-14,{"n":7,"e":4929,"g":1}],[-13,{"n":3,"e":4942}],[-12,{"n":5,"e":4949}],[-11,{"n":4,"e":4962}],[-10,{"n":3,"e":4976}],[-9,{"n":4,"e":4980}],[-8,{"n":6,"e":4995}],[-7,{"n":4,"e":5000}],[6,{"n":6,"e":6531}],[5,{"n":4.5,"e":6546}],[4,{"n":5,"e":6550}],[3,{"n":6,"e":6560}],[2,{"n":4.5,"e":6571}],[1,{"n":5.5,"e":6583}]],"fo":[[6571,[{"t":"Y"}]]]}],[5198,{"n":"Gastien","f":"Johan","fp":"MD","r":15,"c":92,"s":{"s":30.5,"n":6,"a":5.08,"d":0.66,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.66,"Os":124.5,"On":24,"Oa":5.19,"Od":0.88,"pm":24},"p":[[-27,{"n":4.5,"e":4803}],[-26,{"n":5,"e":4810}],[-24,{"n":5.5,"e":4830}],[-23,{"n":7,"e":4838}],[-22,{"n":5.5,"e":4850}],[-21,{"n":5.5,"e":4863}],[-19,{"n":6,"e":4879}],[-18,{"n":6,"e":4890}],[-17,{"n":5.5,"e":4907}],[-16,{"n":6.5,"e":4910}],[-15,{"n":5,"e":4918}],[-13,{"n":3,"e":4942}],[-12,{"n":5.5,"e":4949}],[-11,{"n":4.5,"e":4962}],[-10,{"n":3.5,"e":4976}],[-9,{"n":5.5,"e":4980}],[-8,{"n":5,"e":4995}],[-7,{"n":5,"e":5000}],[6,{"n":6,"e":6531}],[5,{"n":4,"e":6546}],[4,{"n":5,"e":6550}],[3,{"n":5,"e":6560}],[2,{"n":5,"e":6571}],[1,{"n":5.5,"e":6583}]],"fo":[[6546,[{"t":"Y"}]]]}],[6457,{"n":"Chader","f":"Sofyan","fp":"MO","r":3,"c":92,"s":{"s":23,"n":4,"a":5.75,"d":1.04,"Ss":23,"Sn":4,"Sa":5.75,"Sd":1.04,"Os":28,"On":5,"Oa":5.6,"Od":0.96,"pm":5},"p":[[-26,{"n":5,"e":4810,"s":1}],[6,{"n":7,"e":6531}],[5,{"n":5.5,"e":6546,"s":1}],[4,{"n":4.5,"e":6550,"s":1}],[3,{"n":6,"e":6560,"s":1}]]}],[6735,{"n":"Margueron","f":"Lucas","fp":"G","r":1,"c":92}],[6739,{"n":"Boyer","f":"Julien","fp":"DL","r":1,"c":92}],[6744,{"n":"Bayo","f":"Mohamed","fp":"A","r":7,"c":92,"s":{"g":1,"s":29.5,"n":6,"a":4.92,"d":1.36,"Sg":1,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":1.36,"Og":1,"Os":29.5,"On":6,"Oa":4.92,"Od":1.36,"pa":6},"p":[[6,{"n":7,"e":6531,"g":1}],[5,{"n":3.5,"e":6546}],[4,{"n":6,"e":6550}],[3,{"n":4,"e":6560}],[2,{"n":5,"e":6571,"s":1}],[1,{"n":4,"e":6583,"s":1}]]}],[6825,{"n":"Seidu","f":"Alidu","fp":"DC","r":1,"c":92,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Os":15.5,"On":3,"Oa":5.17,"Od":0.29,"pd":3},"p":[[6,{"n":5,"e":6531,"s":1}],[5,{"n":5,"e":6546,"s":1}],[4,{"n":5.5,"e":6550,"s":1}]],"fo":[[6531,[{"t":"Y"}]]]}],[6826,{"n":"Aljic","f":"Muamer","fp":"DC","r":1,"c":92}],[6915,{"n":"Dossou","f":"Jodel","fp":"MO","r":8,"c":92,"s":{"g":1,"s":21.5,"n":4,"a":5.38,"d":0.48,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":21.5,"On":4,"Oa":5.38,"Od":0.48,"pm":4},"p":[[6,{"n":5,"e":6531,"s":1}],[4,{"n":5,"e":6550,"s":1}],[3,{"n":6,"e":6560,"g":1,"s":1}],[2,{"n":5.5,"e":6571,"s":1}]],"fo":[[6550,[{"t":"I"}]]]}],[477,{"n":"Ketkeophomphone","f":"Billy","fp":"A","r":13,"c":128,"s":{"g":2,"s":30,"n":6,"a":5,"d":0.77,"Sg":2,"Ss":25,"Sn":5,"Sa":5,"Sd":0.87,"Og":2,"Os":30,"On":6,"Oa":5,"Od":0.77,"pm":2,"pa":4},"p":[[6,{"n":4.5,"e":6532}],[5,{"n":4.5,"e":6544,"g":1}],[4,{"n":5,"e":6551}],[1,{"n":5,"e":6578}],[3,{"n":4.5,"e":6558,"s":1}],[2,{"n":6.5,"e":6571,"g":1}]],"fo":[[6544,[{"t":"Y"}]],[6571,[{"t":"Y"}]]]}],[566,{"n":"Romil","f":"Jorris","fp":"A","r":1,"c":128,"s":{"g":1,"s":15.5,"n":3,"a":5.17,"d":0.76,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Os":52,"On":11,"Oa":4.73,"Od":0.56,"pm":1,"pa":10},"p":[[-16,{"n":4,"e":4917,"s":1}],[-15,{"n":4.5,"e":4925,"s":1}],[-13,{"n":4.5,"e":4947,"s":1}],[-12,{"n":4,"e":4957}],[-11,{"n":5,"e":4959}],[-10,{"n":5,"e":4977,"s":1}],[-8,{"n":5,"e":4997}],[-7,{"n":4.5,"e":5006,"s":1}],[6,{"n":6,"e":6532,"g":1,"s":1}],[4,{"n":4.5,"e":6551,"s":1}],[3,{"n":5,"e":6558,"s":1}]]}],[1442,{"n":"Goteni","f":"Randi","fp":"MD","r":8,"c":128,"s":{"s":19,"n":4,"a":4.75,"d":0.65,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":19,"On":4,"Oa":4.75,"Od":0.65,"pm":4},"p":[[6,{"n":4.5,"e":6532}],[3,{"n":4,"e":6558,"s":1}],[2,{"n":5.5,"e":6571,"s":1}],[1,{"n":5,"e":6578,"s":1}]]}],[2037,{"n":"Verite","f":"Benjamin","fp":"DL","r":1,"c":128}],[2682,{"n":"Tchokounte","f":"Malik","fp":"A","r":14,"c":128,"s":{"s":21.5,"n":5,"a":4.3,"d":0.45,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Og":4,"Os":75,"On":16,"Oa":4.69,"Od":0.91,"pa":16},"p":[[-28,{"n":6,"e":4790,"g":1}],[-26,{"n":7,"e":4814,"g":2}],[-25,{"n":4,"e":4819}],[-24,{"n":4.5,"e":4832,"s":1}],[-23,{"n":4,"e":4839}],[-22,{"n":5,"e":4849}],[-21,{"n":4,"e":4859,"s":1}],[-19,{"n":4,"e":4879,"s":1}],[-16,{"n":6,"e":4911,"g":1,"s":1}],[-10,{"n":4.5,"e":4969,"s":1}],[-9,{"n":4.5,"e":4981,"s":1}],[6,{"n":4.5,"e":6532}],[5,{"n":4,"e":6544,"s":1}],[3,{"n":4,"e":6558}],[2,{"n":5,"e":6571}],[1,{"n":4,"e":6578}]],"fo":[[6532,[{"t":"I"}]]],"a":{"m":18,"a":24,"M":28,"n":5}}],[2793,{"n":"Cisse","f":"Ibrahim","fp":"DC","r":12,"c":128,"s":{"s":33.5,"n":6,"a":5.58,"d":0.86,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.86,"Os":69,"On":14,"Oa":4.93,"Od":0.98,"pd":14},"p":[[-28,{"n":null,"e":3657,"d":1}],[-28,{"n":4.5,"e":4797}],[-27,{"n":3.5,"e":4805}],[-25,{"n":5,"e":4826}],[-24,{"n":5,"e":4829}],[-23,{"n":3,"e":4845}],[-22,{"n":5,"e":4854}],[-21,{"n":4.5,"e":4866}],[-8,{"n":5,"e":3848}],[6,{"n":5.5,"e":6532}],[5,{"n":4.5,"e":6544}],[4,{"n":5,"e":6551}],[3,{"n":6,"e":6558}],[2,{"n":5.5,"e":6571}],[1,{"n":7,"e":6578}]]}],[3763,{"n":"Pierre","f":"Leverton","fp":"MD","r":10,"c":128,"s":{"s":30,"n":6,"a":5,"d":0.55,"Ss":30,"Sn":6,"Sa":5,"Sd":0.55,"Os":30,"On":6,"Oa":5,"Od":0.55,"pm":5,"pa":1},"p":[[6,{"n":6,"e":6532}],[5,{"n":5,"e":6544,"s":1}],[4,{"n":4.5,"e":6551}],[3,{"n":5,"e":6558,"s":1}],[2,{"n":4.5,"e":6571}],[1,{"n":5,"e":6578}]],"fo":[[6551,[{"t":"Y"}]],[6578,[{"t":"Y"}]]]}],[5142,{"n":"Vachoux","f":"Jérémy","fp":"G","r":7,"c":128,"s":{"Os":19,"On":4,"Oa":4.75,"Od":1.5,"pg":4},"p":[[-10,{"n":3,"e":4974}],[-9,{"n":6,"e":4987}],[-8,{"n":4,"e":4994}],[-7,{"n":6,"e":4998}]]}],[6275,{"n":"Ba","f":"Alioune","fp":"DC","r":11,"c":128,"s":{"s":17,"n":3,"a":5.67,"d":0.58,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Os":95,"On":19,"Oa":5,"Od":0.97,"pd":19},"p":[[-28,{"n":5,"e":4794}],[-27,{"n":5,"e":4807}],[-26,{"n":6,"e":4813}],[-24,{"n":4,"e":4834}],[-21,{"n":6.5,"e":4865}],[-19,{"n":5.5,"e":4883}],[-11,{"n":6,"e":4963}],[-23,{"n":4.5,"e":4844}],[-22,{"n":3.5,"e":4850}],[-20,{"n":4,"e":4869}],[-18,{"n":3,"e":4892}],[-16,{"n":5,"e":4908}],[-15,{"n":5,"e":4925}],[-14,{"n":5,"e":4934}],[-13,{"n":4,"e":4939}],[-12,{"n":6,"e":4953}],[6,{"n":6,"e":6532}],[5,{"n":5,"e":6544,"s":1}],[3,{"n":6,"e":6558}]]}],[6740,{"n":"Bruneel","f":"Nicolas","fp":"MD","r":7,"c":128,"s":{"g":1,"s":34,"n":6,"a":5.67,"d":0.75,"Sg":1,"Ss":34,"Sn":6,"Sa":5.67,"Sd":0.75,"Og":1,"Os":34,"On":6,"Oa":5.67,"Od":0.75,"pm":6},"p":[[6,{"n":6,"e":6532}],[5,{"n":5.5,"e":6544}],[4,{"n":5.5,"e":6551}],[3,{"n":5,"e":6558}],[2,{"n":5,"e":6571,"s":1}],[1,{"n":7,"e":6578,"g":1,"s":1}]],"fo":[[6558,[{"t":"Y"}]]]}],[6741,{"n":"Boudaud","f":"Dimitri","fp":"MO","r":10,"c":128,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[2,{"n":4.5,"e":6571}],[1,{"n":5,"e":6578}]]}],[6742,{"n":"Huysman","f":"Jeremy","fp":"DC","r":3,"c":128,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[4,{"n":5,"e":6551,"s":1}]]}],[6755,{"n":"Vialla","f":"Thibault","fp":"MO","r":8,"c":128,"s":{"s":23,"n":5,"a":4.6,"d":0.55,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":23,"On":5,"Oa":4.6,"Od":0.55,"pm":3,"pa":2},"p":[[6,{"n":5,"e":6532,"s":1}],[5,{"n":4,"e":6544}],[3,{"n":4,"e":6558}],[2,{"n":5,"e":6571,"s":1}],[1,{"n":5,"e":6578,"s":1}]]}],[6763,{"n":"Tchouatcha","f":"Jovanie","fp":"DL","r":3,"c":128}],[6767,{"n":"Vannoye","f":"Thomas","fp":"DC","r":1,"c":128}],[6768,{"n":"Guillaume","f":"Marc","fp":"G","r":1,"c":128}],[6769,{"n":"Kebbal","f":"Ilan","fp":"MO","r":7,"c":128,"s":{"s":24.5,"n":5,"a":4.9,"d":0.55,"Os":24.5,"On":5,"Oa":4.9,"Od":0.55,"pm":2,"pa":3},"p":[[5,{"n":4,"e":6544}],[4,{"n":5.5,"e":6551}],[3,{"n":5,"e":6558}],[2,{"n":5,"e":6571,"s":1}],[1,{"n":5,"e":6578,"s":1}]]}],[6770,{"n":"Thiam","f":"Demba","fp":"DL","r":12,"c":128,"s":{"s":30,"n":6,"a":5,"d":1.14,"Ss":30,"Sn":6,"Sa":5,"Sd":1.14,"Os":30,"On":6,"Oa":5,"Od":1.14,"pd":6},"p":[[6,{"n":5,"e":6532,"s":1}],[5,{"n":3.5,"e":6544}],[4,{"n":6.5,"e":6551}],[3,{"n":4,"e":6558}],[2,{"n":5,"e":6571}],[1,{"n":6,"e":6578}]]}],[6771,{"n":"Salhi","f":"Dorian","fp":"G","r":1,"c":128}],[6772,{"n":"Kabamba Kalonji","f":"David","fp":"DC","r":1,"c":128}],[6774,{"n":"Gomis","f":"Adon","fp":"DC","r":10,"c":128,"s":{"g":1,"s":27.5,"n":5,"a":5.5,"d":1.12,"Sg":1,"Ss":16,"Sn":3,"Sa":5.33,"Sd":1.53,"Og":1,"Os":27.5,"On":5,"Oa":5.5,"Od":1.12,"pd":5},"p":[[6,{"n":5,"e":6532}],[5,{"n":4,"e":6544}],[4,{"n":7,"e":6551,"g":1}],[2,{"n":5.5,"e":6571}],[1,{"n":6,"e":6578}]]}],[6775,{"n":"Bosca","f":"Guillaume","fp":"A","r":11,"c":128,"s":{"s":23,"n":5,"a":4.6,"d":0.55,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Os":23,"On":5,"Oa":4.6,"Od":0.55,"pm":3,"pa":2},"p":[[6,{"n":4,"e":6532,"s":1}],[5,{"n":4.5,"e":6544,"s":1}],[3,{"n":4.5,"e":6558}],[2,{"n":4.5,"e":6571}],[1,{"n":5.5,"e":6578}]]}],[6777,{"n":"Kerrouche","f":"Redouane","fp":"MD","r":11,"c":128,"s":{"s":25,"n":5,"a":5,"d":1,"Os":25,"On":5,"Oa":5,"Od":1,"pm":5},"p":[[5,{"n":4,"e":6544}],[4,{"n":6,"e":6551}],[3,{"n":4,"e":6558}],[2,{"n":5,"e":6571}],[1,{"n":6,"e":6578}]],"fo":[[6558,[{"t":"Y"},{"t":"O"}]]]}],[6778,{"n":"Harouna Sy","f":"","fp":"DL","r":12,"c":128,"s":{"s":32,"n":6,"a":5.33,"d":0.82,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.82,"Os":32,"On":6,"Oa":5.33,"Od":0.82,"pd":3,"pm":3},"p":[[6,{"n":5.5,"e":6532}],[5,{"n":4.5,"e":6544}],[4,{"n":6.5,"e":6551}],[3,{"n":5,"e":6558}],[2,{"n":4.5,"e":6571}],[1,{"n":6,"e":6578}]],"fo":[[6532,[{"t":"Y"}]],[6558,[{"t":"Y"}]]]}],[6779,{"n":"Kouagba","f":"Loic","fp":"DC","r":1,"c":128}],[6780,{"n":"Maraval","f":"Axel","fp":"G","r":13,"c":128,"s":{"s":34.5,"n":6,"a":5.75,"d":0.42,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.42,"Os":34.5,"On":6,"Oa":5.75,"Od":0.42,"pg":6},"p":[[6,{"n":5.5,"e":6532}],[5,{"n":5,"e":6544}],[4,{"n":6,"e":6551}],[3,{"n":6,"e":6558}],[2,{"n":6,"e":6571}],[1,{"n":6,"e":6578}]]}],[6781,{"n":"Rocheteau","f":"Kevin","fp":"A","r":3,"c":128}],[6782,{"n":"Dudouit","f":"Emeric","fp":"DL","r":8,"c":128,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.29,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":1,"pm":2},"p":[[6,{"n":5,"e":6532}],[5,{"n":4.5,"e":6544}],[4,{"n":5,"e":6551}]],"fo":[[6544,[{"t":"Y"}]]]}],[7296,{"n":"Cetiner","f":"Ozkan","fp":"MO","r":1,"c":128}],[405,{"n":"Gaspar","f":"Jordy","fp":"DL","r":9,"c":94,"s":{"s":31,"n":6,"a":5.17,"d":1.17,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.29,"Os":31,"On":6,"Oa":5.17,"Od":1.17,"pd":6},"p":[[6,{"n":6,"e":6533}],[5,{"n":4,"e":6541}],[2,{"n":4,"e":6572}],[1,{"n":5,"e":6585}],[4,{"n":7,"e":6552}],[3,{"n":5,"e":6561}]],"fo":[[6533,[{"t":"Y"}]],[6552,[{"t":"Y"}]],[6572,[{"t":"Y"}]]]}],[547,{"n":"Belmonte","f":"Anthony","fp":"MD","r":5,"c":94,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":36.5,"On":8,"Oa":4.56,"Od":0.5,"pm":8},"p":[[-23,{"n":4.5,"e":4840}],[-22,{"n":5,"e":4857}],[-27,{"n":4,"e":4799}],[-26,{"n":4,"e":4811}],[-20,{"n":4,"e":4868}],[-19,{"n":5,"e":4881,"s":1}],[6,{"n":5,"e":6533,"s":1}],[4,{"n":5,"e":6552,"s":1}]]}],[1253,{"n":"Benet","f":"Jessy","fp":"MO","r":22,"c":94,"s":{"g":2,"s":25.5,"n":4,"a":6.38,"d":1.38,"Og":7,"Os":142.5,"On":25,"Oa":5.7,"Od":1.04,"pm":24,"pa":1},"p":[[-28,{"n":5.5,"e":4792,"g":1}],[-25,{"n":7,"e":4821,"g":1}],[-24,{"n":5,"e":4833}],[-18,{"n":7,"e":4896}],[-16,{"n":5,"e":4913}],[-15,{"n":5.5,"e":4921}],[-27,{"n":3.5,"e":4799}],[-26,{"n":5,"e":4811}],[-23,{"n":7,"e":4840,"g":1}],[-22,{"n":5.5,"e":4857}],[-21,{"n":5,"e":4861}],[-20,{"n":5,"e":4868}],[-19,{"n":7.5,"e":4881,"g":1}],[-17,{"n":5,"e":4907}],[-14,{"n":5.5,"e":4931}],[-13,{"n":6,"e":4943}],[-12,{"n":5,"e":4948}],[-11,{"n":5,"e":4963}],[-10,{"n":6.5,"e":4977,"g":1}],[-9,{"n":5.5,"e":4981,"s":1}],[-8,{"n":5,"e":4990,"s":1}],[4,{"n":7,"e":6552,"g":1}],[3,{"n":5,"e":6561}],[2,{"n":8,"e":6572,"g":1}],[1,{"n":5.5,"e":6585}]]}],[4841,{"n":"Goteni","f":"Chris-Vianney","fp":"DC","r":1,"c":94}],[4915,{"n":"Djitté","f":"Moussa","fp":"A","r":11,"c":94,"s":{"g":2,"s":27.5,"n":6,"a":4.58,"d":1.11,"Sg":2,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":1.11,"Og":7,"Os":120.5,"On":25,"Oa":4.82,"Od":1.01,"pa":25},"p":[[-28,{"n":5.5,"e":4792}],[-27,{"n":4,"e":4799}],[-26,{"n":4,"e":4811}],[-25,{"n":6.5,"e":4821,"g":1}],[-24,{"n":3.5,"e":4833}],[-23,{"n":5,"e":4840}],[-22,{"n":4.5,"e":4857}],[-21,{"n":4,"e":4861}],[-20,{"n":4,"e":4868}],[-19,{"n":4,"e":4881}],[-18,{"n":4,"e":4896}],[-17,{"n":4.5,"e":4907,"s":1}],[-15,{"n":6,"e":4921,"g":1}],[-13,{"n":5,"e":4943}],[-12,{"n":6.5,"e":4948,"g":1}],[-11,{"n":4.5,"e":4963}],[-10,{"n":5,"e":4977}],[-9,{"n":6.5,"e":4981,"g":1}],[-8,{"n":6,"e":4990,"g":1,"s":1}],[6,{"n":4,"e":6533,"s":1}],[5,{"n":4,"e":6541}],[4,{"n":6,"e":6552,"g":1,"s":1}],[3,{"n":3.5,"e":6561}],[2,{"n":6,"e":6572,"g":1,"s":1}],[1,{"n":4,"e":6585,"s":1}]]}],[4950,{"n":"Semedo","f":"Willy","fp":"A","r":12,"c":94,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.44,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.44,"Og":4,"Os":115.5,"On":22,"Oa":5.25,"Od":1.02,"pm":9,"pa":13},"p":[[-7,{"n":4.5,"e":5004,"s":1}],[-28,{"n":6,"e":4792,"s":1}],[-27,{"n":4.5,"e":4799}],[-26,{"n":4.5,"e":4811}],[-25,{"n":6,"e":4821,"g":1,"s":1}],[-24,{"n":5,"e":4833,"s":1}],[-23,{"n":5,"e":4840}],[-22,{"n":6,"e":4857,"g":1,"s":1}],[-20,{"n":4,"e":4868,"s":1}],[-19,{"n":5,"e":4881}],[-18,{"n":6,"e":4896}],[-17,{"n":5,"e":4907,"s":1}],[-14,{"n":5.5,"e":4931}],[-11,{"n":5,"e":4963}],[-10,{"n":7.5,"e":4977,"g":1}],[-9,{"n":4.5,"e":4981,"s":1}],[6,{"n":6.5,"e":6533}],[5,{"n":4,"e":6541}],[4,{"n":5,"e":6552}],[3,{"n":4,"e":6561}],[2,{"n":7.5,"e":6572,"g":1}],[1,{"n":4.5,"e":6585}]]}],[4979,{"n":"Abdallah","f":"Abdel Hakim","fp":"DL","r":3,"c":94,"s":{"s":26.5,"n":5,"a":5.3,"d":0.67,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.75,"Os":30.5,"On":6,"Oa":5.08,"Od":0.8,"pd":6},"p":[[-12,{"n":4,"e":4948,"s":1}],[6,{"n":6.5,"e":6533}],[5,{"n":5,"e":6541,"s":1}],[4,{"n":5,"e":6552,"s":1}],[3,{"n":5,"e":6561,"s":1}],[1,{"n":5,"e":6585,"s":1}]]}],[5059,{"n":"Abou Demba","f":"Harouna","fp":"DL","r":1,"c":94}],[5072,{"n":"Pickel","f":"Charles","fp":"MD","r":10,"c":94,"s":{"s":29,"n":6,"a":4.83,"d":0.52,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.52,"Os":129,"On":26,"Oa":4.96,"Od":0.73,"pm":26},"p":[[-28,{"n":3.5,"e":4792}],[-27,{"n":4.5,"e":4799}],[-26,{"n":4.5,"e":4811}],[-25,{"n":5,"e":4821}],[-24,{"n":5.5,"e":4833}],[-23,{"n":5,"e":4840}],[-22,{"n":4.5,"e":4857}],[-21,{"n":5.5,"e":4861}],[-19,{"n":4.5,"e":4881}],[-18,{"n":4.5,"e":4896}],[-17,{"n":5,"e":4907}],[-16,{"n":4.5,"e":4913}],[-15,{"n":6,"e":4921}],[-13,{"n":3.5,"e":4943}],[-12,{"n":6,"e":4948}],[-11,{"n":6,"e":4963}],[-10,{"n":5.5,"e":4977}],[-9,{"n":6.5,"e":4981}],[-8,{"n":5,"e":4990}],[-7,{"n":5,"e":5004}],[6,{"n":5,"e":6533}],[5,{"n":4,"e":6541}],[4,{"n":5,"e":6552}],[3,{"n":5.5,"e":6561}],[2,{"n":4.5,"e":6572}],[1,{"n":5,"e":6585}]],"fo":[[6541,[{"t":"Y"}]],[6552,[{"t":"Y"}]]]}],[5088,{"n":"Salles","f":"Esteban","fp":"G","r":7,"c":94}],[5107,{"n":"Ondaan","f":"Terell","fp":"A","r":8,"c":94,"s":{"g":1,"s":20.5,"n":4,"a":5.13,"d":1.03,"Og":2,"Os":109,"On":22,"Oa":4.95,"Od":0.86,"pm":8,"pa":14},"p":[[-28,{"n":3.5,"e":4792}],[-27,{"n":6,"e":4799,"s":1}],[-26,{"n":5,"e":4811,"s":1}],[-23,{"n":5,"e":4840,"s":1}],[-21,{"n":3.5,"e":4861}],[-20,{"n":4,"e":4868}],[-19,{"n":6,"e":4881}],[-18,{"n":6,"e":4896}],[-17,{"n":5,"e":4907}],[-16,{"n":4.5,"e":4913,"s":1}],[-15,{"n":4.5,"e":4921,"s":1}],[-14,{"n":5,"e":4931}],[-13,{"n":4,"e":4943,"s":1}],[-11,{"n":5,"e":4963}],[-10,{"n":4.5,"e":4977,"s":1}],[-9,{"n":6,"e":4981}],[-8,{"n":5,"e":4990,"s":1}],[-7,{"n":6,"e":5004,"g":1,"s":1}],[5,{"n":4,"e":6541,"s":1}],[3,{"n":6.5,"e":6561,"g":1,"s":1}],[2,{"n":5,"e":6572,"s":1}],[1,{"n":5,"e":6585,"s":1}]]}],[5126,{"n":"Mombris","f":"Jerome","fp":"DL","r":12,"c":94,"s":{"s":26.5,"n":5,"a":5.3,"d":0.67,"Os":136.5,"On":27,"Oa":5.06,"Od":0.87,"pd":26,"pm":1},"p":[[-28,{"n":3,"e":4792}],[-27,{"n":4.5,"e":4799}],[-26,{"n":5,"e":4811}],[-25,{"n":5,"e":4821}],[-24,{"n":5,"e":4833}],[-23,{"n":5,"e":4840}],[-22,{"n":6,"e":4857}],[-21,{"n":5,"e":4861}],[-20,{"n":3,"e":4868}],[-19,{"n":5.5,"e":4881}],[-18,{"n":5,"e":4896}],[-17,{"n":4.5,"e":4907}],[-16,{"n":4,"e":4913}],[-15,{"n":4.5,"e":4921}],[-14,{"n":6.5,"e":4931}],[-13,{"n":6,"e":4943}],[-12,{"n":6,"e":4948}],[-11,{"n":5,"e":4963}],[-10,{"n":5,"e":4977}],[-9,{"n":6.5,"e":4981}],[-8,{"n":5,"e":4990}],[-7,{"n":5,"e":5004}],[5,{"n":5,"e":6541}],[4,{"n":6,"e":6552}],[3,{"n":6,"e":6561}],[2,{"n":4.5,"e":6572}],[1,{"n":5,"e":6585}]]}],[5130,{"n":"Monfray","f":"Adrien","fp":"DC","r":14,"c":94,"s":{"s":24,"n":5,"a":4.8,"d":0.84,"Os":136,"On":26,"Oa":5.23,"Od":0.8,"pd":26},"p":[[-28,{"n":4,"e":4792}],[-27,{"n":3,"e":4799}],[-26,{"n":5.5,"e":4811}],[-25,{"n":5.5,"e":4821}],[-24,{"n":6,"e":4833}],[-23,{"n":5.5,"e":4840}],[-22,{"n":5.5,"e":4857}],[-21,{"n":5,"e":4861}],[-19,{"n":5,"e":4881}],[-18,{"n":5,"e":4896}],[-17,{"n":5.5,"e":4907}],[-16,{"n":4.5,"e":4913}],[-15,{"n":5,"e":4921}],[-14,{"n":6.5,"e":4931}],[-13,{"n":6,"e":4943}],[-12,{"n":5.5,"e":4948}],[-11,{"n":6,"e":4963}],[-10,{"n":6,"e":4977}],[-9,{"n":6,"e":4981}],[-8,{"n":5.5,"e":4990}],[-7,{"n":5.5,"e":5004}],[5,{"n":4,"e":6541}],[4,{"n":6,"e":6552}],[3,{"n":5,"e":6561}],[2,{"n":4,"e":6572}],[1,{"n":5,"e":6585}]],"fo":[[6552,[{"t":"Y"}]],[6561,[{"t":"Y"}]],[6585,[{"t":"Y"}]]]}],[5201,{"n":"Nestor","f":"Loic","fp":"DC","r":11,"c":94,"s":{"g":1,"s":26.5,"n":5,"a":5.3,"d":0.45,"Ss":16.5,"Sn":3,"Sa":5.5,"Og":1,"Os":81.5,"On":16,"Oa":5.09,"Od":0.69,"pd":16},"p":[[-28,{"n":4,"e":4792}],[-27,{"n":5,"e":4799}],[-26,{"n":5,"e":4811}],[-25,{"n":6.5,"e":4821,"s":1}],[-24,{"n":5,"e":4833,"s":1}],[-22,{"n":5,"e":4857,"s":1}],[-21,{"n":5.5,"e":4861}],[-20,{"n":3.5,"e":4868}],[-19,{"n":5,"e":4881,"s":1}],[-17,{"n":5.5,"e":4907}],[-16,{"n":5,"e":4913}],[6,{"n":5.5,"e":6533}],[5,{"n":5.5,"e":6541}],[4,{"n":5.5,"e":6552}],[2,{"n":5.5,"e":6572,"g":1}],[1,{"n":4.5,"e":6585}]],"fo":[[6533,[{"t":"Y"}]],[6585,[{"t":"Y"}]]]}],[5207,{"n":"Maubleu","f":"Brice","fp":"G","r":15,"c":94,"s":{"s":34.5,"n":6,"a":5.75,"d":0.69,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.69,"Oao":1,"Os":155.5,"On":28,"Oa":5.55,"Od":0.91,"pg":28},"p":[[-28,{"n":4,"e":4792}],[-27,{"n":4.5,"e":4799,"a":1}],[-26,{"n":5,"e":4811}],[-25,{"n":5.5,"e":4821}],[-24,{"n":6,"e":4833}],[-23,{"n":5.5,"e":4840}],[-22,{"n":5,"e":4857}],[-21,{"n":6,"e":4861}],[-20,{"n":4,"e":4868}],[-19,{"n":5.5,"e":4881}],[-18,{"n":4.5,"e":4896}],[-17,{"n":5,"e":4907}],[-16,{"n":4.5,"e":4913}],[-15,{"n":5,"e":4921}],[-14,{"n":5.5,"e":4931}],[-13,{"n":8,"e":4943}],[-12,{"n":6,"e":4948}],[-11,{"n":6,"e":4963}],[-10,{"n":6,"e":4977}],[-9,{"n":6.5,"e":4981}],[-8,{"n":7,"e":4990}],[-7,{"n":6,"e":5004}],[6,{"n":6.5,"e":6533}],[5,{"n":5,"e":6541}],[4,{"n":6,"e":6552}],[3,{"n":5.5,"e":6561}],[2,{"n":6.5,"e":6572}],[1,{"n":5,"e":6585}]]}],[5975,{"n":"Michel","f":"Florian","fp":"MO","r":9,"c":94,"s":{"s":20.5,"n":4,"a":5.13,"d":0.48,"Os":67.5,"On":13,"Oa":5.19,"Od":0.48,"pm":13},"p":[[-28,{"n":5,"e":4792,"s":1}],[-26,{"n":5,"e":4811,"s":1}],[-25,{"n":5,"e":4821,"s":1}],[-17,{"n":5,"e":4907}],[-16,{"n":5,"e":4913,"s":1}],[-15,{"n":5,"e":4921}],[-9,{"n":5.5,"e":4981}],[-8,{"n":5,"e":4990}],[-7,{"n":6.5,"e":5004}],[5,{"n":4.5,"e":6541}],[4,{"n":5.5,"e":6552}],[3,{"n":5.5,"e":6561}],[2,{"n":5,"e":6572}]]}],[6461,{"n":"Straalman","f":"Bart","fp":"DC","r":8,"c":94,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Ss":6,"Sn":1,"Sa":6,"Os":36,"On":7,"Oa":5.14,"Od":0.48,"pd":7},"p":[[-28,{"n":5.5,"e":4796}],[-27,{"n":5,"e":4804}],[-25,{"n":5,"e":4822}],[-23,{"n":5,"e":4844}],[6,{"n":6,"e":6533}],[4,{"n":5,"e":6552,"s":1}],[3,{"n":4.5,"e":6561}]]}],[6760,{"n":"Diallo","f":"Mamadou Lamarana","fp":"MO","r":5,"c":94,"s":{"g":1,"s":30.5,"n":6,"a":5.08,"d":0.97,"Sg":1,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.97,"Og":1,"Os":30.5,"On":6,"Oa":5.08,"Od":0.97,"pa":6},"p":[[6,{"n":7,"e":6533,"g":1}],[5,{"n":4.5,"e":6541,"s":1}],[4,{"n":4.5,"e":6552,"s":1}],[3,{"n":4.5,"e":6561,"s":1}],[2,{"n":5,"e":6572,"s":1}],[1,{"n":5,"e":6585}]]}],[6762,{"n":"Tapoko","f":"Kevin","fp":"MD","r":6,"c":94,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[2,{"n":5,"e":6572,"s":1}],[1,{"n":5,"e":6585,"s":1}]]}],[6766,{"n":"Ravet","f":"Yoric","fp":"A","r":10,"c":94,"s":{"g":1,"s":34.5,"n":6,"a":5.75,"d":1.17,"Sg":1,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":1.17,"Og":1,"Os":34.5,"On":6,"Oa":5.75,"Od":1.17,"pm":2,"pa":4},"p":[[6,{"n":7,"e":6533,"g":1}],[5,{"n":4,"e":6541}],[4,{"n":6,"e":6552}],[3,{"n":5,"e":6561}],[2,{"n":7,"e":6572}],[1,{"n":5.5,"e":6585}]]}],[6845,{"n":"Bourdelle","f":"Paul","fp":"G","r":1,"c":94}],[6854,{"n":"Achille Anani","f":"","fp":"A","r":11,"c":94,"s":{"g":2,"s":34,"n":6,"a":5.67,"d":0.98,"Sg":2,"Ss":34,"Sn":6,"Sa":5.67,"Sd":0.98,"Og":2,"Os":34,"On":6,"Oa":5.67,"Od":0.98,"pa":6},"p":[[6,{"n":6,"e":6533}],[5,{"n":5,"e":6541,"s":1}],[4,{"n":6,"e":6552}],[3,{"n":6.5,"e":6561,"g":1,"s":1}],[2,{"n":6.5,"e":6572,"g":1}],[1,{"n":4,"e":6585}]],"fo":[[6552,[{"t":"I"}]]]}],[6914,{"n":"Cissé","f":"Souleymane","fp":"MD","r":1,"c":94,"s":{"s":10,"n":2,"a":5,"d":0.71,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[6,{"n":5.5,"e":6533}],[5,{"n":4.5,"e":6541}]],"fo":[[6541,[{"t":"Y"}]]]}],[7353,{"n":"Renoud","f":"Maxence","fp":"MO","r":2,"c":94}],[84,{"n":"Rodelin","f":"Ronny","fp":"A","r":17,"c":14,"s":{"s":19.5,"n":4,"a":4.88,"d":0.48,"Og":5,"Os":131,"On":24,"Oa":5.46,"Od":1.16,"pm":11,"pa":13},"p":[[4,{"n":5.5,"e":6555}],[3,{"n":4.5,"e":6562}],[2,{"n":5,"e":6569}],[1,{"n":4.5,"e":6584,"s":1}],[-26,{"n":4,"e":4812}],[-25,{"n":7,"e":4824,"g":1}],[-24,{"n":6,"e":4831}],[-20,{"n":5.5,"e":4871}],[-18,{"n":5.5,"e":4891}],[-15,{"n":4.5,"e":4922,"s":1}],[-11,{"n":5,"e":4965,"s":1}],[-8,{"n":4,"e":4996,"s":1}],[-7,{"n":6,"e":5001}],[-28,{"n":5,"e":4796}],[-27,{"n":7,"e":4801,"g":1}],[-23,{"n":5,"e":4847}],[-22,{"n":6,"e":4851}],[-21,{"n":4,"e":4865}],[-19,{"n":9,"e":4880,"g":3}],[-17,{"n":6,"e":4901}],[-16,{"n":6,"e":4911}],[-14,{"n":4.5,"e":4930}],[-13,{"n":6.5,"e":4940}],[-12,{"n":5,"e":4949}]]}],[110,{"n":"Sorbon","f":"Jérémy","fp":"DC","r":9,"c":14,"s":{"s":25,"n":5,"a":5,"d":1.17,"Ss":25,"Sn":5,"Sa":5,"Sd":1.17,"Os":57.5,"On":11,"Oa":5.23,"Od":0.93,"pd":11},"p":[[-27,{"n":5,"e":4801}],[-26,{"n":5,"e":4812}],[-25,{"n":5.5,"e":4824}],[-24,{"n":4.5,"e":4831}],[-23,{"n":6,"e":4847}],[-22,{"n":6.5,"e":4851}],[6,{"n":5.5,"e":6532}],[5,{"n":6,"e":6541}],[4,{"n":5.5,"e":6555}],[3,{"n":3,"e":6562}],[2,{"n":5,"e":6569,"s":1}]],"fo":[[6562,[{"t":"Y"}]]]}],[565,{"n":"Livolant","f":"Jeremy","fp":"MO","r":18,"c":14,"s":{"s":31,"n":6,"a":5.17,"d":0.98,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.98,"Og":4,"Os":148,"On":27,"Oa":5.48,"Od":1.01,"pm":26,"pa":1},"p":[[-23,{"n":6,"e":4843}],[-20,{"n":5,"e":4877}],[-16,{"n":4.5,"e":4916}],[-15,{"n":3.5,"e":4923}],[-14,{"n":5.5,"e":4936}],[-13,{"n":7.5,"e":4946,"g":1}],[-28,{"n":4.5,"e":4791}],[-27,{"n":6.5,"e":4804,"g":1,"s":1}],[-26,{"n":7,"e":4812,"g":1}],[-24,{"n":5,"e":4836}],[-22,{"n":5,"e":4856,"s":1}],[-21,{"n":6,"e":4858,"g":1}],[-19,{"n":4.5,"e":4883,"s":1}],[-18,{"n":5,"e":4896}],[-17,{"n":6,"e":4905}],[-12,{"n":5,"e":4956}],[-11,{"n":5,"e":4960}],[-10,{"n":7,"e":4976}],[-9,{"n":7,"e":4986}],[-8,{"n":6,"e":4996}],[-7,{"n":5.5,"e":5006}],[6,{"n":5,"e":6532}],[5,{"n":7,"e":6541}],[4,{"n":5,"e":6555}],[3,{"n":5,"e":6562,"s":1}],[2,{"n":5,"e":6569,"s":1}],[1,{"n":4,"e":6584}]],"a":{"m":21,"a":31,"M":45,"n":7}}],[579,{"n":"Poaty","f":"Morgan","fp":"DL","r":1,"c":14,"s":{"Os":23,"On":5,"Oa":4.6,"Od":0.82,"pd":4,"pm":1},"p":[[-15,{"n":3.5,"e":4922}],[-14,{"n":5,"e":4930}],[-13,{"n":5,"e":4940}],[-8,{"n":4,"e":4996}],[-7,{"n":5.5,"e":5001,"s":1}]]}],[1209,{"n":"Phiri","f":"Lebogang","fp":"MD","r":6,"c":14,"s":{"Og":1,"Os":112.5,"On":20,"Oa":5.63,"Od":1.01,"pm":20},"p":[[-28,{"n":5,"e":4796}],[-26,{"n":5,"e":4812}],[-25,{"n":6,"e":4824}],[-24,{"n":5.5,"e":4831}],[-23,{"n":5.5,"e":4847}],[-22,{"n":5.5,"e":4851}],[-21,{"n":4,"e":4865}],[-20,{"n":5.5,"e":4871}],[-19,{"n":7,"e":4880}],[-18,{"n":5,"e":4891}],[-17,{"n":7,"e":4901,"g":1}],[-16,{"n":5.5,"e":4911}],[-15,{"n":5,"e":4922}],[-14,{"n":5.5,"e":4930}],[-13,{"n":8.5,"e":4940}],[-12,{"n":5,"e":4949}],[-11,{"n":6,"e":4965}],[-10,{"n":6.5,"e":4970}],[-9,{"n":5,"e":4982}],[-8,{"n":4.5,"e":4996}]]}],[1236,{"n":"Eboa Eboa","f":"Félix","fp":"DC","r":5,"c":14,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Os":49.5,"On":10,"Oa":4.95,"Od":1.48,"pd":9,"pm":1},"p":[[-28,{"n":4,"e":4796}],[-18,{"n":4,"e":4891}],[-17,{"n":7,"e":4901}],[-16,{"n":5.5,"e":4911}],[-13,{"n":6.5,"e":4940}],[-10,{"n":6,"e":4970,"s":1}],[-8,{"n":2,"e":4996}],[-7,{"n":5,"e":5001}],[2,{"n":4,"e":6569}],[1,{"n":5.5,"e":6584}]],"fo":[[6569,[{"t":"I"},{"t":"Y"}]]]}],[1257,{"n":"Pedro Rebocho","f":"","fp":"DL","r":10,"c":14,"s":{"s":31,"n":6,"a":5.17,"d":1.21,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.21,"Os":31,"On":6,"Oa":5.17,"Od":1.21,"pd":5,"pm":1},"p":[[6,{"n":5,"e":6532}],[5,{"n":6,"e":6541}],[4,{"n":7,"e":6555}],[3,{"n":3.5,"e":6562}],[2,{"n":5,"e":6569}],[1,{"n":4.5,"e":6584}]],"fo":[[6532,[{"t":"Y"}]]]}],[1421,{"n":"Pelé","f":"Bryan","fp":"MO","r":16,"c":14,"s":{"s":22.5,"n":5,"a":4.5,"d":0.61,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":6,"Os":140.5,"On":26,"Oa":5.4,"Od":1.25,"pm":20,"pa":6},"p":[[-28,{"n":5.5,"e":4796}],[-27,{"n":5.5,"e":4801}],[-26,{"n":5,"e":4812}],[-25,{"n":5,"e":4824}],[-24,{"n":7.5,"e":4831,"g":1}],[-23,{"n":6,"e":4847}],[-22,{"n":6.5,"e":4851,"g":1,"s":1}],[-21,{"n":4.5,"e":4865,"s":1}],[-20,{"n":5.5,"e":4871}],[-19,{"n":5,"e":4880,"s":1}],[-18,{"n":4.5,"e":4891,"s":1}],[-17,{"n":7,"e":4901,"s":1}],[-16,{"n":5,"e":4911,"s":1}],[-15,{"n":3.5,"e":4922}],[-14,{"n":6,"e":4930}],[-13,{"n":8,"e":4940,"g":2}],[-12,{"n":6,"e":4949}],[-10,{"n":8,"e":4970,"g":2}],[-9,{"n":6,"e":4982}],[-8,{"n":4.5,"e":4996,"s":1}],[-7,{"n":3.5,"e":5001}],[6,{"n":4.5,"e":6532,"s":1}],[5,{"n":5,"e":6541,"s":1}],[3,{"n":4.5,"e":6562}],[2,{"n":5,"e":6569}],[1,{"n":3.5,"e":6584}]]}],[1422,{"n":"Fofana","f":"Guessouma","fp":"MD","r":7,"c":14,"s":{"s":24.5,"n":5,"a":4.9,"d":0.42,"Ss":20,"Sn":4,"Sa":5,"Sd":0.41,"Og":1,"Os":101.5,"On":21,"Oa":4.83,"Od":0.78,"pm":21},"p":[[-28,{"n":4.5,"e":4789}],[-26,{"n":3.5,"e":4808}],[-25,{"n":5,"e":4822}],[-24,{"n":3.5,"e":4836}],[-22,{"n":5,"e":4853}],[-21,{"n":5.5,"e":4867}],[-20,{"n":4,"e":4872}],[-18,{"n":5,"e":4892}],[-17,{"n":4.5,"e":4906}],[-16,{"n":5,"e":4912}],[-15,{"n":4.5,"e":4919}],[-13,{"n":5.5,"e":4942}],[-12,{"n":7,"e":4950,"g":1}],[-11,{"n":5,"e":4967}],[-10,{"n":5.5,"e":4971}],[-9,{"n":4,"e":4982}],[6,{"n":4.5,"e":6532}],[5,{"n":5.5,"e":6541}],[4,{"n":5,"e":6555}],[3,{"n":5,"e":6562,"s":1}],[1,{"n":4.5,"e":6584,"s":1}]]}],[2138,{"n":"N'Gbakoto","f":"Yeni","fp":"A","r":13,"c":14,"s":{"g":1,"s":31.5,"n":6,"a":5.25,"d":1.21,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.21,"Og":3,"Os":106.5,"On":21,"Oa":5.07,"Od":0.97,"pm":9,"pa":12},"p":[[-27,{"n":4,"e":4801,"s":1}],[-26,{"n":4.5,"e":4812,"s":1}],[-25,{"n":4.5,"e":4824,"s":1}],[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":4.5,"e":4847,"s":1}],[-21,{"n":4.5,"e":4865,"s":1}],[-20,{"n":5,"e":4871,"s":1}],[-18,{"n":4.5,"e":4891}],[-16,{"n":7,"e":4911,"g":1}],[-15,{"n":5,"e":4922,"s":1}],[-11,{"n":5,"e":4965}],[-10,{"n":5.5,"e":4970}],[-9,{"n":7,"e":4982,"g":1}],[-8,{"n":4.5,"e":4996,"s":1}],[-7,{"n":4.5,"e":5001,"s":1}],[6,{"n":5,"e":6532}],[5,{"n":7,"e":6541,"g":1}],[4,{"n":4.5,"e":6555,"s":1}],[3,{"n":4.5,"e":6562}],[2,{"n":6.5,"e":6569}],[1,{"n":4,"e":6584}]]}],[2157,{"n":"Taha","f":"Ervin","fp":"A","r":3,"c":14}],[2234,{"n":"Paul-Georges Ntep","f":"","fp":"A","r":7,"c":14,"s":{"s":13.5,"n":3,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":13.5,"On":3,"Oa":4.5,"pa":3},"p":[[6,{"n":4.5,"e":6532,"s":1}],[2,{"n":4.5,"e":6569,"s":1}],[1,{"n":4.5,"e":6584,"s":1}]]}],[2619,{"n":"Valdivia","f":"Pierrick","fp":"MD","r":3,"c":14,"s":{"Os":80.5,"On":16,"Oa":5.03,"Od":0.74,"pm":16},"p":[[-24,{"n":4.5,"e":4831}],[-23,{"n":5.5,"e":4847}],[-22,{"n":5,"e":4851,"s":1}],[-21,{"n":4,"e":4865}],[-20,{"n":4.5,"e":4871}],[-19,{"n":7,"e":4880}],[-18,{"n":4.5,"e":4891}],[-17,{"n":6,"e":4901}],[-16,{"n":4.5,"e":4911}],[-15,{"n":5,"e":4922}],[-14,{"n":5,"e":4930,"s":1}],[-13,{"n":5.5,"e":4940,"s":1}],[-11,{"n":5,"e":4965,"s":1}],[-9,{"n":4.5,"e":4982}],[-8,{"n":4.5,"e":4996}],[-7,{"n":5.5,"e":5001}]]}],[2662,{"n":"Romao","f":"Jacques-Alaixys","fp":"MD","r":12,"c":14,"s":{"s":23,"n":5,"a":4.6,"d":0.42,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.42,"Os":111.5,"On":23,"Oa":4.85,"Od":0.76,"pm":23},"p":[[-27,{"n":5.5,"e":3662}],[-25,{"n":5,"e":3686,"s":1}],[-24,{"n":5,"e":3697}],[-22,{"n":6,"e":3709}],[-21,{"n":4.5,"e":3726}],[-20,{"n":3.5,"e":3733}],[-18,{"n":5,"e":3757}],[-15,{"n":4.5,"e":3785}],[-14,{"n":5,"e":3794}],[-13,{"n":5,"e":3805}],[-12,{"n":4,"e":3814}],[-11,{"n":4,"e":3824}],[-10,{"n":6.5,"e":3836}],[-9,{"n":6.5,"e":3845}],[-6,{"n":5,"e":3875}],[-5,{"n":4.5,"e":3885}],[-28,{"n":5,"e":3654}],[-8,{"n":4,"e":3856}],[6,{"n":4.5,"e":6532}],[5,{"n":5,"e":6541}],[4,{"n":4.5,"e":6555}],[3,{"n":4,"e":6562}],[2,{"n":5,"e":6569,"s":1}]]}],[2772,{"n":"Koita","f":"Djegui","fp":"DC","r":1,"c":14}],[2943,{"n":"Ako","f":"Steven","fp":"DL","r":1,"c":14}],[2949,{"n":"Phaeton","f":"Matthias","fp":"MO","r":4,"c":14,"s":{"g":2,"s":25,"n":5,"a":5,"d":0.94,"Sg":2,"Ss":25,"Sn":5,"Sa":5,"Sd":0.94,"Og":2,"Os":25,"On":5,"Oa":5,"Od":0.94,"pa":5},"p":[[6,{"n":4.5,"e":6532,"s":1}],[5,{"n":4.5,"e":6541,"s":1}],[4,{"n":4,"e":6555,"s":1}],[3,{"n":6,"e":6562,"g":1,"s":1}],[2,{"n":6,"e":6569,"g":1,"s":1}]]}],[4851,{"n":"Mellot","f":"Jeremy","fp":"DC","r":11,"c":14,"s":{"ao":1,"s":28.5,"n":6,"a":4.75,"d":0.99,"Sao":1,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.99,"Oao":1,"Os":138.5,"On":27,"Oa":5.13,"Od":0.86,"pd":25,"pm":2},"p":[[-28,{"n":4.5,"e":4796}],[-27,{"n":4,"e":4801}],[-26,{"n":5,"e":4812}],[-25,{"n":6,"e":4824}],[-24,{"n":6,"e":4831}],[-23,{"n":6,"e":4847}],[-22,{"n":6,"e":4851}],[-21,{"n":4.5,"e":4865}],[-20,{"n":5.5,"e":4871}],[-19,{"n":5,"e":4880}],[-18,{"n":5,"e":4891}],[-17,{"n":7,"e":4901}],[-16,{"n":5.5,"e":4911}],[-14,{"n":4.5,"e":4930}],[-13,{"n":6,"e":4940}],[-12,{"n":4,"e":4949}],[-11,{"n":5,"e":4965}],[-10,{"n":6,"e":4970}],[-9,{"n":5,"e":4982}],[-8,{"n":4,"e":4996}],[-7,{"n":5.5,"e":5001}],[6,{"n":5,"e":6532}],[5,{"n":6,"e":6541}],[4,{"n":5,"e":6555}],[3,{"n":3,"e":6562,"a":1}],[2,{"n":4.5,"e":6569}],[1,{"n":5,"e":6584,"s":1}]],"fo":[[6562,[{"t":"Y"}]]]}],[4884,{"n":"Carnot","f":"Louis","fp":"MD","r":9,"c":14,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Os":33,"On":7,"Oa":4.71,"Od":0.64,"pm":7},"p":[[-27,{"n":5.5,"e":4801}],[-25,{"n":5,"e":4824,"s":1}],[-24,{"n":5,"e":4831,"s":1}],[-22,{"n":4.5,"e":4851}],[5,{"n":5,"e":6541,"s":1}],[2,{"n":4.5,"e":6569}],[1,{"n":3.5,"e":6584}]]}],[5006,{"n":"Niakaté","f":"Sikou","fp":"DC","r":13,"c":14,"s":{"s":28.5,"n":6,"a":4.75,"d":0.94,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.94,"Og":1,"Os":130,"On":26,"Oa":5,"Od":1.14,"pd":26},"p":[[-28,{"n":5,"e":4796}],[-27,{"n":4,"e":4801}],[-25,{"n":5.5,"e":4824}],[-24,{"n":6,"e":4831}],[-23,{"n":5.5,"e":4847}],[-22,{"n":6,"e":4851}],[-21,{"n":3,"e":4865}],[-20,{"n":5.5,"e":4871}],[-19,{"n":6,"e":4880}],[-18,{"n":5,"e":4891}],[-17,{"n":5.5,"e":4901}],[-16,{"n":5.5,"e":4911}],[-15,{"n":3.5,"e":4922}],[-14,{"n":5,"e":4930}],[-12,{"n":4,"e":4949}],[-11,{"n":6,"e":4965}],[-10,{"n":7,"e":4970,"g":1}],[-9,{"n":6,"e":4982}],[-8,{"n":2,"e":4996}],[-7,{"n":5.5,"e":5001}],[6,{"n":5.5,"e":6532}],[5,{"n":6,"e":6541}],[4,{"n":4.5,"e":6555}],[3,{"n":4,"e":6562}],[2,{"n":5,"e":6569}],[1,{"n":3.5,"e":6584}]],"fo":[[6532,[{"t":"Y"}]],[6541,[{"t":"Y"}]],[6562,[{"t":"Y"}]],[6584,[{"t":"Y"}]]]}],[5010,{"n":"Gomis","f":"Yannick","fp":"A","r":15,"c":14,"s":{"g":2,"s":28,"n":6,"a":4.67,"d":0.88,"Sg":2,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.88,"Og":7,"Os":135.5,"On":27,"Oa":5.02,"Od":0.98,"pm":3,"pa":24},"p":[[-28,{"n":5,"e":4796}],[-27,{"n":4,"e":4801}],[-26,{"n":6.5,"e":4812,"g":1}],[-25,{"n":5,"e":4824}],[-24,{"n":4,"e":4831}],[-23,{"n":5,"e":4847,"s":1}],[-22,{"n":5,"e":4851}],[-21,{"n":5,"e":4865}],[-20,{"n":4.5,"e":4871,"s":1}],[-19,{"n":6,"e":4880,"g":1,"s":1}],[-18,{"n":4,"e":4891,"s":1}],[-17,{"n":5,"e":4901,"s":1}],[-15,{"n":4.5,"e":4922}],[-14,{"n":4,"e":4930}],[-13,{"n":8,"e":4940,"g":2}],[-12,{"n":4.5,"e":4949}],[-11,{"n":5,"e":4965}],[-10,{"n":6,"e":4970}],[-9,{"n":6,"e":4982}],[-8,{"n":6,"e":4996,"g":1}],[-7,{"n":4.5,"e":5001}],[6,{"n":4,"e":6532}],[5,{"n":4,"e":6541}],[4,{"n":5.5,"e":6555,"g":1}],[3,{"n":4.5,"e":6562}],[2,{"n":6,"e":6569,"g":1}],[1,{"n":4,"e":6584}]]}],[5145,{"n":"M'Changama","f":"Youssouf","fp":"MD","r":23,"c":14,"s":{"s":33,"n":6,"a":5.5,"d":0.71,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.71,"Og":2,"Os":166,"On":28,"Oa":5.93,"Od":0.91,"pm":24,"pa":4},"p":[[-28,{"n":6,"e":4796}],[-27,{"n":5.5,"e":4801}],[-26,{"n":4.5,"e":4812}],[-25,{"n":7,"e":4824}],[-24,{"n":7,"e":4831,"g":1}],[-23,{"n":6,"e":4847}],[-22,{"n":5,"e":4851}],[-21,{"n":5,"e":4865}],[-20,{"n":7,"e":4871,"g":1}],[-19,{"n":8,"e":4880}],[-18,{"n":6,"e":4891}],[-17,{"n":7,"e":4901}],[-16,{"n":7,"e":4911}],[-15,{"n":5.5,"e":4922,"s":1}],[-14,{"n":6,"e":4930}],[-13,{"n":7.5,"e":4940}],[-12,{"n":5,"e":4949}],[-11,{"n":6,"e":4965}],[-10,{"n":5.5,"e":4970}],[-9,{"n":5.5,"e":4982}],[-8,{"n":5,"e":4996}],[-7,{"n":6,"e":5001}],[6,{"n":4.5,"e":6532}],[5,{"n":5.5,"e":6541}],[4,{"n":6,"e":6555}],[3,{"n":5.5,"e":6562}],[2,{"n":6.5,"e":6569}],[1,{"n":5,"e":6584}]],"a":{"m":32,"a":35,"M":39,"n":5}}],[5147,{"n":"Ba","f":"El-Hadji","fp":"MD","r":5,"c":14,"s":{"Os":35.5,"On":7,"Oa":5.07,"Od":0.35,"pm":7},"p":[[-28,{"n":5.5,"e":4796}],[-27,{"n":5,"e":4801}],[-26,{"n":4.5,"e":4812}],[-25,{"n":5,"e":4824}],[-22,{"n":5.5,"e":4851}],[-19,{"n":5,"e":4880}],[-17,{"n":5,"e":4901,"s":1}]]}],[5362,{"n":"Anne","f":"Souleymane","fp":"A","r":1,"c":14}],[5364,{"n":"Youfeigane","f":"Dominique","fp":"G","r":1,"c":14}],[6187,{"n":"Palun","f":"Lloyd","fp":"DL","r":7,"c":14,"s":{"Os":56,"On":12,"Oa":4.67,"Od":0.58,"pd":11,"pm":1},"p":[[-27,{"n":4.5,"e":4801}],[-26,{"n":4,"e":4812}],[-25,{"n":5,"e":4824}],[-24,{"n":4.5,"e":4831}],[-23,{"n":5.5,"e":4847}],[-15,{"n":4,"e":4922}],[-13,{"n":5,"e":4940,"s":1}],[-12,{"n":3.5,"e":4949}],[-11,{"n":5,"e":4965}],[-10,{"n":5,"e":4970}],[-9,{"n":5,"e":4982}],[-7,{"n":5,"e":5001}]]}],[6210,{"n":"Pierrot","f":"Frantzdy","fp":"A","r":6,"c":14,"s":{"Og":7,"Os":91.5,"On":18,"Oa":5.08,"Od":1.66,"pa":18},"p":[[-24,{"n":5,"e":4831,"s":1}],[-23,{"n":4,"e":4847}],[-22,{"n":4.5,"e":4851,"s":1}],[-21,{"n":3.5,"e":4865}],[-20,{"n":4,"e":4871}],[-19,{"n":7,"e":4880,"g":1}],[-18,{"n":4,"e":4891}],[-17,{"n":8,"e":4901,"g":2}],[-16,{"n":5,"e":4911}],[-15,{"n":3,"e":4922}],[-14,{"n":4.5,"e":4930}],[-13,{"n":7,"e":4940,"g":1}],[-12,{"n":4,"e":4949}],[-11,{"n":4.5,"e":4965,"s":1}],[-10,{"n":8,"e":4970,"g":1}],[-9,{"n":7.5,"e":4982,"g":2,"s":1}],[-8,{"n":3,"e":4996}],[-7,{"n":5,"e":5001,"s":1}]]}],[6747,{"n":"Ndenbe","f":"Logan","fp":"DL","r":6,"c":14,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pd":2},"p":[[3,{"n":5,"e":6562,"s":1}],[1,{"n":5,"e":6584,"s":1}]]}],[6759,{"n":"Philipe Sampaio","f":"","fp":"DC","r":7,"c":14,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[1,{"n":5,"e":6584}]]}],[6761,{"n":"Basilio","f":"Enzo","fp":"G","r":7,"c":14}],[6765,{"n":"Larsen","f":"Nicolai","fp":"G","r":15,"c":14,"s":{"s":31,"n":6,"a":5.17,"d":1.21,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.21,"Os":31,"On":6,"Oa":5.17,"Od":1.21,"pg":6},"p":[[6,{"n":5,"e":6532}],[5,{"n":6.5,"e":6541}],[4,{"n":6,"e":6555}],[3,{"n":3,"e":6562}],[2,{"n":5,"e":6569}],[1,{"n":5.5,"e":6584}]],"fo":[[6555,[{"t":"Y"}]]]}],[6823,{"n":"Urie","f":"Axel","fp":"A","r":1,"c":14}],[6824,{"n":"Cathline","f":"Yoann","fp":"MO","r":1,"c":14}],[7044,{"n":"Roux","f":"Baptiste","fp":"DC","r":1,"c":14,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":2},"p":[[5,{"n":5,"e":6541,"s":1}],[4,{"n":5.5,"e":6555,"s":1}]]}],[255,{"n":"Gorgelin","f":"Mathieu","fp":"G","r":19,"c":89,"s":{"s":33,"n":6,"a":5.5,"d":1.48,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.64,"Os":151.5,"On":28,"Oa":5.41,"Od":0.97,"pg":28},"p":[[6,{"n":3,"e":6534}],[5,{"n":6,"e":6542}],[4,{"n":5,"e":6553}],[1,{"n":6,"e":6587}],[-22,{"n":6,"e":4852}],[-21,{"n":7,"e":4862}],[-20,{"n":6,"e":4875}],[-13,{"n":5.5,"e":4944}],[-7,{"n":5.5,"e":5002}],[-28,{"n":6,"e":4793}],[-27,{"n":6.5,"e":4800}],[-26,{"n":5,"e":4813}],[-25,{"n":4.5,"e":4826}],[-24,{"n":4.5,"e":4832}],[-23,{"n":5.5,"e":4840}],[-19,{"n":5,"e":4885}],[-18,{"n":3.5,"e":4890}],[-17,{"n":6,"e":4906}],[-16,{"n":5.5,"e":4915}],[-15,{"n":6,"e":4922}],[-14,{"n":4.5,"e":4936}],[-12,{"n":5.5,"e":4957}],[-11,{"n":5,"e":4964}],[-10,{"n":4,"e":4968}],[-9,{"n":5.5,"e":4983}],[-8,{"n":6,"e":4994}],[3,{"n":5.5,"e":6562}],[2,{"n":7.5,"e":6573}]]}],[269,{"n":"Bazile","f":"Herve","fp":"A","r":9,"c":89,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Os":29,"On":6,"Oa":4.83,"Od":0.61,"pm":1,"pa":5},"p":[[-14,{"n":5,"e":4936,"s":1}],[-12,{"n":4.5,"e":4957,"s":1}],[-10,{"n":4.5,"e":4968,"s":1}],[-8,{"n":4.5,"e":4994,"s":1}],[2,{"n":6,"e":6573}],[1,{"n":4.5,"e":6587,"s":1}]]}],[1249,{"n":"Dzabana","f":"Alan","fp":"A","r":1,"c":89,"s":{"Og":1,"Os":23.5,"On":5,"Oa":4.7,"Od":0.84,"pa":5},"p":[[-26,{"n":4,"e":4813,"s":1}],[-19,{"n":4,"e":4885,"s":1}],[-18,{"n":5,"e":4890,"s":1}],[-17,{"n":6,"e":4906,"g":1}],[-13,{"n":4.5,"e":4944,"s":1}]]}],[1453,{"n":"Cornette","f":"Quentin","fp":"MO","r":7,"c":89,"s":{"s":27,"n":5,"a":5.4,"d":0.55,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.55,"Os":84,"On":17,"Oa":4.94,"Od":0.75,"pm":6,"pa":11},"p":[[-26,{"n":4,"e":3677,"s":1}],[-25,{"n":6,"e":3678,"s":1}],[-24,{"n":4.5,"e":3688,"s":1}],[-23,{"n":4.5,"e":3704,"s":1}],[-22,{"n":5,"e":3708}],[-21,{"n":4.5,"e":3718}],[-19,{"n":4.5,"e":3744,"s":1}],[-18,{"n":4.5,"e":3748,"s":1}],[-17,{"n":4.5,"e":3760,"s":1}],[-15,{"n":4,"e":3781,"s":1}],[-8,{"n":6.5,"e":3848}],[-7,{"n":4.5,"e":3858,"s":1}],[6,{"n":5,"e":6534}],[5,{"n":6,"e":6542}],[4,{"n":5,"e":6553}],[3,{"n":6,"e":6562}],[2,{"n":5,"e":6573,"s":1}]],"fo":[[6542,[{"t":"Y"}]]]}],[2708,{"n":"Mbemba","f":"Nolan","fp":"MD","r":7,"c":89,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Os":13,"On":3,"Oa":4.33,"Od":0.76,"pm":3},"p":[[4,{"n":5,"e":6553}],[2,{"n":3.5,"e":6573}],[1,{"n":4.5,"e":6587}]],"fo":[[6553,[{"t":"R"}]],[6573,[{"t":"Y"},{"t":"O"}]]]}],[4891,{"n":"Abdelli","f":"Himad","fp":"MO","r":10,"c":89,"s":{"s":30,"n":6,"a":5,"d":0.55,"Ss":30,"Sn":6,"Sa":5,"Sd":0.55,"Os":74.5,"On":15,"Oa":4.97,"Od":0.48,"pm":12,"pa":3},"p":[[-26,{"n":5,"e":4813,"s":1}],[-25,{"n":4.5,"e":4826,"s":1}],[-24,{"n":5.5,"e":4832}],[-23,{"n":4,"e":4840}],[-22,{"n":5,"e":4852,"s":1}],[-20,{"n":5,"e":4875}],[-19,{"n":5,"e":4885,"s":1}],[-18,{"n":5,"e":4890,"s":1}],[-7,{"n":5.5,"e":5002,"s":1}],[6,{"n":4,"e":6534}],[5,{"n":5,"e":6542}],[4,{"n":5.5,"e":6553,"s":1}],[3,{"n":5,"e":6562}],[2,{"n":5,"e":6573}],[1,{"n":5.5,"e":6587}]]}],[4951,{"n":"Yahia Fofana","f":"","fp":"G","r":7,"c":89}],[4976,{"n":"Basque","f":"Romain","fp":"MD","r":12,"c":89,"s":{"s":29.5,"n":6,"a":4.92,"d":0.74,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.74,"Os":109.5,"On":21,"Oa":5.21,"Od":0.7,"pd":5,"pm":16},"p":[[-28,{"n":5.5,"e":4793}],[-27,{"n":6,"e":4800}],[-25,{"n":5,"e":4826}],[-24,{"n":6,"e":4832}],[-22,{"n":4.5,"e":4852,"s":1}],[-20,{"n":5,"e":4875,"s":1}],[-18,{"n":5.5,"e":4890}],[-17,{"n":5.5,"e":4906}],[-16,{"n":4.5,"e":4915}],[-15,{"n":5,"e":4922,"s":1}],[-14,{"n":5.5,"e":4936}],[-13,{"n":7,"e":4944}],[-12,{"n":5.5,"e":4957}],[-11,{"n":5,"e":4964,"s":1}],[-10,{"n":4.5,"e":4968,"s":1}],[6,{"n":4.5,"e":6534}],[5,{"n":5.5,"e":6542}],[4,{"n":4.5,"e":6553}],[3,{"n":4,"e":6562}],[2,{"n":6,"e":6573}],[1,{"n":5,"e":6587}]]}],[4992,{"n":"Yacouba Coulibaly","f":"","fp":"DL","r":5,"c":89,"s":{"Os":44.5,"On":9,"Oa":4.94,"Od":0.46,"pd":9},"p":[[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":5,"e":4810}],[-24,{"n":5,"e":4829}],[-23,{"n":5,"e":4845}],[-21,{"n":4.5,"e":4866}],[-20,{"n":6,"e":4877}],[-18,{"n":4.5,"e":4890}],[-17,{"n":4.5,"e":4906}],[-16,{"n":5,"e":4915}],[-15,{"n":5,"e":4922}]]}],[4995,{"n":"Mayembo","f":"Fernand","fp":"DC","r":11,"c":89,"s":{"s":21,"n":4,"a":5.25,"d":0.5,"Os":85,"On":16,"Oa":5.31,"Od":0.83,"pd":16},"p":[[-27,{"n":6,"e":4800}],[-25,{"n":4,"e":4826}],[-24,{"n":5,"e":4832}],[-23,{"n":6.5,"e":4840}],[-22,{"n":5,"e":4852}],[-21,{"n":5.5,"e":4862}],[-17,{"n":6,"e":4906}],[-16,{"n":5,"e":4915}],[-15,{"n":7,"e":4922}],[-14,{"n":4,"e":4936}],[-12,{"n":5.5,"e":4957}],[-11,{"n":4.5,"e":4964}],[4,{"n":5,"e":6553}],[3,{"n":5,"e":6562}],[2,{"n":6,"e":6573}],[1,{"n":5,"e":6587,"s":1}]],"fo":[[6553,[{"t":"Y"}]],[6562,[{"t":"Y"}]]]}],[5119,{"n":"Lekhal","f":"Victor","fp":"MD","r":12,"c":89,"s":{"s":20,"n":4,"a":5,"d":0.91,"Os":73.5,"On":13,"Oa":5.65,"Od":0.97,"pd":1,"pm":12},"p":[[-28,{"n":6,"e":4793}],[-27,{"n":6.5,"e":4800}],[-26,{"n":5.5,"e":4813}],[-25,{"n":5,"e":4826}],[-24,{"n":4.5,"e":4832}],[-23,{"n":5.5,"e":4840}],[-22,{"n":6.5,"e":4852}],[-21,{"n":7,"e":4862}],[-20,{"n":7,"e":4875}],[4,{"n":4.5,"e":6553}],[3,{"n":5.5,"e":6562}],[2,{"n":6,"e":6573}],[1,{"n":4,"e":6587}]],"fo":[[6562,[{"t":"Y"}]]]}],[5120,{"n":"Thiare","f":"Jamal","fp":"A","r":14,"c":89,"s":{"g":2,"s":30.5,"n":6,"a":5.08,"d":1.53,"Sg":2,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":1.53,"Og":9,"Os":136.5,"On":26,"Oa":5.25,"Od":1.34,"pa":26},"p":[[-28,{"n":4.5,"e":4793}],[-27,{"n":8,"e":4800,"g":1}],[-26,{"n":4.5,"e":4813}],[-25,{"n":4,"e":4826}],[-24,{"n":6.5,"e":4832,"g":1}],[-23,{"n":6,"e":4840,"g":1}],[-22,{"n":4.5,"e":4852,"s":1}],[-21,{"n":4.5,"e":4862,"s":1}],[-18,{"n":4,"e":4890,"s":1}],[-17,{"n":6.5,"e":4906,"g":1,"s":1}],[-16,{"n":6,"e":4915,"s":1}],[-15,{"n":7,"e":4922,"g":1,"s":1}],[-14,{"n":4.5,"e":4936}],[-13,{"n":4.5,"e":4944}],[-12,{"n":5,"e":4957}],[-11,{"n":6.5,"e":4964,"g":1}],[-10,{"n":4.5,"e":4968}],[-9,{"n":4,"e":4983}],[-8,{"n":7.5,"e":4994,"g":1}],[-7,{"n":3.5,"e":5002}],[6,{"n":3.5,"e":6534}],[5,{"n":5,"e":6542}],[4,{"n":5,"e":6553}],[3,{"n":8,"e":6562,"g":2}],[2,{"n":4.5,"e":6573}],[1,{"n":4.5,"e":6587}]],"fo":[[6553,[{"t":"Y"}]]],"a":{"m":33,"a":42,"M":71,"n":5}}],[5182,{"n":"Gibaud","f":"Pierre","fp":"DL","r":8,"c":89,"s":{"g":1,"s":20,"n":4,"a":5,"d":1.63,"Sg":1,"Ss":20,"Sn":4,"Sa":5,"Sd":1.63,"Og":1,"Os":119.5,"On":24,"Oa":4.98,"Od":0.97,"pd":23,"pm":1},"p":[[-28,{"n":4,"e":4792}],[-27,{"n":5,"e":4799}],[-26,{"n":5,"e":4811}],[-25,{"n":4.5,"e":4821}],[-24,{"n":5.5,"e":4833}],[-23,{"n":4,"e":4840}],[-22,{"n":6.5,"e":4857}],[-21,{"n":4,"e":4861}],[-20,{"n":3,"e":4868}],[-19,{"n":5.5,"e":4881}],[-18,{"n":4.5,"e":4896}],[-17,{"n":5,"e":4907}],[-14,{"n":5,"e":4931}],[-13,{"n":5.5,"e":4943}],[-12,{"n":6,"e":4948}],[-11,{"n":5,"e":4963}],[-10,{"n":6,"e":4977}],[-9,{"n":5,"e":4981}],[-8,{"n":4.5,"e":4990}],[-7,{"n":6,"e":5004}],[6,{"n":3,"e":6534}],[5,{"n":7,"e":6542,"g":1}],[4,{"n":5,"e":6553,"s":1}],[3,{"n":5,"e":6562,"s":1}]],"fo":[[6534,[{"t":"Y"}]]]}],[5203,{"n":"Fontaine","f":"Jean-Pascal","fp":"MD","r":13,"c":89,"s":{"s":25,"n":5,"a":5,"d":1.22,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.26,"Og":2,"Os":124,"On":23,"Oa":5.39,"Od":1.07,"pm":22,"pa":1},"p":[[-28,{"n":4.5,"e":4793}],[-27,{"n":5,"e":4800}],[-26,{"n":6.5,"e":4813,"g":1}],[-25,{"n":5.5,"e":4826}],[-23,{"n":4.5,"e":4840}],[-22,{"n":6,"e":4852}],[-21,{"n":6.5,"e":4862}],[-20,{"n":7,"e":4875}],[-19,{"n":4,"e":4885}],[-16,{"n":5.5,"e":4915}],[-15,{"n":8,"e":4922,"g":1}],[-14,{"n":5,"e":4936}],[-12,{"n":5.5,"e":4957,"s":1}],[-11,{"n":5,"e":4964}],[-10,{"n":4.5,"e":4968}],[-9,{"n":6,"e":4983}],[-8,{"n":4.5,"e":4994}],[-7,{"n":5.5,"e":5002}],[6,{"n":4,"e":6534}],[5,{"n":7,"e":6542}],[4,{"n":5,"e":6553}],[3,{"n":5,"e":6562}],[1,{"n":4,"e":6587}]],"fo":[[6587,[{"t":"Y"},{"t":"O"}]]]}],[5216,{"n":"Bonnet","f":"Alexandre","fp":"MO","r":6,"c":89,"s":{"s":18.5,"n":4,"a":4.63,"d":0.85,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.85,"Os":100,"On":20,"Oa":5,"Od":0.51,"pm":17,"pa":3},"p":[[-28,{"n":4.5,"e":4793,"s":1}],[-27,{"n":5,"e":4800,"s":1}],[-26,{"n":5,"e":4813,"s":1}],[-25,{"n":5,"e":4826}],[-24,{"n":5,"e":4832}],[-23,{"n":5.5,"e":4840,"s":1}],[-20,{"n":5,"e":4875,"s":1}],[-19,{"n":5,"e":4885}],[-17,{"n":5,"e":4906,"s":1}],[-16,{"n":5.5,"e":4915,"s":1}],[-12,{"n":6,"e":4957}],[-11,{"n":5,"e":4964}],[-10,{"n":5,"e":4968}],[-9,{"n":5,"e":4983,"s":1}],[-8,{"n":4.5,"e":4994}],[-7,{"n":5.5,"e":5002}],[6,{"n":3.5,"e":6534,"s":1}],[5,{"n":5,"e":6542,"s":1}],[4,{"n":4.5,"e":6553,"s":1}],[3,{"n":5.5,"e":6562}]],"fo":[[6562,[{"t":"Y"}]]]}],[5349,{"n":"Meddah","f":"Daylam","fp":"MD","r":1,"c":89}],[5350,{"n":"Konate","f":"Ateef","fp":"MD","r":1,"c":89}],[5351,{"n":"Woyo Coulibaly","f":"","fp":"DC","r":8,"c":89,"s":{"s":29,"n":6,"a":4.83,"d":0.61,"Ss":29,"Sn":6,"Sa":4.83,"Sd":0.61,"Os":56.5,"On":12,"Oa":4.71,"Od":0.58,"pd":12},"p":[[-15,{"n":5,"e":4922,"s":1}],[-13,{"n":5,"e":4944,"s":1}],[-11,{"n":3.5,"e":4964}],[-10,{"n":4.5,"e":4968}],[-9,{"n":5,"e":4983,"s":1}],[-8,{"n":4.5,"e":4994,"s":1}],[6,{"n":4,"e":6534}],[5,{"n":5.5,"e":6542}],[4,{"n":4.5,"e":6553}],[3,{"n":5,"e":6562}],[2,{"n":5.5,"e":6573}],[1,{"n":4.5,"e":6587}]],"fo":[[6562,[{"t":"Y"}]]]}],[6185,{"n":"Ben Mohamed","f":"Ayman","fp":"DL","r":11,"c":89,"s":{"s":31,"n":6,"a":5.17,"d":1.13,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.13,"Os":101.5,"On":21,"Oa":4.83,"Od":1.02,"pd":8,"pm":7,"pa":6},"p":[[-26,{"n":4.5,"e":4813}],[-24,{"n":4.5,"e":4832,"s":1}],[-20,{"n":6,"e":4875}],[-19,{"n":3.5,"e":4885}],[-18,{"n":3.5,"e":4890}],[-17,{"n":4.5,"e":4906}],[-16,{"n":4.5,"e":4915}],[-15,{"n":7,"e":4922}],[-14,{"n":4.5,"e":4936,"s":1}],[-13,{"n":5,"e":4944}],[-12,{"n":4.5,"e":4957,"s":1}],[-11,{"n":4.5,"e":4964,"s":1}],[-9,{"n":3.5,"e":4983}],[-8,{"n":6,"e":4994,"s":1}],[-7,{"n":4.5,"e":5002,"s":1}],[6,{"n":4,"e":6534}],[5,{"n":6,"e":6542}],[4,{"n":4.5,"e":6553}],[3,{"n":6.5,"e":6562}],[2,{"n":6,"e":6573}],[1,{"n":4,"e":6587}]],"fo":[[6542,[{"t":"Y"}]],[6562,[{"t":"Y"}]]]}],[6212,{"n":"Ersoy","f":"Ertugrul","fp":"DC","r":10,"c":89,"s":{"s":14.5,"n":3,"a":4.83,"d":1.89,"Ss":11,"Sn":2,"Sa":5.5,"Sd":2.12,"Os":117.5,"On":23,"Oa":5.11,"Od":1.2,"pd":23},"p":[[-28,{"n":6,"e":4793}],[-27,{"n":6.5,"e":4800}],[-26,{"n":4.5,"e":4813}],[-24,{"n":4,"e":4832}],[-23,{"n":5.5,"e":4840}],[-22,{"n":5.5,"e":4852}],[-21,{"n":6,"e":4862}],[-20,{"n":5.5,"e":4875}],[-19,{"n":5,"e":4885}],[-18,{"n":4,"e":4890}],[-17,{"n":6,"e":4906}],[-16,{"n":5.5,"e":4915}],[-15,{"n":7.5,"e":4922}],[-14,{"n":3,"e":4936}],[-13,{"n":6,"e":4944}],[-12,{"n":5.5,"e":4957}],[-10,{"n":3.5,"e":4968}],[-9,{"n":4,"e":4983}],[-8,{"n":4,"e":4994}],[-7,{"n":5.5,"e":5002}],[6,{"n":4,"e":6534}],[5,{"n":7,"e":6542}],[1,{"n":3.5,"e":6587}]],"fo":[[6587,[{"t":"R"}]]]}],[6233,{"n":"Meras","f":"Umut","fp":"DL","r":15,"c":89,"s":{"s":18.5,"n":4,"a":4.63,"d":0.85,"Ss":8,"Sn":2,"Sa":4,"Sd":0.71,"Os":129.5,"On":25,"Oa":5.18,"Od":0.93,"pd":13,"pm":12},"p":[[-28,{"n":7,"e":4793}],[-27,{"n":7,"e":4800}],[-26,{"n":4.5,"e":4813}],[-25,{"n":4,"e":4826}],[-24,{"n":4.5,"e":4832}],[-23,{"n":5,"e":4840}],[-22,{"n":6,"e":4852}],[-21,{"n":5.5,"e":4862}],[-20,{"n":5.5,"e":4875}],[-19,{"n":3.5,"e":4885}],[-18,{"n":5,"e":4890}],[-17,{"n":5.5,"e":4906}],[-16,{"n":5.5,"e":4915}],[-15,{"n":7,"e":4922}],[-14,{"n":4.5,"e":4936}],[-13,{"n":5,"e":4944}],[-12,{"n":5,"e":4957}],[-11,{"n":6,"e":4964}],[-9,{"n":5,"e":4983}],[-8,{"n":5,"e":4994}],[-7,{"n":5,"e":5002}],[6,{"n":3.5,"e":6534}],[5,{"n":4.5,"e":6542}],[2,{"n":5.5,"e":6573}],[1,{"n":5,"e":6587}]]}],[6720,{"n":"Mahmoud","f":"Elies","fp":"MO","r":1,"c":89,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[6,{"n":4.5,"e":6534,"s":1}],[5,{"n":5,"e":6542,"s":1}]]}],[6721,{"n":"Mamadou Fofana","f":"","fp":"MD","r":3,"c":89,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":5,"Sn":1,"Sa":5,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":4},"p":[[6,{"n":5,"e":6534,"s":1}],[3,{"n":5,"e":6562,"s":1}],[2,{"n":4.5,"e":6573,"s":1}],[1,{"n":4.5,"e":6587,"s":1}]],"fo":[[6573,[{"t":"Y"}]]]}],[6722,{"n":"Sangante","f":"Arouna","fp":"DC","r":1,"c":89}],[6723,{"n":"Casimir","f":"Josué","fp":"A","r":1,"c":89}],[6814,{"n":"Curcija","f":"Nikola","fp":"G","r":1,"c":89}],[6849,{"n":"Alioui","f":"Nabil","fp":"A","r":5,"c":89,"s":{"s":13,"n":3,"a":4.33,"d":0.29,"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[5,{"n":4.5,"e":6542,"s":1}],[4,{"n":4,"e":6553}],[1,{"n":4.5,"e":6587,"s":1}]]}],[6907,{"n":"Fofana","f":"Mamadou","fp":"MD","r":1,"c":89}],[6908,{"n":"Bentil","f":"Godwin Kobby","fp":"A","r":3,"c":89,"s":{"s":13.5,"n":3,"a":4.5,"Ss":9,"Sn":2,"Sa":4.5,"Os":13.5,"On":3,"Oa":4.5,"pa":3},"p":[[6,{"n":4.5,"e":6534,"s":1}],[5,{"n":4.5,"e":6542,"s":1}],[3,{"n":4.5,"e":6562,"s":1}]]}],[7043,{"n":"Toure","f":"Souleymane","fp":"DC","r":1,"c":89}],[7242,{"n":"Gomes","f":"Ylan","fp":"A","r":1,"c":89}],[338,{"n":"El Kaoutari","f":"Abdelhamid","fp":"DC","r":11,"c":17,"s":{"s":29.5,"n":6,"a":4.92,"d":0.97,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Os":106,"On":21,"Oa":5.05,"Od":0.72,"pd":21},"p":[[6,{"n":5.5,"e":6535}],[4,{"n":6.5,"e":6554}],[3,{"n":5,"e":6563}],[-28,{"n":5,"e":4795}],[-21,{"n":4.5,"e":4864}],[-14,{"n":5,"e":4933}],[-12,{"n":5,"e":4952}],[-25,{"n":4.5,"e":4824}],[-24,{"n":5.5,"e":4835}],[-23,{"n":6,"e":4843}],[-20,{"n":6,"e":4874}],[-17,{"n":4.5,"e":4904}],[-16,{"n":5,"e":4914,"s":1}],[-15,{"n":6,"e":4921}],[-13,{"n":4,"e":4944}],[-11,{"n":5.5,"e":4958}],[-9,{"n":5.5,"e":4980}],[-7,{"n":4.5,"e":5001,"s":1}],[5,{"n":4.5,"e":6542}],[2,{"n":4,"e":6569}],[1,{"n":4,"e":6580}]]}],[417,{"n":"N'Guessan","f":"Serge","fp":"MD","r":5,"c":17,"s":{"Os":33.5,"On":7,"Oa":4.79,"Od":0.86,"pm":7},"p":[[-28,{"n":4.5,"e":4795}],[-27,{"n":5,"e":4803,"s":1}],[-26,{"n":3.5,"e":4809,"s":1}],[-25,{"n":5.5,"e":4824,"s":1}],[-24,{"n":5,"e":4835}],[-22,{"n":6,"e":4853}],[-21,{"n":4,"e":4864,"s":1}]]}],[522,{"n":"Rocha Santos","f":"Kenny","fp":"MO","r":12,"c":17,"s":{"s":26.5,"n":5,"a":5.3,"d":0.67,"Os":134,"On":26,"Oa":5.15,"Od":0.67,"pm":26},"p":[[-28,{"n":5,"e":4795}],[-27,{"n":5.5,"e":4803}],[-26,{"n":5,"e":4809,"s":1}],[-25,{"n":5,"e":4824}],[-24,{"n":5,"e":4835,"s":1}],[-23,{"n":4.5,"e":4843}],[-22,{"n":5,"e":4853,"s":1}],[-21,{"n":4.5,"e":4864}],[-20,{"n":6.5,"e":4874}],[-19,{"n":3.5,"e":4878}],[-18,{"n":5.5,"e":4894}],[-17,{"n":4.5,"e":4904}],[-16,{"n":6,"e":4914}],[-15,{"n":5,"e":4921}],[-14,{"n":5,"e":4933}],[-13,{"n":4.5,"e":4944,"s":1}],[-12,{"n":5.5,"e":4952}],[-11,{"n":5,"e":4958,"s":1}],[-9,{"n":5,"e":4980}],[-8,{"n":6.5,"e":4993}],[-7,{"n":5.5,"e":5001}],[5,{"n":5,"e":6542,"s":1}],[4,{"n":6,"e":6554,"s":1}],[3,{"n":5,"e":6563}],[2,{"n":6,"e":6569}],[1,{"n":4.5,"e":6580,"s":1}]],"fo":[[6563,[{"t":"Y"}]]]}],[1189,{"n":"Ciss","f":"Saliou","fp":"DL","r":10,"c":17,"s":{"s":23.5,"n":5,"a":4.7,"d":0.57,"Og":5,"Os":122.5,"On":23,"Oa":5.33,"Od":1.02,"pd":17,"pm":6},"p":[[-10,{"n":6.5,"e":4973,"g":1}],[-27,{"n":5,"e":4803}],[-26,{"n":4.5,"e":4809}],[-24,{"n":7,"e":4835,"g":1}],[-23,{"n":4.5,"e":4843}],[-22,{"n":7,"e":4853,"g":1}],[-21,{"n":4,"e":4864}],[-20,{"n":5,"e":4874}],[-19,{"n":6,"e":4878}],[-18,{"n":7,"e":4894,"g":1}],[-17,{"n":4.5,"e":4904}],[-16,{"n":7,"e":4914}],[-15,{"n":5,"e":4921}],[-14,{"n":4.5,"e":4933}],[-12,{"n":4.5,"e":4952}],[-11,{"n":5,"e":4958}],[-9,{"n":6,"e":4980,"g":1}],[-8,{"n":6,"e":4993}],[5,{"n":4,"e":6542}],[4,{"n":5.5,"e":6554}],[3,{"n":5,"e":6563}],[2,{"n":4.5,"e":6569}],[1,{"n":4.5,"e":6580}]],"fo":[[6554,[{"t":"Y"}]],[6569,[{"t":"Y"}]],[6580,[{"t":"Y"}]]]}],[1270,{"n":"Coulibaly","f":"Sega","fp":"DC","r":5,"c":17,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":19.5,"On":4,"Oa":4.88,"Od":0.25,"pd":4},"p":[[6,{"n":4.5,"e":6535}],[4,{"n":5,"e":6554,"s":1}],[3,{"n":5,"e":6563,"s":1}],[2,{"n":5,"e":6569,"s":1}]]}],[1407,{"n":"Seka","f":"Ernest","fp":"DC","r":11,"c":17,"s":{"s":25,"n":5,"a":5,"d":0.61,"Os":124.5,"On":24,"Oa":5.19,"Od":0.66,"pd":24},"p":[[-28,{"n":5.5,"e":4795}],[-27,{"n":4,"e":4803}],[-26,{"n":5,"e":4809}],[-24,{"n":4,"e":4835}],[-23,{"n":5,"e":4843}],[-22,{"n":5,"e":4853}],[-19,{"n":6.5,"e":4878}],[-18,{"n":5.5,"e":4894}],[-17,{"n":5,"e":4904}],[-16,{"n":6,"e":4914}],[-15,{"n":5,"e":4921}],[-14,{"n":5.5,"e":4933}],[-13,{"n":6,"e":4944}],[-12,{"n":4.5,"e":4952}],[-11,{"n":4.5,"e":4958}],[-10,{"n":5.5,"e":4973}],[-9,{"n":5.5,"e":4980}],[-8,{"n":6,"e":4993}],[-7,{"n":5.5,"e":5001}],[5,{"n":5,"e":6542}],[4,{"n":5.5,"e":6554}],[3,{"n":5.5,"e":6563}],[2,{"n":5,"e":6569}],[1,{"n":4,"e":6580}]],"fo":[[6554,[{"t":"Y"}]],[6569,[{"t":"Y"}]],[6580,[{"t":"Y"}]]]}],[2628,{"n":"Bertrand","f":"Dorian","fp":"A","r":10,"c":17,"s":{"s":28,"n":6,"a":4.67,"d":0.61,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.61,"Og":1,"Os":119.5,"On":26,"Oa":4.6,"Od":0.69,"pm":11,"pa":15},"p":[[-28,{"n":5,"e":4795}],[-27,{"n":4,"e":4803}],[-26,{"n":4.5,"e":4809}],[-25,{"n":5,"e":4824}],[-24,{"n":4,"e":4835,"s":1}],[-23,{"n":6,"e":4843,"g":1}],[-22,{"n":5,"e":4853}],[-19,{"n":4,"e":4878,"s":1}],[-18,{"n":5,"e":4894}],[-17,{"n":4,"e":4904,"s":1}],[-16,{"n":5.5,"e":4914}],[-15,{"n":6,"e":4921,"s":1}],[-14,{"n":4,"e":4933,"s":1}],[-13,{"n":4.5,"e":4944,"s":1}],[-12,{"n":4,"e":4952,"s":1}],[-11,{"n":3.5,"e":4958}],[-10,{"n":4.5,"e":4973,"s":1}],[-9,{"n":3.5,"e":4980,"s":1}],[-8,{"n":5,"e":4993,"s":1}],[-7,{"n":4.5,"e":5001,"s":1}],[6,{"n":5,"e":6535}],[5,{"n":5.5,"e":6542}],[4,{"n":5,"e":6554}],[3,{"n":4,"e":6563,"s":1}],[2,{"n":4.5,"e":6569}],[1,{"n":4,"e":6580,"s":1}]]}],[2729,{"n":"Valette","f":"Baptiste","fp":"G","r":16,"c":17,"s":{"s":21.5,"n":4,"a":5.38,"d":1.11,"Os":135.5,"On":25,"Oa":5.42,"Od":0.95,"pg":25},"p":[[-28,{"n":5.5,"e":4795}],[-27,{"n":4.5,"e":4803}],[-26,{"n":6,"e":4809}],[-25,{"n":6,"e":4824}],[-24,{"n":5,"e":4835}],[-23,{"n":5,"e":4843}],[-22,{"n":5,"e":4853}],[-21,{"n":5.5,"e":4864}],[-20,{"n":6,"e":4874}],[-18,{"n":5,"e":4894}],[-17,{"n":4.5,"e":4904}],[-16,{"n":6.5,"e":4914}],[-15,{"n":5,"e":4921}],[-14,{"n":6.5,"e":4933}],[-13,{"n":8,"e":4944}],[-12,{"n":6,"e":4952}],[-11,{"n":6,"e":4958}],[-10,{"n":4,"e":4973}],[-9,{"n":4,"e":4980}],[-8,{"n":5.5,"e":4993}],[-7,{"n":4.5,"e":5001}],[4,{"n":6,"e":6554}],[3,{"n":5,"e":6563}],[2,{"n":4,"e":6569}],[1,{"n":6.5,"e":6580}]],"fo":[[6554,[{"t":"I"}]]]}],[2732,{"n":"Sourzac","f":"Martin","fp":"G","r":7,"c":17,"s":{"s":15,"n":3,"a":5,"Ss":15,"Sn":3,"Sa":5,"Os":22.5,"On":4,"Oa":5.63,"Od":1.25,"pg":4},"p":[[-19,{"n":7.5,"e":4878}],[6,{"n":5,"e":6535}],[5,{"n":5,"e":6542}],[4,{"n":5,"e":6554,"s":1}]]}],[3124,{"n":"Merghem","f":"Mehdi","fp":"MO","r":6,"c":17,"s":{"Og":1,"Os":47,"On":9,"Oa":5.22,"Od":0.36,"pm":9},"p":[[-28,{"n":5.5,"e":4796,"s":1}],[-27,{"n":5,"e":4801,"s":1}],[-17,{"n":5,"e":4901}],[-14,{"n":5,"e":4930,"s":1}],[-12,{"n":5,"e":4949,"s":1}],[-11,{"n":5,"e":4965}],[-10,{"n":5.5,"e":4970,"s":1}],[-9,{"n":5,"e":4982,"s":1}],[-7,{"n":6,"e":5001,"g":1}]]}],[4872,{"n":"Triboulet","f":"Vinni","fp":"MO","r":8,"c":17,"s":{"s":27,"n":6,"a":4.5,"d":1.1,"Ss":27,"Sn":6,"Sa":4.5,"Sd":1.1,"Os":27,"On":6,"Oa":4.5,"Od":1.1,"pa":6},"p":[[6,{"n":5.5,"e":6535,"s":1}],[5,{"n":4.5,"e":6542}],[4,{"n":6,"e":6554}],[3,{"n":4,"e":6563}],[2,{"n":4,"e":6569}],[1,{"n":3,"e":6580}]]}],[4876,{"n":"Haag","f":"Giovanni","fp":"DC","r":4,"c":17,"s":{"s":25.5,"n":5,"a":5.1,"d":0.55,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.58,"Os":25.5,"On":5,"Oa":5.1,"Od":0.55,"pd":1,"pm":4},"p":[[6,{"n":5,"e":6535}],[5,{"n":5,"e":6542}],[4,{"n":6,"e":6554}],[2,{"n":5,"e":6569,"s":1}],[1,{"n":4.5,"e":6580}]],"fo":[[6542,[{"t":"I"}]],[6554,[{"t":"Y"}]]]}],[4899,{"n":"Bassouamina","f":"Mons","fp":"A","r":1,"c":17}],[4939,{"n":"Constant","f":"Hugo","fp":"G","r":1,"c":17}],[4961,{"n":"Barka","f":"Yanis","fp":"A","r":3,"c":17,"s":{"g":2,"s":25.5,"n":5,"a":5.1,"d":0.82,"Sg":2,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.87,"Og":2,"Os":42,"On":9,"Oa":4.67,"Od":0.83,"pa":9},"p":[[-25,{"n":4,"e":4824,"s":1}],[-23,{"n":4.5,"e":4843}],[-22,{"n":4.5,"e":4853}],[-21,{"n":3.5,"e":4864}],[6,{"n":6,"e":6535,"g":1,"s":1}],[5,{"n":4.5,"e":6542,"s":1}],[4,{"n":6,"e":6554,"g":1,"s":1}],[3,{"n":4.5,"e":6563,"s":1}],[1,{"n":4.5,"e":6580,"s":1}]]}],[4963,{"n":"Fischer","f":"Mathias","fp":"DL","r":3,"c":17,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[6,{"n":4.5,"e":6535}],[2,{"n":5,"e":6569,"s":1}]]}],[4967,{"n":"Bassi","f":"Amine","fp":"MO","r":20,"c":17,"s":{"s":33.5,"n":6,"a":5.58,"d":0.49,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.49,"Og":4,"Os":157.5,"On":28,"Oa":5.63,"Od":0.83,"pm":21,"pa":7},"p":[[-28,{"n":5,"e":4795,"g":1}],[-27,{"n":5,"e":4803}],[-26,{"n":6.5,"e":4809,"g":1}],[-25,{"n":5.5,"e":4824}],[-24,{"n":5.5,"e":4835}],[-23,{"n":6,"e":4843}],[-22,{"n":5.5,"e":4853}],[-21,{"n":5.5,"e":4864}],[-20,{"n":5.5,"e":4874}],[-19,{"n":6,"e":4878}],[-18,{"n":6.5,"e":4894}],[-17,{"n":4.5,"e":4904}],[-16,{"n":8,"e":4914,"g":1}],[-15,{"n":5,"e":4921}],[-14,{"n":5,"e":4933}],[-13,{"n":5.5,"e":4944}],[-12,{"n":5,"e":4952}],[-11,{"n":5,"e":4958}],[-10,{"n":5.5,"e":4973}],[-9,{"n":5,"e":4980}],[-8,{"n":8,"e":4993,"g":1}],[-7,{"n":5,"e":5001}],[6,{"n":6,"e":6535}],[5,{"n":5,"e":6542}],[4,{"n":6,"e":6554}],[3,{"n":6,"e":6563}],[2,{"n":5.5,"e":6569,"s":1}],[1,{"n":5,"e":6580}]],"fo":[[6542,[{"t":"Y"}]]]}],[5025,{"n":"Karamoko","f":"Souleymane","fp":"DL","r":11,"c":17,"s":{"ao":1,"s":27,"n":6,"a":4.5,"d":0.55,"Sao":1,"Ss":27,"Sn":6,"Sa":4.5,"Sd":0.55,"Oao":1,"Os":94.5,"On":20,"Oa":4.72,"Od":0.7,"pd":18,"pm":2},"p":[[-21,{"n":4.5,"e":4864}],[-20,{"n":5,"e":4874}],[-19,{"n":6,"e":4878}],[-18,{"n":5,"e":4894,"s":1}],[-17,{"n":3.5,"e":4904}],[-15,{"n":5,"e":4921}],[-14,{"n":4.5,"e":4933}],[-13,{"n":5,"e":4944}],[-12,{"n":5.5,"e":4952}],[-11,{"n":3.5,"e":4958}],[-10,{"n":5,"e":4973}],[-9,{"n":4.5,"e":4980}],[-8,{"n":6,"e":4993}],[-7,{"n":4.5,"e":5001}],[6,{"n":4.5,"e":6535,"a":1}],[5,{"n":4.5,"e":6542}],[4,{"n":5.5,"e":6554}],[3,{"n":4,"e":6563}],[2,{"n":4.5,"e":6569}],[1,{"n":4,"e":6580}]],"fo":[[6554,[{"t":"Y"}]],[6563,[{"t":"Y"}]]]}],[5058,{"n":"Nguiamba","f":"Aurélien","fp":"MD","r":1,"c":17,"s":{"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-11,{"n":5,"e":4958,"s":1}],[-10,{"n":5,"e":4973,"s":1}]]}],[5165,{"n":"Cissokho","f":"Mame Ousmane","fp":"A","r":10,"c":17,"s":{"s":28.5,"n":6,"a":4.75,"d":0.27,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.27,"Og":1,"Os":102.5,"On":20,"Oa":5.13,"Od":0.58,"pm":18,"pa":2},"p":[[-27,{"n":5.5,"e":4803,"g":1}],[-26,{"n":5.5,"e":4809,"s":1}],[-23,{"n":5,"e":4843}],[-22,{"n":5,"e":4853,"s":1}],[-21,{"n":4.5,"e":4864}],[-20,{"n":6,"e":4874}],[-19,{"n":5,"e":4878}],[-18,{"n":6,"e":4894}],[-17,{"n":4,"e":4904}],[-16,{"n":5,"e":4914,"s":1}],[-10,{"n":6,"e":4973}],[-9,{"n":5,"e":4980,"s":1}],[-8,{"n":6,"e":4993}],[-7,{"n":5.5,"e":5001}],[6,{"n":5,"e":6535,"s":1}],[5,{"n":5,"e":6542,"s":1}],[4,{"n":5,"e":6554,"s":1}],[3,{"n":4.5,"e":6563}],[2,{"n":4.5,"e":6569}],[1,{"n":4.5,"e":6580}]],"fo":[[6569,[{"t":"Y"}]]]}],[5167,{"n":"Akichi","f":"Edmond","fp":"MD","r":16,"c":17,"s":{"s":29.5,"n":6,"a":4.92,"d":0.74,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.74,"Os":133.5,"On":25,"Oa":5.34,"Od":0.67,"pm":25},"p":[[-28,{"n":5,"e":4795}],[-27,{"n":5.5,"e":4803}],[-26,{"n":5.5,"e":4809}],[-25,{"n":4.5,"e":4824}],[-24,{"n":5,"e":4835}],[-23,{"n":6,"e":4843}],[-22,{"n":5,"e":4853}],[-21,{"n":6,"e":4864}],[-20,{"n":5.5,"e":4874}],[-19,{"n":6.5,"e":4878}],[-18,{"n":5,"e":4894}],[-17,{"n":5,"e":4904}],[-16,{"n":6.5,"e":4914}],[-15,{"n":4.5,"e":4921}],[-14,{"n":6,"e":4933}],[-13,{"n":5,"e":4944}],[-12,{"n":6,"e":4952}],[-11,{"n":5.5,"e":4958}],[-10,{"n":6,"e":4973}],[6,{"n":3.5,"e":6535}],[5,{"n":5,"e":6542}],[4,{"n":5.5,"e":6554}],[3,{"n":5,"e":6563}],[2,{"n":5.5,"e":6569}],[1,{"n":5,"e":6580}]],"fo":[[6535,[{"t":"R"}]],[6580,[{"t":"Y"}]]]}],[5204,{"n":"Dona Ndoh","f":"Andé","fp":"A","r":6,"c":17,"s":{"Og":1,"Os":68,"On":15,"Oa":4.53,"Od":0.58,"pa":15},"p":[[-28,{"n":4.5,"e":4795,"s":1}],[-27,{"n":4.5,"e":4803,"s":1}],[-25,{"n":4.5,"e":4824,"s":1}],[-23,{"n":4,"e":4843,"s":1}],[-20,{"n":4,"e":4874,"s":1}],[-19,{"n":5.5,"e":4878}],[-18,{"n":6,"e":4894,"g":1}],[-17,{"n":4,"e":4904,"s":1}],[-15,{"n":4.5,"e":4921}],[-14,{"n":4.5,"e":4933,"s":1}],[-12,{"n":4.5,"e":4952,"s":1}],[-11,{"n":4,"e":4958}],[-10,{"n":4.5,"e":4973,"s":1}],[-9,{"n":4,"e":4980,"s":1}],[-8,{"n":5,"e":4993,"s":1}]]}],[6184,{"n":"Lefebvre","f":"Grégoire","fp":"MD","r":5,"c":17,"s":{"s":15,"n":3,"a":5,"d":0.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":79.5,"On":16,"Oa":4.97,"Od":0.64,"pm":16},"p":[[-26,{"n":4.5,"e":4809}],[-24,{"n":4.5,"e":4835,"s":1}],[-20,{"n":5,"e":4874,"s":1}],[-19,{"n":5,"e":4878,"s":1}],[-18,{"n":5,"e":4894,"s":1}],[-16,{"n":4.5,"e":4914,"s":1}],[-15,{"n":5.5,"e":4921}],[-13,{"n":4,"e":4944}],[-11,{"n":5,"e":4958}],[-10,{"n":4,"e":4973}],[-9,{"n":5.5,"e":4980}],[-8,{"n":6.5,"e":4993}],[-7,{"n":5.5,"e":5001}],[6,{"n":5.5,"e":6535,"s":1}],[2,{"n":4.5,"e":6569,"s":1}],[1,{"n":5,"e":6580,"s":1}]],"fo":[[6535,[{"t":"Y"}]]]}],[6822,{"n":"Warren","f":"Bondo","fp":"MO","r":1,"c":17}],[6836,{"n":"Biron","f":"Mickaël","fp":"A","r":11,"c":17,"s":{"g":3,"s":33.5,"n":6,"a":5.58,"d":1.39,"Sg":3,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.39,"Og":3,"Os":33.5,"On":6,"Oa":5.58,"Od":1.39,"pm":6},"p":[[6,{"n":5.5,"e":6535}],[5,{"n":4.5,"e":6542}],[4,{"n":7,"e":6554,"g":1}],[3,{"n":5,"e":6563}],[2,{"n":7.5,"e":6569,"g":2}],[1,{"n":4,"e":6580}]],"fo":[[6542,[{"t":"Y"}]]]}],[6852,{"n":"Latouchent","f":"Rosario","fp":"DL","r":6,"c":17,"s":{"s":15,"n":3,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":15,"On":3,"Oa":5,"pd":3},"p":[[6,{"n":5,"e":6535,"s":1}],[5,{"n":5,"e":6542,"s":1}],[3,{"n":5,"e":6563,"s":1}]]}],[7352,{"n":"Giagnorio","f":"Marco Claude","fp":"G","r":3,"c":17}],[446,{"n":"Passi","f":"Bryan","fp":"DC","r":12,"c":98,"s":{"s":17,"n":3,"a":5.67,"d":0.29,"Os":73,"On":15,"Oa":4.87,"Od":0.88,"pd":15},"p":[[-19,{"n":5,"e":4882}],[-23,{"n":5,"e":4839}],[-20,{"n":4.5,"e":4875}],[-18,{"n":3.5,"e":4889}],[-16,{"n":5,"e":4910}],[-15,{"n":5.5,"e":4924}],[-14,{"n":3,"e":4932}],[-13,{"n":4,"e":4946}],[-12,{"n":5.5,"e":4950}],[-11,{"n":5.5,"e":4965}],[-10,{"n":5.5,"e":4973}],[-8,{"n":4,"e":4997}],[3,{"n":5.5,"e":6563}],[2,{"n":6,"e":6574}],[1,{"n":5.5,"e":6584}]],"fo":[[6563,[{"t":"I"}]]]}],[529,{"n":"Conté","f":"Ibrahima Sory","fp":"DC","r":3,"c":98}],[582,{"n":"Braat","f":"Quentin","fp":"G","r":6,"c":98,"s":{"Oao":1,"Os":78,"On":15,"Oa":5.2,"Od":1.1,"pg":15},"p":[[-27,{"n":4,"e":4798}],[-26,{"n":6.5,"e":4815}],[-25,{"n":4,"e":4821}],[-24,{"n":6,"e":4834}],[-23,{"n":4,"e":4839}],[-22,{"n":5.5,"e":4854}],[-21,{"n":7,"e":4860}],[-20,{"n":4,"e":4875}],[-19,{"n":6,"e":4882}],[-18,{"n":4,"e":4889}],[-17,{"n":6,"e":4899}],[-16,{"n":6,"e":4910}],[-15,{"n":6,"e":4924}],[-14,{"n":4,"e":4932,"a":1}],[-13,{"n":5,"e":4946,"s":1}]]}],[2718,{"n":"Kemen","f":"Olivier","fp":"MO","r":19,"c":98,"s":{"g":3,"s":33,"n":5,"a":6.6,"d":1.14,"Og":4,"Os":135,"On":26,"Oa":5.19,"Od":1.19,"pm":25,"pa":1},"p":[[5,{"n":7.5,"e":6543,"g":2}],[-28,{"n":6,"e":4795}],[-27,{"n":4,"e":4798}],[-26,{"n":6,"e":4815}],[-25,{"n":4,"e":4821}],[-24,{"n":6,"e":4834,"s":1}],[-23,{"n":4,"e":4839}],[-22,{"n":5,"e":4854}],[-21,{"n":5,"e":4860}],[-20,{"n":5,"e":4875}],[-19,{"n":5.5,"e":4882}],[-18,{"n":3.5,"e":4889}],[-17,{"n":5,"e":4899}],[-16,{"n":5.5,"e":4910}],[-15,{"n":7,"e":4924,"g":1}],[-14,{"n":4,"e":4932}],[-13,{"n":4.5,"e":4946}],[-12,{"n":4,"e":4950}],[-10,{"n":3.5,"e":4973}],[-9,{"n":4,"e":4985}],[-8,{"n":5,"e":4997}],[-7,{"n":5.5,"e":5004}],[4,{"n":6.5,"e":6553,"g":1}],[3,{"n":5.5,"e":6563}],[2,{"n":5.5,"e":6574}],[1,{"n":8,"e":6584}]]}],[3520,{"n":"Boutobba","f":"Bilal","fp":"MO","r":8,"c":98,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":24,"On":5,"Oa":4.8,"Od":0.27,"pm":3,"pa":2},"p":[[-25,{"n":5,"e":3683,"s":1}],[6,{"n":4.5,"e":6530}],[5,{"n":5,"e":6543}],[4,{"n":5,"e":6553,"s":1}],[3,{"n":4.5,"e":6563,"s":1}]]}],[4895,{"n":"Kilama","f":"Guy-Marcelin","fp":"DL","r":14,"c":98,"s":{"s":31,"n":6,"a":5.17,"d":0.93,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.93,"Og":1,"Os":94.5,"On":20,"Oa":4.72,"Od":1.29,"pd":19,"pm":1},"p":[[-28,{"n":5.5,"e":4795}],[-27,{"n":3,"e":4798}],[-26,{"n":6,"e":4815}],[-25,{"n":4.5,"e":4821,"g":1}],[-24,{"n":5.5,"e":4834}],[-23,{"n":4.5,"e":4839}],[-22,{"n":1,"e":4854}],[-21,{"n":5.5,"e":4860}],[-14,{"n":3,"e":4932}],[-13,{"n":4,"e":4946}],[-12,{"n":5,"e":4950}],[-11,{"n":6,"e":4965}],[-10,{"n":4.5,"e":4973}],[-9,{"n":5.5,"e":4985}],[6,{"n":4,"e":6530}],[5,{"n":4,"e":6543}],[4,{"n":5.5,"e":6553}],[3,{"n":6,"e":6563}],[2,{"n":6,"e":6574}],[1,{"n":5.5,"e":6584}]],"fo":[[6543,[{"t":"Y"}]],[6553,[{"t":"Y"}]]]}],[4911,{"n":"Sissoko","f":"Ibrahim","fp":"A","r":22,"c":98,"s":{"Og":12,"Os":110.5,"On":21,"Oa":5.26,"Od":1.47,"pa":21},"p":[[-28,{"n":6.5,"e":4795,"g":1}],[-27,{"n":4.5,"e":4798}],[-26,{"n":6,"e":4815,"g":1}],[-25,{"n":4,"e":4821}],[-24,{"n":7,"e":4834,"g":1}],[-23,{"n":7,"e":4839,"g":1}],[-22,{"n":8,"e":4854,"g":3}],[-21,{"n":5,"e":4860}],[-20,{"n":4,"e":4875}],[-19,{"n":3.5,"e":4882}],[-18,{"n":5,"e":4889}],[-16,{"n":3.5,"e":4910}],[-15,{"n":6.5,"e":4924,"g":1}],[-14,{"n":5.5,"e":4932,"g":1}],[-13,{"n":2.5,"e":4946}],[-12,{"n":4,"e":4950}],[-11,{"n":4.5,"e":4965}],[-10,{"n":6.5,"e":4973,"g":1}],[-9,{"n":6.5,"e":4985,"g":1}],[-8,{"n":6.5,"e":4997,"g":1}],[-7,{"n":4,"e":5004}]]}],[4955,{"n":"Bourhane","f":"Yacine","fp":"MD","r":8,"c":98,"s":{"s":20.5,"n":4,"a":5.13,"d":1.18,"Os":52.5,"On":11,"Oa":4.77,"Od":0.75,"pm":11},"p":[[-25,{"n":4.5,"e":4821,"s":1}],[-24,{"n":4,"e":4834}],[-23,{"n":5,"e":4839,"s":1}],[-21,{"n":4.5,"e":4860,"s":1}],[-20,{"n":4.5,"e":4875}],[-16,{"n":4.5,"e":4910}],[-15,{"n":5,"e":4924,"s":1}],[5,{"n":3.5,"e":6543}],[4,{"n":6,"e":6553}],[3,{"n":6,"e":6563}],[1,{"n":5,"e":6584,"s":1}]],"fo":[[6543,[{"t":"Y"},{"t":"O"}]]]}],[4956,{"n":"Koyalipou","f":"Goduine","fp":"A","r":10,"c":98,"s":{"s":29.5,"n":6,"a":4.92,"d":0.38,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.38,"Os":91.5,"On":19,"Oa":4.82,"Od":0.87,"pm":13,"pa":6},"p":[[-28,{"n":5,"e":4795}],[-27,{"n":5.5,"e":4798}],[-26,{"n":4.5,"e":4815,"s":1}],[-25,{"n":4,"e":4821}],[-24,{"n":5,"e":4834,"s":1}],[-23,{"n":5.5,"e":4839}],[-22,{"n":6,"e":4854}],[-21,{"n":6.5,"e":4860}],[-20,{"n":3,"e":4875}],[-17,{"n":3,"e":4899}],[-16,{"n":4.5,"e":4910}],[-15,{"n":5,"e":4924}],[-7,{"n":4.5,"e":5004,"s":1}],[6,{"n":5,"e":6530}],[5,{"n":5.5,"e":6543,"s":1}],[4,{"n":4.5,"e":6553}],[3,{"n":5,"e":6563}],[2,{"n":4.5,"e":6574}],[1,{"n":5,"e":6584}]],"fo":[[6563,[{"t":"I"}]]]}],[4966,{"n":"Ameka Autchanga","f":"Louis","fp":"A","r":3,"c":98,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":61.5,"On":13,"Oa":4.73,"Od":0.26,"pm":13},"p":[[-28,{"n":5,"e":4795,"s":1}],[-25,{"n":5,"e":4821,"s":1}],[-18,{"n":4.5,"e":4889,"s":1}],[-17,{"n":4.5,"e":4899,"s":1}],[-14,{"n":4.5,"e":4932,"s":1}],[-12,{"n":4.5,"e":4950,"s":1}],[-10,{"n":5,"e":4973,"s":1}],[-9,{"n":4.5,"e":4985,"s":1}],[-8,{"n":5,"e":4997,"s":1}],[-7,{"n":4.5,"e":5004,"s":1}],[4,{"n":5,"e":6553,"s":1}],[3,{"n":4.5,"e":6563,"s":1}],[1,{"n":5,"e":6584,"s":1}]],"fo":[[6563,[{"t":"Y"}]]]}],[4991,{"n":"Bena","f":"Quentin","fp":"MD","r":1,"c":98,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":4,"Sn":1,"Sa":4,"Os":28,"On":6,"Oa":4.67,"Od":0.41,"pd":1,"pm":5},"p":[[-11,{"n":4.5,"e":4965}],[-9,{"n":5,"e":4985,"s":1}],[-8,{"n":5,"e":4997,"s":1}],[6,{"n":4,"e":6530}],[4,{"n":4.5,"e":6553,"s":1}],[3,{"n":5,"e":6563,"s":1}]],"fo":[[6563,[{"t":"Y"}]]]}],[4994,{"n":"Paro","f":"Issouf","fp":"DC","r":10,"c":98,"s":{"s":26.5,"n":5,"a":5.3,"d":0.84,"Os":32.5,"On":6,"Oa":5.42,"Od":0.8,"pd":6},"p":[[-7,{"n":6,"e":5004}],[5,{"n":5,"e":6543}],[4,{"n":6,"e":6553}],[3,{"n":5.5,"e":6563}],[2,{"n":4,"e":6574}],[1,{"n":6,"e":6584}]],"fo":[[6543,[{"t":"I"}]],[6553,[{"t":"Y"}]]]}],[5034,{"n":"Konaté","f":"Brahim","fp":"MD","r":5,"c":98,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":58,"On":11,"Oa":5.27,"Od":0.75,"pm":11},"p":[[-19,{"n":5,"e":4882}],[-18,{"n":6,"e":4889,"g":1}],[-16,{"n":5,"e":4910,"s":1}],[-15,{"n":5,"e":4924,"s":1}],[-12,{"n":5,"e":4950}],[-11,{"n":5,"e":4965,"s":1}],[-10,{"n":4.5,"e":4973}],[-9,{"n":7,"e":4985,"g":1}],[-8,{"n":6,"e":4997}],[-7,{"n":4.5,"e":5004}],[6,{"n":5,"e":6530,"s":1}]],"fo":[[6530,[{"t":"I"}]]]}],[5069,{"n":"Allagbe","f":"Saturnin","fp":"G","r":15,"c":98,"s":{"s":29.5,"n":5,"a":5.9,"d":0.96,"Os":73,"On":13,"Oa":5.62,"Od":0.98,"pg":13},"p":[[-28,{"n":5,"e":4795}],[-13,{"n":5,"e":4946}],[-12,{"n":5.5,"e":4950}],[-11,{"n":6,"e":4965}],[-10,{"n":5,"e":4973}],[-9,{"n":4,"e":4985}],[-8,{"n":5.5,"e":4997}],[-7,{"n":7.5,"e":5004}],[5,{"n":5.5,"e":6543}],[4,{"n":7,"e":6553}],[3,{"n":6,"e":6563}],[2,{"n":4.5,"e":6574}],[1,{"n":6.5,"e":6584}]]}],[5073,{"n":"Louiserre","f":"Dylan","fp":"MD","r":15,"c":98,"s":{"s":33,"n":6,"a":5.5,"d":0.63,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.63,"Os":128.5,"On":26,"Oa":4.94,"Od":0.83,"pm":26},"p":[[-28,{"n":6,"e":4795}],[-27,{"n":4.5,"e":4798,"s":1}],[-25,{"n":5,"e":4821}],[-24,{"n":6,"e":4834}],[-23,{"n":4.5,"e":4839}],[-22,{"n":4,"e":4854}],[-21,{"n":5.5,"e":4860}],[-20,{"n":4.5,"e":4875}],[-19,{"n":4.5,"e":4882}],[-18,{"n":4,"e":4889}],[-17,{"n":6,"e":4899}],[-15,{"n":6,"e":4924}],[-14,{"n":3.5,"e":4932}],[-13,{"n":3.5,"e":4946}],[-12,{"n":4,"e":4950}],[-11,{"n":5,"e":4965}],[-10,{"n":4,"e":4973}],[-9,{"n":5,"e":4985}],[-8,{"n":5,"e":4997}],[-7,{"n":5,"e":5004}],[6,{"n":4.5,"e":6530}],[5,{"n":6,"e":6543}],[4,{"n":6,"e":6553}],[3,{"n":6,"e":6563}],[2,{"n":5,"e":6574}],[1,{"n":5.5,"e":6584}]],"fo":[[6584,[{"t":"I"},{"t":"Y"}]],[6530,[{"t":"Y"}]]]}],[5079,{"n":"Jacob","f":"Valentin","fp":"MO","r":16,"c":98,"s":{"s":33.5,"n":6,"a":5.58,"d":0.86,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.86,"Og":3,"Os":119.5,"On":23,"Oa":5.2,"Od":1,"pm":17,"pa":6},"p":[[-28,{"n":5.5,"e":4795}],[-27,{"n":5,"e":4798}],[-26,{"n":6.5,"e":4815}],[-24,{"n":6.5,"e":4834,"g":1}],[-23,{"n":6,"e":4839,"g":1}],[-22,{"n":5,"e":4854}],[-21,{"n":5,"e":4860,"g":1}],[-20,{"n":5,"e":4875,"s":1}],[-19,{"n":5,"e":4882,"s":1}],[-17,{"n":3,"e":4899}],[-14,{"n":4,"e":4932}],[-13,{"n":4,"e":4946}],[-12,{"n":5,"e":4950}],[-11,{"n":5,"e":4965}],[-10,{"n":4.5,"e":4973}],[-8,{"n":7,"e":4997}],[-7,{"n":4,"e":5004}],[6,{"n":4.5,"e":6530}],[5,{"n":6.5,"e":6543}],[4,{"n":6.5,"e":6553}],[3,{"n":6,"e":6563}],[2,{"n":5,"e":6574}],[1,{"n":5,"e":6584}]],"fo":[[6563,[{"t":"Y"}]]]}],[5081,{"n":"Djigla","f":"David","fp":"A","r":7,"c":98,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":65.5,"On":14,"Oa":4.68,"Od":0.58,"pm":1,"pa":13},"p":[[-27,{"n":4,"e":4798,"s":1}],[-26,{"n":4.5,"e":4815,"s":1}],[-25,{"n":4.5,"e":4821,"s":1}],[-24,{"n":5.5,"e":4834}],[-22,{"n":5.5,"e":4854,"s":1}],[-20,{"n":5,"e":4875}],[-19,{"n":3.5,"e":4882}],[-18,{"n":5.5,"e":4889}],[-17,{"n":4.5,"e":4899,"s":1}],[-16,{"n":4.5,"e":4910,"s":1}],[6,{"n":4.5,"e":6530,"s":1}],[5,{"n":5,"e":6543,"s":1}],[2,{"n":4.5,"e":6574,"s":1}],[1,{"n":4.5,"e":6584,"s":1}]]}],[5363,{"n":"Baroan","f":"Antoine","fp":"A","r":7,"c":98,"s":{"g":1,"s":27.5,"n":6,"a":4.58,"d":0.74,"Sg":1,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":0.74,"Og":1,"Os":57,"On":13,"Oa":4.38,"Od":0.65,"pa":13},"p":[[-28,{"n":4.5,"e":4795,"s":1}],[-17,{"n":3,"e":4899}],[-16,{"n":4.5,"e":4910,"s":1}],[-15,{"n":4.5,"e":4924,"s":1}],[-14,{"n":4.5,"e":4932,"s":1}],[-13,{"n":4,"e":4946,"s":1}],[-12,{"n":4.5,"e":4950,"s":1}],[6,{"n":4.5,"e":6530,"s":1}],[5,{"n":4,"e":6543,"s":1}],[4,{"n":4.5,"e":6553,"s":1}],[3,{"n":4.5,"e":6563,"s":1}],[2,{"n":6,"e":6574,"g":1,"s":1}],[1,{"n":4,"e":6584,"s":1}]],"fo":[[6543,[{"t":"Y"}]],[6574,[{"t":"Y"}]]]}],[5977,{"n":"Doukansy","f":"Brahima","fp":"MD","r":10,"c":98,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":62.5,"On":13,"Oa":4.81,"Od":1.01,"pd":1,"pm":12},"p":[[-27,{"n":4.5,"e":4798}],[-26,{"n":6,"e":4815}],[-23,{"n":2.5,"e":4839,"s":1}],[-21,{"n":5.5,"e":4860,"s":1}],[-20,{"n":5.5,"e":4875,"s":1}],[-17,{"n":3.5,"e":4899}],[-16,{"n":5,"e":4910}],[-15,{"n":6,"e":4924}],[-10,{"n":5.5,"e":4973,"s":1}],[-9,{"n":4.5,"e":4985}],[-8,{"n":5,"e":4997,"s":1}],[2,{"n":4,"e":6574}],[1,{"n":5,"e":6584}]]}],[6273,{"n":"Darline Yongwa","f":"","fp":"MD","r":10,"c":98,"s":{"s":26.5,"n":5,"a":5.3,"d":1.15,"Ss":4,"Sn":1,"Sa":4,"Os":56.5,"On":12,"Oa":4.71,"Od":1.12,"pd":11,"pm":1},"p":[[-19,{"n":4.5,"e":4882}],[-18,{"n":4,"e":4889}],[-16,{"n":3.5,"e":4910}],[-15,{"n":6,"e":4924}],[-14,{"n":4.5,"e":4932}],[-13,{"n":3,"e":4946}],[-11,{"n":4.5,"e":4965}],[6,{"n":4,"e":6530}],[4,{"n":6.5,"e":6553}],[3,{"n":4.5,"e":6563}],[2,{"n":6.5,"e":6574}],[1,{"n":5,"e":6584}]],"fo":[[6563,[{"t":"Y"}]],[6574,[{"t":"Y"}]],[6584,[{"t":"Y"}]]]}],[6414,{"n":"Renel","f":"Samuel","fp":"MD","r":3,"c":98,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":13.5,"On":3,"Oa":4.5,"Od":0.87,"pm":3},"p":[[-28,{"n":5,"e":4795,"s":1}],[6,{"n":3.5,"e":6530}],[2,{"n":5,"e":6574,"s":1}]]}],[6819,{"n":"Leclercq","f":"Emyl","fp":"G","r":3,"c":98,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[6,{"n":5,"e":6530}]]}],[6820,{"n":"Moutachy","f":"Joris","fp":"DL","r":3,"c":98,"s":{"s":25,"n":5,"a":5,"d":0.61,"Ss":25,"Sn":5,"Sa":5,"Sd":0.61,"Os":25,"On":5,"Oa":5,"Od":0.61,"pd":5},"p":[[6,{"n":5.5,"e":6530}],[5,{"n":5,"e":6543}],[4,{"n":4,"e":6553}],[3,{"n":5.5,"e":6563,"s":1}],[2,{"n":5,"e":6574,"s":1}]],"fo":[[6553,[{"t":"Y"}]]]}],[6821,{"n":"Ba","f":"Pape Ibnou","fp":"A","r":10,"c":98,"s":{"g":2,"s":31.5,"n":6,"a":5.25,"d":1.04,"Sg":2,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.04,"Og":2,"Os":31.5,"On":6,"Oa":5.25,"Od":1.04,"pa":6},"p":[[6,{"n":4,"e":6530}],[5,{"n":6,"e":6543}],[4,{"n":4.5,"e":6553}],[3,{"n":6.5,"e":6563,"g":1}],[2,{"n":4.5,"e":6574}],[1,{"n":6,"e":6584,"g":1}]]}],[6848,{"n":"Lebeau","f":"Tom","fp":"MO","r":5,"c":98}],[6913,{"n":"Benhattab","f":"Yassine","fp":"MO","r":1,"c":98}],[7045,{"n":"Delguel","f":"Gabin","fp":"DL","r":1,"c":98,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[5,{"n":5,"e":6543}]]}],[7351,{"n":"Matufueni m'bondo","f":"Bradley","fp":"DC","r":6,"c":98}],[7354,{"n":"Vallier","f":"Lenny","fp":"DL","r":4,"c":98}],[473,{"n":"Maisonnial","f":"Anthony","fp":"G","r":7,"c":107,"s":{"Os":62.5,"On":11,"Oa":5.68,"Od":1.08,"pg":11},"p":[[-19,{"n":4,"e":4884}],[-18,{"n":6,"e":4897}],[-17,{"n":4,"e":4901}],[-16,{"n":6,"e":4914}],[-15,{"n":7,"e":4926}],[-14,{"n":6,"e":4934}],[-13,{"n":6.5,"e":4943}],[-12,{"n":4.5,"e":4954}],[-11,{"n":7,"e":4961}],[-10,{"n":6,"e":4975}],[-9,{"n":5.5,"e":4984}]]}],[2144,{"n":"Diaby","f":"Mohamed Lamine","fp":"A","r":8,"c":107,"s":{"s":4,"n":1,"a":4,"Os":51,"On":12,"Oa":4.25,"Od":0.66,"pa":12},"p":[[-28,{"n":null,"e":3657,"d":1}],[-28,{"n":5,"e":4797,"s":1}],[-25,{"n":4.5,"e":4826,"s":1}],[-24,{"n":4.5,"e":4829,"s":1}],[-23,{"n":3.5,"e":4845}],[-22,{"n":4.5,"e":4854,"s":1}],[-21,{"n":5,"e":4866}],[-20,{"n":4,"e":4877,"s":1}],[-19,{"n":3,"e":4884}],[-16,{"n":3.5,"e":4914}],[-15,{"n":5,"e":4926}],[-14,{"n":4.5,"e":4934,"s":1}],[4,{"n":4,"e":6554,"s":1}]],"fo":[[6554,[{"t":"I"}]]]}],[2625,{"n":"N'Diaye","f":"Youssoupha","fp":"DC","r":10,"c":107,"s":{"s":22.5,"n":4,"a":5.63,"d":1.25,"Ss":10,"Sn":2,"Sa":5,"Sd":1.41,"Os":22.5,"On":4,"Oa":5.63,"Od":1.25,"pd":4},"p":[[2,{"n":5.5,"e":6575}],[6,{"n":6,"e":6534}],[5,{"n":4,"e":6543,"s":1}],[1,{"n":7,"e":6582}]],"fo":[[6575,[{"t":"I"}]],[6543,[{"t":"Y"}]]]}],[3791,{"n":"Gakpa","f":"Marvin","fp":"MO","r":8,"c":107,"s":{"Os":49,"On":10,"Oa":4.9,"Od":0.46,"pm":8,"pa":2},"p":[[-26,{"n":4.5,"e":3672,"s":1}],[-25,{"n":5,"e":3684,"s":1}],[-18,{"n":4.5,"e":3754,"s":1}],[-16,{"n":5.5,"e":3774,"s":1}],[-11,{"n":5,"e":3820,"s":1}],[-8,{"n":5,"e":3852}],[-5,{"n":5,"e":3879}],[-19,{"n":5,"e":3738,"s":1}],[-10,{"n":5.5,"e":3832}],[-9,{"n":4,"e":3839}]]}],[4913,{"n":"Kanté","f":"Ousmane","fp":"DC","r":15,"c":107,"s":{"g":1,"s":28.5,"n":5,"a":5.7,"d":0.97,"Sg":1,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":0.97,"Og":5,"Os":133,"On":25,"Oa":5.32,"Od":1.23,"pd":25},"p":[[-28,{"n":5.5,"e":4797,"g":1}],[-27,{"n":3,"e":4805}],[-26,{"n":6.5,"e":4810}],[-25,{"n":6,"e":4826}],[-24,{"n":5.5,"e":4829}],[-23,{"n":3,"e":4845}],[-22,{"n":6,"e":4854,"g":1}],[-21,{"n":6,"e":4866}],[-20,{"n":5.5,"e":4877}],[-18,{"n":5.5,"e":4897}],[-17,{"n":3.5,"e":4901}],[-16,{"n":4,"e":4914}],[-15,{"n":7.5,"e":4926,"g":1}],[-14,{"n":6,"e":4934}],[-13,{"n":4.5,"e":4943}],[-12,{"n":4,"e":4954}],[-11,{"n":7.5,"e":4961,"g":1}],[-10,{"n":5.5,"e":4975}],[-9,{"n":5,"e":4984,"s":1}],[-8,{"n":4.5,"e":4995}],[6,{"n":6,"e":6534}],[5,{"n":6.5,"e":6543,"g":1}],[4,{"n":4,"e":6554}],[3,{"n":6,"e":6559}],[2,{"n":6,"e":6575}]],"fo":[[6554,[{"t":"Y"}]]]}],[4942,{"n":"Bamba","f":"Axel","fp":"DC","r":9,"c":107,"s":{"s":18,"n":4,"a":4.5,"d":1.08,"Og":2,"Os":99,"On":20,"Oa":4.95,"Od":1.27,"pd":17,"pm":3},"p":[[-28,{"n":5,"e":4797,"s":1}],[-25,{"n":6,"e":4826}],[-24,{"n":7,"e":4829,"g":1}],[-22,{"n":3,"e":4854}],[-21,{"n":5.5,"e":4866}],[-20,{"n":5.5,"e":4877}],[-19,{"n":4,"e":4884}],[-18,{"n":6,"e":4897}],[-17,{"n":3,"e":4901}],[-16,{"n":4,"e":4914}],[-15,{"n":6,"e":4926}],[-14,{"n":7,"e":4934,"g":1}],[-13,{"n":5.5,"e":4943}],[-12,{"n":3,"e":4954}],[-11,{"n":5.5,"e":4961}],[-10,{"n":5,"e":4975}],[5,{"n":3.5,"e":6543}],[4,{"n":4,"e":6554}],[3,{"n":4.5,"e":6559}],[1,{"n":6,"e":6582}]],"fo":[[6543,[{"t":"R"}]],[6559,[{"t":"Y"}]]]}],[5023,{"n":"Mandouki","f":"Cyril","fp":"MD","r":13,"c":107,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Og":1,"Os":135,"On":25,"Oa":5.4,"Od":1.09,"pd":3,"pm":22},"p":[[-28,{"n":6,"e":4797}],[-27,{"n":4.5,"e":4805}],[-26,{"n":7,"e":4810}],[-25,{"n":5,"e":4826}],[-24,{"n":5.5,"e":4829}],[-23,{"n":5.5,"e":4845}],[-22,{"n":7,"e":4854,"g":1}],[-21,{"n":5.5,"e":4866}],[-20,{"n":6,"e":4877}],[-19,{"n":3,"e":4884}],[-18,{"n":6.5,"e":4897}],[-17,{"n":4,"e":4901}],[-16,{"n":5.5,"e":4914}],[-15,{"n":7,"e":4926}],[-14,{"n":5,"e":4934}],[-13,{"n":5.5,"e":4943}],[-12,{"n":5,"e":4954}],[-11,{"n":7,"e":4961}],[-10,{"n":6,"e":4975}],[-9,{"n":3.5,"e":4984}],[-8,{"n":4.5,"e":4995}],[-7,{"n":6,"e":5002}],[4,{"n":4,"e":6554}],[3,{"n":5.5,"e":6559}],[2,{"n":5,"e":6575,"s":1}]],"fo":[[6575,[{"t":"Y"}]]]}],[5138,{"n":"Lopez","f":"Julien","fp":"MO","r":13,"c":107,"s":{"g":3,"s":36,"n":6,"a":6,"d":1.1,"Sg":3,"Ss":36,"Sn":6,"Sa":6,"Sd":1.1,"Og":3,"Os":124.5,"On":24,"Oa":5.19,"Od":1.06,"pm":15,"pa":9},"p":[[-28,{"n":4.5,"e":4797}],[-27,{"n":3.5,"e":4805}],[-26,{"n":5,"e":4810}],[-25,{"n":5,"e":4826,"s":1}],[-24,{"n":5,"e":4829,"s":1}],[-23,{"n":4.5,"e":4845}],[-22,{"n":7,"e":4854}],[-21,{"n":5,"e":4866,"s":1}],[-19,{"n":4.5,"e":4884,"s":1}],[-18,{"n":6,"e":4897}],[-17,{"n":4.5,"e":4901,"s":1}],[-16,{"n":4,"e":4914}],[-13,{"n":6,"e":4943}],[-12,{"n":3,"e":4954}],[-11,{"n":5,"e":4961}],[-10,{"n":5.5,"e":4975}],[-8,{"n":5,"e":4995}],[-7,{"n":5.5,"e":5002,"s":1}],[6,{"n":8,"e":6534,"g":2}],[5,{"n":6,"e":6543}],[4,{"n":5,"e":6554}],[3,{"n":6,"e":6559,"g":1}],[2,{"n":5,"e":6575}],[1,{"n":6,"e":6582}]],"fo":[[6543,[{"t":"Y"}]],[6559,[{"t":"Y"}]]]}],[5146,{"n":"Nomenjanahary","f":"Lalaïna","fp":"MO","r":11,"c":107,"s":{"s":32.5,"n":6,"a":5.42,"d":0.38,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.38,"Os":106.5,"On":22,"Oa":4.84,"Od":1.14,"pd":1,"pm":17,"pa":4},"p":[[-27,{"n":3,"e":4805}],[-26,{"n":6,"e":4810}],[-25,{"n":5,"e":4826}],[-23,{"n":2.5,"e":4845}],[-22,{"n":5,"e":4854}],[-21,{"n":5,"e":4866,"s":1}],[-19,{"n":3.5,"e":4884}],[-18,{"n":4,"e":4897}],[-17,{"n":3.5,"e":4901}],[-15,{"n":7,"e":4926}],[-14,{"n":5.5,"e":4934}],[-13,{"n":5,"e":4943}],[-12,{"n":3,"e":4954}],[-9,{"n":5,"e":4984}],[-8,{"n":5,"e":4995}],[-7,{"n":6,"e":5002}],[6,{"n":5,"e":6534,"s":1}],[5,{"n":5.5,"e":6543}],[4,{"n":5,"e":6554}],[3,{"n":5.5,"e":6559}],[2,{"n":6,"e":6575}],[1,{"n":5.5,"e":6582}]],"fo":[[6582,[{"t":"Y"}]]]}],[5173,{"n":"Demarconnay","f":"Vincent","fp":"G","r":20,"c":107,"s":{"s":31.5,"n":6,"a":5.25,"d":1.25,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":1.25,"Os":93,"On":17,"Oa":5.47,"Od":1.07,"pg":17},"p":[[-28,{"n":7,"e":4797}],[-27,{"n":5,"e":4805}],[-26,{"n":6.5,"e":4810}],[-25,{"n":6.5,"e":4826}],[-24,{"n":5.5,"e":4829}],[-23,{"n":4,"e":4845}],[-22,{"n":5,"e":4854}],[-21,{"n":6,"e":4866}],[-20,{"n":6,"e":4877}],[-8,{"n":4,"e":4995}],[-7,{"n":6,"e":5002}],[6,{"n":6.5,"e":6534}],[5,{"n":5,"e":6543}],[4,{"n":3,"e":6554}],[3,{"n":5,"e":6559}],[2,{"n":6,"e":6575}],[1,{"n":6,"e":6582}]]}],[5181,{"n":"Martin","f":"Florian","fp":"MO","r":11,"c":107,"s":{"g":3,"s":31.5,"n":5,"a":6.3,"d":1.3,"Sg":1,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":1.04,"Og":3,"Os":66.5,"On":12,"Oa":5.54,"Od":1.12,"pm":12},"p":[[-27,{"n":5,"e":4805,"s":1}],[-21,{"n":5,"e":4866}],[-20,{"n":6,"e":4877}],[-19,{"n":5,"e":4884}],[-13,{"n":5,"e":4943,"s":1}],[-9,{"n":4,"e":4984}],[-7,{"n":5,"e":5002,"s":1}],[6,{"n":6.5,"e":6534}],[5,{"n":7,"e":6543,"g":1}],[4,{"n":5,"e":6554,"s":1}],[2,{"n":5,"e":6575,"s":1}],[1,{"n":8,"e":6582,"g":2,"s":1}]]}],[5220,{"n":"Pitroipa","f":"Jonathan","fp":"A","r":10,"c":107,"s":{"s":31,"n":6,"a":5.17,"d":0.88,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.88,"Os":113.5,"On":23,"Oa":4.93,"Od":0.68,"pm":7,"pa":16},"p":[[-26,{"n":4.5,"e":4810}],[-25,{"n":5,"e":4826}],[-24,{"n":6,"e":4829}],[-23,{"n":4,"e":4845,"s":1}],[-22,{"n":5.5,"e":4854}],[-21,{"n":5,"e":4866}],[-20,{"n":5,"e":4877}],[-19,{"n":4.5,"e":4884}],[-18,{"n":4.5,"e":4897}],[-15,{"n":4.5,"e":4926,"s":1}],[-14,{"n":5,"e":4934,"s":1}],[-12,{"n":5,"e":4954,"s":1}],[-11,{"n":4.5,"e":4961,"s":1}],[-10,{"n":5.5,"e":4975}],[-9,{"n":5,"e":4984,"s":1}],[-8,{"n":3.5,"e":4995}],[-7,{"n":5.5,"e":5002}],[6,{"n":6.5,"e":6534}],[5,{"n":6,"e":6543}],[4,{"n":4.5,"e":6554,"s":1}],[3,{"n":4.5,"e":6559,"s":1}],[2,{"n":4.5,"e":6575}],[1,{"n":5,"e":6582}]]}],[5368,{"n":"Abdi","f":"Ali","fp":"DL","r":6,"c":107,"s":{"g":1,"s":17.5,"n":3,"a":5.83,"d":1.44,"Sg":1,"Ss":12.5,"Sn":2,"Sa":6.25,"Sd":1.77,"Og":1,"Os":72,"On":15,"Oa":4.8,"Od":1.03,"pd":13,"pm":2},"p":[[-28,{"n":4.5,"e":4797}],[-27,{"n":3,"e":4805}],[-26,{"n":5.5,"e":4810}],[-25,{"n":5,"e":4826}],[-22,{"n":4,"e":4854}],[-15,{"n":4.5,"e":4926,"s":1}],[-14,{"n":5,"e":4934,"s":1}],[-11,{"n":5.5,"e":4961}],[-10,{"n":5,"e":4975,"s":1}],[-9,{"n":3.5,"e":4984}],[-8,{"n":4,"e":4995}],[-7,{"n":5,"e":5002}],[6,{"n":7.5,"e":6534,"g":1}],[5,{"n":5,"e":6543,"s":1}],[3,{"n":5,"e":6559,"s":1}]]}],[5515,{"n":"Belaud","f":"Gaëtan","fp":"DL","r":13,"c":107,"s":{"s":32.5,"n":6,"a":5.42,"d":0.86,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.86,"Os":67,"On":13,"Oa":5.15,"Od":0.63,"pd":13},"p":[[-28,{"n":5,"e":3654}],[-27,{"n":5,"e":3660}],[-26,{"n":4.5,"e":3673}],[-25,{"n":5,"e":3680}],[-24,{"n":5,"e":3696}],[-12,{"n":5,"e":3808}],[-9,{"n":5,"e":3839,"s":1}],[6,{"n":6.5,"e":6534}],[5,{"n":5,"e":6543}],[4,{"n":4.5,"e":6554}],[3,{"n":5,"e":6559}],[2,{"n":6.5,"e":6575}],[1,{"n":5,"e":6582}]],"fo":[[6559,[{"t":"Y"}]],[6582,[{"t":"Y"}]]]}],[6229,{"n":"Kikonda","f":"Mario Jason","fp":"MD","r":8,"c":107,"s":{"s":21,"n":4,"a":5.25,"d":1.19,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.77,"Os":92,"On":18,"Oa":5.11,"Od":0.96,"pm":18},"p":[[-28,{"n":null,"e":3657,"d":1}],[-28,{"n":4.5,"e":4797}],[-26,{"n":6,"e":4810,"s":1}],[-25,{"n":5,"e":4826,"s":1}],[-24,{"n":5,"e":4829,"s":1}],[-22,{"n":5,"e":4854,"s":1}],[-20,{"n":5,"e":4877,"s":1}],[-17,{"n":3,"e":4901}],[-16,{"n":5.5,"e":4914}],[-15,{"n":6.5,"e":4926}],[-14,{"n":6,"e":4934}],[-11,{"n":5.5,"e":4961,"s":1}],[-9,{"n":5,"e":4984}],[-8,{"n":3.5,"e":4995}],[-7,{"n":5.5,"e":5002}],[6,{"n":7,"e":6534}],[5,{"n":4.5,"e":6543,"s":1}],[2,{"n":4.5,"e":6575,"s":1}],[1,{"n":5,"e":6582,"s":1}]],"fo":[[6575,[{"t":"Y"}]]]}],[6432,{"n":"Nkambadio","f":"Obed","fp":"G","r":1,"c":107,"s":{},"p":[[-28,{"n":null,"e":3657,"d":1}]]}],[6584,{"n":"Koffi","f":"Patrick","fp":"A","r":3,"c":107,"s":{"s":2,"n":1,"a":2,"Os":2,"On":1,"Oa":2,"pa":1},"p":[[-28,{"n":null,"e":3657,"d":1}],[1,{"n":2,"e":6582,"s":1}]],"fo":[[6582,[{"t":"R"}]]]}],[6719,{"n":"Essouma","f":"Franck","fp":"MD","r":1,"c":107}],[6725,{"n":"Name","f":"Moustapha","fp":"MO","r":11,"c":107,"s":{"g":1,"s":32,"n":5,"a":6.4,"d":0.74,"Og":1,"Os":32,"On":5,"Oa":6.4,"Od":0.74,"pm":5},"p":[[5,{"n":6,"e":6543}],[4,{"n":5.5,"e":6554}],[3,{"n":6.5,"e":6559,"g":1}],[2,{"n":6.5,"e":6575}],[1,{"n":7.5,"e":6582}]],"fo":[[6575,[{"t":"Y"}]]]}],[6749,{"n":"Campanini","f":"Thibault","fp":"DL","r":7,"c":107,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[1,{"n":5,"e":6582,"s":1}]]}],[6816,{"n":"Gambor","f":"Hugo","fp":"DC","r":1,"c":107}],[6817,{"n":"Laura","f":"Gaetan","fp":"A","r":11,"c":107,"s":{"g":2,"s":32.5,"n":6,"a":5.42,"d":1.28,"Sg":2,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.28,"Og":2,"Os":32.5,"On":6,"Oa":5.42,"Od":1.28,"pa":6},"p":[[6,{"n":5,"e":6534}],[5,{"n":5,"e":6543,"s":1}],[4,{"n":4,"e":6554}],[3,{"n":4.5,"e":6559}],[2,{"n":7,"e":6575,"g":1}],[1,{"n":7,"e":6582,"g":1}]]}],[6818,{"n":"Guilavogui","f":"Morgan","fp":"A","r":1,"c":107,"s":{"s":21,"n":4,"a":5.25,"d":0.65,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.65,"Os":21,"On":4,"Oa":5.25,"Od":0.65,"pa":4},"p":[[6,{"n":6,"e":6534,"s":1}],[5,{"n":5.5,"e":6543}],[4,{"n":4.5,"e":6554}],[3,{"n":5,"e":6559}]],"fo":[[6554,[{"t":"Y"}]]]}],[6838,{"n":"Arab","f":"Saïd","fp":"MO","r":9,"c":107,"s":{"s":31,"n":6,"a":5.17,"d":0.68,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.68,"Os":31,"On":6,"Oa":5.17,"Od":0.68,"pm":6},"p":[[6,{"n":5,"e":6534,"s":1}],[5,{"n":5.5,"e":6543,"s":1}],[4,{"n":5,"e":6554,"s":1}],[3,{"n":5.5,"e":6559,"s":1}],[2,{"n":4,"e":6575}],[1,{"n":6,"e":6582}]]}],[6876,{"n":"Hanin","f":"Florent","fp":"DL","r":9,"c":107,"s":{"s":26.5,"n":5,"a":5.3,"d":0.84,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.84,"Os":26.5,"On":5,"Oa":5.3,"Od":0.84,"pd":5},"p":[[6,{"n":6,"e":6534}],[5,{"n":5,"e":6543}],[4,{"n":4,"e":6554}],[3,{"n":6,"e":6559}],[2,{"n":5.5,"e":6575}]]}],[492,{"n":"Koffi","f":"Erwin","fp":"A","r":6,"c":129,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":2,"pm":1},"p":[[3,{"n":5,"e":6566,"s":1}],[1,{"n":4.5,"e":6586}],[4,{"n":5,"e":6555,"s":1}]]}],[499,{"n":"Olliero","f":"Alexandre","fp":"G","r":14,"c":129,"s":{"s":31.5,"n":6,"a":5.25,"d":0.94,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.65,"Os":31.5,"On":6,"Oa":5.25,"Od":0.94,"pg":6},"p":[[2,{"n":6.5,"e":6576}],[6,{"n":4.5,"e":6535}],[5,{"n":6,"e":6539}],[4,{"n":5.5,"e":6555}],[3,{"n":5,"e":6566}],[1,{"n":4,"e":6586}]]}],[1267,{"n":"Sadzoute","f":"Scotty","fp":"DL","r":9,"c":129,"s":{"s":30.5,"n":6,"a":5.08,"d":0.58,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.58,"Os":30.5,"On":6,"Oa":5.08,"Od":0.58,"pd":3,"pm":3},"p":[[6,{"n":5,"e":6535,"s":1}],[5,{"n":4.5,"e":6539,"s":1}],[4,{"n":4.5,"e":6555}],[3,{"n":5,"e":6566}],[2,{"n":6,"e":6576}],[1,{"n":5.5,"e":6586,"s":1}]]}],[2935,{"n":"Zahary","f":"Younn","fp":"DC","r":5,"c":129,"s":{"s":16.5,"n":3,"a":5.5,"d":0.5,"Os":21,"On":4,"Oa":5.25,"Od":0.65,"pd":4},"p":[[-7,{"n":4.5,"e":5007}],[4,{"n":5.5,"e":6555}],[3,{"n":6,"e":6566}],[2,{"n":5,"e":6576}]]}],[4981,{"n":"Kamissoko","f":"Mamadou","fp":"DL","r":11,"c":129,"s":{"s":25.5,"n":5,"a":5.1,"d":0.82,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Os":25.5,"On":5,"Oa":5.1,"Od":0.82,"pd":5},"p":[[6,{"n":5.5,"e":6535}],[5,{"n":6,"e":6539}],[3,{"n":4.5,"e":6566}],[2,{"n":5.5,"e":6576}],[1,{"n":4,"e":6586}]]}],[5116,{"n":"Assifuah","f":"Ebenezer","fp":"A","r":7,"c":129,"s":{"s":27.5,"n":6,"a":4.58,"d":0.58,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":0.58,"Os":46,"On":10,"Oa":4.6,"Od":0.46,"pm":2,"pa":8},"p":[[-13,{"n":5,"e":4944}],[-10,{"n":4.5,"e":4968,"s":1}],[-9,{"n":4.5,"e":4983,"s":1}],[-7,{"n":4.5,"e":5002,"s":1}],[6,{"n":5,"e":6535}],[5,{"n":4.5,"e":6539}],[4,{"n":5.5,"e":6555}],[3,{"n":4,"e":6566}],[2,{"n":4.5,"e":6576}],[1,{"n":4,"e":6586}]],"fo":[[6539,[{"t":"Y"}]],[6555,[{"t":"Y"}]]]}],[5209,{"n":"Armand","f":"Romain","fp":"A","r":12,"c":129,"s":{"s":25,"n":6,"a":4.17,"d":0.61,"Ss":25,"Sn":6,"Sa":4.17,"Sd":0.61,"Og":6,"Os":103,"On":22,"Oa":4.68,"Od":1.18,"pm":2,"pa":20},"p":[[-28,{"n":5,"e":4797}],[-24,{"n":4,"e":4829}],[-23,{"n":4,"e":4845,"s":1}],[-22,{"n":6.5,"e":4854,"g":2}],[-21,{"n":4.5,"e":4866,"s":1}],[-20,{"n":4,"e":4877}],[-19,{"n":3.5,"e":4884}],[-18,{"n":4,"e":4897}],[-17,{"n":4.5,"e":4901,"s":1}],[-16,{"n":3.5,"e":4914}],[-15,{"n":7,"e":4926,"g":1}],[-14,{"n":4,"e":4934}],[-13,{"n":4,"e":4943}],[-12,{"n":7.5,"e":4954,"g":2}],[-10,{"n":6,"e":4975}],[-9,{"n":6,"e":4984,"g":1}],[6,{"n":4.5,"e":6535}],[5,{"n":5,"e":6539}],[4,{"n":4.5,"e":6555,"s":1}],[3,{"n":4,"e":6566}],[2,{"n":3.5,"e":6576}],[1,{"n":3.5,"e":6586}]],"fo":[[6566,[{"t":"Y"}]]]}],[6726,{"n":"Laplace-Palette","f":"Lucas","fp":"MD","r":1,"c":129}],[6727,{"n":"Ndiaye","f":"Abdourahmane","fp":"MD","r":3,"c":129,"s":{"s":17,"n":4,"a":4.25,"d":0.96,"Os":17,"On":4,"Oa":4.25,"Od":0.96,"pm":4},"p":[[5,{"n":5,"e":6539,"s":1}],[4,{"n":4,"e":6555}],[3,{"n":5,"e":6566,"s":1}],[1,{"n":3,"e":6586,"s":1}]],"fo":[[6586,[{"t":"R"}]],[6555,[{"t":"Y"}]]]}],[6728,{"n":"Sylla","f":"Alpha","fp":"DL","r":1,"c":129,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[6,{"n":4.5,"e":6535}]]}],[6729,{"n":"Bansais","f":"Damon","fp":"DL","r":11,"c":129,"s":{"g":1,"s":27.5,"n":6,"a":4.58,"d":1.2,"Sg":1,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":1.2,"Og":1,"Os":27.5,"On":6,"Oa":4.58,"Od":1.2,"pd":4,"pm":2},"p":[[6,{"n":5,"e":6535}],[5,{"n":5,"e":6539}],[4,{"n":5,"e":6555}],[3,{"n":4,"e":6566}],[2,{"n":6,"e":6576,"g":1}],[1,{"n":2.5,"e":6586}]],"fo":[[6535,[{"t":"Y"}]],[6539,[{"t":"Y"}]],[6566,[{"t":"Y"}]],[6586,[{"t":"Y"}]]]}],[6730,{"n":"Bury","f":"Louis","fp":"DC","r":9,"c":129}],[6731,{"n":"Iribarnegaray","f":"Mathieu","fp":"G","r":1,"c":129}],[6732,{"n":"Jarju","f":"Yankuba","fp":"A","r":5,"c":129,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":4,"Sn":1,"Sa":4,"Os":13.5,"On":3,"Oa":4.5,"Od":0.5,"pa":3},"p":[[6,{"n":4,"e":6535,"s":1}],[4,{"n":5,"e":6555,"s":1}],[1,{"n":4.5,"e":6586,"s":1}]],"fo":[[6535,[{"t":"Y"}]],[6555,[{"t":"Y"}]]]}],[6733,{"n":"Clément","f":"Paul","fp":"DL","r":1,"c":129}],[6736,{"n":"Beusnard","f":"Steeve","fp":"MO","r":5,"c":129,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pa":2},"p":[[6,{"n":4.5,"e":6535,"s":1}],[5,{"n":5,"e":6539,"s":1}]]}],[6748,{"n":"Daubin","f":"Quentin","fp":"MD","r":9,"c":129,"s":{"s":23,"n":5,"a":4.6,"d":1.08,"Ss":11,"Sn":2,"Sa":5.5,"Os":23,"On":5,"Oa":4.6,"Od":1.08,"pm":5},"p":[[6,{"n":5.5,"e":6535}],[5,{"n":5.5,"e":6539}],[3,{"n":3,"e":6566}],[2,{"n":5,"e":6576,"s":1}],[1,{"n":4,"e":6586}]],"fo":[[6539,[{"t":"Y"}]],[6566,[{"t":"Y"},{"t":"O"}]]]}],[6750,{"n":"Diaby","f":"Alassane","fp":"DC","r":8,"c":129}],[6751,{"n":"Nguer","f":"Mor","fp":"MO","r":1,"c":129}],[6753,{"n":"Bayard","f":"Romain","fp":"MO","r":10,"c":129,"s":{"s":17.5,"n":4,"a":4.38,"d":0.63,"Ss":5,"Sn":1,"Sa":5,"Os":17.5,"On":4,"Oa":4.38,"Od":0.63,"pm":4},"p":[[6,{"n":5,"e":6535,"s":1}],[3,{"n":4.5,"e":6566}],[2,{"n":4.5,"e":6576}],[1,{"n":3.5,"e":6586}]],"fo":[[6566,[{"t":"I"}]],[6576,[{"t":"Y"}]]]}],[6754,{"n":"Ba","f":"Moulaye Idrissa","fp":"A","r":8,"c":129,"s":{"s":20,"n":5,"a":4,"d":0.5,"Os":20,"On":5,"Oa":4,"Od":0.5,"pa":5},"p":[[5,{"n":3.5,"e":6539}],[4,{"n":3.5,"e":6555}],[3,{"n":4.5,"e":6566,"s":1}],[2,{"n":4.5,"e":6576,"s":1}],[1,{"n":4,"e":6586,"s":1}]]}],[6757,{"n":"Batisse","f":"Antoine","fp":"DC","r":10,"c":129,"s":{"s":27.5,"n":6,"a":4.58,"d":0.49,"Ss":27.5,"Sn":6,"Sa":4.58,"Sd":0.49,"Os":27.5,"On":6,"Oa":4.58,"Od":0.49,"pd":4,"pm":2},"p":[[6,{"n":5,"e":6535}],[5,{"n":5,"e":6539}],[4,{"n":4.5,"e":6555}],[3,{"n":4,"e":6566}],[2,{"n":5,"e":6576}],[1,{"n":4,"e":6586}]],"fo":[[6539,[{"t":"Y"}]],[6555,[{"t":"Y"}]]]}],[6764,{"n":"Bertrand","f":"Benjamin","fp":"G","r":7,"c":129}],[6812,{"n":"Diatta","f":"Mamadou","fp":"MD","r":3,"c":129,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[3,{"n":4.5,"e":6566,"s":1}],[2,{"n":5,"e":6576,"s":1}]]}],[6813,{"n":"Trindade","f":"Patrick","fp":"G","r":1,"c":129}],[6843,{"n":"Lobry","f":"Victor","fp":"MD","r":10,"c":129,"s":{"s":26.5,"n":6,"a":4.42,"d":0.8,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":0.8,"Os":26.5,"On":6,"Oa":4.42,"Od":0.8,"pm":6},"p":[[6,{"n":5,"e":6535}],[5,{"n":5,"e":6539}],[4,{"n":4.5,"e":6555}],[3,{"n":4,"e":6566,"s":1}],[2,{"n":5,"e":6576}],[1,{"n":3,"e":6586}]],"fo":[[6555,[{"t":"Y"}]],[6576,[{"t":"Y"}]]]}],[6855,{"n":"Scaramozzino","f":"Anthony","fp":"DC","r":10,"c":129,"s":{"s":23.5,"n":5,"a":4.7,"d":0.76,"Os":23.5,"On":5,"Oa":4.7,"Od":0.76,"pd":5},"p":[[5,{"n":5.5,"e":6539}],[4,{"n":3.5,"e":6555}],[3,{"n":5,"e":6566}],[2,{"n":5,"e":6576}],[1,{"n":4.5,"e":6586}]],"fo":[[6555,[{"t":"Y"}]]]}],[6871,{"n":"Meliande","f":"Paul","fp":"MD","r":3,"c":129,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"pm":1,"pa":1},"p":[[4,{"n":3.5,"e":6555}],[1,{"n":4,"e":6586,"s":1}]],"fo":[[6586,[{"t":"Y"}]]]}],[7042,{"n":"Chaminade","f":"Corentin","fp":"DC","r":1,"c":129}],[7297,{"n":"Kouassi","f":"Xavier","fp":"MD","r":10,"c":129,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Os":10.5,"On":2,"Oa":5.25,"Od":1.06,"pm":2},"p":[[6,{"n":4.5,"e":6535}],[5,{"n":6,"e":6539}]]}],[431,{"n":"Alexis Alegue","f":"","fp":"MO","r":8,"c":100,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":10,"Sn":2,"Sa":5,"Os":25,"On":5,"Oa":5,"Od":0.35,"pm":4,"pa":1},"p":[[-28,{"n":5.5,"e":4796}],[6,{"n":5,"e":6531,"s":1}],[5,{"n":5,"e":6544,"s":1}],[3,{"n":4.5,"e":6564,"s":1}],[2,{"n":5,"e":6576}]]}],[469,{"n":"Sané","f":"Pape","fp":"A","r":8,"c":100,"s":{"s":12,"n":3,"a":4,"d":0.87,"Og":5,"Os":111,"On":24,"Oa":4.63,"Od":1.07,"pa":24},"p":[[-28,{"n":4,"e":4796,"s":1}],[-27,{"n":4.5,"e":4804,"s":1}],[-26,{"n":3,"e":4816}],[-25,{"n":4,"e":4822}],[-24,{"n":6,"e":4835,"g":1,"s":1}],[-23,{"n":4.5,"e":4844,"s":1}],[-21,{"n":4,"e":4866}],[-20,{"n":4.5,"e":4876,"s":1}],[-19,{"n":5,"e":4881,"s":1}],[-18,{"n":4.5,"e":4895}],[-17,{"n":4,"e":4902}],[-16,{"n":4,"e":4915}],[-15,{"n":6,"e":4924,"g":1}],[-14,{"n":3.5,"e":4935}],[-13,{"n":4.5,"e":4938,"s":1}],[-12,{"n":7,"e":4955,"g":1}],[-11,{"n":4,"e":4962}],[-10,{"n":4.5,"e":4970,"s":1}],[-9,{"n":4.5,"e":4986}],[-8,{"n":6,"e":4992,"g":1,"s":1}],[-7,{"n":7,"e":5005,"g":1}],[3,{"n":3,"e":6564}],[2,{"n":4.5,"e":6576,"s":1}],[1,{"n":4.5,"e":6585,"s":1}]]}],[490,{"n":"Leborgne","f":"Jordan","fp":"MD","r":5,"c":100,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pm":2},"p":[[3,{"n":4,"e":6564,"s":1}],[1,{"n":5,"e":6585,"s":1}]],"fo":[[6564,[{"t":"R"}]]]}],[536,{"n":"Guivarch","f":"Theo","fp":"G","r":16,"c":100,"s":{"s":29,"n":6,"a":4.83,"d":1.51,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":59.5,"On":12,"Oa":4.96,"Od":1.2,"pg":12},"p":[[4,{"n":5.5,"e":6556}],[-19,{"n":6,"e":4880}],[-18,{"n":5,"e":4891}],[-17,{"n":6,"e":4901}],[-16,{"n":5.5,"e":4911}],[-15,{"n":4,"e":4922}],[-14,{"n":4,"e":4930}],[6,{"n":4,"e":6531}],[5,{"n":5,"e":6544}],[3,{"n":2.5,"e":6564}],[2,{"n":5,"e":6576}],[1,{"n":7,"e":6585}]]}],[1241,{"n":"Maury","f":"Erwan","fp":"MD","r":1,"c":100,"s":{"Os":26,"On":5,"Oa":5.2,"Od":0.45,"pm":5},"p":[[-23,{"n":5,"e":4844,"s":1}],[-18,{"n":5,"e":4895,"s":1}],[-17,{"n":6,"e":4902}],[-11,{"n":5,"e":4962,"s":1}],[-8,{"n":5,"e":4992}]]}],[1438,{"n":"Obiang","f":"Johann","fp":"DL","r":10,"c":100,"s":{"s":18,"n":4,"a":4.5,"d":1.08,"Os":18,"On":4,"Oa":4.5,"Od":1.08,"pd":1,"pm":3},"p":[[4,{"n":5,"e":6556}],[3,{"n":3,"e":6564}],[2,{"n":4.5,"e":6576}],[1,{"n":5.5,"e":6585}]],"fo":[[6585,[{"t":"Y"}]]]}],[4842,{"n":"Secchi","f":"Thomas","fp":"G","r":1,"c":100}],[4843,{"n":"Coelho","f":"Grégory","fp":"DC","r":1,"c":100,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[-20,{"n":5,"e":4876}],[-18,{"n":4.5,"e":4895}]]}],[4844,{"n":"Garcia","f":"Hugo","fp":"MD","r":1,"c":100}],[4846,{"n":"Peyrelade","f":"Alexis","fp":"DC","r":1,"c":100,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pd":3},"p":[[-17,{"n":5,"e":4902}],[-13,{"n":4.5,"e":4938}],[-12,{"n":4.5,"e":4955,"s":1}]]}],[4847,{"n":"Bonnet","f":"Ugo","fp":"A","r":25,"c":100,"s":{"g":2,"s":28.5,"n":6,"a":4.75,"d":1.04,"Sg":2,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":1.04,"Og":10,"Os":128.5,"On":25,"Oa":5.14,"Od":1.31,"pa":25},"p":[[-28,{"n":8,"e":4796,"g":2}],[-27,{"n":4,"e":4804}],[-26,{"n":5,"e":4816,"s":1}],[-25,{"n":4.5,"e":4822}],[-24,{"n":4.5,"e":4835}],[-23,{"n":5,"e":4844}],[-22,{"n":4.5,"e":4855}],[-21,{"n":5,"e":4866}],[-20,{"n":7,"e":4876,"g":1}],[-19,{"n":6,"e":4881,"g":1}],[-18,{"n":5,"e":4895}],[-14,{"n":5,"e":4935}],[-13,{"n":4,"e":4938,"s":1}],[-12,{"n":7,"e":4955,"g":1}],[-11,{"n":6,"e":4962,"g":1,"s":1}],[-10,{"n":3,"e":4970}],[-9,{"n":4.5,"e":4986}],[-8,{"n":4,"e":4992}],[-7,{"n":8,"e":5005,"g":2}],[6,{"n":3.5,"e":6531}],[5,{"n":6.5,"e":6544,"g":1}],[4,{"n":5,"e":6556}],[3,{"n":4,"e":6564}],[2,{"n":5,"e":6576,"g":1}],[1,{"n":4.5,"e":6585}]],"fo":[[6576,[{"t":"Y"}]]],"a":{"m":40,"a":50,"M":71,"n":7}}],[4850,{"n":"Ouammou","f":"Nassim","fp":"MO","r":7,"c":100,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":99.5,"On":21,"Oa":4.74,"Od":0.49,"pd":7,"pm":7,"pa":7},"p":[[-28,{"n":4.5,"e":4796,"s":1}],[-27,{"n":4.5,"e":4804,"s":1}],[-26,{"n":4.5,"e":4816}],[-25,{"n":4.5,"e":4822,"s":1}],[-24,{"n":4.5,"e":4835}],[-23,{"n":4.5,"e":4844}],[-22,{"n":5.5,"e":4855}],[-21,{"n":5.5,"e":4866}],[-20,{"n":5.5,"e":4876}],[-17,{"n":5,"e":4902}],[-16,{"n":5,"e":4915,"s":1}],[-15,{"n":4.5,"e":4924}],[-13,{"n":3.5,"e":4938}],[-12,{"n":4.5,"e":4955,"s":1}],[-11,{"n":5.5,"e":4962}],[-9,{"n":4.5,"e":4986}],[-8,{"n":4.5,"e":4992,"s":1}],[6,{"n":4.5,"e":6531}],[5,{"n":5,"e":6544}],[4,{"n":5,"e":6556,"s":1}],[3,{"n":4.5,"e":6564}]],"fo":[[6564,[{"t":"Y"}]]]}],[4928,{"n":"Ouhafsa","f":"Ayoub","fp":"A","r":14,"c":100,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":1.04,"Ss":5,"Sn":1,"Sa":5,"Og":4,"Os":108,"On":22,"Oa":4.91,"Od":0.83,"pa":22},"p":[[-28,{"n":5,"e":4796}],[-27,{"n":6,"e":4804,"g":1}],[-26,{"n":4.5,"e":4816}],[-24,{"n":4.5,"e":4835}],[-23,{"n":5,"e":4844}],[-22,{"n":6.5,"e":4855,"g":1}],[-21,{"n":4,"e":4866,"s":1}],[-20,{"n":5,"e":4876,"s":1}],[-19,{"n":6,"e":4881}],[-17,{"n":4,"e":4902,"s":1}],[-16,{"n":5.5,"e":4915,"g":1}],[-15,{"n":6,"e":4924,"s":1}],[-14,{"n":4.5,"e":4935,"s":1}],[-11,{"n":4.5,"e":4962}],[-10,{"n":4.5,"e":4970,"s":1}],[-9,{"n":4,"e":4986,"s":1}],[-7,{"n":4.5,"e":5005,"s":1}],[6,{"n":5,"e":6531,"s":1}],[4,{"n":4,"e":6556}],[3,{"n":4,"e":6564,"s":1}],[2,{"n":4.5,"e":6576}],[1,{"n":6.5,"e":6585,"g":1}]]}],[4934,{"n":"Dieng","f":"Nathaniel","fp":"DC","r":10,"c":100,"s":{"s":14,"n":3,"a":4.67,"d":1.53,"Os":60.5,"On":12,"Oa":5.04,"Od":0.84,"pd":12},"p":[[-26,{"n":4.5,"e":4816}],[-25,{"n":5,"e":4822,"s":1}],[-23,{"n":5.5,"e":4844}],[-22,{"n":6,"e":4855}],[-20,{"n":5,"e":4876}],[-17,{"n":4.5,"e":4902}],[-14,{"n":5,"e":4935}],[-9,{"n":5,"e":4986}],[-7,{"n":6,"e":5005}],[3,{"n":3,"e":6564}],[2,{"n":5,"e":6576}],[1,{"n":6,"e":6585}]]}],[4954,{"n":"Roche","f":"Yohan","fp":"DL","r":7,"c":100,"s":{"s":14.5,"n":3,"a":4.83,"d":1.76,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.76,"Os":105,"On":22,"Oa":4.77,"Od":0.94,"pd":22},"p":[[-28,{"n":4.5,"e":4796}],[-25,{"n":5.5,"e":4822}],[-24,{"n":6,"e":4835}],[-22,{"n":5,"e":4855}],[-21,{"n":5,"e":4866}],[-20,{"n":5,"e":4876}],[-19,{"n":4.5,"e":4881}],[-18,{"n":5.5,"e":4895}],[-17,{"n":4.5,"e":4902}],[-16,{"n":4.5,"e":4915}],[-15,{"n":3.5,"e":4924}],[-14,{"n":4,"e":4935}],[-13,{"n":4,"e":4938}],[-12,{"n":6,"e":4955}],[-11,{"n":5.5,"e":4962}],[-10,{"n":3,"e":4970}],[-9,{"n":4,"e":4986}],[-8,{"n":5,"e":4992}],[-7,{"n":5.5,"e":5005}],[6,{"n":3,"e":6531}],[5,{"n":6.5,"e":6544}],[4,{"n":5,"e":6556}]],"fo":[[6531,[{"t":"Y"}]],[6544,[{"t":"Y"}]]]}],[4959,{"n":"Dembélé","f":"Malaly","fp":"A","r":1,"c":100,"s":{"g":1,"s":13.5,"n":3,"a":4.5,"d":1.5,"Sg":1,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":1.5,"Og":1,"Os":49,"On":11,"Oa":4.45,"Od":0.76,"pm":1,"pa":10},"p":[[-25,{"n":5,"e":4824}],[-18,{"n":4.5,"e":4894,"s":1}],[-17,{"n":4,"e":4904}],[-15,{"n":4.5,"e":4921,"s":1}],[-14,{"n":4,"e":4933,"s":1}],[-13,{"n":5,"e":4944,"s":1}],[-11,{"n":4.5,"e":4958,"s":1}],[-7,{"n":4,"e":5001,"s":1}],[6,{"n":3,"e":6531}],[5,{"n":6,"e":6544,"g":1}],[4,{"n":4.5,"e":6556,"s":1}]],"fo":[[6531,[{"t":"Y"}]]]}],[4970,{"n":"Mathis","f":"Boris","fp":"A","r":3,"c":100,"s":{"Os":17.5,"On":4,"Oa":4.38,"Od":0.48,"pa":4},"p":[[-17,{"n":4,"e":4902}],[-16,{"n":4.5,"e":4915,"s":1}],[-15,{"n":4,"e":4924,"s":1}],[-13,{"n":5,"e":4938}]]}],[5016,{"n":"Henry","f":"Valentin","fp":"MD","r":11,"c":100,"s":{"s":28,"n":6,"a":4.67,"d":1.08,"Ss":28,"Sn":6,"Sa":4.67,"Sd":1.08,"Og":2,"Os":122,"On":25,"Oa":4.88,"Od":1.03,"pd":20,"pm":5},"p":[[-28,{"n":6,"e":4796}],[-27,{"n":5.5,"e":4804}],[-26,{"n":5,"e":4816}],[-25,{"n":5,"e":4822}],[-24,{"n":4.5,"e":4835}],[-23,{"n":4,"e":4844}],[-22,{"n":6,"e":4855}],[-21,{"n":6,"e":4866}],[-19,{"n":4.5,"e":4881}],[-17,{"n":4.5,"e":4902}],[-16,{"n":4.5,"e":4915}],[-15,{"n":4,"e":4924}],[-14,{"n":4.5,"e":4935,"g":1}],[-12,{"n":6.5,"e":4955}],[-11,{"n":4.5,"e":4962}],[-10,{"n":3,"e":4970}],[-9,{"n":3.5,"e":4986}],[-8,{"n":5.5,"e":4992}],[-7,{"n":7,"e":5005,"g":1}],[6,{"n":3,"e":6531}],[5,{"n":6,"e":6544}],[4,{"n":5,"e":6556}],[3,{"n":4,"e":6564,"s":1}],[2,{"n":4.5,"e":6576}],[1,{"n":5.5,"e":6585}]],"fo":[[6531,[{"t":"Y"}]]]}],[5075,{"n":"M'Pasi N'Zau","f":"Lionel","fp":"G","r":7,"c":100,"s":{"Os":6,"On":1,"Oa":6,"pg":1},"p":[[-25,{"n":6,"e":4822}]]}],[5094,{"n":"Ruffaut","f":"Pierre","fp":"MD","r":10,"c":100,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":1,"Os":117.5,"On":22,"Oa":5.34,"Od":0.71,"pm":22},"p":[[-27,{"n":5,"e":4804}],[-26,{"n":5,"e":4816,"s":1}],[-25,{"n":4,"e":4822}],[-22,{"n":5.5,"e":4855}],[-21,{"n":5.5,"e":4866}],[-20,{"n":5,"e":4876}],[-19,{"n":5,"e":4881}],[-18,{"n":6.5,"e":4895}],[-16,{"n":5.5,"e":4915}],[-15,{"n":4.5,"e":4924}],[-14,{"n":5,"e":4935}],[-13,{"n":5,"e":4938,"s":1}],[-12,{"n":6.5,"e":4955}],[-11,{"n":6,"e":4962,"s":1}],[-10,{"n":6,"e":4970,"g":1}],[-9,{"n":5,"e":4986}],[-8,{"n":5.5,"e":4992}],[-7,{"n":7,"e":5005}],[6,{"n":5.5,"e":6531,"s":1}],[5,{"n":5,"e":6544,"s":1}],[3,{"n":4.5,"e":6564}],[1,{"n":5,"e":6585,"s":1}]]}],[5095,{"n":"Boissier","f":"Remy","fp":"MD","r":16,"c":100,"s":{"g":2,"s":32,"n":6,"a":5.33,"d":1.25,"Sg":2,"Ss":32,"Sn":6,"Sa":5.33,"Sd":1.25,"Og":2,"Os":104.5,"On":20,"Oa":5.23,"Od":0.95,"pm":20},"p":[[-28,{"n":5,"e":4796}],[-27,{"n":6,"e":4804}],[-26,{"n":5.5,"e":4816}],[-24,{"n":5,"e":4835}],[-23,{"n":7,"e":4844}],[-22,{"n":6,"e":4855}],[-21,{"n":5,"e":4866}],[-20,{"n":5.5,"e":4876}],[-19,{"n":5,"e":4884,"s":1}],[-13,{"n":5,"e":4942}],[-12,{"n":5,"e":4950,"s":1}],[-10,{"n":5,"e":4971}],[-9,{"n":3.5,"e":4982}],[-8,{"n":4,"e":4991}],[6,{"n":4.5,"e":6531}],[5,{"n":6,"e":6544}],[4,{"n":7,"e":6556,"g":2}],[3,{"n":3.5,"e":6564}],[2,{"n":5,"e":6576}],[1,{"n":6,"e":6585}]],"fo":[[6544,[{"t":"Y"}]],[6556,[{"t":"Y"}]],[6585,[{"t":"Y"}]]]}],[5096,{"n":"Chougrani","f":"Joris","fp":"DC","r":13,"c":100,"s":{"s":28.5,"n":6,"a":4.75,"d":0.76,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.76,"Og":1,"Os":125.5,"On":26,"Oa":4.83,"Od":0.97,"pd":25,"pm":1},"p":[[-27,{"n":5.5,"e":4804}],[-26,{"n":4.5,"e":4816}],[-25,{"n":5.5,"e":4822}],[-24,{"n":5,"e":4835}],[-23,{"n":6,"e":4844,"g":1}],[-22,{"n":5,"e":4855}],[-21,{"n":5.5,"e":4866}],[-20,{"n":4.5,"e":4876}],[-19,{"n":4.5,"e":4881}],[-18,{"n":5,"e":4895}],[-17,{"n":4.5,"e":4902,"s":1}],[-16,{"n":4.5,"e":4915}],[-15,{"n":3.5,"e":4924}],[-14,{"n":3.5,"e":4935}],[-13,{"n":4.5,"e":4938}],[-12,{"n":7,"e":4955}],[-11,{"n":4.5,"e":4962}],[-10,{"n":3,"e":4970}],[-8,{"n":4,"e":4992}],[-7,{"n":7,"e":5005}],[6,{"n":3.5,"e":6531}],[5,{"n":5.5,"e":6544}],[4,{"n":4.5,"e":6556}],[3,{"n":4.5,"e":6564}],[2,{"n":5,"e":6576}],[1,{"n":5.5,"e":6585}]],"fo":[[6564,[{"t":"Y"}]],[6576,[{"t":"Y"}]]]}],[5097,{"n":"Bardy","f":"Pierre","fp":"DL","r":13,"c":100,"s":{"s":30.5,"n":6,"a":5.08,"d":1.16,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":1.16,"Og":2,"Os":115,"On":23,"Oa":5,"Od":1.13,"pd":23},"p":[[-28,{"n":5,"e":4796}],[-27,{"n":4,"e":4804}],[-26,{"n":5.5,"e":4816}],[-25,{"n":5.5,"e":4822}],[-24,{"n":5,"e":4835}],[-19,{"n":5.5,"e":4881}],[-18,{"n":7.5,"e":4895,"g":2}],[-16,{"n":5,"e":4915}],[-15,{"n":4.5,"e":4924}],[-14,{"n":4,"e":4935}],[-13,{"n":5,"e":4938}],[-12,{"n":6,"e":4955}],[-11,{"n":6,"e":4962}],[-10,{"n":2,"e":4970}],[-9,{"n":4,"e":4986}],[-8,{"n":5,"e":4992}],[-7,{"n":5,"e":5005}],[6,{"n":3,"e":6531}],[5,{"n":6,"e":6544}],[4,{"n":5.5,"e":6556}],[3,{"n":4.5,"e":6564}],[2,{"n":5.5,"e":6576}],[1,{"n":6,"e":6585}]]}],[5098,{"n":"Dady Ngoye","f":"Francis","fp":"MD","r":1,"c":100}],[5124,{"n":"Douline","f":"David","fp":"DC","r":14,"c":100,"s":{"s":32.5,"n":6,"a":5.42,"d":1.39,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.39,"Og":1,"Oao":1,"Os":136.5,"On":26,"Oa":5.25,"Od":1,"pm":26},"p":[[-28,{"n":4,"e":4796,"a":1}],[-27,{"n":6,"e":4804}],[-26,{"n":5.5,"e":4816}],[-25,{"n":6,"e":4822}],[-24,{"n":4.5,"e":4835}],[-23,{"n":7,"e":4844,"g":1}],[-22,{"n":4.5,"e":4855}],[-21,{"n":5.5,"e":4866}],[-20,{"n":5,"e":4876}],[-19,{"n":4.5,"e":4881}],[-18,{"n":5.5,"e":4895}],[-16,{"n":4.5,"e":4915}],[-15,{"n":5,"e":4924}],[-14,{"n":5,"e":4935}],[-13,{"n":5,"e":4938}],[-12,{"n":7,"e":4955}],[-10,{"n":3.5,"e":4970}],[-9,{"n":5,"e":4986}],[-8,{"n":5,"e":4992}],[-7,{"n":6,"e":5005}],[6,{"n":3.5,"e":6531}],[5,{"n":7.5,"e":6544}],[4,{"n":5,"e":6556}],[3,{"n":4.5,"e":6564}],[2,{"n":6,"e":6576}],[1,{"n":6,"e":6585}]],"fo":[[6531,[{"t":"Y"}]],[6544,[{"t":"Y"}]],[6576,[{"t":"Y"}]]]}],[5149,{"n":"Tertereau","f":"Aurélien","fp":"MO","r":10,"c":100,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Ss":28,"Sn":6,"Sa":4.67,"Sd":0.41,"Os":126,"On":25,"Oa":5.04,"Od":0.76,"pm":22,"pa":3},"p":[[-28,{"n":5,"e":4796,"s":1}],[-26,{"n":4,"e":4816}],[-25,{"n":5,"e":4822}],[-24,{"n":5,"e":4835}],[-23,{"n":6.5,"e":4844}],[-22,{"n":5,"e":4855,"s":1}],[-20,{"n":3.5,"e":4876}],[-19,{"n":5.5,"e":4881}],[-18,{"n":6,"e":4895}],[-17,{"n":5,"e":4902,"s":1}],[-16,{"n":6,"e":4915}],[-15,{"n":4.5,"e":4924,"s":1}],[-14,{"n":4.5,"e":4935}],[-12,{"n":5.5,"e":4955}],[-11,{"n":6,"e":4962}],[-10,{"n":4,"e":4970}],[-9,{"n":5,"e":4986,"s":1}],[-8,{"n":6,"e":4992}],[-7,{"n":6,"e":5005}],[6,{"n":4,"e":6531}],[5,{"n":5,"e":6544,"s":1}],[4,{"n":5,"e":6556}],[3,{"n":4.5,"e":6564,"s":1}],[2,{"n":4.5,"e":6576,"s":1}],[1,{"n":5,"e":6585}]],"fo":[[6531,[{"t":"Y"}]]]}],[5189,{"n":"Poujol","f":"Loïc","fp":"MD","r":5,"c":100,"s":{"s":5,"n":1,"a":5,"Os":48,"On":10,"Oa":4.8,"Od":0.63,"pd":5,"pm":5},"p":[[-21,{"n":5,"e":4866}],[-19,{"n":4.5,"e":4881}],[-18,{"n":6,"e":4895}],[-17,{"n":5,"e":4902}],[-13,{"n":4.5,"e":4938}],[-12,{"n":5,"e":4955,"s":1}],[-11,{"n":5,"e":4962}],[-10,{"n":3.5,"e":4970}],[-9,{"n":4.5,"e":4986,"s":1}],[4,{"n":5,"e":6556,"s":1}]]}],[5200,{"n":"Sanaia","f":"Amiran","fp":"DC","r":5,"c":100,"s":{"Os":48.5,"On":10,"Oa":4.85,"Od":0.78,"pd":10},"p":[[-28,{"n":5,"e":4796}],[-27,{"n":5,"e":4804}],[-23,{"n":5,"e":4844,"s":1}],[-22,{"n":5,"e":4855,"s":1}],[-16,{"n":3,"e":4915}],[-15,{"n":4.5,"e":4924}],[-13,{"n":4.5,"e":4938}],[-12,{"n":5.5,"e":4955}],[-11,{"n":6,"e":4962}],[-8,{"n":5,"e":4992}]]}],[6811,{"n":"Gueye","f":"Daouda","fp":"A","r":1,"c":100,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[4,{"n":4.5,"e":6556,"s":1}]]}],[6850,{"n":"Kerouedan","f":"Alan","fp":"MO","r":3,"c":100,"s":{"s":22.5,"n":5,"a":4.5,"d":0.35,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":22.5,"On":5,"Oa":4.5,"Od":0.35,"pm":1,"pa":4},"p":[[6,{"n":4.5,"e":6531,"s":1}],[5,{"n":5,"e":6544}],[4,{"n":4.5,"e":6556,"s":1}],[2,{"n":4.5,"e":6576,"s":1}],[1,{"n":4,"e":6585,"s":1}]],"fo":[[6585,[{"t":"Y"}]]]}],[90,{"n":"Pogba","f":"Florentin","fp":"DC","r":11,"c":102,"s":{"s":20.5,"n":4,"a":5.13,"d":0.48,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":20.5,"On":4,"Oa":5.13,"Od":0.48,"pd":4},"p":[[2,{"n":4.5,"e":6577}],[6,{"n":5.5,"e":6536}],[5,{"n":5,"e":6538}],[1,{"n":5.5,"e":6581}]],"fo":[[6577,[{"t":"Y"}]]]}],[385,{"n":"Paye","f":"Pape","fp":"DL","r":12,"c":102,"s":{"s":30.5,"n":6,"a":5.08,"d":0.49,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Os":114.5,"On":23,"Oa":4.98,"Od":0.9,"pd":23},"p":[[3,{"n":4.5,"e":6565}],[-28,{"n":4,"e":4791}],[-27,{"n":5,"e":4804}],[-26,{"n":5,"e":4812}],[-24,{"n":5.5,"e":4836}],[-23,{"n":4.5,"e":4843}],[-22,{"n":3.5,"e":4856}],[-21,{"n":3.5,"e":4858}],[-20,{"n":5,"e":4877}],[-15,{"n":3,"e":4923}],[-14,{"n":6,"e":4936}],[-13,{"n":6.5,"e":4946}],[-12,{"n":5,"e":4956}],[-11,{"n":5,"e":4960}],[-10,{"n":6,"e":4976}],[-9,{"n":6,"e":4986}],[-8,{"n":6,"e":4996}],[-7,{"n":4.5,"e":5006}],[6,{"n":5,"e":6536}],[5,{"n":4.5,"e":6538}],[4,{"n":5.5,"e":6556}],[2,{"n":5.5,"e":6577}],[1,{"n":5.5,"e":6581}]],"fo":[[6538,[{"t":"I"}]],[6565,[{"t":"Y"}]],[6581,[{"t":"Y"}]]]}],[521,{"n":"Kaabouni","f":"Younes","fp":"MD","r":4,"c":102,"s":{"Og":1,"Os":71,"On":13,"Oa":5.46,"Od":1.05,"pm":13},"p":[[-20,{"n":5.5,"e":4877}],[-19,{"n":5,"e":4883}],[-18,{"n":4,"e":4896}],[-17,{"n":6,"e":4905,"g":1}],[-16,{"n":5,"e":4916}],[-15,{"n":4,"e":4923}],[-14,{"n":6,"e":4936}],[-13,{"n":6,"e":4946}],[-12,{"n":4.5,"e":4956}],[-10,{"n":8,"e":4976}],[-9,{"n":6,"e":4986}],[-8,{"n":5.5,"e":4996}],[-7,{"n":5.5,"e":5006}]]}],[1395,{"n":"Niane","f":"Adama","fp":"A","r":12,"c":102,"s":{"g":1,"s":6,"n":1,"a":6,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Os":6,"On":1,"Oa":6,"pa":1},"p":[[6,{"n":6,"e":6536,"g":1,"s":1}]]}],[1413,{"n":"Ndour","f":"Abdallah","fp":"DL","r":12,"c":102,"s":{"s":21,"n":4,"a":5.25,"d":0.5,"Ss":10,"Sn":2,"Sa":5,"Os":41.5,"On":8,"Oa":5.19,"Od":0.53,"pd":6,"pm":2},"p":[[-21,{"n":5,"e":3722,"s":1}],[-20,{"n":5,"e":3732,"s":1}],[-8,{"n":6,"e":3857}],[-28,{"n":null,"e":3657,"d":1}],[-9,{"n":4.5,"e":3840}],[6,{"n":5,"e":6536}],[5,{"n":5,"e":6538,"s":1}],[2,{"n":5,"e":6577}],[1,{"n":6,"e":6581}]],"fo":[[6577,[{"t":"I"}]]]}],[3755,{"n":"Soumaré","f":"Bryan","fp":"MO","r":14,"c":102,"s":{"s":28.5,"n":5,"a":5.7,"d":0.57,"Ss":12,"Sn":2,"Sa":6,"Sd":0.71,"Os":74,"On":14,"Oa":5.29,"Od":0.58,"pm":14},"p":[[-21,{"n":5,"e":3723,"s":1}],[-13,{"n":5,"e":3801,"s":1}],[-7,{"n":5.5,"e":3860}],[-18,{"n":5,"e":3748}],[-17,{"n":5,"e":3762,"s":1}],[-10,{"n":4.5,"e":3830}],[-8,{"n":4.5,"e":3856}],[-6,{"n":5,"e":3873,"s":1}],[6,{"n":6.5,"e":6536}],[-5,{"n":6,"e":3881,"s":1}],[5,{"n":5.5,"e":6538}],[3,{"n":5,"e":6565}],[2,{"n":6,"e":6577}],[1,{"n":5.5,"e":6581}]],"fo":[[6565,[{"t":"Y"}]]]}],[4870,{"n":"Sans","f":"Romain","fp":"DL","r":3,"c":102,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Os":18,"On":4,"Oa":4.5,"Od":0.41,"pd":4},"p":[[5,{"n":4.5,"e":6538}],[4,{"n":4,"e":6556}],[3,{"n":5,"e":6565}],[2,{"n":4.5,"e":6577,"s":1}]]}],[4893,{"n":"Moltenis","f":"Boris Sebastian","fp":"DC","r":3,"c":102,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Os":19.5,"On":4,"Oa":4.88,"Od":0.85,"pd":4},"p":[[4,{"n":4,"e":6556}],[3,{"n":6,"e":6565}],[2,{"n":4.5,"e":6577,"s":1}],[1,{"n":5,"e":6581,"s":1}]]}],[4912,{"n":"Ourega","f":"Fabien","fp":"A","r":12,"c":102,"s":{"s":26,"n":5,"a":5.2,"d":0.84,"Ss":4,"Sn":1,"Sa":4,"Os":97.5,"On":19,"Oa":5.13,"Od":0.62,"pm":13,"pa":6},"p":[[-28,{"n":5,"e":4791}],[-27,{"n":5,"e":4804}],[-26,{"n":5,"e":4812}],[-25,{"n":5,"e":4827,"s":1}],[-24,{"n":6.5,"e":4836}],[-22,{"n":4.5,"e":4856}],[-21,{"n":5.5,"e":4858}],[-20,{"n":5,"e":4877}],[-19,{"n":5,"e":4883}],[-18,{"n":6,"e":4896}],[-17,{"n":5,"e":4905}],[-16,{"n":5,"e":4916,"s":1}],[-15,{"n":4.5,"e":4923,"s":1}],[-9,{"n":4.5,"e":4986,"s":1}],[6,{"n":4,"e":6536,"s":1}],[4,{"n":6,"e":6556,"s":1}],[3,{"n":5,"e":6565}],[2,{"n":5,"e":6577}],[1,{"n":6,"e":6581}]]}],[4914,{"n":"M'Bakata","f":"Salem","fp":"DL","r":1,"c":102,"s":{"s":5,"n":1,"a":5,"Os":38.5,"On":8,"Oa":4.81,"Od":0.65,"pd":8},"p":[[-25,{"n":3.5,"e":4827}],[-19,{"n":4.5,"e":4883}],[-18,{"n":5,"e":4896}],[-17,{"n":5.5,"e":4905}],[-16,{"n":4.5,"e":4916}],[-10,{"n":5,"e":4976,"s":1}],[-7,{"n":5.5,"e":5006,"s":1}],[5,{"n":5,"e":6538,"s":1}]]}],[4986,{"n":"Lasme","f":"Bryan","fp":"A","r":6,"c":102,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.25,"Og":2,"Os":79.5,"On":17,"Oa":4.68,"Od":0.75,"pm":5,"pa":12},"p":[[-28,{"n":4,"e":4791,"s":1}],[-27,{"n":6,"e":4804}],[-25,{"n":5,"e":4827}],[-24,{"n":4,"e":4836,"s":1}],[-23,{"n":4.5,"e":4843}],[-22,{"n":4,"e":4856}],[-21,{"n":5,"e":4858,"s":1}],[-20,{"n":6,"e":4877,"g":1,"s":1}],[-19,{"n":4.5,"e":4883,"s":1}],[-18,{"n":6,"e":4896,"g":1,"s":1}],[-12,{"n":3.5,"e":4956}],[-9,{"n":5,"e":4986,"s":1}],[-7,{"n":4.5,"e":5006,"s":1}],[6,{"n":4.5,"e":6536,"s":1}],[5,{"n":4.5,"e":6538,"s":1}],[4,{"n":4,"e":6556}],[3,{"n":4.5,"e":6565,"s":1}]]}],[4996,{"n":"Ambri","f":"Steve","fp":"A","r":4,"c":102,"s":{"g":1,"s":32,"n":6,"a":5.33,"d":0.98,"Sg":1,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.98,"Og":1,"Os":87.5,"On":18,"Oa":4.86,"Od":0.78,"pd":2,"pm":11,"pa":5},"p":[[-26,{"n":4.5,"e":4815,"s":1}],[-22,{"n":4,"e":4855}],[-19,{"n":6,"e":4887,"s":1}],[-17,{"n":4.5,"e":4898,"s":1}],[-16,{"n":4,"e":4917,"s":1}],[-15,{"n":4.5,"e":4925,"s":1}],[-14,{"n":5,"e":4937}],[-13,{"n":4.5,"e":4947}],[-11,{"n":4,"e":4959}],[-10,{"n":5,"e":4977}],[-9,{"n":4.5,"e":4978}],[-7,{"n":5,"e":5006}],[6,{"n":4.5,"e":6536}],[5,{"n":7,"e":6538,"g":1}],[4,{"n":4.5,"e":6556}],[3,{"n":5,"e":6565,"s":1}],[2,{"n":6,"e":6577,"s":1}],[1,{"n":5,"e":6581,"s":1}]],"fo":[[6538,[{"t":"I"}]],[6536,[{"t":"Y"}]],[6565,[{"t":"Y"}]]]}],[5005,{"n":"Weissbeck","f":"Gaetan","fp":"MO","r":14,"c":102,"s":{"g":4,"s":38.5,"n":6,"a":6.42,"d":1.11,"Sg":4,"Ss":38.5,"Sn":6,"Sa":6.42,"Sd":1.11,"Og":5,"Os":134,"On":24,"Oa":5.58,"Od":0.95,"pm":24},"p":[[-28,{"n":4,"e":4791}],[-27,{"n":5,"e":4804,"s":1}],[-25,{"n":5,"e":4827,"s":1}],[-24,{"n":6,"e":4836}],[-23,{"n":5,"e":4843}],[-22,{"n":5.5,"e":4856}],[-21,{"n":4.5,"e":4858,"s":1}],[-19,{"n":5.5,"e":4883}],[-17,{"n":5,"e":4905,"s":1}],[-16,{"n":5,"e":4916}],[-15,{"n":4.5,"e":4923}],[-14,{"n":5.5,"e":4936}],[-13,{"n":7,"e":4946}],[-12,{"n":5,"e":4956,"s":1}],[-11,{"n":5.5,"e":4960}],[-10,{"n":6.5,"e":4976,"g":1,"s":1}],[-8,{"n":5,"e":4996,"s":1}],[-7,{"n":6,"e":5006}],[6,{"n":8,"e":6536,"g":2}],[5,{"n":6,"e":6538}],[4,{"n":5.5,"e":6556,"g":1}],[3,{"n":5,"e":6565}],[2,{"n":7,"e":6577,"g":1}],[1,{"n":7,"e":6581}]],"fo":[[6538,[{"t":"Y"}]]]}],[5028,{"n":"Prevot","f":"Maxence","fp":"G","r":17,"c":102,"s":{"s":33,"n":6,"a":5.5,"d":0.77,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.77,"Os":128.5,"On":24,"Oa":5.35,"Od":1.17,"pg":24},"p":[[-28,{"n":4,"e":4791}],[-27,{"n":5,"e":4804}],[-26,{"n":6,"e":4812}],[-25,{"n":4,"e":4827}],[-24,{"n":6,"e":4836}],[-23,{"n":4.5,"e":4843}],[-22,{"n":3.5,"e":4856}],[-21,{"n":4.5,"e":4858}],[-16,{"n":5,"e":4916}],[-15,{"n":4,"e":4923}],[-14,{"n":7.5,"e":4936}],[-13,{"n":7.5,"e":4946}],[-12,{"n":4,"e":4956}],[-11,{"n":6,"e":4960}],[-10,{"n":6.5,"e":4976}],[-9,{"n":7,"e":4986}],[-8,{"n":4.5,"e":4996}],[-7,{"n":6,"e":5006}],[6,{"n":5.5,"e":6536}],[5,{"n":5.5,"e":6538}],[4,{"n":4,"e":6556}],[3,{"n":6,"e":6565}],[2,{"n":6,"e":6577}],[1,{"n":6,"e":6581}]]}],[5029,{"n":"Long","f":"Aubin Pierre Joseph","fp":"G","r":1,"c":102}],[5053,{"n":"Daham","f":"Sofiane","fp":"MD","r":5,"c":102,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Og":1,"Os":84,"On":16,"Oa":5.25,"Od":0.82,"pm":16},"p":[[-27,{"n":5,"e":4804}],[-26,{"n":5,"e":4812,"s":1}],[-22,{"n":4,"e":4856}],[-21,{"n":6,"e":4858}],[-18,{"n":5,"e":4896}],[-17,{"n":6,"e":4905}],[-14,{"n":5,"e":4936,"s":1}],[-13,{"n":6.5,"e":4946}],[-11,{"n":4.5,"e":4960}],[-10,{"n":6,"e":4976}],[-9,{"n":7,"e":4986,"g":1,"s":1}],[-8,{"n":5,"e":4996,"s":1}],[5,{"n":4.5,"e":6538,"s":1}],[4,{"n":5,"e":6556}],[3,{"n":4.5,"e":6565,"s":1}],[1,{"n":5,"e":6581,"s":1}]]}],[5105,{"n":"Diédhiou","f":"Christophe","fp":"DC","r":11,"c":102,"s":{"g":1,"s":33,"n":6,"a":5.5,"d":1.14,"Sg":1,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.14,"Og":1,"Os":99,"On":19,"Oa":5.21,"Od":0.95,"pd":19},"p":[[-24,{"n":3.5,"e":4836}],[-23,{"n":5,"e":4843}],[-21,{"n":4,"e":4858}],[-20,{"n":5.5,"e":4877}],[-19,{"n":5,"e":4883}],[-15,{"n":4,"e":4923}],[-14,{"n":6,"e":4936}],[-12,{"n":5,"e":4956}],[-11,{"n":6,"e":4960}],[-10,{"n":6,"e":4976}],[-9,{"n":6,"e":4986}],[-8,{"n":5.5,"e":4996}],[-7,{"n":4.5,"e":5006}],[6,{"n":4.5,"e":6536}],[5,{"n":6,"e":6538}],[4,{"n":4.5,"e":6556}],[3,{"n":5.5,"e":6565}],[2,{"n":5,"e":6577}],[1,{"n":7.5,"e":6581,"g":1}]]}],[5160,{"n":"Lopy","f":"Joseph","fp":"MD","r":24,"c":102,"s":{"g":1,"s":32,"n":5,"a":6.4,"d":1.08,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":6,"Os":137.5,"On":25,"Oa":5.5,"Od":1.14,"pm":25},"p":[[-28,{"n":5.5,"e":4794}],[-27,{"n":5,"e":4807}],[-26,{"n":7,"e":4813,"g":1}],[-25,{"n":3.5,"e":4825}],[-24,{"n":4.5,"e":4834}],[-23,{"n":5.5,"e":4844}],[-22,{"n":4.5,"e":4850}],[-21,{"n":6.5,"e":4865}],[-19,{"n":7,"e":4883,"g":1}],[-18,{"n":5,"e":4892}],[-16,{"n":7,"e":4908,"g":2}],[-15,{"n":5,"e":4925}],[-14,{"n":4.5,"e":4934}],[-13,{"n":4.5,"e":4939}],[-12,{"n":5,"e":4953}],[-11,{"n":6,"e":4963}],[-10,{"n":3.5,"e":4974,"g":1}],[-9,{"n":6,"e":4987}],[-8,{"n":5.5,"e":4994}],[-7,{"n":4.5,"e":4998}],[6,{"n":5.5,"e":6536}],[5,{"n":6,"e":6538}],[3,{"n":5.5,"e":6565}],[2,{"n":8,"e":6577,"g":1}],[1,{"n":7,"e":6581}]],"fo":[[6536,[{"t":"Y"}]]]}],[5168,{"n":"Jeannin","f":"Mehdi","fp":"G","r":7,"c":102}],[5372,{"n":"Thioune","f":"Ousseynou","fp":"MD","r":12,"c":102,"s":{"s":21,"n":4,"a":5.25,"d":0.65,"Ss":5,"Sn":1,"Sa":5,"Os":113,"On":22,"Oa":5.14,"Od":1.16,"pm":22},"p":[[-28,{"n":3.5,"e":4791}],[-27,{"n":4,"e":4804}],[-26,{"n":5.5,"e":4812}],[-25,{"n":5,"e":4827}],[-24,{"n":6,"e":4836}],[-23,{"n":5.5,"e":4843}],[-22,{"n":4.5,"e":4856}],[-21,{"n":5,"e":4858}],[-20,{"n":4,"e":4877}],[-16,{"n":4,"e":4916}],[-15,{"n":3.5,"e":4923}],[-14,{"n":6.5,"e":4936}],[-13,{"n":8,"e":4946}],[-12,{"n":3.5,"e":4956}],[-11,{"n":5,"e":4960}],[-10,{"n":6,"e":4976}],[-9,{"n":6,"e":4986}],[-8,{"n":6.5,"e":4996}],[6,{"n":5,"e":6536}],[3,{"n":4.5,"e":6565}],[2,{"n":6,"e":6577}],[1,{"n":5.5,"e":6581,"s":1}]]}],[5460,{"n":"Kitala","f":"Yann","fp":"A","r":5,"c":102,"s":{"g":1,"s":6.5,"n":1,"a":6.5,"Og":3,"Os":58.5,"On":11,"Oa":5.32,"Od":1.03,"pm":7,"pa":4},"p":[[-12,{"n":4.5,"e":4951,"s":1}],[-27,{"n":5,"e":4802,"s":1}],[-25,{"n":4,"e":4823}],[-24,{"n":5,"e":4831}],[-23,{"n":7,"e":4842,"g":1,"s":1}],[-22,{"n":7,"e":4856,"g":1}],[-17,{"n":4.5,"e":4900,"s":1}],[-10,{"n":5,"e":4972,"s":1}],[-8,{"n":5,"e":4992,"s":1}],[-7,{"n":5,"e":5000,"s":1}],[1,{"n":6.5,"e":6581,"g":1}]],"fo":[[6581,[{"t":"I"}]]]}],[5974,{"n":"Ntolla","f":"Natanael","fp":"A","r":1,"c":102}],[6182,{"n":"Ndiaye","f":"Rassoul","fp":"MD","r":4,"c":102,"s":{"s":24,"n":5,"a":4.8,"d":0.27,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Os":29,"On":6,"Oa":4.83,"Od":0.26,"pm":6},"p":[[-23,{"n":5,"e":4843}],[6,{"n":5,"e":6536,"s":1}],[5,{"n":5,"e":6538}],[4,{"n":5,"e":6556}],[3,{"n":4.5,"e":6565,"s":1}],[1,{"n":4.5,"e":6581}]],"fo":[[6556,[{"t":"Y"}]],[6565,[{"t":"Y"}]]]}],[6211,{"n":"Bédia","f":"Chris Vianney","fp":"A","r":9,"c":102,"s":{"g":1,"s":26,"n":6,"a":4.33,"d":0.68,"Sg":1,"Ss":26,"Sn":6,"Sa":4.33,"Sd":0.68,"Og":4,"Os":118.5,"On":26,"Oa":4.56,"Od":0.86,"pm":1,"pa":25},"p":[[-23,{"n":4.5,"e":4841}],[-28,{"n":4.5,"e":4797,"s":1}],[-27,{"n":4.5,"e":4807,"s":1}],[-26,{"n":7,"e":4817,"g":1}],[-22,{"n":4,"e":4857}],[-21,{"n":4,"e":4862}],[-20,{"n":4,"e":4870}],[-19,{"n":5.5,"e":4886}],[-18,{"n":3.5,"e":4891}],[-17,{"n":4.5,"e":4902}],[-16,{"n":6,"e":4916,"g":1}],[-15,{"n":4,"e":4927,"s":1}],[-14,{"n":4,"e":4933,"s":1}],[-13,{"n":4,"e":4947}],[-12,{"n":4.5,"e":4951,"s":1}],[-11,{"n":4.5,"e":4967,"s":1}],[-10,{"n":4.5,"e":4975}],[-9,{"n":4,"e":4987}],[-8,{"n":6.5,"e":4988,"g":1,"s":1}],[-7,{"n":4.5,"e":5007,"s":1}],[6,{"n":4.5,"e":6536}],[5,{"n":4,"e":6538}],[4,{"n":5.5,"e":6556,"g":1}],[3,{"n":4.5,"e":6565}],[2,{"n":4,"e":6577}],[1,{"n":3.5,"e":6581,"s":1}]],"fo":[[6556,[{"t":"Y"}]],[6565,[{"t":"Y"}]]]}],[6715,{"n":"Manuel Semedo","f":"","fp":"A","r":1,"c":102,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[4,{"n":4.5,"e":6556,"s":1}]]}],[6716,{"n":"Virginius","f":"Alan","fp":"A","r":1,"c":102,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[4,{"n":4.5,"e":6556,"s":1}]]}],[6717,{"n":"Zohoré","f":"Nathan","fp":"DC","r":1,"c":102}],[6718,{"n":"Jarmouni","f":"Walid","fp":"A","r":3,"c":102,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pa":2},"p":[[3,{"n":5,"e":6565,"s":1}],[2,{"n":4.5,"e":6577,"s":1}]]}],[7293,{"n":"Faraj","f":"Samy","fp":"MO","r":1,"c":102}],[7294,{"n":"Aubin Diagne","f":"Sidy Mamadou","fp":"MD","r":1,"c":102}],[165,{"n":"Said","f":"Wesley","fp":"A","r":8,"c":10,"s":{"Og":2,"Os":100.5,"On":20,"Oa":5.03,"Od":0.88,"pm":12,"pa":8},"p":[[-28,{"n":5.5,"e":3649}],[-27,{"n":4.5,"e":3667,"s":1}],[-26,{"n":3.5,"e":3670}],[-25,{"n":5.5,"e":3687}],[-24,{"n":6,"e":3691}],[-23,{"n":4.5,"e":3707}],[-21,{"n":5,"e":3720,"s":1}],[-17,{"n":6.5,"e":3767,"g":1}],[-16,{"n":4,"e":3777,"s":1}],[-15,{"n":5.5,"e":3782}],[-14,{"n":4,"e":3797,"s":1}],[-13,{"n":4.5,"e":3802,"s":1}],[-10,{"n":5,"e":3837}],[-9,{"n":4.5,"e":3847}],[-7,{"n":4.5,"e":3867}],[-6,{"n":6,"e":3874}],[-5,{"n":6.5,"e":3887}],[-22,{"n":5,"e":3708}],[-18,{"n":4,"e":3757}],[-8,{"n":6,"e":3852,"g":1,"s":1}]]}],[246,{"n":"Dupé","f":"Maxime","fp":"G","r":18,"c":10,"s":{"s":32.5,"n":6,"a":5.42,"d":1.53,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.53,"Os":152.5,"On":28,"Oa":5.45,"Od":1.12,"pg":28},"p":[[6,{"n":7,"e":6537}],[-28,{"n":6.5,"e":4791}],[-27,{"n":5,"e":4803}],[-26,{"n":4.5,"e":4810}],[-25,{"n":7,"e":4823}],[-24,{"n":5.5,"e":4830}],[-23,{"n":6.5,"e":4838}],[-22,{"n":6,"e":4850}],[-21,{"n":6,"e":4863}],[-20,{"n":4.5,"e":4870}],[-19,{"n":6,"e":4879}],[-18,{"n":5.5,"e":4890}],[-17,{"n":5.5,"e":4907}],[-16,{"n":6,"e":4910}],[-15,{"n":5,"e":4918}],[-14,{"n":6,"e":4929}],[-13,{"n":4.5,"e":4942}],[-12,{"n":5,"e":4949}],[-11,{"n":5,"e":4962}],[-10,{"n":4,"e":4976}],[-9,{"n":4,"e":4980}],[-8,{"n":8,"e":4995}],[-7,{"n":4,"e":5000}],[5,{"n":6,"e":6545}],[4,{"n":5.5,"e":6550}],[3,{"n":6,"e":6565}],[2,{"n":2.5,"e":6572}],[1,{"n":5.5,"e":6578}]]}],[328,{"n":"Goicoechea","f":"Mauro","fp":"G","r":7,"c":10,"s":{"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"pg":2},"p":[[-27,{"n":3.5,"e":3667}],[-26,{"n":4,"e":3670}]]}],[355,{"n":"Moreira","f":"Steven","fp":"DL","r":8,"c":10,"s":{"g":1,"s":11,"n":2,"a":5.5,"d":0.71,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":1,"Os":65.5,"On":15,"Oa":4.37,"Od":1.01,"pd":15},"p":[[-19,{"n":3.5,"e":3743}],[-11,{"n":3,"e":3825}],[-25,{"n":4,"e":3687}],[-24,{"n":5,"e":3691}],[-23,{"n":5,"e":3707}],[-22,{"n":6,"e":3708}],[-21,{"n":3.5,"e":3720}],[-18,{"n":4.5,"e":3757}],[-14,{"n":3.5,"e":3797}],[-9,{"n":3,"e":3847}],[-8,{"n":5,"e":3852}],[-7,{"n":3.5,"e":3867}],[6,{"n":5,"e":6537,"s":1}],[-5,{"n":5,"e":3887}],[5,{"n":6,"e":6545,"g":1,"s":1}]],"fo":[[6545,[{"t":"Y"}]]]}],[359,{"n":"Leya Iseka","f":"Aaron","fp":"A","r":14,"c":10,"s":{"s":7,"n":2,"a":3.5,"Og":2,"Os":90.5,"On":21,"Oa":4.31,"Od":0.87,"pa":21},"p":[[-12,{"n":4,"e":3817,"s":1}],[-28,{"n":4,"e":3649,"s":1}],[-27,{"n":4.5,"e":3667,"s":1}],[-26,{"n":3,"e":3670}],[-25,{"n":3.5,"e":3687}],[-24,{"n":4.5,"e":3691}],[-23,{"n":4.5,"e":3707,"s":1}],[-21,{"n":3,"e":3720}],[-20,{"n":4,"e":3737,"s":1}],[-17,{"n":4.5,"e":3767,"s":1}],[-16,{"n":5,"e":3777,"s":1}],[-15,{"n":5.5,"e":3782,"g":1,"s":1}],[-14,{"n":4.5,"e":3797,"s":1}],[-11,{"n":4.5,"e":3825,"s":1}],[-9,{"n":4.5,"e":3847,"s":1}],[-8,{"n":4,"e":3852}],[-7,{"n":4.5,"e":3867,"s":1}],[-6,{"n":4.5,"e":3874,"s":1}],[-5,{"n":7,"e":3887,"g":1}],[2,{"n":3.5,"e":6572,"s":1}],[1,{"n":3.5,"e":6578}]]}],[394,{"n":"Amian","f":"Kelvin","fp":"DL","r":10,"c":10,"s":{"s":26.5,"n":6,"a":4.42,"d":0.92,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":0.92,"Os":91.5,"On":22,"Oa":4.16,"Od":0.81,"pd":22},"p":[[-25,{"n":5,"e":3687,"s":1}],[-20,{"n":3,"e":3737}],[-19,{"n":4,"e":3743}],[-18,{"n":4.5,"e":3757}],[-17,{"n":3,"e":3767}],[-15,{"n":5,"e":3782}],[-14,{"n":4.5,"e":3797,"s":1}],[-13,{"n":3,"e":3802}],[-12,{"n":5,"e":3817}],[-11,{"n":3,"e":3825}],[-10,{"n":5,"e":3837}],[-9,{"n":3.5,"e":3847}],[-8,{"n":4,"e":3852}],[-7,{"n":4,"e":3867,"s":1}],[-6,{"n":4,"e":3874}],[6,{"n":4,"e":6537}],[-5,{"n":4.5,"e":3887}],[5,{"n":5,"e":6545}],[4,{"n":4,"e":6550}],[3,{"n":5.5,"e":6565}],[2,{"n":3,"e":6572}],[1,{"n":5,"e":6578}]],"fo":[[6565,[{"t":"Y"}]]]}],[556,{"n":"Sangaré","f":"Ibrahim","fp":"MD","r":13,"c":10,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":114,"On":24,"Oa":4.75,"Od":1.07,"pm":24},"p":[[-27,{"n":5,"e":3667}],[-26,{"n":5,"e":3670}],[-25,{"n":5,"e":3687}],[-24,{"n":6,"e":3691}],[-23,{"n":7,"e":3707}],[-22,{"n":6.5,"e":3708}],[-21,{"n":4,"e":3720}],[-20,{"n":2,"e":3737}],[-19,{"n":4,"e":3743}],[-18,{"n":4.5,"e":3757}],[-17,{"n":4,"e":3767}],[-16,{"n":3.5,"e":3777}],[-15,{"n":5.5,"e":3782}],[-14,{"n":4.5,"e":3797}],[-13,{"n":5,"e":3802}],[-11,{"n":3.5,"e":3825}],[-10,{"n":5.5,"e":3837}],[-9,{"n":5.5,"e":3847}],[-8,{"n":5,"e":3852}],[-7,{"n":4.5,"e":3867}],[-6,{"n":3.5,"e":3874}],[-5,{"n":5.5,"e":3887}],[2,{"n":4.5,"e":6572}],[1,{"n":5,"e":6578}]],"fo":[[6572,[{"t":"Y"}]]]}],[2586,{"n":"Healey","f":"Rhys","fp":"A","r":9,"c":10,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":0.85,"Sg":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.85,"Og":1,"Os":19.5,"On":4,"Oa":4.88,"Od":0.85,"pa":4},"p":[[6,{"n":4.5,"e":6537,"s":1}],[5,{"n":6,"e":6545,"g":1,"s":1}],[4,{"n":5,"e":6550,"s":1}],[3,{"n":4,"e":6565,"s":1}]],"fo":[[6565,[{"t":"Y"}]]]}],[2621,{"n":"Bostock","f":"John","fp":"MD","r":5,"c":10}],[2781,{"n":"Goncalves","f":"Mathieu","fp":"DL","r":4,"c":10,"s":{"s":5,"n":1,"a":5,"Os":16.5,"On":4,"Oa":4.13,"Od":1.03,"pd":4},"p":[[-16,{"n":3.5,"e":3777}],[-12,{"n":3,"e":3817}],[-10,{"n":5,"e":3837,"s":1}],[2,{"n":5,"e":6572,"s":1}]]}],[2786,{"n":"Taoui","f":"Adil","fp":"A","r":3,"c":10,"s":{"s":4.5,"n":1,"a":4.5,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[-24,{"n":4.5,"e":3691,"s":1}],[-23,{"n":5,"e":3707,"s":1}],[1,{"n":4.5,"e":6578,"s":1}]]}],[2942,{"n":"N'Goumou Minpole","f":"Nathan","fp":"MO","r":5,"c":10,"s":{"s":5,"n":1,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-18,{"n":5,"e":3757,"s":1}],[1,{"n":5,"e":6578}]]}],[2950,{"n":"Sidibe","f":"Kalidou","fp":"MD","r":3,"c":10,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":20,"On":4,"Oa":5,"pm":4},"p":[[-19,{"n":5,"e":3743,"s":1}],[6,{"n":5,"e":6537,"s":1}],[-5,{"n":5,"e":3887,"s":1}],[5,{"n":5,"e":6545,"s":1}]],"fo":[[6537,[{"t":"Y"}]]]}],[2960,{"n":"Diakite","f":"Bafode","fp":"DC","r":14,"c":10,"s":{"s":28.5,"n":6,"a":4.75,"d":1.21,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":1.21,"Og":2,"Os":87.5,"On":18,"Oa":4.86,"Od":0.95,"pd":18},"p":[[-28,{"n":4.5,"e":3649}],[-27,{"n":4,"e":3667}],[-26,{"n":4,"e":3670}],[-25,{"n":5.5,"e":3687}],[-24,{"n":5.5,"e":3691}],[-23,{"n":5,"e":3707}],[-22,{"n":5.5,"e":3708}],[-21,{"n":3.5,"e":3720}],[-20,{"n":6.5,"e":3737,"g":2}],[-10,{"n":5.5,"e":3837}],[-6,{"n":5,"e":3874}],[6,{"n":3.5,"e":6537}],[-5,{"n":4.5,"e":3887}],[5,{"n":5,"e":6545}],[4,{"n":5.5,"e":6550}],[3,{"n":6,"e":6565}],[2,{"n":3,"e":6572}],[1,{"n":5.5,"e":6578}]],"fo":[[6537,[{"t":"Y"},{"t":"O"}]]],"a":{"m":15,"a":19,"M":31,"n":5}}],[3228,{"n":"Kone","f":"Kouadio","fp":"MD","r":10,"c":10,"s":{"s":32,"n":6,"a":5.33,"d":0.88,"Ss":32,"Sn":6,"Sa":5.33,"Sd":0.88,"Os":93.5,"On":19,"Oa":4.92,"Od":0.82,"pm":19},"p":[[-28,{"n":5.5,"e":3649}],[-26,{"n":4,"e":3670}],[-24,{"n":5.5,"e":3691}],[-23,{"n":4.5,"e":3707}],[-22,{"n":5.5,"e":3708}],[-21,{"n":5,"e":3720}],[-20,{"n":5,"e":3737,"s":1}],[-19,{"n":4,"e":3743}],[-18,{"n":5,"e":3757}],[-17,{"n":5.5,"e":3767,"s":1}],[-15,{"n":3,"e":3782}],[-13,{"n":4.5,"e":3802}],[-12,{"n":4.5,"e":3817}],[6,{"n":6,"e":6537}],[5,{"n":6.5,"e":6545}],[4,{"n":5.5,"e":6550}],[3,{"n":5,"e":6565}],[2,{"n":4,"e":6572}],[1,{"n":5,"e":6578}]],"fo":[[6572,[{"t":"Y"}]],[6578,[{"t":"Y"}]]]}],[3753,{"n":"Diarra","f":"Moussa","fp":"DC","r":4,"c":10,"s":{"s":5.5,"n":1,"a":5.5,"Os":9,"On":2,"Oa":4.5,"Od":1.41,"pd":2},"p":[[-13,{"n":3.5,"e":3802}],[1,{"n":5.5,"e":6578}]]}],[3798,{"n":"Koulouris","f":"Efthymios","fp":"A","r":11,"c":10,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Og":2,"Os":109,"On":24,"Oa":4.54,"Od":0.74,"pa":24},"p":[[-28,{"n":5,"e":3649}],[-27,{"n":4.5,"e":3667,"s":1}],[-23,{"n":4.5,"e":3707}],[-22,{"n":5,"e":3708}],[-21,{"n":4.5,"e":3720,"s":1}],[-20,{"n":3.5,"e":3737}],[-19,{"n":4.5,"e":3743,"s":1}],[-18,{"n":5,"e":3757,"s":1}],[-17,{"n":3.5,"e":3767}],[-15,{"n":5,"e":3782}],[-14,{"n":4,"e":3797}],[-13,{"n":4,"e":3802,"s":1}],[-12,{"n":4.5,"e":3817}],[-11,{"n":5,"e":3825}],[-10,{"n":5,"e":3837}],[-9,{"n":6.5,"e":3847,"g":1}],[-8,{"n":6,"e":3852,"g":1,"s":1}],[-7,{"n":3.5,"e":3867}],[-6,{"n":3.5,"e":3874}],[-5,{"n":4.5,"e":3887,"s":1}],[4,{"n":4.5,"e":6550,"s":1}],[3,{"n":4.5,"e":6565}],[2,{"n":4,"e":6572}],[1,{"n":4.5,"e":6578,"s":1}]],"a":{"m":13,"a":17,"M":27,"n":6}}],[4036,{"n":"Rogel","f":"Agustín","fp":"DC","r":5,"c":10,"s":{"Os":38,"On":9,"Oa":4.22,"Od":0.51,"pd":9},"p":[[-28,{"n":4,"e":3649}],[-27,{"n":4,"e":3667}],[-26,{"n":3.5,"e":3670}],[-25,{"n":5,"e":3687,"s":1}],[-18,{"n":4,"e":3757}],[-17,{"n":4,"e":3767}],[-16,{"n":4.5,"e":3777}],[-15,{"n":5,"e":3782}],[-14,{"n":4,"e":3797}]]}],[6155,{"n":"Zobo","f":"Stéphane","fp":"A","r":1,"c":10}],[6156,{"n":"Adli","f":"Amine","fp":"MO","r":9,"c":10,"s":{"s":25,"n":5,"a":5,"d":0.71,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":44.5,"On":9,"Oa":4.94,"Od":0.53,"pm":9},"p":[[-28,{"n":4.5,"e":3649,"s":1}],[-24,{"n":5,"e":3691,"s":1}],[-21,{"n":5,"e":3720,"s":1}],[-19,{"n":5,"e":3743,"s":1}],[6,{"n":4.5,"e":6537,"s":1}],[4,{"n":4,"e":6550,"s":1}],[3,{"n":5.5,"e":6565}],[2,{"n":5.5,"e":6572,"s":1}],[1,{"n":5.5,"e":6578}]],"fo":[[6550,[{"t":"R"}]],[6537,[{"t":"Y"}]],[6565,[{"t":"Y"}]]]}],[6157,{"n":"Rouault","f":"Anthony","fp":"DC","r":1,"c":10}],[6159,{"n":"Sanna","f":"Sam","fp":"MD","r":4,"c":10,"s":{"s":21.5,"n":5,"a":4.3,"d":0.57,"Ss":21.5,"Sn":5,"Sa":4.3,"Sd":0.57,"Os":21.5,"On":5,"Oa":4.3,"Od":0.57,"pm":5},"p":[[6,{"n":5,"e":6537}],[5,{"n":4.5,"e":6545}],[4,{"n":4,"e":6550}],[3,{"n":4.5,"e":6565}],[2,{"n":3.5,"e":6572}]]}],[6164,{"n":"Bloch","f":"Florentin","fp":"G","r":1,"c":10}],[6308,{"n":"Semanoun","f":"Sacha","fp":"MD","r":1,"c":10}],[6394,{"n":"Gabrielsen","f":"Ruben","fp":"DC","r":14,"c":10,"s":{"s":32.5,"n":6,"a":5.42,"d":1.2,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.2,"Os":68,"On":14,"Oa":4.86,"Od":1.13,"pd":14},"p":[[-28,{"n":4.5,"e":3649}],[-27,{"n":4.5,"e":3667}],[-25,{"n":3.5,"e":3687}],[-24,{"n":5,"e":3691}],[-23,{"n":5,"e":3707}],[-22,{"n":6,"e":3708}],[-21,{"n":4,"e":3720}],[-20,{"n":3,"e":3737}],[6,{"n":5.5,"e":6537}],[5,{"n":6,"e":6545}],[4,{"n":6,"e":6550}],[3,{"n":6,"e":6565}],[2,{"n":3,"e":6572}],[1,{"n":6,"e":6578}]],"fo":[[6537,[{"t":"Y"}]]]}],[6563,{"n":"Antiste","f":"Janis","fp":"A","r":5,"c":10,"s":{"g":2,"s":30.5,"n":6,"a":5.08,"d":1.2,"Sg":2,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":1.2,"Og":2,"Os":30.5,"On":6,"Oa":5.08,"Od":1.2,"pa":6},"p":[[6,{"n":5,"e":6537}],[5,{"n":4.5,"e":6545}],[4,{"n":6,"e":6550,"g":1}],[3,{"n":4,"e":6565,"s":1}],[2,{"n":7,"e":6572,"g":1,"s":1}],[1,{"n":4,"e":6578}]],"fo":[[6550,[{"t":"Y"}]]]}],[6837,{"n":"Mvoue","f":"Steve","fp":"A","r":1,"c":10}],[6851,{"n":"Bayo","f":"Vakoun Issouf","fp":"A","r":12,"c":10,"s":{"g":2,"s":27,"n":5,"a":5.4,"d":1.56,"Sg":2,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.56,"Og":2,"Os":27,"On":5,"Oa":5.4,"Od":1.56,"pa":5},"p":[[6,{"n":5,"e":6537}],[5,{"n":6.5,"e":6545}],[4,{"n":4,"e":6550}],[3,{"n":4,"e":6565}],[2,{"n":7.5,"e":6572,"g":2}]]}],[6853,{"n":"van den Boomen","f":"Branco","fp":"MO","r":10,"c":10,"s":{"g":1,"s":31,"n":6,"a":5.17,"d":0.68,"Sg":1,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.68,"Og":1,"Os":31,"On":6,"Oa":5.17,"Od":0.68,"pm":6},"p":[[6,{"n":4.5,"e":6537}],[5,{"n":6.5,"e":6545,"g":1}],[4,{"n":5,"e":6550}],[3,{"n":5,"e":6565}],[2,{"n":5,"e":6572}],[1,{"n":5,"e":6578,"s":1}]],"fo":[[6545,[{"t":"Y"}]]]}],[7047,{"n":"Machado","f":"Deiver","fp":"DL","r":7,"c":10,"s":{"s":21.5,"n":4,"a":5.38,"d":0.48,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.48,"Os":21.5,"On":4,"Oa":5.38,"Od":0.48,"pm":4},"p":[[6,{"n":5,"e":6537}],[5,{"n":5,"e":6545}],[4,{"n":6,"e":6550}],[3,{"n":5.5,"e":6565}]]}],[7298,{"n":"Dejaegere","f":"Brecht","fp":"MO","r":10,"c":10,"s":{"s":16.5,"n":3,"a":5.5,"Ss":16.5,"Sn":3,"Sa":5.5,"Os":16.5,"On":3,"Oa":5.5,"pm":3},"p":[[6,{"n":5.5,"e":6537}],[5,{"n":5.5,"e":6545}],[4,{"n":5.5,"e":6550}]]}],[479,{"n":"Barthelme","f":"Maxime","fp":"MO","r":22,"c":43,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Og":1,"Os":123.5,"On":22,"Oa":5.61,"Od":0.98,"pm":18,"pa":4},"p":[[-28,{"n":5,"e":4797}],[-27,{"n":6.5,"e":4807,"g":1}],[-26,{"n":7,"e":4817}],[-25,{"n":6.5,"e":4819}],[-24,{"n":6,"e":4837}],[-23,{"n":6,"e":4841}],[-22,{"n":5,"e":4857}],[-21,{"n":4.5,"e":4862}],[-20,{"n":5,"e":4870}],[-19,{"n":6,"e":4886}],[-18,{"n":5,"e":4891}],[-17,{"n":5,"e":4902}],[-15,{"n":3.5,"e":4927}],[-14,{"n":6,"e":4933}],[-13,{"n":7.5,"e":4947}],[-12,{"n":6.5,"e":4951}],[-11,{"n":6.5,"e":4967}],[-9,{"n":6,"e":4987}],[-8,{"n":5,"e":4988}],[-7,{"n":4.5,"e":5007}],[2,{"n":4.5,"e":6577}],[1,{"n":6,"e":6587}]]}],[1188,{"n":"Kouame","f":"Rominigue","fp":"MD","r":14,"c":43,"s":{"g":1,"s":28.5,"n":5,"a":5.7,"d":0.97,"Sg":1,"Ss":18,"Sn":3,"Sa":6,"Sd":1,"Og":1,"Os":66,"On":12,"Oa":5.5,"Od":1.02,"pm":12},"p":[[-28,{"n":5.5,"e":4797}],[-27,{"n":7,"e":4807}],[-26,{"n":6,"e":4817}],[-25,{"n":5.5,"e":4819}],[-23,{"n":3.5,"e":4841}],[-22,{"n":4.5,"e":4857}],[-21,{"n":5.5,"e":4862}],[6,{"n":6,"e":6537}],[5,{"n":7,"e":6546,"g":1}],[4,{"n":5,"e":6557}],[2,{"n":4.5,"e":6577}],[1,{"n":6,"e":6587}]],"fo":[[6546,[{"t":"I"}]],[6577,[{"t":"Y"}]]]}],[1224,{"n":"Massouema","f":"Eden","fp":"MD","r":1,"c":43}],[1230,{"n":"Saint-Louis","f":"Dylan","fp":"A","r":9,"c":43,"s":{"s":28.5,"n":6,"a":4.75,"d":0.42,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.42,"Os":28.5,"On":6,"Oa":4.75,"Od":0.42,"pa":6},"p":[[6,{"n":4,"e":6537}],[5,{"n":5,"e":6546}],[4,{"n":5,"e":6557,"s":1}],[3,{"n":4.5,"e":6566}],[2,{"n":5,"e":6577,"s":1}],[1,{"n":5,"e":6587,"s":1}]],"fo":[[6566,[{"t":"Y"}]]]}],[1408,{"n":"El Hajjam","f":"Oualid","fp":"DL","r":11,"c":43,"s":{"s":24.5,"n":5,"a":4.9,"d":0.22,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":109.5,"On":22,"Oa":4.98,"Od":0.55,"pd":21,"pm":1},"p":[[-28,{"n":6,"e":4797}],[-25,{"n":5,"e":4819}],[-24,{"n":5.5,"e":4837}],[-23,{"n":5,"e":4841}],[-22,{"n":4.5,"e":4857}],[-21,{"n":4,"e":4862}],[-20,{"n":5,"e":4870,"g":1}],[-19,{"n":5.5,"e":4886}],[-18,{"n":5,"e":4891}],[-17,{"n":4.5,"e":4902,"s":1}],[-14,{"n":6,"e":4933}],[-13,{"n":5,"e":4947}],[-12,{"n":6,"e":4951}],[-10,{"n":4.5,"e":4975}],[-9,{"n":4.5,"e":4987}],[-8,{"n":4.5,"e":4988}],[-7,{"n":4.5,"e":5007}],[6,{"n":5,"e":6537}],[5,{"n":5,"e":6546,"s":1}],[3,{"n":5,"e":6566}],[2,{"n":4.5,"e":6577}],[1,{"n":5,"e":6587}]]}],[1411,{"n":"Giraudon","f":"Jimmy","fp":"DC","r":19,"c":43,"s":{"s":33,"n":6,"a":5.5,"d":0.63,"Ss":33,"Sn":6,"Sa":5.5,"Sd":0.63,"Os":137,"On":26,"Oa":5.27,"Od":0.89,"pd":26},"p":[[-28,{"n":5.5,"e":4797}],[-27,{"n":6.5,"e":4807}],[-26,{"n":5.5,"e":4817}],[-25,{"n":6,"e":4819}],[-24,{"n":5.5,"e":4837}],[-23,{"n":6,"e":4841}],[-22,{"n":4,"e":4857}],[-20,{"n":4.5,"e":4870}],[-19,{"n":5,"e":4886}],[-18,{"n":5.5,"e":4891}],[-17,{"n":6,"e":4902}],[-16,{"n":5.5,"e":4916}],[-15,{"n":2.5,"e":4927}],[-14,{"n":6,"e":4933}],[-13,{"n":5.5,"e":4947}],[-12,{"n":5,"e":4951}],[-11,{"n":5.5,"e":4967}],[-10,{"n":5,"e":4975}],[-9,{"n":3.5,"e":4987}],[-8,{"n":5.5,"e":4988}],[6,{"n":6,"e":6537}],[5,{"n":5.5,"e":6546}],[4,{"n":4.5,"e":6557}],[3,{"n":6,"e":6566}],[2,{"n":5,"e":6577}],[1,{"n":6,"e":6587}]],"a":{"m":25,"a":32,"M":42,"n":5}}],[1440,{"n":"Salmier","f":"Yoann","fp":"DC","r":13,"c":43,"s":{"s":31.5,"n":6,"a":5.25,"d":0.82,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.82,"Og":1,"Os":137.5,"On":27,"Oa":5.09,"Od":0.92,"pd":27},"p":[[-28,{"n":5.5,"e":4797}],[-27,{"n":6,"e":4807}],[-26,{"n":5.5,"e":4817}],[-25,{"n":5.5,"e":4819}],[-24,{"n":5.5,"e":4837}],[-23,{"n":4.5,"e":4841}],[-22,{"n":4,"e":4857}],[-21,{"n":4.5,"e":4862}],[-20,{"n":3.5,"e":4870}],[-19,{"n":5,"e":4886}],[-18,{"n":5.5,"e":4891}],[-17,{"n":5.5,"e":4902}],[-16,{"n":5,"e":4916}],[-15,{"n":2,"e":4927}],[-14,{"n":5.5,"e":4933}],[-13,{"n":5.5,"e":4947}],[-12,{"n":6,"e":4951}],[-11,{"n":5.5,"e":4967}],[-9,{"n":5.5,"e":4987,"g":1}],[-8,{"n":4.5,"e":4988}],[-7,{"n":6,"e":5007}],[6,{"n":5.5,"e":6537}],[5,{"n":6,"e":6546}],[4,{"n":4,"e":6557}],[3,{"n":5.5,"e":6566}],[2,{"n":4.5,"e":6577}],[1,{"n":6,"e":6587}]],"fo":[[6557,[{"t":"Y"}]],[6587,[{"t":"Y"}]]]}],[1543,{"n":"Suk Hyun-Jun","f":"","fp":"A","r":11,"c":43,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":0.76,"Og":3,"Os":97,"On":20,"Oa":4.85,"Od":0.73,"pa":20},"p":[[-17,{"n":4.5,"e":3765,"s":1}],[-28,{"n":4.5,"e":4797}],[-27,{"n":6,"e":4807,"g":1}],[-25,{"n":5,"e":4819}],[-24,{"n":6.5,"e":4837,"g":1}],[-23,{"n":5,"e":4841}],[-21,{"n":4.5,"e":3726,"s":1}],[-20,{"n":4.5,"e":3733}],[-18,{"n":5,"e":3757,"s":1}],[-16,{"n":4,"e":3768,"s":1}],[-15,{"n":6,"e":3785,"s":1}],[-13,{"n":4,"e":3805,"s":1}],[-11,{"n":4.5,"e":3824,"s":1}],[-9,{"n":4.5,"e":3845,"s":1}],[-5,{"n":5,"e":3885,"s":1}],[5,{"n":4,"e":6546}],[4,{"n":4.5,"e":6557}],[3,{"n":6,"e":6566,"g":1}],[2,{"n":4.5,"e":6577,"s":1}],[1,{"n":4.5,"e":6587,"s":1}]]}],[2065,{"n":"Lumeka","f":"Levi","fp":"MO","r":9,"c":43,"s":{"g":2,"s":31,"n":6,"a":5.17,"d":1.37,"Sg":2,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.37,"Og":2,"Os":31,"On":6,"Oa":5.17,"Od":1.37,"pa":6},"p":[[6,{"n":4.5,"e":6537}],[5,{"n":5,"e":6546}],[4,{"n":6,"e":6557,"s":1}],[3,{"n":4,"e":6566}],[2,{"n":4,"e":6577}],[1,{"n":7.5,"e":6587,"g":2,"s":1}]],"fo":[[6557,[{"t":"Y"}]]]}],[2271,{"n":"Chambost","f":"Dylan","fp":"MO","r":9,"c":43,"s":{"s":28.5,"n":5,"a":5.7,"d":1.15,"Ss":24,"Sn":4,"Sa":6,"Sd":1.08,"Og":1,"Os":97,"On":18,"Oa":5.39,"Od":0.99,"pm":17,"pa":1},"p":[[-28,{"n":5.5,"e":4797}],[-27,{"n":7,"e":4807}],[-26,{"n":5.5,"e":4817}],[-25,{"n":5.5,"e":4819}],[-24,{"n":5.5,"e":4837}],[-23,{"n":5,"e":4841,"s":1}],[-21,{"n":5,"e":4862,"s":1}],[-19,{"n":5,"e":4886,"s":1}],[-15,{"n":3,"e":4927}],[-11,{"n":4.5,"e":4967}],[-10,{"n":5,"e":4975}],[-9,{"n":5.5,"e":4987,"s":1}],[-7,{"n":6.5,"e":5007,"g":1,"s":1}],[6,{"n":6,"e":6537}],[5,{"n":7,"e":6546}],[4,{"n":4.5,"e":6557}],[3,{"n":6.5,"e":6566}],[1,{"n":4.5,"e":6587}]],"fo":[[6546,[{"t":"Y"}]]]}],[2868,{"n":"Pintor","f":"Lenny","fp":"A","r":7,"c":43,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":3,"Os":88,"On":18,"Oa":4.89,"Od":0.96,"pm":3,"pa":15},"p":[[-25,{"n":6.5,"e":4819,"g":1,"s":1}],[-23,{"n":4.5,"e":4841,"s":1}],[-22,{"n":4.5,"e":4857,"s":1}],[-21,{"n":5,"e":4862}],[-20,{"n":4.5,"e":4870,"s":1}],[-18,{"n":4,"e":4891,"s":1}],[-17,{"n":4.5,"e":4902,"s":1}],[-16,{"n":4,"e":4916,"s":1}],[-15,{"n":3.5,"e":4927}],[-14,{"n":5.5,"e":4933}],[-12,{"n":6.5,"e":4951,"g":1,"s":1}],[-11,{"n":4.5,"e":4967,"s":1}],[-10,{"n":4.5,"e":4975,"s":1}],[-9,{"n":4.5,"e":4987}],[-8,{"n":5,"e":4988,"s":1}],[-7,{"n":7,"e":5007,"g":1}],[6,{"n":5.5,"e":6537}],[4,{"n":4,"e":6557}]]}],[4848,{"n":"Bouallak","f":"Ryan","fp":"G","r":1,"c":43}],[4854,{"n":"Mambo","f":"Stone Muzalimoja","fp":"DC","r":9,"c":43,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":82.5,"On":17,"Oa":4.85,"Od":0.66,"pd":17},"p":[[-28,{"n":4.5,"e":4797}],[-27,{"n":6,"e":4807}],[-26,{"n":6,"e":4817}],[-25,{"n":5.5,"e":4819}],[-24,{"n":5,"e":4837}],[-23,{"n":5,"e":4841}],[-22,{"n":4,"e":4857}],[-21,{"n":4,"e":4862}],[-20,{"n":5,"e":4870,"s":1}],[-16,{"n":4.5,"e":4916,"s":1}],[-14,{"n":5,"e":4933}],[-13,{"n":5,"e":4947,"s":1}],[-11,{"n":3.5,"e":4967}],[-10,{"n":5,"e":4975}],[5,{"n":5,"e":6546}],[4,{"n":4.5,"e":6557}],[3,{"n":5,"e":6566,"s":1}]]}],[4867,{"n":"Jay","f":"Ronan","fp":"G","r":1,"c":43}],[4883,{"n":"Abdallah","f":"Benrandy","fp":"DC","r":1,"c":43}],[4989,{"n":"Rui Pires","f":"","fp":"MD","r":1,"c":43,"s":{"s":4.5,"n":1,"a":4.5,"Os":41.5,"On":9,"Oa":4.61,"Od":0.55,"pm":9},"p":[[-16,{"n":5.5,"e":4916}],[-15,{"n":4.5,"e":4927,"s":1}],[-14,{"n":4.5,"e":4933}],[-13,{"n":4.5,"e":4947,"s":1}],[-12,{"n":5.5,"e":4951,"s":1}],[-11,{"n":4.5,"e":4967,"s":1}],[-10,{"n":4,"e":4975}],[-7,{"n":4,"e":5007}],[5,{"n":4.5,"e":6546,"s":1}]],"fo":[[6546,[{"t":"Y"}]]]}],[4999,{"n":"Digol N'Dozangue","f":"Khamis","fp":"DC","r":1,"c":43}],[5071,{"n":"Raveloson","f":"Rayan","fp":"MD","r":17,"c":43,"s":{"s":33.5,"n":6,"a":5.58,"d":0.86,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.86,"Os":131.5,"On":25,"Oa":5.26,"Od":0.96,"pd":10,"pm":15},"p":[[-27,{"n":6,"e":4807}],[-26,{"n":6.5,"e":4817}],[-25,{"n":6,"e":4819}],[-24,{"n":5.5,"e":4837}],[-22,{"n":4.5,"e":4857,"s":1}],[-21,{"n":5,"e":4862}],[-20,{"n":4.5,"e":4870}],[-19,{"n":5,"e":4886}],[-18,{"n":6,"e":4891}],[-17,{"n":6.5,"e":4902}],[-16,{"n":5,"e":4916}],[-15,{"n":2.5,"e":4927}],[-14,{"n":6,"e":4933}],[-13,{"n":5,"e":4947}],[-12,{"n":5,"e":4951}],[-11,{"n":5.5,"e":4967}],[-9,{"n":3.5,"e":4987}],[-8,{"n":5,"e":4988}],[-7,{"n":5,"e":5007,"s":1}],[6,{"n":5.5,"e":6537}],[5,{"n":6,"e":6546}],[4,{"n":4.5,"e":6557}],[3,{"n":5.5,"e":6566}],[2,{"n":5,"e":6577}],[1,{"n":7,"e":6587}]],"fo":[[6546,[{"t":"Y"}]],[6566,[{"t":"Y"}]]]}],[5091,{"n":"Mutombo Kupa","f":"Gabriel","fp":"DC","r":7,"c":43,"s":{"s":19,"n":4,"a":4.75,"d":0.5,"Ss":5,"Sn":1,"Sa":5,"Os":75,"On":17,"Oa":4.41,"Od":0.87,"pd":17},"p":[[-27,{"n":5,"e":4807}],[-25,{"n":3.5,"e":4825}],[-24,{"n":3.5,"e":4834}],[-23,{"n":4,"e":4844}],[-20,{"n":4.5,"e":4869}],[-19,{"n":5,"e":4883,"s":1}],[-17,{"n":2,"e":4900}],[-16,{"n":4.5,"e":4908}],[-15,{"n":4.5,"e":4925}],[-14,{"n":4.5,"e":4934}],[-12,{"n":5.5,"e":4953}],[-11,{"n":5.5,"e":4963}],[-9,{"n":4,"e":4987,"s":1}],[6,{"n":5,"e":6537,"s":1}],[4,{"n":5,"e":6557,"s":1}],[3,{"n":5,"e":6566,"s":1}],[2,{"n":4,"e":6577,"s":1}]]}],[5108,{"n":"Gallon","f":"Gauthier","fp":"G","r":19,"c":43,"s":{"s":21,"n":4,"a":5.25,"d":1.04,"Os":139.5,"On":26,"Oa":5.37,"Od":0.96,"pg":26},"p":[[-28,{"n":5,"e":4797}],[-27,{"n":7,"e":4807}],[-26,{"n":6.5,"e":4817}],[-25,{"n":6.5,"e":4819}],[-24,{"n":6,"e":4837}],[-23,{"n":5,"e":4841}],[-22,{"n":4.5,"e":4857}],[-21,{"n":5,"e":4862}],[-20,{"n":4,"e":4870}],[-19,{"n":6,"e":4886}],[-18,{"n":6,"e":4891}],[-17,{"n":5.5,"e":4902}],[-16,{"n":6,"e":4916}],[-15,{"n":3.5,"e":4927}],[-14,{"n":6,"e":4933}],[-13,{"n":6,"e":4947}],[-12,{"n":6.5,"e":4951}],[-11,{"n":6,"e":4967}],[-10,{"n":4,"e":4975}],[-9,{"n":4.5,"e":4987}],[-8,{"n":4.5,"e":4988}],[-7,{"n":4.5,"e":5007}],[5,{"n":6.5,"e":6546}],[4,{"n":4,"e":6557}],[2,{"n":5,"e":6577}],[1,{"n":5.5,"e":6587}]]}],[5178,{"n":"Touzghar","f":"Yoann","fp":"A","r":12,"c":43,"s":{"g":1,"s":28.5,"n":5,"a":5.7,"d":0.67,"Og":2,"Oao":1,"Os":74,"On":15,"Oa":4.93,"Od":1.13,"pa":15},"p":[[-16,{"n":4.5,"e":4916}],[-15,{"n":3,"e":4927}],[-14,{"n":5,"e":4933}],[-13,{"n":4.5,"e":4947}],[-12,{"n":4,"e":4951}],[-11,{"n":7,"e":4967,"g":1}],[-10,{"n":3,"e":4975,"a":1}],[-9,{"n":5,"e":4987,"s":1}],[-8,{"n":5,"e":4988}],[-7,{"n":4.5,"e":5007}],[5,{"n":4.5,"e":6546,"s":1}],[4,{"n":6,"e":6557,"g":1,"s":1}],[3,{"n":6,"e":6566,"s":1}],[2,{"n":6,"e":6577}],[1,{"n":6,"e":6587}]]}],[5358,{"n":"Bombo","f":"Calvin","fp":"MD","r":1,"c":43}],[5365,{"n":"Baya","f":"Terence","fp":"DL","r":3,"c":43,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-25,{"n":5,"e":4819,"s":1}]]}],[5376,{"n":"Tardieu","f":"Florian","fp":"MD","r":19,"c":43,"s":{"s":34.5,"n":6,"a":5.75,"d":0.69,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.69,"Og":3,"Os":144,"On":26,"Oa":5.54,"Od":1.08,"pm":26},"p":[[-28,{"n":4.5,"e":4797}],[-27,{"n":5.5,"e":4807}],[-26,{"n":6,"e":4817}],[-24,{"n":4,"e":4837}],[-22,{"n":6,"e":4857,"g":1}],[-21,{"n":5.5,"e":4862}],[-20,{"n":4.5,"e":4870}],[-19,{"n":7,"e":4886,"g":1}],[-18,{"n":6,"e":4891}],[-17,{"n":5.5,"e":4902}],[-16,{"n":6,"e":4916}],[-15,{"n":2.5,"e":4927}],[-14,{"n":7,"e":4933}],[-13,{"n":6.5,"e":4947}],[-12,{"n":6,"e":4951}],[-11,{"n":5,"e":4967}],[-10,{"n":4.5,"e":4975}],[-9,{"n":4.5,"e":4987}],[-8,{"n":7.5,"e":4988,"g":1}],[-7,{"n":5.5,"e":5007}],[6,{"n":6,"e":6537}],[5,{"n":6,"e":6546}],[4,{"n":5.5,"e":6557}],[3,{"n":6,"e":6566}],[2,{"n":4.5,"e":6577}],[1,{"n":6.5,"e":6587}]],"fo":[[6537,[{"t":"Y"}]],[6557,[{"t":"Y"}]],[6577,[{"t":"Y"}]]]}],[5978,{"n":"Renot","f":"Sebastien","fp":"G","r":7,"c":43,"s":{"s":12,"n":2,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":12,"On":2,"Oa":6,"pg":2},"p":[[6,{"n":6,"e":6537}],[3,{"n":6,"e":6566}]]}],[6143,{"n":"Ba","f":"Pape Meissa","fp":"A","r":7,"c":43,"s":{"g":1,"s":25.5,"n":5,"a":5.1,"d":0.82,"Sg":1,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":0.82,"Og":2,"Os":68.5,"On":14,"Oa":4.89,"Od":0.66,"pm":1,"pa":13},"p":[[-23,{"n":4.5,"e":4841,"s":1}],[-22,{"n":4,"e":4857}],[-21,{"n":4.5,"e":4862,"s":1}],[-20,{"n":5,"e":4870}],[-19,{"n":5,"e":4886}],[-18,{"n":5,"e":4891}],[-17,{"n":6,"e":4902,"g":1}],[-16,{"n":4.5,"e":4916,"s":1}],[-14,{"n":4.5,"e":4933,"s":1}],[6,{"n":4.5,"e":6537,"s":1}],[5,{"n":5,"e":6546,"s":1}],[4,{"n":4.5,"e":6557}],[3,{"n":5,"e":6566,"s":1}],[2,{"n":6.5,"e":6577,"g":1,"s":1}]]}],[6235,{"n":"Dembélé","f":"Mahamadou","fp":"DC","r":3,"c":43,"s":{"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":3},"p":[[-27,{"n":5,"e":4807,"s":1}],[-25,{"n":4.5,"e":4819,"s":1}],[-24,{"n":5,"e":4837,"s":1}]]}],[6815,{"n":"Domingues","f":"Brandon","fp":"MO","r":1,"c":43,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pm":2},"p":[[6,{"n":5.5,"e":6537,"s":1}],[4,{"n":5,"e":6557,"s":1}]]}],[6906,{"n":"Vita","f":"Remy","fp":"DL","r":5,"c":43,"s":{"s":19.5,"n":4,"a":4.88,"d":1.44,"Ss":10,"Sn":2,"Sa":5,"Os":19.5,"On":4,"Oa":4.88,"Od":1.44,"pd":4},"p":[[6,{"n":5,"e":6537,"s":1}],[5,{"n":5,"e":6546,"s":1}],[3,{"n":6.5,"e":6566}],[2,{"n":3,"e":6577}]]}],[16,{"n":"Moukandjo","f":"Benjamin","fp":"A","r":3,"c":91,"s":{"Os":22,"On":5,"Oa":4.4,"Od":0.22,"pa":5},"p":[[-24,{"n":4,"e":4830}],[-22,{"n":4.5,"e":4855,"s":1}],[-18,{"n":4.5,"e":4888,"s":1}],[-17,{"n":4.5,"e":4903,"s":1}],[-15,{"n":4.5,"e":4923,"s":1}]]}],[63,{"n":"Prior","f":"Jérôme","fp":"G","r":24,"c":91,"s":{"s":33.5,"n":6,"a":5.58,"d":0.86,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":0.86,"Os":152.5,"On":27,"Oa":5.65,"Od":1.03,"pg":27},"p":[[-28,{"n":6,"e":4792}],[-27,{"n":7,"e":4806}],[-26,{"n":6,"e":4815}],[-25,{"n":5,"e":4827}],[-23,{"n":4,"e":4847}],[-22,{"n":5.5,"e":4855}],[-21,{"n":6,"e":4867}],[-20,{"n":4.5,"e":4874}],[-19,{"n":7.5,"e":4887}],[-18,{"n":6,"e":4897}],[-17,{"n":4.5,"e":4898}],[-16,{"n":7,"e":4917}],[-15,{"n":6.5,"e":4925}],[-14,{"n":6.5,"e":4937}],[-13,{"n":6,"e":4947}],[-12,{"n":7,"e":4957}],[-11,{"n":5.5,"e":4959}],[-10,{"n":4,"e":4977}],[-9,{"n":4,"e":4978}],[-8,{"n":4.5,"e":4997}],[-7,{"n":6,"e":5006}],[6,{"n":4,"e":6533}],[5,{"n":6,"e":6547}],[4,{"n":5.5,"e":6551}],[3,{"n":6,"e":6567}],[2,{"n":5.5,"e":6575}],[1,{"n":6.5,"e":6586}]],"fo":[[6547,[{"t":"Y"}]]],"a":{"m":25,"a":29,"M":30,"n":5}}],[389,{"n":"Cuffaut","f":"Joffrey","fp":"DL","r":13,"c":91,"s":{"s":34,"n":6,"a":5.67,"d":0.98,"Ss":34,"Sn":6,"Sa":5.67,"Sd":0.98,"Og":1,"Oao":1,"Os":124.5,"On":24,"Oa":5.19,"Od":0.91,"pd":24},"p":[[-28,{"n":5.5,"e":4792,"s":1}],[-27,{"n":4.5,"e":4806}],[-26,{"n":5,"e":4815}],[-25,{"n":4.5,"e":4827}],[-24,{"n":3,"e":4830,"a":1}],[-23,{"n":5,"e":4847}],[-21,{"n":5.5,"e":4867}],[-20,{"n":4,"e":4874}],[-19,{"n":6,"e":4887}],[-18,{"n":5.5,"e":4897}],[-17,{"n":5.5,"e":4898,"g":1}],[-16,{"n":6,"e":4917}],[-15,{"n":6.5,"e":4925}],[-14,{"n":5,"e":4937,"s":1}],[-13,{"n":4.5,"e":4947}],[-10,{"n":4,"e":4977}],[-9,{"n":5,"e":4978,"s":1}],[-7,{"n":5.5,"e":5006}],[6,{"n":5,"e":6533}],[5,{"n":7,"e":6547}],[4,{"n":4.5,"e":6551}],[3,{"n":6,"e":6567}],[2,{"n":5,"e":6575}],[1,{"n":6.5,"e":6586}]],"fo":[[6533,[{"t":"Y"}]],[6567,[{"t":"Y"}]],[6575,[{"t":"Y"}]]]}],[1169,{"n":"Guillaume","f":"Baptiste","fp":"A","r":14,"c":91,"s":{"g":2,"s":19.5,"n":4,"a":4.88,"d":1.31,"Og":3,"Os":92.5,"On":19,"Oa":4.87,"Od":0.91,"pa":19},"p":[[-28,{"n":7,"e":4792,"g":1}],[-27,{"n":4.5,"e":4806}],[-26,{"n":4.5,"e":4815}],[-25,{"n":4.5,"e":4827}],[-24,{"n":5,"e":4830,"s":1}],[-19,{"n":6.5,"e":4887}],[-18,{"n":4.5,"e":4897,"s":1}],[-17,{"n":5,"e":4898,"s":1}],[-14,{"n":4.5,"e":4937}],[-13,{"n":4,"e":4947}],[-12,{"n":5,"e":4957}],[-11,{"n":4.5,"e":4959}],[-9,{"n":4,"e":4978}],[-8,{"n":4.5,"e":4997}],[-7,{"n":5,"e":5006}],[4,{"n":3.5,"e":6551}],[3,{"n":6,"e":6567,"g":1}],[2,{"n":4,"e":6575}],[1,{"n":6,"e":6586,"g":1}]]}],[3769,{"n":"Masson","f":"Julien","fp":"MD","r":12,"c":91,"s":{"s":31,"n":6,"a":5.17,"d":0.93,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.93,"Os":118.5,"On":25,"Oa":4.74,"Od":0.83,"pm":24,"pa":1},"p":[[-28,{"n":4.5,"e":4792}],[-27,{"n":5,"e":4806}],[-25,{"n":4.5,"e":4827}],[-24,{"n":4,"e":4830}],[-23,{"n":4.5,"e":4847}],[-22,{"n":3,"e":4855}],[-21,{"n":4,"e":4867}],[-20,{"n":4,"e":4874}],[-19,{"n":6,"e":4887}],[-18,{"n":5,"e":4897}],[-16,{"n":5.5,"e":4917}],[-14,{"n":3.5,"e":4937}],[-13,{"n":5,"e":4947}],[-12,{"n":5,"e":4957}],[-11,{"n":5,"e":4959}],[-10,{"n":3.5,"e":4977}],[-9,{"n":5.5,"e":4978}],[-8,{"n":5,"e":4997}],[-7,{"n":5,"e":5006}],[6,{"n":4.5,"e":6533}],[5,{"n":6.5,"e":6547}],[4,{"n":5,"e":6551}],[3,{"n":5,"e":6567,"s":1}],[2,{"n":4,"e":6575}],[1,{"n":6,"e":6586}]],"fo":[[6533,[{"t":"Y"}]],[6547,[{"t":"Y"}]]]}],[3778,{"n":"Guclu","f":"Metehan","fp":"A","r":5,"c":91,"s":{"s":20.5,"n":5,"a":4.1,"d":0.22,"Ss":20.5,"Sn":5,"Sa":4.1,"Sd":0.22,"Os":20.5,"On":5,"Oa":4.1,"Od":0.22,"pa":5},"p":[[6,{"n":4,"e":6533,"s":1}],[5,{"n":4,"e":6547,"s":1}],[4,{"n":4,"e":6551,"s":1}],[3,{"n":4.5,"e":6567,"s":1}],[2,{"n":4,"e":6575,"s":1}]]}],[4874,{"n":"Linguet","f":"Allan","fp":"MD","r":5,"c":91}],[4880,{"n":"Cabral","f":"Kevin","fp":"A","r":13,"c":91,"s":{"g":1,"s":30.5,"n":6,"a":5.08,"d":1.56,"Sg":1,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":1.56,"Og":2,"Os":116,"On":24,"Oa":4.83,"Od":1,"pm":6,"pa":18},"p":[[-28,{"n":4.5,"e":4792,"s":1}],[-27,{"n":4.5,"e":4806,"s":1}],[-26,{"n":5,"e":4815,"s":1}],[-25,{"n":6,"e":4827,"g":1,"s":1}],[-24,{"n":4.5,"e":4830}],[-23,{"n":5,"e":4847}],[-22,{"n":5,"e":4855,"s":1}],[-21,{"n":4.5,"e":4867,"s":1}],[-20,{"n":4,"e":4874,"s":1}],[-19,{"n":6,"e":4887,"s":1}],[-18,{"n":6,"e":4897,"s":1}],[-17,{"n":4,"e":4898,"s":1}],[-15,{"n":5,"e":4925,"s":1}],[-14,{"n":4.5,"e":4937,"s":1}],[-12,{"n":3.5,"e":4957}],[-10,{"n":3.5,"e":4977}],[-9,{"n":4.5,"e":4978,"s":1}],[-8,{"n":5.5,"e":4997}],[6,{"n":4,"e":6533}],[5,{"n":5,"e":6547}],[4,{"n":4,"e":6551}],[3,{"n":5.5,"e":6567}],[2,{"n":4,"e":6575}],[1,{"n":8,"e":6586,"g":1}]]}],[4890,{"n":"Arib","f":"Gaetan","fp":"DC","r":1,"c":91}],[4933,{"n":"Elogo","f":"Arsene","fp":"MO","r":7,"c":91,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Og":2,"Os":118,"On":22,"Oa":5.36,"Od":0.69,"pm":22},"p":[[-26,{"n":5,"e":4811}],[-25,{"n":6.5,"e":4821}],[-24,{"n":6,"e":4833}],[-23,{"n":5,"e":4840}],[-22,{"n":7,"e":4857,"g":1}],[-21,{"n":5,"e":4861,"s":1}],[-20,{"n":5.5,"e":4868}],[-19,{"n":5,"e":4881,"s":1}],[-18,{"n":5,"e":4896,"s":1}],[-17,{"n":4.5,"e":4907}],[-16,{"n":6.5,"e":4913,"g":1}],[-15,{"n":5,"e":4921}],[-14,{"n":5.5,"e":4931}],[-13,{"n":5.5,"e":4943}],[-12,{"n":6,"e":4948}],[-10,{"n":6,"e":4977}],[-9,{"n":4.5,"e":4981,"s":1}],[-7,{"n":5,"e":5004,"s":1}],[6,{"n":5,"e":6533}],[5,{"n":5,"e":6547,"s":1}],[4,{"n":5,"e":6551,"s":1}],[3,{"n":4.5,"e":6567,"s":1}]],"fo":[[6533,[{"t":"I"}]]]}],[4985,{"n":"Chérif Quenum","f":"","fp":"DL","r":1,"c":91}],[5020,{"n":"Kocik","f":"Nicolas","fp":"G","r":5,"c":91,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pg":2},"p":[[-24,{"n":3.5,"e":4830}],[-23,{"n":5,"e":4847,"s":1}]]}],[5048,{"n":"Dabo","f":"Elhadj","fp":"MD","r":1,"c":91}],[5080,{"n":"Konate","f":"Hillel","fp":"G","r":3,"c":91}],[5084,{"n":"Spano","f":"Maxime","fp":"DC","r":20,"c":91,"s":{"s":31.5,"n":6,"a":5.25,"d":0.94,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.94,"Os":152.5,"On":28,"Oa":5.45,"Od":0.98,"pd":28},"p":[[-28,{"n":6,"e":4792}],[-27,{"n":7,"e":4806}],[-26,{"n":5,"e":4815}],[-25,{"n":4.5,"e":4827}],[-24,{"n":3.5,"e":4830}],[-23,{"n":6,"e":4847}],[-22,{"n":5.5,"e":4855}],[-21,{"n":6.5,"e":4867}],[-20,{"n":4.5,"e":4874}],[-19,{"n":7,"e":4887}],[-18,{"n":7,"e":4897}],[-17,{"n":5.5,"e":4898}],[-16,{"n":7,"e":4917}],[-15,{"n":5.5,"e":4925}],[-14,{"n":5,"e":4937}],[-13,{"n":5.5,"e":4947}],[-12,{"n":5.5,"e":4957}],[-11,{"n":5,"e":4959}],[-10,{"n":4,"e":4977}],[-9,{"n":4.5,"e":4978}],[-8,{"n":5,"e":4997}],[-7,{"n":6,"e":5006}],[6,{"n":4,"e":6533}],[5,{"n":6,"e":6547}],[4,{"n":5,"e":6551}],[3,{"n":5.5,"e":6567}],[2,{"n":4.5,"e":6575}],[1,{"n":6.5,"e":6586}]],"fo":[[6547,[{"t":"Y"}]]]}],[5111,{"n":"Dos Santos","f":"Laurent","fp":"DL","r":13,"c":91,"s":{"s":30,"n":6,"a":5,"d":0.84,"Ss":30,"Sn":6,"Sa":5,"Sd":0.84,"Og":1,"Os":125.5,"On":25,"Oa":5.02,"Od":0.74,"pd":10,"pm":15},"p":[[-28,{"n":5,"e":4792}],[-27,{"n":5,"e":4806}],[-26,{"n":5,"e":4815}],[-25,{"n":5,"e":4827}],[-22,{"n":4.5,"e":4855}],[-21,{"n":5,"e":4867}],[-20,{"n":4,"e":4874}],[-19,{"n":6,"e":4887}],[-18,{"n":5.5,"e":4897}],[-17,{"n":5,"e":4898}],[-16,{"n":6.5,"e":4917,"g":1}],[-15,{"n":5,"e":4925}],[-14,{"n":5,"e":4937}],[-13,{"n":5,"e":4947}],[-12,{"n":5,"e":4957}],[-11,{"n":5,"e":4959}],[-9,{"n":3,"e":4978}],[-8,{"n":6,"e":4997}],[-7,{"n":5,"e":5006}],[6,{"n":4,"e":6533}],[5,{"n":5,"e":6547}],[4,{"n":5,"e":6551,"s":1}],[3,{"n":5,"e":6567}],[2,{"n":4.5,"e":6575}],[1,{"n":6.5,"e":6586}]]}],[5141,{"n":"Vandenabeele","f":"Eric","fp":"DC","r":10,"c":91,"s":{"Og":2,"Os":96.5,"On":17,"Oa":5.68,"Od":0.81,"pd":17},"p":[[-25,{"n":5,"e":4821}],[-24,{"n":6,"e":4833}],[-23,{"n":5,"e":4840}],[-22,{"n":5.5,"e":4857}],[-21,{"n":6,"e":4861}],[-20,{"n":4,"e":4868}],[-19,{"n":6.5,"e":4881,"g":1}],[-18,{"n":7,"e":4896,"g":1}],[-15,{"n":5,"e":4921}],[-14,{"n":5,"e":4931}],[-13,{"n":5.5,"e":4943}],[-12,{"n":7,"e":4948}],[-11,{"n":5.5,"e":4963}],[-10,{"n":6,"e":4977}],[-9,{"n":6.5,"e":4981}],[-8,{"n":5,"e":4990}],[-7,{"n":6,"e":5004}]]}],[5143,{"n":"Ntim","f":"Emmanuel","fp":"DL","r":13,"c":91,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":1.3,"Sg":1,"Ss":24,"Sn":5,"Sa":4.8,"Sd":1.3,"Og":1,"Os":124.5,"On":24,"Oa":5.19,"Od":0.88,"pd":24},"p":[[-28,{"n":5.5,"e":4792}],[-27,{"n":5,"e":4806}],[-26,{"n":4,"e":4815}],[-24,{"n":4,"e":4830}],[-23,{"n":5,"e":4847}],[-22,{"n":6,"e":4855}],[-21,{"n":6,"e":4867}],[-20,{"n":5.5,"e":4874}],[-19,{"n":6,"e":4887}],[-18,{"n":6,"e":4897}],[-17,{"n":4.5,"e":4898}],[-16,{"n":6.5,"e":4917}],[-15,{"n":6,"e":4925}],[-14,{"n":6,"e":4937}],[-12,{"n":5,"e":4957}],[-11,{"n":5.5,"e":4959}],[-10,{"n":4.5,"e":4977}],[-9,{"n":4.5,"e":4978}],[-8,{"n":5,"e":4997}],[6,{"n":4,"e":6533}],[5,{"n":7,"e":6547,"g":1}],[4,{"n":4,"e":6551}],[3,{"n":5,"e":6567}],[2,{"n":4,"e":6575}]],"fo":[[6551,[{"t":"Y"}]]]}],[5183,{"n":"Chergui","f":"Malek","fp":"MO","r":9,"c":91,"s":{"s":5.5,"n":1,"a":5.5,"Og":2,"Os":111,"On":22,"Oa":5.05,"Od":0.95,"pm":4,"pa":18},"p":[[-28,{"n":6.5,"e":4792,"g":1}],[-27,{"n":3.5,"e":4806}],[-26,{"n":5,"e":4815}],[-25,{"n":7,"e":4827,"g":1,"s":1}],[-24,{"n":5,"e":4830,"s":1}],[-23,{"n":4,"e":4847}],[-22,{"n":5,"e":4855}],[-21,{"n":6.5,"e":4867}],[-20,{"n":4.5,"e":4874}],[-18,{"n":4.5,"e":4897}],[-17,{"n":4.5,"e":4898}],[-16,{"n":6.5,"e":4917}],[-15,{"n":6,"e":4925}],[-14,{"n":4.5,"e":4937,"s":1}],[-13,{"n":4,"e":4947,"s":1}],[-12,{"n":5,"e":4957,"s":1}],[-11,{"n":4.5,"e":4959,"s":1}],[-10,{"n":4,"e":4977}],[-9,{"n":4.5,"e":4978}],[-8,{"n":5,"e":4997,"s":1}],[-7,{"n":5.5,"e":5006}],[1,{"n":5.5,"e":6586}]],"fo":[[6586,[{"t":"I"}]]]}],[5190,{"n":"Fedele","f":"Matteo","fp":"MD","r":1,"c":91,"s":{"Os":25.5,"On":5,"Oa":5.1,"Od":0.55,"pm":5},"p":[[-13,{"n":5,"e":4947,"s":1}],[-12,{"n":5,"e":4957}],[-11,{"n":6,"e":4959}],[-10,{"n":4.5,"e":4977,"s":1}],[-7,{"n":5,"e":5006}]]}],[5202,{"n":"Chevalier","f":"Teddy","fp":"A","r":25,"c":91,"s":{"g":1,"s":31,"n":6,"a":5.17,"d":1.17,"Sg":1,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.17,"Og":11,"Os":144.5,"On":28,"Oa":5.16,"Od":1.19,"pm":2,"pa":26},"p":[[-28,{"n":4,"e":4792,"s":1}],[-27,{"n":5,"e":4806}],[-26,{"n":3.5,"e":4815}],[-25,{"n":5,"e":4827}],[-24,{"n":6,"e":4830,"g":1}],[-23,{"n":4.5,"e":4847}],[-22,{"n":6,"e":4855,"g":1}],[-21,{"n":5.5,"e":4867,"g":1}],[-20,{"n":4.5,"e":4874}],[-19,{"n":8.5,"e":4887,"g":3}],[-18,{"n":6.5,"e":4897,"g":1}],[-17,{"n":4,"e":4898}],[-16,{"n":6.5,"e":4917,"g":1}],[-15,{"n":6,"e":4925,"g":1}],[-14,{"n":5,"e":4937}],[-13,{"n":4.5,"e":4947}],[-12,{"n":4,"e":4957,"s":1}],[-11,{"n":4.5,"e":4959,"s":1}],[-10,{"n":4,"e":4977}],[-9,{"n":4.5,"e":4978}],[-8,{"n":7,"e":4997,"g":1,"s":1}],[-7,{"n":4.5,"e":5006}],[6,{"n":4,"e":6533}],[5,{"n":5,"e":6547}],[4,{"n":5,"e":6551}],[3,{"n":6,"e":6567}],[2,{"n":4,"e":6575}],[1,{"n":7,"e":6586,"g":1}]],"a":{"m":40,"a":62,"M":86,"n":5}}],[5348,{"n":"Ousmane","f":"Abdoulaye","fp":"MD","r":1,"c":91}],[5373,{"n":"D'Almeida","f":"Sessi","fp":"MD","r":19,"c":91,"s":{"s":32.5,"n":6,"a":5.42,"d":0.92,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.92,"Og":1,"Os":131,"On":25,"Oa":5.24,"Od":0.99,"pm":25},"p":[[-28,{"n":7.5,"e":4792,"g":1}],[-26,{"n":5,"e":4815}],[-25,{"n":5,"e":4827}],[-24,{"n":5,"e":4830}],[-23,{"n":5.5,"e":4847}],[-22,{"n":5.5,"e":4855}],[-21,{"n":6.5,"e":4867}],[-20,{"n":4,"e":4874}],[-19,{"n":3.5,"e":4887}],[-17,{"n":5,"e":4898}],[-16,{"n":6.5,"e":4917}],[-15,{"n":6,"e":4925}],[-14,{"n":6,"e":4937}],[-13,{"n":4,"e":4947}],[-12,{"n":5,"e":4957}],[-11,{"n":5,"e":4959}],[-10,{"n":5,"e":4977}],[-9,{"n":3.5,"e":4978}],[-8,{"n":5,"e":4997}],[6,{"n":5,"e":6533}],[5,{"n":6,"e":6547}],[4,{"n":5,"e":6551}],[3,{"n":5,"e":6567}],[2,{"n":4.5,"e":6575}],[1,{"n":7,"e":6586}]],"fo":[[6547,[{"t":"Y"}]],[6551,[{"t":"Y"}]],[6586,[{"t":"Y"}]]]}],[6325,{"n":"Boutoutaou","f":"Aymen","fp":"MO","r":3,"c":91,"s":{"s":4.5,"n":1,"a":4.5,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":4},"p":[[-21,{"n":5,"e":4867,"s":1}],[-20,{"n":4.5,"e":4874,"s":1}],[-18,{"n":5,"e":4897,"s":1}],[1,{"n":4.5,"e":6586,"s":1}]]}],[6359,{"n":"Diliberto","f":"Noah","fp":"MD","r":9,"c":91,"s":{"s":30.5,"n":6,"a":5.08,"d":0.38,"Ss":30.5,"Sn":6,"Sa":5.08,"Sd":0.38,"Og":1,"Os":77.5,"On":15,"Oa":5.17,"Od":0.94,"pm":15},"p":[[-28,{"n":7,"e":4792}],[-27,{"n":6,"e":4806}],[-26,{"n":4,"e":4815}],[-25,{"n":6.5,"e":4827,"g":1}],[-24,{"n":3.5,"e":4830}],[-23,{"n":4.5,"e":4847,"s":1}],[-22,{"n":4.5,"e":4855,"s":1}],[-21,{"n":5,"e":4867,"s":1}],[-20,{"n":6,"e":4874,"s":1}],[6,{"n":4.5,"e":6533}],[5,{"n":5,"e":6547}],[4,{"n":5,"e":6551}],[3,{"n":5.5,"e":6567}],[2,{"n":5.5,"e":6575,"s":1}],[1,{"n":5,"e":6586,"s":1}]],"fo":[[6551,[{"t":"Y"}]]]}],[6460,{"n":"Abeid","f":"Aly","fp":"DL","r":11,"c":91,"s":{"s":26.5,"n":5,"a":5.3,"d":0.97,"Os":48.5,"On":10,"Oa":4.85,"Od":0.91,"pd":5,"pm":5},"p":[[-28,{"n":5,"e":4792}],[-27,{"n":4.5,"e":4806}],[-26,{"n":4,"e":4815}],[-25,{"n":3.5,"e":4827}],[-23,{"n":5,"e":4847,"s":1}],[5,{"n":6,"e":6547}],[4,{"n":4.5,"e":6551}],[3,{"n":6,"e":6567}],[2,{"n":4,"e":6575}],[1,{"n":6,"e":6586}]],"fo":[[6551,[{"t":"Y"}]],[6575,[{"t":"Y"}]],[6586,[{"t":"Y"}]]]}],[6743,{"n":"Guel","f":"Moussa","fp":"MO","r":7,"c":91,"s":{"s":23,"n":5,"a":4.6,"d":0.22,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":23,"On":5,"Oa":4.6,"Od":0.22,"pa":5},"p":[[6,{"n":4.5,"e":6533,"s":1}],[4,{"n":4.5,"e":6551,"s":1}],[3,{"n":4.5,"e":6567,"s":1}],[2,{"n":4.5,"e":6575,"s":1}],[1,{"n":5,"e":6586,"s":1}]]}],[6745,{"n":"Picouleau","f":"Mathis","fp":"MD","r":3,"c":91,"s":{"s":23,"n":5,"a":4.6,"d":0.65,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.65,"Os":23,"On":5,"Oa":4.6,"Od":0.65,"pm":5},"p":[[6,{"n":3.5,"e":6533,"s":1}],[5,{"n":4.5,"e":6547,"s":1}],[4,{"n":5,"e":6551,"s":1}],[3,{"n":5,"e":6567,"s":1}],[2,{"n":5,"e":6575,"s":1}]],"fo":[[6533,[{"t":"Y"}]]]}],[6870,{"n":"Doukoure","f":"Ismael","fp":"DC","r":1,"c":91}]],"np":589,"c":[[88,{"n":"Ajaccio","rn":"AC Ajaccio","cn":"Ajaccio","crn":"AC-Ajaccio","a":"ACA","el":1071,"s":{"w":1,"l":4,"d":1,"pl":6,"GA":-7,"GS":3,"GT":10,"p":4},"nm":[[6518,0.601],[6511,0.544]],"pM":[null,6579,6568,6558,6552,6538,6528,4998,4991,4978,4972,4958,4956,4938,4930,4918,4909,4899,4888,4886,4868,4859,4848,4845,4828,4825,4808,4806,4788],"DMI":[4918]}],[42,{"n":"Amiens","rn":"Amiens SC","cn":"Amiens","crn":"Amiens-SC","a":"AMI","el":1000,"s":{"w":2,"l":3,"d":2,"pl":7,"GA":-1,"GS":3,"GT":4,"p":8},"nm":[[6519,0.483],[6515,0.474]],"pM":[null,6580,6573,6559,6549,6539,6529,3858,3848,3838,3835,3826,3808,3806,3788,3781,3768,3760,3748,3744,3728,3718,3708,3704,3688,3678,3677,3658,3651],"DMI":[]}],[101,{"n":"Auxerre","rn":"AJ Auxerre","cn":"Auxerre","crn":"AJ-Auxerre","a":"AUX","el":919,"s":{"w":3,"l":3,"d":0,"pl":6,"GA":1,"GS":10,"GT":9,"p":9},"nm":[[6527,0.398],[6508,0.537]],"pM":[null,6581,6570,6560,6557,6545,6528,4999,4988,4985,4968,4966,4948,4941,4928,4926,4908,4898,4893,4878,4872,4858,4851,4838,4828,4818,4817,4798,4793],"DMI":[4851,4818,4999]}],[5,{"n":"Caen","rn":"SM Caen","cn":"Caen","crn":"SM-Caen","a":"CAE","el":985,"s":{"w":3,"l":1,"d":2,"pl":6,"GA":4,"GS":5,"GT":1,"p":11},"nm":[[6523,0.697],[6509,0.491]],"pM":[null,6583,6568,6564,6548,6547,6529,5007,4989,4981,4969,4959,4954,4939,4928,4919,4911,4904,4895,4879,4873,4859,4849,4839,4832,4819,4814,4799,4790],"DMI":[4839,4911]}],[90,{"n":"Chambly","rn":"FC Chambly Oise","cn":"Chambly","crn":"FC-Chambly-Oise","a":"CBY","el":893,"s":{"w":1,"l":3,"d":2,"pl":6,"GA":-4,"GS":6,"GT":10,"p":5},"nm":[[6508,0.463],[6520,0.3]],"pM":[null,6582,6574,6561,6548,6540,6536,4999,4993,4979,4971,4960,4955,4940,4929,4927,4909,4903,4889,4885,4869,4861,4849,4846,4829,4818,4809,4802,4789],"DMI":[4929,4818,4999]}],[93,{"n":"Châteauroux","rn":"Berrichonne de Châteauroux","cn":"Chateauroux","crn":"Berrichonne-de-Chateauroux","a":"CHX","el":948,"s":{"w":2,"l":3,"d":1,"pl":6,"GA":0,"GS":5,"GT":5,"p":7},"nm":[[6521,0.383],[6510,0.426]],"pM":[null,6579,6570,6567,6549,6540,6530,5003,4990,4983,4969,4961,4953,4941,4937,4920,4912,4905,4894,4880,4876,4860,4848,4846,4837,4820,4811,4800,4790],"DMI":[4800,4983]}],[92,{"n":"Clermont","rn":"Clermont Foot 63","cn":"Clermont","crn":"Clermont-Foot-63","a":"CLM","el":1040,"s":{"w":2,"l":1,"d":3,"pl":6,"GA":3,"GS":6,"GT":3,"p":9},"nm":[[6511,0.456],[6520,0.7]],"pM":[null,6583,6571,6560,6550,6546,6531,5000,4995,4980,4976,4962,4949,4942,4929,4918,4910,4907,4890,4879,4870,4863,4850,4838,4830,4823,4810,4803,4791],"DMI":[4929,4918]}],[128,{"n":"Dunkerque","rn":"USL Dunkerque","cn":"Dunkerque","crn":"USL-Dunkerque","a":"DQK","el":1000,"s":{"w":3,"l":2,"d":1,"pl":6,"GA":1,"GS":5,"GT":4,"p":10},"nm":[[6522,0.434],[6512,0.456]],"pM":[null,6578,6571,6558,6551,6544,6532],"DMI":[]}],[94,{"n":"Grenoble","rn":"Grenoble Foot 38","cn":"Grenoble","crn":"Grenoble-Foot-38","a":"GRN","el":1012,"s":{"w":4,"l":2,"d":0,"pl":6,"GA":5,"GS":11,"GT":6,"p":12},"nm":[[6519,0.517],[6513,0.451]],"pM":[null,6585,6572,6561,6552,6541,6533,5004,4990,4981,4977,4963,4948,4943,4931,4921,4913,4907,4896,4881,4868,4861,4857,4840,4833,4821,4811,4799,4792],"DMI":[4921]}],[14,{"n":"Guingamp","rn":"EA Guingamp","cn":"Guingamp","crn":"EA-Guingamp","a":"GUI","el":991,"s":{"w":2,"l":3,"d":1,"pl":6,"GA":-2,"GS":5,"GT":7,"p":7},"nm":[[6527,0.602],[6509,0.509]],"pM":[null,6584,6569,6562,6555,6541,6532,5001,4996,4982,4970,4965,4949,4940,4930,4922,4911,4901,4891,4880,4871,4865,4851,4847,4831,4824,4812,4801,4796],"DMI":[4851,4911]}],[89,{"n":"Le Havre","rn":"Le Havre AC","cn":"Le-Havre","crn":"Le-Havre-AC","a":"LHV","el":1031,"s":{"w":3,"l":3,"d":0,"pl":6,"GA":-2,"GS":5,"GT":7,"p":9},"nm":[[6521,0.617],[6512,0.544]],"pM":[null,6587,6573,6562,6553,6542,6534,5002,4994,4983,4968,4964,4957,4944,4936,4922,4915,4906,4890,4885,4875,4862,4852,4840,4832,4826,4813,4800,4793],"DMI":[4800,4983]}],[17,{"n":"Nancy","rn":"AS Nancy Lorraine","cn":"Nancy","crn":"AS-Nancy-Lorraine","a":"NAC","el":1046,"s":{"w":1,"l":4,"d":2,"pl":7,"GA":-2,"GS":5,"GT":7,"p":5},"nm":[[6522,0.566],[6513,0.549]],"pM":[null,6580,6569,6563,6554,6542,6535,5001,4993,4980,4973,4958,4952,4944,4933,4921,4914,4904,4894,4878,4874,4864,4853,4843,4835,4824,4809,4803,4795],"DMI":[4921]}],[98,{"n":"Niort","rn":"Chamois Niortais FC","cn":"Niort","crn":"Chamois-Niortais-FC","a":"NIO","el":840,"s":{"w":3,"l":1,"d":2,"pl":6,"GA":1,"GS":6,"GT":5,"p":11},"nm":[[6523,0.303],[6514,0.285]],"pM":[null,6584,6574,6563,6553,6543,6530,5004,4997,4985,4973,4965,4950,4946,4932,4924,4910,4899,4889,4882,4875,4860,4854,4839,4834,4821,4815,4798,4795],"DMI":[4839]}],[107,{"n":"Paris FC","rn":"Paris FC","cn":"Paris-FC","crn":"Paris-FC","a":"PFC","el":888,"nm":[],"pM":[null,null,null,null,null,null,null,5002,4995,4984,4975,4961,4954,4943,4934,4926,4914,4901,4897,4884,4877,4866,4854,4845,4829,4826,4810,4805,4797],"DMI":[]}],[129,{"n":"Pau","rn":"Pau FC","cn":"Pau","crn":"Pau-FC","a":"PAU","el":1000,"s":{"w":0,"l":3,"d":3,"pl":6,"GA":-6,"GS":2,"GT":8,"p":3},"nm":[[6514,0.715],[6524,0.5]],"pM":[null,6586,6576,6566,6555,6539,6535],"DMI":[]}],[100,{"n":"Rodez","rn":"Rodez Aveyron Football","cn":"Rodez","crn":"Rodez-Aveyron-Football","a":"RDZ","el":923,"s":{"w":2,"l":2,"d":2,"pl":6,"GA":-4,"GS":6,"GT":10,"p":8},"nm":[[6525,0.301],[6516,0.391]],"pM":[null,6585,6576,6564,6556,6544,6531,5005,4992,4986,4970,4962,4955,4938,4935,4924,4915,4902,4895,4881,4876,4866,4855,4844,4835,4822,4816,4804,4796],"DMI":[4902]}],[102,{"n":"Sochaux","rn":"FC Sochaux-Montbéliard","cn":"Sochaux","crn":"FC-Sochaux-Montbeliard","a":"SOC","el":1018,"s":{"w":3,"l":0,"d":3,"pl":6,"GA":4,"GS":10,"GT":6,"p":12},"nm":[[6515,0.526],[6526,0.499]],"pM":[null,6581,6577,6565,6556,6538,6536,5006,4996,4986,4976,4960,4956,4946,4936,4923,4916,4905,4896,4883,4877,4858,4856,4843,4836,4827,4812,4804,4791],"DMI":[4827,5006]}],[10,{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse","crn":"Toulouse-FC","a":"TLS","el":1000,"s":{"w":1,"l":2,"d":3,"pl":6,"GA":-1,"GS":7,"GT":8,"p":6},"nm":[[6518,0.399],[6516,0.609]],"pM":[null,6578,6572,6565,6550,6545,6537,3867,3852,3847,3837,3825,3817,3802,3797,3782,3777,3767,3757,3743,3737,3720,3708,3707,3691,3687,3670,3667,3649],"DMI":[]}],[43,{"n":"Troyes","rn":"ESTAC Troyes","cn":"Troyes","crn":"ESTAC-Troyes","a":"TRO","el":1069,"s":{"w":3,"l":2,"d":1,"pl":6,"GA":3,"GS":7,"GT":4,"p":10},"nm":[[6525,0.699],[6517,0.571]],"pM":[null,6587,6577,6566,6557,6546,6537,5007,4988,4987,4975,4967,4951,4947,4933,4927,4916,4902,4891,4886,4870,4862,4857,4841,4837,4819,4817,4807,4797],"DMI":[4902,4947]}],[91,{"n":"Valenciennes","rn":"Valentiennes FC","cn":"Valenciennes","crn":"Valentiennes-FC","a":"VCN","el":1019,"s":{"w":3,"l":4,"d":0,"pl":7,"GA":0,"GS":5,"GT":5,"p":9},"nm":[[6526,0.501],[6517,0.429]],"pM":[null,6586,6575,6567,6551,6547,6533,5006,4997,4978,4977,4959,4957,4947,4937,4925,4917,4898,4897,4887,4874,4867,4855,4847,4830,4827,4815,4806,4792],"DMI":[4827,5006,4947]}]],"nc":20,"op":[[6,{"n":"Lorient"}],[103,{"n":"Le Mans"}],[97,{"n":"Orléans"}],[104,{"n":"Lens"}],[9,{"n":"Marseille"}],[11,{"n":"Metz"}],[41,{"n":"Strasbourg"}],[2,{"n":"Paris"}],[13,{"n":"Monaco"}],[18,{"n":"Lyon"}],[75,{"n":"Brest"}],[15,{"n":"Montpellier"}],[7,{"n":"Dijon"}],[4,{"n":"Saint-Étienne"}],[67,{"n":"Nîmes"}],[16,{"n":"Angers"}],[8,{"n":"Nantes"}],[20,{"n":"Rennes"}],[68,{"n":"Reims"}],[3,{"n":"Bordeaux"}],[12,{"n":"Lille"}],[19,{"n":"Nice"}],[120,{"n":"Sampdoria"}],[124,{"n":"Udinese"}],[117,{"n":"Genoa"}],[119,{"n":"Atalanta"}],[122,{"n":"Torino"}],[110,{"n":"Fiorentina"}],[126,{"n":"Verona"}],[112,{"n":"Inter"}]],"Ne":[[6518,{"d":7,"dB":1602954000,"t1":88,"t2":10}],[6511,{"d":8,"dB":1603558800,"t1":92,"t2":88}],[6519,{"d":7,"dB":1602954000,"t1":42,"t2":94}],[6515,{"d":8,"dB":1603741500,"t1":102,"t2":42}],[6527,{"d":7,"dB":1603133100,"t1":14,"t2":101}],[6508,{"d":8,"dB":1603558800,"t1":101,"t2":90}],[6523,{"d":7,"dB":1602954000,"t1":98,"t2":5}],[6509,{"d":8,"dB":1603544400,"t1":5,"t2":14}],[6520,{"d":7,"dB":1602954000,"t1":90,"t2":92}],[6521,{"d":7,"dB":1602954000,"t1":89,"t2":93}],[6510,{"d":8,"dB":1603558800,"t1":93,"t2":2}],[6522,{"d":7,"dB":1602954000,"t1":17,"t2":128}],[6512,{"d":8,"dB":1603558800,"t1":128,"t2":89}],[6513,{"d":8,"dB":1603558800,"t1":94,"t2":17}],[6514,{"d":8,"dB":1603558800,"t1":129,"t2":98}],[6524,{"d":7,"dB":1602954000,"t1":2,"t2":129}],[6525,{"d":7,"dB":1602954000,"t1":100,"t2":43}],[6516,{"d":8,"dB":1603558800,"t1":10,"t2":100}],[6526,{"d":7,"dB":1602939600,"t1":91,"t2":102}],[6517,{"d":8,"dB":1603558800,"t1":43,"t2":91}]],"e":[[4788,{"d":28,"dB":1583589600,"t1s":1,"t2s":0,"t1":88,"t2":6}],[4806,{"d":27,"dB":1582916400,"t1s":0,"t2s":0,"t1":91,"t2":88}],[4808,{"d":26,"dB":1582311600,"t1s":2,"t2s":0,"t1":88,"t2":103}],[4825,{"d":25,"dB":1581706800,"t1s":0,"t2s":3,"t1":97,"t2":88}],[4828,{"d":24,"dB":1581102000,"t1s":2,"t2s":3,"t1":88,"t2":101}],[4845,{"d":23,"dB":1580846700,"t1s":2,"t2s":3,"t1":107,"t2":88}],[4848,{"d":22,"dB":1580497200,"t1s":0,"t2s":1,"t1":88,"t2":93}],[4859,{"d":21,"dB":1579892400,"t1s":0,"t2s":1,"t1":5,"t2":88}],[4868,{"d":20,"dB":1578682800,"t1s":3,"t2s":1,"t1":88,"t2":94}],[4886,{"d":19,"dB":1576940400,"t1s":2,"t2s":1,"t1":43,"t2":88}],[4888,{"d":18,"dB":1576332000,"t1s":1,"t2s":2,"t1":88,"t2":104}],[4899,{"d":17,"dB":1575403200,"t1s":0,"t2s":1,"t1":98,"t2":88}],[4909,{"d":16,"dB":1575054000,"t1s":0,"t2s":2,"t1":90,"t2":88}],[4918,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":88,"t2":92}],[4930,{"d":14,"dB":1573307100,"t1s":1,"t2s":1,"t1":14,"t2":88}],[4938,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":88,"t2":100}],[4956,{"d":12,"dB":1572026400,"t1s":0,"t2s":2,"t1":102,"t2":88}],[4958,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":88,"t2":17}],[4972,{"d":10,"dB":1570212000,"t1s":0,"t2s":0,"t1":6,"t2":88}],[4978,{"d":9,"dB":1569607200,"t1s":2,"t2s":0,"t1":88,"t2":91}],[4991,{"d":8,"dB":1569002400,"t1s":2,"t2s":4,"t1":103,"t2":88}],[4998,{"d":7,"dB":1568397600,"t1s":0,"t2s":0,"t1":88,"t2":97}],[6528,{"d":6,"dB":1601744400,"t1s":5,"t2s":1,"t1":101,"t2":88}],[6538,{"d":5,"dB":1601139600,"t1s":1,"t2s":1,"t1":88,"t2":102}],[6558,{"d":3,"dB":1601485200,"t1s":1,"t2s":0,"t1":88,"t2":128}],[6568,{"d":2,"dB":1598706000,"t1s":1,"t2s":0,"t1":5,"t2":88}],[6579,{"d":1,"dB":1598115600,"t1s":0,"t2s":1,"t1":88,"t2":93}],[6552,{"d":4,"dB":1600534800,"t1s":2,"t2s":0,"t1":94,"t2":88}],[4789,{"d":28,"dB":1583521200,"t1s":2,"t2s":2,"t1":90,"t2":103}],[4801,{"d":27,"dB":1582916400,"t1s":2,"t2s":1,"t1":103,"t2":14}],[4822,{"d":25,"dB":1581706800,"t1s":0,"t2s":0,"t1":103,"t2":100}],[4872,{"d":20,"dB":1578682800,"t1s":0,"t2s":1,"t1":103,"t2":101}],[4884,{"d":19,"dB":1576936800,"t1s":0,"t2s":3,"t1":107,"t2":103}],[4892,{"d":18,"dB":1576263600,"t1s":3,"t2s":2,"t1":103,"t2":97}],[4906,{"d":17,"dB":1575403200,"t1s":2,"t2s":0,"t1":89,"t2":103}],[4912,{"d":16,"dB":1575054000,"t1s":1,"t2s":2,"t1":103,"t2":93}],[4919,{"d":15,"dB":1574449200,"t1s":3,"t2s":3,"t1":5,"t2":103}],[4931,{"d":14,"dB":1573239600,"t1s":0,"t2s":0,"t1":103,"t2":94}],[4942,{"d":13,"dB":1572703200,"t1s":0,"t2s":1,"t1":92,"t2":103}],[4950,{"d":12,"dB":1572026400,"t1s":1,"t2s":0,"t1":103,"t2":98}],[4967,{"d":11,"dB":1571421600,"t1s":2,"t2s":1,"t1":43,"t2":103}],[4971,{"d":10,"dB":1570212000,"t1s":1,"t2s":0,"t1":103,"t2":90}],[4982,{"d":9,"dB":1569869100,"t1s":3,"t2s":0,"t1":14,"t2":103}],[5005,{"d":7,"dB":1568397600,"t1s":4,"t2s":1,"t1":100,"t2":103}],[4842,{"d":23,"dB":1580846700,"t1s":4,"t2s":2,"t1":6,"t2":103}],[4856,{"d":22,"dB":1580567400,"t1s":0,"t2s":4,"t1":102,"t2":6}],[4893,{"d":18,"dB":1576263600,"t1s":1,"t2s":0,"t1":6,"t2":101}],[4900,{"d":17,"dB":1575403200,"t1s":0,"t2s":4,"t1":97,"t2":6}],[4932,{"d":14,"dB":1573239600,"t1s":4,"t2s":1,"t1":6,"t2":98}],[4964,{"d":11,"dB":1571490000,"t1s":2,"t2s":2,"t1":89,"t2":6}],[4979,{"d":9,"dB":1569607200,"t1s":0,"t2s":1,"t1":90,"t2":6}],[4830,{"d":24,"dB":1581102000,"t1s":3,"t2s":1,"t1":92,"t2":91}],[4838,{"d":23,"dB":1580846700,"t1s":0,"t2s":0,"t1":101,"t2":92}],[4850,{"d":22,"dB":1580497200,"t1s":3,"t2s":1,"t1":92,"t2":97}],[4863,{"d":21,"dB":1579960800,"t1s":1,"t2s":1,"t1":104,"t2":92}],[4870,{"d":20,"dB":1578682800,"t1s":3,"t2s":2,"t1":92,"t2":43}],[4907,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":94,"t2":92}],[4910,{"d":16,"dB":1575054000,"t1s":1,"t2s":0,"t1":92,"t2":98}],[4929,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":90,"t2":92}],[4949,{"d":12,"dB":1572026400,"t1s":1,"t2s":2,"t1":14,"t2":92}],[4962,{"d":11,"dB":1571421600,"t1s":0,"t2s":1,"t1":92,"t2":100}],[5000,{"d":7,"dB":1568465100,"t1s":0,"t2s":2,"t1":92,"t2":6}],[4793,{"d":28,"dB":1583521200,"t1s":1,"t2s":0,"t1":89,"t2":101}],[4798,{"d":27,"dB":1582916400,"t1s":3,"t2s":1,"t1":101,"t2":98}],[4817,{"d":26,"dB":1582573500,"t1s":3,"t2s":1,"t1":43,"t2":101}],[4818,{"d":25,"dB":1581706800,"t1s":0,"t2s":0,"t1":101,"t2":90}],[4851,{"d":22,"dB":1580497200,"t1s":1,"t2s":0,"t1":14,"t2":101}],[4858,{"d":21,"dB":1579892400,"t1s":2,"t2s":1,"t1":101,"t2":102}],[4898,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":101,"t2":91}],[4908,{"d":16,"dB":1575054000,"t1s":2,"t2s":2,"t1":101,"t2":97}],[4926,{"d":15,"dB":1574449200,"t1s":2,"t2s":0,"t1":107,"t2":101}],[4928,{"d":14,"dB":1573239600,"t1s":1,"t2s":1,"t1":101,"t2":5}],[4948,{"d":12,"dB":1572026400,"t1s":0,"t2s":1,"t1":101,"t2":94}],[4966,{"d":11,"dB":1571683500,"t1s":0,"t2s":0,"t1":104,"t2":101}],[4968,{"d":10,"dB":1570279500,"t1s":2,"t2s":0,"t1":101,"t2":89}],[4985,{"d":9,"dB":1569607200,"t1s":2,"t2s":2,"t1":98,"t2":101}],[4988,{"d":8,"dB":1569002400,"t1s":1,"t2s":2,"t1":101,"t2":43}],[4999,{"d":7,"dB":1568397600,"t1s":1,"t2s":4,"t1":90,"t2":101}],[3651,{"d":28,"dB":1583524800,"t1s":2,"t2s":2,"t1":9,"t2":42}],[3658,{"d":27,"dB":1583002800,"t1s":0,"t2s":1,"t1":42,"t2":11}],[3677,{"d":26,"dB":1582398000,"t1s":0,"t2s":0,"t1":41,"t2":42}],[3678,{"d":25,"dB":1581784200,"t1s":4,"t2s":4,"t1":42,"t2":2}],[3688,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":42,"t2":13}],[3704,{"d":23,"dB":1580925600,"t1s":0,"t2s":0,"t1":18,"t2":42}],[3708,{"d":22,"dB":1580583600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3718,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":75,"t2":42}],[3728,{"d":20,"dB":1578769200,"t1s":1,"t2s":2,"t1":42,"t2":15}],[3744,{"d":19,"dB":1576957500,"t1s":4,"t2s":1,"t1":2,"t2":42}],[3748,{"d":18,"dB":1576350000,"t1s":1,"t2s":1,"t1":42,"t2":7}],[3760,{"d":17,"dB":1575745200,"t1s":3,"t2s":0,"t1":13,"t2":42}],[3788,{"d":14,"dB":1574535600,"t1s":0,"t2s":4,"t1":42,"t2":41}],[3808,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":42,"t2":75}],[3826,{"d":11,"dB":1572192000,"t1s":2,"t2s":2,"t1":4,"t2":42}],[3835,{"d":10,"dB":1571508000,"t1s":1,"t2s":1,"t1":67,"t2":42}],[3838,{"d":9,"dB":1570214700,"t1s":3,"t2s":1,"t1":42,"t2":9}],[3848,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":16,"t2":42}],[3872,{"d":6,"dB":1569088800,"t1s":1,"t2s":2,"t1":11,"t2":42}],[3878,{"d":5,"dB":1568400300,"t1s":2,"t2s":2,"t1":42,"t2":18}],[6529,{"d":6,"dB":1601731800,"t1s":1,"t2s":0,"t1":5,"t2":42}],[6539,{"d":5,"dB":1601139600,"t1s":0,"t2s":0,"t1":42,"t2":129}],[6549,{"d":4,"dB":1600534800,"t1s":0,"t2s":0,"t1":93,"t2":42}],[6559,{"d":3,"dB":1599930000,"t1s":1,"t2s":2,"t1":42,"t2":2}],[6573,{"d":2,"dB":1598720400,"t1s":1,"t2s":0,"t1":89,"t2":42}],[6580,{"d":1,"dB":1598115600,"t1s":1,"t2s":0,"t1":42,"t2":17}],[3690,{"d":24,"dB":1581188400,"t1s":3,"t2s":3,"t1":7,"t2":8}],[3700,{"d":23,"dB":1580846700,"t1s":1,"t2s":2,"t1":8,"t2":2}],[3716,{"d":22,"dB":1580499900,"t1s":3,"t2s":2,"t1":20,"t2":8}],[3736,{"d":20,"dB":1578837600,"t1s":0,"t2s":2,"t1":4,"t2":8}],[3742,{"d":19,"dB":1576957500,"t1s":1,"t2s":2,"t1":8,"t2":16}],[3755,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":67,"t2":8}],[3791,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":75,"t2":8}],[3832,{"d":10,"dB":1571508000,"t1s":1,"t2s":0,"t1":11,"t2":8}],[3768,{"d":16,"dB":1579111200,"t1s":1,"t2s":1,"t1":42,"t2":68}],[3781,{"d":15,"dB":1575140400,"t1s":4,"t2s":2,"t1":15,"t2":42}],[3806,{"d":13,"dB":1573394400,"t1s":3,"t2s":1,"t1":20,"t2":42}],[3858,{"d":7,"dB":1569430800,"t1s":1,"t2s":3,"t1":42,"t2":3}],[3666,{"d":27,"dB":1582993800,"t1s":4,"t2s":0,"t1":2,"t2":7}],[3679,{"d":25,"dB":1581793200,"t1s":2,"t2s":2,"t1":3,"t2":7}],[3738,{"d":19,"dB":1576957500,"t1s":2,"t2s":2,"t1":7,"t2":11}],[3762,{"d":17,"dB":1575820800,"t1s":1,"t2s":0,"t1":8,"t2":7}],[3778,{"d":15,"dB":1575140400,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3792,{"d":14,"dB":1574535600,"t1s":2,"t2s":1,"t1":7,"t2":20}],[3830,{"d":10,"dB":1571499000,"t1s":0,"t2s":0,"t1":18,"t2":7}],[3840,{"d":9,"dB":1570298400,"t1s":1,"t2s":0,"t1":7,"t2":41}],[3856,{"d":8,"dB":1569693600,"t1s":1,"t2s":2,"t1":68,"t2":7}],[3873,{"d":6,"dB":1569088800,"t1s":2,"t2s":1,"t1":19,"t2":7}],[3881,{"d":5,"dB":1568484000,"t1s":0,"t2s":0,"t1":7,"t2":67}],[3657,{"d":28,"dB":1584561600,"dl":1,"t1s":null,"t2s":null,"t1":41,"t2":2}],[4797,{"d":28,"dB":1583521200,"t1s":1,"t2s":1,"t1":43,"t2":107}],[4805,{"d":27,"dB":1583178300,"t1s":0,"t2s":2,"t1":107,"t2":104}],[4810,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":92,"t2":107}],[4826,{"d":25,"dB":1581706800,"t1s":1,"t2s":0,"t1":107,"t2":89}],[4829,{"d":24,"dB":1581102000,"t1s":1,"t2s":2,"t1":90,"t2":107}],[4854,{"d":22,"dB":1580497200,"t1s":4,"t2s":4,"t1":98,"t2":107}],[4897,{"d":18,"dB":1576263600,"t1s":1,"t2s":0,"t1":91,"t2":107}],[4901,{"d":17,"dB":1575403200,"t1s":0,"t2s":3,"t1":107,"t2":14}],[4914,{"d":16,"dB":1575054000,"t1s":2,"t2s":0,"t1":17,"t2":107}],[4943,{"d":13,"dB":1572703200,"t1s":0,"t2s":0,"t1":94,"t2":107}],[4954,{"d":12,"dB":1572026400,"t1s":2,"t2s":4,"t1":107,"t2":5}],[4961,{"d":11,"dB":1571421600,"t1s":0,"t2s":1,"t1":93,"t2":107}],[4975,{"d":10,"dB":1570212000,"t1s":1,"t2s":0,"t1":107,"t2":43}],[4984,{"d":9,"dB":1569674700,"t1s":2,"t2s":1,"t1":104,"t2":107}],[4995,{"d":8,"dB":1569002400,"t1s":0,"t2s":2,"t1":107,"t2":92}],[5704,{"d":13,"dB":1574614800,"t1s":2,"t2s":1,"t1":120,"t2":124}],[5721,{"d":11,"dB":1572789600,"t1s":1,"t2s":3,"t1":117,"t2":124}],[5738,{"d":9,"dB":1572184800,"t1s":7,"t2s":1,"t1":119,"t2":124}],[5757,{"d":8,"dB":1571576400,"t1s":1,"t2s":0,"t1":124,"t2":122}],[5761,{"d":7,"dB":1570357800,"t1s":1,"t2s":0,"t1":110,"t2":124}],[5787,{"d":5,"dB":1569344400,"t1s":0,"t2s":0,"t1":126,"t2":124}],[5801,{"d":3,"dB":1568486700,"t1s":1,"t2s":0,"t1":112,"t2":124}],[4869,{"d":20,"dB":1578682800,"t1s":1,"t2s":0,"t1":90,"t2":97}],[4878,{"d":19,"dB":1576868400,"t1s":0,"t2s":0,"t1":101,"t2":17}],[4941,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":93,"t2":101}],[6545,{"d":5,"dB":1601125200,"t1s":3,"t2s":1,"t1":10,"t2":101}],[6557,{"d":4,"dB":1600713900,"t1s":2,"t2s":1,"t1":101,"t2":43}],[6560,{"d":3,"dB":1599930000,"t1s":0,"t2s":1,"t1":101,"t2":92}],[6570,{"d":2,"dB":1598720400,"t1s":1,"t2s":2,"t1":93,"t2":101}],[6581,{"d":1,"dB":1598115600,"t1s":0,"t2s":2,"t1":101,"t2":102}],[4815,{"d":26,"dB":1582311600,"t1s":1,"t2s":0,"t1":98,"t2":91}],[4827,{"d":25,"dB":1581706800,"t1s":3,"t2s":2,"t1":91,"t2":102}],[4847,{"d":23,"dB":1580846700,"t1s":0,"t2s":0,"t1":91,"t2":14}],[4855,{"d":22,"dB":1580497200,"t1s":1,"t2s":1,"t1":100,"t2":91}],[4867,{"d":21,"dB":1579892400,"t1s":1,"t2s":0,"t1":91,"t2":103}],[4874,{"d":20,"dB":1578682800,"t1s":1,"t2s":0,"t1":17,"t2":91}],[4887,{"d":19,"dB":1576868400,"t1s":3,"t2s":0,"t1":91,"t2":6}],[4917,{"d":16,"dB":1575054000,"t1s":2,"t2s":0,"t1":91,"t2":104}],[4925,{"d":15,"dB":1574449200,"t1s":0,"t2s":1,"t1":97,"t2":91}],[4937,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":91,"t2":93}],[4947,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":43,"t2":91}],[4957,{"d":12,"dB":1572291900,"t1s":0,"t2s":0,"t1":91,"t2":89}],[4959,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":5,"t2":91}],[4977,{"d":10,"dB":1570212000,"t1s":0,"t2s":2,"t1":91,"t2":94}],[4997,{"d":8,"dB":1569002400,"t1s":1,"t2s":1,"t1":91,"t2":98}],[5006,{"d":7,"dB":1568397600,"t1s":0,"t2s":0,"t1":102,"t2":91}],[3776,{"d":16,"dB":1575482400,"t1s":4,"t2s":1,"t1":4,"t2":19}],[3884,{"d":5,"dB":1568484000,"t1s":2,"t2s":1,"t1":15,"t2":19}],[3839,{"d":9,"dB":1570298400,"t1s":2,"t2s":0,"t1":75,"t2":11}],[3853,{"d":8,"dB":1569693600,"t1s":4,"t2s":1,"t1":13,"t2":75}],[3660,{"d":27,"dB":1583002800,"t1s":0,"t2s":1,"t1":75,"t2":16}],[3673,{"d":26,"dB":1582308000,"t1s":2,"t2s":2,"t1":19,"t2":75}],[3696,{"d":24,"dB":1581188400,"t1s":0,"t2s":0,"t1":20,"t2":75}],[3698,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":75,"t2":3}],[3711,{"d":22,"dB":1580583600,"t1s":3,"t2s":0,"t1":7,"t2":75}],[3751,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":75,"t2":19}],[3758,{"d":17,"dB":1575655200,"t1s":1,"t2s":0,"t1":12,"t2":75}],[3771,{"d":16,"dB":1575396000,"t1s":5,"t2s":0,"t1":75,"t2":41}],[3779,{"d":15,"dB":1575056700,"t1s":2,"t2s":1,"t1":9,"t2":75}],[3798,{"d":13,"dB":1573317000,"t1s":1,"t2s":2,"t1":75,"t2":2}],[3828,{"d":10,"dB":1571508000,"t1s":0,"t2s":1,"t1":16,"t2":75}],[3859,{"d":7,"dB":1569430800,"t1s":2,"t2s":2,"t1":75,"t2":18}],[3869,{"d":6,"dB":1569088800,"t1s":2,"t2s":2,"t1":3,"t2":75}],[3880,{"d":5,"dB":1568484000,"t1s":0,"t2s":0,"t1":75,"t2":20}],[4836,{"d":24,"dB":1581102000,"t1s":1,"t2s":0,"t1":102,"t2":103}],[4853,{"d":22,"dB":1580497200,"t1s":1,"t2s":1,"t1":103,"t2":17}],[4790,{"d":28,"dB":1583521200,"t1s":2,"t2s":1,"t1":93,"t2":5}],[4799,{"d":27,"dB":1582916400,"t1s":2,"t2s":0,"t1":5,"t2":94}],[4814,{"d":26,"dB":1582380000,"t1s":1,"t2s":4,"t1":104,"t2":5}],[4819,{"d":25,"dB":1581706800,"t1s":0,"t2s":1,"t1":5,"t2":43}],[4832,{"d":24,"dB":1581102000,"t1s":1,"t2s":1,"t1":89,"t2":5}],[4839,{"d":23,"dB":1580846700,"t1s":4,"t2s":3,"t1":5,"t2":98}],[4849,{"d":22,"dB":1580497200,"t1s":0,"t2s":1,"t1":90,"t2":5}],[4873,{"d":20,"dB":1578944700,"t1s":2,"t2s":1,"t1":6,"t2":5}],[4879,{"d":19,"dB":1576868400,"t1s":0,"t2s":0,"t1":5,"t2":92}],[4895,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":100,"t2":5}],[4904,{"d":17,"dB":1575315900,"t1s":1,"t2s":0,"t1":5,"t2":17}],[4911,{"d":16,"dB":1575054000,"t1s":1,"t2s":1,"t1":14,"t2":5}],[4939,{"d":13,"dB":1572634800,"t1s":2,"t2s":1,"t1":5,"t2":97}],[4969,{"d":10,"dB":1570212000,"t1s":1,"t2s":1,"t1":5,"t2":93}],[4981,{"d":9,"dB":1569607200,"t1s":1,"t2s":0,"t1":94,"t2":5}],[4989,{"d":8,"dB":1569070800,"t1s":0,"t2s":2,"t1":5,"t2":104}],[6547,{"d":5,"dB":1601139600,"t1s":1,"t2s":0,"t1":91,"t2":5}],[6548,{"d":4,"dB":1600534800,"t1s":0,"t2s":0,"t1":5,"t2":90}],[6564,{"d":3,"dB":1599930000,"t1s":0,"t2s":3,"t1":100,"t2":5}],[6583,{"d":1,"dB":1598115600,"t1s":0,"t2s":0,"t1":92,"t2":5}],[5007,{"d":7,"dB":1568397600,"t1s":2,"t2s":1,"t1":43,"t2":5}],[3654,{"d":28,"dB":1583607600,"t1s":1,"t2s":0,"t1":68,"t2":75}],[3680,{"d":25,"dB":1581868800,"t1s":3,"t2s":2,"t1":75,"t2":4}],[3737,{"d":20,"dB":1578769200,"t1s":2,"t2s":5,"t1":10,"t2":75}],[3741,{"d":19,"dB":1576957500,"t1s":4,"t2s":0,"t1":15,"t2":75}],[3818,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":75,"t2":7}],[4809,{"d":26,"dB":1582311600,"t1s":2,"t2s":1,"t1":90,"t2":17}],[4927,{"d":15,"dB":1574449200,"t1s":0,"t2s":4,"t1":43,"t2":90}],[4960,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":90,"t2":102}],[6574,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":98,"t2":90}],[6582,{"d":1,"dB":1598115600,"t1s":0,"t2s":3,"t1":90,"t2":2}],[6561,{"d":3,"dB":1599930000,"t1s":1,"t2s":2,"t1":90,"t2":94}],[4846,{"d":23,"dB":1580846700,"t1s":0,"t2s":3,"t1":93,"t2":90}],[4861,{"d":21,"dB":1579892400,"t1s":0,"t2s":0,"t1":94,"t2":90}],[4885,{"d":19,"dB":1576868400,"t1s":1,"t2s":1,"t1":89,"t2":90}],[4955,{"d":12,"dB":1572026400,"t1s":2,"t2s":0,"t1":100,"t2":90}],[4993,{"d":8,"dB":1569002400,"t1s":3,"t2s":0,"t1":17,"t2":90}],[4889,{"d":18,"dB":1576263600,"t1s":3,"t2s":2,"t1":90,"t2":98}],[3727,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":4,"t2":67}],[3784,{"d":15,"dB":1575140400,"t1s":1,"t2s":1,"t1":67,"t2":11}],[3789,{"d":14,"dB":1574535600,"t1s":1,"t2s":0,"t1":16,"t2":67}],[3855,{"d":8,"dB":1569769200,"t1s":0,"t2s":1,"t1":67,"t2":4}],[6536,{"d":6,"dB":1601744400,"t1s":3,"t2s":2,"t1":102,"t2":90}],[6540,{"d":5,"dB":1601139600,"t1s":2,"t2s":1,"t1":90,"t2":93}],[4802,{"d":27,"dB":1582984800,"t1s":1,"t2s":2,"t1":6,"t2":90}],[4903,{"d":17,"dB":1575403200,"t1s":3,"t2s":0,"t1":104,"t2":90}],[4940,{"d":13,"dB":1572634800,"t1s":1,"t2s":5,"t1":90,"t2":14}],[4934,{"d":14,"dB":1573239600,"t1s":0,"t2s":1,"t1":97,"t2":107}],[4953,{"d":12,"dB":1572026400,"t1s":1,"t2s":1,"t1":97,"t2":93}],[4820,{"d":25,"dB":1581968700,"t1s":3,"t2s":2,"t1":93,"t2":104}],[4860,{"d":21,"dB":1579892400,"t1s":1,"t2s":1,"t1":93,"t2":98}],[6530,{"d":6,"dB":1601744400,"t1s":2,"t2s":0,"t1":93,"t2":98}],[6567,{"d":3,"dB":1599930000,"t1s":1,"t2s":0,"t1":91,"t2":93}],[4811,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":94,"t2":93}],[4880,{"d":19,"dB":1576868400,"t1s":1,"t2s":5,"t1":93,"t2":14}],[4894,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":17,"t2":93}],[4905,{"d":17,"dB":1575403200,"t1s":1,"t2s":1,"t1":93,"t2":102}],[4920,{"d":15,"dB":1574449200,"t1s":1,"t2s":3,"t1":93,"t2":6}],[4983,{"d":9,"dB":1569607200,"t1s":0,"t2s":1,"t1":89,"t2":93}],[4990,{"d":8,"dB":1569002400,"t1s":1,"t2s":1,"t1":93,"t2":94}],[4800,{"d":27,"dB":1582916400,"t1s":0,"t2s":3,"t1":93,"t2":89}],[4837,{"d":24,"dB":1581102000,"t1s":2,"t2s":0,"t1":43,"t2":93}],[4876,{"d":20,"dB":1578682800,"t1s":1,"t2s":2,"t1":100,"t2":93}],[5003,{"d":7,"dB":1568659500,"t1s":1,"t2s":0,"t1":104,"t2":93}],[6571,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":128,"t2":92}],[4823,{"d":25,"dB":1581775200,"t1s":0,"t2s":1,"t1":6,"t2":92}],[4976,{"d":10,"dB":1570212000,"t1s":4,"t2s":0,"t1":102,"t2":92}],[4791,{"d":28,"dB":1583521200,"t1s":2,"t2s":0,"t1":92,"t2":102}],[4803,{"d":27,"dB":1582916400,"t1s":1,"t2s":2,"t1":17,"t2":92}],[4890,{"d":18,"dB":1576263600,"t1s":2,"t2s":1,"t1":92,"t2":89}],[4980,{"d":9,"dB":1569607200,"t1s":2,"t2s":2,"t1":92,"t2":17}],[6531,{"d":6,"dB":1601744400,"t1s":3,"t2s":0,"t1":92,"t2":100}],[6546,{"d":5,"dB":1601318700,"t1s":1,"t2s":0,"t1":43,"t2":92}],[6550,{"d":4,"dB":1600520400,"t1s":1,"t2s":1,"t1":92,"t2":10}],[4796,{"d":28,"dB":1583521200,"t1s":2,"t2s":1,"t1":100,"t2":14}],[4804,{"d":27,"dB":1582916400,"t1s":1,"t2s":1,"t1":102,"t2":100}],[4816,{"d":26,"dB":1582311600,"t1s":0,"t2s":1,"t1":100,"t2":6}],[4835,{"d":24,"dB":1581102000,"t1s":1,"t2s":1,"t1":100,"t2":17}],[4844,{"d":23,"dB":1580846700,"t1s":1,"t2s":2,"t1":97,"t2":100}],[4866,{"d":21,"dB":1579892400,"t1s":0,"t2s":0,"t1":107,"t2":100}],[4881,{"d":19,"dB":1576868400,"t1s":2,"t2s":1,"t1":94,"t2":100}],[4902,{"d":17,"dB":1575403200,"t1s":1,"t2s":0,"t1":43,"t2":100}],[4915,{"d":16,"dB":1575054000,"t1s":1,"t2s":2,"t1":100,"t2":89}],[4924,{"d":15,"dB":1574449200,"t1s":2,"t2s":1,"t1":98,"t2":100}],[4935,{"d":14,"dB":1573501500,"t1s":1,"t2s":2,"t1":100,"t2":104}],[4970,{"d":10,"dB":1570212000,"t1s":4,"t2s":1,"t1":14,"t2":100}],[4986,{"d":9,"dB":1569607200,"t1s":0,"t2s":2,"t1":100,"t2":102}],[4992,{"d":8,"dB":1569264300,"t1s":2,"t2s":1,"t1":6,"t2":100}],[6532,{"d":6,"dB":1601744400,"t1s":1,"t2s":0,"t1":128,"t2":14}],[6544,{"d":5,"dB":1601139600,"t1s":2,"t2s":1,"t1":100,"t2":128}],[6551,{"d":4,"dB":1600534800,"t1s":1,"t2s":0,"t1":128,"t2":91}],[6578,{"d":1,"dB":1598101200,"t1s":0,"t2s":1,"t1":10,"t2":128}],[4974,{"d":10,"dB":1570473900,"t1s":1,"t2s":4,"t1":97,"t2":104}],[4987,{"d":9,"dB":1569607200,"t1s":1,"t2s":2,"t1":43,"t2":97}],[4994,{"d":8,"dB":1569002400,"t1s":2,"t2s":2,"t1":97,"t2":89}],[4794,{"d":28,"dB":1583783100,"t1s":1,"t2s":0,"t1":104,"t2":97}],[4807,{"d":27,"dB":1582916400,"t1s":0,"t2s":2,"t1":97,"t2":43}],[4813,{"d":26,"dB":1582311600,"t1s":1,"t2s":2,"t1":89,"t2":97}],[4834,{"d":24,"dB":1581102000,"t1s":2,"t2s":0,"t1":98,"t2":97}],[4865,{"d":21,"dB":1579892400,"t1s":2,"t2s":0,"t1":97,"t2":14}],[4883,{"d":19,"dB":1576868400,"t1s":1,"t2s":0,"t1":97,"t2":102}],[4963,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":94,"t2":97}],[6533,{"d":6,"dB":1601744400,"t1s":2,"t2s":0,"t1":94,"t2":91}],[6541,{"d":5,"dB":1601139600,"t1s":1,"t2s":0,"t1":14,"t2":94}],[6572,{"d":2,"dB":1598720400,"t1s":5,"t2s":3,"t1":94,"t2":10}],[6585,{"d":1,"dB":1598115600,"t1s":1,"t2s":0,"t1":100,"t2":94}],[4840,{"d":23,"dB":1580759100,"t1s":1,"t2s":1,"t1":94,"t2":89}],[4857,{"d":22,"dB":1580497200,"t1s":1,"t2s":2,"t1":43,"t2":94}],[4792,{"d":28,"dB":1583521200,"t1s":1,"t2s":3,"t1":94,"t2":91}],[4821,{"d":25,"dB":1581706800,"t1s":3,"t2s":1,"t1":94,"t2":98}],[4833,{"d":24,"dB":1581363900,"t1s":0,"t2s":0,"t1":104,"t2":94}],[4896,{"d":18,"dB":1576263600,"t1s":1,"t2s":1,"t1":102,"t2":94}],[4913,{"d":16,"dB":1575054000,"t1s":2,"t2s":1,"t1":6,"t2":94}],[4921,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":94,"t2":17}],[5004,{"d":7,"dB":1568397600,"t1s":0,"t2s":1,"t1":98,"t2":94}],[4812,{"d":26,"dB":1582311600,"t1s":1,"t2s":1,"t1":14,"t2":102}],[4824,{"d":25,"dB":1581775200,"t1s":0,"t2s":1,"t1":17,"t2":14}],[4831,{"d":24,"dB":1581170400,"t1s":2,"t2s":1,"t1":14,"t2":6}],[4871,{"d":20,"dB":1579368600,"t1s":1,"t2s":1,"t1":14,"t2":104}],[4891,{"d":18,"dB":1576525500,"t1s":0,"t2s":1,"t1":14,"t2":43}],[4922,{"d":15,"dB":1574711100,"t1s":4,"t2s":0,"t1":89,"t2":14}],[4965,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":98,"t2":14}],[4996,{"d":8,"dB":1569002400,"t1s":3,"t2s":1,"t1":102,"t2":14}],[5001,{"d":7,"dB":1568397600,"t1s":1,"t2s":1,"t1":14,"t2":17}],[6555,{"d":4,"dB":1600534800,"t1s":0,"t2s":1,"t1":129,"t2":14}],[6562,{"d":3,"dB":1599915600,"t1s":1,"t2s":3,"t1":14,"t2":89}],[6569,{"d":2,"dB":1598706000,"t1s":2,"t2s":2,"t1":17,"t2":14}],[6584,{"d":1,"dB":1598115600,"t1s":0,"t2s":1,"t1":14,"t2":98}],[4843,{"d":23,"dB":1580846700,"t1s":1,"t2s":1,"t1":17,"t2":102}],[4877,{"d":20,"dB":1578682800,"t1s":1,"t2s":1,"t1":102,"t2":107}],[4916,{"d":16,"dB":1575120600,"t1s":0,"t2s":1,"t1":102,"t2":43}],[4923,{"d":15,"dB":1574517600,"t1s":4,"t2s":0,"t1":104,"t2":102}],[4936,{"d":14,"dB":1573239600,"t1s":2,"t2s":0,"t1":102,"t2":89}],[4946,{"d":13,"dB":1572703200,"t1s":0,"t2s":2,"t1":98,"t2":102}],[3662,{"d":27,"dB":1583002800,"t1s":1,"t2s":1,"t1":13,"t2":68}],[3686,{"d":25,"dB":1581868800,"t1s":1,"t2s":0,"t1":68,"t2":20}],[3697,{"d":24,"dB":1581264000,"t1s":3,"t2s":0,"t1":41,"t2":68}],[3709,{"d":22,"dB":1580583600,"t1s":1,"t2s":4,"t1":16,"t2":68}],[3726,{"d":21,"dB":1579978800,"t1s":0,"t2s":1,"t1":68,"t2":11}],[3733,{"d":20,"dB":1578769200,"t1s":2,"t2s":0,"t1":67,"t2":68}],[3757,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":10,"t2":68}],[3785,{"d":15,"dB":1575140400,"t1s":1,"t2s":1,"t1":68,"t2":3}],[3794,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":11,"t2":68}],[3805,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":68,"t2":16}],[3814,{"d":12,"dB":1572796800,"t1s":2,"t2s":0,"t1":19,"t2":68}],[3824,{"d":11,"dB":1572112800,"t1s":0,"t2s":0,"t1":68,"t2":67}],[3836,{"d":10,"dB":1571508000,"t1s":1,"t2s":0,"t1":68,"t2":15}],[3845,{"d":9,"dB":1570374000,"t1s":0,"t2s":1,"t1":20,"t2":68}],[3875,{"d":6,"dB":1569088800,"t1s":0,"t2s":0,"t1":68,"t2":13}],[3885,{"d":5,"dB":1568552400,"t1s":1,"t2s":0,"t1":8,"t2":68}],[4852,{"d":22,"dB":1580497200,"t1s":0,"t2s":0,"t1":89,"t2":104}],[4862,{"d":21,"dB":1580154300,"t1s":1,"t2s":0,"t1":89,"t2":43}],[4875,{"d":20,"dB":1578682800,"t1s":0,"t2s":1,"t1":98,"t2":89}],[4944,{"d":13,"dB":1572896700,"t1s":1,"t2s":1,"t1":89,"t2":17}],[5002,{"d":7,"dB":1568397600,"t1s":0,"t2s":0,"t1":89,"t2":107}],[6534,{"d":6,"dB":1601744400,"t1s":3,"t2s":0,"t1":2,"t2":89}],[6542,{"d":5,"dB":1601139600,"t1s":0,"t2s":1,"t1":17,"t2":89}],[6553,{"d":4,"dB":1600534800,"t1s":0,"t2s":1,"t1":89,"t2":98}],[6587,{"d":1,"dB":1598294700,"t1s":2,"t2s":0,"t1":43,"t2":89}],[4795,{"d":28,"dB":1583521200,"t1s":1,"t2s":1,"t1":98,"t2":17}],[4864,{"d":21,"dB":1579892400,"t1s":2,"t2s":1,"t1":6,"t2":17}],[4933,{"d":14,"dB":1573239600,"t1s":0,"t2s":0,"t1":17,"t2":43}],[4952,{"d":12,"dB":1572026400,"t1s":0,"t2s":0,"t1":17,"t2":104}],[6535,{"d":6,"dB":1601744400,"t1s":1,"t2s":1,"t1":129,"t2":17}],[6554,{"d":4,"dB":1600534800,"t1s":0,"t2s":2,"t1":2,"t2":17}],[6563,{"d":3,"dB":1599930000,"t1s":1,"t2s":0,"t1":98,"t2":17}],[4973,{"d":10,"dB":1570212000,"t1s":2,"t2s":1,"t1":17,"t2":98}],[4882,{"d":19,"dB":1576936800,"t1s":1,"t2s":0,"t1":104,"t2":98}],[6543,{"d":5,"dB":1601139600,"t1s":2,"t2s":2,"t1":98,"t2":2}],[3683,{"d":25,"dB":1581709500,"t1s":1,"t2s":0,"t1":13,"t2":15}],[6575,{"d":2,"dB":1598720400,"t1s":1,"t2s":0,"t1":2,"t2":91}],[3672,{"d":26,"dB":1582314300,"t1s":0,"t2s":2,"t1":11,"t2":18}],[3684,{"d":25,"dB":1581793200,"t1s":0,"t2s":0,"t1":8,"t2":11}],[3754,{"d":18,"dB":1576341000,"t1s":1,"t2s":1,"t1":11,"t2":9}],[3774,{"d":16,"dB":1575482400,"t1s":0,"t2s":1,"t1":11,"t2":20}],[3820,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":18,"t2":11}],[3852,{"d":8,"dB":1569693600,"t1s":2,"t2s":2,"t1":11,"t2":10}],[3879,{"d":5,"dB":1568484000,"t1s":2,"t2s":0,"t1":3,"t2":11}],[6566,{"d":3,"dB":1599930000,"t1s":2,"t2s":0,"t1":43,"t2":129}],[6586,{"d":1,"dB":1598115600,"t1s":3,"t2s":0,"t1":91,"t2":129}],[6576,{"d":2,"dB":1598720400,"t1s":1,"t2s":1,"t1":129,"t2":100}],[6556,{"d":4,"dB":1600534800,"t1s":2,"t2s":2,"t1":102,"t2":100}],[6577,{"d":2,"dB":1598720400,"t1s":2,"t2s":1,"t1":102,"t2":43}],[6565,{"d":3,"dB":1600109100,"t1s":0,"t2s":0,"t1":10,"t2":102}],[3722,{"d":21,"dB":1579978800,"t1s":1,"t2s":3,"t1":13,"t2":41}],[3732,{"d":20,"dB":1578769200,"t1s":1,"t2s":0,"t1":11,"t2":41}],[3857,{"d":8,"dB":1569762000,"t1s":1,"t2s":0,"t1":41,"t2":15}],[3723,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":15,"t2":7}],[3801,{"d":13,"dB":1573326000,"t1s":1,"t2s":0,"t1":13,"t2":7}],[3860,{"d":7,"dB":1569344400,"t1s":0,"t2s":0,"t1":7,"t2":9}],[4951,{"d":12,"dB":1572094800,"t1s":0,"t2s":1,"t1":6,"t2":43}],[4841,{"d":23,"dB":1580846700,"t1s":1,"t2s":0,"t1":104,"t2":43}],[3649,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":7,"t2":10}],[3667,{"d":27,"dB":1583002800,"t1s":0,"t2s":2,"t1":10,"t2":20}],[3670,{"d":26,"dB":1582398000,"t1s":3,"t2s":0,"t1":12,"t2":10}],[3687,{"d":25,"dB":1581793200,"t1s":0,"t2s":2,"t1":10,"t2":19}],[3691,{"d":24,"dB":1581179400,"t1s":1,"t2s":0,"t1":9,"t2":10}],[3707,{"d":23,"dB":1580925600,"t1s":0,"t2s":1,"t1":10,"t2":41}],[3720,{"d":21,"dB":1580047200,"t1s":3,"t2s":0,"t1":18,"t2":10}],[3767,{"d":17,"dB":1575745200,"t1s":4,"t2s":2,"t1":41,"t2":10}],[3777,{"d":16,"dB":1575482400,"t1s":1,"t2s":2,"t1":10,"t2":13}],[3782,{"d":15,"dB":1575208800,"t1s":2,"t2s":1,"t1":8,"t2":10}],[3797,{"d":14,"dB":1574625600,"t1s":0,"t2s":2,"t1":10,"t2":9}],[3802,{"d":13,"dB":1573401600,"t1s":3,"t2s":0,"t1":15,"t2":10}],[3837,{"d":10,"dB":1571508000,"t1s":2,"t2s":1,"t1":10,"t2":12}],[3847,{"d":9,"dB":1570298400,"t1s":1,"t2s":3,"t1":10,"t2":3}],[3867,{"d":7,"dB":1569430800,"t1s":0,"t2s":2,"t1":10,"t2":16}],[3874,{"d":6,"dB":1569088800,"t1s":1,"t2s":0,"t1":67,"t2":10}],[3887,{"d":5,"dB":1568559600,"t1s":2,"t2s":2,"t1":4,"t2":10}],[6537,{"d":6,"dB":1601730000,"t1s":0,"t2s":0,"t1":10,"t2":43}],[3743,{"d":19,"dB":1576957500,"t1s":3,"t2s":0,"t1":19,"t2":10}],[3825,{"d":11,"dB":1572184800,"t1s":3,"t2s":2,"t1":20,"t2":10}],[3817,{"d":12,"dB":1572721200,"t1s":2,"t2s":3,"t1":10,"t2":18}],[3765,{"d":17,"dB":1575813600,"t1s":3,"t2s":1,"t1":68,"t2":4}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.premier-league.20191218.json b/src/test/resources/__files/mlnstats.premier-league.20191218.json deleted file mode 100644 index ce29efa..0000000 --- a/src/test/resources/__files/mlnstats.premier-league.20191218.json +++ /dev/null @@ -1,94905 +0,0 @@ -{ - "bD": "2019-12-17T05:30:14.070Z", - "mL": { - "i": 2, - "n": "Premier League", - "cN": "Premier-League", - "aS": { - "i": 10, - "n": "Premier League 2019-2020", - "cN": "Premier-League-2019-2020", - "mD": 38, - "cD": { - "d": 17, - "lD": 17 - } - }, - "lS": { - "i": 7, - "n": "Premier League 2018-2019", - "cN": "Premier-League-2018-2019", - "mD": 38 - } - }, - "le": [ - [ - 2, - "Premier-League" - ], - [ - 1, - "Ligue-1" - ], - [ - 3, - "Liga" - ] - ], - "p": [ - [ - 2, - { - "n": "Lacazette", - "f": "Alexandre", - "fp": "A", - "r": 30, - "c": 39, - "s": { - "g": 5, - "s": 54, - "n": 10, - "a": 5.4, - "d": 1.2, - "Og": 12, - "Os": 158, - "On": 29, - "Oa": 5.45, - "Od": 1.09, - "pa": 29 - }, - "p": [ - [ - 15, - { - "n": 5.5, - "e": 4158, - "g": 1 - } - ], - [ - 14, - { - "n": 4, - "e": 4176 - } - ], - [ - 13, - { - "n": 7, - "e": 4178, - "g": 2 - } - ], - [ - 12, - { - "n": 4, - "e": 4196 - } - ], - [ - 11, - { - "n": 6, - "e": 4198 - } - ], - [ - 10, - { - "n": 6, - "e": 4208 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 4, - { - "n": 7, - "e": 4277, - "g": 1 - } - ], - [ - 3, - { - "n": 4, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4288, - "g": 1 - } - ], - [ - -37, - { - "n": 6, - "e": 3529 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3522 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3478, - "g": 1 - } - ], - [ - -30, - { - "n": 6, - "e": 3458 - } - ], - [ - -29, - { - "n": 5, - "e": 3454 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3438, - "g": 1 - } - ], - [ - -27, - { - "n": 7, - "e": 3429, - "g": 1 - } - ], - [ - -26, - { - "n": 6, - "e": 3421, - "g": 1 - } - ], - [ - -25, - { - "n": 4, - "e": 3415 - } - ], - [ - -24, - { - "n": 6, - "e": 3399, - "g": 1 - } - ], - [ - -23, - { - "n": 7, - "e": 3389, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3387 - } - ], - [ - -21, - { - "n": 6, - "e": 3369, - "g": 1 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3363 - } - ], - [ - -19, - { - "n": 6, - "e": 3348 - } - ], - [ - -18, - { - "n": 6, - "e": 3339 - } - ] - ], - "a": { - "m": 31, - "a": 48, - "M": 67, - "n": 14 - } - } - ], - [ - 211, - { - "n": "Pépé", - "f": "Nicolas", - "fp": "A", - "r": 20, - "c": 39, - "s": { - "g": 2, - "s": 79.5, - "n": 15, - "a": 5.3, - "d": 0.94, - "Sg": 1, - "Ss": 16.5, - "Sn": 3, - "Sa": 5.5, - "Sd": 1.32, - "Og": 12, - "Os": 197, - "On": 35, - "Oa": 5.63, - "Od": 1.36, - "pm": 24, - "pa": 11 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 7, - "e": 4157, - "g": 1 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 4, - "e": 4247 - } - ], - [ - 6, - { - "n": 7, - "e": 4256, - "g": 1 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4266 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4306 - } - ], - [ - -38, - { - "n": 4.5, - "e": 3111 - } - ], - [ - -37, - { - "n": 7.5, - "e": 3094, - "g": 2 - } - ], - [ - -36, - { - "n": 4, - "e": 3086 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3074 - } - ], - [ - -34, - { - "n": 7, - "e": 3066, - "g": 1 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3061 - } - ], - [ - -32, - { - "n": 8, - "e": 3044, - "g": 1 - } - ], - [ - -31, - { - "n": 6.5, - "e": 3040 - } - ], - [ - -30, - { - "n": 7.5, - "e": 3027, - "g": 1 - } - ], - [ - -29, - { - "n": 5, - "e": 3016 - } - ], - [ - -28, - { - "n": 7.5, - "e": 3009, - "g": 1 - } - ], - [ - -27, - { - "n": 5, - "e": 2996 - } - ], - [ - -26, - { - "n": 4.5, - "e": 2990 - } - ], - [ - -25, - { - "n": 5, - "e": 2975 - } - ], - [ - -24, - { - "n": 5, - "e": 2964 - } - ], - [ - -23, - { - "n": 7.5, - "e": 2955, - "g": 1 - } - ], - [ - -22, - { - "n": 8, - "e": 2945, - "g": 2 - } - ], - [ - -21, - { - "n": 3.5, - "e": 2935 - } - ], - [ - -20, - { - "n": 8, - "e": 2923, - "g": 1 - } - ], - [ - -19, - { - "n": 4.5, - "e": 2914 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 5, - "e": 4196 - } - ], - [ - 10, - { - "n": 6, - "e": 4208 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4225 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4285 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ] - ], - "a": { - "m": 27, - "a": 57, - "M": 100, - "n": 8 - } - } - ], - [ - 572, - { - "n": "Guendouzi", - "f": "Matteo", - "fp": "MD", - "r": 17, - "c": 39, - "s": { - "s": 86, - "n": 16, - "a": 5.38, - "d": 0.99, - "Ss": 8.5, - "Sn": 2, - "Sa": 4.25, - "Sd": 1.06, - "Os": 182, - "On": 35, - "Oa": 5.2, - "Od": 0.87, - "pm": 35 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3539 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5, - "e": 3522 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -33, - { - "n": 4, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3478 - } - ], - [ - -31, - { - "n": 5, - "e": 3477 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 6, - "e": 3438 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3421 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3399 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - -21, - { - "n": 6, - "e": 3369 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3363 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4, - "e": 3339 - } - ], - [ - 17, - { - "n": 3.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 5, - "e": 4157 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4196 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 6, - "e": 4247 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 4, - { - "n": 7, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4288 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4306 - } - ] - ] - } - ], - [ - 591, - { - "n": "Özil", - "f": "Mesut", - "fp": "MO", - "r": 13, - "c": 39, - "s": { - "s": 42, - "n": 8, - "a": 5.25, - "d": 0.46, - "Ss": 37, - "Sn": 7, - "Sa": 5.29, - "Sd": 0.49, - "Og": 2, - "Os": 106.5, - "On": 21, - "Oa": 5.07, - "Od": 0.97, - "pm": 14, - "pa": 7 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3529 - } - ], - [ - -35, - { - "n": 5, - "e": 3509, - "g": 1 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3458 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 8, - "e": 3438, - "g": 1 - } - ], - [ - -27, - { - "n": 5, - "e": 3429 - } - ], - [ - -24, - { - "n": 5, - "e": 3399 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 6, - "e": 4176 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 5, - "e": 4196 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4198 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ] - ] - } - ], - [ - 609, - { - "n": "Cech", - "f": "Petr", - "fp": "G", - "r": 7, - "c": 39 - } - ], - [ - 623, - { - "n": "David Luiz", - "f": "", - "fp": "DC", - "r": 18, - "c": 39, - "s": { - "g": 2, - "s": 68.5, - "n": 14, - "a": 4.89, - "d": 1.1, - "Og": 4, - "Os": 177.5, - "On": 34, - "Oa": 5.22, - "Od": 1.39, - "pd": 34 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -37, - { - "n": 7, - "e": 3531, - "g": 1 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3489 - } - ], - [ - -27, - { - "n": 6, - "e": 3432 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3481 - } - ], - [ - -31, - { - "n": 4, - "e": 3471 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3460 - } - ], - [ - -28, - { - "n": 7, - "e": 3443 - } - ], - [ - -26, - { - "n": 2.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 8, - "e": 3411, - "g": 1 - } - ], - [ - -24, - { - "n": 2, - "e": 3398 - } - ], - [ - -22, - { - "n": 7.5, - "e": 3381 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 7.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3341 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3389 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4196 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4208, - "g": 1 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 7, - "e": 4236, - "g": 1 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 3, - "e": 4285 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4288 - } - ] - ] - } - ], - [ - 665, - { - "n": "Mustafi", - "f": "Shkodran", - "fp": "DC", - "r": 5, - "c": 39, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 75.5, - "On": 16, - "Oa": 4.72, - "Od": 1.38, - "pd": 16 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3539 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 3, - "e": 3522 - } - ], - [ - -35, - { - "n": 2.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 6, - "e": 3507 - } - ], - [ - -33, - { - "n": 5, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3478 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3454 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3421 - } - ], - [ - -25, - { - "n": 3.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3399 - } - ], - [ - -22, - { - "n": 4, - "e": 3387 - } - ], - [ - -21, - { - "n": 4, - "e": 3369 - } - ], - [ - -20, - { - "n": 3, - "e": 3363 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ] - ] - } - ], - [ - 728, - { - "n": "Xhaka", - "f": "Granit", - "fp": "MD", - "r": 10, - "c": 39, - "s": { - "s": 60, - "n": 12, - "a": 5, - "d": 0.56, - "Og": 2, - "Os": 131, - "On": 25, - "Oa": 5.24, - "Od": 1.03, - "pm": 25 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3522 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3507 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 7, - "e": 3458, - "g": 1 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3454 - } - ], - [ - -27, - { - "n": 6, - "e": 3429 - } - ], - [ - -23, - { - "n": 7, - "e": 3389 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3387 - } - ], - [ - -21, - { - "n": 7, - "e": 3369, - "g": 1 - } - ], - [ - -20, - { - "n": 4, - "e": 3363 - } - ], - [ - -19, - { - "n": 6, - "e": 3348 - } - ], - [ - -18, - { - "n": 6, - "e": 3339 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4266 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4285 - } - ], - [ - 1, - { - "n": 6, - "e": 4306 - } - ] - ] - } - ], - [ - 795, - { - "n": "Bellerín", - "f": "Héctor", - "fp": "DL", - "r": 10, - "c": 39, - "s": { - "s": 10, - "n": 3, - "a": 3.33, - "d": 0.29, - "Os": 22.5, - "On": 5, - "Oa": 4.5, - "Od": 1.84, - "pd": 3, - "pm": 2 - }, - "p": [ - [ - -23, - { - "n": 7.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - 15, - { - "n": 3, - "e": 4158 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4196 - } - ] - ] - } - ], - [ - 860, - { - "n": "Chambers", - "f": "Calum", - "fp": "DC", - "r": 10, - "c": 39, - "s": { - "g": 1, - "s": 55.5, - "n": 12, - "a": 4.63, - "d": 1.11, - "Ss": 9, - "Sn": 2, - "Sa": 4.5, - "Sd": 2.12, - "Og": 3, - "Os": 159.5, - "On": 32, - "Oa": 4.98, - "Od": 1.23, - "pd": 15, - "pm": 17 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3541 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3537 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3521 - } - ], - [ - -35, - { - "n": 6, - "e": 3508 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3501 - } - ], - [ - -33, - { - "n": 2.5, - "e": 3496 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 5, - "e": 3472 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3463 - } - ], - [ - -29, - { - "n": 7.5, - "e": 3452, - "g": 1 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3445 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3437 - } - ], - [ - -26, - { - "n": 4, - "e": 3420 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3412 - } - ], - [ - -24, - { - "n": 7.5, - "e": 3400, - "g": 1 - } - ], - [ - -23, - { - "n": 6, - "e": 3390 - } - ], - [ - -22, - { - "n": 4, - "e": 3379 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3361 - } - ], - [ - -19, - { - "n": 6, - "e": 3351 - } - ], - [ - -18, - { - "n": 6, - "e": 3345 - } - ], - [ - 17, - { - "n": 3, - "e": 4138 - } - ], - [ - 16, - { - "n": 6, - "e": 4157 - } - ], - [ - 14, - { - "n": 4, - "e": 4176 - } - ], - [ - 13, - { - "n": 4, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4196 - } - ], - [ - 11, - { - "n": 4, - "e": 4198 - } - ], - [ - 10, - { - "n": 4, - "e": 4208 - } - ], - [ - 9, - { - "n": 4, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 7, - "e": 4256, - "g": 1 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4306 - } - ] - ], - "a": { - "m": 12, - "a": 16, - "M": 21, - "n": 8 - } - } - ], - [ - 917, - { - "n": "Mohamed Elneny", - "f": "", - "fp": "MD", - "r": 7, - "c": 39, - "s": { - "Os": 39, - "On": 8, - "Oa": 4.88, - "Od": 0.88, - "pm": 8 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3539 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3478 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3421 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3399 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ] - ] - } - ], - [ - 983, - { - "n": "Holding", - "f": "Rob", - "fp": "DC", - "r": 7, - "c": 39, - "s": { - "s": 3.5, - "n": 1, - "a": 3.5, - "Os": 3.5, - "On": 1, - "Oa": 3.5, - "pd": 1 - }, - "p": [ - [ - 12, - { - "n": 3.5, - "e": 4196 - } - ] - ] - } - ], - [ - 1090, - { - "n": "Jenkinson", - "f": "Carl", - "fp": "DC", - "r": 3, - "c": 39, - "s": { - "Os": 13.5, - "On": 3, - "Oa": 4.5, - "Od": 0.87, - "pd": 1, - "pm": 2 - }, - "p": [ - [ - -35, - { - "n": 3.5, - "e": 3509 - } - ], - [ - -28, - { - "n": 5, - "e": 3438 - } - ], - [ - -24, - { - "n": 5, - "e": 3399 - } - ] - ] - } - ], - [ - 1124, - { - "n": "Maitland-Niles", - "f": "Ainsley", - "fp": "MO", - "r": 8, - "c": 39, - "s": { - "s": 38.5, - "n": 8, - "a": 4.81, - "d": 1.19, - "Ss": 10.5, - "Sn": 2, - "Sa": 5.25, - "Sd": 1.06, - "Og": 1, - "Os": 103.5, - "On": 22, - "Oa": 4.7, - "Od": 1, - "pd": 11, - "pm": 11 - }, - "p": [ - [ - -36, - { - "n": 3, - "e": 3522 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 4, - "e": 3490 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 3, - "e": 3477 - } - ], - [ - -30, - { - "n": 5, - "e": 3458 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3421 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 4, - "e": 3387 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3369 - } - ], - [ - -20, - { - "n": 5, - "e": 3363, - "g": 1 - } - ], - [ - -19, - { - "n": 4, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 6, - "e": 4157 - } - ], - [ - 6, - { - "n": 3, - "e": 4256 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4288 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4306 - } - ] - ] - } - ], - [ - 1289, - { - "n": "Kolasinac", - "f": "Sead", - "fp": "DC", - "r": 12, - "c": 39, - "s": { - "s": 70.5, - "n": 14, - "a": 5.04, - "d": 0.57, - "Ss": 19, - "Sn": 4, - "Sa": 4.75, - "Sd": 0.87, - "Oao": 1, - "Os": 157.5, - "On": 32, - "Oa": 4.92, - "Od": 0.9, - "pd": 22, - "pm": 10 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3529 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3522 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3509 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 5, - "e": 3478 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 5, - "e": 3458 - } - ], - [ - -28, - { - "n": 5, - "e": 3438 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 5, - "e": 3421, - "a": 1 - } - ], - [ - -25, - { - "n": 4, - "e": 3415 - } - ], - [ - -24, - { - "n": 5, - "e": 3399 - } - ], - [ - -23, - { - "n": 7, - "e": 3389 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3387 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3369 - } - ], - [ - -20, - { - "n": 3, - "e": 3363 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 6, - "e": 4157 - } - ], - [ - 15, - { - "n": 4, - "e": 4158 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4176 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4196 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5, - "e": 4225 - } - ], - [ - 8, - { - "n": 6, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4266 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4277 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ] - ] - } - ], - [ - 1346, - { - "n": "Willock", - "f": "Joseph", - "fp": "MD", - "r": 7, - "c": 39, - "s": { - "s": 61.5, - "n": 13, - "a": 4.73, - "d": 0.67, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Os": 70.5, - "On": 15, - "Oa": 4.7, - "Od": 0.62, - "pm": 15 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3539 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3421 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 5, - "e": 4196 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ], - [ - 3, - { - "n": 4, - "e": 4285 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ] - } - ], - [ - 1389, - { - "n": "Nelson", - "f": "Reiss", - "fp": "A", - "r": 4, - "c": 39, - "s": { - "s": 23.5, - "n": 5, - "a": 4.7, - "d": 0.57, - "Os": 23.5, - "On": 5, - "Oa": 4.7, - "Od": 0.57, - "pm": 2, - "pa": 3 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4266 - } - ], - [ - 2, - { - "n": 4, - "e": 4288 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4306 - } - ] - ] - } - ], - [ - 1702, - { - "n": "Dani Ceballos", - "f": "", - "fp": "MO", - "r": 14, - "c": 39, - "s": { - "s": 58, - "n": 11, - "a": 5.27, - "d": 0.75, - "Og": 2, - "Os": 113.5, - "On": 21, - "Oa": 5.4, - "Od": 0.92, - "pm": 20, - "pa": 1 - }, - "p": [ - [ - -35, - { - "n": 4, - "e": 2316 - } - ], - [ - -29, - { - "n": 6.5, - "e": 2260, - "g": 1 - } - ], - [ - -28, - { - "n": 6, - "e": 2247 - } - ], - [ - -27, - { - "n": 5, - "e": 2240 - } - ], - [ - -24, - { - "n": 4.5, - "e": 2209 - } - ], - [ - -23, - { - "n": 5, - "e": 2192 - } - ], - [ - -22, - { - "n": 7, - "e": 2186 - } - ], - [ - -20, - { - "n": 7, - "e": 2168 - } - ], - [ - -19, - { - "n": 6, - "e": 2155, - "g": 1 - } - ], - [ - -18, - { - "n": 4.5, - "e": 2145 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ], - [ - 4, - { - "n": 6, - "e": 4277 - } - ], - [ - 3, - { - "n": 4, - "e": 4285 - } - ], - [ - 2, - { - "n": 7, - "e": 4288 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ] - } - ], - [ - 1817, - { - "n": "Campbell", - "f": "Joel", - "fp": "A", - "r": 1, - "c": 39 - } - ], - [ - 2013, - { - "n": "Martínez", - "f": "Emiliano", - "fp": "G", - "r": 7, - "c": 39 - } - ], - [ - 2064, - { - "n": "Macey", - "f": "Matt", - "fp": "G", - "r": 1, - "c": 39 - } - ], - [ - 2066, - { - "n": "Eddie Nketiah", - "f": "", - "fp": "A", - "r": 1, - "c": 39, - "s": { - "Og": 1, - "Os": 19.5, - "On": 4, - "Oa": 4.88, - "Od": 0.85, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3539, - "g": 1 - } - ], - [ - -36, - { - "n": 4, - "e": 3522 - } - ], - [ - -31, - { - "n": 5, - "e": 3477 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3458 - } - ] - ] - } - ], - [ - 2071, - { - "n": "Gilmour", - "f": "Charlie", - "fp": "MD", - "r": 1, - "c": 39 - } - ], - [ - 2123, - { - "n": "Iliev", - "f": "Dejan", - "fp": "G", - "r": 1, - "c": 39 - } - ], - [ - 2125, - { - "n": "Osei-Tutu", - "f": "Jordi", - "fp": "DC", - "r": 1, - "c": 39 - } - ], - [ - 2203, - { - "n": "Mavropanos", - "f": "Konstantinos", - "fp": "DC", - "r": 3, - "c": 39, - "s": { - "Os": 19.5, - "On": 4, - "Oa": 4.88, - "Od": 0.63, - "pd": 4 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3539 - } - ], - [ - -35, - { - "n": 4, - "e": 3509 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3507 - } - ], - [ - -25, - { - "n": 5, - "e": 3415 - } - ] - ] - } - ], - [ - 2302, - { - "n": "Aubameyang", - "f": "Pierre-Emerick", - "fp": "A", - "r": 49, - "c": 39, - "s": { - "g": 11, - "s": 96.5, - "n": 17, - "a": 5.68, - "d": 1.31, - "Sg": 11, - "Ss": 96.5, - "Sn": 17, - "Sa": 5.68, - "Sd": 1.31, - "Og": 23, - "Os": 201, - "On": 36, - "Oa": 5.58, - "Od": 1.27, - "pm": 3, - "pa": 33 - }, - "p": [ - [ - -38, - { - "n": 8, - "e": 3539, - "g": 2 - } - ], - [ - -37, - { - "n": 6, - "e": 3529, - "g": 1 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3522 - } - ], - [ - -35, - { - "n": 6, - "e": 3509, - "g": 1 - } - ], - [ - -34, - { - "n": 6, - "e": 3507, - "g": 1 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3478 - } - ], - [ - -30, - { - "n": 6, - "e": 3458, - "g": 1 - } - ], - [ - -29, - { - "n": 4, - "e": 3454 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3438, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 6, - "e": 3399, - "g": 1 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -22, - { - "n": 4, - "e": 3387 - } - ], - [ - -21, - { - "n": 6, - "e": 3369, - "g": 1 - } - ], - [ - -20, - { - "n": 3, - "e": 3363 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3348, - "g": 1 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3339, - "g": 2 - } - ], - [ - 17, - { - "n": 3, - "e": 4138 - } - ], - [ - 16, - { - "n": 7, - "e": 4157, - "g": 1 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 8, - "e": 4176, - "g": 2 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4196 - } - ], - [ - 11, - { - "n": 6, - "e": 4198, - "g": 1 - } - ], - [ - 10, - { - "n": 4, - "e": 4208 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4247, - "g": 1 - } - ], - [ - 6, - { - "n": 6, - "e": 4256, - "g": 1 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4266, - "g": 2 - } - ], - [ - 4, - { - "n": 7, - "e": 4277, - "g": 1 - } - ], - [ - 3, - { - "n": 5, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4288, - "g": 1 - } - ], - [ - 1, - { - "n": 6, - "e": 4306, - "g": 1 - } - ] - ], - "a": { - "m": 79, - "a": 97, - "M": 123, - "n": 7 - } - } - ], - [ - 2500, - { - "n": "Leno", - "f": "Bernd", - "fp": "G", - "r": 24, - "c": 39, - "s": { - "s": 100.5, - "n": 17, - "a": 5.91, - "d": 0.73, - "Ss": 100.5, - "Sn": 17, - "Sa": 5.91, - "Sd": 0.73, - "Os": 218.5, - "On": 38, - "Oa": 5.75, - "Od": 0.88, - "pg": 38 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3539 - } - ], - [ - -37, - { - "n": 6, - "e": 3529 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3522 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 6, - "e": 3507 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3478 - } - ], - [ - -31, - { - "n": 2.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 7, - "e": 3458 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 6, - "e": 3421 - } - ], - [ - -25, - { - "n": 7, - "e": 3415 - } - ], - [ - -24, - { - "n": 5, - "e": 3399 - } - ], - [ - -23, - { - "n": 6, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - -21, - { - "n": 6, - "e": 3369 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 5, - "e": 3339 - } - ], - [ - 17, - { - "n": 5, - "e": 4138 - } - ], - [ - 16, - { - "n": 6, - "e": 4157 - } - ], - [ - 15, - { - "n": 6, - "e": 4158 - } - ], - [ - 14, - { - "n": 7, - "e": 4176 - } - ], - [ - 13, - { - "n": 6, - "e": 4178 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 7, - "e": 4198 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 6, - "e": 4236 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4266 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4285 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4288 - } - ], - [ - 1, - { - "n": 7, - "e": 4306 - } - ] - ], - "a": { - "m": 22, - "a": 28, - "M": 38, - "n": 7 - } - } - ], - [ - 2531, - { - "n": "Sokratis", - "f": "", - "fp": "DC", - "r": 15, - "c": 39, - "s": { - "g": 1, - "s": 74, - "n": 15, - "a": 4.93, - "d": 0.86, - "Ss": 13, - "Sn": 3, - "Sa": 4.33, - "Sd": 1.26, - "Og": 2, - "Os": 153, - "On": 30, - "Oa": 5.1, - "Od": 1.03, - "pd": 30 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 3, - "e": 3522 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3478 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477, - "g": 1 - } - ], - [ - -30, - { - "n": 6, - "e": 3458 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 6, - "e": 3429 - } - ], - [ - -23, - { - "n": 7.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - -21, - { - "n": 6, - "e": 3369 - } - ], - [ - -20, - { - "n": 3, - "e": 3363 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 6, - "e": 3339 - } - ], - [ - 17, - { - "n": 3, - "e": 4138 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4158 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4178 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 6, - "e": 4208, - "g": 1 - } - ], - [ - 9, - { - "n": 4, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 4, - { - "n": 5, - "e": 4277 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4288 - } - ], - [ - 1, - { - "n": 6, - "e": 4306 - } - ] - ] - } - ], - [ - 2535, - { - "n": "Lichtsteiner", - "f": "Stephan", - "fp": "DC", - "r": 5, - "c": 39, - "s": { - "Os": 35, - "On": 8, - "Oa": 4.38, - "Od": 0.79, - "pd": 8 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 5, - "e": 3529 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -25, - { - "n": 3.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3399 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3363 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 5, - "e": 3339 - } - ] - ] - } - ], - [ - 2549, - { - "n": "Torreira", - "f": "Lucas", - "fp": "MD", - "r": 14, - "c": 39, - "s": { - "g": 1, - "s": 74, - "n": 14, - "a": 5.29, - "d": 0.83, - "Ss": 37, - "Sn": 7, - "Sa": 5.29, - "Sd": 0.81, - "Og": 1, - "Os": 157.5, - "On": 31, - "Oa": 5.08, - "Od": 0.79, - "pm": 31 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3522 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -29, - { - "n": 4, - "e": 3454 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 6, - "e": 3429 - } - ], - [ - -26, - { - "n": 5, - "e": 3421 - } - ], - [ - -25, - { - "n": 5, - "e": 3415 - } - ], - [ - -24, - { - "n": 5, - "e": 3399 - } - ], - [ - -23, - { - "n": 6, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3369 - } - ], - [ - -20, - { - "n": 3, - "e": 3363 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 5, - "e": 3339 - } - ], - [ - 17, - { - "n": 5, - "e": 4138 - } - ], - [ - 16, - { - "n": 6.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4196 - } - ], - [ - 11, - { - "n": 6, - "e": 4198 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ], - [ - 4, - { - "n": 6, - "e": 4277 - } - ], - [ - 3, - { - "n": 7, - "e": 4285, - "g": 1 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ] - ] - } - ], - [ - 2887, - { - "n": "Smith Rowe", - "f": "Emile", - "fp": "MO", - "r": 1, - "c": 39, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 5, - "On": 1, - "Oa": 5, - "pm": 1 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4138 - } - ] - ] - } - ], - [ - 2926, - { - "n": "John-Jules", - "f": "Tyreece", - "fp": "A", - "r": 1, - "c": 39 - } - ], - [ - 2927, - { - "n": "Saka", - "f": "Bukayo", - "fp": "A", - "r": 6, - "c": 39, - "s": { - "s": 40, - "n": 8, - "a": 5, - "d": 0.76, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 45, - "On": 9, - "Oa": 5, - "Od": 0.71, - "pd": 5, - "pm": 3, - "pa": 1 - }, - "p": [ - [ - -21, - { - "n": 5, - "e": 3369 - } - ], - [ - 17, - { - "n": 5, - "e": 4138 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4176 - } - ], - [ - 11, - { - "n": 4, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4256 - } - ] - ] - } - ], - [ - 2931, - { - "n": "Medley", - "f": "Zech", - "fp": "DC", - "r": 1, - "c": 39 - } - ], - [ - 2934, - { - "n": "Pleguezuelo", - "f": "Julio", - "fp": "DC", - "r": 1, - "c": 39 - } - ], - [ - 5416, - { - "n": "Gabriel Martinelli", - "f": "", - "fp": "MO", - "r": 9, - "c": 39, - "s": { - "g": 1, - "s": 46.5, - "n": 9, - "a": 5.17, - "d": 0.71, - "Sg": 1, - "Ss": 26.5, - "Sn": 5, - "Sa": 5.3, - "Sd": 0.97, - "Og": 1, - "Os": 46.5, - "On": 9, - "Oa": 5.17, - "Od": 0.71, - "pm": 9 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 7, - "e": 4157, - "g": 1 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 9, - { - "n": 5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ] - } - ], - [ - 5428, - { - "n": "Thompson", - "f": "Dominic", - "fp": "DC", - "r": 1, - "c": 39 - } - ], - [ - 5429, - { - "n": "Olayinka", - "f": "James", - "fp": "MD", - "r": 1, - "c": 39 - } - ], - [ - 5440, - { - "n": "Burton", - "f": "Robbie", - "fp": "MD", - "r": 1, - "c": 39 - } - ], - [ - 6122, - { - "n": "Tierney", - "f": "Kieran", - "fp": "DL", - "r": 10, - "c": 39, - "s": { - "s": 24.5, - "n": 5, - "a": 4.9, - "d": 0.55, - "Os": 24.5, - "On": 5, - "Oa": 4.9, - "Od": 0.55, - "pd": 4, - "pm": 1 - }, - "p": [ - [ - 16, - { - "n": 5, - "e": 4157 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 13, - { - "n": 4, - "e": 4178 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ] - ] - } - ], - [ - 193, - { - "n": "El Ghazi", - "f": "Anwar", - "fp": "A", - "r": 13, - "c": 78, - "s": { - "g": 3, - "s": 79, - "n": 15, - "a": 5.27, - "d": 1.1, - "Ss": 8.5, - "Sn": 2, - "Sa": 4.25, - "Sd": 0.35, - "Og": 3, - "Os": 79, - "On": 15, - "Oa": 5.27, - "Od": 1.1, - "pm": 4, - "pa": 11 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 4, - "e": 4148 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4179, - "g": 1 - } - ], - [ - 12, - { - "n": 5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5, - "e": 4212 - } - ], - [ - 9, - { - "n": 4, - "e": 4218 - } - ], - [ - 8, - { - "n": 7, - "e": 4232 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4239, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 3, - { - "n": 7, - "e": 4278, - "g": 1 - } - ], - [ - 2, - { - "n": 4, - "e": 4289 - } - ], - [ - 1, - { - "n": 4, - "e": 4304 - } - ], - [ - 6, - { - "n": 6, - "e": 4256 - } - ] - ] - } - ], - [ - 344, - { - "n": "Guilbert", - "f": "Frederic", - "fp": "DL", - "r": 11, - "c": 78, - "s": { - "s": 69, - "n": 14, - "a": 4.93, - "d": 0.7, - "Ss": 9.5, - "Sn": 2, - "Sa": 4.75, - "Sd": 0.35, - "Og": 1, - "Os": 159, - "On": 33, - "Oa": 4.82, - "Od": 0.96, - "pd": 29, - "pm": 4 - }, - "p": [ - [ - 4, - { - "n": 4.5, - "e": 4270 - } - ], - [ - -38, - { - "n": 5, - "e": 3104 - } - ], - [ - -37, - { - "n": 3, - "e": 3095 - } - ], - [ - -36, - { - "n": 7, - "e": 3084, - "g": 1 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3073 - } - ], - [ - -34, - { - "n": 5, - "e": 3065 - } - ], - [ - -33, - { - "n": 5, - "e": 3056 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3042 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3038 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3025 - } - ], - [ - -29, - { - "n": 2.5, - "e": 3014 - } - ], - [ - -27, - { - "n": 5, - "e": 2994 - } - ], - [ - -26, - { - "n": 5, - "e": 2991 - } - ], - [ - -25, - { - "n": 5, - "e": 2974 - } - ], - [ - -23, - { - "n": 5, - "e": 2954 - } - ], - [ - -24, - { - "n": 4.5, - "e": 2962 - } - ], - [ - -21, - { - "n": 3, - "e": 2934 - } - ], - [ - -19, - { - "n": 5, - "e": 2918 - } - ], - [ - -18, - { - "n": 6.5, - "e": 2903 - } - ], - [ - -20, - { - "n": 4.5, - "e": 2923 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 5, - "e": 4148 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 4, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 4, - "e": 4212 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4239 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ], - [ - 3, - { - "n": 6, - "e": 4278 - } - ] - ] - } - ], - [ - 708, - { - "n": "Heaton", - "f": "Tom", - "fp": "G", - "r": 14, - "c": 78, - "s": { - "ao": 1, - "s": 85, - "n": 16, - "a": 5.31, - "d": 1.05, - "Ss": 8, - "Sn": 2, - "Sa": 4, - "Oao": 1, - "Os": 189, - "On": 35, - "Oa": 5.4, - "Od": 1.16, - "pg": 35 - }, - "p": [ - [ - 15, - { - "n": 7, - "e": 4164 - } - ], - [ - -37, - { - "n": 4, - "e": 3532 - } - ], - [ - -36, - { - "n": 6, - "e": 3519 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3499 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 2.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3450 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -27, - { - "n": 7, - "e": 3430 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 7, - "e": 3403 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3396 - } - ], - [ - -21, - { - "n": 5, - "e": 3373 - } - ], - [ - -20, - { - "n": 7, - "e": 3359 - } - ], - [ - -38, - { - "n": 4, - "e": 3539 - } - ], - [ - -35, - { - "n": 6, - "e": 3511 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3379 - } - ], - [ - 17, - { - "n": 4, - "e": 4145 - } - ], - [ - 16, - { - "n": 4, - "e": 4148 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4175, - "a": 1 - } - ], - [ - 13, - { - "n": 7, - "e": 4179 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5, - "e": 4212 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 6, - "e": 4232 - } - ], - [ - 7, - { - "n": 4, - "e": 4239 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4278 - } - ], - [ - 2, - { - "n": 4, - "e": 4289 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4304 - } - ] - ] - } - ], - [ - 939, - { - "n": "Targett", - "f": "Matt", - "fp": "DL", - "r": 13, - "c": 78, - "s": { - "g": 1, - "s": 55.5, - "n": 11, - "a": 5.05, - "d": 1.49, - "Sg": 1, - "Ss": 55.5, - "Sn": 11, - "Sa": 5.05, - "Sd": 1.49, - "Og": 2, - "Os": 106.5, - "On": 21, - "Oa": 5.07, - "Od": 1.21, - "pd": 14, - "pm": 7 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3545 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3525, - "g": 1 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3384 - } - ], - [ - -20, - { - "n": 4, - "e": 3365 - } - ], - [ - -19, - { - "n": 4, - "e": 3355 - } - ], - [ - -18, - { - "n": 5, - "e": 3343 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -25, - { - "n": 6, - "e": 3409 - } - ], - [ - 17, - { - "n": 3, - "e": 4145 - } - ], - [ - 16, - { - "n": 3, - "e": 4148 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 7, - "e": 4179 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 7, - "e": 4218, - "g": 1 - } - ], - [ - 8, - { - "n": 6, - "e": 4232 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4239 - } - ] - ], - "a": { - "m": 10, - "a": 13, - "M": 17, - "n": 6 - } - } - ], - [ - 1059, - { - "n": "Mings", - "f": "Tyrone", - "fp": "DC", - "r": 16, - "c": 78, - "s": { - "g": 1, - "s": 85, - "n": 16, - "a": 5.31, - "d": 0.79, - "Og": 1, - "Os": 90, - "On": 17, - "Oa": 5.29, - "Od": 0.77, - "pd": 17 - }, - "p": [ - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 6, - "e": 4175, - "g": 1 - } - ], - [ - 13, - { - "n": 7, - "e": 4179 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 6, - "e": 4218 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4239 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4278 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4304 - } - ] - ] - } - ], - [ - 1885, - { - "n": "Douglas Luiz", - "f": "", - "fp": "MD", - "r": 12, - "c": 78, - "s": { - "g": 2, - "s": 79, - "n": 15, - "a": 5.27, - "d": 0.73, - "Sg": 1, - "Ss": 52.5, - "Sn": 10, - "Sa": 5.25, - "Sd": 0.86, - "Og": 2, - "Os": 149.5, - "On": 29, - "Oa": 5.16, - "Od": 0.82, - "pm": 29 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 2336 - } - ], - [ - -35, - { - "n": 6.5, - "e": 2315 - } - ], - [ - -34, - { - "n": 4, - "e": 2310 - } - ], - [ - -33, - { - "n": 4, - "e": 2295 - } - ], - [ - -31, - { - "n": 5.5, - "e": 2279 - } - ], - [ - -30, - { - "n": 5, - "e": 2263 - } - ], - [ - -26, - { - "n": 6.5, - "e": 2231 - } - ], - [ - -25, - { - "n": 5, - "e": 2217 - } - ], - [ - -22, - { - "n": 5, - "e": 2184 - } - ], - [ - -21, - { - "n": 4.5, - "e": 2177 - } - ], - [ - -20, - { - "n": 4, - "e": 2163 - } - ], - [ - -19, - { - "n": 4, - "e": 2157 - } - ], - [ - -18, - { - "n": 5, - "e": 2150 - } - ], - [ - -24, - { - "n": 6.5, - "e": 2209 - } - ], - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4164 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 6, - "e": 4179 - } - ], - [ - 12, - { - "n": 5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4232, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4278 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4289, - "g": 1 - } - ], - [ - 1, - { - "n": 5, - "e": 4304 - } - ] - ] - } - ], - [ - 2587, - { - "n": "Hause", - "f": "Kortney", - "fp": "DC", - "r": 1, - "c": 78, - "s": { - "s": 3.5, - "n": 1, - "a": 3.5, - "Ss": 3.5, - "Sn": 1, - "Sa": 3.5, - "Os": 3.5, - "On": 1, - "Oa": 3.5, - "pd": 1 - }, - "p": [ - [ - 17, - { - "n": 3.5, - "e": 4145 - } - ] - ] - } - ], - [ - 2823, - { - "n": "Engels", - "f": "Björn", - "fp": "DC", - "r": 10, - "c": 78, - "s": { - "s": 62.5, - "n": 13, - "a": 4.81, - "d": 1.01, - "Ss": 8, - "Sn": 2, - "Sa": 4, - "Sd": 0.71, - "Og": 1, - "Oao": 1, - "Os": 163, - "On": 32, - "Oa": 5.09, - "Od": 0.99, - "pd": 32 - }, - "p": [ - [ - -37, - { - "n": 6, - "e": 3092 - } - ], - [ - -35, - { - "n": 3, - "e": 3079 - } - ], - [ - -34, - { - "n": 5, - "e": 3063 - } - ], - [ - -33, - { - "n": 4, - "e": 3059, - "a": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3046 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3030 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3021 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3003 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3001 - } - ], - [ - -26, - { - "n": 5, - "e": 2986 - } - ], - [ - -25, - { - "n": 6.5, - "e": 2980 - } - ], - [ - -24, - { - "n": 5.5, - "e": 2971 - } - ], - [ - -23, - { - "n": 6, - "e": 2959 - } - ], - [ - -22, - { - "n": 6, - "e": 2944 - } - ], - [ - -21, - { - "n": 5.5, - "e": 2939 - } - ], - [ - -20, - { - "n": 5.5, - "e": 2926 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3084 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3040 - } - ], - [ - -19, - { - "n": 6, - "e": 2918, - "g": 1 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4148 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 5, - "e": 4218 - } - ], - [ - 8, - { - "n": 7, - "e": 4232 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4278 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4304 - } - ] - ] - } - ], - [ - 3651, - { - "n": "Ramsey", - "f": "Jacob", - "fp": "MO", - "r": 1, - "c": 78 - } - ], - [ - 3653, - { - "n": "Revan", - "f": "Dominic", - "fp": "DC", - "r": 1, - "c": 78 - } - ], - [ - 3656, - { - "n": "Davis", - "f": "Keinan", - "fp": "MO", - "r": 2, - "c": 78, - "s": { - "s": 26.5, - "n": 6, - "a": 4.42, - "d": 0.49, - "Os": 26.5, - "On": 6, - "Oa": 4.42, - "Od": 0.49, - "pa": 6 - }, - "p": [ - [ - 10, - { - "n": 4, - "e": 4212 - } - ], - [ - 9, - { - "n": 5, - "e": 4218 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4239 - } - ], - [ - 5, - { - "n": 4, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 2, - { - "n": 4, - "e": 4289 - } - ] - ] - } - ], - [ - 3661, - { - "n": "Doyle-Hayes", - "f": "Jake", - "fp": "MD", - "r": 3, - "c": 78 - } - ], - [ - 3662, - { - "n": "Wesley", - "f": "", - "fp": "A", - "r": 16, - "c": 78, - "s": { - "g": 4, - "s": 78.5, - "n": 17, - "a": 4.62, - "d": 1.36, - "Sg": 4, - "Ss": 78.5, - "Sn": 17, - "Sa": 4.62, - "Sd": 1.36, - "Og": 4, - "Os": 78.5, - "On": 17, - "Oa": 4.62, - "Od": 1.36, - "pa": 17 - }, - "p": [ - [ - 17, - { - "n": 4, - "e": 4145 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 3, - "e": 4199 - } - ], - [ - 10, - { - "n": 3, - "e": 4212 - } - ], - [ - 9, - { - "n": 4, - "e": 4218 - } - ], - [ - 8, - { - "n": 8, - "e": 4232, - "g": 2 - } - ], - [ - 7, - { - "n": 4, - "e": 4239 - } - ], - [ - 6, - { - "n": 6, - "e": 4256, - "g": 1 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 7, - "e": 4278, - "g": 1 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4304 - } - ] - ], - "a": { - "m": 22, - "a": 24, - "M": 30, - "n": 11 - } - } - ], - [ - 3669, - { - "n": "Konsa Ngoyo", - "f": "Ezri", - "fp": "DC", - "r": 10, - "c": 78, - "s": { - "s": 28, - "n": 6, - "a": 4.67, - "d": 0.88, - "Os": 28, - "On": 6, - "Oa": 4.67, - "Od": 0.88, - "pd": 6 - }, - "p": [ - [ - 16, - { - "n": 3.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 5, - "e": 4164 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 6, - "e": 4179 - } - ], - [ - 12, - { - "n": 4, - "e": 4195 - } - ], - [ - 8, - { - "n": 5, - "e": 4232 - } - ] - ] - } - ], - [ - 3677, - { - "n": "Clark", - "f": "Mitchell", - "fp": "DC", - "r": 3, - "c": 78 - } - ], - [ - 3678, - { - "n": "Bree", - "f": "James", - "fp": "DC", - "r": 3, - "c": 78 - } - ], - [ - 3680, - { - "n": "O'Hare", - "f": "Callum", - "fp": "MD", - "r": 1, - "c": 78 - } - ], - [ - 3688, - { - "n": "Hepburn-Murphy", - "f": "Rushian", - "fp": "A", - "r": 7, - "c": 78 - } - ], - [ - 3689, - { - "n": "Green", - "f": "Andre", - "fp": "MD", - "r": 7, - "c": 78 - } - ], - [ - 3698, - { - "n": "McGinn", - "f": "John", - "fp": "MD", - "r": 23, - "c": 78, - "s": { - "g": 3, - "s": 103, - "n": 17, - "a": 6.06, - "d": 1.07, - "Sg": 3, - "Ss": 103, - "Sn": 17, - "Sa": 6.06, - "Sd": 1.07, - "Og": 3, - "Os": 103, - "On": 17, - "Oa": 6.06, - "Od": 1.07, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 4, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4164 - } - ], - [ - 14, - { - "n": 6, - "e": 4175 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 7, - "e": 4199 - } - ], - [ - 10, - { - "n": 4, - "e": 4212 - } - ], - [ - 9, - { - "n": 7, - "e": 4218 - } - ], - [ - 8, - { - "n": 7, - "e": 4232 - } - ], - [ - 7, - { - "n": 7, - "e": 4239, - "g": 1 - } - ], - [ - 6, - { - "n": 8, - "e": 4256, - "g": 1 - } - ], - [ - 5, - { - "n": 6, - "e": 4267 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 7, - "e": 4278 - } - ], - [ - 2, - { - "n": 6, - "e": 4289 - } - ], - [ - 1, - { - "n": 6, - "e": 4304, - "g": 1 - } - ] - ], - "a": { - "m": 23, - "a": 26, - "M": 33, - "n": 6 - } - } - ], - [ - 3700, - { - "n": "Grealish", - "f": "Jack", - "fp": "MO", - "r": 26, - "c": 78, - "s": { - "g": 4, - "s": 90, - "n": 15, - "a": 6, - "d": 1.35, - "Sg": 2, - "Ss": 27.5, - "Sn": 5, - "Sa": 5.5, - "Sd": 1.9, - "Og": 4, - "Os": 90, - "On": 15, - "Oa": 6, - "Od": 1.35, - "pm": 8, - "pa": 7 - }, - "p": [ - [ - 17, - { - "n": 2.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 6, - "e": 4148, - "g": 1 - } - ], - [ - 15, - { - "n": 5, - "e": 4164 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4175, - "g": 1 - } - ], - [ - 13, - { - "n": 7.5, - "e": 4179 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 8, - "e": 4218, - "g": 1 - } - ], - [ - 8, - { - "n": 7.5, - "e": 4232, - "g": 1 - } - ], - [ - 7, - { - "n": 6, - "e": 4239 - } - ], - [ - 6, - { - "n": 7, - "e": 4256 - } - ], - [ - 5, - { - "n": 6, - "e": 4267 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4278 - } - ], - [ - 2, - { - "n": 6, - "e": 4289 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ] - } - ], - [ - 3707, - { - "n": "Nyland", - "f": "Ørjan", - "fp": "G", - "r": 7, - "c": 78, - "s": { - "s": 4, - "n": 1, - "a": 4, - "Os": 4, - "On": 1, - "Oa": 4, - "pg": 1 - }, - "p": [ - [ - 12, - { - "n": 4, - "e": 4195 - } - ] - ] - } - ], - [ - 3710, - { - "n": "Jota", - "f": "", - "fp": "MO", - "r": 5, - "c": 78, - "s": { - "s": 30, - "n": 6, - "a": 5, - "d": 1.1, - "Os": 30, - "On": 6, - "Oa": 5, - "Od": 1.1, - "pm": 4, - "pa": 2 - }, - "p": [ - [ - 15, - { - "n": 5, - "e": 4164 - } - ], - [ - 5, - { - "n": 4, - "e": 4267 - } - ], - [ - 4, - { - "n": 4, - "e": 4270 - } - ], - [ - 3, - { - "n": 7, - "e": 4278 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 5, - "e": 4304 - } - ] - ] - } - ], - [ - 3711, - { - "n": "Kalinic", - "f": "Lovre", - "fp": "G", - "r": 1, - "c": 78 - } - ], - [ - 3714, - { - "n": "Hourihane", - "f": "Conor", - "fp": "MD", - "r": 11, - "c": 78, - "s": { - "g": 2, - "s": 58.5, - "n": 10, - "a": 5.85, - "d": 1.23, - "Og": 2, - "Os": 58.5, - "On": 10, - "Oa": 5.85, - "Od": 1.23, - "pm": 10 - }, - "p": [ - [ - 15, - { - "n": 4.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 6, - "e": 4175 - } - ], - [ - 13, - { - "n": 8, - "e": 4179, - "g": 1 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 8, - "e": 4232, - "g": 1 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ] - } - ], - [ - 3718, - { - "n": "Hogan", - "f": "Scott", - "fp": "A", - "r": 5, - "c": 78 - } - ], - [ - 3719, - { - "n": "Steer", - "f": "Jed", - "fp": "G", - "r": 3, - "c": 78, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 5, - "On": 1, - "Oa": 5, - "pg": 1 - }, - "p": [ - [ - 12, - { - "n": 5, - "e": 4195 - } - ] - ] - } - ], - [ - 3730, - { - "n": "Kodjia", - "f": "Jonathan", - "fp": "A", - "r": 3, - "c": 78, - "s": { - "s": 13.5, - "n": 3, - "a": 4.5, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Os": 13.5, - "On": 3, - "Oa": 4.5, - "pa": 3 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4145 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4199 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4304 - } - ] - ] - } - ], - [ - 3733, - { - "n": "Taylor", - "f": "Neil", - "fp": "DL", - "r": 4, - "c": 78, - "s": { - "s": 38.5, - "n": 8, - "a": 4.81, - "d": 0.37, - "Os": 38.5, - "On": 8, - "Oa": 4.81, - "Od": 0.37, - "pd": 8 - }, - "p": [ - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4278 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4304 - } - ] - ] - } - ], - [ - 3735, - { - "n": "Chester", - "f": "James", - "fp": "DC", - "r": 1, - "c": 78 - } - ], - [ - 3737, - { - "n": "Lansbury", - "f": "Henri", - "fp": "MO", - "r": 3, - "c": 78, - "s": { - "s": 29.5, - "n": 6, - "a": 4.92, - "d": 0.2, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Os": 29.5, - "On": 6, - "Oa": 4.92, - "Od": 0.2, - "pm": 6 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4145 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5, - "e": 4195 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ] - ] - } - ], - [ - 3740, - { - "n": "Ahmed El Mohamady", - "f": "", - "fp": "DL", - "r": 8, - "c": 78, - "s": { - "s": 39.5, - "n": 8, - "a": 4.94, - "d": 1.15, - "Os": 39.5, - "On": 8, - "Oa": 4.94, - "Od": 1.15, - "pd": 8 - }, - "p": [ - [ - 16, - { - "n": 3.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4164 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 6, - { - "n": 4, - "e": 4256 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 3, - { - "n": 5, - "e": 4278 - } - ], - [ - 2, - { - "n": 7, - "e": 4289 - } - ], - [ - 1, - { - "n": 4, - "e": 4304 - } - ] - ] - } - ], - [ - 3742, - { - "n": "Bjarnason", - "f": "Birkir", - "fp": "MD", - "r": 12, - "c": 78 - } - ], - [ - 5448, - { - "n": "Trézéguet", - "f": "", - "fp": "MO", - "r": 15, - "c": 78, - "s": { - "g": 3, - "s": 77, - "n": 15, - "a": 5.13, - "d": 0.97, - "Sg": 1, - "Ss": 21, - "Sn": 4, - "Sa": 5.25, - "Sd": 0.65, - "Og": 3, - "Os": 77, - "On": 15, - "Oa": 5.13, - "Od": 0.97, - "pm": 9, - "pa": 6 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4164, - "g": 1 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4175 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4195, - "g": 1 - } - ], - [ - 11, - { - "n": 6, - "e": 4199, - "g": 1 - } - ], - [ - 10, - { - "n": 5, - "e": 4212 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 5, - "e": 4232 - } - ], - [ - 7, - { - "n": 6, - "e": 4239 - } - ], - [ - 6, - { - "n": 5, - "e": 4256 - } - ], - [ - 4, - { - "n": 2.5, - "e": 4270 - } - ], - [ - 3, - { - "n": 5, - "e": 4278 - } - ], - [ - 2, - { - "n": 4, - "e": 4289 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4304 - } - ] - ] - } - ], - [ - 5997, - { - "n": "Nakamba", - "f": "Marvelous", - "fp": "MD", - "r": 12, - "c": 78, - "s": { - "s": 59, - "n": 11, - "a": 5.36, - "d": 0.98, - "Ss": 15, - "Sn": 3, - "Sa": 5, - "Sd": 1.32, - "Os": 59, - "On": 11, - "Oa": 5.36, - "Od": 0.98, - "pm": 11 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4164 - } - ], - [ - 12, - { - "n": 5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 7.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4256 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ] - ] - } - ], - [ - 6125, - { - "n": "Tshibola", - "f": "Aaron", - "fp": "MD", - "r": 6, - "c": 78 - } - ], - [ - 6241, - { - "n": "Archer", - "f": "Cameron", - "fp": "A", - "r": 1, - "c": 78 - } - ], - [ - 597, - { - "n": "Defoe", - "f": "Jermain", - "fp": "A", - "r": 6, - "c": 36 - } - ], - [ - 651, - { - "n": "King", - "f": "Joshua", - "fp": "A", - "r": 15, - "c": 36, - "s": { - "g": 3, - "s": 68.5, - "n": 13, - "a": 5.27, - "d": 1.05, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 10, - "Os": 172, - "On": 34, - "Oa": 5.06, - "Od": 1.27, - "pm": 6, - "pa": 28 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4140 - } - ], - [ - 12, - { - "n": 4, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4200, - "g": 1 - } - ], - [ - 10, - { - "n": 5, - "e": 4216 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4219 - } - ], - [ - 7, - { - "n": 7, - "e": 4240, - "g": 1 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 4, - "e": 4271 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ], - [ - -38, - { - "n": 6, - "e": 3540, - "g": 1 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3498 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 7, - "e": 3468, - "g": 2 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3462 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3448 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3428, - "g": 1 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3410 - } - ], - [ - -23, - { - "n": 7, - "e": 3388, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -21, - { - "n": 4, - "e": 3368 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3356 - } - ], - [ - -18, - { - "n": 5, - "e": 3338 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4, - "e": 3508 - } - ], - [ - -33, - { - "n": 4, - "e": 3488 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3438 - } - ], - [ - -24, - { - "n": 9, - "e": 3398, - "g": 2 - } - ], - [ - -20, - { - "n": 4, - "e": 3364 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 2, - { - "n": 5, - "e": 4289, - "g": 1 - } - ] - ], - "a": { - "m": 22, - "a": 31, - "M": 40, - "n": 8 - } - } - ], - [ - 729, - { - "n": "Daniels", - "f": "Charlie", - "fp": "DL", - "r": 1, - "c": 36, - "s": { - "s": 10.5, - "n": 2, - "a": 5.25, - "d": 1.06, - "Og": 1, - "Os": 61, - "On": 13, - "Oa": 4.69, - "Od": 1.09, - "pd": 13 - }, - "p": [ - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 4, - "e": 3468 - } - ], - [ - -30, - { - "n": 6, - "e": 3462 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 4, - "e": 3438 - } - ], - [ - -24, - { - "n": 6, - "e": 3398, - "g": 1 - } - ], - [ - -23, - { - "n": 5, - "e": 3388 - } - ], - [ - -21, - { - "n": 4, - "e": 3368 - } - ], - [ - -20, - { - "n": 3, - "e": 3364 - } - ], - [ - -19, - { - "n": 3, - "e": 3356 - } - ], - [ - -18, - { - "n": 6, - "e": 3338 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 6, - "e": 4289 - } - ] - ] - } - ], - [ - 736, - { - "n": "Stanislas", - "f": "Junior", - "fp": "MO", - "r": 7, - "c": 36, - "s": { - "Og": 1, - "Os": 59.5, - "On": 12, - "Oa": 4.96, - "Od": 1.18, - "pd": 2, - "pm": 9, - "pa": 1 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3508 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3498, - "g": 1 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -25, - { - "n": 4, - "e": 3410 - } - ], - [ - -24, - { - "n": 7.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3383 - } - ], - [ - -21, - { - "n": 5, - "e": 3368 - } - ], - [ - -20, - { - "n": 3, - "e": 3364 - } - ], - [ - -19, - { - "n": 4, - "e": 3356 - } - ], - [ - -18, - { - "n": 5, - "e": 3338 - } - ] - ] - } - ], - [ - 744, - { - "n": "Fraser", - "f": "Ryan", - "fp": "MO", - "r": 18, - "c": 36, - "s": { - "g": 1, - "s": 89.5, - "n": 16, - "a": 5.59, - "d": 0.74, - "Ss": 7, - "Sn": 1, - "Sa": 7, - "Og": 4, - "Os": 205.5, - "On": 37, - "Oa": 5.55, - "Od": 1.13, - "pm": 35, - "pa": 2 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4173 - } - ], - [ - 13, - { - "n": 6, - "e": 4180 - } - ], - [ - -38, - { - "n": 4, - "e": 3540 - } - ], - [ - -37, - { - "n": 8, - "e": 3528 - } - ], - [ - -36, - { - "n": 6, - "e": 3525 - } - ], - [ - -35, - { - "n": 5, - "e": 3508 - } - ], - [ - -34, - { - "n": 8, - "e": 3498, - "g": 1 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3468 - } - ], - [ - -30, - { - "n": 8, - "e": 3462, - "g": 1 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 6, - "e": 3428 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 6, - "e": 3398 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3383 - } - ], - [ - -21, - { - "n": 7, - "e": 3368, - "g": 1 - } - ], - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3356 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 7, - "e": 4140 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 6, - "e": 4216 - } - ], - [ - 9, - { - "n": 6, - "e": 4219 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 5, - { - "n": 7, - "e": 4265, - "g": 1 - } - ], - [ - 4, - { - "n": 6, - "e": 4271 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4289 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ] - ], - "a": { - "m": 22, - "a": 23, - "M": 25, - "n": 5 - } - } - ], - [ - 754, - { - "n": "Arter", - "f": "Harry", - "fp": "MD", - "r": 6, - "c": 36, - "s": { - "Os": 54, - "On": 11, - "Oa": 4.91, - "Od": 1.18, - "pm": 10, - "pa": 1 - }, - "p": [ - [ - -30, - { - "n": 6, - "e": 3459 - } - ], - [ - -27, - { - "n": 2.5, - "e": 3431 - } - ], - [ - -26, - { - "n": 5, - "e": 3424 - } - ], - [ - -22, - { - "n": 5, - "e": 3380 - } - ], - [ - -21, - { - "n": 3.5, - "e": 3370 - } - ], - [ - -20, - { - "n": 6, - "e": 3362 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - -18, - { - "n": 4, - "e": 3340 - } - ], - [ - -34, - { - "n": 5, - "e": 3499 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3481 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3399 - } - ] - ] - } - ], - [ - 784, - { - "n": "Steve Cook", - "f": "", - "fp": "DC", - "r": 10, - "c": 36, - "s": { - "g": 1, - "s": 74.5, - "n": 14, - "a": 5.32, - "d": 0.87, - "Og": 1, - "Os": 142.5, - "On": 28, - "Oa": 5.09, - "Od": 1.15, - "pd": 28 - }, - "p": [ - [ - -38, - { - "n": 3, - "e": 3540 - } - ], - [ - -37, - { - "n": 6, - "e": 3528 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 5, - "e": 3508 - } - ], - [ - -34, - { - "n": 7, - "e": 3498 - } - ], - [ - -26, - { - "n": 4, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 7, - "e": 3398 - } - ], - [ - -23, - { - "n": 6, - "e": 3388 - } - ], - [ - -22, - { - "n": 4, - "e": 3383 - } - ], - [ - -21, - { - "n": 5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4, - "e": 3364 - } - ], - [ - -19, - { - "n": 3, - "e": 3356 - } - ], - [ - -18, - { - "n": 6, - "e": 3338 - } - ], - [ - 14, - { - "n": 4, - "e": 4173 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4180, - "g": 1 - } - ], - [ - 12, - { - "n": 4, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4200 - } - ], - [ - 10, - { - "n": 6, - "e": 4216 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 6, - "e": 4236 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 6, - "e": 4248 - } - ], - [ - 5, - { - "n": 6, - "e": 4265 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 6, - "e": 4289 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 809, - { - "n": "Callum Wilson", - "f": "", - "fp": "A", - "r": 21, - "c": 36, - "s": { - "g": 5, - "s": 80.5, - "n": 16, - "a": 5.03, - "d": 1.26, - "Og": 11, - "Os": 152.5, - "On": 30, - "Oa": 5.08, - "Od": 1.53, - "pa": 30 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3540 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 8, - "e": 3525, - "g": 2 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 8, - "e": 3498, - "g": 1 - } - ], - [ - -33, - { - "n": 4, - "e": 3488 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 4, - "e": 3468 - } - ], - [ - -30, - { - "n": 7, - "e": 3462, - "g": 1 - } - ], - [ - -23, - { - "n": 7, - "e": 3388, - "g": 1 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3368, - "g": 1 - } - ], - [ - -20, - { - "n": 3, - "e": 3364 - } - ], - [ - -19, - { - "n": 3, - "e": 3356 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3338 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 4, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 4, - "e": 4191 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ], - [ - 10, - { - "n": 4, - "e": 4216 - } - ], - [ - 9, - { - "n": 4, - "e": 4219 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4240, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4248, - "g": 1 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4265, - "g": 2 - } - ], - [ - 4, - { - "n": 6, - "e": 4271, - "g": 1 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 6, - "e": 4289 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ] - ], - "a": { - "m": 33, - "a": 35, - "M": 40, - "n": 10 - } - } - ], - [ - 827, - { - "n": "Francis", - "f": "Simon", - "fp": "DL", - "r": 8, - "c": 36, - "s": { - "s": 33.5, - "n": 7, - "a": 4.79, - "d": 1.19, - "Ss": 15, - "Sn": 3, - "Sa": 5, - "Sd": 1.5, - "Os": 43, - "On": 9, - "Oa": 4.78, - "Od": 1.09, - "pd": 9 - }, - "p": [ - [ - -19, - { - "n": 4, - "e": 3356 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 13, - { - "n": 3, - "e": 4180 - } - ], - [ - 12, - { - "n": 5, - "e": 4191 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4240 - } - ] - ] - } - ], - [ - 832, - { - "n": "Smith", - "f": "Brad", - "fp": "DC", - "r": 1, - "c": 36, - "a": { - "m": 7, - "a": 9, - "M": 10, - "n": 5 - } - } - ], - [ - 840, - { - "n": "Aké", - "f": "Nathan", - "fp": "DC", - "r": 18, - "c": 36, - "s": { - "g": 1, - "s": 85.5, - "n": 16, - "a": 5.34, - "d": 0.93, - "Og": 4, - "Os": 195, - "On": 37, - "Oa": 5.27, - "Od": 1.12, - "pd": 35, - "pm": 2 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 7, - "e": 3528, - "g": 1 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 7, - "e": 3498 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3468 - } - ], - [ - -30, - { - "n": 6, - "e": 3462 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 3, - "e": 3438 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 4, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 7, - "e": 3398 - } - ], - [ - -23, - { - "n": 6, - "e": 3388 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -21, - { - "n": 6, - "e": 3368, - "g": 1 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3364, - "g": 1 - } - ], - [ - -19, - { - "n": 2.5, - "e": 3356 - } - ], - [ - -18, - { - "n": 6, - "e": 3338 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 4, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 6, - "e": 4236 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 7.5, - "e": 4248, - "g": 1 - } - ], - [ - 5, - { - "n": 6, - "e": 4265 - } - ], - [ - 4, - { - "n": 4, - "e": 4271 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4289 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ] - ], - "a": { - "m": 23, - "a": 26, - "M": 34, - "n": 13 - } - } - ], - [ - 867, - { - "n": "Surman", - "f": "Andrew", - "fp": "MD", - "r": 5, - "c": 36, - "s": { - "s": 15, - "n": 3, - "a": 5, - "Os": 60, - "On": 12, - "Oa": 5, - "Od": 1.07, - "pm": 12 - }, - "p": [ - [ - -30, - { - "n": 6, - "e": 3462 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 4, - "e": 3438 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 7, - "e": 3398 - } - ], - [ - -20, - { - "n": 4, - "e": 3364 - } - ], - [ - -19, - { - "n": 3, - "e": 3356 - } - ], - [ - -18, - { - "n": 6, - "e": 3338 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 4, - { - "n": 5, - "e": 4271 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ] - ] - } - ], - [ - 891, - { - "n": "Smith", - "f": "Adam", - "fp": "DL", - "r": 8, - "c": 36, - "s": { - "s": 48, - "n": 10, - "a": 4.8, - "d": 0.71, - "Os": 109.5, - "On": 23, - "Oa": 4.76, - "Od": 0.88, - "pd": 19, - "pm": 4 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 6, - "e": 3528 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 4, - "e": 3488 - } - ], - [ - -30, - { - "n": 5, - "e": 3462 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 4, - "e": 3428 - } - ], - [ - -26, - { - "n": 4, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 3, - "e": 3383 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4166 - } - ], - [ - 13, - { - "n": 4, - "e": 4180 - } - ], - [ - 12, - { - "n": 4, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 4, - "e": 4286 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 892, - { - "n": "Boruc", - "f": "Artur", - "fp": "G", - "r": 7, - "c": 36, - "s": { - "Os": 67, - "On": 12, - "Oa": 5.58, - "Od": 1.22, - "pg": 12 - }, - "p": [ - [ - -36, - { - "n": 4.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 6, - "e": 3498 - } - ], - [ - -31, - { - "n": 5, - "e": 3468 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3462 - } - ], - [ - -29, - { - "n": 7, - "e": 3448 - } - ], - [ - -28, - { - "n": 3, - "e": 3438 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 7.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3388 - } - ] - ] - } - ], - [ - 916, - { - "n": "Ibe", - "f": "Jordon", - "fp": "MO", - "r": 4, - "c": 36, - "s": { - "s": 10, - "n": 2, - "a": 5, - "Og": 1, - "Os": 70.5, - "On": 15, - "Oa": 4.7, - "Od": 0.73, - "pm": 14, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3540, - "g": 1 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3528 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3468 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3410 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3398 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3364 - } - ], - [ - -18, - { - "n": 5, - "e": 3338 - } - ], - [ - 4, - { - "n": 5, - "e": 4271 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ] - ] - } - ], - [ - 950, - { - "n": "Gosling", - "f": "Dan", - "fp": "MD", - "r": 5, - "c": 36, - "s": { - "g": 1, - "s": 21, - "n": 4, - "a": 5.25, - "d": 1.19, - "Sg": 1, - "Ss": 12, - "Sn": 2, - "Sa": 6, - "Sd": 1.41, - "Og": 3, - "Os": 89, - "On": 17, - "Oa": 5.24, - "Od": 1.19, - "pm": 17 - }, - "p": [ - [ - -36, - { - "n": 5.5, - "e": 3525, - "g": 1 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 8, - "e": 3498, - "g": 1 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4, - "e": 3484 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3438 - } - ], - [ - -27, - { - "n": 6, - "e": 3428 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 6, - "e": 3388 - } - ], - [ - -22, - { - "n": 4, - "e": 3383 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - 17, - { - "n": 7, - "e": 4140, - "g": 1 - } - ], - [ - 16, - { - "n": 5, - "e": 4149 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4180 - } - ] - ] - } - ], - [ - 985, - { - "n": "Pugh", - "f": "Marc", - "fp": "MD", - "r": 1, - "c": 36 - } - ], - [ - 1092, - { - "n": "Harry Wilson", - "f": "", - "fp": "MO", - "r": 22, - "c": 36, - "s": { - "g": 6, - "s": 80.5, - "n": 14, - "a": 5.75, - "d": 1.12, - "Og": 6, - "Os": 80.5, - "On": 14, - "Oa": 5.75, - "Od": 1.12, - "pm": 13, - "pa": 1 - }, - "p": [ - [ - 15, - { - "n": 4.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 8, - "e": 4173, - "g": 2 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4191, - "g": 1 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4248, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4265 - } - ], - [ - 4, - { - "n": 4, - "e": 4271 - } - ], - [ - 3, - { - "n": 7, - "e": 4286, - "g": 1 - } - ], - [ - 2, - { - "n": 7, - "e": 4289, - "g": 1 - } - ] - ] - } - ], - [ - 1117, - { - "n": "Simpson", - "f": "Jack", - "fp": "DC", - "r": 6, - "c": 36, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Oao": 1, - "Os": 31.5, - "On": 7, - "Oa": 4.5, - "Od": 1.15, - "pd": 7 - }, - "p": [ - [ - -38, - { - "n": 2.5, - "e": 3540, - "a": 1 - } - ], - [ - -37, - { - "n": 6, - "e": 3528 - } - ], - [ - -36, - { - "n": 4, - "e": 3525 - } - ], - [ - -35, - { - "n": 4, - "e": 3508 - } - ], - [ - -34, - { - "n": 5, - "e": 3498 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3448 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4149 - } - ] - ] - } - ], - [ - 1119, - { - "n": "Ramsdale", - "f": "Aaron", - "fp": "G", - "r": 18, - "c": 36, - "s": { - "s": 95, - "n": 17, - "a": 5.59, - "d": 1.08, - "Ss": 95, - "Sn": 17, - "Sa": 5.59, - "Sd": 1.08, - "Os": 95, - "On": 17, - "Oa": 5.59, - "Od": 1.08, - "pg": 17 - }, - "p": [ - [ - 17, - { - "n": 7, - "e": 4140 - } - ], - [ - 16, - { - "n": 6, - "e": 4149 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 4, - "e": 4173 - } - ], - [ - 13, - { - "n": 6, - "e": 4180 - } - ], - [ - 12, - { - "n": 6, - "e": 4191 - } - ], - [ - 11, - { - "n": 7, - "e": 4200 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 7, - "e": 4248 - } - ], - [ - 5, - { - "n": 6, - "e": 4265 - } - ], - [ - 4, - { - "n": 4, - "e": 4271 - } - ], - [ - 3, - { - "n": 4, - "e": 4286 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4289 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 1120, - { - "n": "Solanke", - "f": "Dominic", - "fp": "A", - "r": 9, - "c": 36, - "s": { - "s": 64.5, - "n": 15, - "a": 4.3, - "d": 0.68, - "Ss": 16.5, - "Sn": 4, - "Sa": 4.13, - "Sd": 0.48, - "Os": 113, - "On": 25, - "Oa": 4.52, - "Od": 0.67, - "pa": 25 - }, - "p": [ - [ - -36, - { - "n": 5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 5, - "e": 3498 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4, - "e": 3484 - } - ], - [ - -31, - { - "n": 6, - "e": 3468 - } - ], - [ - -30, - { - "n": 5, - "e": 3462 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3410 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 4, - "e": 4166 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4173 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4191 - } - ], - [ - 10, - { - "n": 4, - "e": 4216 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 3, - "e": 4236 - } - ], - [ - 7, - { - "n": 4, - "e": 4240 - } - ], - [ - 6, - { - "n": 4, - "e": 4248 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 5, - "e": 4271 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 1123, - { - "n": "Jordan", - "f": "Corey", - "fp": "DC", - "r": 1, - "c": 36 - } - ], - [ - 1147, - { - "n": "Begovic", - "f": "Asmir", - "fp": "G", - "r": 10, - "c": 36, - "s": { - "Os": 28.5, - "On": 7, - "Oa": 4.07, - "Od": 1.72, - "pg": 7 - }, - "p": [ - [ - -33, - { - "n": 2, - "e": 3488 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -22, - { - "n": 4, - "e": 3383 - } - ], - [ - -21, - { - "n": 3.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4, - "e": 3364 - } - ], - [ - -19, - { - "n": 3, - "e": 3356 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3338 - } - ] - ] - } - ], - [ - 1359, - { - "n": "Lewis Cook", - "f": "", - "fp": "MD", - "r": 9, - "c": 36, - "s": { - "s": 55.5, - "n": 11, - "a": 5.05, - "d": 0.15, - "Ss": 35.5, - "Sn": 7, - "Sa": 5.07, - "Sd": 0.19, - "Os": 55.5, - "On": 11, - "Oa": 5.05, - "Od": 0.15, - "pm": 11 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4140 - } - ], - [ - 16, - { - "n": 5, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 7, - { - "n": 5, - "e": 4240 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 5, - { - "n": 5, - "e": 4265 - } - ] - ] - } - ], - [ - 1494, - { - "n": "Billing", - "f": "Philip", - "fp": "MD", - "r": 11, - "c": 36, - "s": { - "s": 83, - "n": 16, - "a": 5.19, - "d": 0.68, - "Ss": 15.5, - "Sn": 3, - "Sa": 5.17, - "Sd": 0.76, - "Og": 1, - "Os": 139.5, - "On": 27, - "Oa": 5.17, - "Od": 0.78, - "pm": 27 - }, - "p": [ - [ - -31, - { - "n": 5, - "e": 3476 - } - ], - [ - -29, - { - "n": 5, - "e": 3449 - } - ], - [ - -28, - { - "n": 5, - "e": 3440 - } - ], - [ - -27, - { - "n": 5, - "e": 3436 - } - ], - [ - -19, - { - "n": 5, - "e": 3354 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3462 - } - ], - [ - -25, - { - "n": 4, - "e": 3411 - } - ], - [ - -22, - { - "n": 6, - "e": 3380 - } - ], - [ - -21, - { - "n": 6, - "e": 3373 - } - ], - [ - -20, - { - "n": 5, - "e": 3361 - } - ], - [ - -18, - { - "n": 7, - "e": 3343, - "g": 1 - } - ], - [ - 17, - { - "n": 6, - "e": 4140 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 13, - { - "n": 4, - "e": 4180 - } - ], - [ - 12, - { - "n": 5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4289 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ] - ] - } - ], - [ - 1738, - { - "n": "Lerma", - "f": "Jefferson", - "fp": "MD", - "r": 14, - "c": 36, - "s": { - "s": 81.5, - "n": 15, - "a": 5.43, - "d": 0.8, - "Ss": 27.5, - "Sn": 5, - "Sa": 5.5, - "Sd": 1.17, - "Og": 1, - "Os": 172, - "On": 32, - "Oa": 5.38, - "Od": 0.87, - "pm": 32 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3540, - "g": 1 - } - ], - [ - -37, - { - "n": 6, - "e": 3528 - } - ], - [ - -36, - { - "n": 5, - "e": 3525 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 7, - "e": 3498 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 5, - "e": 3484 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3468 - } - ], - [ - -30, - { - "n": 7, - "e": 3462 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 4, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3368 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3356 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 7.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 5, - "e": 4149 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4173 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 11, - { - "n": 6, - "e": 4200 - } - ], - [ - 10, - { - "n": 6, - "e": 4216 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4236 - } - ], - [ - 7, - { - "n": 6, - "e": 4240 - } - ], - [ - 6, - { - "n": 6, - "e": 4248 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 5, - "e": 4271 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5, - "e": 4289 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ] - ] - } - ], - [ - 1747, - { - "n": "Rico", - "f": "Diego", - "fp": "DL", - "r": 11, - "c": 36, - "s": { - "s": 71, - "n": 14, - "a": 5.07, - "d": 0.94, - "Ss": 66, - "Sn": 13, - "Sa": 5.08, - "Sd": 0.98, - "Os": 101.5, - "On": 21, - "Oa": 4.83, - "Od": 0.93, - "pd": 18, - "pm": 3 - }, - "p": [ - [ - -33, - { - "n": 4.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 5, - "e": 3484 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 5, - "e": 3438 - } - ], - [ - -26, - { - "n": 4, - "e": 3422 - } - ], - [ - -20, - { - "n": 3, - "e": 3364 - } - ], - [ - -19, - { - "n": 4, - "e": 3356 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 14, - { - "n": 4, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 4, - "e": 4191 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 4, - "e": 4236 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 6, - "e": 4265 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 2119, - { - "n": "Butcher", - "f": "Matt", - "fp": "A", - "r": 1, - "c": 36 - } - ], - [ - 2265, - { - "n": "Taylor", - "f": "Kyle", - "fp": "MD", - "r": 1, - "c": 36 - } - ], - [ - 2595, - { - "n": "Brooks", - "f": "David", - "fp": "MO", - "r": 4, - "c": 36, - "s": { - "Og": 4, - "Os": 78.5, - "On": 15, - "Oa": 5.23, - "Od": 1.6, - "pm": 12, - "pa": 3 - }, - "p": [ - [ - -36, - { - "n": 5.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3508 - } - ], - [ - -34, - { - "n": 8, - "e": 3498, - "g": 1 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4, - "e": 3484 - } - ], - [ - -31, - { - "n": 4, - "e": 3468 - } - ], - [ - -30, - { - "n": 5, - "e": 3462 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3448 - } - ], - [ - -24, - { - "n": 7.5, - "e": 3398, - "g": 1 - } - ], - [ - -23, - { - "n": 7, - "e": 3388 - } - ], - [ - -22, - { - "n": 4, - "e": 3383 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3364 - } - ], - [ - -19, - { - "n": 3, - "e": 3356 - } - ], - [ - -18, - { - "n": 8, - "e": 3338, - "g": 2 - } - ] - ] - } - ], - [ - 2843, - { - "n": "Ofoborh", - "f": "Nathan", - "fp": "A", - "r": 1, - "c": 36 - } - ], - [ - 2849, - { - "n": "Travers", - "f": "Mark", - "fp": "G", - "r": 1, - "c": 36, - "s": { - "Os": 11, - "On": 2, - "Oa": 5.5, - "Od": 2.83, - "pg": 2 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3540 - } - ], - [ - -37, - { - "n": 7.5, - "e": 3528 - } - ] - ] - } - ], - [ - 2853, - { - "n": "Dobre", - "f": "Mihai-Alexandru", - "fp": "MO", - "r": 1, - "c": 36 - } - ], - [ - 3223, - { - "n": "Mepham", - "f": "Chris", - "fp": "DC", - "r": 9, - "c": 36, - "s": { - "g": 1, - "s": 33, - "n": 7, - "a": 4.71, - "d": 1.07, - "Ss": 14.5, - "Sn": 3, - "Sa": 4.83, - "Sd": 1.04, - "Og": 1, - "Os": 94.5, - "On": 20, - "Oa": 4.72, - "Od": 0.92, - "pd": 20 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3540 - } - ], - [ - -36, - { - "n": 4, - "e": 3525 - } - ], - [ - -35, - { - "n": 5, - "e": 3508 - } - ], - [ - -34, - { - "n": 6, - "e": 3498 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3468 - } - ], - [ - -30, - { - "n": 6, - "e": 3462 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 3, - "e": 3438 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3422 - } - ], - [ - -24, - { - "n": 5, - "e": 3398 - } - ], - [ - 17, - { - "n": 6, - "e": 4140 - } - ], - [ - 16, - { - "n": 4, - "e": 4149 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4166 - } - ], - [ - 5, - { - "n": 5, - "e": 4265 - } - ], - [ - 4, - { - "n": 3, - "e": 4271 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 1, - { - "n": 6, - "e": 4300, - "g": 1 - } - ] - ] - } - ], - [ - 3500, - { - "n": "Surridge", - "f": "Sam", - "fp": "A", - "r": 2, - "c": 36, - "s": { - "Os": 9, - "On": 2, - "Oa": 4.5, - "pa": 2 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3540 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3438 - } - ] - ] - } - ], - [ - 3646, - { - "n": "Kelly", - "f": "Lloyd", - "fp": "DL", - "r": 1, - "c": 36 - } - ], - [ - 3693, - { - "n": "Stacey", - "f": "Jack", - "fp": "DL", - "r": 4, - "c": 36, - "s": { - "s": 30, - "n": 6, - "a": 5, - "d": 0.55, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Os": 30, - "On": 6, - "Oa": 5, - "Od": 0.55, - "pd": 6 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4140 - } - ], - [ - 14, - { - "n": 4, - "e": 4173 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4240 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 5, - "e": 4265 - } - ] - ] - } - ], - [ - 5987, - { - "n": "Sherring", - "f": "Sam", - "fp": "DC", - "r": 1, - "c": 36 - } - ], - [ - 5989, - { - "n": "Zemura", - "f": "Jordan", - "fp": "DC", - "r": 1, - "c": 36 - } - ], - [ - 5990, - { - "n": "Dennis", - "f": "William", - "fp": "G", - "r": 1, - "c": 36 - } - ], - [ - 5994, - { - "n": "Danjuma Groeneveld", - "f": "Arnaut", - "fp": "MO", - "r": 10, - "c": 36, - "s": { - "s": 43.5, - "n": 9, - "a": 4.83, - "d": 0.56, - "Os": 43.5, - "On": 9, - "Oa": 4.83, - "Od": 0.56, - "pm": 4, - "pa": 5 - }, - "p": [ - [ - 16, - { - "n": 4, - "e": 4149 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 6, - "e": 4173 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4191 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 5, - "e": 4236 - } - ], - [ - 7, - { - "n": 5, - "e": 4240 - } - ] - ] - } - ], - [ - 6147, - { - "n": "Kilkenny", - "f": "Gavin", - "fp": "MO", - "r": 1, - "c": 36 - } - ], - [ - 388, - { - "n": "Bissouma", - "f": "Yves", - "fp": "MD", - "r": 5, - "c": 45, - "s": { - "s": 28, - "n": 6, - "a": 4.67, - "d": 0.52, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Os": 91, - "On": 19, - "Oa": 4.79, - "Od": 0.8, - "pm": 14, - "pa": 5 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4141 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 4, - "e": 4241 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4254 - } - ], - [ - -38, - { - "n": 4, - "e": 3538 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3495 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3479 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3441 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3408 - } - ], - [ - -37, - { - "n": 6, - "e": 3529 - } - ], - [ - -34, - { - "n": 3, - "e": 3498 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3449 - } - ], - [ - -27, - { - "n": 4, - "e": 3432 - } - ], - [ - -26, - { - "n": 5, - "e": 3418 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ] - ] - } - ], - [ - 1056, - { - "n": "Bernardo", - "f": "", - "fp": "DL", - "r": 3, - "c": 45, - "s": { - "s": 13.5, - "n": 3, - "a": 4.5, - "d": 0.87, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 87, - "On": 18, - "Oa": 4.83, - "Od": 0.97, - "pd": 17, - "pm": 1 - }, - "p": [ - [ - 4, - { - "n": 3.5, - "e": 4272 - } - ], - [ - 1, - { - "n": 5, - "e": 4303 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3469 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 6, - "e": 3358 - } - ], - [ - -38, - { - "n": 4, - "e": 3538 - } - ], - [ - -37, - { - "n": 6, - "e": 3529 - } - ], - [ - -36, - { - "n": 6, - "e": 3518 - } - ], - [ - -34, - { - "n": 2.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3449 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3432 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4, - "e": 3338 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ] - ] - } - ], - [ - 1281, - { - "n": "Murray", - "f": "Glenn", - "fp": "A", - "r": 8, - "c": 45, - "s": { - "s": 47, - "n": 11, - "a": 4.27, - "d": 0.26, - "Og": 5, - "Os": 142, - "On": 32, - "Oa": 4.44, - "Od": 0.8, - "pa": 32 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 12, - { - "n": 4, - "e": 4197 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4209 - } - ], - [ - 5, - { - "n": 4, - "e": 4259 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 4, - "e": 4290 - } - ], - [ - -23, - { - "n": 4, - "e": 3393 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3378 - } - ], - [ - -38, - { - "n": 4.5, - "e": 3538, - "g": 1 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3529, - "g": 1 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3518 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3517 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3479 - } - ], - [ - -31, - { - "n": 4, - "e": 3469 - } - ], - [ - -30, - { - "n": 6, - "e": 3461, - "g": 1 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3449 - } - ], - [ - -28, - { - "n": 3, - "e": 3441 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 4, - "e": 3408 - } - ], - [ - -24, - { - "n": 7.5, - "e": 3400, - "g": 2 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 4, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4181 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 4, - "e": 4241 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4272 - } - ], - [ - 1, - { - "n": 4, - "e": 4303 - } - ] - ] - } - ], - [ - 1282, - { - "n": "Knockaert", - "f": "Anthony", - "fp": "MD", - "r": 8, - "c": 45, - "s": { - "Og": 1, - "Os": 71.5, - "On": 15, - "Oa": 4.77, - "Od": 1.05, - "pm": 11, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3518 - } - ], - [ - -34, - { - "n": 2, - "e": 3498 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3461, - "g": 1 - } - ], - [ - -29, - { - "n": 6, - "e": 3449 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3418 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3400 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3378 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ] - ] - } - ], - [ - 1283, - { - "n": "Hemed", - "f": "Tomer", - "fp": "A", - "r": 7, - "c": 45 - } - ], - [ - 1284, - { - "n": "Bruno", - "f": "", - "fp": "DC", - "r": 10, - "c": 45, - "s": { - "Os": 28, - "On": 6, - "Oa": 4.67, - "Od": 0.82, - "pd": 6 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3517 - } - ], - [ - -31, - { - "n": 4, - "e": 3469 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3432 - } - ] - ] - } - ], - [ - 1294, - { - "n": "Stephens", - "f": "Dale", - "fp": "MD", - "r": 18, - "c": 45, - "s": { - "s": 88.5, - "n": 16, - "a": 5.53, - "d": 0.97, - "Og": 1, - "Os": 184, - "On": 34, - "Oa": 5.41, - "Od": 0.96, - "pm": 34 - }, - "p": [ - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - -37, - { - "n": 6, - "e": 3529 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3518 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -34, - { - "n": 3, - "e": 3498 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3469 - } - ], - [ - -30, - { - "n": 7, - "e": 3461 - } - ], - [ - -29, - { - "n": 6, - "e": 3449 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 5, - "e": 3432 - } - ], - [ - -26, - { - "n": 5, - "e": 3418 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3400 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3376, - "g": 1 - } - ], - [ - -20, - { - "n": 6, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - 16, - { - "n": 7, - "e": 4150 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 4, - "e": 4181 - } - ], - [ - 12, - { - "n": 5, - "e": 4197 - } - ], - [ - 10, - { - "n": 6, - "e": 4209 - } - ], - [ - 9, - { - "n": 6, - "e": 4218 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ], - [ - 6, - { - "n": 7, - "e": 4254 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 6, - "e": 4290 - } - ], - [ - 1, - { - "n": 6, - "e": 4303 - } - ] - ] - } - ], - [ - 1296, - { - "n": "Dunk", - "f": "Lewis", - "fp": "DC", - "r": 22, - "c": 45, - "s": { - "g": 2, - "s": 84, - "n": 16, - "a": 5.25, - "d": 1.35, - "Sg": 1, - "Ss": 21, - "Sn": 4, - "Sa": 5.25, - "Sd": 1.04, - "Og": 2, - "Os": 183, - "On": 36, - "Oa": 5.08, - "Od": 1.28, - "pd": 36 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -34, - { - "n": 2.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 7, - "e": 3495 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3469 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3449 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 4, - "e": 3400 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 7, - "e": 3358 - } - ], - [ - -18, - { - "n": 4, - "e": 3338 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 4, - "e": 4150 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4171, - "g": 1 - } - ], - [ - 12, - { - "n": 4, - "e": 4197, - "g": 1 - } - ], - [ - 11, - { - "n": 7, - "e": 4201 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 9, - { - "n": 4, - "e": 4218 - } - ], - [ - 8, - { - "n": 7.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 4, - "e": 4241 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3, - "e": 4272 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 6, - "e": 4290 - } - ], - [ - 1, - { - "n": 7.5, - "e": 4303 - } - ] - ], - "a": { - "m": 22, - "a": 24, - "M": 28, - "n": 7 - } - } - ], - [ - 1303, - { - "n": "Groß", - "f": "Pascal", - "fp": "MO", - "r": 14, - "c": 45, - "s": { - "g": 1, - "s": 88, - "n": 16, - "a": 5.5, - "d": 0.82, - "Ss": 21.5, - "Sn": 4, - "Sa": 5.38, - "Sd": 0.75, - "Og": 3, - "Os": 169.5, - "On": 32, - "Oa": 5.3, - "Od": 0.81, - "pm": 26, - "pa": 6 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 6, - "e": 3518, - "g": 1 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3517 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3495 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3469 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3441 - } - ], - [ - -26, - { - "n": 5, - "e": 3418 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 5, - "e": 3400 - } - ], - [ - -23, - { - "n": 6, - "e": 3393, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3378 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5, - "e": 4171 - } - ], - [ - 12, - { - "n": 6, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 6, - "e": 4209, - "g": 1 - } - ], - [ - 9, - { - "n": 7, - "e": 4218 - } - ], - [ - 8, - { - "n": 7, - "e": 4228 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 5, - "e": 4272 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 6, - "e": 4303 - } - ] - ] - } - ], - [ - 1306, - { - "n": "March", - "f": "Solly", - "fp": "MO", - "r": 7, - "c": 45, - "s": { - "s": 40, - "n": 8, - "a": 5, - "d": 0.89, - "Os": 131, - "On": 26, - "Oa": 5.04, - "Od": 0.65, - "pd": 1, - "pm": 17, - "pa": 8 - }, - "p": [ - [ - -37, - { - "n": 6, - "e": 3529 - } - ], - [ - -36, - { - "n": 6, - "e": 3518 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 5, - "e": 3469 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 5, - "e": 3418 - } - ], - [ - -25, - { - "n": 6, - "e": 3408 - } - ], - [ - -24, - { - "n": 5, - "e": 3400 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 4, - "e": 3378 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 5, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 12, - { - "n": 4, - "e": 4197 - } - ], - [ - 9, - { - "n": 5, - "e": 4218 - } - ], - [ - 5, - { - "n": 6, - "e": 4259 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ], - [ - 1, - { - "n": 6, - "e": 4303 - } - ] - ], - "a": { - "m": 12, - "a": 13, - "M": 21, - "n": 7 - } - } - ], - [ - 1308, - { - "n": "Pröpper", - "f": "Davy", - "fp": "MD", - "r": 14, - "c": 45, - "s": { - "g": 1, - "ao": 1, - "s": 80.5, - "n": 15, - "a": 5.37, - "d": 0.95, - "Sg": 1, - "Sao": 1, - "Ss": 49.5, - "Sn": 9, - "Sa": 5.5, - "Sd": 0.94, - "Og": 2, - "Oao": 1, - "Os": 165.5, - "On": 32, - "Oa": 5.17, - "Od": 0.91, - "pm": 32 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3498 - } - ], - [ - -32, - { - "n": 4, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3469 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 5, - "e": 3449 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3441, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 4, - "e": 3418 - } - ], - [ - -25, - { - "n": 6, - "e": 3408 - } - ], - [ - -24, - { - "n": 5, - "e": 3400 - } - ], - [ - -23, - { - "n": 6, - "e": 3393 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 6, - "e": 3358 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 6, - "e": 4141 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4150, - "g": 1 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 6, - "e": 4171 - } - ], - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4197, - "a": 1 - } - ], - [ - 11, - { - "n": 7, - "e": 4201 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4209 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 4, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 7, - "e": 4303 - } - ] - ] - } - ], - [ - 1312, - { - "n": "Duffy", - "f": "Shane", - "fp": "DC", - "r": 12, - "c": 45, - "s": { - "g": 1, - "s": 49.5, - "n": 10, - "a": 4.95, - "d": 0.83, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 3, - "Os": 151.5, - "On": 30, - "Oa": 5.05, - "Od": 1.09, - "pd": 30 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 7.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -34, - { - "n": 3, - "e": 3498 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3469 - } - ], - [ - -30, - { - "n": 6, - "e": 3461 - } - ], - [ - -29, - { - "n": 7, - "e": 3449 - } - ], - [ - -28, - { - "n": 4, - "e": 3441 - } - ], - [ - -27, - { - "n": 4, - "e": 3432 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3418, - "g": 1 - } - ], - [ - -25, - { - "n": 6, - "e": 3408 - } - ], - [ - -24, - { - "n": 4, - "e": 3400 - } - ], - [ - -23, - { - "n": 6, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 6, - "e": 3376, - "g": 1 - } - ], - [ - -20, - { - "n": 6, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 13, - { - "n": 4, - "e": 4181 - } - ], - [ - 12, - { - "n": 4, - "e": 4197 - } - ], - [ - 11, - { - "n": 6, - "e": 4201, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4218 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 3, - { - "n": 4, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4303 - } - ] - ] - } - ], - [ - 1313, - { - "n": "Izquierdo", - "f": "José", - "fp": "A", - "r": 1, - "c": 45, - "s": { - "Os": 26.5, - "On": 6, - "Oa": 4.42, - "Od": 0.2, - "pm": 1, - "pa": 5 - }, - "p": [ - [ - -36, - { - "n": 4, - "e": 3518 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3517 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3498 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3469 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3449 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3441 - } - ] - ] - } - ], - [ - 1323, - { - "n": "Ryan", - "f": "Mat", - "fp": "G", - "r": 22, - "c": 45, - "s": { - "s": 97.5, - "n": 17, - "a": 5.74, - "d": 0.97, - "Ss": 97.5, - "Sn": 17, - "Sa": 5.74, - "Sd": 0.97, - "Os": 184, - "On": 34, - "Oa": 5.41, - "Od": 1.18, - "pg": 34 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 7.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 7, - "e": 3517 - } - ], - [ - -34, - { - "n": 2.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 6, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3469 - } - ], - [ - -30, - { - "n": 6, - "e": 3461 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3449 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 4, - "e": 3418 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 4, - "e": 3400 - } - ], - [ - -19, - { - "n": 6, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4158 - } - ], - [ - 14, - { - "n": 6, - "e": 4171 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 6, - "e": 4209 - } - ], - [ - 9, - { - "n": 6, - "e": 4218 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 7.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 7, - "e": 4254 - } - ], - [ - 5, - { - "n": 4, - "e": 4259 - } - ], - [ - 4, - { - "n": 4, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4303 - } - ] - ] - } - ], - [ - 1324, - { - "n": "Suttner", - "f": "Markus", - "fp": "DC", - "r": 1, - "c": 45 - } - ], - [ - 1336, - { - "n": "Bong", - "f": "Gaëtan", - "fp": "DL", - "r": 3, - "c": 45, - "s": { - "s": 20, - "n": 4, - "a": 5, - "Os": 64, - "On": 14, - "Oa": 4.57, - "Od": 0.62, - "pd": 14 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -28, - { - "n": 4, - "e": 3441 - } - ], - [ - -27, - { - "n": 4, - "e": 3432 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 5, - "e": 3408 - } - ], - [ - -24, - { - "n": 3, - "e": 3400 - } - ], - [ - -23, - { - "n": 4, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 8, - { - "n": 5, - "e": 4228 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ] - ] - } - ], - [ - 1338, - { - "n": "Kayal", - "f": "Beram", - "fp": "MD", - "r": 6, - "c": 45, - "s": { - "Os": 38, - "On": 8, - "Oa": 4.75, - "Od": 0.53, - "pm": 8 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5, - "e": 3529 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -29, - { - "n": 5, - "e": 3449 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ] - ] - } - ], - [ - 1356, - { - "n": "Molumby", - "f": "Jayson", - "fp": "MD", - "r": 1, - "c": 45 - } - ], - [ - 1361, - { - "n": "Towell", - "f": "Richard", - "fp": "A", - "r": 1, - "c": 45 - } - ], - [ - 1378, - { - "n": "Connolly", - "f": "Aaron", - "fp": "A", - "r": 10, - "c": 45, - "s": { - "g": 2, - "s": 54, - "n": 11, - "a": 4.91, - "d": 1.3, - "Og": 2, - "Os": 54, - "On": 11, - "Oa": 4.91, - "Od": 1.3, - "pa": 11 - }, - "p": [ - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4171 - } - ], - [ - 12, - { - "n": 3, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 6, - "e": 4209 - } - ], - [ - 9, - { - "n": 5, - "e": 4218 - } - ], - [ - 8, - { - "n": 8, - "e": 4228, - "g": 2 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4272 - } - ] - ] - } - ], - [ - 1473, - { - "n": "Mooy", - "f": "Aaron", - "fp": "MO", - "r": 12, - "c": 45, - "s": { - "s": 56.5, - "n": 11, - "a": 5.14, - "d": 1.29, - "Ss": 28, - "Sn": 5, - "Sa": 5.6, - "Sd": 1.34, - "Og": 1, - "Os": 122.5, - "On": 25, - "Oa": 4.9, - "Od": 0.96, - "pm": 20, - "pa": 5 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3533 - } - ], - [ - -35, - { - "n": 5, - "e": 3513 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3506 - } - ], - [ - -33, - { - "n": 4, - "e": 3491, - "g": 1 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3482 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3401 - } - ], - [ - -38, - { - "n": 5.5, - "e": 3545 - } - ], - [ - -31, - { - "n": 6, - "e": 3476 - } - ], - [ - -30, - { - "n": 5, - "e": 3462 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3449 - } - ], - [ - -28, - { - "n": 5, - "e": 3440 - } - ], - [ - -27, - { - "n": 4, - "e": 3436 - } - ], - [ - -26, - { - "n": 4, - "e": 3421 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3411 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 15, - { - "n": 8, - "e": 4158 - } - ], - [ - 14, - { - "n": 5, - "e": 4171 - } - ], - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 7, - "e": 4228 - } - ], - [ - 7, - { - "n": 4, - "e": 4241 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4290 - } - ] - ] - } - ], - [ - 1612, - { - "n": "Andone", - "f": "Florin", - "fp": "A", - "r": 6, - "c": 45, - "s": { - "g": 1, - "s": 13.5, - "n": 3, - "a": 4.5, - "d": 1.8, - "Og": 2, - "Os": 81, - "On": 19, - "Oa": 4.26, - "Od": 0.89, - "pa": 19 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3529 - } - ], - [ - -36, - { - "n": 4, - "e": 3518 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3495 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3469 - } - ], - [ - -29, - { - "n": 6, - "e": 3449, - "g": 1 - } - ], - [ - -27, - { - "n": 3, - "e": 3432 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 5, - "e": 3400 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 4, - "e": 3378 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 4, - "e": 3348 - } - ], - [ - -18, - { - "n": 4, - "e": 3338 - } - ], - [ - 3, - { - "n": 2.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ], - [ - 1, - { - "n": 6, - "e": 4303, - "g": 1 - } - ] - ] - } - ], - [ - 1761, - { - "n": "Montoya", - "f": "Martín", - "fp": "DL", - "r": 9, - "c": 45, - "s": { - "s": 69.5, - "n": 15, - "a": 4.63, - "d": 0.95, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 143.5, - "On": 31, - "Oa": 4.63, - "Od": 0.84, - "pd": 26, - "pm": 5 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3538 - } - ], - [ - -34, - { - "n": 2.5, - "e": 3498 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -29, - { - "n": 5, - "e": 3449 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3441 - } - ], - [ - -26, - { - "n": 4, - "e": 3418 - } - ], - [ - -25, - { - "n": 5, - "e": 3408 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3400 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 4, - "e": 4181 - } - ], - [ - 12, - { - "n": 3, - "e": 4197 - } - ], - [ - 11, - { - "n": 7, - "e": 4201 - } - ], - [ - 10, - { - "n": 4, - "e": 4209 - } - ], - [ - 9, - { - "n": 5, - "e": 4218 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 4, - { - "n": 3, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 5, - "e": 4303 - } - ] - ] - } - ], - [ - 2025, - { - "n": "Schelotto", - "f": "Ezequiel", - "fp": "DL", - "r": 5, - "c": 45, - "s": { - "s": 14.5, - "n": 3, - "a": 4.83, - "d": 0.29, - "Os": 14.5, - "On": 3, - "Oa": 4.83, - "Od": 0.29, - "pd": 3 - }, - "p": [ - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4209 - } - ] - ] - } - ], - [ - 2255, - { - "n": "Locadia", - "f": "Jürgen", - "fp": "A", - "r": 5, - "c": 45, - "s": { - "s": 9.5, - "n": 2, - "a": 4.75, - "d": 1.06, - "Og": 2, - "Os": 80, - "On": 17, - "Oa": 4.71, - "Od": 1.02, - "pm": 7, - "pa": 10 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3538 - } - ], - [ - -34, - { - "n": 3, - "e": 3498 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3461 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3441 - } - ], - [ - -26, - { - "n": 4, - "e": 3418 - } - ], - [ - -25, - { - "n": 5, - "e": 3408 - } - ], - [ - -24, - { - "n": 4, - "e": 3400 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3378 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 7, - "e": 3358, - "g": 1 - } - ], - [ - -19, - { - "n": 7, - "e": 3348, - "g": 1 - } - ], - [ - -18, - { - "n": 4, - "e": 3338 - } - ], - [ - 3, - { - "n": 4, - "e": 4280 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4303 - } - ] - ] - } - ], - [ - 2519, - { - "n": "Balogun", - "f": "Leon", - "fp": "DC", - "r": 1, - "c": 45, - "s": { - "Os": 8.5, - "On": 2, - "Oa": 4.25, - "Od": 0.35, - "pd": 2 - }, - "p": [ - [ - -19, - { - "n": 4.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 4, - "e": 3338 - } - ] - ] - } - ], - [ - 2520, - { - "n": "Button", - "f": "David", - "fp": "G", - "r": 7, - "c": 45, - "s": { - "Os": 23.5, - "On": 4, - "Oa": 5.88, - "Od": 0.85, - "pg": 4 - }, - "p": [ - [ - -23, - { - "n": 5.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 7, - "e": 3358 - } - ] - ] - } - ], - [ - 2525, - { - "n": "Steele", - "f": "Jason", - "fp": "G", - "r": 1, - "c": 45 - } - ], - [ - 2537, - { - "n": "Tau", - "f": "Percy", - "fp": "A", - "r": 11, - "c": 45 - } - ], - [ - 2576, - { - "n": "Jahanbakhsh", - "f": "Alireza", - "fp": "A", - "r": 5, - "c": 45, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Os": 40, - "On": 10, - "Oa": 4, - "Od": 0.67, - "pm": 3, - "pa": 7 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 3, - "e": 3529 - } - ], - [ - -33, - { - "n": 4, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3469 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3449 - } - ], - [ - -27, - { - "n": 3, - "e": 3432 - } - ], - [ - -26, - { - "n": 4, - "e": 3418 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ] - ] - } - ], - [ - 2850, - { - "n": "Gyokeres", - "f": "Viktor", - "fp": "A", - "r": 1, - "c": 45 - } - ], - [ - 2854, - { - "n": "Collar", - "f": "Will", - "fp": "MD", - "r": 1, - "c": 45 - } - ], - [ - 2856, - { - "n": "Barclay", - "f": "Ben", - "fp": "DC", - "r": 1, - "c": 45 - } - ], - [ - 2933, - { - "n": "White", - "f": "Ben", - "fp": "DC", - "r": 1, - "c": 45 - } - ], - [ - 2986, - { - "n": "Burn", - "f": "Dan", - "fp": "DC", - "r": 11, - "c": 45, - "s": { - "s": 78, - "n": 17, - "a": 4.59, - "d": 1.08, - "Ss": 78, - "Sn": 17, - "Sa": 4.59, - "Sd": 1.08, - "Os": 78, - "On": 17, - "Oa": 4.59, - "Od": 1.08, - "pd": 16, - "pm": 1 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 3, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4158 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 12, - { - "n": 3, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4209 - } - ], - [ - 9, - { - "n": 4, - "e": 4218 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ], - [ - 6, - { - "n": 4, - "e": 4254 - } - ], - [ - 5, - { - "n": 4, - "e": 4259 - } - ], - [ - 4, - { - "n": 2.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 4, - "e": 4280 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 6, - "e": 4303 - } - ] - ] - } - ], - [ - 3119, - { - "n": "Sanders", - "f": "Max", - "fp": "MD", - "r": 1, - "c": 45 - } - ], - [ - 3225, - { - "n": "Richards", - "f": "Taylor", - "fp": "MO", - "r": 1, - "c": 45 - } - ], - [ - 3353, - { - "n": "Sánchez", - "f": "Robert", - "fp": "G", - "r": 1, - "c": 45 - } - ], - [ - 3511, - { - "n": "Ostigard", - "f": "Leo", - "fp": "DC", - "r": 1, - "c": 45 - } - ], - [ - 3663, - { - "n": "Baluta", - "f": "Tudor", - "fp": "DC", - "r": 1, - "c": 45 - } - ], - [ - 3665, - { - "n": "Mlakar", - "f": "Jan", - "fp": "A", - "r": 1, - "c": 45 - } - ], - [ - 3686, - { - "n": "Clarke", - "f": "Matthew", - "fp": "DC", - "r": 2, - "c": 45 - } - ], - [ - 3699, - { - "n": "Trossard", - "f": "Leandro", - "fp": "MO", - "r": 10, - "c": 45, - "s": { - "g": 2, - "s": 57, - "n": 11, - "a": 5.18, - "d": 1.23, - "Sg": 1, - "Ss": 42, - "Sn": 8, - "Sa": 5.25, - "Sd": 1.13, - "Og": 2, - "Os": 57, - "On": 11, - "Oa": 5.18, - "Od": 1.23, - "pm": 6, - "pa": 5 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 6, - "e": 4150 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4158 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 4, - "e": 4181 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 7.5, - "e": 4201, - "g": 1 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4209 - } - ], - [ - 4, - { - "n": 3, - "e": 4272 - } - ], - [ - 3, - { - "n": 6, - "e": 4280 - } - ], - [ - 2, - { - "n": 6, - "e": 4290, - "g": 1 - } - ] - ] - } - ], - [ - 5999, - { - "n": "Maupay", - "f": "Neal", - "fp": "A", - "r": 21, - "c": 45, - "s": { - "g": 7, - "s": 89, - "n": 17, - "a": 5.24, - "d": 1.2, - "Sg": 7, - "Ss": 89, - "Sn": 17, - "Sa": 5.24, - "Sd": 1.2, - "Og": 7, - "Os": 89, - "On": 17, - "Oa": 5.24, - "Od": 1.2, - "pa": 17 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4141, - "g": 1 - } - ], - [ - 16, - { - "n": 7, - "e": 4150, - "g": 1 - } - ], - [ - 15, - { - "n": 7, - "e": 4158, - "g": 1 - } - ], - [ - 14, - { - "n": 4, - "e": 4171 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 4, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 6, - "e": 4209, - "g": 1 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 7, - "e": 4228, - "g": 1 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 5, - { - "n": 6, - "e": 4259, - "g": 1 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 4, - "e": 4290 - } - ], - [ - 1, - { - "n": 6, - "e": 4303, - "g": 1 - } - ] - ], - "a": { - "m": 17, - "a": 21, - "M": 25, - "n": 5 - } - } - ], - [ - 6000, - { - "n": "Webster", - "f": "Adam", - "fp": "DC", - "r": 13, - "c": 45, - "s": { - "g": 2, - "ao": 1, - "s": 63.5, - "n": 13, - "a": 4.88, - "d": 1.34, - "Sg": 1, - "Ss": 24, - "Sn": 5, - "Sa": 4.8, - "Sd": 1.64, - "Og": 2, - "Oao": 1, - "Os": 63.5, - "On": 13, - "Oa": 4.88, - "Od": 1.34, - "pd": 13 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4158, - "g": 1 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 3, - "e": 4181 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 4, - "e": 4209, - "a": 1 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4218, - "g": 1 - } - ], - [ - 8, - { - "n": 7, - "e": 4228 - } - ], - [ - 7, - { - "n": 4, - "e": 4241 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3, - "e": 4272 - } - ] - ] - } - ], - [ - 6242, - { - "n": "Roberts", - "f": "Haydon", - "fp": "DC", - "r": 1, - "c": 45 - } - ], - [ - 6243, - { - "n": "Alzate", - "f": "Steven", - "fp": "MO", - "r": 12, - "c": 45, - "s": { - "s": 56, - "n": 11, - "a": 5.09, - "d": 0.66, - "Ss": 19, - "Sn": 4, - "Sa": 4.75, - "Sd": 0.29, - "Os": 56, - "On": 11, - "Oa": 5.09, - "Od": 0.66, - "pd": 2, - "pm": 6, - "pa": 3 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 15, - { - "n": 5, - "e": 4158 - } - ], - [ - 14, - { - "n": 5, - "e": 4171 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 6, - "e": 4201 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4218 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ] - ] - } - ], - [ - 6244, - { - "n": "Davies", - "f": "Jordan", - "fp": "MO", - "r": 1, - "c": 45 - } - ], - [ - 6245, - { - "n": "Cochrane", - "f": "Alex", - "fp": "DL", - "r": 1, - "c": 45 - } - ], - [ - 6284, - { - "n": "Gwargis", - "f": "Peter", - "fp": "MO", - "r": 1, - "c": 45 - } - ], - [ - 6286, - { - "n": "Longman", - "f": "Ryan", - "fp": "MO", - "r": 1, - "c": 45 - } - ], - [ - 6287, - { - "n": "Archie Davies", - "f": "", - "fp": "DL", - "r": 1, - "c": 45 - } - ], - [ - 717, - { - "n": "Defour", - "f": "Steven", - "fp": "MD", - "r": 1, - "c": 23 - } - ], - [ - 718, - { - "n": "Rodriguez", - "f": "Jay", - "fp": "A", - "r": 10, - "c": 23, - "s": { - "g": 2, - "s": 73.5, - "n": 17, - "a": 4.32, - "d": 0.92, - "Sg": 2, - "Ss": 47.5, - "Sn": 11, - "Sa": 4.32, - "Sd": 1.15, - "Og": 2, - "Os": 73.5, - "On": 17, - "Oa": 4.32, - "Od": 0.92, - "pa": 17 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 2.5, - "e": 4155 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4168 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4186 - } - ], - [ - 12, - { - "n": 4, - "e": 4188 - } - ], - [ - 11, - { - "n": 2.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 6, - "e": 4210, - "g": 1 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4250 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4284 - } - ], - [ - 1, - { - "n": 4, - "e": 4301 - } - ], - [ - 7, - { - "n": 6, - "e": 4239, - "g": 1 - } - ], - [ - 5, - { - "n": 4, - "e": 4259 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4288 - } - ] - ] - } - ], - [ - 722, - { - "n": "Crouch", - "f": "Peter", - "fp": "A", - "r": 7, - "c": 23, - "s": { - "Os": 23, - "On": 5, - "Oa": 4.6, - "Od": 0.22, - "pa": 5 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3539 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 5, - "e": 3450 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3444 - } - ] - ] - } - ], - [ - 742, - { - "n": "Cork", - "f": "Jack", - "fp": "MD", - "r": 12, - "c": 23, - "s": { - "s": 71.5, - "n": 15, - "a": 4.77, - "d": 1.24, - "Ss": 36.5, - "Sn": 8, - "Sa": 4.56, - "Sd": 1.43, - "Os": 179, - "On": 36, - "Oa": 4.97, - "Od": 0.99, - "pm": 36 - }, - "p": [ - [ - -19, - { - "n": 4, - "e": 3349 - } - ], - [ - -38, - { - "n": 4, - "e": 3539 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3499 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 5, - "e": 3480 - } - ], - [ - -31, - { - "n": 6, - "e": 3470 - } - ], - [ - -30, - { - "n": 4, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3450 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 6, - "e": 3418 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3396 - } - ], - [ - -22, - { - "n": 6, - "e": 3379 - } - ], - [ - -21, - { - "n": 6, - "e": 3373 - } - ], - [ - -20, - { - "n": 6, - "e": 3359 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 16, - { - "n": 3, - "e": 4155 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4168 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4186 - } - ], - [ - 12, - { - "n": 7, - "e": 4188 - } - ], - [ - 11, - { - "n": 3, - "e": 4205 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4210 - } - ], - [ - 7, - { - "n": 4, - "e": 4239 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 4, - "e": 4259 - } - ], - [ - 4, - { - "n": 4, - "e": 4275 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4288 - } - ], - [ - 1, - { - "n": 6, - "e": 4301 - } - ] - ] - } - ], - [ - 763, - { - "n": "Gibson", - "f": "Ben", - "fp": "DC", - "r": 1, - "c": 23, - "s": { - "Og": 1, - "Os": 5, - "On": 1, - "Oa": 5, - "pd": 1 - }, - "p": [ - [ - -19, - { - "n": 5, - "e": 3349, - "g": 1 - } - ] - ] - } - ], - [ - 764, - { - "n": "Lowton", - "f": "Matthew", - "fp": "DL", - "r": 9, - "c": 23, - "s": { - "s": 55, - "n": 12, - "a": 4.58, - "d": 1.31, - "Os": 97, - "On": 21, - "Oa": 4.62, - "Od": 1.12, - "pd": 21 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 4, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3499 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3488 - } - ], - [ - -21, - { - "n": 5, - "e": 3373 - } - ], - [ - -19, - { - "n": 3, - "e": 3349 - } - ], - [ - -18, - { - "n": 5, - "e": 3339 - } - ], - [ - 16, - { - "n": 2.5, - "e": 4155 - } - ], - [ - 11, - { - "n": 3, - "e": 4205 - } - ], - [ - 10, - { - "n": 3, - "e": 4210 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 6, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 6, - "e": 4301 - } - ] - ] - } - ], - [ - 765, - { - "n": "Barnes", - "f": "Ashley", - "fp": "A", - "r": 22, - "c": 23, - "s": { - "g": 6, - "s": 75, - "n": 15, - "a": 5, - "d": 1.56, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 16, - "Oao": 1, - "Os": 187, - "On": 36, - "Oa": 5.19, - "Od": 1.33, - "pa": 36 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3539, - "g": 1 - } - ], - [ - -37, - { - "n": 3, - "e": 3532 - } - ], - [ - -36, - { - "n": 4, - "e": 3519 - } - ], - [ - -35, - { - "n": 7, - "e": 3511, - "g": 1 - } - ], - [ - -34, - { - "n": 5, - "e": 3499 - } - ], - [ - -33, - { - "n": 6, - "e": 3488, - "g": 1, - "a": 1 - } - ], - [ - -32, - { - "n": 5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 4, - "e": 3464 - } - ], - [ - -29, - { - "n": 6, - "e": 3450, - "g": 1 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6, - "e": 3430, - "g": 1 - } - ], - [ - -26, - { - "n": 7, - "e": 3418, - "g": 1 - } - ], - [ - -25, - { - "n": 6, - "e": 3409, - "g": 1 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3403, - "g": 1 - } - ], - [ - -23, - { - "n": 4, - "e": 3396 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3379 - } - ], - [ - -21, - { - "n": 6, - "e": 3373, - "g": 1 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3349 - } - ], - [ - -18, - { - "n": 6, - "e": 3339, - "g": 1 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4186, - "g": 1 - } - ], - [ - 12, - { - "n": 7, - "e": 4188, - "g": 1 - } - ], - [ - 11, - { - "n": 2.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 4, - "e": 4210 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 4, - "e": 4259 - } - ], - [ - 4, - { - "n": 3, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4284, - "g": 1 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4288, - "g": 1 - } - ], - [ - 1, - { - "n": 8, - "e": 4301, - "g": 2 - } - ] - ], - "a": { - "m": 27, - "a": 31, - "M": 52, - "n": 15 - } - } - ], - [ - 767, - { - "n": "Mee", - "f": "Ben", - "fp": "DC", - "r": 10, - "c": 23, - "s": { - "s": 81, - "n": 17, - "a": 4.76, - "d": 1.34, - "Ss": 81, - "Sn": 17, - "Sa": 4.76, - "Sd": 1.34, - "Oao": 1, - "Os": 185.5, - "On": 38, - "Oa": 4.88, - "Od": 1.22, - "pd": 38 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 4, - "e": 3532, - "a": 1 - } - ], - [ - -36, - { - "n": 6, - "e": 3519 - } - ], - [ - -35, - { - "n": 6, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3499 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 6, - "e": 3480 - } - ], - [ - -31, - { - "n": 4, - "e": 3470 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 6, - "e": 3403 - } - ], - [ - -23, - { - "n": 6, - "e": 3396 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3379 - } - ], - [ - -21, - { - "n": 6, - "e": 3373 - } - ], - [ - -20, - { - "n": 6, - "e": 3359 - } - ], - [ - -19, - { - "n": 2, - "e": 3349 - } - ], - [ - -18, - { - "n": 4, - "e": 3339 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 3, - "e": 4155 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 3, - "e": 4168 - } - ], - [ - 13, - { - "n": 6, - "e": 4186 - } - ], - [ - 12, - { - "n": 7, - "e": 4188 - } - ], - [ - 11, - { - "n": 3, - "e": 4205 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4210 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 8, - { - "n": 6, - "e": 4229 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 6, - "e": 4250 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 6, - "e": 4301 - } - ] - ] - } - ], - [ - 769, - { - "n": "Ward", - "f": "Stephen", - "fp": "DC", - "r": 1, - "c": 23 - } - ], - [ - 803, - { - "n": "Vokes", - "f": "Sam", - "fp": "A", - "r": 10, - "c": 23, - "s": { - "Os": 16, - "On": 4, - "Oa": 4, - "Od": 1, - "pa": 4 - }, - "p": [ - [ - -22, - { - "n": 4.5, - "e": 3379 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 2.5, - "e": 3349 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ] - ] - } - ], - [ - 811, - { - "n": "Pieters", - "f": "Erik", - "fp": "DL", - "r": 10, - "c": 23, - "s": { - "s": 66.5, - "n": 15, - "a": 4.43, - "d": 1.24, - "Ss": 15.5, - "Sn": 4, - "Sa": 3.88, - "Sd": 0.85, - "Og": 1, - "Os": 144.5, - "On": 30, - "Oa": 4.82, - "Od": 1.24, - "pd": 29, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3102 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3096 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3082 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3076 - } - ], - [ - -34, - { - "n": 6, - "e": 3062 - } - ], - [ - -33, - { - "n": 3, - "e": 3055 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3043 - } - ], - [ - -31, - { - "n": 5, - "e": 3032 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3022 - } - ], - [ - -29, - { - "n": 5, - "e": 3012 - } - ], - [ - -28, - { - "n": 7.5, - "e": 3002, - "g": 1 - } - ], - [ - -26, - { - "n": 5, - "e": 2982 - } - ], - [ - -25, - { - "n": 6, - "e": 2977 - } - ], - [ - -27, - { - "n": 4, - "e": 3001 - } - ], - [ - -24, - { - "n": 5, - "e": 2962 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 16, - { - "n": 3, - "e": 4155 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4168 - } - ], - [ - 11, - { - "n": 2.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 3, - "e": 4210 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 7, - { - "n": 5, - "e": 4239 - } - ], - [ - 6, - { - "n": 6, - "e": 4250 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 7, - "e": 4301 - } - ] - ] - } - ], - [ - 813, - { - "n": "Walters", - "f": "Jonathan", - "fp": "A", - "r": 1, - "c": 23 - } - ], - [ - 816, - { - "n": "Drinkwater", - "f": "Daniel", - "fp": "MD", - "r": 6, - "c": 23, - "s": { - "s": 4, - "n": 1, - "a": 4, - "Os": 4, - "On": 1, - "Oa": 4, - "pm": 1 - }, - "p": [ - [ - 15, - { - "n": 4, - "e": 4159 - } - ] - ] - } - ], - [ - 846, - { - "n": "Johann Gudmundsson", - "f": "", - "fp": "MO", - "r": 7, - "c": 23, - "s": { - "g": 1, - "s": 23.5, - "n": 4, - "a": 5.88, - "d": 1.18, - "Og": 2, - "Os": 101, - "On": 19, - "Oa": 5.32, - "Od": 0.82, - "pm": 19 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3539 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 7, - "e": 3464, - "g": 1 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3430 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3403 - } - ], - [ - -21, - { - "n": 5, - "e": 3373 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - 8, - { - "n": 6, - "e": 4229 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 7.5, - "e": 4301, - "g": 1 - } - ] - ] - } - ], - [ - 897, - { - "n": "Brady", - "f": "Robbie", - "fp": "MD", - "r": 8, - "c": 23, - "s": { - "g": 1, - "s": 44.5, - "n": 9, - "a": 4.94, - "d": 0.88, - "Og": 1, - "Os": 83.5, - "On": 17, - "Oa": 4.91, - "Od": 0.67, - "pm": 17 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 5, - "e": 3430 - } - ], - [ - -25, - { - "n": 5, - "e": 3409 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3373 - } - ], - [ - 16, - { - "n": 3, - "e": 4155 - } - ], - [ - 15, - { - "n": 6, - "e": 4159, - "g": 1 - } - ], - [ - 14, - { - "n": 5, - "e": 4168 - } - ], - [ - 12, - { - "n": 5, - "e": 4188 - } - ], - [ - 11, - { - "n": 5, - "e": 4205 - } - ], - [ - 10, - { - "n": 6, - "e": 4210 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4223 - } - ], - [ - 7, - { - "n": 5, - "e": 4239 - } - ], - [ - 6, - { - "n": 5, - "e": 4250 - } - ] - ] - } - ], - [ - 899, - { - "n": "Lennon", - "f": "Aaron", - "fp": "MO", - "r": 6, - "c": 23, - "s": { - "s": 52.5, - "n": 11, - "a": 4.77, - "d": 0.41, - "Os": 52.5, - "On": 11, - "Oa": 4.77, - "Od": 0.41, - "pm": 11 - }, - "p": [ - [ - 16, - { - "n": 5, - "e": 4155 - } - ], - [ - 15, - { - "n": 4, - "e": 4159 - } - ], - [ - 14, - { - "n": 5, - "e": 4168 - } - ], - [ - 9, - { - "n": 5, - "e": 4223 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 6, - { - "n": 5, - "e": 4250 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 4, - "e": 4275 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 5, - "e": 4301 - } - ] - ] - } - ], - [ - 932, - { - "n": "Bardsley", - "f": "Phil", - "fp": "DL", - "r": 9, - "c": 23, - "s": { - "s": 27, - "n": 5, - "a": 5.4, - "d": 1.43, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Oao": 1, - "Os": 91, - "On": 19, - "Oa": 4.79, - "Od": 1.13, - "pd": 19 - }, - "p": [ - [ - -32, - { - "n": 5.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4, - "e": 3470 - } - ], - [ - -30, - { - "n": 3, - "e": 3464 - } - ], - [ - -29, - { - "n": 2.5, - "e": 3450, - "a": 1 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 5, - "e": 3430 - } - ], - [ - -26, - { - "n": 5, - "e": 3418 - } - ], - [ - -25, - { - "n": 5, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3379 - } - ], - [ - -21, - { - "n": 5, - "e": 3373 - } - ], - [ - -20, - { - "n": 6, - "e": 3359 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4139 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 7, - "e": 4186 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4188 - } - ] - ] - } - ], - [ - 951, - { - "n": "Tarkowski", - "f": "James", - "fp": "DC", - "r": 14, - "c": 23, - "s": { - "g": 1, - "s": 85.5, - "n": 17, - "a": 5.03, - "d": 1.49, - "Sg": 1, - "Ss": 85.5, - "Sn": 17, - "Sa": 5.03, - "Sd": 1.49, - "Og": 1, - "Os": 190, - "On": 38, - "Oa": 5, - "Od": 1.38, - "pd": 38 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3539 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3499 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4, - "e": 3470 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 3, - "e": 3450 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 6, - "e": 3418 - } - ], - [ - -25, - { - "n": 6, - "e": 3409 - } - ], - [ - -24, - { - "n": 6, - "e": 3403 - } - ], - [ - -23, - { - "n": 6, - "e": 3396 - } - ], - [ - -22, - { - "n": 6, - "e": 3379 - } - ], - [ - -21, - { - "n": 6, - "e": 3373 - } - ], - [ - -20, - { - "n": 6, - "e": 3359 - } - ], - [ - -19, - { - "n": 2, - "e": 3349 - } - ], - [ - -18, - { - "n": 3.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 6, - "e": 4139 - } - ], - [ - 16, - { - "n": 3, - "e": 4155 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 7.5, - "e": 4186, - "g": 1 - } - ], - [ - 12, - { - "n": 7.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 3, - "e": 4205 - } - ], - [ - 10, - { - "n": 4, - "e": 4210 - } - ], - [ - 9, - { - "n": 5, - "e": 4223 - } - ], - [ - 8, - { - "n": 7, - "e": 4229 - } - ], - [ - 7, - { - "n": 5, - "e": 4239 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4284 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4288 - } - ], - [ - 1, - { - "n": 6, - "e": 4301 - } - ] - ] - } - ], - [ - 997, - { - "n": "Hendrick", - "f": "Jeff", - "fp": "MO", - "r": 14, - "c": 23, - "s": { - "g": 2, - "s": 70.5, - "n": 14, - "a": 5.04, - "d": 1.25, - "Sg": 2, - "Ss": 65.5, - "Sn": 13, - "Sa": 5.04, - "Sd": 1.3, - "Og": 3, - "Os": 163, - "On": 33, - "Oa": 4.94, - "Od": 0.98, - "pm": 32, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 6, - "e": 3511, - "g": 1 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3499 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 5, - "e": 3480 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 4, - "e": 3444 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 6, - "e": 3418 - } - ], - [ - -25, - { - "n": 4, - "e": 3409 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3403 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3396 - } - ], - [ - -22, - { - "n": 6.5, - "e": 3379 - } - ], - [ - -21, - { - "n": 5, - "e": 3373 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 16, - { - "n": 3, - "e": 4155 - } - ], - [ - 15, - { - "n": 4, - "e": 4159 - } - ], - [ - 14, - { - "n": 5, - "e": 4168 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4186 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 4, - "e": 4210 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 8, - { - "n": 7, - "e": 4229, - "g": 1 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 7, - "e": 4259, - "g": 1 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ] - ] - } - ], - [ - 1045, - { - "n": "Pope", - "f": "Nick", - "fp": "G", - "r": 13, - "c": 23, - "s": { - "s": 90, - "n": 17, - "a": 5.29, - "d": 1.28, - "Ss": 90, - "Sn": 17, - "Sa": 5.29, - "Sd": 1.28, - "Os": 90, - "On": 17, - "Oa": 5.29, - "Od": 1.28, - "pg": 17 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4139 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4155 - } - ], - [ - 15, - { - "n": 5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4168 - } - ], - [ - 13, - { - "n": 7, - "e": 4186 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 4, - "e": 4205 - } - ], - [ - 10, - { - "n": 4, - "e": 4210 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 8, - { - "n": 6, - "e": 4229 - } - ], - [ - 7, - { - "n": 4, - "e": 4239 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 4, - "e": 4275 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 7, - "e": 4288 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4301 - } - ] - ], - "a": { - "m": 17, - "a": 20, - "M": 32, - "n": 10 - } - } - ], - [ - 1054, - { - "n": "Westwood", - "f": "Ashley", - "fp": "MD", - "r": 15, - "c": 23, - "s": { - "s": 74.5, - "n": 14, - "a": 5.32, - "d": 1.2, - "Ss": 6.5, - "Sn": 1, - "Sa": 6.5, - "Og": 2, - "Os": 186, - "On": 34, - "Oa": 5.47, - "Od": 1.14, - "pm": 34 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3499 - } - ], - [ - -33, - { - "n": 8, - "e": 3488, - "g": 1 - } - ], - [ - -32, - { - "n": 6, - "e": 3480 - } - ], - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -30, - { - "n": 5, - "e": 3464, - "g": 1 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3450 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 6, - "e": 3403 - } - ], - [ - -23, - { - "n": 6, - "e": 3396 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3379 - } - ], - [ - -21, - { - "n": 7, - "e": 3373 - } - ], - [ - -20, - { - "n": 7.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3349 - } - ], - [ - -18, - { - "n": 4, - "e": 3339 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4139 - } - ], - [ - 13, - { - "n": 7, - "e": 4186 - } - ], - [ - 12, - { - "n": 6, - "e": 4188 - } - ], - [ - 11, - { - "n": 4, - "e": 4205 - } - ], - [ - 10, - { - "n": 4, - "e": 4210 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 7, - "e": 4229 - } - ], - [ - 7, - { - "n": 4, - "e": 4239 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 3.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4288 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4301 - } - ] - ] - } - ], - [ - 1074, - { - "n": "Long", - "f": "Kevin", - "fp": "DC", - "r": 1, - "c": 23, - "s": { - "Os": 3.5, - "On": 1, - "Oa": 3.5, - "pd": 1 - }, - "p": [ - [ - -18, - { - "n": 3.5, - "e": 3339 - } - ] - ] - } - ], - [ - 1297, - { - "n": "Taylor", - "f": "Charlie", - "fp": "DL", - "r": 8, - "c": 23, - "s": { - "s": 28, - "n": 5, - "a": 5.6, - "d": 0.65, - "Os": 130.5, - "On": 26, - "Oa": 5.02, - "Od": 0.81, - "pd": 26 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3539 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3499 - } - ], - [ - -33, - { - "n": 5, - "e": 3488 - } - ], - [ - -32, - { - "n": 6, - "e": 3480 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3450 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 5, - "e": 3430 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 5, - "e": 3409 - } - ], - [ - -24, - { - "n": 6, - "e": 3403 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3379 - } - ], - [ - -21, - { - "n": 5, - "e": 3373 - } - ], - [ - -20, - { - "n": 6, - "e": 3359 - } - ], - [ - -19, - { - "n": 3, - "e": 3349 - } - ], - [ - -18, - { - "n": 4, - "e": 3339 - } - ], - [ - 14, - { - "n": 5, - "e": 4168 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4186 - } - ], - [ - 12, - { - "n": 6, - "e": 4188 - } - ], - [ - 11, - { - "n": 5, - "e": 4205 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4229 - } - ] - ] - } - ], - [ - 1299, - { - "n": "Wood", - "f": "Chris", - "fp": "A", - "r": 19, - "c": 23, - "s": { - "g": 7, - "ao": 1, - "s": 72, - "n": 15, - "a": 4.8, - "d": 1.68, - "Sg": 3, - "Ss": 29.5, - "Sn": 6, - "Sa": 4.92, - "Sd": 1.83, - "Og": 16, - "Oao": 1, - "Os": 180, - "On": 36, - "Oa": 5, - "Od": 1.6, - "pa": 36 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3539 - } - ], - [ - -37, - { - "n": 4, - "e": 3532 - } - ], - [ - -36, - { - "n": 3, - "e": 3519 - } - ], - [ - -35, - { - "n": 5, - "e": 3511 - } - ], - [ - -34, - { - "n": 8, - "e": 3499, - "g": 2 - } - ], - [ - -33, - { - "n": 7.5, - "e": 3488, - "g": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 4, - "e": 3464 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3430, - "g": 1 - } - ], - [ - -26, - { - "n": 8, - "e": 3418, - "g": 2 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3403, - "g": 1 - } - ], - [ - -23, - { - "n": 5, - "e": 3396 - } - ], - [ - -22, - { - "n": 4, - "e": 3379 - } - ], - [ - -21, - { - "n": 6, - "e": 3373, - "g": 1 - } - ], - [ - -20, - { - "n": 7, - "e": 3359, - "g": 1 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3349 - } - ], - [ - -18, - { - "n": 3.5, - "e": 3339 - } - ], - [ - 17, - { - "n": 6, - "e": 4139, - "g": 1 - } - ], - [ - 16, - { - "n": 2.5, - "e": 4155 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4168 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4186, - "g": 1 - } - ], - [ - 12, - { - "n": 7, - "e": 4188, - "g": 1 - } - ], - [ - 9, - { - "n": 6, - "e": 4223, - "g": 1 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 6, - "e": 4239, - "g": 1 - } - ], - [ - 6, - { - "n": 8, - "e": 4250, - "g": 2 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4259 - } - ], - [ - 4, - { - "n": 2.5, - "e": 4275, - "a": 1 - } - ], - [ - 3, - { - "n": 4, - "e": 4284 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4288 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4301 - } - ] - ], - "a": { - "m": 21, - "a": 25, - "M": 30, - "n": 6 - } - } - ], - [ - 1320, - { - "n": "Hart", - "f": "Joe", - "fp": "G", - "r": 7, - "c": 23, - "s": { - "Os": 7.5, - "On": 2, - "Oa": 3.75, - "Od": 1.06, - "pg": 2 - }, - "p": [ - [ - -19, - { - "n": 3, - "e": 3349 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3339 - } - ] - ] - } - ], - [ - 1345, - { - "n": "Legzdins", - "f": "Adam", - "fp": "G", - "r": 1, - "c": 23 - } - ], - [ - 1348, - { - "n": "Agyei", - "f": "Daniel", - "fp": "A", - "r": 1, - "c": 23 - } - ], - [ - 1478, - { - "n": "Wells", - "f": "Nahki", - "fp": "A", - "r": 6, - "c": 23 - } - ], - [ - 2061, - { - "n": "Lindegaard", - "f": "Anders", - "fp": "G", - "r": 1, - "c": 23 - } - ], - [ - 2200, - { - "n": "O'Neill", - "f": "Aiden", - "fp": "MD", - "r": 7, - "c": 23 - } - ], - [ - 2497, - { - "n": "Vydra", - "f": "Matej", - "fp": "A", - "r": 4, - "c": 23, - "s": { - "s": 22, - "n": 5, - "a": 4.4, - "d": 0.42, - "Os": 48.5, - "On": 11, - "Oa": 4.41, - "Od": 0.49, - "pa": 11 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3519 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3464 - } - ], - [ - -28, - { - "n": 4, - "e": 3444 - } - ], - [ - -18, - { - "n": 4, - "e": 3339 - } - ], - [ - 16, - { - "n": 4, - "e": 4155 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4210 - } - ], - [ - 9, - { - "n": 4, - "e": 4223 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ] - ] - } - ], - [ - 2817, - { - "n": "McNeil", - "f": "Dwight", - "fp": "A", - "r": 17, - "c": 23, - "s": { - "g": 1, - "s": 99.5, - "n": 17, - "a": 5.85, - "d": 1.18, - "Sg": 1, - "Ss": 99.5, - "Sn": 17, - "Sa": 5.85, - "Sd": 1.18, - "Og": 4, - "Os": 210, - "On": 37, - "Oa": 5.68, - "Od": 1.13, - "pm": 35, - "pa": 2 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3539 - } - ], - [ - -37, - { - "n": 4, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 7, - "e": 3499 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3488 - } - ], - [ - -32, - { - "n": 7, - "e": 3480, - "g": 1 - } - ], - [ - -31, - { - "n": 7, - "e": 3470, - "g": 1 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3450 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6, - "e": 3430 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3418 - } - ], - [ - -25, - { - "n": 6, - "e": 3409 - } - ], - [ - -24, - { - "n": 6, - "e": 3403 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3396 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3379 - } - ], - [ - -21, - { - "n": 6, - "e": 3373 - } - ], - [ - -20, - { - "n": 7, - "e": 3359, - "g": 1 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3349 - } - ], - [ - 17, - { - "n": 7, - "e": 4139 - } - ], - [ - 16, - { - "n": 4, - "e": 4155 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 6, - "e": 4168 - } - ], - [ - 13, - { - "n": 6, - "e": 4186 - } - ], - [ - 12, - { - "n": 8, - "e": 4188 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 7, - "e": 4210, - "g": 1 - } - ], - [ - 9, - { - "n": 6, - "e": 4223 - } - ], - [ - 8, - { - "n": 6, - "e": 4229 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4239 - } - ], - [ - 6, - { - "n": 7, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4259 - } - ], - [ - 4, - { - "n": 5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4284 - } - ], - [ - 2, - { - "n": 6, - "e": 4288 - } - ], - [ - 1, - { - "n": 7, - "e": 4301 - } - ] - ], - "a": { - "m": 20, - "a": 26, - "M": 39, - "n": 6 - } - } - ], - [ - 2972, - { - "n": "Ali Koiki", - "f": "", - "fp": "DC", - "r": 1, - "c": 23 - } - ], - [ - 2984, - { - "n": "Massanka", - "f": "Ntumba", - "fp": "MD", - "r": 2, - "c": 23 - } - ], - [ - 3351, - { - "n": "Benson", - "f": "Josh", - "fp": "MD", - "r": 1, - "c": 23 - } - ], - [ - 3673, - { - "n": "Driscoll-Glennon", - "f": "Anthony", - "fp": "DC", - "r": 1, - "c": 23 - } - ], - [ - 5995, - { - "n": "Peacock-Farrell", - "f": "Bailey", - "fp": "G", - "r": 1, - "c": 23 - } - ], - [ - 6120, - { - "n": "Jimmy Dunne", - "f": "", - "fp": "DC", - "r": 2, - "c": 23 - } - ], - [ - 6240, - { - "n": "Richardson", - "f": "Lewis", - "fp": "A", - "r": 1, - "c": 23 - } - ], - [ - 419, - { - "n": "Jorginho", - "f": "", - "fp": "MD", - "r": 21, - "c": 25, - "s": { - "g": 1, - "s": 84, - "n": 15, - "a": 5.6, - "d": 1.43, - "Ss": 6, - "Sn": 1, - "Sa": 6, - "Og": 2, - "Os": 199, - "On": 36, - "Oa": 5.53, - "Od": 1.24, - "pm": 36 - }, - "p": [ - [ - 14, - { - "n": 3.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 11, - { - "n": 7, - "e": 4206 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 7, - "e": 4233 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 7, - "e": 4263 - } - ], - [ - 4, - { - "n": 6, - "e": 4269 - } - ], - [ - 3, - { - "n": 6, - "e": 4279 - } - ], - [ - 2, - { - "n": 4, - "e": 4296 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4307 - } - ], - [ - -38, - { - "n": 6, - "e": 3542 - } - ], - [ - -37, - { - "n": 7, - "e": 3531 - } - ], - [ - -36, - { - "n": 6, - "e": 3524 - } - ], - [ - -35, - { - "n": 5, - "e": 3511 - } - ], - [ - -34, - { - "n": 4, - "e": 3503 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3489 - } - ], - [ - -32, - { - "n": 5, - "e": 3481 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 4, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3452, - "g": 1 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 7, - "e": 3432 - } - ], - [ - -26, - { - "n": 3, - "e": 3423 - } - ], - [ - -25, - { - "n": 7, - "e": 3411 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -22, - { - "n": 6, - "e": 3381 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 6, - "e": 3360 - } - ], - [ - -19, - { - "n": 6, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ], - [ - 17, - { - "n": 6, - "e": 4140 - } - ], - [ - 15, - { - "n": 5, - "e": 4164 - } - ], - [ - 10, - { - "n": 6, - "e": 4210 - } - ], - [ - 7, - { - "n": 8, - "e": 4241, - "g": 1 - } - ] - ] - } - ], - [ - 601, - { - "n": "Giroud", - "f": "Olivier", - "fp": "A", - "r": 5, - "c": 25, - "s": { - "s": 21, - "n": 5, - "a": 4.2, - "d": 0.57, - "Og": 1, - "Os": 80.5, - "On": 18, - "Oa": 4.47, - "Od": 0.63, - "pa": 18 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -35, - { - "n": 4, - "e": 3511 - } - ], - [ - -33, - { - "n": 5, - "e": 3489 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3481 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3432, - "g": 1 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3381 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3360 - } - ], - [ - -18, - { - "n": 4, - "e": 3341 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4169 - } - ], - [ - 10, - { - "n": 4, - "e": 4210 - } - ], - [ - 3, - { - "n": 4, - "e": 4279 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ] - } - ], - [ - 602, - { - "n": "Kanté", - "f": "N'Golo", - "fp": "MD", - "r": 23, - "c": 25, - "s": { - "g": 3, - "s": 56, - "n": 10, - "a": 5.6, - "d": 1.07, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Og": 5, - "Os": 156, - "On": 29, - "Oa": 5.38, - "Od": 1.06, - "pm": 29 - }, - "p": [ - [ - 16, - { - "n": 5, - "e": 4151 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4189 - } - ], - [ - -37, - { - "n": 5, - "e": 3531 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -35, - { - "n": 6, - "e": 3511, - "g": 1 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 5, - "e": 3489 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3452 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 7.5, - "e": 3411 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 4, - "e": 3389 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3381 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 7.5, - "e": 3360, - "g": 1 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 15, - { - "n": 6, - "e": 4164 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 7, - "e": 4184, - "g": 1 - } - ], - [ - 8, - { - "n": 7, - "e": 4233, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4257, - "g": 1 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ] - } - ], - [ - 607, - { - "n": "Pedro", - "f": "", - "fp": "A", - "r": 5, - "c": 25, - "s": { - "s": 20, - "n": 4, - "a": 5, - "Og": 2, - "Os": 101, - "On": 20, - "Oa": 5.05, - "Od": 1, - "pm": 3, - "pa": 17 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 7, - "e": 3531 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3489 - } - ], - [ - -32, - { - "n": 4, - "e": 3481 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3452 - } - ], - [ - -28, - { - "n": 7, - "e": 3443, - "g": 1 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3423 - } - ], - [ - -24, - { - "n": 5, - "e": 3398 - } - ], - [ - -23, - { - "n": 4, - "e": 3389 - } - ], - [ - -22, - { - "n": 7, - "e": 3381, - "g": 1 - } - ], - [ - -19, - { - "n": 4, - "e": 3357 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3341 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 5, - "e": 4307 - } - ] - ] - } - ], - [ - 619, - { - "n": "Willian", - "f": "", - "fp": "A", - "r": 18, - "c": 25, - "s": { - "g": 2, - "s": 91.5, - "n": 16, - "a": 5.72, - "d": 1.08, - "Sg": 2, - "Ss": 91.5, - "Sn": 16, - "Sa": 5.72, - "Sd": 1.08, - "Og": 3, - "Os": 176.5, - "On": 32, - "Oa": 5.52, - "Od": 0.95, - "pm": 7, - "pa": 25 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3481 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3452 - } - ], - [ - -28, - { - "n": 5, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3432 - } - ], - [ - -25, - { - "n": 7, - "e": 3411 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -22, - { - "n": 6, - "e": 3381, - "g": 1 - } - ], - [ - -21, - { - "n": 5, - "e": 3371 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 6, - "e": 3357 - } - ], - [ - -18, - { - "n": 4, - "e": 3341 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 5, - "e": 4151 - } - ], - [ - 15, - { - "n": 7, - "e": 4164 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4184 - } - ], - [ - 12, - { - "n": 7.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 7, - "e": 4210, - "g": 1 - } - ], - [ - 9, - { - "n": 6, - "e": 4220 - } - ], - [ - 8, - { - "n": 7, - "e": 4233 - } - ], - [ - 7, - { - "n": 7, - "e": 4241, - "g": 1 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 6, - "e": 4263 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4296 - } - ] - ], - "a": { - "m": 18, - "a": 26, - "M": 41, - "n": 11 - } - } - ], - [ - 625, - { - "n": "Barkley", - "f": "Ross", - "fp": "MO", - "r": 3, - "c": 25, - "s": { - "s": 31.5, - "n": 6, - "a": 5.25, - "d": 0.69, - "Os": 98.5, - "On": 19, - "Oa": 5.18, - "Od": 0.73, - "pm": 19 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3489 - } - ], - [ - -32, - { - "n": 5, - "e": 3481 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3471 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3452 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 7, - "e": 3411 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4241 - } - ], - [ - 5, - { - "n": 5, - "e": 4263 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4279 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ] - } - ], - [ - 650, - { - "n": "Azpilicueta", - "f": "César", - "fp": "DL", - "r": 17, - "c": 25, - "s": { - "s": 71.5, - "n": 15, - "a": 4.77, - "d": 0.73, - "Ss": 15, - "Sn": 3, - "Sa": 5, - "Sd": 1, - "Og": 1, - "Os": 177.5, - "On": 36, - "Oa": 4.93, - "Od": 0.99, - "pd": 35, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -37, - { - "n": 7, - "e": 3531 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -35, - { - "n": 5, - "e": 3511 - } - ], - [ - -34, - { - "n": 4, - "e": 3503 - } - ], - [ - -33, - { - "n": 5, - "e": 3489 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3481, - "g": 1 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3452 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 6, - "e": 3432 - } - ], - [ - -26, - { - "n": 2, - "e": 3423 - } - ], - [ - -25, - { - "n": 7, - "e": 3411 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 4, - "e": 3389 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3381 - } - ], - [ - -21, - { - "n": 5, - "e": 3371 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ], - [ - 17, - { - "n": 6, - "e": 4140 - } - ], - [ - 16, - { - "n": 4, - "e": 4151 - } - ], - [ - 15, - { - "n": 5, - "e": 4164 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 11, - { - "n": 5, - "e": 4206 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4210 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 5, - "e": 4233 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 5, - "e": 4263 - } - ], - [ - 4, - { - "n": 4, - "e": 4269 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 3, - "e": 4307 - } - ] - ] - } - ], - [ - 656, - { - "n": "Moses", - "f": "Victor", - "fp": "DC", - "r": 1, - "c": 25 - } - ], - [ - 659, - { - "n": "Alonso", - "f": "Marcos", - "fp": "DL", - "r": 7, - "c": 25, - "s": { - "g": 1, - "s": 36.5, - "n": 7, - "a": 5.21, - "d": 0.57, - "Og": 2, - "Os": 108, - "On": 21, - "Oa": 5.14, - "Od": 1.01, - "pd": 20, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 6, - "e": 3531 - } - ], - [ - -36, - { - "n": 6, - "e": 3524, - "g": 1 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3481 - } - ], - [ - -31, - { - "n": 3, - "e": 3471 - } - ], - [ - -28, - { - "n": 7, - "e": 3443 - } - ], - [ - -26, - { - "n": 3, - "e": 3423 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3411 - } - ], - [ - -23, - { - "n": 4, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 6, - "e": 4220, - "g": 1 - } - ], - [ - 8, - { - "n": 6, - "e": 4233 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 5, - "e": 4263 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4279 - } - ] - ] - } - ], - [ - 848, - { - "n": "Caballero", - "f": "Willy", - "fp": "G", - "r": 7, - "c": 25, - "s": { - "Os": 12, - "On": 2, - "Oa": 6, - "pg": 2 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3542 - } - ], - [ - -28, - { - "n": 6, - "e": 3443 - } - ] - ] - } - ], - [ - 850, - { - "n": "Batshuayi", - "f": "Michy", - "fp": "A", - "r": 8, - "c": 25, - "s": { - "g": 1, - "s": 51.5, - "n": 11, - "a": 4.68, - "d": 0.6, - "Ss": 13.5, - "Sn": 3, - "Sa": 4.5, - "Og": 6, - "Os": 119.5, - "On": 24, - "Oa": 4.98, - "Od": 1.01, - "pa": 24 - }, - "p": [ - [ - -37, - { - "n": 6, - "e": 3530, - "g": 1 - } - ], - [ - -33, - { - "n": 4, - "e": 3493 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3474 - } - ], - [ - -28, - { - "n": 4, - "e": 3442 - } - ], - [ - -27, - { - "n": 7, - "e": 3434, - "g": 1 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3419 - } - ], - [ - -18, - { - "n": 4, - "e": 2142 - } - ], - [ - -17, - { - "n": 4.5, - "e": 2139 - } - ], - [ - -38, - { - "n": 7.5, - "e": 3540, - "g": 2 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3482 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3450, - "g": 1 - } - ], - [ - -25, - { - "n": 6, - "e": 3412 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4164 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4206 - } - ], - [ - 8, - { - "n": 6, - "e": 4233, - "g": 1 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 4, - "e": 4257 - } - ], - [ - 5, - { - "n": 5, - "e": 4263 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ] - ], - "a": { - "m": 14, - "a": 15, - "M": 16, - "n": 5 - } - } - ], - [ - 959, - { - "n": "Loftus-Cheek", - "f": "Ruben", - "fp": "MO", - "r": 3, - "c": 25, - "s": { - "Og": 3, - "Os": 90.5, - "On": 17, - "Oa": 5.32, - "Od": 0.98, - "pm": 17 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 7, - "e": 3531, - "g": 1 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3489 - } - ], - [ - -32, - { - "n": 6, - "e": 3481, - "g": 1 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3452 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 7.5, - "e": 3432, - "g": 1 - } - ], - [ - -26, - { - "n": 5, - "e": 3423 - } - ], - [ - -25, - { - "n": 5, - "e": 3411 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3398 - } - ], - [ - -21, - { - "n": 5, - "e": 3371 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ] - ] - } - ], - [ - 992, - { - "n": "Zouma", - "f": "Kurt", - "fp": "DC", - "r": 18, - "c": 25, - "s": { - "ao": 1, - "s": 80, - "n": 16, - "a": 5, - "d": 1.24, - "Ss": 55, - "Sn": 10, - "Sa": 5.5, - "Sd": 0.94, - "Og": 2, - "Oao": 1, - "Os": 177.5, - "On": 35, - "Oa": 5.07, - "Od": 1.31, - "pd": 35 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3546 - } - ], - [ - -36, - { - "n": 5, - "e": 3520 - } - ], - [ - -35, - { - "n": 6, - "e": 3512 - } - ], - [ - -32, - { - "n": 7.5, - "e": 3487, - "g": 1 - } - ], - [ - -30, - { - "n": 4, - "e": 3466 - } - ], - [ - -29, - { - "n": 6, - "e": 3451 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 6, - "e": 3426 - } - ], - [ - -25, - { - "n": 4, - "e": 3413 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3372 - } - ], - [ - -18, - { - "n": 1, - "e": 3342 - } - ], - [ - -37, - { - "n": 6, - "e": 3532 - } - ], - [ - -34, - { - "n": 4, - "e": 3501 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -24, - { - "n": 6, - "e": 3401 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3383, - "g": 1 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 6, - "e": 3349 - } - ], - [ - 17, - { - "n": 6, - "e": 4140 - } - ], - [ - 16, - { - "n": 4, - "e": 4151 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 12, - { - "n": 6, - "e": 4189 - } - ], - [ - 11, - { - "n": 7, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 6, - "e": 4220 - } - ], - [ - 8, - { - "n": 6, - "e": 4233 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 4, - "e": 4269, - "a": 1 - } - ], - [ - 3, - { - "n": 5, - "e": 4279 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 2, - "e": 4307 - } - ] - ] - } - ], - [ - 1288, - { - "n": "Rüdiger", - "f": "Antonio", - "fp": "DC", - "r": 8, - "c": 25, - "s": { - "s": 10, - "n": 2, - "a": 5, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 87, - "On": 18, - "Oa": 4.83, - "Od": 1.04, - "pd": 18 - }, - "p": [ - [ - -36, - { - "n": 5.5, - "e": 3524 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3489 - } - ], - [ - -32, - { - "n": 5, - "e": 3481 - } - ], - [ - -31, - { - "n": 3, - "e": 3471 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 5, - "e": 3452 - } - ], - [ - -28, - { - "n": 6, - "e": 3443 - } - ], - [ - -26, - { - "n": 2.5, - "e": 3423 - } - ], - [ - -24, - { - "n": 3, - "e": 3398 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 6, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3341 - } - ], - [ - 17, - { - "n": 5, - "e": 4140 - } - ], - [ - 5, - { - "n": 5, - "e": 4263 - } - ] - ] - } - ], - [ - 1309, - { - "n": "Isaiah Brown", - "f": "", - "fp": "A", - "r": 6, - "c": 25 - } - ], - [ - 1350, - { - "n": "Abraham", - "f": "Tammy", - "fp": "A", - "r": 39, - "c": 25, - "s": { - "g": 11, - "ao": 1, - "s": 87, - "n": 16, - "a": 5.44, - "d": 1.68, - "Sg": 1, - "Ss": 14.5, - "Sn": 3, - "Sa": 4.83, - "Sd": 1.89, - "Og": 11, - "Oao": 1, - "Os": 87, - "On": 16, - "Oa": 5.44, - "Od": 1.68, - "pa": 16 - }, - "p": [ - [ - 17, - { - "n": 4, - "e": 4140 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 7, - "e": 4164, - "g": 1 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 12, - { - "n": 6, - "e": 4189, - "g": 1 - } - ], - [ - 11, - { - "n": 7, - "e": 4206, - "g": 1 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 8, - { - "n": 7, - "e": 4233, - "g": 1 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 8, - "e": 4263, - "g": 3, - "a": 1 - } - ], - [ - 4, - { - "n": 7.5, - "e": 4269, - "g": 2 - } - ], - [ - 3, - { - "n": 7, - "e": 4279, - "g": 2 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 2.5, - "e": 4307 - } - ] - ] - } - ], - [ - 1360, - { - "n": "Charly Musonda", - "f": "", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 1370, - { - "n": "Christensen", - "f": "Andreas", - "fp": "DC", - "r": 9, - "c": 25, - "s": { - "s": 39, - "n": 8, - "a": 4.88, - "d": 0.74, - "Os": 76.5, - "On": 15, - "Oa": 5.1, - "Od": 0.85, - "pd": 15 - }, - "p": [ - [ - -37, - { - "n": 6.5, - "e": 3531 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 4, - "e": 3503 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3452 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3432 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3411 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4164 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 5, - "e": 4263 - } - ], - [ - 3, - { - "n": 5, - "e": 4279 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 4, - "e": 4307 - } - ] - ] - } - ], - [ - 1386, - { - "n": "Tomori", - "f": "Fikayo", - "fp": "DC", - "r": 11, - "c": 25, - "s": { - "g": 1, - "s": 59.5, - "n": 11, - "a": 5.41, - "d": 0.89, - "Og": 1, - "Os": 59.5, - "On": 11, - "Oa": 5.41, - "Od": 0.89, - "pd": 11 - }, - "p": [ - [ - 14, - { - "n": 4.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4184 - } - ], - [ - 12, - { - "n": 6, - "e": 4189 - } - ], - [ - 11, - { - "n": 6, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 8, - { - "n": 5, - "e": 4233 - } - ], - [ - 7, - { - "n": 6, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4263, - "g": 1 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ] - ] - } - ], - [ - 1482, - { - "n": "Palmer", - "f": "Kasey", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 1652, - { - "n": "Arrizabalaga", - "f": "Kepa", - "fp": "G", - "r": 15, - "c": 25, - "s": { - "s": 86, - "n": 17, - "a": 5.06, - "d": 0.77, - "Ss": 86, - "Sn": 17, - "Sa": 5.06, - "Sd": 0.77, - "Os": 187, - "On": 36, - "Oa": 5.19, - "Od": 0.8, - "pg": 36 - }, - "p": [ - [ - -37, - { - "n": 6, - "e": 3531 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 6, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3489 - } - ], - [ - -32, - { - "n": 5, - "e": 3481 - } - ], - [ - -31, - { - "n": 7, - "e": 3471 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3452 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3432 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 6, - "e": 3411 - } - ], - [ - -24, - { - "n": 4, - "e": 3398 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ], - [ - 17, - { - "n": 5, - "e": 4140 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4184 - } - ], - [ - 12, - { - "n": 6, - "e": 4189 - } - ], - [ - 11, - { - "n": 6, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4233 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 4, - "e": 4257 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 4, - "e": 4269 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 6, - "e": 4296 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4307 - } - ] - ], - "a": { - "m": 20, - "a": 25, - "M": 35, - "n": 8 - } - } - ], - [ - 1657, - { - "n": "Kovacic", - "f": "Mateo", - "fp": "MO", - "r": 19, - "c": 25, - "s": { - "g": 1, - "s": 95.5, - "n": 17, - "a": 5.62, - "d": 0.93, - "Sg": 1, - "Ss": 95.5, - "Sn": 17, - "Sa": 5.62, - "Sd": 0.93, - "Og": 1, - "Os": 179.5, - "On": 34, - "Oa": 5.28, - "Od": 0.88, - "pm": 34 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 6, - "e": 3531 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3511 - } - ], - [ - -32, - { - "n": 4, - "e": 3481 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 5, - "e": 3452 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 5, - "e": 3432 - } - ], - [ - -26, - { - "n": 5, - "e": 3423 - } - ], - [ - -25, - { - "n": 5, - "e": 3411 - } - ], - [ - -24, - { - "n": 4, - "e": 3398 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3381 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 6, - "e": 3357 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3341 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 6, - "e": 4151, - "g": 1 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 7, - "e": 4184 - } - ], - [ - 12, - { - "n": 7, - "e": 4189 - } - ], - [ - 11, - { - "n": 7.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4210 - } - ], - [ - 9, - { - "n": 6, - "e": 4220 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4233 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4241 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ] - } - ], - [ - 2029, - { - "n": "Green", - "f": "Robert", - "fp": "G", - "r": 1, - "c": 25 - } - ], - [ - 2072, - { - "n": "Ampadu", - "f": "Ethan", - "fp": "DC", - "r": 1, - "c": 25 - } - ], - [ - 2075, - { - "n": "Sterling", - "f": "Dujon", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 2220, - { - "n": "Hudson-Odoi", - "f": "Callum", - "fp": "A", - "r": 8, - "c": 25, - "s": { - "s": 50, - "n": 10, - "a": 5, - "d": 0.75, - "Ss": 19, - "Sn": 4, - "Sa": 4.75, - "Sd": 0.29, - "Os": 99.5, - "On": 20, - "Oa": 4.97, - "Od": 0.82, - "pm": 1, - "pa": 19 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3511 - } - ], - [ - -34, - { - "n": 4, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3489 - } - ], - [ - -31, - { - "n": 5, - "e": 3471 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3460 - } - ], - [ - -27, - { - "n": 7, - "e": 3432 - } - ], - [ - -25, - { - "n": 4, - "e": 3411 - } - ], - [ - -23, - { - "n": 5, - "e": 3389 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3381 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3357 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 5, - "e": 4164 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 4, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 6, - "e": 4233 - } - ], - [ - 7, - { - "n": 5, - "e": 4241 - } - ] - ] - } - ], - [ - 2303, - { - "n": "Emerson", - "f": "", - "fp": "DL", - "r": 13, - "c": 25, - "s": { - "s": 49.5, - "n": 10, - "a": 4.95, - "d": 0.55, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 97.5, - "On": 20, - "Oa": 4.88, - "Od": 0.6, - "pd": 20 - }, - "p": [ - [ - -35, - { - "n": 4.5, - "e": 3511 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3489 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3452 - } - ], - [ - -27, - { - "n": 5, - "e": 3432 - } - ], - [ - -26, - { - "n": 5, - "e": 3423 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3398 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - 17, - { - "n": 5, - "e": 4140 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 12, - { - "n": 5, - "e": 4189 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4206 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 6, - "e": 4279 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ], - "a": { - "m": 16, - "a": 16, - "M": 16, - "n": 5 - } - } - ], - [ - 2494, - { - "n": "Hector", - "f": "Michael", - "fp": "DC", - "r": 1, - "c": 25 - } - ], - [ - 2570, - { - "n": "Collins", - "f": "Bradley", - "fp": "G", - "r": 1, - "c": 25 - } - ], - [ - 2594, - { - "n": "Lucas Piazon", - "f": "", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 2795, - { - "n": "Miazga", - "f": "Matt", - "fp": "DC", - "r": 5, - "c": 25 - } - ], - [ - 2977, - { - "n": "McEachran", - "f": "George", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 2980, - { - "n": "Cumming", - "f": "Jamie", - "fp": "G", - "r": 1, - "c": 25 - } - ], - [ - 3640, - { - "n": "Maatsen", - "f": "Ian", - "fp": "DC", - "r": 1, - "c": 25 - } - ], - [ - 3644, - { - "n": "Gilmour", - "f": "Billy", - "fp": "MO", - "r": 1, - "c": 25, - "s": { - "s": 9.5, - "n": 2, - "a": 4.75, - "d": 0.35, - "Os": 9.5, - "On": 2, - "Oa": 4.75, - "Od": 0.35, - "pm": 2 - }, - "p": [ - [ - 12, - { - "n": 5, - "e": 4189 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ] - ] - } - ], - [ - 3650, - { - "n": "Gallagher", - "f": "Conor", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 3655, - { - "n": "James", - "f": "Reece", - "fp": "DL", - "r": 10, - "c": 25, - "s": { - "s": 41, - "n": 8, - "a": 5.13, - "d": 0.44, - "Os": 41, - "On": 8, - "Oa": 5.13, - "Od": 0.44, - "pd": 8 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 6, - "e": 4164 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 12, - { - "n": 5, - "e": 4189 - } - ], - [ - 11, - { - "n": 5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ] - ] - } - ], - [ - 3664, - { - "n": "Marc Guehi", - "f": "", - "fp": "DC", - "r": 1, - "c": 25 - } - ], - [ - 3679, - { - "n": "Mount", - "f": "Mason", - "fp": "MO", - "r": 28, - "c": 25, - "s": { - "g": 5, - "s": 93.5, - "n": 17, - "a": 5.5, - "d": 1.13, - "Sg": 5, - "Ss": 93.5, - "Sn": 17, - "Sa": 5.5, - "Sd": 1.13, - "Og": 5, - "Os": 93.5, - "On": 17, - "Oa": 5.5, - "Od": 1.13, - "pm": 13, - "pa": 4 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 6, - "e": 4164, - "g": 1 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 12, - { - "n": 6, - "e": 4189 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4210 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 7, - "e": 4233, - "g": 1 - } - ], - [ - 7, - { - "n": 6, - "e": 4241 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4263, - "g": 1 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 7, - "e": 4279, - "g": 1 - } - ], - [ - 2, - { - "n": 7, - "e": 4296, - "g": 1 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ] - } - ], - [ - 3681, - { - "n": "Ugbo", - "f": "Ike", - "fp": "A", - "r": 1, - "c": 25 - } - ], - [ - 3682, - { - "n": "Chalobah", - "f": "Trevoh", - "fp": "DC", - "r": 3, - "c": 25 - } - ], - [ - 3687, - { - "n": "Pulisic", - "f": "Christian", - "fp": "MO", - "r": 30, - "c": 25, - "s": { - "g": 5, - "s": 76, - "n": 14, - "a": 5.43, - "d": 1.37, - "Sg": 5, - "Ss": 55.5, - "Sn": 10, - "Sa": 5.55, - "Sd": 1.55, - "Og": 5, - "Os": 76, - "On": 14, - "Oa": 5.43, - "Od": 1.37, - "pm": 11, - "pa": 3 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4140 - } - ], - [ - 16, - { - "n": 4, - "e": 4151 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4164 - } - ], - [ - 14, - { - "n": 4, - "e": 4169 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 12, - { - "n": 7, - "e": 4189, - "g": 1 - } - ], - [ - 11, - { - "n": 7, - "e": 4206, - "g": 1 - } - ], - [ - 10, - { - "n": 8.5, - "e": 4210, - "g": 3 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 8, - { - "n": 6, - "e": 4233 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 6, - "e": 4279 - } - ], - [ - 2, - { - "n": 4, - "e": 4296 - } - ], - [ - 1, - { - "n": 5, - "e": 4307 - } - ] - ], - "a": { - "m": 25, - "a": 42, - "M": 51, - "n": 9 - } - } - ], - [ - 3697, - { - "n": "Baker", - "f": "Lewis", - "fp": "MD", - "r": 2, - "c": 25 - } - ], - [ - 5991, - { - "n": "Ziger", - "f": "Karlo", - "fp": "G", - "r": 1, - "c": 25 - } - ], - [ - 6127, - { - "n": "van Ginkel", - "f": "Marco", - "fp": "MD", - "r": 1, - "c": 25 - } - ], - [ - 615, - { - "n": "Benteke", - "f": "Christian", - "fp": "A", - "r": 6, - "c": 26, - "s": { - "s": 66, - "n": 14, - "a": 4.71, - "d": 0.38, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 1, - "Os": 122, - "On": 26, - "Oa": 4.69, - "Od": 0.63, - "pa": 26 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4156 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4182 - } - ], - [ - 11, - { - "n": 5, - "e": 4202 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ], - [ - 8, - { - "n": 4, - "e": 4235 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 5, - { - "n": 5, - "e": 4262 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ], - [ - -34, - { - "n": 4, - "e": 3500 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3382 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 7, - "e": 3509, - "g": 1 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5, - "e": 3482 - } - ], - [ - -31, - { - "n": 4, - "e": 3474 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 4, - "e": 3450 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3442 - } - ], - [ - -26, - { - "n": 4, - "e": 3419 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3412 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4168 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 4, - { - "n": 4, - "e": 4270 - } - ] - ] - } - ], - [ - 633, - { - "n": "Cahill", - "f": "Gary", - "fp": "DC", - "r": 10, - "c": 26, - "s": { - "s": 60, - "n": 12, - "a": 5, - "d": 0.93, - "Os": 65, - "On": 13, - "Oa": 5, - "Od": 0.89, - "pd": 13 - }, - "p": [ - [ - 7, - { - "n": 6, - "e": 4242 - } - ], - [ - -37, - { - "n": 5, - "e": 3531 - } - ], - [ - 16, - { - "n": 6, - "e": 4156 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 6, - "e": 4235 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ] - ] - } - ], - [ - 663, - { - "n": "van Aanholt", - "f": "Patrick", - "fp": "DL", - "r": 14, - "c": 26, - "s": { - "g": 2, - "ao": 1, - "s": 75, - "n": 15, - "a": 5, - "d": 1.12, - "Og": 4, - "Oao": 1, - "Os": 177.5, - "On": 34, - "Oa": 5.22, - "Od": 1.07, - "pd": 34 - }, - "p": [ - [ - -23, - { - "n": 4.5, - "e": 3392 - } - ], - [ - -21, - { - "n": 7, - "e": 3377 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3344 - } - ], - [ - -38, - { - "n": 6, - "e": 3540, - "g": 1 - } - ], - [ - -36, - { - "n": 6, - "e": 3520 - } - ], - [ - -34, - { - "n": 4, - "e": 3500 - } - ], - [ - -33, - { - "n": 6, - "e": 3493 - } - ], - [ - -32, - { - "n": 7.5, - "e": 3482, - "g": 1 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3474 - } - ], - [ - -30, - { - "n": 4, - "e": 3461 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 4, - "e": 3442 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 6, - "e": 3419 - } - ], - [ - -25, - { - "n": 6, - "e": 3412 - } - ], - [ - -24, - { - "n": 6, - "e": 3405 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3382 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 6, - "e": 3350 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 14, - { - "n": 6, - "e": 4168 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4, - "e": 4189 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ], - [ - 8, - { - "n": 7, - "e": 4235, - "g": 1 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3, - "e": 4262, - "a": 1 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 7, - "e": 4281, - "g": 1 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4302 - } - ] - ] - } - ], - [ - 683, - { - "n": "Hennessey", - "f": "Wayne", - "fp": "G", - "r": 7, - "c": 26, - "s": { - "s": 12, - "n": 2, - "a": 6, - "d": 0.71, - "Os": 22, - "On": 4, - "Oa": 5.5, - "Od": 1.08, - "pg": 4 - }, - "p": [ - [ - -29, - { - "n": 6, - "e": 3450 - } - ], - [ - -22, - { - "n": 4, - "e": 3382 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4221 - } - ] - ] - } - ], - [ - 695, - { - "n": "Zaha", - "f": "Wilfried", - "fp": "A", - "r": 22, - "c": 26, - "s": { - "g": 3, - "s": 95.5, - "n": 17, - "a": 5.62, - "d": 0.96, - "Sg": 3, - "Ss": 95.5, - "Sn": 17, - "Sa": 5.62, - "Sd": 0.96, - "Og": 10, - "Os": 206.5, - "On": 37, - "Oa": 5.58, - "Od": 1.16, - "pm": 17, - "pa": 20 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3540 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3530, - "g": 1 - } - ], - [ - -36, - { - "n": 4, - "e": 3520 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3509, - "g": 1 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 6, - "e": 3493 - } - ], - [ - -32, - { - "n": 6, - "e": 3482 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3474 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -29, - { - "n": 7, - "e": 3450, - "g": 1 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 7.5, - "e": 3434, - "g": 2 - } - ], - [ - -26, - { - "n": 7.5, - "e": 3419, - "g": 1 - } - ], - [ - -24, - { - "n": 7, - "e": 3405, - "g": 1 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3377 - } - ], - [ - -20, - { - "n": 4, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - -18, - { - "n": 4, - "e": 3344 - } - ], - [ - 17, - { - "n": 7, - "e": 4141, - "g": 1 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 6, - "e": 4166 - } - ], - [ - 14, - { - "n": 7.5, - "e": 4168, - "g": 1 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4182, - "g": 1 - } - ], - [ - 12, - { - "n": 5, - "e": 4189 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 4, - "e": 4262 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4302 - } - ] - ], - "a": { - "m": 26, - "a": 30, - "M": 35, - "n": 6 - } - } - ], - [ - 704, - { - "n": "Ayew", - "f": "Jordan", - "fp": "A", - "r": 19, - "c": 26, - "s": { - "g": 4, - "s": 77.5, - "n": 16, - "a": 4.84, - "d": 1.18, - "Sg": 4, - "Ss": 72.5, - "Sn": 15, - "Sa": 4.83, - "Sd": 1.22, - "Og": 5, - "Os": 122.5, - "On": 25, - "Oa": 4.9, - "Od": 1.14, - "pa": 25 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3530 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -27, - { - "n": 6, - "e": 3434 - } - ], - [ - -25, - { - "n": 6, - "e": 3412 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4, - "e": 3392 - } - ], - [ - -22, - { - "n": 4, - "e": 3382 - } - ], - [ - -21, - { - "n": 7, - "e": 3377, - "g": 1 - } - ], - [ - -18, - { - "n": 4, - "e": 3344 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5, - "e": 4166 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 3, - "e": 4182 - } - ], - [ - 12, - { - "n": 4, - "e": 4189 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 7, - "e": 4208, - "g": 1 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 6, - "e": 4235, - "g": 1 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 6, - { - "n": 4, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4270, - "g": 1 - } - ], - [ - 3, - { - "n": 6, - "e": 4281, - "g": 1 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ] - } - ], - [ - 740, - { - "n": "Dann", - "f": "Scott", - "fp": "DC", - "r": 7, - "c": 26, - "s": { - "s": 26.5, - "n": 5, - "a": 5.3, - "d": 0.45, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 77.5, - "On": 15, - "Oa": 5.17, - "Od": 0.59, - "pd": 15 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3530 - } - ], - [ - -36, - { - "n": 6, - "e": 3520 - } - ], - [ - -35, - { - "n": 6, - "e": 3509 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3482 - } - ], - [ - -30, - { - "n": 4, - "e": 3461 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3450 - } - ], - [ - -27, - { - "n": 5, - "e": 3434 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 14, - { - "n": 6, - "e": 4168 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ], - [ - 2, - { - "n": 5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4302 - } - ] - ] - } - ], - [ - 761, - { - "n": "McCarthy", - "f": "James", - "fp": "MD", - "r": 6, - "c": 26, - "s": { - "s": 59.5, - "n": 12, - "a": 4.96, - "d": 0.4, - "Ss": 15.5, - "Sn": 3, - "Sa": 5.17, - "Sd": 0.58, - "Os": 64.5, - "On": 13, - "Oa": 4.96, - "Od": 0.38, - "pm": 13 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3512 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4166 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 5, - "e": 4202 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4262 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4295 - } - ] - ] - } - ], - [ - 777, - { - "n": "Townsend", - "f": "Andros", - "fp": "MO", - "r": 13, - "c": 26, - "s": { - "g": 1, - "s": 74.5, - "n": 14, - "a": 5.32, - "d": 0.72, - "Og": 5, - "Os": 192, - "On": 35, - "Oa": 5.49, - "Od": 0.84, - "pm": 26, - "pa": 9 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3540, - "g": 1 - } - ], - [ - -37, - { - "n": 8, - "e": 3530, - "g": 1 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3482 - } - ], - [ - -31, - { - "n": 5, - "e": 3474 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -29, - { - "n": 5, - "e": 3450 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 5, - "e": 3434 - } - ], - [ - -26, - { - "n": 6, - "e": 3419 - } - ], - [ - -25, - { - "n": 5, - "e": 3412 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 6, - "e": 3392, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3377 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3350 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3344, - "g": 1 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 6, - "e": 4168 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4242, - "g": 1 - } - ], - [ - 5, - { - "n": 4, - "e": 4262 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4302 - } - ] - ], - "a": { - "m": 16, - "a": 22, - "M": 30, - "n": 5 - } - } - ], - [ - 808, - { - "n": "Wickham", - "f": "Connor", - "fp": "A", - "r": 1, - "c": 26, - "s": { - "s": 8, - "n": 2, - "a": 4, - "Os": 31, - "On": 7, - "Oa": 4.43, - "Od": 0.45, - "pa": 7 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3540 - } - ], - [ - -23, - { - "n": 5, - "e": 3392 - } - ], - [ - -21, - { - "n": 4, - "e": 3377 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - 2, - { - "n": 4, - "e": 4295 - } - ], - [ - 1, - { - "n": 4, - "e": 4302 - } - ] - ] - } - ], - [ - 828, - { - "n": "McArthur", - "f": "James", - "fp": "MD", - "r": 20, - "c": 26, - "s": { - "s": 88, - "n": 16, - "a": 5.5, - "d": 0.73, - "Ss": 66.5, - "Sn": 12, - "Sa": 5.54, - "Sd": 0.78, - "Og": 1, - "Os": 200.5, - "On": 37, - "Oa": 5.42, - "Od": 0.77, - "pm": 37 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3540 - } - ], - [ - -37, - { - "n": 7, - "e": 3530 - } - ], - [ - -36, - { - "n": 5, - "e": 3520 - } - ], - [ - -35, - { - "n": 7, - "e": 3509, - "g": 1 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3482 - } - ], - [ - -31, - { - "n": 5, - "e": 3474 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3412 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 4, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3377 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - -18, - { - "n": 6, - "e": 3344 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 6, - "e": 4166 - } - ], - [ - 14, - { - "n": 6, - "e": 4168 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 6, - "e": 4235 - } - ], - [ - 7, - { - "n": 7, - "e": 4242 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4251 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4270 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 843, - { - "n": "Kelly", - "f": "Martin", - "fp": "DL", - "r": 12, - "c": 26, - "s": { - "s": 65.5, - "n": 12, - "a": 5.46, - "d": 0.81, - "Ss": 31.5, - "Sn": 6, - "Sa": 5.25, - "Sd": 0.99, - "Oao": 1, - "Os": 109, - "On": 21, - "Oa": 5.19, - "Od": 0.84, - "pd": 21 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3530, - "a": 1 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -34, - { - "n": 4, - "e": 3500 - } - ], - [ - -33, - { - "n": 6, - "e": 3493 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3474 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3442 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 7, - "e": 4166 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4, - "e": 4189 - } - ], - [ - 8, - { - "n": 6, - "e": 4235 - } - ], - [ - 7, - { - "n": 6, - "e": 4242 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 855, - { - "n": "Kouyaté", - "f": "Cheikhou", - "fp": "MD", - "r": 14, - "c": 26, - "s": { - "s": 78, - "n": 15, - "a": 5.2, - "d": 0.94, - "Ss": 78, - "Sn": 15, - "Sa": 5.2, - "Sd": 0.94, - "Os": 154.5, - "On": 31, - "Oa": 4.98, - "Od": 0.76, - "pm": 31 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3530 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5, - "e": 3482 - } - ], - [ - -31, - { - "n": 5, - "e": 3474 - } - ], - [ - -29, - { - "n": 5, - "e": 3450 - } - ], - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3434 - } - ], - [ - -24, - { - "n": 4, - "e": 3405 - } - ], - [ - -23, - { - "n": 4, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 4, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 7, - "e": 4166 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 6, - "e": 4182 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 4, - "e": 4202 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4208 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 6, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4270 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4281 - } - ] - ] - } - ], - [ - 888, - { - "n": "Ward", - "f": "Joel", - "fp": "DL", - "r": 10, - "c": 26, - "s": { - "s": 63.5, - "n": 13, - "a": 4.88, - "d": 0.71, - "Og": 1, - "Os": 87.5, - "On": 18, - "Oa": 4.86, - "Od": 0.61, - "pd": 18 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3530 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3509 - } - ], - [ - -28, - { - "n": 5, - "e": 3442, - "g": 1 - } - ], - [ - -27, - { - "n": 5, - "e": 3434 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 5, - "e": 4208 - } - ], - [ - 9, - { - "n": 4, - "e": 4221 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 6, - "e": 4242 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4302 - } - ] - ] - } - ], - [ - 895, - { - "n": "Milivojevic", - "f": "Luka", - "fp": "MD", - "r": 19, - "c": 26, - "s": { - "g": 2, - "s": 81, - "n": 16, - "a": 5.06, - "d": 1.08, - "Sg": 1, - "Ss": 45.5, - "Sn": 9, - "Sa": 5.06, - "Sd": 0.85, - "Og": 10, - "Os": 200, - "On": 37, - "Oa": 5.41, - "Od": 1.01, - "pm": 37 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3540 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3530 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 6, - "e": 3509 - } - ], - [ - -34, - { - "n": 6, - "e": 3500, - "g": 1 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3493, - "g": 1 - } - ], - [ - -32, - { - "n": 6, - "e": 3482, - "g": 1 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3474 - } - ], - [ - -30, - { - "n": 6, - "e": 3461, - "g": 1 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 7, - "e": 3434, - "g": 1 - } - ], - [ - -26, - { - "n": 6, - "e": 3419 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3412, - "g": 1 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3405 - } - ], - [ - -23, - { - "n": 6, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3377, - "g": 1 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - -18, - { - "n": 7, - "e": 3344, - "g": 1 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4166 - } - ], - [ - 14, - { - "n": 5, - "e": 4168 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4, - "e": 4189 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 7, - "e": 4208, - "g": 1 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4221 - } - ], - [ - 7, - { - "n": 7.5, - "e": 4242, - "g": 1 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 4, - "e": 4295 - } - ], - [ - 1, - { - "n": 4, - "e": 4302 - } - ] - ], - "a": { - "m": 26, - "a": 53, - "M": 61, - "n": 6 - } - } - ], - [ - 927, - { - "n": "Sakho", - "f": "Mamadou", - "fp": "DC", - "r": 8, - "c": 26, - "s": { - "s": 22, - "n": 5, - "a": 4.4, - "d": 0.65, - "Os": 74.5, - "On": 15, - "Oa": 4.97, - "Od": 0.88, - "pd": 15 - }, - "p": [ - [ - -27, - { - "n": 6, - "e": 3434 - } - ], - [ - -26, - { - "n": 6, - "e": 3419 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3412 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4, - "e": 3392 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3377 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3350 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3344 - } - ], - [ - 15, - { - "n": 4, - "e": 4166 - } - ], - [ - 14, - { - "n": 5, - "e": 4168 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 5, - "e": 4270 - } - ] - ] - } - ], - [ - 942, - { - "n": "Tomkins", - "f": "James", - "fp": "DC", - "r": 13, - "c": 26, - "s": { - "s": 46, - "n": 9, - "a": 5.11, - "d": 1.22, - "Ss": 46, - "Sn": 9, - "Sa": 5.11, - "Sd": 1.22, - "Og": 1, - "Os": 124, - "On": 24, - "Oa": 5.17, - "Od": 0.89, - "pd": 24 - }, - "p": [ - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3482 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3474 - } - ], - [ - -30, - { - "n": 4, - "e": 3461 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 4, - "e": 3442 - } - ], - [ - -27, - { - "n": 6, - "e": 3434 - } - ], - [ - -25, - { - "n": 6, - "e": 3412 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3405 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3392, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3382 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5, - "e": 3350 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3344 - } - ], - [ - 17, - { - "n": 7, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 6, - "e": 4166 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 4, - "e": 4208 - } - ], - [ - 9, - { - "n": 4, - "e": 4221 - } - ] - ] - } - ], - [ - 987, - { - "n": "Schlupp", - "f": "Jeffrey", - "fp": "DL", - "r": 11, - "c": 26, - "s": { - "g": 2, - "s": 71.5, - "n": 14, - "a": 5.11, - "d": 1.02, - "Og": 4, - "Os": 152, - "On": 29, - "Oa": 5.24, - "Od": 0.95, - "pd": 9, - "pm": 18, - "pa": 2 - }, - "p": [ - [ - -34, - { - "n": 4.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3482 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3474 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 6, - "e": 3450 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 6, - "e": 3419 - } - ], - [ - -25, - { - "n": 7.5, - "e": 3412, - "g": 1 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3360 - } - ], - [ - -18, - { - "n": 6, - "e": 3344, - "g": 1 - } - ], - [ - 16, - { - "n": 4, - "e": 4156 - } - ], - [ - 15, - { - "n": 7, - "e": 4166, - "g": 1 - } - ], - [ - 14, - { - "n": 6, - "e": 4168, - "g": 1 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4189 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4202 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 6, - "e": 4242 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 6, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4295 - } - ] - ] - } - ], - [ - 1004, - { - "n": "Sako", - "f": "Bakary", - "fp": "MD", - "r": 4, - "c": 26, - "s": { - "Os": 14, - "On": 3, - "Oa": 4.67, - "Od": 0.29, - "pm": 3 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3530 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3500 - } - ] - ] - } - ], - [ - 1061, - { - "n": "Kaikai", - "f": "Sullay", - "fp": "MD", - "r": 1, - "c": 26 - } - ], - [ - 1073, - { - "n": "Speroni", - "f": "Julian", - "fp": "G", - "r": 1, - "c": 26, - "s": { - "Os": 3.5, - "On": 1, - "Oa": 3.5, - "pg": 1 - }, - "p": [ - [ - -23, - { - "n": 3.5, - "e": 3392 - } - ] - ] - } - ], - [ - 1111, - { - "n": "Dreher", - "f": "Luke", - "fp": "MD", - "r": 1, - "c": 26 - } - ], - [ - 1304, - { - "n": "Riedewald", - "f": "Jairo", - "fp": "MD", - "r": 3, - "c": 26, - "s": { - "s": 9.5, - "n": 2, - "a": 4.75, - "d": 0.35, - "Ss": 9.5, - "Sn": 2, - "Sa": 4.75, - "Sd": 0.35, - "Os": 9.5, - "On": 2, - "Oa": 4.75, - "Od": 0.35, - "pd": 1, - "pm": 1 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ] - ] - } - ], - [ - 1342, - { - "n": "Williams", - "f": "Jonathan", - "fp": "MD", - "r": 1, - "c": 26 - } - ], - [ - 1678, - { - "n": "Guaita", - "f": "Vicente", - "fp": "G", - "r": 19, - "c": 26, - "s": { - "s": 86.5, - "n": 15, - "a": 5.77, - "d": 1.02, - "Ss": 42, - "Sn": 7, - "Sa": 6, - "Sd": 1.04, - "Os": 193, - "On": 34, - "Oa": 5.68, - "Od": 0.98, - "pg": 34 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3530 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 7, - "e": 3493 - } - ], - [ - -32, - { - "n": 7, - "e": 3482 - } - ], - [ - -31, - { - "n": 7, - "e": 3474 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3461 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 6, - "e": 3434 - } - ], - [ - -26, - { - "n": 5, - "e": 3419 - } - ], - [ - -25, - { - "n": 6, - "e": 3412 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3377 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3360 - } - ], - [ - -19, - { - "n": 6, - "e": 3350 - } - ], - [ - -18, - { - "n": 5, - "e": 3344 - } - ], - [ - 17, - { - "n": 7.5, - "e": 4141 - } - ], - [ - 16, - { - "n": 6, - "e": 4156 - } - ], - [ - 15, - { - "n": 7, - "e": 4166 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4168 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 5, - "e": 4189 - } - ], - [ - 11, - { - "n": 5, - "e": 4202 - } - ], - [ - 8, - { - "n": 6, - "e": 4235 - } - ], - [ - 7, - { - "n": 7, - "e": 4242 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4270 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 1679, - { - "n": "Camarasa", - "f": "Víctor", - "fp": "MO", - "r": 3, - "c": 26, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Og": 4, - "Os": 86, - "On": 17, - "Oa": 5.06, - "Od": 1.14, - "pm": 16, - "pa": 1 - }, - "p": [ - [ - -35, - { - "n": 3.5, - "e": 3510 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3492 - } - ], - [ - -29, - { - "n": 5, - "e": 3457 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3394 - } - ], - [ - -37, - { - "n": 5, - "e": 3530 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3521 - } - ], - [ - -34, - { - "n": 4, - "e": 3499 - } - ], - [ - -32, - { - "n": 6, - "e": 3481, - "g": 1 - } - ], - [ - -31, - { - "n": 6, - "e": 3469 - } - ], - [ - -30, - { - "n": 7, - "e": 3459, - "g": 1 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3424 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3380 - } - ], - [ - -21, - { - "n": 3.5, - "e": 3370 - } - ], - [ - -20, - { - "n": 7, - "e": 3362, - "g": 1 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3350 - } - ], - [ - -18, - { - "n": 5, - "e": 3340, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4262 - } - ] - ] - } - ], - [ - 2122, - { - "n": "Henry", - "f": "Dion", - "fp": "G", - "r": 1, - "c": 26 - } - ], - [ - 2304, - { - "n": "Sørloth", - "f": "Alexander", - "fp": "A", - "r": 6, - "c": 26 - } - ], - [ - 2337, - { - "n": "Kirby", - "f": "Nya", - "fp": "MO", - "r": 1, - "c": 26 - } - ], - [ - 2585, - { - "n": "Meyer", - "f": "Max", - "fp": "MO", - "r": 5, - "c": 26, - "s": { - "s": 24.5, - "n": 5, - "a": 4.9, - "d": 0.74, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 1, - "Os": 102.5, - "On": 20, - "Oa": 5.13, - "Od": 0.6, - "pm": 20 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3540 - } - ], - [ - -37, - { - "n": 5, - "e": 3530 - } - ], - [ - -36, - { - "n": 6, - "e": 3520 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - -32, - { - "n": 4, - "e": 3482 - } - ], - [ - -30, - { - "n": 5, - "e": 3461 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3450 - } - ], - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - -26, - { - "n": 5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5, - "e": 3412 - } - ], - [ - -23, - { - "n": 6, - "e": 3392, - "g": 1 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3350 - } - ], - [ - -18, - { - "n": 6, - "e": 3344 - } - ], - [ - 17, - { - "n": 5, - "e": 4141 - } - ], - [ - 11, - { - "n": 4, - "e": 4202 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 2845, - { - "n": "Gio McGregor", - "f": "", - "fp": "MD", - "r": 1, - "c": 26 - } - ], - [ - 2852, - { - "n": "Woods", - "f": "Sam", - "fp": "DC", - "r": 1, - "c": 26 - } - ], - [ - 3184, - { - "n": "Tupper", - "f": "Joe", - "fp": "G", - "r": 1, - "c": 26 - } - ], - [ - 3354, - { - "n": "Lucas Perri", - "f": "", - "fp": "G", - "r": 1, - "c": 26 - } - ], - [ - 3645, - { - "n": "Tavares", - "f": "Nikola", - "fp": "DC", - "r": 1, - "c": 26 - } - ], - [ - 3736, - { - "n": "Henderson", - "f": "Stephen", - "fp": "G", - "r": 1, - "c": 26 - } - ], - [ - 6126, - { - "n": "Inniss", - "f": "Ryan", - "fp": "DC", - "r": 4, - "c": 26 - } - ], - [ - 24, - { - "n": "Sidibé", - "f": "Djibril", - "fp": "DL", - "r": 11, - "c": 22, - "s": { - "s": 44.5, - "n": 9, - "a": 4.94, - "d": 1.07, - "Os": 128.5, - "On": 27, - "Oa": 4.76, - "Od": 0.86, - "pd": 23, - "pm": 4 - }, - "p": [ - [ - 15, - { - "n": 3.5, - "e": 4167 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 4, - "e": 4183 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4193 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 9, - { - "n": 6, - "e": 4222 - } - ], - [ - -38, - { - "n": 4, - "e": 3108 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3089 - } - ], - [ - -35, - { - "n": 3, - "e": 3075 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3070 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3035 - } - ], - [ - -28, - { - "n": 5, - "e": 3005 - } - ], - [ - -27, - { - "n": 4.5, - "e": 2992 - } - ], - [ - -26, - { - "n": 5, - "e": 2985 - } - ], - [ - -25, - { - "n": 5.5, - "e": 2978 - } - ], - [ - -24, - { - "n": 5.5, - "e": 2965 - } - ], - [ - -23, - { - "n": 5, - "e": 2957 - } - ], - [ - -22, - { - "n": 3.5, - "e": 2943 - } - ], - [ - -21, - { - "n": 4, - "e": 2936 - } - ], - [ - -17, - { - "n": 4.5, - "e": 2895 - } - ], - [ - -37, - { - "n": 6, - "e": 3096 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3046 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3025 - } - ], - [ - -29, - { - "n": 5, - "e": 3016 - } - ], - [ - 16, - { - "n": 6, - "e": 4151 - } - ], - [ - 10, - { - "n": 4, - "e": 4209 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4229 - } - ] - ] - } - ], - [ - 612, - { - "n": "Sigurdsson", - "f": "Gylfi", - "fp": "MO", - "r": 19, - "c": 22, - "s": { - "g": 1, - "s": 84.5, - "n": 16, - "a": 5.28, - "d": 0.84, - "Og": 8, - "Os": 204.5, - "On": 37, - "Oa": 5.53, - "Od": 1.14, - "pm": 35, - "pa": 2 - }, - "p": [ - [ - 7, - { - "n": 6, - "e": 4246 - } - ], - [ - 6, - { - "n": 5, - "e": 4252 - } - ], - [ - 4, - { - "n": 6, - "e": 4276 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4291 - } - ], - [ - -28, - { - "n": 8, - "e": 3439, - "g": 2 - } - ], - [ - -38, - { - "n": 6.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -36, - { - "n": 4, - "e": 3520 - } - ], - [ - -35, - { - "n": 8, - "e": 3512, - "g": 1 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3501 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3487 - } - ], - [ - -31, - { - "n": 7, - "e": 3471, - "g": 1 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3466 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 5, - "e": 3413 - } - ], - [ - -24, - { - "n": 7, - "e": 3401 - } - ], - [ - -23, - { - "n": 6, - "e": 3395, - "g": 1 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3383 - } - ], - [ - -21, - { - "n": 6, - "e": 3372 - } - ], - [ - -20, - { - "n": 5, - "e": 3358 - } - ], - [ - -19, - { - "n": 8, - "e": 3349, - "g": 1 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3342, - "g": 1 - } - ], - [ - 16, - { - "n": 6, - "e": 4151 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4167 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 6, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 9, - { - "n": 7, - "e": 4222, - "g": 1 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4229 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4278 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ], - "a": { - "m": 26, - "a": 38, - "M": 53, - "n": 10 - } - } - ], - [ - 614, - { - "n": "Mirallas", - "f": "Kevin", - "fp": "MD", - "r": 18, - "c": 22 - } - ], - [ - 642, - { - "n": "Walcott", - "f": "Theo", - "fp": "A", - "r": 10, - "c": 22, - "s": { - "s": 53, - "n": 11, - "a": 4.82, - "d": 1.03, - "Og": 3, - "Os": 148.5, - "On": 31, - "Oa": 4.79, - "Od": 0.94, - "pm": 14, - "pa": 17 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3546, - "g": 1 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3512, - "g": 1 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3501 - } - ], - [ - -33, - { - "n": 5, - "e": 3490 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3466 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -28, - { - "n": 5, - "e": 3439 - } - ], - [ - -27, - { - "n": 5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3413 - } - ], - [ - -23, - { - "n": 4, - "e": 3395 - } - ], - [ - -22, - { - "n": 4, - "e": 3383 - } - ], - [ - -21, - { - "n": 3.5, - "e": 3372 - } - ], - [ - -20, - { - "n": 4, - "e": 3358 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3349 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3342, - "g": 1 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4151 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 6, - "e": 4193 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 4, - "e": 4209 - } - ], - [ - 9, - { - "n": 7, - "e": 4222 - } - ], - [ - 7, - { - "n": 5, - "e": 4246 - } - ], - [ - 6, - { - "n": 5, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 3, - { - "n": 4, - "e": 4278 - } - ], - [ - 2, - { - "n": 4, - "e": 4291 - } - ] - ] - } - ], - [ - 645, - { - "n": "Baines", - "f": "Leighton", - "fp": "DL", - "r": 4, - "c": 22, - "s": { - "s": 10, - "n": 2, - "a": 5, - "Ss": 10, - "Sn": 2, - "Sa": 5, - "Os": 19.5, - "On": 4, - "Oa": 4.88, - "Od": 0.63, - "pd": 4 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - -25, - { - "n": 4, - "e": 3413 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3401 - } - ], - [ - 16, - { - "n": 5, - "e": 4151 - } - ] - ] - } - ], - [ - 697, - { - "n": "Keane", - "f": "Michael", - "fp": "DC", - "r": 10, - "c": 22, - "s": { - "g": 1, - "s": 67, - "n": 15, - "a": 4.47, - "d": 1.01, - "Sg": 1, - "Ss": 19, - "Sn": 4, - "Sa": 4.75, - "Sd": 0.96, - "Og": 1, - "Os": 163.5, - "On": 34, - "Oa": 4.81, - "Od": 1.2, - "pd": 34 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3546 - } - ], - [ - -37, - { - "n": 6, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3520 - } - ], - [ - -35, - { - "n": 6, - "e": 3512 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 6, - "e": 3471 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3466 - } - ], - [ - -29, - { - "n": 6, - "e": 3451 - } - ], - [ - -28, - { - "n": 5, - "e": 3439 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 3.5, - "e": 3413 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3401 - } - ], - [ - -23, - { - "n": 4, - "e": 3395 - } - ], - [ - -22, - { - "n": 7, - "e": 3383 - } - ], - [ - -21, - { - "n": 4, - "e": 3372 - } - ], - [ - -20, - { - "n": 5, - "e": 3358 - } - ], - [ - -19, - { - "n": 7, - "e": 3349 - } - ], - [ - -18, - { - "n": 2, - "e": 3342 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 16, - { - "n": 6, - "e": 4151 - } - ], - [ - 15, - { - "n": 4, - "e": 4167, - "g": 1 - } - ], - [ - 14, - { - "n": 4, - "e": 4170 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4193 - } - ], - [ - 10, - { - "n": 3, - "e": 4209 - } - ], - [ - 9, - { - "n": 6, - "e": 4222 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 3, - "e": 4265 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4, - "e": 4278 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ] - } - ], - [ - 705, - { - "n": "Iwobi", - "f": "Alex", - "fp": "MO", - "r": 12, - "c": 22, - "s": { - "g": 1, - "s": 78.5, - "n": 15, - "a": 5.23, - "d": 0.8, - "Sg": 1, - "Ss": 78.5, - "Sn": 15, - "Sa": 5.23, - "Sd": 0.8, - "Og": 3, - "Os": 183.5, - "On": 36, - "Oa": 5.1, - "Od": 0.96, - "pm": 31, - "pa": 5 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3539 - } - ], - [ - -37, - { - "n": 5, - "e": 3529 - } - ], - [ - -36, - { - "n": 5, - "e": 3522 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 5, - "e": 3490 - } - ], - [ - -32, - { - "n": 4, - "e": 3478 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3458 - } - ], - [ - -29, - { - "n": 6, - "e": 3454 - } - ], - [ - -28, - { - "n": 5, - "e": 3438 - } - ], - [ - -27, - { - "n": 5, - "e": 3429 - } - ], - [ - -26, - { - "n": 6, - "e": 3421, - "g": 1 - } - ], - [ - -25, - { - "n": 3, - "e": 3415 - } - ], - [ - -24, - { - "n": 5, - "e": 3399 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3389 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - -21, - { - "n": 7, - "e": 3369 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3363 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3348 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3339, - "g": 1 - } - ], - [ - 17, - { - "n": 6, - "e": 4144 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4167 - } - ], - [ - 14, - { - "n": 4, - "e": 4170 - } - ], - [ - 13, - { - "n": 5, - "e": 4183 - } - ], - [ - 12, - { - "n": 6, - "e": 4193 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 9, - { - "n": 6, - "e": 4222 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 5, - "e": 4265 - } - ], - [ - 4, - { - "n": 7, - "e": 4276, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4278 - } - ] - ], - "a": { - "m": 14, - "a": 16, - "M": 21, - "n": 10 - } - } - ], - [ - 715, - { - "n": "Bolasie", - "f": "Yannick", - "fp": "A", - "r": 9, - "c": 22 - } - ], - [ - 779, - { - "n": "Stekelenburg", - "f": "Maarten", - "fp": "G", - "r": 1, - "c": 22 - } - ], - [ - 833, - { - "n": "Schneiderlin", - "f": "Morgan", - "fp": "MD", - "r": 10, - "c": 22, - "s": { - "s": 51.5, - "n": 11, - "a": 4.68, - "d": 0.56, - "Os": 96.5, - "On": 19, - "Oa": 5.08, - "Od": 0.92, - "pm": 19 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3546 - } - ], - [ - -37, - { - "n": 7, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 7, - "e": 3512 - } - ], - [ - -31, - { - "n": 5, - "e": 3471 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3451 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3439 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3342 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4193 - } - ], - [ - 8, - { - "n": 4, - "e": 4229 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 4, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4278 - } - ], - [ - 1, - { - "n": 4, - "e": 4302 - } - ] - ] - } - ], - [ - 834, - { - "n": "Davies", - "f": "Tom", - "fp": "MD", - "r": 10, - "c": 22, - "s": { - "g": 1, - "s": 55.5, - "n": 11, - "a": 5.05, - "d": 1.01, - "Sg": 1, - "Ss": 46, - "Sn": 9, - "Sa": 5.11, - "Sd": 1.11, - "Og": 1, - "Os": 97.5, - "On": 20, - "Oa": 4.88, - "Od": 0.92, - "pm": 20 - }, - "p": [ - [ - -33, - { - "n": 5, - "e": 3490 - } - ], - [ - -32, - { - "n": 5, - "e": 3487 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -27, - { - "n": 5, - "e": 3433 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 3.5, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3401 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - -18, - { - "n": 3.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 16, - { - "n": 5, - "e": 4151 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4167 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 4, - "e": 4183 - } - ], - [ - 12, - { - "n": 7, - "e": 4193, - "g": 1 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4222 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4246 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ] - } - ], - [ - 844, - { - "n": "Holgate", - "f": "Mason", - "fp": "DC", - "r": 11, - "c": 22, - "s": { - "s": 49.5, - "n": 10, - "a": 4.95, - "d": 1.04, - "Ss": 44.5, - "Sn": 9, - "Sa": 4.94, - "Sd": 1.1, - "Os": 49.5, - "On": 10, - "Oa": 4.95, - "Od": 1.04, - "pd": 9, - "pm": 1 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4144 - } - ], - [ - 16, - { - "n": 6, - "e": 4151 - } - ], - [ - 15, - { - "n": 3, - "e": 4167 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 6, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4209 - } - ], - [ - 9, - { - "n": 5, - "e": 4222 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ] - ] - } - ], - [ - 909, - { - "n": "Pickford", - "f": "Jordan", - "fp": "G", - "r": 13, - "c": 22, - "s": { - "s": 85, - "n": 17, - "a": 5, - "d": 1.2, - "Ss": 85, - "Sn": 17, - "Sa": 5, - "Sd": 1.2, - "Os": 196.5, - "On": 38, - "Oa": 5.17, - "Od": 1.18, - "pg": 38 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 6, - "e": 3532 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 5, - "e": 3501 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3487 - } - ], - [ - -31, - { - "n": 7, - "e": 3471 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3466 - } - ], - [ - -29, - { - "n": 6, - "e": 3451 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3439 - } - ], - [ - -27, - { - "n": 5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3401 - } - ], - [ - -23, - { - "n": 5, - "e": 3395 - } - ], - [ - -22, - { - "n": 7.5, - "e": 3383 - } - ], - [ - -21, - { - "n": 5, - "e": 3372 - } - ], - [ - -20, - { - "n": 5, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - -18, - { - "n": 2, - "e": 3342 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4144 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 2, - "e": 4167 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4193 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 4, - "e": 4209 - } - ], - [ - 9, - { - "n": 7, - "e": 4222 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 4, - "e": 4252 - } - ], - [ - 5, - { - "n": 4, - "e": 4265 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4, - "e": 4278 - } - ], - [ - 2, - { - "n": 6, - "e": 4291 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 930, - { - "n": "Coleman", - "f": "Séamus", - "fp": "DL", - "r": 8, - "c": 22, - "s": { - "s": 45.5, - "n": 10, - "a": 4.55, - "d": 0.8, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 1, - "Os": 130, - "On": 26, - "Oa": 5, - "Od": 1.2, - "pd": 24, - "pm": 2 - }, - "p": [ - [ - -37, - { - "n": 7, - "e": 3532, - "g": 1 - } - ], - [ - -36, - { - "n": 5, - "e": 3520 - } - ], - [ - -35, - { - "n": 6, - "e": 3512 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3501 - } - ], - [ - -33, - { - "n": 5, - "e": 3490 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 7, - "e": 3471 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 7, - "e": 3439 - } - ], - [ - -25, - { - "n": 3, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3401 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3383 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - -18, - { - "n": 2.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 13, - { - "n": 5, - "e": 4183 - } - ], - [ - 8, - { - "n": 3, - "e": 4229 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 5, - "e": 4252 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4, - "e": 4278 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ] - } - ], - [ - 958, - { - "n": "Delph", - "f": "Fabian", - "fp": "MD", - "r": 6, - "c": 22, - "s": { - "s": 35, - "n": 7, - "a": 5, - "d": 0.65, - "Os": 49.5, - "On": 10, - "Oa": 4.95, - "Od": 0.64, - "pd": 2, - "pm": 8 - }, - "p": [ - [ - -23, - { - "n": 5, - "e": 3391 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3344 - } - ], - [ - 11, - { - "n": 6, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 4, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ] - ] - } - ], - [ - 967, - { - "n": "Cuco Martina", - "f": "", - "fp": "DL", - "r": 1, - "c": 22 - } - ], - [ - 1028, - { - "n": "Niasse", - "f": "Oumar", - "fp": "A", - "r": 4, - "c": 22, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Os": 63, - "On": 15, - "Oa": 4.2, - "Od": 0.68, - "pa": 15 - }, - "p": [ - [ - -36, - { - "n": 4, - "e": 3521 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3510 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3499 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3492 - } - ], - [ - -32, - { - "n": 4, - "e": 3481 - } - ], - [ - -31, - { - "n": 4, - "e": 3469 - } - ], - [ - -30, - { - "n": 5, - "e": 3459 - } - ], - [ - -29, - { - "n": 4, - "e": 3457 - } - ], - [ - -27, - { - "n": 3, - "e": 3431 - } - ], - [ - -26, - { - "n": 4, - "e": 3424 - } - ], - [ - -25, - { - "n": 6, - "e": 3410 - } - ], - [ - -24, - { - "n": 4, - "e": 3399 - } - ], - [ - -23, - { - "n": 4, - "e": 3394 - } - ], - [ - -20, - { - "n": 4, - "e": 3358 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4144 - } - ] - ] - } - ], - [ - 1039, - { - "n": "Lookman", - "f": "Ademola", - "fp": "A", - "r": 7, - "c": 22, - "s": { - "Os": 47.5, - "On": 10, - "Oa": 4.75, - "Od": 0.63, - "pm": 2, - "pa": 8 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -36, - { - "n": 4, - "e": 3520 - } - ], - [ - -34, - { - "n": 4, - "e": 3501 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3490 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3466 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3439 - } - ], - [ - -25, - { - "n": 5, - "e": 3413 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3383 - } - ] - ] - } - ], - [ - 1066, - { - "n": "Calvert-Lewin", - "f": "Dominic", - "fp": "A", - "r": 14, - "c": 22, - "s": { - "g": 5, - "s": 70.5, - "n": 15, - "a": 4.7, - "d": 1.22, - "Sg": 3, - "Ss": 39, - "Sn": 8, - "Sa": 4.88, - "Sd": 1.48, - "Og": 8, - "Os": 167.5, - "On": 35, - "Oa": 4.79, - "Od": 1.1, - "pa": 35 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3532 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 3, - "e": 3501 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 6, - "e": 3471 - } - ], - [ - -30, - { - "n": 6, - "e": 3466, - "g": 1 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3451 - } - ], - [ - -28, - { - "n": 7, - "e": 3439, - "g": 1 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3413 - } - ], - [ - -24, - { - "n": 4, - "e": 3401 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3383, - "g": 1 - } - ], - [ - -21, - { - "n": 4, - "e": 3372 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 4, - "e": 4144 - } - ], - [ - 16, - { - "n": 8, - "e": 4151, - "g": 2 - } - ], - [ - 15, - { - "n": 4, - "e": 4167 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 5, - "e": 4183 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4193 - } - ], - [ - 11, - { - "n": 4, - "e": 4203 - } - ], - [ - 10, - { - "n": 6, - "e": 4209, - "g": 1 - } - ], - [ - 8, - { - "n": 4, - "e": 4229 - } - ], - [ - 7, - { - "n": 6, - "e": 4246, - "g": 1 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4265, - "g": 1 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4278 - } - ], - [ - 2, - { - "n": 4, - "e": 4291 - } - ], - [ - 1, - { - "n": 4, - "e": 4302 - } - ] - ] - } - ], - [ - 1094, - { - "n": "Kenny", - "f": "Jonjoe", - "fp": "DC", - "r": 5, - "c": 22, - "s": { - "Os": 26.5, - "On": 6, - "Oa": 4.42, - "Od": 0.8, - "pd": 6 - }, - "p": [ - [ - -30, - { - "n": 3, - "e": 3466 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 5, - "e": 3413 - } - ], - [ - -24, - { - "n": 5, - "e": 3401 - } - ], - [ - -21, - { - "n": 4, - "e": 3372 - } - ] - ] - } - ], - [ - 1114, - { - "n": "Hewelt", - "f": "Mateusz", - "fp": "G", - "r": 1, - "c": 22 - } - ], - [ - 1307, - { - "n": "Richarlison", - "f": "", - "fp": "A", - "r": 27, - "c": 22, - "s": { - "g": 6, - "s": 95.5, - "n": 17, - "a": 5.62, - "d": 1.17, - "Sg": 6, - "Ss": 95.5, - "Sn": 17, - "Sa": 5.62, - "Sd": 1.17, - "Og": 11, - "Os": 193.5, - "On": 37, - "Oa": 5.23, - "Od": 1.22, - "pm": 25, - "pa": 12 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3532 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 7, - "e": 3512, - "g": 1 - } - ], - [ - -34, - { - "n": 4, - "e": 3501 - } - ], - [ - -33, - { - "n": 5, - "e": 3490 - } - ], - [ - -32, - { - "n": 6, - "e": 3487 - } - ], - [ - -31, - { - "n": 7, - "e": 3471, - "g": 1 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3466, - "g": 1 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3439 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3401, - "g": 1 - } - ], - [ - -23, - { - "n": 3, - "e": 3395 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3383 - } - ], - [ - -21, - { - "n": 4, - "e": 3372 - } - ], - [ - -20, - { - "n": 4, - "e": 3358 - } - ], - [ - -19, - { - "n": 6, - "e": 3349, - "g": 1 - } - ], - [ - -18, - { - "n": 2.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 4, - "e": 4144 - } - ], - [ - 16, - { - "n": 6.5, - "e": 4151, - "g": 1 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4167, - "g": 1 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4170, - "g": 1 - } - ], - [ - 13, - { - "n": 4, - "e": 4183 - } - ], - [ - 12, - { - "n": 7.5, - "e": 4193, - "g": 1 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4209 - } - ], - [ - 9, - { - "n": 6, - "e": 4222 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4229 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 4, - "e": 4252 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 8, - "e": 4276, - "g": 2 - } - ], - [ - 3, - { - "n": 5, - "e": 4278 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 1479, - { - "n": "Lössl", - "f": "Jonas", - "fp": "G", - "r": 7, - "c": 22, - "s": { - "Os": 84.5, - "On": 16, - "Oa": 5.28, - "Od": 1.46, - "pg": 16 - }, - "p": [ - [ - -36, - { - "n": 3, - "e": 3523 - } - ], - [ - -37, - { - "n": 6, - "e": 3533 - } - ], - [ - -35, - { - "n": 6, - "e": 3513 - } - ], - [ - -31, - { - "n": 2.5, - "e": 3476 - } - ], - [ - -30, - { - "n": 5, - "e": 3462 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3449 - } - ], - [ - -28, - { - "n": 6, - "e": 3440 - } - ], - [ - -27, - { - "n": 8, - "e": 3436 - } - ], - [ - -25, - { - "n": 4, - "e": 3411 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3401 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3391 - } - ], - [ - -22, - { - "n": 6, - "e": 3380 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3373 - } - ], - [ - -20, - { - "n": 7, - "e": 3361 - } - ], - [ - -19, - { - "n": 5, - "e": 3354 - } - ], - [ - -18, - { - "n": 5, - "e": 3343 - } - ] - ] - } - ], - [ - 1751, - { - "n": "André Gomes", - "f": "", - "fp": "MO", - "r": 1, - "c": 22, - "s": { - "s": 38.5, - "n": 8, - "a": 4.81, - "d": 0.96, - "Og": 1, - "Os": 125.5, - "On": 26, - "Oa": 4.83, - "Od": 0.84, - "pm": 26 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3546 - } - ], - [ - -34, - { - "n": 4, - "e": 3501 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3490 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 4, - "e": 3466 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 5, - "e": 3439 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 6, - "e": 3426 - } - ], - [ - -25, - { - "n": 6, - "e": 3413, - "g": 1 - } - ], - [ - -24, - { - "n": 6, - "e": 3401 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3383 - } - ], - [ - -21, - { - "n": 4, - "e": 3372 - } - ], - [ - -20, - { - "n": 4, - "e": 3358 - } - ], - [ - -19, - { - "n": 5, - "e": 3349 - } - ], - [ - -18, - { - "n": 5, - "e": 3342 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 4, - "e": 4209 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 3, - "e": 4278 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 1881, - { - "n": "Digne", - "f": "Lucas", - "fp": "DL", - "r": 15, - "c": 22, - "s": { - "ao": 1, - "s": 80, - "n": 17, - "a": 4.71, - "d": 0.83, - "Sao": 1, - "Ss": 80, - "Sn": 17, - "Sa": 4.71, - "Sd": 0.83, - "Og": 3, - "Oao": 2, - "Os": 185, - "On": 37, - "Oa": 5, - "Od": 1.26, - "pd": 34, - "pm": 3 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 6, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3520 - } - ], - [ - -35, - { - "n": 7.5, - "e": 3512, - "g": 1 - } - ], - [ - -34, - { - "n": 3, - "e": 3501 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -32, - { - "n": 7, - "e": 3487 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 5, - "e": 3466 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3451 - } - ], - [ - -28, - { - "n": 6, - "e": 3439 - } - ], - [ - -27, - { - "n": 5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3426 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3401 - } - ], - [ - -23, - { - "n": 3, - "e": 3395, - "a": 1 - } - ], - [ - -22, - { - "n": 7, - "e": 3383 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3372 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 8, - "e": 3349, - "g": 2 - } - ], - [ - -18, - { - "n": 2, - "e": 3342 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 16, - { - "n": 5, - "e": 4151 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4167 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 4, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4193 - } - ], - [ - 11, - { - "n": 6, - "e": 4203 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4209, - "a": 1 - } - ], - [ - 9, - { - "n": 6, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 7, - { - "n": 4, - "e": 4246 - } - ], - [ - 6, - { - "n": 4, - "e": 4252 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4, - "e": 4278 - } - ], - [ - 2, - { - "n": 6, - "e": 4291 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4302 - } - ] - ] - } - ], - [ - 2026, - { - "n": "Vlasic", - "f": "Nikola", - "fp": "A", - "r": 7, - "c": 22 - } - ], - [ - 2118, - { - "n": "Baningime", - "f": "Beni", - "fp": "MD", - "r": 1, - "c": 22 - } - ], - [ - 2197, - { - "n": "Tosun", - "f": "Cenk", - "fp": "A", - "r": 7, - "c": 22, - "s": { - "g": 1, - "s": 18.5, - "n": 4, - "a": 4.63, - "d": 0.95, - "Og": 2, - "Os": 74.5, - "On": 16, - "Oa": 4.66, - "Od": 0.79, - "pa": 16 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3546, - "g": 1 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3520 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3501 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3487 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3451 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4, - "e": 3413 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3401 - } - ], - [ - -23, - { - "n": 4, - "e": 3395 - } - ], - [ - -21, - { - "n": 5, - "e": 3372 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3342 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 11, - { - "n": 6, - "e": 4203, - "g": 1 - } - ], - [ - 6, - { - "n": 4, - "e": 4252 - } - ] - ] - } - ], - [ - 2241, - { - "n": "Mina", - "f": "Yerry", - "fp": "DC", - "r": 12, - "c": 22, - "s": { - "ao": 1, - "s": 72, - "n": 15, - "a": 4.8, - "d": 1.05, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Og": 1, - "Oao": 1, - "Os": 102, - "On": 21, - "Oa": 4.86, - "Od": 1.1, - "pd": 21 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3546 - } - ], - [ - -31, - { - "n": 6, - "e": 3471 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3466 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3358 - } - ], - [ - -19, - { - "n": 7, - "e": 3349, - "g": 1 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4144 - } - ], - [ - 15, - { - "n": 3, - "e": 4167 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 6, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ], - [ - 9, - { - "n": 6, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4229 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 3, - "e": 4252, - "a": 1 - } - ], - [ - 5, - { - "n": 4, - "e": 4265 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4278 - } - ], - [ - 2, - { - "n": 6, - "e": 4291 - } - ], - [ - 1, - { - "n": 6, - "e": 4302 - } - ] - ] - } - ], - [ - 2569, - { - "n": "Dowell", - "f": "Kieran", - "fp": "MD", - "r": 1, - "c": 22 - } - ], - [ - 2583, - { - "n": "Browning", - "f": "Tyias", - "fp": "DC", - "r": 1, - "c": 22 - } - ], - [ - 2593, - { - "n": "Pennington", - "f": "Matthew", - "fp": "DC", - "r": 5, - "c": 22 - } - ], - [ - 2760, - { - "n": "Williams", - "f": "Joe", - "fp": "MD", - "r": 1, - "c": 22 - } - ], - [ - 2764, - { - "n": "Bernard", - "f": "", - "fp": "MO", - "r": 10, - "c": 22, - "s": { - "g": 2, - "s": 55.5, - "n": 11, - "a": 5.05, - "d": 1.17, - "Ss": 14, - "Sn": 3, - "Sa": 4.67, - "Sd": 0.29, - "Og": 3, - "Os": 157.5, - "On": 31, - "Oa": 5.08, - "Od": 1.11, - "pm": 25, - "pa": 6 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -36, - { - "n": 5, - "e": 3520 - } - ], - [ - -35, - { - "n": 7, - "e": 3512 - } - ], - [ - -34, - { - "n": 4, - "e": 3501 - } - ], - [ - -33, - { - "n": 6, - "e": 3490 - } - ], - [ - -32, - { - "n": 7, - "e": 3487, - "g": 1 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3471 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3466 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3439 - } - ], - [ - -27, - { - "n": 4, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -24, - { - "n": 6, - "e": 3401 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3372 - } - ], - [ - -20, - { - "n": 5, - "e": 3358 - } - ], - [ - -19, - { - "n": 7.5, - "e": 3349 - } - ], - [ - -18, - { - "n": 5, - "e": 3342 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4144 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4151 - } - ], - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 10, - { - "n": 5, - "e": 4209 - } - ], - [ - 9, - { - "n": 7.5, - "e": 4222, - "g": 1 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4278 - } - ], - [ - 2, - { - "n": 7, - "e": 4291, - "g": 1 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ], - "a": { - "m": 11, - "a": 18, - "M": 19, - "n": 6 - } - } - ], - [ - 2851, - { - "n": "João Virgínia", - "f": "", - "fp": "G", - "r": 1, - "c": 22 - } - ], - [ - 3685, - { - "n": "Tarashaj", - "f": "Shani", - "fp": "A", - "r": 3, - "c": 22 - } - ], - [ - 4293, - { - "n": "Kean", - "f": "Moise", - "fp": "A", - "r": 7, - "c": 22, - "s": { - "s": 53, - "n": 12, - "a": 4.42, - "d": 0.42, - "Ss": 3.5, - "Sn": 1, - "Sa": 3.5, - "Os": 53, - "On": 12, - "Oa": 4.42, - "Od": 0.42, - "pa": 12 - }, - "p": [ - [ - 17, - { - "n": 3.5, - "e": 4144 - } - ], - [ - 15, - { - "n": 4, - "e": 4167 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4170 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 4, - "e": 4229 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4265 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ], - [ - 3, - { - "n": 5, - "e": 4278 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4302 - } - ] - ], - "a": { - "m": 15, - "a": 26, - "M": 50, - "n": 5 - } - } - ], - [ - 5998, - { - "n": "Gbamin", - "f": "Jean-Philippe", - "fp": "MD", - "r": 5, - "c": 22, - "s": { - "s": 10, - "n": 2, - "a": 5, - "Os": 10, - "On": 2, - "Oa": 5, - "pm": 2 - }, - "p": [ - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 5, - "e": 4302 - } - ] - ] - } - ], - [ - 148, - { - "n": "Ricardo Pereira", - "f": "", - "fp": "DL", - "r": 25, - "c": 29, - "s": { - "g": 2, - "s": 92.5, - "n": 17, - "a": 5.44, - "d": 0.97, - "Ss": 9.5, - "Sn": 2, - "Sa": 4.75, - "Sd": 0.35, - "Og": 3, - "Os": 207, - "On": 38, - "Oa": 5.45, - "Od": 1.04, - "pd": 35, - "pm": 2, - "pa": 1 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4142 - } - ], - [ - 15, - { - "n": 7, - "e": 4160 - } - ], - [ - 10, - { - "n": 6, - "e": 4215 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4245, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4249, - "g": 1 - } - ], - [ - 5, - { - "n": 4, - "e": 4260 - } - ], - [ - 3, - { - "n": 4, - "e": 4282 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ], - [ - -37, - { - "n": 6, - "e": 3534 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3502 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3455 - } - ], - [ - -26, - { - "n": 5, - "e": 3425 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -23, - { - "n": 5, - "e": 3397 - } - ], - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -36, - { - "n": 7, - "e": 3522 - } - ], - [ - -33, - { - "n": 7, - "e": 3491 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3463 - } - ], - [ - -28, - { - "n": 5, - "e": 3441 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3434 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 7, - "e": 3372 - } - ], - [ - -20, - { - "n": 5, - "e": 3362 - } - ], - [ - -19, - { - "n": 7, - "e": 3352, - "g": 1 - } - ], - [ - -18, - { - "n": 7, - "e": 3341 - } - ], - [ - 16, - { - "n": 5, - "e": 4148 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 6, - "e": 4202 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4223 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4271 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ] - ] - } - ], - [ - 610, - { - "n": "Vardy", - "f": "Jamie", - "fp": "A", - "r": 50, - "c": 29, - "s": { - "g": 16, - "s": 103.5, - "n": 17, - "a": 6.09, - "d": 1.63, - "Sg": 16, - "Ss": 103.5, - "Sn": 17, - "Sa": 6.09, - "Sd": 1.63, - "Og": 29, - "Os": 219, - "On": 38, - "Oa": 5.76, - "Od": 1.53, - "pa": 38 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -37, - { - "n": 4, - "e": 3534 - } - ], - [ - -36, - { - "n": 8, - "e": 3522, - "g": 2 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3516, - "g": 1 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 7.5, - "e": 3491, - "g": 2 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3484, - "g": 1 - } - ], - [ - -31, - { - "n": 6, - "e": 3470 - } - ], - [ - -30, - { - "n": 8, - "e": 3463, - "g": 2 - } - ], - [ - -29, - { - "n": 6, - "e": 3455, - "g": 1 - } - ], - [ - -28, - { - "n": 6, - "e": 3441, - "g": 1 - } - ], - [ - -27, - { - "n": 4, - "e": 3434 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3425, - "g": 1 - } - ], - [ - -25, - { - "n": 4, - "e": 3414 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 5, - "e": 3397 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 6, - "e": 3372, - "g": 1 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 6, - "e": 3352 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3341, - "g": 1 - } - ], - [ - 17, - { - "n": 6, - "e": 4142 - } - ], - [ - 16, - { - "n": 8, - "e": 4148, - "g": 2 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160, - "g": 1 - } - ], - [ - 14, - { - "n": 6, - "e": 4170, - "g": 1 - } - ], - [ - 13, - { - "n": 7, - "e": 4181, - "g": 1 - } - ], - [ - 12, - { - "n": 7.5, - "e": 4196, - "g": 1 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4202, - "g": 1 - } - ], - [ - 10, - { - "n": 9, - "e": 4215, - "g": 3 - } - ], - [ - 9, - { - "n": 6, - "e": 4223, - "g": 1 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 7.5, - "e": 4245, - "g": 2 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 4, - "e": 4260 - } - ], - [ - 4, - { - "n": 8, - "e": 4271, - "g": 2 - } - ], - [ - 3, - { - "n": 6, - "e": 4282, - "g": 1 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4305 - } - ] - ], - "a": { - "m": 35, - "a": 51, - "M": 91, - "n": 12 - } - } - ], - [ - 660, - { - "n": "Okazaki", - "f": "Shinji", - "fp": "A", - "r": 3, - "c": 29, - "s": { - "Os": 44, - "On": 10, - "Oa": 4.4, - "Od": 0.21, - "pa": 10 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3542 - } - ], - [ - -33, - { - "n": 4, - "e": 3491 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3463 - } - ], - [ - -28, - { - "n": 4, - "e": 3441 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3406 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3352 - } - ] - ] - } - ], - [ - 689, - { - "n": "Schmeichel", - "f": "Kasper", - "fp": "G", - "r": 24, - "c": 29, - "s": { - "s": 99, - "n": 17, - "a": 5.82, - "d": 0.71, - "Ss": 99, - "Sn": 17, - "Sa": 5.82, - "Sd": 0.71, - "Os": 212, - "On": 38, - "Oa": 5.58, - "Od": 0.9, - "pg": 38 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 6, - "e": 3534 - } - ], - [ - -36, - { - "n": 6, - "e": 3522 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 6, - "e": 3502 - } - ], - [ - -33, - { - "n": 6, - "e": 3491 - } - ], - [ - -32, - { - "n": 6, - "e": 3484 - } - ], - [ - -31, - { - "n": 6, - "e": 3470 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3463 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 5, - "e": 3441 - } - ], - [ - -27, - { - "n": 2.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 4, - "e": 3425 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 4, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3384 - } - ], - [ - -21, - { - "n": 6, - "e": 3372 - } - ], - [ - -20, - { - "n": 5, - "e": 3362 - } - ], - [ - -19, - { - "n": 6, - "e": 3352 - } - ], - [ - -18, - { - "n": 7, - "e": 3341 - } - ], - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 5, - "e": 4148 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 6, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 6, - "e": 4202 - } - ], - [ - 10, - { - "n": 7, - "e": 4215 - } - ], - [ - 9, - { - "n": 6, - "e": 4223 - } - ], - [ - 8, - { - "n": 7.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 6, - "e": 4249 - } - ], - [ - 5, - { - "n": 6, - "e": 4260 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 6, - "e": 4296 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ], - "a": { - "m": 22, - "a": 25, - "M": 28, - "n": 8 - } - } - ], - [ - 701, - { - "n": "Morgan", - "f": "Wes", - "fp": "DC", - "r": 5, - "c": 29, - "s": { - "s": 20, - "n": 4, - "a": 5, - "d": 0.41, - "Og": 3, - "Os": 72.5, - "On": 13, - "Oa": 5.58, - "Od": 1, - "pd": 13 - }, - "p": [ - [ - -34, - { - "n": 5, - "e": 3502 - } - ], - [ - -33, - { - "n": 6, - "e": 3491 - } - ], - [ - -32, - { - "n": 7.5, - "e": 3484, - "g": 1 - } - ], - [ - -31, - { - "n": 7.5, - "e": 3470, - "g": 1 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3397, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 3384 - } - ], - [ - -19, - { - "n": 6, - "e": 3352 - } - ], - [ - -18, - { - "n": 6, - "e": 3341 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4181 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4202 - } - ], - [ - 9, - { - "n": 5, - "e": 4223 - } - ], - [ - 3, - { - "n": 5, - "e": 4282 - } - ] - ] - } - ], - [ - 734, - { - "n": "Albrighton", - "f": "Marc", - "fp": "MO", - "r": 7, - "c": 29, - "s": { - "s": 42.5, - "n": 8, - "a": 5.31, - "d": 0.53, - "Og": 1, - "Os": 101, - "On": 19, - "Oa": 5.32, - "Od": 0.8, - "pm": 15, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3522 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3502 - } - ], - [ - -24, - { - "n": 6, - "e": 3406 - } - ], - [ - -22, - { - "n": 4, - "e": 3384 - } - ], - [ - -21, - { - "n": 5, - "e": 3372 - } - ], - [ - -20, - { - "n": 4, - "e": 3362 - } - ], - [ - -19, - { - "n": 7, - "e": 3352, - "g": 1 - } - ], - [ - -18, - { - "n": 6, - "e": 3341 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4148 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4215 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4245 - } - ], - [ - 4, - { - "n": 5, - "e": 4271 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ] - ] - } - ], - [ - 735, - { - "n": "Evans", - "f": "Jonny", - "fp": "DC", - "r": 24, - "c": 29, - "s": { - "g": 1, - "s": 100.5, - "n": 17, - "a": 5.91, - "d": 0.71, - "Sg": 1, - "Ss": 100.5, - "Sn": 17, - "Sa": 5.91, - "Sd": 0.71, - "Og": 2, - "Os": 181, - "On": 32, - "Oa": 5.66, - "Od": 0.87, - "pd": 32 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 6, - "e": 3534 - } - ], - [ - -36, - { - "n": 7, - "e": 3522 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - -32, - { - "n": 6, - "e": 3484 - } - ], - [ - -31, - { - "n": 7, - "e": 3470 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3463 - } - ], - [ - -29, - { - "n": 4, - "e": 3455 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3434, - "g": 1 - } - ], - [ - -26, - { - "n": 4, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3397 - } - ], - [ - -21, - { - "n": 6, - "e": 3372 - } - ], - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 7.5, - "e": 4148, - "g": 1 - } - ], - [ - 15, - { - "n": 7, - "e": 4160 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 6, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 7, - "e": 4245 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 6, - "e": 4271 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ], - "a": { - "m": 20, - "a": 22, - "M": 26, - "n": 6 - } - } - ], - [ - 756, - { - "n": "Fuchs", - "f": "Christian", - "fp": "DL", - "r": 5, - "c": 29, - "s": { - "s": 21, - "n": 4, - "a": 5.25, - "d": 0.65, - "Os": 30, - "On": 6, - "Oa": 5, - "Od": 0.71, - "pd": 6 - }, - "p": [ - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -27, - { - "n": 4, - "e": 3434 - } - ], - [ - 15, - { - "n": 6, - "e": 4160 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ] - ] - } - ], - [ - 785, - { - "n": "King", - "f": "Andy", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 798, - { - "n": "Jakupovic", - "f": "Eldin", - "fp": "G", - "r": 1, - "c": 29 - } - ], - [ - 838, - { - "n": "Iheanacho", - "f": "Kelechi", - "fp": "A", - "r": 9, - "c": 29, - "s": { - "g": 2, - "s": 17.5, - "n": 3, - "a": 5.83, - "d": 2.08, - "Sg": 1, - "Ss": 11, - "Sn": 2, - "Sa": 5.5, - "Sd": 2.83, - "Og": 2, - "Os": 78, - "On": 17, - "Oa": 4.59, - "Od": 0.97, - "pa": 17 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3534 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3491 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3484 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3455 - } - ], - [ - -28, - { - "n": 4, - "e": 3441 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 4, - "e": 3425 - } - ], - [ - -25, - { - "n": 4, - "e": 3414 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3397 - } - ], - [ - -20, - { - "n": 4, - "e": 3362 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3341 - } - ], - [ - 17, - { - "n": 3.5, - "e": 4142 - } - ], - [ - 16, - { - "n": 7.5, - "e": 4148, - "g": 1 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4170, - "g": 1 - } - ] - ] - } - ], - [ - 851, - { - "n": "Mendy", - "f": "Nampalys", - "fp": "MD", - "r": 3, - "c": 29, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 86.5, - "On": 17, - "Oa": 5.09, - "Od": 0.96, - "pm": 17 - }, - "p": [ - [ - -36, - { - "n": 5, - "e": 3522 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3502 - } - ], - [ - -32, - { - "n": 5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -30, - { - "n": 5, - "e": 3463 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 5, - "e": 3441 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 6, - "e": 3406 - } - ], - [ - -23, - { - "n": 4, - "e": 3397 - } - ], - [ - -22, - { - "n": 2.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 7, - "e": 3372 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 6, - "e": 3352 - } - ], - [ - -18, - { - "n": 6, - "e": 3341 - } - ], - [ - 3, - { - "n": 5, - "e": 4282 - } - ] - ] - } - ], - [ - 858, - { - "n": "Simpson", - "f": "Danny", - "fp": "DC", - "r": 4, - "c": 29, - "s": { - "Os": 19.5, - "On": 4, - "Oa": 4.88, - "Od": 1.44, - "pd": 4 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -23, - { - "n": 3, - "e": 3397 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3372 - } - ], - [ - -19, - { - "n": 5, - "e": 3352 - } - ] - ] - } - ], - [ - 864, - { - "n": "Gray", - "f": "Demarai", - "fp": "MO", - "r": 8, - "c": 29, - "s": { - "s": 53.5, - "n": 10, - "a": 5.35, - "d": 0.34, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Og": 2, - "Os": 151, - "On": 30, - "Oa": 5.03, - "Od": 0.73, - "pm": 28, - "pa": 2 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 5, - "e": 3522 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 4, - "e": 3502 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3491 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3463 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 7, - "e": 3441, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 6, - "e": 3397, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 3384 - } - ], - [ - -21, - { - "n": 5, - "e": 3372 - } - ], - [ - -20, - { - "n": 4, - "e": 3362 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3352 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3341 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4142 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 5, - "e": 4215 - } - ], - [ - 9, - { - "n": 5, - "e": 4223 - } - ], - [ - 7, - { - "n": 5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4271 - } - ] - ] - } - ], - [ - 880, - { - "n": "Amartey", - "f": "Daniel", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 1015, - { - "n": "Wilfred Ndidi", - "f": "", - "fp": "MD", - "r": 27, - "c": 29, - "s": { - "g": 2, - "s": 101, - "n": 16, - "a": 6.31, - "d": 0.7, - "Sg": 1, - "Ss": 89, - "Sn": 14, - "Sa": 6.36, - "Sd": 0.74, - "Og": 3, - "Os": 216.5, - "On": 37, - "Oa": 5.85, - "Od": 0.99, - "pm": 37 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 7, - "e": 3534 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3522 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 6, - "e": 3491 - } - ], - [ - -32, - { - "n": 8, - "e": 3484 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3463 - } - ], - [ - -29, - { - "n": 6, - "e": 3455 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 4, - "e": 3434 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 4, - "e": 3397 - } - ], - [ - -22, - { - "n": 6, - "e": 3384, - "g": 1 - } - ], - [ - -21, - { - "n": 5, - "e": 3372 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3352 - } - ], - [ - -18, - { - "n": 5, - "e": 3341 - } - ], - [ - 17, - { - "n": 6, - "e": 4142 - } - ], - [ - 16, - { - "n": 6, - "e": 4148 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 6, - "e": 4181 - } - ], - [ - 12, - { - "n": 7, - "e": 4196 - } - ], - [ - 11, - { - "n": 7, - "e": 4202 - } - ], - [ - 10, - { - "n": 7.5, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 6, - "e": 4230 - } - ], - [ - 7, - { - "n": 8, - "e": 4245, - "g": 1 - } - ], - [ - 6, - { - "n": 6, - "e": 4249 - } - ], - [ - 5, - { - "n": 6, - "e": 4260 - } - ], - [ - 4, - { - "n": 6, - "e": 4271 - } - ], - [ - 2, - { - "n": 6, - "e": 4296, - "g": 1 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ] - } - ], - [ - 1041, - { - "n": "Kapustka", - "f": "Bartosz", - "fp": "MD", - "r": 3, - "c": 29 - } - ], - [ - 1053, - { - "n": "Benalouane", - "f": "Yohan", - "fp": "DC", - "r": 1, - "c": 29 - } - ], - [ - 1057, - { - "n": "Chilwell", - "f": "Ben", - "fp": "DL", - "r": 19, - "c": 29, - "s": { - "g": 1, - "s": 77, - "n": 14, - "a": 5.5, - "d": 1.06, - "Ss": 10, - "Sn": 2, - "Sa": 5, - "Og": 1, - "Os": 176, - "On": 34, - "Oa": 5.18, - "Od": 0.98, - "pd": 33, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3542 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 6, - "e": 3522 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3491 - } - ], - [ - -32, - { - "n": 5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -30, - { - "n": 5, - "e": 3463 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3455 - } - ], - [ - -28, - { - "n": 5, - "e": 3441 - } - ], - [ - -26, - { - "n": 4, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 7, - "e": 3406 - } - ], - [ - -23, - { - "n": 3, - "e": 3397 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 5, - "e": 3372 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3352 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3341 - } - ], - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 5, - "e": 4148 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 7, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 8, - "e": 4215, - "g": 1 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 4, - "e": 4230 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4271 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ] - ] - } - ], - [ - 1160, - { - "n": "Tielemans", - "f": "Youri", - "fp": "MO", - "r": 24, - "c": 29, - "s": { - "g": 3, - "s": 97.5, - "n": 17, - "a": 5.74, - "d": 0.97, - "Sg": 3, - "Ss": 97.5, - "Sn": 17, - "Sa": 5.74, - "Sd": 0.97, - "Og": 7, - "Os": 197.5, - "On": 35, - "Oa": 5.64, - "Od": 0.98, - "pm": 35 - }, - "p": [ - [ - -20, - { - "n": 7, - "e": 2927, - "g": 1 - } - ], - [ - -19, - { - "n": 5, - "e": 2915 - } - ], - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3534 - } - ], - [ - -36, - { - "n": 7, - "e": 3522, - "g": 1 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 7, - "e": 3491, - "g": 1 - } - ], - [ - -32, - { - "n": 7.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5, - "e": 3470 - } - ], - [ - -30, - { - "n": 6, - "e": 3463, - "g": 1 - } - ], - [ - -29, - { - "n": 6, - "e": 3455 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 4, - "e": 3434 - } - ], - [ - -26, - { - "n": 5, - "e": 3425 - } - ], - [ - -22, - { - "n": 4.5, - "e": 2943 - } - ], - [ - -21, - { - "n": 5, - "e": 2936 - } - ], - [ - -17, - { - "n": 4.5, - "e": 2895 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4142 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4170 - } - ], - [ - 13, - { - "n": 6, - "e": 4181 - } - ], - [ - 12, - { - "n": 7, - "e": 4196 - } - ], - [ - 11, - { - "n": 6, - "e": 4202 - } - ], - [ - 10, - { - "n": 8, - "e": 4215, - "g": 1 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4223, - "g": 1 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 7, - "e": 4271, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ], - "a": { - "m": 23, - "a": 28, - "M": 35, - "n": 8 - } - } - ], - [ - 1368, - { - "n": "Knight", - "f": "Josh", - "fp": "DC", - "r": 1, - "c": 29 - } - ], - [ - 1371, - { - "n": "James", - "f": "Matty", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 1383, - { - "n": "Ward", - "f": "Danny", - "fp": "G", - "r": 7, - "c": 29 - } - ], - [ - 2067, - { - "n": "Choudhury", - "f": "Hamza", - "fp": "MD", - "r": 5, - "c": 29, - "s": { - "s": 45.5, - "n": 9, - "a": 5.06, - "d": 0.53, - "Os": 94.5, - "On": 18, - "Oa": 5.25, - "Od": 0.69, - "pm": 18 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 6, - "e": 3534 - } - ], - [ - -36, - { - "n": 7, - "e": 3522 - } - ], - [ - -33, - { - "n": 5, - "e": 3491 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 6, - "e": 3372 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3352 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3341 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 6, - "e": 4282 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ] - } - ], - [ - 2132, - { - "n": "Ayoze Pérez", - "f": "", - "fp": "A", - "r": 15, - "c": 29, - "s": { - "g": 4, - "s": 76, - "n": 14, - "a": 5.43, - "d": 1.22, - "Og": 14, - "Os": 184.5, - "On": 34, - "Oa": 5.43, - "Od": 1.43, - "pm": 29, - "pa": 5 - }, - "p": [ - [ - -37, - { - "n": 3.5, - "e": 3535 - } - ], - [ - -35, - { - "n": 8, - "e": 3515, - "g": 3 - } - ], - [ - -29, - { - "n": 3, - "e": 3456 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 5, - "e": 3416 - } - ], - [ - -24, - { - "n": 5, - "e": 3404 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 4, - "e": 3367 - } - ], - [ - -38, - { - "n": 7.5, - "e": 3541, - "g": 1 - } - ], - [ - -36, - { - "n": 6, - "e": 3518, - "g": 1 - } - ], - [ - -34, - { - "n": 7, - "e": 3502, - "g": 1 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3493 - } - ], - [ - -32, - { - "n": 4, - "e": 3478 - } - ], - [ - -31, - { - "n": 5, - "e": 3468 - } - ], - [ - -30, - { - "n": 8.5, - "e": 3466, - "g": 2 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -27, - { - "n": 7, - "e": 3436, - "g": 1 - } - ], - [ - -23, - { - "n": 7, - "e": 3394, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3381 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3345 - } - ], - [ - 15, - { - "n": 4, - "e": 4160 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 7, - "e": 4181, - "g": 1 - } - ], - [ - 12, - { - "n": 5, - "e": 4196 - } - ], - [ - 11, - { - "n": 5, - "e": 4202 - } - ], - [ - 10, - { - "n": 9, - "e": 4215, - "g": 3 - } - ], - [ - 9, - { - "n": 5, - "e": 4223 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ] - ], - "a": { - "m": 16, - "a": 29, - "M": 42, - "n": 7 - } - } - ], - [ - 2207, - { - "n": "Barnes", - "f": "Harvey", - "fp": "MO", - "r": 13, - "c": 29, - "s": { - "g": 1, - "s": 87.5, - "n": 16, - "a": 5.47, - "d": 1.04, - "Sg": 1, - "Ss": 82.5, - "Sn": 15, - "Sa": 5.5, - "Sd": 1.07, - "Og": 2, - "Os": 164, - "On": 31, - "Oa": 5.29, - "Od": 0.92, - "pm": 28, - "pa": 3 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3542 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 5, - "e": 3522 - } - ], - [ - -35, - { - "n": 7, - "e": 3516, - "g": 1 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3491 - } - ], - [ - -32, - { - "n": 5, - "e": 3484 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 6, - "e": 3463 - } - ], - [ - -29, - { - "n": 4, - "e": 3455 - } - ], - [ - -28, - { - "n": 6, - "e": 3441 - } - ], - [ - -27, - { - "n": 5, - "e": 3434 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3397 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4142 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4196 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4202 - } - ], - [ - 10, - { - "n": 8, - "e": 4215 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5, - "e": 4271 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4282, - "g": 1 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ] - ] - } - ], - [ - 2567, - { - "n": "Maddison", - "f": "James", - "fp": "MO", - "r": 35, - "c": 29, - "s": { - "g": 5, - "s": 99.5, - "n": 16, - "a": 6.22, - "d": 1.17, - "Sg": 4, - "Ss": 64.5, - "Sn": 10, - "Sa": 6.45, - "Sd": 1.23, - "Og": 7, - "Os": 209.5, - "On": 36, - "Oa": 5.82, - "Od": 1.12, - "pm": 31, - "pa": 5 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3542 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 7, - "e": 3522 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 4, - "e": 3502 - } - ], - [ - -33, - { - "n": 7.5, - "e": 3491, - "g": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 7.5, - "e": 3470, - "g": 1 - } - ], - [ - -30, - { - "n": 6, - "e": 3463 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3441 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 4, - "e": 3406 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3397 - } - ], - [ - -22, - { - "n": 6, - "e": 3384 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 5, - "e": 3352 - } - ], - [ - -18, - { - "n": 6, - "e": 3341 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4142 - } - ], - [ - 16, - { - "n": 7.5, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4160, - "g": 1 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 7, - "e": 4181 - } - ], - [ - 12, - { - "n": 7, - "e": 4196, - "g": 1 - } - ], - [ - 11, - { - "n": 8, - "e": 4202 - } - ], - [ - 10, - { - "n": 8, - "e": 4215, - "g": 1 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 6, - "e": 4230, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4249, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4271 - } - ], - [ - 3, - { - "n": 7, - "e": 4282 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4296 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ] - } - ], - [ - 2572, - { - "n": "Elder", - "f": "Callum", - "fp": "DC", - "r": 1, - "c": 29 - } - ], - [ - 2754, - { - "n": "Söyüncü", - "f": "Çaglar", - "fp": "DC", - "r": 22, - "c": 29, - "s": { - "g": 1, - "s": 97.5, - "n": 17, - "a": 5.74, - "d": 0.81, - "Sg": 1, - "Ss": 97.5, - "Sn": 17, - "Sa": 5.74, - "Sd": 0.81, - "Og": 1, - "Os": 107, - "On": 19, - "Oa": 5.63, - "Od": 0.83, - "pd": 19 - }, - "p": [ - [ - -33, - { - "n": 4.5, - "e": 3491 - } - ], - [ - -20, - { - "n": 5, - "e": 3362 - } - ], - [ - 17, - { - "n": 6, - "e": 4142 - } - ], - [ - 16, - { - "n": 6, - "e": 4148 - } - ], - [ - 15, - { - "n": 6, - "e": 4160 - } - ], - [ - 14, - { - "n": 5, - "e": 4170 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4181 - } - ], - [ - 12, - { - "n": 6, - "e": 4196 - } - ], - [ - 11, - { - "n": 7.5, - "e": 4202, - "g": 1 - } - ], - [ - 10, - { - "n": 6, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4223 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 6, - "e": 4245 - } - ], - [ - 6, - { - "n": 6, - "e": 4249 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 6, - "e": 4271 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ] - } - ], - [ - 2755, - { - "n": "Benkovic", - "f": "Filip", - "fp": "DC", - "r": 1, - "c": 29 - } - ], - [ - 2925, - { - "n": "Leshabela", - "f": "Thakgalo", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 3658, - { - "n": "Justin", - "f": "James", - "fp": "DL", - "r": 3, - "c": 29, - "s": { - "s": 10.5, - "n": 2, - "a": 5.25, - "d": 0.35, - "Os": 10.5, - "On": 2, - "Oa": 5.25, - "Od": 0.35, - "pd": 2 - }, - "p": [ - [ - 16, - { - "n": 5, - "e": 4148 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160 - } - ] - ] - } - ], - [ - 3690, - { - "n": "Thomas", - "f": "George", - "fp": "A", - "r": 4, - "c": 29 - } - ], - [ - 4601, - { - "n": "Praet", - "f": "Dennis", - "fp": "MO", - "r": 9, - "c": 29, - "s": { - "s": 62.5, - "n": 12, - "a": 5.21, - "d": 0.62, - "Ss": 16.5, - "Sn": 3, - "Sa": 5.5, - "Sd": 1.32, - "Os": 62.5, - "On": 12, - "Oa": 5.21, - "Od": 0.62, - "pm": 12 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4142 - } - ], - [ - 16, - { - "n": 7, - "e": 4148 - } - ], - [ - 15, - { - "n": 5, - "e": 4160 - } - ], - [ - 13, - { - "n": 5, - "e": 4181 - } - ], - [ - 12, - { - "n": 5, - "e": 4196 - } - ], - [ - 11, - { - "n": 5, - "e": 4202 - } - ], - [ - 9, - { - "n": 5, - "e": 4223 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 3, - { - "n": 5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5, - "e": 4296 - } - ] - ] - } - ], - [ - 5411, - { - "n": "Fitzhugh", - "f": "Ethan", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 5418, - { - "n": "Tavares", - "f": "Sidnei", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 5422, - { - "n": "Pennant", - "f": "Terell", - "fp": "A", - "r": 1, - "c": 29 - } - ], - [ - 5425, - { - "n": "Wright", - "f": "Callum", - "fp": "MD", - "r": 1, - "c": 29 - } - ], - [ - 5430, - { - "n": "Daley-Campbell", - "f": "Vontae", - "fp": "DC", - "r": 1, - "c": 29 - } - ], - [ - 5434, - { - "n": "Johansson", - "f": "Viktor", - "fp": "G", - "r": 1, - "c": 29 - } - ], - [ - 5443, - { - "n": "Moore", - "f": "Elliott", - "fp": "DC", - "r": 1, - "c": 29 - } - ], - [ - 5444, - { - "n": "Muskwe", - "f": "Admiral", - "fp": "A", - "r": 1, - "c": 29 - } - ], - [ - 5445, - { - "n": "Ndukwu", - "f": "Layton", - "fp": "A", - "r": 4, - "c": 29 - } - ], - [ - 5, - { - "n": "Fabinho", - "f": "", - "fp": "MD", - "r": 14, - "c": 21, - "s": { - "g": 1, - "s": 68, - "n": 12, - "a": 5.67, - "d": 0.81, - "Og": 2, - "Os": 176, - "On": 32, - "Oa": 5.5, - "Od": 0.73, - "pd": 1, - "pm": 31 - }, - "p": [ - [ - 12, - { - "n": 6.5, - "e": 4190, - "g": 1 - } - ], - [ - 10, - { - "n": 6, - "e": 4211 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4224 - } - ], - [ - 7, - { - "n": 6, - "e": 4238 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4258 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 7, - "e": 4298 - } - ], - [ - -38, - { - "n": 6, - "e": 3543 - } - ], - [ - -33, - { - "n": 5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -28, - { - "n": 7, - "e": 3446 - } - ], - [ - -27, - { - "n": 6, - "e": 3435 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -19, - { - "n": 6, - "e": 3353, - "g": 1 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3347 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3535 - } - ], - [ - -35, - { - "n": 5, - "e": 3510 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3503 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3472 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3422 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -23, - { - "n": 5, - "e": 3392 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3363 - } - ], - [ - 13, - { - "n": 4, - "e": 4182 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4257 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4285 - } - ] - ] - } - ], - [ - 605, - { - "n": "Mané", - "f": "Sadio", - "fp": "A", - "r": 53, - "c": 21, - "s": { - "g": 9, - "s": 96, - "n": 16, - "a": 6, - "d": 1.2, - "Ss": 6, - "Sn": 1, - "Sa": 6, - "Og": 24, - "Os": 221, - "On": 37, - "Oa": 5.97, - "Od": 1.1, - "pm": 8, - "pa": 29 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - -38, - { - "n": 7.5, - "e": 3543, - "g": 2 - } - ], - [ - -37, - { - "n": 5, - "e": 3535 - } - ], - [ - -36, - { - "n": 7.5, - "e": 3523, - "g": 2 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3510 - } - ], - [ - -34, - { - "n": 7, - "e": 3503, - "g": 1 - } - ], - [ - -33, - { - "n": 5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -31, - { - "n": 7, - "e": 3472, - "g": 1 - } - ], - [ - -30, - { - "n": 7.5, - "e": 3464, - "g": 2 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3451 - } - ], - [ - -28, - { - "n": 7, - "e": 3446, - "g": 2 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -26, - { - "n": 6, - "e": 3422, - "g": 1 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3417, - "g": 1 - } - ], - [ - -24, - { - "n": 6, - "e": 3406, - "g": 1 - } - ], - [ - -23, - { - "n": 6, - "e": 3392, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 4, - "e": 3374 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3363, - "g": 1 - } - ], - [ - -19, - { - "n": 6, - "e": 3353 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3347 - } - ], - [ - 15, - { - "n": 8, - "e": 4167, - "g": 1 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4182, - "g": 1 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4190, - "g": 1 - } - ], - [ - 11, - { - "n": 7, - "e": 4199, - "g": 1 - } - ], - [ - 10, - { - "n": 6, - "e": 4211 - } - ], - [ - 9, - { - "n": 4, - "e": 4224 - } - ], - [ - 8, - { - "n": 7, - "e": 4230, - "g": 1 - } - ], - [ - 7, - { - "n": 4, - "e": 4238 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4258, - "g": 2 - } - ], - [ - 4, - { - "n": 6, - "e": 4275, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 7, - "e": 4293, - "g": 1 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4298 - } - ] - ], - "a": { - "m": 91, - "a": 109, - "M": 160, - "n": 11 - } - } - ], - [ - 606, - { - "n": "Roberto Firmino", - "f": "", - "fp": "A", - "r": 28, - "c": 21, - "s": { - "g": 4, - "s": 97.5, - "n": 17, - "a": 5.74, - "d": 0.85, - "Sg": 4, - "Ss": 97.5, - "Sn": 17, - "Sa": 5.74, - "Sd": 0.85, - "Og": 12, - "Os": 191.5, - "On": 34, - "Oa": 5.63, - "Od": 1.08, - "pm": 7, - "pa": 27 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3510 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -33, - { - "n": 7, - "e": 3494 - } - ], - [ - -32, - { - "n": 6, - "e": 3485, - "g": 1 - } - ], - [ - -31, - { - "n": 6, - "e": 3472 - } - ], - [ - -30, - { - "n": 7.5, - "e": 3464, - "g": 2 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 4, - "e": 3406 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3392, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3378 - } - ], - [ - -21, - { - "n": 6, - "e": 3374, - "g": 1 - } - ], - [ - -20, - { - "n": 8.5, - "e": 3363, - "g": 3 - } - ], - [ - -19, - { - "n": 5, - "e": 3353 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - 16, - { - "n": 6, - "e": 4149 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4167 - } - ], - [ - 14, - { - "n": 5, - "e": 4171 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4182, - "g": 1 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4257, - "g": 1 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 7.5, - "e": 4275, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4293, - "g": 1 - } - ], - [ - 1, - { - "n": 7, - "e": 4298 - } - ] - ] - } - ], - [ - 618, - { - "n": "Lallana", - "f": "Adam", - "fp": "MO", - "r": 9, - "c": 21, - "s": { - "g": 1, - "s": 35.5, - "n": 7, - "a": 5.07, - "d": 0.73, - "Og": 1, - "Os": 81, - "On": 16, - "Oa": 5.06, - "Od": 0.48, - "pm": 16 - }, - "p": [ - [ - -31, - { - "n": 5, - "e": 3472 - } - ], - [ - -30, - { - "n": 5, - "e": 3464 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 5, - "e": 3446 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -23, - { - "n": 5, - "e": 3392 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3347 - } - ], - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4171 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4199 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4224, - "g": 1 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4257 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4285 - } - ] - ] - } - ], - [ - 624, - { - "n": "Milner", - "f": "James", - "fp": "MD", - "r": 11, - "c": 21, - "s": { - "g": 1, - "s": 69, - "n": 13, - "a": 5.31, - "d": 0.83, - "Ss": 17.5, - "Sn": 3, - "Sa": 5.83, - "Sd": 1.26, - "Og": 3, - "Os": 156.5, - "On": 29, - "Oa": 5.4, - "Od": 0.83, - "pd": 6, - "pm": 23 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3535 - } - ], - [ - -35, - { - "n": 7, - "e": 3510, - "g": 1 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 5, - "e": 3494 - } - ], - [ - -32, - { - "n": 6, - "e": 3485 - } - ], - [ - -31, - { - "n": 6.5, - "e": 3472, - "g": 1 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 6, - "e": 3446 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -26, - { - "n": 7, - "e": 3422 - } - ], - [ - -25, - { - "n": 6, - "e": 3417 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - 16, - { - "n": 7, - "e": 4149 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4167 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 8, - { - "n": 7, - "e": 4230, - "g": 1 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 5, - "e": 4258 - } - ], - [ - 3, - { - "n": 5, - "e": 4285 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 5, - "e": 4298 - } - ] - ] - } - ], - [ - 630, - { - "n": "Wijnaldum", - "f": "Georginio", - "fp": "MO", - "r": 26, - "c": 21, - "s": { - "g": 2, - "s": 91, - "n": 16, - "a": 5.69, - "d": 0.75, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Og": 4, - "Os": 194, - "On": 35, - "Oa": 5.54, - "Od": 0.89, - "pm": 35 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3535 - } - ], - [ - -36, - { - "n": 7, - "e": 3523 - } - ], - [ - -35, - { - "n": 7.5, - "e": 3510, - "g": 1 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -33, - { - "n": 4, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -31, - { - "n": 5, - "e": 3472 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 7, - "e": 3422, - "g": 1 - } - ], - [ - -24, - { - "n": 6, - "e": 3406 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 4, - "e": 3374 - } - ], - [ - -20, - { - "n": 6, - "e": 3363 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3353 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4143 - } - ], - [ - 15, - { - "n": 7, - "e": 4167, - "g": 1 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 7, - "e": 4190 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 7, - { - "n": 7, - "e": 4238, - "g": 1 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 6, - "e": 4258 - } - ], - [ - 4, - { - "n": 6, - "e": 4275 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4293 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4298 - } - ] - ] - } - ], - [ - 636, - { - "n": "Oxlade-Chamberlain", - "f": "Alex", - "fp": "MO", - "r": 11, - "c": 21, - "s": { - "g": 1, - "s": 61.5, - "n": 12, - "a": 5.13, - "d": 0.64, - "Sg": 1, - "Ss": 10.5, - "Sn": 2, - "Sa": 5.25, - "Sd": 1.06, - "Og": 1, - "Os": 71.5, - "On": 14, - "Oa": 5.11, - "Od": 0.59, - "pm": 12, - "pa": 2 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -36, - { - "n": 5, - "e": 3523 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 6, - "e": 4149, - "g": 1 - } - ], - [ - 14, - { - "n": 6, - "e": 4171 - } - ], - [ - 13, - { - "n": 4, - "e": 4182 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 5, - { - "n": 5, - "e": 4258 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4293 - } - ] - ] - } - ], - [ - 638, - { - "n": "Sturridge", - "f": "Daniel", - "fp": "A", - "r": 11, - "c": 21, - "s": { - "Os": 42.5, - "On": 9, - "Oa": 4.72, - "Od": 0.62, - "pa": 9 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3535 - } - ], - [ - -36, - { - "n": 5, - "e": 3523 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3472 - } - ], - [ - -30, - { - "n": 6, - "e": 3464 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3422 - } - ], - [ - -24, - { - "n": 4, - "e": 3406 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -19, - { - "n": 5, - "e": 3353 - } - ] - ] - } - ], - [ - 644, - { - "n": "Henderson", - "f": "Jordan", - "fp": "MD", - "r": 23, - "c": 21, - "s": { - "g": 1, - "s": 92.5, - "n": 16, - "a": 5.78, - "d": 0.91, - "Sg": 1, - "Ss": 70, - "Sn": 12, - "Sa": 5.83, - "Sd": 1.03, - "Og": 2, - "Os": 191.5, - "On": 34, - "Oa": 5.63, - "Od": 0.78, - "pd": 1, - "pm": 33 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3535 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3523 - } - ], - [ - -35, - { - "n": 6, - "e": 3510 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3494, - "g": 1 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3485 - } - ], - [ - -30, - { - "n": 5, - "e": 3464 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3435 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -23, - { - "n": 6, - "e": 3392 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -19, - { - "n": 6, - "e": 3353 - } - ], - [ - -18, - { - "n": 6, - "e": 3347 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 8, - "e": 4149 - } - ], - [ - 15, - { - "n": 6, - "e": 4167 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 6, - "e": 4190 - } - ], - [ - 11, - { - "n": 7, - "e": 4199 - } - ], - [ - 10, - { - "n": 7, - "e": 4211, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4257 - } - ], - [ - 4, - { - "n": 6, - "e": 4275 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 6, - "e": 4298 - } - ] - ], - "a": { - "m": 19, - "a": 24, - "M": 30, - "n": 10 - } - } - ], - [ - 655, - { - "n": "Lovren", - "f": "Dejan", - "fp": "DC", - "r": 11, - "c": 21, - "s": { - "s": 46.5, - "n": 8, - "a": 5.81, - "d": 0.59, - "Og": 1, - "Os": 91, - "On": 16, - "Oa": 5.69, - "Od": 1, - "pd": 16 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 7, - "e": 3523 - } - ], - [ - -33, - { - "n": 5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -21, - { - "n": 3.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 6, - "e": 3363 - } - ], - [ - -19, - { - "n": 7.5, - "e": 3353, - "g": 1 - } - ], - [ - -18, - { - "n": 6, - "e": 3347 - } - ], - [ - 16, - { - "n": 5, - "e": 4149 - } - ], - [ - 15, - { - "n": 7, - "e": 4167 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 6, - "e": 4182 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4190 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4199 - } - ], - [ - 10, - { - "n": 6, - "e": 4211 - } - ], - [ - 8, - { - "n": 6, - "e": 4230 - } - ] - ] - } - ], - [ - 668, - { - "n": "van Dijk", - "f": "Virgil", - "fp": "DC", - "r": 35, - "c": 21, - "s": { - "g": 3, - "s": 102, - "n": 17, - "a": 6, - "d": 0.68, - "Sg": 3, - "Ss": 102, - "Sn": 17, - "Sa": 6, - "Sd": 0.68, - "Og": 7, - "Os": 230.5, - "On": 38, - "Oa": 6.07, - "Od": 0.81, - "pd": 38 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3543 - } - ], - [ - -37, - { - "n": 7, - "e": 3535, - "g": 1 - } - ], - [ - -36, - { - "n": 6, - "e": 3523 - } - ], - [ - -35, - { - "n": 6, - "e": 3510 - } - ], - [ - -34, - { - "n": 6, - "e": 3503 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 6, - "e": 3485 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3472 - } - ], - [ - -30, - { - "n": 6, - "e": 3464 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3451 - } - ], - [ - -28, - { - "n": 8.5, - "e": 3446, - "g": 2 - } - ], - [ - -27, - { - "n": 6, - "e": 3435 - } - ], - [ - -26, - { - "n": 7, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 5, - "e": 3392 - } - ], - [ - -22, - { - "n": 6, - "e": 3378 - } - ], - [ - -21, - { - "n": 5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3363 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3353 - } - ], - [ - -18, - { - "n": 8, - "e": 3347, - "g": 1 - } - ], - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - 16, - { - "n": 6, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 14, - { - "n": 8, - "e": 4171, - "g": 2 - } - ], - [ - 13, - { - "n": 6, - "e": 4182 - } - ], - [ - 12, - { - "n": 6, - "e": 4190 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4211 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 6, - "e": 4230 - } - ], - [ - 7, - { - "n": 6, - "e": 4238 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 6, - "e": 4258 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 6, - "e": 4293 - } - ], - [ - 1, - { - "n": 7, - "e": 4298, - "g": 1 - } - ] - ], - "a": { - "m": 35, - "a": 52, - "M": 72, - "n": 9 - } - } - ], - [ - 672, - { - "n": "Shaqiri", - "f": "Xherdan", - "fp": "A", - "r": 8, - "c": 21, - "s": { - "g": 1, - "s": 26, - "n": 5, - "a": 5.2, - "d": 1.04, - "Sg": 1, - "Ss": 16.5, - "Sn": 3, - "Sa": 5.5, - "Sd": 1.32, - "Og": 2, - "Os": 81.5, - "On": 16, - "Oa": 5.09, - "Od": 0.95, - "pm": 11, - "pa": 5 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 5, - "e": 3523 - } - ], - [ - -34, - { - "n": 4, - "e": 3503 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 4, - "e": 3406 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3363 - } - ], - [ - -19, - { - "n": 7, - "e": 3353, - "g": 1 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 7, - "e": 4167, - "g": 1 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 5, - "e": 4275 - } - ] - ] - } - ], - [ - 681, - { - "n": "Origi", - "f": "Divock", - "fp": "A", - "r": 11, - "c": 21, - "s": { - "g": 3, - "s": 63.5, - "n": 13, - "a": 4.88, - "d": 1.12, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 5, - "Os": 113, - "On": 23, - "Oa": 4.91, - "Od": 1.01, - "pa": 23 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 6, - "e": 3535, - "g": 1 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3472 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -28, - { - "n": 7, - "e": 3446, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3378 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4167, - "g": 2 - } - ], - [ - 14, - { - "n": 4, - "e": 4171 - } - ], - [ - 13, - { - "n": 4, - "e": 4182 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 4, - "e": 4211 - } - ], - [ - 9, - { - "n": 4, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4230 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4238 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4275 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4293 - } - ], - [ - 1, - { - "n": 7, - "e": 4298, - "g": 1 - } - ] - ], - "a": { - "m": 11, - "a": 15, - "M": 17, - "n": 6 - } - } - ], - [ - 711, - { - "n": "Clyne", - "f": "Nathaniel", - "fp": "DL", - "r": 5, - "c": 21, - "s": { - "Os": 76, - "On": 17, - "Oa": 4.47, - "Od": 1.01, - "pd": 17 - }, - "p": [ - [ - -38, - { - "n": 3, - "e": 3540 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4, - "e": 3525 - } - ], - [ - -33, - { - "n": 3, - "e": 3488 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3484 - } - ], - [ - -31, - { - "n": 4, - "e": 3468 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3462 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 3, - "e": 3438 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -25, - { - "n": 4, - "e": 3410 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3398 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 4, - "e": 3383 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -19, - { - "n": 5, - "e": 3353 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ] - ] - } - ], - [ - 760, - { - "n": "Mignolet", - "f": "Simon", - "fp": "G", - "r": 6, - "c": 21 - } - ], - [ - 766, - { - "n": "Matip", - "f": "Joel", - "fp": "DC", - "r": 7, - "c": 21, - "s": { - "g": 1, - "s": 42, - "n": 7, - "a": 6, - "d": 0.76, - "Og": 1, - "Os": 120.5, - "On": 21, - "Oa": 5.74, - "Od": 0.66, - "pd": 21 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3543 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3510 - } - ], - [ - -34, - { - "n": 6, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3494 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3472 - } - ], - [ - -30, - { - "n": 5, - "e": 3464 - } - ], - [ - -29, - { - "n": 6, - "e": 3451 - } - ], - [ - -28, - { - "n": 6, - "e": 3446 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -23, - { - "n": 5, - "e": 3392 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 7, - { - "n": 6, - "e": 4238 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4257 - } - ], - [ - 5, - { - "n": 6, - "e": 4258 - } - ], - [ - 4, - { - "n": 6, - "e": 4275 - } - ], - [ - 3, - { - "n": 7.5, - "e": 4285, - "g": 1 - } - ], - [ - 2, - { - "n": 6, - "e": 4293 - } - ] - ], - "a": { - "m": 16, - "a": 19, - "M": 25, - "n": 7 - } - } - ], - [ - 776, - { - "n": "Robertson", - "f": "Andrew", - "fp": "DL", - "r": 23, - "c": 21, - "s": { - "g": 1, - "s": 96, - "n": 17, - "a": 5.65, - "d": 0.79, - "Sg": 1, - "Ss": 96, - "Sn": 17, - "Sa": 5.65, - "Sd": 0.79, - "Og": 1, - "Os": 208.5, - "On": 38, - "Oa": 5.49, - "Od": 0.83, - "pd": 38 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3543 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 7.5, - "e": 3523 - } - ], - [ - -35, - { - "n": 6, - "e": 3510 - } - ], - [ - -34, - { - "n": 5, - "e": 3503 - } - ], - [ - -33, - { - "n": 5, - "e": 3494 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 5, - "e": 3472 - } - ], - [ - -30, - { - "n": 5, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -26, - { - "n": 6, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3406 - } - ], - [ - -23, - { - "n": 4, - "e": 3392 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3378 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -19, - { - "n": 6, - "e": 3353 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 4, - "e": 4167 - } - ], - [ - 14, - { - "n": 5, - "e": 4171 - } - ], - [ - 13, - { - "n": 6, - "e": 4182 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4190 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4199, - "g": 1 - } - ], - [ - 10, - { - "n": 6, - "e": 4211 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4238 - } - ], - [ - 6, - { - "n": 7, - "e": 4257 - } - ], - [ - 5, - { - "n": 7, - "e": 4258 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 5, - "e": 4285 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4298 - } - ] - ], - "a": { - "m": 24, - "a": 28, - "M": 35, - "n": 6 - } - } - ], - [ - 901, - { - "n": "Adrián", - "f": "", - "fp": "G", - "r": 7, - "c": 21, - "s": { - "s": 47.5, - "n": 10, - "a": 4.75, - "d": 0.75, - "Os": 47.5, - "On": 10, - "Oa": 4.75, - "Od": 0.75, - "pg": 10 - }, - "p": [ - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 14, - { - "n": 4, - "e": 4171 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 6, - "e": 4238 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 4, - "e": 4258 - } - ], - [ - 4, - { - "n": 6, - "e": 4275 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4285 - } - ], - [ - 2, - { - "n": 4, - "e": 4293 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4298 - } - ] - ] - } - ], - [ - 970, - { - "n": "Karius", - "f": "Loris", - "fp": "G", - "r": 9, - "c": 21 - } - ], - [ - 995, - { - "n": "Alexander-Arnold", - "f": "Trent", - "fp": "DL", - "r": 25, - "c": 21, - "s": { - "g": 1, - "s": 92, - "n": 17, - "a": 5.41, - "d": 0.91, - "Sg": 1, - "Ss": 92, - "Sn": 17, - "Sa": 5.41, - "Sd": 0.91, - "Og": 1, - "Os": 184.5, - "On": 33, - "Oa": 5.59, - "Od": 1.01, - "pd": 33 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3543 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 7, - "e": 3523 - } - ], - [ - -35, - { - "n": 6, - "e": 3510 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3472 - } - ], - [ - -30, - { - "n": 5, - "e": 3464 - } - ], - [ - -29, - { - "n": 5, - "e": 3451 - } - ], - [ - -28, - { - "n": 8, - "e": 3446 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3422 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 4, - "e": 3374 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -19, - { - "n": 7, - "e": 3353 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 6, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4171 - } - ], - [ - 13, - { - "n": 5, - "e": 4182 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4190 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4230 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 6, - { - "n": 7, - "e": 4257, - "g": 1 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4275 - } - ], - [ - 3, - { - "n": 6, - "e": 4285 - } - ], - [ - 2, - { - "n": 4, - "e": 4293 - } - ], - [ - 1, - { - "n": 6, - "e": 4298 - } - ] - ] - } - ], - [ - 1009, - { - "n": "Grujic", - "f": "Marko", - "fp": "MD", - "r": 1, - "c": 21 - } - ], - [ - 1096, - { - "n": "Gomez", - "f": "Joseph", - "fp": "DC", - "r": 9, - "c": 21, - "s": { - "s": 42.5, - "n": 8, - "a": 5.31, - "d": 0.37, - "Ss": 16.5, - "Sn": 3, - "Sa": 5.5, - "Sd": 0.5, - "Os": 57.5, - "On": 11, - "Oa": 5.23, - "Od": 0.34, - "pd": 11 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -36, - { - "n": 5, - "e": 3523 - } - ], - [ - -35, - { - "n": 5, - "e": 3510 - } - ], - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4149 - } - ], - [ - 15, - { - "n": 5, - "e": 4167 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4182 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4298 - } - ] - ] - } - ], - [ - 1151, - { - "n": "Woodburn", - "f": "Ben", - "fp": "A", - "r": 1, - "c": 21 - } - ], - [ - 1278, - { - "n": "Mohamed Salah", - "f": "", - "fp": "A", - "r": 47, - "c": 21, - "s": { - "g": 9, - "s": 83, - "n": 14, - "a": 5.93, - "d": 1.27, - "Sg": 3, - "Ss": 14.5, - "Sn": 2, - "Sa": 7.25, - "Sd": 0.35, - "Og": 21, - "Os": 202.5, - "On": 35, - "Oa": 5.79, - "Od": 1.3, - "pa": 35 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3535, - "g": 1 - } - ], - [ - -36, - { - "n": 8, - "e": 3523, - "g": 2 - } - ], - [ - -35, - { - "n": 6, - "e": 3510 - } - ], - [ - -34, - { - "n": 7, - "e": 3503, - "g": 1 - } - ], - [ - -33, - { - "n": 6, - "e": 3494, - "g": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 4, - "e": 3472 - } - ], - [ - -30, - { - "n": 4, - "e": 3464 - } - ], - [ - -29, - { - "n": 4, - "e": 3451 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 7, - "e": 3422, - "g": 1 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 4, - "e": 3406 - } - ], - [ - -23, - { - "n": 7, - "e": 3392, - "g": 2 - } - ], - [ - -22, - { - "n": 6, - "e": 3378, - "g": 1 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 7, - "e": 3363, - "g": 1 - } - ], - [ - -19, - { - "n": 7, - "e": 3353, - "g": 1 - } - ], - [ - -18, - { - "n": 7, - "e": 3347, - "g": 1 - } - ], - [ - 17, - { - "n": 7.5, - "e": 4143, - "g": 2 - } - ], - [ - 16, - { - "n": 7, - "e": 4149, - "g": 1 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4171 - } - ], - [ - 12, - { - "n": 7, - "e": 4190, - "g": 1 - } - ], - [ - 11, - { - "n": 4, - "e": 4199 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4211, - "g": 1 - } - ], - [ - 8, - { - "n": 6, - "e": 4230 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4238 - } - ], - [ - 6, - { - "n": 5, - "e": 4257 - } - ], - [ - 5, - { - "n": 7, - "e": 4258, - "g": 1 - } - ], - [ - 4, - { - "n": 6, - "e": 4275 - } - ], - [ - 3, - { - "n": 7, - "e": 4285, - "g": 2 - } - ], - [ - 2, - { - "n": 4, - "e": 4293 - } - ], - [ - 1, - { - "n": 7, - "e": 4298, - "g": 1 - } - ] - ], - "a": { - "m": 62, - "a": 83, - "M": 105, - "n": 14 - } - } - ], - [ - 1362, - { - "n": "Brewster", - "f": "Rhian", - "fp": "A", - "r": 1, - "c": 21 - } - ], - [ - 1374, - { - "n": "Grabara", - "f": "Kamil", - "fp": "G", - "r": 1, - "c": 21 - } - ], - [ - 1381, - { - "n": "Kent", - "f": "Ryan", - "fp": "MD", - "r": 8, - "c": 21 - } - ], - [ - 2539, - { - "n": "Camacho", - "f": "Rafael", - "fp": "MD", - "r": 1, - "c": 21, - "s": { - "Os": 5, - "On": 1, - "Oa": 5, - "pm": 1 - }, - "p": [ - [ - -23, - { - "n": 5, - "e": 3392 - } - ] - ] - } - ], - [ - 2546, - { - "n": "Jones", - "f": "Curtis", - "fp": "MO", - "r": 3, - "c": 21, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Os": 4.5, - "On": 1, - "Oa": 4.5, - "pm": 1 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4149 - } - ] - ] - } - ], - [ - 2551, - { - "n": "Phillips", - "f": "Nathaniel", - "fp": "DC", - "r": 1, - "c": 21 - } - ], - [ - 2565, - { - "n": "Keita", - "f": "Naby", - "fp": "MD", - "r": 12, - "c": 21, - "s": { - "g": 1, - "s": 18.5, - "n": 3, - "a": 6.17, - "d": 2.02, - "Og": 3, - "Os": 81, - "On": 15, - "Oa": 5.4, - "Od": 1.27, - "pm": 15 - }, - "p": [ - [ - -36, - { - "n": 7.5, - "e": 3523, - "g": 1 - } - ], - [ - -35, - { - "n": 6, - "e": 3510 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3503 - } - ], - [ - -33, - { - "n": 6, - "e": 3494, - "g": 1 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3446 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 4, - "e": 3406 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3347 - } - ], - [ - 16, - { - "n": 8.5, - "e": 4149, - "g": 1 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ] - ] - } - ], - [ - 2566, - { - "n": "Johnston", - "f": "George", - "fp": "DC", - "r": 1, - "c": 21 - } - ], - [ - 2591, - { - "n": "Alisson", - "f": "", - "fp": "G", - "r": 17, - "c": 21, - "s": { - "s": 48, - "n": 9, - "a": 5.33, - "d": 0.71, - "Ss": 11.5, - "Sn": 2, - "Sa": 5.75, - "Sd": 0.35, - "Os": 161.5, - "On": 30, - "Oa": 5.38, - "Od": 0.84, - "pg": 30 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3543 - } - ], - [ - -37, - { - "n": 6, - "e": 3535 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3523 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3510 - } - ], - [ - -34, - { - "n": 6, - "e": 3503 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -31, - { - "n": 4, - "e": 3472 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3464 - } - ], - [ - -29, - { - "n": 6, - "e": 3451 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 6, - "e": 3435 - } - ], - [ - -26, - { - "n": 6, - "e": 3422 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 5, - "e": 3406 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3378 - } - ], - [ - -21, - { - "n": 5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5, - "e": 3363 - } - ], - [ - -19, - { - "n": 6, - "e": 3353 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3347 - } - ], - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4149 - } - ], - [ - 14, - { - "n": 4, - "e": 4171 - } - ], - [ - 13, - { - "n": 6, - "e": 4182 - } - ], - [ - 12, - { - "n": 6, - "e": 4190 - } - ], - [ - 11, - { - "n": 5, - "e": 4199 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4211 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4224 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4298 - } - ] - ] - } - ], - [ - 2884, - { - "n": "Elliott", - "f": "Harvey", - "fp": "MO", - "r": 1, - "c": 21, - "s": { - "Os": 10, - "On": 2, - "Oa": 5, - "pm": 2 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3541 - } - ], - [ - -37, - { - "n": 5, - "e": 3537 - } - ] - ] - } - ], - [ - 3117, - { - "n": "Hoever", - "f": "Ki-Jana", - "fp": "DL", - "r": 1, - "c": 21 - } - ], - [ - 3120, - { - "n": "Kelleher", - "f": "Caoimhin", - "fp": "G", - "r": 1, - "c": 21 - } - ], - [ - 3121, - { - "n": "Christie-Davies", - "f": "Isaac", - "fp": "MD", - "r": 1, - "c": 21 - } - ], - [ - 3639, - { - "n": "van den Berg", - "f": "Sepp", - "fp": "DC", - "r": 1, - "c": 21 - } - ], - [ - 3641, - { - "n": "Larouci", - "f": "Yasser", - "fp": "DC", - "r": 5, - "c": 21 - } - ], - [ - 3642, - { - "n": "Jaros", - "f": "Vitezslav", - "fp": "G", - "r": 1, - "c": 21 - } - ], - [ - 3666, - { - "n": "Atherton", - "f": "Daniel", - "fp": "G", - "r": 1, - "c": 21 - } - ], - [ - 3667, - { - "n": "Glatzel", - "f": "Paul", - "fp": "A", - "r": 1, - "c": 21 - } - ], - [ - 3672, - { - "n": "Lewis", - "f": "Adam", - "fp": "MD", - "r": 3, - "c": 21 - } - ], - [ - 5451, - { - "n": "Lonergan", - "f": "Andy", - "fp": "G", - "r": 1, - "c": 21 - } - ], - [ - 6124, - { - "n": "Chirivella", - "f": "Pedro", - "fp": "MD", - "r": 1, - "c": 21 - } - ], - [ - 14, - { - "n": "Mendy", - "f": "Benjamin", - "fp": "DL", - "r": 11, - "c": 40, - "s": { - "s": 28.5, - "n": 6, - "a": 4.75, - "d": 0.76, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 33.5, - "On": 7, - "Oa": 4.79, - "Od": 0.7, - "pd": 7 - }, - "p": [ - [ - 14, - { - "n": 4, - "e": 4172 - } - ], - [ - 6, - { - "n": 4, - "e": 4253 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - 17, - { - "n": 5, - "e": 4138 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4184 - } - ], - [ - 10, - { - "n": 6, - "e": 4212 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ] - ] - } - ], - [ - 25, - { - "n": "Bernardo Silva", - "f": "", - "fp": "MO", - "r": 33, - "c": 40, - "s": { - "g": 5, - "s": 89.5, - "n": 15, - "a": 5.97, - "d": 1.27, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Og": 8, - "Os": 203.5, - "On": 35, - "Oa": 5.81, - "Od": 0.99, - "pm": 19, - "pa": 16 - }, - "p": [ - [ - 16, - { - "n": 4, - "e": 4152 - } - ], - [ - 11, - { - "n": 6, - "e": 4204 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4231 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4264 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4294 - } - ], - [ - -31, - { - "n": 7, - "e": 3473, - "g": 1 - } - ], - [ - -35, - { - "n": 6, - "e": 3514 - } - ], - [ - -30, - { - "n": 6, - "e": 3465 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -22, - { - "n": 6, - "e": 3385 - } - ], - [ - -38, - { - "n": 5.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3519 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3500 - } - ], - [ - -32, - { - "n": 7.5, - "e": 3483, - "g": 1 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -27, - { - "n": 5, - "e": 3433 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 6, - "e": 3415 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3391 - } - ], - [ - -21, - { - "n": 6, - "e": 3374 - } - ], - [ - -20, - { - "n": 6, - "e": 3365 - } - ], - [ - -19, - { - "n": 6, - "e": 3352, - "g": 1 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3344 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4138 - } - ], - [ - 15, - { - "n": 7, - "e": 4159 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4172 - } - ], - [ - 12, - { - "n": 7, - "e": 4190, - "g": 1 - } - ], - [ - 10, - { - "n": 6, - "e": 4212 - } - ], - [ - 9, - { - "n": 7, - "e": 4221 - } - ], - [ - 7, - { - "n": 5, - "e": 4246 - } - ], - [ - 6, - { - "n": 9, - "e": 4253, - "g": 3 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4272, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4286 - } - ] - ], - "a": { - "m": 35, - "a": 47, - "M": 90, - "n": 8 - } - } - ], - [ - 588, - { - "n": "Agüero", - "f": "Sergio", - "fp": "A", - "r": 40, - "c": 40, - "s": { - "g": 9, - "s": 67.5, - "n": 12, - "a": 5.63, - "d": 1.37, - "Og": 22, - "Os": 183, - "On": 32, - "Oa": 5.72, - "Od": 1.25, - "pa": 32 - }, - "p": [ - [ - 1, - { - "n": 5, - "e": 4299, - "g": 1 - } - ], - [ - -38, - { - "n": 7, - "e": 3538, - "g": 1 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 7, - "e": 3519, - "g": 1 - } - ], - [ - -35, - { - "n": 6, - "e": 3514 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3483, - "g": 1 - } - ], - [ - -31, - { - "n": 5, - "e": 3473 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 6, - "e": 3447, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 8, - "e": 3423, - "g": 3 - } - ], - [ - -25, - { - "n": 8.5, - "e": 3415, - "g": 3 - } - ], - [ - -24, - { - "n": 6, - "e": 3404, - "g": 1 - } - ], - [ - -23, - { - "n": 5, - "e": 3391 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 6, - "e": 3374, - "g": 1 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3365, - "g": 1 - } - ], - [ - -19, - { - "n": 5, - "e": 3352 - } - ], - [ - -18, - { - "n": 4, - "e": 3344 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4184 - } - ], - [ - 12, - { - "n": 4, - "e": 4190 - } - ], - [ - 11, - { - "n": 6, - "e": 4204, - "g": 1 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4212 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4253, - "g": 1 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4264, - "g": 1 - } - ], - [ - 4, - { - "n": 8, - "e": 4272, - "g": 2 - } - ], - [ - 3, - { - "n": 8, - "e": 4286, - "g": 2 - } - ], - [ - 2, - { - "n": 6, - "e": 4294, - "g": 1 - } - ] - ], - "a": { - "m": 54, - "a": 73, - "M": 101, - "n": 5 - } - } - ], - [ - 593, - { - "n": "De Bruyne", - "f": "Kevin", - "fp": "MO", - "r": 34, - "c": 40, - "s": { - "g": 6, - "s": 106.5, - "n": 16, - "a": 6.66, - "d": 1.18, - "Sg": 4, - "Ss": 58, - "Sn": 9, - "Sa": 6.44, - "Sd": 1.1, - "Og": 8, - "Os": 190, - "On": 31, - "Oa": 6.13, - "Od": 1.2, - "pm": 31 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3538 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3514 - } - ], - [ - -34, - { - "n": 7.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 7, - "e": 3492, - "g": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3483 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3447 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 5, - "e": 3415 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3391 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3385 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3344, - "g": 1 - } - ], - [ - 17, - { - "n": 8, - "e": 4138, - "g": 2 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 15, - { - "n": 6, - "e": 4159 - } - ], - [ - 14, - { - "n": 8, - "e": 4172, - "g": 1 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4184, - "g": 1 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 7, - "e": 4212 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 8.5, - "e": 4253, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4264 - } - ], - [ - 4, - { - "n": 8, - "e": 4272, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 7.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 7.5, - "e": 4299 - } - ] - ], - "a": { - "m": 35, - "a": 46, - "M": 92, - "n": 11 - } - } - ], - [ - 594, - { - "n": "Sterling", - "f": "Raheem", - "fp": "A", - "r": 43, - "c": 40, - "s": { - "g": 9, - "s": 94.5, - "n": 16, - "a": 5.91, - "d": 1.2, - "Sg": 4, - "Ss": 61, - "Sn": 11, - "Sa": 5.55, - "Sd": 1.01, - "Og": 17, - "Os": 206, - "On": 36, - "Oa": 5.72, - "Od": 1.38, - "pm": 5, - "pa": 31 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3538 - } - ], - [ - -37, - { - "n": 4, - "e": 3534 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 3, - "e": 3514 - } - ], - [ - -34, - { - "n": 7, - "e": 3500, - "g": 2 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 7, - "e": 3473 - } - ], - [ - -30, - { - "n": 8, - "e": 3465, - "g": 3 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 5, - "e": 3447 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 8, - "e": 3423, - "g": 2 - } - ], - [ - -25, - { - "n": 7, - "e": 3415 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 7, - "e": 3391, - "g": 1 - } - ], - [ - -22, - { - "n": 6, - "e": 3385 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 6, - "e": 3365 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 3.5, - "e": 3344 - } - ], - [ - 17, - { - "n": 7, - "e": 4138, - "g": 1 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4159 - } - ], - [ - 14, - { - "n": 6, - "e": 4172, - "g": 1 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 11, - { - "n": 4, - "e": 4204 - } - ], - [ - 10, - { - "n": 7, - "e": 4212, - "g": 1 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 6, - "e": 4246, - "g": 1 - } - ], - [ - 5, - { - "n": 6, - "e": 4264 - } - ], - [ - 4, - { - "n": 5, - "e": 4272 - } - ], - [ - 3, - { - "n": 7, - "e": 4286, - "g": 1 - } - ], - [ - 2, - { - "n": 7, - "e": 4294, - "g": 1 - } - ], - [ - 1, - { - "n": 8.5, - "e": 4299, - "g": 3 - } - ] - ], - "a": { - "m": 64, - "a": 79, - "M": 112, - "n": 5 - } - } - ], - [ - 599, - { - "n": "David Silva", - "f": "", - "fp": "MO", - "r": 27, - "c": 40, - "s": { - "g": 3, - "s": 85.5, - "n": 15, - "a": 5.7, - "d": 1.46, - "Og": 4, - "Os": 191, - "On": 34, - "Oa": 5.62, - "Od": 1.13, - "pm": 34 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3538 - } - ], - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3500 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 5, - "e": 3473 - } - ], - [ - -30, - { - "n": 7.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 6, - "e": 3448 - } - ], - [ - -28, - { - "n": 5, - "e": 3447 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -26, - { - "n": 5, - "e": 3423 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 6, - "e": 3391 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 7, - "e": 3365, - "g": 1 - } - ], - [ - -19, - { - "n": 5, - "e": 3352 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 6.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 5, - "e": 4172 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ], - [ - 10, - { - "n": 7, - "e": 4212, - "g": 1 - } - ], - [ - 9, - { - "n": 7, - "e": 4221, - "g": 1 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 5, - "e": 4246 - } - ], - [ - 6, - { - "n": 8, - "e": 4253, - "g": 1 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 7, - "e": 4272 - } - ], - [ - 3, - { - "n": 8, - "e": 4286 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4299 - } - ] - ], - "a": { - "m": 28, - "a": 38, - "M": 51, - "n": 11 - } - } - ], - [ - 603, - { - "n": "Mahrez", - "f": "Riyad", - "fp": "MO", - "r": 15, - "c": 40, - "s": { - "g": 4, - "s": 76, - "n": 13, - "a": 5.85, - "d": 1.59, - "Sg": 2, - "Ss": 28, - "Sn": 5, - "Sa": 5.6, - "Sd": 1.02, - "Og": 6, - "Os": 134.5, - "On": 24, - "Oa": 5.6, - "Od": 1.42, - "pm": 2, - "pa": 22 - }, - "p": [ - [ - -38, - { - "n": 7.5, - "e": 3538, - "g": 1 - } - ], - [ - -33, - { - "n": 6, - "e": 3492 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3483 - } - ], - [ - -30, - { - "n": 7, - "e": 3465 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3448, - "g": 1 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3447 - } - ], - [ - -26, - { - "n": 4, - "e": 3423 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3415 - } - ], - [ - -20, - { - "n": 5, - "e": 3365 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3352 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3344 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 15, - { - "n": 6.5, - "e": 4159, - "g": 1 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4184, - "g": 1 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 8, - "e": 4246, - "g": 1 - } - ], - [ - 6, - { - "n": 8, - "e": 4253, - "g": 1 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 7, - "e": 4272 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 4, - "e": 4294 - } - ], - [ - 1, - { - "n": 8, - "e": 4299 - } - ] - ], - "a": { - "m": 18, - "a": 21, - "M": 24, - "n": 10 - } - } - ], - [ - 639, - { - "n": "Fernandinho", - "f": "", - "fp": "MD", - "r": 17, - "c": 40, - "s": { - "s": 70.5, - "n": 13, - "a": 5.42, - "d": 0.84, - "Ss": 64, - "Sn": 12, - "Sa": 5.33, - "Sd": 0.81, - "Os": 135, - "On": 25, - "Oa": 5.4, - "Od": 0.88, - "pd": 13, - "pm": 12 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -33, - { - "n": 6, - "e": 3492 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 5, - "e": 3473 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 4, - "e": 3404 - } - ], - [ - -23, - { - "n": 4, - "e": 3391 - } - ], - [ - -22, - { - "n": 7, - "e": 3385 - } - ], - [ - -21, - { - "n": 5, - "e": 3374 - } - ], - [ - -20, - { - "n": 6, - "e": 3365 - } - ], - [ - 17, - { - "n": 6, - "e": 4138 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4172 - } - ], - [ - 13, - { - "n": 6, - "e": 4184 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4190 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 6, - "e": 4246 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4253 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4272 - } - ] - ], - "a": { - "m": 21, - "a": 23, - "M": 28, - "n": 6 - } - } - ], - [ - 654, - { - "n": "Stones", - "f": "John", - "fp": "DC", - "r": 10, - "c": 40, - "s": { - "s": 47, - "n": 9, - "a": 5.22, - "d": 0.97, - "Os": 118, - "On": 22, - "Oa": 5.36, - "Od": 0.82, - "pd": 21, - "pm": 1 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3534 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 6, - "e": 3514 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3492 - } - ], - [ - -29, - { - "n": 6, - "e": 3448 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3423 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -22, - { - "n": 6, - "e": 3385 - } - ], - [ - -21, - { - "n": 6, - "e": 3374 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 5, - "e": 3344 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4152 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 12, - { - "n": 4, - "e": 4190 - } - ], - [ - 11, - { - "n": 6, - "e": 4204 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 5, - "e": 4221 - } - ], - [ - 5, - { - "n": 4, - "e": 4264 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4299 - } - ] - ] - } - ], - [ - 662, - { - "n": "Sané", - "f": "Leroy", - "fp": "A", - "r": 7, - "c": 40, - "s": { - "Og": 4, - "Os": 82.5, - "On": 16, - "Oa": 5.16, - "Od": 1.22, - "pm": 1, - "pa": 15 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3534 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3514 - } - ], - [ - -34, - { - "n": 6, - "e": 3500 - } - ], - [ - -33, - { - "n": 7, - "e": 3492, - "g": 1 - } - ], - [ - -31, - { - "n": 6, - "e": 3473, - "g": 1 - } - ], - [ - -30, - { - "n": 4, - "e": 3465 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3447 - } - ], - [ - -27, - { - "n": 4, - "e": 3433 - } - ], - [ - -24, - { - "n": 4, - "e": 3404 - } - ], - [ - -23, - { - "n": 7, - "e": 3391, - "g": 1 - } - ], - [ - -22, - { - "n": 7, - "e": 3385 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3374, - "g": 1 - } - ], - [ - -20, - { - "n": 4, - "e": 3365 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 5, - "e": 3344 - } - ] - ] - } - ], - [ - 674, - { - "n": "Otamendi", - "f": "Nicolás", - "fp": "DC", - "r": 15, - "c": 40, - "s": { - "g": 2, - "s": 56, - "n": 11, - "a": 5.09, - "d": 1, - "Sg": 1, - "Ss": 16.5, - "Sn": 3, - "Sa": 5.5, - "Sd": 0.87, - "Og": 2, - "Os": 116, - "On": 22, - "Oa": 5.27, - "Od": 0.91, - "pd": 22 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3538 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -32, - { - "n": 6, - "e": 3483 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 6, - "e": 3448 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3447 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -25, - { - "n": 6, - "e": 3415 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3391 - } - ], - [ - -21, - { - "n": 5, - "e": 3374 - } - ], - [ - -18, - { - "n": 3.5, - "e": 3344 - } - ], - [ - 17, - { - "n": 6, - "e": 4138 - } - ], - [ - 16, - { - "n": 6, - "e": 4152, - "g": 1 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4159 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 7, - "e": 4253, - "g": 1 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ] - ] - } - ], - [ - 678, - { - "n": "Walker", - "f": "Kyle", - "fp": "DL", - "r": 18, - "c": 40, - "s": { - "g": 1, - "s": 71, - "n": 14, - "a": 5.07, - "d": 1.14, - "Ss": 20.5, - "Sn": 4, - "Sa": 5.13, - "Sd": 0.85, - "Og": 1, - "Os": 172, - "On": 33, - "Oa": 5.21, - "Od": 0.91, - "pd": 33 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3534 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3514 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 6, - "e": 3492 - } - ], - [ - -32, - { - "n": 5, - "e": 3483 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -26, - { - "n": 6, - "e": 3423 - } - ], - [ - -25, - { - "n": 5, - "e": 3415 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5, - "e": 3391 - } - ], - [ - -22, - { - "n": 6.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5, - "e": 3365 - } - ], - [ - -18, - { - "n": 3.5, - "e": 3344 - } - ], - [ - 17, - { - "n": 6, - "e": 4138 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4172 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4190 - } - ], - [ - 11, - { - "n": 7.5, - "e": 4204, - "g": 1 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 5, - "e": 4246 - } - ], - [ - 6, - { - "n": 5, - "e": 4253 - } - ], - [ - 5, - { - "n": 4, - "e": 4264 - } - ], - [ - 4, - { - "n": 5, - "e": 4272 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ], - [ - 1, - { - "n": 7, - "e": 4299 - } - ] - ], - "a": { - "m": 22, - "a": 25, - "M": 30, - "n": 8 - } - } - ], - [ - 863, - { - "n": "Bravo", - "f": "Claudio", - "fp": "G", - "r": 7, - "c": 40, - "s": { - "s": 4, - "n": 1, - "a": 4, - "Os": 4, - "On": 1, - "Oa": 4, - "pg": 1 - }, - "p": [ - [ - 12, - { - "n": 4, - "e": 4190 - } - ] - ] - } - ], - [ - 866, - { - "n": "Gündogan", - "f": "Ilkay", - "fp": "MD", - "r": 21, - "c": 40, - "s": { - "g": 1, - "s": 81, - "n": 15, - "a": 5.4, - "d": 0.89, - "Ss": 11, - "Sn": 2, - "Sa": 5.5, - "Sd": 0.71, - "Og": 4, - "Os": 189.5, - "On": 34, - "Oa": 5.57, - "Od": 0.87, - "pm": 34 - }, - "p": [ - [ - -38, - { - "n": 7.5, - "e": 3538, - "g": 1 - } - ], - [ - -37, - { - "n": 6, - "e": 3534 - } - ], - [ - -36, - { - "n": 5, - "e": 3519 - } - ], - [ - -35, - { - "n": 6, - "e": 3514 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3500 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 6, - "e": 3473 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3433 - } - ], - [ - -26, - { - "n": 7, - "e": 3423, - "g": 1 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5, - "e": 3391 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -21, - { - "n": 5, - "e": 3374 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 5, - "e": 3344, - "g": 1 - } - ], - [ - 17, - { - "n": 6, - "e": 4138 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 14, - { - "n": 5, - "e": 4172 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4184 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 7.5, - "e": 4212, - "g": 1 - } - ], - [ - 9, - { - "n": 7, - "e": 4221 - } - ], - [ - 8, - { - "n": 5, - "e": 4231 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 5, - { - "n": 4, - "e": 4264 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5, - "e": 4299 - } - ] - ], - "a": { - "m": 23, - "a": 27, - "M": 30, - "n": 8 - } - } - ], - [ - 931, - { - "n": "Kompany", - "f": "Vincent", - "fp": "DC", - "r": 14, - "c": 40, - "s": { - "Og": 1, - "Os": 57, - "On": 10, - "Oa": 5.7, - "Od": 0.54, - "pd": 10 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3538 - } - ], - [ - -37, - { - "n": 7, - "e": 3534, - "g": 1 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3519 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3500 - } - ], - [ - -31, - { - "n": 6, - "e": 3473 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5, - "e": 3448 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3365 - } - ] - ] - } - ], - [ - 966, - { - "n": "Gabriel Jesus", - "f": "", - "fp": "A", - "r": 19, - "c": 40, - "s": { - "g": 5, - "s": 76.5, - "n": 14, - "a": 5.46, - "d": 1.28, - "Sg": 4, - "Ss": 59.5, - "Sn": 11, - "Sa": 5.41, - "Sd": 1.41, - "Og": 9, - "Os": 149.5, - "On": 29, - "Oa": 5.16, - "Od": 1.13, - "pa": 29 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3534 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3519 - } - ], - [ - -34, - { - "n": 6, - "e": 3500, - "g": 1 - } - ], - [ - -33, - { - "n": 6, - "e": 3492 - } - ], - [ - -32, - { - "n": 4, - "e": 3483 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 4, - "e": 3448 - } - ], - [ - -27, - { - "n": 6, - "e": 3433, - "g": 1 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -22, - { - "n": 7, - "e": 3385, - "g": 2 - } - ], - [ - -20, - { - "n": 5, - "e": 3365 - } - ], - [ - -18, - { - "n": 4, - "e": 3344 - } - ], - [ - 17, - { - "n": 6, - "e": 4138 - } - ], - [ - 16, - { - "n": 4, - "e": 4152 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4159, - "g": 2 - } - ], - [ - 14, - { - "n": 5, - "e": 4172 - } - ], - [ - 13, - { - "n": 4, - "e": 4184 - } - ], - [ - 12, - { - "n": 4, - "e": 4190 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 7.5, - "e": 4221, - "g": 1 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 7, - "e": 4246, - "g": 1 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4264 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4299, - "g": 1 - } - ] - ], - "a": { - "m": 14, - "a": 19, - "M": 23, - "n": 6 - } - } - ], - [ - 1005, - { - "n": "Foden", - "f": "Phil", - "fp": "MO", - "r": 6, - "c": 40, - "s": { - "s": 38, - "n": 8, - "a": 4.75, - "d": 0.53, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Og": 1, - "Os": 64, - "On": 13, - "Oa": 4.92, - "Od": 0.84, - "pm": 4, - "pa": 9 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3534 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3514, - "g": 1 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3492 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3447 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4138 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4212 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4221 - } - ], - [ - 1, - { - "n": 4, - "e": 4299 - } - ] - ] - } - ], - [ - 1049, - { - "n": "Aleix García", - "f": "", - "fp": "MD", - "r": 1, - "c": 40, - "s": { - "Og": 2, - "Os": 83.5, - "On": 17, - "Oa": 4.91, - "Od": 0.96, - "pm": 16, - "pa": 1 - }, - "p": [ - [ - -36, - { - "n": 5, - "e": 2323 - } - ], - [ - -32, - { - "n": 6, - "e": 2284 - } - ], - [ - -28, - { - "n": 5, - "e": 2249 - } - ], - [ - -27, - { - "n": 4, - "e": 2237 - } - ], - [ - -23, - { - "n": 4, - "e": 2196 - } - ], - [ - -17, - { - "n": 4.5, - "e": 2138 - } - ], - [ - -35, - { - "n": 5, - "e": 2315 - } - ], - [ - -33, - { - "n": 3.5, - "e": 2295 - } - ], - [ - -30, - { - "n": 4.5, - "e": 2263 - } - ], - [ - -26, - { - "n": 5, - "e": 2231 - } - ], - [ - -25, - { - "n": 4.5, - "e": 2217 - } - ], - [ - -24, - { - "n": 5, - "e": 2209 - } - ], - [ - -22, - { - "n": 4.5, - "e": 2184 - } - ], - [ - -21, - { - "n": 4.5, - "e": 2177 - } - ], - [ - -20, - { - "n": 7, - "e": 2163, - "g": 1 - } - ], - [ - -19, - { - "n": 4.5, - "e": 2157 - } - ], - [ - -18, - { - "n": 7, - "e": 2150, - "g": 1 - } - ] - ] - } - ], - [ - 1099, - { - "n": "Tosin Adarabioyo", - "f": "", - "fp": "DC", - "r": 1, - "c": 40 - } - ], - [ - 1279, - { - "n": "Ederson", - "f": "", - "fp": "G", - "r": 16, - "c": 40, - "s": { - "s": 86.5, - "n": 16, - "a": 5.41, - "d": 1.36, - "Ss": 26, - "Sn": 5, - "Sa": 5.2, - "Sd": 1.25, - "Os": 201, - "On": 37, - "Oa": 5.43, - "Od": 1.02, - "pg": 37 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3538 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3534 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 7, - "e": 3514 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3492 - } - ], - [ - -32, - { - "n": 5, - "e": 3483 - } - ], - [ - -31, - { - "n": 6, - "e": 3473 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -27, - { - "n": 6, - "e": 3433 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3423 - } - ], - [ - -25, - { - "n": 5, - "e": 3415 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 6, - "e": 3391 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 6, - "e": 3374 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 5, - "e": 3352 - } - ], - [ - -18, - { - "n": 4, - "e": 3344 - } - ], - [ - 17, - { - "n": 6, - "e": 4138 - } - ], - [ - 16, - { - "n": 7, - "e": 4152 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4159 - } - ], - [ - 14, - { - "n": 4, - "e": 4172 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4184 - } - ], - [ - 11, - { - "n": 4, - "e": 4204 - } - ], - [ - 10, - { - "n": 7, - "e": 4212 - } - ], - [ - 9, - { - "n": 6, - "e": 4221 - } - ], - [ - 8, - { - "n": 4, - "e": 4231 - } - ], - [ - 7, - { - "n": 7, - "e": 4246 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 3, - "e": 4264 - } - ], - [ - 4, - { - "n": 6, - "e": 4272 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 4, - "e": 4294 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4299 - } - ] - ], - "a": { - "m": 22, - "a": 31, - "M": 41, - "n": 11 - } - } - ], - [ - 1357, - { - "n": "Zinchenko", - "f": "Oleksandr", - "fp": "MD", - "r": 7, - "c": 40, - "s": { - "s": 39.5, - "n": 8, - "a": 4.94, - "d": 0.78, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 103.5, - "On": 20, - "Oa": 5.18, - "Od": 0.77, - "pd": 18, - "pm": 2 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3538 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3534 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -33, - { - "n": 5, - "e": 3492 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 5, - "e": 3473 - } - ], - [ - -30, - { - "n": 5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3447 - } - ], - [ - -26, - { - "n": 7, - "e": 3423 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3365 - } - ], - [ - 17, - { - "n": 5, - "e": 4138 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5, - "e": 4286 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6, - "e": 4299 - } - ] - ] - } - ], - [ - 1367, - { - "n": "Grimshaw", - "f": "Daniel", - "fp": "G", - "r": 1, - "c": 40 - } - ], - [ - 1617, - { - "n": "Laporte", - "f": "Aymeric", - "fp": "DC", - "r": 7, - "c": 40, - "s": { - "s": 22, - "n": 4, - "a": 5.5, - "d": 0.41, - "Og": 2, - "Os": 127.5, - "On": 22, - "Oa": 5.8, - "Od": 0.83, - "pd": 22 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3538, - "g": 1 - } - ], - [ - -37, - { - "n": 6, - "e": 3534 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3519 - } - ], - [ - -35, - { - "n": 6, - "e": 3514 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3500 - } - ], - [ - -33, - { - "n": 7, - "e": 3492 - } - ], - [ - -32, - { - "n": 6, - "e": 3483 - } - ], - [ - -31, - { - "n": 6, - "e": 3473 - } - ], - [ - -27, - { - "n": 7, - "e": 3433, - "g": 1 - } - ], - [ - -26, - { - "n": 6, - "e": 3423 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3415 - } - ], - [ - -24, - { - "n": 5, - "e": 3404 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3391 - } - ], - [ - -22, - { - "n": 6, - "e": 3385 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3374 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 4, - "e": 3352 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3344 - } - ], - [ - 4, - { - "n": 5, - "e": 4272 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6, - "e": 4299 - } - ] - ] - } - ], - [ - 1915, - { - "n": "Moreno", - "f": "Marlos", - "fp": "A", - "r": 1, - "c": 40 - } - ], - [ - 2124, - { - "n": "Nmecha", - "f": "Lukas", - "fp": "A", - "r": 3, - "c": 40 - } - ], - [ - 2427, - { - "n": "Rodrigo", - "f": "", - "fp": "MD", - "r": 22, - "c": 40, - "s": { - "g": 2, - "s": 89.5, - "n": 15, - "a": 5.97, - "d": 1.11, - "Sg": 1, - "Ss": 34.5, - "Sn": 6, - "Sa": 5.75, - "Sd": 1.21, - "Og": 3, - "Os": 217, - "On": 36, - "Oa": 6.03, - "Od": 0.95, - "pd": 1, - "pm": 35 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 2348, - "g": 1 - } - ], - [ - -37, - { - "n": 6, - "e": 2333 - } - ], - [ - -36, - { - "n": 4, - "e": 2328 - } - ], - [ - -35, - { - "n": 6, - "e": 2312 - } - ], - [ - -34, - { - "n": 5.5, - "e": 2303 - } - ], - [ - -33, - { - "n": 6.5, - "e": 2298 - } - ], - [ - -32, - { - "n": 7.5, - "e": 2283 - } - ], - [ - -31, - { - "n": 5.5, - "e": 2277 - } - ], - [ - -28, - { - "n": 5.5, - "e": 2242 - } - ], - [ - -27, - { - "n": 6.5, - "e": 2234 - } - ], - [ - -26, - { - "n": 6.5, - "e": 2229 - } - ], - [ - -25, - { - "n": 7, - "e": 2214 - } - ], - [ - -24, - { - "n": 5, - "e": 2207 - } - ], - [ - -22, - { - "n": 5.5, - "e": 2188 - } - ], - [ - -21, - { - "n": 6, - "e": 2174 - } - ], - [ - -20, - { - "n": 7, - "e": 2171 - } - ], - [ - -19, - { - "n": 6, - "e": 2153 - } - ], - [ - -18, - { - "n": 7, - "e": 2147 - } - ], - [ - -17, - { - "n": 6, - "e": 2133 - } - ], - [ - -30, - { - "n": 6.5, - "e": 2263 - } - ], - [ - -23, - { - "n": 5, - "e": 2192 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4138 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4152 - } - ], - [ - 15, - { - "n": 8, - "e": 4159, - "g": 1 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 6, - "e": 4184 - } - ], - [ - 12, - { - "n": 5, - "e": 4190 - } - ], - [ - 9, - { - "n": 6, - "e": 4221 - } - ], - [ - 8, - { - "n": 5, - "e": 4231 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4246 - } - ], - [ - 6, - { - "n": 7.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 7, - "e": 4264, - "g": 1 - } - ], - [ - 4, - { - "n": 7.5, - "e": 4272 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4299 - } - ] - ], - "a": { - "m": 26, - "a": 29, - "M": 31, - "n": 5 - } - } - ], - [ - 2756, - { - "n": "Arzani", - "f": "Daniel", - "fp": "MD", - "r": 8, - "c": 40 - } - ], - [ - 2818, - { - "n": "Sandler", - "f": "Philippe", - "fp": "DC", - "r": 1, - "c": 40 - } - ], - [ - 2830, - { - "n": "Muric", - "f": "Arijanet", - "fp": "G", - "r": 1, - "c": 40 - } - ], - [ - 2883, - { - "n": "Bernabé", - "f": "Adrián", - "fp": "MD", - "r": 1, - "c": 40 - } - ], - [ - 2928, - { - "n": "Gomes", - "f": "Claudio", - "fp": "MD", - "r": 1, - "c": 40 - } - ], - [ - 2973, - { - "n": "Eric García", - "f": "", - "fp": "DC", - "r": 5, - "c": 40, - "s": { - "s": 10.5, - "n": 2, - "a": 5.25, - "d": 0.35, - "Os": 10.5, - "On": 2, - "Oa": 5.25, - "Od": 0.35, - "pd": 2 - }, - "p": [ - [ - 15, - { - "n": 5, - "e": 4159 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4253 - } - ] - ] - } - ], - [ - 3224, - { - "n": "Poveda-Ocampo", - "f": "Ian Carlo", - "fp": "A", - "r": 1, - "c": 40 - } - ], - [ - 3226, - { - "n": "Bolton", - "f": "Luke", - "fp": "MD", - "r": 1, - "c": 40 - } - ], - [ - 3499, - { - "n": "Nmecha", - "f": "Felix", - "fp": "MD", - "r": 3, - "c": 40 - } - ], - [ - 3514, - { - "n": "Humphreys-Grant", - "f": "Cameron", - "fp": "DC", - "r": 1, - "c": 40 - } - ], - [ - 3692, - { - "n": "Palmer-Brown", - "f": "Erik", - "fp": "DC", - "r": 1, - "c": 40 - } - ], - [ - 3696, - { - "n": "Angeliño", - "f": "", - "fp": "DL", - "r": 13, - "c": 40, - "s": { - "s": 30, - "n": 6, - "a": 5, - "d": 0.32, - "Os": 30, - "On": 6, - "Oa": 5, - "Od": 0.32, - "pd": 6 - }, - "p": [ - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4159 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4190 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 5, - "e": 4212 - } - ], - [ - 6, - { - "n": 5, - "e": 4253 - } - ] - ] - } - ], - [ - 4567, - { - "n": "João Cancelo", - "f": "", - "fp": "DL", - "r": 14, - "c": 40, - "s": { - "s": 30.5, - "n": 6, - "a": 5.08, - "d": 1.07, - "Os": 30.5, - "On": 6, - "Oa": 5.08, - "Od": 1.07, - "pd": 6 - }, - "p": [ - [ - 13, - { - "n": 5, - "e": 4184 - } - ], - [ - 10, - { - "n": 6, - "e": 4212 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4221 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4231 - } - ], - [ - 6, - { - "n": 5, - "e": 4253 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4286 - } - ] - ] - } - ], - [ - 5412, - { - "n": "Bazunu", - "f": "Gavin", - "fp": "G", - "r": 1, - "c": 40 - } - ], - [ - 5417, - { - "n": "Dionkou", - "f": "Alpha Richard", - "fp": "DC", - "r": 1, - "c": 40 - } - ], - [ - 5419, - { - "n": "Zoubdi Touaizi", - "f": "Nabili", - "fp": "A", - "r": 1, - "c": 40 - } - ], - [ - 5420, - { - "n": "Harwood-Bellis", - "f": "Taylor", - "fp": "DC", - "r": 1, - "c": 40 - } - ], - [ - 5421, - { - "n": "Knight", - "f": "Ben", - "fp": "MD", - "r": 1, - "c": 40 - } - ], - [ - 5438, - { - "n": "Iker Pozo", - "f": "", - "fp": "MD", - "r": 1, - "c": 40 - } - ], - [ - 5993, - { - "n": "Doyle", - "f": "Tommy", - "fp": "MD", - "r": 1, - "c": 40 - } - ], - [ - 6128, - { - "n": "Carson", - "f": "Scott", - "fp": "G", - "r": 1, - "c": 40 - } - ], - [ - 595, - { - "n": "Pogba", - "f": "Paul", - "fp": "MD", - "r": 16, - "c": 31, - "s": { - "s": 26, - "n": 5, - "a": 5.2, - "d": 1.44, - "Og": 10, - "Os": 145.5, - "On": 26, - "Oa": 5.6, - "Od": 1.55, - "pm": 26 - }, - "p": [ - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - -38, - { - "n": 4.5, - "e": 3544 - } - ], - [ - -34, - { - "n": 7, - "e": 3504, - "g": 2 - } - ], - [ - -33, - { - "n": 4, - "e": 3497 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3486 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3453 - } - ], - [ - -22, - { - "n": 6.5, - "e": 3386 - } - ], - [ - -37, - { - "n": 4, - "e": 3533 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 4, - "e": 3512 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3458 - } - ], - [ - -28, - { - "n": 6, - "e": 3442 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 7.5, - "e": 3420, - "g": 2 - } - ], - [ - -25, - { - "n": 7, - "e": 3414 - } - ], - [ - -24, - { - "n": 6, - "e": 3403, - "g": 1 - } - ], - [ - -23, - { - "n": 7, - "e": 3393, - "g": 1 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3375 - } - ], - [ - -20, - { - "n": 9, - "e": 3364, - "g": 2 - } - ], - [ - -19, - { - "n": 8, - "e": 3354, - "g": 2 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3340 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4281 - } - ], - [ - 1, - { - "n": 7.5, - "e": 4307 - } - ] - ], - "a": { - "m": 29, - "a": 31, - "M": 32, - "n": 5 - } - } - ], - [ - 600, - { - "n": "de Gea", - "f": "David", - "fp": "G", - "r": 16, - "c": 31, - "s": { - "s": 88.5, - "n": 17, - "a": 5.21, - "d": 1.02, - "Ss": 10, - "Sn": 2, - "Sa": 5, - "Sd": 1.41, - "Os": 200, - "On": 38, - "Oa": 5.26, - "Od": 1.09, - "pg": 38 - }, - "p": [ - [ - 15, - { - "n": 6, - "e": 4163 - } - ], - [ - 13, - { - "n": 4, - "e": 4185 - } - ], - [ - 10, - { - "n": 5, - "e": 4214 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4237 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - -38, - { - "n": 5.5, - "e": 3544 - } - ], - [ - -37, - { - "n": 5, - "e": 3533 - } - ], - [ - -36, - { - "n": 4, - "e": 3524 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 7, - "e": 3486 - } - ], - [ - -31, - { - "n": 4, - "e": 3473 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3458 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3435 - } - ], - [ - -26, - { - "n": 6, - "e": 3420 - } - ], - [ - -25, - { - "n": 7, - "e": 3414 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 8.5, - "e": 3386 - } - ], - [ - -21, - { - "n": 6, - "e": 3375 - } - ], - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - -19, - { - "n": 5, - "e": 3354 - } - ], - [ - -18, - { - "n": 6, - "e": 3340 - } - ], - [ - 17, - { - "n": 4, - "e": 4144 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 14, - { - "n": 4, - "e": 4175 - } - ], - [ - 12, - { - "n": 5, - "e": 4197 - } - ], - [ - 11, - { - "n": 6, - "e": 4200 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4224 - } - ], - [ - 7, - { - "n": 6, - "e": 4247 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 4, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 7.5, - "e": 4307 - } - ] - ], - "a": { - "m": 20, - "a": 22, - "M": 25, - "n": 8 - } - } - ], - [ - 604, - { - "n": "Mata", - "f": "Juan", - "fp": "MO", - "r": 8, - "c": 31, - "s": { - "s": 44.5, - "n": 9, - "a": 4.94, - "d": 0.17, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 1, - "Os": 94, - "On": 19, - "Oa": 4.95, - "Od": 0.47, - "pm": 18, - "pa": 1 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3533 - } - ], - [ - -36, - { - "n": 6, - "e": 3524, - "g": 1 - } - ], - [ - -34, - { - "n": 5, - "e": 3504 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3486 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -26, - { - "n": 6, - "e": 3420 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -19, - { - "n": 5, - "e": 3354 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 5, - "e": 4307 - } - ] - ] - } - ], - [ - 608, - { - "n": "Antonio Valencia", - "f": "", - "fp": "DC", - "r": 4, - "c": 31, - "s": { - "Os": 10.5, - "On": 2, - "Oa": 5.25, - "Od": 0.35, - "pd": 1, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3544 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3375 - } - ] - ] - } - ], - [ - 616, - { - "n": "Matic", - "f": "Nemanja", - "fp": "MD", - "r": 8, - "c": 31, - "s": { - "s": 14, - "n": 3, - "a": 4.67, - "d": 0.29, - "Og": 1, - "Os": 87, - "On": 17, - "Oa": 5.12, - "Od": 1.01, - "pm": 17 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3533 - } - ], - [ - -36, - { - "n": 6, - "e": 3524 - } - ], - [ - -35, - { - "n": 3, - "e": 3512 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3486 - } - ], - [ - -30, - { - "n": 5, - "e": 3458 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3420 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 6, - "e": 3386 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3375 - } - ], - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - -19, - { - "n": 6, - "e": 3354, - "g": 1 - } - ], - [ - -18, - { - "n": 7, - "e": 3340 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ] - ] - } - ], - [ - 626, - { - "n": "Martial", - "f": "Anthony", - "fp": "A", - "r": 21, - "c": 31, - "s": { - "g": 4, - "s": 60.5, - "n": 11, - "a": 5.5, - "d": 1.1, - "Sg": 1, - "Ss": 11.5, - "Sn": 2, - "Sa": 5.75, - "Sd": 1.06, - "Og": 7, - "Os": 131, - "On": 25, - "Oa": 5.24, - "Od": 1.11, - "pm": 3, - "pa": 22 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3544 - } - ], - [ - -35, - { - "n": 3, - "e": 3512 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 6, - "e": 3486, - "g": 1 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3458 - } - ], - [ - -26, - { - "n": 7, - "e": 3420, - "g": 1 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 6, - "e": 3364 - } - ], - [ - -18, - { - "n": 7, - "e": 3340, - "g": 1 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 16, - { - "n": 6.5, - "e": 4152, - "g": 1 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 7, - "e": 4197 - } - ], - [ - 11, - { - "n": 4, - "e": 4200 - } - ], - [ - 10, - { - "n": 6, - "e": 4214, - "g": 1 - } - ], - [ - 9, - { - "n": 4, - "e": 4224 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 6, - "e": 4297, - "g": 1 - } - ], - [ - 1, - { - "n": 7, - "e": 4307, - "g": 1 - } - ] - ], - "a": { - "m": 19, - "a": 26, - "M": 43, - "n": 6 - } - } - ], - [ - 637, - { - "n": "Fellaini", - "f": "Marouane", - "fp": "MD", - "r": 7, - "c": 31, - "s": { - "Os": 5, - "On": 1, - "Oa": 5, - "pm": 1 - }, - "p": [ - [ - -18, - { - "n": 5, - "e": 3340 - } - ] - ] - } - ], - [ - 641, - { - "n": "Rashford", - "f": "Marcus", - "fp": "A", - "r": 39, - "c": 31, - "s": { - "g": 10, - "s": 100, - "n": 17, - "a": 5.88, - "d": 1.42, - "Sg": 10, - "Ss": 100, - "Sn": 17, - "Sa": 5.88, - "Sd": 1.42, - "Og": 17, - "Os": 202.5, - "On": 36, - "Oa": 5.63, - "Od": 1.33, - "pm": 11, - "pa": 25 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3544 - } - ], - [ - -37, - { - "n": 6, - "e": 3533 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 3, - "e": 3512 - } - ], - [ - -34, - { - "n": 4, - "e": 3504 - } - ], - [ - -32, - { - "n": 6, - "e": 3486, - "g": 1 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 5, - "e": 3458 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -25, - { - "n": 7, - "e": 3414, - "g": 1 - } - ], - [ - -24, - { - "n": 4, - "e": 3403 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3393, - "g": 1 - } - ], - [ - -22, - { - "n": 6, - "e": 3386, - "g": 1 - } - ], - [ - -21, - { - "n": 7.5, - "e": 3375, - "g": 1 - } - ], - [ - -20, - { - "n": 7, - "e": 3364, - "g": 1 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3354 - } - ], - [ - -18, - { - "n": 7, - "e": 3340, - "g": 1 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 16, - { - "n": 7, - "e": 4152, - "g": 1 - } - ], - [ - 15, - { - "n": 8, - "e": 4163, - "g": 2 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 7, - "e": 4185, - "g": 1 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4197, - "g": 1 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ], - [ - 10, - { - "n": 8, - "e": 4214, - "g": 1 - } - ], - [ - 9, - { - "n": 6, - "e": 4224, - "g": 1 - } - ], - [ - 8, - { - "n": 4, - "e": 4237 - } - ], - [ - 7, - { - "n": 6, - "e": 4247 - } - ], - [ - 6, - { - "n": 4, - "e": 4255 - } - ], - [ - 5, - { - "n": 6, - "e": 4260, - "g": 1 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 6, - "e": 4297 - } - ], - [ - 1, - { - "n": 8, - "e": 4307, - "g": 2 - } - ] - ], - "a": { - "m": 29, - "a": 48, - "M": 115, - "n": 8 - } - } - ], - [ - 706, - { - "n": "Bailly", - "f": "Eric", - "fp": "DC", - "r": 5, - "c": 31, - "s": { - "Os": 27.5, - "On": 5, - "Oa": 5.5, - "Od": 0.5, - "pd": 5 - }, - "p": [ - [ - -36, - { - "n": 6, - "e": 3524 - } - ], - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - -26, - { - "n": 5, - "e": 3420 - } - ], - [ - -25, - { - "n": 6, - "e": 3414 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3364 - } - ] - ] - } - ], - [ - 731, - { - "n": "Rojo", - "f": "Marcos", - "fp": "DC", - "r": 5, - "c": 31, - "s": { - "s": 14.5, - "n": 3, - "a": 4.83, - "d": 0.29, - "Os": 29, - "On": 6, - "Oa": 4.83, - "Od": 0.26, - "pd": 6 - }, - "p": [ - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -34, - { - "n": 5, - "e": 3504 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3486 - } - ], - [ - 12, - { - "n": 5, - "e": 4197 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ] - ] - } - ], - [ - 743, - { - "n": "Jones", - "f": "Phil", - "fp": "DC", - "r": 5, - "c": 31, - "s": { - "s": 3.5, - "n": 1, - "a": 3.5, - "Os": 86, - "On": 16, - "Oa": 5.38, - "Od": 1.06, - "pd": 16 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3544 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3533 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 6, - "e": 3504 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3486 - } - ], - [ - -26, - { - "n": 7, - "e": 3420 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3386 - } - ], - [ - -21, - { - "n": 6, - "e": 3375 - } - ], - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3354 - } - ], - [ - -18, - { - "n": 7, - "e": 3340 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4185 - } - ] - ] - } - ], - [ - 768, - { - "n": "Lingard", - "f": "Jesse", - "fp": "MO", - "r": 12, - "c": 31, - "s": { - "s": 70, - "n": 14, - "a": 5, - "d": 0.62, - "Ss": 40.5, - "Sn": 8, - "Sa": 5.06, - "Sd": 0.62, - "Og": 2, - "Os": 139, - "On": 28, - "Oa": 4.96, - "Od": 0.83, - "pm": 24, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3544 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 4, - "e": 3497 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3435 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 5, - "e": 3403 - } - ], - [ - -23, - { - "n": 4, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - -21, - { - "n": 5, - "e": 3375 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3364 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3354 - } - ], - [ - -18, - { - "n": 8, - "e": 3340, - "g": 2 - } - ], - [ - 17, - { - "n": 4, - "e": 4144 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4214 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 4, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6, - "e": 4307 - } - ] - ] - } - ], - [ - 804, - { - "n": "Shaw", - "f": "Luke", - "fp": "DL", - "r": 10, - "c": 31, - "s": { - "s": 35.5, - "n": 7, - "a": 5.07, - "d": 0.45, - "Ss": 19.5, - "Sn": 4, - "Sa": 4.88, - "Sd": 0.25, - "Os": 122.5, - "On": 24, - "Oa": 5.1, - "Od": 0.93, - "pd": 23, - "pm": 1 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3533 - } - ], - [ - -36, - { - "n": 6, - "e": 3524 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 7, - "e": 3486 - } - ], - [ - -31, - { - "n": 3, - "e": 3473 - } - ], - [ - -30, - { - "n": 5, - "e": 3458 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -26, - { - "n": 5, - "e": 3420 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3403 - } - ], - [ - -22, - { - "n": 6.5, - "e": 3386 - } - ], - [ - -21, - { - "n": 5, - "e": 3375 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3364 - } - ], - [ - -19, - { - "n": 4, - "e": 3354 - } - ], - [ - -18, - { - "n": 6, - "e": 3340 - } - ], - [ - 17, - { - "n": 5, - "e": 4144 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4175 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6, - "e": 4307 - } - ] - ] - } - ], - [ - 876, - { - "n": "Grant", - "f": "Lee", - "fp": "G", - "r": 1, - "c": 31 - } - ], - [ - 889, - { - "n": "Romero", - "f": "Sergio", - "fp": "G", - "r": 7, - "c": 31 - } - ], - [ - 898, - { - "n": "Maguire", - "f": "Harry", - "fp": "DC", - "r": 20, - "c": 31, - "s": { - "s": 91.5, - "n": 17, - "a": 5.38, - "d": 0.8, - "Ss": 91.5, - "Sn": 17, - "Sa": 5.38, - "Sd": 0.8, - "Og": 1, - "Os": 191, - "On": 36, - "Oa": 5.31, - "Od": 0.92, - "pd": 36 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3542 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3534 - } - ], - [ - -36, - { - "n": 6, - "e": 3522 - } - ], - [ - -35, - { - "n": 4, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3502 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3470 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3463 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3455 - } - ], - [ - -28, - { - "n": 6, - "e": 3441 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3434 - } - ], - [ - -26, - { - "n": 4, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3414 - } - ], - [ - -24, - { - "n": 7, - "e": 3406, - "g": 1 - } - ], - [ - -23, - { - "n": 4, - "e": 3397 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3372 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3362 - } - ], - [ - -19, - { - "n": 6, - "e": 3352 - } - ], - [ - -18, - { - "n": 6, - "e": 3341 - } - ], - [ - 17, - { - "n": 6, - "e": 4144 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4, - "e": 4175 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 5, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ], - [ - 10, - { - "n": 6, - "e": 4214 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 4, - "e": 4255 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 7, - "e": 4307 - } - ] - ], - "a": { - "m": 26, - "a": 30, - "M": 33, - "n": 6 - } - } - ], - [ - 947, - { - "n": "Young", - "f": "Ashley", - "fp": "DL", - "r": 10, - "c": 31, - "s": { - "s": 52, - "n": 11, - "a": 4.73, - "d": 0.34, - "Og": 1, - "Os": 139.5, - "On": 29, - "Oa": 4.81, - "Od": 0.69, - "pd": 28, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3544 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3533 - } - ], - [ - -36, - { - "n": 5, - "e": 3524 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3512 - } - ], - [ - -33, - { - "n": 3, - "e": 3497 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3486 - } - ], - [ - -31, - { - "n": 5, - "e": 3473 - } - ], - [ - -30, - { - "n": 4, - "e": 3458 - } - ], - [ - -29, - { - "n": 4, - "e": 3453 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3442, - "g": 1 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3435 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3414 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3403 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3386 - } - ], - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - -19, - { - "n": 5, - "e": 3354 - } - ], - [ - -18, - { - "n": 5, - "e": 3340 - } - ], - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5, - "e": 4214 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 4, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4281 - } - ] - ] - } - ], - [ - 1062, - { - "n": "Tuanzebe", - "f": "Axel", - "fp": "DC", - "r": 6, - "c": 31, - "s": { - "s": 22, - "n": 5, - "a": 4.4, - "d": 0.65, - "Os": 22, - "On": 5, - "Oa": 4.4, - "Od": 0.65, - "pd": 5 - }, - "p": [ - [ - 16, - { - "n": 5, - "e": 4152 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 8, - { - "n": 4, - "e": 4237 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4247 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ] - ] - } - ], - [ - 1063, - { - "n": "Fosu-Mensah", - "f": "Timothy", - "fp": "DL", - "r": 1, - "c": 31, - "s": { - "Os": 23.5, - "On": 5, - "Oa": 4.7, - "Od": 0.67, - "pd": 5 - }, - "p": [ - [ - -34, - { - "n": 5.5, - "e": 3501 - } - ], - [ - -32, - { - "n": 4, - "e": 3483 - } - ], - [ - -31, - { - "n": 5, - "e": 3472 - } - ], - [ - -25, - { - "n": 5, - "e": 3412 - } - ], - [ - -21, - { - "n": 4, - "e": 3369 - } - ] - ] - } - ], - [ - 1079, - { - "n": "James", - "f": "Daniel", - "fp": "MO", - "r": 20, - "c": 31, - "s": { - "g": 3, - "s": 98, - "n": 17, - "a": 5.76, - "d": 0.87, - "Sg": 3, - "Ss": 98, - "Sn": 17, - "Sa": 5.76, - "Sd": 0.87, - "Og": 3, - "Os": 98, - "On": 17, - "Oa": 5.76, - "Od": 0.87, - "pm": 15, - "pa": 2 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4144 - } - ], - [ - 16, - { - "n": 7, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 6, - "e": 4185 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 7, - "e": 4214 - } - ], - [ - 9, - { - "n": 6, - "e": 4224 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4247 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 7, - "e": 4268, - "g": 1 - } - ], - [ - 3, - { - "n": 6, - "e": 4281, - "g": 1 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4307, - "g": 1 - } - ] - ], - "a": { - "m": 18, - "a": 21, - "M": 26, - "n": 8 - } - } - ], - [ - 1080, - { - "n": "Joel Pereira", - "f": "", - "fp": "G", - "r": 1, - "c": 31 - } - ], - [ - 1095, - { - "n": "Wan-Bissaka", - "f": "Aaron", - "fp": "DL", - "r": 17, - "c": 31, - "s": { - "s": 76, - "n": 15, - "a": 5.07, - "d": 0.88, - "Ss": 46.5, - "Sn": 9, - "Sa": 5.17, - "Sd": 0.66, - "Os": 176.5, - "On": 34, - "Oa": 5.19, - "Od": 0.78, - "pd": 32, - "pm": 2 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3540 - } - ], - [ - -37, - { - "n": 5, - "e": 3530 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3520 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3509 - } - ], - [ - -34, - { - "n": 5, - "e": 3500 - } - ], - [ - -33, - { - "n": 6, - "e": 3493 - } - ], - [ - -32, - { - "n": 6, - "e": 3482 - } - ], - [ - -31, - { - "n": 5, - "e": 3474 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3461 - } - ], - [ - -29, - { - "n": 7, - "e": 3450 - } - ], - [ - -26, - { - "n": 5, - "e": 3419 - } - ], - [ - -25, - { - "n": 6, - "e": 3412 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4, - "e": 3392 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3377 - } - ], - [ - -20, - { - "n": 5, - "e": 3360 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3350 - } - ], - [ - -18, - { - "n": 5, - "e": 3344 - } - ], - [ - 17, - { - "n": 6, - "e": 4144 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 4, - "e": 4185 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 6, - { - "n": 4, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4260 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 7, - "e": 4307 - } - ] - ] - } - ], - [ - 1286, - { - "n": "Lindelöf", - "f": "Victor", - "fp": "DC", - "r": 17, - "c": 31, - "s": { - "g": 1, - "ao": 1, - "s": 82.5, - "n": 16, - "a": 5.16, - "d": 0.91, - "Sg": 1, - "Sao": 1, - "Ss": 46.5, - "Sn": 9, - "Sa": 5.17, - "Sd": 0.79, - "Og": 2, - "Oao": 1, - "Os": 175, - "On": 33, - "Oa": 5.3, - "Od": 0.94, - "pd": 33 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3533 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 3, - "e": 3512 - } - ], - [ - -33, - { - "n": 4, - "e": 3497 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 5, - "e": 3458 - } - ], - [ - -29, - { - "n": 5, - "e": 3453 - } - ], - [ - -28, - { - "n": 7, - "e": 3442 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3435 - } - ], - [ - -25, - { - "n": 6, - "e": 3414 - } - ], - [ - -24, - { - "n": 6, - "e": 3403, - "g": 1 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3393 - } - ], - [ - -22, - { - "n": 6, - "e": 3386 - } - ], - [ - -21, - { - "n": 7, - "e": 3375 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3364 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3354 - } - ], - [ - -18, - { - "n": 6, - "e": 3340 - } - ], - [ - 17, - { - "n": 4, - "e": 4144, - "a": 1 - } - ], - [ - 16, - { - "n": 6, - "e": 4152 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 6, - "e": 4175, - "g": 1 - } - ], - [ - 13, - { - "n": 4, - "e": 4185 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4224 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 6, - "e": 4268 - } - ], - [ - 3, - { - "n": 4, - "e": 4281 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6, - "e": 4307 - } - ] - ] - } - ], - [ - 1355, - { - "n": "Andreas Pereira", - "f": "", - "fp": "MO", - "r": 10, - "c": 31, - "s": { - "g": 1, - "s": 76, - "n": 15, - "a": 5.07, - "d": 0.75, - "Og": 2, - "Os": 126.5, - "On": 26, - "Oa": 4.87, - "Od": 0.76, - "pm": 25, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3544 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 5, - "e": 3504 - } - ], - [ - -33, - { - "n": 5, - "e": 3497 - } - ], - [ - -32, - { - "n": 4, - "e": 3486 - } - ], - [ - -31, - { - "n": 4, - "e": 3473 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3453, - "g": 1 - } - ], - [ - -27, - { - "n": 5, - "e": 3435 - } - ], - [ - -24, - { - "n": 3, - "e": 3403 - } - ], - [ - -20, - { - "n": 5, - "e": 3364 - } - ], - [ - -18, - { - "n": 5, - "e": 3340 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4152 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4, - "e": 4175 - } - ], - [ - 13, - { - "n": 4, - "e": 4185 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4197, - "g": 1 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4260 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4268 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4307 - } - ] - ] - } - ], - [ - 2062, - { - "n": "McTominay", - "f": "Scott", - "fp": "MD", - "r": 19, - "c": 31, - "s": { - "g": 2, - "s": 84, - "n": 15, - "a": 5.6, - "d": 0.85, - "Ss": 19, - "Sn": 3, - "Sa": 6.33, - "Sd": 0.29, - "Og": 4, - "Os": 135, - "On": 25, - "Oa": 5.4, - "Od": 0.82, - "pm": 25 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3544 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3533, - "g": 1 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3524 - } - ], - [ - -35, - { - "n": 4, - "e": 3512 - } - ], - [ - -33, - { - "n": 6, - "e": 3497, - "g": 1 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3442 - } - ], - [ - -27, - { - "n": 6, - "e": 3435 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3420 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4144 - } - ], - [ - 16, - { - "n": 6.5, - "e": 4152 - } - ], - [ - 15, - { - "n": 6, - "e": 4163 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4214, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4247, - "g": 1 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 6, - "e": 4260 - } - ], - [ - 4, - { - "n": 6, - "e": 4268 - } - ], - [ - 3, - { - "n": 5, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6.5, - "e": 4307 - } - ] - ] - } - ], - [ - 2286, - { - "n": "Gomes", - "f": "Angel", - "fp": "MO", - "r": 1, - "c": 31, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Os": 14.5, - "On": 3, - "Oa": 4.83, - "Od": 0.29, - "pm": 2, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3544 - } - ], - [ - -19, - { - "n": 5, - "e": 3354 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4255 - } - ] - ] - } - ], - [ - 2341, - { - "n": "Hamilton", - "f": "Ethan", - "fp": "MD", - "r": 8, - "c": 31 - } - ], - [ - 2541, - { - "n": "Diogo Dalot", - "f": "", - "fp": "DL", - "r": 3, - "c": 31, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 62.5, - "On": 13, - "Oa": 4.81, - "Od": 0.6, - "pd": 10, - "pm": 2, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3544 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3533 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 5, - "e": 3504 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3497 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3458 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3442 - } - ], - [ - -26, - { - "n": 5, - "e": 3420 - } - ], - [ - -23, - { - "n": 5, - "e": 3393 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3354 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ] - ] - } - ], - [ - 2601, - { - "n": "Fred", - "f": "", - "fp": "MO", - "r": 14, - "c": 31, - "s": { - "s": 71, - "n": 13, - "a": 5.46, - "d": 0.59, - "Ss": 71, - "Sn": 13, - "Sa": 5.46, - "Sd": 0.59, - "Os": 113, - "On": 22, - "Oa": 5.14, - "Od": 0.74, - "pm": 22 - }, - "p": [ - [ - -35, - { - "n": 3.5, - "e": 3512 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 4, - "e": 3497 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3473 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3458 - } - ], - [ - -29, - { - "n": 5, - "e": 3453 - } - ], - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - -19, - { - "n": 4, - "e": 3354 - } - ], - [ - -18, - { - "n": 5, - "e": 3340 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4144 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4152 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4175 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 6, - "e": 4197 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4224 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 5, - "e": 4247 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4260 - } - ] - ] - } - ], - [ - 2750, - { - "n": "Kovar", - "f": "Matej", - "fp": "G", - "r": 1, - "c": 31 - } - ], - [ - 2751, - { - "n": "Chong", - "f": "Tahith", - "fp": "MO", - "r": 1, - "c": 31, - "s": { - "s": 8.5, - "n": 2, - "a": 4.25, - "d": 0.35, - "Os": 17.5, - "On": 4, - "Oa": 4.38, - "Od": 0.25, - "pa": 4 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3533 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - 8, - { - "n": 4, - "e": 4237 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4260 - } - ] - ] - } - ], - [ - 2752, - { - "n": "Bohui", - "f": "Joshua", - "fp": "A", - "r": 1, - "c": 31 - } - ], - [ - 2757, - { - "n": "O'Hara", - "f": "Kieran", - "fp": "G", - "r": 1, - "c": 31 - } - ], - [ - 2976, - { - "n": "Greenwood", - "f": "Mason", - "fp": "A", - "r": 6, - "c": 31, - "s": { - "g": 2, - "s": 61.5, - "n": 13, - "a": 4.73, - "d": 0.63, - "Sg": 1, - "Ss": 6, - "Sn": 1, - "Sa": 6, - "Og": 2, - "Os": 75.5, - "On": 16, - "Oa": 4.72, - "Od": 0.58, - "pa": 16 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3544 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3504 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3458 - } - ], - [ - 17, - { - "n": 6, - "e": 4144, - "g": 1 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 6, - "e": 4185, - "g": 1 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4197 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4200 - } - ], - [ - 10, - { - "n": 4, - "e": 4214 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 4, - "e": 4247 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4281 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4307 - } - ] - ] - } - ], - [ - 3118, - { - "n": "Garner", - "f": "James", - "fp": "MD", - "r": 1, - "c": 31, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 10, - "On": 2, - "Oa": 5, - "pm": 2 - }, - "p": [ - [ - -28, - { - "n": 5, - "e": 3442 - } - ], - [ - 10, - { - "n": 5, - "e": 4214 - } - ] - ] - } - ], - [ - 6285, - { - "n": "Williams", - "f": "Brandon", - "fp": "DL", - "r": 7, - "c": 31, - "s": { - "g": 1, - "s": 18.5, - "n": 4, - "a": 4.63, - "d": 0.75, - "Og": 1, - "Os": 18.5, - "On": 4, - "Oa": 4.63, - "Od": 0.75, - "pd": 3, - "pm": 1 - }, - "p": [ - [ - 14, - { - "n": 3.5, - "e": 4175 - } - ], - [ - 13, - { - "n": 5, - "e": 4185, - "g": 1 - } - ], - [ - 12, - { - "n": 5, - "e": 4197 - } - ], - [ - 11, - { - "n": 5, - "e": 4200 - } - ] - ] - } - ], - [ - 6339, - { - "n": "Bernard", - "f": "Di'Shon", - "fp": "DC", - "r": 1, - "c": 31 - } - ], - [ - 30, - { - "n": "Saint-Maximin", - "f": "Allan", - "fp": "MO", - "r": 20, - "c": 46, - "s": { - "g": 1, - "s": 67, - "n": 12, - "a": 5.58, - "d": 0.6, - "Og": 4, - "Os": 157, - "On": 30, - "Oa": 5.23, - "Od": 0.94, - "pm": 12, - "pa": 18 - }, - "p": [ - [ - 16, - { - "n": 6.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4161, - "g": 1 - } - ], - [ - 11, - { - "n": 6, - "e": 4207 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4213 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3099 - } - ], - [ - -36, - { - "n": 5, - "e": 3088 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3078 - } - ], - [ - -34, - { - "n": 6, - "e": 3069 - } - ], - [ - -32, - { - "n": 5, - "e": 3049 - } - ], - [ - -31, - { - "n": 5, - "e": 3037 - } - ], - [ - -29, - { - "n": 4, - "e": 3018 - } - ], - [ - -28, - { - "n": 4, - "e": 3004 - } - ], - [ - -27, - { - "n": 6.5, - "e": 2999 - } - ], - [ - -24, - { - "n": 5, - "e": 2967 - } - ], - [ - -22, - { - "n": 7, - "e": 2948, - "g": 1 - } - ], - [ - -20, - { - "n": 6.5, - "e": 2929, - "g": 1 - } - ], - [ - -38, - { - "n": 6, - "e": 3108 - } - ], - [ - -33, - { - "n": 5, - "e": 3056 - } - ], - [ - -26, - { - "n": 4.5, - "e": 2982 - } - ], - [ - -23, - { - "n": 3.5, - "e": 2955 - } - ], - [ - -21, - { - "n": 5, - "e": 2939 - } - ], - [ - -17, - { - "n": 5, - "e": 2895, - "g": 1 - } - ], - [ - 14, - { - "n": 6, - "e": 4172 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 6, - "e": 4191 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 6, - "e": 4237 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4306 - } - ] - ] - } - ], - [ - 132, - { - "n": "Saivet", - "f": "Henri", - "fp": "MD", - "r": 3, - "c": 46 - } - ], - [ - 628, - { - "n": "Carroll", - "f": "Andy", - "fp": "A", - "r": 9, - "c": 46, - "s": { - "s": 48, - "n": 10, - "a": 4.8, - "d": 0.75, - "Ss": 15.5, - "Sn": 3, - "Sa": 5.17, - "Sd": 1.44, - "Os": 86.5, - "On": 19, - "Oa": 4.55, - "Od": 0.66, - "pa": 19 - }, - "p": [ - [ - -24, - { - "n": 4.5, - "e": 3402 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3447 - } - ], - [ - -25, - { - "n": 4, - "e": 3417 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3387 - } - ], - [ - -21, - { - "n": 4, - "e": 3376 - } - ], - [ - -20, - { - "n": 5, - "e": 3359 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3355 - } - ], - [ - 17, - { - "n": 3.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 6, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4161 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5, - "e": 4191 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4207 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4254 - } - ] - ] - } - ], - [ - 707, - { - "n": "Rondón", - "f": "Salomón", - "fp": "A", - "r": 25, - "c": 46, - "s": { - "Og": 7, - "Os": 113.5, - "On": 20, - "Oa": 5.68, - "Od": 1.12, - "pa": 20 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3541, - "g": 1 - } - ], - [ - -37, - { - "n": 7, - "e": 3535, - "g": 1 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3518 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 4, - "e": 3478 - } - ], - [ - -31, - { - "n": 6.5, - "e": 3468, - "g": 1 - } - ], - [ - -30, - { - "n": 7, - "e": 3466, - "g": 1 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -27, - { - "n": 8, - "e": 3436, - "g": 1 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 6, - "e": 3404, - "g": 1 - } - ], - [ - -23, - { - "n": 6, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3367, - "g": 1 - } - ], - [ - -18, - { - "n": 5, - "e": 3345 - } - ] - ] - } - ], - [ - 814, - { - "n": "Manquillo", - "f": "Javier", - "fp": "DL", - "r": 9, - "c": 46, - "s": { - "s": 42.5, - "n": 8, - "a": 5.31, - "d": 0.84, - "Ss": 22, - "Sn": 4, - "Sa": 5.5, - "Sd": 1.08, - "Os": 98.5, - "On": 19, - "Oa": 5.18, - "Od": 0.65, - "pd": 18, - "pm": 1 - }, - "p": [ - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - -37, - { - "n": 5, - "e": 3535 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3502 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 6, - "e": 3444 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -18, - { - "n": 5, - "e": 3345 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 7, - "e": 4161 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4172 - } - ], - [ - 6, - { - "n": 6, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4258 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4306 - } - ] - ] - } - ], - [ - 839, - { - "n": "Ki Sung-Yueng", - "f": "", - "fp": "MD", - "r": 3, - "c": 46, - "s": { - "s": 15, - "n": 3, - "a": 5, - "d": 0.5, - "Os": 56, - "On": 11, - "Oa": 5.09, - "Od": 0.63, - "pm": 11 - }, - "p": [ - [ - 2, - { - "n": 4.5, - "e": 4292 - } - ], - [ - -37, - { - "n": 5, - "e": 3535 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3518 - } - ], - [ - -35, - { - "n": 6, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5, - "e": 3478 - } - ], - [ - -30, - { - "n": 4, - "e": 3466 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3345 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ] - ] - } - ], - [ - 913, - { - "n": "Fernández", - "f": "Federico", - "fp": "DC", - "r": 14, - "c": 46, - "s": { - "g": 2, - "s": 60.5, - "n": 11, - "a": 5.5, - "d": 0.81, - "Sg": 2, - "Ss": 45, - "Sn": 8, - "Sa": 5.63, - "Sd": 0.92, - "Og": 2, - "Os": 88, - "On": 17, - "Oa": 5.18, - "Od": 0.92, - "pd": 17 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3541 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5, - "e": 3515 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3468 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3353 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 6, - "e": 4153, - "g": 1 - } - ], - [ - 15, - { - "n": 6, - "e": 4161 - } - ], - [ - 14, - { - "n": 5, - "e": 4172 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 7, - "e": 4207, - "g": 1 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4213 - } - ], - [ - 5, - { - "n": 5, - "e": 4258 - } - ], - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4287 - } - ] - ] - } - ], - [ - 1466, - { - "n": "Gayle", - "f": "Dwight", - "fp": "A", - "r": 3, - "c": 46, - "s": { - "s": 21, - "n": 5, - "a": 4.2, - "d": 0.27, - "Ss": 4, - "Sn": 1, - "Sa": 4, - "Os": 21, - "On": 5, - "Oa": 4.2, - "Od": 0.27, - "pa": 5 - }, - "p": [ - [ - 17, - { - "n": 4, - "e": 4139 - } - ], - [ - 14, - { - "n": 4, - "e": 4172 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4179 - } - ], - [ - 10, - { - "n": 4, - "e": 4213 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ] - ] - } - ], - [ - 1468, - { - "n": "Ritchie", - "f": "Matt", - "fp": "MD", - "r": 3, - "c": 46, - "s": { - "s": 14.5, - "n": 3, - "a": 4.83, - "d": 1.04, - "Og": 2, - "Os": 131, - "On": 24, - "Oa": 5.46, - "Od": 0.97, - "pd": 20, - "pm": 4 - }, - "p": [ - [ - -38, - { - "n": 7.5, - "e": 3541 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 6, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5, - "e": 3478 - } - ], - [ - -31, - { - "n": 6, - "e": 3468, - "g": 1 - } - ], - [ - -30, - { - "n": 5, - "e": 3466 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6, - "e": 3436 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 7, - "e": 3416 - } - ], - [ - -24, - { - "n": 7, - "e": 3404, - "g": 1 - } - ], - [ - -23, - { - "n": 5, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 7, - "e": 3367 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3353 - } - ], - [ - -18, - { - "n": 5, - "e": 3345 - } - ], - [ - 3, - { - "n": 6, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4292 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4306 - } - ] - ] - } - ], - [ - 1469, - { - "n": "Lascelles", - "f": "Jamaal", - "fp": "DC", - "r": 10, - "c": 46, - "s": { - "g": 1, - "s": 60.5, - "n": 12, - "a": 5.04, - "d": 1.1, - "Og": 1, - "Os": 165, - "On": 31, - "Oa": 5.32, - "Od": 1.1, - "pd": 31 - }, - "p": [ - [ - -38, - { - "n": 7.5, - "e": 3541 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3535 - } - ], - [ - -35, - { - "n": 6, - "e": 3515 - } - ], - [ - -34, - { - "n": 7, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3478 - } - ], - [ - -30, - { - "n": 4, - "e": 3466 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6, - "e": 3436 - } - ], - [ - -26, - { - "n": 6, - "e": 3427 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 5, - "e": 3404 - } - ], - [ - -23, - { - "n": 7.5, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3353 - } - ], - [ - -18, - { - "n": 6, - "e": 3345 - } - ], - [ - 12, - { - "n": 4, - "e": 4191 - } - ], - [ - 11, - { - "n": 5, - "e": 4207 - } - ], - [ - 10, - { - "n": 7, - "e": 4213, - "g": 1 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4258 - } - ], - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - 3, - { - "n": 7, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4292 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4306 - } - ] - ], - "a": { - "m": 18, - "a": 20, - "M": 27, - "n": 5 - } - } - ], - [ - 1475, - { - "n": "Darlow", - "f": "Karl", - "fp": "G", - "r": 7, - "c": 46 - } - ], - [ - 1476, - { - "n": "Shelvey", - "f": "Jonjo", - "fp": "MO", - "r": 18, - "c": 46, - "s": { - "g": 5, - "s": 62.5, - "n": 11, - "a": 5.68, - "d": 1.06, - "Og": 6, - "Os": 99.5, - "On": 18, - "Oa": 5.53, - "Od": 1.02, - "pm": 18 - }, - "p": [ - [ - -38, - { - "n": 7.5, - "e": 3541, - "g": 1 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3493 - } - ], - [ - -31, - { - "n": 5, - "e": 3468 - } - ], - [ - -30, - { - "n": 5, - "e": 3466 - } - ], - [ - -21, - { - "n": 5, - "e": 3375 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - 16, - { - "n": 6, - "e": 4153, - "g": 1 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4161, - "g": 1 - } - ], - [ - 14, - { - "n": 7, - "e": 4172, - "g": 1 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4207, - "g": 1 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 6, - { - "n": 6, - "e": 4254 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4258 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4292, - "g": 1 - } - ], - [ - 1, - { - "n": 4, - "e": 4306 - } - ] - ] - } - ], - [ - 1485, - { - "n": "Lejeune", - "f": "Florian", - "fp": "DC", - "r": 7, - "c": 46, - "s": { - "Os": 65, - "On": 12, - "Oa": 5.42, - "Od": 0.9, - "pd": 12 - }, - "p": [ - [ - -33, - { - "n": 5.5, - "e": 3493 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 6, - "e": 3468 - } - ], - [ - -30, - { - "n": 5, - "e": 3466 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 6, - "e": 3444 - } - ], - [ - -27, - { - "n": 6, - "e": 3436 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 6, - "e": 3404 - } - ], - [ - -23, - { - "n": 7, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ] - ] - } - ], - [ - 1487, - { - "n": "Atsu", - "f": "Christian", - "fp": "MO", - "r": 7, - "c": 46, - "s": { - "s": 72, - "n": 14, - "a": 5.14, - "d": 0.84, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Og": 1, - "Os": 159.5, - "On": 31, - "Oa": 5.15, - "Od": 0.77, - "pm": 31 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3541 - } - ], - [ - -37, - { - "n": 7, - "e": 3535, - "g": 1 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5, - "e": 3515 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3493 - } - ], - [ - -31, - { - "n": 5, - "e": 3468 - } - ], - [ - -29, - { - "n": 5, - "e": 3456 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3436 - } - ], - [ - -26, - { - "n": 6, - "e": 3427 - } - ], - [ - -25, - { - "n": 5, - "e": 3416 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3375 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367 - } - ], - [ - -18, - { - "n": 5, - "e": 3345 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4139 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5, - "e": 4191 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4207 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 6, - "e": 4254 - } - ], - [ - 5, - { - "n": 4, - "e": 4258 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 7, - "e": 4287 - } - ] - ] - } - ], - [ - 1488, - { - "n": "Hayden", - "f": "Isaac", - "fp": "MD", - "r": 13, - "c": 46, - "s": { - "s": 73.5, - "n": 14, - "a": 5.25, - "d": 0.7, - "Ss": 36.5, - "Sn": 7, - "Sa": 5.21, - "Sd": 0.49, - "Og": 1, - "Os": 184, - "On": 34, - "Oa": 5.41, - "Od": 0.89, - "pd": 1, - "pm": 33 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3541 - } - ], - [ - -37, - { - "n": 5, - "e": 3535 - } - ], - [ - -36, - { - "n": 6, - "e": 3518 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5, - "e": 3478 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3468 - } - ], - [ - -30, - { - "n": 5, - "e": 3466 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 6, - "e": 3444 - } - ], - [ - -27, - { - "n": 7, - "e": 3436 - } - ], - [ - -26, - { - "n": 7, - "e": 3427, - "g": 1 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 6, - "e": 3404 - } - ], - [ - -23, - { - "n": 7, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3375 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3353 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 5, - "e": 4172 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4179 - } - ], - [ - 12, - { - "n": 5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4207 - } - ], - [ - 7, - { - "n": 4, - "e": 4245 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 6, - "e": 4273 - } - ], - [ - 3, - { - "n": 6, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4292 - } - ], - [ - 1, - { - "n": 6, - "e": 4306 - } - ] - ] - } - ], - [ - 1491, - { - "n": "Dummett", - "f": "Paul", - "fp": "DL", - "r": 10, - "c": 46, - "s": { - "ao": 1, - "s": 67, - "n": 14, - "a": 4.79, - "d": 1.09, - "Ss": 34, - "Sn": 7, - "Sa": 4.86, - "Sd": 0.75, - "Oao": 1, - "Os": 144, - "On": 29, - "Oa": 4.97, - "Od": 1.03, - "pd": 29 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3541 - } - ], - [ - -37, - { - "n": 4, - "e": 3535 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 6, - "e": 3468 - } - ], - [ - -30, - { - "n": 6, - "e": 3466 - } - ], - [ - -29, - { - "n": 5, - "e": 3456 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 6, - "e": 3367 - } - ], - [ - -19, - { - "n": 3, - "e": 3353 - } - ], - [ - -18, - { - "n": 6, - "e": 3345 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 4, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4161 - } - ], - [ - 14, - { - "n": 5, - "e": 4172 - } - ], - [ - 13, - { - "n": 4, - "e": 4179 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 5, - "e": 4207 - } - ], - [ - 7, - { - "n": 3, - "e": 4245, - "a": 1 - } - ], - [ - 6, - { - "n": 6, - "e": 4254 - } - ], - [ - 5, - { - "n": 4, - "e": 4258 - } - ], - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 3, - "e": 4292 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4306 - } - ] - ] - } - ], - [ - 1492, - { - "n": "Yedlin", - "f": "DeAndre", - "fp": "DL", - "r": 10, - "c": 46, - "s": { - "g": 1, - "s": 35.5, - "n": 7, - "a": 5.07, - "d": 0.93, - "Og": 1, - "Os": 102, - "On": 21, - "Oa": 4.86, - "Od": 0.79, - "pd": 19, - "pm": 2 - }, - "p": [ - [ - -33, - { - "n": 4, - "e": 3493 - } - ], - [ - -32, - { - "n": 4, - "e": 3478 - } - ], - [ - -31, - { - "n": 6, - "e": 3468 - } - ], - [ - -30, - { - "n": 5, - "e": 3466 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3436 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5, - "e": 3394 - } - ], - [ - -22, - { - "n": 4, - "e": 3381 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4, - "e": 3353 - } - ], - [ - -18, - { - "n": 5, - "e": 3345 - } - ], - [ - 13, - { - "n": 4, - "e": 4179 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4191, - "g": 1 - } - ], - [ - 11, - { - "n": 4, - "e": 4207 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 9, - { - "n": 6, - "e": 4220 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 5, - "e": 4245 - } - ] - ] - } - ], - [ - 1495, - { - "n": "Diamé", - "f": "Mohamed", - "fp": "MD", - "r": 6, - "c": 46, - "s": { - "Os": 62, - "On": 12, - "Oa": 5.17, - "Od": 0.78, - "pm": 12 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3541 - } - ], - [ - -35, - { - "n": 5, - "e": 3515 - } - ], - [ - -34, - { - "n": 5, - "e": 3502 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3468 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3456 - } - ], - [ - -28, - { - "n": 5, - "e": 3444 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -21, - { - "n": 5, - "e": 3375 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4, - "e": 3353 - } - ], - [ - -18, - { - "n": 6, - "e": 3345 - } - ] - ] - } - ], - [ - 1497, - { - "n": "Colback", - "f": "Jack", - "fp": "MD", - "r": 3, - "c": 46 - } - ], - [ - 1499, - { - "n": "Clark", - "f": "Ciaran", - "fp": "DC", - "r": 14, - "c": 46, - "s": { - "g": 2, - "s": 48, - "n": 9, - "a": 5.33, - "d": 0.94, - "Og": 3, - "Os": 53.5, - "On": 10, - "Oa": 5.35, - "Od": 0.88, - "pd": 10 - }, - "p": [ - [ - -22, - { - "n": 5.5, - "e": 3381, - "g": 1 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4161 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 4, - "e": 4179 - } - ], - [ - 12, - { - "n": 7, - "e": 4191, - "g": 1 - } - ], - [ - 11, - { - "n": 6, - "e": 4207, - "g": 1 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4237 - } - ] - ] - } - ], - [ - 1504, - { - "n": "Murphy", - "f": "Jacob", - "fp": "MD", - "r": 5, - "c": 46, - "s": { - "Os": 10, - "On": 2, - "Oa": 5, - "pm": 2 - }, - "p": [ - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -19, - { - "n": 5, - "e": 3353 - } - ] - ] - } - ], - [ - 1508, - { - "n": "Elliot", - "f": "Robert", - "fp": "G", - "r": 1, - "c": 46 - } - ], - [ - 1515, - { - "n": "Aarons", - "f": "Rolando", - "fp": "MD", - "r": 1, - "c": 46 - } - ], - [ - 1516, - { - "n": "Sterry", - "f": "Jamie", - "fp": "DC", - "r": 1, - "c": 46 - } - ], - [ - 1519, - { - "n": "Lazaar", - "f": "Achraf", - "fp": "DC", - "r": 1, - "c": 46 - } - ], - [ - 1725, - { - "n": "Schär", - "f": "Fabian", - "fp": "DC", - "r": 13, - "c": 46, - "s": { - "g": 1, - "s": 54, - "n": 11, - "a": 4.91, - "d": 1.2, - "Ss": 10, - "Sn": 2, - "Sa": 5, - "Og": 5, - "Os": 145.5, - "On": 28, - "Oa": 5.2, - "Od": 1.13, - "pd": 28 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3541, - "g": 1 - } - ], - [ - -37, - { - "n": 4, - "e": 3535 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3466 - } - ], - [ - -29, - { - "n": 4, - "e": 3456 - } - ], - [ - -28, - { - "n": 7, - "e": 3444, - "g": 1 - } - ], - [ - -27, - { - "n": 6, - "e": 3436 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 7.5, - "e": 3394, - "g": 2 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3345 - } - ], - [ - 17, - { - "n": 5, - "e": 4139 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 9, - { - "n": 4, - "e": 4220 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 3, - "e": 4245 - } - ], - [ - 6, - { - "n": 6, - "e": 4254 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 6, - "e": 4273, - "g": 1 - } - ], - [ - 3, - { - "n": 7, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4292 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ], - "a": { - "m": 16, - "a": 22, - "M": 23, - "n": 7 - } - } - ], - [ - 2306, - { - "n": "Dubravka", - "f": "Martin", - "fp": "G", - "r": 18, - "c": 46, - "s": { - "s": 96, - "n": 17, - "a": 5.65, - "d": 1.26, - "Ss": 96, - "Sn": 17, - "Sa": 5.65, - "Sd": 1.26, - "Os": 209, - "On": 38, - "Oa": 5.5, - "Od": 1.09, - "pg": 38 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3541 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 5, - "e": 3518 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 7.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 5, - "e": 3493 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 5, - "e": 3468 - } - ], - [ - -30, - { - "n": 4, - "e": 3466 - } - ], - [ - -29, - { - "n": 5, - "e": 3456 - } - ], - [ - -28, - { - "n": 6.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 6, - "e": 3436 - } - ], - [ - -26, - { - "n": 6, - "e": 3427 - } - ], - [ - -25, - { - "n": 4, - "e": 3416 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 6, - "e": 3394 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3381 - } - ], - [ - -21, - { - "n": 4, - "e": 3375 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 5, - "e": 3353 - } - ], - [ - -18, - { - "n": 6, - "e": 3345 - } - ], - [ - 17, - { - "n": 6, - "e": 4139 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 8, - "e": 4161 - } - ], - [ - 14, - { - "n": 7, - "e": 4172 - } - ], - [ - 13, - { - "n": 6, - "e": 4179 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4207 - } - ], - [ - 10, - { - "n": 4, - "e": 4213 - } - ], - [ - 9, - { - "n": 7, - "e": 4220 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 3, - "e": 4245 - } - ], - [ - 6, - { - "n": 6, - "e": 4254 - } - ], - [ - 5, - { - "n": 4, - "e": 4258 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4292 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ] - } - ], - [ - 2553, - { - "n": "Muto", - "f": "Yoshinori", - "fp": "A", - "r": 3, - "c": 46, - "s": { - "s": 26.5, - "n": 6, - "a": 4.42, - "d": 0.38, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Os": 58, - "On": 13, - "Oa": 4.46, - "Od": 0.32, - "pm": 1, - "pa": 12 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3541 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3535 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3518 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3478 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3468 - } - ], - [ - -21, - { - "n": 5, - "e": 3375 - } - ], - [ - -19, - { - "n": 4, - "e": 3353 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4139 - } - ], - [ - 7, - { - "n": 5, - "e": 4245 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 4, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4292 - } - ] - ] - } - ], - [ - 2580, - { - "n": "Freddy Woodman", - "f": "", - "fp": "G", - "r": 1, - "c": 46 - } - ], - [ - 2758, - { - "n": "Sean Longstaff", - "f": "", - "fp": "MO", - "r": 11, - "c": 46, - "s": { - "s": 49.5, - "n": 10, - "a": 4.95, - "d": 1.26, - "Ss": 9.5, - "Sn": 2, - "Sa": 4.75, - "Sd": 1.06, - "Og": 1, - "Os": 99.5, - "On": 19, - "Oa": 5.24, - "Od": 1.11, - "pm": 19 - }, - "p": [ - [ - -29, - { - "n": 4, - "e": 3456 - } - ], - [ - -28, - { - "n": 7, - "e": 3444, - "g": 1 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3436 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3404 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3394 - } - ], - [ - -22, - { - "n": 5, - "e": 3381 - } - ], - [ - -19, - { - "n": 5, - "e": 3353 - } - ], - [ - 17, - { - "n": 4, - "e": 4139 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4153 - } - ], - [ - 10, - { - "n": 4, - "e": 4213 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 8, - { - "n": 7, - "e": 4237 - } - ], - [ - 7, - { - "n": 2.5, - "e": 4245 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 6, - "e": 4292 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4306 - } - ] - ] - } - ], - [ - 2759, - { - "n": "Roberts", - "f": "Callum", - "fp": "MD", - "r": 1, - "c": 46 - } - ], - [ - 2796, - { - "n": "Krafth", - "f": "Emil", - "fp": "DL", - "r": 5, - "c": 46, - "s": { - "s": 32, - "n": 7, - "a": 4.57, - "d": 1.1, - "Os": 125, - "On": 27, - "Oa": 4.63, - "Od": 0.69, - "pd": 26, - "pm": 1 - }, - "p": [ - [ - -23, - { - "n": 5, - "e": 2960 - } - ], - [ - -22, - { - "n": 4.5, - "e": 2942 - } - ], - [ - -20, - { - "n": 4, - "e": 2922 - } - ], - [ - -18, - { - "n": 5, - "e": 2902 - } - ], - [ - -19, - { - "n": 5, - "e": 2913 - } - ], - [ - -38, - { - "n": 5, - "e": 3102 - } - ], - [ - -37, - { - "n": 4, - "e": 3096 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3082 - } - ], - [ - -34, - { - "n": 5, - "e": 3062 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3055 - } - ], - [ - -32, - { - "n": 5, - "e": 3043 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3032 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3022 - } - ], - [ - -29, - { - "n": 5, - "e": 3012 - } - ], - [ - -28, - { - "n": 5, - "e": 3002 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3001 - } - ], - [ - -26, - { - "n": 5, - "e": 2982 - } - ], - [ - -25, - { - "n": 4, - "e": 2977 - } - ], - [ - -24, - { - "n": 5, - "e": 2962 - } - ], - [ - -21, - { - "n": 4, - "e": 2935 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4161 - } - ], - [ - 8, - { - "n": 5, - "e": 4237 - } - ], - [ - 7, - { - "n": 3, - "e": 4245 - } - ], - [ - 5, - { - "n": 4, - "e": 4258 - } - ], - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - 3, - { - "n": 6, - "e": 4287 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4292 - } - ] - ] - } - ], - [ - 2981, - { - "n": "Harker", - "f": "Nathan", - "fp": "G", - "r": 1, - "c": 46 - } - ], - [ - 3356, - { - "n": "Almirón", - "f": "Miguel", - "fp": "MO", - "r": 15, - "c": 46, - "s": { - "s": 82.5, - "n": 16, - "a": 5.16, - "d": 0.94, - "Os": 138, - "On": 26, - "Oa": 5.31, - "Od": 0.85, - "pm": 23, - "pa": 3 - }, - "p": [ - [ - -35, - { - "n": 6, - "e": 3515 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3502 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3493 - } - ], - [ - -32, - { - "n": 5, - "e": 3478 - } - ], - [ - -31, - { - "n": 5, - "e": 3468 - } - ], - [ - -30, - { - "n": 6, - "e": 3466 - } - ], - [ - -29, - { - "n": 5, - "e": 3456 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3444 - } - ], - [ - -27, - { - "n": 7, - "e": 3436 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - 16, - { - "n": 6, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4161 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 4, - "e": 4179 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4207 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4237 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4245 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4254 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4258 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4292 - } - ], - [ - 1, - { - "n": 4, - "e": 4306 - } - ] - ] - } - ], - [ - 3648, - { - "n": "Watts", - "f": "Kelland", - "fp": "MD", - "r": 1, - "c": 46 - } - ], - [ - 3649, - { - "n": "Cass", - "f": "Lewis", - "fp": "DC", - "r": 2, - "c": 46 - } - ], - [ - 5423, - { - "n": "Sorensen", - "f": "Elias", - "fp": "A", - "r": 1, - "c": 46 - } - ], - [ - 5426, - { - "n": "Allan", - "f": "Thomas", - "fp": "A", - "r": 1, - "c": 46 - } - ], - [ - 5433, - { - "n": "Matthew Longstaff", - "f": "", - "fp": "MD", - "r": 6, - "c": 46, - "s": { - "g": 1, - "s": 15.5, - "n": 3, - "a": 5.17, - "d": 1.76, - "Og": 1, - "Os": 15.5, - "On": 3, - "Oa": 5.17, - "Od": 1.76, - "pm": 3 - }, - "p": [ - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 7, - "e": 4237, - "g": 1 - } - ] - ] - } - ], - [ - 5435, - { - "n": "Bailey", - "f": "Owen", - "fp": "DC", - "r": 1, - "c": 46 - } - ], - [ - 5442, - { - "n": "Joelinton", - "f": "", - "fp": "A", - "r": 12, - "c": 46, - "s": { - "g": 1, - "s": 80.5, - "n": 17, - "a": 4.74, - "d": 0.87, - "Sg": 1, - "Ss": 80.5, - "Sn": 17, - "Sa": 4.74, - "Sd": 0.87, - "Og": 1, - "Os": 80.5, - "On": 17, - "Oa": 4.74, - "Od": 0.87, - "pm": 1, - "pa": 16 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4172 - } - ], - [ - 13, - { - "n": 5, - "e": 4179 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 6, - "e": 4207 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4220 - } - ], - [ - 8, - { - "n": 4, - "e": 4237 - } - ], - [ - 7, - { - "n": 5, - "e": 4245 - } - ], - [ - 6, - { - "n": 4, - "e": 4254 - } - ], - [ - 5, - { - "n": 5, - "e": 4258 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 7, - "e": 4287, - "g": 1 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4292 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ] - } - ], - [ - 6001, - { - "n": "Willems", - "f": "Jetro", - "fp": "DL", - "r": 16, - "c": 46, - "s": { - "g": 2, - "s": 77.5, - "n": 14, - "a": 5.54, - "d": 0.77, - "Sg": 1, - "Ss": 56.5, - "Sn": 10, - "Sa": 5.65, - "Sd": 0.88, - "Og": 2, - "Os": 77.5, - "On": 14, - "Oa": 5.54, - "Od": 0.77, - "pd": 14 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4139 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 6, - "e": 4172, - "g": 1 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4179 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4191 - } - ], - [ - 11, - { - "n": 7, - "e": 4207 - } - ], - [ - 10, - { - "n": 6, - "e": 4213 - } - ], - [ - 9, - { - "n": 5, - "e": 4220 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4237 - } - ], - [ - 6, - { - "n": 5, - "e": 4254 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4258, - "g": 1 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 1, - { - "n": 5, - "e": 4306 - } - ] - ] - } - ], - [ - 133, - { - "n": "Amadou", - "f": "Ibrahim", - "fp": "MD", - "r": 9, - "c": 76, - "s": { - "s": 44.5, - "n": 10, - "a": 4.45, - "d": 1.17, - "Os": 98.5, - "On": 21, - "Oa": 4.69, - "Od": 1.01, - "pd": 6, - "pm": 15 - }, - "p": [ - [ - 15, - { - "n": 3.5, - "e": 4165 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4274 - } - ], - [ - -38, - { - "n": 6.5, - "e": 2347 - } - ], - [ - -33, - { - "n": 4, - "e": 2296 - } - ], - [ - -29, - { - "n": 4, - "e": 2256 - } - ], - [ - -28, - { - "n": 5, - "e": 2244 - } - ], - [ - -25, - { - "n": 4.5, - "e": 2220 - } - ], - [ - -24, - { - "n": 4, - "e": 2211 - } - ], - [ - -22, - { - "n": 4.5, - "e": 2183 - } - ], - [ - -21, - { - "n": 5, - "e": 2181 - } - ], - [ - -17, - { - "n": 6, - "e": 2136 - } - ], - [ - -37, - { - "n": 5.5, - "e": 2333 - } - ], - [ - -18, - { - "n": 5, - "e": 2147 - } - ], - [ - 14, - { - "n": 6, - "e": 4176 - } - ], - [ - 13, - { - "n": 5, - "e": 4183 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 3, - "e": 4232 - } - ], - [ - 7, - { - "n": 4, - "e": 4242 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4264 - } - ] - ] - } - ], - [ - 872, - { - "n": "Byram", - "f": "Sam", - "fp": "DL", - "r": 10, - "c": 76, - "s": { - "s": 43.5, - "n": 9, - "a": 4.83, - "d": 0.79, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 43.5, - "On": 9, - "Oa": 4.83, - "Od": 0.79, - "pd": 9 - }, - "p": [ - [ - 16, - { - "n": 4, - "e": 4154 - } - ], - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 15, - { - "n": 4, - "e": 4165 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ], - [ - 13, - { - "n": 6, - "e": 4183 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4214 - } - ], - [ - 6, - { - "n": 4, - "e": 4250 - } - ], - [ - 5, - { - "n": 6, - "e": 4264 - } - ], - [ - 2, - { - "n": 5, - "e": 4292 - } - ] - ] - } - ], - [ - 1101, - { - "n": "Husband", - "f": "James", - "fp": "DC", - "r": 1, - "c": 76 - } - ], - [ - 1352, - { - "n": "Roberts", - "f": "Patrick", - "fp": "MO", - "r": 3, - "c": 76, - "s": { - "s": 15, - "n": 3, - "a": 5, - "Os": 55, - "On": 12, - "Oa": 4.58, - "Od": 0.51, - "pm": 12 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 2342 - } - ], - [ - -29, - { - "n": 5, - "e": 2257 - } - ], - [ - -36, - { - "n": 4.5, - "e": 2323 - } - ], - [ - -33, - { - "n": 3.5, - "e": 2295 - } - ], - [ - -32, - { - "n": 4, - "e": 2284 - } - ], - [ - -31, - { - "n": 5, - "e": 2279 - } - ], - [ - -30, - { - "n": 5, - "e": 2263 - } - ], - [ - -27, - { - "n": 4.5, - "e": 2237 - } - ], - [ - -26, - { - "n": 4.5, - "e": 2231 - } - ], - [ - 8, - { - "n": 5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 6, - { - "n": 5, - "e": 4250 - } - ] - ] - } - ], - [ - 1506, - { - "n": "Hanley", - "f": "Grant", - "fp": "DC", - "r": 6, - "c": 76, - "s": { - "ao": 1, - "s": 11.5, - "n": 3, - "a": 3.83, - "d": 1.76, - "Oao": 1, - "Os": 11.5, - "On": 3, - "Oa": 3.83, - "Od": 1.76, - "pd": 3 - }, - "p": [ - [ - 3, - { - "n": 4, - "e": 4279 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4292 - } - ], - [ - 1, - { - "n": 2, - "e": 4298, - "a": 1 - } - ] - ] - } - ], - [ - 1521, - { - "n": "Krul", - "f": "Tim", - "fp": "G", - "r": 14, - "c": 76, - "s": { - "ao": 1, - "s": 84, - "n": 15, - "a": 5.6, - "d": 1.37, - "Sao": 1, - "Ss": 28, - "Sn": 5, - "Sa": 5.6, - "Sd": 1.47, - "Oao": 1, - "Os": 84, - "On": 15, - "Oa": 5.6, - "Od": 1.37, - "pg": 15 - }, - "p": [ - [ - 12, - { - "n": 4, - "e": 4192 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4142, - "a": 1 - } - ], - [ - 16, - { - "n": 4, - "e": 4154 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 8, - "e": 4183 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 8.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 6, - "e": 4219 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 7, - "e": 4264 - } - ], - [ - 4, - { - "n": 6, - "e": 4274 - } - ], - [ - 3, - { - "n": 4, - "e": 4279 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4292 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4298 - } - ] - ] - } - ], - [ - 3647, - { - "n": "Aarons", - "f": "Max", - "fp": "DL", - "r": 10, - "c": 76, - "s": { - "s": 63.5, - "n": 15, - "a": 4.23, - "d": 1.03, - "Ss": 47.5, - "Sn": 11, - "Sa": 4.32, - "Sd": 1.12, - "Os": 63.5, - "On": 15, - "Oa": 4.23, - "Od": 1.03, - "pd": 15 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4142 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 3, - "e": 4165 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 6, - "e": 4183 - } - ], - [ - 12, - { - "n": 4, - "e": 4192 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 2.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4242 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 3, - { - "n": 3, - "e": 4279 - } - ], - [ - 2, - { - "n": 5, - "e": 4292 - } - ], - [ - 1, - { - "n": 4, - "e": 4298 - } - ] - ] - } - ], - [ - 3654, - { - "n": "Payne", - "f": "Alfie", - "fp": "MD", - "r": 1, - "c": 76 - } - ], - [ - 3657, - { - "n": "Timi Odusina", - "f": "", - "fp": "DC", - "r": 1, - "c": 76 - } - ], - [ - 3670, - { - "n": "Godfrey", - "f": "Ben", - "fp": "DC", - "r": 10, - "c": 76, - "s": { - "s": 78.5, - "n": 17, - "a": 4.62, - "d": 1.01, - "Ss": 78.5, - "Sn": 17, - "Sa": 4.62, - "Sd": 1.01, - "Os": 78.5, - "On": 17, - "Oa": 4.62, - "Od": 1.01, - "pd": 17 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 4, - "e": 4154 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4183 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 5, - "e": 4201 - } - ], - [ - 10, - { - "n": 3, - "e": 4214 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 2.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 6, - { - "n": 4, - "e": 4250 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 3, - { - "n": 5, - "e": 4279 - } - ], - [ - 2, - { - "n": 6, - "e": 4292 - } - ], - [ - 1, - { - "n": 4, - "e": 4298 - } - ] - ] - } - ], - [ - 3671, - { - "n": "Buendía", - "f": "Emiliano", - "fp": "MO", - "r": 11, - "c": 76, - "s": { - "s": 90.5, - "n": 17, - "a": 5.32, - "d": 1.14, - "Ss": 90.5, - "Sn": 17, - "Sa": 5.32, - "Sd": 1.14, - "Os": 90.5, - "On": 17, - "Oa": 5.32, - "Od": 1.14, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 7, - "e": 4142 - } - ], - [ - 16, - { - "n": 7, - "e": 4154 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 5, - "e": 4183 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 4, - "e": 4214 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 4, - "e": 4232 - } - ], - [ - 7, - { - "n": 6, - "e": 4242 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 3, - { - "n": 6, - "e": 4279 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4292 - } - ], - [ - 1, - { - "n": 5, - "e": 4298 - } - ] - ] - } - ], - [ - 3674, - { - "n": "Lewis", - "f": "Jamal", - "fp": "DL", - "r": 8, - "c": 76, - "s": { - "s": 54.5, - "n": 13, - "a": 4.19, - "d": 0.97, - "Os": 54.5, - "On": 13, - "Oa": 4.19, - "Od": 0.97, - "pd": 13 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4154 - } - ], - [ - 12, - { - "n": 4, - "e": 4192 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 3, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 3, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 6, - { - "n": 4, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4264 - } - ], - [ - 4, - { - "n": 5, - "e": 4274 - } - ], - [ - 3, - { - "n": 3, - "e": 4279 - } - ], - [ - 2, - { - "n": 6, - "e": 4292 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4298 - } - ] - ] - } - ], - [ - 3675, - { - "n": "Cantwell", - "f": "Todd", - "fp": "MO", - "r": 13, - "c": 76, - "s": { - "g": 4, - "s": 89.5, - "n": 17, - "a": 5.26, - "d": 1.38, - "Sg": 4, - "Ss": 89.5, - "Sn": 17, - "Sa": 5.26, - "Sd": 1.38, - "Og": 4, - "Os": 89.5, - "On": 17, - "Oa": 5.26, - "Od": 1.38, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4142 - } - ], - [ - 16, - { - "n": 5, - "e": 4154 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4176, - "g": 1 - } - ], - [ - 13, - { - "n": 8, - "e": 4183, - "g": 1 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 2.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 5, - "e": 4232 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 7, - "e": 4264, - "g": 1 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4279, - "g": 1 - } - ], - [ - 2, - { - "n": 7, - "e": 4292 - } - ], - [ - 1, - { - "n": 4, - "e": 4298 - } - ] - ] - } - ], - [ - 3676, - { - "n": "Zimmermann", - "f": "Christoph", - "fp": "DC", - "r": 10, - "c": 76, - "s": { - "s": 29.5, - "n": 6, - "a": 4.92, - "d": 0.58, - "Ss": 25, - "Sn": 5, - "Sa": 5, - "Sd": 0.61, - "Os": 29.5, - "On": 6, - "Oa": 4.92, - "Od": 0.58, - "pd": 6 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5, - "e": 4176 - } - ], - [ - 13, - { - "n": 6, - "e": 4183 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4274 - } - ] - ] - } - ], - [ - 3683, - { - "n": "Srbeny", - "f": "Dennis", - "fp": "A", - "r": 5, - "c": 76, - "s": { - "g": 1, - "s": 32.5, - "n": 7, - "a": 4.64, - "d": 0.63, - "Og": 1, - "Os": 32.5, - "On": 7, - "Oa": 4.64, - "Od": 0.63, - "pa": 7 - }, - "p": [ - [ - 16, - { - "n": 4, - "e": 4154 - } - ], - [ - 13, - { - "n": 6, - "e": 4183, - "g": 1 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4232 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4264 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4279 - } - ] - ] - } - ], - [ - 3684, - { - "n": "Oxborough", - "f": "Aston", - "fp": "G", - "r": 1, - "c": 76 - } - ], - [ - 3704, - { - "n": "Thompson", - "f": "Louis", - "fp": "MD", - "r": 3, - "c": 76 - } - ], - [ - 3706, - { - "n": "Heise", - "f": "Philip", - "fp": "DL", - "r": 1, - "c": 76 - } - ], - [ - 3708, - { - "n": "Trybull", - "f": "Tom", - "fp": "MD", - "r": 10, - "c": 76, - "s": { - "s": 56, - "n": 11, - "a": 5.09, - "d": 1.11, - "Ss": 4.5, - "Sn": 1, - "Sa": 4.5, - "Os": 56, - "On": 11, - "Oa": 5.09, - "Od": 1.11, - "pm": 11 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4142 - } - ], - [ - 15, - { - "n": 4, - "e": 4165 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 7, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4219 - } - ], - [ - 4, - { - "n": 5, - "e": 4274 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 7, - "e": 4292 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4298 - } - ] - ] - } - ], - [ - 3709, - { - "n": "Hernández", - "f": "Onel", - "fp": "MO", - "r": 11, - "c": 76, - "s": { - "g": 1, - "s": 53, - "n": 10, - "a": 5.3, - "d": 1.11, - "Sg": 1, - "Ss": 48.5, - "Sn": 9, - "Sa": 5.39, - "Sd": 1.14, - "Og": 1, - "Os": 53, - "On": 10, - "Oa": 5.3, - "Od": 1.11, - "pm": 10 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 7, - "e": 4176 - } - ], - [ - 13, - { - "n": 7, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4, - "e": 4201 - } - ], - [ - 10, - { - "n": 6.5, - "e": 4214, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4298 - } - ] - ] - } - ], - [ - 3712, - { - "n": "Leitner", - "f": "Moritz", - "fp": "MO", - "r": 7, - "c": 76, - "s": { - "s": 43, - "n": 9, - "a": 4.78, - "d": 1.18, - "Os": 43, - "On": 9, - "Oa": 4.78, - "Od": 1.18, - "pm": 9 - }, - "p": [ - [ - 10, - { - "n": 3.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 3, - "e": 4232 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 5, - "e": 4250 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 3, - { - "n": 5, - "e": 4279 - } - ], - [ - 2, - { - "n": 7, - "e": 4292 - } - ], - [ - 1, - { - "n": 5, - "e": 4298 - } - ] - ] - } - ], - [ - 3715, - { - "n": "Klose", - "f": "Timm", - "fp": "DC", - "r": 1, - "c": 76 - } - ], - [ - 3717, - { - "n": "Drmic", - "f": "Josip", - "fp": "A", - "r": 3, - "c": 76, - "s": { - "g": 1, - "s": 36, - "n": 8, - "a": 4.5, - "d": 0.65, - "Og": 1, - "Os": 36, - "On": 8, - "Oa": 4.5, - "Od": 0.65, - "pa": 8 - }, - "p": [ - [ - 12, - { - "n": 4.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 8, - { - "n": 6, - "e": 4232, - "g": 1 - } - ], - [ - 7, - { - "n": 4, - "e": 4242 - } - ], - [ - 6, - { - "n": 4, - "e": 4250 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4264 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4298 - } - ] - ] - } - ], - [ - 3720, - { - "n": "McLean", - "f": "Kenny", - "fp": "MO", - "r": 11, - "c": 76, - "s": { - "g": 1, - "s": 82, - "n": 16, - "a": 5.13, - "d": 1.27, - "Sg": 1, - "Ss": 78.5, - "Sn": 15, - "Sa": 5.23, - "Sd": 1.24, - "Og": 1, - "Os": 82, - "On": 16, - "Oa": 5.13, - "Od": 1.27, - "pm": 16 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4142 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4176 - } - ], - [ - 13, - { - "n": 7, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4, - "e": 4201 - } - ], - [ - 10, - { - "n": 5, - "e": 4214 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4219 - } - ], - [ - 8, - { - "n": 2.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 6, - { - "n": 5, - "e": 4250 - } - ], - [ - 5, - { - "n": 8, - "e": 4264, - "g": 1 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4274 - } - ], - [ - 3, - { - "n": 5, - "e": 4279 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4298 - } - ] - ] - } - ], - [ - 3722, - { - "n": "Stiepermann", - "f": "Marco", - "fp": "MO", - "r": 7, - "c": 76, - "s": { - "s": 58.5, - "n": 13, - "a": 4.5, - "d": 0.74, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 58.5, - "On": 13, - "Oa": 4.5, - "Od": 0.74, - "pm": 13 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 15, - { - "n": 4, - "e": 4165 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 4, - "e": 4214 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4242 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 5, - "e": 4264 - } - ], - [ - 4, - { - "n": 4, - "e": 4274 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4292 - } - ], - [ - 1, - { - "n": 4, - "e": 4298 - } - ] - ] - } - ], - [ - 3723, - { - "n": "Marshall", - "f": "Ben", - "fp": "MD", - "r": 5, - "c": 76 - } - ], - [ - 3728, - { - "n": "Pukki", - "f": "Teemu", - "fp": "A", - "r": 26, - "c": 76, - "s": { - "g": 9, - "s": 94, - "n": 17, - "a": 5.53, - "d": 1.43, - "Sg": 9, - "Ss": 94, - "Sn": 17, - "Sa": 5.53, - "Sd": 1.43, - "Og": 9, - "Os": 94, - "On": 17, - "Oa": 5.53, - "Od": 1.43, - "pa": 17 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4142, - "g": 1 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 6, - "e": 4165, - "g": 1 - } - ], - [ - 14, - { - "n": 7, - "e": 4176, - "g": 1 - } - ], - [ - 13, - { - "n": 6, - "e": 4183 - } - ], - [ - 12, - { - "n": 5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 5, - "e": 4219 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 5, - "e": 4242 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 7, - "e": 4264, - "g": 1 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4274 - } - ], - [ - 3, - { - "n": 7, - "e": 4279, - "g": 1 - } - ], - [ - 2, - { - "n": 9, - "e": 4292, - "g": 3 - } - ], - [ - 1, - { - "n": 6, - "e": 4298, - "g": 1 - } - ] - ] - } - ], - [ - 3729, - { - "n": "Nélson Oliveira", - "f": "", - "fp": "A", - "r": 5, - "c": 76 - } - ], - [ - 3739, - { - "n": "Vrancic", - "f": "Mario", - "fp": "MO", - "r": 8, - "c": 76, - "s": { - "s": 23, - "n": 5, - "a": 4.6, - "d": 0.65, - "Ss": 8.5, - "Sn": 2, - "Sa": 4.25, - "Sd": 1.06, - "Os": 23, - "On": 5, - "Oa": 4.6, - "Od": 0.65, - "pm": 5 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4154 - } - ], - [ - 12, - { - "n": 5, - "e": 4192 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4279 - } - ], - [ - 2, - { - "n": 5, - "e": 4292 - } - ] - ] - } - ], - [ - 3741, - { - "n": "Fährmann", - "f": "Ralf", - "fp": "G", - "r": 7, - "c": 76, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 5, - "On": 1, - "Oa": 5, - "pg": 1 - }, - "p": [ - [ - 7, - { - "n": 5, - "e": 4242 - } - ] - ] - } - ], - [ - 3747, - { - "n": "Tettey", - "f": "Alexander", - "fp": "MD", - "r": 11, - "c": 76, - "s": { - "g": 1, - "s": 59.5, - "n": 11, - "a": 5.41, - "d": 0.92, - "Sg": 1, - "Ss": 18.5, - "Sn": 3, - "Sa": 6.17, - "Sd": 1.04, - "Og": 1, - "Os": 59.5, - "On": 11, - "Oa": 5.41, - "Od": 0.92, - "pd": 2, - "pm": 9 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4142 - } - ], - [ - 16, - { - "n": 6.5, - "e": 4154, - "g": 1 - } - ], - [ - 15, - { - "n": 7, - "e": 4165 - } - ], - [ - 13, - { - "n": 6, - "e": 4183 - } - ], - [ - 12, - { - "n": 4, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4201 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4214 - } - ], - [ - 9, - { - "n": 6, - "e": 4219 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4250 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4264 - } - ], - [ - 2, - { - "n": 5, - "e": 4292 - } - ] - ] - } - ], - [ - 3748, - { - "n": "McGovern", - "f": "Michael", - "fp": "G", - "r": 1, - "c": 76, - "s": { - "s": 9, - "n": 2, - "a": 4.5, - "Os": 9, - "On": 2, - "Oa": 4.5, - "pg": 2 - }, - "p": [ - [ - 8, - { - "n": 4.5, - "e": 4232 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4242 - } - ] - ] - } - ], - [ - 6119, - { - "n": "Idah", - "f": "Adam", - "fp": "A", - "r": 1, - "c": 76 - } - ], - [ - 720, - { - "n": "Jagielka", - "f": "Phil", - "fp": "DC", - "r": 5, - "c": 77, - "s": { - "s": 20, - "n": 4, - "a": 5, - "d": 0.41, - "Og": 1, - "Os": 46, - "On": 9, - "Oa": 5.11, - "Od": 0.93, - "pd": 9 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3532 - } - ], - [ - -35, - { - "n": 5, - "e": 3512 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3501 - } - ], - [ - -33, - { - "n": 7, - "e": 3490, - "g": 1 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3439 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 11, - { - "n": 5, - "e": 4205 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4252 - } - ], - [ - 2, - { - "n": 5, - "e": 4295 - } - ] - ] - } - ], - [ - 980, - { - "n": "McBurnie", - "f": "Oliver", - "fp": "A", - "r": 8, - "c": 77, - "s": { - "g": 2, - "s": 70.5, - "n": 15, - "a": 4.7, - "d": 0.77, - "Ss": 13.5, - "Sn": 3, - "Sa": 4.5, - "Sd": 0.5, - "Og": 2, - "Os": 70.5, - "On": 15, - "Oa": 4.7, - "Od": 0.77, - "pa": 15 - }, - "p": [ - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 8, - { - "n": 4, - "e": 4234 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4261 - } - ], - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4185, - "g": 1 - } - ], - [ - 11, - { - "n": 5, - "e": 4205 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 7, - { - "n": 4, - "e": 4238 - } - ], - [ - 6, - { - "n": 5, - "e": 4252 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 6, - "e": 4282, - "g": 1 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 1071, - { - "n": "Mousset", - "f": "Lys", - "fp": "A", - "r": 16, - "c": 77, - "s": { - "g": 5, - "s": 72.5, - "n": 14, - "a": 5.18, - "d": 0.97, - "Sg": 2, - "Ss": 24.5, - "Sn": 5, - "Sa": 4.9, - "Sd": 1.02, - "Og": 6, - "Os": 141.5, - "On": 29, - "Oa": 4.88, - "Od": 0.75, - "pa": 29 - }, - "p": [ - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 10, - { - "n": 6, - "e": 4217, - "g": 1 - } - ], - [ - -38, - { - "n": 5, - "e": 3540 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3528 - } - ], - [ - -35, - { - "n": 4, - "e": 3508 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3462 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3448 - } - ], - [ - -28, - { - "n": 5, - "e": 3438, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3422 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3410 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5, - "e": 3383 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3364 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3356 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3338 - } - ], - [ - 17, - { - "n": 4, - "e": 4145 - } - ], - [ - 16, - { - "n": 4, - "e": 4154 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 6, - "e": 4174, - "g": 1 - } - ], - [ - 13, - { - "n": 6, - "e": 4185, - "g": 1 - } - ], - [ - 11, - { - "n": 7, - "e": 4205 - } - ], - [ - 9, - { - "n": 6, - "e": 4225, - "g": 1 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4238 - } - ], - [ - 6, - { - "n": 6, - "e": 4252, - "g": 1 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ] - ] - } - ], - [ - 1085, - { - "n": "Besic", - "f": "Muhamed", - "fp": "MD", - "r": 3, - "c": 77, - "s": { - "s": 16, - "n": 3, - "a": 5.33, - "d": 0.29, - "Ss": 10.5, - "Sn": 2, - "Sa": 5.25, - "Sd": 0.35, - "Os": 16, - "On": 3, - "Oa": 5.33, - "Od": 0.29, - "pm": 3 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4154 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ] - ], - "a": { - "m": 4, - "a": 4, - "M": 4, - "n": 5 - } - } - ], - [ - 2501, - { - "n": "Norwood", - "f": "Oliver", - "fp": "MD", - "r": 15, - "c": 77, - "s": { - "s": 94, - "n": 17, - "a": 5.53, - "d": 0.78, - "Ss": 94, - "Sn": 17, - "Sa": 5.53, - "Sd": 0.78, - "Os": 94, - "On": 17, - "Oa": 5.53, - "Od": 0.78, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 7, - "e": 4145 - } - ], - [ - 16, - { - "n": 5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 14, - { - "n": 6, - "e": 4174 - } - ], - [ - 13, - { - "n": 5, - "e": 4185 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 6, - "e": 4205 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 6, - "e": 4225 - } - ], - [ - 8, - { - "n": 6, - "e": 4234 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 6, - "e": 4261 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 6, - "e": 4300 - } - ] - ] - } - ], - [ - 3691, - { - "n": "Robinson", - "f": "Callum", - "fp": "A", - "r": 7, - "c": 77, - "s": { - "g": 1, - "s": 59, - "n": 13, - "a": 4.54, - "d": 0.88, - "Og": 1, - "Os": 59, - "On": 13, - "Oa": 4.54, - "Od": 0.88, - "pa": 13 - }, - "p": [ - [ - 16, - { - "n": 4, - "e": 4154 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 4, - "e": 4194 - } - ], - [ - 10, - { - "n": 4, - "e": 4217 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4238 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 7, - "e": 4269, - "g": 1 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 3694, - { - "n": "Lundstram", - "f": "John", - "fp": "DC", - "r": 17, - "c": 77, - "s": { - "g": 3, - "s": 94.5, - "n": 17, - "a": 5.56, - "d": 1.17, - "Sg": 3, - "Ss": 94.5, - "Sn": 17, - "Sa": 5.56, - "Sd": 1.17, - "Og": 3, - "Os": 94.5, - "On": 17, - "Oa": 5.56, - "Od": 1.17, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 6.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 8, - "e": 4205, - "g": 2 - } - ], - [ - 10, - { - "n": 5, - "e": 4217 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4238 - } - ], - [ - 6, - { - "n": 7.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4, - "e": 4282 - } - ], - [ - 2, - { - "n": 7.5, - "e": 4295, - "g": 1 - } - ], - [ - 1, - { - "n": 6, - "e": 4300 - } - ] - ], - "a": { - "m": 15, - "a": 17, - "M": 25, - "n": 12 - } - } - ], - [ - 3695, - { - "n": "O'Connell", - "f": "Jack", - "fp": "DC", - "r": 14, - "c": 77, - "s": { - "s": 91, - "n": 17, - "a": 5.35, - "d": 0.9, - "Ss": 91, - "Sn": 17, - "Sa": 5.35, - "Sd": 0.9, - "Os": 91, - "On": 17, - "Oa": 5.35, - "Od": 0.9, - "pd": 17 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4145 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 5, - "e": 4185 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 6, - "e": 4205 - } - ], - [ - 10, - { - "n": 6, - "e": 4217 - } - ], - [ - 9, - { - "n": 7, - "e": 4225 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4238 - } - ], - [ - 6, - { - "n": 7, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 6, - "e": 4295 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 3701, - { - "n": "Heneghan", - "f": "Ben", - "fp": "DC", - "r": 3, - "c": 77 - } - ], - [ - 3702, - { - "n": "Carruthers", - "f": "Samir", - "fp": "MD", - "r": 4, - "c": 77 - } - ], - [ - 3703, - { - "n": "Bryan", - "f": "Kean", - "fp": "DC", - "r": 1, - "c": 77 - } - ], - [ - 3705, - { - "n": "Egan", - "f": "John", - "fp": "DC", - "r": 16, - "c": 77, - "s": { - "s": 84.5, - "n": 16, - "a": 5.28, - "d": 0.88, - "Ss": 19, - "Sn": 4, - "Sa": 4.75, - "Sd": 1.04, - "Os": 84.5, - "On": 16, - "Oa": 5.28, - "Od": 0.88, - "pd": 16 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 6, - "e": 4154 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 6, - "e": 4205 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 6, - "e": 4225 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 6, - "e": 4238 - } - ], - [ - 6, - { - "n": 7, - "e": 4252 - } - ], - [ - 5, - { - "n": 5, - "e": 4261 - } - ], - [ - 4, - { - "n": 4, - "e": 4269 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4300 - } - ] - ], - "a": { - "m": 16, - "a": 17, - "M": 21, - "n": 6 - } - } - ], - [ - 3713, - { - "n": "Kieron Freeman", - "f": "", - "fp": "DL", - "r": 1, - "c": 77 - } - ], - [ - 3716, - { - "n": "Baldock", - "f": "George", - "fp": "DL", - "r": 19, - "c": 77, - "s": { - "g": 2, - "s": 90.5, - "n": 17, - "a": 5.32, - "d": 0.88, - "Sg": 2, - "Ss": 90.5, - "Sn": 17, - "Sa": 5.32, - "Sd": 0.88, - "Og": 2, - "Os": 90.5, - "On": 17, - "Oa": 5.32, - "Od": 0.88, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 7.5, - "e": 4154, - "g": 1 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 6, - "e": 4194, - "g": 1 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 5, - "e": 4217 - } - ], - [ - 9, - { - "n": 6, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4234 - } - ], - [ - 7, - { - "n": 5, - "e": 4238 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 6, - "e": 4295 - } - ], - [ - 1, - { - "n": 4, - "e": 4300 - } - ] - ] - } - ], - [ - 3721, - { - "n": "Moore", - "f": "Simon", - "fp": "G", - "r": 7, - "c": 77, - "s": { - "s": 2.5, - "n": 1, - "a": 2.5, - "Os": 2.5, - "On": 1, - "Oa": 2.5, - "pg": 1 - }, - "p": [ - [ - 13, - { - "n": 2.5, - "e": 4185 - } - ] - ] - } - ], - [ - 3725, - { - "n": "Stevens", - "f": "Enda", - "fp": "DL", - "r": 14, - "c": 77, - "s": { - "g": 1, - "s": 86.5, - "n": 17, - "a": 5.09, - "d": 0.87, - "Sg": 1, - "Ss": 86.5, - "Sn": 17, - "Sa": 5.09, - "Sd": 0.87, - "Og": 1, - "Os": 86.5, - "On": 17, - "Oa": 5.09, - "Od": 0.87, - "pm": 17 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 16, - { - "n": 6.5, - "e": 4154, - "g": 1 - } - ], - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 14, - { - "n": 4, - "e": 4174 - } - ], - [ - 13, - { - "n": 4, - "e": 4185 - } - ], - [ - 12, - { - "n": 4, - "e": 4194 - } - ], - [ - 11, - { - "n": 6.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 6, - "e": 4217 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5, - "e": 4234 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4238 - } - ], - [ - 6, - { - "n": 6, - "e": 4252 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 3726, - { - "n": "Duffy", - "f": "Mark", - "fp": "MD", - "r": 12, - "c": 77 - } - ], - [ - 3727, - { - "n": "Holmes", - "f": "Ricky", - "fp": "MD", - "r": 2, - "c": 77 - } - ], - [ - 3731, - { - "n": "Luke Freeman", - "f": "", - "fp": "MO", - "r": 6, - "c": 77, - "s": { - "s": 38, - "n": 8, - "a": 4.75, - "d": 0.27, - "Os": 38, - "On": 8, - "Oa": 4.75, - "Od": 0.27, - "pm": 8 - }, - "p": [ - [ - 15, - { - "n": 4.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 9, - { - "n": 5, - "e": 4225 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 3732, - { - "n": "Evans", - "f": "Ched", - "fp": "A", - "r": 5, - "c": 77 - } - ], - [ - 3734, - { - "n": "Fleck", - "f": "John", - "fp": "MO", - "r": 16, - "c": 77, - "s": { - "g": 4, - "s": 87, - "n": 15, - "a": 5.8, - "d": 1.03, - "Sg": 4, - "Ss": 77.5, - "Sn": 13, - "Sa": 5.96, - "Sd": 1.01, - "Og": 4, - "Os": 87, - "On": 15, - "Oa": 5.8, - "Od": 1.03, - "pm": 15 - }, - "p": [ - [ - 17, - { - "n": 8, - "e": 4145, - "g": 2 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 14, - { - "n": 6, - "e": 4174 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4185, - "g": 1 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 7.5, - "e": 4205, - "g": 1 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 6, - "e": 4238 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4252 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4261 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 3738, - { - "n": "Basham", - "f": "Chris", - "fp": "DC", - "r": 12, - "c": 77, - "s": { - "s": 86, - "n": 17, - "a": 5.06, - "d": 1.06, - "Ss": 86, - "Sn": 17, - "Sa": 5.06, - "Sd": 1.06, - "Os": 86, - "On": 17, - "Oa": 5.06, - "Od": 1.06, - "pd": 17 - }, - "p": [ - [ - 17, - { - "n": 6.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 5, - "e": 4154 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 6, - "e": 4174 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4205 - } - ], - [ - 10, - { - "n": 6, - "e": 4217 - } - ], - [ - 9, - { - "n": 6, - "e": 4225 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4238 - } - ], - [ - 6, - { - "n": 6, - "e": 4252 - } - ], - [ - 5, - { - "n": 4, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 3, - "e": 4282 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 3743, - { - "n": "McGoldrick", - "f": "David", - "fp": "A", - "r": 11, - "c": 77, - "s": { - "s": 66.5, - "n": 14, - "a": 4.75, - "d": 0.78, - "Ss": 45.5, - "Sn": 9, - "Sa": 5.06, - "Sd": 0.81, - "Os": 66.5, - "On": 14, - "Oa": 4.75, - "Od": 0.78, - "pa": 14 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4145 - } - ], - [ - 16, - { - "n": 5, - "e": 4154 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4161 - } - ], - [ - 14, - { - "n": 4, - "e": 4174 - } - ], - [ - 13, - { - "n": 5, - "e": 4185 - } - ], - [ - 12, - { - "n": 6, - "e": 4194 - } - ], - [ - 11, - { - "n": 6, - "e": 4205 - } - ], - [ - 10, - { - "n": 5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4, - "e": 4225 - } - ], - [ - 5, - { - "n": 4, - "e": 4261 - } - ], - [ - 4, - { - "n": 4, - "e": 4269 - } - ], - [ - 3, - { - "n": 4, - "e": 4282 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4300 - } - ] - ] - } - ], - [ - 3745, - { - "n": "Sharp", - "f": "Billy", - "fp": "A", - "r": 7, - "c": 77, - "s": { - "g": 1, - "s": 40.5, - "n": 9, - "a": 4.5, - "d": 0.94, - "Og": 1, - "Os": 40.5, - "On": 9, - "Oa": 4.5, - "Od": 0.94, - "pa": 9 - }, - "p": [ - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4185 - } - ], - [ - 11, - { - "n": 5, - "e": 4205 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4225 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4234 - } - ], - [ - 5, - { - "n": 2.5, - "e": 4261 - } - ], - [ - 3, - { - "n": 5, - "e": 4282 - } - ], - [ - 1, - { - "n": 6, - "e": 4300, - "g": 1 - } - ] - ] - } - ], - [ - 3746, - { - "n": "Stearman", - "f": "Richard", - "fp": "DC", - "r": 1, - "c": 77 - } - ], - [ - 3749, - { - "n": "Clarke", - "f": "Leon", - "fp": "A", - "r": 1, - "c": 77, - "s": { - "s": 4, - "n": 1, - "a": 4, - "Os": 4, - "On": 1, - "Oa": 4, - "pa": 1 - }, - "p": [ - [ - 7, - { - "n": 4, - "e": 4238 - } - ] - ] - } - ], - [ - 3750, - { - "n": "Wright", - "f": "Jake", - "fp": "DC", - "r": 3, - "c": 77 - } - ], - [ - 5446, - { - "n": "Henderson", - "f": "Dean", - "fp": "G", - "r": 16, - "c": 77, - "s": { - "s": 88.5, - "n": 16, - "a": 5.53, - "d": 0.9, - "Ss": 21.5, - "Sn": 4, - "Sa": 5.38, - "Sd": 0.95, - "Os": 88.5, - "On": 16, - "Oa": 5.53, - "Od": 0.9, - "pg": 16 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4145 - } - ], - [ - 16, - { - "n": 6, - "e": 4154 - } - ], - [ - 15, - { - "n": 4, - "e": 4161 - } - ], - [ - 14, - { - "n": 6, - "e": 4174 - } - ], - [ - 12, - { - "n": 6, - "e": 4194 - } - ], - [ - 11, - { - "n": 6, - "e": 4205 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 6, - "e": 4225 - } - ], - [ - 8, - { - "n": 6, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4238 - } - ], - [ - 6, - { - "n": 7, - "e": 4252 - } - ], - [ - 5, - { - "n": 6, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ], - [ - 3, - { - "n": 4, - "e": 4282 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4295 - } - ], - [ - 1, - { - "n": 5, - "e": 4300 - } - ] - ] - } - ], - [ - 5447, - { - "n": "Osborn", - "f": "Ben", - "fp": "MD", - "r": 1, - "c": 77, - "s": { - "s": 15, - "n": 3, - "a": 5, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 15, - "On": 3, - "Oa": 5, - "pm": 3 - }, - "p": [ - [ - 17, - { - "n": 5, - "e": 4145 - } - ], - [ - 6, - { - "n": 5, - "e": 4252 - } - ], - [ - 4, - { - "n": 5, - "e": 4269 - } - ] - ] - } - ], - [ - 5450, - { - "n": "Morrison", - "f": "Ravel", - "fp": "MO", - "r": 1, - "c": 77, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Os": 4.5, - "On": 1, - "Oa": 4.5, - "pm": 1 - }, - "p": [ - [ - 3, - { - "n": 4.5, - "e": 4282 - } - ] - ] - } - ], - [ - 6121, - { - "n": "Verrips", - "f": "Michael", - "fp": "G", - "r": 1, - "c": 77 - } - ], - [ - 669, - { - "n": "Long", - "f": "Shane", - "fp": "A", - "r": 10, - "c": 35, - "s": { - "s": 41.5, - "n": 9, - "a": 4.61, - "d": 0.7, - "Ss": 15, - "Sn": 3, - "Sa": 5, - "Sd": 1, - "Og": 5, - "Os": 118, - "On": 25, - "Oa": 4.72, - "Od": 0.99, - "pa": 25 - }, - "p": [ - [ - 17, - { - "n": 4, - "e": 4146 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - -37, - { - "n": 3, - "e": 3536 - } - ], - [ - -31, - { - "n": 6, - "e": 3475, - "g": 1 - } - ], - [ - -34, - { - "n": 6, - "e": 3505, - "g": 1 - } - ], - [ - -30, - { - "n": 5, - "e": 3467 - } - ], - [ - -38, - { - "n": 3, - "e": 3545 - } - ], - [ - -36, - { - "n": 6, - "e": 3525, - "g": 1 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3515 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3494, - "g": 1 - } - ], - [ - -28, - { - "n": 5, - "e": 3445 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3424 - } - ], - [ - -25, - { - "n": 4, - "e": 3409 - } - ], - [ - -23, - { - "n": 5, - "e": 3395 - } - ], - [ - -22, - { - "n": 7, - "e": 3384, - "g": 1 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 4, - "e": 3355 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4165 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4233 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4268 - } - ] - ] - } - ], - [ - 673, - { - "n": "Redmond", - "f": "Nathan", - "fp": "MO", - "r": 13, - "c": 35, - "s": { - "g": 1, - "s": 74, - "n": 15, - "a": 4.93, - "d": 1.08, - "Ss": 39, - "Sn": 8, - "Sa": 4.88, - "Sd": 1.03, - "Og": 7, - "Os": 183, - "On": 36, - "Oa": 5.08, - "Od": 1.17, - "pm": 10, - "pa": 26 - }, - "p": [ - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - -38, - { - "n": 7, - "e": 3545, - "g": 1 - } - ], - [ - -37, - { - "n": 4, - "e": 3536 - } - ], - [ - -36, - { - "n": 6, - "e": 3525 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 8, - "e": 3505, - "g": 2 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 6, - "e": 3479 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3467 - } - ], - [ - -29, - { - "n": 5, - "e": 3453 - } - ], - [ - -28, - { - "n": 6, - "e": 3445 - } - ], - [ - -27, - { - "n": 4, - "e": 3429 - } - ], - [ - -26, - { - "n": 5, - "e": 3424 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3409, - "g": 1 - } - ], - [ - -24, - { - "n": 4, - "e": 3405 - } - ], - [ - -23, - { - "n": 4, - "e": 3395 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3355, - "g": 1 - } - ], - [ - -18, - { - "n": 7, - "e": 3343, - "g": 1 - } - ], - [ - 17, - { - "n": 3.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 6, - "e": 4153 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4215 - } - ], - [ - 8, - { - "n": 4, - "e": 4233 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 3, - { - "n": 7.5, - "e": 4280, - "g": 1 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4293 - } - ], - [ - 1, - { - "n": 4, - "e": 4301 - } - ] - ], - "a": { - "m": 15, - "a": 17, - "M": 22, - "n": 7 - } - } - ], - [ - 693, - { - "n": "Austin", - "f": "Charlie", - "fp": "A", - "r": 3, - "c": 35, - "s": { - "Os": 51.5, - "On": 12, - "Oa": 4.29, - "Od": 0.66, - "pa": 12 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3545 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3525 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3494 - } - ], - [ - -30, - { - "n": 4, - "e": 3467 - } - ], - [ - -29, - { - "n": 4, - "e": 3453 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3445 - } - ], - [ - -27, - { - "n": 4, - "e": 3429 - } - ], - [ - -26, - { - "n": 6, - "e": 3424 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3355 - } - ] - ] - } - ], - [ - 710, - { - "n": "Oriol Romeu", - "f": "", - "fp": "MD", - "r": 8, - "c": 35, - "s": { - "s": 69, - "n": 14, - "a": 4.93, - "d": 1.04, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Og": 1, - "Os": 181.5, - "On": 35, - "Oa": 5.19, - "Od": 1.06, - "pm": 35 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3545 - } - ], - [ - -37, - { - "n": 5, - "e": 3536 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4, - "e": 3515 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3479 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4, - "e": 3467 - } - ], - [ - -29, - { - "n": 5, - "e": 3453 - } - ], - [ - -28, - { - "n": 8, - "e": 3445, - "g": 1 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 4, - "e": 3424 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3384 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 5, - "e": 3365 - } - ], - [ - -19, - { - "n": 6, - "e": 3355 - } - ], - [ - -18, - { - "n": 7, - "e": 3343 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4146 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 3, - "e": 4215 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 4, - "e": 4233 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 6, - "e": 4248 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 6, - "e": 4268 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4293 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4301 - } - ] - ] - } - ], - [ - 721, - { - "n": "Bertrand", - "f": "Ryan", - "fp": "DL", - "r": 10, - "c": 35, - "s": { - "g": 1, - "s": 51.5, - "n": 12, - "a": 4.29, - "d": 1.1, - "Sg": 1, - "Ss": 23.5, - "Sn": 5, - "Sa": 4.7, - "Sd": 1.1, - "Og": 1, - "Os": 102.5, - "On": 24, - "Oa": 4.27, - "Od": 0.91, - "pd": 11, - "pm": 13 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3545 - } - ], - [ - -37, - { - "n": 3, - "e": 3536 - } - ], - [ - -36, - { - "n": 4, - "e": 3525 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 5, - "e": 3467 - } - ], - [ - -29, - { - "n": 3.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 5, - "e": 3445 - } - ], - [ - -26, - { - "n": 3.5, - "e": 3424 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 16, - { - "n": 3, - "e": 4153 - } - ], - [ - 15, - { - "n": 6, - "e": 4165, - "g": 1 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 10, - { - "n": 3, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 2.5, - "e": 4233 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4248 - } - ], - [ - 2, - { - "n": 4, - "e": 4293 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4301 - } - ] - ] - } - ], - [ - 725, - { - "n": "Forster", - "f": "Fraser", - "fp": "G", - "r": 11, - "c": 35, - "s": { - "Os": 4.5, - "On": 1, - "Oa": 4.5, - "pg": 1 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3536 - } - ] - ] - } - ], - [ - 727, - { - "n": "Højbjerg", - "f": "Pierre-Emile", - "fp": "MO", - "r": 11, - "c": 35, - "s": { - "s": 80, - "n": 16, - "a": 5, - "d": 1.02, - "Ss": 28, - "Sn": 5, - "Sa": 5.6, - "Sd": 1.39, - "Og": 2, - "Os": 172.5, - "On": 33, - "Oa": 5.23, - "Od": 1.04, - "pd": 1, - "pm": 32 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3545 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3536 - } - ], - [ - -36, - { - "n": 6, - "e": 3525 - } - ], - [ - -35, - { - "n": 4, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3505 - } - ], - [ - -33, - { - "n": 6, - "e": 3494 - } - ], - [ - -32, - { - "n": 6.5, - "e": 3479, - "g": 1 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 6, - "e": 3467 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 7, - "e": 3445 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3424 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3405 - } - ], - [ - -23, - { - "n": 6, - "e": 3395 - } - ], - [ - -20, - { - "n": 6, - "e": 3365, - "g": 1 - } - ], - [ - -18, - { - "n": 7, - "e": 3343 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4, - "e": 4153 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 3, - "e": 4215 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4233 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4301 - } - ] - ] - } - ], - [ - 745, - { - "n": "Davis", - "f": "Steven", - "fp": "MD", - "r": 5, - "c": 35 - } - ], - [ - 755, - { - "n": "Cédric Soares", - "f": "", - "fp": "DL", - "r": 10, - "c": 35, - "s": { - "s": 40, - "n": 9, - "a": 4.44, - "d": 0.68, - "Ss": 26, - "Sn": 6, - "Sa": 4.33, - "Sd": 0.75, - "Os": 55, - "On": 12, - "Oa": 4.58, - "Od": 0.63, - "pd": 10, - "pm": 2 - }, - "p": [ - [ - -23, - { - "n": 5, - "e": 3395 - } - ], - [ - -22, - { - "n": 5, - "e": 3384 - } - ], - [ - -21, - { - "n": 5, - "e": 3371 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 3, - "e": 4153 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 6, - { - "n": 4, - "e": 4248 - } - ], - [ - 5, - { - "n": 5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ] - ] - } - ], - [ - 826, - { - "n": "Boufal", - "f": "Sofiane", - "fp": "MO", - "r": 9, - "c": 35, - "s": { - "s": 61.5, - "n": 12, - "a": 5.13, - "d": 0.68, - "Og": 1, - "Os": 165.5, - "On": 33, - "Oa": 5.02, - "Od": 0.7, - "pm": 30, - "pa": 3 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 2343 - } - ], - [ - -37, - { - "n": 4.5, - "e": 2332 - } - ], - [ - -36, - { - "n": 5.5, - "e": 2329 - } - ], - [ - -35, - { - "n": 4.5, - "e": 2318 - } - ], - [ - -31, - { - "n": 5, - "e": 2274 - } - ], - [ - -30, - { - "n": 5, - "e": 2270 - } - ], - [ - -29, - { - "n": 4.5, - "e": 2254 - } - ], - [ - -27, - { - "n": 5, - "e": 2239 - } - ], - [ - -26, - { - "n": 5, - "e": 2230 - } - ], - [ - -25, - { - "n": 4.5, - "e": 2212 - } - ], - [ - -24, - { - "n": 3.5, - "e": 2203 - } - ], - [ - -23, - { - "n": 4.5, - "e": 2199 - } - ], - [ - -21, - { - "n": 5, - "e": 2178 - } - ], - [ - -20, - { - "n": 4.5, - "e": 2164 - } - ], - [ - -19, - { - "n": 4, - "e": 2158 - } - ], - [ - -18, - { - "n": 5, - "e": 2146 - } - ], - [ - -17, - { - "n": 5.5, - "e": 2134 - } - ], - [ - -33, - { - "n": 7, - "e": 2295, - "g": 1 - } - ], - [ - -32, - { - "n": 6, - "e": 2283 - } - ], - [ - -28, - { - "n": 5, - "e": 2247 - } - ], - [ - -22, - { - "n": 5.5, - "e": 2183 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4233 - } - ], - [ - 7, - { - "n": 4, - "e": 4243 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 6, - "e": 4261 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 6, - "e": 4280 - } - ], - [ - 1, - { - "n": 5, - "e": 4301 - } - ] - ] - } - ], - [ - 857, - { - "n": "Ward-Prowse", - "f": "James", - "fp": "MO", - "r": 22, - "c": 35, - "s": { - "g": 4, - "s": 90, - "n": 17, - "a": 5.29, - "d": 1.09, - "Sg": 4, - "Ss": 90, - "Sn": 17, - "Sa": 5.29, - "Sd": 1.09, - "Og": 11, - "Oao": 1, - "Os": 195.5, - "On": 36, - "Oa": 5.43, - "Od": 1.04, - "pm": 32, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3545 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3536 - } - ], - [ - -36, - { - "n": 6, - "e": 3525, - "g": 1 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 7, - "e": 3467, - "g": 1 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3453, - "g": 1 - } - ], - [ - -28, - { - "n": 7, - "e": 3445, - "g": 1 - } - ], - [ - -27, - { - "n": 4, - "e": 3429 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3424 - } - ], - [ - -25, - { - "n": 6, - "e": 3409 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3405, - "g": 1 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3395, - "g": 1 - } - ], - [ - -22, - { - "n": 7, - "e": 3384, - "g": 1 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 5, - "e": 3365, - "a": 1 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 6.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 6, - "e": 4177, - "g": 1 - } - ], - [ - 13, - { - "n": 6, - "e": 4178, - "g": 1 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4193 - } - ], - [ - 11, - { - "n": 7, - "e": 4204, - "g": 1 - } - ], - [ - 10, - { - "n": 4, - "e": 4215 - } - ], - [ - 9, - { - "n": 6, - "e": 4227 - } - ], - [ - 8, - { - "n": 4, - "e": 4233 - } - ], - [ - 7, - { - "n": 4, - "e": 4243 - } - ], - [ - 6, - { - "n": 7, - "e": 4248, - "g": 1 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 6, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4301 - } - ] - ] - } - ], - [ - 879, - { - "n": "Yoshida", - "f": "Maya", - "fp": "DC", - "r": 6, - "c": 35, - "s": { - "s": 36.5, - "n": 8, - "a": 4.56, - "d": 1.37, - "Os": 97.5, - "On": 19, - "Oa": 5.13, - "Od": 1.23, - "pd": 19 - }, - "p": [ - [ - -35, - { - "n": 4, - "e": 3515 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 5, - "e": 3494 - } - ], - [ - -32, - { - "n": 6, - "e": 3479 - } - ], - [ - -31, - { - "n": 6, - "e": 3475 - } - ], - [ - -30, - { - "n": 5, - "e": 3467 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 7, - "e": 3445 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3371 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3355 - } - ], - [ - -18, - { - "n": 6, - "e": 3343 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 10, - { - "n": 2, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 3, - "e": 4233 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 5, - { - "n": 6, - "e": 4261 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4268 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4293 - } - ] - ] - } - ], - [ - 940, - { - "n": "McCarthy", - "f": "Alex", - "fp": "G", - "r": 14, - "c": 35, - "s": { - "s": 36.5, - "n": 7, - "a": 5.21, - "d": 0.57, - "Ss": 36.5, - "Sn": 7, - "Sa": 5.21, - "Sd": 0.57, - "Os": 77.5, - "On": 15, - "Oa": 5.17, - "Od": 0.75, - "pg": 15 - }, - "p": [ - [ - -26, - { - "n": 4, - "e": 3424 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3405 - } - ], - [ - -23, - { - "n": 5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6.5, - "e": 3384 - } - ], - [ - -20, - { - "n": 5, - "e": 3365 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3343 - } - ], - [ - 17, - { - "n": 6, - "e": 4146 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 13, - { - "n": 6, - "e": 4178 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ] - ] - } - ], - [ - 962, - { - "n": "Clasie", - "f": "Jordy", - "fp": "MD", - "r": 5, - "c": 35 - } - ], - [ - 1010, - { - "n": "Ings", - "f": "Danny", - "fp": "A", - "r": 32, - "c": 35, - "s": { - "g": 9, - "s": 92.5, - "n": 17, - "a": 5.44, - "d": 0.95, - "Sg": 9, - "Ss": 92.5, - "Sn": 17, - "Sa": 5.44, - "Sd": 0.95, - "Og": 10, - "Os": 148.5, - "On": 29, - "Oa": 5.12, - "Od": 1.02, - "pa": 29 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3545 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3536 - } - ], - [ - -36, - { - "n": 6, - "e": 3525 - } - ], - [ - -35, - { - "n": 3, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3505 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3479 - } - ], - [ - -25, - { - "n": 4, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 5, - "e": 3395 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3371 - } - ], - [ - -19, - { - "n": 4, - "e": 3355 - } - ], - [ - -18, - { - "n": 6, - "e": 3343, - "g": 1 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 6, - "e": 4153, - "g": 1 - } - ], - [ - 15, - { - "n": 6.5, - "e": 4165, - "g": 1 - } - ], - [ - 14, - { - "n": 7, - "e": 4177, - "g": 1 - } - ], - [ - 13, - { - "n": 6, - "e": 4178, - "g": 1 - } - ], - [ - 12, - { - "n": 6, - "e": 4193, - "g": 1 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4215 - } - ], - [ - 9, - { - "n": 6, - "e": 4227, - "g": 1 - } - ], - [ - 8, - { - "n": 6, - "e": 4233, - "g": 1 - } - ], - [ - 7, - { - "n": 6, - "e": 4243, - "g": 1 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 6, - "e": 4280 - } - ], - [ - 2, - { - "n": 6, - "e": 4293, - "g": 1 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4301 - } - ] - ], - "a": { - "m": 21, - "a": 27, - "M": 32, - "n": 5 - } - } - ], - [ - 1030, - { - "n": "Josh Sims", - "f": "", - "fp": "MD", - "r": 4, - "c": 35, - "s": { - "Os": 33.5, - "On": 7, - "Oa": 4.79, - "Od": 1.04, - "pm": 5, - "pa": 2 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3545 - } - ], - [ - -35, - { - "n": 3, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3505 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 6, - "e": 3467 - } - ] - ] - } - ], - [ - 1037, - { - "n": "McQueen", - "f": "Sam", - "fp": "DL", - "r": 1, - "c": 35 - } - ], - [ - 1050, - { - "n": "Stephens", - "f": "Jack", - "fp": "DC", - "r": 10, - "c": 35, - "s": { - "s": 38, - "n": 9, - "a": 4.22, - "d": 0.75, - "Ss": 34, - "Sn": 8, - "Sa": 4.25, - "Sd": 0.8, - "Og": 1, - "Os": 113, - "On": 25, - "Oa": 4.52, - "Od": 0.82, - "pd": 25 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3545 - } - ], - [ - -37, - { - "n": 4, - "e": 3536 - } - ], - [ - -36, - { - "n": 4, - "e": 3525 - } - ], - [ - -35, - { - "n": 3.5, - "e": 3515 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -27, - { - "n": 3, - "e": 3429 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3424, - "g": 1 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 6, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3384 - } - ], - [ - -21, - { - "n": 5, - "e": 3371 - } - ], - [ - -20, - { - "n": 4, - "e": 3365 - } - ], - [ - -18, - { - "n": 5, - "e": 3343 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4, - "e": 4153 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 3, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ], - [ - 10, - { - "n": 4, - "e": 4215 - } - ], - [ - 1, - { - "n": 4, - "e": 4301 - } - ] - ] - } - ], - [ - 1051, - { - "n": "Reed", - "f": "Harrison", - "fp": "MD", - "r": 3, - "c": 35 - } - ], - [ - 1077, - { - "n": "Lewis", - "f": "Harry", - "fp": "G", - "r": 1, - "c": 35 - } - ], - [ - 1078, - { - "n": "Hesketh", - "f": "Jake", - "fp": "MD", - "r": 5, - "c": 35 - } - ], - [ - 1105, - { - "n": "Gunn", - "f": "Angus", - "fp": "G", - "r": 7, - "c": 35, - "s": { - "s": 50, - "n": 10, - "a": 5, - "d": 1.27, - "Os": 112.5, - "On": 22, - "Oa": 5.11, - "Od": 1.45, - "pg": 22 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3545 - } - ], - [ - -36, - { - "n": 2.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4, - "e": 3515 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -33, - { - "n": 4, - "e": 3494 - } - ], - [ - -32, - { - "n": 6, - "e": 3479 - } - ], - [ - -31, - { - "n": 6, - "e": 3475 - } - ], - [ - -30, - { - "n": 6, - "e": 3467 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3453 - } - ], - [ - -28, - { - "n": 7, - "e": 3445 - } - ], - [ - -27, - { - "n": 4, - "e": 3429 - } - ], - [ - -21, - { - "n": 8, - "e": 3371 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4215 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 8, - { - "n": 4, - "e": 4233 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 6, - "e": 4293 - } - ], - [ - 1, - { - "n": 4, - "e": 4301 - } - ] - ], - "a": { - "m": 15, - "a": 15, - "M": 15, - "n": 5 - } - } - ], - [ - 1302, - { - "n": "Hoedt", - "f": "Wesley", - "fp": "DC", - "r": 7, - "c": 35, - "s": { - "Os": 46.5, - "On": 10, - "Oa": 4.65, - "Od": 0.85, - "pd": 10 - }, - "p": [ - [ - -34, - { - "n": 5, - "e": 2308 - } - ], - [ - -37, - { - "n": 4, - "e": 2332 - } - ], - [ - -30, - { - "n": 4.5, - "e": 2270 - } - ], - [ - -29, - { - "n": 4.5, - "e": 2254 - } - ], - [ - -28, - { - "n": 5, - "e": 2247 - } - ], - [ - -26, - { - "n": 5.5, - "e": 2230 - } - ], - [ - -25, - { - "n": 6, - "e": 2212 - } - ], - [ - -24, - { - "n": 3, - "e": 2203 - } - ], - [ - -23, - { - "n": 5, - "e": 2199 - } - ], - [ - -21, - { - "n": 4, - "e": 2178 - } - ] - ] - } - ], - [ - 1315, - { - "n": "Lemina", - "f": "Mario", - "fp": "MD", - "r": 3, - "c": 35, - "s": { - "Og": 1, - "Os": 28.5, - "On": 6, - "Oa": 4.75, - "Od": 0.88, - "pm": 6 - }, - "p": [ - [ - -37, - { - "n": 4, - "e": 3536 - } - ], - [ - -35, - { - "n": 6, - "e": 3515, - "g": 1 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ], - [ - -18, - { - "n": 5, - "e": 3343 - } - ] - ] - } - ], - [ - 1333, - { - "n": "Bednarek", - "f": "Jan", - "fp": "DC", - "r": 10, - "c": 35, - "s": { - "s": 74.5, - "n": 17, - "a": 4.38, - "d": 1.21, - "Ss": 74.5, - "Sn": 17, - "Sa": 4.38, - "Sd": 1.21, - "Os": 179.5, - "On": 38, - "Oa": 4.72, - "Od": 1.19, - "pd": 38 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3545 - } - ], - [ - -37, - { - "n": 4, - "e": 3536 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4, - "e": 3515 - } - ], - [ - -34, - { - "n": 6, - "e": 3505 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3479 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 6, - "e": 3467 - } - ], - [ - -29, - { - "n": 4, - "e": 3453 - } - ], - [ - -28, - { - "n": 6, - "e": 3445 - } - ], - [ - -27, - { - "n": 4, - "e": 3429 - } - ], - [ - -26, - { - "n": 4, - "e": 3424 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 6, - "e": 3405 - } - ], - [ - -23, - { - "n": 6, - "e": 3395 - } - ], - [ - -22, - { - "n": 7, - "e": 3384 - } - ], - [ - -21, - { - "n": 6, - "e": 3371 - } - ], - [ - -20, - { - "n": 3, - "e": 3365 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3355 - } - ], - [ - -18, - { - "n": 6, - "e": 3343 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4165 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4193 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 1.5, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 3, - "e": 4233 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 3, - "e": 4248 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 6, - "e": 4280 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4293 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4301 - } - ] - ] - } - ], - [ - 2264, - { - "n": "Obafemi", - "f": "Michael", - "fp": "A", - "r": 5, - "c": 35, - "s": { - "s": 26, - "n": 6, - "a": 4.33, - "d": 0.26, - "Og": 1, - "Os": 37, - "On": 8, - "Oa": 4.63, - "Od": 0.79, - "pa": 8 - }, - "p": [ - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3343, - "g": 1 - } - ], - [ - 14, - { - "n": 4, - "e": 4177 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4193 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4233 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - 1, - { - "n": 4, - "e": 4301 - } - ] - ] - } - ], - [ - 2484, - { - "n": "Mohamed Elyounoussi", - "f": "", - "fp": "MD", - "r": 7, - "c": 35, - "s": { - "Os": 27, - "On": 6, - "Oa": 4.5, - "Od": 0.77, - "pm": 6 - }, - "p": [ - [ - -37, - { - "n": 3, - "e": 3536 - } - ], - [ - -27, - { - "n": 5, - "e": 3429 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3424 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3365 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ] - ] - } - ], - [ - 2486, - { - "n": "Vestergaard", - "f": "Jannik", - "fp": "DC", - "r": 7, - "c": 35, - "s": { - "g": 1, - "s": 53, - "n": 11, - "a": 4.82, - "d": 1.44, - "Og": 1, - "Os": 131, - "On": 25, - "Oa": 5.24, - "Od": 1.12, - "pd": 25 - }, - "p": [ - [ - -34, - { - "n": 6, - "e": 3505 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3494 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3467 - } - ], - [ - -29, - { - "n": 5, - "e": 3453 - } - ], - [ - -28, - { - "n": 7, - "e": 3445 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 5, - "e": 3424 - } - ], - [ - -25, - { - "n": 6, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 6, - "e": 3384 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3371 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3343 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 3, - "e": 4215 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 3, - "e": 4248 - } - ], - [ - 5, - { - "n": 6, - "e": 4261 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4268, - "g": 1 - } - ], - [ - 3, - { - "n": 7, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 3, - "e": 4301 - } - ] - ], - "a": { - "m": 15, - "a": 19, - "M": 25, - "n": 16 - } - } - ], - [ - 2488, - { - "n": "Armstrong", - "f": "Stuart", - "fp": "MO", - "r": 7, - "c": 35, - "s": { - "s": 53, - "n": 11, - "a": 4.82, - "d": 0.46, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 128, - "On": 27, - "Oa": 4.74, - "Od": 0.59, - "pm": 22, - "pa": 5 - }, - "p": [ - [ - -37, - { - "n": 3.5, - "e": 3536 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3525 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3515 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 6, - "e": 3467 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3429 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3405 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3395 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3371 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3355 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3343 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4215 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4248 - } - ], - [ - 5, - { - "n": 5, - "e": 4261 - } - ], - [ - 4, - { - "n": 5, - "e": 4268 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ] - ] - } - ], - [ - 2543, - { - "n": "Valery", - "f": "Yan", - "fp": "DL", - "r": 8, - "c": 35, - "s": { - "s": 31, - "n": 8, - "a": 3.88, - "d": 1.46, - "Og": 2, - "Os": 125, - "On": 28, - "Oa": 4.46, - "Od": 1.01, - "pd": 12, - "pm": 16 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3545 - } - ], - [ - -37, - { - "n": 3, - "e": 3536 - } - ], - [ - -36, - { - "n": 5, - "e": 3525 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -33, - { - "n": 4, - "e": 3494 - } - ], - [ - -32, - { - "n": 5, - "e": 3479 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 5, - "e": 3467, - "g": 1 - } - ], - [ - -29, - { - "n": 5, - "e": 3453, - "g": 1 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3445 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3429 - } - ], - [ - -26, - { - "n": 5, - "e": 3424 - } - ], - [ - -25, - { - "n": 5, - "e": 3409 - } - ], - [ - -24, - { - "n": 5, - "e": 3405 - } - ], - [ - -23, - { - "n": 5, - "e": 3395 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3384 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3371 - } - ], - [ - -20, - { - "n": 5, - "e": 3365 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3355 - } - ], - [ - -18, - { - "n": 5, - "e": 3343 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 1, - "e": 4215 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4233 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4280 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ], - [ - 1, - { - "n": 2.5, - "e": 4301 - } - ] - ] - } - ], - [ - 2561, - { - "n": "Jones", - "f": "Alfie", - "fp": "MD", - "r": 1, - "c": 35 - } - ], - [ - 2581, - { - "n": "Flannigan", - "f": "Jake", - "fp": "MD", - "r": 1, - "c": 35 - } - ], - [ - 2582, - { - "n": "Gallagher", - "f": "Sam", - "fp": "A", - "r": 3, - "c": 35, - "s": { - "Os": 17.5, - "On": 4, - "Oa": 4.38, - "Od": 0.25, - "pa": 4 - }, - "p": [ - [ - -32, - { - "n": 4, - "e": 3479 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3453 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3424 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3384 - } - ] - ] - } - ], - [ - 2974, - { - "n": "Ramsay", - "f": "Kayne", - "fp": "DL", - "r": 1, - "c": 35 - } - ], - [ - 2982, - { - "n": "Johnson", - "f": "Tyreke", - "fp": "MD", - "r": 1, - "c": 35 - } - ], - [ - 2983, - { - "n": "Slattery", - "f": "Callum", - "fp": "MO", - "r": 1, - "c": 35, - "s": { - "Os": 14, - "On": 3, - "Oa": 4.67, - "Od": 0.29, - "pm": 3 - }, - "p": [ - [ - -25, - { - "n": 4.5, - "e": 3409 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3405 - } - ], - [ - -22, - { - "n": 5, - "e": 3384 - } - ] - ] - } - ], - [ - 2985, - { - "n": "Barnes", - "f": "Marcus", - "fp": "A", - "r": 1, - "c": 35 - } - ], - [ - 3643, - { - "n": "Djenepo", - "f": "Moussa", - "fp": "MO", - "r": 13, - "c": 35, - "s": { - "g": 2, - "s": 55.5, - "n": 10, - "a": 5.55, - "d": 1.09, - "Ss": 36.5, - "Sn": 7, - "Sa": 5.21, - "Sd": 0.91, - "Og": 2, - "Os": 55.5, - "On": 10, - "Oa": 5.55, - "Od": 1.09, - "pm": 9, - "pa": 1 - }, - "p": [ - [ - 17, - { - "n": 5.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 5, - "e": 4153 - } - ], - [ - 15, - { - "n": 5, - "e": 4165 - } - ], - [ - 14, - { - "n": 7, - "e": 4177 - } - ], - [ - 13, - { - "n": 5, - "e": 4178 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 11, - { - "n": 5, - "e": 4204 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4261, - "g": 1 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4280, - "g": 1 - } - ], - [ - 2, - { - "n": 5, - "e": 4293 - } - ] - ] - } - ], - [ - 3668, - { - "n": "Adams", - "f": "Che", - "fp": "A", - "r": 8, - "c": 35, - "s": { - "s": 52.5, - "n": 12, - "a": 4.38, - "d": 0.91, - "Ss": 13, - "Sn": 3, - "Sa": 4.33, - "Sd": 0.29, - "Os": 52.5, - "On": 12, - "Oa": 4.38, - "Od": 0.91, - "pa": 12 - }, - "p": [ - [ - 17, - { - "n": 4.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4153 - } - ], - [ - 15, - { - "n": 4, - "e": 4165 - } - ], - [ - 12, - { - "n": 4, - "e": 4193 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4204 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4233 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4248 - } - ], - [ - 5, - { - "n": 6, - "e": 4261 - } - ], - [ - 4, - { - "n": 4, - "e": 4268 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4293 - } - ], - [ - 1, - { - "n": 2.5, - "e": 4301 - } - ] - ] - } - ], - [ - 5436, - { - "n": "Vokins", - "f": "Jake", - "fp": "DL", - "r": 1, - "c": 35 - } - ], - [ - 5437, - { - "n": "Smallbone", - "f": "William", - "fp": "A", - "r": 1, - "c": 35 - } - ], - [ - 6148, - { - "n": "N'Lundulu", - "f": "Daniel", - "fp": "A", - "r": 1, - "c": 35 - } - ], - [ - 6149, - { - "n": "Danso", - "f": "Kevin", - "fp": "DC", - "r": 5, - "c": 35, - "s": { - "s": 27.5, - "n": 6, - "a": 4.58, - "d": 0.86, - "Os": 27.5, - "On": 6, - "Oa": 4.58, - "Od": 0.86, - "pd": 3, - "pm": 3 - }, - "p": [ - [ - 11, - { - "n": 5.5, - "e": 4204 - } - ], - [ - 10, - { - "n": 5, - "e": 4215 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 6, - { - "n": 3, - "e": 4248 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4268 - } - ], - [ - 3, - { - "n": 5, - "e": 4280 - } - ] - ] - } - ], - [ - 8, - { - "n": "Lucas Moura", - "f": "", - "fp": "MO", - "r": 20, - "c": 24, - "s": { - "g": 4, - "s": 80, - "n": 15, - "a": 5.33, - "d": 1.03, - "Sg": 2, - "Ss": 24, - "Sn": 4, - "Sa": 6, - "Sd": 1.47, - "Og": 9, - "Os": 161.5, - "On": 31, - "Oa": 5.21, - "Od": 1.12, - "pm": 19, - "pa": 12 - }, - "p": [ - [ - 17, - { - "n": 7, - "e": 4147, - "g": 1 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4187, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - -36, - { - "n": 4, - "e": 3526 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3366 - } - ], - [ - -38, - { - "n": 5, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -35, - { - "n": 4, - "e": 3514 - } - ], - [ - -34, - { - "n": 8.5, - "e": 3506, - "g": 3 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 6, - "e": 3485, - "g": 1 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3474 - } - ], - [ - -30, - { - "n": 4, - "e": 3467 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -25, - { - "n": 4, - "e": 3416 - } - ], - [ - -19, - { - "n": 7, - "e": 3356, - "g": 1 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3342 - } - ], - [ - 16, - { - "n": 7.5, - "e": 4155, - "g": 1 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4173 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 4, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4228 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5, - "e": 4262 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 6, - "e": 4294, - "g": 1 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ], - "a": { - "m": 19, - "a": 32, - "M": 45, - "n": 10 - } - } - ], - [ - 21, - { - "n": "Aurier", - "f": "Serge", - "fp": "DL", - "r": 12, - "c": 24, - "s": { - "s": 60, - "n": 12, - "a": 5, - "d": 1.21, - "Ss": 47, - "Sn": 9, - "Sa": 5.22, - "Sd": 0.94, - "Os": 69, - "On": 14, - "Oa": 4.93, - "Od": 1.12, - "pd": 11, - "pm": 3 - }, - "p": [ - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3407 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4155 - } - ], - [ - 15, - { - "n": 6, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 13, - { - "n": 6, - "e": 4187 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 6, - "e": 4203 - } - ], - [ - 10, - { - "n": 3, - "e": 4211 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 3, - "e": 4249 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4262 - } - ] - ] - } - ], - [ - 295, - { - "n": "Lo Celso", - "f": "Giovani", - "fp": "MO", - "r": 10, - "c": 24, - "s": { - "s": 39, - "n": 8, - "a": 4.88, - "d": 0.23, - "Og": 5, - "Os": 136, - "On": 27, - "Oa": 5.04, - "Od": 1.16, - "pm": 19, - "pa": 8 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 2350 - } - ], - [ - -37, - { - "n": 4.5, - "e": 2335 - } - ], - [ - -36, - { - "n": 4, - "e": 2330 - } - ], - [ - -35, - { - "n": 7, - "e": 2314 - } - ], - [ - -33, - { - "n": 5, - "e": 2294, - "g": 1 - } - ], - [ - -32, - { - "n": 6, - "e": 2288, - "g": 1 - } - ], - [ - -31, - { - "n": 8, - "e": 2273, - "g": 2 - } - ], - [ - -30, - { - "n": 4.5, - "e": 2269 - } - ], - [ - -29, - { - "n": 4, - "e": 2258 - } - ], - [ - -28, - { - "n": 4, - "e": 2246 - } - ], - [ - -26, - { - "n": 3.5, - "e": 2222 - } - ], - [ - -24, - { - "n": 7, - "e": 2205, - "g": 1 - } - ], - [ - -23, - { - "n": 3.5, - "e": 2198 - } - ], - [ - -21, - { - "n": 5, - "e": 2173 - } - ], - [ - -18, - { - "n": 4.5, - "e": 2149 - } - ], - [ - -17, - { - "n": 4, - "e": 2135 - } - ], - [ - -27, - { - "n": 5, - "e": 2239 - } - ], - [ - -20, - { - "n": 4, - "e": 2163 - } - ], - [ - -19, - { - "n": 7, - "e": 2155 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 4, - { - "n": 5, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ] - ] - } - ], - [ - 589, - { - "n": "Kane", - "f": "Harry", - "fp": "A", - "r": 42, - "c": 24, - "s": { - "g": 9, - "s": 87.5, - "n": 16, - "a": 5.47, - "d": 1.53, - "Sg": 3, - "Ss": 33, - "Sn": 6, - "Sa": 5.5, - "Sd": 1.7, - "Og": 17, - "Os": 152.5, - "On": 27, - "Oa": 5.65, - "Od": 1.39, - "pa": 27 - }, - "p": [ - [ - -32, - { - "n": 4, - "e": 3485 - } - ], - [ - -31, - { - "n": 5, - "e": 3474 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3467, - "g": 1 - } - ], - [ - -29, - { - "n": 6, - "e": 3454, - "g": 1 - } - ], - [ - -28, - { - "n": 4, - "e": 3443 - } - ], - [ - -27, - { - "n": 6, - "e": 3430, - "g": 1 - } - ], - [ - -22, - { - "n": 6, - "e": 3386 - } - ], - [ - -21, - { - "n": 7, - "e": 3370, - "g": 1 - } - ], - [ - -20, - { - "n": 6, - "e": 3366, - "g": 1 - } - ], - [ - -19, - { - "n": 7, - "e": 3356, - "g": 1 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3342, - "g": 2 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 8.5, - "e": 4155, - "g": 2 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 13, - { - "n": 6, - "e": 4187, - "g": 1 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4194 - } - ], - [ - 10, - { - "n": 6, - "e": 4211, - "g": 1 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 6, - "e": 4243, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4249, - "g": 1 - } - ], - [ - 5, - { - "n": 6, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4277, - "g": 1 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4294 - } - ], - [ - 1, - { - "n": 8, - "e": 4304, - "g": 2 - } - ] - ], - "a": { - "m": 51, - "a": 87, - "M": 111, - "n": 11 - } - } - ], - [ - 596, - { - "n": "Dele Alli", - "f": "", - "fp": "MO", - "r": 29, - "c": 24, - "s": { - "g": 5, - "s": 62.5, - "n": 10, - "a": 6.25, - "d": 1.06, - "Sg": 5, - "Ss": 58, - "Sn": 9, - "Sa": 6.44, - "Sd": 0.92, - "Og": 7, - "Os": 127, - "On": 23, - "Oa": 5.52, - "Od": 1.13, - "pm": 21, - "pa": 2 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 6, - "e": 3474 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3467 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3390, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3386 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3370 - } - ], - [ - -20, - { - "n": 4, - "e": 3366 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3342, - "g": 1 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 7, - "e": 4155 - } - ], - [ - 15, - { - "n": 7, - "e": 4163, - "g": 1 - } - ], - [ - 14, - { - "n": 8, - "e": 4173, - "g": 2 - } - ], - [ - 13, - { - "n": 6, - "e": 4187 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4194 - } - ], - [ - 11, - { - "n": 7, - "e": 4203, - "g": 1 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 9, - { - "n": 6, - "e": 4226, - "g": 1 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4277 - } - ] - ] - } - ], - [ - 611, - { - "n": "Eriksen", - "f": "Christian", - "fp": "MO", - "r": 17, - "c": 24, - "s": { - "g": 1, - "s": 67, - "n": 13, - "a": 5.15, - "d": 0.92, - "Ss": 5.5, - "Sn": 1, - "Sa": 5.5, - "Og": 8, - "Os": 188, - "On": 34, - "Oa": 5.53, - "Od": 1.11, - "pm": 30, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3546, - "g": 1 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 6, - "e": 3506 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3495, - "g": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 7.5, - "e": 3474, - "g": 1 - } - ], - [ - -30, - { - "n": 6, - "e": 3467 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 5, - "e": 3430 - } - ], - [ - -26, - { - "n": 7, - "e": 3425, - "g": 1 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3390 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3370, - "g": 1 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3366 - } - ], - [ - -19, - { - "n": 8, - "e": 3356, - "g": 1 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3342, - "g": 1 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4147 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4187 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 4, - "e": 4211 - } - ], - [ - 8, - { - "n": 4, - "e": 4228 - } - ], - [ - 7, - { - "n": 6.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4262 - } - ], - [ - 4, - { - "n": 7, - "e": 4277, - "g": 1 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ], - "a": { - "m": 25, - "a": 27, - "M": 32, - "n": 5 - } - } - ], - [ - 613, - { - "n": "Lloris", - "f": "Hugo", - "fp": "G", - "r": 6, - "c": 24, - "s": { - "s": 39, - "n": 7, - "a": 5.57, - "d": 1.48, - "Os": 152.5, - "On": 27, - "Oa": 5.65, - "Od": 1.25, - "pg": 27 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 6, - "e": 3528 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3526 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3506 - } - ], - [ - -33, - { - "n": 6, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3485 - } - ], - [ - -31, - { - "n": 6, - "e": 3474 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3467 - } - ], - [ - -29, - { - "n": 6.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 4, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 8.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3390 - } - ], - [ - -22, - { - "n": 7, - "e": 3386 - } - ], - [ - -21, - { - "n": 6, - "e": 3370 - } - ], - [ - -20, - { - "n": 4, - "e": 3366 - } - ], - [ - -19, - { - "n": 7, - "e": 3356 - } - ], - [ - -18, - { - "n": 5, - "e": 3342 - } - ], - [ - 8, - { - "n": 3, - "e": 4228 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 5, - { - "n": 7, - "e": 4262 - } - ], - [ - 4, - { - "n": 6, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - 2, - { - "n": 7.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4304 - } - ] - ], - "a": { - "m": 25, - "a": 31, - "M": 41, - "n": 5 - } - } - ], - [ - 635, - { - "n": "Wanyama", - "f": "Victor", - "fp": "MD", - "r": 1, - "c": 24, - "s": { - "s": 10, - "n": 2, - "a": 5, - "Og": 1, - "Os": 56.5, - "On": 11, - "Oa": 5.14, - "Od": 0.87, - "pm": 11 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3546 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3528 - } - ], - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 7.5, - "e": 3506, - "g": 1 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3495 - } - ], - [ - -31, - { - "n": 5, - "e": 3474 - } - ], - [ - -29, - { - "n": 4, - "e": 3454 - } - ], - [ - -26, - { - "n": 5, - "e": 3425 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ] - ] - } - ], - [ - 652, - { - "n": "Alderweireld", - "f": "Toby", - "fp": "DC", - "r": 16, - "c": 24, - "s": { - "s": 82, - "n": 16, - "a": 5.13, - "d": 0.83, - "Ss": 26.5, - "Sn": 5, - "Sa": 5.3, - "Sd": 0.57, - "Oao": 1, - "Os": 180.5, - "On": 35, - "Oa": 5.16, - "Od": 0.79, - "pd": 35 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3514 - } - ], - [ - -33, - { - "n": 7, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3485, - "a": 1 - } - ], - [ - -31, - { - "n": 6, - "e": 3474 - } - ], - [ - -29, - { - "n": 5, - "e": 3454 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 5, - "e": 3425 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3390 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - -21, - { - "n": 6, - "e": 3370 - } - ], - [ - -20, - { - "n": 4, - "e": 3366 - } - ], - [ - -19, - { - "n": 6, - "e": 3356 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4155 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 6, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4187 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4211 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 8, - { - "n": 4, - "e": 4228 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4243 - } - ], - [ - 6, - { - "n": 4, - "e": 4249 - } - ], - [ - 5, - { - "n": 7, - "e": 4262 - } - ], - [ - 4, - { - "n": 4, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ] - } - ], - [ - 658, - { - "n": "Vertonghen", - "f": "Jan", - "fp": "DC", - "r": 13, - "c": 24, - "s": { - "g": 1, - "s": 52.5, - "n": 10, - "a": 5.25, - "d": 1.06, - "Sg": 1, - "Ss": 22.5, - "Sn": 4, - "Sa": 5.63, - "Sd": 1.11, - "Og": 1, - "Os": 122, - "On": 23, - "Oa": 5.3, - "Od": 0.95, - "pd": 23 - }, - "p": [ - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3506 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3485 - } - ], - [ - -31, - { - "n": 6, - "e": 3474 - } - ], - [ - -30, - { - "n": 4, - "e": 3467 - } - ], - [ - -29, - { - "n": 6, - "e": 3454 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 6, - "e": 3407 - } - ], - [ - -23, - { - "n": 6, - "e": 3390 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - 17, - { - "n": 6, - "e": 4147, - "g": 1 - } - ], - [ - 16, - { - "n": 7, - "e": 4155 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 6, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 6, - "e": 4262 - } - ], - [ - 4, - { - "n": 4, - "e": 4277 - } - ] - ] - } - ], - [ - 687, - { - "n": "Sissoko", - "f": "Moussa", - "fp": "MO", - "r": 19, - "c": 24, - "s": { - "g": 2, - "s": 91.5, - "n": 17, - "a": 5.38, - "d": 0.99, - "Sg": 2, - "Ss": 91.5, - "Sn": 17, - "Sa": 5.38, - "Sd": 0.99, - "Og": 2, - "Os": 183, - "On": 34, - "Oa": 5.38, - "Od": 0.95, - "pd": 1, - "pm": 33 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3546 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3528 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3506 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 6, - "e": 3474 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3467 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 5, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 7, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3416 - } - ], - [ - -24, - { - "n": 5, - "e": 3407 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3386 - } - ], - [ - -21, - { - "n": 6, - "e": 3370 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3366 - } - ], - [ - -19, - { - "n": 7, - "e": 3356 - } - ], - [ - -18, - { - "n": 6.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 6, - "e": 4147 - } - ], - [ - 16, - { - "n": 7, - "e": 4155, - "g": 1 - } - ], - [ - 15, - { - "n": 4, - "e": 4163 - } - ], - [ - 14, - { - "n": 7, - "e": 4173, - "g": 1 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 8, - { - "n": 3, - "e": 4228 - } - ], - [ - 7, - { - "n": 6, - "e": 4243 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4249 - } - ], - [ - 5, - { - "n": 6, - "e": 4262 - } - ], - [ - 4, - { - "n": 5, - "e": 4277 - } - ], - [ - 3, - { - "n": 6, - "e": 4287 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4304 - } - ] - ] - } - ], - [ - 714, - { - "n": "Rose", - "f": "Danny", - "fp": "DL", - "r": 7, - "c": 24, - "s": { - "s": 47.5, - "n": 10, - "a": 4.75, - "d": 0.26, - "Os": 131, - "On": 27, - "Oa": 4.85, - "Od": 0.55, - "pd": 19, - "pm": 8 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 5, - "e": 3506 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 4, - "e": 3485 - } - ], - [ - -31, - { - "n": 4, - "e": 3474 - } - ], - [ - -30, - { - "n": 4, - "e": 3467 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3454 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3443 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3425 - } - ], - [ - -25, - { - "n": 5, - "e": 3416 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3390 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3370 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3356 - } - ], - [ - 13, - { - "n": 5, - "e": 4187 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4211 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4226 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 5, - "e": 4262 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4304 - } - ] - ] - } - ], - [ - 724, - { - "n": "Dier", - "f": "Eric", - "fp": "MD", - "r": 12, - "c": 24, - "s": { - "s": 33.5, - "n": 7, - "a": 4.79, - "d": 0.64, - "Ss": 11, - "Sn": 2, - "Sa": 5.5, - "Sd": 0.71, - "Og": 1, - "Os": 67.5, - "On": 14, - "Oa": 4.82, - "Od": 0.5, - "pd": 2, - "pm": 12 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3546, - "g": 1 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3514 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3467 - } - ], - [ - -25, - { - "n": 5, - "e": 3416 - } - ], - [ - -23, - { - "n": 5, - "e": 3390 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 6, - "e": 4155 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4194 - } - ], - [ - 8, - { - "n": 4, - "e": 4228 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4243 - } - ] - ] - } - ], - [ - 783, - { - "n": "Dembélé", - "f": "Mousa", - "fp": "MD", - "r": 3, - "c": 24 - } - ], - [ - 786, - { - "n": "Lamela", - "f": "Erik", - "fp": "MO", - "r": 11, - "c": 24, - "s": { - "g": 2, - "s": 48, - "n": 9, - "a": 5.33, - "d": 1.27, - "Og": 2, - "Os": 92.5, - "On": 18, - "Oa": 5.14, - "Od": 1.05, - "pm": 17, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3546 - } - ], - [ - -29, - { - "n": 5, - "e": 3454 - } - ], - [ - -28, - { - "n": 4, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3416 - } - ], - [ - -24, - { - "n": 5, - "e": 3407 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3390 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3386 - } - ], - [ - -18, - { - "n": 6, - "e": 3342 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 5, - "e": 4243 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4249 - } - ], - [ - 5, - { - "n": 7, - "e": 4262, - "g": 1 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4277 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 7, - "e": 4294, - "g": 1 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ] - } - ], - [ - 799, - { - "n": "Vorm", - "f": "Michel", - "fp": "G", - "r": 1, - "c": 24 - } - ], - [ - 824, - { - "n": "Son Heung-Min", - "f": "", - "fp": "A", - "r": 36, - "c": 24, - "s": { - "g": 5, - "s": 88.5, - "n": 15, - "a": 5.9, - "d": 1.48, - "Sg": 5, - "Ss": 88.5, - "Sn": 15, - "Sa": 5.9, - "Sd": 1.48, - "Og": 14, - "Os": 194, - "On": 34, - "Oa": 5.71, - "Od": 1.5, - "pm": 15, - "pa": 19 - }, - "p": [ - [ - -37, - { - "n": 3.5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 6, - "e": 3506 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3485 - } - ], - [ - -31, - { - "n": 7, - "e": 3474, - "g": 1 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3467 - } - ], - [ - -29, - { - "n": 4, - "e": 3454 - } - ], - [ - -28, - { - "n": 4, - "e": 3443 - } - ], - [ - -27, - { - "n": 4, - "e": 3430 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3425, - "g": 1 - } - ], - [ - -25, - { - "n": 7, - "e": 3416, - "g": 1 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3407, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 3386 - } - ], - [ - -21, - { - "n": 7, - "e": 3370, - "g": 1 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3366 - } - ], - [ - -19, - { - "n": 8, - "e": 3356, - "g": 2 - } - ], - [ - -18, - { - "n": 9, - "e": 3342, - "g": 2 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 8, - "e": 4155, - "g": 1 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 7.5, - "e": 4173 - } - ], - [ - 13, - { - "n": 8, - "e": 4187, - "g": 1 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4194, - "g": 1 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 10, - { - "n": 6, - "e": 4211 - } - ], - [ - 9, - { - "n": 4, - "e": 4226 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4228 - } - ], - [ - 7, - { - "n": 6, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 8, - "e": 4262, - "g": 2 - } - ], - [ - 4, - { - "n": 6, - "e": 4277 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4287 - } - ] - ], - "a": { - "m": 37, - "a": 49, - "M": 75, - "n": 7 - } - } - ], - [ - 831, - { - "n": "Winks", - "f": "Harry", - "fp": "MD", - "r": 9, - "c": 24, - "s": { - "s": 76, - "n": 15, - "a": 5.07, - "d": 0.73, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 1, - "Os": 146.5, - "On": 27, - "Oa": 5.43, - "Od": 0.9, - "pm": 27 - }, - "p": [ - [ - -31, - { - "n": 5.5, - "e": 3474 - } - ], - [ - -28, - { - "n": 6, - "e": 3443 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -26, - { - "n": 6, - "e": 3425 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 5, - "e": 3407 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3390, - "g": 1 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3386 - } - ], - [ - -21, - { - "n": 7, - "e": 3370 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3366 - } - ], - [ - -19, - { - "n": 7, - "e": 3356 - } - ], - [ - -18, - { - "n": 7, - "e": 3342 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5, - "e": 4173 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4211 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 4, - "e": 4228 - } - ], - [ - 7, - { - "n": 6, - "e": 4243 - } - ], - [ - 6, - { - "n": 5, - "e": 4249 - } - ], - [ - 5, - { - "n": 7, - "e": 4262 - } - ], - [ - 4, - { - "n": 5, - "e": 4277 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4304 - } - ] - ] - } - ], - [ - 847, - { - "n": "Janssen", - "f": "Vincent", - "fp": "A", - "r": 1, - "c": 24, - "s": { - "Os": 14, - "On": 3, - "Oa": 4.67, - "Od": 0.29, - "pa": 3 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3546 - } - ], - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3495 - } - ] - ] - } - ], - [ - 896, - { - "n": "Davies", - "f": "Ben", - "fp": "DL", - "r": 3, - "c": 24, - "s": { - "s": 27, - "n": 6, - "a": 4.5, - "d": 0.63, - "Os": 95.5, - "On": 20, - "Oa": 4.78, - "Od": 0.72, - "pd": 19, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3546 - } - ], - [ - -37, - { - "n": 5, - "e": 3528 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3514 - } - ], - [ - -34, - { - "n": 6, - "e": 3506 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -32, - { - "n": 5, - "e": 3485 - } - ], - [ - -31, - { - "n": 6, - "e": 3474 - } - ], - [ - -30, - { - "n": 5, - "e": 3467 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3443 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3386 - } - ], - [ - -20, - { - "n": 3, - "e": 3366 - } - ], - [ - -19, - { - "n": 5, - "e": 3356 - } - ], - [ - -18, - { - "n": 5, - "e": 3342 - } - ], - [ - 13, - { - "n": 5, - "e": 4187 - } - ], - [ - 12, - { - "n": 4, - "e": 4194 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4203 - } - ], - [ - 8, - { - "n": 3.5, - "e": 4228 - } - ], - [ - 5, - { - "n": 5, - "e": 4262 - } - ], - [ - 3, - { - "n": 5, - "e": 4287 - } - ] - ] - } - ], - [ - 918, - { - "n": "Nkoudou", - "f": "Georges-Kévin", - "fp": "MD", - "r": 5, - "c": 24, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 25.5, - "On": 5, - "Oa": 5.1, - "Od": 0.55, - "pm": 5 - }, - "p": [ - [ - -25, - { - "n": 5, - "e": 2978 - } - ], - [ - -24, - { - "n": 5, - "e": 2965 - } - ], - [ - -23, - { - "n": 4.5, - "e": 2957 - } - ], - [ - -23, - { - "n": 6, - "e": 3390 - } - ], - [ - 1, - { - "n": 5, - "e": 4304 - } - ] - ] - } - ], - [ - 969, - { - "n": "Onomah", - "f": "Josh", - "fp": "MD", - "r": 3, - "c": 24 - } - ], - [ - 999, - { - "n": "Carter-Vickers", - "f": "Cameron", - "fp": "DC", - "r": 5, - "c": 24 - } - ], - [ - 1072, - { - "n": "Whiteman", - "f": "Alfie", - "fp": "G", - "r": 7, - "c": 24 - } - ], - [ - 1118, - { - "n": "Walker-Peters", - "f": "Kyle", - "fp": "DL", - "r": 3, - "c": 24, - "s": { - "s": 14.5, - "n": 3, - "a": 4.83, - "d": 1.04, - "Os": 41.5, - "On": 8, - "Oa": 5.19, - "Od": 1, - "pd": 7, - "pm": 1 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3546 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3506 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3467 - } - ], - [ - -26, - { - "n": 5, - "e": 3425 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3356 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 4, - "e": 4294 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ] - } - ], - [ - 1314, - { - "n": "Sánchez", - "f": "Davinson", - "fp": "DC", - "r": 12, - "c": 24, - "s": { - "s": 65, - "n": 13, - "a": 5, - "d": 0.65, - "Ss": 45.5, - "Sn": 9, - "Sa": 5.06, - "Sd": 0.58, - "Og": 1, - "Os": 139.5, - "On": 28, - "Oa": 4.98, - "Od": 0.92, - "pd": 28 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3528 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3514 - } - ], - [ - -34, - { - "n": 6, - "e": 3506 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3485 - } - ], - [ - -30, - { - "n": 4, - "e": 3467 - } - ], - [ - -29, - { - "n": 3, - "e": 3454 - } - ], - [ - -28, - { - "n": 4, - "e": 3443 - } - ], - [ - -26, - { - "n": 7, - "e": 3425, - "g": 1 - } - ], - [ - -25, - { - "n": 6, - "e": 3416 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3390 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3370 - } - ], - [ - -20, - { - "n": 3, - "e": 3366 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3342 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 6, - "e": 4155 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4163 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4173 - } - ], - [ - 13, - { - "n": 5, - "e": 4187 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4211 - } - ], - [ - 9, - { - "n": 4, - "e": 4226 - } - ], - [ - 4, - { - "n": 4, - "e": 4277 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4287 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ], - [ - 1, - { - "n": 6, - "e": 4304 - } - ] - ], - "a": { - "m": 13, - "a": 16, - "M": 20, - "n": 8 - } - } - ], - [ - 1391, - { - "n": "Gazzaniga", - "f": "Paulo", - "fp": "G", - "r": 16, - "c": 24, - "s": { - "s": 60.5, - "n": 11, - "a": 5.5, - "d": 1.07, - "Ss": 54.5, - "Sn": 10, - "Sa": 5.45, - "Sd": 1.12, - "Os": 66, - "On": 12, - "Oa": 5.5, - "Od": 1.02, - "pg": 12 - }, - "p": [ - [ - -35, - { - "n": 5.5, - "e": 3514 - } - ], - [ - 17, - { - "n": 6, - "e": 4147 - } - ], - [ - 16, - { - "n": 6, - "e": 4155 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 6, - "e": 4173 - } - ], - [ - 13, - { - "n": 5, - "e": 4187 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ], - [ - 10, - { - "n": 8, - "e": 4211 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 4, - "e": 4228 - } - ], - [ - 6, - { - "n": 6, - "e": 4249 - } - ] - ] - } - ], - [ - 1414, - { - "n": "Ndombele", - "f": "Tanguy", - "fp": "MD", - "r": 16, - "c": 24, - "s": { - "g": 2, - "s": 62, - "n": 12, - "a": 5.17, - "d": 1.01, - "Og": 3, - "Os": 163.5, - "On": 30, - "Oa": 5.45, - "Od": 1.03, - "pm": 30 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3109, - "g": 1 - } - ], - [ - -36, - { - "n": 7.5, - "e": 3087 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3064 - } - ], - [ - -33, - { - "n": 6, - "e": 3054 - } - ], - [ - -32, - { - "n": 6, - "e": 3048 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3036 - } - ], - [ - -30, - { - "n": 6, - "e": 3028 - } - ], - [ - -29, - { - "n": 7, - "e": 3017 - } - ], - [ - -27, - { - "n": 6, - "e": 2997 - } - ], - [ - -23, - { - "n": 5, - "e": 2956 - } - ], - [ - -21, - { - "n": 6, - "e": 2941 - } - ], - [ - -17, - { - "n": 5.5, - "e": 2901 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3095 - } - ], - [ - -35, - { - "n": 5, - "e": 3074 - } - ], - [ - -26, - { - "n": 4.5, - "e": 2985 - } - ], - [ - -24, - { - "n": 3.5, - "e": 2967 - } - ], - [ - -22, - { - "n": 5.5, - "e": 2942 - } - ], - [ - -20, - { - "n": 4.5, - "e": 2926 - } - ], - [ - 15, - { - "n": 5, - "e": 4163 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4173 - } - ], - [ - 12, - { - "n": 4, - "e": 4194 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ], - [ - 10, - { - "n": 5, - "e": 4211 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 8, - { - "n": 4, - "e": 4228 - } - ], - [ - 7, - { - "n": 7.5, - "e": 4243, - "g": 1 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4249 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4262 - } - ], - [ - 2, - { - "n": 6.5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4304, - "g": 1 - } - ] - ] - } - ], - [ - 2028, - { - "n": "Foyth", - "f": "Juan", - "fp": "DC", - "r": 5, - "c": 24, - "s": { - "s": 15, - "n": 3, - "a": 5, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 51, - "On": 10, - "Oa": 5.1, - "Od": 0.99, - "pd": 10 - }, - "p": [ - [ - -37, - { - "n": 3.5, - "e": 3528 - } - ], - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3514 - } - ], - [ - -34, - { - "n": 7, - "e": 3506 - } - ], - [ - -33, - { - "n": 5, - "e": 3495 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3430 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3356 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 12, - { - "n": 5, - "e": 4194 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ] - ] - } - ], - [ - 2063, - { - "n": "Georgiou", - "f": "Anthony", - "fp": "MD", - "r": 5, - "c": 24 - } - ], - [ - 2205, - { - "n": "Amos", - "f": "Luke", - "fp": "MD", - "r": 1, - "c": 24 - } - ], - [ - 2228, - { - "n": "Sterling", - "f": "Kazaiah", - "fp": "A", - "r": 1, - "c": 24 - } - ], - [ - 2558, - { - "n": "Ryan Sessegnon", - "f": "", - "fp": "MO", - "r": 8, - "c": 24, - "s": { - "s": 10, - "n": 2, - "a": 5, - "Og": 1, - "Os": 95.5, - "On": 21, - "Oa": 4.55, - "Od": 0.88, - "pd": 1, - "pm": 16, - "pa": 4 - }, - "p": [ - [ - -38, - { - "n": 3, - "e": 3541 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3537 - } - ], - [ - -36, - { - "n": 4, - "e": 3521 - } - ], - [ - -35, - { - "n": 6, - "e": 3508 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3501 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3496 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3483 - } - ], - [ - -31, - { - "n": 5, - "e": 3472 - } - ], - [ - -30, - { - "n": 3, - "e": 3463 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3452 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3445 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3437 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3420 - } - ], - [ - -24, - { - "n": 5, - "e": 3400 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3390 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3379 - } - ], - [ - -21, - { - "n": 5, - "e": 3369 - } - ], - [ - -20, - { - "n": 6, - "e": 3361 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3351, - "g": 1 - } - ], - [ - 16, - { - "n": 5, - "e": 4155 - } - ], - [ - 11, - { - "n": 5, - "e": 4203 - } - ] - ] - } - ], - [ - 2929, - { - "n": "Skipp", - "f": "Oliver", - "fp": "MD", - "r": 3, - "c": 24, - "s": { - "s": 14.5, - "n": 3, - "a": 4.83, - "d": 0.29, - "Os": 44.5, - "On": 9, - "Oa": 4.94, - "Od": 0.3, - "pm": 9 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3546 - } - ], - [ - -34, - { - "n": 5, - "e": 3506 - } - ], - [ - -26, - { - "n": 5, - "e": 3425 - } - ], - [ - -21, - { - "n": 5, - "e": 3370 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3356 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3342 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4155 - } - ], - [ - 2, - { - "n": 5, - "e": 4294 - } - ], - [ - 1, - { - "n": 5, - "e": 4304 - } - ] - ] - } - ], - [ - 2930, - { - "n": "Eyoma", - "f": "Timothy", - "fp": "DC", - "r": 1, - "c": 24 - } - ], - [ - 2932, - { - "n": "Marsh", - "f": "George", - "fp": "MD", - "r": 1, - "c": 24 - } - ], - [ - 5413, - { - "n": "White", - "f": "Harvey", - "fp": "MD", - "r": 1, - "c": 24 - } - ], - [ - 5414, - { - "n": "Parrott", - "f": "Troy", - "fp": "A", - "r": 1, - "c": 24, - "s": { - "s": 4.5, - "n": 1, - "a": 4.5, - "Os": 4.5, - "On": 1, - "Oa": 4.5, - "pa": 1 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4155 - } - ] - ] - } - ], - [ - 5424, - { - "n": "Jonathan De Bie", - "f": "", - "fp": "G", - "r": 1, - "c": 24 - } - ], - [ - 5427, - { - "n": "Lyons-Foster", - "f": "Brooklyn", - "fp": "DC", - "r": 1, - "c": 24 - } - ], - [ - 5432, - { - "n": "Bowden", - "f": "Jamie", - "fp": "MD", - "r": 1, - "c": 24 - } - ], - [ - 5439, - { - "n": "Roles", - "f": "Jack", - "fp": "MD", - "r": 1, - "c": 24 - } - ], - [ - 5441, - { - "n": "Tanganga", - "f": "Japhet", - "fp": "DC", - "r": 1, - "c": 24 - } - ], - [ - 5996, - { - "n": "Austin", - "f": "Brandon", - "fp": "G", - "r": 1, - "c": 24 - } - ], - [ - 230, - { - "n": "Sarr", - "f": "Ismaila", - "fp": "A", - "r": 14, - "c": 33, - "s": { - "g": 1, - "s": 52, - "n": 10, - "a": 5.2, - "d": 0.98, - "Sg": 1, - "Ss": 28.5, - "Sn": 5, - "Sa": 5.7, - "Sd": 0.97, - "Og": 4, - "Os": 147.5, - "On": 28, - "Oa": 5.27, - "Od": 1.1, - "pm": 23, - "pa": 5 - }, - "p": [ - [ - 7, - { - "n": 3.5, - "e": 4244 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ], - [ - -37, - { - "n": 6, - "e": 3100 - } - ], - [ - -36, - { - "n": 7, - "e": 3090, - "g": 1 - } - ], - [ - -35, - { - "n": 6, - "e": 3081, - "g": 1 - } - ], - [ - -33, - { - "n": 3.5, - "e": 3052 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3033 - } - ], - [ - -29, - { - "n": 5, - "e": 3013 - } - ], - [ - -28, - { - "n": 7, - "e": 3008 - } - ], - [ - -26, - { - "n": 4.5, - "e": 2989 - } - ], - [ - -24, - { - "n": 6, - "e": 2969 - } - ], - [ - -22, - { - "n": 3, - "e": 2949 - } - ], - [ - -21, - { - "n": 5, - "e": 2940 - } - ], - [ - -18, - { - "n": 4.5, - "e": 2905 - } - ], - [ - -20, - { - "n": 4.5, - "e": 2928 - } - ], - [ - -19, - { - "n": 6.5, - "e": 2919 - } - ], - [ - -38, - { - "n": 7, - "e": 3111, - "g": 1 - } - ], - [ - -32, - { - "n": 5, - "e": 3049 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3028 - } - ], - [ - -23, - { - "n": 6, - "e": 2960 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 16, - { - "n": 7, - "e": 4156 - } - ], - [ - 15, - { - "n": 5, - "e": 4160 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4177, - "g": 1 - } - ], - [ - 13, - { - "n": 5, - "e": 4186 - } - ], - [ - 8, - { - "n": 5, - "e": 4234 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4266 - } - ] - ] - } - ], - [ - 450, - { - "n": "Lukebakio", - "f": "Dodi", - "fp": "MD", - "r": 7, - "c": 33 - } - ], - [ - 640, - { - "n": "Deeney", - "f": "Troy", - "fp": "A", - "r": 14, - "c": 33, - "s": { - "s": 25, - "n": 6, - "a": 4.17, - "d": 0.52, - "Ss": 13.5, - "Sn": 3, - "Sa": 4.5, - "Sd": 0.5, - "Og": 7, - "Os": 117, - "On": 24, - "Oa": 4.88, - "Od": 1.39, - "pa": 24 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3547 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -34, - { - "n": 2.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3496, - "g": 1 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -30, - { - "n": 6, - "e": 3465 - } - ], - [ - -29, - { - "n": 7, - "e": 3455, - "g": 1 - } - ], - [ - -28, - { - "n": 2.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 8, - "e": 3431, - "g": 2 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4, - "e": 3408 - } - ], - [ - -24, - { - "n": 5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 7.5, - "e": 3368, - "g": 2 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3357 - } - ], - [ - -18, - { - "n": 6, - "e": 3346, - "g": 1 - } - ], - [ - 17, - { - "n": 4, - "e": 4143 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 13, - { - "n": 4, - "e": 4186 - } - ], - [ - 2, - { - "n": 4, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303 - } - ] - ] - } - ], - [ - 653, - { - "n": "Dawson", - "f": "Craig", - "fp": "DC", - "r": 8, - "c": 33, - "s": { - "s": 60.5, - "n": 13, - "a": 4.65, - "d": 1.16, - "Os": 60.5, - "On": 13, - "Oa": 4.65, - "Od": 1.16, - "pd": 13 - }, - "p": [ - [ - 13, - { - "n": 5, - "e": 4186 - } - ], - [ - 12, - { - "n": 6, - "e": 4192 - } - ], - [ - 11, - { - "n": 4, - "e": 4206 - } - ], - [ - 10, - { - "n": 6, - "e": 4216 - } - ], - [ - 9, - { - "n": 6, - "e": 4226 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4244 - } - ], - [ - 6, - { - "n": 2, - "e": 4253 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4266 - } - ], - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 4, - "e": 4303 - } - ] - ] - } - ], - [ - 688, - { - "n": "Gray", - "f": "Andre", - "fp": "A", - "r": 10, - "c": 33, - "s": { - "g": 2, - "s": 71, - "n": 16, - "a": 4.44, - "d": 0.91, - "Sg": 1, - "Ss": 35, - "Sn": 8, - "Sa": 4.38, - "Sd": 0.83, - "Og": 6, - "Os": 141, - "On": 30, - "Oa": 4.7, - "Od": 0.97, - "pa": 30 - }, - "p": [ - [ - -36, - { - "n": 6, - "e": 3527, - "g": 1 - } - ], - [ - -38, - { - "n": 4.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3531 - } - ], - [ - -35, - { - "n": 4, - "e": 3513 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 7, - "e": 3496 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3486 - } - ], - [ - -31, - { - "n": 6, - "e": 3475, - "g": 1 - } - ], - [ - -30, - { - "n": 4, - "e": 3465 - } - ], - [ - -29, - { - "n": 6, - "e": 3455, - "g": 1 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3431 - } - ], - [ - -26, - { - "n": 6, - "e": 3426, - "g": 1 - } - ], - [ - -25, - { - "n": 4, - "e": 3408 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4156 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 4, - "e": 4177 - } - ], - [ - 13, - { - "n": 3, - "e": 4186 - } - ], - [ - 12, - { - "n": 6, - "e": 4192, - "g": 1 - } - ], - [ - 11, - { - "n": 4, - "e": 4206 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4216 - } - ], - [ - 8, - { - "n": 4, - "e": 4234 - } - ], - [ - 7, - { - "n": 5, - "e": 4244 - } - ], - [ - 6, - { - "n": 5, - "e": 4253 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 4, - { - "n": 4, - "e": 4273 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4283, - "g": 1 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3, - "e": 4303 - } - ] - ] - } - ], - [ - 702, - { - "n": "Heurelho Gomes", - "f": "", - "fp": "G", - "r": 7, - "c": 33 - } - ], - [ - 730, - { - "n": "Holebas", - "f": "José", - "fp": "DL", - "r": 9, - "c": 33, - "s": { - "s": 45, - "n": 11, - "a": 4.09, - "d": 1.14, - "Os": 109.5, - "On": 25, - "Oa": 4.38, - "Od": 1.01, - "pd": 25 - }, - "p": [ - [ - -38, - { - "n": 3, - "e": 3547 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -36, - { - "n": 4, - "e": 3527 - } - ], - [ - -33, - { - "n": 5, - "e": 3496 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 3.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - -19, - { - "n": 6, - "e": 3357 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3346 - } - ], - [ - 14, - { - "n": 3, - "e": 4177 - } - ], - [ - 13, - { - "n": 3, - "e": 4186 - } - ], - [ - 12, - { - "n": 6, - "e": 4192 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4244 - } - ], - [ - 6, - { - "n": 2.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3, - "e": 4303 - } - ] - ] - } - ], - [ - 738, - { - "n": "Foster", - "f": "Ben", - "fp": "G", - "r": 16, - "c": 33, - "s": { - "s": 89, - "n": 17, - "a": 5.24, - "d": 1.35, - "Ss": 89, - "Sn": 17, - "Sa": 5.24, - "Sd": 1.35, - "Os": 204, - "On": 38, - "Oa": 5.37, - "Od": 1.19, - "pg": 38 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3547 - } - ], - [ - -37, - { - "n": 6, - "e": 3531 - } - ], - [ - -36, - { - "n": 3.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3513 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3496 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 4, - "e": 3446 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3431 - } - ], - [ - -26, - { - "n": 7, - "e": 3426 - } - ], - [ - -25, - { - "n": 7, - "e": 3408 - } - ], - [ - -24, - { - "n": 5, - "e": 3407 - } - ], - [ - -23, - { - "n": 6, - "e": 3396 - } - ], - [ - -22, - { - "n": 6, - "e": 3382 - } - ], - [ - -21, - { - "n": 6, - "e": 3368 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3357 - } - ], - [ - -18, - { - "n": 8, - "e": 3346 - } - ], - [ - 17, - { - "n": 6, - "e": 4143 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 13, - { - "n": 5, - "e": 4186 - } - ], - [ - 12, - { - "n": 7, - "e": 4192 - } - ], - [ - 11, - { - "n": 7, - "e": 4206 - } - ], - [ - 10, - { - "n": 7, - "e": 4216 - } - ], - [ - 9, - { - "n": 4, - "e": 4226 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4244 - } - ], - [ - 6, - { - "n": 2.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303 - } - ] - ] - } - ], - [ - 739, - { - "n": "Pereyra", - "f": "Roberto", - "fp": "MO", - "r": 10, - "c": 33, - "s": { - "g": 1, - "s": 61, - "n": 12, - "a": 5.08, - "d": 0.82, - "Og": 2, - "Os": 137.5, - "On": 28, - "Oa": 4.91, - "Od": 0.96, - "pm": 23, - "pa": 5 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -33, - { - "n": 4, - "e": 3496 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3455 - } - ], - [ - -28, - { - "n": 3, - "e": 3446 - } - ], - [ - -27, - { - "n": 6, - "e": 3431 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 4, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3357, - "g": 1 - } - ], - [ - -18, - { - "n": 7, - "e": 3346 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 8, - { - "n": 6, - "e": 4234 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 7, - "e": 4266, - "g": 1 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 2, - { - "n": 4, - "e": 4291 - } - ], - [ - 1, - { - "n": 5, - "e": 4303 - } - ] - ] - } - ], - [ - 758, - { - "n": "Capoue", - "f": "Etienne", - "fp": "MD", - "r": 16, - "c": 33, - "s": { - "s": 60, - "n": 12, - "a": 5, - "d": 1.09, - "Ss": 32.5, - "Sn": 6, - "Sa": 5.42, - "Sd": 1.07, - "Os": 173.5, - "On": 32, - "Oa": 5.42, - "Od": 1.12, - "pm": 32 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3547 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6, - "e": 3513 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3496 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3486 - } - ], - [ - -31, - { - "n": 6, - "e": 3475 - } - ], - [ - -30, - { - "n": 6, - "e": 3465 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3455 - } - ], - [ - -28, - { - "n": 3, - "e": 3446 - } - ], - [ - -27, - { - "n": 8, - "e": 3431 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 6, - "e": 3408 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 6, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 5, - "e": 3368 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3357 - } - ], - [ - -18, - { - "n": 7.5, - "e": 3346 - } - ], - [ - 17, - { - "n": 4, - "e": 4143 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 6.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 6, - "e": 4177 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4186 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4192 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 6, - "e": 4266 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303 - } - ] - ] - } - ], - [ - 782, - { - "n": "Kaboul", - "f": "Younes", - "fp": "DC", - "r": 1, - "c": 33 - } - ], - [ - 812, - { - "n": "Prödl", - "f": "Sebastian", - "fp": "DC", - "r": 3, - "c": 33, - "s": { - "s": 5, - "n": 1, - "a": 5, - "Os": 5, - "On": 1, - "Oa": 5, - "pd": 1 - }, - "p": [ - [ - 8, - { - "n": 5, - "e": 4234 - } - ] - ] - } - ], - [ - 823, - { - "n": "Kabasele", - "f": "Christian", - "fp": "DC", - "r": 11, - "c": 33, - "s": { - "s": 46, - "n": 9, - "a": 5.11, - "d": 0.96, - "Ss": 10.5, - "Sn": 2, - "Sa": 5.25, - "Sd": 0.35, - "Os": 91, - "On": 18, - "Oa": 5.06, - "Od": 0.82, - "pd": 18 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3547 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3507 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3396 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 6, - "e": 3346 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4156 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 6, - "e": 4234 - } - ], - [ - 5, - { - "n": 4, - "e": 4266 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ] - ] - } - ], - [ - 836, - { - "n": "Britos", - "f": "Miguel", - "fp": "DC", - "r": 4, - "c": 33, - "s": { - "Os": 13, - "On": 3, - "Oa": 4.33, - "Od": 0.58, - "pd": 3 - }, - "p": [ - [ - -32, - { - "n": 4, - "e": 3486 - } - ], - [ - -30, - { - "n": 4, - "e": 3465 - } - ], - [ - -23, - { - "n": 5, - "e": 3396 - } - ] - ] - } - ], - [ - 865, - { - "n": "Janmaat", - "f": "Daryl", - "fp": "DL", - "r": 9, - "c": 33, - "s": { - "ao": 1, - "s": 40.5, - "n": 8, - "a": 5.06, - "d": 1.18, - "Oao": 1, - "Os": 99, - "On": 20, - "Oa": 4.95, - "Od": 0.86, - "pd": 19, - "pm": 1 - }, - "p": [ - [ - -34, - { - "n": 6, - "e": 3507 - } - ], - [ - -33, - { - "n": 5, - "e": 3496 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3431 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 5, - "e": 3408 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3407 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - 12, - { - "n": 6, - "e": 4192 - } - ], - [ - 11, - { - "n": 4, - "e": 4206 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 6.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 6, - "e": 4234 - } - ], - [ - 7, - { - "n": 3, - "e": 4244, - "a": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4273 - } - ] - ] - } - ], - [ - 869, - { - "n": "Isaac Success", - "f": "", - "fp": "A", - "r": 3, - "c": 33, - "s": { - "s": 13.5, - "n": 3, - "a": 4.5, - "d": 0.5, - "Os": 73.5, - "On": 16, - "Oa": 4.59, - "Od": 0.52, - "pm": 1, - "pa": 15 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3531 - } - ], - [ - -36, - { - "n": 4, - "e": 3527 - } - ], - [ - -35, - { - "n": 4, - "e": 3513 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -32, - { - "n": 6, - "e": 3486 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3465 - } - ], - [ - -24, - { - "n": 4, - "e": 3407 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3396 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3357 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 4, - { - "n": 5, - "e": 4273 - } - ], - [ - 1, - { - "n": 4, - "e": 4303 - } - ] - ] - } - ], - [ - 933, - { - "n": "Cleverley", - "f": "Tom", - "fp": "MO", - "r": 8, - "c": 33, - "s": { - "g": 1, - "s": 47, - "n": 9, - "a": 5.22, - "d": 1.12, - "Og": 2, - "Os": 107.5, - "On": 21, - "Oa": 5.12, - "Od": 0.88, - "pm": 20, - "pa": 1 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3531 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 5, - "e": 3446 - } - ], - [ - -27, - { - "n": 5, - "e": 3431 - } - ], - [ - -26, - { - "n": 5, - "e": 3426 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5, - "e": 3396 - } - ], - [ - -22, - { - "n": 6.5, - "e": 3382, - "g": 1 - } - ], - [ - -21, - { - "n": 5, - "e": 3368 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - 10, - { - "n": 5, - "e": 4216 - } - ], - [ - 9, - { - "n": 6, - "e": 4226 - } - ], - [ - 8, - { - "n": 5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4266, - "g": 1 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ] - ] - } - ], - [ - 944, - { - "n": "Doucouré", - "f": "Abdoulaye", - "fp": "MO", - "r": 17, - "c": 33, - "s": { - "g": 1, - "ao": 1, - "s": 87.5, - "n": 17, - "a": 5.15, - "d": 1.13, - "Sg": 1, - "Sao": 1, - "Ss": 87.5, - "Sn": 17, - "Sa": 5.15, - "Sd": 1.13, - "Og": 4, - "Oao": 1, - "Os": 177.5, - "On": 35, - "Oa": 5.07, - "Od": 1.12, - "pm": 35 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3531 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3513 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -33, - { - "n": 6, - "e": 3496, - "g": 1 - } - ], - [ - -32, - { - "n": 6, - "e": 3486, - "g": 1 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3465 - } - ], - [ - -29, - { - "n": 6, - "e": 3455 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 7, - "e": 3431 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3426 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 4, - "e": 3368 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367, - "g": 1 - } - ], - [ - -19, - { - "n": 4, - "e": 3357 - } - ], - [ - -18, - { - "n": 6, - "e": 3346 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4.5, - "e": 4186 - } - ], - [ - 12, - { - "n": 7, - "e": 4192 - } - ], - [ - 11, - { - "n": 6, - "e": 4206 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 7.5, - "e": 4226, - "g": 1 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 3, - "e": 4253 - } - ], - [ - 5, - { - "n": 6, - "e": 4266 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303, - "a": 1 - } - ] - ] - } - ], - [ - 948, - { - "n": "Cathcart", - "f": "Craig", - "fp": "DC", - "r": 13, - "c": 33, - "s": { - "s": 74, - "n": 15, - "a": 4.93, - "d": 0.8, - "Ss": 56.5, - "Sn": 11, - "Sa": 5.14, - "Sd": 0.64, - "Og": 2, - "Oao": 1, - "Os": 169.5, - "On": 34, - "Oa": 4.99, - "Od": 0.91, - "pd": 34 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3513 - } - ], - [ - -34, - { - "n": 6, - "e": 3507 - } - ], - [ - -33, - { - "n": 6, - "e": 3496 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 5, - "e": 3465 - } - ], - [ - -29, - { - "n": 6, - "e": 3455 - } - ], - [ - -28, - { - "n": 3, - "e": 3446 - } - ], - [ - -27, - { - "n": 5, - "e": 3431 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3408 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3407, - "g": 1 - } - ], - [ - -22, - { - "n": 6, - "e": 3382, - "g": 1, - "a": 1 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 5, - "e": 3367 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3357 - } - ], - [ - -18, - { - "n": 6, - "e": 3346 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4, - "e": 4186 - } - ], - [ - 12, - { - "n": 6, - "e": 4192 - } - ], - [ - 11, - { - "n": 5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4234 - } - ], - [ - 7, - { - "n": 4, - "e": 4244 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 3.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303 - } - ] - ] - } - ], - [ - 953, - { - "n": "Dja Djédjé", - "f": "Brice", - "fp": "DC", - "r": 1, - "c": 33 - } - ], - [ - 979, - { - "n": "Chalobah", - "f": "Nathaniel", - "fp": "MD", - "r": 7, - "c": 33, - "s": { - "s": 29.5, - "n": 6, - "a": 4.92, - "d": 0.58, - "Os": 43, - "On": 9, - "Oa": 4.78, - "Od": 0.51, - "pm": 9 - }, - "p": [ - [ - -37, - { - "n": 4.5, - "e": 3531 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3513 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3426 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4216 - } - ], - [ - 9, - { - "n": 6, - "e": 4226 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4273 - } - ] - ] - } - ], - [ - 1038, - { - "n": "Welbeck", - "f": "Danny", - "fp": "A", - "r": 5, - "c": 33, - "s": { - "s": 23, - "n": 5, - "a": 4.6, - "d": 0.42, - "Os": 23, - "On": 5, - "Oa": 4.6, - "Od": 0.42, - "pa": 5 - }, - "p": [ - [ - 9, - { - "n": 4.5, - "e": 4226 - } - ], - [ - 8, - { - "n": 4, - "e": 4234 - } - ], - [ - 7, - { - "n": 5, - "e": 4244 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ] - ] - } - ], - [ - 1081, - { - "n": "Mariappa", - "f": "Adrian", - "fp": "DC", - "r": 8, - "c": 33, - "s": { - "s": 30.5, - "n": 7, - "a": 4.36, - "d": 0.94, - "Ss": 4, - "Sn": 1, - "Sa": 4, - "Os": 112, - "On": 24, - "Oa": 4.67, - "Od": 0.84, - "pd": 24 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3547 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3531 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3513 - } - ], - [ - -33, - { - "n": 4, - "e": 3496 - } - ], - [ - -29, - { - "n": 5, - "e": 3455 - } - ], - [ - -28, - { - "n": 3, - "e": 3446 - } - ], - [ - -27, - { - "n": 6, - "e": 3431 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 5, - "e": 3408 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3396 - } - ], - [ - -22, - { - "n": 6, - "e": 3382 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3346 - } - ], - [ - 17, - { - "n": 4, - "e": 4143 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 5, - "e": 4186 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4206 - } - ], - [ - 6, - { - "n": 2.5, - "e": 4253 - } - ] - ] - } - ], - [ - 1086, - { - "n": "Bachmann", - "f": "Daniel", - "fp": "G", - "r": 1, - "c": 33 - } - ], - [ - 1107, - { - "n": "Domingos Quina", - "f": "", - "fp": "MO", - "r": 3, - "c": 33, - "s": { - "s": 15, - "n": 3, - "a": 5, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 38.5, - "On": 8, - "Oa": 4.81, - "Od": 0.37, - "pm": 8 - }, - "p": [ - [ - -33, - { - "n": 5, - "e": 3496 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3431 - } - ], - [ - -25, - { - "n": 5, - "e": 3408 - } - ], - [ - -20, - { - "n": 4, - "e": 3367 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 15, - { - "n": 5, - "e": 4160 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ] - ] - } - ], - [ - 1298, - { - "n": "Kiko Femenía", - "f": "", - "fp": "DL", - "r": 10, - "c": 33, - "s": { - "s": 58.5, - "n": 13, - "a": 4.5, - "d": 0.74, - "Ss": 24, - "Sn": 5, - "Sa": 4.8, - "Sd": 0.45, - "Og": 1, - "Os": 127.5, - "On": 27, - "Oa": 4.72, - "Od": 1.03, - "pd": 24, - "pm": 3 - }, - "p": [ - [ - -38, - { - "n": 2, - "e": 3547 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6, - "e": 3513 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 7, - "e": 3496, - "g": 1 - } - ], - [ - -32, - { - "n": 5, - "e": 3486 - } - ], - [ - -31, - { - "n": 6, - "e": 3475 - } - ], - [ - -30, - { - "n": 4, - "e": 3465 - } - ], - [ - -23, - { - "n": 6.5, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3368 - } - ], - [ - -19, - { - "n": 5, - "e": 3357 - } - ], - [ - -18, - { - "n": 5, - "e": 3346 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 16, - { - "n": 5, - "e": 4156 - } - ], - [ - 15, - { - "n": 5, - "e": 4160 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4, - "e": 4186 - } - ], - [ - 11, - { - "n": 5, - "e": 4206 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 6, - { - "n": 2.5, - "e": 4253 - } - ], - [ - 5, - { - "n": 5, - "e": 4266 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4273 - } - ], - [ - 3, - { - "n": 4, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 4, - "e": 4303 - } - ] - ] - } - ], - [ - 1311, - { - "n": "Hughes", - "f": "Will", - "fp": "MD", - "r": 8, - "c": 33, - "s": { - "g": 1, - "s": 70, - "n": 14, - "a": 5, - "d": 0.96, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 2, - "Os": 154.5, - "On": 31, - "Oa": 4.98, - "Od": 0.96, - "pm": 30, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 3.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 4, - "e": 3531 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3513 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3507 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3496, - "g": 1 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3486 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -29, - { - "n": 6, - "e": 3455 - } - ], - [ - -28, - { - "n": 4, - "e": 3446 - } - ], - [ - -27, - { - "n": 7, - "e": 3431 - } - ], - [ - -26, - { - "n": 6, - "e": 3426 - } - ], - [ - -25, - { - "n": 4, - "e": 3408 - } - ], - [ - -24, - { - "n": 4, - "e": 3407 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3382 - } - ], - [ - -21, - { - "n": 5, - "e": 3368 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3367 - } - ], - [ - 17, - { - "n": 5, - "e": 4143 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4, - "e": 4186 - } - ], - [ - 12, - { - "n": 6.5, - "e": 4192 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 6, - { - "n": 4, - "e": 4253 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4266 - } - ], - [ - 4, - { - "n": 7, - "e": 4273, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303 - } - ] - ] - } - ], - [ - 1335, - { - "n": "Sinclair", - "f": "Jerome", - "fp": "A", - "r": 3, - "c": 33 - } - ], - [ - 1535, - { - "n": "Foulquier", - "f": "Dimitri", - "fp": "DL", - "r": 3, - "c": 33, - "s": { - "s": 14, - "n": 3, - "a": 4.67, - "d": 0.58, - "Og": 1, - "Os": 89.5, - "On": 19, - "Oa": 4.71, - "Od": 0.84, - "pd": 5, - "pm": 14 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 2345 - } - ], - [ - -37, - { - "n": 4.5, - "e": 2334 - } - ], - [ - -31, - { - "n": 3, - "e": 2276 - } - ], - [ - -30, - { - "n": 4.5, - "e": 2265 - } - ], - [ - -29, - { - "n": 4, - "e": 2255 - } - ], - [ - -28, - { - "n": 4.5, - "e": 2248 - } - ], - [ - -27, - { - "n": 4, - "e": 2236 - } - ], - [ - -25, - { - "n": 5, - "e": 2216 - } - ], - [ - -24, - { - "n": 7, - "e": 2204, - "g": 1 - } - ], - [ - -22, - { - "n": 5, - "e": 2190 - } - ], - [ - -19, - { - "n": 5, - "e": 2160 - } - ], - [ - -18, - { - "n": 4.5, - "e": 2148 - } - ], - [ - -36, - { - "n": 6, - "e": 2323 - } - ], - [ - -26, - { - "n": 5, - "e": 2222 - } - ], - [ - -23, - { - "n": 4.5, - "e": 2199 - } - ], - [ - -17, - { - "n": 5, - "e": 2138 - } - ], - [ - 14, - { - "n": 5, - "e": 4177 - } - ], - [ - 10, - { - "n": 5, - "e": 4216 - } - ], - [ - 6, - { - "n": 4, - "e": 4253 - } - ] - ] - } - ], - [ - 1724, - { - "n": "Deulofeu", - "f": "Gerard", - "fp": "A", - "r": 16, - "c": 33, - "s": { - "g": 2, - "s": 80.5, - "n": 17, - "a": 4.74, - "d": 1.37, - "Sg": 2, - "Ss": 80.5, - "Sn": 17, - "Sa": 4.74, - "Sd": 1.37, - "Og": 10, - "Os": 181, - "On": 37, - "Oa": 4.89, - "Od": 1.52, - "pm": 4, - "pa": 33 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3547, - "g": 1 - } - ], - [ - -37, - { - "n": 3.5, - "e": 3531 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 8, - "e": 3513, - "g": 2 - } - ], - [ - -33, - { - "n": 4, - "e": 3496 - } - ], - [ - -32, - { - "n": 4, - "e": 3486 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3475 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3465, - "g": 1 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3455 - } - ], - [ - -28, - { - "n": 2.5, - "e": 3446 - } - ], - [ - -27, - { - "n": 9, - "e": 3431, - "g": 3 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3426 - } - ], - [ - -25, - { - "n": 4, - "e": 3408 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3407 - } - ], - [ - -23, - { - "n": 4, - "e": 3396 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -21, - { - "n": 4, - "e": 3368 - } - ], - [ - -20, - { - "n": 6, - "e": 3367 - } - ], - [ - -19, - { - "n": 4, - "e": 3357 - } - ], - [ - -18, - { - "n": 7, - "e": 3346, - "g": 1 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4143 - } - ], - [ - 16, - { - "n": 6, - "e": 4156 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 5, - "e": 4186 - } - ], - [ - 12, - { - "n": 7.5, - "e": 4192, - "g": 1 - } - ], - [ - 11, - { - "n": 6, - "e": 4206, - "g": 1 - } - ], - [ - 10, - { - "n": 3.5, - "e": 4216 - } - ], - [ - 9, - { - "n": 5, - "e": 4226 - } - ], - [ - 8, - { - "n": 5, - "e": 4234 - } - ], - [ - 7, - { - "n": 3.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 3, - "e": 4253 - } - ], - [ - 5, - { - "n": 7.5, - "e": 4266 - } - ], - [ - 4, - { - "n": 4, - "e": 4273 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4291 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4303 - } - ] - ] - } - ], - [ - 1942, - { - "n": "Peñaranda", - "f": "Adalberto", - "fp": "A", - "r": 1, - "c": 33 - } - ], - [ - 2023, - { - "n": "Zeegelaar", - "f": "Marvin", - "fp": "DL", - "r": 1, - "c": 33 - } - ], - [ - 2229, - { - "n": "Tom Dele-Bashiru", - "f": "", - "fp": "MD", - "r": 1, - "c": 33 - } - ], - [ - 2536, - { - "n": "Wilmot", - "f": "Ben", - "fp": "DC", - "r": 1, - "c": 33, - "s": { - "Os": 4, - "On": 1, - "Oa": 4, - "pd": 1 - }, - "p": [ - [ - -24, - { - "n": 4, - "e": 3407 - } - ] - ] - } - ], - [ - 2547, - { - "n": "Dahlberg", - "f": "Pontus", - "fp": "G", - "r": 1, - "c": 33 - } - ], - [ - 2559, - { - "n": "Oularé", - "f": "Obbi", - "fp": "A", - "r": 5, - "c": 33 - } - ], - [ - 2579, - { - "n": "Masina", - "f": "Adam", - "fp": "DL", - "r": 9, - "c": 33, - "s": { - "s": 30, - "n": 7, - "a": 4.29, - "d": 0.64, - "Os": 76.5, - "On": 17, - "Oa": 4.5, - "Od": 0.68, - "pd": 17 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3547 - } - ], - [ - -35, - { - "n": 5, - "e": 3513 - } - ], - [ - -34, - { - "n": 5, - "e": 3507 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3486 - } - ], - [ - -31, - { - "n": 5, - "e": 3475 - } - ], - [ - -30, - { - "n": 4, - "e": 3465 - } - ], - [ - -28, - { - "n": 3, - "e": 3446 - } - ], - [ - -27, - { - "n": 5, - "e": 3431 - } - ], - [ - -22, - { - "n": 5, - "e": 3382 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3367 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4156 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4160 - } - ], - [ - 14, - { - "n": 3.5, - "e": 4177 - } - ], - [ - 13, - { - "n": 4, - "e": 4186 - } - ], - [ - 12, - { - "n": 5, - "e": 4192 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4206 - } - ], - [ - 10, - { - "n": 5, - "e": 4216 - } - ] - ] - } - ], - [ - 5415, - { - "n": "Forster", - "f": "Harry", - "fp": "MD", - "r": 1, - "c": 33 - } - ], - [ - 5985, - { - "n": "Crichlow", - "f": "Kane", - "fp": "MD", - "r": 3, - "c": 33 - } - ], - [ - 174, - { - "n": "Diop", - "f": "Issa", - "fp": "DC", - "r": 12, - "c": 28, - "s": { - "s": 66, - "n": 14, - "a": 4.71, - "d": 1.37, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Og": 1, - "Os": 162.5, - "On": 32, - "Oa": 5.08, - "Od": 1.26, - "pd": 32 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 7, - "e": 3536 - } - ], - [ - -36, - { - "n": 7.5, - "e": 3526 - } - ], - [ - -32, - { - "n": 4, - "e": 3487 - } - ], - [ - -31, - { - "n": 5, - "e": 3476 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -27, - { - "n": 6.5, - "e": 3437, - "g": 1 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 4, - "e": 3402 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 6, - "e": 3387 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4, - "e": 3359 - } - ], - [ - -19, - { - "n": 6, - "e": 3355 - } - ], - [ - -18, - { - "n": 4, - "e": 3346 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 13, - { - "n": 2.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4207 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 4, - "e": 4240 - } - ], - [ - 6, - { - "n": 6, - "e": 4255 - } - ], - [ - 5, - { - "n": 6, - "e": 4267 - } - ], - [ - 4, - { - "n": 7, - "e": 4274 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ], - [ - 1, - { - "n": 2, - "e": 4299 - } - ] - ] - } - ], - [ - 620, - { - "n": "Lanzini", - "f": "Manuel", - "fp": "MO", - "r": 10, - "c": 28, - "s": { - "s": 59, - "n": 11, - "a": 5.36, - "d": 1.07, - "Og": 1, - "Os": 111, - "On": 21, - "Oa": 5.29, - "Od": 1.08, - "pm": 21 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3547, - "g": 1 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3536 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 5, - "e": 3489 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 5, - "e": 3476 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -28, - { - "n": 5, - "e": 3447 - } - ], - [ - -27, - { - "n": 5, - "e": 3437 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 5, - "e": 4207 - } - ], - [ - 10, - { - "n": 5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 5, - "e": 4240 - } - ], - [ - 5, - { - "n": 6, - "e": 4267 - } - ], - [ - 4, - { - "n": 6, - "e": 4274 - } - ], - [ - 3, - { - "n": 7, - "e": 4283 - } - ], - [ - 2, - { - "n": 7, - "e": 4290 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4299 - } - ] - ], - "a": { - "m": 18, - "a": 22, - "M": 23, - "n": 11 - } - } - ], - [ - 622, - { - "n": "Wilshere", - "f": "Jack", - "fp": "MO", - "r": 7, - "c": 28, - "s": { - "s": 27, - "n": 6, - "a": 4.5, - "d": 0.55, - "Os": 42.5, - "On": 9, - "Oa": 4.72, - "Od": 0.67, - "pm": 9 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3547 - } - ], - [ - -37, - { - "n": 5, - "e": 3536 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 2, - { - "n": 3.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 4.5, - "e": 4299 - } - ] - ] - } - ], - [ - 632, - { - "n": "Antonio", - "f": "Michail", - "fp": "MO", - "r": 9, - "c": 28, - "s": { - "g": 1, - "s": 34.5, - "n": 7, - "a": 4.93, - "d": 1.02, - "Ss": 9.5, - "Sn": 2, - "Sa": 4.75, - "Sd": 1.06, - "Og": 5, - "Os": 132, - "On": 26, - "Oa": 5.08, - "Od": 1.2, - "pd": 2, - "pm": 19, - "pa": 5 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3547 - } - ], - [ - -37, - { - "n": 6, - "e": 3536 - } - ], - [ - -36, - { - "n": 6, - "e": 3526, - "g": 1 - } - ], - [ - -35, - { - "n": 5, - "e": 3516, - "g": 1 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3476 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3459 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3447 - } - ], - [ - -27, - { - "n": 7, - "e": 3437, - "g": 1 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 7, - "e": 3417, - "g": 1 - } - ], - [ - -24, - { - "n": 2.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5, - "e": 3387 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4, - "e": 3359 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3355 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4, - "e": 4157 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4187, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4299 - } - ] - ] - } - ], - [ - 634, - { - "n": "Snodgrass", - "f": "Robert", - "fp": "MO", - "r": 13, - "c": 28, - "s": { - "g": 2, - "s": 61, - "n": 12, - "a": 5.08, - "d": 0.73, - "Ss": 9.5, - "Sn": 2, - "Sa": 4.75, - "Sd": 0.35, - "Og": 2, - "Os": 141, - "On": 29, - "Oa": 4.86, - "Od": 0.78, - "pm": 28, - "pa": 1 - }, - "p": [ - [ - 15, - { - "n": 4.5, - "e": 4162 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 5, - "e": 3504 - } - ], - [ - -33, - { - "n": 5, - "e": 3489 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3487 - } - ], - [ - -30, - { - "n": 3.5, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -27, - { - "n": 6, - "e": 3437 - } - ], - [ - -26, - { - "n": 5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3387 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3355 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 14, - { - "n": 6, - "e": 4169 - } - ], - [ - 13, - { - "n": 6, - "e": 4187 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 5, - "e": 4207, - "g": 1 - } - ], - [ - 10, - { - "n": 6, - "e": 4217, - "g": 1 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 4, - { - "n": 5, - "e": 4274 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 5, - "e": 4299 - } - ] - ] - } - ], - [ - 664, - { - "n": "Arnautovic", - "f": "Marko", - "fp": "A", - "r": 16, - "c": 28, - "s": { - "Og": 5, - "Os": 77, - "On": 15, - "Oa": 5.13, - "Od": 1.49, - "pm": 1, - "pa": 14 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3547, - "g": 1 - } - ], - [ - -37, - { - "n": 8, - "e": 3536, - "g": 2 - } - ], - [ - -36, - { - "n": 6, - "e": 3526 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3516 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3489 - } - ], - [ - -32, - { - "n": 4, - "e": 3487 - } - ], - [ - -31, - { - "n": 4, - "e": 3476 - } - ], - [ - -30, - { - "n": 4, - "e": 3459 - } - ], - [ - -29, - { - "n": 4.5, - "e": 3456 - } - ], - [ - -27, - { - "n": 6, - "e": 3437 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3419 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3402 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3387 - } - ], - [ - -21, - { - "n": 8, - "e": 3376, - "g": 2 - } - ], - [ - -20, - { - "n": 4, - "e": 3359 - } - ] - ] - } - ], - [ - 684, - { - "n": "Noble", - "f": "Mark", - "fp": "MD", - "r": 11, - "c": 28, - "s": { - "g": 1, - "s": 71, - "n": 15, - "a": 4.73, - "d": 1.13, - "Sg": 1, - "Ss": 71, - "Sn": 15, - "Sa": 4.73, - "Sd": 1.13, - "Og": 6, - "Os": 175.5, - "On": 34, - "Oa": 5.16, - "Od": 1.25, - "pm": 34 - }, - "p": [ - [ - -38, - { - "n": 8, - "e": 3547, - "g": 2 - } - ], - [ - -37, - { - "n": 7, - "e": 3536 - } - ], - [ - -36, - { - "n": 6, - "e": 3526 - } - ], - [ - -35, - { - "n": 6, - "e": 3516 - } - ], - [ - -34, - { - "n": 7, - "e": 3504 - } - ], - [ - -33, - { - "n": 4, - "e": 3489 - } - ], - [ - -31, - { - "n": 5, - "e": 3476, - "g": 1 - } - ], - [ - -30, - { - "n": 4, - "e": 3459 - } - ], - [ - -29, - { - "n": 7, - "e": 3456, - "g": 1 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3437 - } - ], - [ - -26, - { - "n": 6.5, - "e": 3419, - "g": 1 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3387 - } - ], - [ - -21, - { - "n": 6.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4, - "e": 3359 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - 17, - { - "n": 6, - "e": 4146 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4162 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 2.5, - "e": 4207 - } - ], - [ - 10, - { - "n": 4, - "e": 4217 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 4, - "e": 4235 - } - ], - [ - 7, - { - "n": 4, - "e": 4240 - } - ], - [ - 6, - { - "n": 6, - "e": 4255 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5.5, - "e": 4274 - } - ], - [ - 3, - { - "n": 7, - "e": 4283, - "g": 1 - } - ] - ], - "a": { - "m": 20, - "a": 22, - "M": 23, - "n": 6 - } - } - ], - [ - 700, - { - "n": "Zabaleta", - "f": "Pablo", - "fp": "DL", - "r": 5, - "c": 28, - "s": { - "s": 23.5, - "n": 5, - "a": 4.7, - "d": 0.67, - "Os": 82.5, - "On": 18, - "Oa": 4.58, - "Od": 0.73, - "pd": 18 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3547 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 3.5, - "e": 3476 - } - ], - [ - -28, - { - "n": 5, - "e": 3447 - } - ], - [ - -27, - { - "n": 4, - "e": 3437 - } - ], - [ - -26, - { - "n": 5, - "e": 3419 - } - ], - [ - -24, - { - "n": 4, - "e": 3402 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 6, - "e": 3387 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -18, - { - "n": 5, - "e": 3346 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4207 - } - ], - [ - 10, - { - "n": 5, - "e": 4217 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ] - ] - } - ], - [ - 709, - { - "n": "Reid", - "f": "Winston", - "fp": "DC", - "r": 1, - "c": 28 - } - ], - [ - 762, - { - "n": "Ogbonna", - "f": "Angelo", - "fp": "DC", - "r": 11, - "c": 28, - "s": { - "g": 2, - "s": 68.5, - "n": 13, - "a": 5.27, - "d": 0.81, - "Sg": 2, - "Ss": 25.5, - "Sn": 5, - "Sa": 5.1, - "Sd": 1.19, - "Og": 3, - "Os": 164.5, - "On": 32, - "Oa": 5.14, - "Od": 0.93, - "pd": 32 - }, - "p": [ - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -35, - { - "n": 4, - "e": 3516 - } - ], - [ - -34, - { - "n": 7, - "e": 3504 - } - ], - [ - -33, - { - "n": 4, - "e": 3489 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 5, - "e": 3476, - "g": 1 - } - ], - [ - -30, - { - "n": 5, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -27, - { - "n": 6, - "e": 3437 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 6, - "e": 3387 - } - ], - [ - -21, - { - "n": 4, - "e": 3376 - } - ], - [ - -20, - { - "n": 3.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 6, - "e": 3355 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3346 - } - ], - [ - 17, - { - "n": 6, - "e": 4146 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157, - "g": 1 - } - ], - [ - 15, - { - "n": 3.5, - "e": 4162 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 5, - "e": 4187, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 4.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 6, - "e": 4255 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 6, - "e": 4274 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4290 - } - ] - ] - } - ], - [ - 861, - { - "n": "Cresswell", - "f": "Aaron", - "fp": "DL", - "r": 12, - "c": 28, - "s": { - "g": 3, - "s": 57.5, - "n": 12, - "a": 4.79, - "d": 1.34, - "Sg": 1, - "Ss": 37, - "Sn": 8, - "Sa": 4.63, - "Sd": 1.25, - "Og": 3, - "Os": 121.5, - "On": 25, - "Oa": 4.86, - "Od": 1.02, - "pd": 25 - }, - "p": [ - [ - -33, - { - "n": 4, - "e": 3489 - } - ], - [ - -32, - { - "n": 5, - "e": 3487 - } - ], - [ - -31, - { - "n": 5, - "e": 3476 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3459 - } - ], - [ - -29, - { - "n": 5, - "e": 3456 - } - ], - [ - -27, - { - "n": 6, - "e": 3437 - } - ], - [ - -26, - { - "n": 5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3417 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 6, - "e": 3387 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3376 - } - ], - [ - -20, - { - "n": 4.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 16, - { - "n": 5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4, - "e": 4162 - } - ], - [ - 14, - { - "n": 7, - "e": 4169, - "g": 1 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 3.5, - "e": 4207 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4240, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4255, - "g": 1 - } - ], - [ - 1, - { - "n": 3, - "e": 4299 - } - ] - ] - } - ], - [ - 870, - { - "n": "Fabianski", - "f": "Lukasz", - "fp": "G", - "r": 8, - "c": 28, - "s": { - "s": 39.5, - "n": 7, - "a": 5.64, - "d": 0.99, - "Os": 164, - "On": 28, - "Oa": 5.86, - "Od": 0.81, - "pg": 28 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3547 - } - ], - [ - -37, - { - "n": 6, - "e": 3536 - } - ], - [ - -36, - { - "n": 7.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 6, - "e": 3489 - } - ], - [ - -32, - { - "n": 7, - "e": 3487 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3476 - } - ], - [ - -30, - { - "n": 6, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -28, - { - "n": 7, - "e": 3447 - } - ], - [ - -27, - { - "n": 6, - "e": 3437 - } - ], - [ - -26, - { - "n": 6, - "e": 3419 - } - ], - [ - -25, - { - "n": 6.5, - "e": 3417 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 5, - "e": 3388 - } - ], - [ - -22, - { - "n": 6, - "e": 3387 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 6, - "e": 3355 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3346 - } - ], - [ - 7, - { - "n": 4, - "e": 4240 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 7, - "e": 4267 - } - ], - [ - 4, - { - "n": 6, - "e": 4274 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 5, - "e": 4299 - } - ] - ], - "a": { - "m": 25, - "a": 26, - "M": 27, - "n": 6 - } - } - ], - [ - 934, - { - "n": "Masuaku", - "f": "Arthur", - "fp": "DL", - "r": 7, - "c": 28, - "s": { - "s": 36, - "n": 7, - "a": 5.14, - "d": 1.46, - "Os": 87.5, - "On": 17, - "Oa": 5.15, - "Od": 1.16, - "pd": 17 - }, - "p": [ - [ - -38, - { - "n": 5.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 6.5, - "e": 3536 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 4, - "e": 3516 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3504 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3456 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - -24, - { - "n": 3.5, - "e": 3402 - } - ], - [ - -19, - { - "n": 5, - "e": 3355 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 9, - { - "n": 3, - "e": 4222 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 7.5, - "e": 4274 - } - ], - [ - 3, - { - "n": 6.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ] - ] - } - ], - [ - 996, - { - "n": "Fernandes", - "f": "Edimilson", - "fp": "MD", - "r": 8, - "c": 28 - } - ], - [ - 1087, - { - "n": "Rice", - "f": "Declan", - "fp": "MD", - "r": 19, - "c": 28, - "s": { - "s": 94, - "n": 17, - "a": 5.53, - "d": 1.1, - "Ss": 94, - "Sn": 17, - "Sa": 5.53, - "Sd": 1.1, - "Og": 2, - "Os": 210, - "On": 37, - "Oa": 5.68, - "Od": 0.95, - "pm": 37 - }, - "p": [ - [ - -38, - { - "n": 6, - "e": 3547 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3516 - } - ], - [ - -34, - { - "n": 6.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 5, - "e": 3489 - } - ], - [ - -32, - { - "n": 5.5, - "e": 3487 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3476 - } - ], - [ - -30, - { - "n": 6, - "e": 3459 - } - ], - [ - -29, - { - "n": 7, - "e": 3456, - "g": 1 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -27, - { - "n": 7, - "e": 3437 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 6, - "e": 3417 - } - ], - [ - -24, - { - "n": 5, - "e": 3402 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 7.5, - "e": 3387, - "g": 1 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3359 - } - ], - [ - -19, - { - "n": 6, - "e": 3355 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3346 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 5.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 7, - "e": 4169 - } - ], - [ - 13, - { - "n": 6, - "e": 4187 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 4, - "e": 4207 - } - ], - [ - 10, - { - "n": 6, - "e": 4217 - } - ], - [ - 9, - { - "n": 5, - "e": 4222 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 7, - "e": 4240 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 6.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 6.5, - "e": 4274 - } - ], - [ - 3, - { - "n": 6, - "e": 4283 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4290 - } - ], - [ - 1, - { - "n": 4, - "e": 4299 - } - ] - ], - "a": { - "m": 21, - "a": 25, - "M": 28, - "n": 5 - } - } - ], - [ - 1132, - { - "n": "Diangana", - "f": "Grady", - "fp": "MD", - "r": 7, - "c": 28, - "s": { - "Os": 37.5, - "On": 8, - "Oa": 4.69, - "Od": 0.59, - "pm": 8 - }, - "p": [ - [ - -37, - { - "n": 5.5, - "e": 3536 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3487 - } - ], - [ - -28, - { - "n": 5, - "e": 3447 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3388 - } - ], - [ - -20, - { - "n": 4, - "e": 3359 - } - ], - [ - -19, - { - "n": 4, - "e": 3355 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3346 - } - ] - ] - } - ], - [ - 1627, - { - "n": "Fornals", - "f": "Pablo", - "fp": "MO", - "r": 10, - "c": 28, - "s": { - "s": 79.5, - "n": 16, - "a": 4.97, - "d": 0.64, - "Ss": 30, - "Sn": 6, - "Sa": 5, - "Sd": 0.89, - "Og": 1, - "Os": 175, - "On": 35, - "Oa": 5, - "Od": 0.75, - "pm": 31, - "pa": 4 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 2339 - } - ], - [ - -36, - { - "n": 3.5, - "e": 2326 - } - ], - [ - -35, - { - "n": 6, - "e": 2321, - "g": 1 - } - ], - [ - -34, - { - "n": 5, - "e": 2305 - } - ], - [ - -33, - { - "n": 5, - "e": 2301 - } - ], - [ - -28, - { - "n": 5, - "e": 2251 - } - ], - [ - -27, - { - "n": 4.5, - "e": 2238 - } - ], - [ - -26, - { - "n": 4.5, - "e": 2227 - } - ], - [ - -23, - { - "n": 5, - "e": 2197 - } - ], - [ - -22, - { - "n": 5, - "e": 2189 - } - ], - [ - -21, - { - "n": 4.5, - "e": 2176 - } - ], - [ - -20, - { - "n": 4, - "e": 2170 - } - ], - [ - -18, - { - "n": 5, - "e": 2143 - } - ], - [ - -17, - { - "n": 7, - "e": 2141 - } - ], - [ - -32, - { - "n": 6.5, - "e": 2284 - } - ], - [ - -29, - { - "n": 5, - "e": 2254 - } - ], - [ - -25, - { - "n": 4.5, - "e": 2214 - } - ], - [ - -24, - { - "n": 4.5, - "e": 2211 - } - ], - [ - -19, - { - "n": 6, - "e": 2160 - } - ], - [ - 17, - { - "n": 6.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4162 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 5, - "e": 4187 - } - ], - [ - 12, - { - "n": 4, - "e": 4188 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4240 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4274 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4, - "e": 4290 - } - ], - [ - 1, - { - "n": 5, - "e": 4299 - } - ] - ] - } - ], - [ - 1727, - { - "n": "Jiménez", - "f": "Roberto", - "fp": "G", - "r": 6, - "c": 28, - "s": { - "ao": 1, - "s": 34.5, - "n": 7, - "a": 4.93, - "d": 1.17, - "Oao": 1, - "Os": 34.5, - "On": 7, - "Oa": 4.93, - "Od": 1.17, - "pg": 7 - }, - "p": [ - [ - 13, - { - "n": 4, - "e": 4187 - } - ], - [ - 12, - { - "n": 6, - "e": 4188, - "a": 1 - } - ], - [ - 11, - { - "n": 4, - "e": 4207 - } - ], - [ - 10, - { - "n": 5, - "e": 4217 - } - ], - [ - 9, - { - "n": 7, - "e": 4222 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 4, - "e": 4240 - } - ] - ] - } - ], - [ - 2073, - { - "n": "Holland", - "f": "Nathan", - "fp": "MD", - "r": 1, - "c": 28, - "s": { - "s": 10, - "n": 2, - "a": 5, - "d": 0.71, - "Os": 10, - "On": 2, - "Oa": 5, - "Od": 0.71, - "pm": 2 - }, - "p": [ - [ - 16, - { - "n": 5.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4162 - } - ] - ] - } - ], - [ - 2211, - { - "n": "Cullen", - "f": "Josh", - "fp": "MD", - "r": 2, - "c": 28 - } - ], - [ - 2221, - { - "n": "Johnson", - "f": "Ben", - "fp": "MD", - "r": 3, - "c": 28 - } - ], - [ - 2260, - { - "n": "Oxford", - "f": "Reece", - "fp": "DC", - "r": 1, - "c": 28 - } - ], - [ - 2293, - { - "n": "Carlos Sánchez", - "f": "", - "fp": "MD", - "r": 3, - "c": 28, - "s": { - "s": 25, - "n": 5, - "a": 5, - "Ss": 5, - "Sn": 1, - "Sa": 5, - "Os": 34.5, - "On": 7, - "Oa": 4.93, - "Od": 0.19, - "pm": 7 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 5, - "e": 3536 - } - ], - [ - 17, - { - "n": 5, - "e": 4146 - } - ], - [ - 13, - { - "n": 5, - "e": 4187 - } - ], - [ - 4, - { - "n": 5, - "e": 4274 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ] - ] - } - ], - [ - 2307, - { - "n": "Hugill", - "f": "Jordan", - "fp": "A", - "r": 3, - "c": 28 - } - ], - [ - 2498, - { - "n": "Fredericks", - "f": "Ryan", - "fp": "DL", - "r": 11, - "c": 28, - "s": { - "s": 74.5, - "n": 16, - "a": 4.66, - "d": 0.93, - "Ss": 32, - "Sn": 7, - "Sa": 4.57, - "Sd": 1.06, - "Og": 1, - "Os": 134, - "On": 27, - "Oa": 4.96, - "Od": 1.08, - "pd": 27 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3547 - } - ], - [ - -37, - { - "n": 8, - "e": 3536, - "g": 1 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3526 - } - ], - [ - -34, - { - "n": 4, - "e": 3504 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3489 - } - ], - [ - -30, - { - "n": 4, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -28, - { - "n": 6, - "e": 3447 - } - ], - [ - -27, - { - "n": 5, - "e": 3437 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 5, - "e": 3417 - } - ], - [ - 17, - { - "n": 6, - "e": 4146 - } - ], - [ - 16, - { - "n": 3.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4162 - } - ], - [ - 14, - { - "n": 6, - "e": 4169 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 4, - "e": 4188 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4207 - } - ], - [ - 9, - { - "n": 3, - "e": 4222 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 5, - "e": 4240 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 4, - { - "n": 5, - "e": 4274 - } - ], - [ - 3, - { - "n": 5, - "e": 4283 - } - ], - [ - 2, - { - "n": 5, - "e": 4290 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4299 - } - ] - ] - } - ], - [ - 2514, - { - "n": "Yarmolenko", - "f": "Andriy", - "fp": "A", - "r": 15, - "c": 28, - "s": { - "g": 3, - "s": 75, - "n": 15, - "a": 5, - "d": 1.46, - "Ss": 4, - "Sn": 1, - "Sa": 4, - "Og": 3, - "Os": 75, - "On": 15, - "Oa": 5, - "Od": 1.46, - "pm": 9, - "pa": 6 - }, - "p": [ - [ - 17, - { - "n": 4, - "e": 4146 - } - ], - [ - 15, - { - "n": 4.5, - "e": 4162 - } - ], - [ - 14, - { - "n": 4, - "e": 4169 - } - ], - [ - 13, - { - "n": 4, - "e": 4187 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 3, - "e": 4207 - } - ], - [ - 10, - { - "n": 7, - "e": 4217 - } - ], - [ - 9, - { - "n": 4, - "e": 4222 - } - ], - [ - 8, - { - "n": 5, - "e": 4235 - } - ], - [ - 7, - { - "n": 7.5, - "e": 4240, - "g": 1 - } - ], - [ - 6, - { - "n": 7, - "e": 4255, - "g": 1 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 4, - { - "n": 7, - "e": 4274, - "g": 1 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4283 - } - ], - [ - 2, - { - "n": 4, - "e": 4290 - } - ] - ] - } - ], - [ - 2560, - { - "n": "Toni Martínez", - "f": "", - "fp": "A", - "r": 2, - "c": 28 - } - ], - [ - 2573, - { - "n": "Balbuena", - "f": "Fabián", - "fp": "DC", - "r": 10, - "c": 28, - "s": { - "g": 1, - "s": 39, - "n": 9, - "a": 4.33, - "d": 1.41, - "Ss": 19.5, - "Sn": 4, - "Sa": 4.88, - "Sd": 1.75, - "Og": 1, - "Os": 74.5, - "On": 16, - "Oa": 4.66, - "Od": 1.26, - "pd": 16 - }, - "p": [ - [ - -38, - { - "n": 6.5, - "e": 3547 - } - ], - [ - -37, - { - "n": 6, - "e": 3536 - } - ], - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -35, - { - "n": 4, - "e": 3516 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3504 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3489 - } - ], - [ - -18, - { - "n": 4, - "e": 3346 - } - ], - [ - 17, - { - "n": 5.5, - "e": 4146 - } - ], - [ - 16, - { - "n": 4, - "e": 4157 - } - ], - [ - 15, - { - "n": 3, - "e": 4162 - } - ], - [ - 14, - { - "n": 7, - "e": 4169 - } - ], - [ - 12, - { - "n": 2.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4207, - "g": 1 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4217 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 1, - { - "n": 3, - "e": 4299 - } - ] - ] - } - ], - [ - 2602, - { - "n": "Felipe Anderson", - "f": "", - "fp": "MO", - "r": 18, - "c": 28, - "s": { - "s": 78, - "n": 15, - "a": 5.2, - "d": 1.39, - "Og": 3, - "Os": 176, - "On": 34, - "Oa": 5.18, - "Od": 1.34, - "pm": 31, - "pa": 3 - }, - "p": [ - [ - -38, - { - "n": 7, - "e": 3547 - } - ], - [ - -36, - { - "n": 5, - "e": 3526 - } - ], - [ - -35, - { - "n": 5, - "e": 3516 - } - ], - [ - -34, - { - "n": 6, - "e": 3504, - "g": 1 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3489 - } - ], - [ - -31, - { - "n": 5, - "e": 3476 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3459 - } - ], - [ - -29, - { - "n": 6, - "e": 3456 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3447 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3437 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3419 - } - ], - [ - -25, - { - "n": 7, - "e": 3417 - } - ], - [ - -24, - { - "n": 3, - "e": 3402 - } - ], - [ - -23, - { - "n": 4, - "e": 3388 - } - ], - [ - -22, - { - "n": 6, - "e": 3387 - } - ], - [ - -21, - { - "n": 5, - "e": 3376 - } - ], - [ - -20, - { - "n": 3, - "e": 3359 - } - ], - [ - -19, - { - "n": 8, - "e": 3355, - "g": 2 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3346 - } - ], - [ - 16, - { - "n": 4, - "e": 4157 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 5, - "e": 4169 - } - ], - [ - 13, - { - "n": 3.5, - "e": 4187 - } - ], - [ - 12, - { - "n": 3.5, - "e": 4188 - } - ], - [ - 11, - { - "n": 6, - "e": 4207 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 3.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4235 - } - ], - [ - 7, - { - "n": 6, - "e": 4240 - } - ], - [ - 6, - { - "n": 6, - "e": 4255 - } - ], - [ - 5, - { - "n": 6, - "e": 4267 - } - ], - [ - 4, - { - "n": 7, - "e": 4274 - } - ], - [ - 3, - { - "n": 7.5, - "e": 4283 - } - ], - [ - 1, - { - "n": 3, - "e": 4299 - } - ] - ], - "a": { - "m": 25, - "a": 26, - "M": 27, - "n": 7 - } - } - ], - [ - 2885, - { - "n": "Coventry", - "f": "Conor", - "fp": "MD", - "r": 1, - "c": 28 - } - ], - [ - 2888, - { - "n": "Joe Powell", - "f": "", - "fp": "MD", - "r": 1, - "c": 28 - } - ], - [ - 2979, - { - "n": "Xande Silva", - "f": "", - "fp": "A", - "r": 1, - "c": 28 - } - ], - [ - 2987, - { - "n": "Nasri", - "f": "Samir", - "fp": "MD", - "r": 4, - "c": 28, - "s": { - "Os": 24.5, - "On": 5, - "Oa": 4.9, - "Od": 1.14, - "pm": 5 - }, - "p": [ - [ - -31, - { - "n": 6.5, - "e": 3476 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3459 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3447 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3388 - } - ], - [ - -22, - { - "n": 5.5, - "e": 3387 - } - ] - ] - } - ], - [ - 3744, - { - "n": "Martin", - "f": "David", - "fp": "G", - "r": 12, - "c": 28, - "s": { - "s": 23, - "n": 4, - "a": 5.75, - "d": 2.06, - "Ss": 23, - "Sn": 4, - "Sa": 5.75, - "Sd": 2.06, - "Os": 23, - "On": 4, - "Oa": 5.75, - "Od": 2.06, - "pg": 4 - }, - "p": [ - [ - 17, - { - "n": 6, - "e": 4146 - } - ], - [ - 16, - { - "n": 3, - "e": 4157 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 8, - "e": 4169 - } - ] - ] - } - ], - [ - 5449, - { - "n": "Haller", - "f": "Sébastien", - "fp": "A", - "r": 18, - "c": 28, - "s": { - "g": 5, - "s": 82.5, - "n": 16, - "a": 5.16, - "d": 1.39, - "Sg": 5, - "Ss": 79, - "Sn": 15, - "Sa": 5.27, - "Sd": 1.36, - "Og": 5, - "Os": 82.5, - "On": 16, - "Oa": 5.16, - "Od": 1.39, - "pa": 16 - }, - "p": [ - [ - 17, - { - "n": 7, - "e": 4146, - "g": 1 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4157 - } - ], - [ - 15, - { - "n": 4, - "e": 4162 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4169 - } - ], - [ - 13, - { - "n": 4, - "e": 4187 - } - ], - [ - 12, - { - "n": 3, - "e": 4188 - } - ], - [ - 11, - { - "n": 6, - "e": 4207 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4222 - } - ], - [ - 8, - { - "n": 6, - "e": 4235, - "g": 1 - } - ], - [ - 7, - { - "n": 6, - "e": 4240 - } - ], - [ - 6, - { - "n": 5, - "e": 4255 - } - ], - [ - 5, - { - "n": 5, - "e": 4267 - } - ], - [ - 4, - { - "n": 7, - "e": 4274, - "g": 1 - } - ], - [ - 3, - { - "n": 8, - "e": 4283, - "g": 2 - } - ], - [ - 1, - { - "n": 3.5, - "e": 4299 - } - ] - ] - } - ], - [ - 5986, - { - "n": "Gonçalo Cardoso", - "f": "", - "fp": "DC", - "r": 1, - "c": 28 - } - ], - [ - 6123, - { - "n": "Ajeti", - "f": "Albian", - "fp": "A", - "r": 5, - "c": 28, - "s": { - "s": 21, - "n": 5, - "a": 4.2, - "d": 0.27, - "Os": 21, - "On": 5, - "Oa": 4.2, - "Od": 0.27, - "pa": 5 - }, - "p": [ - [ - 15, - { - "n": 4.5, - "e": 4162 - } - ], - [ - 12, - { - "n": 4, - "e": 4188 - } - ], - [ - 11, - { - "n": 4, - "e": 4207 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4217 - } - ], - [ - 9, - { - "n": 4, - "e": 4222 - } - ] - ] - } - ], - [ - 75, - { - "n": "João Moutinho", - "f": "", - "fp": "MO", - "r": 22, - "c": 69, - "s": { - "g": 1, - "s": 94.5, - "n": 17, - "a": 5.56, - "d": 1, - "Sg": 1, - "Ss": 94.5, - "Sn": 17, - "Sa": 5.56, - "Sd": 1, - "Og": 1, - "Os": 212, - "On": 38, - "Oa": 5.58, - "Od": 1.02, - "pm": 37, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3537 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6.5, - "e": 3517 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -33, - { - "n": 6, - "e": 3497 - } - ], - [ - -32, - { - "n": 5, - "e": 3480 - } - ], - [ - -31, - { - "n": 6, - "e": 3477 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3457 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3440 - } - ], - [ - -27, - { - "n": 4, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 7, - "e": 3413 - } - ], - [ - -24, - { - "n": 8, - "e": 3402 - } - ], - [ - -23, - { - "n": 7, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -21, - { - "n": 4, - "e": 3377 - } - ], - [ - -20, - { - "n": 6, - "e": 3366 - } - ], - [ - -19, - { - "n": 7, - "e": 3351 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3347 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4162 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 7, - "e": 4180, - "g": 1 - } - ], - [ - 12, - { - "n": 6, - "e": 4195 - } - ], - [ - 11, - { - "n": 7, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 6, - "e": 4244 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 6, - "e": 4297 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ], - "a": { - "m": 19, - "a": 21, - "M": 25, - "n": 7 - } - } - ], - [ - 1710, - { - "n": "Jonny", - "f": "", - "fp": "DL", - "r": 13, - "c": 69, - "s": { - "g": 1, - "s": 76.5, - "n": 16, - "a": 4.78, - "d": 0.84, - "Sg": 1, - "Ss": 63, - "Sn": 13, - "Sa": 4.85, - "Sd": 0.9, - "Og": 1, - "Os": 170.5, - "On": 36, - "Oa": 4.74, - "Od": 0.79, - "pd": 2, - "pm": 34 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3537 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 6.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3460 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3440 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3402 - } - ], - [ - -23, - { - "n": 3, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -21, - { - "n": 4, - "e": 3377 - } - ], - [ - -20, - { - "n": 5, - "e": 3366 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4, - "e": 3347 - } - ], - [ - 17, - { - "n": 4, - "e": 4147 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4213, - "g": 1 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 8, - { - "n": 5, - "e": 4231 - } - ], - [ - 7, - { - "n": 6, - "e": 4244 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 2.5, - "e": 4263 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 4, - "e": 4305 - } - ] - ], - "a": { - "m": 11, - "a": 12, - "M": 13, - "n": 7 - } - } - ], - [ - 1839, - { - "n": "Vallejo", - "f": "Jesús", - "fp": "DC", - "r": 3, - "c": 69, - "s": { - "s": 7, - "n": 2, - "a": 3.5, - "d": 2.12, - "Og": 1, - "Os": 32, - "On": 7, - "Oa": 4.57, - "Od": 1.59, - "pd": 7 - }, - "p": [ - [ - -37, - { - "n": 3, - "e": 2341 - } - ], - [ - -33, - { - "n": 6.5, - "e": 2297 - } - ], - [ - -36, - { - "n": 6, - "e": 2326, - "g": 1 - } - ], - [ - -35, - { - "n": 4.5, - "e": 2316 - } - ], - [ - -27, - { - "n": 5, - "e": 2240 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 5, - { - "n": 2, - "e": 4263 - } - ] - ] - } - ], - [ - 2485, - { - "n": "Coady", - "f": "Conor", - "fp": "DC", - "r": 12, - "c": 69, - "s": { - "s": 84, - "n": 17, - "a": 4.94, - "d": 1.1, - "Ss": 84, - "Sn": 17, - "Sa": 4.94, - "Sd": 1.1, - "Oao": 3, - "Os": 190, - "On": 38, - "Oa": 5, - "Od": 1, - "pd": 38 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3543 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3537 - } - ], - [ - -36, - { - "n": 6, - "e": 3527 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -34, - { - "n": 4, - "e": 3505 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 3, - "e": 3480, - "a": 1 - } - ], - [ - -31, - { - "n": 5.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 5.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 5.5, - "e": 3457 - } - ], - [ - -28, - { - "n": 5, - "e": 3440 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3402 - } - ], - [ - -23, - { - "n": 3.5, - "e": 3397, - "a": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3385, - "a": 1 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 6, - "e": 3366 - } - ], - [ - -19, - { - "n": 5.5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4, - "e": 3347 - } - ], - [ - 17, - { - "n": 4.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 6, - "e": 4244 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 5, - { - "n": 2, - "e": 4263 - } - ], - [ - 4, - { - "n": 3, - "e": 4276 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ] - } - ], - [ - 2490, - { - "n": "Boly", - "f": "Willy", - "fp": "DC", - "r": 9, - "c": 69, - "s": { - "s": 45.5, - "n": 8, - "a": 5.69, - "d": 0.96, - "Og": 3, - "Os": 147, - "On": 27, - "Oa": 5.44, - "Od": 0.97, - "pd": 27 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 6, - "e": 3537 - } - ], - [ - -36, - { - "n": 6, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -34, - { - "n": 6, - "e": 3505, - "g": 1 - } - ], - [ - -33, - { - "n": 5.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 4, - "e": 3480 - } - ], - [ - -31, - { - "n": 5, - "e": 3477 - } - ], - [ - -30, - { - "n": 6, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3457 - } - ], - [ - -28, - { - "n": 5, - "e": 3440 - } - ], - [ - -27, - { - "n": 4.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 7, - "e": 3427, - "g": 1 - } - ], - [ - -25, - { - "n": 5.5, - "e": 3413 - } - ], - [ - -22, - { - "n": 3.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 5, - "e": 3377 - } - ], - [ - -20, - { - "n": 7.5, - "e": 3366, - "g": 1 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3347 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 7, - "e": 4231 - } - ], - [ - 7, - { - "n": 7, - "e": 4244 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ], - [ - 3, - { - "n": 6, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ] - } - ], - [ - 2492, - { - "n": "Doherty", - "f": "Matt", - "fp": "DL", - "r": 14, - "c": 69, - "s": { - "g": 2, - "s": 81.5, - "n": 16, - "a": 5.09, - "d": 0.92, - "Sg": 2, - "Ss": 68, - "Sn": 13, - "Sa": 5.23, - "Sd": 0.95, - "Og": 3, - "Os": 189, - "On": 37, - "Oa": 5.11, - "Od": 0.88, - "pd": 7, - "pm": 30 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 6, - "e": 3537 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -34, - { - "n": 4, - "e": 3505 - } - ], - [ - -33, - { - "n": 5, - "e": 3497 - } - ], - [ - -32, - { - "n": 5, - "e": 3480 - } - ], - [ - -31, - { - "n": 6.5, - "e": 3477, - "g": 1 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 6, - "e": 3457 - } - ], - [ - -28, - { - "n": 3.5, - "e": 3440 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 5, - "e": 3413 - } - ], - [ - -24, - { - "n": 6, - "e": 3402 - } - ], - [ - -23, - { - "n": 5, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 7, - "e": 3366 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3347 - } - ], - [ - 17, - { - "n": 3.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 4, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4174, - "g": 1 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 5, - "e": 4231 - } - ], - [ - 7, - { - "n": 7, - "e": 4244, - "g": 1 - } - ], - [ - 6, - { - "n": 5, - "e": 4251 - } - ], - [ - 5, - { - "n": 5.5, - "e": 4263 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 4, - "e": 4305 - } - ] - ], - "a": { - "m": 16, - "a": 19, - "M": 31, - "n": 13 - } - } - ], - [ - 2503, - { - "n": "Batth", - "f": "Danny", - "fp": "DC", - "r": 1, - "c": 69 - } - ], - [ - 2508, - { - "n": "Mason", - "f": "Joe", - "fp": "A", - "r": 1, - "c": 69 - } - ], - [ - 2528, - { - "n": "Bennett", - "f": "Ryan", - "fp": "DC", - "r": 7, - "c": 69, - "s": { - "s": 40.5, - "n": 8, - "a": 5.06, - "d": 0.56, - "Og": 1, - "Os": 131, - "On": 26, - "Oa": 5.04, - "Od": 0.66, - "pd": 26 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3537 - } - ], - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3497 - } - ], - [ - -31, - { - "n": 6, - "e": 3477 - } - ], - [ - -29, - { - "n": 6, - "e": 3457 - } - ], - [ - -28, - { - "n": 4, - "e": 3440 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 6, - "e": 3427 - } - ], - [ - -25, - { - "n": 5, - "e": 3413 - } - ], - [ - -24, - { - "n": 5, - "e": 3402 - } - ], - [ - -23, - { - "n": 5.5, - "e": 3397, - "g": 1 - } - ], - [ - -22, - { - "n": 4, - "e": 3385 - } - ], - [ - -21, - { - "n": 4, - "e": 3377 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3366 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3347 - } - ], - [ - 15, - { - "n": 5, - "e": 4162 - } - ], - [ - 12, - { - "n": 5, - "e": 4195 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 8, - { - "n": 6, - "e": 4231 - } - ], - [ - 4, - { - "n": 4, - "e": 4276 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ] - } - ], - [ - 2533, - { - "n": "Rui Patrício", - "f": "", - "fp": "G", - "r": 15, - "c": 69, - "s": { - "s": 90, - "n": 17, - "a": 5.29, - "d": 1.38, - "Ss": 90, - "Sn": 17, - "Sa": 5.29, - "Sd": 1.38, - "Os": 196, - "On": 37, - "Oa": 5.3, - "Od": 1.08, - "pg": 37 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5.5, - "e": 3537 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5.5, - "e": 3517 - } - ], - [ - -34, - { - "n": 4, - "e": 3505 - } - ], - [ - -33, - { - "n": 6, - "e": 3497 - } - ], - [ - -32, - { - "n": 4, - "e": 3480 - } - ], - [ - -31, - { - "n": 5, - "e": 3477 - } - ], - [ - -30, - { - "n": 6, - "e": 3460 - } - ], - [ - -28, - { - "n": 5.5, - "e": 3440 - } - ], - [ - -27, - { - "n": 6, - "e": 3428 - } - ], - [ - -26, - { - "n": 4, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3413 - } - ], - [ - -24, - { - "n": 5.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 5, - "e": 3397 - } - ], - [ - -22, - { - "n": 7, - "e": 3385 - } - ], - [ - -21, - { - "n": 5, - "e": 3377 - } - ], - [ - -20, - { - "n": 5, - "e": 3366 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 6, - "e": 3347 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 3, - "e": 4150 - } - ], - [ - 15, - { - "n": 7, - "e": 4162 - } - ], - [ - 14, - { - "n": 6, - "e": 4174 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 6, - "e": 4227 - } - ], - [ - 8, - { - "n": 6.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 7.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 6, - "e": 4251 - } - ], - [ - 5, - { - "n": 2.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 3, - "e": 4276 - } - ], - [ - 3, - { - "n": 5.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 6, - "e": 4297 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ] - } - ], - [ - 2538, - { - "n": "Gibbs-White", - "f": "Morgan", - "fp": "MO", - "r": 1, - "c": 69, - "s": { - "s": 14.5, - "n": 3, - "a": 4.83, - "d": 0.58, - "Os": 85.5, - "On": 18, - "Oa": 4.75, - "Od": 0.35, - "pm": 17, - "pa": 1 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -36, - { - "n": 5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -34, - { - "n": 5, - "e": 3505 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 4, - "e": 3457 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3440 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3397 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 5, - "e": 3377 - } - ], - [ - -20, - { - "n": 5, - "e": 3366 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3351 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4244 - } - ], - [ - 5, - { - "n": 4.5, - "e": 4263 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4284 - } - ] - ] - } - ], - [ - 2540, - { - "n": "Rúben Vinagre", - "f": "", - "fp": "DL", - "r": 6, - "c": 69, - "s": { - "s": 28.5, - "n": 6, - "a": 4.75, - "d": 0.88, - "Os": 74, - "On": 15, - "Oa": 4.93, - "Od": 0.62, - "pd": 10, - "pm": 5 - }, - "p": [ - [ - -38, - { - "n": 5, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3537 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -33, - { - "n": 5, - "e": 3497 - } - ], - [ - -29, - { - "n": 6, - "e": 3457 - } - ], - [ - -24, - { - "n": 5, - "e": 3402 - } - ], - [ - -23, - { - "n": 4.5, - "e": 3397 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 13, - { - "n": 5, - "e": 4180 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 8, - { - "n": 5.5, - "e": 4231 - } - ], - [ - 4, - { - "n": 3, - "e": 4276 - } - ] - ] - } - ], - [ - 2542, - { - "n": "Deslandes", - "f": "Sylvain", - "fp": "DC", - "r": 1, - "c": 69 - } - ], - [ - 2550, - { - "n": "Enobakhare", - "f": "Bright", - "fp": "A", - "r": 1, - "c": 69 - } - ], - [ - 2556, - { - "n": "Diogo Jota", - "f": "", - "fp": "MO", - "r": 16, - "c": 69, - "s": { - "g": 3, - "s": 76.5, - "n": 15, - "a": 5.1, - "d": 1.02, - "Sg": 2, - "Ss": 48.5, - "Sn": 9, - "Sa": 5.39, - "Sd": 0.99, - "Og": 10, - "Os": 171.5, - "On": 32, - "Oa": 5.36, - "Od": 1.28, - "pm": 1, - "pa": 31 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3537 - } - ], - [ - -36, - { - "n": 7.5, - "e": 3527, - "g": 1 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -34, - { - "n": 4, - "e": 3505 - } - ], - [ - -33, - { - "n": 6.5, - "e": 3497, - "g": 1 - } - ], - [ - -32, - { - "n": 4, - "e": 3480 - } - ], - [ - -31, - { - "n": 7, - "e": 3477, - "g": 1 - } - ], - [ - -30, - { - "n": 6, - "e": 3460 - } - ], - [ - -29, - { - "n": 7, - "e": 3457, - "g": 1 - } - ], - [ - -28, - { - "n": 4, - "e": 3440 - } - ], - [ - -27, - { - "n": 4, - "e": 3428 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3413 - } - ], - [ - -24, - { - "n": 7, - "e": 3402 - } - ], - [ - -23, - { - "n": 8.5, - "e": 3397, - "g": 3 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 7.5, - "e": 4150, - "g": 2 - } - ], - [ - 15, - { - "n": 5, - "e": 4162 - } - ], - [ - 14, - { - "n": 4.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5, - "e": 4213 - } - ], - [ - 9, - { - "n": 5, - "e": 4227 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4251, - "g": 1 - } - ], - [ - 5, - { - "n": 4, - "e": 4263 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 4, - "e": 4297 - } - ], - [ - 1, - { - "n": 4, - "e": 4305 - } - ] - ], - "a": { - "m": 14, - "a": 25, - "M": 46, - "n": 5 - } - } - ], - [ - 2557, - { - "n": "Ruddy", - "f": "John", - "fp": "G", - "r": 7, - "c": 69, - "s": { - "Os": 6, - "On": 1, - "Oa": 6, - "pg": 1 - }, - "p": [ - [ - -29, - { - "n": 6, - "e": 3457 - } - ] - ] - } - ], - [ - 2563, - { - "n": "Graham", - "f": "Jordan", - "fp": "MD", - "r": 5, - "c": 69 - } - ], - [ - 2568, - { - "n": "Rúben Neves", - "f": "", - "fp": "MD", - "r": 20, - "c": 69, - "s": { - "g": 2, - "s": 89, - "n": 17, - "a": 5.24, - "d": 0.9, - "Sg": 2, - "Ss": 89, - "Sn": 17, - "Sa": 5.24, - "Sd": 0.9, - "Og": 4, - "Os": 192.5, - "On": 36, - "Oa": 5.35, - "Od": 1.01, - "pm": 36 - }, - "p": [ - [ - -38, - { - "n": 4, - "e": 3543 - } - ], - [ - -37, - { - "n": 5, - "e": 3537 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 6, - "e": 3517 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 6, - "e": 3497 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 7, - "e": 3477, - "g": 1 - } - ], - [ - -30, - { - "n": 6, - "e": 3460 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3440 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 6, - "e": 3413, - "g": 1 - } - ], - [ - -24, - { - "n": 7, - "e": 3402 - } - ], - [ - -23, - { - "n": 7, - "e": 3397 - } - ], - [ - -22, - { - "n": 4.5, - "e": 3385 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 6, - "e": 3366 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 15, - { - "n": 5, - "e": 4162 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 6, - "e": 4180 - } - ], - [ - 12, - { - "n": 7, - "e": 4195, - "g": 1 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 7, - "e": 4231 - } - ], - [ - 7, - { - "n": 5, - "e": 4244 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 5, - "e": 4276 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 6, - "e": 4297, - "g": 1 - } - ], - [ - 1, - { - "n": 5.5, - "e": 4305 - } - ] - ] - } - ], - [ - 2571, - { - "n": "Norris", - "f": "Will", - "fp": "G", - "r": 1, - "c": 69, - "s": { - "Os": 5, - "On": 1, - "Oa": 5, - "pg": 1 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3537 - } - ] - ] - } - ], - [ - 2574, - { - "n": "Cavaleiro", - "f": "Ivan", - "fp": "A", - "r": 7, - "c": 69, - "s": { - "Os": 57.5, - "On": 13, - "Oa": 4.42, - "Od": 0.76, - "pa": 13 - }, - "p": [ - [ - -36, - { - "n": 4.5, - "e": 3527 - } - ], - [ - -33, - { - "n": 4.5, - "e": 3497 - } - ], - [ - -32, - { - "n": 3, - "e": 3480 - } - ], - [ - -31, - { - "n": 4, - "e": 3477 - } - ], - [ - -29, - { - "n": 4, - "e": 3457 - } - ], - [ - -28, - { - "n": 4, - "e": 3440 - } - ], - [ - -27, - { - "n": 3.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -24, - { - "n": 4.5, - "e": 3402 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 6, - "e": 3366 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 5, - "e": 3347 - } - ] - ] - } - ], - [ - 2575, - { - "n": "Hélder Costa", - "f": "", - "fp": "A", - "r": 6, - "c": 69, - "s": { - "Og": 1, - "Os": 37, - "On": 8, - "Oa": 4.63, - "Od": 0.79, - "pa": 8 - }, - "p": [ - [ - -34, - { - "n": 4, - "e": 3505 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3480 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3440 - } - ], - [ - -26, - { - "n": 4.5, - "e": 3427 - } - ], - [ - -25, - { - "n": 4, - "e": 3413 - } - ], - [ - -21, - { - "n": 4.5, - "e": 3377 - } - ], - [ - -20, - { - "n": 6.5, - "e": 3366, - "g": 1 - } - ], - [ - -19, - { - "n": 4.5, - "e": 3351 - } - ] - ] - } - ], - [ - 2584, - { - "n": "Léo Bonatini", - "f": "", - "fp": "A", - "r": 1, - "c": 69 - } - ], - [ - 2597, - { - "n": "Saïss", - "f": "Romain", - "fp": "MD", - "r": 12, - "c": 69, - "s": { - "g": 1, - "s": 63, - "n": 13, - "a": 4.85, - "d": 1.03, - "Ss": 14.5, - "Sn": 3, - "Sa": 4.83, - "Sd": 1.44, - "Og": 3, - "Os": 132.5, - "On": 26, - "Oa": 5.1, - "Od": 1.17, - "pd": 16, - "pm": 10 - }, - "p": [ - [ - -34, - { - "n": 3.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 5, - "e": 3497 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3480 - } - ], - [ - -30, - { - "n": 5, - "e": 3460 - } - ], - [ - -29, - { - "n": 8, - "e": 3457 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3413 - } - ], - [ - -24, - { - "n": 7.5, - "e": 3402, - "g": 1 - } - ], - [ - -23, - { - "n": 4, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -21, - { - "n": 5.5, - "e": 3377 - } - ], - [ - -19, - { - "n": 6.5, - "e": 3351, - "g": 1 - } - ], - [ - -18, - { - "n": 5.5, - "e": 3347 - } - ], - [ - 17, - { - "n": 4, - "e": 4147 - } - ], - [ - 16, - { - "n": 4, - "e": 4150 - } - ], - [ - 15, - { - "n": 6.5, - "e": 4162 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 5, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4213 - } - ], - [ - 8, - { - "n": 5, - "e": 4231 - } - ], - [ - 7, - { - "n": 6, - "e": 4244 - } - ], - [ - 6, - { - "n": 4, - "e": 4251 - } - ], - [ - 5, - { - "n": 2.5, - "e": 4263 - } - ], - [ - 4, - { - "n": 5, - "e": 4276, - "g": 1 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ] - ] - } - ], - [ - 2600, - { - "n": "Jiménez", - "f": "Raúl", - "fp": "A", - "r": 33, - "c": 69, - "s": { - "g": 6, - "s": 97, - "n": 17, - "a": 5.71, - "d": 1.09, - "Sg": 6, - "Ss": 97, - "Sn": 17, - "Sa": 5.71, - "Sd": 1.09, - "Og": 14, - "Os": 210, - "On": 38, - "Oa": 5.53, - "Od": 1.26, - "pa": 38 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 4.5, - "e": 3537 - } - ], - [ - -36, - { - "n": 6.5, - "e": 3527, - "g": 1 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3517 - } - ], - [ - -34, - { - "n": 3.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 7, - "e": 3497 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3460, - "g": 1 - } - ], - [ - -29, - { - "n": 7.5, - "e": 3457, - "g": 1 - } - ], - [ - -28, - { - "n": 3, - "e": 3440 - } - ], - [ - -27, - { - "n": 5, - "e": 3428, - "g": 1 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 7, - "e": 3413, - "g": 1 - } - ], - [ - -24, - { - "n": 8, - "e": 3402, - "g": 2 - } - ], - [ - -23, - { - "n": 6, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -21, - { - "n": 4, - "e": 3377 - } - ], - [ - -20, - { - "n": 7, - "e": 3366, - "g": 1 - } - ], - [ - -19, - { - "n": 5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4.5, - "e": 3347 - } - ], - [ - 17, - { - "n": 5, - "e": 4147 - } - ], - [ - 16, - { - "n": 6, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 6.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 6.5, - "e": 4180, - "g": 1 - } - ], - [ - 12, - { - "n": 7, - "e": 4195, - "g": 1 - } - ], - [ - 11, - { - "n": 7.5, - "e": 4198, - "g": 1 - } - ], - [ - 10, - { - "n": 5.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 5, - "e": 4227, - "g": 1 - } - ], - [ - 8, - { - "n": 7, - "e": 4231 - } - ], - [ - 7, - { - "n": 5, - "e": 4244 - } - ], - [ - 6, - { - "n": 5.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3, - "e": 4263 - } - ], - [ - 4, - { - "n": 6, - "e": 4276, - "g": 1 - } - ], - [ - 3, - { - "n": 6, - "e": 4284, - "g": 1 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 5, - "e": 4305 - } - ] - ], - "a": { - "m": 30, - "a": 43, - "M": 51, - "n": 15 - } - } - ], - [ - 2603, - { - "n": "Ofosu-Ayeh", - "f": "Phil", - "fp": "DC", - "r": 1, - "c": 69 - } - ], - [ - 2762, - { - "n": "Dendoncker", - "f": "Leander", - "fp": "MD", - "r": 15, - "c": 69, - "s": { - "g": 1, - "ao": 1, - "s": 83.5, - "n": 17, - "a": 4.91, - "d": 1.25, - "Sg": 1, - "Sao": 1, - "Ss": 83.5, - "Sn": 17, - "Sa": 4.91, - "Sd": 1.25, - "Og": 3, - "Oao": 1, - "Os": 183, - "On": 35, - "Oa": 5.23, - "Od": 1.2, - "pd": 7, - "pm": 28 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -37, - { - "n": 6, - "e": 3537, - "g": 1 - } - ], - [ - -36, - { - "n": 5.5, - "e": 3527 - } - ], - [ - -35, - { - "n": 5, - "e": 3517 - } - ], - [ - -34, - { - "n": 5.5, - "e": 3505 - } - ], - [ - -33, - { - "n": 6, - "e": 3497 - } - ], - [ - -32, - { - "n": 3.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 6, - "e": 3477 - } - ], - [ - -30, - { - "n": 6.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 7, - "e": 3457 - } - ], - [ - -28, - { - "n": 4.5, - "e": 3440 - } - ], - [ - -27, - { - "n": 5.5, - "e": 3428 - } - ], - [ - -26, - { - "n": 5, - "e": 3427 - } - ], - [ - -25, - { - "n": 8, - "e": 3413, - "g": 1 - } - ], - [ - -24, - { - "n": 6.5, - "e": 3402 - } - ], - [ - -23, - { - "n": 4, - "e": 3397 - } - ], - [ - -22, - { - "n": 5, - "e": 3385 - } - ], - [ - -20, - { - "n": 5.5, - "e": 3366 - } - ], - [ - 17, - { - "n": 2.5, - "e": 4147 - } - ], - [ - 16, - { - "n": 5, - "e": 4150 - } - ], - [ - 15, - { - "n": 7.5, - "e": 4162, - "g": 1 - } - ], - [ - 14, - { - "n": 5.5, - "e": 4174 - } - ], - [ - 13, - { - "n": 5.5, - "e": 4180 - } - ], - [ - 12, - { - "n": 5.5, - "e": 4195 - } - ], - [ - 11, - { - "n": 6, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 4, - "e": 4227 - } - ], - [ - 8, - { - "n": 6, - "e": 4231 - } - ], - [ - 7, - { - "n": 5.5, - "e": 4244 - } - ], - [ - 6, - { - "n": 3.5, - "e": 4251, - "a": 1 - } - ], - [ - 5, - { - "n": 3, - "e": 4263 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4276 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 4, - "e": 4297 - } - ], - [ - 1, - { - "n": 6, - "e": 4305 - } - ] - ] - } - ], - [ - 2798, - { - "n": "Traoré", - "f": "Adama", - "fp": "MO", - "r": 16, - "c": 69, - "s": { - "g": 3, - "s": 90, - "n": 16, - "a": 5.63, - "d": 1.45, - "Sg": 3, - "Ss": 90, - "Sn": 16, - "Sa": 5.63, - "Sd": 1.45, - "Og": 3, - "Os": 161, - "On": 31, - "Oa": 5.19, - "Od": 1.24, - "pm": 7, - "pa": 24 - }, - "p": [ - [ - -38, - { - "n": 4.5, - "e": 3543 - } - ], - [ - -35, - { - "n": 4.5, - "e": 3517 - } - ], - [ - -34, - { - "n": 4.5, - "e": 3505 - } - ], - [ - -32, - { - "n": 4.5, - "e": 3480 - } - ], - [ - -31, - { - "n": 4.5, - "e": 3477 - } - ], - [ - -30, - { - "n": 4.5, - "e": 3460 - } - ], - [ - -29, - { - "n": 5, - "e": 3457 - } - ], - [ - -27, - { - "n": 5, - "e": 3428 - } - ], - [ - -26, - { - "n": 6, - "e": 3427 - } - ], - [ - -25, - { - "n": 4.5, - "e": 3413 - } - ], - [ - -22, - { - "n": 6, - "e": 3385 - } - ], - [ - -21, - { - "n": 4, - "e": 3377 - } - ], - [ - -20, - { - "n": 6, - "e": 3366 - } - ], - [ - -19, - { - "n": 3.5, - "e": 3351 - } - ], - [ - -18, - { - "n": 4, - "e": 3347 - } - ], - [ - 17, - { - "n": 7, - "e": 4147, - "g": 1 - } - ], - [ - 16, - { - "n": 6, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 14, - { - "n": 5, - "e": 4174 - } - ], - [ - 13, - { - "n": 7, - "e": 4180 - } - ], - [ - 12, - { - "n": 7, - "e": 4195 - } - ], - [ - 11, - { - "n": 5, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 9, - { - "n": 5.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 8.5, - "e": 4231, - "g": 2 - } - ], - [ - 7, - { - "n": 6, - "e": 4244 - } - ], - [ - 6, - { - "n": 6.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 3, - "e": 4263 - } - ], - [ - 4, - { - "n": 3, - "e": 4276 - } - ], - [ - 3, - { - "n": 5, - "e": 4284 - } - ], - [ - 2, - { - "n": 5, - "e": 4297 - } - ] - ], - "a": { - "m": 16, - "a": 19, - "M": 22, - "n": 6 - } - } - ], - [ - 2842, - { - "n": "Ashley-Seal", - "f": "Ben", - "fp": "A", - "r": 1, - "c": 69 - } - ], - [ - 2844, - { - "n": "Pote", - "f": "", - "fp": "MD", - "r": 1, - "c": 69 - } - ], - [ - 2846, - { - "n": "Watt", - "f": "Elliot", - "fp": "MD", - "r": 1, - "c": 69 - } - ], - [ - 2847, - { - "n": "Giles", - "f": "Ryan John", - "fp": "MD", - "r": 1, - "c": 69 - } - ], - [ - 2889, - { - "n": "Benny Ashley-Seal", - "f": "", - "fp": "A", - "r": 1, - "c": 69 - } - ], - [ - 2978, - { - "n": "Kilman", - "f": "Max", - "fp": "DL", - "r": 3, - "c": 69, - "s": { - "s": 4, - "n": 1, - "a": 4, - "Os": 9, - "On": 2, - "Oa": 4.5, - "Od": 0.71, - "pd": 2 - }, - "p": [ - [ - -37, - { - "n": 5, - "e": 3537 - } - ], - [ - 14, - { - "n": 4, - "e": 4174 - } - ] - ] - } - ], - [ - 3352, - { - "n": "John", - "f": "Cameron", - "fp": "DC", - "r": 1, - "c": 69 - } - ], - [ - 3501, - { - "n": "Ennis", - "f": "Niall", - "fp": "A", - "r": 3, - "c": 69 - } - ], - [ - 3659, - { - "n": "Rafa Mir", - "f": "", - "fp": "A", - "r": 5, - "c": 69 - } - ], - [ - 3724, - { - "n": "Roderick Miranda", - "f": "", - "fp": "DC", - "r": 3, - "c": 69 - } - ], - [ - 4258, - { - "n": "Bruno Jordao", - "f": "", - "fp": "MD", - "r": 1, - "c": 69 - } - ], - [ - 4282, - { - "n": "Pedro Neto", - "f": "", - "fp": "MO", - "r": 7, - "c": 69, - "s": { - "s": 46, - "n": 10, - "a": 4.6, - "d": 0.77, - "Os": 46, - "On": 10, - "Oa": 4.6, - "Od": 0.77, - "pa": 10 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162 - } - ], - [ - 12, - { - "n": 4, - "e": 4195 - } - ], - [ - 11, - { - "n": 4.5, - "e": 4198 - } - ], - [ - 10, - { - "n": 4.5, - "e": 4213 - } - ], - [ - 7, - { - "n": 6, - "e": 4244 - } - ], - [ - 6, - { - "n": 4, - "e": 4251 - } - ], - [ - 4, - { - "n": 4, - "e": 4276 - } - ], - [ - 3, - { - "n": 4.5, - "e": 4284 - } - ], - [ - 2, - { - "n": 4, - "e": 4297 - } - ] - ] - } - ], - [ - 4380, - { - "n": "Cutrone", - "f": "Patrick", - "fp": "A", - "r": 8, - "c": 69, - "s": { - "g": 2, - "s": 51.5, - "n": 11, - "a": 4.68, - "d": 0.68, - "Og": 2, - "Os": 51.5, - "On": 11, - "Oa": 4.68, - "Od": 0.68, - "pa": 11 - }, - "p": [ - [ - 16, - { - "n": 4.5, - "e": 4150 - } - ], - [ - 15, - { - "n": 6, - "e": 4162, - "g": 1 - } - ], - [ - 12, - { - "n": 4.5, - "e": 4195 - } - ], - [ - 9, - { - "n": 4.5, - "e": 4227 - } - ], - [ - 8, - { - "n": 4.5, - "e": 4231 - } - ], - [ - 7, - { - "n": 4, - "e": 4244 - } - ], - [ - 6, - { - "n": 4.5, - "e": 4251 - } - ], - [ - 5, - { - "n": 6, - "e": 4263, - "g": 1 - } - ], - [ - 4, - { - "n": 4.5, - "e": 4276 - } - ], - [ - 2, - { - "n": 4.5, - "e": 4297 - } - ], - [ - 1, - { - "n": 4, - "e": 4305 - } - ] - ] - } - ], - [ - 5431, - { - "n": "Sanderson", - "f": "Dion", - "fp": "DC", - "r": 1, - "c": 69 - } - ], - [ - 5988, - { - "n": "Söndergaard", - "f": "Andreas", - "fp": "G", - "r": 1, - "c": 69 - } - ], - [ - 5992, - { - "n": "Perry", - "f": "Taylor", - "fp": "MO", - "r": 1, - "c": 69 - } - ] - ], - "np": 815, - "c": [ - [ - 39, - { - "n": "Arsenal", - "rn": "Arsenal", - "cn": "Arsenal", - "crn": "Arsenal", - "a": "ARS", - "el": 1076, - "s": { - "w": 5, - "l": 5, - "d": 7, - "pl": 17, - "GA": -3, - "GS": 24, - "GT": 27, - "p": 22 - }, - "nm": [ - [ - 4131, - 0.523 - ], - [ - 4119, - 0.557 - ], - [ - 4119, - 0.557 - ] - ], - "pM": [ - null, - 4306, - 4288, - 4285, - 4277, - 4266, - 4256, - 4247, - 4236, - 4225, - 4208, - 4198, - 4196, - 4178, - 4176, - 4158, - 4157, - 4138, - 3339, - 3348, - 3363, - 3369, - 3387, - 3389, - 3399, - 3415, - 3421, - 3429, - 3438, - 3454, - 3458, - 3477, - 3478, - 3490, - 3507, - 3509, - 3522, - 3529, - 3539 - ], - "DMI": [ - 3490 - ] - } - ], - [ - 78, - { - "n": "Aston Villa", - "rn": "Aston Villa", - "cn": "Aston-Villa", - "crn": "Aston-Villa", - "a": "AST", - "el": 997, - "s": { - "w": 4, - "l": 10, - "d": 3, - "pl": 17, - "GA": -7, - "GS": 23, - "GT": 30, - "p": 15 - }, - "nm": [ - [ - 4128, - 0.557 - ], - [ - 4118, - 0.581 - ], - [ - 4118, - 0.581 - ] - ], - "pM": [ - null, - 4304, - 4289, - 4278, - 4270, - 4267, - 4256, - 4239, - 4232, - 4218, - 4212, - 4199, - 4195, - 4179, - 4175, - 4164, - 4148, - 4145 - ], - "DMI": [ - ] - } - ], - [ - 36, - { - "n": "Bournemouth", - "rn": "Bournemouth", - "cn": "Bournemouth", - "crn": "Bournemouth", - "a": "BOU", - "el": 1036, - "s": { - "w": 5, - "l": 8, - "d": 4, - "pl": 17, - "GA": -5, - "GS": 19, - "GT": 24, - "p": 19 - }, - "nm": [ - [ - 4119, - 0.443 - ], - [ - 4129, - 0.5 - ], - [ - 4119, - 0.443 - ], - [ - 4129, - 0.5 - ] - ], - "pM": [ - null, - 4300, - 4289, - 4286, - 4271, - 4265, - 4248, - 4240, - 4236, - 4219, - 4216, - 4200, - 4191, - 4180, - 4173, - 4166, - 4149, - 4140, - 3338, - 3356, - 3364, - 3368, - 3383, - 3388, - 3398, - 3410, - 3422, - 3428, - 3438, - 3448, - 3462, - 3468, - 3484, - 3488, - 3498, - 3508, - 3525, - 3528, - 3540 - ], - "DMI": [ - 3488 - ] - } - ], - [ - 45, - { - "n": "Brighton", - "rn": "Brighton", - "cn": "Brighton", - "crn": "Brighton", - "a": "BHA", - "el": 1053, - "s": { - "w": 5, - "l": 7, - "d": 5, - "pl": 17, - "GA": -4, - "GS": 21, - "GT": 25, - "p": 20 - }, - "nm": [ - [ - 4130, - 0.446 - ], - [ - 4126, - 0.402 - ], - [ - 4130, - 0.446 - ] - ], - "pM": [ - null, - 4303, - 4290, - 4280, - 4272, - 4259, - 4254, - 4241, - 4228, - 4218, - 4209, - 4201, - 4197, - 4181, - 4171, - 4158, - 4150, - 4141, - 3338, - 3348, - 3358, - 3376, - 3378, - 3393, - 3400, - 3408, - 3418, - 3432, - 3441, - 3449, - 3461, - 3469, - 3479, - 3495, - 3498, - 3517, - 3518, - 3529, - 3538 - ], - "DMI": [ - ] - } - ], - [ - 23, - { - "n": "Burnley", - "rn": "Burnley", - "cn": "Burnley", - "crn": "Burnley", - "a": "BUR", - "el": 1036, - "s": { - "w": 6, - "l": 8, - "d": 3, - "pl": 17, - "GA": -7, - "GS": 22, - "GT": 29, - "p": 21 - }, - "nm": [ - [ - 4129, - 0.5 - ], - [ - 4129, - 0.5 - ], - [ - 4122, - 0.466 - ] - ], - "pM": [ - null, - 4301, - 4288, - 4284, - 4275, - 4259, - 4250, - 4239, - 4229, - 4223, - 4210, - 4205, - 4188, - 4186, - 4168, - 4159, - 4155, - 4139, - 3339, - 3349, - 3359, - 3373, - 3379, - 3396, - 3403, - 3409, - 3418, - 3430, - 3444, - 3450, - 3464, - 3470, - 3480, - 3488, - 3499, - 3511, - 3519, - 3532, - 3539 - ], - "DMI": [ - 3488 - ] - } - ], - [ - 25, - { - "n": "Chelsea", - "rn": "Chelsea", - "cn": "Chelsea", - "crn": "Chelsea", - "a": "CHE", - "el": 1100, - "s": { - "w": 9, - "l": 6, - "d": 2, - "pl": 17, - "GA": 6, - "GS": 31, - "GT": 25, - "p": 29 - }, - "nm": [ - [ - 4135, - 0.468 - ], - [ - 4120, - 0.695 - ] - ], - "pM": [ - null, - 4307, - 4296, - 4279, - 4269, - 4263, - 4257, - 4241, - 4233, - 4220, - 4210, - 4206, - 4189, - 4184, - 4169, - 4164, - 4151, - 4140, - 3341, - 3357, - 3360, - 3371, - 3381, - 3389, - 3398, - 3411, - 3423, - 3432, - 3443, - 3452, - 3460, - 3471, - 3481, - 3489, - 3503, - 3511, - 3524, - 3531, - 3542 - ], - "DMI": [ - 3443 - ] - } - ], - [ - 26, - { - "n": "Crystal Palace", - "rn": "Crystal Palace", - "cn": "Crystal-Palace", - "crn": "Crystal-Palace", - "a": "CRY", - "el": 1104, - "s": { - "w": 6, - "l": 6, - "d": 5, - "pl": 17, - "GA": -4, - "GS": 15, - "GT": 19, - "p": 23 - }, - "nm": [ - [ - 4133, - 0.53 - ], - [ - 4121, - 0.606 - ] - ], - "pM": [ - null, - 4302, - 4295, - 4281, - 4270, - 4262, - 4251, - 4242, - 4235, - 4221, - 4208, - 4202, - 4189, - 4182, - 4168, - 4166, - 4156, - 4141, - 3344, - 3350, - 3360, - 3377, - 3382, - 3392, - 3405, - 3412, - 3419, - 3434, - 3442, - 3450, - 3461, - 3474, - 3482, - 3493, - 3500, - 3509, - 3520, - 3530, - 3540 - ], - "DMI": [ - 3493 - ] - } - ], - [ - 22, - { - "n": "Everton", - "rn": "Everton", - "cn": "Everton", - "crn": "Everton", - "a": "EVE", - "el": 1060, - "s": { - "w": 5, - "l": 9, - "d": 3, - "pl": 17, - "GA": -9, - "GS": 20, - "GT": 29, - "p": 18 - }, - "nm": [ - [ - 4131, - 0.477 - ], - [ - 4122, - 0.534 - ] - ], - "pM": [ - null, - 4302, - 4291, - 4278, - 4276, - 4265, - 4252, - 4246, - 4229, - 4222, - 4209, - 4203, - 4193, - 4183, - 4170, - 4167, - 4151, - 4144, - 3342, - 3349, - 3358, - 3372, - 3383, - 3395, - 3401, - 3413, - 3426, - 3433, - 3439, - 3451, - 3466, - 3471, - 3487, - 3490, - 3501, - 3512, - 3520, - 3532, - 3546 - ], - "DMI": [ - 3490 - ] - } - ], - [ - 29, - { - "n": "Leicester", - "rn": "Leicester City", - "cn": "Leicester", - "crn": "Leicester-City", - "a": "LEI", - "el": 1220, - "s": { - "w": 12, - "l": 2, - "d": 3, - "pl": 17, - "GA": 29, - "GS": 40, - "GT": 11, - "p": 39 - }, - "nm": [ - [ - 4132, - 0.392 - ], - [ - 4123, - 0.22 - ], - [ - 4123, - 0.22 - ], - [ - 4132, - 0.392 - ] - ], - "pM": [ - null, - 4305, - 4296, - 4282, - 4271, - 4260, - 4249, - 4245, - 4230, - 4223, - 4215, - 4202, - 4196, - 4181, - 4170, - 4160, - 4148, - 4142, - 3341, - 3352, - 3362, - 3372, - 3384, - 3397, - 3406, - 3414, - 3425, - 3434, - 3441, - 3455, - 3463, - 3470, - 3484, - 3491, - 3502, - 3516, - 3522, - 3534, - 3542 - ], - "DMI": [ - 3352, - 3534 - ] - } - ], - [ - 21, - { - "n": "Liverpool", - "rn": "Liverpool", - "cn": "Liverpool", - "crn": "Liverpool", - "a": "LIV", - "el": 1440, - "s": { - "w": 16, - "l": 0, - "d": 1, - "pl": 17, - "GA": 28, - "GS": 42, - "GT": 14, - "p": 49 - }, - "nm": [ - [ - 4123, - 0.78 - ], - [ - 4137, - 0.914 - ], - [ - 4123, - 0.78 - ] - ], - "pM": [ - null, - 4298, - 4293, - 4285, - 4275, - 4258, - 4257, - 4238, - 4230, - 4224, - 4211, - 4199, - 4190, - 4182, - 4171, - 4167, - 4149, - 4143, - 3347, - 3353, - 3363, - 3374, - 3378, - 3392, - 3406, - 3417, - 3422, - 3435, - 3446, - 3451, - 3464, - 3472, - 3485, - 3494, - 3503, - 3510, - 3523, - 3535, - 3543 - ], - "DMI": [ - 3417 - ] - } - ], - [ - 40, - { - "n": "Man. City", - "rn": "Manchester City", - "cn": "Man-City", - "crn": "Manchester-City", - "a": "MCI", - "el": 1296, - "s": { - "w": 11, - "l": 4, - "d": 2, - "pl": 17, - "GA": 28, - "GS": 47, - "GT": 19, - "p": 35 - }, - "nm": [ - [ - 4132, - 0.608 - ], - [ - 4132, - 0.608 - ], - [ - 4127, - 0.741 - ] - ], - "pM": [ - null, - 4299, - 4294, - 4286, - 4272, - 4264, - 4253, - 4246, - 4231, - 4221, - 4212, - 4204, - 4190, - 4184, - 4172, - 4159, - 4152, - 4138, - 3344, - 3352, - 3365, - 3374, - 3385, - 3391, - 3404, - 3415, - 3423, - 3433, - 3447, - 3448, - 3465, - 3473, - 3483, - 3492, - 3500, - 3514, - 3519, - 3534, - 3538 - ], - "DMI": [ - 3352, - 3534 - ] - } - ], - [ - 31, - { - "n": "Man. United", - "rn": "Manchester United", - "cn": "Man-United", - "crn": "Manchester-United", - "a": "MUN", - "el": 1144, - "s": { - "w": 6, - "l": 4, - "d": 7, - "pl": 17, - "GA": 6, - "GS": 26, - "GT": 20, - "p": 25 - }, - "nm": [ - [ - 4136, - 0.789 - ], - [ - 4124, - 0.587 - ] - ], - "pM": [ - null, - 4307, - 4297, - 4281, - 4268, - 4260, - 4255, - 4247, - 4237, - 4224, - 4214, - 4200, - 4197, - 4185, - 4175, - 4163, - 4152, - 4144, - 3340, - 3354, - 3364, - 3375, - 3386, - 3393, - 3403, - 3414, - 3420, - 3435, - 3442, - 3453, - 3458, - 3473, - 3486, - 3497, - 3504, - 3512, - 3524, - 3533, - 3544 - ], - "DMI": [ - 3486 - ] - } - ], - [ - 46, - { - "n": "Newcastle", - "rn": "Newcastle Utd", - "cn": "Newcastle", - "crn": "Newcastle-Utd", - "a": "NEW", - "el": 1083, - "s": { - "w": 6, - "l": 7, - "d": 4, - "pl": 17, - "GA": -7, - "GS": 17, - "GT": 24, - "p": 22 - }, - "nm": [ - [ - 4133, - 0.47 - ], - [ - 4124, - 0.413 - ] - ], - "pM": [ - null, - 4306, - 4292, - 4287, - 4273, - 4258, - 4254, - 4245, - 4237, - 4220, - 4213, - 4207, - 4191, - 4179, - 4172, - 4161, - 4153, - 4139, - 3345, - 3353, - 3367, - 3375, - 3381, - 3394, - 3404, - 3416, - 3427, - 3436, - 3444, - 3456, - 3466, - 3468, - 3478, - 3493, - 3502, - 3515, - 3518, - 3535, - 3541 - ], - "DMI": [ - 3493 - ] - } - ], - [ - 76, - { - "n": "Norwich", - "rn": "Norwich City", - "cn": "Norwich", - "crn": "Norwich-City", - "a": "NOR", - "el": 940, - "s": { - "w": 3, - "l": 11, - "d": 3, - "pl": 17, - "GA": -17, - "GS": 18, - "GT": 35, - "p": 12 - }, - "nm": [ - [ - 4118, - 0.419 - ], - [ - 4134, - 0.27 - ], - [ - 4118, - 0.419 - ] - ], - "pM": [ - null, - 4298, - 4292, - 4279, - 4274, - 4264, - 4250, - 4242, - 4232, - 4219, - 4214, - 4201, - 4192, - 4183, - 4176, - 4165, - 4154, - 4142 - ], - "DMI": [ - ] - } - ], - [ - 77, - { - "n": "Sheffield", - "rn": "Sheffield", - "cn": "Sheffield", - "crn": "Sheffield", - "a": "SHE", - "el": 1091, - "s": { - "w": 6, - "l": 4, - "d": 7, - "pl": 17, - "GA": 5, - "GS": 21, - "GT": 16, - "p": 25 - }, - "nm": [ - [ - 4130, - 0.554 - ], - [ - 4130, - 0.554 - ], - [ - 4125, - 0.734 - ] - ], - "pM": [ - null, - 4300, - 4295, - 4282, - 4269, - 4261, - 4252, - 4238, - 4234, - 4225, - 4217, - 4205, - 4194, - 4185, - 4174, - 4161, - 4154, - 4145 - ], - "DMI": [ - ] - } - ], - [ - 35, - { - "n": "Southampton", - "rn": "Southampton", - "cn": "Southampton", - "crn": "Southampton", - "a": "SOU", - "el": 957, - "s": { - "w": 4, - "l": 10, - "d": 3, - "pl": 17, - "GA": -18, - "GS": 18, - "GT": 36, - "p": 15 - }, - "nm": [ - [ - 4128, - 0.443 - ], - [ - 4120, - 0.305 - ] - ], - "pM": [ - null, - 4301, - 4293, - 4280, - 4268, - 4261, - 4248, - 4243, - 4233, - 4227, - 4215, - 4204, - 4193, - 4178, - 4177, - 4165, - 4153, - 4146, - 3343, - 3355, - 3365, - 3371, - 3384, - 3395, - 3405, - 3409, - 3424, - 3429, - 3445, - 3453, - 3467, - 3475, - 3479, - 3494, - 3505, - 3515, - 3525, - 3536, - 3545 - ], - "DMI": [ - ] - } - ], - [ - 24, - { - "n": "Tottenham", - "rn": "Tottenham", - "cn": "Tottenham", - "crn": "Tottenham", - "a": "TOT", - "el": 1122, - "s": { - "w": 7, - "l": 5, - "d": 5, - "pl": 17, - "GA": 8, - "GS": 32, - "GT": 24, - "p": 26 - }, - "nm": [ - [ - 4126, - 0.598 - ], - [ - 4135, - 0.532 - ] - ], - "pM": [ - null, - 4304, - 4294, - 4287, - 4277, - 4262, - 4249, - 4243, - 4228, - 4226, - 4211, - 4203, - 4194, - 4187, - 4173, - 4163, - 4155, - 4147, - 3342, - 3356, - 3366, - 3370, - 3386, - 3390, - 3407, - 3416, - 3425, - 3430, - 3443, - 3454, - 3467, - 3474, - 3485, - 3495, - 3506, - 3514, - 3526, - 3528, - 3546 - ], - "DMI": [ - 3443 - ] - } - ], - [ - 33, - { - "n": "Watford", - "rn": "Watford", - "cn": "Watford", - "crn": "Watford", - "a": "WAT", - "el": 915, - "s": { - "w": 1, - "l": 10, - "d": 6, - "pl": 17, - "GA": -23, - "GS": 9, - "GT": 32, - "p": 9 - }, - "nm": [ - [ - 4136, - 0.211 - ], - [ - 4125, - 0.266 - ] - ], - "pM": [ - null, - 4303, - 4291, - 4283, - 4273, - 4266, - 4253, - 4244, - 4234, - 4226, - 4216, - 4206, - 4192, - 4186, - 4177, - 4160, - 4156, - 4143, - 3346, - 3357, - 3367, - 3368, - 3382, - 3396, - 3407, - 3408, - 3426, - 3431, - 3446, - 3455, - 3465, - 3475, - 3486, - 3496, - 3507, - 3513, - 3527, - 3531, - 3547 - ], - "DMI": [ - 3486 - ] - } - ], - [ - 28, - { - "n": "West Ham", - "rn": "West Ham Utd", - "cn": "West-Ham", - "crn": "West-Ham-Utd", - "a": "WHU", - "el": 1029, - "s": { - "w": 5, - "l": 8, - "d": 4, - "pl": 17, - "GA": -9, - "GS": 19, - "GT": 28, - "p": 19 - }, - "nm": [ - [ - 4121, - 0.394 - ], - [ - 4137, - 0.086 - ] - ], - "pM": [ - null, - 4299, - 4290, - 4283, - 4274, - 4267, - 4255, - 4240, - 4235, - 4222, - 4217, - 4207, - 4188, - 4187, - 4169, - 4162, - 4157, - 4146, - 3346, - 3355, - 3359, - 3376, - 3387, - 3388, - 3402, - 3417, - 3419, - 3437, - 3447, - 3456, - 3459, - 3476, - 3487, - 3489, - 3504, - 3516, - 3526, - 3536, - 3547 - ], - "DMI": [ - 3417 - ] - } - ], - [ - 69, - { - "n": "Wolverhampton", - "rn": "Wolverhampton Wanderers", - "cn": "Wolverhampton", - "crn": "Wolverhampton-Wanderers", - "a": "WOL", - "el": 1113, - "s": { - "w": 5, - "l": 3, - "d": 9, - "pl": 17, - "GA": 3, - "GS": 24, - "GT": 21, - "p": 24 - }, - "nm": [ - [ - 4127, - 0.259 - ], - [ - 4134, - 0.73 - ] - ], - "pM": [ - null, - 4305, - 4297, - 4284, - 4276, - 4263, - 4251, - 4244, - 4231, - 4227, - 4213, - 4198, - 4195, - 4180, - 4174, - 4162, - 4150, - 4147, - 3347, - 3351, - 3366, - 3377, - 3385, - 3397, - 3402, - 3413, - 3427, - 3428, - 3440, - 3457, - 3460, - 3477, - 3480, - 3497, - 3505, - 3517, - 3527, - 3537, - 3543 - ], - "DMI": [ - ] - } - ] - ], - "nc": 20, - "op": [ - [ - 71, - { - "n": "Fulham" - } - ], - [ - 70, - { - "n": "Cardiff" - } - ], - [ - 44, - { - "n": "Huddersfield" - } - ], - [ - 12, - { - "n": "Lille" - } - ], - [ - 10, - { - "n": "Toulouse" - } - ], - [ - 5, - { - "n": "Caen" - } - ], - [ - 42, - { - "n": "Amiens" - } - ], - [ - 9, - { - "n": "Marseille" - } - ], - [ - 19, - { - "n": "Nice" - } - ], - [ - 14, - { - "n": "Guingamp" - } - ], - [ - 15, - { - "n": "Montpellier" - } - ], - [ - 41, - { - "n": "Strasbourg" - } - ], - [ - 7, - { - "n": "Dijon" - } - ], - [ - 4, - { - "n": "Saint-Étienne" - } - ], - [ - 13, - { - "n": "Monaco" - } - ], - [ - 8, - { - "n": "Nantes" - } - ], - [ - 68, - { - "n": "Reims" - } - ], - [ - 2, - { - "n": "Paris" - } - ], - [ - 67, - { - "n": "Nîmes" - } - ], - [ - 18, - { - "n": "Lyon" - } - ], - [ - 3, - { - "n": "Bordeaux" - } - ], - [ - 16, - { - "n": "Angers" - } - ], - [ - 20, - { - "n": "Rennes" - } - ], - [ - 62, - { - "n": "Real Madrid" - } - ], - [ - 52, - { - "n": "Real Sociedad" - } - ], - [ - 60, - { - "n": "Betis" - } - ], - [ - 55, - { - "n": "Sevilla" - } - ], - [ - 48, - { - "n": "Alavés" - } - ], - [ - 54, - { - "n": "Atlético" - } - ], - [ - 53, - { - "n": "Girona" - } - ], - [ - 74, - { - "n": "Valladolid" - } - ], - [ - 51, - { - "n": "Celta" - } - ], - [ - 73, - { - "n": "Huesca" - } - ], - [ - 72, - { - "n": "Rayo" - } - ], - [ - 63, - { - "n": "Levante" - } - ], - [ - 59, - { - "n": "Barcelona" - } - ], - [ - 66, - { - "n": "Eibar" - } - ], - [ - 56, - { - "n": "Espanyol" - } - ], - [ - 49, - { - "n": "Valencia" - } - ], - [ - 58, - { - "n": "Getafe" - } - ], - [ - 47, - { - "n": "Leganés" - } - ], - [ - 64, - { - "n": "Villarreal" - } - ], - [ - 57, - { - "n": "Bilbao" - } - ] - ], - "Ne": [ - [ - 4131, - { - "d": 18, - "dB": 1576931400, - "t1": 22, - "t2": 39 - } - ], - [ - 4119, - { - "d": 19, - "dB": 1577372400, - "t1": 36, - "t2": 39, - "o": { - "h": 3.25, - "d": 3.55, - "a": 1.86 - } - } - ], - [ - 4128, - { - "d": 18, - "dB": 1576940400, - "t1": 78, - "t2": 35, - "o": { - "h": 2.18, - "d": 3.35, - "a": 2.72 - } - } - ], - [ - 4118, - { - "d": 19, - "dB": 1577372400, - "t1": 78, - "t2": 76, - "o": { - "h": 1.84, - "d": 3.6, - "a": 3.25 - } - } - ], - [ - 4129, - { - "d": 18, - "dB": 1576940400, - "t1": 36, - "t2": 23, - "o": { - "h": 2.1, - "d": 3.2, - "a": 2.95 - } - } - ], - [ - 4130, - { - "d": 18, - "dB": 1576940400, - "t1": 45, - "t2": 77 - } - ], - [ - 4126, - { - "d": 19, - "dB": 1577363400, - "t1": 24, - "t2": 45 - } - ], - [ - 4122, - { - "d": 19, - "dB": 1577372400, - "t1": 22, - "t2": 23 - } - ], - [ - 4135, - { - "d": 18, - "dB": 1577032200, - "t1": 24, - "t2": 25, - "o": { - "h": 2.28, - "d": 3.4, - "a": 2.55 - } - } - ], - [ - 4120, - { - "d": 19, - "dB": 1577372400, - "t1": 25, - "t2": 35, - "o": { - "h": 1.29, - "d": 4.8, - "a": 7.1 - } - } - ], - [ - 4133, - { - "d": 18, - "dB": 1576940400, - "t1": 46, - "t2": 26, - "o": { - "h": 2.43, - "d": 2.9, - "a": 2.72 - } - } - ], - [ - 4121, - { - "d": 19, - "dB": 1577372400, - "t1": 26, - "t2": 28, - "o": { - "h": 1.97, - "d": 3.3, - "a": 3.2 - } - } - ], - [ - 4132, - { - "d": 18, - "dB": 1576949400, - "t1": 40, - "t2": 29, - "o": { - "h": 1.33, - "d": 4.65, - "a": 6.35 - } - } - ], - [ - 4123, - { - "d": 19, - "dB": 1577390400, - "t1": 29, - "t2": 21, - "o": { - "h": 2.95, - "d": 3.4, - "a": 2.05 - } - } - ], - [ - 4137, - { - "d": 18, - "dB": 1576940400, - "t1": 28, - "t2": 21 - } - ], - [ - 4127, - { - "d": 19, - "dB": 1577475900, - "t1": 69, - "t2": 40, - "o": { - "h": 6.6, - "d": 4.35, - "a": 1.34 - } - } - ], - [ - 4136, - { - "d": 18, - "dB": 1577023200, - "t1": 33, - "t2": 31, - "o": { - "h": 3.95, - "d": 3.5, - "a": 1.7 - } - } - ], - [ - 4124, - { - "d": 19, - "dB": 1577381400, - "t1": 31, - "t2": 46, - "o": { - "h": 1.34, - "d": 4.35, - "a": 6.75 - } - } - ], - [ - 4134, - { - "d": 18, - "dB": 1576940400, - "t1": 76, - "t2": 69, - "o": { - "h": 3.45, - "d": 3.45, - "a": 1.83 - } - } - ], - [ - 4125, - { - "d": 19, - "dB": 1577372400, - "t1": 77, - "t2": 33, - "o": { - "h": 1.8, - "d": 3.2, - "a": 3.85 - } - } - ] - ], - "e": [ - [ - 3339, - { - "d": 18, - "dB": 1545481800, - "t1s": 3, - "t2s": 1, - "t1": 39, - "t2": 23 - } - ], - [ - 3348, - { - "d": 19, - "dB": 1545844500, - "t1s": 1, - "t2s": 1, - "t1": 45, - "t2": 39 - } - ], - [ - 3363, - { - "d": 20, - "dB": 1546102800, - "t1s": 5, - "t2s": 1, - "t1": 21, - "t2": 39 - } - ], - [ - 3369, - { - "d": 21, - "dB": 1546362000, - "t1s": 4, - "t2s": 1, - "t1": 39, - "t2": 71 - } - ], - [ - 3387, - { - "d": 22, - "dB": 1547296200, - "t1s": 1, - "t2s": 0, - "t1": 28, - "t2": 39 - } - ], - [ - 3389, - { - "d": 23, - "dB": 1547919000, - "t1s": 2, - "t2s": 0, - "t1": 39, - "t2": 25 - } - ], - [ - 3399, - { - "d": 24, - "dB": 1548791100, - "t1s": 2, - "t2s": 1, - "t1": 39, - "t2": 70 - } - ], - [ - 3415, - { - "d": 25, - "dB": 1549211400, - "t1s": 3, - "t2s": 1, - "t1": 40, - "t2": 39 - } - ], - [ - 3421, - { - "d": 26, - "dB": 1549724400, - "t1s": 1, - "t2s": 2, - "t1": 44, - "t2": 39 - } - ], - [ - 3429, - { - "d": 27, - "dB": 1551017100, - "t1s": 2, - "t2s": 0, - "t1": 39, - "t2": 35 - } - ], - [ - 3438, - { - "d": 28, - "dB": 1551296700, - "t1s": 5, - "t2s": 1, - "t1": 39, - "t2": 36 - } - ], - [ - 3454, - { - "d": 29, - "dB": 1551529800, - "t1s": 1, - "t2s": 1, - "t1": 24, - "t2": 39 - } - ], - [ - 3458, - { - "d": 30, - "dB": 1552235400, - "t1s": 2, - "t2s": 0, - "t1": 39, - "t2": 31 - } - ], - [ - 3477, - { - "d": 31, - "dB": 1556131500, - "t1s": 3, - "t2s": 1, - "t1": 69, - "t2": 39 - } - ], - [ - 3478, - { - "d": 32, - "dB": 1554145200, - "t1s": 2, - "t2s": 0, - "t1": 39, - "t2": 46 - } - ], - [ - 3490, - { - "d": 33, - "dB": 1554642300, - "t1s": 1, - "t2s": 0, - "t1": 22, - "t2": 39 - } - ], - [ - 3509, - { - "d": 35, - "dB": 1555858800, - "t1s": 2, - "t2s": 3, - "t1": 39, - "t2": 26 - } - ], - [ - 3522, - { - "d": 36, - "dB": 1556449200, - "t1s": 3, - "t2s": 0, - "t1": 29, - "t2": 39 - } - ], - [ - 3529, - { - "d": 37, - "dB": 1557070200, - "t1s": 1, - "t2s": 1, - "t1": 39, - "t2": 45 - } - ], - [ - 4158, - { - "d": 15, - "dB": 1575576900, - "t1s": 1, - "t2s": 2, - "t1": 39, - "t2": 45 - } - ], - [ - 4176, - { - "d": 14, - "dB": 1575208800, - "t1s": 2, - "t2s": 2, - "t1": 76, - "t2": 39 - } - ], - [ - 4178, - { - "d": 13, - "dB": 1574521200, - "t1s": 2, - "t2s": 2, - "t1": 39, - "t2": 35 - } - ], - [ - 4196, - { - "d": 12, - "dB": 1573320600, - "t1s": 2, - "t2s": 0, - "t1": 29, - "t2": 39 - } - ], - [ - 4198, - { - "d": 11, - "dB": 1572706800, - "t1s": 1, - "t2s": 1, - "t1": 39, - "t2": 69 - } - ], - [ - 4208, - { - "d": 10, - "dB": 1572193800, - "t1s": 2, - "t2s": 2, - "t1": 39, - "t2": 26 - } - ], - [ - 4225, - { - "d": 9, - "dB": 1571684400, - "t1s": 1, - "t2s": 0, - "t1": 77, - "t2": 39 - } - ], - [ - 4277, - { - "d": 4, - "dB": 1567351800, - "t1s": 2, - "t2s": 2, - "t1": 39, - "t2": 24 - } - ], - [ - 4285, - { - "d": 3, - "dB": 1566664200, - "t1s": 3, - "t2s": 1, - "t1": 21, - "t2": 39 - } - ], - [ - 4288, - { - "d": 2, - "dB": 1566041400, - "t1s": 2, - "t2s": 1, - "t1": 39, - "t2": 23 - } - ], - [ - 2914, - { - "d": 19, - "dB": 1545508800, - "t1s": 1, - "t2s": 2, - "t1": 12, - "t2": 10 - } - ], - [ - 2923, - { - "d": 20, - "dB": 1547229600, - "t1s": 1, - "t2s": 3, - "t1": 5, - "t2": 12 - } - ], - [ - 2935, - { - "d": 21, - "dB": 1547840700, - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 42 - } - ], - [ - 2945, - { - "d": 22, - "dB": 1548445500, - "t1s": 1, - "t2s": 2, - "t1": 9, - "t2": 12 - } - ], - [ - 2955, - { - "d": 23, - "dB": 1549050300, - "t1s": 4, - "t2s": 0, - "t1": 12, - "t2": 19 - } - ], - [ - 2964, - { - "d": 24, - "dB": 1549814400, - "t1s": 0, - "t2s": 2, - "t1": 14, - "t2": 12 - } - ], - [ - 2975, - { - "d": 25, - "dB": 1550412000, - "t1s": 0, - "t2s": 0, - "t1": 12, - "t2": 15 - } - ], - [ - 2990, - { - "d": 26, - "dB": 1550864700, - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 12 - } - ], - [ - 2996, - { - "d": 27, - "dB": 1551621600, - "t1s": 1, - "t2s": 0, - "t1": 12, - "t2": 7 - } - ], - [ - 3009, - { - "d": 28, - "dB": 1552226400, - "t1s": 0, - "t2s": 1, - "t1": 4, - "t2": 12 - } - ], - [ - 3016, - { - "d": 29, - "dB": 1552679100, - "t1s": 0, - "t2s": 1, - "t1": 12, - "t2": 13 - } - ], - [ - 3027, - { - "d": 30, - "dB": 1554044400, - "t1s": 2, - "t2s": 3, - "t1": 8, - "t2": 12 - } - ], - [ - 3040, - { - "d": 31, - "dB": 1554642000, - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 12 - } - ], - [ - 3044, - { - "d": 32, - "dB": 1555268400, - "t1s": 5, - "t2s": 1, - "t1": 12, - "t2": 2 - } - ], - [ - 3061, - { - "d": 33, - "dB": 1555851600, - "t1s": 0, - "t2s": 0, - "t1": 10, - "t2": 12 - } - ], - [ - 3066, - { - "d": 34, - "dB": 1556456400, - "t1s": 5, - "t2s": 0, - "t1": 12, - "t2": 67 - } - ], - [ - 3074, - { - "d": 35, - "dB": 1557082800, - "t1s": 2, - "t2s": 2, - "t1": 18, - "t2": 12 - } - ], - [ - 3086, - { - "d": 36, - "dB": 1557673200, - "t1s": 1, - "t2s": 0, - "t1": 12, - "t2": 3 - } - ], - [ - 3094, - { - "d": 37, - "dB": 1558206000, - "t1s": 5, - "t2s": 0, - "t1": 12, - "t2": 16 - } - ], - [ - 3111, - { - "d": 38, - "dB": 1558724700, - "t1s": 3, - "t2s": 1, - "t1": 20, - "t2": 12 - } - ], - [ - 4138, - { - "d": 17, - "dB": 1576427400, - "t1s": 0, - "t2s": 3, - "t1": 39, - "t2": 40 - } - ], - [ - 4157, - { - "d": 16, - "dB": 1575921600, - "t1s": 1, - "t2s": 3, - "t1": 28, - "t2": 39 - } - ], - [ - 4236, - { - "d": 8, - "dB": 1570366800, - "t1s": 1, - "t2s": 0, - "t1": 39, - "t2": 36 - } - ], - [ - 4247, - { - "d": 7, - "dB": 1569870000, - "t1s": 1, - "t2s": 1, - "t1": 31, - "t2": 39 - } - ], - [ - 4256, - { - "d": 6, - "dB": 1569166200, - "t1s": 3, - "t2s": 2, - "t1": 39, - "t2": 78 - } - ], - [ - 4266, - { - "d": 5, - "dB": 1568561400, - "t1s": 2, - "t2s": 2, - "t1": 33, - "t2": 39 - } - ], - [ - 4306, - { - "d": 1, - "dB": 1565528400, - "t1s": 0, - "t2s": 1, - "t1": 46, - "t2": 39 - } - ], - [ - 3507, - { - "d": 34, - "dB": 1555354800, - "t1s": 0, - "t2s": 1, - "t1": 33, - "t2": 39 - } - ], - [ - 3539, - { - "d": 38, - "dB": 1557669600, - "t1s": 1, - "t2s": 3, - "t1": 23, - "t2": 39 - } - ], - [ - 3341, - { - "d": 18, - "dB": 1545490800, - "t1s": 0, - "t2s": 1, - "t1": 25, - "t2": 29 - } - ], - [ - 3357, - { - "d": 19, - "dB": 1545852600, - "t1s": 1, - "t2s": 2, - "t1": 33, - "t2": 25 - } - ], - [ - 3360, - { - "d": 20, - "dB": 1546171200, - "t1s": 0, - "t2s": 1, - "t1": 26, - "t2": 25 - } - ], - [ - 3371, - { - "d": 21, - "dB": 1546458300, - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 35 - } - ], - [ - 3381, - { - "d": 22, - "dB": 1547314200, - "t1s": 2, - "t2s": 1, - "t1": 25, - "t2": 46 - } - ], - [ - 3398, - { - "d": 24, - "dB": 1548877500, - "t1s": 4, - "t2s": 0, - "t1": 36, - "t2": 25 - } - ], - [ - 3411, - { - "d": 25, - "dB": 1549119600, - "t1s": 5, - "t2s": 0, - "t1": 25, - "t2": 44 - } - ], - [ - 3423, - { - "d": 26, - "dB": 1549814400, - "t1s": 6, - "t2s": 0, - "t1": 40, - "t2": 25 - } - ], - [ - 3432, - { - "d": 27, - "dB": 1554317100, - "t1s": 3, - "t2s": 0, - "t1": 25, - "t2": 45 - } - ], - [ - 3443, - { - "d": 28, - "dB": 1551297600, - "t1s": 2, - "t2s": 0, - "t1": 25, - "t2": 24 - } - ], - [ - 3460, - { - "d": 30, - "dB": 1552226700, - "t1s": 1, - "t2s": 1, - "t1": 25, - "t2": 69 - } - ], - [ - 3471, - { - "d": 31, - "dB": 1552840200, - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 25 - } - ], - [ - 3481, - { - "d": 32, - "dB": 1554037500, - "t1s": 1, - "t2s": 2, - "t1": 70, - "t2": 25 - } - ], - [ - 3489, - { - "d": 33, - "dB": 1554750000, - "t1s": 2, - "t2s": 0, - "t1": 25, - "t2": 28 - } - ], - [ - 3503, - { - "d": 34, - "dB": 1555255800, - "t1s": 2, - "t2s": 0, - "t1": 21, - "t2": 25 - } - ], - [ - 3511, - { - "d": 35, - "dB": 1555959600, - "t1s": 2, - "t2s": 2, - "t1": 25, - "t2": 23 - } - ], - [ - 3524, - { - "d": 36, - "dB": 1556465400, - "t1s": 1, - "t2s": 1, - "t1": 31, - "t2": 25 - } - ], - [ - 3531, - { - "d": 37, - "dB": 1557061200, - "t1s": 3, - "t2s": 0, - "t1": 25, - "t2": 33 - } - ], - [ - 3542, - { - "d": 38, - "dB": 1557669600, - "t1s": 0, - "t2s": 0, - "t1": 29, - "t2": 25 - } - ], - [ - 3345, - { - "d": 18, - "dB": 1545490800, - "t1s": 0, - "t2s": 0, - "t1": 46, - "t2": 71 - } - ], - [ - 3351, - { - "d": 19, - "dB": 1545827400, - "t1s": 1, - "t2s": 1, - "t1": 71, - "t2": 69 - } - ], - [ - 3361, - { - "d": 20, - "dB": 1546102800, - "t1s": 1, - "t2s": 0, - "t1": 71, - "t2": 44 - } - ], - [ - 3379, - { - "d": 22, - "dB": 1547305200, - "t1s": 2, - "t2s": 1, - "t1": 23, - "t2": 71 - } - ], - [ - 3390, - { - "d": 23, - "dB": 1548000000, - "t1s": 1, - "t2s": 2, - "t1": 71, - "t2": 24 - } - ], - [ - 3400, - { - "d": 24, - "dB": 1548791100, - "t1s": 4, - "t2s": 2, - "t1": 71, - "t2": 45 - } - ], - [ - 3412, - { - "d": 25, - "dB": 1549119600, - "t1s": 2, - "t2s": 0, - "t1": 26, - "t2": 71 - } - ], - [ - 3420, - { - "d": 26, - "dB": 1549715400, - "t1s": 0, - "t2s": 3, - "t1": 71, - "t2": 31 - } - ], - [ - 3437, - { - "d": 27, - "dB": 1550864700, - "t1s": 3, - "t2s": 1, - "t1": 28, - "t2": 71 - } - ], - [ - 3445, - { - "d": 28, - "dB": 1551296700, - "t1s": 2, - "t2s": 0, - "t1": 35, - "t2": 71 - } - ], - [ - 3452, - { - "d": 29, - "dB": 1551621900, - "t1s": 1, - "t2s": 2, - "t1": 71, - "t2": 25 - } - ], - [ - 3463, - { - "d": 30, - "dB": 1552143600, - "t1s": 3, - "t2s": 1, - "t1": 29, - "t2": 71 - } - ], - [ - 3472, - { - "d": 31, - "dB": 1552832100, - "t1s": 1, - "t2s": 2, - "t1": 71, - "t2": 21 - } - ], - [ - 3483, - { - "d": 32, - "dB": 1553949000, - "t1s": 0, - "t2s": 2, - "t1": 71, - "t2": 40 - } - ], - [ - 3496, - { - "d": 33, - "dB": 1554230700, - "t1s": 4, - "t2s": 1, - "t1": 33, - "t2": 71 - } - ], - [ - 3501, - { - "d": 34, - "dB": 1555164000, - "t1s": 2, - "t2s": 0, - "t1": 71, - "t2": 22 - } - ], - [ - 3508, - { - "d": 35, - "dB": 1555768800, - "t1s": 0, - "t2s": 1, - "t1": 36, - "t2": 71 - } - ], - [ - 3521, - { - "d": 36, - "dB": 1556373600, - "t1s": 1, - "t2s": 0, - "t1": 71, - "t2": 70 - } - ], - [ - 3537, - { - "d": 37, - "dB": 1556978400, - "t1s": 1, - "t2s": 0, - "t1": 69, - "t2": 71 - } - ], - [ - 3541, - { - "d": 38, - "dB": 1557669600, - "t1s": 0, - "t2s": 4, - "t1": 71, - "t2": 46 - } - ], - [ - 2145, - { - "d": 18, - "dB": 1546795800, - "t1s": 0, - "t2s": 2, - "t1": 62, - "t2": 52 - } - ], - [ - 2155, - { - "d": 19, - "dB": 1547408700, - "t1s": 1, - "t2s": 2, - "t1": 60, - "t2": 62 - } - ], - [ - 2168, - { - "d": 20, - "dB": 1547910900, - "t1s": 2, - "t2s": 0, - "t1": 62, - "t2": 55 - } - ], - [ - 2186, - { - "d": 22, - "dB": 1549223100, - "t1s": 3, - "t2s": 0, - "t1": 62, - "t2": 48 - } - ], - [ - 2192, - { - "d": 23, - "dB": 1549725300, - "t1s": 1, - "t2s": 3, - "t1": 54, - "t2": 62 - } - ], - [ - 2209, - { - "d": 24, - "dB": 1550401200, - "t1s": 1, - "t2s": 2, - "t1": 62, - "t2": 53 - } - ], - [ - 2240, - { - "d": 27, - "dB": 1552247100, - "t1s": 1, - "t2s": 4, - "t1": 74, - "t2": 62 - } - ], - [ - 2247, - { - "d": 28, - "dB": 1552749300, - "t1s": 2, - "t2s": 0, - "t1": 62, - "t2": 51 - } - ], - [ - 2260, - { - "d": 29, - "dB": 1554057900, - "t1s": 3, - "t2s": 2, - "t1": 62, - "t2": 73 - } - ], - [ - 2316, - { - "d": 35, - "dB": 1556477100, - "t1s": 1, - "t2s": 0, - "t1": 72, - "t2": 62 - } - ], - [ - 4145, - { - "d": 17, - "dB": 1576335600, - "t1s": 2, - "t2s": 0, - "t1": 77, - "t2": 78 - } - ], - [ - 4148, - { - "d": 16, - "dB": 1575813600, - "t1s": 1, - "t2s": 4, - "t1": 78, - "t2": 29 - } - ], - [ - 4175, - { - "d": 14, - "dB": 1575217800, - "t1s": 2, - "t2s": 2, - "t1": 31, - "t2": 78 - } - ], - [ - 4179, - { - "d": 13, - "dB": 1574712000, - "t1s": 2, - "t2s": 0, - "t1": 78, - "t2": 46 - } - ], - [ - 4195, - { - "d": 12, - "dB": 1573394400, - "t1s": 2, - "t2s": 1, - "t1": 69, - "t2": 78 - } - ], - [ - 4199, - { - "d": 11, - "dB": 1572706800, - "t1s": 1, - "t2s": 2, - "t1": 78, - "t2": 21 - } - ], - [ - 4212, - { - "d": 10, - "dB": 1572089400, - "t1s": 3, - "t2s": 0, - "t1": 40, - "t2": 78 - } - ], - [ - 4218, - { - "d": 9, - "dB": 1571493600, - "t1s": 2, - "t2s": 1, - "t1": 78, - "t2": 45 - } - ], - [ - 4232, - { - "d": 8, - "dB": 1570284000, - "t1s": 1, - "t2s": 5, - "t1": 76, - "t2": 78 - } - ], - [ - 4239, - { - "d": 7, - "dB": 1569679200, - "t1s": 2, - "t2s": 2, - "t1": 78, - "t2": 23 - } - ], - [ - 4267, - { - "d": 5, - "dB": 1568660400, - "t1s": 0, - "t2s": 0, - "t1": 78, - "t2": 28 - } - ], - [ - 4278, - { - "d": 3, - "dB": 1566586800, - "t1s": 2, - "t2s": 0, - "t1": 78, - "t2": 22 - } - ], - [ - 4289, - { - "d": 2, - "dB": 1566050400, - "t1s": 1, - "t2s": 2, - "t1": 78, - "t2": 36 - } - ], - [ - 4304, - { - "d": 1, - "dB": 1565454600, - "t1s": 3, - "t2s": 1, - "t1": 24, - "t2": 78 - } - ], - [ - 2903, - { - "d": 18, - "dB": 1545157800, - "t1s": 2, - "t2s": 1, - "t1": 5, - "t2": 10 - } - ], - [ - 2918, - { - "d": 19, - "dB": 1545508800, - "t1s": 2, - "t2s": 2, - "t1": 68, - "t2": 5 - } - ], - [ - 2934, - { - "d": 21, - "dB": 1548000000, - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 9 - } - ], - [ - 2954, - { - "d": 23, - "dB": 1550082600, - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 8 - } - ], - [ - 2962, - { - "d": 24, - "dB": 1549738800, - "t1s": 1, - "t2s": 0, - "t1": 42, - "t2": 5 - } - ], - [ - 2974, - { - "d": 25, - "dB": 1550412000, - "t1s": 0, - "t2s": 0, - "t1": 5, - "t2": 41 - } - ], - [ - 2991, - { - "d": 26, - "dB": 1551016800, - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 5 - } - ], - [ - 2994, - { - "d": 27, - "dB": 1551542400, - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 2 - } - ], - [ - 3014, - { - "d": 29, - "dB": 1552762800, - "t1s": 0, - "t2s": 5, - "t1": 5, - "t2": 4 - } - ], - [ - 3025, - { - "d": 30, - "dB": 1554037200, - "t1s": 0, - "t2s": 1, - "t1": 13, - "t2": 5 - } - ], - [ - 3038, - { - "d": 31, - "dB": 1554573600, - "t1s": 2, - "t2s": 0, - "t1": 67, - "t2": 5 - } - ], - [ - 3042, - { - "d": 32, - "dB": 1555178400, - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 16 - } - ], - [ - 3056, - { - "d": 33, - "dB": 1555783200, - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 5 - } - ], - [ - 3065, - { - "d": 34, - "dB": 1556456400, - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 7 - } - ], - [ - 3073, - { - "d": 35, - "dB": 1556992800, - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 5 - } - ], - [ - 3084, - { - "d": 36, - "dB": 1557597600, - "t1s": 3, - "t2s": 2, - "t1": 5, - "t2": 68 - } - ], - [ - 3095, - { - "d": 37, - "dB": 1558206000, - "t1s": 4, - "t2s": 0, - "t1": 18, - "t2": 5 - } - ], - [ - 3104, - { - "d": 38, - "dB": 1558724700, - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 3 - } - ], - [ - 4270, - { - "d": 4, - "dB": 1567260000, - "t1s": 1, - "t2s": 0, - "t1": 26, - "t2": 78 - } - ], - [ - 3359, - { - "d": 20, - "dB": 1546179300, - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 28 - } - ], - [ - 3373, - { - "d": 21, - "dB": 1546458300, - "t1s": 1, - "t2s": 2, - "t1": 44, - "t2": 23 - } - ], - [ - 3396, - { - "d": 23, - "dB": 1547910000, - "t1s": 0, - "t2s": 0, - "t1": 33, - "t2": 23 - } - ], - [ - 3403, - { - "d": 24, - "dB": 1548792000, - "t1s": 2, - "t2s": 2, - "t1": 31, - "t2": 23 - } - ], - [ - 3409, - { - "d": 25, - "dB": 1549119600, - "t1s": 1, - "t2s": 1, - "t1": 23, - "t2": 35 - } - ], - [ - 3418, - { - "d": 26, - "dB": 1549733400, - "t1s": 1, - "t2s": 3, - "t1": 45, - "t2": 23 - } - ], - [ - 3430, - { - "d": 27, - "dB": 1550925000, - "t1s": 2, - "t2s": 1, - "t1": 23, - "t2": 24 - } - ], - [ - 3444, - { - "d": 28, - "dB": 1551211200, - "t1s": 2, - "t2s": 0, - "t1": 46, - "t2": 23 - } - ], - [ - 3450, - { - "d": 29, - "dB": 1551538800, - "t1s": 1, - "t2s": 3, - "t1": 23, - "t2": 26 - } - ], - [ - 3464, - { - "d": 30, - "dB": 1552219200, - "t1s": 4, - "t2s": 2, - "t1": 21, - "t2": 23 - } - ], - [ - 3470, - { - "d": 31, - "dB": 1552748400, - "t1s": 1, - "t2s": 2, - "t1": 23, - "t2": 29 - } - ], - [ - 3480, - { - "d": 32, - "dB": 1553958000, - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 69 - } - ], - [ - 3488, - { - "d": 33, - "dB": 1554559200, - "t1s": 1, - "t2s": 3, - "t1": 36, - "t2": 23 - } - ], - [ - 3499, - { - "d": 34, - "dB": 1555164000, - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 70 - } - ], - [ - 3519, - { - "d": 36, - "dB": 1556456700, - "t1s": 0, - "t2s": 1, - "t1": 23, - "t2": 40 - } - ], - [ - 3532, - { - "d": 37, - "dB": 1556910000, - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 23 - } - ], - [ - 4164, - { - "d": 15, - "dB": 1575487800, - "t1s": 2, - "t2s": 1, - "t1": 25, - "t2": 78 - } - ], - [ - 3343, - { - "d": 18, - "dB": 1545490800, - "t1s": 1, - "t2s": 3, - "t1": 44, - "t2": 35 - } - ], - [ - 3355, - { - "d": 19, - "dB": 1545939900, - "t1s": 1, - "t2s": 2, - "t1": 35, - "t2": 28 - } - ], - [ - 3365, - { - "d": 20, - "dB": 1546179300, - "t1s": 1, - "t2s": 3, - "t1": 35, - "t2": 40 - } - ], - [ - 3384, - { - "d": 22, - "dB": 1547305200, - "t1s": 1, - "t2s": 2, - "t1": 29, - "t2": 35 - } - ], - [ - 3395, - { - "d": 23, - "dB": 1547910000, - "t1s": 2, - "t2s": 1, - "t1": 35, - "t2": 22 - } - ], - [ - 3405, - { - "d": 24, - "dB": 1548877500, - "t1s": 1, - "t2s": 1, - "t1": 35, - "t2": 26 - } - ], - [ - 3525, - { - "d": 36, - "dB": 1556373600, - "t1s": 3, - "t2s": 3, - "t1": 35, - "t2": 36 - } - ], - [ - 3545, - { - "d": 38, - "dB": 1557669600, - "t1s": 1, - "t2s": 1, - "t1": 35, - "t2": 44 - } - ], - [ - 3364, - { - "d": 20, - "dB": 1546187400, - "t1s": 4, - "t2s": 1, - "t1": 31, - "t2": 36 - } - ], - [ - 2150, - { - "d": 18, - "dB": 1546624800, - "t1s": 2, - "t2s": 2, - "t1": 63, - "t2": 53 - } - ], - [ - 2157, - { - "d": 19, - "dB": 1547314200, - "t1s": 1, - "t2s": 1, - "t1": 53, - "t2": 48 - } - ], - [ - 2163, - { - "d": 20, - "dB": 1547982000, - "t1s": 3, - "t2s": 2, - "t1": 60, - "t2": 53 - } - ], - [ - 2177, - { - "d": 21, - "dB": 1548602100, - "t1s": 0, - "t2s": 2, - "t1": 53, - "t2": 59 - } - ], - [ - 2184, - { - "d": 22, - "dB": 1549215000, - "t1s": 3, - "t2s": 0, - "t1": 66, - "t2": 53 - } - ], - [ - 2217, - { - "d": 25, - "dB": 1551124800, - "t1s": 0, - "t2s": 0, - "t1": 53, - "t2": 52 - } - ], - [ - 2231, - { - "d": 26, - "dB": 1551470400, - "t1s": 0, - "t2s": 2, - "t1": 72, - "t2": 53 - } - ], - [ - 2263, - { - "d": 30, - "dB": 1554226200, - "t1s": 2, - "t2s": 0, - "t1": 54, - "t2": 53 - } - ], - [ - 2279, - { - "d": 31, - "dB": 1554548400, - "t1s": 1, - "t2s": 2, - "t1": 53, - "t2": 56 - } - ], - [ - 2295, - { - "d": 33, - "dB": 1555758000, - "t1s": 2, - "t2s": 1, - "t1": 51, - "t2": 53 - } - ], - [ - 2310, - { - "d": 34, - "dB": 1556044200, - "t1s": 1, - "t2s": 0, - "t1": 74, - "t2": 53 - } - ], - [ - 2315, - { - "d": 35, - "dB": 1556452800, - "t1s": 1, - "t2s": 0, - "t1": 53, - "t2": 55 - } - ], - [ - 2336, - { - "d": 37, - "dB": 1557678600, - "t1s": 1, - "t2s": 2, - "t1": 53, - "t2": 63 - } - ], - [ - 2926, - { - "d": 20, - "dB": 1547235900, - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 68 - } - ], - [ - 2939, - { - "d": 21, - "dB": 1547924400, - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 19 - } - ], - [ - 2944, - { - "d": 22, - "dB": 1548529200, - "t1s": 0, - "t2s": 1, - "t1": 14, - "t2": 68 - } - ], - [ - 2959, - { - "d": 23, - "dB": 1549137600, - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 9 - } - ], - [ - 2971, - { - "d": 24, - "dB": 1549807200, - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 68 - } - ], - [ - 2980, - { - "d": 25, - "dB": 1550419200, - "t1s": 2, - "t2s": 0, - "t1": 68, - "t2": 20 - } - ], - [ - 2986, - { - "d": 26, - "dB": 1551016800, - "t1s": 2, - "t2s": 4, - "t1": 15, - "t2": 68 - } - ], - [ - 3001, - { - "d": 27, - "dB": 1551553200, - "t1s": 2, - "t2s": 2, - "t1": 68, - "t2": 42 - } - ], - [ - 3003, - { - "d": 28, - "dB": 1552158000, - "t1s": 1, - "t2s": 1, - "t1": 7, - "t2": 68 - } - ], - [ - 3021, - { - "d": 29, - "dB": 1552831200, - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 8 - } - ], - [ - 3030, - { - "d": 30, - "dB": 1554310800, - "t1s": 4, - "t2s": 0, - "t1": 41, - "t2": 68 - } - ], - [ - 3046, - { - "d": 32, - "dB": 1555178400, - "t1s": 0, - "t2s": 0, - "t1": 13, - "t2": 68 - } - ], - [ - 3059, - { - "d": 33, - "dB": 1555858800, - "t1s": 0, - "t2s": 2, - "t1": 68, - "t2": 4 - } - ], - [ - 3063, - { - "d": 34, - "dB": 1556456400, - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 68 - } - ], - [ - 3079, - { - "d": 35, - "dB": 1556992800, - "t1s": 0, - "t2s": 3, - "t1": 68, - "t2": 67 - } - ], - [ - 3092, - { - "d": 37, - "dB": 1558206000, - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 68 - } - ], - [ - 3338, - { - "d": 18, - "dB": 1545490800, - "t1s": 2, - "t2s": 0, - "t1": 36, - "t2": 45 - } - ], - [ - 3356, - { - "d": 19, - "dB": 1545836400, - "t1s": 5, - "t2s": 0, - "t1": 24, - "t2": 36 - } - ], - [ - 3368, - { - "d": 21, - "dB": 1546458300, - "t1s": 3, - "t2s": 3, - "t1": 36, - "t2": 33 - } - ], - [ - 3383, - { - "d": 22, - "dB": 1547388900, - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 36 - } - ], - [ - 3388, - { - "d": 23, - "dB": 1547910000, - "t1s": 2, - "t2s": 0, - "t1": 36, - "t2": 28 - } - ], - [ - 3410, - { - "d": 25, - "dB": 1549128600, - "t1s": 2, - "t2s": 0, - "t1": 70, - "t2": 36 - } - ], - [ - 3422, - { - "d": 26, - "dB": 1549724400, - "t1s": 3, - "t2s": 0, - "t1": 21, - "t2": 36 - } - ], - [ - 3428, - { - "d": 27, - "dB": 1550934000, - "t1s": 1, - "t2s": 1, - "t1": 36, - "t2": 69 - } - ], - [ - 3448, - { - "d": 29, - "dB": 1551538800, - "t1s": 0, - "t2s": 1, - "t1": 36, - "t2": 40 - } - ], - [ - 3462, - { - "d": 30, - "dB": 1552143600, - "t1s": 0, - "t2s": 2, - "t1": 44, - "t2": 36 - } - ], - [ - 3468, - { - "d": 31, - "dB": 1552748400, - "t1s": 2, - "t2s": 2, - "t1": 36, - "t2": 46 - } - ], - [ - 3484, - { - "d": 32, - "dB": 1553958000, - "t1s": 2, - "t2s": 0, - "t1": 29, - "t2": 36 - } - ], - [ - 3498, - { - "d": 34, - "dB": 1555164000, - "t1s": 0, - "t2s": 5, - "t1": 45, - "t2": 36 - } - ], - [ - 3528, - { - "d": 37, - "dB": 1556969400, - "t1s": 1, - "t2s": 0, - "t1": 36, - "t2": 24 - } - ], - [ - 3540, - { - "d": 38, - "dB": 1557669600, - "t1s": 5, - "t2s": 3, - "t1": 26, - "t2": 36 - } - ], - [ - 4140, - { - "d": 17, - "dB": 1576335600, - "t1s": 0, - "t2s": 1, - "t1": 25, - "t2": 36 - } - ], - [ - 4191, - { - "d": 12, - "dB": 1573311600, - "t1s": 2, - "t2s": 1, - "t1": 46, - "t2": 36 - } - ], - [ - 4200, - { - "d": 11, - "dB": 1572697800, - "t1s": 1, - "t2s": 0, - "t1": 36, - "t2": 31 - } - ], - [ - 4216, - { - "d": 10, - "dB": 1572098400, - "t1s": 0, - "t2s": 0, - "t1": 33, - "t2": 36 - } - ], - [ - 4219, - { - "d": 9, - "dB": 1571493600, - "t1s": 0, - "t2s": 0, - "t1": 36, - "t2": 76 - } - ], - [ - 4240, - { - "d": 7, - "dB": 1569679200, - "t1s": 2, - "t2s": 2, - "t1": 36, - "t2": 28 - } - ], - [ - 4248, - { - "d": 6, - "dB": 1569006000, - "t1s": 1, - "t2s": 3, - "t1": 35, - "t2": 36 - } - ], - [ - 4265, - { - "d": 5, - "dB": 1568552400, - "t1s": 3, - "t2s": 1, - "t1": 36, - "t2": 22 - } - ], - [ - 4271, - { - "d": 4, - "dB": 1567260000, - "t1s": 3, - "t2s": 1, - "t1": 29, - "t2": 36 - } - ], - [ - 4286, - { - "d": 3, - "dB": 1566738000, - "t1s": 1, - "t2s": 3, - "t1": 36, - "t2": 40 - } - ], - [ - 4300, - { - "d": 1, - "dB": 1565445600, - "t1s": 1, - "t2s": 1, - "t1": 36, - "t2": 77 - } - ], - [ - 4149, - { - "d": 16, - "dB": 1575730800, - "t1s": 0, - "t2s": 3, - "t1": 36, - "t2": 21 - } - ], - [ - 4166, - { - "d": 15, - "dB": 1575401400, - "t1s": 1, - "t2s": 0, - "t1": 26, - "t2": 36 - } - ], - [ - 4173, - { - "d": 14, - "dB": 1575126000, - "t1s": 3, - "t2s": 2, - "t1": 24, - "t2": 36 - } - ], - [ - 4180, - { - "d": 13, - "dB": 1574521200, - "t1s": 1, - "t2s": 2, - "t1": 36, - "t2": 69 - } - ], - [ - 3340, - { - "d": 18, - "dB": 1545499800, - "t1s": 1, - "t2s": 5, - "t1": 70, - "t2": 31 - } - ], - [ - 3350, - { - "d": 19, - "dB": 1545836400, - "t1s": 0, - "t2s": 0, - "t1": 26, - "t2": 70 - } - ], - [ - 3362, - { - "d": 20, - "dB": 1546102800, - "t1s": 0, - "t2s": 1, - "t1": 29, - "t2": 70 - } - ], - [ - 3370, - { - "d": 21, - "dB": 1546362000, - "t1s": 0, - "t2s": 3, - "t1": 70, - "t2": 24 - } - ], - [ - 3380, - { - "d": 22, - "dB": 1547305200, - "t1s": 0, - "t2s": 0, - "t1": 70, - "t2": 44 - } - ], - [ - 3424, - { - "d": 26, - "dB": 1549724400, - "t1s": 1, - "t2s": 2, - "t1": 35, - "t2": 70 - } - ], - [ - 3431, - { - "d": 27, - "dB": 1550864700, - "t1s": 1, - "t2s": 5, - "t1": 70, - "t2": 33 - } - ], - [ - 3459, - { - "d": 30, - "dB": 1552143600, - "t1s": 2, - "t2s": 0, - "t1": 70, - "t2": 28 - } - ], - [ - 3354, - { - "d": 19, - "dB": 1545836400, - "t1s": 3, - "t2s": 1, - "t1": 31, - "t2": 44 - } - ], - [ - 3436, - { - "d": 27, - "dB": 1550934000, - "t1s": 2, - "t2s": 0, - "t1": 46, - "t2": 44 - } - ], - [ - 3440, - { - "d": 28, - "dB": 1551210300, - "t1s": 1, - "t2s": 0, - "t1": 44, - "t2": 69 - } - ], - [ - 3449, - { - "d": 29, - "dB": 1551538800, - "t1s": 1, - "t2s": 0, - "t1": 45, - "t2": 44 - } - ], - [ - 3476, - { - "d": 31, - "dB": 1552748400, - "t1s": 4, - "t2s": 3, - "t1": 28, - "t2": 44 - } - ], - [ - 3408, - { - "d": 25, - "dB": 1549119600, - "t1s": 0, - "t2s": 0, - "t1": 45, - "t2": 33 - } - ], - [ - 3441, - { - "d": 28, - "dB": 1551210300, - "t1s": 2, - "t2s": 1, - "t1": 29, - "t2": 45 - } - ], - [ - 3461, - { - "d": 30, - "dB": 1552134600, - "t1s": 1, - "t2s": 2, - "t1": 26, - "t2": 45 - } - ], - [ - 3479, - { - "d": 32, - "dB": 1553958000, - "t1s": 0, - "t2s": 1, - "t1": 45, - "t2": 35 - } - ], - [ - 3495, - { - "d": 33, - "dB": 1556045100, - "t1s": 1, - "t2s": 0, - "t1": 24, - "t2": 45 - } - ], - [ - 3518, - { - "d": 36, - "dB": 1556382600, - "t1s": 1, - "t2s": 1, - "t1": 45, - "t2": 46 - } - ], - [ - 3538, - { - "d": 38, - "dB": 1557669600, - "t1s": 1, - "t2s": 4, - "t1": 45, - "t2": 40 - } - ], - [ - 4141, - { - "d": 17, - "dB": 1576525500, - "t1s": 1, - "t2s": 1, - "t1": 26, - "t2": 45 - } - ], - [ - 4171, - { - "d": 14, - "dB": 1575126000, - "t1s": 2, - "t2s": 1, - "t1": 21, - "t2": 45 - } - ], - [ - 4181, - { - "d": 13, - "dB": 1574521200, - "t1s": 0, - "t2s": 2, - "t1": 45, - "t2": 29 - } - ], - [ - 4228, - { - "d": 8, - "dB": 1570275000, - "t1s": 3, - "t2s": 0, - "t1": 45, - "t2": 24 - } - ], - [ - 4241, - { - "d": 7, - "dB": 1569679200, - "t1s": 2, - "t2s": 0, - "t1": 25, - "t2": 45 - } - ], - [ - 4254, - { - "d": 6, - "dB": 1569083400, - "t1s": 0, - "t2s": 0, - "t1": 46, - "t2": 45 - } - ], - [ - 3358, - { - "d": 20, - "dB": 1546102800, - "t1s": 1, - "t2s": 0, - "t1": 45, - "t2": 22 - } - ], - [ - 3376, - { - "d": 21, - "dB": 1546458300, - "t1s": 2, - "t2s": 2, - "t1": 28, - "t2": 45 - } - ], - [ - 3469, - { - "d": 31, - "dB": 1555440300, - "t1s": 0, - "t2s": 2, - "t1": 45, - "t2": 70 - } - ], - [ - 3517, - { - "d": 35, - "dB": 1555768800, - "t1s": 0, - "t2s": 0, - "t1": 69, - "t2": 45 - } - ], - [ - 4272, - { - "d": 4, - "dB": 1567260000, - "t1s": 4, - "t2s": 0, - "t1": 40, - "t2": 45 - } - ], - [ - 4303, - { - "d": 1, - "dB": 1565445600, - "t1s": 0, - "t2s": 3, - "t1": 33, - "t2": 45 - } - ], - [ - 3378, - { - "d": 22, - "dB": 1547305200, - "t1s": 0, - "t2s": 1, - "t1": 45, - "t2": 21 - } - ], - [ - 3393, - { - "d": 23, - "dB": 1547910000, - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 45 - } - ], - [ - 4150, - { - "d": 16, - "dB": 1575822600, - "t1s": 2, - "t2s": 2, - "t1": 45, - "t2": 69 - } - ], - [ - 4197, - { - "d": 12, - "dB": 1573394400, - "t1s": 3, - "t2s": 1, - "t1": 31, - "t2": 45 - } - ], - [ - 4209, - { - "d": 10, - "dB": 1572098400, - "t1s": 3, - "t2s": 2, - "t1": 45, - "t2": 22 - } - ], - [ - 4259, - { - "d": 5, - "dB": 1568469600, - "t1s": 1, - "t2s": 1, - "t1": 45, - "t2": 23 - } - ], - [ - 4280, - { - "d": 3, - "dB": 1566655200, - "t1s": 0, - "t2s": 2, - "t1": 45, - "t2": 35 - } - ], - [ - 4290, - { - "d": 2, - "dB": 1566050400, - "t1s": 1, - "t2s": 1, - "t1": 45, - "t2": 28 - } - ], - [ - 4201, - { - "d": 11, - "dB": 1572706800, - "t1s": 2, - "t2s": 0, - "t1": 45, - "t2": 76 - } - ], - [ - 3401, - { - "d": 24, - "dB": 1548791100, - "t1s": 0, - "t2s": 1, - "t1": 44, - "t2": 22 - } - ], - [ - 3482, - { - "d": 32, - "dB": 1553958000, - "t1s": 2, - "t2s": 0, - "t1": 26, - "t2": 44 - } - ], - [ - 3491, - { - "d": 33, - "dB": 1554559200, - "t1s": 1, - "t2s": 4, - "t1": 44, - "t2": 29 - } - ], - [ - 3506, - { - "d": 34, - "dB": 1555155000, - "t1s": 4, - "t2s": 0, - "t1": 24, - "t2": 44 - } - ], - [ - 3513, - { - "d": 35, - "dB": 1555768800, - "t1s": 1, - "t2s": 2, - "t1": 44, - "t2": 33 - } - ], - [ - 3533, - { - "d": 37, - "dB": 1557061200, - "t1s": 1, - "t2s": 1, - "t1": 44, - "t2": 31 - } - ], - [ - 4139, - { - "d": 17, - "dB": 1576335600, - "t1s": 1, - "t2s": 0, - "t1": 23, - "t2": 46 - } - ], - [ - 4155, - { - "d": 16, - "dB": 1575730800, - "t1s": 5, - "t2s": 0, - "t1": 24, - "t2": 23 - } - ], - [ - 4159, - { - "d": 15, - "dB": 1575404100, - "t1s": 1, - "t2s": 4, - "t1": 23, - "t2": 40 - } - ], - [ - 4168, - { - "d": 14, - "dB": 1575126000, - "t1s": 0, - "t2s": 2, - "t1": 23, - "t2": 26 - } - ], - [ - 4186, - { - "d": 13, - "dB": 1574521200, - "t1s": 0, - "t2s": 3, - "t1": 33, - "t2": 23 - } - ], - [ - 4188, - { - "d": 12, - "dB": 1573311600, - "t1s": 3, - "t2s": 0, - "t1": 23, - "t2": 28 - } - ], - [ - 4205, - { - "d": 11, - "dB": 1572706800, - "t1s": 3, - "t2s": 0, - "t1": 77, - "t2": 23 - } - ], - [ - 4210, - { - "d": 10, - "dB": 1572107400, - "t1s": 2, - "t2s": 4, - "t1": 23, - "t2": 25 - } - ], - [ - 4223, - { - "d": 9, - "dB": 1571493600, - "t1s": 2, - "t2s": 1, - "t1": 29, - "t2": 23 - } - ], - [ - 4229, - { - "d": 8, - "dB": 1570284000, - "t1s": 1, - "t2s": 0, - "t1": 23, - "t2": 22 - } - ], - [ - 4250, - { - "d": 6, - "dB": 1569074400, - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 76 - } - ], - [ - 4275, - { - "d": 4, - "dB": 1567269000, - "t1s": 0, - "t2s": 3, - "t1": 23, - "t2": 21 - } - ], - [ - 4284, - { - "d": 3, - "dB": 1566747000, - "t1s": 1, - "t2s": 1, - "t1": 69, - "t2": 23 - } - ], - [ - 4301, - { - "d": 1, - "dB": 1565445600, - "t1s": 3, - "t2s": 0, - "t1": 23, - "t2": 35 - } - ], - [ - 3349, - { - "d": 19, - "dB": 1545836400, - "t1s": 1, - "t2s": 5, - "t1": 23, - "t2": 22 - } - ], - [ - 2977, - { - "d": 25, - "dB": 1550332800, - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 42 - } - ], - [ - 2982, - { - "d": 26, - "dB": 1550948400, - "t1s": 1, - "t2s": 0, - "t1": 42, - "t2": 19 - } - ], - [ - 3002, - { - "d": 28, - "dB": 1552158000, - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 67 - } - ], - [ - 3012, - { - "d": 29, - "dB": 1552762800, - "t1s": 0, - "t2s": 0, - "t1": 16, - "t2": 42 - } - ], - [ - 3022, - { - "d": 30, - "dB": 1554037200, - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 3 - } - ], - [ - 3032, - { - "d": 31, - "dB": 1554573600, - "t1s": 2, - "t2s": 2, - "t1": 42, - "t2": 4 - } - ], - [ - 3043, - { - "d": 32, - "dB": 1555088400, - "t1s": 0, - "t2s": 0, - "t1": 7, - "t2": 42 - } - ], - [ - 3055, - { - "d": 33, - "dB": 1555851600, - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 42 - } - ], - [ - 3062, - { - "d": 34, - "dB": 1556456400, - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 41 - } - ], - [ - 3076, - { - "d": 35, - "dB": 1557061200, - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 42 - } - ], - [ - 3082, - { - "d": 36, - "dB": 1557597600, - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 10 - } - ], - [ - 3096, - { - "d": 37, - "dB": 1558206000, - "t1s": 2, - "t2s": 0, - "t1": 13, - "t2": 42 - } - ], - [ - 3102, - { - "d": 38, - "dB": 1558724700, - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 14 - } - ], - [ - 4169, - { - "d": 14, - "dB": 1575126000, - "t1s": 0, - "t2s": 1, - "t1": 25, - "t2": 28 - } - ], - [ - 4184, - { - "d": 13, - "dB": 1574530200, - "t1s": 2, - "t2s": 1, - "t1": 40, - "t2": 25 - } - ], - [ - 4206, - { - "d": 11, - "dB": 1572715800, - "t1s": 1, - "t2s": 2, - "t1": 33, - "t2": 25 - } - ], - [ - 4220, - { - "d": 9, - "dB": 1571493600, - "t1s": 1, - "t2s": 0, - "t1": 25, - "t2": 46 - } - ], - [ - 4233, - { - "d": 8, - "dB": 1570366800, - "t1s": 1, - "t2s": 4, - "t1": 35, - "t2": 25 - } - ], - [ - 4257, - { - "d": 6, - "dB": 1569166200, - "t1s": 1, - "t2s": 2, - "t1": 25, - "t2": 21 - } - ], - [ - 4263, - { - "d": 5, - "dB": 1568469600, - "t1s": 2, - "t2s": 5, - "t1": 69, - "t2": 25 - } - ], - [ - 4269, - { - "d": 4, - "dB": 1567260000, - "t1s": 2, - "t2s": 2, - "t1": 25, - "t2": 77 - } - ], - [ - 4279, - { - "d": 3, - "dB": 1566646200, - "t1s": 2, - "t2s": 3, - "t1": 76, - "t2": 25 - } - ], - [ - 4296, - { - "d": 2, - "dB": 1566142200, - "t1s": 1, - "t2s": 1, - "t1": 25, - "t2": 29 - } - ], - [ - 4307, - { - "d": 1, - "dB": 1565537400, - "t1s": 4, - "t2s": 0, - "t1": 31, - "t2": 25 - } - ], - [ - 4151, - { - "d": 16, - "dB": 1575721800, - "t1s": 3, - "t2s": 1, - "t1": 22, - "t2": 25 - } - ], - [ - 4189, - { - "d": 12, - "dB": 1573302600, - "t1s": 2, - "t2s": 0, - "t1": 25, - "t2": 26 - } - ], - [ - 2139, - { - "d": 17, - "dB": 1545562800, - "t1s": 2, - "t2s": 1, - "t1": 49, - "t2": 73 - } - ], - [ - 2142, - { - "d": 18, - "dB": 1546701300, - "t1s": 2, - "t2s": 1, - "t1": 48, - "t2": 49 - } - ], - [ - 3419, - { - "d": 26, - "dB": 1549724400, - "t1s": 1, - "t2s": 1, - "t1": 26, - "t2": 28 - } - ], - [ - 3434, - { - "d": 27, - "dB": 1550943000, - "t1s": 1, - "t2s": 4, - "t1": 29, - "t2": 26 - } - ], - [ - 3442, - { - "d": 28, - "dB": 1551297600, - "t1s": 1, - "t2s": 3, - "t1": 26, - "t2": 31 - } - ], - [ - 3474, - { - "d": 31, - "dB": 1554317100, - "t1s": 2, - "t2s": 0, - "t1": 24, - "t2": 26 - } - ], - [ - 3493, - { - "d": 33, - "dB": 1554559200, - "t1s": 0, - "t2s": 1, - "t1": 46, - "t2": 26 - } - ], - [ - 3530, - { - "d": 37, - "dB": 1556987400, - "t1s": 2, - "t2s": 3, - "t1": 70, - "t2": 26 - } - ], - [ - 3342, - { - "d": 18, - "dB": 1545580800, - "t1s": 2, - "t2s": 6, - "t1": 22, - "t2": 24 - } - ], - [ - 3372, - { - "d": 21, - "dB": 1546362000, - "t1s": 0, - "t2s": 1, - "t1": 22, - "t2": 29 - } - ], - [ - 3413, - { - "d": 25, - "dB": 1549119600, - "t1s": 1, - "t2s": 3, - "t1": 22, - "t2": 69 - } - ], - [ - 3426, - { - "d": 26, - "dB": 1549724400, - "t1s": 1, - "t2s": 0, - "t1": 33, - "t2": 22 - } - ], - [ - 3433, - { - "d": 27, - "dB": 1550941200, - "t1s": 0, - "t2s": 2, - "t1": 22, - "t2": 40 - } - ], - [ - 3451, - { - "d": 29, - "dB": 1551629700, - "t1s": 0, - "t2s": 0, - "t1": 22, - "t2": 21 - } - ], - [ - 3466, - { - "d": 30, - "dB": 1552143600, - "t1s": 3, - "t2s": 2, - "t1": 46, - "t2": 22 - } - ], - [ - 3487, - { - "d": 32, - "dB": 1553967000, - "t1s": 0, - "t2s": 2, - "t1": 28, - "t2": 22 - } - ], - [ - 3512, - { - "d": 35, - "dB": 1555849800, - "t1s": 4, - "t2s": 0, - "t1": 22, - "t2": 31 - } - ], - [ - 3520, - { - "d": 36, - "dB": 1556373600, - "t1s": 0, - "t2s": 0, - "t1": 26, - "t2": 22 - } - ], - [ - 3546, - { - "d": 38, - "dB": 1557669600, - "t1s": 2, - "t2s": 2, - "t1": 24, - "t2": 22 - } - ], - [ - 3382, - { - "d": 22, - "dB": 1547305200, - "t1s": 1, - "t2s": 2, - "t1": 26, - "t2": 33 - } - ], - [ - 3500, - { - "d": 34, - "dB": 1555247100, - "t1s": 1, - "t2s": 3, - "t1": 26, - "t2": 40 - } - ], - [ - 4156, - { - "d": 16, - "dB": 1575730800, - "t1s": 0, - "t2s": 0, - "t1": 33, - "t2": 26 - } - ], - [ - 4182, - { - "d": 13, - "dB": 1574521200, - "t1s": 1, - "t2s": 2, - "t1": 26, - "t2": 21 - } - ], - [ - 4202, - { - "d": 11, - "dB": 1572789600, - "t1s": 0, - "t2s": 2, - "t1": 26, - "t2": 29 - } - ], - [ - 4221, - { - "d": 9, - "dB": 1571502600, - "t1s": 0, - "t2s": 2, - "t1": 26, - "t2": 40 - } - ], - [ - 4235, - { - "d": 8, - "dB": 1570293000, - "t1s": 1, - "t2s": 2, - "t1": 28, - "t2": 26 - } - ], - [ - 4251, - { - "d": 6, - "dB": 1569157200, - "t1s": 1, - "t2s": 1, - "t1": 26, - "t2": 69 - } - ], - [ - 4262, - { - "d": 5, - "dB": 1568469600, - "t1s": 4, - "t2s": 0, - "t1": 24, - "t2": 26 - } - ], - [ - 4281, - { - "d": 3, - "dB": 1566655200, - "t1s": 1, - "t2s": 2, - "t1": 31, - "t2": 26 - } - ], - [ - 4295, - { - "d": 2, - "dB": 1566133200, - "t1s": 1, - "t2s": 0, - "t1": 77, - "t2": 26 - } - ], - [ - 4302, - { - "d": 1, - "dB": 1565445600, - "t1s": 0, - "t2s": 0, - "t1": 26, - "t2": 22 - } - ], - [ - 4242, - { - "d": 7, - "dB": 1569679200, - "t1s": 2, - "t2s": 0, - "t1": 26, - "t2": 76 - } - ], - [ - 3344, - { - "d": 18, - "dB": 1545490800, - "t1s": 2, - "t2s": 3, - "t1": 40, - "t2": 26 - } - ], - [ - 3377, - { - "d": 21, - "dB": 1546458300, - "t1s": 0, - "t2s": 2, - "t1": 69, - "t2": 26 - } - ], - [ - 3392, - { - "d": 23, - "dB": 1547910000, - "t1s": 4, - "t2s": 3, - "t1": 21, - "t2": 26 - } - ], - [ - 3394, - { - "d": 23, - "dB": 1547910000, - "t1s": 3, - "t2s": 0, - "t1": 46, - "t2": 70 - } - ], - [ - 3457, - { - "d": 29, - "dB": 1551538800, - "t1s": 2, - "t2s": 0, - "t1": 69, - "t2": 70 - } - ], - [ - 3492, - { - "d": 33, - "dB": 1554317100, - "t1s": 2, - "t2s": 0, - "t1": 40, - "t2": 70 - } - ], - [ - 3510, - { - "d": 35, - "dB": 1555858800, - "t1s": 0, - "t2s": 2, - "t1": 70, - "t2": 21 - } - ], - [ - 2895, - { - "d": 17, - "dB": 1547661600, - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 19 - } - ], - [ - 2936, - { - "d": 21, - "dB": 1547924400, - "t1s": 1, - "t2s": 5, - "t1": 13, - "t2": 41 - } - ], - [ - 2943, - { - "d": 22, - "dB": 1548529200, - "t1s": 2, - "t2s": 0, - "t1": 7, - "t2": 13 - } - ], - [ - 2957, - { - "d": 23, - "dB": 1549134000, - "t1s": 2, - "t2s": 1, - "t1": 13, - "t2": 10 - } - ], - [ - 2965, - { - "d": 24, - "dB": 1549807200, - "t1s": 2, - "t2s": 2, - "t1": 15, - "t2": 13 - } - ], - [ - 2978, - { - "d": 25, - "dB": 1550343600, - "t1s": 1, - "t2s": 0, - "t1": 13, - "t2": 8 - } - ], - [ - 2985, - { - "d": 26, - "dB": 1551038400, - "t1s": 2, - "t2s": 0, - "t1": 13, - "t2": 18 - } - ], - [ - 2992, - { - "d": 27, - "dB": 1551553200, - "t1s": 2, - "t2s": 2, - "t1": 16, - "t2": 13 - } - ], - [ - 3005, - { - "d": 28, - "dB": 1552158000, - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 3 - } - ], - [ - 3035, - { - "d": 31, - "dB": 1554573600, - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 13 - } - ], - [ - 3070, - { - "d": 34, - "dB": 1556730000, - "t1s": 2, - "t2s": 2, - "t1": 20, - "t2": 13 - } - ], - [ - 3075, - { - "d": 35, - "dB": 1557068400, - "t1s": 2, - "t2s": 3, - "t1": 13, - "t2": 4 - } - ], - [ - 3089, - { - "d": 36, - "dB": 1557597600, - "t1s": 1, - "t2s": 0, - "t1": 67, - "t2": 13 - } - ], - [ - 3108, - { - "d": 38, - "dB": 1558724700, - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 13 - } - ], - [ - 4167, - { - "d": 15, - "dB": 1575490500, - "t1s": 5, - "t2s": 2, - "t1": 21, - "t2": 22 - } - ], - [ - 4170, - { - "d": 14, - "dB": 1575217800, - "t1s": 2, - "t2s": 1, - "t1": 29, - "t2": 22 - } - ], - [ - 4183, - { - "d": 13, - "dB": 1574521200, - "t1s": 0, - "t2s": 2, - "t1": 22, - "t2": 76 - } - ], - [ - 4193, - { - "d": 12, - "dB": 1573311600, - "t1s": 1, - "t2s": 2, - "t1": 35, - "t2": 22 - } - ], - [ - 4203, - { - "d": 11, - "dB": 1572798600, - "t1s": 1, - "t2s": 1, - "t1": 22, - "t2": 24 - } - ], - [ - 4222, - { - "d": 9, - "dB": 1571484600, - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 28 - } - ], - [ - 3439, - { - "d": 28, - "dB": 1551210300, - "t1s": 0, - "t2s": 3, - "t1": 70, - "t2": 22 - } - ], - [ - 4246, - { - "d": 7, - "dB": 1569688200, - "t1s": 1, - "t2s": 3, - "t1": 22, - "t2": 40 - } - ], - [ - 4252, - { - "d": 6, - "dB": 1569074400, - "t1s": 0, - "t2s": 2, - "t1": 22, - "t2": 77 - } - ], - [ - 4276, - { - "d": 4, - "dB": 1567342800, - "t1s": 3, - "t2s": 2, - "t1": 22, - "t2": 69 - } - ], - [ - 4291, - { - "d": 2, - "dB": 1566050400, - "t1s": 1, - "t2s": 0, - "t1": 22, - "t2": 33 - } - ], - [ - 4144, - { - "d": 17, - "dB": 1576418400, - "t1s": 1, - "t2s": 1, - "t1": 31, - "t2": 22 - } - ], - [ - 3352, - { - "d": 19, - "dB": 1545836400, - "t1s": 2, - "t2s": 1, - "t1": 29, - "t2": 40 - } - ], - [ - 3391, - { - "d": 23, - "dB": 1547991000, - "t1s": 0, - "t2s": 3, - "t1": 44, - "t2": 40 - } - ], - [ - 3523, - { - "d": 36, - "dB": 1556305200, - "t1s": 5, - "t2s": 0, - "t1": 21, - "t2": 44 - } - ], - [ - 3397, - { - "d": 23, - "dB": 1547901000, - "t1s": 4, - "t2s": 3, - "t1": 69, - "t2": 29 - } - ], - [ - 3406, - { - "d": 24, - "dB": 1548878400, - "t1s": 1, - "t2s": 1, - "t1": 21, - "t2": 29 - } - ], - [ - 3414, - { - "d": 25, - "dB": 1549202700, - "t1s": 0, - "t2s": 1, - "t1": 29, - "t2": 31 - } - ], - [ - 3425, - { - "d": 26, - "dB": 1549805400, - "t1s": 3, - "t2s": 1, - "t1": 24, - "t2": 29 - } - ], - [ - 3455, - { - "d": 29, - "dB": 1551614400, - "t1s": 2, - "t2s": 1, - "t1": 33, - "t2": 29 - } - ], - [ - 3502, - { - "d": 34, - "dB": 1555095600, - "t1s": 0, - "t2s": 1, - "t1": 29, - "t2": 46 - } - ], - [ - 3516, - { - "d": 35, - "dB": 1555768800, - "t1s": 2, - "t2s": 2, - "t1": 28, - "t2": 29 - } - ], - [ - 3534, - { - "d": 37, - "dB": 1557169200, - "t1s": 1, - "t2s": 0, - "t1": 40, - "t2": 29 - } - ], - [ - 4142, - { - "d": 17, - "dB": 1576335600, - "t1s": 1, - "t2s": 1, - "t1": 29, - "t2": 76 - } - ], - [ - 4160, - { - "d": 15, - "dB": 1575487800, - "t1s": 2, - "t2s": 0, - "t1": 29, - "t2": 33 - } - ], - [ - 4215, - { - "d": 10, - "dB": 1572030000, - "t1s": 0, - "t2s": 9, - "t1": 35, - "t2": 29 - } - ], - [ - 4230, - { - "d": 8, - "dB": 1570284000, - "t1s": 2, - "t2s": 1, - "t1": 21, - "t2": 29 - } - ], - [ - 4245, - { - "d": 7, - "dB": 1569771000, - "t1s": 5, - "t2s": 0, - "t1": 29, - "t2": 46 - } - ], - [ - 4249, - { - "d": 6, - "dB": 1569065400, - "t1s": 2, - "t2s": 1, - "t1": 29, - "t2": 24 - } - ], - [ - 4260, - { - "d": 5, - "dB": 1568469600, - "t1s": 1, - "t2s": 0, - "t1": 31, - "t2": 29 - } - ], - [ - 4282, - { - "d": 3, - "dB": 1566655200, - "t1s": 1, - "t2s": 2, - "t1": 77, - "t2": 29 - } - ], - [ - 4305, - { - "d": 1, - "dB": 1565528400, - "t1s": 0, - "t2s": 0, - "t1": 29, - "t2": 69 - } - ], - [ - 2915, - { - "d": 19, - "dB": 1545508800, - "t1s": 0, - "t2s": 2, - "t1": 13, - "t2": 14 - } - ], - [ - 2927, - { - "d": 20, - "dB": 1547409600, - "t1s": 1, - "t2s": 1, - "t1": 9, - "t2": 13 - } - ], - [ - 3367, - { - "d": 20, - "dB": 1546102800, - "t1s": 1, - "t2s": 1, - "t1": 33, - "t2": 46 - } - ], - [ - 3375, - { - "d": 21, - "dB": 1546459200, - "t1s": 0, - "t2s": 2, - "t1": 46, - "t2": 31 - } - ], - [ - 3404, - { - "d": 24, - "dB": 1548792000, - "t1s": 2, - "t2s": 1, - "t1": 46, - "t2": 40 - } - ], - [ - 3416, - { - "d": 25, - "dB": 1549110600, - "t1s": 1, - "t2s": 0, - "t1": 24, - "t2": 46 - } - ], - [ - 3427, - { - "d": 26, - "dB": 1549915200, - "t1s": 1, - "t2s": 1, - "t1": 69, - "t2": 46 - } - ], - [ - 3456, - { - "d": 29, - "dB": 1551547800, - "t1s": 2, - "t2s": 0, - "t1": 28, - "t2": 46 - } - ], - [ - 3515, - { - "d": 35, - "dB": 1555777800, - "t1s": 3, - "t2s": 1, - "t1": 46, - "t2": 35 - } - ], - [ - 3535, - { - "d": 37, - "dB": 1556995500, - "t1s": 2, - "t2s": 3, - "t1": 46, - "t2": 21 - } - ], - [ - 3347, - { - "d": 18, - "dB": 1545422400, - "t1s": 0, - "t2s": 2, - "t1": 69, - "t2": 21 - } - ], - [ - 3353, - { - "d": 19, - "dB": 1545836400, - "t1s": 4, - "t2s": 0, - "t1": 21, - "t2": 46 - } - ], - [ - 3374, - { - "d": 21, - "dB": 1546545600, - "t1s": 2, - "t2s": 1, - "t1": 40, - "t2": 21 - } - ], - [ - 3417, - { - "d": 25, - "dB": 1549310400, - "t1s": 1, - "t2s": 1, - "t1": 28, - "t2": 21 - } - ], - [ - 3435, - { - "d": 27, - "dB": 1551017100, - "t1s": 0, - "t2s": 0, - "t1": 31, - "t2": 21 - } - ], - [ - 3446, - { - "d": 28, - "dB": 1551297600, - "t1s": 5, - "t2s": 0, - "t1": 21, - "t2": 33 - } - ], - [ - 3485, - { - "d": 32, - "dB": 1554046200, - "t1s": 2, - "t2s": 1, - "t1": 21, - "t2": 24 - } - ], - [ - 3494, - { - "d": 33, - "dB": 1554490800, - "t1s": 1, - "t2s": 3, - "t1": 35, - "t2": 21 - } - ], - [ - 3543, - { - "d": 38, - "dB": 1557669600, - "t1s": 2, - "t2s": 0, - "t1": 21, - "t2": 69 - } - ], - [ - 4190, - { - "d": 12, - "dB": 1573403400, - "t1s": 3, - "t2s": 1, - "t1": 21, - "t2": 40 - } - ], - [ - 4211, - { - "d": 10, - "dB": 1572193800, - "t1s": 2, - "t2s": 1, - "t1": 21, - "t2": 24 - } - ], - [ - 4224, - { - "d": 9, - "dB": 1571585400, - "t1s": 1, - "t2s": 1, - "t1": 31, - "t2": 21 - } - ], - [ - 4238, - { - "d": 7, - "dB": 1569670200, - "t1s": 0, - "t2s": 1, - "t1": 77, - "t2": 21 - } - ], - [ - 4258, - { - "d": 5, - "dB": 1568460600, - "t1s": 3, - "t2s": 1, - "t1": 21, - "t2": 46 - } - ], - [ - 4293, - { - "d": 2, - "dB": 1566050400, - "t1s": 1, - "t2s": 2, - "t1": 35, - "t2": 21 - } - ], - [ - 4298, - { - "d": 1, - "dB": 1565377200, - "t1s": 4, - "t2s": 1, - "t1": 21, - "t2": 76 - } - ], - [ - 4143, - { - "d": 17, - "dB": 1576326600, - "t1s": 2, - "t2s": 0, - "t1": 21, - "t2": 33 - } - ], - [ - 4172, - { - "d": 14, - "dB": 1575117000, - "t1s": 2, - "t2s": 2, - "t1": 46, - "t2": 40 - } - ], - [ - 4253, - { - "d": 6, - "dB": 1569074400, - "t1s": 8, - "t2s": 0, - "t1": 40, - "t2": 33 - } - ], - [ - 3385, - { - "d": 22, - "dB": 1547496000, - "t1s": 3, - "t2s": 0, - "t1": 40, - "t2": 69 - } - ], - [ - 3447, - { - "d": 28, - "dB": 1551297600, - "t1s": 1, - "t2s": 0, - "t1": 40, - "t2": 28 - } - ], - [ - 3465, - { - "d": 30, - "dB": 1552152600, - "t1s": 3, - "t2s": 1, - "t1": 40, - "t2": 33 - } - ], - [ - 3473, - { - "d": 31, - "dB": 1556132400, - "t1s": 0, - "t2s": 2, - "t1": 31, - "t2": 40 - } - ], - [ - 3514, - { - "d": 35, - "dB": 1555759800, - "t1s": 1, - "t2s": 0, - "t1": 40, - "t2": 24 - } - ], - [ - 4152, - { - "d": 16, - "dB": 1575739800, - "t1s": 1, - "t2s": 2, - "t1": 40, - "t2": 31 - } - ], - [ - 4204, - { - "d": 11, - "dB": 1572706800, - "t1s": 2, - "t2s": 1, - "t1": 40, - "t2": 35 - } - ], - [ - 4231, - { - "d": 8, - "dB": 1570366800, - "t1s": 0, - "t2s": 2, - "t1": 40, - "t2": 69 - } - ], - [ - 4264, - { - "d": 5, - "dB": 1568478600, - "t1s": 3, - "t2s": 2, - "t1": 76, - "t2": 40 - } - ], - [ - 4294, - { - "d": 2, - "dB": 1566059400, - "t1s": 2, - "t2s": 2, - "t1": 40, - "t2": 24 - } - ], - [ - 4299, - { - "d": 1, - "dB": 1565436600, - "t1s": 0, - "t2s": 5, - "t1": 28, - "t2": 40 - } - ], - [ - 2138, - { - "d": 17, - "dB": 1545417000, - "t1s": 1, - "t2s": 1, - "t1": 53, - "t2": 58 - } - ], - [ - 2196, - { - "d": 23, - "dB": 1549741500, - "t1s": 0, - "t2s": 2, - "t1": 53, - "t2": 73 - } - ], - [ - 2237, - { - "d": 27, - "dB": 1552230900, - "t1s": 2, - "t2s": 3, - "t1": 53, - "t2": 49 - } - ], - [ - 2249, - { - "d": 28, - "dB": 1552765500, - "t1s": 0, - "t2s": 2, - "t1": 47, - "t2": 53 - } - ], - [ - 2284, - { - "d": 32, - "dB": 1555259400, - "t1s": 0, - "t2s": 1, - "t1": 53, - "t2": 64 - } - ], - [ - 2323, - { - "d": 36, - "dB": 1557050400, - "t1s": 2, - "t2s": 0, - "t1": 58, - "t2": 53 - } - ], - [ - 2133, - { - "d": 17, - "dB": 1545491700, - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 56 - } - ], - [ - 2147, - { - "d": 18, - "dB": 1546787700, - "t1s": 1, - "t2s": 1, - "t1": 55, - "t2": 54 - } - ], - [ - 2153, - { - "d": 19, - "dB": 1547377200, - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 63 - } - ], - [ - 2171, - { - "d": 20, - "dB": 1547919000, - "t1s": 0, - "t2s": 3, - "t1": 73, - "t2": 54 - } - ], - [ - 2174, - { - "d": 21, - "dB": 1548515700, - "t1s": 2, - "t2s": 0, - "t1": 54, - "t2": 58 - } - ], - [ - 2188, - { - "d": 22, - "dB": 1549206900, - "t1s": 1, - "t2s": 0, - "t1": 60, - "t2": 54 - } - ], - [ - 2207, - { - "d": 24, - "dB": 1550330100, - "t1s": 0, - "t2s": 1, - "t1": 72, - "t2": 54 - } - ], - [ - 2214, - { - "d": 25, - "dB": 1551021300, - "t1s": 2, - "t2s": 0, - "t1": 54, - "t2": 64 - } - ], - [ - 2229, - { - "d": 26, - "dB": 1551634200, - "t1s": 0, - "t2s": 2, - "t1": 52, - "t2": 54 - } - ], - [ - 2234, - { - "d": 27, - "dB": 1552144500, - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 47 - } - ], - [ - 2242, - { - "d": 28, - "dB": 1552757400, - "t1s": 2, - "t2s": 0, - "t1": 57, - "t2": 54 - } - ], - [ - 2277, - { - "d": 31, - "dB": 1554576300, - "t1s": 2, - "t2s": 0, - "t1": 59, - "t2": 54 - } - ], - [ - 2283, - { - "d": 32, - "dB": 1555173000, - "t1s": 2, - "t2s": 0, - "t1": 54, - "t2": 51 - } - ], - [ - 2298, - { - "d": 33, - "dB": 1555769700, - "t1s": 0, - "t2s": 1, - "t1": 66, - "t2": 54 - } - ], - [ - 2303, - { - "d": 34, - "dB": 1556127000, - "t1s": 3, - "t2s": 2, - "t1": 54, - "t2": 49 - } - ], - [ - 2312, - { - "d": 35, - "dB": 1556374500, - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 74 - } - ], - [ - 2328, - { - "d": 36, - "dB": 1556979300, - "t1s": 3, - "t2s": 0, - "t1": 56, - "t2": 54 - } - ], - [ - 2333, - { - "d": 37, - "dB": 1557678600, - "t1s": 1, - "t2s": 1, - "t1": 54, - "t2": 55 - } - ], - [ - 2348, - { - "d": 38, - "dB": 1558177200, - "t1s": 2, - "t2s": 2, - "t1": 63, - "t2": 54 - } - ], - [ - 3386, - { - "d": 22, - "dB": 1547397000, - "t1s": 0, - "t2s": 1, - "t1": 24, - "t2": 31 - } - ], - [ - 3453, - { - "d": 29, - "dB": 1551538800, - "t1s": 3, - "t2s": 2, - "t1": 31, - "t2": 35 - } - ], - [ - 3486, - { - "d": 32, - "dB": 1553958000, - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 33 - } - ], - [ - 3497, - { - "d": 33, - "dB": 1554230700, - "t1s": 2, - "t2s": 1, - "t1": 69, - "t2": 31 - } - ], - [ - 3504, - { - "d": 34, - "dB": 1555173000, - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 28 - } - ], - [ - 3544, - { - "d": 38, - "dB": 1557669600, - "t1s": 0, - "t2s": 2, - "t1": 31, - "t2": 70 - } - ], - [ - 4268, - { - "d": 4, - "dB": 1567251000, - "t1s": 1, - "t2s": 1, - "t1": 35, - "t2": 31 - } - ], - [ - 4297, - { - "d": 2, - "dB": 1566241200, - "t1s": 1, - "t2s": 1, - "t1": 69, - "t2": 31 - } - ], - [ - 4163, - { - "d": 15, - "dB": 1575487800, - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 24 - } - ], - [ - 4185, - { - "d": 13, - "dB": 1574613000, - "t1s": 3, - "t2s": 3, - "t1": 77, - "t2": 31 - } - ], - [ - 4214, - { - "d": 10, - "dB": 1572193800, - "t1s": 1, - "t2s": 3, - "t1": 76, - "t2": 31 - } - ], - [ - 4237, - { - "d": 8, - "dB": 1570375800, - "t1s": 1, - "t2s": 0, - "t1": 46, - "t2": 31 - } - ], - [ - 4255, - { - "d": 6, - "dB": 1569157200, - "t1s": 2, - "t2s": 0, - "t1": 28, - "t2": 31 - } - ], - [ - 2929, - { - "d": 20, - "dB": 1547319600, - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 3 - } - ], - [ - 2948, - { - "d": 22, - "dB": 1548529200, - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 67 - } - ], - [ - 2967, - { - "d": 24, - "dB": 1549828800, - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 18 - } - ], - [ - 2999, - { - "d": 27, - "dB": 1551621600, - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 41 - } - ], - [ - 3004, - { - "d": 28, - "dB": 1552248000, - "t1s": 1, - "t2s": 0, - "t1": 9, - "t2": 19 - } - ], - [ - 3018, - { - "d": 29, - "dB": 1552672800, - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 10 - } - ], - [ - 3037, - { - "d": 31, - "dB": 1554649200, - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 15 - } - ], - [ - 3049, - { - "d": 32, - "dB": 1555246800, - "t1s": 0, - "t2s": 0, - "t1": 20, - "t2": 19 - } - ], - [ - 3069, - { - "d": 34, - "dB": 1556456400, - "t1s": 3, - "t2s": 0, - "t1": 19, - "t2": 14 - } - ], - [ - 3078, - { - "d": 35, - "dB": 1556982000, - "t1s": 1, - "t2s": 1, - "t1": 2, - "t2": 19 - } - ], - [ - 3088, - { - "d": 36, - "dB": 1557597600, - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 8 - } - ], - [ - 3099, - { - "d": 37, - "dB": 1558206000, - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 19 - } - ], - [ - 4153, - { - "d": 16, - "dB": 1575813600, - "t1s": 2, - "t2s": 1, - "t1": 46, - "t2": 35 - } - ], - [ - 4161, - { - "d": 15, - "dB": 1575574200, - "t1s": 0, - "t2s": 2, - "t1": 77, - "t2": 46 - } - ], - [ - 4207, - { - "d": 11, - "dB": 1572706800, - "t1s": 2, - "t2s": 3, - "t1": 28, - "t2": 46 - } - ], - [ - 4213, - { - "d": 10, - "dB": 1572184800, - "t1s": 1, - "t2s": 1, - "t1": 46, - "t2": 69 - } - ], - [ - 4287, - { - "d": 3, - "dB": 1566747000, - "t1s": 0, - "t2s": 1, - "t1": 24, - "t2": 46 - } - ], - [ - 3346, - { - "d": 18, - "dB": 1545490800, - "t1s": 0, - "t2s": 2, - "t1": 28, - "t2": 33 - } - ], - [ - 3402, - { - "d": 24, - "dB": 1548791100, - "t1s": 3, - "t2s": 0, - "t1": 69, - "t2": 28 - } - ], - [ - 4273, - { - "d": 4, - "dB": 1567260000, - "t1s": 1, - "t2s": 1, - "t1": 46, - "t2": 33 - } - ], - [ - 4292, - { - "d": 2, - "dB": 1566050400, - "t1s": 3, - "t2s": 1, - "t1": 76, - "t2": 46 - } - ], - [ - 2902, - { - "d": 18, - "dB": 1546970400, - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 16 - } - ], - [ - 2913, - { - "d": 19, - "dB": 1545580800, - "t1s": 1, - "t2s": 1, - "t1": 3, - "t2": 42 - } - ], - [ - 2922, - { - "d": 20, - "dB": 1547308800, - "t1s": 0, - "t2s": 3, - "t1": 42, - "t2": 2 - } - ], - [ - 2942, - { - "d": 22, - "dB": 1548604800, - "t1s": 0, - "t2s": 1, - "t1": 42, - "t2": 18 - } - ], - [ - 2960, - { - "d": 23, - "dB": 1549134000, - "t1s": 1, - "t2s": 0, - "t1": 20, - "t2": 42 - } - ], - [ - 2136, - { - "d": 17, - "dB": 1545578100, - "t1s": 1, - "t2s": 1, - "t1": 47, - "t2": 55 - } - ], - [ - 2181, - { - "d": 21, - "dB": 1548504000, - "t1s": 5, - "t2s": 0, - "t1": 55, - "t2": 63 - } - ], - [ - 2183, - { - "d": 22, - "dB": 1549136700, - "t1s": 1, - "t2s": 0, - "t1": 51, - "t2": 55 - } - ], - [ - 2211, - { - "d": 24, - "dB": 1550424600, - "t1s": 3, - "t2s": 0, - "t1": 64, - "t2": 55 - } - ], - [ - 2220, - { - "d": 25, - "dB": 1550934900, - "t1s": 2, - "t2s": 4, - "t1": 55, - "t2": 59 - } - ], - [ - 2244, - { - "d": 28, - "dB": 1552835700, - "t1s": 0, - "t2s": 1, - "t1": 56, - "t2": 55 - } - ], - [ - 2256, - { - "d": 29, - "dB": 1554041700, - "t1s": 0, - "t2s": 1, - "t1": 55, - "t2": 49 - } - ], - [ - 2296, - { - "d": 33, - "dB": 1555848000, - "t1s": 3, - "t2s": 0, - "t1": 58, - "t2": 55 - } - ], - [ - 2347, - { - "d": 38, - "dB": 1558188900, - "t1s": 2, - "t2s": 0, - "t1": 55, - "t2": 57 - } - ], - [ - 4165, - { - "d": 15, - "dB": 1575487800, - "t1s": 2, - "t2s": 1, - "t1": 35, - "t2": 76 - } - ], - [ - 4274, - { - "d": 4, - "dB": 1567260000, - "t1s": 2, - "t2s": 0, - "t1": 28, - "t2": 76 - } - ], - [ - 4154, - { - "d": 16, - "dB": 1575813600, - "t1s": 1, - "t2s": 2, - "t1": 76, - "t2": 77 - } - ], - [ - 2257, - { - "d": 29, - "dB": 1553889600, - "t1s": 1, - "t2s": 2, - "t1": 53, - "t2": 57 - } - ], - [ - 2342, - { - "d": 38, - "dB": 1558205100, - "t1s": 2, - "t2s": 1, - "t1": 48, - "t2": 53 - } - ], - [ - 4192, - { - "d": 12, - "dB": 1573243200, - "t1s": 0, - "t2s": 2, - "t1": 76, - "t2": 33 - } - ], - [ - 4174, - { - "d": 14, - "dB": 1575208800, - "t1s": 1, - "t2s": 1, - "t1": 69, - "t2": 77 - } - ], - [ - 4234, - { - "d": 8, - "dB": 1570284000, - "t1s": 0, - "t2s": 0, - "t1": 33, - "t2": 77 - } - ], - [ - 4261, - { - "d": 5, - "dB": 1568469600, - "t1s": 0, - "t2s": 1, - "t1": 77, - "t2": 35 - } - ], - [ - 4194, - { - "d": 12, - "dB": 1573311600, - "t1s": 1, - "t2s": 1, - "t1": 24, - "t2": 77 - } - ], - [ - 4217, - { - "d": 10, - "dB": 1572098400, - "t1s": 1, - "t2s": 1, - "t1": 28, - "t2": 77 - } - ], - [ - 3467, - { - "d": 30, - "dB": 1552143600, - "t1s": 2, - "t2s": 1, - "t1": 35, - "t2": 24 - } - ], - [ - 3475, - { - "d": 31, - "dB": 1556045100, - "t1s": 1, - "t2s": 1, - "t1": 33, - "t2": 35 - } - ], - [ - 3505, - { - "d": 34, - "dB": 1555164000, - "t1s": 3, - "t2s": 1, - "t1": 35, - "t2": 69 - } - ], - [ - 3536, - { - "d": 37, - "dB": 1556978400, - "t1s": 3, - "t2s": 0, - "t1": 28, - "t2": 35 - } - ], - [ - 4146, - { - "d": 17, - "dB": 1576344600, - "t1s": 0, - "t2s": 1, - "t1": 35, - "t2": 28 - } - ], - [ - 4177, - { - "d": 14, - "dB": 1575135000, - "t1s": 2, - "t2s": 1, - "t1": 35, - "t2": 33 - } - ], - [ - 4243, - { - "d": 7, - "dB": 1569679200, - "t1s": 2, - "t2s": 1, - "t1": 24, - "t2": 35 - } - ], - [ - 4227, - { - "d": 9, - "dB": 1571493600, - "t1s": 1, - "t2s": 1, - "t1": 69, - "t2": 35 - } - ], - [ - 2134, - { - "d": 17, - "dB": 1545499800, - "t1s": 2, - "t2s": 0, - "t1": 59, - "t2": 51 - } - ], - [ - 2146, - { - "d": 18, - "dB": 1546891200, - "t1s": 1, - "t2s": 2, - "t1": 51, - "t2": 57 - } - ], - [ - 2158, - { - "d": 19, - "dB": 1547236800, - "t1s": 4, - "t2s": 2, - "t1": 72, - "t2": 51 - } - ], - [ - 2164, - { - "d": 20, - "dB": 1547927100, - "t1s": 1, - "t2s": 2, - "t1": 51, - "t2": 49 - } - ], - [ - 2178, - { - "d": 21, - "dB": 1548586800, - "t1s": 2, - "t2s": 1, - "t1": 74, - "t2": 51 - } - ], - [ - 2199, - { - "d": 23, - "dB": 1549713600, - "t1s": 3, - "t2s": 1, - "t1": 58, - "t2": 51 - } - ], - [ - 2203, - { - "d": 24, - "dB": 1550318400, - "t1s": 1, - "t2s": 4, - "t1": 51, - "t2": 63 - } - ], - [ - 2212, - { - "d": 25, - "dB": 1550943000, - "t1s": 0, - "t2s": 0, - "t1": 48, - "t2": 51 - } - ], - [ - 2230, - { - "d": 26, - "dB": 1551610800, - "t1s": 1, - "t2s": 0, - "t1": 66, - "t2": 51 - } - ], - [ - 2239, - { - "d": 27, - "dB": 1552215600, - "t1s": 0, - "t2s": 1, - "t1": 51, - "t2": 60 - } - ], - [ - 2254, - { - "d": 29, - "dB": 1553967000, - "t1s": 3, - "t2s": 2, - "t1": 51, - "t2": 64 - } - ], - [ - 2270, - { - "d": 30, - "dB": 1554316200, - "t1s": 3, - "t2s": 3, - "t1": 73, - "t2": 51 - } - ], - [ - 2274, - { - "d": 31, - "dB": 1554654600, - "t1s": 3, - "t2s": 1, - "t1": 51, - "t2": 52 - } - ], - [ - 2318, - { - "d": 35, - "dB": 1556382600, - "t1s": 0, - "t2s": 0, - "t1": 47, - "t2": 51 - } - ], - [ - 2329, - { - "d": 36, - "dB": 1556995500, - "t1s": 2, - "t2s": 0, - "t1": 51, - "t2": 59 - } - ], - [ - 2332, - { - "d": 37, - "dB": 1557678600, - "t1s": 3, - "t2s": 1, - "t1": 57, - "t2": 51 - } - ], - [ - 2343, - { - "d": 38, - "dB": 1558205100, - "t1s": 2, - "t2s": 2, - "t1": 51, - "t2": 72 - } - ], - [ - 2308, - { - "d": 34, - "dB": 1556130600, - "t1s": 1, - "t2s": 1, - "t1": 56, - "t2": 51 - } - ], - [ - 3366, - { - "d": 20, - "dB": 1546102800, - "t1s": 1, - "t2s": 3, - "t1": 24, - "t2": 69 - } - ], - [ - 3407, - { - "d": 24, - "dB": 1548878400, - "t1s": 2, - "t2s": 1, - "t1": 24, - "t2": 33 - } - ], - [ - 3526, - { - "d": 36, - "dB": 1556364600, - "t1s": 0, - "t2s": 1, - "t1": 24, - "t2": 28 - } - ], - [ - 4147, - { - "d": 17, - "dB": 1576418400, - "t1s": 1, - "t2s": 2, - "t1": 69, - "t2": 24 - } - ], - [ - 4187, - { - "d": 13, - "dB": 1574512200, - "t1s": 2, - "t2s": 3, - "t1": 28, - "t2": 24 - } - ], - [ - 4226, - { - "d": 9, - "dB": 1571493600, - "t1s": 1, - "t2s": 1, - "t1": 24, - "t2": 33 - } - ], - [ - 2135, - { - "d": 17, - "dB": 1545480000, - "t1s": 1, - "t2s": 1, - "t1": 60, - "t2": 66 - } - ], - [ - 2149, - { - "d": 18, - "dB": 1546717500, - "t1s": 2, - "t2s": 1, - "t1": 73, - "t2": 60 - } - ], - [ - 2173, - { - "d": 21, - "dB": 1548610200, - "t1s": 1, - "t2s": 0, - "t1": 57, - "t2": 60 - } - ], - [ - 2198, - { - "d": 23, - "dB": 1549796400, - "t1s": 3, - "t2s": 0, - "t1": 47, - "t2": 60 - } - ], - [ - 2205, - { - "d": 24, - "dB": 1550432700, - "t1s": 1, - "t2s": 1, - "t1": 60, - "t2": 48 - } - ], - [ - 2222, - { - "d": 26, - "dB": 1551626100, - "t1s": 1, - "t2s": 2, - "t1": 60, - "t2": 58 - } - ], - [ - 2246, - { - "d": 28, - "dB": 1552851900, - "t1s": 1, - "t2s": 4, - "t1": 60, - "t2": 59 - } - ], - [ - 2258, - { - "d": 29, - "dB": 1554033600, - "t1s": 1, - "t2s": 1, - "t1": 72, - "t2": 60 - } - ], - [ - 2269, - { - "d": 30, - "dB": 1554406200, - "t1s": 2, - "t2s": 1, - "t1": 52, - "t2": 60 - } - ], - [ - 2273, - { - "d": 31, - "dB": 1554662700, - "t1s": 2, - "t2s": 1, - "t1": 60, - "t2": 64 - } - ], - [ - 2288, - { - "d": 32, - "dB": 1555181100, - "t1s": 3, - "t2s": 2, - "t1": 55, - "t2": 60 - } - ], - [ - 2294, - { - "d": 33, - "dB": 1555872300, - "t1s": 1, - "t2s": 2, - "t1": 60, - "t2": 49 - } - ], - [ - 2314, - { - "d": 35, - "dB": 1556564400, - "t1s": 1, - "t2s": 1, - "t1": 60, - "t2": 56 - } - ], - [ - 2330, - { - "d": 36, - "dB": 1557057600, - "t1s": 1, - "t2s": 0, - "t1": 66, - "t2": 60 - } - ], - [ - 2335, - { - "d": 37, - "dB": 1557678600, - "t1s": 2, - "t2s": 1, - "t1": 60, - "t2": 73 - } - ], - [ - 2350, - { - "d": 38, - "dB": 1558260000, - "t1s": 0, - "t2s": 2, - "t1": 62, - "t2": 60 - } - ], - [ - 2901, - { - "d": 17, - "dB": 1547661600, - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 18 - } - ], - [ - 2941, - { - "d": 21, - "dB": 1548014400, - "t1s": 1, - "t2s": 2, - "t1": 4, - "t2": 18 - } - ], - [ - 2956, - { - "d": 23, - "dB": 1549224000, - "t1s": 2, - "t2s": 1, - "t1": 18, - "t2": 2 - } - ], - [ - 2997, - { - "d": 27, - "dB": 1551628800, - "t1s": 5, - "t2s": 1, - "t1": 18, - "t2": 10 - } - ], - [ - 3017, - { - "d": 29, - "dB": 1552829400, - "t1s": 3, - "t2s": 2, - "t1": 18, - "t2": 15 - } - ], - [ - 3028, - { - "d": 30, - "dB": 1553888700, - "t1s": 0, - "t2s": 1, - "t1": 20, - "t2": 18 - } - ], - [ - 3036, - { - "d": 31, - "dB": 1554562800, - "t1s": 1, - "t2s": 3, - "t1": 18, - "t2": 7 - } - ], - [ - 3048, - { - "d": 32, - "dB": 1555094700, - "t1s": 2, - "t2s": 1, - "t1": 8, - "t2": 18 - } - ], - [ - 3054, - { - "d": 33, - "dB": 1555699500, - "t1s": 2, - "t2s": 1, - "t1": 18, - "t2": 16 - } - ], - [ - 3064, - { - "d": 34, - "dB": 1556304300, - "t1s": 2, - "t2s": 3, - "t1": 3, - "t2": 18 - } - ], - [ - 3087, - { - "d": 36, - "dB": 1557687600, - "t1s": 0, - "t2s": 3, - "t1": 9, - "t2": 18 - } - ], - [ - 3109, - { - "d": 38, - "dB": 1558724700, - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 18 - } - ], - [ - 2905, - { - "d": 18, - "dB": 1547661600, - "t1s": 2, - "t2s": 1, - "t1": 14, - "t2": 20 - } - ], - [ - 2919, - { - "d": 19, - "dB": 1545508800, - "t1s": 4, - "t2s": 0, - "t1": 20, - "t2": 67 - } - ], - [ - 2928, - { - "d": 20, - "dB": 1547388000, - "t1s": 0, - "t2s": 1, - "t1": 8, - "t2": 20 - } - ], - [ - 2940, - { - "d": 21, - "dB": 1547992800, - "t1s": 0, - "t2s": 0, - "t1": 20, - "t2": 15 - } - ], - [ - 2949, - { - "d": 22, - "dB": 1548619200, - "t1s": 4, - "t2s": 1, - "t1": 2, - "t2": 20 - } - ], - [ - 2969, - { - "d": 24, - "dB": 1549814400, - "t1s": 3, - "t2s": 0, - "t1": 20, - "t2": 4 - } - ], - [ - 2989, - { - "d": 26, - "dB": 1551024000, - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 9 - } - ], - [ - 3008, - { - "d": 28, - "dB": 1552233600, - "t1s": 3, - "t2s": 1, - "t1": 20, - "t2": 5 - } - ], - [ - 3013, - { - "d": 29, - "dB": 1552838400, - "t1s": 1, - "t2s": 1, - "t1": 3, - "t2": 20 - } - ], - [ - 3033, - { - "d": 31, - "dB": 1554573600, - "t1s": 3, - "t2s": 3, - "t1": 16, - "t2": 20 - } - ], - [ - 3052, - { - "d": 33, - "dB": 1555693200, - "t1s": 3, - "t2s": 2, - "t1": 7, - "t2": 20 - } - ], - [ - 3081, - { - "d": 35, - "dB": 1557061200, - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 20 - } - ], - [ - 3090, - { - "d": 36, - "dB": 1557666000, - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 14 - } - ], - [ - 3100, - { - "d": 37, - "dB": 1558206000, - "t1s": 0, - "t2s": 2, - "t1": 41, - "t2": 20 - } - ], - [ - 4244, - { - "d": 7, - "dB": 1569679200, - "t1s": 2, - "t2s": 0, - "t1": 69, - "t2": 33 - } - ], - [ - 4283, - { - "d": 3, - "dB": 1566655200, - "t1s": 1, - "t2s": 3, - "t1": 33, - "t2": 28 - } - ], - [ - 3547, - { - "d": 38, - "dB": 1557669600, - "t1s": 1, - "t2s": 4, - "t1": 33, - "t2": 28 - } - ], - [ - 3527, - { - "d": 36, - "dB": 1556373600, - "t1s": 1, - "t2s": 2, - "t1": 33, - "t2": 69 - } - ], - [ - 2148, - { - "d": 18, - "dB": 1546803900, - "t1s": 1, - "t2s": 2, - "t1": 58, - "t2": 59 - } - ], - [ - 2160, - { - "d": 19, - "dB": 1547322300, - "t1s": 1, - "t2s": 2, - "t1": 64, - "t2": 58 - } - ], - [ - 2190, - { - "d": 22, - "dB": 1549108800, - "t1s": 0, - "t2s": 0, - "t1": 63, - "t2": 58 - } - ], - [ - 2204, - { - "d": 24, - "dB": 1550260800, - "t1s": 2, - "t2s": 2, - "t1": 66, - "t2": 58 - } - ], - [ - 2216, - { - "d": 25, - "dB": 1550923200, - "t1s": 2, - "t2s": 1, - "t1": 58, - "t2": 72 - } - ], - [ - 2236, - { - "d": 27, - "dB": 1552160700, - "t1s": 2, - "t2s": 1, - "t1": 58, - "t2": 73 - } - ], - [ - 2248, - { - "d": 28, - "dB": 1552843800, - "t1s": 0, - "t2s": 0, - "t1": 49, - "t2": 58 - } - ], - [ - 2255, - { - "d": 29, - "dB": 1553947200, - "t1s": 0, - "t2s": 2, - "t1": 58, - "t2": 47 - } - ], - [ - 2265, - { - "d": 30, - "dB": 1554229800, - "t1s": 1, - "t2s": 1, - "t1": 56, - "t2": 58 - } - ], - [ - 2276, - { - "d": 31, - "dB": 1554638400, - "t1s": 1, - "t2s": 0, - "t1": 58, - "t2": 57 - } - ], - [ - 2334, - { - "d": 37, - "dB": 1557678600, - "t1s": 2, - "t2s": 0, - "t1": 59, - "t2": 58 - } - ], - [ - 2345, - { - "d": 38, - "dB": 1558188900, - "t1s": 2, - "t2s": 2, - "t1": 58, - "t2": 64 - } - ], - [ - 4162, - { - "d": 15, - "dB": 1575487800, - "t1s": 2, - "t2s": 0, - "t1": 69, - "t2": 28 - } - ], - [ - 2141, - { - "d": 17, - "dB": 1546547400, - "t1s": 2, - "t2s": 2, - "t1": 64, - "t2": 62 - } - ], - [ - 2143, - { - "d": 18, - "dB": 1546772400, - "t1s": 0, - "t2s": 0, - "t1": 66, - "t2": 64 - } - ], - [ - 2170, - { - "d": 20, - "dB": 1547997300, - "t1s": 1, - "t2s": 1, - "t1": 64, - "t2": 57 - } - ], - [ - 2176, - { - "d": 21, - "dB": 1548531900, - "t1s": 3, - "t2s": 0, - "t1": 49, - "t2": 64 - } - ], - [ - 2189, - { - "d": 22, - "dB": 1549191600, - "t1s": 2, - "t2s": 2, - "t1": 64, - "t2": 56 - } - ], - [ - 2197, - { - "d": 23, - "dB": 1549656000, - "t1s": 0, - "t2s": 0, - "t1": 74, - "t2": 64 - } - ], - [ - 2227, - { - "d": 26, - "dB": 1551539700, - "t1s": 1, - "t2s": 2, - "t1": 64, - "t2": 48 - } - ], - [ - 2238, - { - "d": 27, - "dB": 1552239000, - "t1s": 0, - "t2s": 2, - "t1": 63, - "t2": 64 - } - ], - [ - 2251, - { - "d": 28, - "dB": 1552843800, - "t1s": 3, - "t2s": 1, - "t1": 64, - "t2": 72 - } - ], - [ - 2301, - { - "d": 33, - "dB": 1555864200, - "t1s": 2, - "t2s": 1, - "t1": 64, - "t2": 47 - } - ], - [ - 2305, - { - "d": 34, - "dB": 1556217000, - "t1s": 0, - "t2s": 1, - "t1": 52, - "t2": 64 - } - ], - [ - 2321, - { - "d": 35, - "dB": 1556469000, - "t1s": 1, - "t2s": 1, - "t1": 64, - "t2": 73 - } - ], - [ - 2326, - { - "d": 36, - "dB": 1557065700, - "t1s": 3, - "t2s": 2, - "t1": 62, - "t2": 64 - } - ], - [ - 2339, - { - "d": 37, - "dB": 1557678600, - "t1s": 1, - "t2s": 0, - "t1": 64, - "t2": 66 - } - ], - [ - 2297, - { - "d": 33, - "dB": 1555856100, - "t1s": 3, - "t2s": 0, - "t1": 62, - "t2": 57 - } - ], - [ - 2341, - { - "d": 37, - "dB": 1557678600, - "t1s": 3, - "t2s": 1, - "t1": 52, - "t2": 62 - } - ] - ] -} diff --git a/src/test/resources/__files/mlnstats.premier-league.20200217.json b/src/test/resources/__files/mlnstats.premier-league.20200217.json deleted file mode 100644 index 9d8ec6d..0000000 --- a/src/test/resources/__files/mlnstats.premier-league.20200217.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2020-02-17T04:30:41.533Z","mL":{"i":2,"n":"Premier League","cN":"Premier-League","aS":{"i":10,"n":"Premier League 2019-2020","cN":"Premier-League-2019-2020","mD":38,"cD":{"d":26,"lD":25}},"lS":{"i":7,"n":"Premier League 2018-2019","cN":"Premier-League-2018-2019","mD":38}},"le":[[2,"Premier-League"],[1,"Ligue-1"],[3,"Liga"],[5,"Serie-A"]],"p":[[2,{"n":"Lacazette","f":"Alexandre","fp":"A","r":25,"c":39,"s":{"g":6,"s":100.5,"n":19,"a":5.29,"d":1.05,"Ss":39.5,"Sn":8,"Sa":4.94,"Sd":0.62,"Og":9,"Os":155,"On":29,"Oa":5.34,"Od":1.05,"pa":29},"p":[[26,{"n":7,"e":4048,"g":1,"s":1}],[25,{"n":5,"e":4059}],[24,{"n":5,"e":4075}],[23,{"n":4,"e":4078}],[22,{"n":6,"e":4091}],[21,{"n":5.5,"e":4098}],[20,{"n":4.5,"e":4108}],[19,{"n":5,"e":4119}],[18,{"n":4.5,"e":4131,"s":1}],[15,{"n":5.5,"e":4158,"g":1}],[14,{"n":4,"e":4176}],[13,{"n":7,"e":4178,"g":2}],[12,{"n":4,"e":4196}],[11,{"n":6,"e":4198}],[10,{"n":6,"e":4208}],[9,{"n":4.5,"e":4225,"s":1}],[4,{"n":7,"e":4277,"g":1}],[3,{"n":4,"e":4285,"s":1}],[2,{"n":6,"e":4288,"g":1}],[-37,{"n":6,"e":3529}],[-36,{"n":3.5,"e":3522}],[-31,{"n":4.5,"e":3477}],[-35,{"n":5,"e":3509}],[-33,{"n":4.5,"e":3490}],[-32,{"n":6.5,"e":3478,"g":1}],[-30,{"n":6,"e":3458}],[-29,{"n":5,"e":3454}],[-28,{"n":6.5,"e":3438,"g":1,"s":1}],[-27,{"n":7,"e":3429,"g":1}]],"fo":[[4091,[{"t":"Y"}]],[4108,[{"t":"Y"}]],[4119,[{"t":"Y"}]]],"a":{"m":28,"a":35,"M":55,"n":8}}],[211,{"n":"Pépé","f":"Nicolas","fp":"A","r":20,"c":39,"s":{"g":4,"s":121.5,"n":22,"a":5.52,"d":1.14,"Og":10,"Os":202.5,"On":36,"Oa":5.63,"Od":1.26,"pm":23,"pa":13},"p":[[17,{"n":4.5,"e":4138}],[16,{"n":7,"e":4157,"g":1}],[8,{"n":5.5,"e":4236}],[7,{"n":4,"e":4247}],[6,{"n":7,"e":4256,"g":1}],[5,{"n":4.5,"e":4266}],[1,{"n":4.5,"e":4306,"s":1}],[-38,{"n":4.5,"e":3111,"s":1}],[-37,{"n":7.5,"e":3094,"g":2}],[-36,{"n":4,"e":3086}],[-35,{"n":4.5,"e":3074}],[-34,{"n":7,"e":3066,"g":1}],[-33,{"n":4.5,"e":3061}],[-32,{"n":8,"e":3044,"g":1}],[-31,{"n":6.5,"e":3040}],[-30,{"n":7.5,"e":3027,"g":1}],[-29,{"n":5,"e":3016}],[-28,{"n":7.5,"e":3009,"g":1}],[-27,{"n":5,"e":2996}],[-26,{"n":4.5,"e":2990}],[-25,{"n":5,"e":2975}],[26,{"n":8.5,"e":4048,"g":1}],[24,{"n":5.5,"e":4075}],[23,{"n":5.5,"e":4078}],[22,{"n":5.5,"e":4091}],[21,{"n":7.5,"e":4098,"g":1}],[20,{"n":4.5,"e":4108,"s":1}],[19,{"n":5,"e":4119,"s":1}],[15,{"n":5,"e":4158,"s":1}],[13,{"n":4.5,"e":4178,"s":1}],[12,{"n":5,"e":4196,"s":1}],[10,{"n":6,"e":4208}],[9,{"n":5.5,"e":4225}],[4,{"n":6.5,"e":4277}],[3,{"n":5,"e":4285}],[2,{"n":5,"e":4288,"s":1}]],"fo":[[4091,[{"t":"Y"}]]],"a":{"m":22,"a":43,"M":81,"n":9}}],[572,{"n":"Guendouzi","f":"Matteo","fp":"MD","r":13,"c":39,"s":{"s":111,"n":21,"a":5.29,"d":0.89,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":161,"On":31,"Oa":5.19,"Od":0.87,"pm":31},"p":[[-38,{"n":6,"e":3539}],[-34,{"n":5,"e":3507,"s":1}],[-37,{"n":4.5,"e":3529,"s":1}],[-36,{"n":5,"e":3522,"s":1}],[-35,{"n":5,"e":3509}],[-33,{"n":4,"e":3490}],[-32,{"n":6,"e":3478}],[-31,{"n":5,"e":3477,"s":1}],[-29,{"n":3.5,"e":3454}],[-28,{"n":6,"e":3438}],[25,{"n":4.5,"e":4059}],[24,{"n":5,"e":4075,"s":1}],[22,{"n":5,"e":4091,"s":1}],[21,{"n":5,"e":4098,"s":1}],[20,{"n":5.5,"e":4108}],[17,{"n":3.5,"e":4138}],[16,{"n":5,"e":4157,"s":1}],[14,{"n":5,"e":4176}],[13,{"n":6.5,"e":4178}],[12,{"n":4.5,"e":4196}],[11,{"n":4.5,"e":4198}],[10,{"n":5,"e":4208}],[9,{"n":5.5,"e":4225}],[8,{"n":6.5,"e":4236}],[7,{"n":6,"e":4247}],[6,{"n":6.5,"e":4256}],[5,{"n":4,"e":4266}],[4,{"n":7,"e":4277}],[3,{"n":5,"e":4285}],[2,{"n":6,"e":4288}],[1,{"n":5.5,"e":4306}]],"fo":[[4075,[{"t":"Y"}]],[4108,[{"t":"Y"}]]],"a":{"m":18,"a":21,"M":30,"n":6}}],[591,{"n":"Özil","f":"Mesut","fp":"MO","r":15,"c":39,"s":{"g":1,"s":85,"n":16,"a":5.31,"d":0.83,"Ss":35.5,"Sn":7,"Sa":5.07,"Sd":0.79,"Og":3,"Os":135.5,"On":26,"Oa":5.21,"Od":1,"pm":19,"pa":7},"p":[[-37,{"n":5,"e":3529}],[-35,{"n":5,"e":3509,"g":1}],[-34,{"n":5,"e":3507,"s":1}],[-33,{"n":3.5,"e":3490}],[-32,{"n":5.5,"e":3478}],[-31,{"n":3.5,"e":3477}],[-30,{"n":5.5,"e":3458}],[-29,{"n":4.5,"e":3454,"s":1}],[-28,{"n":8,"e":3438,"g":1}],[-27,{"n":5,"e":3429,"s":1}],[26,{"n":7.5,"e":4048,"g":1}],[25,{"n":5,"e":4059}],[24,{"n":6,"e":4075}],[23,{"n":5.5,"e":4078}],[22,{"n":4,"e":4091}],[21,{"n":6,"e":4098}],[20,{"n":4.5,"e":4108}],[19,{"n":4.5,"e":4119}],[17,{"n":4.5,"e":4138}],[16,{"n":5.5,"e":4157}],[15,{"n":5,"e":4158}],[14,{"n":6,"e":4176}],[13,{"n":5.5,"e":4178}],[12,{"n":5,"e":4196}],[11,{"n":5.5,"e":4198}],[5,{"n":5,"e":4266}]],"fo":[[4059,[{"t":"Y"}]]]}],[609,{"n":"Cech","f":"Petr","fp":"G","r":7,"c":39}],[623,{"n":"David Luiz","f":"","fp":"DC","r":15,"c":39,"s":{"g":2,"s":114,"n":23,"a":4.96,"d":1.09,"Ss":39.5,"Sn":8,"Sa":4.94,"Sd":1.15,"Og":3,"Os":174.5,"On":34,"Oa":5.13,"Od":1.06,"pd":34},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":7,"e":3531,"g":1}],[-36,{"n":5,"e":3524}],[-35,{"n":4.5,"e":3511}],[-34,{"n":5,"e":3503}],[-33,{"n":6,"e":3489}],[-27,{"n":6,"e":3432}],[-32,{"n":5.5,"e":3481}],[-31,{"n":4,"e":3471}],[-30,{"n":5.5,"e":3460}],[-28,{"n":7,"e":3443}],[26,{"n":6,"e":4048}],[25,{"n":6,"e":4059}],[24,{"n":2.5,"e":4075}],[23,{"n":5,"e":4078}],[22,{"n":4.5,"e":4091}],[21,{"n":6,"e":4098}],[20,{"n":4.5,"e":4108}],[19,{"n":5.5,"e":4119}],[18,{"n":5.5,"e":4131}],[15,{"n":3.5,"e":4158}],[14,{"n":4.5,"e":4176}],[13,{"n":5,"e":4178}],[12,{"n":4,"e":4196}],[11,{"n":5,"e":4198}],[10,{"n":6.5,"e":4208,"g":1}],[9,{"n":4.5,"e":4225}],[8,{"n":7,"e":4236,"g":1}],[7,{"n":5.5,"e":4247}],[6,{"n":5,"e":4256}],[5,{"n":4,"e":4266}],[4,{"n":5.5,"e":4277}],[3,{"n":3,"e":4285}],[2,{"n":5.5,"e":4288}]],"fo":[[4075,[{"t":"R"}]],[4108,[{"t":"Y"}]]],"a":{"m":17,"a":23,"M":29,"n":6}}],[665,{"n":"Mustafi","f":"Shkodran","fp":"DC","r":11,"c":39,"s":{"s":37.5,"n":7,"a":5.36,"d":1.03,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":0.58,"Os":82.5,"On":16,"Oa":5.16,"Od":1.36,"pd":16},"p":[[-38,{"n":7,"e":3539}],[-37,{"n":6.5,"e":3529}],[-36,{"n":3,"e":3522}],[-35,{"n":2.5,"e":3509}],[-34,{"n":6,"e":3507}],[-33,{"n":5,"e":3490}],[-32,{"n":6,"e":3478}],[-29,{"n":3.5,"e":3454}],[-27,{"n":5.5,"e":3429}],[26,{"n":6.5,"e":4048}],[25,{"n":5.5,"e":4059}],[24,{"n":6.5,"e":4075}],[23,{"n":5.5,"e":4078}],[20,{"n":3.5,"e":4108,"s":1}],[19,{"n":5,"e":4119,"s":1}],[14,{"n":5,"e":4176}]]}],[728,{"n":"Xhaka","f":"Granit","fp":"MD","r":15,"c":39,"s":{"s":107.5,"n":20,"a":5.38,"d":0.76,"Ss":30,"Sn":5,"Sa":6,"Sd":0.79,"Og":1,"Os":145,"On":27,"Oa":5.37,"Od":0.88,"pm":27},"p":[[-37,{"n":4.5,"e":3529}],[-36,{"n":3.5,"e":3522}],[-34,{"n":6.5,"e":3507}],[-31,{"n":4.5,"e":3477}],[-30,{"n":7,"e":3458,"g":1}],[-29,{"n":5.5,"e":3454}],[-27,{"n":6,"e":3429}],[26,{"n":6.5,"e":4048}],[25,{"n":6.5,"e":4059}],[24,{"n":6,"e":4075}],[23,{"n":5.5,"e":4078}],[22,{"n":5,"e":4091}],[21,{"n":7,"e":4098}],[19,{"n":5.5,"e":4119}],[18,{"n":5.5,"e":4131}],[16,{"n":4.5,"e":4157}],[15,{"n":4.5,"e":4158}],[14,{"n":5.5,"e":4176}],[10,{"n":5,"e":4208}],[9,{"n":4.5,"e":4225}],[8,{"n":5.5,"e":4236}],[7,{"n":4.5,"e":4247}],[6,{"n":4.5,"e":4256}],[5,{"n":5.5,"e":4266}],[4,{"n":4.5,"e":4277}],[3,{"n":5.5,"e":4285}],[1,{"n":6,"e":4306}]],"fo":[[4048,[{"t":"Y"}]],[4059,[{"t":"Y"}]],[4078,[{"t":"Y"}]]]}],[755,{"n":"Cédric Soares","f":"","fp":"DL","r":10,"c":39,"s":{"s":77,"n":16,"a":4.81,"d":0.75,"Os":77,"On":16,"Oa":4.81,"Od":0.75,"pd":14,"pm":2},"p":[[24,{"n":5,"e":4077}],[23,{"n":5,"e":4085}],[22,{"n":5.5,"e":4093}],[21,{"n":5,"e":4105}],[20,{"n":5,"e":4115}],[19,{"n":6.5,"e":4120}],[18,{"n":5,"e":4128}],[17,{"n":4.5,"e":4146}],[16,{"n":3,"e":4153}],[15,{"n":5,"e":4165}],[14,{"n":5,"e":4177}],[12,{"n":4,"e":4193}],[6,{"n":4,"e":4248}],[5,{"n":5,"e":4261}],[4,{"n":5,"e":4268}],[13,{"n":4.5,"e":4178}]],"fo":[[4077,[{"t":"I"}]]]}],[795,{"n":"Bellerín","f":"Héctor","fp":"DL","r":14,"c":39,"s":{"g":1,"s":26.5,"n":6,"a":4.42,"d":1.32,"Sg":1,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.06,"Og":1,"Os":26.5,"On":6,"Oa":4.42,"Od":1.32,"pd":4,"pm":2},"p":[[26,{"n":5,"e":4048}],[25,{"n":5,"e":4059}],[24,{"n":6.5,"e":4075,"g":1}],[15,{"n":3,"e":4158}],[13,{"n":3.5,"e":4178}],[12,{"n":3.5,"e":4196}]]}],[860,{"n":"Chambers","f":"Calum","fp":"DC","r":1,"c":39,"s":{"g":1,"s":67,"n":14,"a":4.79,"d":1.1,"Og":2,"Os":126.5,"On":26,"Oa":4.87,"Od":1.17,"pd":17,"pm":9},"p":[[-38,{"n":4,"e":3541}],[-37,{"n":5.5,"e":3537}],[-36,{"n":5.5,"e":3521}],[-35,{"n":6,"e":3508}],[-34,{"n":5.5,"e":3501}],[-33,{"n":2.5,"e":3496}],[-32,{"n":4.5,"e":3483}],[-31,{"n":5,"e":3472}],[-30,{"n":3.5,"e":3463}],[-29,{"n":7.5,"e":3452,"g":1}],[-28,{"n":4.5,"e":3445}],[-27,{"n":5.5,"e":3437}],[20,{"n":5.5,"e":4108}],[18,{"n":6,"e":4131}],[17,{"n":3,"e":4138}],[16,{"n":6,"e":4157}],[14,{"n":4,"e":4176}],[13,{"n":4,"e":4178}],[12,{"n":4,"e":4196}],[11,{"n":4,"e":4198}],[10,{"n":4,"e":4208}],[9,{"n":4,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":7,"e":4256,"g":1,"s":1}],[1,{"n":5.5,"e":4306}]],"fo":[[4108,[{"t":"I"}]],[4131,[{"t":"Y"}]]]}],[917,{"n":"Mohamed Elneny","f":"","fp":"MD","r":7,"c":39,"s":{"Os":20.5,"On":4,"Oa":5.13,"Od":1.25,"pm":4},"p":[[-38,{"n":6.5,"e":3539}],[-35,{"n":5,"e":3509}],[-33,{"n":3.5,"e":3490}],[-32,{"n":5.5,"e":3478,"s":1}]]}],[983,{"n":"Holding","f":"Rob","fp":"DC","r":9,"c":39,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pd":2},"p":[[24,{"n":5,"e":4075,"s":1}],[12,{"n":3.5,"e":4196}]]}],[1090,{"n":"Jenkinson","f":"Carl","fp":"DC","r":3,"c":39,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pm":2},"p":[[-35,{"n":3.5,"e":3509}],[-28,{"n":5,"e":3438}]]}],[1124,{"n":"Maitland-Niles","f":"Ainsley","fp":"MO","r":9,"c":39,"s":{"s":66,"n":14,"a":4.71,"d":0.96,"Os":97,"On":21,"Oa":4.62,"Od":0.99,"pd":16,"pm":5},"p":[[-36,{"n":3,"e":3522}],[-35,{"n":5,"e":3509,"s":1}],[-34,{"n":5.5,"e":3507,"s":1}],[-33,{"n":4,"e":3490}],[-32,{"n":5.5,"e":3478}],[-31,{"n":3,"e":3477}],[-30,{"n":5,"e":3458}],[23,{"n":4.5,"e":4078}],[22,{"n":4,"e":4091}],[21,{"n":5.5,"e":4098}],[20,{"n":4,"e":4108}],[19,{"n":4.5,"e":4119}],[18,{"n":5,"e":4131}],[17,{"n":4.5,"e":4138}],[16,{"n":6,"e":4157}],[6,{"n":3,"e":4256}],[5,{"n":5,"e":4266}],[4,{"n":5.5,"e":4277}],[3,{"n":3.5,"e":4285}],[2,{"n":4.5,"e":4288}],[1,{"n":6.5,"e":4306}]],"fo":[[4091,[{"t":"Y"}]],[4108,[{"t":"Y"}]],[4119,[{"t":"Y"}]]]}],[1289,{"n":"Kolasinac","f":"Sead","fp":"DC","r":10,"c":39,"s":{"s":80,"n":16,"a":5,"d":0.55,"Os":121.5,"On":25,"Oa":4.86,"Od":0.74,"pd":19,"pm":6},"p":[[-37,{"n":5,"e":3529,"s":1}],[-36,{"n":3.5,"e":3522}],[-35,{"n":3.5,"e":3509}],[-33,{"n":3.5,"e":3490}],[-32,{"n":5,"e":3478}],[-31,{"n":4.5,"e":3477,"s":1}],[-30,{"n":5,"e":3458}],[-28,{"n":5,"e":3438}],[-27,{"n":6.5,"e":3429}],[22,{"n":4.5,"e":4091}],[21,{"n":5,"e":4098}],[17,{"n":4.5,"e":4138}],[16,{"n":6,"e":4157,"s":1}],[15,{"n":4,"e":4158}],[14,{"n":4.5,"e":4176}],[12,{"n":4.5,"e":4196}],[11,{"n":5,"e":4198,"s":1}],[10,{"n":5,"e":4208,"s":1}],[9,{"n":5,"e":4225}],[8,{"n":6,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4256}],[5,{"n":5.5,"e":4266}],[4,{"n":5.5,"e":4277}],[2,{"n":5,"e":4288,"s":1}]],"fo":[[4098,[{"t":"I"},{"t":"Y"}]],[4138,[{"t":"I"}]]]}],[1346,{"n":"Willock","f":"Joseph","fp":"MD","r":7,"c":39,"s":{"s":91.5,"n":19,"a":4.82,"d":0.58,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Os":96,"On":20,"Oa":4.8,"Od":0.57,"pm":20},"p":[[-38,{"n":4.5,"e":3539}],[26,{"n":5,"e":4048,"s":1}],[25,{"n":5.5,"e":4059,"s":1}],[24,{"n":4.5,"e":4075,"s":1}],[20,{"n":5,"e":4108,"s":1}],[19,{"n":5,"e":4119,"s":1}],[18,{"n":5,"e":4131,"s":1}],[17,{"n":4.5,"e":4138,"s":1}],[15,{"n":3.5,"e":4158}],[14,{"n":5,"e":4176}],[13,{"n":5.5,"e":4178,"s":1}],[12,{"n":5,"e":4196,"s":1}],[9,{"n":3.5,"e":4225}],[8,{"n":5,"e":4236,"s":1}],[7,{"n":5.5,"e":4247,"s":1}],[6,{"n":5,"e":4256,"s":1}],[5,{"n":5,"e":4266,"s":1}],[3,{"n":4,"e":4285}],[2,{"n":5,"e":4288}],[1,{"n":5,"e":4306}]],"fo":[[4131,[{"t":"Y"}]]]}],[1389,{"n":"Nelson","f":"Reiss","fp":"A","r":3,"c":39,"s":{"s":47.5,"n":10,"a":4.75,"d":0.49,"Os":47.5,"On":10,"Oa":4.75,"Od":0.49,"pm":5,"pa":5},"p":[[22,{"n":4.5,"e":4091,"s":1}],[21,{"n":4.5,"e":4098,"s":1}],[20,{"n":4.5,"e":4108}],[19,{"n":5.5,"e":4119}],[18,{"n":5,"e":4131}],[16,{"n":4.5,"e":4157,"s":1}],[7,{"n":5,"e":4247,"s":1}],[5,{"n":4.5,"e":4266,"s":1}],[2,{"n":4,"e":4288}],[1,{"n":5.5,"e":4306}]]}],[1702,{"n":"Ceballos","f":"Dani","fp":"MO","r":9,"c":39,"s":{"s":64.5,"n":12,"a":5.38,"d":0.8,"Og":1,"Os":90.5,"On":17,"Oa":5.32,"Od":0.85,"pm":16,"pa":1},"p":[[-35,{"n":4,"e":2316}],[-29,{"n":6.5,"e":2260,"g":1}],[-28,{"n":6,"e":2247,"s":1}],[-27,{"n":5,"e":2240}],[-24,{"n":4.5,"e":2209}],[26,{"n":6.5,"e":4048}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4208}],[9,{"n":5,"e":4225,"s":1}],[8,{"n":5.5,"e":4236}],[7,{"n":5,"e":4247,"s":1}],[6,{"n":5,"e":4256}],[5,{"n":5,"e":4266}],[4,{"n":6,"e":4277,"s":1}],[3,{"n":4,"e":4285}],[2,{"n":7,"e":4288}],[1,{"n":5,"e":4306,"s":1}]]}],[1817,{"n":"Campbell","f":"Joel","fp":"A","r":1,"c":39}],[2013,{"n":"Martínez","f":"Emiliano","fp":"G","r":7,"c":39}],[2064,{"n":"Macey","f":"Matt","fp":"G","r":1,"c":39}],[2066,{"n":"Nketiah","f":"Eddie","fp":"A","r":3,"c":39,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":33.5,"On":7,"Oa":4.79,"Od":0.64,"pa":7},"p":[[-38,{"n":6,"e":3539,"g":1,"s":1}],[-36,{"n":4,"e":3522,"s":1}],[-31,{"n":5,"e":3477,"s":1}],[-30,{"n":4.5,"e":3458,"s":1}],[26,{"n":5,"e":4048}],[25,{"n":4.5,"e":4059,"s":1}],[23,{"n":4.5,"e":4078,"s":1}]]}],[2071,{"n":"Gilmour","f":"Charlie","fp":"MD","r":1,"c":39}],[2123,{"n":"Iliev","f":"Dejan","fp":"G","r":1,"c":39}],[2125,{"n":"Osei-Tutu","f":"Jordi","fp":"DC","r":1,"c":39}],[2203,{"n":"Mavropanos","f":"Konstantinos","fp":"DC","r":5,"c":39,"s":{"Os":14.5,"On":3,"Oa":4.83,"Od":0.76,"pd":3},"p":[[-38,{"n":5,"e":3539}],[-35,{"n":4,"e":3509}],[-34,{"n":5.5,"e":3507}]]}],[2302,{"n":"Aubameyang","f":"Pierre-Emerick","fp":"A","r":46,"c":39,"s":{"g":15,"s":137.5,"n":24,"a":5.73,"d":1.26,"Ss":5,"Sn":1,"Sa":5,"Og":22,"Os":199.5,"On":35,"Oa":5.7,"Od":1.21,"pm":9,"pa":26},"p":[[-38,{"n":8,"e":3539,"g":2}],[-37,{"n":6,"e":3529,"g":1}],[-36,{"n":4.5,"e":3522}],[-35,{"n":6,"e":3509,"g":1}],[-34,{"n":6,"e":3507,"g":1}],[-33,{"n":4.5,"e":3490,"s":1}],[-32,{"n":6,"e":3478,"s":1}],[-30,{"n":6,"e":3458,"g":1}],[-29,{"n":4,"e":3454,"s":1}],[-28,{"n":6.5,"e":3438,"g":1}],[-27,{"n":4.5,"e":3429,"s":1}],[26,{"n":7.5,"e":4048,"g":1}],[25,{"n":5,"e":4059}],[22,{"n":5.5,"e":4091,"g":1}],[21,{"n":5.5,"e":4098}],[20,{"n":7,"e":4108,"g":1}],[19,{"n":6.5,"e":4119,"g":1}],[18,{"n":4,"e":4131}],[17,{"n":3,"e":4138}],[16,{"n":7,"e":4157,"g":1}],[15,{"n":5,"e":4158}],[14,{"n":8,"e":4176,"g":2}],[13,{"n":5.5,"e":4178}],[12,{"n":4.5,"e":4196}],[11,{"n":6,"e":4198,"g":1}],[10,{"n":4,"e":4208}],[9,{"n":4.5,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":6.5,"e":4247,"g":1}],[6,{"n":6,"e":4256,"g":1}],[5,{"n":7.5,"e":4266,"g":2}],[4,{"n":7,"e":4277,"g":1}],[3,{"n":5,"e":4285}],[2,{"n":6,"e":4288,"g":1}],[1,{"n":6,"e":4306,"g":1}]],"fo":[[4091,[{"t":"R"}]],[4119,[{"t":"Y"}]]],"a":{"m":51,"a":85,"M":124,"n":16}}],[2500,{"n":"Leno","f":"Bernd","fp":"G","r":24,"c":39,"s":{"s":151,"n":26,"a":5.81,"d":0.88,"Ss":145,"Sn":25,"Sa":5.8,"Sd":0.9,"Os":219,"On":38,"Oa":5.76,"Od":0.97,"pg":38},"p":[[-38,{"n":6,"e":3539}],[-37,{"n":6,"e":3529}],[-36,{"n":6.5,"e":3522}],[-35,{"n":4.5,"e":3509}],[-34,{"n":6,"e":3507}],[-33,{"n":6,"e":3490}],[-32,{"n":6,"e":3478}],[-31,{"n":2.5,"e":3477}],[-30,{"n":7,"e":3458}],[-29,{"n":5.5,"e":3454}],[-28,{"n":5.5,"e":3438}],[-27,{"n":6.5,"e":3429}],[26,{"n":6,"e":4048}],[25,{"n":6,"e":4059}],[24,{"n":7,"e":4075}],[23,{"n":5,"e":4078}],[22,{"n":4.5,"e":4091}],[21,{"n":7,"e":4098}],[20,{"n":3.5,"e":4108}],[19,{"n":6,"e":4119}],[18,{"n":5.5,"e":4131}],[17,{"n":5,"e":4138}],[16,{"n":6,"e":4157}],[15,{"n":6,"e":4158}],[14,{"n":7,"e":4176}],[13,{"n":6,"e":4178}],[12,{"n":6,"e":4196}],[11,{"n":7,"e":4198}],[10,{"n":5.5,"e":4208}],[9,{"n":4.5,"e":4225}],[8,{"n":6,"e":4236}],[7,{"n":5.5,"e":4247}],[6,{"n":6.5,"e":4256}],[5,{"n":6.5,"e":4266}],[4,{"n":5.5,"e":4277}],[3,{"n":5,"e":4285}],[2,{"n":5.5,"e":4288}],[1,{"n":7,"e":4306}]],"a":{"m":25,"a":30,"M":38,"n":21}}],[2531,{"n":"Sokratis","f":"","fp":"DC","r":11,"c":39,"s":{"g":2,"s":92,"n":18,"a":5.11,"d":0.93,"Og":3,"Os":138.5,"On":27,"Oa":5.13,"Od":0.94,"pd":27},"p":[[-37,{"n":5.5,"e":3529}],[-36,{"n":3,"e":3522}],[-33,{"n":5.5,"e":3490}],[-32,{"n":6,"e":3478}],[-31,{"n":4.5,"e":3477,"g":1}],[-30,{"n":6,"e":3458}],[-29,{"n":5.5,"e":3454}],[-28,{"n":4.5,"e":3438}],[-27,{"n":6,"e":3429}],[22,{"n":5.5,"e":4091}],[21,{"n":7,"e":4098,"g":1}],[19,{"n":5.5,"e":4119}],[17,{"n":3,"e":4138}],[16,{"n":5.5,"e":4157}],[15,{"n":4.5,"e":4158}],[13,{"n":4.5,"e":4178}],[11,{"n":5.5,"e":4198}],[10,{"n":6,"e":4208,"g":1}],[9,{"n":4,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":5.5,"e":4256}],[5,{"n":4,"e":4266}],[4,{"n":5,"e":4277}],[3,{"n":4.5,"e":4285}],[2,{"n":6,"e":4288}],[1,{"n":6,"e":4306}]],"fo":[[4119,[{"t":"I"}]],[4138,[{"t":"Y"}]]],"a":{"m":16,"a":18,"M":21,"n":5}}],[2535,{"n":"Lichtsteiner","f":"Stephan","fp":"DC","r":5,"c":39,"s":{"Os":15,"On":3,"Oa":5,"Od":0.5,"pd":3},"p":[[-38,{"n":5.5,"e":3539}],[-37,{"n":5,"e":3529}],[-27,{"n":4.5,"e":3429}]]}],[2549,{"n":"Torreira","f":"Lucas","fp":"MD","r":15,"c":39,"s":{"g":1,"s":123.5,"n":23,"a":5.37,"d":0.77,"Ss":82,"Sn":15,"Sa":5.47,"Sd":0.72,"Og":1,"Os":163,"On":31,"Oa":5.26,"Od":0.76,"pm":31},"p":[[-37,{"n":5.5,"e":3529}],[-36,{"n":4.5,"e":3522}],[-35,{"n":4.5,"e":3509,"s":1}],[-34,{"n":5,"e":3507}],[-31,{"n":4.5,"e":3477}],[-29,{"n":4,"e":3454,"s":1}],[-28,{"n":5.5,"e":3438}],[-27,{"n":6,"e":3429}],[26,{"n":4.5,"e":4048,"s":1}],[25,{"n":5.5,"e":4059,"s":1}],[24,{"n":5.5,"e":4075}],[23,{"n":6,"e":4078}],[22,{"n":5,"e":4091}],[21,{"n":6.5,"e":4098}],[20,{"n":4.5,"e":4108}],[19,{"n":6,"e":4119}],[18,{"n":6,"e":4131}],[17,{"n":5,"e":4138}],[16,{"n":6.5,"e":4157}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4176,"s":1}],[13,{"n":5.5,"e":4178}],[12,{"n":4,"e":4196}],[11,{"n":6,"e":4198}],[8,{"n":5,"e":4236,"s":1}],[7,{"n":4.5,"e":4247}],[6,{"n":4.5,"e":4256,"s":1}],[5,{"n":5,"e":4266,"s":1}],[4,{"n":6,"e":4277}],[3,{"n":7,"e":4285,"g":1,"s":1}],[2,{"n":5,"e":4288,"s":1}]],"fo":[[4091,[{"t":"I"}]],[4059,[{"t":"Y"}]],[4108,[{"t":"Y"}]],[4119,[{"t":"Y"}]]]}],[2887,{"n":"Smith Rowe","f":"Emile","fp":"MO","r":3,"c":39,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[18,{"n":5,"e":4131}],[17,{"n":5,"e":4138,"s":1}]]}],[2926,{"n":"John-Jules","f":"Tyreece","fp":"A","r":1,"c":39}],[2927,{"n":"Saka","f":"Bukayo","fp":"A","r":8,"c":39,"s":{"s":81.5,"n":16,"a":5.09,"d":0.78,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Os":81.5,"On":16,"Oa":5.09,"Od":0.78,"pd":12,"pm":3,"pa":1},"p":[[26,{"n":7,"e":4048}],[25,{"n":5,"e":4059}],[24,{"n":5.5,"e":4075}],[23,{"n":5,"e":4078}],[21,{"n":5,"e":4098,"s":1}],[20,{"n":4,"e":4108}],[19,{"n":5,"e":4119}],[18,{"n":5,"e":4131}],[17,{"n":5,"e":4138,"s":1}],[14,{"n":4.5,"e":4176,"s":1}],[11,{"n":4,"e":4198,"s":1}],[10,{"n":4.5,"e":4208,"s":1}],[9,{"n":5,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":6.5,"e":4247}],[6,{"n":5.5,"e":4256}]],"fo":[[4059,[{"t":"I"}]],[4048,[{"t":"Y"}]],[4098,[{"t":"Y"}]],[4131,[{"t":"Y"}]]]}],[2931,{"n":"Medley","f":"Zech","fp":"DC","r":1,"c":39}],[2934,{"n":"Pleguezuelo","f":"Julio","fp":"DC","r":1,"c":39}],[5416,{"n":"Gabriel Martinelli","f":"","fp":"MO","r":15,"c":39,"s":{"g":3,"s":74,"n":14,"a":5.29,"d":0.73,"Sg":2,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":0.85,"Og":3,"Os":74,"On":14,"Oa":5.29,"Od":0.73,"pm":14},"p":[[25,{"n":4.5,"e":4059}],[24,{"n":6.5,"e":4075,"g":1}],[23,{"n":6,"e":4078,"g":1}],[22,{"n":5.5,"e":4091,"s":1}],[18,{"n":5,"e":4131}],[17,{"n":4.5,"e":4138}],[16,{"n":7,"e":4157,"g":1}],[15,{"n":5,"e":4158,"s":1}],[14,{"n":5,"e":4176,"s":1}],[13,{"n":5,"e":4178,"s":1}],[11,{"n":5,"e":4198,"s":1}],[9,{"n":5,"e":4225,"s":1}],[8,{"n":5,"e":4236,"s":1}],[1,{"n":5,"e":4306,"s":1}]]}],[5428,{"n":"Thompson","f":"Dominic","fp":"DC","r":1,"c":39}],[5429,{"n":"Olayinka","f":"James","fp":"MD","r":1,"c":39}],[5440,{"n":"Burton","f":"Robbie","fp":"MO","r":1,"c":39}],[6122,{"n":"Tierney","f":"Kieran","fp":"DL","r":6,"c":39,"s":{"s":24.5,"n":5,"a":4.9,"d":0.55,"Os":24.5,"On":5,"Oa":4.9,"Od":0.55,"pd":4,"pm":1},"p":[[16,{"n":5,"e":4157}],[15,{"n":5,"e":4158,"s":1}],[13,{"n":4,"e":4178}],[11,{"n":5.5,"e":4198}],[10,{"n":5,"e":4208}]]}],[6427,{"n":"Bola","f":"Tolaji","fp":"DC","r":1,"c":39}],[6548,{"n":"Balogun","f":"Folarin","fp":"A","r":1,"c":39}],[6557,{"n":"Marí","f":"Pablo","fp":"DC","r":6,"c":39}],[193,{"n":"El Ghazi","f":"Anwar","fp":"A","r":13,"c":78,"s":{"g":4,"s":115,"n":23,"a":5,"d":1.04,"Sg":1,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":0.48,"Og":4,"Os":115,"On":23,"Oa":5,"Od":1.04,"pm":6,"pa":17},"p":[[26,{"n":5,"e":4049}],[25,{"n":4,"e":4058}],[24,{"n":4.5,"e":4068}],[23,{"n":4.5,"e":4079}],[22,{"n":3.5,"e":4088,"g":1}],[20,{"n":4.5,"e":4116,"s":1}],[19,{"n":6,"e":4118}],[17,{"n":4.5,"e":4145}],[16,{"n":4,"e":4148}],[14,{"n":5.5,"e":4175}],[13,{"n":6.5,"e":4179,"g":1}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4212,"s":1}],[9,{"n":4,"e":4218}],[8,{"n":7,"e":4232}],[7,{"n":6.5,"e":4239,"g":1}],[5,{"n":5,"e":4267}],[3,{"n":7,"e":4278,"g":1,"s":1}],[2,{"n":4,"e":4289}],[1,{"n":4,"e":4304}],[18,{"n":4,"e":4128}],[6,{"n":6,"e":4256}]],"fo":[[4088,[{"t":"Y"}]],[4128,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":20,"n":11}}],[344,{"n":"Guilbert","f":"Frederic","fp":"DL","r":10,"c":78,"s":{"s":99.5,"n":21,"a":4.74,"d":0.72,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.58,"Og":1,"Os":161,"On":34,"Oa":4.74,"Od":0.9,"pd":25,"pm":9},"p":[[21,{"n":5,"e":4100}],[4,{"n":4.5,"e":4270}],[-38,{"n":5,"e":3104}],[-37,{"n":3,"e":3095}],[-36,{"n":7,"e":3084,"g":1}],[-35,{"n":5.5,"e":3073}],[-34,{"n":5,"e":3065}],[-33,{"n":5,"e":3056,"s":1}],[-32,{"n":4.5,"e":3042}],[-31,{"n":3.5,"e":3038}],[-30,{"n":5.5,"e":3025}],[-29,{"n":2.5,"e":3014}],[-27,{"n":5,"e":2994}],[-26,{"n":5,"e":2991}],[-25,{"n":5,"e":2974}],[26,{"n":3.5,"e":4049}],[25,{"n":4,"e":4058}],[24,{"n":5,"e":4068}],[23,{"n":4,"e":4079}],[20,{"n":5,"e":4116,"s":1}],[18,{"n":4,"e":4128}],[17,{"n":4.5,"e":4145}],[16,{"n":5,"e":4148,"s":1}],[14,{"n":4.5,"e":4175}],[13,{"n":5,"e":4179}],[12,{"n":4,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4,"e":4212}],[9,{"n":6.5,"e":4218}],[8,{"n":5,"e":4232}],[7,{"n":5,"e":4239}],[6,{"n":4.5,"e":4256}],[5,{"n":5.5,"e":4267}],[3,{"n":6,"e":4278}]],"fo":[[4049,[{"t":"Y"}]]]}],[708,{"n":"Heaton","f":"Tom","fp":"G","r":1,"c":78,"s":{"ao":1,"s":106,"n":20,"a":5.3,"d":1.04,"Oao":1,"Os":167,"On":32,"Oa":5.22,"Od":1.15,"pg":32},"p":[[15,{"n":7,"e":4164}],[-37,{"n":4,"e":3532}],[-36,{"n":6,"e":3519}],[-34,{"n":6.5,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6.5,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":2.5,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":5,"e":3444}],[-27,{"n":7,"e":3430}],[-38,{"n":4,"e":3539}],[-35,{"n":6,"e":3511}],[21,{"n":4.5,"e":4100}],[20,{"n":5,"e":4116}],[19,{"n":7,"e":4118}],[18,{"n":4.5,"e":4128}],[17,{"n":4,"e":4145}],[16,{"n":4,"e":4148}],[14,{"n":5.5,"e":4175,"a":1}],[13,{"n":7,"e":4179}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4212}],[9,{"n":6.5,"e":4218}],[8,{"n":6,"e":4232}],[7,{"n":4,"e":4239}],[6,{"n":5,"e":4256}],[5,{"n":5.5,"e":4267}],[4,{"n":6,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":4,"e":4289}],[1,{"n":4.5,"e":4304}]],"fo":[[4100,[{"t":"I"}]]]}],[802,{"n":"Borja Bastón","f":"","fp":"A","r":7,"c":78,"s":{"s":4,"n":1,"a":4,"Og":1,"Os":52.5,"On":12,"Oa":4.38,"Od":0.93,"pa":12},"p":[[-37,{"n":4,"e":2338,"s":1}],[-36,{"n":3.5,"e":2322}],[-35,{"n":7,"e":2317,"g":1}],[-34,{"n":4,"e":2302}],[-32,{"n":4,"e":2286}],[-31,{"n":4,"e":2272}],[-30,{"n":3.5,"e":2267}],[-28,{"n":5,"e":2245}],[-27,{"n":4.5,"e":2232}],[-26,{"n":4.5,"e":2227}],[-25,{"n":4.5,"e":2212,"s":1}],[26,{"n":4,"e":4049,"s":1}]]}],[816,{"n":"Drinkwater","f":"Daniel","fp":"MD","r":8,"c":78,"s":{"s":19,"n":5,"a":3.8,"d":1.1,"Os":19,"On":5,"Oa":3.8,"Od":1.1,"pm":5},"p":[[15,{"n":4,"e":4159}],[26,{"n":4,"e":4049}],[24,{"n":4,"e":4068}],[23,{"n":5,"e":4079}],[22,{"n":2,"e":4088}]],"fo":[[4079,[{"t":"Y"}]]]}],[939,{"n":"Targett","f":"Matt","fp":"DL","r":10,"c":78,"s":{"g":1,"s":87,"n":18,"a":4.83,"d":1.28,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.76,"Og":2,"Os":103.5,"On":21,"Oa":4.93,"Od":1.25,"pd":16,"pm":5},"p":[[-38,{"n":5.5,"e":3545,"s":1}],[-36,{"n":6.5,"e":3525,"g":1,"s":1}],[-27,{"n":4.5,"e":3429}],[26,{"n":4,"e":4049}],[25,{"n":4,"e":4058}],[24,{"n":5.5,"e":4068}],[23,{"n":5,"e":4079}],[20,{"n":5,"e":4116}],[19,{"n":5,"e":4118}],[18,{"n":3,"e":4128}],[17,{"n":3,"e":4145}],[16,{"n":3,"e":4148}],[15,{"n":4.5,"e":4164}],[14,{"n":6.5,"e":4175}],[13,{"n":7,"e":4179}],[12,{"n":4.5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":3.5,"e":4212}],[9,{"n":7,"e":4218,"g":1}],[8,{"n":6,"e":4232}],[7,{"n":5.5,"e":4239}]],"fo":[[4116,[{"t":"I"}]],[4145,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":17,"n":6}}],[1059,{"n":"Mings","f":"Tyrone","fp":"DC","r":15,"c":78,"s":{"g":2,"s":110,"n":21,"a":5.24,"d":0.98,"Sg":1,"Ss":25,"Sn":5,"Sa":5,"Sd":1.54,"Og":2,"Os":110,"On":21,"Oa":5.24,"Od":0.98,"pd":21},"p":[[25,{"n":4,"e":4058}],[24,{"n":7,"e":4068,"g":1}],[23,{"n":5.5,"e":4079}],[22,{"n":3,"e":4088}],[21,{"n":5.5,"e":4100}],[16,{"n":4.5,"e":4148}],[15,{"n":4.5,"e":4164}],[14,{"n":6,"e":4175,"g":1}],[13,{"n":7,"e":4179}],[12,{"n":4.5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4.5,"e":4212}],[9,{"n":6,"e":4218}],[8,{"n":5.5,"e":4232}],[7,{"n":5,"e":4239}],[6,{"n":4.5,"e":4256}],[5,{"n":5.5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":6.5,"e":4304}]],"fo":[[4058,[{"t":"Y"}]],[4068,[{"t":"Y"}]]],"a":{"m":16,"a":18,"M":23,"n":14}}],[1885,{"n":"Douglas Luiz","f":"","fp":"MD","r":13,"c":78,"s":{"g":3,"s":125,"n":24,"a":5.21,"d":0.95,"Sg":2,"Ss":93,"Sn":18,"Sa":5.17,"Sd":1.08,"Og":3,"Os":173,"On":33,"Oa":5.24,"Od":0.95,"pm":33},"p":[[-37,{"n":5,"e":2336}],[-35,{"n":6.5,"e":2315}],[-34,{"n":4,"e":2310,"s":1}],[-33,{"n":4,"e":2295}],[-31,{"n":5.5,"e":2279,"s":1}],[-30,{"n":5,"e":2263}],[-26,{"n":6.5,"e":2231}],[-25,{"n":5,"e":2217}],[26,{"n":5.5,"e":4049}],[25,{"n":4.5,"e":4058}],[24,{"n":6,"e":4068,"g":1,"s":1}],[-24,{"n":6.5,"e":2209}],[23,{"n":6,"e":4079,"s":1}],[22,{"n":3,"e":4088}],[21,{"n":7,"e":4100}],[20,{"n":4,"e":4116}],[19,{"n":6,"e":4118}],[18,{"n":4,"e":4128}],[17,{"n":5,"e":4145,"s":1}],[16,{"n":3.5,"e":4148}],[15,{"n":6,"e":4164,"s":1}],[14,{"n":5.5,"e":4175}],[13,{"n":6,"e":4179}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4.5,"e":4212}],[9,{"n":5.5,"e":4218,"s":1}],[8,{"n":6.5,"e":4232,"g":1,"s":1}],[5,{"n":5,"e":4267,"s":1}],[4,{"n":5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":5.5,"e":4289,"g":1}],[1,{"n":5,"e":4304,"s":1}]],"fo":[[4058,[{"t":"Y"}]],[4068,[{"t":"Y"}]],[4118,[{"t":"Y"}]]],"a":{"m":16,"a":16,"M":16,"n":5}}],[2587,{"n":"Hause","f":"Kortney","fp":"DC","r":10,"c":78,"s":{"s":42.5,"n":10,"a":4.25,"d":1.57,"Ss":39.5,"Sn":9,"Sa":4.39,"Sd":1.6,"Os":42.5,"On":10,"Oa":4.25,"Od":1.57,"pd":10},"p":[[26,{"n":3,"e":4049}],[25,{"n":3,"e":4058}],[24,{"n":6,"e":4068}],[23,{"n":5,"e":4079}],[22,{"n":2,"e":4088}],[21,{"n":5.5,"e":4100}],[20,{"n":4,"e":4116}],[19,{"n":7,"e":4118}],[18,{"n":3.5,"e":4128}],[17,{"n":3.5,"e":4145}]],"fo":[[4058,[{"t":"Y"}]],[4145,[{"t":"Y"}]]]}],[2823,{"n":"Engels","f":"Björn","fp":"DC","r":8,"c":78,"s":{"g":1,"s":75,"n":16,"a":4.69,"d":1.03,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Oao":1,"Os":141,"On":29,"Oa":4.86,"Od":1.05,"pd":29},"p":[[-37,{"n":6,"e":3092}],[-35,{"n":3,"e":3079}],[-34,{"n":5,"e":3063}],[-33,{"n":4,"e":3059,"a":1}],[-32,{"n":5.5,"e":3046}],[-30,{"n":3.5,"e":3030}],[-29,{"n":5.5,"e":3021}],[-28,{"n":6.5,"e":3003}],[-27,{"n":5.5,"e":3001}],[-26,{"n":5,"e":2986}],[-25,{"n":6.5,"e":2980}],[-36,{"n":4.5,"e":3084}],[-31,{"n":5.5,"e":3040}],[26,{"n":3.5,"e":4049,"g":1}],[25,{"n":5.5,"e":4058,"s":1}],[18,{"n":3.5,"e":4128}],[17,{"n":4.5,"e":4145}],[16,{"n":3.5,"e":4148,"s":1}],[11,{"n":5,"e":4199}],[10,{"n":3.5,"e":4212}],[9,{"n":5,"e":4218}],[8,{"n":7,"e":4232}],[7,{"n":4.5,"e":4239}],[6,{"n":3.5,"e":4256}],[5,{"n":5.5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4304}]]}],[3651,{"n":"Ramsey","f":"Jacob","fp":"MO","r":1,"c":78}],[3653,{"n":"Revan","f":"Dominic","fp":"DC","r":1,"c":78}],[3656,{"n":"Davis","f":"Keinan","fp":"MO","r":4,"c":78,"s":{"s":32.5,"n":7,"a":4.64,"d":0.75,"Ss":6,"Sn":1,"Sa":6,"Os":32.5,"On":7,"Oa":4.64,"Od":0.75,"pa":7},"p":[[25,{"n":6,"e":4058,"s":1}],[10,{"n":4,"e":4212,"s":1}],[9,{"n":5,"e":4218,"s":1}],[7,{"n":4.5,"e":4239,"s":1}],[5,{"n":4,"e":4267,"s":1}],[4,{"n":5,"e":4270,"s":1}],[2,{"n":4,"e":4289,"s":1}]]}],[3661,{"n":"Doyle-Hayes","f":"Jake","fp":"MD","r":3,"c":78}],[3662,{"n":"Wesley","f":"","fp":"A","r":1,"c":78,"s":{"g":5,"s":96.5,"n":21,"a":4.6,"d":1.29,"Og":5,"Os":96.5,"On":21,"Oa":4.6,"Od":1.29,"pa":21},"p":[[21,{"n":6,"e":4100,"g":1}],[20,{"n":3.5,"e":4116}],[19,{"n":4.5,"e":4118}],[18,{"n":4,"e":4128}],[17,{"n":4,"e":4145}],[16,{"n":3.5,"e":4148}],[15,{"n":3.5,"e":4164}],[14,{"n":5,"e":4175}],[13,{"n":5,"e":4179}],[12,{"n":4.5,"e":4195}],[11,{"n":3,"e":4199}],[10,{"n":3,"e":4212}],[9,{"n":4,"e":4218}],[8,{"n":8,"e":4232,"g":2}],[7,{"n":4,"e":4239}],[6,{"n":6,"e":4256,"g":1}],[5,{"n":4.5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":7,"e":4278,"g":1}],[2,{"n":5,"e":4289}],[1,{"n":3.5,"e":4304}]],"fo":[[4100,[{"t":"I"}]],[4118,[{"t":"Y"}]]],"a":{"m":17,"a":26,"M":35,"n":10}}],[3669,{"n":"Konsa Ngoyo","f":"Ezri","fp":"DC","r":10,"c":78,"s":{"s":63,"n":14,"a":4.5,"d":0.98,"Ss":31.5,"Sn":7,"Sa":4.5,"Sd":1.12,"Os":63,"On":14,"Oa":4.5,"Od":0.98,"pd":14},"p":[[26,{"n":3.5,"e":4049}],[25,{"n":3.5,"e":4058}],[24,{"n":5,"e":4068}],[23,{"n":5.5,"e":4079}],[22,{"n":3,"e":4088}],[21,{"n":5.5,"e":4100}],[20,{"n":3.5,"e":4116}],[19,{"n":5.5,"e":4118}],[16,{"n":3.5,"e":4148}],[15,{"n":5,"e":4164}],[14,{"n":4.5,"e":4175}],[13,{"n":6,"e":4179}],[12,{"n":4,"e":4195}],[8,{"n":5,"e":4232,"s":1}]],"fo":[[4058,[{"t":"I"}]]]}],[3677,{"n":"Clark","f":"Mitchell","fp":"DC","r":3,"c":78}],[3678,{"n":"Bree","f":"James","fp":"DC","r":3,"c":78}],[3680,{"n":"O'Hare","f":"Callum","fp":"MD","r":1,"c":78}],[3688,{"n":"Hepburn-Murphy","f":"Rushian","fp":"A","r":7,"c":78}],[3689,{"n":"Green","f":"Andre","fp":"MD","r":7,"c":78}],[3698,{"n":"McGinn","f":"John","fp":"MD","r":12,"c":78,"s":{"g":3,"s":108,"n":18,"a":6,"d":1.07,"Og":3,"Os":108,"On":18,"Oa":6,"Od":1.07,"pm":18},"p":[[18,{"n":5,"e":4128}],[17,{"n":5,"e":4145}],[16,{"n":4,"e":4148}],[15,{"n":6,"e":4164}],[14,{"n":6,"e":4175}],[13,{"n":5.5,"e":4179}],[12,{"n":5.5,"e":4195}],[11,{"n":7,"e":4199}],[10,{"n":4,"e":4212}],[9,{"n":7,"e":4218}],[8,{"n":7,"e":4232}],[7,{"n":7,"e":4239,"g":1}],[6,{"n":8,"e":4256,"g":1}],[5,{"n":6,"e":4267}],[4,{"n":6,"e":4270}],[3,{"n":7,"e":4278}],[2,{"n":6,"e":4289}],[1,{"n":6,"e":4304,"g":1}]],"fo":[[4128,[{"t":"I"}]]],"a":{"m":21,"a":31,"M":49,"n":14}}],[3700,{"n":"Grealish","f":"Jack","fp":"MO","r":33,"c":78,"s":{"g":7,"s":144.5,"n":24,"a":6.02,"d":1.39,"Sg":5,"Ss":75.5,"Sn":13,"Sa":5.81,"Sd":1.69,"Og":7,"Os":144.5,"On":24,"Oa":6.02,"Od":1.39,"pm":10,"pa":14},"p":[[26,{"n":6.5,"e":4049}],[25,{"n":6,"e":4058}],[24,{"n":6,"e":4068}],[23,{"n":7,"e":4079,"g":1}],[22,{"n":3.5,"e":4088}],[21,{"n":7.5,"e":4100,"g":1}],[20,{"n":3.5,"e":4116}],[19,{"n":7,"e":4118}],[18,{"n":7.5,"e":4128,"g":1}],[17,{"n":2.5,"e":4145}],[16,{"n":6,"e":4148,"g":1}],[15,{"n":5,"e":4164}],[14,{"n":6.5,"e":4175,"g":1}],[13,{"n":7.5,"e":4179}],[10,{"n":4.5,"e":4212}],[9,{"n":8,"e":4218,"g":1}],[8,{"n":7.5,"e":4232,"g":1}],[7,{"n":6,"e":4239}],[6,{"n":7,"e":4256}],[5,{"n":6,"e":4267}],[4,{"n":5.5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":6,"e":4289}],[1,{"n":6,"e":4304}]],"fo":[[4088,[{"t":"Y"}]],[4116,[{"t":"Y"}]]],"a":{"m":27,"a":36,"M":46,"n":24}}],[3707,{"n":"Nyland","f":"Ørjan","fp":"G","r":7,"c":78,"s":{"s":12,"n":3,"a":4,"d":1,"Os":12,"On":3,"Oa":4,"Od":1,"pg":3},"p":[[22,{"n":3,"e":4088}],[21,{"n":5,"e":4100,"s":1}],[12,{"n":4,"e":4195,"s":1}]]}],[3710,{"n":"Jota","f":"","fp":"MO","r":3,"c":78,"s":{"s":38.5,"n":8,"a":4.81,"d":1,"Os":38.5,"On":8,"Oa":4.81,"Od":1,"pm":6,"pa":2},"p":[[20,{"n":4,"e":4116}],[19,{"n":4.5,"e":4118,"s":1}],[15,{"n":5,"e":4164,"s":1}],[5,{"n":4,"e":4267}],[4,{"n":4,"e":4270}],[3,{"n":7,"e":4278}],[2,{"n":5,"e":4289,"s":1}],[1,{"n":5,"e":4304,"s":1}]]}],[3714,{"n":"Hourihane","f":"Conor","fp":"MD","r":9,"c":78,"s":{"g":3,"s":87,"n":16,"a":5.44,"d":1.31,"Og":3,"Os":87,"On":16,"Oa":5.44,"Od":1.31,"pm":16},"p":[[23,{"n":5,"e":4079,"s":1}],[22,{"n":3.5,"e":4088}],[21,{"n":5,"e":4100,"s":1}],[20,{"n":4,"e":4116}],[19,{"n":7,"e":4118,"g":1,"s":1}],[18,{"n":4,"e":4128}],[15,{"n":4.5,"e":4164}],[14,{"n":6,"e":4175}],[13,{"n":8,"e":4179,"g":1}],[11,{"n":5,"e":4199,"s":1}],[9,{"n":5.5,"e":4218}],[8,{"n":8,"e":4232,"g":1}],[7,{"n":5.5,"e":4239}],[6,{"n":5,"e":4256,"s":1}],[4,{"n":5,"e":4270,"s":1}],[1,{"n":6,"e":4304}]],"fo":[[4079,[{"t":"Y"}]]],"a":{"m":13,"a":14,"M":15,"n":7}}],[3718,{"n":"Hogan","f":"Scott","fp":"A","r":5,"c":78}],[3719,{"n":"Steer","f":"Jed","fp":"G","r":3,"c":78,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[12,{"n":5,"e":4195}]]}],[3730,{"n":"Kodjia","f":"Jonathan","fp":"A","r":7,"c":78,"s":{"s":27,"n":6,"a":4.5,"Os":27,"On":6,"Oa":4.5,"pa":6},"p":[[21,{"n":4.5,"e":4100,"s":1}],[20,{"n":4.5,"e":4116,"s":1}],[18,{"n":4.5,"e":4128,"s":1}],[17,{"n":4.5,"e":4145,"s":1}],[11,{"n":4.5,"e":4199,"s":1}],[1,{"n":4.5,"e":4304,"s":1}]],"fo":[[4128,[{"t":"Y"}]]]}],[3733,{"n":"Taylor","f":"Neil","fp":"DL","r":6,"c":78,"s":{"s":46.5,"n":10,"a":4.65,"d":0.67,"Os":46.5,"On":10,"Oa":4.65,"Od":0.67,"pd":9,"pm":1},"p":[[22,{"n":3,"e":4088}],[21,{"n":5,"e":4100}],[12,{"n":4.5,"e":4195,"s":1}],[7,{"n":4.5,"e":4239,"s":1}],[6,{"n":4.5,"e":4256}],[5,{"n":5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":5.5,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4304}]],"fo":[[4100,[{"t":"Y"}]]]}],[3735,{"n":"Chester","f":"James","fp":"DC","r":1,"c":78}],[3737,{"n":"Lansbury","f":"Henri","fp":"MO","r":3,"c":78,"s":{"s":42.5,"n":9,"a":4.72,"d":0.51,"Os":42.5,"On":9,"Oa":4.72,"Od":0.51,"pm":9},"p":[[22,{"n":4.5,"e":4088,"s":1}],[20,{"n":3.5,"e":4116}],[19,{"n":5,"e":4118,"s":1}],[17,{"n":4.5,"e":4145}],[14,{"n":5,"e":4175,"s":1}],[13,{"n":5,"e":4179,"s":1}],[12,{"n":5,"e":4195,"s":1}],[6,{"n":5,"e":4256,"s":1}],[4,{"n":5,"e":4270,"s":1}]]}],[3740,{"n":"Ahmed El Mohamady","f":"","fp":"DL","r":6,"c":78,"s":{"s":52,"n":11,"a":4.73,"d":1.17,"Os":52,"On":11,"Oa":4.73,"Od":1.17,"pd":11},"p":[[22,{"n":3,"e":4088}],[20,{"n":4,"e":4116}],[19,{"n":5.5,"e":4118}],[16,{"n":3.5,"e":4148}],[15,{"n":6,"e":4164}],[11,{"n":5,"e":4199,"s":1}],[6,{"n":4,"e":4256,"s":1}],[5,{"n":5,"e":4267,"s":1}],[3,{"n":5,"e":4278,"s":1}],[2,{"n":7,"e":4289}],[1,{"n":4,"e":4304}]]}],[4830,{"n":"Pepe Reina","f":"","fp":"G","r":13,"c":78,"s":{"s":22,"n":4,"a":5.5,"d":1,"Ss":15,"Sn":3,"Sa":5,"Os":28,"On":5,"Oa":5.6,"Od":0.89,"pg":5},"p":[[7,{"n":6,"e":5762}],[26,{"n":7,"e":4049}],[25,{"n":5,"e":4058}],[24,{"n":5,"e":4068}],[23,{"n":5,"e":4079}]],"fo":[[5786,[{"t":"R"}]]]}],[5448,{"n":"Trézéguet","f":"","fp":"MO","r":13,"c":78,"s":{"g":3,"s":117.5,"n":23,"a":5.11,"d":0.85,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":0.74,"Og":3,"Os":117.5,"On":23,"Oa":5.11,"Od":0.85,"pm":14,"pa":9},"p":[[26,{"n":5,"e":4049,"s":1}],[25,{"n":4.5,"e":4058,"s":1}],[24,{"n":5,"e":4068}],[23,{"n":4,"e":4079}],[22,{"n":6,"e":4088,"s":1}],[21,{"n":5,"e":4100}],[19,{"n":5.5,"e":4118}],[18,{"n":5.5,"e":4128,"s":1}],[17,{"n":5,"e":4145,"s":1}],[16,{"n":4.5,"e":4148,"s":1}],[15,{"n":6,"e":4164,"g":1}],[14,{"n":5.5,"e":4175,"s":1}],[12,{"n":6.5,"e":4195,"g":1}],[11,{"n":6,"e":4199,"g":1}],[10,{"n":5,"e":4212}],[9,{"n":5.5,"e":4218,"s":1}],[8,{"n":5,"e":4232,"s":1}],[7,{"n":6,"e":4239,"s":1}],[6,{"n":5,"e":4256}],[4,{"n":2.5,"e":4270}],[3,{"n":5,"e":4278}],[2,{"n":4,"e":4289}],[1,{"n":5.5,"e":4304}]],"a":{"m":16,"a":21,"M":23,"n":9}}],[5997,{"n":"Nakamba","f":"Marvelous","fp":"MD","r":10,"c":78,"s":{"s":98,"n":19,"a":5.16,"d":0.88,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.84,"Os":98,"On":19,"Oa":5.16,"Od":0.88,"pm":19},"p":[[26,{"n":5.5,"e":4049,"s":1}],[25,{"n":3.5,"e":4058}],[24,{"n":5.5,"e":4068}],[23,{"n":4.5,"e":4079}],[22,{"n":5.5,"e":4088,"s":1}],[21,{"n":5,"e":4100}],[19,{"n":5,"e":4118}],[18,{"n":4.5,"e":4128,"s":1}],[17,{"n":5.5,"e":4145}],[16,{"n":3.5,"e":4148}],[15,{"n":6,"e":4164}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4.5,"e":4212}],[9,{"n":5.5,"e":4218}],[8,{"n":7.5,"e":4232}],[7,{"n":5.5,"e":4239}],[6,{"n":5.5,"e":4256}],[5,{"n":5.5,"e":4267}]],"fo":[[4079,[{"t":"I"},{"t":"Y"}]],[4049,[{"t":"Y"}]]]}],[6125,{"n":"Tshibola","f":"Aaron","fp":"MD","r":6,"c":78}],[6241,{"n":"Archer","f":"Cameron","fp":"A","r":1,"c":78}],[6448,{"n":"Samatta","f":"Mbwana","fp":"A","r":16,"c":78,"s":{"g":1,"s":11,"n":2,"a":5.5,"d":0.71,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Os":11,"On":2,"Oa":5.5,"Od":0.71,"pa":2},"p":[[26,{"n":5,"e":4049}],[25,{"n":6,"e":4058,"g":1}]]}],[6494,{"n":"Vassilev","f":"Indiana","fp":"A","r":3,"c":78}],[6502,{"n":"Sarkic","f":"Matija","fp":"G","r":3,"c":78}],[597,{"n":"Defoe","f":"Jermain","fp":"A","r":6,"c":36}],[651,{"n":"King","f":"Joshua","fp":"A","r":9,"c":36,"s":{"g":3,"s":86,"n":17,"a":5.06,"d":1.01,"Og":7,"Os":142.5,"On":29,"Oa":4.91,"Od":1.05,"pm":7,"pa":22},"p":[[26,{"n":4,"e":4055,"s":1}],[20,{"n":4,"e":4109}],[18,{"n":4.5,"e":4129}],[17,{"n":5,"e":4140}],[12,{"n":4,"e":4191}],[11,{"n":6,"e":4200,"g":1}],[10,{"n":5,"e":4216}],[9,{"n":4.5,"e":4219,"s":1}],[7,{"n":7,"e":4240,"g":1}],[5,{"n":7.5,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":4.5,"e":4286}],[1,{"n":5.5,"e":4300}],[-38,{"n":6,"e":3540,"g":1}],[-37,{"n":5,"e":3528}],[-34,{"n":4.5,"e":3498}],[-32,{"n":3.5,"e":3484}],[-31,{"n":7,"e":3468,"g":2}],[-30,{"n":5.5,"e":3462}],[-29,{"n":3.5,"e":3448}],[-27,{"n":5.5,"e":3428,"g":1}],[-36,{"n":3.5,"e":3525}],[-35,{"n":4,"e":3508}],[-33,{"n":4,"e":3488}],[-28,{"n":4.5,"e":3438}],[19,{"n":5,"e":4119}],[8,{"n":5.5,"e":4236}],[6,{"n":5,"e":4248}],[2,{"n":5,"e":4289,"g":1}]],"fo":[[4109,[{"t":"I"}]],[4140,[{"t":"I"}]]],"a":{"m":13,"a":17,"M":22,"n":13}}],[729,{"n":"Daniels","f":"Charlie","fp":"DL","r":1,"c":36,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Os":34,"On":7,"Oa":4.86,"Od":0.85,"pd":7},"p":[[-32,{"n":4.5,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":6,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":4,"e":3438,"s":1}],[3,{"n":4.5,"e":4286}],[2,{"n":6,"e":4289}]]}],[736,{"n":"Stanislas","f":"Junior","fp":"MO","r":7,"c":36,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Og":1,"Os":34.5,"On":7,"Oa":4.93,"Od":0.73,"pd":1,"pm":6},"p":[[21,{"n":4.5,"e":4107,"s":1}],[-35,{"n":5,"e":3508}],[-34,{"n":6.5,"e":3498,"g":1,"s":1}],[-33,{"n":4.5,"e":3488,"s":1}],[-32,{"n":4.5,"e":3484,"s":1}],[26,{"n":4.5,"e":4055,"s":1}],[20,{"n":5,"e":4109}]]}],[744,{"n":"Fraser","f":"Ryan","fp":"MO","r":20,"c":36,"s":{"g":1,"s":140.5,"n":25,"a":5.62,"d":0.75,"Ss":7,"Sn":1,"Sa":7,"Og":3,"Os":208.5,"On":37,"Oa":5.64,"Od":1.07,"pm":33,"pa":4},"p":[[24,{"n":7,"e":4069}],[23,{"n":5.5,"e":4084}],[22,{"n":5,"e":4089}],[16,{"n":4.5,"e":4149}],[15,{"n":5,"e":4166,"s":1}],[14,{"n":4.5,"e":4173}],[13,{"n":6,"e":4180}],[-38,{"n":4,"e":3540}],[-37,{"n":8,"e":3528}],[-36,{"n":6,"e":3525,"s":1}],[-35,{"n":5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-31,{"n":5.5,"e":3468}],[-30,{"n":8,"e":3462,"g":1}],[-29,{"n":4.5,"e":3448}],[-28,{"n":3.5,"e":3438}],[-27,{"n":6,"e":3428}],[26,{"n":6,"e":4055}],[25,{"n":7,"e":4058}],[21,{"n":5.5,"e":4107,"s":1}],[20,{"n":5,"e":4109,"s":1}],[19,{"n":5,"e":4119}],[18,{"n":5,"e":4129}],[17,{"n":7,"e":4140}],[12,{"n":5.5,"e":4191}],[11,{"n":5.5,"e":4200}],[10,{"n":6,"e":4216}],[9,{"n":6,"e":4219}],[8,{"n":5.5,"e":4236,"s":1}],[6,{"n":5,"e":4248,"s":1}],[5,{"n":7,"e":4265,"g":1,"s":1}],[4,{"n":6,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":5.5,"e":4289}],[1,{"n":5.5,"e":4300}]],"a":{"m":21,"a":23,"M":23,"n":5}}],[754,{"n":"Arter","f":"Harry","fp":"MD","r":6,"c":36,"s":{"Os":20,"On":4,"Oa":5,"Od":1.78,"pm":4},"p":[[-30,{"n":6,"e":3459}],[-27,{"n":2.5,"e":3431}],[-34,{"n":5,"e":3499}],[-32,{"n":6.5,"e":3481}]]}],[784,{"n":"Steve Cook","f":"","fp":"DC","r":8,"c":36,"s":{"g":1,"s":92,"n":19,"a":4.84,"d":1.18,"Og":1,"Os":116.5,"On":24,"Oa":4.85,"Od":1.26,"pd":24},"p":[[-38,{"n":3,"e":3540}],[-37,{"n":6,"e":3528}],[-36,{"n":3.5,"e":3525}],[-35,{"n":5,"e":3508}],[-34,{"n":7,"e":3498}],[23,{"n":3,"e":4084}],[22,{"n":3,"e":4089}],[21,{"n":3,"e":4107}],[20,{"n":3.5,"e":4109}],[19,{"n":5,"e":4119}],[14,{"n":4,"e":4173}],[13,{"n":6.5,"e":4180,"g":1}],[12,{"n":4,"e":4191}],[11,{"n":6,"e":4200}],[10,{"n":6,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":6,"e":4236}],[7,{"n":4.5,"e":4240}],[6,{"n":6,"e":4248}],[5,{"n":6,"e":4265}],[4,{"n":4.5,"e":4271}],[3,{"n":4.5,"e":4286}],[2,{"n":6,"e":4289}],[1,{"n":5,"e":4300}]],"fo":[[4084,[{"t":"R"}]],[4109,[{"t":"Y"}]]]}],[809,{"n":"Callum Wilson","f":"","fp":"A","r":19,"c":36,"s":{"g":7,"s":121,"n":25,"a":4.84,"d":1.27,"Sg":1,"Ss":34.5,"Sn":8,"Sa":4.31,"Sd":1.25,"Og":11,"Os":168,"On":34,"Oa":4.94,"Od":1.44,"pa":34},"p":[[-38,{"n":4,"e":3540}],[-37,{"n":5,"e":3528}],[-36,{"n":8,"e":3525,"g":2}],[-35,{"n":3.5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":4,"e":3488}],[-32,{"n":3.5,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":7,"e":3462,"g":1}],[26,{"n":6,"e":4055,"g":1}],[25,{"n":4.5,"e":4058}],[24,{"n":7,"e":4069,"g":1}],[23,{"n":4.5,"e":4084}],[22,{"n":3,"e":4089}],[21,{"n":3,"e":4107}],[20,{"n":4.5,"e":4109,"s":1}],[19,{"n":4,"e":4119}],[18,{"n":4,"e":4129,"s":1}],[16,{"n":3.5,"e":4149}],[15,{"n":3.5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":4.5,"e":4180}],[12,{"n":4,"e":4191}],[11,{"n":5,"e":4200}],[10,{"n":4,"e":4216}],[9,{"n":4,"e":4219}],[8,{"n":5,"e":4236}],[7,{"n":6.5,"e":4240,"g":1}],[6,{"n":7,"e":4248,"g":1}],[5,{"n":7.5,"e":4265,"g":2}],[4,{"n":6,"e":4271,"g":1}],[3,{"n":4.5,"e":4286}],[2,{"n":6,"e":4289}],[1,{"n":5.5,"e":4300}]],"fo":[[4055,[{"t":"Y"}]],[4058,[{"t":"Y"}]],[4084,[{"t":"Y"}]],[4119,[{"t":"Y"}]]],"a":{"m":21,"a":28,"M":42,"n":7}}],[827,{"n":"Francis","f":"Simon","fp":"DL","r":10,"c":36,"s":{"s":67,"n":14,"a":4.79,"d":1.05,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.2,"Os":67,"On":14,"Oa":4.79,"Od":1.05,"pd":14},"p":[[26,{"n":5,"e":4055}],[25,{"n":6,"e":4058}],[24,{"n":5,"e":4069}],[23,{"n":5.5,"e":4084,"s":1}],[22,{"n":3,"e":4089}],[21,{"n":4,"e":4107}],[18,{"n":5,"e":4129}],[17,{"n":6.5,"e":4140}],[16,{"n":3.5,"e":4149}],[15,{"n":5,"e":4166,"s":1}],[13,{"n":3,"e":4180}],[12,{"n":5,"e":4191,"s":1}],[8,{"n":5.5,"e":4236,"s":1}],[7,{"n":5,"e":4240,"s":1}]],"fo":[[4055,[{"t":"Y"}]],[4129,[{"t":"Y"}]]]}],[832,{"n":"Brad Smith","f":"","fp":"DL","r":1,"c":36,"a":{"m":8,"a":8,"M":8,"n":10}}],[840,{"n":"Aké","f":"Nathan","fp":"DC","r":19,"c":36,"s":{"g":2,"s":112,"n":21,"a":5.33,"d":1.04,"Sg":1,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.49,"Og":3,"Os":176,"On":33,"Oa":5.33,"Od":1.1,"pd":31,"pm":2},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":7,"e":3528,"g":1}],[-36,{"n":3.5,"e":3525}],[-35,{"n":5.5,"e":3508}],[-34,{"n":7,"e":3498}],[-33,{"n":5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-31,{"n":5.5,"e":3468}],[-30,{"n":6,"e":3462}],[-29,{"n":5.5,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":6.5,"e":3428}],[26,{"n":4,"e":4055}],[25,{"n":7,"e":4058,"g":1}],[24,{"n":6,"e":4069}],[23,{"n":6,"e":4084}],[22,{"n":3.5,"e":4089}],[16,{"n":5.5,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":4.5,"e":4180}],[12,{"n":4.5,"e":4191}],[11,{"n":6.5,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":6,"e":4236}],[7,{"n":5.5,"e":4240}],[6,{"n":7.5,"e":4248,"g":1}],[5,{"n":6,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":5.5,"e":4289}],[1,{"n":5.5,"e":4300}]],"a":{"m":17,"a":21,"M":25,"n":14}}],[867,{"n":"Surman","f":"Andrew","fp":"MD","r":1,"c":36,"s":{"s":18.5,"n":4,"a":4.63,"d":0.75,"Os":33.5,"On":7,"Oa":4.79,"Od":0.81,"pm":7},"p":[[-30,{"n":6,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":4,"e":3438}],[26,{"n":3.5,"e":4055}],[6,{"n":5,"e":4248,"s":1}],[4,{"n":5,"e":4271,"s":1}],[2,{"n":5,"e":4289,"s":1}]],"fo":[[4055,[{"t":"Y"}]]]}],[891,{"n":"Adam Smith","f":"","fp":"DL","r":10,"c":36,"s":{"s":70.5,"n":15,"a":4.7,"d":0.8,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.11,"Os":109.5,"On":23,"Oa":4.76,"Od":0.86,"pd":19,"pm":4},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":6,"e":3528}],[-34,{"n":6.5,"e":3498}],[-33,{"n":4,"e":3488}],[-30,{"n":5,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":3.5,"e":3438}],[-27,{"n":4,"e":3428}],[26,{"n":4,"e":4055}],[25,{"n":5,"e":4058}],[24,{"n":5.5,"e":4069}],[23,{"n":5,"e":4084}],[22,{"n":3,"e":4089}],[15,{"n":5.5,"e":4166}],[13,{"n":4,"e":4180}],[12,{"n":4,"e":4191}],[11,{"n":6,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5,"e":4219}],[4,{"n":4.5,"e":4271}],[3,{"n":4,"e":4286}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4300}]],"fo":[[4084,[{"t":"Y"}]],[4089,[{"t":"Y"}]]]}],[892,{"n":"Boruc","f":"Artur","fp":"G","r":7,"c":36,"s":{"Os":42.5,"On":8,"Oa":5.31,"Od":1.25,"pg":8},"p":[[-36,{"n":4.5,"e":3525}],[-35,{"n":6.5,"e":3508}],[-34,{"n":6,"e":3498}],[-31,{"n":5,"e":3468}],[-30,{"n":5.5,"e":3462}],[-29,{"n":7,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":5,"e":3428}]]}],[916,{"n":"Ibe","f":"Jordon","fp":"MO","r":1,"c":36,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":38.5,"On":8,"Oa":4.81,"Od":0.7,"pm":7,"pa":1},"p":[[-38,{"n":6,"e":3540,"g":1}],[-37,{"n":4.5,"e":3528}],[-31,{"n":4.5,"e":3468}],[-29,{"n":5,"e":3448,"s":1}],[-28,{"n":3.5,"e":3438}],[-27,{"n":5,"e":3428}],[4,{"n":5,"e":4271,"s":1}],[3,{"n":5,"e":4286,"s":1}]]}],[950,{"n":"Gosling","f":"Dan","fp":"MD","r":10,"c":36,"s":{"g":2,"s":64.5,"n":13,"a":4.96,"d":1.18,"Sg":2,"Ss":51.5,"Sn":10,"Sa":5.15,"Sd":1.29,"Og":4,"Os":102.5,"On":20,"Oa":5.13,"Od":1.27,"pm":20},"p":[[-36,{"n":5.5,"e":3525,"g":1}],[-35,{"n":5.5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":3.5,"e":3488}],[-32,{"n":4,"e":3484}],[-28,{"n":5.5,"e":3438}],[-27,{"n":6,"e":3428}],[26,{"n":4,"e":4055}],[25,{"n":7,"e":4058}],[24,{"n":5,"e":4069,"s":1}],[23,{"n":4.5,"e":4084}],[22,{"n":3.5,"e":4089}],[21,{"n":3.5,"e":4107}],[20,{"n":4.5,"e":4109}],[19,{"n":6.5,"e":4119,"g":1}],[18,{"n":5,"e":4129}],[17,{"n":7,"e":4140,"g":1}],[16,{"n":5,"e":4149,"s":1}],[14,{"n":4.5,"e":4173,"s":1}],[13,{"n":4.5,"e":4180,"s":1}]],"fo":[[4140,[{"t":"Y"}]]]}],[985,{"n":"Pugh","f":"Marc","fp":"MD","r":1,"c":36}],[1092,{"n":"Harry Wilson","f":"","fp":"MO","r":20,"c":36,"s":{"g":7,"s":121,"n":22,"a":5.5,"d":1.23,"Sg":1,"Ss":35,"Sn":7,"Sa":5,"Sd":1.47,"Og":7,"Os":121,"On":22,"Oa":5.5,"Od":1.23,"pm":18,"pa":4},"p":[[26,{"n":5.5,"e":4055}],[25,{"n":6,"e":4058}],[24,{"n":7.5,"e":4069,"g":1}],[23,{"n":4.5,"e":4084}],[22,{"n":4,"e":4089}],[21,{"n":3,"e":4107}],[20,{"n":4.5,"e":4109}],[19,{"n":5.5,"e":4119,"s":1}],[15,{"n":4.5,"e":4166}],[14,{"n":8,"e":4173,"g":2,"s":1}],[13,{"n":4.5,"e":4180}],[12,{"n":6.5,"e":4191,"g":1}],[11,{"n":5.5,"e":4200}],[10,{"n":5.5,"e":4216,"s":1}],[9,{"n":5.5,"e":4219}],[8,{"n":5.5,"e":4236}],[7,{"n":5.5,"e":4240}],[6,{"n":6.5,"e":4248,"g":1}],[5,{"n":5,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":7,"e":4286,"g":1,"s":1}],[2,{"n":7,"e":4289,"g":1}]],"a":{"m":18,"a":26,"M":63,"n":21}}],[1117,{"n":"Simpson","f":"Jack","fp":"DC","r":5,"c":36,"s":{"s":13,"n":3,"a":4.33,"d":0.29,"Oao":1,"Os":40,"On":9,"Oa":4.44,"Od":1.01,"pd":9},"p":[[-38,{"n":2.5,"e":3540,"a":1}],[-37,{"n":6,"e":3528}],[-36,{"n":4,"e":3525}],[-35,{"n":4,"e":3508,"s":1}],[-34,{"n":5,"e":3498,"s":1}],[-29,{"n":5.5,"e":3448}],[21,{"n":4.5,"e":4107,"s":1}],[19,{"n":4,"e":4119}],[16,{"n":4.5,"e":4149,"s":1}]]}],[1119,{"n":"Ramsdale","f":"Aaron","fp":"G","r":15,"c":36,"s":{"s":138.5,"n":25,"a":5.54,"d":1.04,"Ss":19.5,"Sn":3,"Sa":6.5,"Sd":0.5,"Os":138.5,"On":25,"Oa":5.54,"Od":1.04,"pg":25},"p":[[26,{"n":5,"e":4055}],[25,{"n":6,"e":4058}],[24,{"n":7,"e":4069}],[23,{"n":6.5,"e":4084}],[21,{"n":4,"e":4107}],[20,{"n":5.5,"e":4109}],[19,{"n":5,"e":4119}],[18,{"n":4.5,"e":4129}],[17,{"n":7,"e":4140}],[16,{"n":6,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":6,"e":4180}],[12,{"n":6,"e":4191}],[11,{"n":7,"e":4200}],[10,{"n":6.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":4.5,"e":4236}],[7,{"n":5.5,"e":4240}],[6,{"n":7,"e":4248}],[5,{"n":6,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":4,"e":4286}],[2,{"n":6.5,"e":4289}],[1,{"n":5,"e":4300}]],"a":{"m":18,"a":24,"M":32,"n":12}}],[1120,{"n":"Solanke","f":"Dominic","fp":"A","r":10,"c":36,"s":{"s":94,"n":22,"a":4.27,"d":0.8,"Os":133,"On":30,"Oa":4.43,"Od":0.78,"pa":30},"p":[[-36,{"n":5,"e":3525,"s":1}],[-35,{"n":4.5,"e":3508,"s":1}],[-34,{"n":5,"e":3498,"s":1}],[-33,{"n":4.5,"e":3488,"s":1}],[-32,{"n":4,"e":3484,"s":1}],[-31,{"n":6,"e":3468,"s":1}],[-30,{"n":5,"e":3462,"s":1}],[-27,{"n":5,"e":3428}],[26,{"n":4.5,"e":4055,"s":1}],[24,{"n":6,"e":4069}],[23,{"n":4.5,"e":4084,"s":1}],[22,{"n":3.5,"e":4089}],[21,{"n":2.5,"e":4107}],[20,{"n":4,"e":4109}],[18,{"n":4.5,"e":4129,"s":1}],[17,{"n":4.5,"e":4140,"s":1}],[16,{"n":3.5,"e":4149}],[15,{"n":4,"e":4166}],[14,{"n":4.5,"e":4173}],[12,{"n":4.5,"e":4191,"s":1}],[10,{"n":4,"e":4216,"s":1}],[9,{"n":3.5,"e":4219}],[8,{"n":3,"e":4236}],[7,{"n":4,"e":4240}],[6,{"n":4,"e":4248}],[5,{"n":5.5,"e":4265}],[4,{"n":5,"e":4271,"s":1}],[3,{"n":5,"e":4286,"s":1}],[2,{"n":5,"e":4289,"s":1}],[1,{"n":4.5,"e":4300,"s":1}]]}],[1123,{"n":"Jordan","f":"Corey","fp":"DC","r":1,"c":36}],[1359,{"n":"Lewis Cook","f":"","fp":"MD","r":7,"c":36,"s":{"s":87.5,"n":18,"a":4.86,"d":0.48,"Os":87.5,"On":18,"Oa":4.86,"Od":0.48,"pm":18},"p":[[24,{"n":5,"e":4069,"s":1}],[23,{"n":5,"e":4084,"s":1}],[22,{"n":4,"e":4089,"s":1}],[21,{"n":4.5,"e":4107}],[20,{"n":4.5,"e":4109,"s":1}],[19,{"n":5.5,"e":4119}],[18,{"n":3.5,"e":4129}],[17,{"n":5,"e":4140}],[16,{"n":5,"e":4149,"s":1}],[15,{"n":5,"e":4166,"s":1}],[14,{"n":5,"e":4173}],[13,{"n":5,"e":4180}],[12,{"n":5.5,"e":4191}],[11,{"n":5,"e":4200,"s":1}],[9,{"n":5,"e":4219}],[7,{"n":5,"e":4240,"s":1}],[6,{"n":5,"e":4248,"s":1}],[5,{"n":5,"e":4265}]],"fo":[[4107,[{"t":"Y"}]],[4119,[{"t":"Y"}]],[4140,[{"t":"Y"}]]]}],[1494,{"n":"Billing","f":"Philip","fp":"MD","r":13,"c":36,"s":{"g":1,"s":127,"n":24,"a":5.29,"d":0.83,"Sg":1,"Ss":23,"Sn":4,"Sa":5.75,"Sd":1.55,"Og":1,"Os":150.5,"On":29,"Oa":5.19,"Od":0.83,"pm":29},"p":[[-31,{"n":5,"e":3476,"s":1}],[-29,{"n":5,"e":3449}],[-28,{"n":5,"e":3440}],[-27,{"n":5,"e":3436,"s":1}],[-30,{"n":3.5,"e":3462}],[26,{"n":5,"e":4055}],[25,{"n":8,"e":4058,"g":1}],[24,{"n":5.5,"e":4069}],[23,{"n":5,"e":4084}],[22,{"n":4.5,"e":4089,"s":1}],[20,{"n":5,"e":4109}],[19,{"n":5,"e":4119,"s":1}],[18,{"n":6,"e":4129}],[17,{"n":6,"e":4140}],[16,{"n":4.5,"e":4149}],[15,{"n":5,"e":4166}],[13,{"n":4,"e":4180}],[12,{"n":5,"e":4191}],[11,{"n":6,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":5.5,"e":4236}],[7,{"n":4.5,"e":4240}],[6,{"n":6.5,"e":4248}],[5,{"n":5.5,"e":4265}],[4,{"n":4.5,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":4.5,"e":4289}],[1,{"n":5.5,"e":4300}]],"fo":[[4109,[{"t":"Y"}]]]}],[1738,{"n":"Lerma","f":"Jefferson","fp":"MD","r":12,"c":36,"s":{"s":114.5,"n":22,"a":5.2,"d":0.87,"Ss":22.5,"Sn":5,"Sa":4.5,"Sd":0.79,"Og":1,"Os":170.5,"On":32,"Oa":5.33,"Od":0.87,"pm":32},"p":[[-38,{"n":5.5,"e":3540,"g":1}],[-37,{"n":6,"e":3528}],[-36,{"n":5,"e":3525}],[-35,{"n":5.5,"e":3508}],[-34,{"n":7,"e":3498}],[-33,{"n":5,"e":3488}],[-32,{"n":5,"e":3484}],[-31,{"n":4.5,"e":3468}],[-30,{"n":7,"e":3462}],[-27,{"n":5.5,"e":3428}],[25,{"n":4,"e":4058}],[24,{"n":5.5,"e":4069}],[23,{"n":5,"e":4084}],[22,{"n":4.5,"e":4089}],[21,{"n":3.5,"e":4107}],[19,{"n":6,"e":4119}],[18,{"n":4.5,"e":4129}],[17,{"n":7.5,"e":4140}],[16,{"n":5,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":5.5,"e":4173}],[13,{"n":5,"e":4180,"s":1}],[11,{"n":6,"e":4200}],[10,{"n":6,"e":4216}],[8,{"n":5.5,"e":4236}],[7,{"n":6,"e":4240}],[6,{"n":6,"e":4248}],[5,{"n":4.5,"e":4265,"s":1}],[4,{"n":5,"e":4271}],[3,{"n":4.5,"e":4286}],[2,{"n":5,"e":4289}],[1,{"n":5.5,"e":4300}]],"fo":[[4058,[{"t":"Y"},{"t":"O"}]],[4069,[{"t":"Y"}]],[4119,[{"t":"Y"}]]]}],[1747,{"n":"Rico","f":"Diego","fp":"DL","r":13,"c":36,"s":{"s":102.5,"n":21,"a":4.88,"d":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.5,"Os":122,"On":25,"Oa":4.88,"Od":0.92,"pd":23,"pm":2},"p":[[-33,{"n":4.5,"e":3488,"s":1}],[-32,{"n":5,"e":3484,"s":1}],[-29,{"n":5,"e":3448,"s":1}],[-28,{"n":5,"e":3438,"s":1}],[26,{"n":3.5,"e":4055}],[25,{"n":6,"e":4058}],[24,{"n":5,"e":4069}],[23,{"n":5.5,"e":4084}],[21,{"n":3,"e":4107}],[20,{"n":4,"e":4109}],[18,{"n":4.5,"e":4129}],[17,{"n":6.5,"e":4140}],[16,{"n":4.5,"e":4149}],[15,{"n":5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":4.5,"e":4180}],[12,{"n":4,"e":4191}],[11,{"n":6.5,"e":4200}],[10,{"n":5,"e":4216}],[9,{"n":5,"e":4219}],[8,{"n":4,"e":4236}],[7,{"n":4.5,"e":4240}],[6,{"n":6.5,"e":4248}],[5,{"n":6,"e":4265}],[1,{"n":5,"e":4300}]],"fo":[[4107,[{"t":"Y"}]],[4129,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":14,"n":5}}],[2119,{"n":"Butcher","f":"Matt","fp":"A","r":1,"c":36}],[2265,{"n":"Taylor","f":"Kyle","fp":"MD","r":1,"c":36}],[2595,{"n":"Brooks","f":"David","fp":"MO","r":4,"c":36,"s":{"Og":1,"Os":40,"On":8,"Oa":5,"Od":1.31,"pm":7,"pa":1},"p":[[-36,{"n":5.5,"e":3525}],[-35,{"n":4.5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":4.5,"e":3488}],[-32,{"n":4,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":5,"e":3462}],[-29,{"n":4.5,"e":3448}]]}],[2843,{"n":"Ofoborh","f":"Nathan","fp":"A","r":1,"c":36}],[2849,{"n":"Travers","f":"Mark","fp":"G","r":1,"c":36,"s":{"s":2.5,"n":1,"a":2.5,"Os":13.5,"On":3,"Oa":4.5,"Od":2.65,"pg":3},"p":[[-38,{"n":3.5,"e":3540}],[-37,{"n":7.5,"e":3528}],[22,{"n":2.5,"e":4089}]]}],[2853,{"n":"Dobre","f":"Mihai-Alexandru","fp":"MO","r":1,"c":36}],[3223,{"n":"Mepham","f":"Chris","fp":"DC","r":6,"c":36,"s":{"g":1,"s":52.5,"n":11,"a":4.77,"d":0.9,"Og":1,"Os":104,"On":22,"Oa":4.73,"Od":0.91,"pd":22},"p":[[-38,{"n":5.5,"e":3540,"s":1}],[-36,{"n":4,"e":3525}],[-35,{"n":5,"e":3508}],[-34,{"n":6,"e":3498}],[-33,{"n":3.5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-31,{"n":4.5,"e":3468}],[-30,{"n":6,"e":3462}],[-29,{"n":4.5,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":5,"e":3428}],[21,{"n":4,"e":4107}],[20,{"n":5,"e":4109}],[19,{"n":5,"e":4119}],[18,{"n":5.5,"e":4129}],[17,{"n":6,"e":4140}],[16,{"n":4,"e":4149}],[15,{"n":4.5,"e":4166}],[5,{"n":5,"e":4265,"s":1}],[4,{"n":3,"e":4271}],[3,{"n":4.5,"e":4286}],[1,{"n":6,"e":4300,"g":1}]],"fo":[[4119,[{"t":"Y"}]]]}],[3500,{"n":"Surridge","f":"Sam","fp":"A","r":1,"c":36,"s":{"s":4,"n":1,"a":4,"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[-38,{"n":4.5,"e":3540,"s":1}],[-28,{"n":4.5,"e":3438,"s":1}],[22,{"n":4,"e":4089,"s":1}]]}],[3646,{"n":"Kelly","f":"Lloyd","fp":"DL","r":1,"c":36}],[3693,{"n":"Stacey","f":"Jack","fp":"DL","r":6,"c":36,"s":{"s":45.5,"n":9,"a":5.06,"d":0.92,"Os":45.5,"On":9,"Oa":5.06,"Od":0.92,"pd":9},"p":[[20,{"n":4,"e":4109}],[19,{"n":7,"e":4119}],[18,{"n":4.5,"e":4129}],[17,{"n":5.5,"e":4140}],[14,{"n":4,"e":4173}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4240}],[6,{"n":5.5,"e":4248}],[5,{"n":5,"e":4265}]]}],[5987,{"n":"Sherring","f":"Sam","fp":"DC","r":1,"c":36}],[5989,{"n":"Zemura","f":"Jordan","fp":"DC","r":1,"c":36}],[5990,{"n":"Dennis","f":"William","fp":"G","r":1,"c":36}],[5994,{"n":"Danjuma Groeneveld","f":"Arnaut","fp":"MO","r":6,"c":36,"s":{"s":43.5,"n":9,"a":4.83,"d":0.56,"Os":43.5,"On":9,"Oa":4.83,"Od":0.56,"pm":4,"pa":5},"p":[[16,{"n":4,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":6,"e":4173}],[13,{"n":5,"e":4180,"s":1}],[12,{"n":4.5,"e":4191,"s":1}],[10,{"n":4.5,"e":4216}],[9,{"n":5,"e":4219,"s":1}],[8,{"n":5,"e":4236,"s":1}],[7,{"n":5,"e":4240,"s":1}]]}],[6147,{"n":"Kilkenny","f":"Gavin","fp":"MO","r":1,"c":36}],[6469,{"n":"Genesini","f":"Brooklyn","fp":"DC","r":1,"c":36}],[388,{"n":"Bissouma","f":"Yves","fp":"MD","r":6,"c":45,"s":{"s":48,"n":10,"a":4.8,"d":0.95,"Os":96,"On":20,"Oa":4.8,"Od":0.97,"pm":16,"pa":4},"p":[[21,{"n":3.5,"e":4099}],[19,{"n":5,"e":4126,"s":1}],[18,{"n":4.5,"e":4130,"s":1}],[17,{"n":5.5,"e":4141}],[14,{"n":4.5,"e":4171}],[13,{"n":5,"e":4181,"s":1}],[8,{"n":4.5,"e":4228,"s":1}],[7,{"n":4,"e":4241}],[6,{"n":4.5,"e":4254,"s":1}],[-38,{"n":4,"e":3538}],[-36,{"n":5,"e":3518,"s":1}],[-33,{"n":5.5,"e":3495}],[-32,{"n":6.5,"e":3479}],[-30,{"n":5,"e":3461}],[-28,{"n":4.5,"e":3441,"s":1}],[-37,{"n":6,"e":3529}],[-34,{"n":3,"e":3498}],[-29,{"n":4.5,"e":3449}],[-27,{"n":4,"e":3432}],[20,{"n":7,"e":4109}]],"fo":[[4130,[{"t":"Y"}]]]}],[1056,{"n":"Bernardo","f":"","fp":"DL","r":10,"c":45,"s":{"s":43,"n":9,"a":4.78,"d":0.67,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":96.5,"On":20,"Oa":4.83,"Od":0.91,"pd":17,"pm":3},"p":[[25,{"n":4.5,"e":4067}],[22,{"n":4.5,"e":4092}],[4,{"n":3.5,"e":4272}],[1,{"n":5,"e":4303,"s":1}],[-35,{"n":5,"e":3517,"s":1}],[-31,{"n":3.5,"e":3469}],[-38,{"n":4,"e":3538}],[-37,{"n":6,"e":3529}],[-36,{"n":6,"e":3518}],[-34,{"n":2.5,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-30,{"n":5.5,"e":3461}],[-29,{"n":5.5,"e":3449}],[-27,{"n":5.5,"e":3432,"s":1}],[24,{"n":4.5,"e":4069}],[23,{"n":5,"e":4079}],[21,{"n":6,"e":4099,"s":1}],[19,{"n":5,"e":4126}],[17,{"n":5,"e":4141,"s":1}]],"fo":[[4069,[{"t":"Y"}]]]}],[1281,{"n":"Murray","f":"Glenn","fp":"A","r":9,"c":45,"s":{"g":1,"s":75,"n":17,"a":4.41,"d":0.57,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":4,"Os":129,"On":29,"Oa":4.45,"Od":0.69,"pa":29},"p":[[26,{"n":5,"e":4050}],[16,{"n":4.5,"e":4150,"s":1}],[12,{"n":4,"e":4197,"s":1}],[10,{"n":4.5,"e":4209,"s":1}],[5,{"n":4,"e":4259}],[3,{"n":4.5,"e":4280,"s":1}],[2,{"n":4,"e":4290}],[-38,{"n":4.5,"e":3538,"g":1}],[-37,{"n":5.5,"e":3529,"g":1}],[-36,{"n":5.5,"e":3518}],[-35,{"n":4.5,"e":3517}],[-34,{"n":4.5,"e":3498,"s":1}],[-33,{"n":4.5,"e":3495,"s":1}],[-32,{"n":4,"e":3479}],[-31,{"n":4,"e":3469}],[-30,{"n":6,"e":3461,"g":1}],[-29,{"n":3.5,"e":3449}],[-28,{"n":3,"e":3441}],[-27,{"n":4.5,"e":3432,"s":1}],[25,{"n":6,"e":4067,"g":1}],[23,{"n":4,"e":4079,"s":1}],[22,{"n":4.5,"e":4092,"s":1}],[20,{"n":5,"e":4109,"s":1}],[18,{"n":3.5,"e":4130,"s":1}],[13,{"n":4.5,"e":4181,"s":1}],[8,{"n":4.5,"e":4228,"s":1}],[7,{"n":4,"e":4241,"s":1}],[4,{"n":4.5,"e":4272,"s":1}],[1,{"n":4,"e":4303}]]}],[1282,{"n":"Knockaert","f":"Anthony","fp":"MD","r":8,"c":45,"s":{"Og":1,"Os":42.5,"On":9,"Oa":4.72,"Od":1.35,"pm":5,"pa":4},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":5,"e":3529,"s":1}],[-36,{"n":5.5,"e":3518,"s":1}],[-34,{"n":2,"e":3498}],[-32,{"n":5,"e":3479}],[-30,{"n":6.5,"e":3461,"g":1}],[-29,{"n":6,"e":3449}],[-28,{"n":4.5,"e":3441}],[-27,{"n":3.5,"e":3432,"s":1}]]}],[1283,{"n":"Hemed","f":"Tomer","fp":"A","r":7,"c":45}],[1284,{"n":"Bruno","f":"","fp":"DC","r":10,"c":45,"s":{"Os":28,"On":6,"Oa":4.67,"Od":0.82,"pd":6},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":5.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":5.5,"e":3517}],[-31,{"n":4,"e":3469}],[-27,{"n":4.5,"e":3432}]]}],[1294,{"n":"Stephens","f":"Dale","fp":"MD","r":13,"c":45,"s":{"s":123,"n":23,"a":5.35,"d":0.86,"Ss":20,"Sn":4,"Sa":5,"Os":180.5,"On":34,"Oa":5.31,"Od":0.93,"pm":34},"p":[[11,{"n":4.5,"e":4201}],[-37,{"n":6,"e":3529}],[-36,{"n":5.5,"e":3518}],[-35,{"n":6,"e":3517}],[-34,{"n":3,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":4,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":7,"e":3461}],[-29,{"n":6,"e":3449}],[-28,{"n":5.5,"e":3441}],[-27,{"n":5,"e":3432}],[25,{"n":5,"e":4067}],[24,{"n":5,"e":4069}],[23,{"n":5,"e":4079}],[22,{"n":5,"e":4092}],[20,{"n":5,"e":4109,"s":1}],[19,{"n":5,"e":4126}],[18,{"n":4.5,"e":4130}],[16,{"n":7,"e":4150}],[15,{"n":5.5,"e":4158}],[14,{"n":5.5,"e":4171}],[13,{"n":4,"e":4181}],[12,{"n":5,"e":4197}],[10,{"n":6,"e":4209}],[9,{"n":6,"e":4218}],[8,{"n":6.5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":7,"e":4254}],[5,{"n":5.5,"e":4259}],[4,{"n":3.5,"e":4272}],[3,{"n":5.5,"e":4280}],[2,{"n":6,"e":4290}],[1,{"n":6,"e":4303}]],"fo":[[4067,[{"t":"Y"}]]]}],[1296,{"n":"Dunk","f":"Lewis","fp":"DC","r":20,"c":45,"s":{"g":2,"s":125,"n":24,"a":5.21,"d":1.14,"Ss":31,"Sn":6,"Sa":5.17,"Sd":0.68,"Og":2,"Os":182.5,"On":36,"Oa":5.07,"Od":1.22,"pd":36},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":5.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":6,"e":3517}],[-34,{"n":2.5,"e":3498}],[-33,{"n":7,"e":3495}],[-32,{"n":4.5,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":6.5,"e":3461}],[-29,{"n":5.5,"e":3449}],[-28,{"n":3.5,"e":3441}],[-27,{"n":3.5,"e":3432}],[26,{"n":5,"e":4050}],[25,{"n":4.5,"e":4067}],[24,{"n":4.5,"e":4069}],[23,{"n":5,"e":4079}],[22,{"n":5,"e":4092}],[21,{"n":6,"e":4099}],[20,{"n":6,"e":4109}],[18,{"n":5,"e":4130}],[17,{"n":5,"e":4141}],[16,{"n":4,"e":4150}],[15,{"n":5.5,"e":4158}],[14,{"n":6.5,"e":4171,"g":1}],[12,{"n":4,"e":4197,"g":1}],[11,{"n":7,"e":4201}],[10,{"n":5,"e":4209}],[9,{"n":4,"e":4218}],[8,{"n":7.5,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":5.5,"e":4254}],[5,{"n":5,"e":4259}],[4,{"n":3,"e":4272}],[3,{"n":4.5,"e":4280}],[2,{"n":6,"e":4290}],[1,{"n":7.5,"e":4303}]],"fo":[[4079,[{"t":"Y"}]],[4099,[{"t":"Y"}]]],"a":{"m":23,"a":26,"M":31,"n":9}}],[1303,{"n":"Groß","f":"Pascal","fp":"MO","r":13,"c":45,"s":{"g":2,"ao":1,"s":122,"n":23,"a":5.3,"d":1.13,"Sg":1,"Sao":1,"Ss":20,"Sn":4,"Sa":5,"Sd":1.87,"Og":3,"Oao":1,"Os":158,"On":30,"Oa":5.27,"Od":1.06,"pm":22,"pa":8},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":5.5,"e":3529}],[-36,{"n":6,"e":3518,"g":1}],[-35,{"n":5.5,"e":3517}],[-33,{"n":5.5,"e":3495}],[-31,{"n":3.5,"e":3469}],[-28,{"n":5.5,"e":3441}],[26,{"n":4,"e":4050}],[25,{"n":7,"e":4067,"g":1}],[24,{"n":2.5,"e":4069,"a":1}],[23,{"n":5,"e":4079,"s":1}],[22,{"n":5.5,"e":4092,"s":1}],[19,{"n":6.5,"e":4126}],[18,{"n":3.5,"e":4130}],[17,{"n":6.5,"e":4141}],[16,{"n":5,"e":4150}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4171}],[12,{"n":6,"e":4197,"s":1}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209,"g":1}],[9,{"n":7,"e":4218}],[8,{"n":7,"e":4228}],[7,{"n":4.5,"e":4241}],[6,{"n":5,"e":4254}],[5,{"n":5,"e":4259}],[4,{"n":5,"e":4272,"s":1}],[3,{"n":4.5,"e":4280,"s":1}],[2,{"n":5.5,"e":4290}],[1,{"n":6,"e":4303}]],"fo":[[4126,[{"t":"Y"}]]]}],[1306,{"n":"March","f":"Solly","fp":"MO","r":6,"c":45,"s":{"s":56.5,"n":11,"a":5.14,"d":0.81,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Os":102.5,"On":20,"Oa":5.13,"Od":0.69,"pd":1,"pm":14,"pa":5},"p":[[-37,{"n":6,"e":3529}],[-36,{"n":6,"e":3518,"s":1}],[-35,{"n":5,"e":3517}],[-33,{"n":5,"e":3495,"s":1}],[-32,{"n":5,"e":3479,"s":1}],[-31,{"n":5,"e":3469}],[-30,{"n":5,"e":3461,"s":1}],[-28,{"n":4.5,"e":3441}],[-27,{"n":4.5,"e":3432}],[26,{"n":5.5,"e":4050}],[25,{"n":6,"e":4067,"s":1}],[24,{"n":5,"e":4069,"s":1}],[13,{"n":5,"e":4181}],[12,{"n":4,"e":4197,"s":1}],[9,{"n":5,"e":4218,"s":1}],[5,{"n":6,"e":4259}],[4,{"n":3.5,"e":4272}],[3,{"n":5.5,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6,"e":4303}]],"fo":[[4050,[{"t":"Y"}]]]}],[1308,{"n":"Pröpper","f":"Davy","fp":"MD","r":16,"c":45,"s":{"g":1,"ao":1,"s":123.5,"n":23,"a":5.37,"d":1,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.18,"Og":2,"Oao":1,"Os":161,"On":31,"Oa":5.19,"Od":1.01,"pm":31},"p":[[-35,{"n":5,"e":3517}],[-34,{"n":3.5,"e":3498}],[-32,{"n":4,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":4.5,"e":3461}],[-29,{"n":5,"e":3449}],[-28,{"n":6.5,"e":3441,"g":1}],[-27,{"n":4.5,"e":3432}],[26,{"n":6,"e":4050}],[25,{"n":7,"e":4067}],[24,{"n":5,"e":4069}],[23,{"n":4.5,"e":4079}],[22,{"n":4.5,"e":4092}],[21,{"n":5,"e":4099}],[20,{"n":7,"e":4109}],[18,{"n":4,"e":4130}],[17,{"n":6,"e":4141}],[16,{"n":5.5,"e":4150,"g":1}],[15,{"n":5.5,"e":4158}],[14,{"n":6,"e":4171}],[13,{"n":5,"e":4181}],[12,{"n":3.5,"e":4197,"a":1}],[11,{"n":7,"e":4201}],[10,{"n":5.5,"e":4209}],[9,{"n":5.5,"e":4218}],[6,{"n":5,"e":4254}],[5,{"n":5.5,"e":4259}],[4,{"n":4,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":4.5,"e":4290}],[1,{"n":7,"e":4303}]],"fo":[[4141,[{"t":"Y"}]]]}],[1312,{"n":"Duffy","f":"Shane","fp":"DC","r":11,"c":45,"s":{"g":1,"s":68,"n":14,"a":4.86,"d":0.77,"Og":1,"Os":127.5,"On":26,"Oa":4.9,"Od":1.1,"pd":26},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":7.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":6,"e":3517}],[-34,{"n":3,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-31,{"n":3.5,"e":3469}],[-30,{"n":6,"e":3461}],[-29,{"n":7,"e":3449}],[-28,{"n":4,"e":3441}],[-27,{"n":4,"e":3432}],[26,{"n":4.5,"e":4050}],[22,{"n":4.5,"e":4092}],[20,{"n":5.5,"e":4109}],[19,{"n":4,"e":4126}],[17,{"n":5,"e":4141,"s":1}],[15,{"n":5,"e":4158,"s":1}],[13,{"n":4,"e":4181}],[12,{"n":4,"e":4197}],[11,{"n":6,"e":4201,"g":1,"s":1}],[9,{"n":5,"e":4218,"s":1}],[5,{"n":5,"e":4259}],[3,{"n":4,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6.5,"e":4303}]],"fo":[[4092,[{"t":"Y"}]]]}],[1313,{"n":"Izquierdo","f":"José","fp":"A","r":1,"c":45,"s":{"Os":26.5,"On":6,"Oa":4.42,"Od":0.2,"pm":1,"pa":5},"p":[[-36,{"n":4,"e":3518}],[-35,{"n":4.5,"e":3517}],[-34,{"n":4.5,"e":3498,"s":1}],[-31,{"n":4.5,"e":3469,"s":1}],[-29,{"n":4.5,"e":3449,"s":1}],[-28,{"n":4.5,"e":3441,"s":1}]]}],[1323,{"n":"Ryan","f":"Mat","fp":"G","r":17,"c":45,"s":{"s":142.5,"n":26,"a":5.48,"d":1.01,"Ss":138,"Sn":25,"Sa":5.52,"Sd":1.02,"Os":205,"On":38,"Oa":5.39,"Od":1.16,"pg":38},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":7.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":7,"e":3517}],[-34,{"n":2.5,"e":3498}],[-33,{"n":6,"e":3495}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":6,"e":3461}],[-29,{"n":6.5,"e":3449}],[-28,{"n":4.5,"e":3441}],[-27,{"n":3.5,"e":3432}],[26,{"n":4.5,"e":4050}],[25,{"n":4,"e":4067}],[24,{"n":3.5,"e":4069}],[23,{"n":5,"e":4079}],[22,{"n":6.5,"e":4092}],[21,{"n":5.5,"e":4099}],[20,{"n":6,"e":4109}],[19,{"n":5.5,"e":4126}],[18,{"n":4.5,"e":4130}],[17,{"n":5.5,"e":4141}],[16,{"n":5,"e":4150}],[15,{"n":6,"e":4158}],[14,{"n":6,"e":4171}],[13,{"n":6.5,"e":4181}],[12,{"n":6,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209}],[9,{"n":6,"e":4218}],[8,{"n":6.5,"e":4228}],[7,{"n":7.5,"e":4241}],[6,{"n":7,"e":4254}],[5,{"n":4,"e":4259}],[4,{"n":4,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6.5,"e":4303}]],"a":{"m":22,"a":26,"M":33,"n":10}}],[1324,{"n":"Suttner","f":"Markus","fp":"DC","r":1,"c":45}],[1336,{"n":"Bong","f":"Gaëtan","fp":"DL","r":1,"c":45,"s":{"s":20,"n":4,"a":5,"Os":33,"On":7,"Oa":4.71,"Od":0.49,"pd":7},"p":[[-35,{"n":5,"e":3517}],[-28,{"n":4,"e":3441}],[-27,{"n":4,"e":3432}],[8,{"n":5,"e":4228,"s":1}],[7,{"n":5,"e":4241,"s":1}],[6,{"n":5,"e":4254,"s":1}],[5,{"n":5,"e":4259,"s":1}]]}],[1338,{"n":"Kayal","f":"Beram","fp":"MO","r":3,"c":45,"s":{"Os":28,"On":6,"Oa":4.67,"Od":0.61,"pm":6},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":5,"e":3529,"s":1}],[-36,{"n":4.5,"e":3518}],[-35,{"n":5,"e":3517,"s":1}],[-33,{"n":5,"e":3495,"s":1}],[-29,{"n":5,"e":3449,"s":1}]]}],[1356,{"n":"Molumby","f":"Jayson","fp":"MD","r":1,"c":45}],[1361,{"n":"Towell","f":"Richard","fp":"A","r":1,"c":45}],[1378,{"n":"Connolly","f":"Aaron","fp":"A","r":9,"c":45,"s":{"g":2,"s":75,"n":16,"a":4.69,"d":1.15,"Og":2,"Os":75,"On":16,"Oa":4.69,"Od":1.15,"pa":16},"p":[[24,{"n":4,"e":4069,"s":1}],[23,{"n":4,"e":4079}],[21,{"n":5,"e":4099,"s":1}],[19,{"n":3.5,"e":4126}],[18,{"n":4.5,"e":4130,"s":1}],[15,{"n":5,"e":4158}],[14,{"n":3.5,"e":4171}],[12,{"n":3,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209}],[9,{"n":5,"e":4218}],[8,{"n":8,"e":4228,"g":2}],[7,{"n":4.5,"e":4241,"s":1}],[6,{"n":5,"e":4254,"s":1}],[5,{"n":4.5,"e":4259,"s":1}],[4,{"n":4.5,"e":4272,"s":1}]]}],[1473,{"n":"Mooy","f":"Aaron","fp":"MO","r":16,"c":45,"s":{"g":2,"s":100,"n":19,"a":5.26,"d":1.24,"Sg":1,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.61,"Og":3,"Os":153,"On":30,"Oa":5.1,"Od":1.06,"pm":24,"pa":6},"p":[[-37,{"n":5,"e":3533}],[-35,{"n":5,"e":3513}],[-34,{"n":4.5,"e":3506,"s":1}],[-33,{"n":4,"e":3491,"g":1}],[-32,{"n":4.5,"e":3482}],[-38,{"n":5.5,"e":3545}],[-31,{"n":6,"e":3476}],[-30,{"n":5,"e":3462}],[-29,{"n":4.5,"e":3449,"s":1}],[-28,{"n":5,"e":3440,"s":1}],[-27,{"n":4,"e":3436}],[26,{"n":4.5,"e":4050}],[25,{"n":4,"e":4067}],[24,{"n":7,"e":4069,"g":1}],[23,{"n":4.5,"e":4079}],[21,{"n":5.5,"e":4099}],[20,{"n":7.5,"e":4109,"g":1}],[19,{"n":5.5,"e":4126}],[18,{"n":5,"e":4130}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4150}],[15,{"n":8,"e":4158}],[14,{"n":5,"e":4171}],[13,{"n":5,"e":4181}],[9,{"n":3.5,"e":4218}],[8,{"n":7,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":4.5,"e":4254}],[5,{"n":5,"e":4259,"s":1}],[2,{"n":4.5,"e":4290,"s":1}]]}],[1612,{"n":"Andone","f":"Florin","fp":"A","r":6,"c":45,"s":{"g":1,"s":13.5,"n":3,"a":4.5,"d":1.8,"Og":2,"Os":46,"On":11,"Oa":4.18,"Od":1.15,"pa":11},"p":[[-38,{"n":4.5,"e":3538,"s":1}],[-37,{"n":4.5,"e":3529,"s":1}],[-36,{"n":4,"e":3518}],[-34,{"n":3.5,"e":3498}],[-33,{"n":3.5,"e":3495}],[-31,{"n":3.5,"e":3469,"s":1}],[-29,{"n":6,"e":3449,"g":1,"s":1}],[-27,{"n":3,"e":3432}],[3,{"n":2.5,"e":4280}],[2,{"n":5,"e":4290,"s":1}],[1,{"n":6,"e":4303,"g":1,"s":1}]]}],[1761,{"n":"Montoya","f":"Martín","fp":"DL","r":10,"c":45,"s":{"s":97.5,"n":21,"a":4.64,"d":0.94,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":128.5,"On":28,"Oa":4.59,"Od":0.94,"pd":22,"pm":6},"p":[[-38,{"n":5,"e":3538,"s":1}],[-34,{"n":2.5,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-30,{"n":5,"e":3461}],[-29,{"n":5,"e":3449}],[-28,{"n":3.5,"e":3441}],[25,{"n":3.5,"e":4067}],[23,{"n":4.5,"e":4079,"s":1}],[22,{"n":4.5,"e":4092}],[21,{"n":4.5,"e":4099}],[20,{"n":6.5,"e":4109}],[18,{"n":4.5,"e":4130}],[17,{"n":5,"e":4141}],[15,{"n":5,"e":4158,"s":1}],[14,{"n":4.5,"e":4171}],[13,{"n":4,"e":4181}],[12,{"n":3,"e":4197}],[11,{"n":7,"e":4201}],[10,{"n":4,"e":4209}],[9,{"n":5,"e":4218}],[8,{"n":4.5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":5,"e":4254}],[4,{"n":3,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":4.5,"e":4290}],[1,{"n":5,"e":4303}]]}],[2025,{"n":"Schelotto","f":"Ezequiel","fp":"DL","r":6,"c":45,"s":{"s":28.5,"n":6,"a":4.75,"d":0.27,"Ss":5,"Sn":1,"Sa":5,"Os":28.5,"On":6,"Oa":4.75,"Od":0.27,"pd":5,"pm":1},"p":[[26,{"n":4.5,"e":4050}],[25,{"n":5,"e":4067,"s":1}],[19,{"n":4.5,"e":4126}],[13,{"n":5,"e":4181,"s":1}],[11,{"n":5,"e":4201,"s":1}],[10,{"n":4.5,"e":4209,"s":1}]],"fo":[[4050,[{"t":"Y"}]]]}],[2255,{"n":"Locadia","f":"Jürgen","fp":"A","r":5,"c":45,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Os":35.5,"On":8,"Oa":4.44,"Od":0.73,"pm":1,"pa":7},"p":[[-38,{"n":4.5,"e":3538,"s":1}],[-34,{"n":3,"e":3498}],[-33,{"n":4.5,"e":3495}],[-32,{"n":5,"e":3479,"s":1}],[-30,{"n":4.5,"e":3461,"s":1}],[-28,{"n":4.5,"e":3441,"s":1}],[3,{"n":4,"e":4280,"s":1}],[1,{"n":5.5,"e":4303}]]}],[2519,{"n":"Balogun","f":"Leon","fp":"DC","r":1,"c":45}],[2520,{"n":"Button","f":"David","fp":"G","r":7,"c":45}],[2525,{"n":"Steele","f":"Jason","fp":"G","r":1,"c":45}],[2537,{"n":"Tau","f":"Percy","fp":"A","r":11,"c":45}],[2576,{"n":"Jahanbakhsh","f":"Alireza","fp":"A","r":8,"c":45,"s":{"g":2,"s":32,"n":6,"a":5.33,"d":1.4,"Og":2,"Os":63.5,"On":14,"Oa":4.54,"Od":1.25,"pm":5,"pa":9},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":3,"e":3529}],[-33,{"n":4,"e":3495}],[-32,{"n":4,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":5,"e":3461}],[-29,{"n":4.5,"e":3449}],[-27,{"n":3,"e":3432}],[26,{"n":5,"e":4050,"s":1}],[24,{"n":5,"e":4069}],[22,{"n":3.5,"e":4092}],[21,{"n":7,"e":4099,"g":1,"s":1}],[20,{"n":7,"e":4109,"g":1}],[16,{"n":4.5,"e":4150,"s":1}]],"a":{"m":6,"a":10,"M":12,"n":7}}],[2850,{"n":"Gyokeres","f":"Viktor","fp":"A","r":1,"c":45}],[2854,{"n":"Collar","f":"Will","fp":"MD","r":1,"c":45}],[2856,{"n":"Barclay","f":"Ben","fp":"DC","r":1,"c":45}],[2933,{"n":"White","f":"Ben","fp":"DC","r":1,"c":45}],[2986,{"n":"Burn","f":"Dan","fp":"DC","r":5,"c":45,"s":{"s":101,"n":22,"a":4.59,"d":0.96,"Os":101,"On":22,"Oa":4.59,"Od":0.96,"pd":21,"pm":1},"p":[[26,{"n":4.5,"e":4050}],[21,{"n":4.5,"e":4099}],[20,{"n":5,"e":4109}],[19,{"n":4,"e":4126}],[18,{"n":5,"e":4130}],[17,{"n":4.5,"e":4141}],[16,{"n":3,"e":4150}],[15,{"n":6,"e":4158}],[14,{"n":5.5,"e":4171}],[13,{"n":5,"e":4181}],[12,{"n":3,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":5.5,"e":4209}],[9,{"n":4,"e":4218}],[8,{"n":5.5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":4,"e":4254}],[5,{"n":4,"e":4259}],[4,{"n":2.5,"e":4272}],[3,{"n":4,"e":4280}],[2,{"n":5.5,"e":4290}],[1,{"n":6,"e":4303}]],"fo":[[4099,[{"t":"I"}]],[4126,[{"t":"Y"}]]]}],[3119,{"n":"Sanders","f":"Max","fp":"MD","r":1,"c":45}],[3225,{"n":"Richards","f":"Taylor","fp":"MO","r":1,"c":45}],[3353,{"n":"Sánchez","f":"Robert","fp":"G","r":1,"c":45}],[3511,{"n":"Ostigard","f":"Leo","fp":"DC","r":1,"c":45}],[3663,{"n":"Baluta","f":"Tudor","fp":"DC","r":1,"c":45}],[3665,{"n":"Mlakar","f":"Jan","fp":"A","r":1,"c":45}],[3686,{"n":"Clarke","f":"Matthew","fp":"DC","r":2,"c":45}],[3699,{"n":"Trossard","f":"Leandro","fp":"MO","r":14,"c":45,"s":{"g":3,"s":102,"n":20,"a":5.1,"d":1.17,"Sg":2,"Ss":81.5,"Sn":16,"Sa":5.09,"Sd":1.14,"Og":3,"Os":102,"On":20,"Oa":5.1,"Od":1.17,"pm":13,"pa":7},"p":[[26,{"n":5.5,"e":4050}],[25,{"n":4.5,"e":4067}],[24,{"n":4.5,"e":4069,"s":1}],[23,{"n":6.5,"e":4079,"g":1}],[22,{"n":4,"e":4092}],[21,{"n":5,"e":4099}],[20,{"n":7,"e":4109}],[19,{"n":4.5,"e":4126,"s":1}],[18,{"n":3.5,"e":4130}],[17,{"n":5.5,"e":4141}],[16,{"n":6,"e":4150}],[15,{"n":4.5,"e":4158,"s":1}],[14,{"n":4.5,"e":4171,"s":1}],[13,{"n":4,"e":4181}],[12,{"n":4.5,"e":4197}],[11,{"n":7.5,"e":4201,"g":1,"s":1}],[10,{"n":5.5,"e":4209,"s":1}],[4,{"n":3,"e":4272}],[3,{"n":6,"e":4280}],[2,{"n":6,"e":4290,"g":1}]],"a":{"m":12,"a":16,"M":21,"n":12}}],[4032,{"n":"Yapi","f":"Romaric","fp":"DL","r":1,"c":45}],[5999,{"n":"Maupay","f":"Neal","fp":"A","r":18,"c":45,"s":{"g":7,"s":127,"n":25,"a":5.08,"d":1.07,"Og":7,"Os":127,"On":25,"Oa":5.08,"Od":1.07,"pa":25},"p":[[26,{"n":5,"e":4050,"s":1}],[24,{"n":5,"e":4069}],[23,{"n":5,"e":4079}],[22,{"n":4,"e":4092}],[21,{"n":4,"e":4099}],[20,{"n":6,"e":4109}],[19,{"n":4.5,"e":4126,"s":1}],[18,{"n":4.5,"e":4130}],[17,{"n":6,"e":4141,"g":1}],[16,{"n":7,"e":4150,"g":1}],[15,{"n":7,"e":4158,"g":1}],[14,{"n":4,"e":4171,"s":1}],[13,{"n":4.5,"e":4181}],[12,{"n":4,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209,"g":1}],[9,{"n":5.5,"e":4218}],[8,{"n":7,"e":4228,"g":1}],[7,{"n":3.5,"e":4241}],[6,{"n":5,"e":4254}],[5,{"n":6,"e":4259,"g":1}],[4,{"n":3.5,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":4,"e":4290,"s":1}],[1,{"n":6,"e":4303,"g":1,"s":1}]],"fo":[[4079,[{"t":"Y"}]],[4099,[{"t":"Y"}]]],"a":{"m":22,"a":31,"M":61,"n":18}}],[6000,{"n":"Webster","f":"Adam","fp":"DC","r":12,"c":45,"s":{"g":3,"ao":1,"s":95.5,"n":20,"a":4.78,"d":1.3,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.14,"Og":3,"Oao":1,"Os":95.5,"On":20,"Oa":4.78,"Od":1.3,"pd":20},"p":[[25,{"n":3.5,"e":4067}],[24,{"n":3,"e":4069}],[23,{"n":5.5,"e":4079}],[22,{"n":4.5,"e":4092}],[21,{"n":5.5,"e":4099}],[19,{"n":6.5,"e":4126,"g":1}],[18,{"n":3.5,"e":4130}],[17,{"n":4.5,"e":4141}],[16,{"n":4.5,"e":4150}],[15,{"n":7.5,"e":4158,"g":1}],[14,{"n":4.5,"e":4171}],[13,{"n":3,"e":4181}],[11,{"n":5.5,"e":4201}],[10,{"n":4,"e":4209,"a":1}],[9,{"n":5.5,"e":4218,"g":1}],[8,{"n":7,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":5.5,"e":4254}],[5,{"n":5,"e":4259}],[4,{"n":3,"e":4272}]],"fo":[[4079,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":18,"n":12}}],[6242,{"n":"Roberts","f":"Haydon","fp":"DC","r":1,"c":45}],[6243,{"n":"Alzate","f":"Steven","fp":"MO","r":10,"c":45,"s":{"s":87.5,"n":18,"a":4.86,"d":0.8,"Os":87.5,"On":18,"Oa":4.86,"Od":0.8,"pd":4,"pm":8,"pa":6},"p":[[26,{"n":4.5,"e":4050,"s":1}],[24,{"n":3.5,"e":4069}],[23,{"n":3,"e":4079}],[22,{"n":5,"e":4092,"s":1}],[21,{"n":5.5,"e":4099}],[20,{"n":5,"e":4109,"s":1}],[19,{"n":5,"e":4126}],[17,{"n":4.5,"e":4141,"s":1}],[16,{"n":4.5,"e":4150}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4171,"s":1}],[12,{"n":5.5,"e":4197}],[11,{"n":6,"e":4201}],[10,{"n":5,"e":4209}],[9,{"n":4.5,"e":4218,"s":1}],[8,{"n":6.5,"e":4228}],[7,{"n":4.5,"e":4241}],[6,{"n":5,"e":4254}]]}],[6244,{"n":"Davies","f":"Jordan","fp":"MO","r":1,"c":45}],[6245,{"n":"Cochrane","f":"Alex","fp":"DL","r":1,"c":45}],[6284,{"n":"Gwargis","f":"Peter","fp":"MO","r":1,"c":45}],[6286,{"n":"Longman","f":"Ryan","fp":"MO","r":1,"c":45}],[6287,{"n":"Archie Davies","f":"","fp":"DL","r":1,"c":45}],[6388,{"n":"Lamptey","f":"Tariq","fp":"DL","r":1,"c":45}],[6430,{"n":"Radulovic Samoukovic","f":"Bojan","fp":"A","r":1,"c":45}],[6480,{"n":"Jenks","f":"Teddy","fp":"MD","r":1,"c":45}],[6542,{"n":"Spong","f":"Jack","fp":"MD","r":1,"c":45}],[6544,{"n":"O'Hora","f":"Warren","fp":"DC","r":1,"c":45}],[6546,{"n":"Mac Allister","f":"Alexis","fp":"MO","r":5,"c":45}],[717,{"n":"Defour","f":"Steven","fp":"MD","r":1,"c":23}],[718,{"n":"Rodriguez","f":"Jay","fp":"A","r":12,"c":23,"s":{"g":4,"s":114,"n":25,"a":4.56,"d":0.94,"Ss":5,"Sn":1,"Sa":5,"Og":4,"Os":114,"On":25,"Oa":4.56,"Od":0.94,"pa":25},"p":[[26,{"n":4.5,"e":4056}],[24,{"n":6.5,"e":4074,"g":1}],[23,{"n":5,"e":4080}],[20,{"n":5,"e":4110,"s":1}],[19,{"n":4,"e":4122}],[17,{"n":4.5,"e":4139,"s":1}],[16,{"n":2.5,"e":4155}],[14,{"n":4,"e":4168,"s":1}],[13,{"n":4.5,"e":4186,"s":1}],[12,{"n":4,"e":4188,"s":1}],[11,{"n":2.5,"e":4205}],[10,{"n":6,"e":4210,"g":1}],[9,{"n":4,"e":4223}],[8,{"n":5,"e":4229,"s":1}],[6,{"n":4.5,"e":4250,"s":1}],[4,{"n":4.5,"e":4275,"s":1}],[3,{"n":4.5,"e":4284,"s":1}],[1,{"n":4,"e":4301,"s":1}],[25,{"n":5,"e":4059}],[21,{"n":4.5,"e":4100,"s":1}],[18,{"n":6,"e":4129,"g":1,"s":1}],[15,{"n":4.5,"e":4159,"s":1}],[7,{"n":6,"e":4239,"g":1,"s":1}],[5,{"n":4,"e":4259,"s":1}],[2,{"n":4.5,"e":4288,"s":1}]],"a":{"m":12,"a":13,"M":15,"n":5}}],[722,{"n":"Crouch","f":"Peter","fp":"A","r":7,"c":23,"s":{"Os":23,"On":5,"Oa":4.6,"Od":0.22,"pa":5},"p":[[-38,{"n":4.5,"e":3539,"s":1}],[-31,{"n":4.5,"e":3470,"s":1}],[-30,{"n":4.5,"e":3464,"s":1}],[-29,{"n":5,"e":3450,"s":1}],[-28,{"n":4.5,"e":3444,"s":1}]]}],[742,{"n":"Cork","f":"Jack","fp":"MD","r":11,"c":23,"s":{"s":113.5,"n":24,"a":4.73,"d":1.05,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.04,"Os":172,"On":36,"Oa":4.78,"Od":0.95,"pm":36},"p":[[22,{"n":4,"e":4090}],[-38,{"n":4,"e":3539}],[-37,{"n":4.5,"e":3532}],[-36,{"n":5,"e":3519}],[-35,{"n":5.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5.5,"e":3488}],[-32,{"n":5,"e":3480}],[-31,{"n":6,"e":3470}],[-30,{"n":4,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":4.5,"e":3444}],[-27,{"n":4.5,"e":3430}],[26,{"n":4.5,"e":4056}],[25,{"n":4,"e":4059}],[24,{"n":6,"e":4074}],[23,{"n":4.5,"e":4080}],[21,{"n":4,"e":4100}],[20,{"n":5,"e":4110}],[19,{"n":4.5,"e":4122}],[18,{"n":5.5,"e":4129}],[17,{"n":5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":5.5,"e":4186}],[12,{"n":7,"e":4188}],[11,{"n":3,"e":4205}],[10,{"n":5.5,"e":4210}],[7,{"n":4,"e":4239}],[6,{"n":6.5,"e":4250}],[5,{"n":4,"e":4259}],[4,{"n":4,"e":4275}],[3,{"n":5,"e":4284}],[2,{"n":5.5,"e":4288}],[1,{"n":6,"e":4301}]]}],[763,{"n":"Gibson","f":"Ben","fp":"DC","r":1,"c":23}],[764,{"n":"Lowton","f":"Matthew","fp":"DL","r":10,"c":23,"s":{"s":69.5,"n":15,"a":4.63,"d":1.32,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Os":98.5,"On":21,"Oa":4.69,"Od":1.17,"pd":21},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":4,"e":3532}],[-36,{"n":4.5,"e":3519}],[-35,{"n":4.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5.5,"e":3488}],[25,{"n":6,"e":4059}],[24,{"n":5.5,"e":4074}],[22,{"n":3,"e":4090}],[16,{"n":2.5,"e":4155}],[11,{"n":3,"e":4205}],[10,{"n":3,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":5.5,"e":4229}],[7,{"n":5.5,"e":4239}],[6,{"n":6,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":6,"e":4301}]]}],[765,{"n":"Barnes","f":"Ashley","fp":"A","r":17,"c":23,"s":{"g":6,"s":91,"n":19,"a":4.79,"d":1.46,"Og":11,"Oao":1,"Os":152,"On":31,"Oa":4.9,"Od":1.33,"pa":31},"p":[[-38,{"n":6,"e":3539,"g":1}],[-37,{"n":3,"e":3532}],[-36,{"n":4,"e":3519}],[-35,{"n":7,"e":3511,"g":1}],[-34,{"n":5,"e":3499}],[-33,{"n":6,"e":3488,"g":1,"a":1}],[-32,{"n":5,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":4,"e":3464}],[-29,{"n":6,"e":3450,"g":1}],[-28,{"n":4.5,"e":3444}],[-27,{"n":6,"e":3430,"g":1}],[21,{"n":3.5,"e":4100}],[20,{"n":3.5,"e":4110}],[19,{"n":4.5,"e":4122,"s":1}],[18,{"n":4.5,"e":4129}],[17,{"n":5,"e":4139}],[15,{"n":4.5,"e":4159,"s":1}],[14,{"n":3.5,"e":4168}],[13,{"n":6.5,"e":4186,"g":1}],[12,{"n":7,"e":4188,"g":1}],[11,{"n":2.5,"e":4205}],[10,{"n":4,"e":4210}],[8,{"n":4.5,"e":4229}],[7,{"n":4.5,"e":4239}],[6,{"n":5.5,"e":4250}],[5,{"n":4,"e":4259}],[4,{"n":3,"e":4275}],[3,{"n":6,"e":4284,"g":1}],[2,{"n":6.5,"e":4288,"g":1}],[1,{"n":8,"e":4301,"g":2}]],"fo":[[4129,[{"t":"Y"}]]],"a":{"m":23,"a":31,"M":39,"n":15}}],[767,{"n":"Mee","f":"Ben","fp":"DC","r":13,"c":23,"s":{"s":128,"n":26,"a":4.92,"d":1.34,"Ss":122.5,"Sn":25,"Sa":4.9,"Sd":1.36,"Oao":1,"Os":187,"On":38,"Oa":4.92,"Od":1.23,"pd":38},"p":[[-38,{"n":3.5,"e":3539}],[-37,{"n":4,"e":3532,"a":1}],[-36,{"n":6,"e":3519}],[-35,{"n":6,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6,"e":3480}],[-31,{"n":4,"e":3470}],[-30,{"n":3.5,"e":3464}],[-29,{"n":4.5,"e":3450}],[-28,{"n":5,"e":3444}],[-27,{"n":5.5,"e":3430}],[26,{"n":5.5,"e":4056}],[25,{"n":6,"e":4059}],[24,{"n":8,"e":4074}],[23,{"n":4.5,"e":4080}],[22,{"n":5,"e":4090}],[21,{"n":3.5,"e":4100}],[20,{"n":3.5,"e":4110}],[19,{"n":5.5,"e":4122}],[18,{"n":5.5,"e":4129}],[17,{"n":5.5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":3,"e":4168}],[13,{"n":6,"e":4186}],[12,{"n":7,"e":4188}],[11,{"n":3,"e":4205}],[10,{"n":3.5,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":6,"e":4229}],[7,{"n":4.5,"e":4239}],[6,{"n":6,"e":4250}],[5,{"n":5.5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":6,"e":4301}]],"fo":[[4056,[{"t":"Y"}]],[4080,[{"t":"Y"}]],[4110,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":16,"n":5}}],[769,{"n":"Ward","f":"Stephen","fp":"DC","r":1,"c":23}],[803,{"n":"Vokes","f":"Sam","fp":"A","r":10,"c":23}],[811,{"n":"Pieters","f":"Erik","fp":"DL","r":6,"c":23,"s":{"s":66.5,"n":15,"a":4.43,"d":1.24,"Og":1,"Os":133.5,"On":28,"Oa":4.77,"Od":1.27,"pd":28},"p":[[-38,{"n":6,"e":3102}],[-37,{"n":3.5,"e":3096}],[-36,{"n":5.5,"e":3082}],[-35,{"n":6.5,"e":3076}],[-34,{"n":6,"e":3062}],[-33,{"n":3,"e":3055}],[-32,{"n":4.5,"e":3043}],[-31,{"n":5,"e":3032}],[-30,{"n":5.5,"e":3022}],[-29,{"n":5,"e":3012}],[-28,{"n":7.5,"e":3002,"g":1}],[-26,{"n":5,"e":2982}],[-27,{"n":4,"e":3001}],[17,{"n":5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":4,"e":4168,"s":1}],[11,{"n":2.5,"e":4205}],[10,{"n":3,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":5,"e":4229}],[7,{"n":5,"e":4239}],[6,{"n":6,"e":4250}],[5,{"n":5.5,"e":4259}],[4,{"n":4.5,"e":4275}],[3,{"n":3.5,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":7,"e":4301}]]}],[813,{"n":"Walters","f":"Jonathan","fp":"A","r":1,"c":23}],[846,{"n":"Gudmundsson","f":"Jóhann","fp":"MO","r":7,"c":23,"s":{"g":1,"s":38.5,"n":7,"a":5.5,"d":1,"Og":2,"Os":90,"On":17,"Oa":5.29,"Od":0.88,"pm":17},"p":[[-38,{"n":6,"e":3539,"s":1}],[-37,{"n":5,"e":3532}],[-36,{"n":5,"e":3519,"s":1}],[-33,{"n":4.5,"e":3488,"s":1}],[-32,{"n":4.5,"e":3480,"s":1}],[-31,{"n":4.5,"e":3470}],[-30,{"n":7,"e":3464,"g":1,"s":1}],[-29,{"n":4.5,"e":3450,"s":1}],[-28,{"n":5,"e":3444}],[-27,{"n":5.5,"e":3430,"s":1}],[21,{"n":5.5,"e":4100,"s":1}],[20,{"n":5,"e":4110,"s":1}],[19,{"n":4.5,"e":4122,"s":1}],[8,{"n":6,"e":4229}],[3,{"n":5,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":7.5,"e":4301,"g":1}]],"a":{"m":9,"a":14,"M":20,"n":5}}],[897,{"n":"Brady","f":"Robbie","fp":"MD","r":6,"c":23,"s":{"g":1,"s":63,"n":13,"a":4.85,"d":0.85,"Og":1,"Os":91.5,"On":19,"Oa":4.82,"Od":0.71,"pm":19},"p":[[-38,{"n":4.5,"e":3539,"s":1}],[-37,{"n":5,"e":3532}],[-31,{"n":5,"e":3470,"s":1}],[-29,{"n":4.5,"e":3450,"s":1}],[-28,{"n":4.5,"e":3444,"s":1}],[-27,{"n":5,"e":3430,"s":1}],[21,{"n":3.5,"e":4100}],[20,{"n":4.5,"e":4110,"s":1}],[19,{"n":5.5,"e":4122}],[18,{"n":5,"e":4129,"s":1}],[16,{"n":3,"e":4155}],[15,{"n":6,"e":4159,"g":1,"s":1}],[14,{"n":5,"e":4168}],[12,{"n":5,"e":4188,"s":1}],[11,{"n":5,"e":4205,"s":1}],[10,{"n":6,"e":4210,"s":1}],[9,{"n":4.5,"e":4223}],[7,{"n":5,"e":4239,"s":1}],[6,{"n":5,"e":4250,"s":1}]]}],[899,{"n":"Lennon","f":"Aaron","fp":"MO","r":3,"c":23,"s":{"s":66.5,"n":14,"a":4.75,"d":0.43,"Os":66.5,"On":14,"Oa":4.75,"Od":0.43,"pm":14},"p":[[23,{"n":5,"e":4080,"s":1}],[22,{"n":4,"e":4090}],[18,{"n":5,"e":4129,"s":1}],[16,{"n":5,"e":4155,"s":1}],[15,{"n":4,"e":4159}],[14,{"n":5,"e":4168,"s":1}],[9,{"n":5,"e":4223,"s":1}],[8,{"n":5,"e":4229,"s":1}],[6,{"n":5,"e":4250,"s":1}],[5,{"n":4.5,"e":4259}],[4,{"n":4,"e":4275}],[3,{"n":5,"e":4284,"s":1}],[2,{"n":5,"e":4288,"s":1}],[1,{"n":5,"e":4301,"s":1}]],"fo":[[4090,[{"t":"Y"}]]]}],[932,{"n":"Bardsley","f":"Phil","fp":"DL","r":7,"c":23,"s":{"s":56,"n":11,"a":5.09,"d":0.97,"Oao":1,"Os":79.5,"On":17,"Oa":4.68,"Od":1.16,"pd":17},"p":[[-32,{"n":5.5,"e":3480}],[-31,{"n":4,"e":3470}],[-30,{"n":3,"e":3464}],[-29,{"n":2.5,"e":3450,"a":1}],[-28,{"n":3.5,"e":3444}],[-27,{"n":5,"e":3430}],[26,{"n":5,"e":4056}],[23,{"n":5,"e":4080}],[21,{"n":4.5,"e":4100}],[20,{"n":5,"e":4110}],[19,{"n":4.5,"e":4122}],[18,{"n":5,"e":4129}],[17,{"n":5.5,"e":4139}],[15,{"n":3.5,"e":4159}],[14,{"n":4.5,"e":4168}],[13,{"n":7,"e":4186}],[12,{"n":6.5,"e":4188}]],"fo":[[4110,[{"t":"Y"}]]]}],[951,{"n":"Tarkowski","f":"James","fp":"DC","r":14,"c":23,"s":{"g":1,"s":132,"n":26,"a":5.08,"d":1.32,"Sg":1,"Ss":126.5,"Sn":25,"Sa":5.06,"Sd":1.35,"Og":1,"Os":189,"On":38,"Oa":4.97,"Od":1.28,"pd":38},"p":[[-38,{"n":4,"e":3539}],[-37,{"n":5,"e":3532}],[-36,{"n":5.5,"e":3519}],[-35,{"n":4.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6.5,"e":3480}],[-31,{"n":4,"e":3470}],[-30,{"n":3.5,"e":3464}],[-29,{"n":3,"e":3450}],[-28,{"n":3.5,"e":3444}],[-27,{"n":6.5,"e":3430}],[26,{"n":5.5,"e":4056}],[25,{"n":5.5,"e":4059}],[24,{"n":7,"e":4074}],[23,{"n":5.5,"e":4080}],[22,{"n":4,"e":4090}],[21,{"n":4,"e":4100}],[20,{"n":4,"e":4110}],[19,{"n":5.5,"e":4122}],[18,{"n":5.5,"e":4129}],[17,{"n":6,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":3.5,"e":4168}],[13,{"n":7.5,"e":4186,"g":1}],[12,{"n":7.5,"e":4188}],[11,{"n":3,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":5,"e":4223}],[8,{"n":7,"e":4229}],[7,{"n":5,"e":4239}],[6,{"n":5.5,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":4.5,"e":4288}],[1,{"n":6,"e":4301}]],"fo":[[4059,[{"t":"Y"}]],[4100,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":19,"n":6}}],[997,{"n":"Hendrick","f":"Jeff","fp":"MO","r":14,"c":23,"s":{"g":2,"s":105.5,"n":21,"a":5.02,"d":1.18,"Ss":20,"Sn":4,"Sa":5,"Sd":1.35,"Og":3,"Os":158,"On":32,"Oa":4.94,"Od":1.04,"pm":30,"pa":2},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":4.5,"e":3532,"s":1}],[-36,{"n":4.5,"e":3519}],[-35,{"n":6,"e":3511,"g":1}],[-34,{"n":5.5,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":5,"e":3480}],[-30,{"n":4.5,"e":3464}],[-29,{"n":3.5,"e":3450}],[-28,{"n":4,"e":3444}],[-27,{"n":5.5,"e":3430}],[26,{"n":6,"e":4056}],[25,{"n":5.5,"e":4059}],[24,{"n":6,"e":4074}],[23,{"n":5.5,"e":4080}],[22,{"n":3,"e":4090}],[20,{"n":4,"e":4110}],[18,{"n":5,"e":4129}],[17,{"n":5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":4,"e":4159}],[14,{"n":5,"e":4168}],[13,{"n":5.5,"e":4186}],[12,{"n":6.5,"e":4188}],[11,{"n":3.5,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":7,"e":4229,"g":1}],[7,{"n":5.5,"e":4239}],[6,{"n":5.5,"e":4250}],[5,{"n":7,"e":4259,"g":1,"s":1}],[3,{"n":5,"e":4284,"s":1}]],"fo":[[4056,[{"t":"Y"}]],[4129,[{"t":"Y"}]]]}],[1045,{"n":"Pope","f":"Nick","fp":"G","r":19,"c":23,"s":{"s":142.5,"n":26,"a":5.48,"d":1.34,"Ss":137.5,"Sn":25,"Sa":5.5,"Sd":1.36,"Os":142.5,"On":26,"Oa":5.48,"Od":1.34,"pg":26},"p":[[26,{"n":5,"e":4056}],[25,{"n":6,"e":4059}],[24,{"n":8,"e":4074}],[23,{"n":8,"e":4080}],[22,{"n":4,"e":4090}],[21,{"n":5.5,"e":4100}],[20,{"n":4,"e":4110}],[19,{"n":6,"e":4122}],[18,{"n":6,"e":4129}],[17,{"n":6,"e":4139}],[16,{"n":3.5,"e":4155}],[15,{"n":5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":7,"e":4186}],[12,{"n":6.5,"e":4188}],[11,{"n":4,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":6,"e":4229}],[7,{"n":4,"e":4239}],[6,{"n":6.5,"e":4250}],[5,{"n":6.5,"e":4259}],[4,{"n":4,"e":4275}],[3,{"n":5.5,"e":4284}],[2,{"n":7,"e":4288}],[1,{"n":6.5,"e":4301}]],"a":{"m":14,"a":22,"M":32,"n":13}}],[1054,{"n":"Westwood","f":"Ashley","fp":"MD","r":17,"c":23,"s":{"g":2,"s":124,"n":23,"a":5.39,"d":1.13,"Sg":1,"Ss":49.5,"Sn":9,"Sa":5.5,"Sd":1.06,"Og":4,"Os":185,"On":34,"Oa":5.44,"Od":1.06,"pm":34},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":5,"e":3532}],[-36,{"n":5,"e":3519}],[-35,{"n":5.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":8,"e":3488,"g":1}],[-32,{"n":6,"e":3480}],[-31,{"n":5,"e":3470}],[-30,{"n":5,"e":3464,"g":1}],[-29,{"n":5.5,"e":3450}],[-27,{"n":5.5,"e":3430}],[26,{"n":6.5,"e":4056,"g":1}],[25,{"n":6,"e":4059}],[24,{"n":6.5,"e":4074}],[23,{"n":6.5,"e":4080,"g":1}],[22,{"n":3.5,"e":4090}],[21,{"n":5,"e":4100}],[20,{"n":5,"e":4110}],[19,{"n":4.5,"e":4122}],[18,{"n":6,"e":4129}],[17,{"n":6.5,"e":4139}],[13,{"n":7,"e":4186}],[12,{"n":6,"e":4188}],[11,{"n":4,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":4.5,"e":4223}],[8,{"n":7,"e":4229}],[7,{"n":4,"e":4239}],[6,{"n":6.5,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":5.5,"e":4301}]],"fo":[[4074,[{"t":"Y"}]],[4090,[{"t":"Y"}]],[4129,[{"t":"Y"}]]]}],[1074,{"n":"Long","f":"Kevin","fp":"DC","r":1,"c":23,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[19,{"n":5,"e":4122,"s":1}]]}],[1297,{"n":"Taylor","f":"Charlie","fp":"DL","r":11,"c":23,"s":{"s":71.5,"n":14,"a":5.11,"d":0.88,"Ss":39,"Sn":8,"Sa":4.88,"Sd":0.95,"Os":129,"On":26,"Oa":4.96,"Od":0.79,"pd":26},"p":[[-38,{"n":4,"e":3539}],[-37,{"n":4.5,"e":3532}],[-36,{"n":4.5,"e":3519}],[-35,{"n":5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":4.5,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":4.5,"e":3444}],[-27,{"n":5,"e":3430}],[26,{"n":4.5,"e":4056}],[25,{"n":5,"e":4059}],[24,{"n":5.5,"e":4074}],[23,{"n":5.5,"e":4080}],[22,{"n":4,"e":4090}],[21,{"n":5,"e":4100}],[20,{"n":3,"e":4110}],[19,{"n":5,"e":4122}],[18,{"n":6,"e":4129}],[14,{"n":5,"e":4168}],[13,{"n":6.5,"e":4186}],[12,{"n":6,"e":4188}],[11,{"n":5,"e":4205,"s":1}],[8,{"n":5.5,"e":4229,"s":1}]],"fo":[[4074,[{"t":"Y"}]],[4110,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":12,"n":5}}],[1299,{"n":"Wood","f":"Chris","fp":"A","r":26,"c":23,"s":{"g":10,"ao":1,"s":115.5,"n":24,"a":4.81,"d":1.55,"Sg":6,"Ss":68.5,"Sn":14,"Sa":4.89,"Sd":1.57,"Og":14,"Oao":1,"Os":174.5,"On":36,"Oa":4.85,"Od":1.55,"pa":36},"p":[[-38,{"n":4,"e":3539}],[-37,{"n":4,"e":3532}],[-36,{"n":3,"e":3519}],[-35,{"n":5,"e":3511}],[-34,{"n":8,"e":3499,"g":2}],[-33,{"n":7.5,"e":3488,"g":1}],[-32,{"n":5.5,"e":3480}],[-31,{"n":3.5,"e":3470}],[-30,{"n":4,"e":3464}],[-29,{"n":4.5,"e":3450}],[-28,{"n":3.5,"e":3444}],[-27,{"n":6.5,"e":3430,"g":1}],[26,{"n":4.5,"e":4056}],[25,{"n":5,"e":4059}],[24,{"n":7,"e":4074,"g":1}],[23,{"n":6.5,"e":4080,"g":1}],[22,{"n":4,"e":4090}],[21,{"n":6,"e":4100,"g":1}],[20,{"n":4,"e":4110}],[19,{"n":3,"e":4122}],[18,{"n":3.5,"e":4129}],[17,{"n":6,"e":4139,"g":1}],[16,{"n":2.5,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":6.5,"e":4186,"g":1}],[12,{"n":7,"e":4188,"g":1}],[9,{"n":6,"e":4223,"g":1}],[8,{"n":4.5,"e":4229}],[7,{"n":6,"e":4239,"g":1}],[6,{"n":8,"e":4250,"g":2}],[5,{"n":3.5,"e":4259}],[4,{"n":2.5,"e":4275,"a":1}],[3,{"n":4,"e":4284}],[2,{"n":3.5,"e":4288}],[1,{"n":4.5,"e":4301}]],"fo":[[4056,[{"t":"I"}]]],"a":{"m":20,"a":35,"M":59,"n":21}}],[1320,{"n":"Hart","f":"Joe","fp":"G","r":7,"c":23}],[1345,{"n":"Legzdins","f":"Adam","fp":"G","r":1,"c":23}],[1348,{"n":"Agyei","f":"Daniel","fp":"A","r":1,"c":23}],[1478,{"n":"Wells","f":"Nahki","fp":"A","r":6,"c":23}],[2061,{"n":"Lindegaard","f":"Anders","fp":"G","r":1,"c":23}],[2200,{"n":"O'Neill","f":"Aiden","fp":"MD","r":7,"c":23}],[2497,{"n":"Vydra","f":"Matej","fp":"A","r":1,"c":23,"s":{"g":1,"s":33,"n":7,"a":4.71,"d":1.07,"Og":1,"Os":55.5,"On":12,"Oa":4.63,"Od":0.88,"pa":12},"p":[[-37,{"n":4,"e":3532,"s":1}],[-36,{"n":4.5,"e":3519,"s":1}],[-31,{"n":4.5,"e":3470,"s":1}],[-30,{"n":5.5,"e":3464,"s":1}],[-28,{"n":4,"e":3444,"s":1}],[26,{"n":7,"e":4056,"g":1,"s":1}],[22,{"n":4,"e":4090,"s":1}],[16,{"n":4,"e":4155,"s":1}],[11,{"n":4.5,"e":4205,"s":1}],[10,{"n":4.5,"e":4210,"s":1}],[9,{"n":4,"e":4223,"s":1}],[5,{"n":5,"e":4259,"s":1}]]}],[2817,{"n":"McNeil","f":"Dwight","fp":"A","r":17,"c":23,"s":{"g":1,"s":150,"n":26,"a":5.77,"d":1.03,"Sg":1,"Ss":144,"Sn":25,"Sa":5.76,"Sd":1.05,"Og":3,"Os":214.5,"On":38,"Oa":5.64,"Od":1.1,"pm":37,"pa":1},"p":[[-38,{"n":5.5,"e":3539}],[-37,{"n":4,"e":3532,"s":1}],[-36,{"n":5,"e":3519}],[-35,{"n":5.5,"e":3511}],[-34,{"n":7,"e":3499}],[-33,{"n":5.5,"e":3488}],[-32,{"n":7,"e":3480,"g":1}],[-31,{"n":7,"e":3470,"g":1}],[-30,{"n":4.5,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":3.5,"e":3444}],[-27,{"n":6,"e":3430}],[26,{"n":6,"e":4056}],[25,{"n":7,"e":4059}],[24,{"n":6,"e":4074}],[23,{"n":5.5,"e":4080}],[22,{"n":5.5,"e":4090}],[21,{"n":5.5,"e":4100}],[20,{"n":4.5,"e":4110}],[19,{"n":5.5,"e":4122}],[18,{"n":5,"e":4129}],[17,{"n":7,"e":4139}],[16,{"n":4,"e":4155}],[15,{"n":4.5,"e":4159}],[14,{"n":6,"e":4168}],[13,{"n":6,"e":4186}],[12,{"n":8,"e":4188}],[11,{"n":3.5,"e":4205}],[10,{"n":7,"e":4210,"g":1}],[9,{"n":6,"e":4223}],[8,{"n":6,"e":4229}],[7,{"n":5.5,"e":4239}],[6,{"n":7,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":6,"e":4288}],[1,{"n":7,"e":4301}]],"fo":[[4090,[{"t":"Y"}]],[4110,[{"t":"Y"}]],[4129,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":32,"n":22}}],[2972,{"n":"Ali Koiki","f":"","fp":"DL","r":1,"c":23}],[2984,{"n":"Massanka","f":"Ntumba","fp":"MD","r":2,"c":23}],[3351,{"n":"Benson","f":"Josh","fp":"MD","r":1,"c":23}],[3673,{"n":"Driscoll-Glennon","f":"Anthony","fp":"DC","r":1,"c":23}],[5995,{"n":"Peacock-Farrell","f":"Bailey","fp":"G","r":1,"c":23}],[6120,{"n":"Jimmy Dunne","f":"","fp":"DC","r":1,"c":23}],[6240,{"n":"Richardson","f":"Lewis","fp":"A","r":1,"c":23}],[6426,{"n":"Goodridge","f":"Mace","fp":"MD","r":1,"c":23}],[6554,{"n":"Brownhill","f":"Josh","fp":"MO","r":10,"c":23}],[419,{"n":"Jorginho","f":"","fp":"MD","r":25,"c":25,"s":{"g":4,"s":128.5,"n":23,"a":5.59,"d":1.27,"Sg":1,"Ss":12,"Sn":2,"Sa":6,"Sd":1.41,"Og":5,"Os":196,"On":35,"Oa":5.6,"Od":1.17,"pm":35},"p":[[25,{"n":5,"e":4061}],[23,{"n":5,"e":4083}],[18,{"n":5,"e":4135,"s":1}],[14,{"n":3.5,"e":4169}],[13,{"n":4,"e":4184}],[11,{"n":7,"e":4206}],[9,{"n":6.5,"e":4220}],[8,{"n":7,"e":4233}],[6,{"n":4.5,"e":4257}],[5,{"n":7,"e":4263}],[4,{"n":6,"e":4269}],[3,{"n":6,"e":4279}],[2,{"n":4,"e":4296}],[1,{"n":3.5,"e":4307}],[-38,{"n":6,"e":3542}],[-37,{"n":7,"e":3531}],[-36,{"n":6,"e":3524}],[-35,{"n":5,"e":3511}],[-34,{"n":4,"e":3503}],[-33,{"n":5.5,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":5.5,"e":3471}],[-30,{"n":4,"e":3460}],[-29,{"n":6,"e":3452,"g":1}],[-28,{"n":6.5,"e":3443}],[-27,{"n":7,"e":3432}],[24,{"n":7,"e":4075,"g":1}],[22,{"n":6,"e":4090,"g":1}],[21,{"n":5,"e":4099}],[20,{"n":7,"e":4108,"g":1,"s":1}],[19,{"n":4.5,"e":4120}],[17,{"n":6,"e":4140}],[15,{"n":5,"e":4164,"s":1}],[10,{"n":6,"e":4210}],[7,{"n":8,"e":4241,"g":1}]],"fo":[[4061,[{"t":"Y"}]],[4108,[{"t":"Y"}]],[4120,[{"t":"Y"}]]],"a":{"m":24,"a":32,"M":40,"n":6}}],[601,{"n":"Giroud","f":"Olivier","fp":"A","r":3,"c":25,"s":{"s":21,"n":5,"a":4.2,"d":0.57,"Og":1,"Os":58.5,"On":13,"Oa":4.5,"Od":0.74,"pa":13},"p":[[-38,{"n":4.5,"e":3542,"s":1}],[-37,{"n":4,"e":3531,"s":1}],[-35,{"n":4,"e":3511,"s":1}],[-33,{"n":5,"e":3489,"s":1}],[-32,{"n":4.5,"e":3481,"s":1}],[-31,{"n":4.5,"e":3471,"s":1}],[-28,{"n":4.5,"e":3443,"s":1}],[-27,{"n":6.5,"e":3432,"g":1}],[14,{"n":3.5,"e":4169}],[10,{"n":4,"e":4210,"s":1}],[3,{"n":4,"e":4279,"s":1}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307,"s":1}]]}],[602,{"n":"Kanté","f":"N'Golo","fp":"MD","r":23,"c":25,"s":{"g":3,"s":92,"n":17,"a":5.41,"d":1.05,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.76,"Og":4,"Os":145,"On":27,"Oa":5.37,"Od":0.87,"pm":27},"p":[[16,{"n":5,"e":4151}],[12,{"n":5.5,"e":4189}],[-37,{"n":5,"e":3531}],[-36,{"n":5,"e":3524}],[-35,{"n":6,"e":3511,"g":1}],[-34,{"n":5.5,"e":3503}],[-33,{"n":5,"e":3489}],[-31,{"n":4.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":6,"e":3452}],[-28,{"n":5.5,"e":3443}],[-27,{"n":5.5,"e":3432}],[25,{"n":5,"e":4061}],[24,{"n":4,"e":4075}],[23,{"n":5.5,"e":4083}],[21,{"n":6,"e":4099}],[20,{"n":6,"e":4108}],[19,{"n":3.5,"e":4120}],[18,{"n":6,"e":4135}],[17,{"n":4.5,"e":4140}],[15,{"n":6,"e":4164}],[14,{"n":4.5,"e":4169,"s":1}],[13,{"n":7,"e":4184,"g":1}],[8,{"n":7,"e":4233,"g":1}],[6,{"n":7,"e":4257,"g":1}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307,"s":1}]],"fo":[[4108,[{"t":"Y"}]],[4120,[{"t":"Y"}]]],"a":{"m":24,"a":28,"M":35,"n":5}}],[607,{"n":"Pedro","f":"","fp":"A","r":7,"c":25,"s":{"s":30,"n":6,"a":5,"d":0.32,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":83,"On":16,"Oa":5.19,"Od":0.83,"pm":4,"pa":12},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":7,"e":3531}],[-36,{"n":5.5,"e":3524,"s":1}],[-35,{"n":4.5,"e":3511,"s":1}],[-33,{"n":4.5,"e":3489,"s":1}],[-32,{"n":4,"e":3481}],[-31,{"n":5.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":4.5,"e":3452,"s":1}],[-28,{"n":7,"e":3443,"g":1}],[25,{"n":5.5,"e":4061}],[19,{"n":4.5,"e":4120,"s":1}],[14,{"n":5,"e":4169}],[7,{"n":5,"e":4241}],[2,{"n":5,"e":4296}],[1,{"n":5,"e":4307}]]}],[619,{"n":"Willian","f":"","fp":"A","r":19,"c":25,"s":{"g":4,"s":137,"n":24,"a":5.71,"d":1.26,"Sg":4,"Ss":137,"Sn":24,"Sa":5.71,"Sd":1.26,"Og":4,"Os":179.5,"On":32,"Oa":5.61,"Od":1.14,"pm":8,"pa":24},"p":[[-38,{"n":5,"e":3542}],[-36,{"n":5,"e":3524}],[-34,{"n":5,"e":3503}],[-32,{"n":6.5,"e":3481}],[-30,{"n":5.5,"e":3460,"s":1}],[-29,{"n":6,"e":3452}],[-28,{"n":5,"e":3443,"s":1}],[-27,{"n":4.5,"e":3432,"s":1}],[25,{"n":4,"e":4061,"s":1}],[24,{"n":4.5,"e":4075}],[23,{"n":5,"e":4083}],[22,{"n":7,"e":4090}],[21,{"n":5.5,"e":4099}],[20,{"n":7,"e":4108}],[19,{"n":4,"e":4120}],[18,{"n":8.5,"e":4135,"g":2}],[17,{"n":5.5,"e":4140}],[16,{"n":5,"e":4151}],[15,{"n":7,"e":4164}],[14,{"n":5,"e":4169,"s":1}],[13,{"n":4.5,"e":4184}],[12,{"n":7.5,"e":4189}],[11,{"n":5.5,"e":4206}],[10,{"n":7,"e":4210,"g":1}],[9,{"n":6,"e":4220}],[8,{"n":7,"e":4233}],[7,{"n":7,"e":4241,"g":1}],[6,{"n":4.5,"e":4257}],[5,{"n":6,"e":4263}],[4,{"n":5,"e":4269,"s":1}],[3,{"n":4.5,"e":4279,"s":1}],[2,{"n":4.5,"e":4296,"s":1}]],"a":{"m":19,"a":30,"M":58,"n":13}}],[625,{"n":"Barkley","f":"Ross","fp":"MO","r":6,"c":25,"s":{"s":52.5,"n":10,"a":5.25,"d":0.72,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.87,"Os":84.5,"On":16,"Oa":5.28,"Od":0.58,"pm":16},"p":[[-38,{"n":5.5,"e":3542}],[-34,{"n":5,"e":3503,"s":1}],[-33,{"n":5.5,"e":3489,"s":1}],[-32,{"n":5,"e":3481}],[-31,{"n":5.5,"e":3471}],[-29,{"n":5.5,"e":3452}],[25,{"n":4.5,"e":4061,"s":1}],[24,{"n":5,"e":4075,"s":1}],[23,{"n":5,"e":4083,"s":1}],[22,{"n":6.5,"e":4090}],[9,{"n":5,"e":4220}],[7,{"n":5.5,"e":4241}],[5,{"n":5,"e":4263,"s":1}],[4,{"n":5,"e":4269}],[3,{"n":6.5,"e":4279}],[1,{"n":4.5,"e":4307}]]}],[650,{"n":"Azpilicueta","f":"César","fp":"DL","r":18,"c":25,"s":{"g":2,"s":110.5,"n":23,"a":4.8,"d":0.73,"Sg":2,"Ss":54,"Sn":11,"Sa":4.91,"Sd":0.8,"Og":3,"Os":175,"On":35,"Oa":5,"Od":0.81,"pd":31,"pm":4},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":7,"e":3531}],[-36,{"n":5,"e":3524}],[-35,{"n":5,"e":3511}],[-34,{"n":4,"e":3503}],[-33,{"n":5,"e":3489}],[-32,{"n":6.5,"e":3481,"g":1}],[-31,{"n":4.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":6,"e":3452}],[-28,{"n":5.5,"e":3443}],[-27,{"n":6,"e":3432}],[25,{"n":4,"e":4061}],[24,{"n":5,"e":4075,"g":1}],[23,{"n":4.5,"e":4083}],[22,{"n":6,"e":4090}],[21,{"n":6,"e":4099,"g":1}],[20,{"n":4.5,"e":4108}],[19,{"n":4,"e":4120}],[18,{"n":5,"e":4135}],[17,{"n":6,"e":4140}],[16,{"n":4,"e":4151}],[15,{"n":5,"e":4164}],[13,{"n":5,"e":4184}],[11,{"n":5,"e":4206}],[10,{"n":4.5,"e":4210}],[9,{"n":4.5,"e":4220}],[8,{"n":5,"e":4233}],[7,{"n":5.5,"e":4241}],[6,{"n":4.5,"e":4257}],[5,{"n":5,"e":4263}],[4,{"n":4,"e":4269}],[3,{"n":5.5,"e":4279}],[2,{"n":5,"e":4296}],[1,{"n":3,"e":4307}]],"fo":[[4135,[{"t":"I"}]]]}],[659,{"n":"Alonso","f":"Marcos","fp":"DL","r":4,"c":25,"s":{"g":1,"s":43.5,"n":8,"a":5.44,"d":0.82,"Og":2,"Os":75.5,"On":14,"Oa":5.39,"Od":1.06,"pd":12,"pm":2},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3531}],[-36,{"n":6,"e":3524,"g":1}],[-32,{"n":4.5,"e":3481}],[-31,{"n":3,"e":3471}],[-28,{"n":7,"e":3443}],[18,{"n":7,"e":4135}],[10,{"n":5,"e":4210}],[9,{"n":6,"e":4220,"g":1}],[8,{"n":6,"e":4233}],[7,{"n":5,"e":4241}],[6,{"n":5,"e":4257,"s":1}],[5,{"n":5,"e":4263}],[3,{"n":4.5,"e":4279,"s":1}]]}],[848,{"n":"Caballero","f":"Willy","fp":"G","r":8,"c":25,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":16,"On":3,"Oa":5.33,"Od":1.15,"pg":3},"p":[[-38,{"n":6,"e":3542}],[-28,{"n":6,"e":3443}],[25,{"n":4,"e":4061}]]}],[850,{"n":"Batshuayi","f":"Michy","fp":"A","r":6,"c":25,"s":{"g":1,"s":64.5,"n":14,"a":4.61,"d":0.56,"Og":6,"Os":113.5,"On":23,"Oa":4.93,"Od":1,"pa":23},"p":[[-37,{"n":6,"e":3530,"g":1}],[-33,{"n":4,"e":3493}],[-31,{"n":4.5,"e":3474}],[-28,{"n":4,"e":3442}],[-27,{"n":7,"e":3434,"g":1}],[-38,{"n":7.5,"e":3540,"g":2}],[-32,{"n":4.5,"e":3482}],[-30,{"n":5,"e":3461}],[-29,{"n":6.5,"e":3450,"g":1}],[24,{"n":4.5,"e":4075,"s":1}],[23,{"n":4,"e":4083,"s":1}],[18,{"n":4.5,"e":4135,"s":1}],[17,{"n":4.5,"e":4140,"s":1}],[16,{"n":4.5,"e":4151,"s":1}],[15,{"n":4.5,"e":4164,"s":1}],[13,{"n":4,"e":4184,"s":1}],[12,{"n":5.5,"e":4189,"s":1}],[11,{"n":4.5,"e":4206,"s":1}],[8,{"n":6,"e":4233,"g":1,"s":1}],[7,{"n":4.5,"e":4241,"s":1}],[6,{"n":4,"e":4257,"s":1}],[5,{"n":5,"e":4263,"s":1}],[4,{"n":4.5,"e":4269,"s":1}]]}],[959,{"n":"Loftus-Cheek","f":"Ruben","fp":"MO","r":3,"c":25,"s":{"Og":3,"Os":66,"On":12,"Oa":5.5,"Od":1.13,"pm":12},"p":[[-38,{"n":6.5,"e":3542}],[-37,{"n":7,"e":3531,"g":1,"s":1}],[-36,{"n":5,"e":3524,"s":1}],[-35,{"n":5.5,"e":3511}],[-34,{"n":3.5,"e":3503}],[-33,{"n":5.5,"e":3489}],[-32,{"n":6,"e":3481,"g":1,"s":1}],[-31,{"n":4.5,"e":3471,"s":1}],[-30,{"n":5,"e":3460,"s":1}],[-29,{"n":4.5,"e":3452,"s":1}],[-28,{"n":5.5,"e":3443,"s":1}],[-27,{"n":7.5,"e":3432,"g":1}]]}],[992,{"n":"Zouma","f":"Kurt","fp":"DC","r":10,"c":25,"s":{"ao":1,"s":99,"n":20,"a":4.95,"d":1.11,"Og":1,"Oao":1,"Os":152,"On":30,"Oa":5.07,"Od":1.13,"pd":30},"p":[[-38,{"n":4,"e":3546}],[-36,{"n":5,"e":3520}],[-35,{"n":6,"e":3512}],[-32,{"n":7.5,"e":3487,"g":1}],[-30,{"n":4,"e":3466}],[-29,{"n":6,"e":3451}],[-27,{"n":4.5,"e":3433}],[-37,{"n":6,"e":3532}],[-34,{"n":4,"e":3501}],[-33,{"n":6,"e":3490}],[21,{"n":4.5,"e":4099}],[20,{"n":5,"e":4108}],[19,{"n":4.5,"e":4120}],[18,{"n":5,"e":4135}],[17,{"n":6,"e":4140}],[16,{"n":4,"e":4151}],[15,{"n":5.5,"e":4164}],[14,{"n":5.5,"e":4169}],[13,{"n":4,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":7,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":6,"e":4220}],[8,{"n":6,"e":4233}],[6,{"n":5,"e":4257,"s":1}],[5,{"n":3.5,"e":4263,"s":1}],[4,{"n":4,"e":4269,"a":1}],[3,{"n":5,"e":4279}],[2,{"n":5.5,"e":4296}],[1,{"n":2,"e":4307}]],"fo":[[4099,[{"t":"Y"}]],[4135,[{"t":"Y"}]]],"a":{"m":20,"a":25,"M":32,"n":6}}],[1288,{"n":"Rüdiger","f":"Antonio","fp":"DC","r":17,"c":25,"s":{"g":2,"s":52.5,"n":10,"a":5.25,"d":1.03,"Sg":2,"Ss":47.5,"Sn":9,"Sa":5.28,"Sd":1.09,"Og":2,"Os":93,"On":18,"Oa":5.17,"Od":0.97,"pd":18},"p":[[-36,{"n":5.5,"e":3524}],[-34,{"n":5,"e":3503}],[-33,{"n":6,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":3,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":5,"e":3452}],[-28,{"n":6,"e":3443}],[25,{"n":7.5,"e":4061,"g":2}],[24,{"n":5.5,"e":4075}],[23,{"n":4.5,"e":4083}],[22,{"n":6,"e":4090}],[21,{"n":5,"e":4099}],[20,{"n":5,"e":4108}],[19,{"n":3.5,"e":4120}],[18,{"n":5.5,"e":4135}],[17,{"n":5,"e":4140}],[5,{"n":5,"e":4263}]],"fo":[[4108,[{"t":"Y"}]],[4135,[{"t":"Y"}]]]}],[1309,{"n":"Isaiah Brown","f":"","fp":"A","r":6,"c":25}],[1350,{"n":"Abraham","f":"Tammy","fp":"A","r":36,"c":25,"s":{"g":13,"ao":1,"s":127,"n":24,"a":5.29,"d":1.6,"Sg":3,"Ss":54.5,"Sn":11,"Sa":4.95,"Sd":1.51,"Og":13,"Oao":1,"Os":127,"On":24,"Oa":5.29,"Od":1.6,"pa":24},"p":[[25,{"n":4,"e":4061}],[24,{"n":6,"e":4075}],[23,{"n":3,"e":4083}],[22,{"n":6.5,"e":4090,"g":1}],[21,{"n":6,"e":4099}],[20,{"n":6.5,"e":4108,"g":1}],[19,{"n":3,"e":4120}],[18,{"n":5,"e":4135}],[17,{"n":4,"e":4140}],[16,{"n":3.5,"e":4151}],[15,{"n":7,"e":4164,"g":1}],[13,{"n":4,"e":4184}],[12,{"n":6,"e":4189,"g":1}],[11,{"n":7,"e":4206,"g":1}],[10,{"n":5,"e":4210}],[9,{"n":5,"e":4220}],[8,{"n":7,"e":4233,"g":1}],[7,{"n":5.5,"e":4241}],[6,{"n":3.5,"e":4257}],[5,{"n":8,"e":4263,"g":3,"a":1}],[4,{"n":7.5,"e":4269,"g":2}],[3,{"n":7,"e":4279,"g":2}],[2,{"n":4.5,"e":4296,"s":1}],[1,{"n":2.5,"e":4307}]],"fo":[[4135,[{"t":"I"}]]],"a":{"m":40,"a":59,"M":92,"n":11}}],[1360,{"n":"Charly Musonda","f":"","fp":"MD","r":1,"c":25}],[1370,{"n":"Christensen","f":"Andreas","fp":"DC","r":11,"c":25,"s":{"s":59,"n":12,"a":4.92,"d":0.7,"Ss":20,"Sn":4,"Sa":5,"Sd":0.71,"Os":90,"On":18,"Oa":5,"Od":0.75,"pd":18},"p":[[-37,{"n":6.5,"e":3531}],[-36,{"n":5,"e":3524,"s":1}],[-35,{"n":4.5,"e":3511}],[-34,{"n":4,"e":3503,"s":1}],[-29,{"n":5.5,"e":3452}],[-27,{"n":5.5,"e":3432}],[25,{"n":4.5,"e":4061}],[24,{"n":4.5,"e":4075}],[23,{"n":5,"e":4083}],[22,{"n":6,"e":4090}],[16,{"n":3.5,"e":4151}],[15,{"n":5.5,"e":4164}],[7,{"n":5.5,"e":4241}],[6,{"n":5,"e":4257}],[5,{"n":5,"e":4263}],[3,{"n":5,"e":4279}],[2,{"n":5.5,"e":4296}],[1,{"n":4,"e":4307}]],"fo":[[4075,[{"t":"Y"}]]]}],[1386,{"n":"Tomori","f":"Fikayo","fp":"DC","r":7,"c":25,"s":{"g":1,"s":73.5,"n":14,"a":5.25,"d":0.96,"Og":1,"Os":73.5,"On":14,"Oa":5.25,"Od":0.96,"pd":14},"p":[[20,{"n":4,"e":4108}],[19,{"n":4,"e":4120}],[18,{"n":6,"e":4135}],[14,{"n":4.5,"e":4169}],[13,{"n":4.5,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":6,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":5,"e":4220}],[8,{"n":5,"e":4233}],[7,{"n":6,"e":4241}],[6,{"n":5,"e":4257}],[5,{"n":7.5,"e":4263,"g":1}],[4,{"n":5,"e":4269}]],"fo":[[4120,[{"t":"Y"}]]],"a":{"m":11,"a":16,"M":25,"n":11}}],[1482,{"n":"Palmer","f":"Kasey","fp":"MD","r":1,"c":25}],[1652,{"n":"Arrizabalaga","f":"Kepa","fp":"G","r":14,"c":25,"s":{"s":120.5,"n":24,"a":5.02,"d":0.79,"Os":176.5,"On":34,"Oa":5.19,"Od":0.82,"pg":34},"p":[[-37,{"n":6,"e":3531}],[-36,{"n":5.5,"e":3524}],[-35,{"n":4.5,"e":3511}],[-34,{"n":6,"e":3503}],[-33,{"n":6,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":7,"e":3471}],[-30,{"n":4.5,"e":3460}],[-29,{"n":6,"e":3452}],[-27,{"n":5.5,"e":3432}],[24,{"n":4,"e":4075}],[23,{"n":4.5,"e":4083}],[22,{"n":5.5,"e":4090}],[21,{"n":6,"e":4099}],[20,{"n":4.5,"e":4108}],[19,{"n":4,"e":4120}],[18,{"n":6,"e":4135}],[17,{"n":5,"e":4140}],[16,{"n":4.5,"e":4151}],[15,{"n":5.5,"e":4164}],[14,{"n":5.5,"e":4169}],[13,{"n":4.5,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":6,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":5.5,"e":4220}],[8,{"n":4.5,"e":4233}],[7,{"n":5.5,"e":4241}],[6,{"n":4,"e":4257}],[5,{"n":5.5,"e":4263}],[4,{"n":4,"e":4269}],[3,{"n":5.5,"e":4279}],[2,{"n":6,"e":4296}],[1,{"n":3.5,"e":4307}]]}],[1657,{"n":"Kovacic","f":"Mateo","fp":"MO","r":14,"c":25,"s":{"g":1,"s":121.5,"n":22,"a":5.52,"d":0.87,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":1,"Os":168,"On":31,"Oa":5.42,"Od":0.81,"pm":31},"p":[[-38,{"n":5.5,"e":3542,"s":1}],[-37,{"n":6,"e":3531}],[-36,{"n":5.5,"e":3524}],[-35,{"n":5.5,"e":3511,"s":1}],[-32,{"n":4,"e":3481}],[-30,{"n":4.5,"e":3460}],[-29,{"n":5,"e":3452,"s":1}],[-28,{"n":5.5,"e":3443}],[-27,{"n":5,"e":3432,"s":1}],[25,{"n":5.5,"e":4061,"s":1}],[24,{"n":5,"e":4075}],[21,{"n":5,"e":4099,"s":1}],[20,{"n":4.5,"e":4108}],[18,{"n":6,"e":4135}],[17,{"n":4.5,"e":4140,"s":1}],[16,{"n":6,"e":4151,"g":1}],[15,{"n":4.5,"e":4164}],[14,{"n":5,"e":4169}],[13,{"n":7,"e":4184}],[12,{"n":7,"e":4189}],[11,{"n":7.5,"e":4206}],[10,{"n":5.5,"e":4210}],[9,{"n":6,"e":4220,"s":1}],[8,{"n":5.5,"e":4233,"s":1}],[7,{"n":5.5,"e":4241,"s":1}],[6,{"n":5,"e":4257}],[5,{"n":5.5,"e":4263}],[4,{"n":5,"e":4269}],[3,{"n":6.5,"e":4279}],[2,{"n":5,"e":4296,"s":1}],[1,{"n":4.5,"e":4307}]],"fo":[[4061,[{"t":"Y"}]],[4099,[{"t":"Y"}]],[4135,[{"t":"Y"}]],[4140,[{"t":"Y"}]]],"a":{"m":19,"a":24,"M":36,"n":7}}],[2029,{"n":"Green","f":"Robert","fp":"G","r":1,"c":25}],[2072,{"n":"Ampadu","f":"Ethan","fp":"DC","r":1,"c":25}],[2075,{"n":"Sterling","f":"Dujon","fp":"MD","r":1,"c":25}],[2220,{"n":"Hudson-Odoi","f":"Callum","fp":"A","r":13,"c":25,"s":{"g":1,"s":86,"n":17,"a":5.06,"d":0.81,"Sg":1,"Ss":36,"Sn":7,"Sa":5.14,"Sd":0.94,"Og":1,"Os":117.5,"On":23,"Oa":5.11,"Od":0.87,"pm":2,"pa":21},"p":[[-35,{"n":5,"e":3511}],[-34,{"n":4,"e":3503}],[-33,{"n":6,"e":3489}],[-31,{"n":5,"e":3471,"s":1}],[-30,{"n":4.5,"e":3460,"s":1}],[-27,{"n":7,"e":3432}],[25,{"n":5.5,"e":4061}],[24,{"n":6,"e":4075}],[23,{"n":4,"e":4083}],[22,{"n":6.5,"e":4090,"g":1}],[21,{"n":5,"e":4099,"s":1}],[20,{"n":5,"e":4108,"s":1}],[19,{"n":4,"e":4120}],[17,{"n":4.5,"e":4140,"s":1}],[16,{"n":4.5,"e":4151,"s":1}],[15,{"n":5,"e":4164,"s":1}],[14,{"n":5,"e":4169,"s":1}],[12,{"n":4.5,"e":4189,"s":1}],[11,{"n":4,"e":4206,"s":1}],[10,{"n":5,"e":4210,"s":1}],[9,{"n":6.5,"e":4220}],[8,{"n":6,"e":4233}],[7,{"n":5,"e":4241,"s":1}]],"a":{"m":9,"a":11,"M":12,"n":8}}],[2303,{"n":"Emerson","f":"","fp":"DL","r":8,"c":25,"s":{"s":66,"n":14,"a":4.71,"d":0.73,"Os":95,"On":20,"Oa":4.75,"Od":0.68,"pd":18,"pm":2},"p":[[-35,{"n":4.5,"e":3511}],[-34,{"n":4.5,"e":3503}],[-33,{"n":6,"e":3489}],[-30,{"n":4.5,"e":3460}],[-29,{"n":4.5,"e":3452}],[-27,{"n":5,"e":3432}],[24,{"n":4.5,"e":4075}],[23,{"n":5,"e":4083,"s":1}],[20,{"n":4,"e":4108}],[19,{"n":3,"e":4120}],[17,{"n":5,"e":4140}],[14,{"n":5,"e":4169}],[13,{"n":4,"e":4184}],[12,{"n":5,"e":4189}],[11,{"n":5.5,"e":4206}],[6,{"n":5,"e":4257}],[4,{"n":4.5,"e":4269}],[3,{"n":6,"e":4279}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307}]],"fo":[[4075,[{"t":"Y"}]],[4083,[{"t":"Y"}]]]}],[2494,{"n":"Hector","f":"Michael","fp":"DC","r":1,"c":25}],[2570,{"n":"Collins","f":"Bradley","fp":"G","r":1,"c":25}],[2594,{"n":"Lucas Piazon","f":"","fp":"MD","r":1,"c":25}],[2795,{"n":"Miazga","f":"Matt","fp":"DC","r":5,"c":25}],[2977,{"n":"McEachran","f":"George","fp":"MD","r":1,"c":25}],[2980,{"n":"Cumming","f":"Jamie","fp":"G","r":1,"c":25}],[3640,{"n":"Maatsen","f":"Ian","fp":"DL","r":1,"c":25}],[3644,{"n":"Gilmour","f":"Billy","fp":"MO","r":1,"c":25,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[12,{"n":5,"e":4189,"s":1}],[4,{"n":4.5,"e":4269,"s":1}]]}],[3650,{"n":"Gallagher","f":"Conor","fp":"MD","r":1,"c":25}],[3655,{"n":"James","f":"Reece","fp":"DL","r":10,"c":25,"s":{"s":69,"n":13,"a":5.31,"d":0.66,"Ss":5,"Sn":1,"Sa":5,"Os":69,"On":13,"Oa":5.31,"Od":0.66,"pd":13},"p":[[25,{"n":5,"e":4061}],[23,{"n":5,"e":4083}],[22,{"n":7,"e":4090}],[21,{"n":6,"e":4099}],[18,{"n":5,"e":4135,"s":1}],[16,{"n":4.5,"e":4151}],[15,{"n":6,"e":4164}],[14,{"n":5.5,"e":4169}],[13,{"n":5,"e":4184,"s":1}],[12,{"n":5,"e":4189}],[11,{"n":5,"e":4206,"s":1}],[10,{"n":5,"e":4210,"s":1}],[9,{"n":5,"e":4220,"s":1}]],"fo":[[4083,[{"t":"I"}]],[4099,[{"t":"Y"}]]]}],[3664,{"n":"Marc Guehi","f":"","fp":"DC","r":1,"c":25}],[3679,{"n":"Mount","f":"Mason","fp":"MO","r":26,"c":25,"s":{"g":5,"s":138.5,"n":25,"a":5.54,"d":1.07,"Sg":5,"Ss":138.5,"Sn":25,"Sa":5.54,"Sd":1.07,"Og":5,"Os":138.5,"On":25,"Oa":5.54,"Od":1.07,"pm":19,"pa":6},"p":[[25,{"n":7,"e":4061}],[24,{"n":5,"e":4075,"s":1}],[23,{"n":4.5,"e":4083}],[22,{"n":6.5,"e":4090}],[21,{"n":5,"e":4099}],[20,{"n":6.5,"e":4108}],[19,{"n":4.5,"e":4120,"s":1}],[18,{"n":6,"e":4135}],[17,{"n":4.5,"e":4140}],[16,{"n":4.5,"e":4151}],[15,{"n":6,"e":4164,"g":1}],[14,{"n":5,"e":4169}],[13,{"n":5,"e":4184,"s":1}],[12,{"n":6,"e":4189}],[11,{"n":5.5,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":4.5,"e":4220}],[8,{"n":7,"e":4233,"g":1}],[7,{"n":6,"e":4241}],[6,{"n":3.5,"e":4257}],[5,{"n":7.5,"e":4263,"g":1}],[4,{"n":5,"e":4269}],[3,{"n":7,"e":4279,"g":1}],[2,{"n":7,"e":4296,"g":1}],[1,{"n":4.5,"e":4307}]],"fo":[[4108,[{"t":"Y"}]]],"a":{"m":28,"a":39,"M":63,"n":10}}],[3681,{"n":"Ugbo","f":"Ike","fp":"A","r":1,"c":25}],[3682,{"n":"Chalobah","f":"Trevoh","fp":"DC","r":3,"c":25}],[3687,{"n":"Pulisic","f":"Christian","fp":"MO","r":20,"c":25,"s":{"g":5,"s":86,"n":16,"a":5.38,"d":1.28,"Og":5,"Os":86,"On":16,"Oa":5.38,"Od":1.28,"pm":13,"pa":3},"p":[[21,{"n":5,"e":4099}],[19,{"n":5,"e":4120,"s":1}],[17,{"n":4.5,"e":4140}],[16,{"n":4,"e":4151}],[15,{"n":5.5,"e":4164}],[14,{"n":4,"e":4169}],[13,{"n":4,"e":4184}],[12,{"n":7,"e":4189,"g":1}],[11,{"n":7,"e":4206,"g":1}],[10,{"n":8.5,"e":4210,"g":3}],[9,{"n":5,"e":4220,"s":1}],[8,{"n":6,"e":4233,"s":1}],[4,{"n":5.5,"e":4269}],[3,{"n":6,"e":4279}],[2,{"n":4,"e":4296}],[1,{"n":5,"e":4307,"s":1}]],"a":{"m":26,"a":36,"M":46,"n":6}}],[3697,{"n":"Baker","f":"Lewis","fp":"MO","r":1,"c":25}],[5991,{"n":"Ziger","f":"Karlo","fp":"G","r":1,"c":25}],[6127,{"n":"van Ginkel","f":"Marco","fp":"MD","r":1,"c":25}],[6495,{"n":"Anjorin","f":"Faustino","fp":"MO","r":1,"c":25}],[615,{"n":"Benteke","f":"Christian","fp":"A","r":7,"c":26,"s":{"g":1,"s":81,"n":17,"a":4.76,"d":0.4,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":123,"On":26,"Oa":4.73,"Od":0.62,"pa":26},"p":[[26,{"n":5.5,"e":4052,"g":1}],[25,{"n":4.5,"e":4060}],[18,{"n":5,"e":4133}],[16,{"n":4.5,"e":4156,"s":1}],[13,{"n":4.5,"e":4182,"s":1}],[11,{"n":5,"e":4202,"s":1}],[9,{"n":5,"e":4221,"s":1}],[8,{"n":4,"e":4235,"s":1}],[6,{"n":5,"e":4251,"s":1}],[5,{"n":5,"e":4262,"s":1}],[3,{"n":4.5,"e":4281,"s":1}],[2,{"n":5,"e":4295}],[1,{"n":5,"e":4302}],[-34,{"n":4,"e":3500}],[-36,{"n":4.5,"e":3520}],[-35,{"n":7,"e":3509,"g":1}],[-33,{"n":4.5,"e":3493,"s":1}],[-32,{"n":5,"e":3482,"s":1}],[-31,{"n":4,"e":3474,"s":1}],[-30,{"n":4.5,"e":3461,"s":1}],[-29,{"n":4,"e":3450,"s":1}],[-28,{"n":4.5,"e":3442,"s":1}],[17,{"n":5,"e":4141}],[14,{"n":4.5,"e":4168,"s":1}],[10,{"n":5,"e":4208,"s":1}],[4,{"n":4,"e":4270,"s":1}]],"fo":[[4141,[{"t":"Y"}]]]}],[633,{"n":"Cahill","f":"Gary","fp":"DC","r":10,"c":26,"s":{"s":84,"n":17,"a":4.94,"d":1.03,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.06,"Os":89,"On":18,"Oa":4.94,"Od":1,"pd":18},"p":[[23,{"n":6.5,"e":4082}],[7,{"n":6,"e":4242}],[-37,{"n":5,"e":3531,"s":1}],[26,{"n":3,"e":4052}],[25,{"n":5.5,"e":4060}],[24,{"n":4,"e":4077}],[22,{"n":5,"e":4091}],[16,{"n":6,"e":4156}],[13,{"n":4.5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":3.5,"e":4202}],[10,{"n":5,"e":4208}],[9,{"n":4.5,"e":4221}],[8,{"n":6,"e":4235}],[6,{"n":5.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}]]}],[663,{"n":"van Aanholt","f":"Patrick","fp":"DL","r":13,"c":26,"s":{"g":2,"ao":1,"s":94,"n":19,"a":4.95,"d":1.08,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":4,"Oao":1,"Os":147,"On":29,"Oa":5.07,"Od":1.1,"pd":29},"p":[[19,{"n":6,"e":4121}],[-38,{"n":6,"e":3540,"g":1}],[-36,{"n":6,"e":3520}],[-34,{"n":4,"e":3500}],[-33,{"n":6,"e":3493}],[-32,{"n":7.5,"e":3482,"g":1}],[-31,{"n":4.5,"e":3474}],[-30,{"n":4,"e":3461}],[-29,{"n":5.5,"e":3450}],[-28,{"n":4,"e":3442}],[-27,{"n":5.5,"e":3434}],[26,{"n":3.5,"e":4052}],[25,{"n":4.5,"e":4060}],[18,{"n":5,"e":4133}],[15,{"n":5,"e":4166}],[14,{"n":6,"e":4168}],[13,{"n":4.5,"e":4182}],[12,{"n":4,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":4.5,"e":4208}],[9,{"n":5,"e":4221}],[8,{"n":7,"e":4235,"g":1}],[7,{"n":5.5,"e":4242}],[6,{"n":5,"e":4251}],[5,{"n":3,"e":4262,"a":1}],[4,{"n":5,"e":4270}],[3,{"n":7,"e":4281,"g":1}],[2,{"n":3.5,"e":4295}],[1,{"n":5.5,"e":4302}]],"fo":[[4121,[{"t":"I"}]]]}],[683,{"n":"Hennessey","f":"Wayne","fp":"G","r":7,"c":26,"s":{"s":12,"n":2,"a":6,"d":0.71,"Os":18,"On":3,"Oa":6,"Od":0.5,"pg":3},"p":[[-29,{"n":6,"e":3450}],[10,{"n":5.5,"e":4208}],[9,{"n":6.5,"e":4221}]]}],[695,{"n":"Zaha","f":"Wilfried","fp":"A","r":21,"c":26,"s":{"g":3,"s":142.5,"n":26,"a":5.48,"d":0.87,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.58,"Og":8,"Os":209.5,"On":38,"Oa":5.51,"Od":1.06,"pm":23,"pa":15},"p":[[21,{"n":5.5,"e":4104}],[-38,{"n":7,"e":3540}],[-37,{"n":6.5,"e":3530,"g":1}],[-36,{"n":4,"e":3520}],[-35,{"n":6.5,"e":3509,"g":1}],[-34,{"n":3.5,"e":3500}],[-33,{"n":6,"e":3493}],[-32,{"n":6,"e":3482}],[-31,{"n":3.5,"e":3474}],[-30,{"n":5,"e":3461}],[-29,{"n":7,"e":3450,"g":1}],[-28,{"n":4.5,"e":3442}],[-27,{"n":7.5,"e":3434,"g":2}],[26,{"n":5,"e":4052}],[25,{"n":6,"e":4060}],[24,{"n":5,"e":4077}],[23,{"n":6,"e":4082}],[22,{"n":5,"e":4091}],[20,{"n":5,"e":4115}],[19,{"n":5.5,"e":4121}],[18,{"n":4,"e":4133}],[17,{"n":7,"e":4141,"g":1}],[16,{"n":5,"e":4156}],[15,{"n":6,"e":4166}],[14,{"n":7.5,"e":4168,"g":1}],[13,{"n":6.5,"e":4182,"g":1}],[12,{"n":5,"e":4189}],[11,{"n":5.5,"e":4202}],[10,{"n":5,"e":4208}],[9,{"n":5,"e":4221}],[8,{"n":5.5,"e":4235}],[7,{"n":6.5,"e":4242}],[6,{"n":6.5,"e":4251}],[5,{"n":4,"e":4262}],[4,{"n":5.5,"e":4270}],[3,{"n":6,"e":4281}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4302,"s":1}]],"a":{"m":22,"a":32,"M":58,"n":12}}],[704,{"n":"Ayew","f":"Jordan","fp":"A","r":22,"c":26,"s":{"g":6,"s":127,"n":25,"a":5.08,"d":1.17,"Sg":6,"Ss":117,"Sn":23,"Sa":5.09,"Sd":1.22,"Og":6,"Os":142,"On":28,"Oa":5.07,"Od":1.14,"pm":4,"pa":24},"p":[[-37,{"n":4,"e":3530}],[-35,{"n":5,"e":3509,"s":1}],[-27,{"n":6,"e":3434,"s":1}],[26,{"n":5,"e":4052}],[25,{"n":5,"e":4060}],[24,{"n":5,"e":4077}],[23,{"n":5.5,"e":4082}],[22,{"n":6.5,"e":4091,"g":1}],[21,{"n":5,"e":4104}],[20,{"n":4.5,"e":4115}],[19,{"n":8,"e":4121,"g":1}],[18,{"n":5,"e":4133}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":5,"e":4166}],[14,{"n":5.5,"e":4168}],[13,{"n":3,"e":4182}],[12,{"n":4,"e":4189}],[11,{"n":3.5,"e":4202}],[10,{"n":7,"e":4208,"g":1}],[9,{"n":3.5,"e":4221}],[8,{"n":6,"e":4235,"g":1}],[7,{"n":5,"e":4242}],[6,{"n":4,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6.5,"e":4270,"g":1}],[3,{"n":6,"e":4281,"g":1}],[1,{"n":5,"e":4302}]],"fo":[[4082,[{"t":"Y"}]]]}],[740,{"n":"Dann","f":"Scott","fp":"DC","r":3,"c":26,"s":{"s":31.5,"n":6,"a":5.25,"d":0.42,"Os":77.5,"On":15,"Oa":5.17,"Od":0.59,"pd":15},"p":[[-37,{"n":4.5,"e":3530}],[-36,{"n":6,"e":3520}],[-35,{"n":6,"e":3509}],[-34,{"n":4.5,"e":3500}],[-33,{"n":5,"e":3493,"s":1}],[-32,{"n":5.5,"e":3482}],[-30,{"n":4,"e":3461}],[-29,{"n":5.5,"e":3450}],[-27,{"n":5,"e":3434,"s":1}],[26,{"n":5,"e":4052,"s":1}],[17,{"n":5,"e":4141}],[14,{"n":6,"e":4168}],[9,{"n":5,"e":4221,"s":1}],[2,{"n":5,"e":4295}],[1,{"n":5.5,"e":4302}]]}],[761,{"n":"McCarthy","f":"James","fp":"MD","r":10,"c":26,"s":{"s":103,"n":21,"a":4.9,"d":0.52,"Ss":54.5,"Sn":11,"Sa":4.95,"Sd":0.65,"Os":108,"On":22,"Oa":4.91,"Od":0.5,"pm":22},"p":[[-35,{"n":5,"e":3512,"s":1}],[26,{"n":4.5,"e":4052}],[25,{"n":5.5,"e":4060}],[24,{"n":3.5,"e":4077}],[23,{"n":5.5,"e":4082}],[22,{"n":4.5,"e":4091}],[21,{"n":5.5,"e":4104}],[20,{"n":4.5,"e":4115}],[19,{"n":5,"e":4121,"s":1}],[18,{"n":5,"e":4133}],[17,{"n":5.5,"e":4141,"s":1}],[16,{"n":4.5,"e":4156,"s":1}],[15,{"n":5.5,"e":4166,"s":1}],[12,{"n":4.5,"e":4189,"s":1}],[11,{"n":5,"e":4202,"s":1}],[10,{"n":5,"e":4208,"s":1}],[8,{"n":5.5,"e":4235}],[7,{"n":4.5,"e":4242,"s":1}],[6,{"n":5,"e":4251,"s":1}],[5,{"n":4.5,"e":4262,"s":1}],[3,{"n":5,"e":4281,"s":1}],[2,{"n":5,"e":4295,"s":1}]],"fo":[[4052,[{"t":"Y"}]],[4091,[{"t":"Y"}]]]}],[777,{"n":"Townsend","f":"Andros","fp":"MO","r":7,"c":26,"s":{"g":1,"s":79.5,"n":15,"a":5.3,"d":0.7,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":146.5,"On":27,"Oa":5.43,"Od":0.83,"pm":23,"pa":4},"p":[[-38,{"n":7,"e":3540,"g":1}],[-37,{"n":8,"e":3530,"g":1}],[-36,{"n":5.5,"e":3520,"s":1}],[-35,{"n":4.5,"e":3509,"s":1}],[-34,{"n":5.5,"e":3500}],[-33,{"n":5.5,"e":3493}],[-32,{"n":5.5,"e":3482}],[-31,{"n":5,"e":3474,"s":1}],[-30,{"n":5,"e":3461}],[-29,{"n":5,"e":3450,"s":1}],[-28,{"n":5.5,"e":3442}],[-27,{"n":5,"e":3434}],[25,{"n":5,"e":4060,"s":1}],[16,{"n":5,"e":4156}],[15,{"n":5.5,"e":4166}],[14,{"n":6,"e":4168}],[13,{"n":6.5,"e":4182}],[12,{"n":4.5,"e":4189}],[10,{"n":5.5,"e":4208}],[9,{"n":5.5,"e":4221,"s":1}],[8,{"n":4.5,"e":4235,"s":1}],[7,{"n":6.5,"e":4242,"g":1,"s":1}],[5,{"n":4,"e":4262}],[4,{"n":5,"e":4270,"s":1}],[3,{"n":5,"e":4281,"s":1}],[2,{"n":5.5,"e":4295}],[1,{"n":5.5,"e":4302}]]}],[808,{"n":"Wickham","f":"Connor","fp":"A","r":5,"c":26,"s":{"g":1,"s":28.5,"n":6,"a":4.75,"d":0.94,"Og":1,"Os":33,"On":7,"Oa":4.71,"Od":0.86,"pa":7},"p":[[-38,{"n":4.5,"e":3540,"s":1}],[24,{"n":4.5,"e":4077,"s":1}],[23,{"n":4.5,"e":4082,"s":1}],[21,{"n":6.5,"e":4104,"g":1,"s":1}],[19,{"n":5,"e":4121,"s":1}],[2,{"n":4,"e":4295,"s":1}],[1,{"n":4,"e":4302,"s":1}]]}],[828,{"n":"McArthur","f":"James","fp":"MD","r":15,"c":26,"s":{"s":132.5,"n":25,"a":5.3,"d":0.78,"Ss":106.5,"Sn":20,"Sa":5.33,"Sd":0.82,"Og":1,"Os":198.5,"On":37,"Oa":5.36,"Od":0.81,"pm":37},"p":[[-38,{"n":6,"e":3540}],[-37,{"n":7,"e":3530}],[-36,{"n":5,"e":3520}],[-35,{"n":7,"e":3509,"g":1}],[-34,{"n":5,"e":3500}],[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3482,"s":1}],[-31,{"n":5,"e":3474}],[-30,{"n":4.5,"e":3461}],[-29,{"n":4.5,"e":3450,"s":1}],[-28,{"n":5,"e":3442}],[-27,{"n":6.5,"e":3434}],[26,{"n":4.5,"e":4052}],[25,{"n":4.5,"e":4060}],[24,{"n":4,"e":4077}],[23,{"n":6,"e":4082}],[22,{"n":6,"e":4091}],[21,{"n":4,"e":4104}],[20,{"n":5,"e":4115}],[19,{"n":5,"e":4121}],[18,{"n":5.5,"e":4133}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":6,"e":4166}],[14,{"n":6,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":6.5,"e":4208}],[9,{"n":5.5,"e":4221}],[8,{"n":6,"e":4235}],[7,{"n":7,"e":4242}],[6,{"n":5.5,"e":4251}],[4,{"n":5.5,"e":4270}],[3,{"n":5.5,"e":4281}],[2,{"n":4.5,"e":4295}],[1,{"n":6,"e":4302}]],"fo":[[4082,[{"t":"Y"}]],[4115,[{"t":"Y"}]]]}],[843,{"n":"Kelly","f":"Martin","fp":"DL","r":10,"c":26,"s":{"s":96,"n":19,"a":5.05,"d":0.88,"Oao":1,"Os":134,"On":27,"Oa":4.96,"Od":0.85,"pd":27},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":4.5,"e":3530,"a":1}],[-36,{"n":5.5,"e":3520}],[-35,{"n":5,"e":3509}],[-34,{"n":4,"e":3500}],[-33,{"n":6,"e":3493}],[-31,{"n":4.5,"e":3474}],[-28,{"n":3.5,"e":3442}],[24,{"n":3.5,"e":4077}],[23,{"n":4.5,"e":4082}],[22,{"n":4.5,"e":4091}],[21,{"n":4.5,"e":4104}],[20,{"n":4,"e":4115}],[19,{"n":5,"e":4121}],[18,{"n":4.5,"e":4133}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":7,"e":4166}],[14,{"n":5.5,"e":4168}],[13,{"n":5,"e":4182,"s":1}],[12,{"n":4,"e":4189,"s":1}],[8,{"n":6,"e":4235}],[7,{"n":6,"e":4242}],[4,{"n":6,"e":4270}],[3,{"n":5.5,"e":4281}],[2,{"n":4.5,"e":4295}],[1,{"n":6,"e":4302}]],"a":{"m":11,"a":13,"M":19,"n":17}}],[855,{"n":"Kouyaté","f":"Cheikhou","fp":"MD","r":12,"c":26,"s":{"g":1,"s":124,"n":24,"a":5.17,"d":0.95,"Sg":1,"Ss":119,"Sn":23,"Sa":5.17,"Sd":0.97,"Og":1,"Os":174,"On":34,"Oa":5.12,"Od":0.82,"pd":1,"pm":33},"p":[[-37,{"n":4.5,"e":3530,"s":1}],[-36,{"n":5.5,"e":3520}],[-35,{"n":5,"e":3509}],[-34,{"n":5.5,"e":3500,"s":1}],[-33,{"n":5,"e":3493,"s":1}],[-32,{"n":5,"e":3482,"s":1}],[-31,{"n":5,"e":3474}],[-29,{"n":5,"e":3450}],[-28,{"n":5,"e":3442,"s":1}],[-27,{"n":4.5,"e":3434,"s":1}],[26,{"n":5,"e":4052,"s":1}],[25,{"n":4.5,"e":4060,"s":1}],[24,{"n":4,"e":4077}],[23,{"n":4,"e":4082}],[22,{"n":6.5,"e":4091}],[21,{"n":5,"e":4104,"s":1}],[20,{"n":5,"e":4115,"s":1}],[19,{"n":7,"e":4121,"g":1}],[18,{"n":5,"e":4133}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":7,"e":4166}],[14,{"n":4.5,"e":4168}],[13,{"n":6,"e":4182}],[12,{"n":5.5,"e":4189}],[11,{"n":4,"e":4202}],[10,{"n":4.5,"e":4208}],[9,{"n":4.5,"e":4221}],[8,{"n":5,"e":4235}],[7,{"n":5.5,"e":4242}],[6,{"n":6,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":5.5,"e":4270}],[3,{"n":6.5,"e":4281}]]}],[888,{"n":"Ward","f":"Joel","fp":"DL","r":9,"c":26,"s":{"s":81.5,"n":17,"a":4.79,"d":0.71,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.29,"Og":1,"Os":105.5,"On":22,"Oa":4.8,"Od":0.63,"pd":22},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":4.5,"e":3530}],[-35,{"n":4.5,"e":3509}],[-28,{"n":5,"e":3442,"g":1}],[-27,{"n":5,"e":3434}],[26,{"n":3.5,"e":4052}],[25,{"n":4.5,"e":4060}],[24,{"n":5,"e":4077,"s":1}],[23,{"n":5,"e":4082,"s":1}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":5,"e":4208}],[9,{"n":4,"e":4221}],[8,{"n":5,"e":4235}],[7,{"n":6,"e":4242}],[6,{"n":4.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":5,"e":4295}],[1,{"n":5.5,"e":4302}]],"fo":[[4060,[{"t":"Y"}]]]}],[895,{"n":"Milivojevic","f":"Luka","fp":"MD","r":16,"c":26,"s":{"g":2,"s":111.5,"n":22,"a":5.07,"d":0.99,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":7,"Os":178.5,"On":34,"Oa":5.25,"Od":1,"pm":34},"p":[[-38,{"n":6,"e":3540}],[-37,{"n":5.5,"e":3530}],[-36,{"n":5.5,"e":3520}],[-35,{"n":6,"e":3509}],[-34,{"n":6,"e":3500,"g":1}],[-33,{"n":6.5,"e":3493,"g":1}],[-32,{"n":6,"e":3482,"g":1}],[-31,{"n":3.5,"e":3474}],[-30,{"n":6,"e":3461,"g":1}],[-29,{"n":4.5,"e":3450}],[-28,{"n":4.5,"e":3442}],[-27,{"n":7,"e":3434,"g":1}],[26,{"n":4.5,"e":4052}],[25,{"n":4.5,"e":4060}],[21,{"n":4.5,"e":4104}],[20,{"n":6.5,"e":4115}],[19,{"n":5.5,"e":4121}],[18,{"n":5,"e":4133}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":5.5,"e":4166}],[14,{"n":5,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":4,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":7,"e":4208,"g":1}],[9,{"n":4.5,"e":4221}],[7,{"n":7.5,"e":4242,"g":1}],[6,{"n":5.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":4,"e":4295}],[1,{"n":4,"e":4302}]],"fo":[[4060,[{"t":"Y"}]],[4115,[{"t":"Y"}]]]}],[927,{"n":"Sakho","f":"Mamadou","fp":"DC","r":3,"c":26,"s":{"s":37.5,"n":8,"a":4.69,"d":0.65,"Os":43.5,"On":9,"Oa":4.83,"Od":0.75,"pd":9},"p":[[-27,{"n":6,"e":3434}],[21,{"n":5,"e":4104}],[20,{"n":5,"e":4115}],[19,{"n":5.5,"e":4121}],[15,{"n":4,"e":4166}],[14,{"n":5,"e":4168,"s":1}],[6,{"n":4.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":5,"e":4270,"s":1}]],"fo":[[4104,[{"t":"I"}]]]}],[942,{"n":"Tomkins","f":"James","fp":"DC","r":12,"c":26,"s":{"g":1,"s":91.5,"n":18,"a":5.08,"d":1.09,"Sg":1,"Ss":87,"Sn":17,"Sa":5.12,"Sd":1.11,"Og":1,"Os":127,"On":25,"Oa":5.08,"Od":1,"pd":25},"p":[[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3482}],[-31,{"n":5.5,"e":3474}],[-30,{"n":4,"e":3461}],[-29,{"n":5.5,"e":3450}],[-28,{"n":4,"e":3442}],[-27,{"n":6,"e":3434}],[26,{"n":4.5,"e":4052}],[25,{"n":4,"e":4060}],[24,{"n":4.5,"e":4077}],[23,{"n":5.5,"e":4082}],[22,{"n":5,"e":4091}],[21,{"n":4.5,"e":4104}],[20,{"n":7.5,"e":4115,"g":1}],[19,{"n":5,"e":4121}],[18,{"n":5,"e":4133}],[17,{"n":7,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":6,"e":4166}],[14,{"n":6.5,"e":4168}],[13,{"n":5.5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":3.5,"e":4202}],[10,{"n":4,"e":4208}],[9,{"n":4,"e":4221}]],"fo":[[4052,[{"t":"I"}]],[4060,[{"t":"Y"}]],[4077,[{"t":"Y"}]],[4091,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":21,"n":10}}],[987,{"n":"Schlupp","f":"Jeffrey","fp":"DL","r":8,"c":26,"s":{"g":2,"s":71.5,"n":14,"a":5.11,"d":1.02,"Og":2,"Os":113.5,"On":22,"Oa":5.16,"Od":0.92,"pd":6,"pm":14,"pa":2},"p":[[-34,{"n":4.5,"e":3500}],[-33,{"n":5,"e":3493}],[-32,{"n":4.5,"e":3482}],[-31,{"n":4.5,"e":3474}],[-30,{"n":5.5,"e":3461}],[-29,{"n":6,"e":3450}],[-28,{"n":5.5,"e":3442}],[-27,{"n":6.5,"e":3434}],[16,{"n":4,"e":4156}],[15,{"n":7,"e":4166,"g":1,"s":1}],[14,{"n":6,"e":4168,"g":1,"s":1}],[13,{"n":5,"e":4182,"s":1}],[12,{"n":4.5,"e":4189,"s":1}],[11,{"n":4.5,"e":4202}],[9,{"n":4.5,"e":4221}],[8,{"n":5,"e":4235}],[7,{"n":6,"e":4242}],[6,{"n":5,"e":4251}],[5,{"n":3,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":6,"e":4281}],[2,{"n":5,"e":4295,"s":1}]],"a":{"m":12,"a":14,"M":18,"n":7}}],[1004,{"n":"Sako","f":"Bakary","fp":"MD","r":4,"c":26,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[-38,{"n":5,"e":3540,"s":1}],[-37,{"n":4.5,"e":3530,"s":1}],[-34,{"n":4.5,"e":3500,"s":1}]]}],[1061,{"n":"Kaikai","f":"Sullay","fp":"MD","r":1,"c":26}],[1073,{"n":"Speroni","f":"Julian","fp":"G","r":1,"c":26}],[1111,{"n":"Dreher","f":"Luke","fp":"MD","r":1,"c":26}],[1304,{"n":"Riedewald","f":"Jairo","fp":"MD","r":7,"c":26,"s":{"s":37,"n":8,"a":4.63,"d":0.35,"Os":37,"On":8,"Oa":4.63,"Od":0.35,"pd":6,"pm":2},"p":[[24,{"n":4,"e":4077}],[23,{"n":4.5,"e":4082}],[22,{"n":5,"e":4091}],[21,{"n":4.5,"e":4104}],[20,{"n":4.5,"e":4115}],[19,{"n":5,"e":4121,"s":1}],[17,{"n":4.5,"e":4141}],[16,{"n":5,"e":4156,"s":1}]]}],[1342,{"n":"Williams","f":"Jonathan","fp":"MD","r":1,"c":26}],[1678,{"n":"Guaita","f":"Vicente","fp":"G","r":16,"c":26,"s":{"ao":1,"s":133.5,"n":24,"a":5.56,"d":0.94,"Sao":1,"Ss":85,"Sn":15,"Sa":5.67,"Sd":0.86,"Oao":1,"Os":196.5,"On":35,"Oa":5.61,"Od":1.02,"pg":35},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":6.5,"e":3530}],[-36,{"n":6.5,"e":3520}],[-35,{"n":5.5,"e":3509}],[-34,{"n":4.5,"e":3500}],[-33,{"n":7,"e":3493}],[-32,{"n":7,"e":3482}],[-31,{"n":7,"e":3474}],[-30,{"n":4.5,"e":3461}],[-28,{"n":3.5,"e":3442}],[-27,{"n":6,"e":3434}],[26,{"n":4,"e":4052}],[25,{"n":4.5,"e":4060,"a":1}],[24,{"n":5,"e":4077}],[23,{"n":6,"e":4082}],[22,{"n":6,"e":4091}],[21,{"n":5.5,"e":4104}],[20,{"n":6,"e":4115}],[19,{"n":5,"e":4121}],[18,{"n":5,"e":4133}],[17,{"n":7.5,"e":4141}],[16,{"n":6,"e":4156}],[15,{"n":7,"e":4166}],[14,{"n":6.5,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":5,"e":4189}],[11,{"n":5,"e":4202}],[8,{"n":6,"e":4235}],[7,{"n":7,"e":4242}],[6,{"n":5.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":5.5,"e":4295}],[1,{"n":6,"e":4302}]],"a":{"m":19,"a":21,"M":25,"n":8}}],[2122,{"n":"Henry","f":"Dion","fp":"G","r":1,"c":26}],[2197,{"n":"Tosun","f":"Cenk","fp":"A","r":9,"c":26,"s":{"g":2,"s":36.5,"n":8,"a":4.56,"d":1.29,"Og":3,"Os":66,"On":14,"Oa":4.71,"Od":1.16,"pa":14},"p":[[13,{"n":4.5,"e":4183}],[11,{"n":6,"e":4203,"g":1,"s":1}],[6,{"n":4,"e":4252,"s":1}],[-38,{"n":7,"e":3546,"g":1}],[-36,{"n":4.5,"e":3520,"s":1}],[-34,{"n":4.5,"e":3501,"s":1}],[-32,{"n":4.5,"e":3487,"s":1}],[-29,{"n":4.5,"e":3451,"s":1}],[-27,{"n":4.5,"e":3433,"s":1}],[24,{"n":3,"e":4077}],[23,{"n":7,"e":4082,"g":1}],[22,{"n":4,"e":4091,"s":1}],[18,{"n":4,"e":4131,"s":1}],[12,{"n":4,"e":4193}]]}],[2304,{"n":"Sørloth","f":"Alexander","fp":"A","r":6,"c":26}],[2337,{"n":"Kirby","f":"Nya","fp":"MO","r":1,"c":26}],[2585,{"n":"Meyer","f":"Max","fp":"MO","r":8,"c":26,"s":{"s":64,"n":13,"a":4.92,"d":0.49,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":110.5,"On":22,"Oa":5.02,"Od":0.52,"pm":21,"pa":1},"p":[[-38,{"n":5.5,"e":3540}],[-37,{"n":5,"e":3530,"s":1}],[-36,{"n":6,"e":3520}],[-35,{"n":5.5,"e":3509}],[-34,{"n":5,"e":3500,"s":1}],[-32,{"n":4,"e":3482}],[-30,{"n":5,"e":3461,"s":1}],[-29,{"n":5.5,"e":3450}],[-28,{"n":5,"e":3442,"s":1}],[26,{"n":5,"e":4052,"s":1}],[25,{"n":5,"e":4060,"s":1}],[24,{"n":4.5,"e":4077,"s":1}],[22,{"n":5.5,"e":4091}],[21,{"n":5,"e":4104}],[20,{"n":4.5,"e":4115}],[19,{"n":5,"e":4121}],[18,{"n":5,"e":4133,"s":1}],[17,{"n":5,"e":4141,"s":1}],[11,{"n":4,"e":4202,"s":1}],[7,{"n":5,"e":4242,"s":1}],[2,{"n":4.5,"e":4295}],[1,{"n":6,"e":4302}]],"fo":[[4091,[{"t":"I"}]]]}],[2845,{"n":"McGregor","f":"Giovanni","fp":"MD","r":1,"c":26}],[2852,{"n":"Woods","f":"Sam","fp":"DC","r":1,"c":26}],[3184,{"n":"Tupper","f":"Joe","fp":"G","r":1,"c":26}],[3354,{"n":"Lucas Perri","f":"","fp":"G","r":1,"c":26}],[3645,{"n":"Tavares","f":"Nikola","fp":"DC","r":1,"c":26}],[3736,{"n":"Henderson","f":"Stephen","fp":"G","r":1,"c":26}],[6126,{"n":"Inniss","f":"Ryan","fp":"DC","r":4,"c":26}],[6387,{"n":"Pierrick Keutcha","f":"Brandon","fp":"MO","r":1,"c":26}],[6481,{"n":"Mitchell","f":"Tyrick","fp":"DC","r":1,"c":26}],[24,{"n":"Sidibé","f":"Djibril","fp":"DL","r":14,"c":22,"s":{"s":92,"n":18,"a":5.11,"d":0.95,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.85,"Os":148,"On":30,"Oa":4.93,"Od":0.89,"pd":25,"pm":5},"p":[[25,{"n":6,"e":4066}],[24,{"n":4,"e":4070}],[23,{"n":5.5,"e":4087,"s":1}],[21,{"n":5,"e":4102}],[20,{"n":5,"e":4113}],[15,{"n":3.5,"e":4167}],[14,{"n":5.5,"e":4170}],[9,{"n":6,"e":4222}],[-38,{"n":4,"e":3108}],[-36,{"n":4.5,"e":3089}],[-35,{"n":3,"e":3075}],[-34,{"n":5.5,"e":3070}],[-31,{"n":4.5,"e":3035}],[-28,{"n":5,"e":3005}],[-27,{"n":4.5,"e":2992}],[-26,{"n":5,"e":2985}],[-37,{"n":6,"e":3096}],[-32,{"n":4.5,"e":3046}],[-30,{"n":4.5,"e":3025}],[-29,{"n":5,"e":3016}],[26,{"n":5,"e":4052,"s":1}],[22,{"n":5,"e":4092}],[19,{"n":7,"e":4122}],[18,{"n":5,"e":4131}],[16,{"n":6,"e":4151}],[13,{"n":4,"e":4183}],[12,{"n":6.5,"e":4193}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[8,{"n":4.5,"e":4229,"s":1}]],"a":{"m":12,"a":17,"M":23,"n":6}}],[612,{"n":"Sigurdsson","f":"Gylfi","fp":"MO","r":19,"c":22,"s":{"g":1,"s":122.5,"n":23,"a":5.33,"d":0.75,"Ss":6,"Sn":1,"Sa":6,"Og":5,"Os":191.5,"On":35,"Oa":5.47,"Od":1.04,"pm":33,"pa":2},"p":[[7,{"n":6,"e":4246}],[4,{"n":6,"e":4276}],[2,{"n":5.5,"e":4291}],[-28,{"n":8,"e":3439,"g":2}],[-38,{"n":6.5,"e":3546}],[-37,{"n":5,"e":3532}],[-36,{"n":4,"e":3520}],[-35,{"n":8,"e":3512,"g":1}],[-34,{"n":3.5,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":6,"e":3487}],[-31,{"n":7,"e":3471,"g":1}],[-30,{"n":4.5,"e":3466}],[-29,{"n":5,"e":3451}],[-27,{"n":5.5,"e":3433,"s":1}],[26,{"n":5.5,"e":4052}],[25,{"n":6,"e":4066}],[22,{"n":6,"e":4092}],[21,{"n":5,"e":4102}],[20,{"n":5.5,"e":4113}],[19,{"n":5.5,"e":4122}],[18,{"n":4.5,"e":4131}],[16,{"n":6,"e":4151}],[15,{"n":3.5,"e":4167}],[14,{"n":5.5,"e":4170}],[13,{"n":4.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":5,"e":4203,"s":1}],[10,{"n":5,"e":4209,"s":1}],[9,{"n":7,"e":4222,"g":1,"s":1}],[8,{"n":5.5,"e":4229}],[6,{"n":5,"e":4252}],[5,{"n":4.5,"e":4265}],[3,{"n":4.5,"e":4278}],[1,{"n":5,"e":4302}]],"fo":[[4131,[{"t":"Y"}]]]}],[614,{"n":"Mirallas","f":"Kevin","fp":"MD","r":18,"c":22}],[642,{"n":"Walcott","f":"Theo","fp":"A","r":13,"c":22,"s":{"g":1,"s":96,"n":19,"a":5.05,"d":0.91,"Sg":1,"Ss":37,"Sn":7,"Sa":5.29,"Sd":0.64,"Og":3,"Os":155.5,"On":31,"Oa":5.02,"Od":0.89,"pm":17,"pa":14},"p":[[-38,{"n":7,"e":3546,"g":1}],[-37,{"n":4.5,"e":3532,"s":1}],[-36,{"n":4.5,"e":3520,"s":1}],[-35,{"n":6.5,"e":3512,"g":1,"s":1}],[-34,{"n":4.5,"e":3501,"s":1}],[-33,{"n":5,"e":3490,"s":1}],[-32,{"n":4.5,"e":3487,"s":1}],[-31,{"n":4.5,"e":3471,"s":1}],[-30,{"n":4.5,"e":3466,"s":1}],[-29,{"n":4,"e":3451}],[-28,{"n":5,"e":3439}],[-27,{"n":5,"e":3433}],[26,{"n":6,"e":4052}],[25,{"n":6,"e":4066,"g":1}],[24,{"n":6,"e":4070}],[23,{"n":4.5,"e":4087}],[22,{"n":5,"e":4092}],[21,{"n":5.5,"e":4102,"s":1}],[20,{"n":5.5,"e":4113}],[19,{"n":4.5,"e":4122,"s":1}],[16,{"n":5.5,"e":4151}],[13,{"n":3.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[9,{"n":7,"e":4222}],[7,{"n":5,"e":4246}],[6,{"n":5,"e":4252,"s":1}],[5,{"n":4.5,"e":4265,"s":1}],[3,{"n":4,"e":4278,"s":1}],[2,{"n":4,"e":4291,"s":1}]],"fo":[[4052,[{"t":"I"}]]]}],[645,{"n":"Baines","f":"Leighton","fp":"DL","r":3,"c":22,"s":{"s":15,"n":3,"a":5,"Os":15,"On":3,"Oa":5,"pd":3},"p":[[17,{"n":5,"e":4144,"s":1}],[20,{"n":5,"e":4113}],[16,{"n":5,"e":4151,"s":1}]]}],[697,{"n":"Keane","f":"Michael","fp":"DC","r":7,"c":22,"s":{"g":1,"s":93.5,"n":20,"a":4.68,"d":0.96,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":147,"On":30,"Oa":4.9,"Od":0.99,"pd":30},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":6,"e":3532}],[-36,{"n":5,"e":3520}],[-35,{"n":6,"e":3512}],[-32,{"n":6.5,"e":3487}],[-31,{"n":6,"e":3471}],[-30,{"n":3.5,"e":3466}],[-29,{"n":6,"e":3451}],[-28,{"n":5,"e":3439}],[-27,{"n":4.5,"e":3433}],[26,{"n":5.5,"e":4052}],[25,{"n":5,"e":4066,"s":1}],[22,{"n":6,"e":4092}],[20,{"n":5,"e":4113}],[18,{"n":5,"e":4131,"s":1}],[17,{"n":5,"e":4144}],[16,{"n":6,"e":4151}],[15,{"n":4,"e":4167,"g":1}],[14,{"n":4,"e":4170}],[12,{"n":4.5,"e":4193,"s":1}],[10,{"n":3,"e":4209}],[9,{"n":6,"e":4222}],[8,{"n":4.5,"e":4229}],[7,{"n":3.5,"e":4246}],[6,{"n":3.5,"e":4252}],[5,{"n":3,"e":4265}],[4,{"n":5.5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":5.5,"e":4291}],[1,{"n":5,"e":4302}]]}],[705,{"n":"Iwobi","f":"Alex","fp":"MO","r":10,"c":22,"s":{"g":1,"s":88.5,"n":17,"a":5.21,"d":0.75,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":147.5,"On":29,"Oa":5.09,"Od":0.86,"pm":27,"pa":2},"p":[[-38,{"n":7,"e":3539}],[-37,{"n":5,"e":3529,"s":1}],[-36,{"n":5,"e":3522}],[-35,{"n":3.5,"e":3509,"s":1}],[-34,{"n":5.5,"e":3507}],[-33,{"n":5,"e":3490,"s":1}],[-32,{"n":4,"e":3478}],[-31,{"n":3.5,"e":3477}],[-30,{"n":4.5,"e":3458,"s":1}],[-29,{"n":6,"e":3454}],[-28,{"n":5,"e":3438,"s":1}],[-27,{"n":5,"e":3429}],[25,{"n":5,"e":4066}],[18,{"n":5,"e":4131}],[17,{"n":6,"e":4144}],[16,{"n":4.5,"e":4151}],[15,{"n":4.5,"e":4167}],[14,{"n":4,"e":4170}],[13,{"n":5,"e":4183,"s":1}],[12,{"n":6,"e":4193,"s":1}],[11,{"n":4.5,"e":4203}],[10,{"n":5,"e":4209}],[9,{"n":6,"e":4222}],[8,{"n":5.5,"e":4229}],[7,{"n":5.5,"e":4246,"s":1}],[6,{"n":4.5,"e":4252,"s":1}],[5,{"n":5,"e":4265}],[4,{"n":7,"e":4276,"g":1}],[3,{"n":5.5,"e":4278,"s":1}]],"fo":[[4131,[{"t":"I"}]]]}],[715,{"n":"Bolasie","f":"Yannick","fp":"A","r":9,"c":22}],[779,{"n":"Stekelenburg","f":"Maarten","fp":"G","r":7,"c":22}],[833,{"n":"Schneiderlin","f":"Morgan","fp":"MD","r":8,"c":22,"s":{"s":68,"n":14,"a":4.86,"d":0.63,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":108.5,"On":21,"Oa":5.17,"Od":0.89,"pm":21},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":7,"e":3532}],[-36,{"n":4.5,"e":3520}],[-35,{"n":7,"e":3512}],[-31,{"n":5,"e":3471,"s":1}],[-29,{"n":5.5,"e":3451}],[-28,{"n":6.5,"e":3439}],[26,{"n":6,"e":4052}],[25,{"n":5,"e":4066,"s":1}],[24,{"n":5.5,"e":4070}],[16,{"n":5.5,"e":4151}],[15,{"n":5,"e":4167,"s":1}],[14,{"n":5,"e":4170,"s":1}],[13,{"n":4.5,"e":4183}],[12,{"n":5,"e":4193}],[8,{"n":4,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":4.5,"e":4265}],[3,{"n":5.5,"e":4278}],[1,{"n":4,"e":4302}]]}],[834,{"n":"Davies","f":"Tom","fp":"MD","r":8,"c":22,"s":{"g":1,"s":94.5,"n":19,"a":4.97,"d":0.82,"Og":1,"Os":114,"On":23,"Oa":4.96,"Od":0.75,"pm":23},"p":[[-33,{"n":5,"e":3490,"s":1}],[-32,{"n":5,"e":3487,"s":1}],[-31,{"n":4.5,"e":3471,"s":1}],[-27,{"n":5,"e":3433}],[26,{"n":5,"e":4052,"s":1}],[24,{"n":4.5,"e":4070,"s":1}],[23,{"n":4,"e":4087}],[22,{"n":5.5,"e":4092}],[21,{"n":5.5,"e":4102}],[20,{"n":4.5,"e":4113}],[19,{"n":5,"e":4122,"s":1}],[18,{"n":5,"e":4131}],[17,{"n":5,"e":4144}],[16,{"n":5,"e":4151,"s":1}],[15,{"n":3.5,"e":4167}],[14,{"n":4.5,"e":4170}],[13,{"n":4,"e":4183}],[12,{"n":7,"e":4193,"g":1}],[11,{"n":5.5,"e":4203}],[10,{"n":5,"e":4209}],[9,{"n":6.5,"e":4222}],[7,{"n":4.5,"e":4246,"s":1}],[1,{"n":5,"e":4302,"s":1}]],"fo":[[4102,[{"t":"Y"}]],[4113,[{"t":"Y"}]],[4131,[{"t":"Y"}]],[4144,[{"t":"Y"}]]]}],[844,{"n":"Holgate","f":"Mason","fp":"DC","r":16,"c":22,"s":{"s":99,"n":19,"a":5.21,"d":1,"Ss":89,"Sn":17,"Sa":5.24,"Sd":1.06,"Os":99,"On":19,"Oa":5.21,"Od":1,"pd":18,"pm":1},"p":[[26,{"n":5,"e":4052,"s":1}],[25,{"n":5.5,"e":4066}],[24,{"n":5.5,"e":4070}],[23,{"n":7.5,"e":4087}],[22,{"n":6,"e":4092}],[21,{"n":4.5,"e":4102}],[20,{"n":4.5,"e":4113}],[19,{"n":6,"e":4122}],[18,{"n":5,"e":4131}],[17,{"n":6,"e":4144}],[16,{"n":6,"e":4151}],[15,{"n":3,"e":4167}],[14,{"n":4.5,"e":4170}],[13,{"n":3.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":5,"e":4203}],[10,{"n":5.5,"e":4209}],[9,{"n":5,"e":4222,"s":1}],[2,{"n":5,"e":4291,"s":1}]],"fo":[[4066,[{"t":"Y"}]]]}],[909,{"n":"Pickford","f":"Jordan","fp":"G","r":13,"c":22,"s":{"s":131,"n":26,"a":5.04,"d":1.09,"Ss":127,"Sn":25,"Sa":5.08,"Sd":1.1,"Os":197.5,"On":38,"Oa":5.2,"Od":1.06,"pg":38},"p":[[-38,{"n":4.5,"e":3546}],[-37,{"n":6,"e":3532}],[-36,{"n":5.5,"e":3520}],[-35,{"n":6.5,"e":3512}],[-34,{"n":5,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":6,"e":3487}],[-31,{"n":7,"e":3471}],[-30,{"n":3.5,"e":3466}],[-29,{"n":6,"e":3451}],[-28,{"n":5.5,"e":3439}],[-27,{"n":5,"e":3433}],[26,{"n":4,"e":4052}],[25,{"n":4,"e":4066}],[24,{"n":4,"e":4070}],[23,{"n":5,"e":4087}],[22,{"n":6,"e":4092}],[21,{"n":6,"e":4102}],[20,{"n":6,"e":4113}],[19,{"n":5,"e":4122}],[18,{"n":6,"e":4131}],[17,{"n":6.5,"e":4144}],[16,{"n":5.5,"e":4151}],[15,{"n":2,"e":4167}],[14,{"n":5.5,"e":4170}],[13,{"n":5.5,"e":4183}],[12,{"n":5,"e":4193}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[9,{"n":7,"e":4222}],[8,{"n":5.5,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":4,"e":4265}],[4,{"n":5.5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":6,"e":4291}],[1,{"n":6,"e":4302}]],"fo":[[4092,[{"t":"Y"}]]]}],[930,{"n":"Coleman","f":"Séamus","fp":"DL","r":8,"c":22,"s":{"s":79,"n":17,"a":4.65,"d":0.72,"Og":1,"Os":132,"On":26,"Oa":5.08,"Od":1.02,"pd":26},"p":[[-37,{"n":7,"e":3532,"g":1}],[-36,{"n":5,"e":3520}],[-35,{"n":6,"e":3512}],[-34,{"n":4.5,"e":3501}],[-33,{"n":5,"e":3490}],[-32,{"n":6.5,"e":3487}],[-31,{"n":7,"e":3471}],[-29,{"n":5,"e":3451}],[-28,{"n":7,"e":3439}],[26,{"n":5,"e":4052}],[24,{"n":4,"e":4070,"s":1}],[23,{"n":5,"e":4087}],[22,{"n":5.5,"e":4092,"s":1}],[21,{"n":4,"e":4102}],[20,{"n":4.5,"e":4113,"s":1}],[19,{"n":5.5,"e":4122}],[17,{"n":5,"e":4144}],[13,{"n":5,"e":4183,"s":1}],[8,{"n":3,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":5,"e":4252}],[5,{"n":3.5,"e":4265}],[4,{"n":5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":4.5,"e":4291}],[1,{"n":5,"e":4302}]]}],[958,{"n":"Delph","f":"Fabian","fp":"MD","r":10,"c":22,"s":{"s":74,"n":15,"a":4.93,"d":0.56,"Ss":39,"Sn":8,"Sa":4.88,"Sd":0.52,"Os":74,"On":15,"Oa":4.93,"Od":0.56,"pm":15},"p":[[25,{"n":4,"e":4066}],[24,{"n":4.5,"e":4070}],[23,{"n":5,"e":4087}],[22,{"n":5,"e":4092,"s":1}],[21,{"n":4.5,"e":4102}],[20,{"n":5,"e":4113,"s":1}],[19,{"n":5.5,"e":4122}],[18,{"n":5.5,"e":4131}],[11,{"n":6,"e":4203}],[10,{"n":5,"e":4209,"s":1}],[8,{"n":5,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":4.5,"e":4265}],[4,{"n":5,"e":4276}]],"fo":[[4066,[{"t":"Y"},{"t":"O"}]],[4102,[{"t":"Y"}]]]}],[967,{"n":"Cuco Martina","f":"","fp":"DL","r":1,"c":22}],[1028,{"n":"Niasse","f":"Oumar","fp":"A","r":3,"c":22,"s":{"s":12.5,"n":3,"a":4.17,"d":0.29,"Os":49,"On":12,"Oa":4.08,"Od":0.51,"pa":12},"p":[[-35,{"n":3.5,"e":3510}],[-33,{"n":4.5,"e":3492}],[-29,{"n":4,"e":3457}],[-36,{"n":4,"e":3521}],[-34,{"n":4.5,"e":3499,"s":1}],[-32,{"n":4,"e":3481}],[-31,{"n":4,"e":3469}],[-30,{"n":5,"e":3459}],[-27,{"n":3,"e":3431}],[24,{"n":4,"e":4070,"s":1}],[23,{"n":4,"e":4087,"s":1}],[17,{"n":4.5,"e":4144,"s":1}]]}],[1039,{"n":"Lookman","f":"Ademola","fp":"A","r":7,"c":22,"s":{"Os":32,"On":7,"Oa":4.57,"Od":0.53,"pa":7},"p":[[-38,{"n":5.5,"e":3546,"s":1}],[-37,{"n":5,"e":3532,"s":1}],[-36,{"n":4,"e":3520,"s":1}],[-34,{"n":4,"e":3501,"s":1}],[-33,{"n":4.5,"e":3490,"s":1}],[-30,{"n":4.5,"e":3466,"s":1}],[-28,{"n":4.5,"e":3439,"s":1}]]}],[1066,{"n":"Calvert-Lewin","f":"Dominic","fp":"A","r":28,"c":22,"s":{"g":11,"s":122.5,"n":24,"a":5.1,"d":1.33,"Sg":8,"Ss":84,"Sn":16,"Sa":5.25,"Sd":1.39,"Og":13,"Os":178.5,"On":35,"Oa":5.1,"Od":1.27,"pa":35},"p":[[-37,{"n":4.5,"e":3532}],[-36,{"n":4.5,"e":3520}],[-35,{"n":5.5,"e":3512}],[-34,{"n":3,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":5.5,"e":3487}],[-31,{"n":6,"e":3471}],[-30,{"n":6,"e":3466,"g":1}],[-29,{"n":4.5,"e":3451}],[-28,{"n":7,"e":3439,"g":1}],[-27,{"n":3.5,"e":3433}],[26,{"n":7,"e":4052,"g":1}],[25,{"n":4.5,"e":4066}],[24,{"n":6.5,"e":4070,"g":1}],[23,{"n":6,"e":4087,"g":1}],[22,{"n":5,"e":4092}],[21,{"n":4,"e":4102}],[20,{"n":8,"e":4113,"g":2}],[19,{"n":6,"e":4122,"g":1}],[18,{"n":5,"e":4131}],[17,{"n":4,"e":4144}],[16,{"n":8,"e":4151,"g":2}],[15,{"n":4,"e":4167}],[14,{"n":3.5,"e":4170}],[13,{"n":5,"e":4183,"s":1}],[12,{"n":4.5,"e":4193,"s":1}],[11,{"n":4,"e":4203,"s":1}],[10,{"n":6,"e":4209,"g":1,"s":1}],[8,{"n":4,"e":4229}],[7,{"n":6,"e":4246,"g":1}],[5,{"n":5.5,"e":4265,"g":1}],[4,{"n":4.5,"e":4276,"s":1}],[3,{"n":3.5,"e":4278}],[2,{"n":4,"e":4291}],[1,{"n":4,"e":4302}]],"fo":[[4070,[{"t":"Y"}]],[4092,[{"t":"Y"}]],[4102,[{"t":"Y"}]],[4113,[{"t":"Y"}]]],"a":{"m":15,"a":21,"M":29,"n":6}}],[1094,{"n":"Kenny","f":"Jonjoe","fp":"DC","r":5,"c":22,"s":{"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pd":2},"p":[[-30,{"n":3,"e":3466}],[-27,{"n":4.5,"e":3433}]]}],[1114,{"n":"Hewelt","f":"Mateusz","fp":"G","r":1,"c":22}],[1307,{"n":"Richarlison","f":"","fp":"A","r":26,"c":22,"s":{"g":9,"s":138,"n":24,"a":5.75,"d":1.14,"Ss":5,"Sn":1,"Sa":5,"Og":12,"Os":197.5,"On":35,"Oa":5.64,"Od":1.09,"pm":21,"pa":14},"p":[[-37,{"n":5.5,"e":3532}],[-36,{"n":5.5,"e":3520}],[-35,{"n":7,"e":3512,"g":1}],[-34,{"n":4,"e":3501}],[-33,{"n":5,"e":3490}],[-32,{"n":6,"e":3487}],[-31,{"n":7,"e":3471,"g":1}],[-30,{"n":5.5,"e":3466,"g":1}],[-29,{"n":5,"e":3451,"s":1}],[-28,{"n":4.5,"e":3439}],[-27,{"n":4.5,"e":3433,"s":1}],[26,{"n":7.5,"e":4052,"g":1}],[25,{"n":5,"e":4066}],[22,{"n":7,"e":4092,"g":1}],[21,{"n":6,"e":4102,"g":1}],[20,{"n":7,"e":4113}],[19,{"n":5,"e":4122}],[18,{"n":5,"e":4131}],[17,{"n":4,"e":4144}],[16,{"n":6.5,"e":4151,"g":1}],[15,{"n":5.5,"e":4167,"g":1}],[14,{"n":6.5,"e":4170,"g":1}],[13,{"n":4,"e":4183}],[12,{"n":7.5,"e":4193,"g":1}],[11,{"n":4.5,"e":4203}],[10,{"n":5.5,"e":4209}],[9,{"n":6,"e":4222}],[8,{"n":5.5,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":6.5,"e":4265}],[4,{"n":8,"e":4276,"g":2}],[3,{"n":5,"e":4278}],[2,{"n":5,"e":4291}],[1,{"n":6,"e":4302}]],"fo":[[4144,[{"t":"Y"}]]],"a":{"m":29,"a":43,"M":70,"n":16}}],[1479,{"n":"Lössl","f":"Jonas","fp":"G","r":3,"c":22,"s":{"Os":42,"On":8,"Oa":5.25,"Od":1.77,"pg":8},"p":[[-36,{"n":3,"e":3523}],[-37,{"n":6,"e":3533}],[-35,{"n":6,"e":3513}],[-31,{"n":2.5,"e":3476}],[-30,{"n":5,"e":3462}],[-29,{"n":5.5,"e":3449}],[-28,{"n":6,"e":3440}],[-27,{"n":8,"e":3436}]]}],[1751,{"n":"André Gomes","f":"","fp":"MO","r":1,"c":22,"s":{"s":38.5,"n":8,"a":4.81,"d":0.96,"Os":80.5,"On":17,"Oa":4.74,"Od":0.77,"pm":17},"p":[[-38,{"n":4,"e":3546,"s":1}],[-34,{"n":4,"e":3501}],[-33,{"n":5.5,"e":3490}],[-32,{"n":5.5,"e":3487}],[-31,{"n":4.5,"e":3471}],[-30,{"n":4,"e":3466}],[-29,{"n":5,"e":3451,"s":1}],[-28,{"n":5,"e":3439,"s":1}],[-27,{"n":4.5,"e":3433}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[9,{"n":5.5,"e":4222}],[8,{"n":5,"e":4229,"s":1}],[4,{"n":5.5,"e":4276}],[3,{"n":3,"e":4278}],[2,{"n":5,"e":4291}],[1,{"n":6,"e":4302}]]}],[1881,{"n":"Digne","f":"Lucas","fp":"DL","r":15,"c":22,"s":{"ao":1,"s":122,"n":25,"a":4.88,"d":0.83,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.96,"Og":1,"Oao":1,"Os":188,"On":37,"Oa":5.08,"Od":0.98,"pd":34,"pm":3},"p":[[-38,{"n":4.5,"e":3546}],[-37,{"n":6,"e":3532}],[-36,{"n":5,"e":3520}],[-35,{"n":7.5,"e":3512,"g":1}],[-34,{"n":3,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":7,"e":3487}],[-31,{"n":5.5,"e":3471}],[-30,{"n":5,"e":3466}],[-29,{"n":5.5,"e":3451}],[-28,{"n":6,"e":3439}],[-27,{"n":5,"e":3433}],[26,{"n":5,"e":4052}],[25,{"n":5,"e":4066}],[24,{"n":5.5,"e":4070}],[23,{"n":5,"e":4087}],[22,{"n":7,"e":4092}],[21,{"n":4.5,"e":4102}],[19,{"n":5,"e":4122}],[18,{"n":5,"e":4131}],[17,{"n":5,"e":4144}],[16,{"n":5,"e":4151}],[15,{"n":3.5,"e":4167}],[14,{"n":4.5,"e":4170}],[13,{"n":4,"e":4183}],[12,{"n":5,"e":4193}],[11,{"n":6,"e":4203}],[10,{"n":4.5,"e":4209,"a":1}],[9,{"n":6,"e":4222}],[8,{"n":5,"e":4229}],[7,{"n":4,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":3.5,"e":4265}],[4,{"n":5.5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":6,"e":4291}],[1,{"n":4.5,"e":4302}]],"fo":[[4144,[{"t":"I"}]]]}],[2026,{"n":"Vlasic","f":"Nikola","fp":"A","r":7,"c":22}],[2118,{"n":"Baningime","f":"Beni","fp":"MD","r":1,"c":22}],[2218,{"n":"Gordon","f":"Anthony","fp":"MD","r":1,"c":22}],[2241,{"n":"Mina","f":"Yerry","fp":"DC","r":15,"c":22,"s":{"g":2,"ao":1,"s":120,"n":24,"a":5,"d":1.01,"Sg":2,"Ss":48,"Sn":9,"Sa":5.33,"Sd":0.9,"Og":2,"Oao":1,"Os":134.5,"On":27,"Oa":4.98,"Od":1,"pd":27},"p":[[-38,{"n":4,"e":3546}],[-31,{"n":6,"e":3471}],[-30,{"n":4.5,"e":3466,"s":1}],[26,{"n":5.5,"e":4052}],[25,{"n":7,"e":4066,"g":2}],[24,{"n":4,"e":4070}],[23,{"n":5,"e":4087}],[22,{"n":5,"e":4092,"s":1}],[21,{"n":4.5,"e":4102}],[20,{"n":5,"e":4113,"s":1}],[19,{"n":6,"e":4122}],[18,{"n":6,"e":4131}],[17,{"n":5.5,"e":4144}],[15,{"n":3,"e":4167}],[14,{"n":5,"e":4170}],[13,{"n":3.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":5,"e":4203}],[9,{"n":6,"e":4222}],[8,{"n":5,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":3,"e":4252,"a":1}],[5,{"n":4,"e":4265}],[4,{"n":5,"e":4276}],[3,{"n":4.5,"e":4278}],[2,{"n":6,"e":4291}],[1,{"n":6,"e":4302}]],"fo":[[4066,[{"t":"Y"}]],[4102,[{"t":"Y"}]]]}],[2569,{"n":"Dowell","f":"Kieran","fp":"MD","r":1,"c":22}],[2583,{"n":"Browning","f":"Tyias","fp":"DC","r":1,"c":22}],[2593,{"n":"Pennington","f":"Matthew","fp":"DC","r":5,"c":22}],[2760,{"n":"Williams","f":"Joe","fp":"MD","r":1,"c":22}],[2764,{"n":"Bernard","f":"","fp":"MO","r":9,"c":22,"s":{"g":3,"s":83.5,"n":16,"a":5.22,"d":1.18,"Og":4,"Os":143,"On":28,"Oa":5.11,"Od":1.17,"pm":23,"pa":5},"p":[[-38,{"n":4,"e":3546}],[-37,{"n":5,"e":3532}],[-36,{"n":5,"e":3520}],[-35,{"n":7,"e":3512}],[-34,{"n":4,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":7,"e":3487,"g":1}],[-31,{"n":5.5,"e":3471}],[-30,{"n":3.5,"e":3466}],[-29,{"n":4,"e":3451}],[-28,{"n":4.5,"e":3439,"s":1}],[-27,{"n":4,"e":3433}],[26,{"n":6.5,"e":4052,"g":1}],[24,{"n":6.5,"e":4070}],[23,{"n":3.5,"e":4087}],[22,{"n":6,"e":4092}],[19,{"n":5.5,"e":4122}],[17,{"n":4.5,"e":4144}],[16,{"n":4.5,"e":4151,"s":1}],[15,{"n":5,"e":4167,"s":1}],[10,{"n":5,"e":4209}],[9,{"n":7.5,"e":4222,"g":1}],[6,{"n":3.5,"e":4252}],[5,{"n":4.5,"e":4265,"s":1}],[4,{"n":4.5,"e":4276,"s":1}],[3,{"n":4.5,"e":4278}],[2,{"n":7,"e":4291,"g":1}],[1,{"n":5,"e":4302}]]}],[2851,{"n":"João Virgínia","f":"","fp":"G","r":1,"c":22}],[3685,{"n":"Tarashaj","f":"Shani","fp":"A","r":3,"c":22}],[4293,{"n":"Kean","f":"Moise","fp":"A","r":11,"c":22,"s":{"g":1,"s":87,"n":19,"a":4.58,"d":0.65,"Sg":1,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.76,"Og":1,"Os":87,"On":19,"Oa":4.58,"Od":0.65,"pa":19},"p":[[25,{"n":5.5,"e":4066,"s":1}],[24,{"n":6.5,"e":4070,"g":1}],[23,{"n":5,"e":4087}],[21,{"n":4.5,"e":4102,"s":1}],[20,{"n":4.5,"e":4113}],[19,{"n":4,"e":4122,"s":1}],[18,{"n":4,"e":4131,"s":1}],[17,{"n":3.5,"e":4144,"s":1}],[15,{"n":4,"e":4167,"s":1}],[14,{"n":4.5,"e":4170,"s":1}],[9,{"n":4.5,"e":4222,"s":1}],[8,{"n":4,"e":4229,"s":1}],[7,{"n":4.5,"e":4246,"s":1}],[6,{"n":4.5,"e":4252}],[5,{"n":4.5,"e":4265,"s":1}],[4,{"n":5,"e":4276}],[3,{"n":5,"e":4278,"s":1}],[2,{"n":4.5,"e":4291,"s":1}],[1,{"n":4.5,"e":4302,"s":1}]]}],[5998,{"n":"Gbamin","f":"Jean-Philippe","fp":"MD","r":3,"c":22,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[2,{"n":5,"e":4291}],[1,{"n":5,"e":4302,"s":1}]]}],[6428,{"n":"Adeniran","f":"Dennis","fp":"MD","r":1,"c":22}],[6485,{"n":"Gibson","f":"Lewis","fp":"DC","r":1,"c":22}],[148,{"n":"Ricardo Pereira","f":"","fp":"DL","r":21,"c":29,"s":{"g":3,"s":126.5,"n":25,"a":5.06,"d":1.23,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":3,"Os":190,"On":37,"Oa":5.14,"Od":1.21,"pd":35,"pm":2},"p":[[26,{"n":4.5,"e":4057}],[24,{"n":7,"e":4071,"g":1}],[21,{"n":5.5,"e":4103}],[19,{"n":4,"e":4123}],[18,{"n":3,"e":4132}],[17,{"n":4.5,"e":4142}],[15,{"n":7,"e":4160}],[10,{"n":6,"e":4215}],[8,{"n":5,"e":4230}],[7,{"n":6.5,"e":4245,"g":1}],[6,{"n":7,"e":4249,"g":1}],[5,{"n":4,"e":4260}],[3,{"n":4,"e":4282}],[1,{"n":5,"e":4305}],[-37,{"n":6,"e":3534}],[-35,{"n":4.5,"e":3516}],[-34,{"n":4.5,"e":3502}],[-29,{"n":3.5,"e":3455}],[-38,{"n":5,"e":3542}],[-36,{"n":7,"e":3522}],[-33,{"n":7,"e":3491}],[-32,{"n":6.5,"e":3484}],[-31,{"n":5.5,"e":3470}],[-30,{"n":5.5,"e":3463}],[-28,{"n":5,"e":3441}],[-27,{"n":3.5,"e":3434}],[25,{"n":3.5,"e":4061}],[23,{"n":3,"e":4080}],[22,{"n":3.5,"e":4093}],[16,{"n":5,"e":4148}],[14,{"n":5,"e":4170}],[13,{"n":6.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":6,"e":4202}],[9,{"n":5.5,"e":4223}],[4,{"n":4.5,"e":4271}],[2,{"n":5,"e":4296}]],"a":{"m":23,"a":27,"M":32,"n":7}}],[610,{"n":"Vardy","f":"Jamie","fp":"A","r":50,"c":29,"s":{"g":17,"s":136.5,"n":24,"a":5.69,"d":1.62,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.11,"Og":27,"Os":207.5,"On":36,"Oa":5.76,"Od":1.57,"pa":36},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":4,"e":3534}],[-36,{"n":8,"e":3522,"g":2}],[-35,{"n":6.5,"e":3516,"g":1}],[-34,{"n":3.5,"e":3502}],[-33,{"n":7.5,"e":3491,"g":2}],[-32,{"n":6.5,"e":3484,"g":1}],[-31,{"n":6,"e":3470}],[-30,{"n":8,"e":3463,"g":2}],[-29,{"n":6,"e":3455,"g":1}],[-28,{"n":6,"e":3441,"g":1}],[-27,{"n":4,"e":3434}],[26,{"n":4.5,"e":4057}],[25,{"n":5,"e":4061}],[24,{"n":5,"e":4071}],[23,{"n":3,"e":4080}],[22,{"n":5.5,"e":4093}],[19,{"n":3.5,"e":4123}],[18,{"n":6.5,"e":4132,"g":1}],[17,{"n":6,"e":4142}],[16,{"n":8,"e":4148,"g":2}],[15,{"n":5.5,"e":4160,"g":1}],[14,{"n":6,"e":4170,"g":1}],[13,{"n":7,"e":4181,"g":1}],[12,{"n":7.5,"e":4196,"g":1}],[11,{"n":6.5,"e":4202,"g":1}],[10,{"n":9,"e":4215,"g":3}],[9,{"n":6,"e":4223,"g":1}],[8,{"n":3.5,"e":4230}],[7,{"n":7.5,"e":4245,"g":2}],[6,{"n":5,"e":4249}],[5,{"n":4,"e":4260}],[4,{"n":8,"e":4271,"g":2}],[3,{"n":6,"e":4282,"g":1}],[2,{"n":3.5,"e":4296}],[1,{"n":4.5,"e":4305}]],"fo":[[4071,[{"t":"I"}]]],"a":{"m":63,"a":95,"M":126,"n":14}}],[660,{"n":"Okazaki","f":"Shinji","fp":"A","r":3,"c":29,"s":{"Os":21.5,"On":5,"Oa":4.3,"Od":0.27,"pa":5},"p":[[-38,{"n":4.5,"e":3542,"s":1}],[-33,{"n":4,"e":3491,"s":1}],[-30,{"n":4.5,"e":3463,"s":1}],[-28,{"n":4,"e":3441,"s":1}],[-27,{"n":4.5,"e":3434,"s":1}]]}],[689,{"n":"Schmeichel","f":"Kasper","fp":"G","r":22,"c":29,"s":{"s":149,"n":26,"a":5.73,"d":0.85,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.84,"Os":214,"On":38,"Oa":5.63,"Od":0.93,"pg":38},"p":[[20,{"n":6,"e":4117}],[-38,{"n":6.5,"e":3542}],[-37,{"n":6,"e":3534}],[-36,{"n":6,"e":3522}],[-35,{"n":4.5,"e":3516}],[-34,{"n":6,"e":3502}],[-33,{"n":6,"e":3491}],[-32,{"n":6,"e":3484}],[-31,{"n":6,"e":3470}],[-30,{"n":5.5,"e":3463}],[-29,{"n":5,"e":3455}],[-28,{"n":5,"e":3441}],[-27,{"n":2.5,"e":3434}],[26,{"n":6,"e":4057}],[25,{"n":4,"e":4061}],[24,{"n":5.5,"e":4071}],[23,{"n":5,"e":4080}],[22,{"n":6,"e":4093}],[21,{"n":6,"e":4103}],[19,{"n":4,"e":4123}],[18,{"n":7.5,"e":4132}],[17,{"n":5,"e":4142}],[16,{"n":5,"e":4148}],[15,{"n":5.5,"e":4160}],[14,{"n":5.5,"e":4170}],[13,{"n":6,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":6,"e":4202}],[10,{"n":7,"e":4215}],[9,{"n":6,"e":4223}],[8,{"n":7.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":6,"e":4249}],[5,{"n":6,"e":4260}],[4,{"n":4.5,"e":4271}],[3,{"n":5.5,"e":4282}],[2,{"n":6,"e":4296}],[1,{"n":6,"e":4305}]],"fo":[[4071,[{"t":"Y"}]]],"a":{"m":25,"a":35,"M":49,"n":15}}],[701,{"n":"Morgan","f":"Wes","fp":"DC","r":5,"c":29,"s":{"s":40.5,"n":8,"a":5.06,"d":0.32,"Og":2,"Os":71.5,"On":13,"Oa":5.5,"Od":0.96,"pd":13},"p":[[-34,{"n":5,"e":3502}],[-33,{"n":6,"e":3491}],[-32,{"n":7.5,"e":3484,"g":1}],[-31,{"n":7.5,"e":3470,"g":1,"s":1}],[-29,{"n":5,"e":3455}],[26,{"n":5,"e":4057,"s":1}],[24,{"n":5,"e":4071,"s":1}],[21,{"n":5,"e":4103,"s":1}],[20,{"n":5.5,"e":4117}],[13,{"n":5.5,"e":4181,"s":1}],[11,{"n":4.5,"e":4202,"s":1}],[9,{"n":5,"e":4223,"s":1}],[3,{"n":5,"e":4282,"s":1}]]}],[734,{"n":"Albrighton","f":"Marc","fp":"MO","r":5,"c":29,"s":{"s":63,"n":12,"a":5.25,"d":0.5,"Os":89.5,"On":17,"Oa":5.26,"Od":0.56,"pm":17},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":6.5,"e":3522}],[-35,{"n":4.5,"e":3516}],[-34,{"n":5.5,"e":3502,"s":1}],[26,{"n":5.5,"e":4057,"s":1}],[20,{"n":5.5,"e":4117}],[19,{"n":4.5,"e":4123,"s":1}],[18,{"n":5,"e":4132,"s":1}],[16,{"n":5.5,"e":4148,"s":1}],[14,{"n":5,"e":4170,"s":1}],[10,{"n":5.5,"e":4215,"s":1}],[8,{"n":5,"e":4230,"s":1}],[7,{"n":6.5,"e":4245,"s":1}],[4,{"n":5,"e":4271}],[2,{"n":5,"e":4296,"s":1}],[1,{"n":5,"e":4305,"s":1}]]}],[735,{"n":"Evans","f":"Jonny","fp":"DC","r":22,"c":29,"s":{"g":1,"s":147.5,"n":26,"a":5.67,"d":0.81,"Sg":1,"Ss":141.5,"Sn":25,"Sa":5.66,"Sd":0.83,"Og":2,"Os":203,"On":36,"Oa":5.64,"Od":0.86,"pd":36},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3534}],[-36,{"n":7,"e":3522}],[-35,{"n":4.5,"e":3516}],[-32,{"n":6,"e":3484}],[-31,{"n":7,"e":3470}],[-30,{"n":5.5,"e":3463}],[-29,{"n":4,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":4.5,"e":3434,"g":1}],[26,{"n":6,"e":4057}],[25,{"n":4.5,"e":4061}],[24,{"n":6,"e":4071}],[23,{"n":5.5,"e":4080}],[22,{"n":5.5,"e":4093}],[21,{"n":6,"e":4103}],[20,{"n":5,"e":4117}],[19,{"n":3.5,"e":4123}],[18,{"n":5,"e":4132}],[17,{"n":5,"e":4142}],[16,{"n":7.5,"e":4148,"g":1}],[15,{"n":7,"e":4160}],[14,{"n":5.5,"e":4170}],[13,{"n":5.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":6.5,"e":4202}],[10,{"n":6,"e":4215}],[9,{"n":5.5,"e":4223}],[8,{"n":5.5,"e":4230}],[7,{"n":7,"e":4245}],[6,{"n":5.5,"e":4249}],[5,{"n":5.5,"e":4260}],[4,{"n":6,"e":4271}],[3,{"n":5.5,"e":4282}],[2,{"n":5,"e":4296}],[1,{"n":6,"e":4305}]],"fo":[[4061,[{"t":"Y"}]]],"a":{"m":25,"a":30,"M":36,"n":16}}],[756,{"n":"Fuchs","f":"Christian","fp":"DL","r":8,"c":29,"s":{"s":35.5,"n":7,"a":5.07,"d":0.79,"Os":44.5,"On":9,"Oa":4.94,"Od":0.77,"pd":9},"p":[[-31,{"n":5,"e":3470,"s":1}],[-27,{"n":4,"e":3434}],[23,{"n":4,"e":4080}],[21,{"n":6,"e":4103}],[20,{"n":4.5,"e":4117}],[15,{"n":6,"e":4160}],[4,{"n":5.5,"e":4271,"s":1}],[3,{"n":4.5,"e":4282}],[2,{"n":5,"e":4296}]]}],[785,{"n":"King","f":"Andy","fp":"MD","r":1,"c":29}],[798,{"n":"Jakupovic","f":"Eldin","fp":"G","r":1,"c":29}],[838,{"n":"Iheanacho","f":"Kelechi","fp":"A","r":8,"c":29,"s":{"g":3,"s":48.5,"n":9,"a":5.39,"d":1.5,"Sg":1,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.29,"Og":3,"Os":83.5,"On":17,"Oa":4.91,"Od":1.19,"pa":17},"p":[[-37,{"n":4,"e":3534,"s":1}],[-35,{"n":4.5,"e":3516,"s":1}],[-34,{"n":4.5,"e":3502,"s":1}],[-33,{"n":4.5,"e":3491,"s":1}],[-32,{"n":4.5,"e":3484,"s":1}],[-29,{"n":4.5,"e":3455,"s":1}],[-28,{"n":4,"e":3441,"s":1}],[-27,{"n":4.5,"e":3434,"s":1}],[25,{"n":4,"e":4061,"s":1}],[24,{"n":6.5,"e":4071,"s":1}],[23,{"n":5,"e":4080,"s":1}],[22,{"n":4.5,"e":4093,"s":1}],[21,{"n":4,"e":4103}],[20,{"n":7,"e":4117,"g":1}],[17,{"n":3.5,"e":4142}],[16,{"n":7.5,"e":4148,"g":1}],[14,{"n":6.5,"e":4170,"g":1,"s":1}]]}],[851,{"n":"Mendy","f":"Nampalys","fp":"MD","r":5,"c":29,"s":{"s":22,"n":4,"a":5.5,"d":0.58,"Os":62.5,"On":12,"Oa":5.21,"Od":0.4,"pm":12},"p":[[-36,{"n":5,"e":3522,"s":1}],[-35,{"n":5,"e":3516,"s":1}],[-34,{"n":5.5,"e":3502,"s":1}],[-32,{"n":5,"e":3484,"s":1}],[-31,{"n":5,"e":3470,"s":1}],[-30,{"n":5,"e":3463,"s":1}],[-29,{"n":5,"e":3455,"s":1}],[-28,{"n":5,"e":3441,"s":1}],[24,{"n":5,"e":4071}],[23,{"n":6,"e":4080}],[20,{"n":6,"e":4117}],[3,{"n":5,"e":4282,"s":1}]],"fo":[[4071,[{"t":"I"}]]]}],[858,{"n":"Simpson","f":"Danny","fp":"DC","r":4,"c":29,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-38,{"n":5,"e":3542,"s":1}]]}],[864,{"n":"Gray","f":"Demarai","fp":"MO","r":7,"c":29,"s":{"g":1,"s":75,"n":14,"a":5.36,"d":0.6,"Og":2,"Os":130,"On":25,"Oa":5.2,"Od":0.75,"pm":24,"pa":1},"p":[[-37,{"n":5,"e":3534,"s":1}],[-36,{"n":5,"e":3522,"s":1}],[-35,{"n":5,"e":3516}],[-34,{"n":4,"e":3502}],[-33,{"n":5.5,"e":3491}],[-32,{"n":5.5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":3.5,"e":3463}],[-29,{"n":5,"e":3455,"s":1}],[-28,{"n":7,"e":3441,"g":1}],[-27,{"n":4.5,"e":3434,"s":1}],[22,{"n":5,"e":4093,"s":1}],[21,{"n":5,"e":4103,"s":1}],[20,{"n":7,"e":4117,"g":1}],[18,{"n":4.5,"e":4132,"s":1}],[17,{"n":5.5,"e":4142,"s":1}],[13,{"n":5.5,"e":4181,"s":1}],[12,{"n":6,"e":4196,"s":1}],[11,{"n":5.5,"e":4202,"s":1}],[10,{"n":5,"e":4215,"s":1}],[9,{"n":5,"e":4223,"s":1}],[7,{"n":5,"e":4245,"s":1}],[6,{"n":5,"e":4249,"s":1}],[5,{"n":5.5,"e":4260}],[4,{"n":5.5,"e":4271,"s":1}]]}],[880,{"n":"Amartey","f":"Daniel","fp":"MD","r":1,"c":29}],[1015,{"n":"Wilfred Ndidi","f":"","fp":"MD","r":21,"c":29,"s":{"g":2,"s":126.5,"n":21,"a":6.02,"d":1.03,"Og":2,"Os":195,"On":33,"Oa":5.91,"Od":1.09,"pm":33},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":7,"e":3534}],[-36,{"n":5.5,"e":3522}],[-35,{"n":5.5,"e":3516}],[-34,{"n":3.5,"e":3502}],[-33,{"n":6,"e":3491}],[-32,{"n":8,"e":3484}],[-31,{"n":5.5,"e":3470}],[-30,{"n":6.5,"e":3463}],[-29,{"n":6,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":4,"e":3434}],[24,{"n":4,"e":4071,"s":1}],[21,{"n":7.5,"e":4103}],[20,{"n":5,"e":4117,"s":1}],[19,{"n":4,"e":4123}],[18,{"n":5,"e":4132}],[17,{"n":6,"e":4142}],[16,{"n":6,"e":4148}],[15,{"n":5.5,"e":4160}],[14,{"n":6.5,"e":4170}],[13,{"n":6,"e":4181}],[12,{"n":7,"e":4196}],[11,{"n":7,"e":4202}],[10,{"n":7.5,"e":4215}],[9,{"n":5.5,"e":4223}],[8,{"n":6,"e":4230}],[7,{"n":8,"e":4245,"g":1}],[6,{"n":6,"e":4249}],[5,{"n":6,"e":4260}],[4,{"n":6,"e":4271}],[2,{"n":6,"e":4296,"g":1}],[1,{"n":6,"e":4305}]],"fo":[[4132,[{"t":"Y"}]]],"a":{"m":27,"a":34,"M":45,"n":14}}],[1041,{"n":"Kapustka","f":"Bartosz","fp":"MD","r":3,"c":29}],[1053,{"n":"Benalouane","f":"Yohan","fp":"DC","r":1,"c":29}],[1057,{"n":"Chilwell","f":"Ben","fp":"DL","r":19,"c":29,"s":{"g":2,"s":109.5,"n":21,"a":5.21,"d":1.14,"Sg":1,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":2,"Os":165.5,"On":32,"Oa":5.17,"Od":1,"pd":30,"pm":2},"p":[[-38,{"n":6,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":6,"e":3522}],[-35,{"n":5.5,"e":3516}],[-34,{"n":4.5,"e":3502}],[-33,{"n":5.5,"e":3491}],[-32,{"n":5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":5,"e":3463}],[-29,{"n":3.5,"e":3455}],[-28,{"n":5,"e":3441}],[26,{"n":5,"e":4057}],[25,{"n":5.5,"e":4061,"g":1}],[24,{"n":6,"e":4071}],[22,{"n":3,"e":4093}],[21,{"n":5.5,"e":4103}],[19,{"n":3.5,"e":4123}],[18,{"n":4,"e":4132}],[17,{"n":5,"e":4142}],[16,{"n":5,"e":4148}],[14,{"n":5,"e":4170}],[13,{"n":7,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":5.5,"e":4202}],[10,{"n":8,"e":4215,"g":1}],[9,{"n":4.5,"e":4223}],[8,{"n":4,"e":4230}],[7,{"n":6.5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4260}],[4,{"n":5.5,"e":4271}],[1,{"n":5,"e":4305}]],"fo":[[4057,[{"t":"Y"}]]],"a":{"m":19,"a":26,"M":30,"n":5}}],[1160,{"n":"Tielemans","f":"Youri","fp":"MO","r":20,"c":29,"s":{"g":3,"s":136.5,"n":25,"a":5.46,"d":1.05,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.67,"Og":6,"Os":205.5,"On":37,"Oa":5.55,"Od":1.04,"pm":37},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":4.5,"e":3534}],[-36,{"n":7,"e":3522,"g":1}],[-35,{"n":5.5,"e":3516}],[-34,{"n":5.5,"e":3502}],[-33,{"n":7,"e":3491,"g":1}],[-32,{"n":7.5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":6,"e":3463,"g":1}],[-29,{"n":6,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":4,"e":3434}],[26,{"n":5.5,"e":4057}],[25,{"n":6,"e":4061}],[24,{"n":6,"e":4071}],[23,{"n":5,"e":4080,"s":1}],[22,{"n":4.5,"e":4093,"s":1}],[21,{"n":5,"e":4103}],[19,{"n":3,"e":4123}],[18,{"n":4,"e":4132}],[17,{"n":5.5,"e":4142}],[16,{"n":5.5,"e":4148}],[15,{"n":4.5,"e":4160}],[14,{"n":4.5,"e":4170}],[13,{"n":6,"e":4181}],[12,{"n":7,"e":4196}],[11,{"n":6,"e":4202}],[10,{"n":8,"e":4215,"g":1}],[9,{"n":5.5,"e":4223,"g":1}],[8,{"n":4.5,"e":4230}],[7,{"n":6.5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5.5,"e":4260}],[4,{"n":7,"e":4271,"g":1}],[3,{"n":5.5,"e":4282}],[2,{"n":5,"e":4296}],[1,{"n":6,"e":4305}]],"fo":[[4103,[{"t":"Y"}]]],"a":{"m":27,"a":29,"M":32,"n":6}}],[1368,{"n":"Knight","f":"Josh","fp":"DC","r":1,"c":29}],[1371,{"n":"James","f":"Matty","fp":"MD","r":1,"c":29}],[1383,{"n":"Ward","f":"Danny","fp":"G","r":7,"c":29}],[2067,{"n":"Choudhury","f":"Hamza","fp":"MD","r":8,"c":29,"s":{"g":1,"s":76,"n":15,"a":5.07,"d":0.62,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":99.5,"On":19,"Oa":5.24,"Od":0.73,"pm":19},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3534}],[-36,{"n":7,"e":3522}],[-33,{"n":5,"e":3491,"s":1}],[26,{"n":4.5,"e":4057}],[25,{"n":5.5,"e":4061}],[22,{"n":4.5,"e":4093}],[21,{"n":6.5,"e":4103,"g":1,"s":1}],[20,{"n":4.5,"e":4117}],[19,{"n":5,"e":4123,"s":1}],[15,{"n":4.5,"e":4160,"s":1}],[8,{"n":5,"e":4230,"s":1}],[7,{"n":5,"e":4245,"s":1}],[6,{"n":5,"e":4249,"s":1}],[5,{"n":4.5,"e":4260}],[4,{"n":5.5,"e":4271,"s":1}],[3,{"n":6,"e":4282}],[2,{"n":4.5,"e":4296}],[1,{"n":5.5,"e":4305}]],"fo":[[4057,[{"t":"Y"},{"t":"O"}]],[4117,[{"t":"Y"}]]]}],[2132,{"n":"Pérez","f":"Ayoze","fp":"A","r":20,"c":29,"s":{"g":7,"s":125.5,"n":23,"a":5.46,"d":1.29,"Sg":3,"Ss":45,"Sn":8,"Sa":5.63,"Sd":1.51,"Og":16,"Os":195.5,"On":35,"Oa":5.59,"Od":1.47,"pm":28,"pa":7},"p":[[-37,{"n":3.5,"e":3535}],[-35,{"n":8,"e":3515,"g":3}],[-29,{"n":3,"e":3456}],[-38,{"n":7.5,"e":3541,"g":1}],[-36,{"n":6,"e":3518,"g":1}],[-34,{"n":7,"e":3502,"g":1}],[-33,{"n":5.5,"e":3493}],[-32,{"n":4,"e":3478}],[-31,{"n":5,"e":3468}],[-30,{"n":8.5,"e":3466,"g":2}],[-28,{"n":5,"e":3444}],[-27,{"n":7,"e":3436,"g":1}],[26,{"n":4.5,"e":4057}],[25,{"n":5.5,"e":4061}],[24,{"n":8,"e":4071,"g":2}],[23,{"n":4.5,"e":4080}],[22,{"n":4,"e":4093}],[21,{"n":7,"e":4103,"g":1}],[20,{"n":7,"e":4117}],[19,{"n":4.5,"e":4123,"s":1}],[18,{"n":4.5,"e":4132}],[15,{"n":4,"e":4160}],[14,{"n":5,"e":4170}],[13,{"n":7,"e":4181,"g":1}],[12,{"n":5,"e":4196}],[11,{"n":5,"e":4202}],[10,{"n":9,"e":4215,"g":3}],[9,{"n":5,"e":4223}],[8,{"n":5.5,"e":4230,"s":1}],[7,{"n":5.5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4260,"s":1}],[3,{"n":4.5,"e":4282}],[2,{"n":5.5,"e":4296}],[1,{"n":5,"e":4305}]],"a":{"m":20,"a":27,"M":37,"n":13}}],[2207,{"n":"Barnes","f":"Harvey","fp":"MO","r":21,"c":29,"s":{"g":4,"s":132,"n":24,"a":5.5,"d":1.15,"Sg":3,"Ss":25.5,"Sn":4,"Sa":6.38,"Sd":1.49,"Og":5,"Os":194.5,"On":36,"Oa":5.4,"Od":1.05,"pm":33,"pa":3},"p":[[-38,{"n":5,"e":3542,"s":1}],[-37,{"n":5,"e":3534,"s":1}],[-36,{"n":5,"e":3522,"s":1}],[-35,{"n":7,"e":3516,"g":1,"s":1}],[-34,{"n":4.5,"e":3502}],[-33,{"n":4.5,"e":3491}],[-32,{"n":5,"e":3484}],[-31,{"n":5.5,"e":3470}],[-30,{"n":6,"e":3463}],[-29,{"n":4,"e":3455}],[-28,{"n":6,"e":3441}],[-27,{"n":5,"e":3434}],[26,{"n":5,"e":4057}],[25,{"n":6,"e":4061,"g":1}],[24,{"n":8,"e":4071,"g":1}],[23,{"n":7,"e":4080,"g":1}],[22,{"n":4.5,"e":4093}],[20,{"n":5,"e":4117,"s":1}],[19,{"n":3.5,"e":4123}],[18,{"n":5.5,"e":4132}],[17,{"n":4.5,"e":4142,"s":1}],[16,{"n":4.5,"e":4148,"s":1}],[15,{"n":5.5,"e":4160}],[14,{"n":5,"e":4170}],[13,{"n":6.5,"e":4181}],[12,{"n":5.5,"e":4196}],[11,{"n":5.5,"e":4202}],[10,{"n":8,"e":4215}],[9,{"n":6.5,"e":4223}],[8,{"n":3.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":5.5,"e":4249}],[5,{"n":5,"e":4260,"s":1}],[4,{"n":5,"e":4271}],[3,{"n":6.5,"e":4282,"g":1,"s":1}],[1,{"n":5,"e":4305,"s":1}]],"fo":[[4132,[{"t":"I"}]]],"a":{"m":12,"a":14,"M":16,"n":12}}],[2528,{"n":"Bennett","f":"Ryan","fp":"DC","r":7,"c":29,"s":{"s":53.5,"n":11,"a":4.86,"d":0.78,"Os":99.5,"On":20,"Oa":4.97,"Od":0.77,"pd":20},"p":[[21,{"n":3,"e":4106}],[20,{"n":5,"e":4111}],[19,{"n":5,"e":4127,"s":1}],[15,{"n":5,"e":4162,"s":1}],[9,{"n":5,"e":4227}],[8,{"n":6,"e":4231,"s":1}],[2,{"n":5,"e":4297}],[-38,{"n":4.5,"e":3543}],[-36,{"n":4.5,"e":3527}],[-33,{"n":4.5,"e":3497}],[-37,{"n":5,"e":3537}],[-35,{"n":6,"e":3517}],[-31,{"n":6,"e":3477}],[-29,{"n":6,"e":3457}],[-28,{"n":4,"e":3440}],[-27,{"n":5.5,"e":3428}],[12,{"n":5,"e":4195,"s":1}],[4,{"n":4,"e":4276}],[3,{"n":5,"e":4284}],[1,{"n":5.5,"e":4305}]]}],[2567,{"n":"Maddison","f":"James","fp":"MO","r":33,"c":29,"s":{"g":6,"s":144.5,"n":25,"a":5.78,"d":1.38,"Sg":5,"Ss":104,"Sn":18,"Sa":5.78,"Sd":1.54,"Og":8,"Os":212.5,"On":37,"Oa":5.74,"Od":1.29,"pm":35,"pa":2},"p":[[-38,{"n":4.5,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":7,"e":3522}],[-35,{"n":5,"e":3516}],[-34,{"n":4,"e":3502}],[-33,{"n":7.5,"e":3491,"g":1}],[-32,{"n":5.5,"e":3484}],[-31,{"n":7.5,"e":3470,"g":1}],[-30,{"n":6,"e":3463}],[-29,{"n":5,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":5.5,"e":3434}],[26,{"n":5.5,"e":4057}],[25,{"n":5.5,"e":4061}],[24,{"n":5.5,"e":4071}],[23,{"n":5.5,"e":4080}],[22,{"n":2.5,"e":4093}],[21,{"n":7,"e":4103,"g":1}],[20,{"n":6,"e":4117,"s":1}],[19,{"n":3,"e":4123}],[18,{"n":4.5,"e":4132}],[17,{"n":5.5,"e":4142}],[16,{"n":7.5,"e":4148}],[15,{"n":6,"e":4160,"g":1}],[14,{"n":5,"e":4170}],[13,{"n":7,"e":4181}],[12,{"n":7,"e":4196,"g":1}],[11,{"n":8,"e":4202}],[10,{"n":8,"e":4215,"g":1}],[9,{"n":4.5,"e":4223}],[8,{"n":6,"e":4230,"g":1}],[6,{"n":7,"e":4249,"g":1}],[5,{"n":5,"e":4260}],[4,{"n":4.5,"e":4271}],[3,{"n":7,"e":4282}],[2,{"n":5.5,"e":4296}],[1,{"n":6,"e":4305}]],"fo":[[4057,[{"t":"Y"}]],[4061,[{"t":"Y"}]],[4123,[{"t":"Y"}]]],"a":{"m":37,"a":47,"M":71,"n":15}}],[2572,{"n":"Elder","f":"Callum","fp":"DC","r":1,"c":29}],[2754,{"n":"Söyüncü","f":"Çaglar","fp":"DC","r":20,"c":29,"s":{"g":1,"s":137,"n":25,"a":5.48,"d":0.9,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":0.74,"Og":1,"Os":141.5,"On":26,"Oa":5.44,"Od":0.9,"pd":26},"p":[[-33,{"n":4.5,"e":3491}],[26,{"n":6,"e":4057}],[25,{"n":5,"e":4061}],[24,{"n":5.5,"e":4071}],[23,{"n":4,"e":4080}],[22,{"n":5,"e":4093}],[21,{"n":6,"e":4103}],[19,{"n":4,"e":4123}],[18,{"n":4,"e":4132}],[17,{"n":6,"e":4142}],[16,{"n":6,"e":4148}],[15,{"n":6,"e":4160}],[14,{"n":5,"e":4170}],[13,{"n":6.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":7.5,"e":4202,"g":1}],[10,{"n":6,"e":4215}],[9,{"n":5.5,"e":4223}],[8,{"n":5.5,"e":4230}],[7,{"n":6,"e":4245}],[6,{"n":6,"e":4249}],[5,{"n":3.5,"e":4260}],[4,{"n":6,"e":4271}],[3,{"n":5.5,"e":4282}],[2,{"n":5,"e":4296}],[1,{"n":5.5,"e":4305}]],"fo":[[4132,[{"t":"Y"}]]],"a":{"m":21,"a":25,"M":32,"n":5}}],[2755,{"n":"Benkovic","f":"Filip","fp":"DC","r":1,"c":29}],[2925,{"n":"Leshabela","f":"Thakgalo","fp":"MD","r":1,"c":29}],[3658,{"n":"Justin","f":"James","fp":"DL","r":1,"c":29,"s":{"s":15,"n":3,"a":5,"d":0.5,"Os":15,"On":3,"Oa":5,"Od":0.5,"pd":3},"p":[[20,{"n":4.5,"e":4117}],[16,{"n":5,"e":4148,"s":1}],[15,{"n":5.5,"e":4160,"s":1}]]}],[3690,{"n":"Thomas","f":"George","fp":"A","r":4,"c":29}],[4601,{"n":"Praet","f":"Dennis","fp":"MO","r":8,"c":29,"s":{"g":1,"s":90,"n":18,"a":5,"d":0.75,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":90,"On":18,"Oa":5,"Od":0.75,"pm":18},"p":[[26,{"n":5,"e":4057,"s":1}],[25,{"n":4.5,"e":4061,"s":1}],[23,{"n":5.5,"e":4080}],[22,{"n":4.5,"e":4093,"g":1}],[19,{"n":3,"e":4123}],[18,{"n":5,"e":4132,"s":1}],[17,{"n":4.5,"e":4142}],[16,{"n":7,"e":4148}],[15,{"n":5,"e":4160,"s":1}],[13,{"n":5,"e":4181,"s":1}],[12,{"n":5,"e":4196,"s":1}],[11,{"n":5,"e":4202,"s":1}],[9,{"n":5,"e":4223,"s":1}],[8,{"n":5.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":5,"e":4249,"s":1}],[3,{"n":5,"e":4282}],[2,{"n":5,"e":4296,"s":1}]],"a":{"m":9,"a":14,"M":15,"n":7}}],[5411,{"n":"Fitzhugh","f":"Ethan","fp":"MD","r":1,"c":29}],[5418,{"n":"Tavares","f":"Sidnei","fp":"MD","r":1,"c":29}],[5422,{"n":"Pennant","f":"Terell","fp":"A","r":1,"c":29}],[5425,{"n":"Wright","f":"Callum","fp":"MD","r":1,"c":29}],[5430,{"n":"Daley-Campbell","f":"Vontae","fp":"DC","r":1,"c":29}],[5434,{"n":"Johansson","f":"Viktor","fp":"G","r":1,"c":29}],[5443,{"n":"Moore","f":"Elliott","fp":"DC","r":1,"c":29}],[5444,{"n":"Muskwe","f":"Admiral","fp":"A","r":1,"c":29}],[5445,{"n":"Ndukwu","f":"Layton","fp":"A","r":4,"c":29}],[5,{"n":"Fabinho","f":"","fp":"MD","r":15,"c":21,"s":{"g":1,"s":94,"n":17,"a":5.53,"d":0.74,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.58,"Og":1,"Os":153,"On":28,"Oa":5.46,"Od":0.73,"pm":28},"p":[[26,{"n":5,"e":4054,"s":1}],[25,{"n":6,"e":4062}],[18,{"n":5,"e":4137,"s":1}],[24,{"n":5,"e":4073,"s":1}],[23,{"n":5,"e":4081,"s":1}],[12,{"n":6.5,"e":4190,"g":1}],[10,{"n":6,"e":4211}],[9,{"n":5.5,"e":4224}],[7,{"n":6,"e":4238}],[5,{"n":5.5,"e":4258}],[2,{"n":5,"e":4293,"s":1}],[1,{"n":7,"e":4298}],[-33,{"n":5,"e":3494}],[-32,{"n":5,"e":3485,"s":1}],[-28,{"n":7,"e":3446}],[-27,{"n":6,"e":3435}],[-38,{"n":6,"e":3543}],[-37,{"n":5.5,"e":3535}],[-35,{"n":5,"e":3510,"s":1}],[-34,{"n":5.5,"e":3503}],[-31,{"n":4.5,"e":3472}],[-30,{"n":4.5,"e":3464}],[-29,{"n":5,"e":3451}],[13,{"n":4,"e":4182}],[8,{"n":5,"e":4230}],[6,{"n":5.5,"e":4257}],[4,{"n":5.5,"e":4275}],[3,{"n":6.5,"e":4285}]],"a":{"m":20,"a":24,"M":31,"n":6}}],[605,{"n":"Mané","f":"Sadio","fp":"A","r":50,"c":21,"s":{"g":12,"s":135.5,"n":23,"a":5.89,"d":1.1,"Og":22,"Os":209,"On":35,"Oa":5.97,"Od":1.12,"pm":3,"pa":32},"p":[[22,{"n":5,"e":4096}],[21,{"n":6,"e":4101,"g":1}],[17,{"n":6,"e":4143}],[-38,{"n":7.5,"e":3543,"g":2}],[-37,{"n":5,"e":3535}],[-36,{"n":7.5,"e":3523,"g":2}],[-35,{"n":5.5,"e":3510}],[-34,{"n":7,"e":3503,"g":1}],[-33,{"n":5,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":7,"e":3472,"g":1}],[-30,{"n":7.5,"e":3464,"g":2}],[-29,{"n":4.5,"e":3451}],[-28,{"n":7,"e":3446,"g":2}],[-27,{"n":5,"e":3435}],[26,{"n":6,"e":4054,"g":1,"s":1}],[24,{"n":5,"e":4073}],[23,{"n":4.5,"e":4081}],[20,{"n":7,"e":4111,"g":1}],[19,{"n":6,"e":4123}],[15,{"n":8,"e":4167,"g":1}],[14,{"n":5.5,"e":4171}],[13,{"n":6.5,"e":4182,"g":1}],[12,{"n":6.5,"e":4190,"g":1}],[11,{"n":7,"e":4199,"g":1}],[10,{"n":6,"e":4211}],[9,{"n":4,"e":4224}],[8,{"n":7,"e":4230,"g":1}],[7,{"n":4,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":7.5,"e":4258,"g":2}],[4,{"n":6,"e":4275,"g":1}],[3,{"n":5.5,"e":4285}],[2,{"n":7,"e":4293,"g":1}],[1,{"n":4.5,"e":4298,"s":1}]],"fo":[[4073,[{"t":"I"}]],[4054,[{"t":"Y"}]]],"a":{"m":56,"a":82,"M":110,"n":6}}],[606,{"n":"Roberto Firmino","f":"","fp":"A","r":34,"c":21,"s":{"g":8,"s":151,"n":26,"a":5.81,"d":0.99,"Sg":8,"Ss":146.5,"Sn":25,"Sa":5.86,"Sd":0.97,"Og":11,"Os":196,"On":34,"Oa":5.76,"Od":1.03,"pm":2,"pa":32},"p":[[-35,{"n":5,"e":3510}],[-34,{"n":5,"e":3503}],[-33,{"n":7,"e":3494}],[-32,{"n":6,"e":3485,"g":1}],[-31,{"n":6,"e":3472}],[-30,{"n":7.5,"e":3464,"g":2}],[-29,{"n":4,"e":3451,"s":1}],[-27,{"n":4.5,"e":3435}],[26,{"n":4.5,"e":4054}],[25,{"n":7,"e":4062}],[24,{"n":6.5,"e":4073,"g":1}],[23,{"n":6,"e":4081}],[22,{"n":7,"e":4096,"g":1}],[21,{"n":4.5,"e":4101}],[20,{"n":5,"e":4111}],[19,{"n":8,"e":4123,"g":2}],[18,{"n":5,"e":4137}],[17,{"n":6,"e":4143}],[16,{"n":6,"e":4149}],[15,{"n":5.5,"e":4167,"s":1}],[14,{"n":5,"e":4171}],[13,{"n":6.5,"e":4182,"g":1}],[12,{"n":5,"e":4190}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4211}],[9,{"n":5,"e":4224}],[8,{"n":4.5,"e":4230}],[7,{"n":5,"e":4238}],[6,{"n":6.5,"e":4257,"g":1}],[5,{"n":6.5,"e":4258,"s":1}],[4,{"n":7.5,"e":4275,"g":1}],[3,{"n":5.5,"e":4285}],[2,{"n":6,"e":4293,"g":1}],[1,{"n":7,"e":4298}]],"a":{"m":36,"a":68,"M":98,"n":8}}],[618,{"n":"Lallana","f":"Adam","fp":"MO","r":11,"c":21,"s":{"g":1,"s":65,"n":13,"a":5,"d":0.58,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":85,"On":17,"Oa":5,"Od":0.5,"pm":17},"p":[[-31,{"n":5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":5,"e":3451,"s":1}],[-28,{"n":5,"e":3446,"s":1}],[25,{"n":5,"e":4062,"s":1}],[23,{"n":5,"e":4081,"s":1}],[22,{"n":5.5,"e":4096,"s":1}],[21,{"n":4.5,"e":4101,"s":1}],[20,{"n":5,"e":4111}],[19,{"n":4.5,"e":4123,"s":1}],[15,{"n":5,"e":4167}],[14,{"n":4.5,"e":4171,"s":1}],[11,{"n":5.5,"e":4199}],[9,{"n":6.5,"e":4224,"g":1,"s":1}],[8,{"n":5,"e":4230,"s":1}],[6,{"n":4.5,"e":4257,"s":1}],[3,{"n":4.5,"e":4285,"s":1}]],"fo":[[4111,[{"t":"Y"}]]]}],[624,{"n":"Milner","f":"James","fp":"MD","r":9,"c":21,"s":{"g":2,"s":92,"n":17,"a":5.41,"d":0.85,"Og":4,"Os":147.5,"On":27,"Oa":5.46,"Od":0.82,"pd":2,"pm":25},"p":[[-38,{"n":5,"e":3543,"s":1}],[-37,{"n":4.5,"e":3535,"s":1}],[-35,{"n":7,"e":3510,"g":1,"s":1}],[-34,{"n":5.5,"e":3503,"s":1}],[-33,{"n":5,"e":3494,"s":1}],[-32,{"n":6,"e":3485}],[-31,{"n":6.5,"e":3472,"g":1,"s":1}],[-29,{"n":5,"e":3451,"s":1}],[-28,{"n":6,"e":3446}],[-27,{"n":5,"e":3435}],[26,{"n":5,"e":4054,"s":1}],[21,{"n":6,"e":4101}],[20,{"n":5,"e":4111,"s":1}],[19,{"n":7,"e":4123,"g":1,"s":1}],[17,{"n":6,"e":4143}],[16,{"n":7,"e":4149}],[15,{"n":4.5,"e":4167}],[13,{"n":4.5,"e":4182,"s":1}],[12,{"n":5,"e":4190,"s":1}],[10,{"n":5,"e":4211,"s":1}],[8,{"n":7,"e":4230,"g":1}],[7,{"n":5,"e":4238,"s":1}],[6,{"n":5,"e":4257,"s":1}],[5,{"n":5,"e":4258,"s":1}],[3,{"n":5,"e":4285,"s":1}],[2,{"n":5,"e":4293}],[1,{"n":5,"e":4298,"s":1}]],"fo":[[4143,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":21,"n":6}}],[630,{"n":"Wijnaldum","f":"Georginio","fp":"MO","r":26,"c":21,"s":{"g":2,"s":140.5,"n":25,"a":5.62,"d":0.78,"Ss":49,"Sn":9,"Sa":5.44,"Sd":0.92,"Og":3,"Os":204,"On":37,"Oa":5.51,"Od":0.88,"pm":37},"p":[[-38,{"n":5.5,"e":3543}],[-37,{"n":5,"e":3535}],[-36,{"n":7,"e":3523}],[-35,{"n":7.5,"e":3510,"g":1}],[-34,{"n":5,"e":3503,"s":1}],[-33,{"n":4,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":5,"e":3472}],[-30,{"n":4.5,"e":3464}],[-29,{"n":4,"e":3451}],[-28,{"n":5.5,"e":3446}],[-27,{"n":5.5,"e":3435}],[26,{"n":5,"e":4054}],[25,{"n":6.5,"e":4062}],[24,{"n":4.5,"e":4073}],[23,{"n":5.5,"e":4081}],[22,{"n":6,"e":4096}],[21,{"n":5,"e":4101}],[20,{"n":4.5,"e":4111}],[19,{"n":7,"e":4123}],[18,{"n":5.5,"e":4137}],[17,{"n":4.5,"e":4143}],[15,{"n":7,"e":4167,"g":1}],[14,{"n":5.5,"e":4171}],[13,{"n":5.5,"e":4182}],[12,{"n":7,"e":4190}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4211}],[9,{"n":5.5,"e":4224}],[8,{"n":5,"e":4230}],[7,{"n":7,"e":4238,"g":1}],[6,{"n":5.5,"e":4257}],[5,{"n":6,"e":4258}],[4,{"n":6,"e":4275}],[3,{"n":5.5,"e":4285}],[2,{"n":5.5,"e":4293}],[1,{"n":5.5,"e":4298}]],"fo":[[4143,[{"t":"I"}]]],"a":{"m":29,"a":33,"M":35,"n":6}}],[636,{"n":"Oxlade-Chamberlain","f":"Alex","fp":"MO","r":14,"c":21,"s":{"g":3,"s":97,"n":18,"a":5.39,"d":0.81,"Sg":1,"Ss":23.5,"Sn":4,"Sa":5.88,"Sd":0.85,"Og":3,"Os":107,"On":20,"Oa":5.35,"Od":0.78,"pm":16,"pa":4},"p":[[-38,{"n":5,"e":3543,"s":1}],[-36,{"n":5,"e":3523,"s":1}],[26,{"n":5,"e":4054}],[25,{"n":7,"e":4062,"g":1}],[24,{"n":5,"e":4073}],[23,{"n":6,"e":4081}],[22,{"n":5.5,"e":4096}],[18,{"n":7,"e":4137,"g":1}],[17,{"n":4.5,"e":4143,"s":1}],[16,{"n":6,"e":4149,"g":1}],[14,{"n":6,"e":4171}],[13,{"n":4,"e":4182}],[12,{"n":5,"e":4190,"s":1}],[11,{"n":5,"e":4199,"s":1}],[9,{"n":5,"e":4224,"s":1}],[7,{"n":5,"e":4238,"s":1}],[5,{"n":5,"e":4258}],[4,{"n":5.5,"e":4275,"s":1}],[3,{"n":4.5,"e":4285,"s":1}],[2,{"n":6,"e":4293}]],"fo":[[4096,[{"t":"Y"}]]]}],[638,{"n":"Sturridge","f":"Daniel","fp":"A","r":11,"c":21,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":0.74,"pa":5},"p":[[-37,{"n":4,"e":3535}],[-36,{"n":5,"e":3523}],[-31,{"n":4.5,"e":3472,"s":1}],[-30,{"n":6,"e":3464,"s":1}],[-27,{"n":5,"e":3435,"s":1}]]}],[644,{"n":"Henderson","f":"Jordan","fp":"MD","r":30,"c":21,"s":{"g":3,"s":150,"n":25,"a":6,"d":1,"Sg":3,"Ss":122,"Sn":20,"Sa":6.1,"Sd":1.08,"Og":4,"Os":209.5,"On":36,"Oa":5.82,"Od":0.96,"pm":36},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5,"e":3535}],[-36,{"n":6.5,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":6.5,"e":3503}],[-33,{"n":6,"e":3494,"g":1,"s":1}],[-32,{"n":4.5,"e":3485}],[-30,{"n":5,"e":3464,"s":1}],[-29,{"n":5,"e":3451}],[-28,{"n":5.5,"e":3446,"s":1}],[-27,{"n":4.5,"e":3435}],[26,{"n":5.5,"e":4054}],[25,{"n":8,"e":4062,"g":1}],[24,{"n":7,"e":4073,"g":1}],[23,{"n":6,"e":4081}],[22,{"n":5,"e":4096}],[21,{"n":6.5,"e":4101}],[20,{"n":5,"e":4111}],[19,{"n":7.5,"e":4123}],[18,{"n":7,"e":4137}],[17,{"n":4.5,"e":4143}],[16,{"n":8,"e":4149}],[15,{"n":6,"e":4167,"s":1}],[14,{"n":5.5,"e":4171}],[13,{"n":5.5,"e":4182}],[12,{"n":6,"e":4190}],[11,{"n":7,"e":4199}],[10,{"n":7,"e":4211,"g":1}],[9,{"n":5,"e":4224}],[8,{"n":5,"e":4230,"s":1}],[7,{"n":5,"e":4238}],[6,{"n":5.5,"e":4257}],[4,{"n":6,"e":4275}],[3,{"n":5.5,"e":4285}],[2,{"n":5,"e":4293,"s":1}],[1,{"n":6,"e":4298}]],"fo":[[4123,[{"t":"I"}]],[4143,[{"t":"Y"}]]],"a":{"m":31,"a":33,"M":35,"n":7}}],[655,{"n":"Lovren","f":"Dejan","fp":"DC","r":8,"c":21,"s":{"s":46.5,"n":8,"a":5.81,"d":0.59,"Os":68,"On":12,"Oa":5.67,"Od":0.78,"pd":12},"p":[[-37,{"n":4.5,"e":3535}],[-36,{"n":7,"e":3523}],[-33,{"n":5,"e":3494,"s":1}],[-32,{"n":5,"e":3485,"s":1}],[16,{"n":5,"e":4149}],[15,{"n":7,"e":4167}],[14,{"n":5.5,"e":4171}],[13,{"n":6,"e":4182}],[12,{"n":5.5,"e":4190}],[11,{"n":5.5,"e":4199}],[10,{"n":6,"e":4211}],[8,{"n":6,"e":4230}]],"a":{"m":9,"a":16,"M":30,"n":9}}],[668,{"n":"van Dijk","f":"Virgil","fp":"DC","r":35,"c":21,"s":{"g":4,"s":156,"n":26,"a":6,"d":0.66,"Sg":4,"Ss":150,"Sn":25,"Sa":6,"Sd":0.68,"Og":7,"Os":231,"On":38,"Oa":6.08,"Od":0.71,"pd":38},"p":[[-38,{"n":6,"e":3543}],[-37,{"n":7,"e":3535,"g":1}],[-36,{"n":6,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":6,"e":3503}],[-33,{"n":5.5,"e":3494}],[-32,{"n":6,"e":3485}],[-31,{"n":5.5,"e":3472}],[-30,{"n":6,"e":3464}],[-29,{"n":6.5,"e":3451}],[-28,{"n":8.5,"e":3446,"g":2}],[-27,{"n":6,"e":3435}],[26,{"n":6,"e":4054}],[25,{"n":6,"e":4062}],[24,{"n":5,"e":4073}],[23,{"n":7.5,"e":4081,"g":1}],[22,{"n":5.5,"e":4096}],[21,{"n":6,"e":4101}],[20,{"n":6,"e":4111}],[19,{"n":6,"e":4123}],[18,{"n":6,"e":4137}],[17,{"n":6,"e":4143}],[16,{"n":6,"e":4149}],[15,{"n":5,"e":4167}],[14,{"n":8,"e":4171,"g":2}],[13,{"n":6,"e":4182}],[12,{"n":6,"e":4190}],[11,{"n":5.5,"e":4199}],[10,{"n":5.5,"e":4211}],[9,{"n":5.5,"e":4224}],[8,{"n":6,"e":4230}],[7,{"n":6,"e":4238}],[6,{"n":5.5,"e":4257}],[5,{"n":6,"e":4258}],[4,{"n":6.5,"e":4275}],[3,{"n":5.5,"e":4285}],[2,{"n":6,"e":4293}],[1,{"n":7,"e":4298,"g":1}]],"a":{"m":39,"a":52,"M":62,"n":8}}],[672,{"n":"Shaqiri","f":"Xherdan","fp":"A","r":5,"c":21,"s":{"g":1,"s":30.5,"n":6,"a":5.08,"d":0.97,"Og":1,"Os":50,"On":10,"Oa":5,"Od":0.82,"pm":4,"pa":6},"p":[[-37,{"n":5.5,"e":3535,"s":1}],[-36,{"n":5,"e":3523,"s":1}],[-34,{"n":4,"e":3503,"s":1}],[-27,{"n":5,"e":3435,"s":1}],[22,{"n":4.5,"e":4096,"s":1}],[17,{"n":5,"e":4143}],[16,{"n":4.5,"e":4149,"s":1}],[15,{"n":7,"e":4167,"g":1}],[5,{"n":4.5,"e":4258,"s":1}],[4,{"n":5,"e":4275,"s":1}]]}],[681,{"n":"Origi","f":"Divock","fp":"A","r":9,"c":21,"s":{"g":3,"s":96.5,"n":20,"a":4.83,"d":0.96,"Og":5,"Os":132,"On":27,"Oa":4.89,"Od":0.97,"pa":27},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3535,"g":1,"s":1}],[-32,{"n":5,"e":3485,"s":1}],[-31,{"n":4.5,"e":3472,"s":1}],[-29,{"n":4,"e":3451}],[-28,{"n":7,"e":3446,"g":1}],[-27,{"n":4.5,"e":3435,"s":1}],[24,{"n":4.5,"e":4073,"s":1}],[23,{"n":4.5,"e":4081,"s":1}],[22,{"n":5,"e":4096,"s":1}],[21,{"n":4.5,"e":4101,"s":1}],[20,{"n":4.5,"e":4111,"s":1}],[19,{"n":4,"e":4123,"s":1}],[18,{"n":6,"e":4137}],[17,{"n":5,"e":4143,"s":1}],[15,{"n":7.5,"e":4167,"g":2}],[14,{"n":4,"e":4171,"s":1}],[13,{"n":4,"e":4182,"s":1}],[11,{"n":5,"e":4199,"s":1}],[10,{"n":4,"e":4211,"s":1}],[9,{"n":4,"e":4224}],[8,{"n":5,"e":4230,"s":1}],[7,{"n":4.5,"e":4238,"s":1}],[5,{"n":4.5,"e":4258}],[4,{"n":4.5,"e":4275,"s":1}],[2,{"n":4.5,"e":4293,"s":1}],[1,{"n":7,"e":4298,"g":1}]]}],[711,{"n":"Clyne","f":"Nathaniel","fp":"DL","r":1,"c":21,"s":{"Os":41,"On":10,"Oa":4.1,"Od":0.97,"pd":10},"p":[[-38,{"n":3,"e":3540}],[-37,{"n":5,"e":3528}],[-36,{"n":4,"e":3525}],[-33,{"n":3,"e":3488}],[-32,{"n":3.5,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":5.5,"e":3462,"s":1}],[-29,{"n":5,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":5,"e":3428}]]}],[760,{"n":"Mignolet","f":"Simon","fp":"G","r":6,"c":21}],[766,{"n":"Matip","f":"Joel","fp":"DC","r":8,"c":21,"s":{"g":1,"s":42,"n":7,"a":6,"d":0.76,"Og":1,"Os":98.5,"On":17,"Oa":5.79,"Od":0.66,"pd":17},"p":[[-38,{"n":6.5,"e":3543}],[-35,{"n":5.5,"e":3510}],[-34,{"n":6,"e":3503}],[-33,{"n":6,"e":3494}],[-32,{"n":5.5,"e":3485}],[-31,{"n":5.5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":6,"e":3451}],[-28,{"n":6,"e":3446}],[-27,{"n":4.5,"e":3435}],[9,{"n":5,"e":4224}],[7,{"n":6,"e":4238}],[6,{"n":5.5,"e":4257}],[5,{"n":6,"e":4258}],[4,{"n":6,"e":4275}],[3,{"n":7.5,"e":4285,"g":1}],[2,{"n":6,"e":4293}]],"a":{"m":8,"a":13,"M":17,"n":13}}],[776,{"n":"Robertson","f":"Andrew","fp":"DL","r":23,"c":21,"s":{"g":1,"s":146,"n":26,"a":5.62,"d":0.86,"Sg":1,"Ss":140,"Sn":25,"Sa":5.6,"Sd":0.88,"Og":1,"Os":212,"On":38,"Oa":5.58,"Od":0.9,"pd":38},"p":[[-38,{"n":6,"e":3543}],[-37,{"n":4.5,"e":3535}],[-36,{"n":7.5,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":5,"e":3503}],[-33,{"n":5,"e":3494}],[-32,{"n":6.5,"e":3485}],[-31,{"n":5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":4,"e":3451}],[-28,{"n":6.5,"e":3446}],[-27,{"n":5,"e":3435}],[26,{"n":6,"e":4054}],[25,{"n":6,"e":4062}],[24,{"n":4.5,"e":4073}],[23,{"n":5,"e":4081}],[22,{"n":5,"e":4096}],[21,{"n":7,"e":4101}],[20,{"n":4,"e":4111}],[19,{"n":7,"e":4123}],[18,{"n":5.5,"e":4137}],[17,{"n":5,"e":4143,"s":1}],[16,{"n":5.5,"e":4149}],[15,{"n":4,"e":4167}],[14,{"n":5,"e":4171}],[13,{"n":6,"e":4182}],[12,{"n":5.5,"e":4190}],[11,{"n":6.5,"e":4199,"g":1}],[10,{"n":6,"e":4211}],[9,{"n":6.5,"e":4224}],[8,{"n":5.5,"e":4230}],[7,{"n":5.5,"e":4238}],[6,{"n":7,"e":4257}],[5,{"n":7,"e":4258}],[4,{"n":5.5,"e":4275}],[3,{"n":5,"e":4285}],[2,{"n":5,"e":4293}],[1,{"n":5.5,"e":4298}]],"fo":[[4073,[{"t":"Y"}]]],"a":{"m":24,"a":29,"M":38,"n":16}}],[901,{"n":"Adrián","f":"","fp":"G","r":7,"c":21,"s":{"s":47.5,"n":10,"a":4.75,"d":0.75,"Os":47.5,"On":10,"Oa":4.75,"Od":0.75,"pg":10},"p":[[15,{"n":5,"e":4167}],[14,{"n":4,"e":4171,"s":1}],[8,{"n":4.5,"e":4230}],[7,{"n":6,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":4,"e":4258}],[4,{"n":6,"e":4275}],[3,{"n":4.5,"e":4285}],[2,{"n":4,"e":4293}],[1,{"n":4.5,"e":4298,"s":1}]]}],[970,{"n":"Karius","f":"Loris","fp":"G","r":9,"c":21}],[995,{"n":"Alexander-Arnold","f":"Trent","fp":"DL","r":27,"c":21,"s":{"g":2,"s":142,"n":26,"a":5.46,"d":1.01,"Sg":2,"Ss":137,"Sn":25,"Sa":5.48,"Sd":1.03,"Og":2,"Os":208,"On":37,"Oa":5.62,"Od":1.05,"pd":37},"p":[[-38,{"n":7,"e":3543}],[-37,{"n":6.5,"e":3535}],[-36,{"n":7,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":6.5,"e":3503}],[-33,{"n":5.5,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":4.5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":5,"e":3451}],[-28,{"n":8,"e":3446}],[26,{"n":5,"e":4054}],[25,{"n":4.5,"e":4062}],[24,{"n":5,"e":4073}],[23,{"n":6,"e":4081}],[22,{"n":6,"e":4096}],[21,{"n":5.5,"e":4101}],[20,{"n":5,"e":4111}],[19,{"n":8.5,"e":4123,"g":1}],[18,{"n":4.5,"e":4137}],[17,{"n":4.5,"e":4143}],[16,{"n":6,"e":4149,"s":1}],[15,{"n":5,"e":4167}],[14,{"n":6.5,"e":4171}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4190}],[11,{"n":6.5,"e":4199}],[10,{"n":5,"e":4211}],[9,{"n":4.5,"e":4224}],[8,{"n":4.5,"e":4230}],[7,{"n":5,"e":4238}],[6,{"n":7,"e":4257,"g":1}],[5,{"n":6.5,"e":4258}],[4,{"n":5.5,"e":4275}],[3,{"n":6,"e":4285}],[2,{"n":4,"e":4293}],[1,{"n":6,"e":4298}]],"a":{"m":29,"a":30,"M":32,"n":8}}],[1009,{"n":"Grujic","f":"Marko","fp":"MD","r":1,"c":21}],[1096,{"n":"Gomez","f":"Joseph","fp":"DC","r":18,"c":21,"s":{"s":94.5,"n":17,"a":5.56,"d":0.39,"Ss":63,"Sn":11,"Sa":5.73,"Sd":0.34,"Os":109.5,"On":20,"Oa":5.48,"Od":0.41,"pd":20},"p":[[-38,{"n":5,"e":3543,"s":1}],[-36,{"n":5,"e":3523,"s":1}],[-35,{"n":5,"e":3510,"s":1}],[26,{"n":5.5,"e":4054}],[25,{"n":6,"e":4062}],[24,{"n":5.5,"e":4073}],[23,{"n":6,"e":4081}],[22,{"n":5.5,"e":4096}],[21,{"n":6,"e":4101}],[20,{"n":6,"e":4111}],[19,{"n":6,"e":4123}],[18,{"n":5.5,"e":4137}],[17,{"n":6,"e":4143}],[16,{"n":5.5,"e":4149}],[15,{"n":5,"e":4167,"s":1}],[13,{"n":5.5,"e":4182,"s":1}],[12,{"n":5,"e":4190,"s":1}],[10,{"n":5,"e":4211,"s":1}],[6,{"n":5,"e":4257,"s":1}],[1,{"n":5.5,"e":4298}]],"fo":[[4096,[{"t":"Y"}]],[4123,[{"t":"Y"}]]],"a":{"m":10,"a":13,"M":17,"n":7}}],[1151,{"n":"Woodburn","f":"Ben","fp":"A","r":1,"c":21}],[1278,{"n":"Mohamed Salah","f":"","fp":"A","r":47,"c":21,"s":{"g":14,"s":137.5,"n":23,"a":5.98,"d":1.32,"Sg":8,"Ss":65,"Sn":10,"Sa":6.5,"Sd":1.25,"Og":19,"Os":203,"On":35,"Oa":5.8,"Od":1.34,"pa":35},"p":[[-38,{"n":5.5,"e":3543}],[-37,{"n":6.5,"e":3535,"g":1}],[-36,{"n":8,"e":3523,"g":2}],[-35,{"n":6,"e":3510}],[-34,{"n":7,"e":3503,"g":1}],[-33,{"n":6,"e":3494,"g":1}],[-32,{"n":5.5,"e":3485}],[-31,{"n":4,"e":3472}],[-30,{"n":4,"e":3464}],[-29,{"n":4,"e":3451}],[-28,{"n":5.5,"e":3446}],[-27,{"n":3.5,"e":3435}],[26,{"n":4,"e":4054}],[25,{"n":8,"e":4062,"g":2}],[24,{"n":6,"e":4073}],[23,{"n":7,"e":4081,"g":1}],[22,{"n":6,"e":4096}],[21,{"n":7.5,"e":4101,"g":1}],[20,{"n":4,"e":4111}],[19,{"n":5,"e":4123}],[18,{"n":7,"e":4137,"g":1}],[17,{"n":7.5,"e":4143,"g":2}],[16,{"n":7,"e":4149,"g":1}],[14,{"n":4.5,"e":4171}],[12,{"n":7,"e":4190,"g":1}],[11,{"n":4,"e":4199}],[10,{"n":6.5,"e":4211,"g":1}],[8,{"n":6,"e":4230}],[7,{"n":4.5,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":7,"e":4258,"g":1}],[4,{"n":6,"e":4275}],[3,{"n":7,"e":4285,"g":2}],[2,{"n":4,"e":4293}],[1,{"n":7,"e":4298,"g":1}]],"fo":[[4081,[{"t":"Y"}]]],"a":{"m":65,"a":90,"M":104,"n":8}}],[1362,{"n":"Brewster","f":"Rhian","fp":"A","r":1,"c":21}],[1374,{"n":"Grabara","f":"Kamil","fp":"G","r":1,"c":21}],[1381,{"n":"Kent","f":"Ryan","fp":"MD","r":8,"c":21}],[2539,{"n":"Camacho","f":"Rafael","fp":"MD","r":1,"c":21}],[2546,{"n":"Jones","f":"Curtis","fp":"MO","r":1,"c":21,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[18,{"n":5,"e":4137,"s":1}],[16,{"n":4.5,"e":4149,"s":1}]]}],[2551,{"n":"Phillips","f":"Nathaniel","fp":"DC","r":1,"c":21}],[2565,{"n":"Keita","f":"Naby","fp":"MD","r":11,"c":21,"s":{"g":1,"s":47.5,"n":8,"a":5.94,"d":1.27,"Ss":6,"Sn":1,"Sa":6,"Og":3,"Os":80.5,"On":14,"Oa":5.75,"Od":1.22,"pm":14},"p":[[-36,{"n":7.5,"e":3523,"g":1}],[-35,{"n":6,"e":3510}],[-34,{"n":4.5,"e":3503}],[-33,{"n":6,"e":3494,"g":1}],[-30,{"n":4.5,"e":3464,"s":1}],[-28,{"n":4.5,"e":3446,"s":1}],[26,{"n":6,"e":4054}],[25,{"n":6,"e":4062,"s":1}],[20,{"n":5,"e":4111,"s":1}],[19,{"n":7,"e":4123}],[18,{"n":5,"e":4137,"s":1}],[16,{"n":8.5,"e":4149,"g":1}],[11,{"n":5,"e":4199,"s":1}],[9,{"n":5,"e":4224,"s":1}]],"fo":[[4054,[{"t":"Y"}]]],"a":{"m":13,"a":18,"M":30,"n":5}}],[2566,{"n":"Johnston","f":"George","fp":"DC","r":1,"c":21}],[2591,{"n":"Alisson","f":"","fp":"G","r":25,"c":21,"s":{"s":104,"n":18,"a":5.78,"d":0.73,"Ss":62,"Sn":10,"Sa":6.2,"Sd":0.42,"Os":169.5,"On":30,"Oa":5.65,"Od":0.76,"pg":30},"p":[[-38,{"n":6,"e":3543}],[-37,{"n":6,"e":3535}],[-36,{"n":5.5,"e":3523}],[-35,{"n":5.5,"e":3510}],[-34,{"n":6,"e":3503}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":4,"e":3472}],[-30,{"n":4.5,"e":3464}],[-29,{"n":6,"e":3451}],[-28,{"n":6.5,"e":3446}],[-27,{"n":6,"e":3435}],[26,{"n":5.5,"e":4054}],[25,{"n":6.5,"e":4062}],[24,{"n":6,"e":4073}],[23,{"n":7,"e":4081}],[22,{"n":6.5,"e":4096}],[21,{"n":6,"e":4101}],[20,{"n":6,"e":4111}],[19,{"n":6,"e":4123}],[18,{"n":6.5,"e":4137}],[17,{"n":6,"e":4143}],[16,{"n":5.5,"e":4149}],[14,{"n":4,"e":4171}],[13,{"n":6,"e":4182}],[12,{"n":6,"e":4190}],[11,{"n":5,"e":4199}],[10,{"n":5.5,"e":4211}],[9,{"n":4.5,"e":4224}],[1,{"n":5.5,"e":4298}]],"a":{"m":18,"a":26,"M":45,"n":7}}],[2884,{"n":"Elliott","f":"Harvey","fp":"MO","r":1,"c":21,"s":{"s":5,"n":1,"a":5,"Os":15,"On":3,"Oa":5,"pm":3},"p":[[-38,{"n":5,"e":3541,"s":1}],[-37,{"n":5,"e":3537,"s":1}],[21,{"n":5,"e":4101,"s":1}]]}],[3117,{"n":"Hoever","f":"Ki-Jana","fp":"DL","r":1,"c":21}],[3120,{"n":"Kelleher","f":"Caoimhin","fp":"G","r":1,"c":21}],[3121,{"n":"Christie-Davies","f":"Isaac","fp":"MD","r":1,"c":21}],[3639,{"n":"van den Berg","f":"Sepp","fp":"DC","r":1,"c":21}],[3641,{"n":"Larouci","f":"Yasser","fp":"DL","r":3,"c":21}],[3642,{"n":"Jaros","f":"Vitezslav","fp":"G","r":1,"c":21}],[3666,{"n":"Atherton","f":"Daniel","fp":"G","r":1,"c":21}],[3667,{"n":"Glatzel","f":"Paul","fp":"A","r":1,"c":21}],[3672,{"n":"Lewis","f":"Adam","fp":"DL","r":1,"c":21}],[5451,{"n":"Lonergan","f":"Andy","fp":"G","r":1,"c":21}],[6124,{"n":"Chirivella","f":"Pedro","fp":"MD","r":1,"c":21}],[6389,{"n":"Minamino","f":"Takumi","fp":"A","r":9,"c":21,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pa":2},"p":[[25,{"n":4,"e":4062,"s":1}],[24,{"n":5,"e":4073,"s":1}]]}],[6421,{"n":"Williams","f":"Neco","fp":"DL","r":1,"c":21}],[6422,{"n":"Longstaff","f":"Luis","fp":"MO","r":1,"c":21}],[6423,{"n":"Dixon-Bonner","f":"Elijah","fp":"MD","r":1,"c":21}],[6425,{"n":"Gallacher","f":"Tony","fp":"DL","r":1,"c":21}],[6466,{"n":"Stewart","f":"Layton","fp":"A","r":1,"c":21}],[6467,{"n":"Hill","f":"Thomas","fp":"A","r":1,"c":21}],[6474,{"n":"Bearne","f":"Jack","fp":"MO","r":1,"c":21}],[6484,{"n":"Clarkson","f":"Leighton","fp":"MD","r":1,"c":21}],[6490,{"n":"Winterbottom","f":"Ben","fp":"G","r":1,"c":21}],[6498,{"n":"Boyes","f":"Morgan","fp":"DC","r":1,"c":21}],[6499,{"n":"Clayton","f":"Thomas","fp":"DC","r":1,"c":21}],[6537,{"n":"Koumetio","f":"Billy","fp":"DC","r":1,"c":21}],[6541,{"n":"Norris","f":"James","fp":"DL","r":1,"c":21}],[14,{"n":"Mendy","f":"Benjamin","fp":"DL","r":10,"c":40,"s":{"s":54,"n":11,"a":4.91,"d":0.97,"Os":59,"On":12,"Oa":4.92,"Od":0.93,"pd":11,"pm":1},"p":[[26,{"n":null,"e":4053,"d":1}],[14,{"n":4,"e":4172}],[6,{"n":4,"e":4253}],[-34,{"n":5,"e":3500}],[23,{"n":6,"e":4082}],[22,{"n":5.5,"e":4088}],[21,{"n":5,"e":4102}],[19,{"n":3,"e":4127}],[18,{"n":6,"e":4132}],[17,{"n":5,"e":4138}],[13,{"n":4.5,"e":4184}],[10,{"n":6,"e":4212}],[9,{"n":5,"e":4221}]],"fo":[[4082,[{"t":"Y"}]],[4138,[{"t":"Y"}]]]}],[25,{"n":"Bernardo Silva","f":"","fp":"MO","r":27,"c":40,"s":{"g":5,"s":119.5,"n":21,"a":5.69,"d":1.17,"Ss":15,"Sn":3,"Sa":5,"Og":7,"Os":183.5,"On":32,"Oa":5.73,"Od":1.05,"pm":17,"pa":15},"p":[[25,{"n":5,"e":4065,"s":1}],[24,{"n":5,"e":4072,"s":1}],[20,{"n":5,"e":4112}],[16,{"n":4,"e":4152}],[11,{"n":6,"e":4204}],[5,{"n":6.5,"e":4264}],[2,{"n":5.5,"e":4294}],[-31,{"n":7,"e":3473,"g":1}],[-35,{"n":6,"e":3514}],[-30,{"n":6,"e":3465}],[-28,{"n":6,"e":3447,"s":1}],[-38,{"n":5.5,"e":3538}],[-37,{"n":5,"e":3534}],[-36,{"n":5.5,"e":3519}],[-34,{"n":5.5,"e":3500,"s":1}],[-32,{"n":7.5,"e":3483,"g":1}],[-29,{"n":5,"e":3448}],[-27,{"n":5,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[23,{"n":5,"e":4082}],[19,{"n":4.5,"e":4127}],[18,{"n":5.5,"e":4132}],[17,{"n":5.5,"e":4138,"s":1}],[15,{"n":7,"e":4159}],[14,{"n":4.5,"e":4172,"s":1}],[12,{"n":7,"e":4190,"g":1}],[10,{"n":6,"e":4212}],[9,{"n":7,"e":4221}],[8,{"n":4.5,"e":4231,"s":1}],[7,{"n":5,"e":4246,"s":1}],[6,{"n":9,"e":4253,"g":3}],[4,{"n":6.5,"e":4272,"g":1,"s":1}],[3,{"n":5.5,"e":4286}]],"fo":[[4112,[{"t":"Y"}]]],"a":{"m":37,"a":48,"M":58,"n":7}}],[588,{"n":"Agüero","f":"Sergio","fp":"A","r":46,"c":40,"s":{"g":16,"s":109.5,"n":19,"a":5.76,"d":1.47,"Sg":6,"Ss":27,"Sn":4,"Sa":6.75,"Sd":1.71,"Og":20,"Os":171.5,"On":30,"Oa":5.72,"Od":1.28,"pa":30},"p":[[1,{"n":5,"e":4299,"g":1,"s":1}],[-38,{"n":7,"e":3538,"g":1}],[-37,{"n":5,"e":3534}],[-36,{"n":7,"e":3519,"g":1}],[-35,{"n":6,"e":3514}],[-34,{"n":5,"e":3500}],[-32,{"n":6.5,"e":3483,"g":1}],[-31,{"n":5,"e":3473}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":6,"e":3447,"g":1}],[-27,{"n":4.5,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":5,"e":4065}],[24,{"n":6,"e":4072,"g":1,"s":1}],[23,{"n":7,"e":4082,"g":2}],[22,{"n":9,"e":4088,"g":3}],[20,{"n":6.5,"e":4112,"g":1}],[19,{"n":4.5,"e":4127}],[18,{"n":4,"e":4132,"s":1}],[13,{"n":4.5,"e":4184}],[12,{"n":4,"e":4190}],[11,{"n":6,"e":4204,"g":1}],[10,{"n":4.5,"e":4212,"s":1}],[8,{"n":4,"e":4231}],[7,{"n":5.5,"e":4246,"s":1}],[6,{"n":6.5,"e":4253,"g":1}],[5,{"n":5.5,"e":4264,"g":1}],[4,{"n":8,"e":4272,"g":2}],[3,{"n":8,"e":4286,"g":2}],[2,{"n":6,"e":4294,"g":1}]],"fo":[[4072,[{"t":"Y"}]]],"a":{"m":47,"a":91,"M":124,"n":13}}],[593,{"n":"De Bruyne","f":"Kevin","fp":"MO","r":35,"c":40,"s":{"g":7,"s":155.5,"n":24,"a":6.48,"d":1.16,"Sg":5,"Ss":107,"Sn":17,"Sa":6.29,"Sd":1.08,"Og":8,"Os":201.5,"On":32,"Oa":6.3,"Od":1.16,"pm":32},"p":[[-38,{"n":5,"e":3538,"s":1}],[-35,{"n":4.5,"e":3514}],[-34,{"n":7.5,"e":3500}],[-33,{"n":7,"e":3492,"g":1}],[-32,{"n":5.5,"e":3483}],[-29,{"n":5,"e":3448}],[-28,{"n":5.5,"e":3447}],[-27,{"n":6,"e":3433,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4065}],[24,{"n":6.5,"e":4072}],[23,{"n":6.5,"e":4082}],[22,{"n":6.5,"e":4088}],[21,{"n":4.5,"e":4102}],[20,{"n":7.5,"e":4112,"g":1}],[19,{"n":6,"e":4127}],[18,{"n":7,"e":4132}],[17,{"n":8,"e":4138,"g":2}],[16,{"n":6,"e":4152}],[15,{"n":6,"e":4159}],[14,{"n":8,"e":4172,"g":1}],[13,{"n":6.5,"e":4184,"g":1}],[12,{"n":5,"e":4190}],[11,{"n":6.5,"e":4204}],[10,{"n":7,"e":4212}],[9,{"n":5,"e":4221}],[7,{"n":6.5,"e":4246}],[6,{"n":8.5,"e":4253,"g":1}],[5,{"n":5,"e":4264,"s":1}],[4,{"n":8,"e":4272,"g":1}],[3,{"n":5.5,"e":4286}],[2,{"n":7.5,"e":4294}],[1,{"n":7.5,"e":4299}]],"fo":[[4132,[{"t":"I"},{"t":"Y"}]]],"a":{"m":51,"a":74,"M":102,"n":15}}],[594,{"n":"Sterling","f":"Raheem","fp":"A","r":39,"c":40,"s":{"g":11,"s":130,"n":23,"a":5.65,"d":1.16,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":16,"Os":190,"On":34,"Oa":5.59,"Od":1.25,"pm":6,"pa":28},"p":[[-38,{"n":6,"e":3538}],[-37,{"n":4,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":3,"e":3514}],[-34,{"n":7,"e":3500,"g":2}],[-32,{"n":5.5,"e":3483}],[-31,{"n":7,"e":3473}],[-30,{"n":8,"e":3465,"g":3}],[-29,{"n":5,"e":3448}],[-28,{"n":5,"e":3447,"s":1}],[-27,{"n":4.5,"e":3433,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4065}],[24,{"n":5,"e":4072}],[23,{"n":4.5,"e":4082}],[21,{"n":4.5,"e":4102,"s":1}],[20,{"n":5,"e":4112}],[19,{"n":6.5,"e":4127,"g":2}],[18,{"n":6,"e":4132}],[17,{"n":7,"e":4138,"g":1}],[16,{"n":5,"e":4152}],[15,{"n":5,"e":4159}],[14,{"n":6,"e":4172,"g":1}],[13,{"n":5,"e":4184}],[12,{"n":5,"e":4190}],[11,{"n":4,"e":4204}],[10,{"n":7,"e":4212,"g":1}],[9,{"n":6.5,"e":4221}],[8,{"n":4.5,"e":4231}],[7,{"n":6,"e":4246,"g":1}],[5,{"n":6,"e":4264}],[4,{"n":5,"e":4272}],[3,{"n":7,"e":4286,"g":1}],[2,{"n":7,"e":4294,"g":1}],[1,{"n":8.5,"e":4299,"g":3}]],"fo":[[4065,[{"t":"I"},{"t":"Y"}]]],"a":{"m":46,"a":77,"M":101,"n":11}}],[599,{"n":"David Silva","f":"","fp":"MO","r":22,"c":40,"s":{"g":3,"s":102.5,"n":18,"a":5.69,"d":1.38,"Og":3,"Os":163,"On":29,"Oa":5.62,"Od":1.19,"pm":29},"p":[[-38,{"n":6,"e":3538}],[-37,{"n":5,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":5,"e":3514,"s":1}],[-34,{"n":4.5,"e":3500}],[-32,{"n":5.5,"e":3483}],[-31,{"n":5,"e":3473}],[-30,{"n":7.5,"e":3465}],[-29,{"n":6,"e":3448}],[-28,{"n":5,"e":3447}],[-27,{"n":6,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[23,{"n":5,"e":4082}],[22,{"n":7,"e":4088}],[21,{"n":5,"e":4102,"s":1}],[16,{"n":5,"e":4152}],[15,{"n":6.5,"e":4159}],[14,{"n":5,"e":4172}],[13,{"n":5,"e":4184}],[11,{"n":5,"e":4204}],[10,{"n":7,"e":4212,"g":1}],[9,{"n":7,"e":4221,"g":1}],[8,{"n":3.5,"e":4231}],[7,{"n":5,"e":4246,"s":1}],[6,{"n":8,"e":4253,"g":1}],[5,{"n":3.5,"e":4264}],[4,{"n":7,"e":4272}],[3,{"n":8,"e":4286}],[2,{"n":4.5,"e":4294,"s":1}],[1,{"n":5.5,"e":4299}]],"a":{"m":25,"a":38,"M":51,"n":13}}],[603,{"n":"Mahrez","f":"Riyad","fp":"MO","r":24,"c":40,"s":{"g":7,"s":127,"n":21,"a":6.05,"d":1.5,"Sg":5,"Ss":79,"Sn":13,"Sa":6.08,"Sd":1.27,"Og":9,"Os":163,"On":27,"Oa":6.04,"Od":1.43,"pm":3,"pa":24},"p":[[-38,{"n":7.5,"e":3538,"g":1}],[-33,{"n":6,"e":3492}],[-32,{"n":4.5,"e":3483,"s":1}],[-30,{"n":7,"e":3465}],[-29,{"n":6.5,"e":3448,"g":1,"s":1}],[-28,{"n":4.5,"e":3447}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4065}],[24,{"n":6.5,"e":4072}],[23,{"n":4.5,"e":4082,"s":1}],[22,{"n":8.5,"e":4088,"g":2}],[21,{"n":6.5,"e":4102}],[20,{"n":7,"e":4112}],[19,{"n":6,"e":4127}],[18,{"n":7.5,"e":4132,"g":1}],[17,{"n":4.5,"e":4138,"s":1}],[16,{"n":6,"e":4152,"s":1}],[15,{"n":6.5,"e":4159,"g":1,"s":1}],[14,{"n":4.5,"e":4172}],[13,{"n":6.5,"e":4184,"g":1}],[8,{"n":4,"e":4231}],[7,{"n":8,"e":4246,"g":1}],[6,{"n":8,"e":4253,"g":1}],[5,{"n":4.5,"e":4264,"s":1}],[4,{"n":7,"e":4272}],[3,{"n":4.5,"e":4286,"s":1}],[2,{"n":4,"e":4294,"s":1}],[1,{"n":8,"e":4299}]],"a":{"m":21,"a":32,"M":45,"n":16}}],[639,{"n":"Fernandinho","f":"","fp":"MD","r":17,"c":40,"s":{"ao":1,"s":109,"n":21,"a":5.19,"d":0.95,"Sao":1,"Ss":102.5,"Sn":20,"Sa":5.13,"Sd":0.93,"Oao":1,"Os":135.5,"On":26,"Oa":5.21,"Od":0.9,"pd":20,"pm":6},"p":[[-35,{"n":5,"e":3514,"s":1}],[-33,{"n":6,"e":3492}],[-32,{"n":4.5,"e":3483,"s":1}],[-31,{"n":5,"e":3473}],[-27,{"n":6,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4065}],[24,{"n":6,"e":4072}],[23,{"n":3,"e":4082,"a":1}],[22,{"n":5,"e":4088}],[21,{"n":6,"e":4102}],[20,{"n":5.5,"e":4112}],[19,{"n":4,"e":4127}],[18,{"n":5,"e":4132}],[17,{"n":6,"e":4138}],[16,{"n":5,"e":4152}],[15,{"n":5.5,"e":4159}],[14,{"n":4,"e":4172}],[13,{"n":6,"e":4184}],[12,{"n":4.5,"e":4190}],[11,{"n":5.5,"e":4204}],[10,{"n":5.5,"e":4212}],[9,{"n":5.5,"e":4221}],[8,{"n":4,"e":4231}],[7,{"n":6,"e":4246}],[6,{"n":6.5,"e":4253}],[4,{"n":6.5,"e":4272,"s":1}]],"fo":[[4072,[{"t":"Y"}]],[4088,[{"t":"Y"}]],[4138,[{"t":"Y"}]]],"a":{"m":19,"a":25,"M":29,"n":8}}],[654,{"n":"Stones","f":"John","fp":"DC","r":10,"c":40,"s":{"s":57,"n":11,"a":5.18,"d":0.9,"Os":96,"On":18,"Oa":5.33,"Od":0.77,"pd":18},"p":[[-37,{"n":5,"e":3534,"s":1}],[-36,{"n":5.5,"e":3519,"s":1}],[-35,{"n":6,"e":3514}],[-34,{"n":5,"e":3500,"s":1}],[-33,{"n":5.5,"e":3492}],[-29,{"n":6,"e":3448}],[-27,{"n":6,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[23,{"n":4.5,"e":4082}],[22,{"n":5.5,"e":4088}],[16,{"n":4.5,"e":4152}],[14,{"n":5.5,"e":4172}],[13,{"n":5,"e":4184}],[12,{"n":4,"e":4190}],[11,{"n":6,"e":4204}],[10,{"n":6.5,"e":4212}],[9,{"n":5,"e":4221,"s":1}],[5,{"n":4,"e":4264}],[1,{"n":6.5,"e":4299}]],"a":{"m":10,"a":11,"M":12,"n":5}}],[662,{"n":"Sané","f":"Leroy","fp":"A","r":9,"c":40,"s":{"Og":2,"Os":45,"On":9,"Oa":5,"Od":1.09,"pm":1,"pa":8},"p":[[-37,{"n":4,"e":3534,"s":1}],[-36,{"n":5,"e":3519}],[-35,{"n":4.5,"e":3514,"s":1}],[-34,{"n":6,"e":3500}],[-33,{"n":7,"e":3492,"g":1}],[-31,{"n":6,"e":3473,"g":1,"s":1}],[-30,{"n":4,"e":3465,"s":1}],[-28,{"n":4.5,"e":3447}],[-27,{"n":4,"e":3433}],[26,{"n":null,"e":4053,"d":1}]],"a":{"m":8,"a":10,"M":11,"n":5}}],[674,{"n":"Otamendi","f":"Nicolás","fp":"DC","r":15,"c":40,"s":{"g":2,"s":81,"n":16,"a":5.06,"d":1.03,"Ss":11,"Sn":2,"Sa":5.5,"Sd":2.12,"Og":2,"Os":120,"On":23,"Oa":5.22,"Od":0.91,"pd":23},"p":[[-38,{"n":5,"e":3538,"s":1}],[-36,{"n":5,"e":3519,"s":1}],[-32,{"n":6,"e":3483}],[-30,{"n":5.5,"e":3465}],[-29,{"n":6,"e":3448}],[-28,{"n":5.5,"e":3447}],[-27,{"n":6,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4065}],[24,{"n":7,"e":4072}],[22,{"n":5,"e":4088,"s":1}],[19,{"n":4,"e":4127}],[18,{"n":5,"e":4132}],[17,{"n":6,"e":4138}],[16,{"n":6,"e":4152,"g":1,"s":1}],[15,{"n":4.5,"e":4159}],[11,{"n":5,"e":4204,"s":1}],[8,{"n":4,"e":4231}],[7,{"n":4.5,"e":4246}],[6,{"n":7,"e":4253,"g":1}],[5,{"n":3.5,"e":4264}],[4,{"n":5.5,"e":4272}],[3,{"n":5,"e":4286}],[2,{"n":5,"e":4294}]],"fo":[[4127,[{"t":"Y"}]]]}],[678,{"n":"Walker","f":"Kyle","fp":"DL","r":15,"c":40,"s":{"g":1,"s":93.5,"n":19,"a":4.92,"d":1.08,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":1,"Os":154,"On":30,"Oa":5.13,"Od":0.95,"pd":29,"pm":1},"p":[[-38,{"n":5,"e":3538}],[-37,{"n":5.5,"e":3534}],[-36,{"n":6.5,"e":3519}],[-35,{"n":5.5,"e":3514}],[-34,{"n":5.5,"e":3500}],[-33,{"n":6,"e":3492,"s":1}],[-32,{"n":5,"e":3483}],[-31,{"n":5.5,"e":3473}],[-30,{"n":5,"e":3465}],[-29,{"n":5,"e":3448}],[-27,{"n":6,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4065}],[24,{"n":5,"e":4072}],[20,{"n":5,"e":4112}],[19,{"n":3,"e":4127}],[18,{"n":5,"e":4132}],[17,{"n":6,"e":4138}],[16,{"n":5,"e":4152}],[15,{"n":5.5,"e":4159}],[14,{"n":4,"e":4172}],[12,{"n":3.5,"e":4190}],[11,{"n":7.5,"e":4204,"g":1}],[8,{"n":4,"e":4231}],[7,{"n":5,"e":4246}],[6,{"n":5,"e":4253}],[5,{"n":4,"e":4264}],[4,{"n":5,"e":4272}],[3,{"n":4.5,"e":4286}],[2,{"n":5,"e":4294}],[1,{"n":7,"e":4299}]],"fo":[[4065,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":37,"n":7}}],[863,{"n":"Bravo","f":"Claudio","fp":"G","r":7,"c":40,"s":{"s":17.5,"n":4,"a":4.38,"d":0.75,"Os":17.5,"On":4,"Oa":4.38,"Od":0.75,"pg":4},"p":[[26,{"n":null,"e":4053,"d":1}],[21,{"n":4,"e":4102}],[20,{"n":5.5,"e":4112}],[19,{"n":4,"e":4127,"s":1}],[12,{"n":4,"e":4190}]]}],[866,{"n":"Gündogan","f":"Ilkay","fp":"MD","r":21,"c":40,"s":{"g":2,"s":117,"n":22,"a":5.32,"d":0.92,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":3,"Os":184,"On":33,"Oa":5.58,"Od":0.91,"pm":33},"p":[[-38,{"n":7.5,"e":3538,"g":1}],[-37,{"n":6,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":6,"e":3514}],[-34,{"n":6.5,"e":3500}],[-32,{"n":6.5,"e":3483}],[-31,{"n":6,"e":3473}],[-30,{"n":6.5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":6,"e":3447}],[-27,{"n":5.5,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":3.5,"e":4065}],[23,{"n":5.5,"e":4082}],[22,{"n":4.5,"e":4088,"s":1}],[21,{"n":6,"e":4102}],[20,{"n":5.5,"e":4112,"s":1}],[19,{"n":4.5,"e":4127,"s":1}],[18,{"n":6.5,"e":4132,"g":1}],[17,{"n":6,"e":4138}],[16,{"n":5,"e":4152,"s":1}],[14,{"n":5,"e":4172}],[13,{"n":5.5,"e":4184,"s":1}],[12,{"n":5,"e":4190}],[11,{"n":5.5,"e":4204}],[10,{"n":7.5,"e":4212,"g":1}],[9,{"n":7,"e":4221}],[8,{"n":5,"e":4231}],[7,{"n":5.5,"e":4246}],[5,{"n":4,"e":4264}],[4,{"n":4.5,"e":4272,"s":1}],[3,{"n":5,"e":4286}],[2,{"n":5.5,"e":4294}],[1,{"n":5,"e":4299,"s":1}]],"fo":[[4132,[{"t":"I"},{"t":"Y"}]],[4138,[{"t":"Y"}]]],"a":{"m":22,"a":26,"M":32,"n":14}}],[931,{"n":"Kompany","f":"Vincent","fp":"DC","r":14,"c":40,"s":{"Og":1,"Os":46,"On":8,"Oa":5.75,"Od":0.6,"pd":8},"p":[[-38,{"n":5.5,"e":3538}],[-37,{"n":7,"e":3534,"g":1}],[-36,{"n":5.5,"e":3519}],[-34,{"n":5.5,"e":3500}],[-31,{"n":6,"e":3473}],[-30,{"n":5.5,"e":3465}],[-29,{"n":5,"e":3448,"s":1}],[-28,{"n":6,"e":3447}],[26,{"n":null,"e":4053,"d":1}]]}],[966,{"n":"Gabriel Jesus","f":"","fp":"A","r":20,"c":40,"s":{"g":9,"s":116,"n":21,"a":5.52,"d":1.28,"Sg":3,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.45,"Og":11,"Os":159.5,"On":30,"Oa":5.32,"Od":1.21,"pa":30},"p":[[-37,{"n":4,"e":3534,"s":1}],[-36,{"n":4.5,"e":3519,"s":1}],[-34,{"n":6,"e":3500,"g":1,"s":1}],[-33,{"n":6,"e":3492}],[-32,{"n":4,"e":3483,"s":1}],[-31,{"n":4.5,"e":3473,"s":1}],[-30,{"n":4.5,"e":3465,"s":1}],[-29,{"n":4,"e":3448,"s":1}],[-27,{"n":6,"e":3433,"g":1,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4065,"s":1}],[24,{"n":4,"e":4072}],[23,{"n":5.5,"e":4082,"s":1}],[22,{"n":7,"e":4088,"g":1}],[21,{"n":7.5,"e":4102,"g":2}],[20,{"n":4.5,"e":4112,"s":1}],[18,{"n":6.5,"e":4132,"g":1}],[17,{"n":6,"e":4138}],[16,{"n":4,"e":4152}],[15,{"n":7.5,"e":4159,"g":2}],[14,{"n":5,"e":4172}],[13,{"n":4,"e":4184,"s":1}],[12,{"n":4,"e":4190,"s":1}],[11,{"n":5,"e":4204,"s":1}],[10,{"n":5.5,"e":4212}],[9,{"n":7.5,"e":4221,"g":1}],[8,{"n":4,"e":4231,"s":1}],[7,{"n":7,"e":4246,"g":1}],[5,{"n":5.5,"e":4264,"s":1}],[2,{"n":5,"e":4294,"s":1}],[1,{"n":6.5,"e":4299,"g":1}]],"a":{"m":20,"a":35,"M":73,"n":15}}],[1005,{"n":"Foden","f":"Phil","fp":"MO","r":6,"c":40,"s":{"s":58,"n":12,"a":4.83,"d":0.58,"Og":1,"Os":84,"On":17,"Oa":4.94,"Od":0.79,"pm":4,"pa":13},"p":[[-37,{"n":4,"e":3534}],[-35,{"n":6.5,"e":3514,"g":1}],[-33,{"n":6.5,"e":3492}],[-30,{"n":4.5,"e":3465,"s":1}],[-28,{"n":4.5,"e":3447,"s":1}],[26,{"n":null,"e":4053,"d":1}],[22,{"n":4.5,"e":4088,"s":1}],[21,{"n":6,"e":4102}],[20,{"n":5,"e":4112,"s":1}],[18,{"n":4.5,"e":4132,"s":1}],[17,{"n":5.5,"e":4138}],[15,{"n":4.5,"e":4159,"s":1}],[14,{"n":4.5,"e":4172,"s":1}],[13,{"n":5,"e":4184,"s":1}],[11,{"n":4.5,"e":4204,"s":1}],[10,{"n":5.5,"e":4212,"s":1}],[9,{"n":4.5,"e":4221,"s":1}],[1,{"n":4,"e":4299,"s":1}]]}],[1049,{"n":"Aleix García","f":"","fp":"MD","r":1,"c":40,"s":{"Os":47.5,"On":10,"Oa":4.75,"Od":0.68,"pm":10},"p":[[-36,{"n":5,"e":2323}],[-32,{"n":6,"e":2284}],[-28,{"n":5,"e":2249,"s":1}],[-27,{"n":4,"e":2237}],[-35,{"n":5,"e":2315,"s":1}],[-33,{"n":3.5,"e":2295}],[-30,{"n":4.5,"e":2263}],[26,{"n":null,"e":4053,"d":1}],[-26,{"n":5,"e":2231,"s":1}],[-25,{"n":4.5,"e":2217}],[-24,{"n":5,"e":2209,"s":1}]]}],[1099,{"n":"Tosin Adarabioyo","f":"","fp":"DC","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[1279,{"n":"Ederson","f":"","fp":"G","r":15,"c":40,"s":{"s":113.5,"n":22,"a":5.16,"d":1.31,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.85,"Os":180,"On":34,"Oa":5.29,"Od":1.13,"pg":34},"p":[[-38,{"n":5,"e":3538}],[-37,{"n":5.5,"e":3534}],[-36,{"n":5.5,"e":3519}],[-35,{"n":7,"e":3514}],[-34,{"n":5,"e":3500}],[-33,{"n":5.5,"e":3492}],[-32,{"n":5,"e":3483}],[-31,{"n":6,"e":3473}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":6,"e":3447}],[-27,{"n":6,"e":3433}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4065}],[24,{"n":6,"e":4072}],[23,{"n":4.5,"e":4082}],[22,{"n":5,"e":4088}],[19,{"n":3,"e":4127}],[18,{"n":4.5,"e":4132}],[17,{"n":6,"e":4138}],[16,{"n":7,"e":4152}],[15,{"n":4.5,"e":4159}],[14,{"n":4,"e":4172}],[13,{"n":4.5,"e":4184}],[11,{"n":4,"e":4204}],[10,{"n":7,"e":4212}],[9,{"n":6,"e":4221}],[8,{"n":4,"e":4231}],[7,{"n":7,"e":4246}],[6,{"n":6.5,"e":4253}],[5,{"n":3,"e":4264}],[4,{"n":6,"e":4272}],[3,{"n":6.5,"e":4286}],[2,{"n":4,"e":4294}],[1,{"n":6.5,"e":4299}]],"fo":[[4127,[{"t":"R"}]]],"a":{"m":17,"a":25,"M":41,"n":6}}],[1357,{"n":"Zinchenko","f":"Oleksandr","fp":"MD","r":8,"c":40,"s":{"s":54.5,"n":11,"a":4.95,"d":0.79,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":106,"On":21,"Oa":5.05,"Od":0.69,"pd":18,"pm":3},"p":[[-38,{"n":5,"e":3538}],[-37,{"n":4.5,"e":3534}],[-36,{"n":6.5,"e":3519}],[-35,{"n":5,"e":3514}],[-33,{"n":5,"e":3492}],[-32,{"n":5.5,"e":3483}],[-31,{"n":5,"e":3473}],[-30,{"n":5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":4.5,"e":3447}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4065}],[24,{"n":5,"e":4072}],[20,{"n":6,"e":4112}],[17,{"n":5,"e":4138,"s":1}],[8,{"n":4.5,"e":4231,"s":1}],[7,{"n":5.5,"e":4246}],[5,{"n":3.5,"e":4264}],[4,{"n":5.5,"e":4272}],[3,{"n":5,"e":4286}],[2,{"n":4.5,"e":4294}],[1,{"n":6,"e":4299}]],"fo":[[4065,[{"t":"Y"},{"t":"O"}]]]}],[1367,{"n":"Grimshaw","f":"Daniel","fp":"G","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[1617,{"n":"Laporte","f":"Aymeric","fp":"DC","r":13,"c":40,"s":{"s":27.5,"n":5,"a":5.5,"d":0.35,"Og":2,"Os":84.5,"On":14,"Oa":6.04,"Od":0.63,"pd":14},"p":[[-38,{"n":7,"e":3538,"g":1}],[-37,{"n":6,"e":3534}],[-36,{"n":6.5,"e":3519}],[-35,{"n":6,"e":3514}],[-34,{"n":5.5,"e":3500}],[-33,{"n":7,"e":3492}],[-32,{"n":6,"e":3483}],[-31,{"n":6,"e":3473}],[-27,{"n":7,"e":3433,"g":1}],[26,{"n":null,"e":4053,"d":1}],[24,{"n":5.5,"e":4072}],[4,{"n":5,"e":4272}],[3,{"n":5.5,"e":4286}],[2,{"n":5.5,"e":4294}],[1,{"n":6,"e":4299}]],"a":{"m":8,"a":13,"M":25,"n":7}}],[1915,{"n":"Moreno","f":"Marlos","fp":"A","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2124,{"n":"Nmecha","f":"Lukas","fp":"A","r":3,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2427,{"n":"Rodrigo","f":"","fp":"MD","r":23,"c":40,"s":{"g":2,"s":132,"n":23,"a":5.74,"d":1.2,"Sg":1,"Ss":77,"Sn":14,"Sa":5.5,"Sd":1.24,"Og":3,"Os":212,"On":36,"Oa":5.89,"Od":1.1,"pd":2,"pm":34},"p":[[-38,{"n":7,"e":2348,"g":1}],[-37,{"n":6,"e":2333}],[-36,{"n":4,"e":2328}],[-35,{"n":6,"e":2312,"s":1}],[-34,{"n":5.5,"e":2303}],[-33,{"n":6.5,"e":2298}],[-32,{"n":7.5,"e":2283}],[-31,{"n":5.5,"e":2277}],[-28,{"n":5.5,"e":2242}],[-27,{"n":6.5,"e":2234}],[-26,{"n":6.5,"e":2229}],[-25,{"n":7,"e":2214}],[-30,{"n":6.5,"e":2263}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":3,"e":4065}],[24,{"n":5.5,"e":4072}],[23,{"n":4.5,"e":4082,"s":1}],[22,{"n":7,"e":4088}],[21,{"n":5.5,"e":4102}],[20,{"n":7,"e":4112}],[19,{"n":5,"e":4127}],[18,{"n":5,"e":4132,"s":1}],[17,{"n":5.5,"e":4138}],[16,{"n":5.5,"e":4152}],[15,{"n":8,"e":4159,"g":1}],[14,{"n":4.5,"e":4172,"s":1}],[13,{"n":6,"e":4184}],[12,{"n":5,"e":4190}],[9,{"n":6,"e":4221}],[8,{"n":5,"e":4231}],[7,{"n":5.5,"e":4246}],[6,{"n":7.5,"e":4253}],[5,{"n":7,"e":4264,"g":1}],[4,{"n":7.5,"e":4272}],[3,{"n":4.5,"e":4286,"s":1}],[2,{"n":5.5,"e":4294}],[1,{"n":6.5,"e":4299}]],"fo":[[4065,[{"t":"Y"}]],[4072,[{"t":"Y"}]],[4138,[{"t":"Y"}]]],"a":{"m":23,"a":30,"M":45,"n":11}}],[2756,{"n":"Arzani","f":"Daniel","fp":"MD","r":8,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2818,{"n":"Sandler","f":"Philippe","fp":"DC","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2830,{"n":"Muric","f":"Arijanet","fp":"G","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2883,{"n":"Bernabé","f":"Adrián","fp":"MO","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2928,{"n":"Gomes","f":"Claudio","fp":"MD","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2973,{"n":"García","f":"Eric","fp":"DC","r":8,"c":40,"s":{"s":30.5,"n":6,"a":5.08,"d":0.66,"Os":30.5,"On":6,"Oa":5.08,"Od":0.66,"pd":6},"p":[[26,{"n":null,"e":4053,"d":1}],[24,{"n":5,"e":4072,"s":1}],[21,{"n":5,"e":4102}],[20,{"n":6,"e":4112}],[19,{"n":4,"e":4127,"s":1}],[15,{"n":5,"e":4159,"s":1}],[6,{"n":5.5,"e":4253,"s":1}]]}],[3224,{"n":"Poveda-Ocampo","f":"Ian Carlo","fp":"A","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[3226,{"n":"Bolton","f":"Luke","fp":"MD","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[3499,{"n":"Nmecha","f":"Felix","fp":"MD","r":3,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[3514,{"n":"Humphreys-Grant","f":"Cameron","fp":"DC","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[3692,{"n":"Palmer-Brown","f":"Erik","fp":"DC","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[3696,{"n":"Angeliño","f":"","fp":"DL","r":12,"c":40,"s":{"s":30,"n":6,"a":5,"d":0.32,"Os":30,"On":6,"Oa":5,"Od":0.32,"pd":6},"p":[[26,{"n":null,"e":4053,"d":1}],[16,{"n":5,"e":4152}],[15,{"n":5,"e":4159}],[12,{"n":4.5,"e":4190}],[11,{"n":5.5,"e":4204}],[10,{"n":5,"e":4212,"s":1}],[6,{"n":5,"e":4253,"s":1}]]}],[4567,{"n":"João Cancelo","f":"","fp":"DL","r":13,"c":40,"s":{"s":51,"n":10,"a":5.1,"d":0.97,"Ss":5,"Sn":1,"Sa":5,"Os":51,"On":10,"Oa":5.1,"Od":0.97,"pd":9,"pm":1},"p":[[26,{"n":null,"e":4053,"d":1}],[25,{"n":5,"e":4065,"s":1}],[23,{"n":4.5,"e":4082}],[22,{"n":6.5,"e":4088}],[21,{"n":4.5,"e":4102}],[13,{"n":5,"e":4184}],[10,{"n":6,"e":4212}],[9,{"n":6.5,"e":4221}],[8,{"n":3.5,"e":4231}],[6,{"n":5,"e":4253,"s":1}],[3,{"n":4.5,"e":4286,"s":1}]]}],[5412,{"n":"Bazunu","f":"Gavin","fp":"G","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[5417,{"n":"Dionkou","f":"Alpha Richard","fp":"DL","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[5419,{"n":"Zoubdi Touaizi","f":"Nabili","fp":"A","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[5420,{"n":"Harwood-Bellis","f":"Taylor","fp":"DC","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[5421,{"n":"Knight","f":"Ben","fp":"MD","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[5438,{"n":"Iker Pozo","f":"","fp":"MD","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[5993,{"n":"Doyle","f":"Tommy","fp":"MD","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[6128,{"n":"Carson","f":"Scott","fp":"G","r":1,"c":40,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[595,{"n":"Pogba","f":"Paul","fp":"MD","r":13,"c":31,"s":{"s":36.5,"n":7,"a":5.21,"d":1.19,"Og":2,"Os":93,"On":19,"Oa":4.89,"Od":1.06,"pm":19},"p":[[19,{"n":5,"e":4124,"s":1}],[18,{"n":5.5,"e":4136,"s":1}],[-38,{"n":4.5,"e":3544}],[-34,{"n":7,"e":3504,"g":2}],[-32,{"n":4.5,"e":3486}],[-29,{"n":3.5,"e":3453}],[-37,{"n":4,"e":3533}],[-36,{"n":4.5,"e":3524}],[-35,{"n":4,"e":3512}],[-33,{"n":4,"e":3497}],[-31,{"n":4.5,"e":3473}],[-30,{"n":4.5,"e":3458}],[-28,{"n":6,"e":3442}],[-27,{"n":5.5,"e":3435}],[7,{"n":5,"e":4247}],[4,{"n":5,"e":4268}],[3,{"n":3.5,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":7.5,"e":4307}]]}],[600,{"n":"de Gea","f":"David","fp":"G","r":15,"c":31,"s":{"s":127.5,"n":25,"a":5.1,"d":1.01,"Ss":15,"Sn":3,"Sa":5,"Sd":1,"Os":186,"On":37,"Oa":5.03,"Od":0.98,"pg":37},"p":[[25,{"n":6,"e":4063}],[22,{"n":6,"e":4094}],[15,{"n":6,"e":4163}],[13,{"n":4,"e":4185}],[10,{"n":5,"e":4214}],[8,{"n":4.5,"e":4237}],[6,{"n":5,"e":4255}],[-38,{"n":5.5,"e":3544}],[-37,{"n":5,"e":3533}],[-36,{"n":4,"e":3524}],[-35,{"n":4.5,"e":3512}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4.5,"e":3497}],[-32,{"n":7,"e":3486}],[-31,{"n":4,"e":3473}],[-30,{"n":3.5,"e":3458}],[-29,{"n":4.5,"e":3453}],[-28,{"n":5,"e":3442}],[-27,{"n":5.5,"e":3435}],[24,{"n":4,"e":4074}],[23,{"n":5,"e":4081}],[21,{"n":4,"e":4098}],[20,{"n":6,"e":4110}],[19,{"n":4.5,"e":4124}],[18,{"n":3.5,"e":4136}],[17,{"n":4,"e":4144}],[16,{"n":6,"e":4152}],[14,{"n":4,"e":4175}],[12,{"n":5,"e":4197}],[11,{"n":6,"e":4200}],[9,{"n":5.5,"e":4224}],[7,{"n":6,"e":4247}],[5,{"n":6.5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":4,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":7.5,"e":4307}]],"fo":[[4081,[{"t":"Y"}]]]}],[604,{"n":"Mata","f":"Juan","fp":"MO","r":10,"c":31,"s":{"s":82.5,"n":16,"a":5.16,"d":0.65,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.12,"Og":1,"Os":107.5,"On":21,"Oa":5.12,"Od":0.63,"pm":21},"p":[[-37,{"n":4.5,"e":3533}],[-36,{"n":6,"e":3524,"g":1}],[-34,{"n":5,"e":3504}],[-32,{"n":4.5,"e":3486}],[-27,{"n":5,"e":3435}],[25,{"n":5,"e":4063}],[24,{"n":5,"e":4074}],[23,{"n":5,"e":4081,"s":1}],[22,{"n":7.5,"e":4094}],[21,{"n":5,"e":4098,"s":1}],[19,{"n":5.5,"e":4124,"s":1}],[18,{"n":5,"e":4136,"s":1}],[17,{"n":5,"e":4144,"s":1}],[14,{"n":5,"e":4175}],[8,{"n":5,"e":4237}],[6,{"n":4.5,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":5,"e":4281,"s":1}],[2,{"n":5,"e":4297,"s":1}],[1,{"n":5,"e":4307,"s":1}]]}],[608,{"n":"Antonio Valencia","f":"","fp":"DC","r":4,"c":31,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-38,{"n":5,"e":3544,"s":1}]]}],[616,{"n":"Matic","f":"Nemanja","fp":"MD","r":11,"c":31,"s":{"s":41.5,"n":8,"a":5.19,"d":0.88,"Os":64,"On":13,"Oa":4.92,"Od":1.04,"pm":13},"p":[[-37,{"n":5,"e":3533}],[-36,{"n":6,"e":3524}],[-35,{"n":3,"e":3512}],[-32,{"n":3.5,"e":3486}],[-30,{"n":5,"e":3458}],[24,{"n":5,"e":4074}],[23,{"n":4.5,"e":4081}],[22,{"n":7,"e":4094}],[21,{"n":5,"e":4098}],[20,{"n":6,"e":4110}],[6,{"n":4.5,"e":4255}],[5,{"n":4.5,"e":4260}],[4,{"n":5,"e":4268,"s":1}]],"fo":[[4081,[{"t":"Y"}]]]}],[626,{"n":"Martial","f":"Anthony","fp":"A","r":23,"c":31,"s":{"g":8,"s":104,"n":19,"a":5.47,"d":1.11,"Sg":5,"Ss":55,"Sn":10,"Sa":5.5,"Sd":1.13,"Og":9,"Os":135.5,"On":26,"Oa":5.21,"Od":1.12,"pm":1,"pa":25},"p":[[-38,{"n":4.5,"e":3544,"s":1}],[-35,{"n":3,"e":3512}],[-34,{"n":4.5,"e":3504}],[-33,{"n":4.5,"e":3497,"s":1}],[-32,{"n":6,"e":3486,"g":1}],[-31,{"n":4.5,"e":3473,"s":1}],[-30,{"n":4.5,"e":3458,"s":1}],[25,{"n":5,"e":4063}],[24,{"n":5,"e":4074}],[23,{"n":4,"e":4081}],[22,{"n":6,"e":4094,"g":1}],[21,{"n":4,"e":4098}],[20,{"n":6.5,"e":4110,"g":1}],[19,{"n":7.5,"e":4124,"g":2}],[18,{"n":5.5,"e":4136}],[17,{"n":5,"e":4144}],[16,{"n":6.5,"e":4152,"g":1}],[14,{"n":5,"e":4175}],[13,{"n":4.5,"e":4185}],[12,{"n":7,"e":4197}],[11,{"n":4,"e":4200}],[10,{"n":6,"e":4214,"g":1}],[9,{"n":4,"e":4224,"s":1}],[3,{"n":5.5,"e":4281}],[2,{"n":6,"e":4297,"g":1}],[1,{"n":7,"e":4307,"g":1}]],"a":{"m":23,"a":40,"M":61,"n":13}}],[637,{"n":"Fellaini","f":"Marouane","fp":"MD","r":7,"c":31}],[641,{"n":"Rashford","f":"Marcus","fp":"A","r":28,"c":31,"s":{"g":14,"s":129.5,"n":22,"a":5.89,"d":1.5,"Og":15,"Os":181.5,"On":33,"Oa":5.5,"Od":1.41,"pm":15,"pa":18},"p":[[-38,{"n":5,"e":3544}],[-37,{"n":6,"e":3533}],[-36,{"n":4.5,"e":3524}],[-35,{"n":3,"e":3512}],[-34,{"n":4,"e":3504,"s":1}],[-32,{"n":6,"e":3486,"g":1}],[-31,{"n":4.5,"e":3473}],[-30,{"n":5,"e":3458}],[-29,{"n":4.5,"e":3453}],[-28,{"n":4.5,"e":3442,"s":1}],[-27,{"n":5,"e":3435}],[22,{"n":8,"e":4094,"g":2}],[21,{"n":3.5,"e":4098}],[20,{"n":7.5,"e":4110,"g":1}],[19,{"n":6,"e":4124,"g":1}],[18,{"n":4.5,"e":4136}],[17,{"n":5,"e":4144}],[16,{"n":7,"e":4152,"g":1}],[15,{"n":8,"e":4163,"g":2}],[14,{"n":5,"e":4175}],[13,{"n":7,"e":4185,"g":1}],[12,{"n":6.5,"e":4197,"g":1}],[11,{"n":5,"e":4200}],[10,{"n":8,"e":4214,"g":1}],[9,{"n":6,"e":4224,"g":1}],[8,{"n":4,"e":4237}],[7,{"n":6,"e":4247}],[6,{"n":4,"e":4255}],[5,{"n":6,"e":4260,"g":1}],[4,{"n":5,"e":4268}],[3,{"n":3.5,"e":4281}],[2,{"n":6,"e":4297}],[1,{"n":8,"e":4307,"g":2}]],"fo":[[4094,[{"t":"I"}]]],"a":{"m":41,"a":73,"M":82,"n":17}}],[706,{"n":"Bailly","f":"Eric","fp":"DC","r":3,"c":31,"s":{"Os":11,"On":2,"Oa":5.5,"Od":0.71,"pd":2},"p":[[-36,{"n":6,"e":3524}],[-28,{"n":5,"e":3442,"s":1}]]}],[731,{"n":"Rojo","f":"Marcos","fp":"DC","r":5,"c":31,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":29,"On":6,"Oa":4.83,"Od":0.26,"pd":6},"p":[[-36,{"n":5,"e":3524,"s":1}],[-34,{"n":5,"e":3504}],[-32,{"n":4.5,"e":3486,"s":1}],[12,{"n":5,"e":4197,"s":1}],[9,{"n":4.5,"e":4224}],[8,{"n":5,"e":4237,"s":1}]]}],[743,{"n":"Jones","f":"Phil","fp":"DC","r":5,"c":31,"s":{"s":8,"n":2,"a":4,"d":0.71,"Os":39,"On":8,"Oa":4.88,"Od":1.16,"pd":8},"p":[[-38,{"n":4,"e":3544}],[-37,{"n":5.5,"e":3533}],[-35,{"n":3.5,"e":3512}],[-34,{"n":6,"e":3504}],[-33,{"n":5.5,"e":3497,"s":1}],[-32,{"n":6.5,"e":3486}],[24,{"n":4.5,"e":4074}],[13,{"n":3.5,"e":4185}]]}],[768,{"n":"Lingard","f":"Jesse","fp":"MO","r":9,"c":31,"s":{"s":97,"n":20,"a":4.85,"d":0.65,"Ss":10,"Sn":2,"Sa":5,"Os":124.5,"On":26,"Oa":4.79,"Od":0.64,"pm":24,"pa":2},"p":[[-38,{"n":4,"e":3544}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4,"e":3497}],[-32,{"n":5,"e":3486,"s":1}],[-31,{"n":4.5,"e":3473}],[-27,{"n":4.5,"e":3435,"s":1}],[25,{"n":5,"e":4063,"s":1}],[24,{"n":5,"e":4074,"s":1}],[21,{"n":3.5,"e":4098}],[20,{"n":4.5,"e":4110,"s":1}],[19,{"n":5,"e":4124,"s":1}],[18,{"n":4,"e":4136}],[17,{"n":4,"e":4144}],[16,{"n":6,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":5,"e":4175,"s":1}],[13,{"n":4.5,"e":4185,"s":1}],[12,{"n":5.5,"e":4197,"s":1}],[11,{"n":5,"e":4200,"s":1}],[10,{"n":5.5,"e":4214,"s":1}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4255,"s":1}],[4,{"n":5,"e":4268,"s":1}],[3,{"n":4,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":6,"e":4307}]],"fo":[[4110,[{"t":"Y"}]]]}],[804,{"n":"Shaw","f":"Luke","fp":"DL","r":11,"c":31,"s":{"s":71,"n":14,"a":5.07,"d":0.62,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.5,"Os":116,"On":23,"Oa":5.04,"Od":0.93,"pd":22,"pm":1},"p":[[-37,{"n":4.5,"e":3533}],[-36,{"n":6,"e":3524}],[-33,{"n":3.5,"e":3497}],[-32,{"n":7,"e":3486}],[-31,{"n":3,"e":3473}],[-30,{"n":5,"e":3458}],[-29,{"n":4.5,"e":3453}],[-28,{"n":6.5,"e":3442}],[-27,{"n":5,"e":3435}],[25,{"n":6,"e":4063}],[24,{"n":5,"e":4074,"s":1}],[23,{"n":5.5,"e":4081}],[21,{"n":3.5,"e":4098}],[20,{"n":5,"e":4110,"s":1}],[19,{"n":5.5,"e":4124}],[18,{"n":5,"e":4136}],[17,{"n":5,"e":4144}],[16,{"n":5,"e":4152}],[15,{"n":5,"e":4163,"s":1}],[14,{"n":4.5,"e":4175,"s":1}],[3,{"n":5,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":6,"e":4307}]],"fo":[[4081,[{"t":"I"},{"t":"Y"}]],[4063,[{"t":"Y"}]],[4136,[{"t":"Y"}]]],"a":{"m":12,"a":15,"M":19,"n":6}}],[876,{"n":"Grant","f":"Lee","fp":"G","r":1,"c":31}],[889,{"n":"Romero","f":"Sergio","fp":"G","r":7,"c":31}],[898,{"n":"Maguire","f":"Harry","fp":"DC","r":21,"c":31,"s":{"s":134.5,"n":25,"a":5.38,"d":0.87,"Ss":134.5,"Sn":25,"Sa":5.38,"Sd":0.87,"Os":184.5,"On":35,"Oa":5.27,"Od":0.92,"pd":35},"p":[[-38,{"n":6,"e":3542}],[-37,{"n":5.5,"e":3534}],[-36,{"n":6,"e":3522}],[-35,{"n":4,"e":3516}],[-34,{"n":5.5,"e":3502}],[-31,{"n":3.5,"e":3470}],[-30,{"n":5.5,"e":3463}],[-29,{"n":4.5,"e":3455}],[-28,{"n":6,"e":3441}],[-27,{"n":3.5,"e":3434}],[25,{"n":6,"e":4063}],[24,{"n":4.5,"e":4074}],[23,{"n":4,"e":4081}],[22,{"n":6.5,"e":4094}],[21,{"n":4,"e":4098}],[20,{"n":6,"e":4110}],[19,{"n":6.5,"e":4124}],[18,{"n":5.5,"e":4136}],[17,{"n":6,"e":4144}],[16,{"n":6,"e":4152}],[15,{"n":5.5,"e":4163}],[14,{"n":4,"e":4175}],[13,{"n":4.5,"e":4185}],[12,{"n":5,"e":4197}],[11,{"n":5,"e":4200}],[10,{"n":6,"e":4214}],[9,{"n":5.5,"e":4224}],[8,{"n":5.5,"e":4237}],[7,{"n":5,"e":4247}],[6,{"n":4,"e":4255}],[5,{"n":6.5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":5.5,"e":4281}],[2,{"n":5.5,"e":4297}],[1,{"n":7,"e":4307}]],"a":{"m":22,"a":29,"M":50,"n":5}}],[1062,{"n":"Tuanzebe","f":"Axel","fp":"DC","r":3,"c":31,"s":{"s":22,"n":5,"a":4.4,"d":0.65,"Os":22,"On":5,"Oa":4.4,"Od":0.65,"pd":5},"p":[[16,{"n":5,"e":4152,"s":1}],[13,{"n":4.5,"e":4185,"s":1}],[8,{"n":4,"e":4237}],[7,{"n":3.5,"e":4247}],[5,{"n":5,"e":4260,"s":1}]]}],[1063,{"n":"Fosu-Mensah","f":"Timothy","fp":"DL","r":1,"c":31,"s":{"Os":14.5,"On":3,"Oa":4.83,"Od":0.76,"pd":3},"p":[[-34,{"n":5.5,"e":3501}],[-32,{"n":4,"e":3483}],[-31,{"n":5,"e":3472}]]}],[1079,{"n":"James","f":"Daniel","fp":"MO","r":16,"c":31,"s":{"g":3,"s":131.5,"n":24,"a":5.48,"d":1.02,"Ss":29,"Sn":6,"Sa":4.83,"Sd":1.17,"Og":3,"Os":131.5,"On":24,"Oa":5.48,"Od":1.02,"pm":21,"pa":3},"p":[[25,{"n":5,"e":4063}],[24,{"n":4,"e":4074}],[23,{"n":4,"e":4081}],[22,{"n":5,"e":4094,"s":1}],[21,{"n":4,"e":4098}],[20,{"n":7,"e":4110}],[18,{"n":4.5,"e":4136}],[17,{"n":6,"e":4144}],[16,{"n":7,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4175}],[13,{"n":6,"e":4185}],[12,{"n":6.5,"e":4197}],[11,{"n":5.5,"e":4200}],[10,{"n":7,"e":4214}],[9,{"n":6,"e":4224}],[8,{"n":4.5,"e":4237}],[7,{"n":5.5,"e":4247}],[6,{"n":4.5,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":7,"e":4268,"g":1}],[3,{"n":6,"e":4281,"g":1}],[2,{"n":5.5,"e":4297}],[1,{"n":6.5,"e":4307,"g":1,"s":1}]],"a":{"m":20,"a":25,"M":33,"n":11}}],[1080,{"n":"Joel Pereira","f":"","fp":"G","r":1,"c":31}],[1095,{"n":"Wan-Bissaka","f":"Aaron","fp":"DL","r":15,"c":31,"s":{"s":107.5,"n":22,"a":4.89,"d":1.01,"Ss":22,"Sn":5,"Sa":4.4,"Sd":0.82,"Os":161.5,"On":32,"Oa":5.05,"Od":0.96,"pd":29,"pm":3},"p":[[-38,{"n":4.5,"e":3540}],[-37,{"n":5,"e":3530}],[-36,{"n":5.5,"e":3520}],[-35,{"n":5.5,"e":3509}],[-34,{"n":5,"e":3500}],[-33,{"n":6,"e":3493}],[-32,{"n":6,"e":3482}],[-31,{"n":5,"e":3474}],[-30,{"n":4.5,"e":3461}],[-29,{"n":7,"e":3450}],[25,{"n":5,"e":4063}],[24,{"n":3,"e":4074}],[23,{"n":4.5,"e":4081}],[22,{"n":5,"e":4094}],[21,{"n":4.5,"e":4098}],[19,{"n":6.5,"e":4124}],[18,{"n":3,"e":4136}],[17,{"n":6,"e":4144}],[16,{"n":6,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":5,"e":4175}],[13,{"n":4,"e":4185}],[12,{"n":5.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":5.5,"e":4214}],[9,{"n":5,"e":4224}],[6,{"n":4,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":3.5,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":7,"e":4307}]],"a":{"m":17,"a":21,"M":25,"n":6}}],[1286,{"n":"Lindelöf","f":"Victor","fp":"DC","r":17,"c":31,"s":{"g":1,"ao":1,"s":118.5,"n":23,"a":5.15,"d":0.86,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Oao":1,"Os":163.5,"On":32,"Oa":5.11,"Od":0.92,"pd":32},"p":[[-37,{"n":5.5,"e":3533}],[-36,{"n":5.5,"e":3524}],[-35,{"n":3,"e":3512}],[-33,{"n":4,"e":3497}],[-31,{"n":4.5,"e":3473}],[-30,{"n":5,"e":3458}],[-29,{"n":5,"e":3453}],[-28,{"n":7,"e":3442}],[-27,{"n":5.5,"e":3435}],[25,{"n":5.5,"e":4063}],[23,{"n":4.5,"e":4081}],[22,{"n":6,"e":4094}],[21,{"n":4,"e":4098}],[20,{"n":6,"e":4110}],[19,{"n":5.5,"e":4124}],[18,{"n":4.5,"e":4136}],[17,{"n":4,"e":4144,"a":1}],[16,{"n":6,"e":4152}],[15,{"n":5.5,"e":4163}],[14,{"n":6,"e":4175,"g":1}],[13,{"n":4,"e":4185}],[12,{"n":5.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":5.5,"e":4214}],[9,{"n":5.5,"e":4224}],[7,{"n":5,"e":4247}],[6,{"n":3.5,"e":4255}],[5,{"n":6.5,"e":4260}],[4,{"n":6,"e":4268}],[3,{"n":4,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":6,"e":4307}]],"fo":[[4063,[{"t":"Y"}]],[4144,[{"t":"Y"}]]],"a":{"m":18,"a":21,"M":27,"n":15}}],[1355,{"n":"Andreas Pereira","f":"","fp":"MO","r":10,"c":31,"s":{"g":1,"s":111,"n":22,"a":5.05,"d":0.83,"Ss":35,"Sn":7,"Sa":5,"Sd":1.04,"Og":2,"Os":148.5,"On":30,"Oa":4.95,"Od":0.77,"pm":28,"pa":2},"p":[[-38,{"n":4.5,"e":3544}],[-35,{"n":4.5,"e":3512,"s":1}],[-34,{"n":5,"e":3504,"s":1}],[-33,{"n":5,"e":3497,"s":1}],[-32,{"n":4,"e":3486,"s":1}],[-31,{"n":4,"e":3473}],[-29,{"n":5.5,"e":3453,"g":1}],[-27,{"n":5,"e":3435,"s":1}],[25,{"n":4,"e":4063}],[24,{"n":3.5,"e":4074}],[23,{"n":4.5,"e":4081}],[22,{"n":6,"e":4094}],[21,{"n":5,"e":4098,"s":1}],[20,{"n":6,"e":4110}],[19,{"n":6,"e":4124}],[16,{"n":5.5,"e":4152,"s":1}],[15,{"n":4.5,"e":4163,"s":1}],[14,{"n":4,"e":4175}],[13,{"n":4,"e":4185}],[12,{"n":6.5,"e":4197,"g":1}],[11,{"n":4.5,"e":4200}],[10,{"n":5.5,"e":4214}],[9,{"n":5,"e":4224}],[8,{"n":5,"e":4237}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4255}],[5,{"n":5.5,"e":4260}],[4,{"n":4.5,"e":4268}],[2,{"n":5,"e":4297,"s":1}],[1,{"n":6.5,"e":4307}]],"fo":[[4124,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":19,"n":6}}],[2062,{"n":"McTominay","f":"Scott","fp":"MD","r":12,"c":31,"s":{"g":2,"s":91,"n":17,"a":5.35,"d":1.06,"Og":4,"Os":132.5,"On":25,"Oa":5.3,"Od":0.96,"pm":25},"p":[[-38,{"n":5.5,"e":3544}],[-37,{"n":5.5,"e":3533,"g":1}],[-36,{"n":4.5,"e":3524,"s":1}],[-35,{"n":4,"e":3512,"s":1}],[-33,{"n":6,"e":3497,"g":1}],[-29,{"n":4.5,"e":3453}],[-28,{"n":5.5,"e":3442}],[-27,{"n":6,"e":3435}],[19,{"n":3.5,"e":4124}],[18,{"n":3.5,"e":4136}],[17,{"n":6.5,"e":4144}],[16,{"n":6.5,"e":4152}],[15,{"n":6,"e":4163}],[12,{"n":5.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":6.5,"e":4214,"g":1}],[9,{"n":5,"e":4224}],[8,{"n":4.5,"e":4237}],[7,{"n":6.5,"e":4247,"g":1}],[6,{"n":4.5,"e":4255}],[5,{"n":6,"e":4260}],[4,{"n":6,"e":4268}],[3,{"n":5,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":6.5,"e":4307}]],"fo":[[4124,[{"t":"Y"}]]]}],[2286,{"n":"Gomes","f":"Angel","fp":"MO","r":1,"c":31,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pm":1,"pa":2},"p":[[-38,{"n":5,"e":3544,"s":1}],[22,{"n":5,"e":4094,"s":1}],[6,{"n":4.5,"e":4255,"s":1}]]}],[2341,{"n":"Hamilton","f":"Ethan","fp":"MD","r":8,"c":31}],[2541,{"n":"Diogo Dalot","f":"","fp":"DL","r":4,"c":31,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":52,"On":11,"Oa":4.73,"Od":0.65,"pd":8,"pm":2,"pa":1},"p":[[-38,{"n":4,"e":3544}],[-37,{"n":5.5,"e":3533,"s":1}],[-35,{"n":3.5,"e":3512}],[-34,{"n":5,"e":3504}],[-33,{"n":4.5,"e":3497}],[-30,{"n":4.5,"e":3458}],[-29,{"n":5.5,"e":3453,"s":1}],[-28,{"n":5.5,"e":3442}],[25,{"n":4.5,"e":4063,"s":1}],[23,{"n":4.5,"e":4081,"s":1}],[8,{"n":5,"e":4237}]]}],[2601,{"n":"Fred","f":"","fp":"MO","r":17,"c":31,"s":{"s":117,"n":21,"a":5.57,"d":0.58,"Ss":117,"Sn":21,"Sa":5.57,"Sd":0.58,"Os":150,"On":28,"Oa":5.36,"Od":0.72,"pm":28},"p":[[-35,{"n":3.5,"e":3512}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4,"e":3497}],[-31,{"n":4.5,"e":3473}],[-30,{"n":5.5,"e":3458}],[-29,{"n":5,"e":3453,"s":1}],[-28,{"n":5,"e":3442}],[25,{"n":5,"e":4063}],[24,{"n":5.5,"e":4074}],[23,{"n":6,"e":4081}],[22,{"n":6.5,"e":4094}],[21,{"n":5.5,"e":4098}],[20,{"n":5.5,"e":4110}],[19,{"n":5.5,"e":4124}],[18,{"n":6.5,"e":4136}],[17,{"n":5.5,"e":4144}],[16,{"n":5.5,"e":4152}],[15,{"n":5.5,"e":4163}],[14,{"n":5,"e":4175}],[13,{"n":5.5,"e":4185}],[12,{"n":6,"e":4197}],[11,{"n":6.5,"e":4200}],[10,{"n":6.5,"e":4214}],[9,{"n":5,"e":4224}],[8,{"n":5,"e":4237}],[7,{"n":5,"e":4247,"s":1}],[6,{"n":4.5,"e":4255,"s":1}],[5,{"n":5.5,"e":4260,"s":1}]],"fo":[[4110,[{"t":"Y"}]]],"a":{"m":16,"a":19,"M":28,"n":6}}],[2750,{"n":"Kovar","f":"Matej","fp":"G","r":1,"c":31}],[2751,{"n":"Chong","f":"Tahith","fp":"MO","r":1,"c":31,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":17.5,"On":4,"Oa":4.38,"Od":0.25,"pa":4},"p":[[-37,{"n":4.5,"e":3533,"s":1}],[-29,{"n":4.5,"e":3453,"s":1}],[8,{"n":4,"e":4237,"s":1}],[5,{"n":4.5,"e":4260,"s":1}]]}],[2752,{"n":"Bohui","f":"Joshua","fp":"A","r":1,"c":31}],[2757,{"n":"O'Hara","f":"Kieran","fp":"G","r":1,"c":31}],[2976,{"n":"Greenwood","f":"Mason","fp":"A","r":9,"c":31,"s":{"g":4,"s":97,"n":20,"a":4.85,"d":0.78,"Sg":1,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.67,"Og":4,"Os":111,"On":23,"Oa":4.83,"Od":0.73,"pm":1,"pa":22},"p":[[-38,{"n":5,"e":3544}],[-34,{"n":4.5,"e":3504,"s":1}],[-30,{"n":4.5,"e":3458,"s":1}],[25,{"n":4.5,"e":4063,"s":1}],[24,{"n":4.5,"e":4074,"s":1}],[23,{"n":4.5,"e":4081,"s":1}],[22,{"n":6,"e":4094,"g":1,"s":1}],[21,{"n":4.5,"e":4098,"s":1}],[19,{"n":7,"e":4124,"g":1}],[18,{"n":4.5,"e":4136,"s":1}],[17,{"n":6,"e":4144,"g":1,"s":1}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4175,"s":1}],[13,{"n":6,"e":4185,"g":1,"s":1}],[12,{"n":4.5,"e":4197,"s":1}],[11,{"n":4.5,"e":4200,"s":1}],[10,{"n":4,"e":4214,"s":1}],[8,{"n":5,"e":4237,"s":1}],[7,{"n":4,"e":4247,"s":1}],[4,{"n":4.5,"e":4268,"s":1}],[3,{"n":4.5,"e":4281,"s":1}],[2,{"n":4.5,"e":4297,"s":1}],[1,{"n":4.5,"e":4307,"s":1}]],"a":{"m":7,"a":11,"M":22,"n":7}}],[3118,{"n":"Garner","f":"James","fp":"MD","r":1,"c":31,"s":{"s":5,"n":1,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-28,{"n":5,"e":3442,"s":1}],[10,{"n":5,"e":4214,"s":1}]]}],[6285,{"n":"Williams","f":"Brandon","fp":"DL","r":6,"c":31,"s":{"g":1,"s":38,"n":8,"a":4.75,"d":0.85,"Og":1,"Os":38,"On":8,"Oa":4.75,"Od":0.85,"pd":6,"pm":2},"p":[[24,{"n":4,"e":4074}],[23,{"n":4,"e":4081}],[22,{"n":6,"e":4094}],[20,{"n":5.5,"e":4110}],[14,{"n":3.5,"e":4175}],[13,{"n":5,"e":4185,"g":1}],[12,{"n":5,"e":4197}],[11,{"n":5,"e":4200,"s":1}]],"fo":[[4110,[{"t":"Y"}]]]}],[6339,{"n":"Bernard","f":"Di'Shon","fp":"DC","r":1,"c":31}],[6471,{"n":"Ramazani","f":"Largie","fp":"A","r":1,"c":31}],[6473,{"n":"Galbraith","f":"Ethan","fp":"MD","r":1,"c":31}],[6476,{"n":"Puigmal Martínez","f":"Arnau","fp":"MD","r":1,"c":31}],[6479,{"n":"Mengi","f":"Teden","fp":"DC","r":1,"c":31}],[6486,{"n":"Levitt","f":"Dylan","fp":"MD","r":1,"c":31}],[6487,{"n":"Laird","f":"Ethan","fp":"DL","r":1,"c":31}],[6488,{"n":"Mellor","f":"D'Mani","fp":"A","r":1,"c":31}],[6496,{"n":"Taylor","f":"Max","fp":"DC","r":1,"c":31}],[6543,{"n":"Bishop","f":"Nathan","fp":"G","r":1,"c":31}],[6556,{"n":"Bruno Fernandes","f":"","fp":"MO","r":15,"c":31,"a":{"m":16,"a":22,"M":31,"n":5}}],[6558,{"n":"Ighalo","f":"Odion","fp":"A","r":12,"c":31}],[30,{"n":"Saint-Maximin","f":"Allan","fp":"MO","r":18,"c":46,"s":{"g":1,"s":85.5,"n":15,"a":5.7,"d":0.65,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":143.5,"On":27,"Oa":5.31,"Od":0.91,"pm":15,"pa":12},"p":[[25,{"n":7,"e":4064}],[15,{"n":6,"e":4161,"g":1}],[11,{"n":6,"e":4207}],[10,{"n":5.5,"e":4213}],[3,{"n":5,"e":4287}],[-37,{"n":3.5,"e":3099}],[-36,{"n":5,"e":3088}],[-35,{"n":3.5,"e":3078}],[-34,{"n":6,"e":3069}],[-32,{"n":5,"e":3049}],[-31,{"n":5,"e":3037}],[-29,{"n":4,"e":3018}],[-28,{"n":4,"e":3004}],[-27,{"n":6.5,"e":2999}],[-38,{"n":6,"e":3108}],[-33,{"n":5,"e":3056}],[26,{"n":5.5,"e":4048}],[-26,{"n":4.5,"e":2982}],[23,{"n":6,"e":4083}],[16,{"n":6.5,"e":4153}],[14,{"n":6,"e":4172}],[13,{"n":5,"e":4179}],[12,{"n":6,"e":4191}],[9,{"n":5.5,"e":4220}],[8,{"n":6,"e":4237}],[6,{"n":5,"e":4254,"s":1}],[1,{"n":4.5,"e":4306,"s":1}]],"a":{"m":18,"a":28,"M":31,"n":10}}],[132,{"n":"Saivet","f":"Henri","fp":"MD","r":3,"c":46}],[628,{"n":"Carroll","f":"Andy","fp":"A","r":8,"c":46,"s":{"s":62.5,"n":13,"a":4.81,"d":0.69,"Os":66,"On":14,"Oa":4.71,"Od":0.75,"pa":14},"p":[[22,{"n":4.5,"e":4097,"s":1}],[-28,{"n":3.5,"e":3447}],[20,{"n":5.5,"e":4113}],[18,{"n":4.5,"e":4133}],[17,{"n":3.5,"e":4139}],[16,{"n":6,"e":4153,"s":1}],[15,{"n":6,"e":4161}],[13,{"n":5,"e":4179,"s":1}],[12,{"n":5,"e":4191,"s":1}],[11,{"n":4.5,"e":4207,"s":1}],[9,{"n":4.5,"e":4220,"s":1}],[8,{"n":4.5,"e":4237,"s":1}],[7,{"n":4.5,"e":4245,"s":1}],[6,{"n":4.5,"e":4254,"s":1}]],"fo":[[4139,[{"t":"Y"}]]]}],[707,{"n":"Rondón","f":"Salomón","fp":"A","r":25,"c":46,"s":{"Og":5,"Os":71.5,"On":12,"Oa":5.96,"Od":1.21,"pa":12},"p":[[-38,{"n":7,"e":3541,"g":1}],[-37,{"n":7,"e":3535,"g":1}],[-36,{"n":5.5,"e":3518}],[-35,{"n":6.5,"e":3515}],[-34,{"n":4.5,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":4,"e":3478}],[-31,{"n":6.5,"e":3468,"g":1}],[-30,{"n":7,"e":3466,"g":1}],[-29,{"n":5.5,"e":3456}],[-28,{"n":5,"e":3444}],[-27,{"n":8,"e":3436,"g":1}]]}],[714,{"n":"Rose","f":"Danny","fp":"DL","r":8,"c":46,"s":{"s":65,"n":14,"a":4.64,"d":0.46,"Ss":5,"Sn":1,"Sa":5,"Os":116,"On":25,"Oa":4.64,"Od":0.47,"pd":19,"pm":6},"p":[[13,{"n":5,"e":4187,"s":1}],[9,{"n":4.5,"e":4226}],[7,{"n":5,"e":4243}],[-36,{"n":4.5,"e":3526}],[-30,{"n":4,"e":3467}],[-37,{"n":5,"e":3528}],[-35,{"n":5,"e":3514,"s":1}],[-34,{"n":5,"e":3506,"s":1}],[-33,{"n":5,"e":3495}],[-32,{"n":4,"e":3485}],[-31,{"n":4,"e":3474}],[-29,{"n":4.5,"e":3454}],[-28,{"n":4.5,"e":3443,"s":1}],[-27,{"n":5.5,"e":3430}],[26,{"n":3.5,"e":4048}],[25,{"n":5,"e":4064,"s":1}],[22,{"n":4,"e":4096}],[18,{"n":5,"e":4135,"s":1}],[10,{"n":4.5,"e":4211}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4262}],[4,{"n":4.5,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":4.5,"e":4294}],[1,{"n":4.5,"e":4304}]]}],[814,{"n":"Manquillo","f":"Javier","fp":"DL","r":7,"c":46,"s":{"s":55,"n":11,"a":5,"d":1.02,"Os":86.5,"On":17,"Oa":5.09,"Od":0.89,"pd":13,"pm":4},"p":[[4,{"n":5,"e":4273,"s":1}],[-37,{"n":5,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515}],[-34,{"n":6,"e":3502}],[-29,{"n":4.5,"e":3456}],[-28,{"n":6,"e":3444}],[21,{"n":3.5,"e":4103}],[19,{"n":3.5,"e":4124}],[18,{"n":5.5,"e":4133}],[17,{"n":5,"e":4139}],[16,{"n":5.5,"e":4153}],[15,{"n":7,"e":4161}],[14,{"n":4.5,"e":4172}],[6,{"n":6,"e":4254}],[5,{"n":5,"e":4258,"s":1}],[1,{"n":4.5,"e":4306}]],"a":{"m":9,"a":10,"M":12,"n":5}}],[839,{"n":"Ki Sung-Yueng","f":"","fp":"MD","r":1,"c":46,"s":{"s":15,"n":3,"a":5,"d":0.5,"Os":50.5,"On":10,"Oa":5.05,"Od":0.64,"pm":10},"p":[[2,{"n":4.5,"e":4292}],[-37,{"n":5,"e":3535}],[-36,{"n":4.5,"e":3518,"s":1}],[-35,{"n":6,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3478,"s":1}],[-30,{"n":4,"e":3466}],[7,{"n":5.5,"e":4245,"s":1}],[6,{"n":5,"e":4254,"s":1}]]}],[913,{"n":"Fernández","f":"Federico","fp":"DC","r":13,"c":46,"s":{"g":2,"s":101,"n":20,"a":5.05,"d":1.09,"Sg":2,"Ss":81,"Sn":16,"Sa":5.06,"Sd":1.21,"Og":2,"Os":119.5,"On":24,"Oa":4.98,"Od":1.04,"pd":24},"p":[[-38,{"n":5,"e":3541,"s":1}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515,"s":1}],[-31,{"n":3.5,"e":3468}],[26,{"n":4.5,"e":4048}],[25,{"n":6,"e":4064}],[24,{"n":3.5,"e":4070}],[23,{"n":6,"e":4083}],[22,{"n":4.5,"e":4097}],[21,{"n":3,"e":4103}],[20,{"n":4.5,"e":4113}],[19,{"n":3,"e":4124}],[18,{"n":5.5,"e":4133}],[17,{"n":4.5,"e":4139}],[16,{"n":6,"e":4153,"g":1}],[15,{"n":6,"e":4161}],[14,{"n":5,"e":4172}],[13,{"n":4.5,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":7,"e":4207,"g":1}],[10,{"n":6.5,"e":4213}],[5,{"n":5,"e":4258,"s":1}],[4,{"n":5,"e":4273,"s":1}],[3,{"n":5.5,"e":4287,"s":1}]],"fo":[[4103,[{"t":"Y"}]]],"a":{"m":13,"a":18,"M":25,"n":30}}],[1466,{"n":"Gayle","f":"Dwight","fp":"A","r":6,"c":46,"s":{"s":39,"n":9,"a":4.33,"d":0.71,"Os":39,"On":9,"Oa":4.33,"Od":0.71,"pa":9},"p":[[22,{"n":6,"e":4097}],[20,{"n":4,"e":4113,"s":1}],[19,{"n":3.5,"e":4124}],[18,{"n":4.5,"e":4133,"s":1}],[17,{"n":4,"e":4139,"s":1}],[14,{"n":4,"e":4172,"s":1}],[13,{"n":4.5,"e":4179,"s":1}],[10,{"n":4,"e":4213,"s":1}],[9,{"n":4.5,"e":4220,"s":1}]],"fo":[[4097,[{"t":"I"}]]]}],[1468,{"n":"Ritchie","f":"Matt","fp":"MD","r":11,"c":46,"s":{"s":35,"n":7,"a":5,"d":0.82,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.76,"Og":1,"Os":102,"On":19,"Oa":5.37,"Od":0.83,"pd":14,"pm":5},"p":[[-38,{"n":7.5,"e":3541}],[-37,{"n":5.5,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":6,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3478}],[-31,{"n":6,"e":3468,"g":1}],[-30,{"n":5,"e":3466}],[-29,{"n":4.5,"e":3456}],[-28,{"n":5.5,"e":3444}],[-27,{"n":6,"e":3436}],[26,{"n":4.5,"e":4048,"s":1}],[25,{"n":5.5,"e":4064}],[24,{"n":4.5,"e":4070}],[23,{"n":6,"e":4083,"s":1}],[3,{"n":6,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":4.5,"e":4306}]]}],[1469,{"n":"Lascelles","f":"Jamaal","fp":"DC","r":10,"c":46,"s":{"g":1,"s":80,"n":16,"a":5,"d":1.15,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1,"Og":1,"Os":136.5,"On":26,"Oa":5.25,"Od":1.18,"pd":26},"p":[[-38,{"n":7.5,"e":3541}],[-37,{"n":4.5,"e":3535}],[-35,{"n":6,"e":3515}],[-34,{"n":7,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3478}],[-30,{"n":4,"e":3466}],[-29,{"n":4.5,"e":3456}],[-28,{"n":6.5,"e":3444}],[-27,{"n":6,"e":3436}],[26,{"n":3,"e":4048}],[25,{"n":5.5,"e":4064}],[24,{"n":4.5,"e":4070}],[23,{"n":6.5,"e":4083}],[12,{"n":4,"e":4191}],[11,{"n":5,"e":4207}],[10,{"n":7,"e":4213,"g":1}],[9,{"n":4.5,"e":4220}],[8,{"n":5.5,"e":4237}],[7,{"n":3.5,"e":4245}],[6,{"n":5.5,"e":4254}],[5,{"n":5,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":7,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":4.5,"e":4306}]],"a":{"m":10,"a":15,"M":17,"n":5}}],[1475,{"n":"Darlow","f":"Karl","fp":"G","r":7,"c":46}],[1476,{"n":"Shelvey","f":"Jonjo","fp":"MO","r":11,"c":46,"s":{"g":5,"s":81.5,"n":15,"a":5.43,"d":1.08,"Og":6,"Os":108.5,"On":20,"Oa":5.43,"Od":1.08,"pm":20},"p":[[-38,{"n":7.5,"e":3541,"g":1}],[-36,{"n":5,"e":3518}],[-33,{"n":4.5,"e":3493,"s":1}],[-31,{"n":5,"e":3468,"s":1}],[-30,{"n":5,"e":3466,"s":1}],[23,{"n":6,"e":4083}],[21,{"n":4,"e":4103}],[20,{"n":4,"e":4113}],[18,{"n":5,"e":4133}],[16,{"n":6,"e":4153,"g":1}],[15,{"n":7.5,"e":4161,"g":1}],[14,{"n":7,"e":4172,"g":1}],[13,{"n":5,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":6.5,"e":4207,"g":1}],[10,{"n":5,"e":4213,"s":1}],[6,{"n":6,"e":4254}],[5,{"n":4.5,"e":4258}],[2,{"n":5.5,"e":4292,"g":1}],[1,{"n":4,"e":4306}]],"a":{"m":20,"a":25,"M":36,"n":19}}],[1485,{"n":"Lejeune","f":"Florian","fp":"DC","r":9,"c":46,"s":{"g":2,"s":27.5,"n":6,"a":4.58,"d":1.99,"Og":2,"Os":64,"On":13,"Oa":4.92,"Od":1.48,"pd":13},"p":[[-33,{"n":5.5,"e":3493}],[-32,{"n":4.5,"e":3478}],[-31,{"n":6,"e":3468}],[-30,{"n":5,"e":3466}],[-29,{"n":3.5,"e":3456}],[-28,{"n":6,"e":3444}],[-27,{"n":6,"e":3436}],[24,{"n":7.5,"e":4070,"g":2,"s":1}],[22,{"n":5.5,"e":4097,"s":1}],[21,{"n":2,"e":4103}],[20,{"n":4,"e":4113}],[19,{"n":3,"e":4124}],[18,{"n":5.5,"e":4133}]]}],[1487,{"n":"Atsu","f":"Christian","fp":"MO","r":7,"c":46,"s":{"s":90.5,"n":18,"a":5.03,"d":0.78,"Og":1,"Os":137.5,"On":27,"Oa":5.09,"Od":0.81,"pm":27},"p":[[-38,{"n":6.5,"e":3541}],[-37,{"n":7,"e":3535,"g":1}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515,"s":1}],[-34,{"n":4.5,"e":3502,"s":1}],[-33,{"n":4.5,"e":3493,"s":1}],[-31,{"n":5,"e":3468,"s":1}],[-29,{"n":5,"e":3456,"s":1}],[-27,{"n":4.5,"e":3436,"s":1}],[24,{"n":4.5,"e":4070}],[22,{"n":4.5,"e":4097,"s":1}],[20,{"n":4.5,"e":4113,"s":1}],[19,{"n":5,"e":4124,"s":1}],[17,{"n":4.5,"e":4139}],[15,{"n":5.5,"e":4161,"s":1}],[14,{"n":5.5,"e":4172,"s":1}],[13,{"n":5,"e":4179,"s":1}],[12,{"n":5,"e":4191,"s":1}],[11,{"n":5.5,"e":4207,"s":1}],[10,{"n":5,"e":4213,"s":1}],[9,{"n":5,"e":4220,"s":1}],[8,{"n":5,"e":4237,"s":1}],[7,{"n":3.5,"e":4245}],[6,{"n":6,"e":4254}],[5,{"n":4,"e":4258}],[4,{"n":5.5,"e":4273}],[3,{"n":7,"e":4287,"s":1}]],"fo":[[4097,[{"t":"Y"}]]]}],[1488,{"n":"Hayden","f":"Isaac","fp":"MD","r":14,"c":46,"s":{"g":1,"s":114.5,"n":22,"a":5.2,"d":0.77,"Sg":1,"Ss":31,"Sn":6,"Sa":5.17,"Sd":1.03,"Og":1,"Os":180.5,"On":34,"Oa":5.31,"Od":0.82,"pd":3,"pm":31},"p":[[-38,{"n":6,"e":3541}],[-37,{"n":5,"e":3535}],[-36,{"n":6,"e":3518}],[-35,{"n":5.5,"e":3515}],[-34,{"n":6.5,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3478}],[-31,{"n":5.5,"e":3468}],[-30,{"n":5,"e":3466}],[-29,{"n":3.5,"e":3456}],[-28,{"n":6,"e":3444}],[-27,{"n":7,"e":3436}],[26,{"n":4.5,"e":4048,"s":1}],[25,{"n":5,"e":4064}],[24,{"n":5,"e":4070}],[23,{"n":7,"e":4083,"g":1}],[22,{"n":4.5,"e":4097}],[21,{"n":4,"e":4103}],[20,{"n":5.5,"e":4113}],[18,{"n":5.5,"e":4133}],[17,{"n":5,"e":4139}],[16,{"n":5.5,"e":4153}],[15,{"n":5.5,"e":4161}],[14,{"n":5,"e":4172}],[13,{"n":4.5,"e":4179}],[12,{"n":5,"e":4191}],[11,{"n":6,"e":4207}],[7,{"n":4,"e":4245}],[6,{"n":5.5,"e":4254}],[5,{"n":5.5,"e":4258}],[4,{"n":6,"e":4273}],[3,{"n":6,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":6,"e":4306}]],"fo":[[4083,[{"t":"Y"}]],[4113,[{"t":"Y"}]]]}],[1491,{"n":"Dummett","f":"Paul","fp":"DL","r":5,"c":46,"s":{"ao":1,"s":77.5,"n":16,"a":4.84,"d":1.03,"Oao":1,"Os":135.5,"On":27,"Oa":5.02,"Od":0.95,"pd":26,"pm":1},"p":[[-38,{"n":6.5,"e":3541}],[-37,{"n":4,"e":3535}],[-36,{"n":4.5,"e":3518}],[-35,{"n":5.5,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493,"s":1}],[-32,{"n":4.5,"e":3478}],[-31,{"n":6,"e":3468}],[-30,{"n":6,"e":3466,"s":1}],[-29,{"n":5,"e":3456,"s":1}],[-28,{"n":5,"e":3444,"s":1}],[22,{"n":5,"e":4097}],[18,{"n":5.5,"e":4133}],[17,{"n":4.5,"e":4139}],[16,{"n":4,"e":4153}],[15,{"n":6,"e":4161}],[14,{"n":5,"e":4172}],[13,{"n":4,"e":4179}],[12,{"n":5.5,"e":4191,"s":1}],[11,{"n":5,"e":4207,"s":1}],[7,{"n":3,"e":4245,"a":1}],[6,{"n":6,"e":4254}],[5,{"n":4,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":6.5,"e":4287}],[2,{"n":3,"e":4292}],[1,{"n":5.5,"e":4306}]],"fo":[[4097,[{"t":"I"}]]],"a":{"m":10,"a":10,"M":11,"n":7}}],[1492,{"n":"Yedlin","f":"DeAndre","fp":"DL","r":9,"c":46,"s":{"g":1,"s":60,"n":12,"a":5,"d":0.71,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":84.5,"On":17,"Oa":4.97,"Od":0.74,"pd":15,"pm":2},"p":[[-33,{"n":4,"e":3493}],[-32,{"n":4,"e":3478}],[-31,{"n":6,"e":3468}],[-30,{"n":5,"e":3466}],[-27,{"n":5.5,"e":3436}],[25,{"n":5,"e":4064}],[21,{"n":5,"e":4103,"s":1}],[20,{"n":4.5,"e":4113}],[19,{"n":5,"e":4124,"s":1}],[18,{"n":5,"e":4133,"s":1}],[13,{"n":4,"e":4179}],[12,{"n":6.5,"e":4191,"g":1}],[11,{"n":4,"e":4207}],[10,{"n":5,"e":4213}],[9,{"n":6,"e":4220}],[8,{"n":5,"e":4237}],[7,{"n":5,"e":4245,"s":1}]],"fo":[[4064,[{"t":"Y"}]],[4124,[{"t":"Y"}]]]}],[1495,{"n":"Diamé","f":"Mohamed","fp":"MD","r":6,"c":46,"s":{"Os":36.5,"On":7,"Oa":5.21,"Od":0.86,"pm":7},"p":[[-38,{"n":7,"e":3541}],[-35,{"n":5,"e":3515,"s":1}],[-34,{"n":5,"e":3502,"s":1}],[-32,{"n":4.5,"e":3478}],[-31,{"n":4.5,"e":3468}],[-29,{"n":5.5,"e":3456,"s":1}],[-28,{"n":5,"e":3444,"s":1}]]}],[1497,{"n":"Colback","f":"Jack","fp":"MD","r":3,"c":46}],[1499,{"n":"Clark","f":"Ciaran","fp":"DC","r":14,"c":46,"s":{"g":2,"s":74.5,"n":14,"a":5.32,"d":0.91,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":0.75,"Og":2,"Os":74.5,"On":14,"Oa":5.32,"Od":0.91,"pd":14},"p":[[26,{"n":4,"e":4048}],[25,{"n":6,"e":4064}],[24,{"n":4.5,"e":4070}],[23,{"n":6,"e":4083}],[22,{"n":6,"e":4097}],[16,{"n":4.5,"e":4153}],[15,{"n":6,"e":4161}],[14,{"n":5.5,"e":4172}],[13,{"n":4,"e":4179}],[12,{"n":7,"e":4191,"g":1}],[11,{"n":6,"e":4207,"g":1}],[10,{"n":5,"e":4213}],[9,{"n":4.5,"e":4220}],[8,{"n":5.5,"e":4237}]],"fo":[[4048,[{"t":"I"}]],[4070,[{"t":"Y"}]]],"a":{"m":14,"a":19,"M":24,"n":7}}],[1504,{"n":"Murphy","f":"Jacob","fp":"MD","r":5,"c":46}],[1508,{"n":"Elliot","f":"Robert","fp":"G","r":1,"c":46}],[1515,{"n":"Aarons","f":"Rolando","fp":"MO","r":1,"c":46}],[1516,{"n":"Sterry","f":"Jamie","fp":"DC","r":1,"c":46}],[1519,{"n":"Lazaar","f":"Achraf","fp":"DC","r":1,"c":46}],[1725,{"n":"Schär","f":"Fabian","fp":"DC","r":13,"c":46,"s":{"g":2,"s":83.5,"n":17,"a":4.91,"d":1.2,"Og":4,"Os":137,"On":27,"Oa":5.07,"Od":1.17,"pd":27},"p":[[-38,{"n":7,"e":3541,"g":1}],[-37,{"n":4,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-30,{"n":4.5,"e":3466}],[-29,{"n":4,"e":3456}],[-28,{"n":7,"e":3444,"g":1}],[-27,{"n":6,"e":3436}],[26,{"n":4.5,"e":4048,"s":1}],[24,{"n":5.5,"e":4070,"s":1}],[21,{"n":4.5,"e":4103}],[20,{"n":7,"e":4113,"g":1}],[19,{"n":3,"e":4124}],[18,{"n":5,"e":4133}],[17,{"n":5,"e":4139}],[16,{"n":5,"e":4153,"s":1}],[9,{"n":4,"e":4220}],[8,{"n":5.5,"e":4237}],[7,{"n":3,"e":4245}],[6,{"n":6,"e":4254}],[5,{"n":3.5,"e":4258}],[4,{"n":6,"e":4273,"g":1}],[3,{"n":7,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":5,"e":4306}]],"fo":[[4124,[{"t":"Y"}]],[4133,[{"t":"Y"}]]]}],[2306,{"n":"Dubravka","f":"Martin","fp":"G","r":19,"c":46,"s":{"s":145.5,"n":26,"a":5.6,"d":1.25,"Ss":142.5,"Sn":25,"Sa":5.7,"Sd":1.15,"Os":211,"On":38,"Oa":5.55,"Od":1.18,"pg":38},"p":[[-38,{"n":7,"e":3541}],[-37,{"n":4.5,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":5.5,"e":3515}],[-34,{"n":7.5,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":4.5,"e":3478}],[-31,{"n":5,"e":3468}],[-30,{"n":4,"e":3466}],[-29,{"n":5,"e":3456}],[-28,{"n":6.5,"e":3444}],[-27,{"n":6,"e":3436}],[26,{"n":3,"e":4048}],[25,{"n":6,"e":4064}],[24,{"n":6,"e":4070}],[23,{"n":6.5,"e":4083}],[22,{"n":5.5,"e":4097}],[21,{"n":5,"e":4103}],[20,{"n":6.5,"e":4113}],[19,{"n":4,"e":4124}],[18,{"n":7,"e":4133}],[17,{"n":6,"e":4139}],[16,{"n":5.5,"e":4153}],[15,{"n":8,"e":4161}],[14,{"n":7,"e":4172}],[13,{"n":6,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":6,"e":4207}],[10,{"n":4,"e":4213}],[9,{"n":7,"e":4220}],[8,{"n":6.5,"e":4237}],[7,{"n":3,"e":4245}],[6,{"n":6,"e":4254}],[5,{"n":4,"e":4258}],[4,{"n":5.5,"e":4273}],[3,{"n":6.5,"e":4287}],[2,{"n":4.5,"e":4292}],[1,{"n":5,"e":4306}]],"a":{"m":18,"a":27,"M":32,"n":12}}],[2553,{"n":"Muto","f":"Yoshinori","fp":"A","r":5,"c":46,"s":{"s":30.5,"n":7,"a":4.36,"d":0.38,"Os":53,"On":12,"Oa":4.42,"Od":0.29,"pm":1,"pa":11},"p":[[-38,{"n":4.5,"e":3541,"s":1}],[-37,{"n":4.5,"e":3535,"s":1}],[-36,{"n":4.5,"e":3518,"s":1}],[-32,{"n":4.5,"e":3478,"s":1}],[-31,{"n":4.5,"e":3468,"s":1}],[21,{"n":4,"e":4103}],[17,{"n":4.5,"e":4139,"s":1}],[7,{"n":5,"e":4245}],[5,{"n":4.5,"e":4258,"s":1}],[4,{"n":4.5,"e":4273,"s":1}],[3,{"n":4,"e":4287,"s":1}],[2,{"n":4,"e":4292,"s":1}]]}],[2580,{"n":"Freddy Woodman","f":"","fp":"G","r":1,"c":46}],[2758,{"n":"Sean Longstaff","f":"","fp":"MO","r":8,"c":46,"s":{"s":89.5,"n":19,"a":4.71,"d":1.02,"Ss":45,"Sn":10,"Sa":4.5,"Sd":0.71,"Og":1,"Os":107,"On":22,"Oa":4.86,"Od":1.14,"pm":22},"p":[[-29,{"n":4,"e":3456}],[-28,{"n":7,"e":3444,"g":1}],[-27,{"n":6.5,"e":3436}],[26,{"n":4.5,"e":4048}],[25,{"n":5,"e":4064,"s":1}],[24,{"n":4.5,"e":4070}],[23,{"n":5,"e":4083,"s":1}],[22,{"n":5,"e":4097}],[21,{"n":4,"e":4103,"s":1}],[20,{"n":4.5,"e":4113,"s":1}],[19,{"n":3,"e":4124}],[18,{"n":4.5,"e":4133,"s":1}],[17,{"n":4,"e":4139}],[16,{"n":5.5,"e":4153,"s":1}],[10,{"n":4,"e":4213}],[9,{"n":5,"e":4220}],[8,{"n":7,"e":4237}],[7,{"n":2.5,"e":4245}],[4,{"n":5.5,"e":4273}],[3,{"n":5.5,"e":4287}],[2,{"n":6,"e":4292,"s":1}],[1,{"n":4.5,"e":4306}]]}],[2759,{"n":"Roberts","f":"Callum","fp":"MD","r":1,"c":46}],[2796,{"n":"Krafth","f":"Emil","fp":"DL","r":5,"c":46,"s":{"s":52.5,"n":11,"a":4.77,"d":0.9,"Os":109,"On":23,"Oa":4.74,"Od":0.72,"pd":22,"pm":1},"p":[[-38,{"n":5,"e":3102}],[-37,{"n":4,"e":3096}],[-36,{"n":5.5,"e":3082}],[-34,{"n":5,"e":3062}],[-33,{"n":3.5,"e":3055}],[-32,{"n":5,"e":3043}],[-31,{"n":4.5,"e":3032}],[-30,{"n":4.5,"e":3022}],[-29,{"n":5,"e":3012}],[-28,{"n":5,"e":3002}],[-27,{"n":4.5,"e":3001}],[-26,{"n":5,"e":2982}],[24,{"n":5,"e":4070,"s":1}],[23,{"n":5.5,"e":4083}],[21,{"n":5,"e":4103,"s":1}],[19,{"n":5,"e":4124,"s":1}],[15,{"n":5.5,"e":4161,"s":1}],[8,{"n":5,"e":4237,"s":1}],[7,{"n":3,"e":4245}],[5,{"n":4,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":6,"e":4287}],[2,{"n":3.5,"e":4292}]]}],[2981,{"n":"Harker","f":"Nathan","fp":"G","r":1,"c":46}],[3356,{"n":"Almirón","f":"Miguel","fp":"MO","r":17,"c":46,"s":{"g":2,"s":133,"n":25,"a":5.32,"d":1.17,"Sg":2,"Ss":46.5,"Sn":8,"Sa":5.81,"Sd":1.49,"Og":2,"Os":183.5,"On":34,"Oa":5.4,"Od":1.06,"pm":30,"pa":4},"p":[[-35,{"n":6,"e":3515}],[-34,{"n":5.5,"e":3502}],[-33,{"n":5.5,"e":3493}],[-32,{"n":5,"e":3478}],[-31,{"n":5,"e":3468}],[-30,{"n":6,"e":3466}],[-29,{"n":5,"e":3456}],[-28,{"n":5.5,"e":3444}],[-27,{"n":7,"e":3436}],[26,{"n":4,"e":4048}],[25,{"n":5.5,"e":4064}],[24,{"n":5,"e":4070}],[23,{"n":7,"e":4083}],[22,{"n":8,"e":4097,"g":1}],[21,{"n":4,"e":4103}],[20,{"n":4.5,"e":4113}],[19,{"n":5,"e":4124}],[18,{"n":7.5,"e":4133,"g":1}],[16,{"n":6,"e":4153}],[15,{"n":6,"e":4161}],[14,{"n":6.5,"e":4172}],[13,{"n":4,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":6.5,"e":4207}],[10,{"n":5.5,"e":4213}],[9,{"n":4.5,"e":4220}],[8,{"n":5.5,"e":4237}],[7,{"n":3.5,"e":4245}],[6,{"n":5.5,"e":4254}],[5,{"n":4.5,"e":4258}],[4,{"n":5.5,"e":4273}],[3,{"n":5.5,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":4,"e":4306}]],"fo":[[4097,[{"t":"Y"}]],[4133,[{"t":"Y"}]]],"a":{"m":16,"a":19,"M":23,"n":8}}],[3648,{"n":"Watts","f":"Kelland","fp":"MD","r":1,"c":46}],[3649,{"n":"Cass","f":"Lewis","fp":"DC","r":1,"c":46}],[4579,{"n":"Lazaro","f":"Valentino","fp":"MO","r":10,"c":46,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":5,"Sn":1,"Sa":5,"Os":38,"On":8,"Oa":4.75,"Od":0.89,"pd":1,"pm":7},"p":[[17,{"n":4.5,"e":5660,"s":1}],[15,{"n":4.5,"e":5680,"s":1}],[14,{"n":5,"e":5692}],[12,{"n":6.5,"e":5710}],[11,{"n":5,"e":5719}],[8,{"n":4,"e":5756,"s":1}],[26,{"n":3.5,"e":4048}],[25,{"n":5,"e":4064,"s":1}]],"fo":[[5680,[{"t":"Y"}]],[5756,[{"t":"Y"}]]]}],[5423,{"n":"Sorensen","f":"Elias","fp":"A","r":1,"c":46}],[5426,{"n":"Allan","f":"Thomas","fp":"A","r":1,"c":46}],[5433,{"n":"Matthew Longstaff","f":"","fp":"MD","r":6,"c":46,"s":{"g":2,"s":37,"n":7,"a":5.29,"d":1.07,"Og":2,"Os":37,"On":7,"Oa":5.29,"Od":1.07,"pm":7},"p":[[24,{"n":5.5,"e":4070}],[23,{"n":5,"e":4083,"s":1}],[22,{"n":6,"e":4097}],[19,{"n":5,"e":4124,"g":1}],[10,{"n":5,"e":4213}],[9,{"n":3.5,"e":4220}],[8,{"n":7,"e":4237,"g":1}]],"fo":[[4097,[{"t":"Y"}]]]}],[5435,{"n":"Bailey","f":"Owen","fp":"DC","r":1,"c":46}],[5442,{"n":"Joelinton","f":"","fp":"A","r":10,"c":46,"s":{"g":1,"s":120.5,"n":26,"a":4.63,"d":0.89,"Sg":1,"Ss":116.5,"Sn":25,"Sa":4.66,"Sd":0.9,"Og":1,"Os":120.5,"On":26,"Oa":4.63,"Od":0.89,"pm":2,"pa":24},"p":[[26,{"n":4,"e":4048}],[25,{"n":5,"e":4064}],[24,{"n":4,"e":4070}],[23,{"n":4,"e":4083}],[22,{"n":4.5,"e":4097}],[21,{"n":2.5,"e":4103}],[20,{"n":5.5,"e":4113}],[19,{"n":5.5,"e":4124}],[18,{"n":5,"e":4133}],[17,{"n":5.5,"e":4139}],[16,{"n":4.5,"e":4153}],[15,{"n":4.5,"e":4161,"s":1}],[14,{"n":4.5,"e":4172}],[13,{"n":5,"e":4179}],[12,{"n":4.5,"e":4191}],[11,{"n":6,"e":4207}],[10,{"n":4.5,"e":4213}],[9,{"n":3.5,"e":4220}],[8,{"n":4,"e":4237}],[7,{"n":5,"e":4245}],[6,{"n":4,"e":4254}],[5,{"n":5,"e":4258}],[4,{"n":4.5,"e":4273}],[3,{"n":7,"e":4287,"g":1}],[2,{"n":3.5,"e":4292}],[1,{"n":5,"e":4306}]],"fo":[[4113,[{"t":"Y"}]],[4139,[{"t":"Y"}]]]}],[6001,{"n":"Willems","f":"Jetro","fp":"DL","r":11,"c":46,"s":{"g":2,"s":99.5,"n":19,"a":5.24,"d":0.93,"Og":2,"Os":99.5,"On":19,"Oa":5.24,"Od":0.93,"pd":16,"pm":3},"p":[[23,{"n":5,"e":4083}],[22,{"n":5,"e":4097}],[21,{"n":4,"e":4103}],[20,{"n":5,"e":4113}],[19,{"n":3,"e":4124}],[17,{"n":4.5,"e":4139}],[16,{"n":5,"e":4153}],[15,{"n":5.5,"e":4161}],[14,{"n":6,"e":4172,"g":1}],[13,{"n":4.5,"e":4179}],[12,{"n":6.5,"e":4191}],[11,{"n":7,"e":4207}],[10,{"n":6,"e":4213}],[9,{"n":5,"e":4220}],[8,{"n":6.5,"e":4237}],[6,{"n":5,"e":4254}],[5,{"n":5.5,"e":4258,"g":1}],[4,{"n":5.5,"e":4273}],[1,{"n":5,"e":4306,"s":1}]],"fo":[[4083,[{"t":"I"}]],[4103,[{"t":"I"}]]],"a":{"m":14,"a":19,"M":27,"n":26}}],[6449,{"n":"Bentaleb","f":"Nabil","fp":"MD","r":11,"c":46,"s":{"s":9,"n":2,"a":4.5,"d":2.12,"Ss":6,"Sn":1,"Sa":6,"Os":9,"On":2,"Oa":4.5,"Od":2.12,"pm":2},"p":[[26,{"n":3,"e":4048}],[25,{"n":6,"e":4064}]],"fo":[[4064,[{"t":"Y"}]]]}],[6503,{"n":"Gibson","f":"Liam","fp":"DL","r":1,"c":46}],[872,{"n":"Byram","f":"Sam","fp":"DL","r":10,"c":76,"s":{"s":81.5,"n":17,"a":4.79,"d":0.79,"Ss":6,"Sn":1,"Sa":6,"Os":81.5,"On":17,"Oa":4.79,"Od":0.79,"pd":17},"p":[[24,{"n":4,"e":4076}],[18,{"n":3.5,"e":4134}],[16,{"n":4,"e":4154}],[26,{"n":5,"e":4054}],[25,{"n":6,"e":4064}],[23,{"n":5.5,"e":4084}],[22,{"n":4,"e":4094}],[21,{"n":5,"e":4104}],[19,{"n":5,"e":4118}],[17,{"n":5,"e":4142}],[15,{"n":4,"e":4165}],[14,{"n":5,"e":4176}],[13,{"n":6,"e":4183}],[10,{"n":4.5,"e":4214,"s":1}],[6,{"n":4,"e":4250}],[5,{"n":6,"e":4264}],[2,{"n":5,"e":4292,"s":1}]],"fo":[[4054,[{"t":"I"}]],[4134,[{"t":"Y"}]]]}],[1101,{"n":"Husband","f":"James","fp":"DC","r":1,"c":76}],[1352,{"n":"Roberts","f":"Patrick","fp":"MO","r":3,"c":76,"s":{"s":15,"n":3,"a":5,"Os":55,"On":12,"Oa":4.58,"Od":0.51,"pm":12},"p":[[-38,{"n":4,"e":2342,"s":1}],[-29,{"n":5,"e":2257,"s":1}],[-36,{"n":4.5,"e":2323,"s":1}],[-33,{"n":3.5,"e":2295}],[-32,{"n":4,"e":2284}],[-31,{"n":5,"e":2279,"s":1}],[-30,{"n":5,"e":2263,"s":1}],[-27,{"n":4.5,"e":2237,"s":1}],[-26,{"n":4.5,"e":2231,"s":1}],[8,{"n":5,"e":4232,"s":1}],[7,{"n":5,"e":4242,"s":1}],[6,{"n":5,"e":4250,"s":1}]]}],[1506,{"n":"Hanley","f":"Grant","fp":"DC","r":11,"c":76,"s":{"ao":1,"s":57.5,"n":12,"a":4.79,"d":1.1,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":0.55,"Oao":1,"Os":57.5,"On":12,"Oa":4.79,"Od":1.1,"pd":12},"p":[[20,{"n":5.5,"e":4114}],[26,{"n":6,"e":4054}],[25,{"n":6,"e":4064}],[24,{"n":5,"e":4076}],[23,{"n":5,"e":4084,"s":1}],[22,{"n":4.5,"e":4094}],[21,{"n":5,"e":4104}],[19,{"n":5,"e":4118}],[18,{"n":4,"e":4134}],[3,{"n":4,"e":4279}],[2,{"n":5.5,"e":4292}],[1,{"n":2,"e":4298,"a":1}]],"fo":[[4094,[{"t":"I"}]],[4054,[{"t":"Y"}]],[4104,[{"t":"Y"}]],[4134,[{"t":"Y"}]]]}],[1521,{"n":"Krul","f":"Tim","fp":"G","r":14,"c":76,"s":{"ao":1,"s":130.5,"n":24,"a":5.44,"d":1.33,"Sao":1,"Ss":68.5,"Sn":13,"Sa":5.27,"Sd":1.36,"Oao":1,"Os":130.5,"On":24,"Oa":5.44,"Od":1.33,"pg":24},"p":[[12,{"n":4,"e":4192}],[4,{"n":6,"e":4274}],[26,{"n":6,"e":4054}],[25,{"n":7,"e":4064}],[24,{"n":4,"e":4076}],[23,{"n":6.5,"e":4084}],[22,{"n":3,"e":4094}],[21,{"n":5,"e":4104}],[20,{"n":6,"e":4114}],[19,{"n":4.5,"e":4118}],[18,{"n":4.5,"e":4134}],[17,{"n":5.5,"e":4142,"a":1}],[16,{"n":4,"e":4154}],[15,{"n":5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":8,"e":4183}],[11,{"n":5,"e":4201}],[10,{"n":8.5,"e":4214}],[9,{"n":6,"e":4219}],[6,{"n":5.5,"e":4250}],[5,{"n":7,"e":4264}],[3,{"n":4,"e":4279}],[2,{"n":5.5,"e":4292}],[1,{"n":4.5,"e":4298}]],"fo":[[4084,[{"t":"Y"}]],[4114,[{"t":"Y"}]],[4142,[{"t":"Y"}]]]}],[3647,{"n":"Aarons","f":"Max","fp":"DL","r":12,"c":76,"s":{"s":109,"n":24,"a":4.54,"d":0.99,"Ss":88,"Sn":19,"Sa":4.63,"Sd":1.03,"Os":109,"On":24,"Oa":4.54,"Od":0.99,"pd":24},"p":[[26,{"n":5,"e":4054}],[25,{"n":6,"e":4064}],[24,{"n":5.5,"e":4076}],[23,{"n":5,"e":4084}],[22,{"n":4,"e":4094}],[21,{"n":4.5,"e":4104}],[20,{"n":5,"e":4114}],[19,{"n":6,"e":4118}],[18,{"n":4.5,"e":4134}],[17,{"n":5.5,"e":4142}],[16,{"n":4.5,"e":4154}],[15,{"n":3,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":6,"e":4183}],[12,{"n":4,"e":4192}],[11,{"n":3.5,"e":4201}],[10,{"n":3.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":2.5,"e":4232}],[7,{"n":4.5,"e":4242}],[4,{"n":4,"e":4274}],[3,{"n":3,"e":4279}],[2,{"n":5,"e":4292}],[1,{"n":4,"e":4298}]],"fo":[[4104,[{"t":"Y"}]]]}],[3654,{"n":"Payne","f":"Alfie","fp":"MD","r":1,"c":76}],[3657,{"n":"Timi Odusina","f":"","fp":"DC","r":1,"c":76}],[3670,{"n":"Godfrey","f":"Ben","fp":"DC","r":8,"c":76,"s":{"s":83.5,"n":18,"a":4.64,"d":0.98,"Os":83.5,"On":18,"Oa":4.64,"Od":0.98,"pd":18},"p":[[23,{"n":5,"e":4084}],[17,{"n":5,"e":4142}],[16,{"n":4,"e":4154}],[15,{"n":4.5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":6.5,"e":4183}],[12,{"n":4.5,"e":4192}],[11,{"n":5,"e":4201}],[10,{"n":3,"e":4214}],[9,{"n":5.5,"e":4219}],[8,{"n":2.5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":4,"e":4250}],[5,{"n":4.5,"e":4264}],[4,{"n":4,"e":4274}],[3,{"n":5,"e":4279}],[2,{"n":6,"e":4292}],[1,{"n":4,"e":4298}]],"fo":[[4084,[{"t":"R"}]]]}],[3671,{"n":"Buendía","f":"Emiliano","fp":"MO","r":16,"c":76,"s":{"s":140.5,"n":25,"a":5.62,"d":1.31,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":140.5,"On":25,"Oa":5.62,"Od":1.31,"pm":25},"p":[[26,{"n":5.5,"e":4054,"s":1}],[25,{"n":5.5,"e":4064,"s":1}],[23,{"n":7,"e":4084}],[22,{"n":3.5,"e":4094}],[21,{"n":8,"e":4104}],[20,{"n":6.5,"e":4114}],[19,{"n":6,"e":4118}],[18,{"n":8,"e":4134}],[17,{"n":7,"e":4142}],[16,{"n":7,"e":4154}],[15,{"n":5,"e":4165,"s":1}],[14,{"n":5.5,"e":4176,"s":1}],[13,{"n":5,"e":4183,"s":1}],[12,{"n":3.5,"e":4192}],[11,{"n":5.5,"e":4201}],[10,{"n":4,"e":4214}],[9,{"n":5.5,"e":4219}],[8,{"n":4,"e":4232}],[7,{"n":6,"e":4242}],[6,{"n":4.5,"e":4250}],[5,{"n":7.5,"e":4264}],[4,{"n":4,"e":4274}],[3,{"n":6,"e":4279}],[2,{"n":5.5,"e":4292}],[1,{"n":5,"e":4298}]],"fo":[[4084,[{"t":"Y"}]],[4142,[{"t":"Y"}]]],"a":{"m":13,"a":19,"M":33,"n":6}}],[3674,{"n":"Lewis","f":"Jamal","fp":"DL","r":8,"c":76,"s":{"s":70,"n":16,"a":4.38,"d":0.99,"Os":70,"On":16,"Oa":4.38,"Od":0.99,"pd":16},"p":[[26,{"n":6,"e":4054,"s":1}],[22,{"n":4.5,"e":4094,"s":1}],[20,{"n":5,"e":4114}],[16,{"n":4.5,"e":4154,"s":1}],[12,{"n":4,"e":4192}],[11,{"n":3.5,"e":4201}],[10,{"n":3,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":3,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":4,"e":4250}],[5,{"n":5,"e":4264}],[4,{"n":5,"e":4274}],[3,{"n":3,"e":4279}],[2,{"n":6,"e":4292}],[1,{"n":3.5,"e":4298}]],"fo":[[4114,[{"t":"Y"}]]]}],[3675,{"n":"Cantwell","f":"Todd","fp":"MO","r":21,"c":76,"s":{"g":6,"s":142.5,"n":26,"a":5.48,"d":1.27,"Sg":6,"Ss":136.5,"Sn":25,"Sa":5.46,"Sd":1.29,"Og":6,"Os":142.5,"On":26,"Oa":5.48,"Od":1.27,"pm":26},"p":[[26,{"n":6,"e":4054}],[25,{"n":5,"e":4064}],[24,{"n":6,"e":4076}],[23,{"n":7,"e":4084}],[22,{"n":5.5,"e":4094}],[21,{"n":7,"e":4104,"g":1}],[20,{"n":4.5,"e":4114,"s":1}],[19,{"n":5,"e":4118}],[18,{"n":7,"e":4134,"g":1}],[17,{"n":6,"e":4142}],[16,{"n":5,"e":4154,"s":1}],[15,{"n":5,"e":4165}],[14,{"n":6.5,"e":4176,"g":1}],[13,{"n":8,"e":4183,"g":1}],[12,{"n":5.5,"e":4192,"s":1}],[11,{"n":4.5,"e":4201,"s":1}],[10,{"n":2.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":5,"e":4232}],[7,{"n":3.5,"e":4242}],[6,{"n":5.5,"e":4250}],[5,{"n":7,"e":4264,"g":1}],[4,{"n":4,"e":4274}],[3,{"n":5.5,"e":4279,"g":1}],[2,{"n":7,"e":4292}],[1,{"n":4,"e":4298}]],"fo":[[4064,[{"t":"Y"}]],[4076,[{"t":"Y"}]],[4142,[{"t":"Y"}]]],"a":{"m":14,"a":21,"M":36,"n":23}}],[3676,{"n":"Zimmermann","f":"Christoph","fp":"DC","r":10,"c":76,"s":{"s":74.5,"n":15,"a":4.97,"d":0.64,"Ss":64,"Sn":13,"Sa":4.92,"Sd":0.61,"Os":74.5,"On":15,"Oa":4.97,"Od":0.64,"pd":15},"p":[[26,{"n":6,"e":4054}],[25,{"n":5.5,"e":4064}],[24,{"n":5,"e":4076}],[23,{"n":5.5,"e":4084}],[22,{"n":4,"e":4094}],[21,{"n":5.5,"e":4104}],[20,{"n":4.5,"e":4114}],[19,{"n":5,"e":4118}],[18,{"n":4,"e":4134}],[17,{"n":5,"e":4142}],[16,{"n":4.5,"e":4154}],[15,{"n":4.5,"e":4165}],[14,{"n":5,"e":4176}],[13,{"n":6,"e":4183}],[4,{"n":4.5,"e":4274}]],"fo":[[4104,[{"t":"Y"}]]]}],[3683,{"n":"Srbeny","f":"Dennis","fp":"A","r":5,"c":76,"s":{"g":1,"s":37,"n":8,"a":4.63,"d":0.58,"Og":1,"Os":37,"On":8,"Oa":4.63,"Od":0.58,"pa":8},"p":[[18,{"n":4.5,"e":4134,"s":1}],[16,{"n":4,"e":4154,"s":1}],[13,{"n":6,"e":4183,"g":1,"s":1}],[11,{"n":4.5,"e":4201,"s":1}],[9,{"n":4.5,"e":4219,"s":1}],[8,{"n":4.5,"e":4232,"s":1}],[5,{"n":4.5,"e":4264,"s":1}],[3,{"n":4.5,"e":4279,"s":1}]]}],[3684,{"n":"Oxborough","f":"Aston","fp":"G","r":1,"c":76}],[3704,{"n":"Thompson","f":"Louis","fp":"MD","r":3,"c":76}],[3706,{"n":"Heise","f":"Philip","fp":"DL","r":1,"c":76}],[3708,{"n":"Trybull","f":"Tom","fp":"MD","r":7,"c":76,"s":{"s":70.5,"n":14,"a":5.04,"d":0.99,"Os":70.5,"On":14,"Oa":5.04,"Od":0.99,"pm":14},"p":[[20,{"n":5,"e":4114,"s":1}],[19,{"n":4.5,"e":4118}],[18,{"n":5,"e":4134}],[17,{"n":4.5,"e":4142}],[15,{"n":4,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":7,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4.5,"e":4201}],[9,{"n":5.5,"e":4219,"s":1}],[4,{"n":5,"e":4274}],[3,{"n":4.5,"e":4279}],[2,{"n":7,"e":4292}],[1,{"n":3.5,"e":4298}]],"fo":[[4118,[{"t":"Y"}]],[4142,[{"t":"Y"}]]]}],[3709,{"n":"Hernández","f":"Onel","fp":"MO","r":10,"c":76,"s":{"g":1,"s":87,"n":17,"a":5.12,"d":0.88,"Ss":9,"Sn":2,"Sa":4.5,"Og":1,"Os":87,"On":17,"Oa":5.12,"Od":0.88,"pm":17},"p":[[25,{"n":4.5,"e":4064,"s":1}],[24,{"n":4.5,"e":4076,"s":1}],[22,{"n":5,"e":4094,"s":1}],[21,{"n":5,"e":4104,"s":1}],[20,{"n":5,"e":4114}],[19,{"n":5,"e":4118,"s":1}],[18,{"n":5,"e":4134,"s":1}],[17,{"n":5,"e":4142,"s":1}],[16,{"n":4.5,"e":4154}],[15,{"n":4.5,"e":4165}],[14,{"n":7,"e":4176}],[13,{"n":7,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4,"e":4201}],[10,{"n":6.5,"e":4214,"g":1,"s":1}],[9,{"n":5,"e":4219,"s":1}],[1,{"n":4.5,"e":4298,"s":1}]]}],[3712,{"n":"Leitner","f":"Moritz","fp":"MO","r":6,"c":76,"s":{"s":43,"n":9,"a":4.78,"d":1.18,"Os":43,"On":9,"Oa":4.78,"Od":1.18,"pm":9},"p":[[10,{"n":3.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":3,"e":4232}],[7,{"n":5.5,"e":4242}],[6,{"n":5,"e":4250,"s":1}],[4,{"n":4,"e":4274}],[3,{"n":5,"e":4279}],[2,{"n":7,"e":4292}],[1,{"n":5,"e":4298,"s":1}]]}],[3715,{"n":"Klose","f":"Timm","fp":"DC","r":1,"c":76}],[3717,{"n":"Drmic","f":"Josip","fp":"A","r":6,"c":76,"s":{"g":1,"s":49,"n":11,"a":4.45,"d":0.57,"Og":1,"Os":49,"On":11,"Oa":4.45,"Od":0.57,"pa":11},"p":[[26,{"n":4.5,"e":4054,"s":1}],[24,{"n":4.5,"e":4076,"s":1}],[23,{"n":4,"e":4084,"s":1}],[12,{"n":4.5,"e":4192,"s":1}],[11,{"n":4.5,"e":4201,"s":1}],[8,{"n":6,"e":4232,"g":1,"s":1}],[7,{"n":4,"e":4242,"s":1}],[6,{"n":4,"e":4250,"s":1}],[5,{"n":4.5,"e":4264,"s":1}],[4,{"n":4,"e":4274,"s":1}],[1,{"n":4.5,"e":4298,"s":1}]]}],[3720,{"n":"McLean","f":"Kenny","fp":"MO","r":11,"c":76,"s":{"g":1,"s":129.5,"n":25,"a":5.18,"d":1.05,"Sg":1,"Ss":120,"Sn":23,"Sa":5.22,"Sd":1.02,"Og":1,"Os":129.5,"On":25,"Oa":5.18,"Od":1.05,"pm":25},"p":[[26,{"n":6,"e":4054}],[25,{"n":5.5,"e":4064}],[24,{"n":4.5,"e":4076}],[23,{"n":5.5,"e":4084}],[22,{"n":4.5,"e":4094}],[21,{"n":5.5,"e":4104}],[20,{"n":5.5,"e":4114,"s":1}],[19,{"n":5.5,"e":4118}],[18,{"n":5,"e":4134}],[17,{"n":6,"e":4142}],[16,{"n":5.5,"e":4154}],[15,{"n":5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":7,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4,"e":4201}],[10,{"n":5,"e":4214}],[9,{"n":4.5,"e":4219}],[8,{"n":2.5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":5,"e":4250}],[5,{"n":8,"e":4264,"g":1}],[4,{"n":5.5,"e":4274,"s":1}],[3,{"n":5,"e":4279,"s":1}],[1,{"n":3.5,"e":4298}]]}],[3722,{"n":"Stiepermann","f":"Marco","fp":"MO","r":8,"c":76,"s":{"s":76.5,"n":17,"a":4.5,"d":0.64,"Os":76.5,"On":17,"Oa":4.5,"Od":0.64,"pm":17},"p":[[24,{"n":4.5,"e":4076,"s":1}],[21,{"n":4.5,"e":4104,"s":1}],[20,{"n":4.5,"e":4114}],[19,{"n":4.5,"e":4118,"s":1}],[17,{"n":5,"e":4142,"s":1}],[15,{"n":4,"e":4165,"s":1}],[12,{"n":4.5,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":4,"e":4214,"s":1}],[8,{"n":3.5,"e":4232}],[7,{"n":4.5,"e":4242}],[6,{"n":4.5,"e":4250}],[5,{"n":5,"e":4264}],[4,{"n":4,"e":4274}],[3,{"n":4.5,"e":4279}],[2,{"n":6.5,"e":4292}],[1,{"n":4,"e":4298}]],"fo":[[4104,[{"t":"Y"}]]]}],[3723,{"n":"Marshall","f":"Ben","fp":"MD","r":5,"c":76}],[3728,{"n":"Pukki","f":"Teemu","fp":"A","r":27,"c":76,"s":{"g":11,"s":132.5,"n":25,"a":5.3,"d":1.27,"Sg":2,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.5,"Og":11,"Os":132.5,"On":25,"Oa":5.3,"Od":1.27,"pa":25},"p":[[26,{"n":4.5,"e":4054}],[25,{"n":5,"e":4064}],[24,{"n":5.5,"e":4076,"g":1}],[23,{"n":6,"e":4084,"g":1}],[21,{"n":4.5,"e":4104}],[20,{"n":4,"e":4114}],[19,{"n":4,"e":4118}],[18,{"n":5,"e":4134}],[17,{"n":6,"e":4142,"g":1}],[16,{"n":4.5,"e":4154}],[15,{"n":6,"e":4165,"g":1}],[14,{"n":7,"e":4176,"g":1}],[13,{"n":6,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":3.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":3.5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":4.5,"e":4250}],[5,{"n":7,"e":4264,"g":1}],[4,{"n":4.5,"e":4274}],[3,{"n":7,"e":4279,"g":1}],[2,{"n":9,"e":4292,"g":3}],[1,{"n":6,"e":4298,"g":1}]],"fo":[[4118,[{"t":"Y"}]]],"a":{"m":28,"a":41,"M":68,"n":14}}],[3729,{"n":"Nélson Oliveira","f":"","fp":"A","r":5,"c":76}],[3739,{"n":"Vrancic","f":"Mario","fp":"MO","r":8,"c":76,"s":{"g":1,"s":51.5,"n":11,"a":4.68,"d":0.72,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":51.5,"On":11,"Oa":4.68,"Od":0.72,"pm":11},"p":[[25,{"n":5,"e":4064,"s":1}],[22,{"n":3.5,"e":4094}],[21,{"n":5,"e":4104}],[20,{"n":6,"e":4114,"g":1}],[19,{"n":4.5,"e":4118,"s":1}],[18,{"n":4.5,"e":4134,"s":1}],[17,{"n":5,"e":4142,"s":1}],[16,{"n":3.5,"e":4154}],[12,{"n":5,"e":4192,"s":1}],[3,{"n":4.5,"e":4279,"s":1}],[2,{"n":5,"e":4292,"s":1}]],"fo":[[4114,[{"t":"Y"}]]]}],[3741,{"n":"Fährmann","f":"Ralf","fp":"G","r":3,"c":76,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[7,{"n":5,"e":4242}]]}],[3747,{"n":"Tettey","f":"Alexander","fp":"MD","r":13,"c":76,"s":{"g":1,"s":106.5,"n":20,"a":5.33,"d":0.78,"Sg":1,"Ss":59.5,"Sn":11,"Sa":5.41,"Sd":0.83,"Og":1,"Os":106.5,"On":20,"Oa":5.33,"Od":0.78,"pd":2,"pm":18},"p":[[26,{"n":6,"e":4054}],[25,{"n":5,"e":4064}],[24,{"n":6,"e":4076}],[23,{"n":5.5,"e":4084}],[22,{"n":4,"e":4094}],[21,{"n":5.5,"e":4104}],[20,{"n":5,"e":4114}],[19,{"n":5,"e":4118}],[18,{"n":5,"e":4134}],[17,{"n":5,"e":4142}],[16,{"n":6.5,"e":4154,"g":1}],[15,{"n":7,"e":4165,"s":1}],[13,{"n":6,"e":4183}],[12,{"n":4,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":5.5,"e":4214}],[9,{"n":6,"e":4219}],[6,{"n":4.5,"e":4250}],[5,{"n":5.5,"e":4264}],[2,{"n":5,"e":4292,"s":1}]],"fo":[[4104,[{"t":"Y"}]],[4118,[{"t":"Y"}]],[4142,[{"t":"Y"}]]]}],[3748,{"n":"McGovern","f":"Michael","fp":"G","r":6,"c":76,"s":{"s":9,"n":2,"a":4.5,"Os":9,"On":2,"Oa":4.5,"pg":2},"p":[[8,{"n":4.5,"e":4232}],[7,{"n":4.5,"e":4242,"s":1}]]}],[6119,{"n":"Idah","f":"Adam","fp":"A","r":3,"c":76,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pa":2},"p":[[22,{"n":3,"e":4094}],[21,{"n":4.5,"e":4104,"s":1}]]}],[6411,{"n":"Duda","f":"Ondrej","fp":"MO","r":12,"c":76,"s":{"s":25,"n":4,"a":6.25,"d":0.96,"Ss":20,"Sn":3,"Sa":6.67,"Sd":0.58,"Os":25,"On":4,"Oa":6.25,"Od":0.96,"pm":4},"p":[[26,{"n":5,"e":4054}],[25,{"n":7,"e":4064}],[24,{"n":6,"e":4076}],[23,{"n":7,"e":4084}]]}],[6412,{"n":"Rupp","f":"Lukas","fp":"MO","r":8,"c":76,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Os":20,"On":4,"Oa":5,"Od":0.41,"pm":4},"p":[[26,{"n":5,"e":4054}],[25,{"n":5.5,"e":4064}],[24,{"n":4.5,"e":4076}],[23,{"n":5,"e":4084,"s":1}]]}],[6483,{"n":"Mair","f":"Archie","fp":"G","r":1,"c":76}],[6539,{"n":"Martin","f":"Josh","fp":"MO","r":1,"c":76}],[720,{"n":"Jagielka","f":"Phil","fp":"DC","r":3,"c":77,"s":{"s":20,"n":4,"a":5,"d":0.41,"Og":1,"Os":46,"On":9,"Oa":5.11,"Od":0.93,"pd":9},"p":[[-37,{"n":5,"e":3532,"s":1}],[-35,{"n":5,"e":3512,"s":1}],[-34,{"n":3.5,"e":3501}],[-33,{"n":7,"e":3490,"g":1}],[-28,{"n":5.5,"e":3439}],[13,{"n":4.5,"e":4185}],[11,{"n":5,"e":4205,"s":1}],[6,{"n":5.5,"e":4252,"s":1}],[2,{"n":5,"e":4295,"s":1}]]}],[815,{"n":"Rodwell","f":"Jack","fp":"MD","r":5,"c":77}],[980,{"n":"McBurnie","f":"Oliver","fp":"A","r":12,"c":77,"s":{"g":4,"s":116.5,"n":24,"a":4.85,"d":0.74,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.76,"Og":4,"Os":116.5,"On":24,"Oa":4.85,"Od":0.74,"pa":24},"p":[[22,{"n":6,"e":4095,"g":1}],[19,{"n":5,"e":4125}],[14,{"n":5,"e":4174,"s":1}],[8,{"n":4,"e":4234}],[26,{"n":5,"e":4055}],[25,{"n":5,"e":4060}],[24,{"n":4,"e":4072}],[23,{"n":5.5,"e":4078}],[21,{"n":5,"e":4101,"s":1}],[20,{"n":4.5,"e":4112,"s":1}],[18,{"n":6,"e":4130,"g":1}],[17,{"n":5,"e":4145,"s":1}],[16,{"n":4.5,"e":4154,"s":1}],[15,{"n":4,"e":4161}],[13,{"n":6.5,"e":4185,"g":1,"s":1}],[11,{"n":5,"e":4205,"s":1}],[9,{"n":4.5,"e":4225,"s":1}],[7,{"n":4,"e":4238}],[6,{"n":5,"e":4252}],[5,{"n":3.5,"e":4261}],[4,{"n":4.5,"e":4269}],[3,{"n":6,"e":4282,"g":1,"s":1}],[2,{"n":4.5,"e":4295,"s":1}],[1,{"n":4.5,"e":4300,"s":1}]],"fo":[[4072,[{"t":"Y"}]]],"a":{"m":9,"a":12,"M":19,"n":5}}],[1071,{"n":"Mousset","f":"Lys","fp":"A","r":10,"c":77,"s":{"g":5,"s":111.5,"n":23,"a":4.85,"d":1.02,"Sg":2,"Ss":57.5,"Sn":13,"Sa":4.42,"Sd":0.89,"Og":6,"Os":143.5,"On":30,"Oa":4.78,"Od":0.91,"pa":30},"p":[[12,{"n":5,"e":4194}],[10,{"n":6,"e":4217,"g":1,"s":1}],[-38,{"n":5,"e":3540,"s":1}],[-37,{"n":4.5,"e":3528,"s":1}],[-35,{"n":4,"e":3508,"s":1}],[-30,{"n":4.5,"e":3462,"s":1}],[-29,{"n":4.5,"e":3448,"s":1}],[-28,{"n":5,"e":3438,"g":1}],[-27,{"n":4.5,"e":3428,"s":1}],[26,{"n":6,"e":4055,"s":1}],[25,{"n":5,"e":4060,"s":1}],[24,{"n":4,"e":4072,"s":1}],[23,{"n":3,"e":4078}],[22,{"n":4,"e":4095,"s":1}],[21,{"n":3.5,"e":4101}],[20,{"n":4,"e":4112}],[19,{"n":5,"e":4125,"s":1}],[18,{"n":4.5,"e":4130,"s":1}],[17,{"n":4,"e":4145}],[16,{"n":4,"e":4154}],[15,{"n":4.5,"e":4161,"s":1}],[14,{"n":6,"e":4174,"g":1}],[13,{"n":6,"e":4185,"g":1}],[11,{"n":7,"e":4205}],[9,{"n":6,"e":4225,"g":1}],[8,{"n":4.5,"e":4234,"s":1}],[7,{"n":4,"e":4238,"s":1}],[6,{"n":6,"e":4252,"g":1,"s":1}],[5,{"n":4.5,"e":4261,"s":1}],[4,{"n":5,"e":4269,"s":1}]],"fo":[[4055,[{"t":"Y"}]]],"a":{"m":15,"a":22,"M":29,"n":20}}],[1085,{"n":"Besic","f":"Muhamed","fp":"MD","r":8,"c":77,"s":{"s":45,"n":9,"a":5,"d":0.43,"Os":45,"On":9,"Oa":5,"Od":0.43,"pm":9},"p":[[24,{"n":5,"e":4072}],[23,{"n":5,"e":4078,"s":1}],[22,{"n":5,"e":4095,"s":1}],[21,{"n":5,"e":4101,"s":1}],[20,{"n":4,"e":4112}],[18,{"n":5,"e":4130,"s":1}],[17,{"n":5,"e":4145,"s":1}],[16,{"n":5.5,"e":4154,"s":1}],[10,{"n":5.5,"e":4217,"s":1}]],"fo":[[4072,[{"t":"Y"}]],[4095,[{"t":"Y"}]]]}],[2501,{"n":"Norwood","f":"Oliver","fp":"MD","r":18,"c":77,"s":{"g":1,"s":144,"n":26,"a":5.54,"d":0.73,"Sg":1,"Ss":139.5,"Sn":25,"Sa":5.58,"Sd":0.72,"Og":1,"Os":144,"On":26,"Oa":5.54,"Od":0.73,"pm":26},"p":[[26,{"n":4.5,"e":4055}],[25,{"n":6.5,"e":4060}],[24,{"n":5,"e":4072}],[23,{"n":5,"e":4078}],[22,{"n":6,"e":4095}],[21,{"n":5,"e":4101}],[20,{"n":6,"e":4112}],[19,{"n":6,"e":4125,"g":1}],[18,{"n":6,"e":4130}],[17,{"n":7,"e":4145}],[16,{"n":5,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":6,"e":4174}],[13,{"n":5,"e":4185}],[12,{"n":5.5,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":4.5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":6,"e":4234}],[7,{"n":5,"e":4238}],[6,{"n":5.5,"e":4252}],[5,{"n":6,"e":4261}],[4,{"n":5.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":6.5,"e":4295}],[1,{"n":6,"e":4300}]],"fo":[[4072,[{"t":"Y"}]],[4078,[{"t":"Y"}]],[4145,[{"t":"Y"}]]]}],[3691,{"n":"Callum Robinson","f":"","fp":"A","r":6,"c":77,"s":{"g":1,"s":72,"n":16,"a":4.5,"d":0.8,"Og":1,"Os":72,"On":16,"Oa":4.5,"Od":0.8,"pa":16},"p":[[24,{"n":4.5,"e":4072,"s":1}],[23,{"n":4.5,"e":4078,"s":1}],[20,{"n":4,"e":4112}],[16,{"n":4,"e":4154,"s":1}],[14,{"n":4.5,"e":4174,"s":1}],[13,{"n":5.5,"e":4185,"s":1}],[12,{"n":4,"e":4194,"s":1}],[10,{"n":4,"e":4217}],[8,{"n":4.5,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":4.5,"e":4252}],[5,{"n":4.5,"e":4261,"s":1}],[4,{"n":7,"e":4269,"g":1}],[3,{"n":3.5,"e":4282}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4300}]]}],[3694,{"n":"Lundstram","f":"John","fp":"DC","r":16,"c":77,"s":{"g":4,"s":135.5,"n":25,"a":5.42,"d":1.06,"Ss":25,"Sn":5,"Sa":5,"Sd":0.5,"Og":4,"Os":135.5,"On":25,"Oa":5.42,"Od":1.06,"pm":25},"p":[[26,{"n":6,"e":4055,"g":1,"s":1}],[25,{"n":5.5,"e":4060,"s":1}],[24,{"n":5,"e":4072,"s":1}],[23,{"n":4.5,"e":4078}],[22,{"n":5.5,"e":4095}],[21,{"n":4.5,"e":4101}],[19,{"n":4,"e":4125}],[18,{"n":6,"e":4130}],[17,{"n":6.5,"e":4145}],[16,{"n":5.5,"e":4154}],[15,{"n":4.5,"e":4161}],[14,{"n":5,"e":4174}],[13,{"n":4.5,"e":4185}],[12,{"n":5,"e":4194}],[11,{"n":8,"e":4205,"g":2}],[10,{"n":5,"e":4217}],[9,{"n":5.5,"e":4225}],[8,{"n":4.5,"e":4234}],[7,{"n":5.5,"e":4238}],[6,{"n":7.5,"e":4252}],[5,{"n":5,"e":4261}],[4,{"n":5,"e":4269}],[3,{"n":4,"e":4282}],[2,{"n":7.5,"e":4295,"g":1}],[1,{"n":6,"e":4300}]],"a":{"m":17,"a":24,"M":35,"n":31}}],[3695,{"n":"O'Connell","f":"Jack","fp":"DC","r":15,"c":77,"s":{"s":137,"n":26,"a":5.27,"d":0.78,"Ss":132,"Sn":25,"Sa":5.28,"Sd":0.79,"Os":137,"On":26,"Oa":5.27,"Od":0.78,"pd":26},"p":[[26,{"n":5,"e":4055}],[25,{"n":5,"e":4060}],[24,{"n":5.5,"e":4072}],[23,{"n":4.5,"e":4078}],[22,{"n":5,"e":4095}],[21,{"n":5,"e":4101}],[20,{"n":4.5,"e":4112}],[19,{"n":5.5,"e":4125}],[18,{"n":6,"e":4130}],[17,{"n":6,"e":4145}],[16,{"n":5.5,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":4.5,"e":4174}],[13,{"n":5,"e":4185}],[12,{"n":4.5,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":6,"e":4217}],[9,{"n":7,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":5.5,"e":4238}],[6,{"n":7,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":4.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":6,"e":4295}],[1,{"n":5,"e":4300}]],"a":{"m":16,"a":18,"M":22,"n":19}}],[3701,{"n":"Heneghan","f":"Ben","fp":"DC","r":3,"c":77}],[3702,{"n":"Carruthers","f":"Samir","fp":"MD","r":4,"c":77}],[3703,{"n":"Bryan","f":"Kean","fp":"DC","r":1,"c":77}],[3705,{"n":"Egan","f":"John","fp":"DC","r":17,"c":77,"s":{"s":131.5,"n":25,"a":5.26,"d":0.79,"Ss":60.5,"Sn":12,"Sa":5.04,"Sd":0.81,"Os":131.5,"On":25,"Oa":5.26,"Od":0.79,"pd":25},"p":[[26,{"n":5.5,"e":4055}],[25,{"n":6,"e":4060}],[24,{"n":5,"e":4072}],[23,{"n":5,"e":4078}],[22,{"n":4.5,"e":4095}],[21,{"n":4.5,"e":4101}],[20,{"n":4.5,"e":4112}],[19,{"n":6,"e":4125}],[18,{"n":6,"e":4130}],[17,{"n":4.5,"e":4145}],[16,{"n":6,"e":4154}],[15,{"n":3.5,"e":4161}],[14,{"n":5,"e":4174}],[12,{"n":5,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":5.5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":6,"e":4238}],[6,{"n":7,"e":4252}],[5,{"n":5,"e":4261}],[4,{"n":4,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":5.5,"e":4295}],[1,{"n":5.5,"e":4300}]],"a":{"m":18,"a":20,"M":29,"n":16}}],[3713,{"n":"Kieron Freeman","f":"","fp":"DL","r":1,"c":77}],[3716,{"n":"Baldock","f":"George","fp":"DL","r":20,"c":77,"s":{"g":2,"s":136,"n":26,"a":5.23,"d":0.85,"Sg":2,"Ss":131,"Sn":25,"Sa":5.24,"Sd":0.87,"Og":2,"Os":136,"On":26,"Oa":5.23,"Od":0.85,"pm":26},"p":[[26,{"n":5,"e":4055}],[25,{"n":5.5,"e":4060}],[24,{"n":5.5,"e":4072}],[23,{"n":5,"e":4078}],[22,{"n":6,"e":4095}],[21,{"n":4,"e":4101}],[20,{"n":3.5,"e":4112}],[19,{"n":5.5,"e":4125}],[18,{"n":5.5,"e":4130}],[17,{"n":5,"e":4145}],[16,{"n":7.5,"e":4154,"g":1}],[15,{"n":4.5,"e":4161}],[14,{"n":5.5,"e":4174}],[13,{"n":4.5,"e":4185}],[12,{"n":6,"e":4194,"g":1}],[11,{"n":6.5,"e":4205}],[10,{"n":5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":5,"e":4234}],[7,{"n":5,"e":4238}],[6,{"n":5.5,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":4.5,"e":4269}],[3,{"n":5.5,"e":4282}],[2,{"n":6,"e":4295}],[1,{"n":4,"e":4300}]],"fo":[[4060,[{"t":"Y"}]],[4078,[{"t":"Y"}]]],"a":{"m":19,"a":21,"M":26,"n":23}}],[3721,{"n":"Moore","f":"Simon","fp":"G","r":3,"c":77,"s":{"s":2.5,"n":1,"a":2.5,"Os":2.5,"On":1,"Oa":2.5,"pg":1},"p":[[13,{"n":2.5,"e":4185}]]}],[3725,{"n":"Stevens","f":"Enda","fp":"DL","r":16,"c":77,"s":{"g":1,"s":133.5,"n":26,"a":5.13,"d":0.82,"Sg":1,"Ss":128.5,"Sn":25,"Sa":5.14,"Sd":0.84,"Og":1,"Os":133.5,"On":26,"Oa":5.13,"Od":0.82,"pm":26},"p":[[26,{"n":5,"e":4055}],[25,{"n":6,"e":4060}],[24,{"n":5,"e":4072}],[23,{"n":5.5,"e":4078}],[22,{"n":6.5,"e":4095}],[21,{"n":4,"e":4101}],[20,{"n":4.5,"e":4112}],[19,{"n":5.5,"e":4125}],[18,{"n":5,"e":4130}],[17,{"n":5,"e":4145}],[16,{"n":6.5,"e":4154,"g":1}],[15,{"n":4,"e":4161}],[14,{"n":4,"e":4174}],[13,{"n":4,"e":4185}],[12,{"n":4,"e":4194}],[11,{"n":6.5,"e":4205}],[10,{"n":6,"e":4217}],[9,{"n":5.5,"e":4225}],[8,{"n":5,"e":4234}],[7,{"n":5.5,"e":4238}],[6,{"n":6,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":5.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":5.5,"e":4295}],[1,{"n":4.5,"e":4300}]],"fo":[[4055,[{"t":"Y"}]],[4112,[{"t":"Y"}]],[4130,[{"t":"Y"}]]],"a":{"m":15,"a":16,"M":16,"n":5}}],[3726,{"n":"Duffy","f":"Mark","fp":"MD","r":12,"c":77}],[3727,{"n":"Holmes","f":"Ricky","fp":"MD","r":2,"c":77}],[3731,{"n":"Luke Freeman","f":"","fp":"MO","r":5,"c":77,"s":{"s":42.5,"n":9,"a":4.72,"d":0.26,"Os":42.5,"On":9,"Oa":4.72,"Od":0.26,"pm":9},"p":[[18,{"n":4.5,"e":4130}],[15,{"n":4.5,"e":4161,"s":1}],[14,{"n":5,"e":4174,"s":1}],[12,{"n":5,"e":4194,"s":1}],[9,{"n":5,"e":4225,"s":1}],[4,{"n":4.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":4.5,"e":4295,"s":1}],[1,{"n":5,"e":4300,"s":1}]]}],[3732,{"n":"Evans","f":"Ched","fp":"A","r":5,"c":77}],[3734,{"n":"Fleck","f":"John","fp":"MO","r":21,"c":77,"s":{"g":5,"s":129.5,"n":23,"a":5.63,"d":1.12,"Sg":1,"Ss":38.5,"Sn":7,"Sa":5.5,"Sd":1.26,"Og":5,"Os":129.5,"On":23,"Oa":5.63,"Od":1.12,"pm":23},"p":[[26,{"n":4,"e":4055}],[25,{"n":5.5,"e":4060}],[24,{"n":5,"e":4072}],[23,{"n":7,"e":4078,"g":1}],[22,{"n":7,"e":4095}],[21,{"n":4,"e":4101}],[20,{"n":6,"e":4112}],[19,{"n":4,"e":4125}],[17,{"n":8,"e":4145,"g":2}],[16,{"n":5.5,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":6,"e":4174}],[13,{"n":6.5,"e":4185,"g":1}],[12,{"n":5.5,"e":4194}],[11,{"n":7.5,"e":4205,"g":1}],[10,{"n":5.5,"e":4217}],[9,{"n":5.5,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":6,"e":4238}],[6,{"n":6.5,"e":4252}],[5,{"n":5.5,"e":4261}],[2,{"n":4.5,"e":4295}],[1,{"n":5,"e":4300}]],"fo":[[4060,[{"t":"Y"}]],[4072,[{"t":"Y"}]],[4145,[{"t":"Y"}]]],"a":{"m":18,"a":23,"M":36,"n":16}}],[3738,{"n":"Basham","f":"Chris","fp":"DC","r":13,"c":77,"s":{"s":130.5,"n":26,"a":5.02,"d":0.89,"Ss":125,"Sn":25,"Sa":5,"Sd":0.9,"Os":130.5,"On":26,"Oa":5.02,"Od":0.89,"pd":26},"p":[[26,{"n":5.5,"e":4055}],[25,{"n":5,"e":4060}],[24,{"n":4,"e":4072}],[23,{"n":5,"e":4078}],[22,{"n":5,"e":4095}],[21,{"n":4.5,"e":4101}],[20,{"n":5,"e":4112}],[19,{"n":5,"e":4125}],[18,{"n":5.5,"e":4130}],[17,{"n":6.5,"e":4145}],[16,{"n":5,"e":4154}],[15,{"n":3.5,"e":4161}],[14,{"n":6,"e":4174}],[13,{"n":4.5,"e":4185}],[12,{"n":4.5,"e":4194}],[11,{"n":5.5,"e":4205}],[10,{"n":6,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":6,"e":4252}],[5,{"n":4,"e":4261}],[4,{"n":5,"e":4269}],[3,{"n":3,"e":4282}],[2,{"n":6.5,"e":4295}],[1,{"n":4.5,"e":4300}]],"fo":[[4130,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":18,"n":6}}],[3743,{"n":"McGoldrick","f":"David","fp":"A","r":8,"c":77,"s":{"s":87.5,"n":19,"a":4.61,"d":0.72,"Os":87.5,"On":19,"Oa":4.61,"Od":0.72,"pa":19},"p":[[22,{"n":4,"e":4095}],[21,{"n":4.5,"e":4101}],[20,{"n":4.5,"e":4112,"s":1}],[19,{"n":4,"e":4125}],[18,{"n":4,"e":4130}],[17,{"n":6,"e":4145}],[16,{"n":5,"e":4154}],[15,{"n":4.5,"e":4161,"s":1}],[14,{"n":4,"e":4174}],[13,{"n":5,"e":4185}],[12,{"n":6,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":5,"e":4217}],[9,{"n":4,"e":4225}],[5,{"n":4,"e":4261}],[4,{"n":4,"e":4269,"s":1}],[3,{"n":4,"e":4282}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4300}]],"fo":[[4130,[{"t":"Y"}]]]}],[3745,{"n":"Sharp","f":"Billy","fp":"A","r":6,"c":77,"s":{"g":2,"s":72,"n":16,"a":4.5,"d":0.93,"Ss":25,"Sn":6,"Sa":4.17,"Sd":0.52,"Og":2,"Os":72,"On":16,"Oa":4.5,"Od":0.93,"pa":16},"p":[[26,{"n":6.5,"e":4055,"g":1}],[25,{"n":4.5,"e":4060}],[24,{"n":3.5,"e":4072}],[23,{"n":4,"e":4078,"s":1}],[22,{"n":4,"e":4095,"s":1}],[21,{"n":5,"e":4101,"s":1}],[20,{"n":4,"e":4112,"s":1}],[15,{"n":4,"e":4161}],[13,{"n":4.5,"e":4185,"s":1}],[11,{"n":5,"e":4205,"s":1}],[10,{"n":4.5,"e":4217,"s":1}],[9,{"n":4.5,"e":4225,"s":1}],[8,{"n":4.5,"e":4234,"s":1}],[5,{"n":2.5,"e":4261,"s":1}],[3,{"n":5,"e":4282,"s":1}],[1,{"n":6,"e":4300,"g":1,"s":1}]]}],[3746,{"n":"Stearman","f":"Richard","fp":"DC","r":1,"c":77}],[3749,{"n":"Clarke","f":"Leon","fp":"A","r":1,"c":77,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[7,{"n":4,"e":4238,"s":1}]]}],[3750,{"n":"Wright","f":"Jake","fp":"DC","r":3,"c":77}],[5446,{"n":"Henderson","f":"Dean","fp":"G","r":19,"c":77,"s":{"s":140.5,"n":25,"a":5.62,"d":1.02,"Ss":68.5,"Sn":12,"Sa":5.71,"Sd":1.18,"Os":140.5,"On":25,"Oa":5.62,"Od":1.02,"pg":25},"p":[[26,{"n":5,"e":4055}],[25,{"n":6.5,"e":4060}],[24,{"n":8,"e":4072}],[23,{"n":5,"e":4078}],[22,{"n":6.5,"e":4095}],[21,{"n":6.5,"e":4101}],[20,{"n":4,"e":4112}],[19,{"n":4.5,"e":4125}],[18,{"n":6,"e":4130}],[17,{"n":5.5,"e":4145}],[16,{"n":6,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":6,"e":4174}],[12,{"n":6,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":5.5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":6,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":7,"e":4252}],[5,{"n":6,"e":4261}],[4,{"n":5,"e":4269}],[3,{"n":4,"e":4282}],[2,{"n":6.5,"e":4295}],[1,{"n":5,"e":4300}]],"a":{"m":17,"a":19,"M":26,"n":6}}],[5447,{"n":"Osborn","f":"Ben","fp":"MD","r":1,"c":77,"s":{"s":25,"n":5,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":25,"On":5,"Oa":5,"pm":5},"p":[[25,{"n":5,"e":4060,"s":1}],[18,{"n":5,"e":4130,"s":1}],[17,{"n":5,"e":4145,"s":1}],[6,{"n":5,"e":4252,"s":1}],[4,{"n":5,"e":4269,"s":1}]]}],[5450,{"n":"Morrison","f":"Ravel","fp":"MO","r":1,"c":77,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[3,{"n":4.5,"e":4282,"s":1}]]}],[6121,{"n":"Verrips","f":"Michael","fp":"G","r":6,"c":77}],[6397,{"n":"Eastwood","f":"Jake","fp":"G","r":3,"c":77}],[6450,{"n":"Robinson","f":"Jack","fp":"DL","r":8,"c":77}],[6549,{"n":"Retsos","f":"Panagiotis","fp":"DC","r":5,"c":77}],[6551,{"n":"Berge","f":"Sander","fp":"MD","r":12,"c":77,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[26,{"n":5,"e":4055}]]}],[6555,{"n":"Zivkovic","f":"Richairo","fp":"A","r":6,"c":77}],[669,{"n":"Long","f":"Shane","fp":"A","r":11,"c":35,"s":{"g":1,"s":72.5,"n":16,"a":4.53,"d":0.83,"Sg":1,"Ss":21.5,"Sn":5,"Sa":4.3,"Sd":0.84,"Og":5,"Os":116.5,"On":25,"Oa":4.66,"Od":0.97,"pa":25},"p":[[-37,{"n":3,"e":3536}],[-31,{"n":6,"e":3475,"g":1}],[-34,{"n":6,"e":3505,"g":1,"s":1}],[-38,{"n":3,"e":3545}],[-36,{"n":6,"e":3525,"g":1}],[-35,{"n":4.5,"e":3515,"s":1}],[-33,{"n":5.5,"e":3494,"g":1}],[-30,{"n":5,"e":3467,"s":1}],[-28,{"n":5,"e":3445,"s":1}],[26,{"n":3.5,"e":4056}],[25,{"n":3,"e":4062}],[24,{"n":4,"e":4077}],[23,{"n":5,"e":4085,"g":1}],[22,{"n":5,"e":4093}],[21,{"n":4.5,"e":4105,"s":1}],[18,{"n":6,"e":4128}],[17,{"n":4,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":6,"e":4165}],[14,{"n":4.5,"e":4177,"s":1}],[13,{"n":5,"e":4178,"s":1}],[8,{"n":3.5,"e":4233}],[7,{"n":4.5,"e":4243,"s":1}],[5,{"n":4.5,"e":4261,"s":1}],[4,{"n":4.5,"e":4268,"s":1}]]}],[673,{"n":"Redmond","f":"Nathan","fp":"MO","r":16,"c":35,"s":{"g":3,"s":120.5,"n":23,"a":5.24,"d":1.26,"Sg":2,"Ss":104.5,"Sn":20,"Sa":5.23,"Sd":1.21,"Og":6,"Os":183,"On":35,"Oa":5.23,"Od":1.3,"pm":15,"pa":20},"p":[[-38,{"n":7,"e":3545,"g":1}],[-37,{"n":4,"e":3536,"s":1}],[-36,{"n":6,"e":3525}],[-35,{"n":3.5,"e":3515}],[-34,{"n":8,"e":3505,"g":2}],[-33,{"n":3.5,"e":3494}],[-32,{"n":6,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":4.5,"e":3467}],[-29,{"n":5,"e":3453}],[-28,{"n":6,"e":3445}],[-27,{"n":4,"e":3429}],[25,{"n":3.5,"e":4062}],[24,{"n":8,"e":4077,"g":1}],[23,{"n":5.5,"e":4085}],[22,{"n":7,"e":4093}],[21,{"n":5,"e":4105}],[20,{"n":5.5,"e":4115}],[19,{"n":7,"e":4120,"g":1}],[18,{"n":5,"e":4128}],[17,{"n":3.5,"e":4146}],[16,{"n":6,"e":4153}],[15,{"n":5.5,"e":4165}],[14,{"n":4.5,"e":4177}],[13,{"n":6.5,"e":4178}],[12,{"n":4,"e":4193}],[11,{"n":4.5,"e":4204}],[10,{"n":4.5,"e":4215}],[9,{"n":5.5,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":5,"e":4248}],[3,{"n":7.5,"e":4280,"g":1}],[2,{"n":4.5,"e":4293}],[1,{"n":4,"e":4301}]],"fo":[[4077,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":32,"n":5}}],[693,{"n":"Austin","f":"Charlie","fp":"A","r":3,"c":35,"s":{"Os":28.5,"On":7,"Oa":4.07,"Od":0.35,"pa":7},"p":[[-38,{"n":4,"e":3545,"s":1}],[-36,{"n":3.5,"e":3525,"s":1}],[-33,{"n":4.5,"e":3494,"s":1}],[-30,{"n":4,"e":3467}],[-29,{"n":4,"e":3453}],[-28,{"n":4.5,"e":3445}],[-27,{"n":4,"e":3429,"s":1}]]}],[710,{"n":"Romeu","f":"Oriol","fp":"MD","r":9,"c":35,"s":{"s":98,"n":20,"a":4.9,"d":0.99,"Ss":9,"Sn":2,"Sa":4.5,"Sd":2.12,"Og":1,"Os":160,"On":32,"Oa":5,"Od":1.05,"pm":32},"p":[[-38,{"n":6,"e":3545}],[-37,{"n":5,"e":3536,"s":1}],[-36,{"n":3.5,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":5.5,"e":3505,"s":1}],[-33,{"n":5.5,"e":3494}],[-32,{"n":5.5,"e":3479}],[-31,{"n":5.5,"e":3475}],[-30,{"n":4,"e":3467}],[-29,{"n":5,"e":3453}],[-28,{"n":8,"e":3445,"g":1}],[-27,{"n":4.5,"e":3429}],[25,{"n":3,"e":4062}],[24,{"n":6,"e":4077,"s":1}],[22,{"n":5,"e":4093,"s":1}],[21,{"n":5,"e":4105,"s":1}],[19,{"n":5,"e":4120,"s":1}],[18,{"n":5,"e":4128,"s":1}],[17,{"n":5.5,"e":4146,"s":1}],[15,{"n":5,"e":4165,"s":1}],[12,{"n":4,"e":4193}],[11,{"n":5.5,"e":4204}],[10,{"n":3,"e":4215}],[9,{"n":4.5,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":6,"e":4248}],[5,{"n":6.5,"e":4261}],[4,{"n":6,"e":4268}],[3,{"n":5.5,"e":4280}],[2,{"n":5.5,"e":4293}],[1,{"n":3.5,"e":4301}]],"fo":[[4077,[{"t":"Y"}]]]}],[721,{"n":"Bertrand","f":"Ryan","fp":"DL","r":10,"c":35,"s":{"g":1,"s":94,"n":21,"a":4.48,"d":0.94,"Sg":1,"Ss":62,"Sn":13,"Sa":4.77,"Sd":0.81,"Og":1,"Os":141.5,"On":32,"Oa":4.42,"Od":0.86,"pd":20,"pm":12},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3,"e":3536}],[-36,{"n":4,"e":3525}],[-35,{"n":3.5,"e":3515}],[-34,{"n":5,"e":3505}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3475}],[-30,{"n":5,"e":3467}],[-29,{"n":3.5,"e":3453}],[-28,{"n":5,"e":3445}],[26,{"n":4,"e":4056}],[25,{"n":4.5,"e":4062}],[24,{"n":5.5,"e":4077}],[23,{"n":3.5,"e":4085}],[22,{"n":4.5,"e":4093}],[21,{"n":5,"e":4105}],[20,{"n":5,"e":4115}],[19,{"n":5.5,"e":4120}],[18,{"n":5,"e":4128}],[17,{"n":5,"e":4146}],[16,{"n":3,"e":4153}],[15,{"n":6,"e":4165,"g":1}],[14,{"n":4.5,"e":4177}],[13,{"n":5,"e":4178}],[10,{"n":3,"e":4215}],[9,{"n":5.5,"e":4227}],[8,{"n":2.5,"e":4233}],[7,{"n":5,"e":4243}],[6,{"n":4.5,"e":4248,"s":1}],[2,{"n":4,"e":4293}],[1,{"n":3.5,"e":4301}]],"fo":[[4120,[{"t":"Y"}]]]}],[725,{"n":"Forster","f":"Fraser","fp":"G","r":11,"c":35,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-37,{"n":4.5,"e":3536}]]}],[727,{"n":"Højbjerg","f":"Pierre-Emile","fp":"MO","r":12,"c":35,"s":{"s":131,"n":25,"a":5.24,"d":0.98,"Ss":74,"Sn":13,"Sa":5.69,"Sd":1.01,"Og":1,"Os":195.5,"On":37,"Oa":5.28,"Od":1,"pd":1,"pm":36},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3.5,"e":3536}],[-36,{"n":6,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":6,"e":3505}],[-33,{"n":6,"e":3494}],[-32,{"n":6.5,"e":3479,"g":1}],[-31,{"n":5,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":5.5,"e":3453}],[-28,{"n":7,"e":3445}],[-27,{"n":4.5,"e":3429}],[26,{"n":5,"e":4056}],[25,{"n":4.5,"e":4062}],[24,{"n":5.5,"e":4077}],[23,{"n":5.5,"e":4085}],[22,{"n":5,"e":4093}],[21,{"n":6,"e":4105}],[20,{"n":6,"e":4115}],[19,{"n":7,"e":4120}],[18,{"n":6.5,"e":4128}],[17,{"n":5,"e":4146}],[16,{"n":4,"e":4153}],[15,{"n":7.5,"e":4165}],[14,{"n":6.5,"e":4177}],[13,{"n":5,"e":4178}],[11,{"n":4.5,"e":4204}],[10,{"n":3,"e":4215}],[9,{"n":4.5,"e":4227}],[8,{"n":4.5,"e":4233}],[7,{"n":5.5,"e":4243}],[6,{"n":4.5,"e":4248}],[5,{"n":5.5,"e":4261}],[4,{"n":5.5,"e":4268}],[3,{"n":5,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":4.5,"e":4301,"s":1}]],"fo":[[4093,[{"t":"Y"}]],[4146,[{"t":"Y"}]]]}],[745,{"n":"Davis","f":"Steven","fp":"MD","r":5,"c":35}],[826,{"n":"Boufal","f":"Sofiane","fp":"MO","r":9,"c":35,"s":{"s":86,"n":17,"a":5.06,"d":0.58,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":152.5,"On":30,"Oa":5.08,"Od":0.63,"pm":28,"pa":2},"p":[[-38,{"n":5,"e":2343,"s":1}],[-37,{"n":4.5,"e":2332,"s":1}],[-36,{"n":5.5,"e":2329}],[-35,{"n":4.5,"e":2318}],[-31,{"n":5,"e":2274}],[-30,{"n":5,"e":2270}],[-29,{"n":4.5,"e":2254}],[-27,{"n":5,"e":2239}],[-26,{"n":5,"e":2230,"s":1}],[-33,{"n":7,"e":2295,"g":1}],[-32,{"n":6,"e":2283}],[-28,{"n":5,"e":2247}],[26,{"n":5,"e":4056}],[25,{"n":5,"e":4062,"s":1}],[-25,{"n":4.5,"e":2212,"s":1}],[23,{"n":5,"e":4085,"s":1}],[20,{"n":5,"e":4115}],[19,{"n":4.5,"e":4120,"s":1}],[16,{"n":5,"e":4153,"s":1}],[14,{"n":5.5,"e":4177,"s":1}],[13,{"n":5.5,"e":4178,"s":1}],[12,{"n":4,"e":4193,"s":1}],[9,{"n":5,"e":4227,"s":1}],[8,{"n":4.5,"e":4233,"s":1}],[7,{"n":4,"e":4243}],[6,{"n":5.5,"e":4248}],[5,{"n":6,"e":4261}],[4,{"n":5.5,"e":4268}],[3,{"n":6,"e":4280,"s":1}],[1,{"n":5,"e":4301,"s":1}]],"fo":[[4056,[{"t":"I"}]],[4120,[{"t":"Y"}]]]}],[857,{"n":"Ward-Prowse","f":"James","fp":"MO","r":22,"c":35,"s":{"g":4,"s":139,"n":26,"a":5.35,"d":1.04,"Sg":4,"Ss":134.5,"Sn":25,"Sa":5.38,"Sd":1.04,"Og":8,"Os":203,"On":38,"Oa":5.34,"Od":1.02,"pd":1,"pm":33,"pa":4},"p":[[-38,{"n":5,"e":3545}],[-37,{"n":4.5,"e":3536,"s":1}],[-36,{"n":6,"e":3525,"g":1}],[-35,{"n":4.5,"e":3515}],[-34,{"n":5,"e":3505}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":7,"e":3467,"g":1}],[-29,{"n":6.5,"e":3453,"g":1}],[-28,{"n":7,"e":3445,"g":1}],[-27,{"n":4,"e":3429}],[26,{"n":4.5,"e":4056}],[25,{"n":4,"e":4062}],[24,{"n":5.5,"e":4077}],[23,{"n":5.5,"e":4085}],[22,{"n":4.5,"e":4093}],[21,{"n":6,"e":4105}],[20,{"n":5.5,"e":4115}],[19,{"n":7,"e":4120}],[18,{"n":6.5,"e":4128}],[17,{"n":4.5,"e":4146}],[16,{"n":4.5,"e":4153}],[15,{"n":6.5,"e":4165}],[14,{"n":6,"e":4177,"g":1}],[13,{"n":6,"e":4178,"g":1}],[12,{"n":5.5,"e":4193}],[11,{"n":7,"e":4204,"g":1}],[10,{"n":4,"e":4215}],[9,{"n":6,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4,"e":4243}],[6,{"n":7,"e":4248,"g":1}],[5,{"n":5.5,"e":4261}],[4,{"n":5,"e":4268}],[3,{"n":6,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":3.5,"e":4301}]],"fo":[[4062,[{"t":"Y"}]],[4085,[{"t":"Y"}]],[4105,[{"t":"Y"}]],[4115,[{"t":"Y"}]],[4128,[{"t":"Y"}]]],"a":{"m":23,"a":29,"M":33,"n":18}}],[940,{"n":"McCarthy","f":"Alex","fp":"G","r":18,"c":35,"s":{"s":85.5,"n":16,"a":5.34,"d":0.93,"Ss":81.5,"Sn":15,"Sa":5.43,"Sd":0.88,"Os":85.5,"On":16,"Oa":5.34,"Od":0.93,"pg":16},"p":[[26,{"n":4,"e":4056}],[25,{"n":5,"e":4062}],[24,{"n":5.5,"e":4077}],[23,{"n":4,"e":4085}],[22,{"n":6,"e":4093}],[21,{"n":7,"e":4105}],[20,{"n":4.5,"e":4115}],[19,{"n":7,"e":4120}],[18,{"n":6,"e":4128}],[17,{"n":6,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":5,"e":4165}],[14,{"n":5,"e":4177}],[13,{"n":6,"e":4178}],[12,{"n":4.5,"e":4193}],[11,{"n":5,"e":4204}]]}],[962,{"n":"Clasie","f":"Jordy","fp":"MD","r":5,"c":35}],[1010,{"n":"Ings","f":"Danny","fp":"A","r":38,"c":35,"s":{"g":15,"s":141.5,"n":26,"a":5.44,"d":1.2,"Sg":14,"Ss":137.5,"Sn":25,"Sa":5.5,"Sd":1.19,"Og":15,"Os":169,"On":32,"Oa":5.28,"Od":1.24,"pa":32},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3.5,"e":3536}],[-36,{"n":6,"e":3525}],[-35,{"n":3,"e":3515}],[-34,{"n":6,"e":3505}],[-32,{"n":4.5,"e":3479}],[26,{"n":4,"e":4056,"g":1}],[25,{"n":4,"e":4062}],[24,{"n":4,"e":4077,"s":1}],[23,{"n":4,"e":4085}],[22,{"n":7,"e":4093,"g":1}],[21,{"n":6.5,"e":4105,"g":1}],[20,{"n":7,"e":4115,"g":1}],[19,{"n":4.5,"e":4120,"s":1}],[18,{"n":8,"e":4128,"g":2}],[17,{"n":4.5,"e":4146}],[16,{"n":6,"e":4153,"g":1}],[15,{"n":6.5,"e":4165,"g":1}],[14,{"n":7,"e":4177,"g":1}],[13,{"n":6,"e":4178,"g":1}],[12,{"n":6,"e":4193,"g":1}],[11,{"n":4.5,"e":4204}],[10,{"n":4.5,"e":4215}],[9,{"n":6,"e":4227,"g":1}],[8,{"n":6,"e":4233,"g":1}],[7,{"n":6,"e":4243,"g":1}],[6,{"n":5,"e":4248,"s":1}],[5,{"n":4.5,"e":4261,"s":1}],[4,{"n":4.5,"e":4268}],[3,{"n":6,"e":4280}],[2,{"n":6,"e":4293,"g":1,"s":1}],[1,{"n":3.5,"e":4301}]],"fo":[[4093,[{"t":"Y"}]]],"a":{"m":38,"a":62,"M":101,"n":22}}],[1030,{"n":"Josh Sims","f":"","fp":"MO","r":3,"c":35,"s":{"Os":33.5,"On":7,"Oa":4.79,"Od":1.04,"pm":5,"pa":2},"p":[[-38,{"n":4.5,"e":3545,"s":1}],[-35,{"n":3,"e":3515}],[-34,{"n":6,"e":3505}],[-33,{"n":4.5,"e":3494,"s":1}],[-32,{"n":5,"e":3479,"s":1}],[-31,{"n":4.5,"e":3475,"s":1}],[-30,{"n":6,"e":3467,"s":1}]]}],[1037,{"n":"McQueen","f":"Sam","fp":"DL","r":1,"c":35}],[1050,{"n":"Stephens","f":"Jack","fp":"DC","r":12,"c":35,"s":{"g":1,"s":83.5,"n":18,"a":4.64,"d":1.3,"Sg":1,"Ss":75.5,"Sn":16,"Sa":4.72,"Sd":1.37,"Og":1,"Os":117.5,"On":26,"Oa":4.52,"Od":1.16,"pd":26},"p":[[-38,{"n":5,"e":3545}],[-37,{"n":4,"e":3536}],[-36,{"n":4,"e":3525}],[-35,{"n":3.5,"e":3515}],[-34,{"n":5,"e":3505,"s":1}],[-32,{"n":5,"e":3479,"s":1}],[-31,{"n":4.5,"e":3475}],[-27,{"n":3,"e":3429}],[26,{"n":4,"e":4056}],[25,{"n":2.5,"e":4062}],[24,{"n":6,"e":4077}],[23,{"n":3,"e":4085}],[22,{"n":5,"e":4093}],[21,{"n":7,"e":4105}],[20,{"n":5,"e":4115}],[19,{"n":6,"e":4120}],[18,{"n":7,"e":4128,"g":1}],[17,{"n":4.5,"e":4146}],[16,{"n":4,"e":4153}],[15,{"n":5.5,"e":4165}],[14,{"n":4.5,"e":4177}],[13,{"n":3.5,"e":4178}],[12,{"n":3,"e":4193}],[11,{"n":5,"e":4204}],[10,{"n":4,"e":4215,"s":1}],[1,{"n":4,"e":4301}]],"fo":[[4062,[{"t":"Y"}]]]}],[1051,{"n":"Reed","f":"Harrison","fp":"MD","r":3,"c":35}],[1077,{"n":"Lewis","f":"Harry","fp":"G","r":1,"c":35}],[1078,{"n":"Hesketh","f":"Jake","fp":"MD","r":5,"c":35}],[1105,{"n":"Gunn","f":"Angus","fp":"G","r":7,"c":35,"s":{"s":50,"n":10,"a":5,"d":1.27,"Os":104.5,"On":21,"Oa":4.98,"Od":1.33,"pg":21},"p":[[-38,{"n":3.5,"e":3545}],[-36,{"n":2.5,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":5,"e":3505}],[-33,{"n":4,"e":3494}],[-32,{"n":6,"e":3479}],[-31,{"n":6,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":6.5,"e":3453}],[-28,{"n":7,"e":3445}],[-27,{"n":4,"e":3429}],[10,{"n":3.5,"e":4215}],[9,{"n":5,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":3.5,"e":4248}],[5,{"n":6.5,"e":4261}],[4,{"n":6.5,"e":4268}],[3,{"n":6.5,"e":4280}],[2,{"n":6,"e":4293}],[1,{"n":4,"e":4301}]]}],[1118,{"n":"Walker-Peters","f":"Kyle","fp":"DL","r":3,"c":35,"s":{"s":17.5,"n":4,"a":4.38,"d":1.25,"Os":33,"On":7,"Oa":4.71,"Od":1.19,"pd":6,"pm":1},"p":[[-38,{"n":4.5,"e":3546}],[-34,{"n":6.5,"e":3506}],[-30,{"n":4.5,"e":3467}],[26,{"n":3,"e":4056}],[3,{"n":4.5,"e":4287}],[2,{"n":4,"e":4294}],[1,{"n":6,"e":4304}]]}],[1302,{"n":"Hoedt","f":"Wesley","fp":"DC","r":7,"c":35,"s":{"Os":34.5,"On":7,"Oa":4.93,"Od":0.67,"pd":7},"p":[[-34,{"n":5,"e":2308}],[-37,{"n":4,"e":2332}],[-30,{"n":4.5,"e":2270}],[-29,{"n":4.5,"e":2254}],[-28,{"n":5,"e":2247,"s":1}],[-26,{"n":5.5,"e":2230}],[-25,{"n":6,"e":2212}]]}],[1315,{"n":"Lemina","f":"Mario","fp":"MD","r":3,"c":35,"s":{"Og":1,"Os":15,"On":3,"Oa":5,"Od":1,"pm":3},"p":[[-37,{"n":4,"e":3536}],[-35,{"n":6,"e":3515,"g":1,"s":1}],[-31,{"n":5,"e":3475,"s":1}]]}],[1333,{"n":"Bednarek","f":"Jan","fp":"DC","r":13,"c":35,"s":{"g":1,"s":109.5,"n":24,"a":4.56,"d":1.15,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":1,"Os":167.5,"On":36,"Oa":4.65,"Od":1.08,"pd":36},"p":[[-38,{"n":5.5,"e":3545}],[-37,{"n":4,"e":3536}],[-36,{"n":4.5,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":6,"e":3505}],[-33,{"n":3.5,"e":3494}],[-32,{"n":5.5,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":4,"e":3453}],[-28,{"n":6,"e":3445}],[-27,{"n":4,"e":3429}],[25,{"n":3.5,"e":4062}],[23,{"n":4.5,"e":4085,"g":1}],[22,{"n":5,"e":4093}],[21,{"n":5.5,"e":4105}],[20,{"n":4.5,"e":4115}],[19,{"n":6.5,"e":4120}],[18,{"n":5.5,"e":4128}],[17,{"n":4.5,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":5.5,"e":4165}],[14,{"n":5,"e":4177}],[13,{"n":4.5,"e":4178}],[12,{"n":3.5,"e":4193}],[11,{"n":5.5,"e":4204}],[10,{"n":1.5,"e":4215}],[9,{"n":5.5,"e":4227}],[8,{"n":3,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":3,"e":4248}],[5,{"n":5.5,"e":4261}],[4,{"n":5,"e":4268}],[3,{"n":6,"e":4280}],[2,{"n":3.5,"e":4293}],[1,{"n":3.5,"e":4301}]],"fo":[[4085,[{"t":"Y"}]],[4105,[{"t":"Y"}]]]}],[2264,{"n":"Obafemi","f":"Michael","fp":"A","r":9,"c":35,"s":{"g":1,"s":55,"n":12,"a":4.58,"d":0.7,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":1,"Os":59.5,"On":13,"Oa":4.58,"Od":0.67,"pa":13},"p":[[-27,{"n":4.5,"e":3429,"s":1}],[26,{"n":4,"e":4056,"s":1}],[25,{"n":4.5,"e":4062,"s":1}],[24,{"n":6,"e":4077}],[21,{"n":4,"e":4105,"s":1}],[19,{"n":6,"e":4120,"g":1}],[18,{"n":4.5,"e":4128,"s":1}],[14,{"n":4,"e":4177}],[13,{"n":4.5,"e":4178}],[12,{"n":4.5,"e":4193,"s":1}],[8,{"n":4.5,"e":4233,"s":1}],[7,{"n":4.5,"e":4243,"s":1}],[1,{"n":4,"e":4301,"s":1}]],"fo":[[4056,[{"t":"Y"}]]]}],[2484,{"n":"Mohamed Elyounoussi","f":"","fp":"MD","r":7,"c":35,"s":{"Os":8,"On":2,"Oa":4,"Od":1.41,"pm":2},"p":[[-37,{"n":3,"e":3536}],[-27,{"n":5,"e":3429,"s":1}]]}],[2486,{"n":"Vestergaard","f":"Jannik","fp":"DC","r":8,"c":35,"s":{"g":1,"s":62,"n":13,"a":4.77,"d":1.38,"Og":1,"Os":95.5,"On":19,"Oa":5.03,"Od":1.27,"pd":19},"p":[[-34,{"n":6,"e":3505}],[-33,{"n":5.5,"e":3494}],[-30,{"n":5.5,"e":3467}],[-29,{"n":5,"e":3453}],[-28,{"n":7,"e":3445}],[-27,{"n":4.5,"e":3429}],[26,{"n":3.5,"e":4056}],[24,{"n":5.5,"e":4077}],[12,{"n":4,"e":4193}],[11,{"n":5.5,"e":4204}],[10,{"n":3,"e":4215}],[9,{"n":5.5,"e":4227}],[7,{"n":4.5,"e":4243}],[6,{"n":3,"e":4248}],[5,{"n":6,"e":4261}],[4,{"n":6.5,"e":4268,"g":1}],[3,{"n":7,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":3,"e":4301}]],"fo":[[4056,[{"t":"Y"}]]],"a":{"m":8,"a":12,"M":16,"n":5}}],[2488,{"n":"Armstrong","f":"Stuart","fp":"MO","r":15,"c":35,"s":{"g":2,"s":97.5,"n":19,"a":5.13,"d":1,"Og":2,"Os":138,"On":28,"Oa":4.93,"Od":0.96,"pm":26,"pa":2},"p":[[-37,{"n":3.5,"e":3536}],[-36,{"n":4.5,"e":3525,"s":1}],[-35,{"n":4.5,"e":3515,"s":1}],[-33,{"n":4.5,"e":3494,"s":1}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3475}],[-30,{"n":6,"e":3467,"s":1}],[-29,{"n":4.5,"e":3453,"s":1}],[-27,{"n":3.5,"e":3429}],[26,{"n":4.5,"e":4056}],[24,{"n":7.5,"e":4077,"g":1}],[23,{"n":4,"e":4085}],[22,{"n":7,"e":4093,"g":1}],[21,{"n":5,"e":4105}],[20,{"n":4.5,"e":4115,"s":1}],[19,{"n":7,"e":4120}],[18,{"n":5,"e":4128}],[17,{"n":5,"e":4146,"s":1}],[13,{"n":5,"e":4178}],[12,{"n":3.5,"e":4193}],[11,{"n":5,"e":4204}],[10,{"n":4.5,"e":4215,"s":1}],[7,{"n":5,"e":4243,"s":1}],[6,{"n":5,"e":4248,"s":1}],[5,{"n":5,"e":4261,"s":1}],[4,{"n":5,"e":4268,"s":1}],[3,{"n":5,"e":4280,"s":1}],[2,{"n":5,"e":4293,"s":1}]],"fo":[[4093,[{"t":"Y"}]]]}],[2543,{"n":"Valery","f":"Yan","fp":"DL","r":6,"c":35,"s":{"s":31,"n":8,"a":3.88,"d":1.46,"Og":2,"Os":82.5,"On":19,"Oa":4.34,"Od":1.12,"pd":9,"pm":10},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3,"e":3536}],[-36,{"n":5,"e":3525}],[-34,{"n":5,"e":3505}],[-33,{"n":4,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":5,"e":3475,"s":1}],[-30,{"n":5,"e":3467,"g":1}],[-29,{"n":5,"e":3453,"g":1}],[-28,{"n":5.5,"e":3445}],[-27,{"n":4.5,"e":3429}],[14,{"n":5,"e":4177,"s":1}],[11,{"n":4.5,"e":4204}],[10,{"n":1,"e":4215}],[9,{"n":5,"e":4227}],[8,{"n":3.5,"e":4233}],[3,{"n":4.5,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":2.5,"e":4301}]]}],[2561,{"n":"Jones","f":"Alfie","fp":"MD","r":1,"c":35}],[2581,{"n":"Flannigan","f":"Jake","fp":"MD","r":1,"c":35}],[2582,{"n":"Gallagher","f":"Sam","fp":"A","r":3,"c":35,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pa":2},"p":[[-32,{"n":4,"e":3479,"s":1}],[-29,{"n":4.5,"e":3453,"s":1}]]}],[2974,{"n":"Ramsay","f":"Kayne","fp":"DL","r":1,"c":35}],[2982,{"n":"Johnson","f":"Tyreke","fp":"MD","r":1,"c":35}],[2983,{"n":"Slattery","f":"Callum","fp":"MO","r":1,"c":35}],[2985,{"n":"Barnes","f":"Marcus","fp":"A","r":1,"c":35}],[3643,{"n":"Djenepo","f":"Moussa","fp":"MO","r":11,"c":35,"s":{"g":2,"s":83.5,"n":16,"a":5.22,"d":1.05,"Ss":4,"Sn":1,"Sa":4,"Og":2,"Os":83.5,"On":16,"Oa":5.22,"Od":1.05,"pm":15,"pa":1},"p":[[26,{"n":4,"e":4056,"s":1}],[25,{"n":4,"e":4062}],[23,{"n":5,"e":4085,"s":1}],[22,{"n":4.5,"e":4093,"s":1}],[21,{"n":4.5,"e":4105}],[20,{"n":6,"e":4115,"s":1}],[17,{"n":5.5,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":5,"e":4165}],[14,{"n":7,"e":4177}],[13,{"n":5,"e":4178,"s":1}],[12,{"n":4,"e":4193}],[11,{"n":5,"e":4204,"s":1}],[5,{"n":7.5,"e":4261,"g":1}],[3,{"n":6.5,"e":4280,"g":1,"s":1}],[2,{"n":5,"e":4293,"s":1}]],"fo":[[4105,[{"t":"Y"}]]]}],[3668,{"n":"Adams","f":"Che","fp":"A","r":10,"c":35,"s":{"s":90,"n":20,"a":4.5,"d":0.79,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.75,"Os":90,"On":20,"Oa":4.5,"Od":0.79,"pa":20},"p":[[26,{"n":4.5,"e":4056,"s":1}],[25,{"n":4.5,"e":4062,"s":1}],[24,{"n":4.5,"e":4077,"s":1}],[23,{"n":4.5,"e":4085,"s":1}],[22,{"n":6,"e":4093,"s":1}],[20,{"n":4.5,"e":4115}],[19,{"n":5,"e":4120}],[18,{"n":4,"e":4128,"s":1}],[17,{"n":4.5,"e":4146,"s":1}],[16,{"n":4.5,"e":4153,"s":1}],[15,{"n":4,"e":4165,"s":1}],[12,{"n":4,"e":4193,"s":1}],[11,{"n":4.5,"e":4204,"s":1}],[8,{"n":4.5,"e":4233,"s":1}],[6,{"n":5.5,"e":4248}],[5,{"n":6,"e":4261}],[4,{"n":4,"e":4268}],[3,{"n":5,"e":4280}],[2,{"n":3.5,"e":4293}],[1,{"n":2.5,"e":4301}]]}],[5436,{"n":"Vokins","f":"Jake","fp":"DL","r":1,"c":35}],[5437,{"n":"Smallbone","f":"William","fp":"A","r":1,"c":35}],[6148,{"n":"N'Lundulu","f":"Daniel","fp":"A","r":1,"c":35}],[6149,{"n":"Danso","f":"Kevin","fp":"DC","r":3,"c":35,"s":{"s":27.5,"n":6,"a":4.58,"d":0.86,"Os":27.5,"On":6,"Oa":4.58,"Od":0.86,"pd":3,"pm":3},"p":[[11,{"n":5.5,"e":4204,"s":1}],[10,{"n":5,"e":4215,"s":1}],[9,{"n":4.5,"e":4227,"s":1}],[6,{"n":3,"e":4248}],[4,{"n":4.5,"e":4268}],[3,{"n":5,"e":4280}]]}],[8,{"n":"Lucas Moura","f":"","fp":"MO","r":17,"c":24,"s":{"g":4,"s":124.5,"n":24,"a":5.19,"d":1.06,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":8,"Os":179.5,"On":35,"Oa":5.13,"Od":1.13,"pm":19,"pa":16},"p":[[23,{"n":5,"e":4086}],[17,{"n":7,"e":4147,"g":1}],[-38,{"n":5,"e":3546}],[-37,{"n":5,"e":3528}],[-36,{"n":4,"e":3526}],[-35,{"n":4,"e":3514}],[-34,{"n":8.5,"e":3506,"g":3}],[-33,{"n":5,"e":3495}],[-32,{"n":6,"e":3485,"g":1}],[-31,{"n":4.5,"e":3474,"s":1}],[-30,{"n":4,"e":3467}],[-28,{"n":4.5,"e":3443,"s":1}],[-27,{"n":4.5,"e":3430,"s":1}],[26,{"n":7,"e":4049}],[25,{"n":6,"e":4065}],[24,{"n":4.5,"e":4076}],[22,{"n":5,"e":4096}],[21,{"n":5.5,"e":4105}],[20,{"n":3.5,"e":4114,"s":1}],[19,{"n":4.5,"e":4126}],[18,{"n":3.5,"e":4135}],[16,{"n":7.5,"e":4155,"g":1}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4173,"s":1}],[13,{"n":5.5,"e":4187,"g":1}],[12,{"n":5.5,"e":4194,"s":1}],[11,{"n":4,"e":4203}],[10,{"n":5,"e":4211,"s":1}],[9,{"n":5,"e":4226}],[8,{"n":5.5,"e":4228,"s":1}],[6,{"n":5,"e":4249,"s":1}],[5,{"n":5,"e":4262,"s":1}],[3,{"n":3.5,"e":4287}],[2,{"n":6,"e":4294,"g":1,"s":1}],[1,{"n":6,"e":4304}]],"fo":[[4114,[{"t":"Y"}]],[4126,[{"t":"Y"}]]],"a":{"m":18,"a":26,"M":40,"n":6}}],[21,{"n":"Aurier","f":"Serge","fp":"DL","r":16,"c":24,"s":{"ao":1,"s":108,"n":21,"a":5.14,"d":1.05,"Sao":1,"Ss":90.5,"Sn":17,"Sa":5.32,"Sd":0.86,"Oao":1,"Os":112.5,"On":22,"Oa":5.11,"Od":1.03,"pd":17,"pm":5},"p":[[-27,{"n":4.5,"e":3430}],[26,{"n":4.5,"e":4049}],[25,{"n":5,"e":4065}],[24,{"n":7,"e":4076}],[23,{"n":4.5,"e":4086}],[22,{"n":6,"e":4096}],[21,{"n":6,"e":4105}],[20,{"n":5,"e":4114,"a":1}],[19,{"n":5,"e":4126}],[18,{"n":5,"e":4135}],[17,{"n":5,"e":4147}],[16,{"n":5.5,"e":4155}],[15,{"n":6,"e":4163}],[14,{"n":5,"e":4173}],[13,{"n":6,"e":4187}],[12,{"n":5.5,"e":4194}],[11,{"n":6,"e":4203}],[10,{"n":3,"e":4211}],[9,{"n":5,"e":4226}],[7,{"n":3.5,"e":4243}],[6,{"n":3,"e":4249}],[5,{"n":6.5,"e":4262}]],"fo":[[4105,[{"t":"Y"}]]]}],[295,{"n":"Lo Celso","f":"Giovani","fp":"MO","r":12,"c":24,"s":{"s":77.5,"n":16,"a":4.84,"d":0.54,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.8,"Og":5,"Os":146.5,"On":29,"Oa":5.05,"Od":1.05,"pm":21,"pa":8},"p":[[-38,{"n":6.5,"e":2350}],[-37,{"n":4.5,"e":2335}],[-36,{"n":4,"e":2330}],[-35,{"n":7,"e":2314}],[-33,{"n":5,"e":2294,"g":1}],[-32,{"n":6,"e":2288,"g":1}],[-31,{"n":8,"e":2273,"g":2}],[-30,{"n":4.5,"e":2269}],[-29,{"n":4,"e":2258}],[-28,{"n":4,"e":2246}],[-26,{"n":3.5,"e":2222}],[-24,{"n":7,"e":2205,"g":1}],[-27,{"n":5,"e":2239}],[26,{"n":4.5,"e":4049,"s":1}],[25,{"n":6,"e":4065}],[24,{"n":5.5,"e":4076}],[23,{"n":5.5,"e":4086}],[22,{"n":4,"e":4096,"s":1}],[21,{"n":4.5,"e":4105,"s":1}],[20,{"n":4.5,"e":4114}],[19,{"n":4,"e":4126,"s":1}],[15,{"n":4.5,"e":4163,"s":1}],[14,{"n":5,"e":4173,"s":1}],[12,{"n":5,"e":4194}],[11,{"n":4.5,"e":4203,"s":1}],[10,{"n":5,"e":4211,"s":1}],[4,{"n":5,"e":4277,"s":1}],[3,{"n":5,"e":4287,"s":1}],[2,{"n":5,"e":4294,"s":1}]],"fo":[[4065,[{"t":"Y"}]],[4105,[{"t":"Y"}]]]}],[589,{"n":"Kane","f":"Harry","fp":"A","r":15,"c":24,"s":{"g":11,"s":111,"n":20,"a":5.55,"d":1.41,"Og":14,"Os":142.5,"On":26,"Oa":5.48,"Od":1.33,"pa":26},"p":[[-32,{"n":4,"e":3485}],[-31,{"n":5,"e":3474}],[-30,{"n":6.5,"e":3467,"g":1}],[-29,{"n":6,"e":3454,"g":1}],[-28,{"n":4,"e":3443}],[-27,{"n":6,"e":3430,"g":1}],[21,{"n":5.5,"e":4105}],[20,{"n":6,"e":4114,"g":1}],[19,{"n":7,"e":4126,"g":1}],[18,{"n":5,"e":4135}],[17,{"n":5.5,"e":4147}],[16,{"n":8.5,"e":4155,"g":2}],[15,{"n":4.5,"e":4163}],[14,{"n":5,"e":4173}],[13,{"n":6,"e":4187,"g":1}],[12,{"n":3.5,"e":4194}],[10,{"n":6,"e":4211,"g":1}],[9,{"n":4.5,"e":4226}],[8,{"n":3.5,"e":4228}],[7,{"n":6,"e":4243,"g":1}],[6,{"n":7,"e":4249,"g":1}],[5,{"n":6,"e":4262}],[4,{"n":6,"e":4277,"g":1}],[3,{"n":3.5,"e":4287}],[2,{"n":4,"e":4294}],[1,{"n":8,"e":4304,"g":2}]],"fo":[[4105,[{"t":"I"}]],[4147,[{"t":"Y"}]]],"a":{"m":30,"a":83,"M":111,"n":15}}],[596,{"n":"Dele Alli","f":"","fp":"MO","r":29,"c":24,"s":{"g":7,"s":110,"n":19,"a":5.79,"d":1.13,"Sg":7,"Ss":100.5,"Sn":17,"Sa":5.91,"Sd":1.14,"Og":7,"Os":149,"On":27,"Oa":5.52,"Od":1.1,"pm":23,"pa":4},"p":[[-38,{"n":3.5,"e":3546}],[-37,{"n":5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-33,{"n":5,"e":3495}],[-32,{"n":4.5,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":5.5,"e":3467}],[26,{"n":5,"e":4049}],[25,{"n":5.5,"e":4065}],[24,{"n":7,"e":4076,"g":1}],[23,{"n":6,"e":4086}],[22,{"n":4,"e":4096}],[21,{"n":4.5,"e":4105}],[20,{"n":4.5,"e":4114}],[19,{"n":6.5,"e":4126,"g":1}],[18,{"n":4.5,"e":4135}],[17,{"n":6.5,"e":4147}],[16,{"n":7,"e":4155}],[15,{"n":7,"e":4163,"g":1}],[14,{"n":8,"e":4173,"g":2}],[13,{"n":6,"e":4187}],[12,{"n":5.5,"e":4194}],[11,{"n":7,"e":4203,"g":1}],[10,{"n":5,"e":4211}],[9,{"n":6,"e":4226,"g":1}],[4,{"n":4.5,"e":4277,"s":1}]],"fo":[[4065,[{"t":"I"}]],[4135,[{"t":"Y"}]]],"a":{"m":32,"a":47,"M":64,"n":12}}],[613,{"n":"Lloris","f":"Hugo","fp":"G","r":18,"c":24,"s":{"s":58,"n":10,"a":5.8,"d":1.44,"Ss":13.5,"Sn":2,"Sa":6.75,"Sd":1.77,"Os":118,"On":21,"Oa":5.62,"Od":1.21,"pg":21},"p":[[-38,{"n":6.5,"e":3546}],[-37,{"n":6,"e":3528}],[-36,{"n":6.5,"e":3526}],[-34,{"n":5.5,"e":3506}],[-33,{"n":6,"e":3495}],[-32,{"n":4,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":4.5,"e":3467}],[-29,{"n":6.5,"e":3454}],[-28,{"n":4,"e":3443}],[-27,{"n":4.5,"e":3430}],[26,{"n":5.5,"e":4049}],[25,{"n":8,"e":4065}],[24,{"n":5.5,"e":4076}],[8,{"n":3,"e":4228}],[7,{"n":5,"e":4243}],[5,{"n":7,"e":4262}],[4,{"n":6,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":7.5,"e":4294}],[1,{"n":5.5,"e":4304}]],"a":{"m":7,"a":8,"M":9,"n":7}}],[635,{"n":"Wanyama","f":"Victor","fp":"MD","r":1,"c":24,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":51.5,"On":10,"Oa":5.15,"Od":0.91,"pm":10},"p":[[-38,{"n":5,"e":3546,"s":1}],[-37,{"n":4.5,"e":3528,"s":1}],[-36,{"n":5,"e":3526,"s":1}],[-35,{"n":5,"e":3514,"s":1}],[-34,{"n":7.5,"e":3506,"g":1}],[-33,{"n":5.5,"e":3495}],[-31,{"n":5,"e":3474,"s":1}],[-29,{"n":4,"e":3454}],[7,{"n":5,"e":4243,"s":1}],[6,{"n":5,"e":4249,"s":1}]]}],[652,{"n":"Alderweireld","f":"Toby","fp":"DC","r":17,"c":24,"s":{"g":1,"ao":1,"s":129,"n":25,"a":5.16,"d":0.72,"Ss":68.5,"Sn":13,"Sa":5.27,"Sd":0.53,"Og":1,"Oao":2,"Os":179.5,"On":35,"Oa":5.13,"Od":0.77,"pd":35},"p":[[-38,{"n":4,"e":3546}],[-37,{"n":5,"e":3528}],[-36,{"n":5,"e":3526}],[-35,{"n":5.5,"e":3514}],[-33,{"n":7,"e":3495}],[-32,{"n":4,"e":3485,"a":1}],[-31,{"n":6,"e":3474}],[-29,{"n":5,"e":3454}],[-28,{"n":4.5,"e":3443}],[-27,{"n":4.5,"e":3430}],[26,{"n":5,"e":4049,"g":1,"a":1}],[25,{"n":6,"e":4065}],[24,{"n":6,"e":4076}],[23,{"n":5,"e":4086}],[22,{"n":5.5,"e":4096}],[21,{"n":5,"e":4105}],[20,{"n":5,"e":4114}],[19,{"n":5,"e":4126}],[18,{"n":4.5,"e":4135}],[17,{"n":5.5,"e":4147}],[16,{"n":5.5,"e":4155}],[15,{"n":5,"e":4163}],[14,{"n":6,"e":4173}],[13,{"n":4.5,"e":4187}],[11,{"n":4.5,"e":4203}],[10,{"n":5.5,"e":4211}],[9,{"n":5,"e":4226}],[8,{"n":4,"e":4228}],[7,{"n":5.5,"e":4243}],[6,{"n":4,"e":4249}],[5,{"n":7,"e":4262}],[4,{"n":4,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":5,"e":4294}],[1,{"n":6,"e":4304}]],"fo":[[4065,[{"t":"Y"}]],[4114,[{"t":"Y"}]],[4135,[{"t":"Y"}]],[4147,[{"t":"Y"}]]],"a":{"m":16,"a":20,"M":31,"n":7}}],[658,{"n":"Vertonghen","f":"Jan","fp":"DC","r":12,"c":24,"s":{"g":1,"s":86.5,"n":17,"a":5.09,"d":0.94,"Og":1,"Os":128,"On":25,"Oa":5.12,"Od":0.93,"pd":25},"p":[[-35,{"n":5,"e":3514}],[-34,{"n":5.5,"e":3506}],[-33,{"n":6.5,"e":3495}],[-32,{"n":4,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":4,"e":3467}],[-29,{"n":6,"e":3454}],[-27,{"n":4.5,"e":3430}],[26,{"n":5,"e":4049,"s":1}],[24,{"n":5.5,"e":4076}],[23,{"n":4,"e":4086}],[21,{"n":5,"e":4105}],[20,{"n":4,"e":4114}],[19,{"n":6,"e":4126}],[18,{"n":4.5,"e":4135}],[17,{"n":6,"e":4147,"g":1}],[16,{"n":7,"e":4155}],[15,{"n":4.5,"e":4163}],[14,{"n":5,"e":4173}],[9,{"n":5.5,"e":4226}],[8,{"n":3.5,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":6,"e":4262}],[4,{"n":4,"e":4277}]],"fo":[[4076,[{"t":"I"}]],[4086,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":25,"n":7}}],[687,{"n":"Sissoko","f":"Moussa","fp":"MO","r":6,"c":24,"s":{"g":2,"s":104.5,"n":20,"a":5.23,"d":1.01,"Og":2,"Os":150.5,"On":29,"Oa":5.19,"Od":0.92,"pd":1,"pm":28},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":5.5,"e":3528}],[-34,{"n":6.5,"e":3506}],[-32,{"n":4.5,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":4.5,"e":3467}],[-29,{"n":4.5,"e":3454}],[-28,{"n":5,"e":3443}],[-27,{"n":4.5,"e":3430}],[21,{"n":4,"e":4105}],[19,{"n":5,"e":4126}],[18,{"n":4,"e":4135}],[17,{"n":6,"e":4147}],[16,{"n":7,"e":4155,"g":1}],[15,{"n":4,"e":4163}],[14,{"n":7,"e":4173,"g":1}],[13,{"n":4.5,"e":4187,"s":1}],[12,{"n":5,"e":4194}],[11,{"n":5.5,"e":4203}],[10,{"n":5,"e":4211}],[9,{"n":5,"e":4226}],[8,{"n":3,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5.5,"e":4249}],[5,{"n":6,"e":4262}],[4,{"n":5,"e":4277}],[3,{"n":6,"e":4287}],[2,{"n":5.5,"e":4294}],[1,{"n":5.5,"e":4304}]],"fo":[[4105,[{"t":"Y"}]],[4126,[{"t":"Y"}]],[4135,[{"t":"Y"}]]]}],[724,{"n":"Dier","f":"Eric","fp":"MD","r":11,"c":24,"s":{"s":57,"n":12,"a":4.75,"d":0.62,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":81,"On":17,"Oa":4.76,"Od":0.56,"pd":2,"pm":15},"p":[[-38,{"n":5.5,"e":3546,"g":1}],[-37,{"n":5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":4.5,"e":3514}],[-30,{"n":4.5,"e":3467}],[26,{"n":5,"e":4049}],[25,{"n":5,"e":4065,"s":1}],[24,{"n":5,"e":4076,"s":1}],[19,{"n":5,"e":4126,"s":1}],[18,{"n":3.5,"e":4135}],[17,{"n":5,"e":4147}],[16,{"n":6,"e":4155}],[14,{"n":5,"e":4173}],[13,{"n":4.5,"e":4187}],[12,{"n":4.5,"e":4194}],[8,{"n":4,"e":4228}],[7,{"n":4.5,"e":4243,"s":1}]],"fo":[[4147,[{"t":"Y"}]]]}],[783,{"n":"Dembélé","f":"Mousa","fp":"MD","r":3,"c":24}],[786,{"n":"Lamela","f":"Erik","fp":"MO","r":11,"c":24,"s":{"g":2,"s":77.5,"n":15,"a":5.17,"d":1.01,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.38,"Og":2,"Os":95.5,"On":19,"Oa":5.03,"Od":0.95,"pm":18,"pa":1},"p":[[-38,{"n":4.5,"e":3546}],[-29,{"n":5,"e":3454,"s":1}],[-28,{"n":4,"e":3443}],[-27,{"n":4.5,"e":3430,"s":1}],[25,{"n":5,"e":4065,"s":1}],[24,{"n":5.5,"e":4076}],[23,{"n":5,"e":4086}],[22,{"n":4.5,"e":4096,"s":1}],[21,{"n":5,"e":4105,"s":1}],[20,{"n":4.5,"e":4114,"s":1}],[9,{"n":5,"e":4226,"s":1}],[8,{"n":3.5,"e":4228}],[7,{"n":5,"e":4243,"s":1}],[6,{"n":5.5,"e":4249}],[5,{"n":7,"e":4262,"g":1}],[4,{"n":5.5,"e":4277}],[3,{"n":3.5,"e":4287}],[2,{"n":7,"e":4294,"g":1}],[1,{"n":6,"e":4304}]],"a":{"m":13,"a":15,"M":17,"n":5}}],[799,{"n":"Vorm","f":"Michel","fp":"G","r":7,"c":24}],[824,{"n":"Son Heung-Min","f":"","fp":"A","r":37,"c":24,"s":{"g":9,"s":125,"n":21,"a":5.95,"d":1.41,"Sg":2,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":0.63,"Og":10,"Os":177,"On":32,"Oa":5.53,"Od":1.4,"pm":17,"pa":15},"p":[[-37,{"n":3.5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":6,"e":3506,"s":1}],[-33,{"n":5,"e":3495}],[-32,{"n":4.5,"e":3485,"s":1}],[-31,{"n":7,"e":3474,"g":1}],[-30,{"n":4.5,"e":3467,"s":1}],[-29,{"n":4,"e":3454}],[-28,{"n":4,"e":3443}],[-27,{"n":4,"e":3430}],[26,{"n":8,"e":4049,"g":2}],[25,{"n":7,"e":4065,"g":1}],[24,{"n":6,"e":4076,"g":1}],[23,{"n":6,"e":4086}],[22,{"n":5.5,"e":4096}],[18,{"n":4,"e":4135}],[17,{"n":5.5,"e":4147}],[16,{"n":8,"e":4155,"g":1}],[15,{"n":5.5,"e":4163}],[14,{"n":7.5,"e":4173}],[13,{"n":8,"e":4187,"g":1}],[12,{"n":6.5,"e":4194,"g":1}],[11,{"n":4.5,"e":4203}],[10,{"n":6,"e":4211}],[9,{"n":4,"e":4226,"s":1}],[8,{"n":3.5,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":8,"e":4262,"g":2}],[4,{"n":6,"e":4277}],[3,{"n":4.5,"e":4287}]],"fo":[[4135,[{"t":"R"}]]],"a":{"m":37,"a":51,"M":71,"n":12}}],[831,{"n":"Winks","f":"Harry","fp":"MD","r":10,"c":24,"s":{"s":107,"n":21,"a":5.1,"d":0.72,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.58,"Os":123,"On":24,"Oa":5.13,"Od":0.71,"pm":24},"p":[[-31,{"n":5.5,"e":3474,"s":1}],[-28,{"n":6,"e":3443}],[-27,{"n":4.5,"e":3430}],[26,{"n":5,"e":4049}],[25,{"n":6,"e":4065}],[24,{"n":6,"e":4076}],[23,{"n":5,"e":4086}],[22,{"n":5,"e":4096}],[19,{"n":4,"e":4126}],[17,{"n":5,"e":4147,"s":1}],[15,{"n":5.5,"e":4163}],[14,{"n":5,"e":4173,"s":1}],[13,{"n":4.5,"e":4187}],[12,{"n":5,"e":4194,"s":1}],[10,{"n":4.5,"e":4211}],[9,{"n":4.5,"e":4226}],[8,{"n":4,"e":4228,"s":1}],[7,{"n":6,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":7,"e":4262}],[4,{"n":5,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":4.5,"e":4294}],[1,{"n":5.5,"e":4304}]],"fo":[[4076,[{"t":"I"}]],[4086,[{"t":"Y"}]],[4126,[{"t":"Y"}]]]}],[847,{"n":"Janssen","f":"Vincent","fp":"A","r":1,"c":24,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[-38,{"n":4.5,"e":3546,"s":1}],[-36,{"n":5,"e":3526,"s":1}],[-33,{"n":4.5,"e":3495,"s":1}]]}],[896,{"n":"Davies","f":"Ben","fp":"DL","r":3,"c":24,"s":{"s":33,"n":7,"a":4.71,"d":0.81,"Os":84,"On":17,"Oa":4.94,"Od":0.68,"pd":16,"pm":1},"p":[[-38,{"n":4.5,"e":3546}],[-37,{"n":5,"e":3528,"s":1}],[-36,{"n":5.5,"e":3526}],[-35,{"n":4.5,"e":3514}],[-34,{"n":6,"e":3506}],[-33,{"n":5,"e":3495,"s":1}],[-32,{"n":5,"e":3485,"s":1}],[-31,{"n":6,"e":3474}],[-30,{"n":5,"e":3467,"s":1}],[-28,{"n":4.5,"e":3443}],[26,{"n":6,"e":4049}],[13,{"n":5,"e":4187}],[12,{"n":4,"e":4194}],[11,{"n":4.5,"e":4203}],[8,{"n":3.5,"e":4228}],[5,{"n":5,"e":4262,"s":1}],[3,{"n":5,"e":4287,"s":1}]]}],[918,{"n":"Nkoudou","f":"Georges-Kévin","fp":"MD","r":5,"c":24,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[1,{"n":5,"e":4304,"s":1}]]}],[969,{"n":"Onomah","f":"Josh","fp":"MD","r":3,"c":24}],[999,{"n":"Carter-Vickers","f":"Cameron","fp":"DC","r":5,"c":24}],[1072,{"n":"Whiteman","f":"Alfie","fp":"G","r":1,"c":24}],[1314,{"n":"Sánchez","f":"Davinson","fp":"DC","r":12,"c":24,"s":{"s":96,"n":19,"a":5.05,"d":0.6,"Ss":6,"Sn":1,"Sa":6,"Os":133.5,"On":27,"Oa":4.94,"Od":0.74,"pd":27},"p":[[-37,{"n":5.5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":6,"e":3506}],[-32,{"n":5.5,"e":3485}],[-30,{"n":4,"e":3467}],[-29,{"n":3,"e":3454}],[-28,{"n":4,"e":3443}],[26,{"n":5.5,"e":4049}],[25,{"n":6,"e":4065}],[22,{"n":5,"e":4096}],[20,{"n":5,"e":4114,"s":1}],[19,{"n":4.5,"e":4126}],[18,{"n":5,"e":4135}],[17,{"n":5,"e":4147}],[16,{"n":6,"e":4155}],[15,{"n":5.5,"e":4163}],[14,{"n":4.5,"e":4173}],[13,{"n":5,"e":4187}],[12,{"n":5,"e":4194}],[11,{"n":5,"e":4203}],[10,{"n":5.5,"e":4211}],[9,{"n":4,"e":4226}],[4,{"n":4,"e":4277}],[3,{"n":4.5,"e":4287}],[2,{"n":5,"e":4294}],[1,{"n":6,"e":4304}]],"fo":[[4126,[{"t":"Y"}]],[4147,[{"t":"Y"}]]],"a":{"m":12,"a":14,"M":16,"n":11}}],[1391,{"n":"Gazzaniga","f":"Paulo","fp":"G","r":9,"c":24,"s":{"s":94,"n":17,"a":5.53,"d":1.07,"Os":99.5,"On":18,"Oa":5.53,"Od":1.04,"pg":18},"p":[[-35,{"n":5.5,"e":3514}],[23,{"n":7,"e":4086}],[22,{"n":6.5,"e":4096}],[21,{"n":5.5,"e":4105}],[20,{"n":4.5,"e":4114}],[19,{"n":6,"e":4126}],[18,{"n":4,"e":4135}],[17,{"n":6,"e":4147}],[16,{"n":6,"e":4155}],[15,{"n":5,"e":4163}],[14,{"n":6,"e":4173}],[13,{"n":5,"e":4187}],[12,{"n":5,"e":4194}],[11,{"n":5,"e":4203}],[10,{"n":8,"e":4211}],[9,{"n":4.5,"e":4226}],[8,{"n":4,"e":4228,"s":1}],[6,{"n":6,"e":4249}]],"fo":[[4135,[{"t":"Y"}]]]}],[1414,{"n":"Ndombele","f":"Tanguy","fp":"MD","r":15,"c":24,"s":{"g":2,"s":84.5,"n":16,"a":5.28,"d":0.89,"Ss":6,"Sn":1,"Sa":6,"Og":3,"Os":156,"On":28,"Oa":5.57,"Od":0.97,"pm":28},"p":[[-38,{"n":7,"e":3109,"g":1}],[-36,{"n":7.5,"e":3087}],[-34,{"n":5.5,"e":3064}],[-33,{"n":6,"e":3054}],[-32,{"n":6,"e":3048}],[-31,{"n":4.5,"e":3036,"s":1}],[-30,{"n":6,"e":3028}],[-29,{"n":7,"e":3017}],[-27,{"n":6,"e":2997}],[-37,{"n":6.5,"e":3095}],[-35,{"n":5,"e":3074}],[-26,{"n":4.5,"e":2985}],[25,{"n":6,"e":4065,"s":1}],[21,{"n":5.5,"e":4105}],[20,{"n":5.5,"e":4114}],[18,{"n":5.5,"e":4135,"s":1}],[15,{"n":5,"e":4163,"s":1}],[14,{"n":5.5,"e":4173}],[12,{"n":4,"e":4194}],[11,{"n":5,"e":4203}],[10,{"n":5,"e":4211,"s":1}],[9,{"n":5,"e":4226,"s":1}],[8,{"n":4,"e":4228}],[7,{"n":7.5,"e":4243,"g":1}],[6,{"n":4.5,"e":4249}],[5,{"n":4.5,"e":4262,"s":1}],[2,{"n":6.5,"e":4294}],[1,{"n":5.5,"e":4304,"g":1}]],"fo":[[4105,[{"t":"I"}]]]}],[2028,{"n":"Foyth","f":"Juan","fp":"DC","r":5,"c":24,"s":{"s":18,"n":4,"a":4.5,"d":1,"Os":47.5,"On":10,"Oa":4.75,"Od":1.06,"pd":10},"p":[[-37,{"n":3.5,"e":3528,"s":1}],[-36,{"n":5,"e":3526}],[-35,{"n":4.5,"e":3514}],[-34,{"n":7,"e":3506}],[-33,{"n":5,"e":3495,"s":1}],[-27,{"n":4.5,"e":3430}],[20,{"n":3,"e":4114}],[17,{"n":5,"e":4147,"s":1}],[12,{"n":5,"e":4194,"s":1}],[11,{"n":5,"e":4203,"s":1}]]}],[2063,{"n":"Georgiou","f":"Anthony","fp":"MD","r":5,"c":24}],[2205,{"n":"Amos","f":"Luke","fp":"MD","r":1,"c":24}],[2228,{"n":"Sterling","f":"Kazaiah","fp":"A","r":1,"c":24}],[2558,{"n":"Ryan Sessegnon","f":"","fp":"MO","r":9,"c":24,"s":{"s":28.5,"n":6,"a":4.75,"d":0.27,"Os":80,"On":18,"Oa":4.44,"Od":0.8,"pd":3,"pm":13,"pa":2},"p":[[-38,{"n":3,"e":3541}],[-37,{"n":4.5,"e":3537}],[-36,{"n":4,"e":3521}],[-35,{"n":6,"e":3508}],[-34,{"n":4.5,"e":3501}],[-33,{"n":5.5,"e":3496}],[-32,{"n":3.5,"e":3483}],[-31,{"n":5,"e":3472,"s":1}],[-30,{"n":3,"e":3463}],[-29,{"n":4.5,"e":3452}],[-28,{"n":4.5,"e":3445,"s":1}],[-27,{"n":3.5,"e":3437}],[24,{"n":4.5,"e":4076}],[21,{"n":5,"e":4105}],[20,{"n":4.5,"e":4114}],[19,{"n":4.5,"e":4126}],[16,{"n":5,"e":4155,"s":1}],[11,{"n":5,"e":4203,"s":1}]]}],[2929,{"n":"Skipp","f":"Oliver","fp":"MD","r":1,"c":24,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":24.5,"On":5,"Oa":4.9,"Od":0.22,"pm":5},"p":[[-38,{"n":5,"e":3546,"s":1}],[-34,{"n":5,"e":3506,"s":1}],[16,{"n":4.5,"e":4155,"s":1}],[2,{"n":5,"e":4294,"s":1}],[1,{"n":5,"e":4304,"s":1}]]}],[2930,{"n":"Eyoma","f":"Timothy","fp":"DC","r":1,"c":24}],[2932,{"n":"Marsh","f":"George","fp":"MD","r":1,"c":24}],[5413,{"n":"White","f":"Harvey","fp":"MD","r":1,"c":24}],[5414,{"n":"Parrott","f":"Troy","fp":"A","r":5,"c":24,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[16,{"n":4.5,"e":4155,"s":1}]]}],[5424,{"n":"Jonathan De Bie","f":"","fp":"G","r":1,"c":24}],[5427,{"n":"Lyons-Foster","f":"Brooklyn","fp":"DC","r":1,"c":24}],[5432,{"n":"Bowden","f":"Jamie","fp":"MD","r":1,"c":24}],[5439,{"n":"Roles","f":"Jack","fp":"MD","r":1,"c":24}],[5441,{"n":"Tanganga","f":"Japhet","fp":"DC","r":11,"c":24,"s":{"s":17,"n":3,"a":5.67,"d":0.58,"Ss":6,"Sn":1,"Sa":6,"Os":17,"On":3,"Oa":5.67,"Od":0.58,"pd":3},"p":[[25,{"n":6,"e":4065}],[23,{"n":5,"e":4086}],[22,{"n":6,"e":4096}]],"fo":[[4086,[{"t":"Y"}]]]}],[5996,{"n":"Austin","f":"Brandon","fp":"G","r":1,"c":24}],[6410,{"n":"Gedson Fernandes","f":"","fp":"MO","r":7,"c":24,"s":{"s":15,"n":3,"a":5,"Os":15,"On":3,"Oa":5,"pm":3},"p":[[26,{"n":5,"e":4049,"s":1}],[24,{"n":5,"e":4076,"s":1}],[23,{"n":5,"e":4086,"s":1}]]}],[6468,{"n":"Cirkin","f":"Dennis","fp":"DL","r":1,"c":24}],[6553,{"n":"Bergwijn","f":"Steven","fp":"A","r":18,"c":24,"s":{"s":7,"n":1,"a":7,"Os":7,"On":1,"Oa":7,"pm":1},"p":[[26,{"n":7,"e":4049}]]}],[230,{"n":"Sarr","f":"Ismaila","fp":"A","r":17,"c":33,"s":{"g":3,"s":91,"n":16,"a":5.69,"d":1.12,"Og":6,"Os":151,"On":27,"Oa":5.59,"Od":1.14,"pm":24,"pa":3},"p":[[7,{"n":3.5,"e":4244}],[3,{"n":5,"e":4283,"s":1}],[-37,{"n":6,"e":3100}],[-36,{"n":7,"e":3090,"g":1}],[-35,{"n":6,"e":3081,"g":1}],[-33,{"n":3.5,"e":3052}],[-31,{"n":4.5,"e":3033}],[-29,{"n":5,"e":3013}],[-28,{"n":7,"e":3008}],[-26,{"n":4.5,"e":2989}],[-38,{"n":7,"e":3111,"g":1}],[-32,{"n":5,"e":3049,"s":1}],[-30,{"n":4.5,"e":3028}],[23,{"n":6.5,"e":4086}],[22,{"n":7,"e":4089}],[21,{"n":6,"e":4106}],[20,{"n":7.5,"e":4116,"g":1}],[19,{"n":5,"e":4125}],[18,{"n":7,"e":4136,"g":1}],[17,{"n":5,"e":4143}],[16,{"n":7,"e":4156}],[15,{"n":5,"e":4160}],[14,{"n":6.5,"e":4177,"g":1}],[13,{"n":5,"e":4186,"s":1}],[8,{"n":5,"e":4234,"s":1}],[6,{"n":4.5,"e":4253,"s":1}],[5,{"n":5.5,"e":4266,"s":1}]],"fo":[[4086,[{"t":"I"}]],[4125,[{"t":"I"}]],[4116,[{"t":"Y"}]]]}],[450,{"n":"Lukebakio","f":"Dodi","fp":"MD","r":7,"c":33}],[640,{"n":"Deeney","f":"Troy","fp":"A","r":20,"c":33,"s":{"g":5,"s":75.5,"n":15,"a":5.03,"d":1.23,"Sg":5,"Ss":60,"Sn":11,"Sa":5.45,"Sd":1.17,"Og":9,"Os":121,"On":24,"Oa":5.04,"Od":1.5,"pa":24},"p":[[-38,{"n":4,"e":3547}],[-37,{"n":4,"e":3531}],[-34,{"n":2.5,"e":3507}],[-33,{"n":6.5,"e":3496,"g":1}],[-32,{"n":5,"e":3486}],[-30,{"n":6,"e":3465,"s":1}],[-29,{"n":7,"e":3455,"g":1}],[-28,{"n":2.5,"e":3446}],[-27,{"n":8,"e":3431,"g":2}],[26,{"n":4,"e":4050}],[25,{"n":5.5,"e":4066}],[24,{"n":5.5,"e":4068,"g":1}],[23,{"n":5,"e":4086}],[22,{"n":7,"e":4089,"g":1}],[21,{"n":5,"e":4106}],[20,{"n":8,"e":4116,"g":2}],[19,{"n":4.5,"e":4125}],[18,{"n":6,"e":4136,"g":1}],[17,{"n":4,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":4.5,"e":4160}],[13,{"n":4,"e":4186,"s":1}],[2,{"n":4,"e":4291}],[1,{"n":3.5,"e":4303}]],"fo":[[4089,[{"t":"Y"}]],[4106,[{"t":"Y"}]],[4116,[{"t":"Y"}]]],"a":{"m":18,"a":24,"M":47,"n":7}}],[653,{"n":"Dawson","f":"Craig","fp":"DC","r":10,"c":33,"s":{"s":91,"n":19,"a":4.79,"d":1.03,"Os":91,"On":19,"Oa":4.79,"Od":1.03,"pd":19},"p":[[24,{"n":4,"e":4068}],[23,{"n":5.5,"e":4086}],[22,{"n":6,"e":4089}],[21,{"n":5,"e":4106}],[20,{"n":5,"e":4116,"s":1}],[19,{"n":5,"e":4125,"s":1}],[13,{"n":5,"e":4186}],[12,{"n":6,"e":4192}],[11,{"n":4,"e":4206}],[10,{"n":6,"e":4216}],[9,{"n":6,"e":4226}],[8,{"n":5.5,"e":4234,"s":1}],[7,{"n":4,"e":4244}],[6,{"n":2,"e":4253}],[5,{"n":4.5,"e":4266}],[4,{"n":5,"e":4273}],[3,{"n":3.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":4,"e":4303}]],"fo":[[4106,[{"t":"Y"}]]]}],[688,{"n":"Gray","f":"Andre","fp":"A","r":9,"c":33,"s":{"g":2,"s":85,"n":19,"a":4.47,"d":0.87,"Og":5,"Os":145,"On":31,"Oa":4.68,"Od":0.94,"pa":31},"p":[[-38,{"n":4.5,"e":3547,"s":1}],[-37,{"n":4.5,"e":3531,"s":1}],[-36,{"n":6,"e":3527,"g":1}],[-35,{"n":4,"e":3513}],[-34,{"n":4.5,"e":3507}],[-33,{"n":7,"e":3496,"s":1}],[-32,{"n":4.5,"e":3486,"s":1}],[-31,{"n":6,"e":3475,"g":1}],[-30,{"n":4,"e":3465}],[-29,{"n":6,"e":3455,"g":1,"s":1}],[-28,{"n":4.5,"e":3446,"s":1}],[-27,{"n":4.5,"e":3431,"s":1}],[24,{"n":4.5,"e":4068,"s":1}],[22,{"n":5.5,"e":4089,"s":1}],[19,{"n":4,"e":4125,"s":1}],[17,{"n":4.5,"e":4143,"s":1}],[16,{"n":4.5,"e":4156,"s":1}],[15,{"n":4.5,"e":4160,"s":1}],[14,{"n":4,"e":4177,"s":1}],[13,{"n":3,"e":4186}],[12,{"n":6,"e":4192,"g":1,"s":1}],[11,{"n":4,"e":4206}],[10,{"n":4.5,"e":4216,"s":1}],[8,{"n":4,"e":4234}],[7,{"n":5,"e":4244,"s":1}],[6,{"n":5,"e":4253,"s":1}],[5,{"n":4,"e":4266}],[4,{"n":4,"e":4273}],[3,{"n":6.5,"e":4283,"g":1}],[2,{"n":4.5,"e":4291,"s":1}],[1,{"n":3,"e":4303}]]}],[702,{"n":"Heurelho Gomes","f":"","fp":"G","r":7,"c":33}],[730,{"n":"Holebas","f":"José","fp":"DL","r":7,"c":33,"s":{"s":49.5,"n":12,"a":4.13,"d":1.09,"Os":70.5,"On":17,"Oa":4.15,"Od":1,"pd":17},"p":[[-38,{"n":3,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":4,"e":3527}],[-33,{"n":5,"e":3496}],[-29,{"n":5,"e":3455}],[21,{"n":4.5,"e":4106,"s":1}],[14,{"n":3,"e":4177}],[13,{"n":3,"e":4186}],[12,{"n":6,"e":4192}],[9,{"n":4.5,"e":4226}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4244}],[6,{"n":2.5,"e":4253}],[5,{"n":4,"e":4266}],[3,{"n":4.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3,"e":4303}]]}],[738,{"n":"Foster","f":"Ben","fp":"G","r":22,"c":33,"s":{"s":142,"n":26,"a":5.46,"d":1.31,"Ss":137,"Sn":25,"Sa":5.48,"Sd":1.33,"Os":202.5,"On":38,"Oa":5.33,"Od":1.18,"pg":38},"p":[[-38,{"n":5,"e":3547}],[-37,{"n":6,"e":3531}],[-36,{"n":3.5,"e":3527}],[-35,{"n":5,"e":3513}],[-34,{"n":5,"e":3507}],[-33,{"n":6.5,"e":3496}],[-32,{"n":5,"e":3486}],[-31,{"n":5.5,"e":3475}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5,"e":3455}],[-28,{"n":4,"e":3446}],[-27,{"n":5.5,"e":3431}],[26,{"n":5,"e":4050}],[25,{"n":4,"e":4066}],[24,{"n":5,"e":4068}],[23,{"n":7,"e":4086}],[22,{"n":6,"e":4089}],[21,{"n":5.5,"e":4106}],[20,{"n":6,"e":4116}],[19,{"n":6.5,"e":4125}],[18,{"n":8,"e":4136}],[17,{"n":6,"e":4143}],[16,{"n":5.5,"e":4156}],[15,{"n":5.5,"e":4160}],[14,{"n":5,"e":4177}],[13,{"n":5,"e":4186}],[12,{"n":7,"e":4192}],[11,{"n":7,"e":4206}],[10,{"n":7,"e":4216}],[9,{"n":4,"e":4226}],[8,{"n":6.5,"e":4234}],[7,{"n":4,"e":4244}],[6,{"n":2.5,"e":4253}],[5,{"n":4,"e":4266}],[4,{"n":5.5,"e":4273}],[3,{"n":6.5,"e":4283}],[2,{"n":4.5,"e":4291}],[1,{"n":3.5,"e":4303}]],"fo":[[4106,[{"t":"Y"}]]],"a":{"m":17,"a":21,"M":22,"n":7}}],[739,{"n":"Pereyra","f":"Roberto","fp":"MO","r":15,"c":33,"s":{"g":3,"s":105,"n":20,"a":5.25,"d":0.79,"Sg":2,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":0.84,"Og":3,"Os":145.5,"On":29,"Oa":5.02,"Od":0.9,"pm":24,"pa":5},"p":[[-38,{"n":3.5,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":5,"e":3527}],[-33,{"n":4,"e":3496}],[-32,{"n":5,"e":3486}],[-31,{"n":4.5,"e":3475}],[-29,{"n":5.5,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":6,"e":3431}],[26,{"n":5,"e":4050}],[25,{"n":6,"e":4066,"g":1}],[24,{"n":5.5,"e":4068}],[23,{"n":5,"e":4086,"s":1}],[22,{"n":7,"e":4089,"g":1,"s":1}],[21,{"n":5,"e":4106,"s":1}],[19,{"n":5.5,"e":4125,"s":1}],[18,{"n":5,"e":4136,"s":1}],[16,{"n":5,"e":4156}],[12,{"n":4.5,"e":4192}],[11,{"n":4.5,"e":4206}],[10,{"n":4.5,"e":4216}],[9,{"n":5,"e":4226}],[8,{"n":6,"e":4234}],[7,{"n":5.5,"e":4244,"s":1}],[6,{"n":4.5,"e":4253,"s":1}],[5,{"n":7,"e":4266,"g":1,"s":1}],[4,{"n":5.5,"e":4273}],[2,{"n":4,"e":4291}],[1,{"n":5,"e":4303,"s":1}]]}],[758,{"n":"Capoue","f":"Etienne","fp":"MD","r":20,"c":33,"s":{"s":113,"n":21,"a":5.38,"d":1.08,"Ss":78.5,"Sn":14,"Sa":5.61,"Sd":0.92,"Os":175.5,"On":32,"Oa":5.48,"Od":1.15,"pm":32},"p":[[-38,{"n":4,"e":3547}],[-36,{"n":6.5,"e":3527}],[-35,{"n":6,"e":3513}],[-34,{"n":6.5,"e":3507}],[-33,{"n":5.5,"e":3496}],[-32,{"n":5.5,"e":3486}],[-31,{"n":6,"e":3475}],[-30,{"n":6,"e":3465}],[-29,{"n":5.5,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":8,"e":3431}],[26,{"n":7,"e":4050}],[25,{"n":6,"e":4066}],[24,{"n":5,"e":4068}],[23,{"n":5.5,"e":4086}],[22,{"n":7,"e":4089}],[21,{"n":5,"e":4106}],[20,{"n":7,"e":4116}],[19,{"n":5.5,"e":4125}],[18,{"n":5,"e":4136}],[17,{"n":4,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":6.5,"e":4160}],[14,{"n":6,"e":4177}],[13,{"n":4.5,"e":4186}],[12,{"n":6.5,"e":4192}],[7,{"n":4.5,"e":4244}],[6,{"n":3.5,"e":4253}],[5,{"n":6,"e":4266}],[3,{"n":4.5,"e":4283}],[2,{"n":5.5,"e":4291}],[1,{"n":3.5,"e":4303}]],"fo":[[4086,[{"t":"Y"}]],[4116,[{"t":"Y"}]],[4136,[{"t":"Y"}]]]}],[782,{"n":"Kaboul","f":"Younes","fp":"DC","r":1,"c":33}],[812,{"n":"Prödl","f":"Sebastian","fp":"DC","r":1,"c":33,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[8,{"n":5,"e":4234}]]}],[823,{"n":"Kabasele","f":"Christian","fp":"DC","r":13,"c":33,"s":{"s":83,"n":16,"a":5.19,"d":0.91,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":111.5,"On":22,"Oa":5.07,"Od":0.86,"pd":22},"p":[[-38,{"n":3.5,"e":3547}],[-36,{"n":5,"e":3527,"s":1}],[-34,{"n":5.5,"e":3507}],[-32,{"n":5,"e":3486}],[-31,{"n":5,"e":3475}],[-30,{"n":4.5,"e":3465}],[26,{"n":5,"e":4050}],[25,{"n":4,"e":4066}],[24,{"n":5,"e":4068,"s":1}],[21,{"n":4.5,"e":4106}],[20,{"n":6,"e":4116}],[19,{"n":6,"e":4125}],[18,{"n":6.5,"e":4136}],[17,{"n":5,"e":4143}],[16,{"n":5.5,"e":4156}],[12,{"n":4.5,"e":4192}],[11,{"n":3.5,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":6.5,"e":4226}],[8,{"n":6,"e":4234}],[5,{"n":4,"e":4266}],[4,{"n":5.5,"e":4273}]],"fo":[[4106,[{"t":"R"}]]]}],[836,{"n":"Britos","f":"Miguel","fp":"DC","r":4,"c":33,"s":{"Os":8,"On":2,"Oa":4,"pd":2},"p":[[-32,{"n":4,"e":3486}],[-30,{"n":4,"e":3465}]]}],[865,{"n":"Janmaat","f":"Daryl","fp":"DL","r":7,"c":33,"s":{"ao":1,"s":40.5,"n":8,"a":5.06,"d":1.18,"Oao":1,"Os":80,"On":16,"Oa":5,"Od":0.95,"pd":15,"pm":1},"p":[[-34,{"n":6,"e":3507}],[-33,{"n":5,"e":3496,"s":1}],[-32,{"n":5,"e":3486}],[-31,{"n":5,"e":3475}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5,"e":3455}],[-28,{"n":3.5,"e":3446}],[-27,{"n":5.5,"e":3431}],[12,{"n":6,"e":4192}],[11,{"n":4,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":6.5,"e":4226}],[8,{"n":6,"e":4234}],[7,{"n":3,"e":4244,"a":1}],[5,{"n":5,"e":4266,"s":1}],[4,{"n":4.5,"e":4273}]]}],[869,{"n":"Isaac Success","f":"","fp":"A","r":6,"c":33,"s":{"s":22,"n":5,"a":4.4,"d":0.42,"Ss":4,"Sn":1,"Sa":4,"Os":55,"On":12,"Oa":4.58,"Od":0.6,"pm":1,"pa":11},"p":[[-37,{"n":5,"e":3531,"s":1}],[-36,{"n":4,"e":3527,"s":1}],[-35,{"n":4,"e":3513,"s":1}],[-34,{"n":5,"e":3507,"s":1}],[-32,{"n":6,"e":3486,"s":1}],[-31,{"n":4.5,"e":3475,"s":1}],[-30,{"n":4.5,"e":3465}],[25,{"n":4,"e":4066,"s":1}],[18,{"n":4.5,"e":4136,"s":1}],[15,{"n":4.5,"e":4160,"s":1}],[4,{"n":5,"e":4273,"s":1}],[1,{"n":4,"e":4303,"s":1}]],"fo":[[4066,[{"t":"Y"}]]]}],[933,{"n":"Cleverley","f":"Tom","fp":"MO","r":7,"c":33,"s":{"g":1,"s":47,"n":9,"a":5.22,"d":1.12,"Og":1,"Os":70.5,"On":14,"Oa":5.04,"Od":0.99,"pm":13,"pa":1},"p":[[-37,{"n":5,"e":3531,"s":1}],[-30,{"n":3.5,"e":3465}],[-29,{"n":5,"e":3455,"s":1}],[-28,{"n":5,"e":3446,"s":1}],[-27,{"n":5,"e":3431,"s":1}],[10,{"n":5,"e":4216}],[9,{"n":6,"e":4226}],[8,{"n":5,"e":4234}],[7,{"n":4.5,"e":4244}],[6,{"n":3.5,"e":4253}],[5,{"n":7.5,"e":4266,"g":1}],[4,{"n":5.5,"e":4273}],[3,{"n":5.5,"e":4283}],[2,{"n":4.5,"e":4291,"s":1}]]}],[944,{"n":"Doucouré","f":"Abdoulaye","fp":"MO","r":22,"c":33,"s":{"g":4,"ao":1,"s":136.5,"n":25,"a":5.46,"d":1.22,"Sg":2,"Ss":37,"Sn":6,"Sa":6.17,"Sd":1.37,"Og":6,"Oao":1,"Os":196.5,"On":37,"Oa":5.31,"Od":1.24,"pm":37},"p":[[-38,{"n":4.5,"e":3547}],[-37,{"n":3.5,"e":3531}],[-36,{"n":5,"e":3527}],[-35,{"n":6.5,"e":3513}],[-34,{"n":5,"e":3507}],[-33,{"n":6,"e":3496,"g":1}],[-32,{"n":6,"e":3486,"g":1}],[-31,{"n":3.5,"e":3475}],[-30,{"n":3.5,"e":3465}],[-29,{"n":6,"e":3455}],[-28,{"n":3.5,"e":3446}],[-27,{"n":7,"e":3431}],[26,{"n":6.5,"e":4050,"g":1}],[25,{"n":4.5,"e":4066}],[24,{"n":5.5,"e":4068}],[23,{"n":5,"e":4086}],[22,{"n":8,"e":4089,"g":1}],[21,{"n":7,"e":4106,"g":1}],[20,{"n":7,"e":4116}],[18,{"n":5.5,"e":4136}],[17,{"n":5.5,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":4.5,"e":4160}],[14,{"n":5.5,"e":4177}],[13,{"n":4.5,"e":4186}],[12,{"n":7,"e":4192}],[11,{"n":6,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":7.5,"e":4226,"g":1}],[8,{"n":4.5,"e":4234}],[7,{"n":5.5,"e":4244}],[6,{"n":3,"e":4253}],[5,{"n":6,"e":4266}],[4,{"n":4.5,"e":4273}],[3,{"n":4.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3.5,"e":4303,"a":1}]],"fo":[[4068,[{"t":"Y"}]],[4086,[{"t":"Y"}]],[4136,[{"t":"Y"}]]],"a":{"m":23,"a":27,"M":42,"n":8}}],[948,{"n":"Cathcart","f":"Craig","fp":"DC","r":15,"c":33,"s":{"s":121.5,"n":24,"a":5.06,"d":0.8,"Ss":99,"Sn":19,"Sa":5.21,"Sd":0.71,"Os":173.5,"On":35,"Oa":4.96,"Od":0.9,"pd":35},"p":[[-38,{"n":3.5,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":5.5,"e":3513}],[-34,{"n":6,"e":3507}],[-33,{"n":6,"e":3496}],[-31,{"n":3.5,"e":3475}],[-30,{"n":5,"e":3465,"s":1}],[-29,{"n":6,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":5,"e":3431}],[26,{"n":5,"e":4050}],[25,{"n":4,"e":4066}],[24,{"n":4.5,"e":4068}],[23,{"n":6,"e":4086}],[22,{"n":6,"e":4089}],[21,{"n":6,"e":4106}],[20,{"n":6,"e":4116}],[19,{"n":4.5,"e":4125}],[18,{"n":5.5,"e":4136}],[17,{"n":5.5,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":5.5,"e":4160}],[14,{"n":5,"e":4177}],[13,{"n":4,"e":4186}],[12,{"n":6,"e":4192}],[11,{"n":5,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4226}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4244}],[4,{"n":5.5,"e":4273}],[3,{"n":3.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3.5,"e":4303}]],"fo":[[4116,[{"t":"I"}]],[4068,[{"t":"Y"}]],[4125,[{"t":"Y"}]],[4136,[{"t":"Y"}]]],"a":{"m":14,"a":16,"M":17,"n":7}}],[953,{"n":"Dja Djédjé","f":"Brice","fp":"DC","r":1,"c":33}],[979,{"n":"Chalobah","f":"Nathaniel","fp":"MD","r":12,"c":33,"s":{"s":70.5,"n":14,"a":5.04,"d":0.63,"Ss":41,"Sn":8,"Sa":5.13,"Sd":0.69,"Os":79.5,"On":16,"Oa":4.97,"Od":0.62,"pm":16},"p":[[-37,{"n":4.5,"e":3531}],[-35,{"n":4.5,"e":3513,"s":1}],[25,{"n":4.5,"e":4066}],[24,{"n":5,"e":4068}],[23,{"n":5,"e":4086}],[22,{"n":6,"e":4089}],[21,{"n":5.5,"e":4106}],[20,{"n":4,"e":4116,"s":1}],[19,{"n":6,"e":4125}],[18,{"n":5,"e":4136,"s":1}],[16,{"n":5,"e":4156,"s":1}],[14,{"n":4.5,"e":4177,"s":1}],[11,{"n":4.5,"e":4206}],[10,{"n":5,"e":4216}],[9,{"n":6,"e":4226}],[4,{"n":4.5,"e":4273,"s":1}]],"fo":[[4125,[{"t":"Y"}]]]}],[1038,{"n":"Welbeck","f":"Danny","fp":"A","r":7,"c":33,"s":{"s":32,"n":7,"a":4.57,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":32,"On":7,"Oa":4.57,"Od":0.35,"pa":7},"p":[[26,{"n":4.5,"e":4050,"s":1}],[25,{"n":4.5,"e":4066,"s":1}],[9,{"n":4.5,"e":4226}],[8,{"n":4,"e":4234}],[7,{"n":5,"e":4244}],[3,{"n":5,"e":4283,"s":1}],[2,{"n":4.5,"e":4291,"s":1}]]}],[1081,{"n":"Mariappa","f":"Adrian","fp":"DC","r":8,"c":33,"s":{"ao":1,"s":66.5,"n":15,"a":4.43,"d":1.03,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.44,"Oao":1,"Os":102.5,"On":23,"Oa":4.46,"Od":0.99,"pd":23},"p":[[-38,{"n":5,"e":3547,"s":1}],[-37,{"n":3.5,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":5,"e":3513}],[-33,{"n":4,"e":3496}],[-29,{"n":5,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":6,"e":3431}],[26,{"n":3.5,"e":4050,"a":1}],[25,{"n":3,"e":4066}],[24,{"n":4.5,"e":4068}],[23,{"n":4.5,"e":4086}],[22,{"n":6.5,"e":4089}],[20,{"n":3.5,"e":4116}],[19,{"n":5,"e":4125}],[18,{"n":5.5,"e":4136}],[17,{"n":4,"e":4143}],[15,{"n":4.5,"e":4160}],[14,{"n":4.5,"e":4177}],[13,{"n":5,"e":4186}],[12,{"n":5.5,"e":4192,"s":1}],[11,{"n":4.5,"e":4206,"s":1}],[6,{"n":2.5,"e":4253}]],"fo":[[4050,[{"t":"Y"}]],[4116,[{"t":"Y"},{"t":"O"}]]]}],[1086,{"n":"Bachmann","f":"Daniel","fp":"G","r":1,"c":33}],[1107,{"n":"Domingos Quina","f":"","fp":"MO","r":1,"c":33,"s":{"s":20,"n":4,"a":5,"Os":29.5,"On":6,"Oa":4.92,"Od":0.2,"pm":6},"p":[[-33,{"n":5,"e":3496,"s":1}],[-27,{"n":4.5,"e":3431,"s":1}],[22,{"n":5,"e":4089,"s":1}],[17,{"n":5,"e":4143,"s":1}],[15,{"n":5,"e":4160,"s":1}],[3,{"n":5,"e":4283,"s":1}]]}],[1298,{"n":"Kiko Femenía","f":"","fp":"DL","r":9,"c":33,"s":{"s":81.5,"n":17,"a":4.79,"d":0.85,"Og":1,"Os":124.5,"On":26,"Oa":4.79,"Od":1.07,"pd":23,"pm":3},"p":[[-38,{"n":2,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":6,"e":3513}],[-34,{"n":4.5,"e":3507}],[-33,{"n":7,"e":3496,"g":1}],[-32,{"n":5,"e":3486,"s":1}],[-31,{"n":6,"e":3475,"s":1}],[-30,{"n":4,"e":3465}],[21,{"n":5.5,"e":4106}],[20,{"n":6,"e":4116}],[19,{"n":5.5,"e":4125}],[18,{"n":6,"e":4136}],[17,{"n":5,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":5,"e":4160}],[14,{"n":5,"e":4177}],[13,{"n":4,"e":4186}],[11,{"n":5,"e":4206,"s":1}],[9,{"n":5,"e":4226,"s":1}],[6,{"n":2.5,"e":4253}],[5,{"n":5,"e":4266}],[4,{"n":4.5,"e":4273}],[3,{"n":4,"e":4283}],[2,{"n":4.5,"e":4291}],[1,{"n":4,"e":4303}]],"fo":[[4106,[{"t":"I"}]]]}],[1311,{"n":"Hughes","f":"Will","fp":"MD","r":7,"c":33,"s":{"g":1,"s":89.5,"n":18,"a":4.97,"d":0.9,"Og":2,"Os":146,"On":29,"Oa":5.03,"Od":0.96,"pm":28,"pa":1},"p":[[-38,{"n":3.5,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":5,"e":3527}],[-35,{"n":5,"e":3513}],[-34,{"n":5.5,"e":3507}],[-33,{"n":6.5,"e":3496,"g":1}],[-32,{"n":5.5,"e":3486}],[-31,{"n":4.5,"e":3475}],[-29,{"n":6,"e":3455}],[-28,{"n":4,"e":3446}],[-27,{"n":7,"e":3431}],[26,{"n":4.5,"e":4050}],[20,{"n":5.5,"e":4116}],[19,{"n":4,"e":4125}],[18,{"n":5.5,"e":4136}],[17,{"n":5,"e":4143}],[15,{"n":4.5,"e":4160}],[14,{"n":4.5,"e":4177}],[13,{"n":4,"e":4186}],[12,{"n":6.5,"e":4192}],[11,{"n":4.5,"e":4206,"s":1}],[10,{"n":5.5,"e":4216,"s":1}],[9,{"n":5,"e":4226,"s":1}],[6,{"n":4,"e":4253}],[5,{"n":5.5,"e":4266}],[4,{"n":7,"e":4273,"g":1}],[3,{"n":5.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3.5,"e":4303}]],"fo":[[4116,[{"t":"I"}]],[4050,[{"t":"Y"}]],[4143,[{"t":"Y"}]]]}],[1335,{"n":"Sinclair","f":"Jerome","fp":"A","r":3,"c":33}],[1724,{"n":"Deulofeu","f":"Gerard","fp":"A","r":21,"c":33,"s":{"g":4,"s":135.5,"n":26,"a":5.21,"d":1.35,"Sg":4,"Ss":130.5,"Sn":25,"Sa":5.22,"Sd":1.38,"Og":11,"Os":194,"On":37,"Oa":5.24,"Od":1.54,"pm":13,"pa":24},"p":[[-38,{"n":6.5,"e":3547,"g":1}],[-37,{"n":3.5,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":8,"e":3513,"g":2}],[-33,{"n":4,"e":3496}],[-32,{"n":4,"e":3486}],[-31,{"n":4.5,"e":3475}],[-30,{"n":6.5,"e":3465,"g":1,"s":1}],[-29,{"n":5.5,"e":3455}],[-28,{"n":2.5,"e":3446}],[-27,{"n":9,"e":3431,"g":3}],[26,{"n":5,"e":4050}],[25,{"n":5,"e":4066}],[24,{"n":6,"e":4068}],[23,{"n":6,"e":4086}],[22,{"n":6.5,"e":4089}],[21,{"n":7,"e":4106,"g":1}],[20,{"n":7,"e":4116}],[19,{"n":6,"e":4125,"g":1}],[18,{"n":6.5,"e":4136}],[17,{"n":4.5,"e":4143}],[16,{"n":6,"e":4156}],[15,{"n":3.5,"e":4160}],[14,{"n":3.5,"e":4177}],[13,{"n":5,"e":4186}],[12,{"n":7.5,"e":4192,"g":1}],[11,{"n":6,"e":4206,"g":1}],[10,{"n":3.5,"e":4216}],[9,{"n":5,"e":4226,"s":1}],[8,{"n":5,"e":4234,"s":1}],[7,{"n":3.5,"e":4244}],[6,{"n":3,"e":4253}],[5,{"n":7.5,"e":4266}],[4,{"n":4,"e":4273,"s":1}],[3,{"n":5,"e":4283}],[2,{"n":4.5,"e":4291}],[1,{"n":3.5,"e":4303}]],"fo":[[4125,[{"t":"Y"}]]],"a":{"m":17,"a":25,"M":52,"n":13}}],[1942,{"n":"Peñaranda","f":"Adalberto","fp":"A","r":1,"c":33}],[2229,{"n":"Tom Dele-Bashiru","f":"","fp":"MD","r":1,"c":33}],[2536,{"n":"Wilmot","f":"Ben","fp":"DC","r":1,"c":33}],[2547,{"n":"Dahlberg","f":"Pontus","fp":"G","r":1,"c":33}],[2559,{"n":"Oularé","f":"Obbi","fp":"A","r":5,"c":33}],[2579,{"n":"Masina","f":"Adam","fp":"DL","r":12,"c":33,"s":{"g":1,"s":66.5,"n":14,"a":4.75,"d":0.85,"Sg":1,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.88,"Og":1,"Os":102.5,"On":22,"Oa":4.66,"Od":0.79,"pd":22},"p":[[-38,{"n":4.5,"e":3547,"s":1}],[-35,{"n":5,"e":3513}],[-34,{"n":5,"e":3507}],[-32,{"n":4.5,"e":3486}],[-31,{"n":5,"e":3475}],[-30,{"n":4,"e":3465}],[-28,{"n":3,"e":3446}],[-27,{"n":5,"e":3431}],[26,{"n":5,"e":4050}],[25,{"n":5,"e":4066,"g":1}],[24,{"n":4.5,"e":4068}],[23,{"n":5,"e":4086}],[22,{"n":7,"e":4089}],[21,{"n":5,"e":4106,"s":1}],[20,{"n":5,"e":4116,"s":1}],[16,{"n":4.5,"e":4156}],[15,{"n":4.5,"e":4160}],[14,{"n":3.5,"e":4177}],[13,{"n":4,"e":4186,"s":1}],[12,{"n":5,"e":4192,"s":1}],[11,{"n":3.5,"e":4206}],[10,{"n":5,"e":4216}]],"fo":[[4066,[{"t":"Y"}]]]}],[4476,{"n":"Pussetto","f":"Ignacio","fp":"A","r":8,"c":33,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Og":1,"Os":79,"On":16,"Oa":4.94,"Od":0.63,"pm":4,"pa":12},"p":[[19,{"n":4.5,"e":5646,"s":1}],[18,{"n":5,"e":5653,"s":1}],[17,{"n":4.5,"e":5667,"s":1}],[16,{"n":7,"e":5673,"g":1,"s":1}],[15,{"n":5,"e":5687,"s":1}],[13,{"n":5,"e":5704,"s":1}],[10,{"n":4.5,"e":5737,"s":1}],[9,{"n":5,"e":5738,"s":1}],[4,{"n":5,"e":5797}],[3,{"n":4.5,"e":5801,"s":1}],[2,{"n":4.5,"e":5817,"s":1}],[1,{"n":4.5,"e":5826}],[26,{"n":5,"e":4050,"s":1}],[25,{"n":4.5,"e":4066,"s":1}],[24,{"n":5,"e":4068,"s":1}],[23,{"n":5.5,"e":4086,"s":1}]],"fo":[[5797,[{"t":"Y"}]]]}],[5415,{"n":"Forster","f":"Harry","fp":"MD","r":1,"c":33}],[5985,{"n":"Crichlow","f":"Kane","fp":"MD","r":3,"c":33}],[6386,{"n":"João Pedro","f":"","fp":"A","r":6,"c":33}],[6424,{"n":"Parkes","f":"Adam","fp":"G","r":1,"c":33}],[6478,{"n":"Hungbo","f":"Joseph","fp":"MD","r":1,"c":33}],[6482,{"n":"Dalby","f":"Sam","fp":"A","r":1,"c":33}],[6489,{"n":"Wise","f":"Henry","fp":"MD","r":1,"c":33}],[6492,{"n":"Spencer-Adams","f":"Bayli","fp":"DC","r":1,"c":33}],[6500,{"n":"Whelan","f":"Callum","fp":"MD","r":1,"c":33}],[6501,{"n":"Barrett","f":"Mason","fp":"DC","r":1,"c":33}],[6504,{"n":"Hinds","f":"Kaylen","fp":"A","r":3,"c":33}],[6547,{"n":"Balogun","f":"Jamal","fp":"DL","r":1,"c":33}],[174,{"n":"Diop","f":"Issa","fp":"DC","r":16,"c":28,"s":{"g":2,"s":91,"n":19,"a":4.79,"d":1.29,"Sg":2,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1.32,"Og":3,"Os":144,"On":28,"Oa":5.14,"Od":1.34,"pd":28},"p":[[-38,{"n":6.5,"e":3547}],[-37,{"n":7,"e":3536}],[-36,{"n":7.5,"e":3526}],[-32,{"n":4,"e":3487}],[-31,{"n":5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":6,"e":3447}],[-27,{"n":6.5,"e":3437,"g":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":5,"e":4067,"g":1}],[24,{"n":4.5,"e":4071}],[23,{"n":7,"e":4087,"g":1}],[20,{"n":4.5,"e":4117}],[18,{"n":4,"e":4137}],[17,{"n":5,"e":4146,"s":1}],[13,{"n":2.5,"e":4187}],[12,{"n":4.5,"e":4188}],[11,{"n":3.5,"e":4207}],[10,{"n":5.5,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":5,"e":4235}],[7,{"n":4,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":6,"e":4267}],[4,{"n":7,"e":4274}],[3,{"n":5.5,"e":4283}],[2,{"n":5,"e":4290}],[1,{"n":2,"e":4299}]],"fo":[[4117,[{"t":"Y"}]],[4137,[{"t":"Y"}]]]}],[620,{"n":"Lanzini","f":"Manuel","fp":"MO","r":9,"c":28,"s":{"s":97,"n":19,"a":5.11,"d":0.95,"Ss":38,"Sn":8,"Sa":4.75,"Sd":0.65,"Og":1,"Os":149,"On":29,"Oa":5.14,"Od":1,"pm":26,"pa":3},"p":[[-38,{"n":7,"e":3547,"g":1}],[-37,{"n":6.5,"e":3536}],[-34,{"n":5.5,"e":3504}],[-33,{"n":5,"e":3489}],[-32,{"n":3.5,"e":3487}],[-31,{"n":5,"e":3476}],[-30,{"n":3.5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":5,"e":3447,"s":1}],[-27,{"n":5,"e":3437,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4067,"s":1}],[24,{"n":3.5,"e":4071}],[23,{"n":4.5,"e":4087}],[22,{"n":5.5,"e":4095}],[21,{"n":5.5,"e":4107,"s":1}],[20,{"n":4.5,"e":4117}],[19,{"n":5,"e":4121,"s":1}],[18,{"n":5,"e":4137}],[12,{"n":5.5,"e":4188,"s":1}],[11,{"n":5,"e":4207,"s":1}],[10,{"n":5,"e":4217,"s":1}],[9,{"n":4.5,"e":4222}],[8,{"n":4.5,"e":4235}],[7,{"n":5,"e":4240,"s":1}],[5,{"n":6,"e":4267}],[4,{"n":6,"e":4274}],[3,{"n":7,"e":4283}],[2,{"n":7,"e":4290}],[1,{"n":3.5,"e":4299}]]}],[622,{"n":"Wilshere","f":"Jack","fp":"MO","r":5,"c":28,"s":{"s":27,"n":6,"a":4.5,"d":0.55,"Os":42.5,"On":9,"Oa":4.72,"Od":0.67,"pm":9},"p":[[-38,{"n":6,"e":3547,"s":1}],[-37,{"n":5,"e":3536,"s":1}],[-35,{"n":4.5,"e":3516,"s":1}],[26,{"n":null,"e":4053,"d":1}],[9,{"n":4.5,"e":4222,"s":1}],[8,{"n":5,"e":4235,"s":1}],[7,{"n":4.5,"e":4240,"s":1}],[6,{"n":5,"e":4255,"s":1}],[2,{"n":3.5,"e":4290}],[1,{"n":4.5,"e":4299}]]}],[632,{"n":"Antonio","f":"Michail","fp":"MO","r":9,"c":28,"s":{"g":1,"s":55.5,"n":11,"a":5.05,"d":0.96,"Ss":10,"Sn":2,"Sa":5,"Sd":1.41,"Og":4,"Os":109,"On":21,"Oa":5.19,"Od":1.04,"pm":17,"pa":4},"p":[[-38,{"n":7,"e":3547}],[-37,{"n":6,"e":3536}],[-36,{"n":6,"e":3526,"g":1}],[-35,{"n":5,"e":3516,"g":1}],[-34,{"n":5.5,"e":3504,"s":1}],[-32,{"n":4.5,"e":3487,"s":1}],[-31,{"n":3.5,"e":3476}],[-30,{"n":4.5,"e":3459,"s":1}],[-28,{"n":4.5,"e":3447}],[-27,{"n":7,"e":3437,"g":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":6,"e":4067}],[24,{"n":4,"e":4071,"s":1}],[20,{"n":5,"e":4117,"s":1}],[19,{"n":6,"e":4121}],[17,{"n":5.5,"e":4146}],[16,{"n":4,"e":4157}],[14,{"n":5,"e":4169}],[13,{"n":6.5,"e":4187,"g":1,"s":1}],[3,{"n":5.5,"e":4283,"s":1}],[2,{"n":4.5,"e":4290,"s":1}],[1,{"n":3.5,"e":4299}]]}],[634,{"n":"Snodgrass","f":"Robert","fp":"MO","r":18,"c":28,"s":{"g":5,"s":108.5,"n":20,"a":5.43,"d":1.05,"Sg":5,"Ss":88,"Sn":16,"Sa":5.5,"Sd":1.17,"Og":5,"Os":149,"On":28,"Oa":5.32,"Od":0.99,"pm":27,"pa":1},"p":[[-36,{"n":5.5,"e":3526}],[-35,{"n":5,"e":3516}],[-34,{"n":5,"e":3504}],[-33,{"n":5,"e":3489,"s":1}],[-32,{"n":4.5,"e":3487}],[-30,{"n":3.5,"e":3459}],[-29,{"n":6,"e":3456}],[-27,{"n":6,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":8,"e":4067,"g":2}],[24,{"n":4,"e":4071}],[23,{"n":6.5,"e":4087}],[22,{"n":5,"e":4095,"s":1}],[21,{"n":7,"e":4107}],[20,{"n":5.5,"e":4117,"s":1}],[19,{"n":6.5,"e":4121,"g":1}],[18,{"n":5,"e":4137}],[17,{"n":5,"e":4146}],[16,{"n":4.5,"e":4157}],[15,{"n":4.5,"e":4162}],[14,{"n":6,"e":4169}],[13,{"n":6,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":5,"e":4207,"g":1}],[10,{"n":6,"e":4217,"g":1}],[6,{"n":5,"e":4255,"s":1}],[4,{"n":5,"e":4274,"s":1}],[2,{"n":5.5,"e":4290}],[1,{"n":5,"e":4299,"s":1}]],"fo":[[4146,[{"t":"Y"}]]],"a":{"m":16,"a":19,"M":22,"n":9}}],[664,{"n":"Arnautovic","f":"Marko","fp":"A","r":16,"c":28,"s":{"Og":3,"Os":52.5,"On":10,"Oa":5.25,"Od":1.42,"pm":1,"pa":9},"p":[[-38,{"n":7,"e":3547,"g":1}],[-37,{"n":8,"e":3536,"g":2}],[-36,{"n":6,"e":3526}],[-35,{"n":4.5,"e":3516}],[-33,{"n":4.5,"e":3489}],[-32,{"n":4,"e":3487}],[-31,{"n":4,"e":3476}],[-30,{"n":4,"e":3459,"s":1}],[-29,{"n":4.5,"e":3456,"s":1}],[-27,{"n":6,"e":3437,"s":1}],[26,{"n":null,"e":4053,"d":1}]]}],[684,{"n":"Noble","f":"Mark","fp":"MD","r":14,"c":28,"s":{"g":4,"s":111,"n":22,"a":5.05,"d":1.27,"Sg":3,"Ss":29,"Sn":5,"Sa":5.8,"Sd":1.68,"Og":8,"Os":170.5,"On":32,"Oa":5.33,"Od":1.34,"pm":32},"p":[[-38,{"n":8,"e":3547,"g":2}],[-37,{"n":7,"e":3536}],[-36,{"n":6,"e":3526}],[-35,{"n":6,"e":3516}],[-34,{"n":7,"e":3504}],[-33,{"n":4,"e":3489}],[-31,{"n":5,"e":3476,"g":1}],[-30,{"n":4,"e":3459}],[-29,{"n":7,"e":3456,"g":1}],[-27,{"n":5.5,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4067}],[24,{"n":5.5,"e":4071,"g":1}],[23,{"n":6,"e":4087}],[22,{"n":5,"e":4095}],[21,{"n":8.5,"e":4107,"g":2}],[19,{"n":5.5,"e":4121}],[18,{"n":5.5,"e":4137}],[17,{"n":6,"e":4146}],[16,{"n":4.5,"e":4157}],[15,{"n":3.5,"e":4162}],[14,{"n":5,"e":4169}],[13,{"n":5.5,"e":4187}],[12,{"n":4.5,"e":4188}],[11,{"n":2.5,"e":4207}],[10,{"n":4,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":4,"e":4235}],[7,{"n":4,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":4.5,"e":4267}],[4,{"n":5.5,"e":4274}],[3,{"n":7,"e":4283,"g":1}]],"fo":[[4137,[{"t":"Y"}]]]}],[700,{"n":"Zabaleta","f":"Pablo","fp":"DL","r":8,"c":28,"s":{"s":41.5,"n":9,"a":4.61,"d":0.89,"Os":72,"On":16,"Oa":4.5,"Od":0.84,"pd":15,"pm":1},"p":[[-38,{"n":4,"e":3547,"s":1}],[-35,{"n":5,"e":3516}],[-34,{"n":5.5,"e":3504}],[-32,{"n":3.5,"e":3487}],[-31,{"n":3.5,"e":3476}],[-28,{"n":5,"e":3447,"s":1}],[-27,{"n":4,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[24,{"n":4,"e":4071}],[23,{"n":5.5,"e":4087}],[22,{"n":5.5,"e":4095}],[19,{"n":3,"e":4121}],[11,{"n":3.5,"e":4207}],[10,{"n":5,"e":4217}],[8,{"n":5,"e":4235,"s":1}],[6,{"n":5,"e":4255,"s":1}],[5,{"n":5,"e":4267,"s":1}]],"fo":[[4087,[{"t":"Y"}]],[4121,[{"t":"Y"}]]]}],[709,{"n":"Reid","f":"Winston","fp":"DC","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[762,{"n":"Ogbonna","f":"Angelo","fp":"DC","r":9,"c":28,"s":{"g":2,"ao":1,"s":98,"n":20,"a":4.9,"d":1.08,"Sao":1,"Ss":21,"Sn":5,"Sa":4.2,"Sd":1.52,"Og":3,"Oao":1,"Os":150.5,"On":30,"Oa":5.02,"Od":1.05,"pd":30},"p":[[-36,{"n":5,"e":3526,"s":1}],[-35,{"n":4,"e":3516}],[-34,{"n":7,"e":3504}],[-33,{"n":4,"e":3489}],[-32,{"n":4.5,"e":3487}],[-31,{"n":5,"e":3476,"g":1}],[-30,{"n":5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":6,"e":3447}],[-27,{"n":6,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":3.5,"e":4067,"a":1}],[24,{"n":2,"e":4071}],[23,{"n":5,"e":4087}],[22,{"n":4.5,"e":4095}],[21,{"n":6,"e":4107}],[19,{"n":4,"e":4121}],[18,{"n":4.5,"e":4137}],[17,{"n":6,"e":4146}],[16,{"n":4.5,"e":4157,"g":1}],[15,{"n":3.5,"e":4162}],[14,{"n":6.5,"e":4169}],[13,{"n":5,"e":4187,"g":1}],[9,{"n":5,"e":4222}],[8,{"n":5,"e":4235}],[7,{"n":4.5,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":5.5,"e":4267}],[4,{"n":6,"e":4274}],[3,{"n":5.5,"e":4283}],[2,{"n":5.5,"e":4290}]],"fo":[[4067,[{"t":"Y"}]],[4071,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":18,"n":17}}],[849,{"n":"Randolph","f":"Darren","fp":"G","r":14,"c":28,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[26,{"n":null,"e":4053,"d":1}],[24,{"n":5,"e":4071}]]}],[861,{"n":"Cresswell","f":"Aaron","fp":"DL","r":12,"c":28,"s":{"g":3,"s":90.5,"n":19,"a":4.76,"d":1.13,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.91,"Og":3,"Os":120,"On":25,"Oa":4.8,"Od":1.03,"pd":25},"p":[[-33,{"n":4,"e":3489}],[-32,{"n":5,"e":3487}],[-31,{"n":5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-29,{"n":5,"e":3456}],[-27,{"n":6,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4067}],[24,{"n":4,"e":4071}],[23,{"n":4.5,"e":4087}],[22,{"n":5.5,"e":4095}],[21,{"n":6,"e":4107}],[19,{"n":4.5,"e":4121}],[18,{"n":4.5,"e":4137}],[17,{"n":5,"e":4146}],[16,{"n":5,"e":4157}],[15,{"n":4,"e":4162}],[14,{"n":7,"e":4169,"g":1}],[13,{"n":3.5,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":3.5,"e":4207}],[10,{"n":5.5,"e":4217}],[8,{"n":5,"e":4235}],[7,{"n":5.5,"e":4240,"g":1}],[6,{"n":7,"e":4255,"g":1}],[1,{"n":3,"e":4299}]],"fo":[[4107,[{"t":"Y"}]],[4121,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":24,"n":14}}],[870,{"n":"Fabianski","f":"Lukasz","fp":"G","r":14,"c":28,"s":{"s":66,"n":12,"a":5.5,"d":1,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":139.5,"On":24,"Oa":5.81,"Od":0.98,"pg":24},"p":[[-38,{"n":7,"e":3547}],[-37,{"n":6,"e":3536}],[-36,{"n":7.5,"e":3526}],[-35,{"n":5,"e":3516}],[-34,{"n":5.5,"e":3504}],[-33,{"n":6,"e":3489}],[-32,{"n":7,"e":3487}],[-31,{"n":4.5,"e":3476}],[-30,{"n":6,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":7,"e":3447}],[-27,{"n":6,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":3.5,"e":4067}],[22,{"n":5,"e":4095}],[21,{"n":6,"e":4107}],[20,{"n":6,"e":4117}],[18,{"n":6,"e":4137}],[7,{"n":4,"e":4240}],[6,{"n":6.5,"e":4255}],[5,{"n":7,"e":4267}],[4,{"n":6,"e":4274}],[3,{"n":5.5,"e":4283}],[2,{"n":5.5,"e":4290}],[1,{"n":5,"e":4299}]],"fo":[[4095,[{"t":"I"}]],[4117,[{"t":"Y"}]]]}],[934,{"n":"Masuaku","f":"Arthur","fp":"DL","r":8,"c":28,"s":{"s":67,"n":14,"a":4.79,"d":1.14,"Ss":26,"Sn":6,"Sa":4.33,"Sd":0.61,"Os":100.5,"On":20,"Oa":5.03,"Od":1.12,"pd":19,"pm":1},"p":[[-38,{"n":5.5,"e":3547}],[-37,{"n":6.5,"e":3536}],[-36,{"n":5.5,"e":3526}],[-35,{"n":4,"e":3516}],[-34,{"n":6.5,"e":3504}],[-29,{"n":5.5,"e":3456,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4,"e":4067,"s":1}],[24,{"n":3.5,"e":4071}],[23,{"n":5,"e":4087,"s":1}],[22,{"n":4.5,"e":4095}],[21,{"n":5,"e":4107,"s":1}],[20,{"n":4,"e":4117}],[18,{"n":5,"e":4137}],[16,{"n":4.5,"e":4157,"s":1}],[14,{"n":5,"e":4169,"s":1}],[9,{"n":3,"e":4222}],[5,{"n":4.5,"e":4267}],[4,{"n":7.5,"e":4274}],[3,{"n":6.5,"e":4283}],[2,{"n":5,"e":4290}]],"fo":[[4117,[{"t":"Y"}]]]}],[996,{"n":"Fernandes","f":"Edimilson","fp":"MD","r":8,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[1087,{"n":"Rice","f":"Declan","fp":"MD","r":20,"c":28,"s":{"s":139.5,"n":25,"a":5.58,"d":1.11,"Ss":139.5,"Sn":25,"Sa":5.58,"Sd":1.11,"Og":1,"Os":206,"On":36,"Oa":5.72,"Od":1,"pm":36},"p":[[-38,{"n":6,"e":3547}],[-36,{"n":6.5,"e":3526}],[-35,{"n":5.5,"e":3516}],[-34,{"n":6.5,"e":3504}],[-33,{"n":5,"e":3489}],[-32,{"n":5.5,"e":3487}],[-31,{"n":5.5,"e":3476}],[-30,{"n":6,"e":3459}],[-29,{"n":7,"e":3456,"g":1}],[-28,{"n":6,"e":3447}],[-27,{"n":7,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":5,"e":4067}],[24,{"n":4,"e":4071}],[23,{"n":5.5,"e":4087}],[22,{"n":6.5,"e":4095}],[21,{"n":8,"e":4107}],[20,{"n":5.5,"e":4117}],[19,{"n":5,"e":4121}],[18,{"n":6,"e":4137}],[17,{"n":5.5,"e":4146}],[16,{"n":5.5,"e":4157}],[15,{"n":6,"e":4162}],[14,{"n":7,"e":4169}],[13,{"n":6,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":4,"e":4207}],[10,{"n":6,"e":4217}],[9,{"n":5,"e":4222}],[8,{"n":4.5,"e":4235}],[7,{"n":7,"e":4240}],[6,{"n":6.5,"e":4255}],[5,{"n":6.5,"e":4267}],[4,{"n":6.5,"e":4274}],[3,{"n":6,"e":4283}],[2,{"n":4.5,"e":4290}],[1,{"n":4,"e":4299}]],"fo":[[4117,[{"t":"Y"}]]]}],[1130,{"n":"Bowen","f":"Jarrod","fp":"A","r":14,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[1132,{"n":"Diangana","f":"Grady","fp":"MD","r":7,"c":28,"s":{"Os":20.5,"On":4,"Oa":5.13,"Od":0.48,"pm":4},"p":[[-37,{"n":5.5,"e":3536}],[-34,{"n":5.5,"e":3504,"s":1}],[-32,{"n":4.5,"e":3487,"s":1}],[-28,{"n":5,"e":3447,"s":1}],[26,{"n":null,"e":4053,"d":1}]]}],[1627,{"n":"Fornals","f":"Pablo","fp":"MO","r":12,"c":28,"s":{"g":1,"s":123.5,"n":24,"a":5.15,"d":0.77,"Sg":1,"Ss":74,"Sn":14,"Sa":5.29,"Sd":0.91,"Og":2,"Os":182.5,"On":36,"Oa":5.07,"Od":0.77,"pm":33,"pa":3},"p":[[-37,{"n":5,"e":2339}],[-36,{"n":3.5,"e":2326}],[-35,{"n":6,"e":2321,"g":1}],[-34,{"n":5,"e":2305}],[-33,{"n":5,"e":2301}],[-28,{"n":5,"e":2251,"s":1}],[-27,{"n":4.5,"e":2238,"s":1}],[-24,{"n":4.5,"e":2211,"s":1}],[-32,{"n":6.5,"e":2284}],[-29,{"n":5,"e":2254,"s":1}],[-26,{"n":4.5,"e":2227,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":5,"e":4067,"s":1}],[-25,{"n":4.5,"e":2214,"s":1}],[24,{"n":5,"e":4071,"s":1}],[23,{"n":5,"e":4087}],[22,{"n":5,"e":4095,"s":1}],[21,{"n":7,"e":4107}],[20,{"n":7,"e":4117,"g":1}],[19,{"n":5,"e":4121}],[18,{"n":5,"e":4137,"s":1}],[17,{"n":6.5,"e":4146}],[16,{"n":4.5,"e":4157}],[15,{"n":4.5,"e":4162}],[14,{"n":5.5,"e":4169}],[13,{"n":5,"e":4187,"s":1}],[12,{"n":4,"e":4188}],[10,{"n":5.5,"e":4217,"s":1}],[9,{"n":4.5,"e":4222}],[8,{"n":4.5,"e":4235,"s":1}],[7,{"n":5.5,"e":4240}],[6,{"n":5,"e":4255}],[5,{"n":5.5,"e":4267,"s":1}],[4,{"n":5,"e":4274,"s":1}],[3,{"n":5,"e":4283,"s":1}],[2,{"n":4,"e":4290}],[1,{"n":5,"e":4299,"s":1}]]}],[2073,{"n":"Holland","f":"Nathan","fp":"MO","r":3,"c":28,"s":{"s":10,"n":2,"a":5,"d":0.71,"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[26,{"n":null,"e":4053,"d":1}],[16,{"n":5.5,"e":4157,"s":1}],[15,{"n":4.5,"e":4162,"s":1}]]}],[2211,{"n":"Cullen","f":"Josh","fp":"MD","r":2,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2221,{"n":"Johnson","f":"Ben","fp":"MD","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2260,{"n":"Oxford","f":"Reece","fp":"DC","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2293,{"n":"Sánchez","f":"Carlos","fp":"MD","r":3,"c":28,"s":{"s":29.5,"n":6,"a":4.92,"d":0.2,"Os":39,"On":8,"Oa":4.88,"Od":0.23,"pm":8},"p":[[-38,{"n":4.5,"e":3547,"s":1}],[-37,{"n":5,"e":3536,"s":1}],[26,{"n":null,"e":4053,"d":1}],[20,{"n":4.5,"e":4117}],[17,{"n":5,"e":4146,"s":1}],[13,{"n":5,"e":4187,"s":1}],[4,{"n":5,"e":4274,"s":1}],[3,{"n":5,"e":4283,"s":1}],[2,{"n":5,"e":4290,"s":1}]]}],[2307,{"n":"Hugill","f":"Jordan","fp":"A","r":3,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2498,{"n":"Fredericks","f":"Ryan","fp":"DL","r":9,"c":28,"s":{"s":90,"n":19,"a":4.74,"d":1.11,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":139,"On":28,"Oa":4.96,"Od":1.2,"pd":28},"p":[[-38,{"n":5,"e":3547}],[-37,{"n":8,"e":3536,"g":1}],[-36,{"n":6.5,"e":3526}],[-34,{"n":4,"e":3504,"s":1}],[-33,{"n":4.5,"e":3489}],[-30,{"n":4,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":6,"e":3447}],[-27,{"n":5,"e":3437,"s":1}],[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4067}],[21,{"n":7.5,"e":4107}],[20,{"n":3.5,"e":4117}],[17,{"n":6,"e":4146}],[16,{"n":3.5,"e":4157}],[15,{"n":4.5,"e":4162}],[14,{"n":6,"e":4169}],[13,{"n":3.5,"e":4187}],[12,{"n":4,"e":4188}],[11,{"n":4.5,"e":4207,"s":1}],[9,{"n":3,"e":4222}],[8,{"n":5.5,"e":4235}],[7,{"n":5,"e":4240}],[6,{"n":5.5,"e":4255}],[5,{"n":5,"e":4267}],[4,{"n":5,"e":4274}],[3,{"n":5,"e":4283}],[2,{"n":5,"e":4290}],[1,{"n":3.5,"e":4299}]],"fo":[[4146,[{"t":"Y"}]]]}],[2514,{"n":"Yarmolenko","f":"Andriy","fp":"A","r":8,"c":28,"s":{"g":3,"s":75,"n":15,"a":5,"d":1.46,"Og":3,"Os":75,"On":15,"Oa":5,"Od":1.46,"pm":9,"pa":6},"p":[[26,{"n":null,"e":4053,"d":1}],[17,{"n":4,"e":4146,"s":1}],[15,{"n":4.5,"e":4162,"s":1}],[14,{"n":4,"e":4169,"s":1}],[13,{"n":4,"e":4187}],[12,{"n":3.5,"e":4188,"s":1}],[11,{"n":3,"e":4207}],[10,{"n":7,"e":4217}],[9,{"n":4,"e":4222,"s":1}],[8,{"n":5,"e":4235}],[7,{"n":7.5,"e":4240,"g":1}],[6,{"n":7,"e":4255,"g":1}],[5,{"n":5,"e":4267}],[4,{"n":7,"e":4274,"g":1}],[3,{"n":5.5,"e":4283}],[2,{"n":4,"e":4290,"s":1}]],"a":{"m":9,"a":19,"M":35,"n":5}}],[2560,{"n":"Toni Martínez","f":"","fp":"A","r":2,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2573,{"n":"Balbuena","f":"Fabián","fp":"DC","r":9,"c":28,"s":{"g":1,"s":58.5,"n":13,"a":4.5,"d":1.37,"Og":1,"Os":90,"On":19,"Oa":4.74,"Od":1.27,"pd":19},"p":[[-38,{"n":6.5,"e":3547}],[-37,{"n":6,"e":3536}],[-36,{"n":5,"e":3526}],[-35,{"n":4,"e":3516}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4.5,"e":3489}],[26,{"n":null,"e":4053,"d":1}],[22,{"n":4,"e":4095}],[21,{"n":6.5,"e":4107}],[20,{"n":5.5,"e":4117}],[19,{"n":3.5,"e":4121}],[17,{"n":5.5,"e":4146}],[16,{"n":4,"e":4157}],[15,{"n":3,"e":4162}],[14,{"n":7,"e":4169}],[12,{"n":2.5,"e":4188}],[11,{"n":4.5,"e":4207,"g":1}],[10,{"n":4.5,"e":4217}],[5,{"n":5,"e":4267,"s":1}],[1,{"n":3,"e":4299}]]}],[2602,{"n":"Felipe Anderson","f":"","fp":"MO","r":14,"c":28,"s":{"g":1,"s":102,"n":19,"a":5.37,"d":1.32,"Og":2,"Os":153,"On":29,"Oa":5.28,"Od":1.21,"pm":24,"pa":5},"p":[[-38,{"n":7,"e":3547}],[-36,{"n":5,"e":3526}],[-35,{"n":5,"e":3516}],[-34,{"n":6,"e":3504,"g":1}],[-33,{"n":4.5,"e":3489}],[-31,{"n":5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":3.5,"e":3447}],[-27,{"n":4.5,"e":3437}],[26,{"n":null,"e":4053,"d":1}],[22,{"n":5.5,"e":4095}],[21,{"n":7,"e":4107,"g":1}],[20,{"n":6.5,"e":4117}],[19,{"n":5,"e":4121,"s":1}],[16,{"n":4,"e":4157}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4169}],[13,{"n":3.5,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":6,"e":4207}],[10,{"n":5.5,"e":4217}],[9,{"n":3.5,"e":4222}],[8,{"n":5.5,"e":4235}],[7,{"n":6,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":6,"e":4267}],[4,{"n":7,"e":4274}],[3,{"n":7.5,"e":4283}],[1,{"n":3,"e":4299}]],"a":{"m":19,"a":27,"M":36,"n":11}}],[2885,{"n":"Coventry","f":"Conor","fp":"MD","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2888,{"n":"Joe Powell","f":"","fp":"MD","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2979,{"n":"Xande Silva","f":"","fp":"A","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[2987,{"n":"Nasri","f":"Samir","fp":"MD","r":4,"c":28,"s":{"Os":14.5,"On":3,"Oa":4.83,"Od":1.53,"pm":3},"p":[[-31,{"n":6.5,"e":3476,"s":1}],[-30,{"n":4.5,"e":3459,"s":1}],[-28,{"n":3.5,"e":3447}],[26,{"n":null,"e":4053,"d":1}]]}],[3744,{"n":"Martin","f":"David","fp":"G","r":3,"c":28,"s":{"s":27,"n":5,"a":5.4,"d":1.95,"Os":27,"On":5,"Oa":5.4,"Od":1.95,"pg":5},"p":[[26,{"n":null,"e":4053,"d":1}],[22,{"n":4,"e":4095,"s":1}],[17,{"n":6,"e":4146}],[16,{"n":3,"e":4157}],[15,{"n":6,"e":4162}],[14,{"n":8,"e":4169}]],"fo":[[4146,[{"t":"Y"}]]]}],[5449,{"n":"Haller","f":"Sébastien","fp":"A","r":15,"c":28,"s":{"g":6,"s":119,"n":24,"a":4.96,"d":1.3,"Sg":6,"Ss":115.5,"Sn":23,"Sa":5.02,"Sd":1.29,"Og":6,"Os":119,"On":24,"Oa":4.96,"Od":1.3,"pa":24},"p":[[26,{"n":null,"e":4053,"d":1}],[25,{"n":4.5,"e":4067}],[24,{"n":5,"e":4071}],[23,{"n":4,"e":4087}],[22,{"n":4,"e":4095}],[21,{"n":7,"e":4107,"g":1}],[20,{"n":4,"e":4117}],[19,{"n":3.5,"e":4121}],[18,{"n":4.5,"e":4137}],[17,{"n":7,"e":4146,"g":1}],[16,{"n":4.5,"e":4157,"s":1}],[15,{"n":4,"e":4162}],[14,{"n":4.5,"e":4169,"s":1}],[13,{"n":4,"e":4187}],[12,{"n":3,"e":4188}],[11,{"n":6,"e":4207}],[10,{"n":4.5,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":6,"e":4235,"g":1}],[7,{"n":6,"e":4240}],[6,{"n":5,"e":4255}],[5,{"n":5,"e":4267}],[4,{"n":7,"e":4274,"g":1}],[3,{"n":8,"e":4283,"g":2}],[1,{"n":3.5,"e":4299}]],"a":{"m":19,"a":38,"M":58,"n":12}}],[5986,{"n":"Gonçalo Cardoso","f":"","fp":"DC","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[6123,{"n":"Ajeti","f":"Albian","fp":"A","r":6,"c":28,"s":{"s":34,"n":8,"a":4.25,"d":0.27,"Os":34,"On":8,"Oa":4.25,"Od":0.27,"pa":8},"p":[[26,{"n":null,"e":4053,"d":1}],[23,{"n":4.5,"e":4087,"s":1}],[20,{"n":4,"e":4117,"s":1}],[19,{"n":4.5,"e":4121,"s":1}],[15,{"n":4.5,"e":4162,"s":1}],[12,{"n":4,"e":4188,"s":1}],[11,{"n":4,"e":4207,"s":1}],[10,{"n":4.5,"e":4217,"s":1}],[9,{"n":4,"e":4222,"s":1}]]}],[6470,{"n":"Anang","f":"Joseph","fp":"G","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[6491,{"n":"Ngakia","f":"Jeremy","fp":"DL","r":1,"c":28,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[26,{"n":null,"e":4053,"d":1}],[18,{"n":4.5,"e":4137}]]}],[6497,{"n":"Kemp","f":"Daniel","fp":"MO","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[6545,{"n":"Bernardo Rosa","f":"","fp":"MD","r":1,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[6550,{"n":"Soucek","f":"Tomas","fp":"MD","r":8,"c":28,"s":{},"p":[[26,{"n":null,"e":4053,"d":1}]]}],[75,{"n":"João Moutinho","f":"","fp":"MO","r":21,"c":69,"s":{"g":1,"s":144,"n":26,"a":5.54,"d":0.95,"Sg":1,"Ss":138.5,"Sn":25,"Sa":5.54,"Sd":0.97,"Og":1,"Os":208,"On":38,"Oa":5.47,"Od":0.87,"pm":38},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5.5,"e":3537}],[-36,{"n":5.5,"e":3527}],[-35,{"n":6.5,"e":3517}],[-34,{"n":5,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":5,"e":3480}],[-31,{"n":6,"e":3477}],[-30,{"n":5.5,"e":3460}],[-29,{"n":5.5,"e":3457,"s":1}],[-28,{"n":4.5,"e":3440}],[-27,{"n":4,"e":3428}],[26,{"n":5.5,"e":4057,"s":1}],[25,{"n":7,"e":4063}],[24,{"n":4,"e":4073}],[23,{"n":5,"e":4085}],[22,{"n":5.5,"e":4097}],[21,{"n":6,"e":4106}],[20,{"n":5,"e":4111}],[19,{"n":6.5,"e":4127}],[18,{"n":5,"e":4134}],[17,{"n":5,"e":4147}],[16,{"n":5,"e":4150}],[15,{"n":7.5,"e":4162}],[14,{"n":5.5,"e":4174}],[13,{"n":7,"e":4180,"g":1}],[12,{"n":6,"e":4195}],[11,{"n":7,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":4.5,"e":4227}],[8,{"n":6.5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":4.5,"e":4251}],[5,{"n":4.5,"e":4263}],[4,{"n":5,"e":4276,"s":1}],[3,{"n":4.5,"e":4284}],[2,{"n":6,"e":4297}],[1,{"n":5.5,"e":4305}]],"fo":[[4063,[{"t":"Y"}]],[4134,[{"t":"Y"}]],[4147,[{"t":"Y"}]]],"a":{"m":22,"a":26,"M":40,"n":10}}],[1710,{"n":"Jonny","f":"","fp":"DL","r":10,"c":69,"s":{"g":1,"s":117,"n":25,"a":4.68,"d":0.72,"Sg":1,"Ss":98.5,"Sn":21,"Sa":4.69,"Sd":0.77,"Og":1,"Os":169.5,"On":36,"Oa":4.71,"Od":0.71,"pd":2,"pm":34},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":5,"e":3527}],[-35,{"n":5,"e":3517}],[-34,{"n":3.5,"e":3505}],[-33,{"n":4.5,"e":3497,"s":1}],[-32,{"n":4.5,"e":3480}],[-31,{"n":6.5,"e":3477}],[-30,{"n":4.5,"e":3460}],[-28,{"n":4.5,"e":3440}],[-27,{"n":5,"e":3428}],[26,{"n":5,"e":4057}],[25,{"n":4,"e":4063}],[24,{"n":4,"e":4073}],[23,{"n":5,"e":4085}],[22,{"n":5,"e":4097}],[21,{"n":4,"e":4106}],[20,{"n":4.5,"e":4111}],[19,{"n":4.5,"e":4127}],[18,{"n":4.5,"e":4134}],[17,{"n":4,"e":4147}],[16,{"n":5,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4174}],[13,{"n":5,"e":4180}],[12,{"n":4.5,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4213,"g":1}],[9,{"n":5,"e":4227}],[8,{"n":5,"e":4231,"s":1}],[7,{"n":6,"e":4244}],[6,{"n":4.5,"e":4251}],[5,{"n":2.5,"e":4263}],[3,{"n":4.5,"e":4284}],[2,{"n":5,"e":4297}],[1,{"n":4,"e":4305}]],"fo":[[4134,[{"t":"Y"}]],[4147,[{"t":"Y"}]]]}],[2485,{"n":"Coady","f":"Conor","fp":"DC","r":13,"c":69,"s":{"s":131,"n":26,"a":5.04,"d":0.97,"Ss":125.5,"Sn":25,"Sa":5.02,"Sd":0.98,"Oao":1,"Os":192,"On":38,"Oa":5.05,"Od":0.94,"pd":38},"p":[[-38,{"n":4,"e":3543}],[-37,{"n":5.5,"e":3537}],[-36,{"n":6,"e":3527}],[-35,{"n":6,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":5.5,"e":3497}],[-32,{"n":3,"e":3480,"a":1}],[-31,{"n":5.5,"e":3477}],[-30,{"n":5.5,"e":3460}],[-29,{"n":5.5,"e":3457}],[-28,{"n":5,"e":3440}],[-27,{"n":5.5,"e":3428}],[26,{"n":5.5,"e":4057}],[25,{"n":6,"e":4063}],[24,{"n":4,"e":4073}],[23,{"n":5,"e":4085}],[22,{"n":6,"e":4097}],[21,{"n":4.5,"e":4106}],[20,{"n":5.5,"e":4111}],[19,{"n":5.5,"e":4127}],[18,{"n":5,"e":4134}],[17,{"n":4.5,"e":4147}],[16,{"n":4.5,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4174}],[13,{"n":5.5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":5.5,"e":4198}],[10,{"n":5,"e":4213}],[9,{"n":4.5,"e":4227}],[8,{"n":6.5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":5,"e":4251}],[5,{"n":2,"e":4263}],[4,{"n":3,"e":4276}],[3,{"n":5.5,"e":4284}],[2,{"n":4.5,"e":4297}],[1,{"n":5.5,"e":4305}]],"a":{"m":13,"a":14,"M":15,"n":6}}],[2490,{"n":"Boly","f":"Willy","fp":"DC","r":8,"c":69,"s":{"s":57,"n":10,"a":5.7,"d":0.86,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":120.5,"On":22,"Oa":5.48,"Od":0.79,"pd":22},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3537}],[-36,{"n":6,"e":3527}],[-35,{"n":5,"e":3517}],[-34,{"n":6,"e":3505,"g":1}],[-33,{"n":5.5,"e":3497}],[-32,{"n":4,"e":3480}],[-31,{"n":5,"e":3477}],[-30,{"n":6,"e":3460}],[-29,{"n":6,"e":3457}],[-28,{"n":5,"e":3440}],[-27,{"n":4.5,"e":3428}],[26,{"n":6,"e":4057}],[25,{"n":5.5,"e":4063}],[9,{"n":4.5,"e":4227}],[8,{"n":7,"e":4231}],[7,{"n":7,"e":4244}],[6,{"n":5,"e":4251}],[4,{"n":5,"e":4276}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4297}],[1,{"n":6,"e":4305}]]}],[2492,{"n":"Doherty","f":"Matt","fp":"DL","r":13,"c":69,"s":{"g":3,"s":120,"n":24,"a":5,"d":0.94,"Ss":22,"Sn":5,"Sa":4.4,"Sd":0.96,"Og":4,"Os":181.5,"On":36,"Oa":5.04,"Od":0.92,"pd":6,"pm":30},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3537}],[-36,{"n":4.5,"e":3527}],[-35,{"n":6,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":5,"e":3497}],[-32,{"n":5,"e":3480,"s":1}],[-31,{"n":6.5,"e":3477,"g":1}],[-30,{"n":5,"e":3460}],[-29,{"n":6,"e":3457,"s":1}],[-28,{"n":3.5,"e":3440}],[-27,{"n":5.5,"e":3428}],[26,{"n":5,"e":4057}],[25,{"n":6,"e":4063}],[24,{"n":4,"e":4073}],[23,{"n":3.5,"e":4085}],[22,{"n":4.5,"e":4097}],[21,{"n":4,"e":4106}],[19,{"n":6.5,"e":4127,"g":1}],[18,{"n":5,"e":4134}],[17,{"n":3.5,"e":4147}],[16,{"n":4,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":6.5,"e":4174,"g":1}],[13,{"n":5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":5.5,"e":4227,"s":1}],[8,{"n":5,"e":4231,"s":1}],[7,{"n":7,"e":4244,"g":1}],[6,{"n":5,"e":4251}],[5,{"n":5.5,"e":4263,"s":1}],[3,{"n":5,"e":4284}],[2,{"n":4.5,"e":4297}],[1,{"n":4,"e":4305}]],"fo":[[4134,[{"t":"Y"}]]],"a":{"m":14,"a":18,"M":22,"n":24}}],[2503,{"n":"Batth","f":"Danny","fp":"DC","r":1,"c":69}],[2508,{"n":"Mason","f":"Joe","fp":"A","r":1,"c":69}],[2533,{"n":"Rui Patrício","f":"","fp":"G","r":15,"c":69,"s":{"s":139,"n":26,"a":5.35,"d":1.26,"Ss":133,"Sn":25,"Sa":5.32,"Sd":1.27,"Os":196.5,"On":37,"Oa":5.31,"Od":1.11,"pg":37},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5.5,"e":3537}],[-36,{"n":5,"e":3527}],[-35,{"n":5.5,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":4,"e":3480}],[-31,{"n":5,"e":3477}],[-30,{"n":6,"e":3460}],[-28,{"n":5.5,"e":3440}],[-27,{"n":6,"e":3428}],[26,{"n":6,"e":4057}],[25,{"n":6.5,"e":4063}],[24,{"n":5.5,"e":4073}],[23,{"n":5,"e":4085}],[22,{"n":4,"e":4097}],[21,{"n":4,"e":4106}],[20,{"n":5,"e":4111}],[19,{"n":6,"e":4127}],[18,{"n":7,"e":4134}],[17,{"n":5,"e":4147}],[16,{"n":3,"e":4150}],[15,{"n":7,"e":4162}],[14,{"n":6,"e":4174}],[13,{"n":5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":5.5,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":6,"e":4227}],[8,{"n":6.5,"e":4231}],[7,{"n":7.5,"e":4244}],[6,{"n":6,"e":4251}],[5,{"n":2.5,"e":4263}],[4,{"n":3,"e":4276}],[3,{"n":5.5,"e":4284}],[2,{"n":6,"e":4297}],[1,{"n":5.5,"e":4305}]]}],[2538,{"n":"Gibbs-White","f":"Morgan","fp":"MO","r":5,"c":69,"s":{"s":19.5,"n":4,"a":4.88,"d":0.48,"Os":57.5,"On":12,"Oa":4.79,"Od":0.4,"pm":12},"p":[[-38,{"n":5,"e":3543,"s":1}],[-36,{"n":5,"e":3527,"s":1}],[-35,{"n":5,"e":3517}],[-34,{"n":5,"e":3505,"s":1}],[-31,{"n":4.5,"e":3477,"s":1}],[-30,{"n":5,"e":3460,"s":1}],[-29,{"n":4,"e":3457}],[-28,{"n":4.5,"e":3440,"s":1}],[24,{"n":5,"e":4073,"s":1}],[7,{"n":5.5,"e":4244,"s":1}],[5,{"n":4.5,"e":4263,"s":1}],[3,{"n":4.5,"e":4284}]]}],[2540,{"n":"Rúben Vinagre","f":"","fp":"DL","r":8,"c":69,"s":{"s":49.5,"n":10,"a":4.95,"d":0.72,"Os":75.5,"On":15,"Oa":5.03,"Od":0.64,"pd":10,"pm":5},"p":[[-38,{"n":5,"e":3543,"s":1}],[-37,{"n":5,"e":3537,"s":1}],[-35,{"n":5,"e":3517,"s":1}],[-33,{"n":5,"e":3497}],[-29,{"n":6,"e":3457}],[22,{"n":5.5,"e":4097,"s":1}],[21,{"n":5.5,"e":4106,"s":1}],[20,{"n":5,"e":4111}],[19,{"n":5,"e":4127,"s":1}],[16,{"n":5,"e":4150,"s":1}],[13,{"n":5,"e":4180,"s":1}],[11,{"n":5,"e":4198,"s":1}],[10,{"n":5,"e":4213,"s":1}],[8,{"n":5.5,"e":4231}],[4,{"n":3,"e":4276}]]}],[2542,{"n":"Deslandes","f":"Sylvain","fp":"DC","r":1,"c":69}],[2550,{"n":"Enobakhare","f":"Bright","fp":"A","r":1,"c":69}],[2556,{"n":"Diogo Jota","f":"","fp":"MO","r":14,"c":69,"s":{"g":3,"s":109,"n":22,"a":4.95,"d":0.9,"Ss":10,"Sn":2,"Sa":5,"Og":7,"Os":173,"On":34,"Oa":5.09,"Od":1.09,"pm":3,"pa":31},"p":[[-38,{"n":4,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":7.5,"e":3527,"g":1}],[-35,{"n":5,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":6.5,"e":3497,"g":1}],[-32,{"n":4,"e":3480}],[-31,{"n":7,"e":3477,"g":1}],[-30,{"n":6,"e":3460}],[-29,{"n":7,"e":3457,"g":1}],[-28,{"n":4,"e":3440}],[-27,{"n":4,"e":3428}],[26,{"n":5,"e":4057}],[25,{"n":5,"e":4063}],[24,{"n":5,"e":4073,"s":1}],[21,{"n":5,"e":4106,"s":1}],[20,{"n":4,"e":4111}],[19,{"n":4.5,"e":4127}],[18,{"n":4,"e":4134}],[17,{"n":5,"e":4147}],[16,{"n":7.5,"e":4150,"g":2}],[15,{"n":5,"e":4162}],[14,{"n":4.5,"e":4174}],[13,{"n":6.5,"e":4180}],[12,{"n":4.5,"e":4195}],[11,{"n":5.5,"e":4198}],[10,{"n":5,"e":4213}],[9,{"n":5,"e":4227,"s":1}],[6,{"n":6.5,"e":4251,"g":1}],[5,{"n":4,"e":4263}],[4,{"n":4.5,"e":4276,"s":1}],[3,{"n":5,"e":4284}],[2,{"n":4,"e":4297}],[1,{"n":4,"e":4305}]],"a":{"m":16,"a":23,"M":27,"n":17}}],[2557,{"n":"Ruddy","f":"John","fp":"G","r":7,"c":69,"s":{"Os":6,"On":1,"Oa":6,"pg":1},"p":[[-29,{"n":6,"e":3457}]]}],[2563,{"n":"Graham","f":"Jordan","fp":"MD","r":5,"c":69}],[2568,{"n":"Rúben Neves","f":"","fp":"MD","r":21,"c":69,"s":{"g":2,"s":139.5,"n":26,"a":5.37,"d":0.89,"Sg":2,"Ss":133.5,"Sn":25,"Sa":5.34,"Sd":0.9,"Og":3,"Os":196.5,"On":37,"Oa":5.31,"Od":0.98,"pm":37},"p":[[-38,{"n":4,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":6.5,"e":3527}],[-35,{"n":6,"e":3517}],[-34,{"n":3.5,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":3.5,"e":3480}],[-31,{"n":7,"e":3477,"g":1}],[-30,{"n":6,"e":3460}],[-28,{"n":4.5,"e":3440}],[-27,{"n":5,"e":3428}],[26,{"n":6,"e":4057}],[25,{"n":6.5,"e":4063}],[24,{"n":5.5,"e":4073}],[23,{"n":5.5,"e":4085}],[22,{"n":4.5,"e":4097}],[21,{"n":6,"e":4106,"s":1}],[20,{"n":4.5,"e":4111}],[19,{"n":7,"e":4127}],[18,{"n":5,"e":4134}],[17,{"n":5,"e":4147}],[16,{"n":4.5,"e":4150}],[15,{"n":5,"e":4162}],[14,{"n":5.5,"e":4174}],[13,{"n":6,"e":4180}],[12,{"n":7,"e":4195,"g":1}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4213}],[9,{"n":4.5,"e":4227}],[8,{"n":7,"e":4231}],[7,{"n":5,"e":4244,"s":1}],[6,{"n":4.5,"e":4251,"s":1}],[5,{"n":3.5,"e":4263}],[4,{"n":5,"e":4276}],[3,{"n":4.5,"e":4284}],[2,{"n":6,"e":4297,"g":1}],[1,{"n":5.5,"e":4305}]],"fo":[[4057,[{"t":"Y"}]],[4063,[{"t":"Y"}]],[4085,[{"t":"Y"}]]],"a":{"m":20,"a":23,"M":28,"n":6}}],[2571,{"n":"Norris","f":"Will","fp":"G","r":1,"c":69,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-37,{"n":5,"e":3537,"s":1}]]}],[2574,{"n":"Cavaleiro","f":"Ivan","fp":"A","r":7,"c":69,"s":{"Os":27.5,"On":7,"Oa":3.93,"Od":0.53,"pa":7},"p":[[-36,{"n":4.5,"e":3527,"s":1}],[-33,{"n":4.5,"e":3497,"s":1}],[-32,{"n":3,"e":3480}],[-31,{"n":4,"e":3477,"s":1}],[-29,{"n":4,"e":3457,"s":1}],[-28,{"n":4,"e":3440,"s":1}],[-27,{"n":3.5,"e":3428,"s":1}]]}],[2575,{"n":"Hélder Costa","f":"","fp":"A","r":6,"c":69,"s":{"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[-34,{"n":4,"e":3505,"s":1}],[-32,{"n":4.5,"e":3480,"s":1}],[-28,{"n":4.5,"e":3440,"s":1}]]}],[2584,{"n":"Léo Bonatini","f":"","fp":"A","r":1,"c":69}],[2597,{"n":"Saïss","f":"Romain","fp":"MD","r":11,"c":69,"s":{"g":2,"s":109,"n":22,"a":4.95,"d":0.96,"Sg":1,"Ss":55.5,"Sn":11,"Sa":5.05,"Sd":1.04,"Og":2,"Os":140,"On":28,"Oa":5,"Od":1.07,"pd":22,"pm":6},"p":[[-34,{"n":3.5,"e":3505}],[-33,{"n":5,"e":3497,"s":1}],[-32,{"n":4.5,"e":3480}],[-30,{"n":5,"e":3460}],[-29,{"n":8,"e":3457}],[-27,{"n":5,"e":3428,"s":1}],[26,{"n":5,"e":4057}],[25,{"n":6,"e":4063}],[24,{"n":4,"e":4073}],[23,{"n":4.5,"e":4085}],[22,{"n":4.5,"e":4097}],[21,{"n":5,"e":4106}],[20,{"n":5,"e":4111,"s":1}],[19,{"n":5,"e":4127}],[18,{"n":7,"e":4134,"g":1}],[17,{"n":4,"e":4147}],[16,{"n":4,"e":4150}],[15,{"n":6.5,"e":4162}],[13,{"n":5.5,"e":4180}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4213}],[8,{"n":5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":4,"e":4251}],[5,{"n":2.5,"e":4263}],[4,{"n":5,"e":4276,"g":1}],[1,{"n":5,"e":4305,"s":1}]],"fo":[[4134,[{"t":"Y"}]],[4147,[{"t":"Y"}]]]}],[2600,{"n":"Jiménez","f":"Raúl","fp":"A","r":36,"c":69,"s":{"g":11,"s":146.5,"n":26,"a":5.63,"d":1.19,"Sg":11,"Ss":141.5,"Sn":25,"Sa":5.66,"Sd":1.21,"Og":15,"Os":208,"On":38,"Oa":5.47,"Od":1.27,"pa":38},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":4.5,"e":3537}],[-36,{"n":6.5,"e":3527,"g":1}],[-35,{"n":4.5,"e":3517}],[-34,{"n":3.5,"e":3505}],[-33,{"n":7,"e":3497}],[-32,{"n":4.5,"e":3480,"s":1}],[-31,{"n":4.5,"e":3477}],[-30,{"n":6.5,"e":3460,"g":1}],[-29,{"n":7.5,"e":3457,"g":1}],[-28,{"n":3,"e":3440}],[-27,{"n":5,"e":3428,"g":1}],[26,{"n":5,"e":4057}],[25,{"n":5,"e":4063}],[24,{"n":6.5,"e":4073,"g":1}],[23,{"n":7,"e":4085,"g":2}],[22,{"n":4,"e":4097}],[21,{"n":3.5,"e":4106}],[20,{"n":4.5,"e":4111,"s":1}],[19,{"n":7.5,"e":4127,"g":1}],[18,{"n":6.5,"e":4134,"g":1}],[17,{"n":5,"e":4147}],[16,{"n":6,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":6.5,"e":4174}],[13,{"n":6.5,"e":4180,"g":1}],[12,{"n":7,"e":4195,"g":1}],[11,{"n":7.5,"e":4198,"g":1}],[10,{"n":5.5,"e":4213}],[9,{"n":5,"e":4227,"g":1}],[8,{"n":7,"e":4231}],[7,{"n":5,"e":4244}],[6,{"n":5.5,"e":4251}],[5,{"n":3,"e":4263}],[4,{"n":6,"e":4276,"g":1}],[3,{"n":6,"e":4284,"g":1}],[2,{"n":4.5,"e":4297}],[1,{"n":5,"e":4305}]],"a":{"m":36,"a":52,"M":101,"n":17}}],[2603,{"n":"Ofosu-Ayeh","f":"Phil","fp":"DC","r":1,"c":69}],[2762,{"n":"Dendoncker","f":"Leander","fp":"MD","r":13,"c":69,"s":{"g":2,"ao":1,"s":125.5,"n":26,"a":4.83,"d":1.1,"Sg":2,"Sao":1,"Ss":121,"Sn":25,"Sa":4.84,"Sd":1.12,"Og":3,"Oao":1,"Os":191,"On":38,"Oa":5.03,"Od":1.09,"pd":12,"pm":26},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3537,"g":1}],[-36,{"n":5.5,"e":3527}],[-35,{"n":5,"e":3517,"s":1}],[-34,{"n":5.5,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":3.5,"e":3480}],[-31,{"n":6,"e":3477}],[-30,{"n":6.5,"e":3460}],[-29,{"n":7,"e":3457}],[-28,{"n":4.5,"e":3440}],[-27,{"n":5.5,"e":3428}],[26,{"n":4.5,"e":4057}],[25,{"n":5,"e":4063,"s":1}],[24,{"n":4.5,"e":4073}],[23,{"n":5.5,"e":4085}],[22,{"n":6,"e":4097,"g":1}],[21,{"n":3.5,"e":4106}],[20,{"n":4,"e":4111}],[19,{"n":4,"e":4127}],[18,{"n":5,"e":4134}],[17,{"n":2.5,"e":4147}],[16,{"n":5,"e":4150}],[15,{"n":7.5,"e":4162,"g":1}],[14,{"n":5.5,"e":4174}],[13,{"n":5.5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":6,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":4,"e":4227}],[8,{"n":6,"e":4231}],[7,{"n":5.5,"e":4244}],[6,{"n":3.5,"e":4251,"a":1}],[5,{"n":3,"e":4263}],[4,{"n":4.5,"e":4276}],[3,{"n":5,"e":4284,"s":1}],[2,{"n":4,"e":4297}],[1,{"n":6,"e":4305}]],"fo":[[4057,[{"t":"Y"}]],[4147,[{"t":"Y"}]]]}],[2798,{"n":"Traoré","f":"Adama","fp":"MO","r":22,"c":69,"s":{"g":4,"s":144.5,"n":25,"a":5.78,"d":1.31,"Sg":4,"Ss":139,"Sn":24,"Sa":5.79,"Sd":1.33,"Og":4,"Os":181.5,"On":33,"Oa":5.5,"Od":1.24,"pm":7,"pa":26},"p":[[-38,{"n":4.5,"e":3543,"s":1}],[-35,{"n":4.5,"e":3517,"s":1}],[-34,{"n":4.5,"e":3505,"s":1}],[-32,{"n":4.5,"e":3480}],[-31,{"n":4.5,"e":3477,"s":1}],[-30,{"n":4.5,"e":3460,"s":1}],[-29,{"n":5,"e":3457}],[-27,{"n":5,"e":3428,"s":1}],[26,{"n":5.5,"e":4057,"s":1}],[25,{"n":5,"e":4063}],[24,{"n":6.5,"e":4073}],[23,{"n":7,"e":4085}],[22,{"n":5,"e":4097}],[21,{"n":5.5,"e":4106}],[20,{"n":5.5,"e":4111,"s":1}],[19,{"n":8,"e":4127,"g":1}],[18,{"n":6.5,"e":4134}],[17,{"n":7,"e":4147,"g":1}],[16,{"n":6,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4174}],[13,{"n":7,"e":4180}],[12,{"n":7,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":5.5,"e":4227}],[8,{"n":8.5,"e":4231,"g":2}],[7,{"n":6,"e":4244}],[6,{"n":6.5,"e":4251}],[5,{"n":3,"e":4263}],[4,{"n":3,"e":4276}],[3,{"n":5,"e":4284,"s":1}],[2,{"n":5,"e":4297,"s":1}]],"fo":[[4063,[{"t":"I"}]]],"a":{"m":17,"a":29,"M":51,"n":22}}],[2842,{"n":"Ashley-Seal","f":"Ben","fp":"A","r":1,"c":69}],[2844,{"n":"Pote","f":"","fp":"MD","r":1,"c":69}],[2846,{"n":"Watt","f":"Elliot","fp":"MD","r":1,"c":69}],[2847,{"n":"Giles","f":"Ryan","fp":"MO","r":1,"c":69}],[2889,{"n":"Ashley-Seal","f":"Benny","fp":"A","r":1,"c":69}],[2978,{"n":"Kilman","f":"Maximilian","fp":"DL","r":6,"c":69,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Os":19.5,"On":4,"Oa":4.88,"Od":0.63,"pd":4},"p":[[-37,{"n":5,"e":3537,"s":1}],[23,{"n":5,"e":4085,"s":1}],[20,{"n":5.5,"e":4111}],[14,{"n":4,"e":4174}]]}],[3352,{"n":"John","f":"Cameron","fp":"DC","r":1,"c":69}],[3501,{"n":"Ennis","f":"Niall","fp":"A","r":3,"c":69}],[3659,{"n":"Rafa Mir","f":"","fp":"A","r":5,"c":69}],[3724,{"n":"Roderick Miranda","f":"","fp":"DC","r":3,"c":69}],[4258,{"n":"Bruno Jordão","f":"","fp":"MD","r":1,"c":69}],[4282,{"n":"Pedro Neto","f":"","fp":"MO","r":12,"c":69,"s":{"g":2,"s":92.5,"n":19,"a":4.87,"d":0.76,"Sg":2,"Ss":41.5,"Sn":8,"Sa":5.19,"Sd":0.7,"Og":2,"Os":92.5,"On":19,"Oa":4.87,"Od":0.76,"pa":19},"p":[[26,{"n":5,"e":4057}],[25,{"n":4.5,"e":4063,"s":1}],[24,{"n":5,"e":4073}],[23,{"n":6.5,"e":4085,"g":1}],[22,{"n":5,"e":4097}],[21,{"n":6,"e":4106,"g":1}],[20,{"n":5,"e":4111}],[19,{"n":4.5,"e":4127,"s":1}],[18,{"n":5,"e":4134,"s":1}],[16,{"n":4.5,"e":4150,"s":1}],[15,{"n":6,"e":4162,"s":1}],[12,{"n":4,"e":4195,"s":1}],[11,{"n":4.5,"e":4198,"s":1}],[10,{"n":4.5,"e":4213,"s":1}],[7,{"n":6,"e":4244}],[6,{"n":4,"e":4251,"s":1}],[4,{"n":4,"e":4276,"s":1}],[3,{"n":4.5,"e":4284,"s":1}],[2,{"n":4,"e":4297,"s":1}]],"fo":[[4106,[{"t":"Y"}]]]}],[5431,{"n":"Sanderson","f":"Dion","fp":"DC","r":1,"c":69}],[5988,{"n":"Söndergaard","f":"Andreas","fp":"G","r":1,"c":69}],[5992,{"n":"Perry","f":"Taylor","fp":"MO","r":1,"c":69}],[6429,{"n":"Buur","f":"Oskar","fp":"DL","r":1,"c":69}],[6447,{"n":"Campana","f":"Leonardo","fp":"A","r":5,"c":69}],[6472,{"n":"Taylor","f":"Terry","fp":"MD","r":1,"c":69}],[6475,{"n":"Otasowie","f":"Owen","fp":"MD","r":1,"c":69}],[6477,{"n":"Cundle","f":"Luke","fp":"MO","r":1,"c":69}],[6493,{"n":"Shabani","f":"Meritan","fp":"MO","r":1,"c":69}],[6536,{"n":"Cristóvão","f":"Flávio","fp":"DC","r":1,"c":69}],[6538,{"n":"Campbell","f":"Chem","fp":"MO","r":1,"c":69}],[6540,{"n":"Richards","f":"Lewis","fp":"DC","r":1,"c":69}],[6552,{"n":"Daniel Podence","f":"","fp":"MO","r":7,"c":69,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[26,{"n":4.5,"e":4057,"s":1}]]}]],"np":894,"c":[[39,{"n":"Arsenal","rn":"Arsenal","cn":"Arsenal","crn":"Arsenal","a":"ARS","el":1076,"s":{"w":7,"l":6,"d":13,"pl":26,"GA":2,"GS":36,"GT":34,"p":34},"nm":[[4038,0.523],[4032,0.22]],"pM":[null,4306,4288,4285,4277,4266,4256,4247,4236,4225,4208,4198,4196,4178,4176,4158,4157,4138,4131,4119,4108,4098,4091,4078,4075,4059,4048,3429,3438,3454,3458,3477,3478,3490,3507,3509,3522,3529,3539],"DMI":[3490,4131,4138]}],[78,{"n":"Aston Villa","rn":"Aston Villa","cn":"Aston-Villa","crn":"Aston-Villa","a":"ASV","el":997,"s":{"w":7,"l":15,"d":4,"pl":26,"GA":-16,"GS":34,"GT":50,"p":25},"nm":[[4046,0.557],[4028,0.368]],"pM":[null,4304,4289,4278,4270,4267,4256,4239,4232,4218,4212,4199,4195,4179,4175,4164,4148,4145,4128,4118,4116,4100,4088,4079,4068,4058,4049],"DMI":[4128,4145]}],[36,{"n":"Bournemouth","rn":"Bournemouth","cn":"Bournemouth","crn":"Bournemouth","a":"BOU","el":1036,"s":{"w":7,"l":14,"d":5,"pl":26,"GA":-14,"GS":26,"GT":40,"p":26},"nm":[[4039,0.5],[4029,0.409]],"pM":[null,4300,4289,4286,4271,4265,4248,4240,4236,4219,4216,4200,4191,4180,4173,4166,4149,4140,4129,4119,4109,4107,4089,4084,4069,4058,4055,3428,3438,3448,3462,3468,3484,3488,3498,3508,3525,3528,3540],"DMI":[3488,4129,4140]}],[45,{"n":"Brighton","rn":"Brighton","cn":"Brighton","crn":"Brighton","a":"BHA","el":1056,"s":{"w":6,"l":11,"d":9,"pl":26,"GA":-7,"GS":31,"GT":38,"p":27},"nm":[[4045,0.45],[4030,0.437]],"pM":[null,4303,4290,4280,4272,4259,4254,4241,4228,4218,4209,4201,4197,4181,4171,4158,4150,4141,4130,4126,4109,4099,4092,4079,4069,4067,4050,3432,3441,3449,3461,3469,3479,3495,3498,3517,3518,3529,3538],"DMI":[4130,3461,4141]}],[23,{"n":"Burnley","rn":"Burnley","cn":"Burnley","crn":"Burnley","a":"BUR","el":1036,"s":{"w":10,"l":12,"d":4,"pl":26,"GA":-9,"GS":30,"GT":39,"p":34},"nm":[[4039,0.5],[4033,0.433]],"pM":[null,4301,4288,4284,4275,4259,4250,4239,4229,4223,4210,4205,4188,4186,4168,4159,4155,4139,4129,4122,4110,4100,4090,4080,4074,4059,4056,3430,3444,3450,3464,3470,3480,3488,3499,3511,3519,3532,3539],"DMI":[3488,4129,3444,4139]}],[25,{"n":"Chelsea","rn":"Chelsea","cn":"Chelsea","crn":"Chelsea","a":"CHE","el":1100,"s":{"w":12,"l":8,"d":5,"pl":25,"GA":9,"GS":43,"GT":34,"p":41},"nm":[[4029,0.591],[4051,0.437],[4040,0.468]],"pM":[null,4307,4296,4279,4269,4263,4257,4241,4233,4220,4210,4206,4189,4184,4169,4164,4151,4140,4135,4120,4108,4099,4090,4083,4075,4061,null,3432,3443,3452,3460,3471,3481,3489,3503,3511,3524,3531,3542],"DMI":[3524,4307,3443,4135,4140]}],[26,{"n":"Crystal Palace","rn":"Crystal Palace","cn":"Crystal-Palace","crn":"Crystal-Palace","a":"CRY","el":1100,"s":{"w":7,"l":10,"d":9,"pl":26,"GA":-9,"GS":23,"GT":32,"p":30},"nm":[[4030,0.563],[4041,0.524]],"pM":[null,4302,4295,4281,4270,4262,4251,4242,4235,4221,4208,4202,4189,4182,4168,4166,4156,4141,4133,4121,4115,4104,4091,4082,4077,4060,4052,3434,3442,3450,3461,3474,3482,3493,3500,3509,3520,3530,3540],"DMI":[3493,4133,3461,4141]}],[22,{"n":"Everton","rn":"Everton","cn":"Everton","crn":"Everton","a":"EVE","el":1060,"s":{"w":10,"l":10,"d":6,"pl":26,"GA":-4,"GS":34,"GT":38,"p":36},"nm":[[4038,0.477],[4031,0.381]],"pM":[null,4302,4291,4278,4276,4265,4252,4246,4229,4222,4209,4203,4193,4183,4170,4167,4151,4144,4131,4122,4113,4102,4092,4087,4070,4066,4052,3433,3439,3451,3466,3471,3487,3490,3501,3512,3520,3532,3546],"DMI":[3490,4131,3512,4144]}],[29,{"n":"Leicester","rn":"Leicester City","cn":"Leicester","crn":"Leicester-City","a":"LEI","el":1220,"s":{"w":15,"l":6,"d":5,"pl":26,"GA":28,"GS":54,"GT":26,"p":50},"nm":[[4042,0.392],[4034,0.834]],"pM":[null,4305,4296,4282,4271,4260,4249,4245,4230,4223,4215,4202,4196,4181,4170,4160,4148,4142,4132,4123,4117,4103,4093,4080,4071,4061,4057,3434,3441,3455,3463,3470,3484,3491,3502,3516,3522,3534,3542],"DMI":[3534,4132,4142]}],[21,{"n":"Liverpool","rn":"Liverpool","cn":"Liverpool","crn":"Liverpool","a":"LIV","el":1440,"s":{"w":25,"l":0,"d":1,"pl":26,"GA":46,"GS":61,"GT":15,"p":76},"nm":[[4043,0.914],[4036,0.954]],"pM":[null,4298,4293,4285,4275,4258,4257,4238,4230,4224,4211,4199,4190,4182,4171,4167,4149,4143,4137,4123,4111,4101,4096,4081,4073,4062,4054,3435,3446,3451,3464,3472,3485,3494,3503,3510,3523,3535,3543],"DMI":[4137,3446,4143]}],[40,{"n":"Man. City","rn":"Manchester City","cn":"Man-City","crn":"Manchester-City","a":"MCI","el":1296,"s":{"w":16,"l":6,"d":4,"pl":26,"GA":36,"GS":65,"GT":29,"p":52},"nm":[[4032,0.78],[4042,0.608]],"pM":[null,4299,4294,4286,4272,4264,4253,4246,4231,4221,4212,4204,4190,4184,4172,4159,4152,4138,4132,4127,4112,4102,4088,4082,4072,4065,4053,3433,3447,3448,3465,3473,3483,3492,3500,3514,3519,3534,3538],"DMI":[3534,4132,4138]}],[31,{"n":"Man. United","rn":"Manchester United","cn":"Man-United","crn":"Manchester-United","a":"MUN","el":1144,"s":{"w":9,"l":8,"d":8,"pl":25,"GA":7,"GS":36,"GT":29,"p":35},"nm":[[4051,0.563],[4031,0.619],[4044,0.789]],"pM":[null,4307,4297,4281,4268,4260,4255,4247,4237,4224,4214,4200,4197,4185,4175,4163,4152,4144,4136,4124,4110,4098,4094,4081,4074,4063,null,3435,3442,3453,3458,3473,3486,3497,3504,3512,3524,3533,3544],"DMI":[3524,4307,3486,4136,3512,4144]}],[46,{"n":"Newcastle","rn":"Newcastle Utd","cn":"Newcastle","crn":"Newcastle-Utd","a":"NEW","el":1083,"s":{"w":8,"l":11,"d":7,"pl":26,"GA":-16,"GS":24,"GT":40,"p":31},"nm":[[4033,0.567],[4041,0.476]],"pM":[null,4306,4292,4287,4273,4258,4254,4245,4237,4220,4213,4207,4191,4179,4172,4161,4153,4139,4133,4124,4113,4103,4097,4083,4070,4064,4048,3436,3444,3456,3466,3468,3478,3493,3502,3515,3518,3535,3541],"DMI":[3493,4133,3444,4139]}],[76,{"n":"Norwich","rn":"Norwich City","cn":"Norwich","crn":"Norwich-City","a":"NWC","el":940,"s":{"w":4,"l":16,"d":6,"pl":26,"GA":-24,"GS":24,"GT":48,"p":18},"nm":[[4034,0.166],[4047,0.27]],"pM":[null,4298,4292,4279,4274,4264,4250,4242,4232,4219,4214,4201,4192,4183,4176,4165,4154,4142,4134,4118,4114,4104,4094,4084,4076,4064,4054],"DMI":[4134,4142]}],[77,{"n":"Sheffield","rn":"Sheffield","cn":"Sheffield","crn":"Sheffield","a":"SFU","el":1091,"s":{"w":10,"l":7,"d":9,"pl":26,"GA":4,"GS":28,"GT":24,"p":39},"nm":[[4028,0.632],[4045,0.55]],"pM":[null,4300,4295,4282,4269,4261,4252,4238,4234,4225,4217,4205,4194,4185,4174,4161,4154,4145,4130,4125,4112,4101,4095,4078,4072,4060,4055],"DMI":[4130,4145]}],[35,{"n":"Southampton","rn":"Southampton","cn":"Southampton","crn":"Southampton","a":"SOU","el":957,"s":{"w":9,"l":13,"d":4,"pl":26,"GA":-16,"GS":32,"GT":48,"p":31},"nm":[[4046,0.443],[4037,0.398]],"pM":[null,4301,4293,4280,4268,4261,4248,4243,4233,4227,4215,4204,4193,4178,4177,4165,4153,4146,4128,4120,4115,4105,4093,4085,4077,4062,4056,3429,3445,3453,3467,3475,3479,3494,3505,3515,3525,3536,3545],"DMI":[4128,4146,3536]}],[24,{"n":"Tottenham","rn":"Tottenham","cn":"Tottenham","crn":"Tottenham","a":"TOT","el":1122,"s":{"w":11,"l":8,"d":7,"pl":26,"GA":9,"GS":43,"GT":34,"p":40},"nm":[[4040,0.532],[4035,0.513]],"pM":[null,4304,4294,4287,4277,4262,4249,4243,4228,4226,4211,4203,4194,4187,4173,4163,4155,4147,4135,4126,4114,4105,4096,4086,4076,4065,4049,3430,3443,3454,3467,3474,3485,3495,3506,3514,3526,3528,3546],"DMI":[3443,4135,4147]}],[33,{"n":"Watford","rn":"Watford","cn":"Watford","crn":"Watford","a":"WAT","el":915,"s":{"w":5,"l":12,"d":9,"pl":26,"GA":-16,"GS":24,"GT":40,"p":24},"nm":[[4036,0.046],[4044,0.211]],"pM":[null,4303,4291,4283,4273,4266,4253,4244,4234,4226,4216,4206,4192,4186,4177,4160,4156,4143,4136,4125,4116,4106,4089,4086,4068,4066,4050,3431,3446,3455,3465,3475,3486,3496,3507,3513,3527,3531,3547],"DMI":[3486,4136,3446,4143]}],[28,{"n":"West Ham","rn":"West Ham Utd","cn":"West-Ham","crn":"West-Ham-Utd","a":"WHU","el":1029,"s":{"w":6,"l":13,"d":7,"pl":26,"GA":-13,"GS":30,"GT":43,"p":25},"nm":[[4043,0.086],[4037,0.602]],"pM":[null,4299,4290,4283,4274,4267,4255,4240,4235,4222,4217,4207,4188,4187,4169,4162,4157,4146,4137,4121,4117,4107,4095,4087,4071,4067,4053,3437,3447,3456,3459,3476,3487,3489,3504,3516,3526,3536,3547],"DMI":[4137,4146,3536]}],[69,{"n":"Wolverhampton","rn":"Wolverhampton Wanderers","cn":"Wolverhampton","crn":"Wolverhampton-Wanderers","a":"WOL","el":1113,"s":{"w":8,"l":6,"d":12,"pl":26,"GA":3,"GS":35,"GT":32,"p":36},"nm":[[4047,0.73],[4035,0.487]],"pM":[null,4305,4297,4284,4276,4263,4251,4244,4231,4227,4213,4198,4195,4180,4174,4162,4150,4147,4134,4127,4111,4106,4097,4085,4073,4063,4057,3428,3440,3457,3460,3477,3480,3497,3505,3517,3527,3537,3543],"DMI":[4134,4147]}]],"nc":20,"op":[[12,{"n":"Lille"}],[15,{"n":"Montpellier"}],[41,{"n":"Strasbourg"}],[7,{"n":"Dijon"}],[4,{"n":"Saint-Étienne"}],[13,{"n":"Monaco"}],[8,{"n":"Nantes"}],[68,{"n":"Reims"}],[2,{"n":"Paris"}],[10,{"n":"Toulouse"}],[67,{"n":"Nîmes"}],[18,{"n":"Lyon"}],[3,{"n":"Bordeaux"}],[16,{"n":"Angers"}],[20,{"n":"Rennes"}],[70,{"n":"Cardiff"}],[71,{"n":"Fulham"}],[62,{"n":"Real Madrid"}],[53,{"n":"Girona"}],[74,{"n":"Valladolid"}],[51,{"n":"Celta"}],[73,{"n":"Huesca"}],[72,{"n":"Rayo"}],[5,{"n":"Caen"}],[19,{"n":"Nice"}],[14,{"n":"Guingamp"}],[48,{"n":"Alavés"}],[64,{"n":"Villarreal"}],[66,{"n":"Eibar"}],[55,{"n":"Sevilla"}],[47,{"n":"Leganés"}],[56,{"n":"Espanyol"}],[59,{"n":"Barcelona"}],[57,{"n":"Bilbao"}],[52,{"n":"Real Sociedad"}],[49,{"n":"Valencia"}],[44,{"n":"Huddersfield"}],[54,{"n":"Atlético"}],[63,{"n":"Levante"}],[42,{"n":"Amiens"}],[117,{"n":"Genoa"}],[125,{"n":"Milan"}],[58,{"n":"Getafe"}],[9,{"n":"Marseille"}],[112,{"n":"Inter"}],[116,{"n":"Roma"}],[118,{"n":"Spal"}],[126,{"n":"Verona"}],[127,{"n":"Bologna"}],[123,{"n":"Sassuolo"}],[60,{"n":"Betis"}],[124,{"n":"Udinese"}],[113,{"n":"Lecce"}],[108,{"n":"Cagliari"}],[115,{"n":"Juventus"}],[111,{"n":"Napoli"}],[120,{"n":"Sampdoria"}],[119,{"n":"Atalanta"}],[109,{"n":"Brescia"}],[114,{"n":"Parma"}]],"Ne":[[4038,{"d":27,"dB":1582475400,"t1":39,"t2":22,"o":{"h":1.94,"d":3.52,"a":3.52}}],[4032,{"d":28,"dB":1583071200,"t1":40,"t2":39}],[4046,{"d":27,"dB":1582383600,"t1":35,"t2":78,"o":{"h":1.54,"d":4.15,"a":5.1}}],[4028,{"d":28,"dB":1582988400,"t1":78,"t2":77}],[4039,{"d":27,"dB":1582383600,"t1":23,"t2":36,"o":{"h":2.05,"d":3.2,"a":3.55}}],[4029,{"d":28,"dB":1582988400,"t1":36,"t2":25,"o":{"h":5.25,"d":4.1,"a":1.54}}],[4045,{"d":27,"dB":1582383600,"t1":77,"t2":45,"o":{"h":1.85,"d":3.32,"a":4.15}}],[4030,{"d":28,"dB":1582979400,"t1":45,"t2":26,"o":{"h":1.88,"d":3.25,"a":4.05}}],[4033,{"d":28,"dB":1582988400,"t1":46,"t2":23,"o":{"h":2.26,"d":3.12,"a":3.1}}],[4051,{"d":26,"dB":1581969600,"t1":25,"t2":31,"o":{"h":1.8,"d":3.72,"a":4.4}}],[4040,{"d":27,"dB":1582374600,"t1":25,"t2":24,"o":{"h":1.78,"d":3.75,"a":3.92}}],[4041,{"d":27,"dB":1582383600,"t1":26,"t2":46,"o":{"h":1.8,"d":3.25,"a":4.55}}],[4031,{"d":28,"dB":1583071200,"t1":22,"t2":31,"o":{"h":2.41,"d":3.3,"a":2.72}}],[4042,{"d":27,"dB":1582392600,"t1":29,"t2":40,"o":{"h":4.2,"d":3.98,"a":1.68}}],[4034,{"d":28,"dB":1582920000,"t1":76,"t2":29,"o":{"h":4.1,"d":3.85,"a":1.72}}],[4043,{"d":27,"dB":1582574400,"t1":21,"t2":28,"o":{"h":1.15,"d":7.05,"a":13.8}}],[4036,{"d":28,"dB":1582997400,"t1":33,"t2":21,"o":{"h":5.85,"d":4.3,"a":1.47}}],[4047,{"d":27,"dB":1582466400,"t1":69,"t2":76,"o":{"h":1.46,"d":4.15,"a":6.25}}],[4037,{"d":28,"dB":1582988400,"t1":28,"t2":35,"o":{"h":2.44,"d":3.4,"a":2.62}}],[4035,{"d":28,"dB":1583071200,"t1":24,"t2":69,"o":{"h":1.77,"d":3.62,"a":4.1}}],[4044,{"d":27,"dB":1582466400,"t1":31,"t2":33,"o":{"h":1.55,"d":3.9,"a":5.45}}]],"e":[[3429,{"d":27,"dB":1551017100,"t1s":2,"t2s":0,"t1":39,"t2":35}],[3438,{"d":28,"dB":1551296700,"t1s":5,"t2s":1,"t1":39,"t2":36}],[3454,{"d":29,"dB":1551529800,"t1s":1,"t2s":1,"t1":24,"t2":39}],[3458,{"d":30,"dB":1552235400,"t1s":2,"t2s":0,"t1":39,"t2":31}],[3477,{"d":31,"dB":1556131500,"t1s":3,"t2s":1,"t1":69,"t2":39}],[3478,{"d":32,"dB":1554145200,"t1s":2,"t2s":0,"t1":39,"t2":46}],[3490,{"d":33,"dB":1554642300,"t1s":1,"t2s":0,"t1":22,"t2":39}],[3509,{"d":35,"dB":1555858800,"t1s":2,"t2s":3,"t1":39,"t2":26}],[3522,{"d":36,"dB":1556449200,"t1s":3,"t2s":0,"t1":29,"t2":39}],[3529,{"d":37,"dB":1557070200,"t1s":1,"t2s":1,"t1":39,"t2":45}],[4048,{"d":26,"dB":1581870600,"t1s":4,"t2s":0,"t1":39,"t2":46}],[4059,{"d":25,"dB":1580652000,"t1s":0,"t2s":0,"t1":23,"t2":39}],[4075,{"d":24,"dB":1579637700,"t1s":2,"t2s":2,"t1":25,"t2":39}],[4078,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":39,"t2":77}],[4091,{"d":22,"dB":1578745800,"t1s":1,"t2s":1,"t1":26,"t2":39}],[4098,{"d":21,"dB":1577908800,"t1s":2,"t2s":0,"t1":39,"t2":31}],[4108,{"d":20,"dB":1577628000,"t1s":1,"t2s":2,"t1":39,"t2":25}],[4119,{"d":19,"dB":1577372400,"t1s":1,"t2s":1,"t1":36,"t2":39}],[4131,{"d":18,"dB":1576931400,"t1s":0,"t2s":0,"t1":22,"t2":39}],[4158,{"d":15,"dB":1575576900,"t1s":1,"t2s":2,"t1":39,"t2":45}],[4176,{"d":14,"dB":1575208800,"t1s":2,"t2s":2,"t1":76,"t2":39}],[4178,{"d":13,"dB":1574521200,"t1s":2,"t2s":2,"t1":39,"t2":35}],[4196,{"d":12,"dB":1573320600,"t1s":2,"t2s":0,"t1":29,"t2":39}],[4198,{"d":11,"dB":1572706800,"t1s":1,"t2s":1,"t1":39,"t2":69}],[4208,{"d":10,"dB":1572193800,"t1s":2,"t2s":2,"t1":39,"t2":26}],[4225,{"d":9,"dB":1571684400,"t1s":1,"t2s":0,"t1":77,"t2":39}],[4277,{"d":4,"dB":1567351800,"t1s":2,"t2s":2,"t1":39,"t2":24}],[4285,{"d":3,"dB":1566664200,"t1s":3,"t2s":1,"t1":21,"t2":39}],[4288,{"d":2,"dB":1566041400,"t1s":2,"t2s":1,"t1":39,"t2":23}],[2975,{"d":25,"dB":1550412000,"t1s":0,"t2s":0,"t1":12,"t2":15}],[2990,{"d":26,"dB":1550864700,"t1s":1,"t2s":1,"t1":41,"t2":12}],[2996,{"d":27,"dB":1551621600,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3009,{"d":28,"dB":1552226400,"t1s":0,"t2s":1,"t1":4,"t2":12}],[3016,{"d":29,"dB":1552679100,"t1s":0,"t2s":1,"t1":12,"t2":13}],[3027,{"d":30,"dB":1554044400,"t1s":2,"t2s":3,"t1":8,"t2":12}],[3040,{"d":31,"dB":1554642000,"t1s":1,"t2s":1,"t1":68,"t2":12}],[3044,{"d":32,"dB":1555268400,"t1s":5,"t2s":1,"t1":12,"t2":2}],[3061,{"d":33,"dB":1555851600,"t1s":0,"t2s":0,"t1":10,"t2":12}],[3066,{"d":34,"dB":1556456400,"t1s":5,"t2s":0,"t1":12,"t2":67}],[3074,{"d":35,"dB":1557082800,"t1s":2,"t2s":2,"t1":18,"t2":12}],[3086,{"d":36,"dB":1557673200,"t1s":1,"t2s":0,"t1":12,"t2":3}],[3094,{"d":37,"dB":1558206000,"t1s":5,"t2s":0,"t1":12,"t2":16}],[3111,{"d":38,"dB":1558724700,"t1s":3,"t2s":1,"t1":20,"t2":12}],[4138,{"d":17,"dB":1576427400,"t1s":0,"t2s":3,"t1":39,"t2":40}],[4157,{"d":16,"dB":1575921600,"t1s":1,"t2s":3,"t1":28,"t2":39}],[4236,{"d":8,"dB":1570366800,"t1s":1,"t2s":0,"t1":39,"t2":36}],[4247,{"d":7,"dB":1569870000,"t1s":1,"t2s":1,"t1":31,"t2":39}],[4256,{"d":6,"dB":1569166200,"t1s":3,"t2s":2,"t1":39,"t2":78}],[4266,{"d":5,"dB":1568561400,"t1s":2,"t2s":2,"t1":33,"t2":39}],[4306,{"d":1,"dB":1565528400,"t1s":0,"t2s":1,"t1":46,"t2":39}],[3507,{"d":34,"dB":1555354800,"t1s":0,"t2s":1,"t1":33,"t2":39}],[3539,{"d":38,"dB":1557669600,"t1s":1,"t2s":3,"t1":23,"t2":39}],[3432,{"d":27,"dB":1554317100,"t1s":3,"t2s":0,"t1":25,"t2":45}],[3443,{"d":28,"dB":1551297600,"t1s":2,"t2s":0,"t1":25,"t2":24}],[3460,{"d":30,"dB":1552226700,"t1s":1,"t2s":1,"t1":25,"t2":69}],[3471,{"d":31,"dB":1552840200,"t1s":2,"t2s":0,"t1":22,"t2":25}],[3481,{"d":32,"dB":1554037500,"t1s":1,"t2s":2,"t1":70,"t2":25}],[3489,{"d":33,"dB":1554750000,"t1s":2,"t2s":0,"t1":25,"t2":28}],[3503,{"d":34,"dB":1555255800,"t1s":2,"t2s":0,"t1":21,"t2":25}],[3511,{"d":35,"dB":1555959600,"t1s":2,"t2s":2,"t1":25,"t2":23}],[3524,{"d":36,"dB":1556465400,"t1s":1,"t2s":1,"t1":31,"t2":25}],[3531,{"d":37,"dB":1557061200,"t1s":3,"t2s":0,"t1":25,"t2":33}],[3542,{"d":38,"dB":1557669600,"t1s":0,"t2s":0,"t1":29,"t2":25}],[4077,{"d":24,"dB":1579635000,"t1s":0,"t2s":2,"t1":26,"t2":35}],[4085,{"d":23,"dB":1579359600,"t1s":2,"t2s":3,"t1":35,"t2":69}],[4093,{"d":22,"dB":1578754800,"t1s":1,"t2s":2,"t1":29,"t2":35}],[4105,{"d":21,"dB":1577890800,"t1s":1,"t2s":0,"t1":35,"t2":24}],[4115,{"d":20,"dB":1577545200,"t1s":1,"t2s":1,"t1":35,"t2":26}],[4120,{"d":19,"dB":1577372400,"t1s":0,"t2s":2,"t1":25,"t2":35}],[4128,{"d":18,"dB":1576940400,"t1s":1,"t2s":3,"t1":78,"t2":35}],[4146,{"d":17,"dB":1576344600,"t1s":0,"t2s":1,"t1":35,"t2":28}],[4153,{"d":16,"dB":1575813600,"t1s":2,"t2s":1,"t1":46,"t2":35}],[4165,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":35,"t2":76}],[4177,{"d":14,"dB":1575135000,"t1s":2,"t2s":1,"t1":35,"t2":33}],[4193,{"d":12,"dB":1573311600,"t1s":1,"t2s":2,"t1":35,"t2":22}],[4248,{"d":6,"dB":1569006000,"t1s":1,"t2s":3,"t1":35,"t2":36}],[4261,{"d":5,"dB":1568469600,"t1s":0,"t2s":1,"t1":77,"t2":35}],[4268,{"d":4,"dB":1567251000,"t1s":1,"t2s":1,"t1":35,"t2":31}],[3437,{"d":27,"dB":1550864700,"t1s":3,"t2s":1,"t1":28,"t2":71}],[3445,{"d":28,"dB":1551296700,"t1s":2,"t2s":0,"t1":35,"t2":71}],[3452,{"d":29,"dB":1551621900,"t1s":1,"t2s":2,"t1":71,"t2":25}],[3463,{"d":30,"dB":1552143600,"t1s":3,"t2s":1,"t1":29,"t2":71}],[3472,{"d":31,"dB":1552832100,"t1s":1,"t2s":2,"t1":71,"t2":21}],[3483,{"d":32,"dB":1553949000,"t1s":0,"t2s":2,"t1":71,"t2":40}],[3496,{"d":33,"dB":1554230700,"t1s":4,"t2s":1,"t1":33,"t2":71}],[3501,{"d":34,"dB":1555164000,"t1s":2,"t2s":0,"t1":71,"t2":22}],[3508,{"d":35,"dB":1555768800,"t1s":0,"t2s":1,"t1":36,"t2":71}],[3521,{"d":36,"dB":1556373600,"t1s":1,"t2s":0,"t1":71,"t2":70}],[3537,{"d":37,"dB":1556978400,"t1s":1,"t2s":0,"t1":69,"t2":71}],[3541,{"d":38,"dB":1557669600,"t1s":0,"t2s":4,"t1":71,"t2":46}],[2209,{"d":24,"dB":1550401200,"t1s":1,"t2s":2,"t1":62,"t2":53}],[2240,{"d":27,"dB":1552247100,"t1s":1,"t2s":4,"t1":74,"t2":62}],[2247,{"d":28,"dB":1552749300,"t1s":2,"t2s":0,"t1":62,"t2":51}],[2260,{"d":29,"dB":1554057900,"t1s":3,"t2s":2,"t1":62,"t2":73}],[2316,{"d":35,"dB":1556477100,"t1s":1,"t2s":0,"t1":72,"t2":62}],[4049,{"d":26,"dB":1581861600,"t1s":2,"t2s":3,"t1":78,"t2":24}],[4058,{"d":25,"dB":1580569200,"t1s":2,"t2s":1,"t1":36,"t2":78}],[4068,{"d":24,"dB":1579635000,"t1s":2,"t2s":1,"t1":78,"t2":33}],[4079,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":45,"t2":78}],[4088,{"d":22,"dB":1578846600,"t1s":1,"t2s":6,"t1":78,"t2":40}],[4116,{"d":20,"dB":1577545200,"t1s":3,"t2s":0,"t1":33,"t2":78}],[4118,{"d":19,"dB":1577372400,"t1s":1,"t2s":0,"t1":78,"t2":76}],[4145,{"d":17,"dB":1576335600,"t1s":2,"t2s":0,"t1":77,"t2":78}],[4148,{"d":16,"dB":1575813600,"t1s":1,"t2s":4,"t1":78,"t2":29}],[4175,{"d":14,"dB":1575217800,"t1s":2,"t2s":2,"t1":31,"t2":78}],[4179,{"d":13,"dB":1574712000,"t1s":2,"t2s":0,"t1":78,"t2":46}],[4195,{"d":12,"dB":1573394400,"t1s":2,"t2s":1,"t1":69,"t2":78}],[4199,{"d":11,"dB":1572706800,"t1s":1,"t2s":2,"t1":78,"t2":21}],[4212,{"d":10,"dB":1572089400,"t1s":3,"t2s":0,"t1":40,"t2":78}],[4218,{"d":9,"dB":1571493600,"t1s":2,"t2s":1,"t1":78,"t2":45}],[4232,{"d":8,"dB":1570284000,"t1s":1,"t2s":5,"t1":76,"t2":78}],[4239,{"d":7,"dB":1569679200,"t1s":2,"t2s":2,"t1":78,"t2":23}],[4267,{"d":5,"dB":1568660400,"t1s":0,"t2s":0,"t1":78,"t2":28}],[4278,{"d":3,"dB":1566586800,"t1s":2,"t2s":0,"t1":78,"t2":22}],[4289,{"d":2,"dB":1566050400,"t1s":1,"t2s":2,"t1":78,"t2":36}],[4304,{"d":1,"dB":1565454600,"t1s":3,"t2s":1,"t1":24,"t2":78}],[2974,{"d":25,"dB":1550412000,"t1s":0,"t2s":0,"t1":5,"t2":41}],[2991,{"d":26,"dB":1551016800,"t1s":1,"t2s":1,"t1":10,"t2":5}],[2994,{"d":27,"dB":1551542400,"t1s":1,"t2s":2,"t1":5,"t2":2}],[3014,{"d":29,"dB":1552762800,"t1s":0,"t2s":5,"t1":5,"t2":4}],[3025,{"d":30,"dB":1554037200,"t1s":0,"t2s":1,"t1":13,"t2":5}],[3038,{"d":31,"dB":1554573600,"t1s":2,"t2s":0,"t1":67,"t2":5}],[3042,{"d":32,"dB":1555178400,"t1s":0,"t2s":1,"t1":5,"t2":16}],[3056,{"d":33,"dB":1555783200,"t1s":0,"t2s":1,"t1":19,"t2":5}],[3065,{"d":34,"dB":1556456400,"t1s":1,"t2s":0,"t1":5,"t2":7}],[3073,{"d":35,"dB":1556992800,"t1s":0,"t2s":0,"t1":14,"t2":5}],[3084,{"d":36,"dB":1557597600,"t1s":3,"t2s":2,"t1":5,"t2":68}],[3095,{"d":37,"dB":1558206000,"t1s":4,"t2s":0,"t1":18,"t2":5}],[3104,{"d":38,"dB":1558724700,"t1s":0,"t2s":1,"t1":5,"t2":3}],[4100,{"d":21,"dB":1577881800,"t1s":1,"t2s":2,"t1":23,"t2":78}],[4270,{"d":4,"dB":1567260000,"t1s":1,"t2s":0,"t1":26,"t2":78}],[3430,{"d":27,"dB":1550925000,"t1s":2,"t2s":1,"t1":23,"t2":24}],[3444,{"d":28,"dB":1551211200,"t1s":2,"t2s":0,"t1":46,"t2":23}],[3450,{"d":29,"dB":1551538800,"t1s":1,"t2s":3,"t1":23,"t2":26}],[3464,{"d":30,"dB":1552219200,"t1s":4,"t2s":2,"t1":21,"t2":23}],[3470,{"d":31,"dB":1552748400,"t1s":1,"t2s":2,"t1":23,"t2":29}],[3480,{"d":32,"dB":1553958000,"t1s":2,"t2s":0,"t1":23,"t2":69}],[3488,{"d":33,"dB":1554559200,"t1s":1,"t2s":3,"t1":36,"t2":23}],[3499,{"d":34,"dB":1555164000,"t1s":2,"t2s":0,"t1":23,"t2":70}],[3519,{"d":36,"dB":1556456700,"t1s":0,"t2s":1,"t1":23,"t2":40}],[3532,{"d":37,"dB":1556910000,"t1s":2,"t2s":0,"t1":22,"t2":23}],[4164,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":25,"t2":78}],[2212,{"d":25,"dB":1550943000,"t1s":0,"t2s":0,"t1":48,"t2":51}],[2227,{"d":26,"dB":1551539700,"t1s":1,"t2s":2,"t1":64,"t2":48}],[2232,{"d":27,"dB":1552132800,"t1s":1,"t2s":1,"t1":48,"t2":66}],[2245,{"d":28,"dB":1552737600,"t1s":1,"t2s":3,"t1":73,"t2":48}],[2267,{"d":30,"dB":1554399000,"t1s":2,"t2s":0,"t1":55,"t2":48}],[2272,{"d":31,"dB":1554631200,"t1s":1,"t2s":1,"t1":48,"t2":47}],[2286,{"d":32,"dB":1555153200,"t1s":2,"t2s":1,"t1":56,"t2":48}],[2302,{"d":34,"dB":1556047800,"t1s":0,"t2s":2,"t1":48,"t2":59}],[2317,{"d":35,"dB":1556362800,"t1s":1,"t2s":1,"t1":57,"t2":48}],[2322,{"d":36,"dB":1556987400,"t1s":0,"t2s":1,"t1":48,"t2":52}],[2338,{"d":37,"dB":1557678600,"t1s":3,"t2s":1,"t1":49,"t2":48}],[4159,{"d":15,"dB":1575404100,"t1s":1,"t2s":4,"t1":23,"t2":40}],[3525,{"d":36,"dB":1556373600,"t1s":3,"t2s":3,"t1":35,"t2":36}],[3545,{"d":38,"dB":1557669600,"t1s":1,"t2s":1,"t1":35,"t2":44}],[2217,{"d":25,"dB":1551124800,"t1s":0,"t2s":0,"t1":53,"t2":52}],[2231,{"d":26,"dB":1551470400,"t1s":0,"t2s":2,"t1":72,"t2":53}],[2263,{"d":30,"dB":1554226200,"t1s":2,"t2s":0,"t1":54,"t2":53}],[2279,{"d":31,"dB":1554548400,"t1s":1,"t2s":2,"t1":53,"t2":56}],[2295,{"d":33,"dB":1555758000,"t1s":2,"t2s":1,"t1":51,"t2":53}],[2310,{"d":34,"dB":1556044200,"t1s":1,"t2s":0,"t1":74,"t2":53}],[2315,{"d":35,"dB":1556452800,"t1s":1,"t2s":0,"t1":53,"t2":55}],[2336,{"d":37,"dB":1557678600,"t1s":1,"t2s":2,"t1":53,"t2":63}],[2980,{"d":25,"dB":1550419200,"t1s":2,"t2s":0,"t1":68,"t2":20}],[2986,{"d":26,"dB":1551016800,"t1s":2,"t2s":4,"t1":15,"t2":68}],[3001,{"d":27,"dB":1551553200,"t1s":2,"t2s":2,"t1":68,"t2":42}],[3003,{"d":28,"dB":1552158000,"t1s":1,"t2s":1,"t1":7,"t2":68}],[3021,{"d":29,"dB":1552831200,"t1s":1,"t2s":0,"t1":68,"t2":8}],[3030,{"d":30,"dB":1554310800,"t1s":4,"t2s":0,"t1":41,"t2":68}],[3046,{"d":32,"dB":1555178400,"t1s":0,"t2s":0,"t1":13,"t2":68}],[3059,{"d":33,"dB":1555858800,"t1s":0,"t2s":2,"t1":68,"t2":4}],[3063,{"d":34,"dB":1556456400,"t1s":1,"t2s":1,"t1":16,"t2":68}],[3079,{"d":35,"dB":1556992800,"t1s":0,"t2s":3,"t1":68,"t2":67}],[3092,{"d":37,"dB":1558206000,"t1s":0,"t2s":1,"t1":3,"t2":68}],[5762,{"d":7,"dB":1570301100,"t1s":1,"t2s":2,"t1":117,"t2":125}],[3428,{"d":27,"dB":1550934000,"t1s":1,"t2s":1,"t1":36,"t2":69}],[3448,{"d":29,"dB":1551538800,"t1s":0,"t2s":1,"t1":36,"t2":40}],[3462,{"d":30,"dB":1552143600,"t1s":0,"t2s":2,"t1":44,"t2":36}],[3468,{"d":31,"dB":1552748400,"t1s":2,"t2s":2,"t1":36,"t2":46}],[3484,{"d":32,"dB":1553958000,"t1s":2,"t2s":0,"t1":29,"t2":36}],[3498,{"d":34,"dB":1555164000,"t1s":0,"t2s":5,"t1":45,"t2":36}],[3528,{"d":37,"dB":1556969400,"t1s":1,"t2s":0,"t1":36,"t2":24}],[3540,{"d":38,"dB":1557669600,"t1s":5,"t2s":3,"t1":26,"t2":36}],[4055,{"d":26,"dB":1581256800,"t1s":2,"t2s":1,"t1":77,"t2":36}],[4109,{"d":20,"dB":1577536200,"t1s":2,"t2s":0,"t1":45,"t2":36}],[4129,{"d":18,"dB":1576940400,"t1s":0,"t2s":1,"t1":36,"t2":23}],[4140,{"d":17,"dB":1576335600,"t1s":0,"t2s":1,"t1":25,"t2":36}],[4191,{"d":12,"dB":1573311600,"t1s":2,"t2s":1,"t1":46,"t2":36}],[4200,{"d":11,"dB":1572697800,"t1s":1,"t2s":0,"t1":36,"t2":31}],[4216,{"d":10,"dB":1572098400,"t1s":0,"t2s":0,"t1":33,"t2":36}],[4219,{"d":9,"dB":1571493600,"t1s":0,"t2s":0,"t1":36,"t2":76}],[4240,{"d":7,"dB":1569679200,"t1s":2,"t2s":2,"t1":36,"t2":28}],[4265,{"d":5,"dB":1568552400,"t1s":3,"t2s":1,"t1":36,"t2":22}],[4271,{"d":4,"dB":1567260000,"t1s":3,"t2s":1,"t1":29,"t2":36}],[4286,{"d":3,"dB":1566738000,"t1s":1,"t2s":3,"t1":36,"t2":40}],[4300,{"d":1,"dB":1565445600,"t1s":1,"t2s":1,"t1":36,"t2":77}],[4107,{"d":21,"dB":1577899800,"t1s":4,"t2s":0,"t1":28,"t2":36}],[4069,{"d":24,"dB":1579635000,"t1s":3,"t2s":1,"t1":36,"t2":45}],[4084,{"d":23,"dB":1579359600,"t1s":1,"t2s":0,"t1":76,"t2":36}],[4089,{"d":22,"dB":1578837600,"t1s":0,"t2s":3,"t1":36,"t2":33}],[4149,{"d":16,"dB":1575730800,"t1s":0,"t2s":3,"t1":36,"t2":21}],[4166,{"d":15,"dB":1575401400,"t1s":1,"t2s":0,"t1":26,"t2":36}],[4173,{"d":14,"dB":1575126000,"t1s":3,"t2s":2,"t1":24,"t2":36}],[4180,{"d":13,"dB":1574521200,"t1s":1,"t2s":2,"t1":36,"t2":69}],[3431,{"d":27,"dB":1550864700,"t1s":1,"t2s":5,"t1":70,"t2":33}],[3459,{"d":30,"dB":1552143600,"t1s":2,"t2s":0,"t1":70,"t2":28}],[3436,{"d":27,"dB":1550934000,"t1s":2,"t2s":0,"t1":46,"t2":44}],[3440,{"d":28,"dB":1551210300,"t1s":1,"t2s":0,"t1":44,"t2":69}],[3449,{"d":29,"dB":1551538800,"t1s":1,"t2s":0,"t1":45,"t2":44}],[3476,{"d":31,"dB":1552748400,"t1s":4,"t2s":3,"t1":28,"t2":44}],[3441,{"d":28,"dB":1551210300,"t1s":2,"t2s":1,"t1":29,"t2":45}],[3461,{"d":30,"dB":1552134600,"t1s":1,"t2s":2,"t1":26,"t2":45}],[3479,{"d":32,"dB":1553958000,"t1s":0,"t2s":1,"t1":45,"t2":35}],[3495,{"d":33,"dB":1556045100,"t1s":1,"t2s":0,"t1":24,"t2":45}],[3518,{"d":36,"dB":1556382600,"t1s":1,"t2s":1,"t1":45,"t2":46}],[3538,{"d":38,"dB":1557669600,"t1s":1,"t2s":4,"t1":45,"t2":40}],[4099,{"d":21,"dB":1577881800,"t1s":1,"t2s":1,"t1":45,"t2":25}],[4126,{"d":19,"dB":1577363400,"t1s":2,"t2s":1,"t1":24,"t2":45}],[4130,{"d":18,"dB":1576940400,"t1s":0,"t2s":1,"t1":45,"t2":77}],[4141,{"d":17,"dB":1576525500,"t1s":1,"t2s":1,"t1":26,"t2":45}],[4171,{"d":14,"dB":1575126000,"t1s":2,"t2s":1,"t1":21,"t2":45}],[4181,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":45,"t2":29}],[4228,{"d":8,"dB":1570275000,"t1s":3,"t2s":0,"t1":45,"t2":24}],[4241,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":25,"t2":45}],[4254,{"d":6,"dB":1569083400,"t1s":0,"t2s":0,"t1":46,"t2":45}],[3469,{"d":31,"dB":1555440300,"t1s":0,"t2s":2,"t1":45,"t2":70}],[3517,{"d":35,"dB":1555768800,"t1s":0,"t2s":0,"t1":69,"t2":45}],[4067,{"d":25,"dB":1580569200,"t1s":3,"t2s":3,"t1":28,"t2":45}],[4092,{"d":22,"dB":1578754800,"t1s":1,"t2s":0,"t1":22,"t2":45}],[4272,{"d":4,"dB":1567260000,"t1s":4,"t2s":0,"t1":40,"t2":45}],[4303,{"d":1,"dB":1565445600,"t1s":0,"t2s":3,"t1":33,"t2":45}],[4050,{"d":26,"dB":1581183000,"t1s":1,"t2s":1,"t1":45,"t2":33}],[4150,{"d":16,"dB":1575822600,"t1s":2,"t2s":2,"t1":45,"t2":69}],[4197,{"d":12,"dB":1573394400,"t1s":3,"t2s":1,"t1":31,"t2":45}],[4209,{"d":10,"dB":1572098400,"t1s":3,"t2s":2,"t1":45,"t2":22}],[4259,{"d":5,"dB":1568469600,"t1s":1,"t2s":1,"t1":45,"t2":23}],[4280,{"d":3,"dB":1566655200,"t1s":0,"t2s":2,"t1":45,"t2":35}],[4290,{"d":2,"dB":1566050400,"t1s":1,"t2s":1,"t1":45,"t2":28}],[4201,{"d":11,"dB":1572706800,"t1s":2,"t2s":0,"t1":45,"t2":76}],[3482,{"d":32,"dB":1553958000,"t1s":2,"t2s":0,"t1":26,"t2":44}],[3491,{"d":33,"dB":1554559200,"t1s":1,"t2s":4,"t1":44,"t2":29}],[3506,{"d":34,"dB":1555155000,"t1s":4,"t2s":0,"t1":24,"t2":44}],[3513,{"d":35,"dB":1555768800,"t1s":1,"t2s":2,"t1":44,"t2":33}],[3533,{"d":37,"dB":1557061200,"t1s":1,"t2s":1,"t1":44,"t2":31}],[4056,{"d":26,"dB":1581769800,"t1s":1,"t2s":2,"t1":35,"t2":23}],[4074,{"d":24,"dB":1579724100,"t1s":0,"t2s":2,"t1":31,"t2":23}],[4080,{"d":23,"dB":1579442400,"t1s":2,"t2s":1,"t1":23,"t2":29}],[4110,{"d":20,"dB":1577562300,"t1s":0,"t2s":2,"t1":23,"t2":31}],[4122,{"d":19,"dB":1577372400,"t1s":1,"t2s":0,"t1":22,"t2":23}],[4139,{"d":17,"dB":1576335600,"t1s":1,"t2s":0,"t1":23,"t2":46}],[4155,{"d":16,"dB":1575730800,"t1s":5,"t2s":0,"t1":24,"t2":23}],[4168,{"d":14,"dB":1575126000,"t1s":0,"t2s":2,"t1":23,"t2":26}],[4186,{"d":13,"dB":1574521200,"t1s":0,"t2s":3,"t1":33,"t2":23}],[4188,{"d":12,"dB":1573311600,"t1s":3,"t2s":0,"t1":23,"t2":28}],[4205,{"d":11,"dB":1572706800,"t1s":3,"t2s":0,"t1":77,"t2":23}],[4210,{"d":10,"dB":1572107400,"t1s":2,"t2s":4,"t1":23,"t2":25}],[4223,{"d":9,"dB":1571493600,"t1s":2,"t2s":1,"t1":29,"t2":23}],[4229,{"d":8,"dB":1570284000,"t1s":1,"t2s":0,"t1":23,"t2":22}],[4250,{"d":6,"dB":1569074400,"t1s":2,"t2s":0,"t1":23,"t2":76}],[4275,{"d":4,"dB":1567269000,"t1s":0,"t2s":3,"t1":23,"t2":21}],[4284,{"d":3,"dB":1566747000,"t1s":1,"t2s":1,"t1":69,"t2":23}],[4301,{"d":1,"dB":1565445600,"t1s":3,"t2s":0,"t1":23,"t2":35}],[4090,{"d":22,"dB":1578754800,"t1s":3,"t2s":0,"t1":25,"t2":23}],[2982,{"d":26,"dB":1550948400,"t1s":1,"t2s":0,"t1":42,"t2":19}],[3002,{"d":28,"dB":1552158000,"t1s":2,"t2s":1,"t1":42,"t2":67}],[3012,{"d":29,"dB":1552762800,"t1s":0,"t2s":0,"t1":16,"t2":42}],[3022,{"d":30,"dB":1554037200,"t1s":0,"t2s":0,"t1":42,"t2":3}],[3032,{"d":31,"dB":1554573600,"t1s":2,"t2s":2,"t1":42,"t2":4}],[3043,{"d":32,"dB":1555088400,"t1s":0,"t2s":0,"t1":7,"t2":42}],[3055,{"d":33,"dB":1555851600,"t1s":3,"t2s":2,"t1":8,"t2":42}],[3062,{"d":34,"dB":1556456400,"t1s":0,"t2s":0,"t1":42,"t2":41}],[3076,{"d":35,"dB":1557061200,"t1s":1,"t2s":1,"t1":15,"t2":42}],[3082,{"d":36,"dB":1557597600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3096,{"d":37,"dB":1558206000,"t1s":2,"t2s":0,"t1":13,"t2":42}],[3102,{"d":38,"dB":1558724700,"t1s":2,"t2s":1,"t1":42,"t2":14}],[4061,{"d":25,"dB":1580560200,"t1s":2,"t2s":2,"t1":29,"t2":25}],[4083,{"d":23,"dB":1579368600,"t1s":1,"t2s":0,"t1":46,"t2":25}],[4135,{"d":18,"dB":1577032200,"t1s":0,"t2s":2,"t1":24,"t2":25}],[4169,{"d":14,"dB":1575126000,"t1s":0,"t2s":1,"t1":25,"t2":28}],[4184,{"d":13,"dB":1574530200,"t1s":2,"t2s":1,"t1":40,"t2":25}],[4206,{"d":11,"dB":1572715800,"t1s":1,"t2s":2,"t1":33,"t2":25}],[4220,{"d":9,"dB":1571493600,"t1s":1,"t2s":0,"t1":25,"t2":46}],[4233,{"d":8,"dB":1570366800,"t1s":1,"t2s":4,"t1":35,"t2":25}],[4257,{"d":6,"dB":1569166200,"t1s":1,"t2s":2,"t1":25,"t2":21}],[4263,{"d":5,"dB":1568469600,"t1s":2,"t2s":5,"t1":69,"t2":25}],[4269,{"d":4,"dB":1567260000,"t1s":2,"t2s":2,"t1":25,"t2":77}],[4279,{"d":3,"dB":1566646200,"t1s":2,"t2s":3,"t1":76,"t2":25}],[4296,{"d":2,"dB":1566142200,"t1s":1,"t2s":1,"t1":25,"t2":29}],[4307,{"d":1,"dB":1565537400,"t1s":4,"t2s":0,"t1":31,"t2":25}],[4151,{"d":16,"dB":1575721800,"t1s":3,"t2s":1,"t1":22,"t2":25}],[4189,{"d":12,"dB":1573302600,"t1s":2,"t2s":0,"t1":25,"t2":26}],[3434,{"d":27,"dB":1550943000,"t1s":1,"t2s":4,"t1":29,"t2":26}],[3442,{"d":28,"dB":1551297600,"t1s":1,"t2s":3,"t1":26,"t2":31}],[3474,{"d":31,"dB":1554317100,"t1s":2,"t2s":0,"t1":24,"t2":26}],[3493,{"d":33,"dB":1554559200,"t1s":0,"t2s":1,"t1":46,"t2":26}],[3530,{"d":37,"dB":1556987400,"t1s":2,"t2s":3,"t1":70,"t2":26}],[3433,{"d":27,"dB":1550941200,"t1s":0,"t2s":2,"t1":22,"t2":40}],[3451,{"d":29,"dB":1551629700,"t1s":0,"t2s":0,"t1":22,"t2":21}],[3466,{"d":30,"dB":1552143600,"t1s":3,"t2s":2,"t1":46,"t2":22}],[3487,{"d":32,"dB":1553967000,"t1s":0,"t2s":2,"t1":28,"t2":22}],[3512,{"d":35,"dB":1555849800,"t1s":4,"t2s":0,"t1":22,"t2":31}],[3520,{"d":36,"dB":1556373600,"t1s":0,"t2s":0,"t1":26,"t2":22}],[3546,{"d":38,"dB":1557669600,"t1s":2,"t2s":2,"t1":24,"t2":22}],[3500,{"d":34,"dB":1555247100,"t1s":1,"t2s":3,"t1":26,"t2":40}],[4052,{"d":26,"dB":1581165000,"t1s":3,"t2s":1,"t1":22,"t2":26}],[4060,{"d":25,"dB":1580569200,"t1s":0,"t2s":1,"t1":26,"t2":77}],[4133,{"d":18,"dB":1576940400,"t1s":1,"t2s":0,"t1":46,"t2":26}],[4156,{"d":16,"dB":1575730800,"t1s":0,"t2s":0,"t1":33,"t2":26}],[4182,{"d":13,"dB":1574521200,"t1s":1,"t2s":2,"t1":26,"t2":21}],[4202,{"d":11,"dB":1572789600,"t1s":0,"t2s":2,"t1":26,"t2":29}],[4221,{"d":9,"dB":1571502600,"t1s":0,"t2s":2,"t1":26,"t2":40}],[4235,{"d":8,"dB":1570293000,"t1s":1,"t2s":2,"t1":28,"t2":26}],[4251,{"d":6,"dB":1569157200,"t1s":1,"t2s":1,"t1":26,"t2":69}],[4262,{"d":5,"dB":1568469600,"t1s":4,"t2s":0,"t1":24,"t2":26}],[4281,{"d":3,"dB":1566655200,"t1s":1,"t2s":2,"t1":31,"t2":26}],[4295,{"d":2,"dB":1566133200,"t1s":1,"t2s":0,"t1":77,"t2":26}],[4302,{"d":1,"dB":1565445600,"t1s":0,"t2s":0,"t1":26,"t2":22}],[4082,{"d":23,"dB":1579359600,"t1s":2,"t2s":2,"t1":40,"t2":26}],[4242,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":26,"t2":76}],[4121,{"d":19,"dB":1577372400,"t1s":2,"t2s":1,"t1":26,"t2":28}],[4104,{"d":21,"dB":1577899800,"t1s":1,"t2s":1,"t1":76,"t2":26}],[4183,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":22,"t2":76}],[4203,{"d":11,"dB":1572798600,"t1s":1,"t2s":1,"t1":22,"t2":24}],[4252,{"d":6,"dB":1569074400,"t1s":0,"t2s":2,"t1":22,"t2":77}],[2985,{"d":26,"dB":1551038400,"t1s":2,"t2s":0,"t1":13,"t2":18}],[2992,{"d":27,"dB":1551553200,"t1s":2,"t2s":2,"t1":16,"t2":13}],[3005,{"d":28,"dB":1552158000,"t1s":1,"t2s":1,"t1":13,"t2":3}],[3035,{"d":31,"dB":1554573600,"t1s":1,"t2s":1,"t1":14,"t2":13}],[3070,{"d":34,"dB":1556730000,"t1s":2,"t2s":2,"t1":20,"t2":13}],[3075,{"d":35,"dB":1557068400,"t1s":2,"t2s":3,"t1":13,"t2":4}],[3089,{"d":36,"dB":1557597600,"t1s":1,"t2s":0,"t1":67,"t2":13}],[3108,{"d":38,"dB":1558724700,"t1s":2,"t2s":0,"t1":19,"t2":13}],[4066,{"d":25,"dB":1580569200,"t1s":2,"t2s":3,"t1":33,"t2":22}],[4070,{"d":24,"dB":1579635000,"t1s":2,"t2s":2,"t1":22,"t2":46}],[4087,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":28,"t2":22}],[4102,{"d":21,"dB":1577899800,"t1s":2,"t2s":1,"t1":40,"t2":22}],[4113,{"d":20,"dB":1577545200,"t1s":1,"t2s":2,"t1":46,"t2":22}],[4167,{"d":15,"dB":1575490500,"t1s":5,"t2s":2,"t1":21,"t2":22}],[4170,{"d":14,"dB":1575217800,"t1s":2,"t2s":1,"t1":29,"t2":22}],[4222,{"d":9,"dB":1571484600,"t1s":2,"t2s":0,"t1":22,"t2":28}],[3439,{"d":28,"dB":1551210300,"t1s":0,"t2s":3,"t1":70,"t2":22}],[4246,{"d":7,"dB":1569688200,"t1s":1,"t2s":3,"t1":22,"t2":40}],[4276,{"d":4,"dB":1567342800,"t1s":3,"t2s":2,"t1":22,"t2":69}],[4291,{"d":2,"dB":1566050400,"t1s":1,"t2s":0,"t1":22,"t2":33}],[4144,{"d":17,"dB":1576418400,"t1s":1,"t2s":1,"t1":31,"t2":22}],[3457,{"d":29,"dB":1551538800,"t1s":2,"t2s":0,"t1":69,"t2":70}],[3492,{"d":33,"dB":1554317100,"t1s":2,"t2s":0,"t1":40,"t2":70}],[3510,{"d":35,"dB":1555858800,"t1s":0,"t2s":2,"t1":70,"t2":21}],[3523,{"d":36,"dB":1556305200,"t1s":5,"t2s":0,"t1":21,"t2":44}],[3455,{"d":29,"dB":1551614400,"t1s":2,"t2s":1,"t1":33,"t2":29}],[3502,{"d":34,"dB":1555095600,"t1s":0,"t2s":1,"t1":29,"t2":46}],[3516,{"d":35,"dB":1555768800,"t1s":2,"t2s":2,"t1":28,"t2":29}],[3534,{"d":37,"dB":1557169200,"t1s":1,"t2s":0,"t1":40,"t2":29}],[4057,{"d":26,"dB":1581710400,"t1s":0,"t2s":0,"t1":69,"t2":29}],[4071,{"d":24,"dB":1579721400,"t1s":4,"t2s":1,"t1":29,"t2":28}],[4103,{"d":21,"dB":1577890800,"t1s":0,"t2s":3,"t1":46,"t2":29}],[4123,{"d":19,"dB":1577390400,"t1s":0,"t2s":4,"t1":29,"t2":21}],[4132,{"d":18,"dB":1576949400,"t1s":3,"t2s":1,"t1":40,"t2":29}],[4142,{"d":17,"dB":1576335600,"t1s":1,"t2s":1,"t1":29,"t2":76}],[4160,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":29,"t2":33}],[4215,{"d":10,"dB":1572030000,"t1s":0,"t2s":9,"t1":35,"t2":29}],[4230,{"d":8,"dB":1570284000,"t1s":2,"t2s":1,"t1":21,"t2":29}],[4245,{"d":7,"dB":1569771000,"t1s":5,"t2s":0,"t1":29,"t2":46}],[4249,{"d":6,"dB":1569065400,"t1s":2,"t2s":1,"t1":29,"t2":24}],[4260,{"d":5,"dB":1568469600,"t1s":1,"t2s":0,"t1":31,"t2":29}],[4282,{"d":3,"dB":1566655200,"t1s":1,"t2s":2,"t1":77,"t2":29}],[4305,{"d":1,"dB":1565528400,"t1s":0,"t2s":0,"t1":29,"t2":69}],[4117,{"d":20,"dB":1577554200,"t1s":1,"t2s":2,"t1":28,"t2":29}],[3456,{"d":29,"dB":1551547800,"t1s":2,"t2s":0,"t1":28,"t2":46}],[3515,{"d":35,"dB":1555777800,"t1s":3,"t2s":1,"t1":46,"t2":35}],[3535,{"d":37,"dB":1556995500,"t1s":2,"t2s":3,"t1":46,"t2":21}],[3497,{"d":33,"dB":1554230700,"t1s":2,"t2s":1,"t1":69,"t2":31}],[3527,{"d":36,"dB":1556373600,"t1s":1,"t2s":2,"t1":33,"t2":69}],[3543,{"d":38,"dB":1557669600,"t1s":2,"t2s":0,"t1":21,"t2":69}],[4106,{"d":21,"dB":1577890800,"t1s":2,"t2s":1,"t1":33,"t2":69}],[4111,{"d":20,"dB":1577637000,"t1s":1,"t2s":0,"t1":21,"t2":69}],[4127,{"d":19,"dB":1577475900,"t1s":3,"t2s":2,"t1":69,"t2":40}],[4162,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":69,"t2":28}],[4227,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":69,"t2":35}],[4231,{"d":8,"dB":1570366800,"t1s":0,"t2s":2,"t1":40,"t2":69}],[4297,{"d":2,"dB":1566241200,"t1s":1,"t2s":1,"t1":69,"t2":31}],[3435,{"d":27,"dB":1551017100,"t1s":0,"t2s":0,"t1":31,"t2":21}],[3446,{"d":28,"dB":1551297600,"t1s":5,"t2s":0,"t1":21,"t2":33}],[3485,{"d":32,"dB":1554046200,"t1s":2,"t2s":1,"t1":21,"t2":24}],[3494,{"d":33,"dB":1554490800,"t1s":1,"t2s":3,"t1":35,"t2":21}],[4054,{"d":26,"dB":1581787800,"t1s":0,"t2s":1,"t1":76,"t2":21}],[4062,{"d":25,"dB":1580569200,"t1s":4,"t2s":0,"t1":21,"t2":35}],[4073,{"d":24,"dB":1579809600,"t1s":1,"t2s":2,"t1":69,"t2":21}],[4081,{"d":23,"dB":1579451400,"t1s":2,"t2s":0,"t1":21,"t2":31}],[4137,{"d":18,"dB":1580327100,"t1s":0,"t2s":2,"t1":28,"t2":21}],[4190,{"d":12,"dB":1573403400,"t1s":3,"t2s":1,"t1":21,"t2":40}],[4211,{"d":10,"dB":1572193800,"t1s":2,"t2s":1,"t1":21,"t2":24}],[4224,{"d":9,"dB":1571585400,"t1s":1,"t2s":1,"t1":31,"t2":21}],[4238,{"d":7,"dB":1569670200,"t1s":0,"t2s":1,"t1":77,"t2":21}],[4258,{"d":5,"dB":1568460600,"t1s":3,"t2s":1,"t1":21,"t2":46}],[4293,{"d":2,"dB":1566050400,"t1s":1,"t2s":2,"t1":35,"t2":21}],[4298,{"d":1,"dB":1565377200,"t1s":4,"t2s":1,"t1":21,"t2":76}],[4096,{"d":22,"dB":1578763800,"t1s":0,"t2s":1,"t1":24,"t2":21}],[4101,{"d":21,"dB":1577995200,"t1s":2,"t2s":0,"t1":21,"t2":77}],[4143,{"d":17,"dB":1576326600,"t1s":2,"t2s":0,"t1":21,"t2":33}],[4053,{"d":26,"dB":1582140600,"dl":1,"t1s":null,"t2s":null,"t1":40,"t2":28}],[4172,{"d":14,"dB":1575117000,"t1s":2,"t2s":2,"t1":46,"t2":40}],[4253,{"d":6,"dB":1569074400,"t1s":8,"t2s":0,"t1":40,"t2":33}],[3447,{"d":28,"dB":1551297600,"t1s":1,"t2s":0,"t1":40,"t2":28}],[3465,{"d":30,"dB":1552152600,"t1s":3,"t2s":1,"t1":40,"t2":33}],[3473,{"d":31,"dB":1556132400,"t1s":0,"t2s":2,"t1":31,"t2":40}],[3514,{"d":35,"dB":1555759800,"t1s":1,"t2s":0,"t1":40,"t2":24}],[4065,{"d":25,"dB":1580661000,"t1s":2,"t2s":0,"t1":24,"t2":40}],[4072,{"d":24,"dB":1579635000,"t1s":0,"t2s":1,"t1":77,"t2":40}],[4112,{"d":20,"dB":1577642400,"t1s":2,"t2s":0,"t1":40,"t2":77}],[4152,{"d":16,"dB":1575739800,"t1s":1,"t2s":2,"t1":40,"t2":31}],[4204,{"d":11,"dB":1572706800,"t1s":2,"t2s":1,"t1":40,"t2":35}],[4264,{"d":5,"dB":1568478600,"t1s":3,"t2s":2,"t1":76,"t2":40}],[4294,{"d":2,"dB":1566059400,"t1s":2,"t2s":2,"t1":40,"t2":24}],[4299,{"d":1,"dB":1565436600,"t1s":0,"t2s":5,"t1":28,"t2":40}],[2237,{"d":27,"dB":1552230900,"t1s":2,"t2s":3,"t1":53,"t2":49}],[2249,{"d":28,"dB":1552765500,"t1s":0,"t2s":2,"t1":47,"t2":53}],[2284,{"d":32,"dB":1555259400,"t1s":0,"t2s":1,"t1":53,"t2":64}],[2323,{"d":36,"dB":1557050400,"t1s":2,"t2s":0,"t1":58,"t2":53}],[2214,{"d":25,"dB":1551021300,"t1s":2,"t2s":0,"t1":54,"t2":64}],[2229,{"d":26,"dB":1551634200,"t1s":0,"t2s":2,"t1":52,"t2":54}],[2234,{"d":27,"dB":1552144500,"t1s":1,"t2s":0,"t1":54,"t2":47}],[2242,{"d":28,"dB":1552757400,"t1s":2,"t2s":0,"t1":57,"t2":54}],[2277,{"d":31,"dB":1554576300,"t1s":2,"t2s":0,"t1":59,"t2":54}],[2283,{"d":32,"dB":1555173000,"t1s":2,"t2s":0,"t1":54,"t2":51}],[2298,{"d":33,"dB":1555769700,"t1s":0,"t2s":1,"t1":66,"t2":54}],[2303,{"d":34,"dB":1556127000,"t1s":3,"t2s":2,"t1":54,"t2":49}],[2312,{"d":35,"dB":1556374500,"t1s":1,"t2s":0,"t1":54,"t2":74}],[2328,{"d":36,"dB":1556979300,"t1s":3,"t2s":0,"t1":56,"t2":54}],[2333,{"d":37,"dB":1557678600,"t1s":1,"t2s":1,"t1":54,"t2":55}],[2348,{"d":38,"dB":1558177200,"t1s":2,"t2s":2,"t1":63,"t2":54}],[3453,{"d":29,"dB":1551538800,"t1s":3,"t2s":2,"t1":31,"t2":35}],[3486,{"d":32,"dB":1553958000,"t1s":2,"t2s":1,"t1":31,"t2":33}],[3504,{"d":34,"dB":1555173000,"t1s":2,"t2s":1,"t1":31,"t2":28}],[3544,{"d":38,"dB":1557669600,"t1s":0,"t2s":2,"t1":31,"t2":70}],[4124,{"d":19,"dB":1577381400,"t1s":4,"t2s":1,"t1":31,"t2":46}],[4136,{"d":18,"dB":1577023200,"t1s":2,"t2s":0,"t1":33,"t2":31}],[4063,{"d":25,"dB":1580578200,"t1s":0,"t2s":0,"t1":31,"t2":69}],[4094,{"d":22,"dB":1578754800,"t1s":4,"t2s":0,"t1":31,"t2":76}],[4163,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":31,"t2":24}],[4185,{"d":13,"dB":1574613000,"t1s":3,"t2s":3,"t1":77,"t2":31}],[4214,{"d":10,"dB":1572193800,"t1s":1,"t2s":3,"t1":76,"t2":31}],[4237,{"d":8,"dB":1570375800,"t1s":1,"t2s":0,"t1":46,"t2":31}],[4255,{"d":6,"dB":1569157200,"t1s":2,"t2s":0,"t1":28,"t2":31}],[2999,{"d":27,"dB":1551621600,"t1s":1,"t2s":0,"t1":19,"t2":41}],[3004,{"d":28,"dB":1552248000,"t1s":1,"t2s":0,"t1":9,"t2":19}],[3018,{"d":29,"dB":1552672800,"t1s":1,"t2s":1,"t1":19,"t2":10}],[3037,{"d":31,"dB":1554649200,"t1s":1,"t2s":0,"t1":19,"t2":15}],[3049,{"d":32,"dB":1555246800,"t1s":0,"t2s":0,"t1":20,"t2":19}],[3069,{"d":34,"dB":1556456400,"t1s":3,"t2s":0,"t1":19,"t2":14}],[3078,{"d":35,"dB":1556982000,"t1s":1,"t2s":1,"t1":2,"t2":19}],[3088,{"d":36,"dB":1557597600,"t1s":1,"t2s":1,"t1":19,"t2":8}],[3099,{"d":37,"dB":1558206000,"t1s":3,"t2s":0,"t1":4,"t2":19}],[4064,{"d":25,"dB":1580569200,"t1s":0,"t2s":0,"t1":46,"t2":76}],[4161,{"d":15,"dB":1575574200,"t1s":0,"t2s":2,"t1":77,"t2":46}],[4207,{"d":11,"dB":1572706800,"t1s":2,"t2s":3,"t1":28,"t2":46}],[4213,{"d":10,"dB":1572184800,"t1s":1,"t2s":1,"t1":46,"t2":69}],[4287,{"d":3,"dB":1566747000,"t1s":0,"t2s":1,"t1":24,"t2":46}],[4097,{"d":22,"dB":1578754800,"t1s":1,"t2s":1,"t1":69,"t2":46}],[3467,{"d":30,"dB":1552143600,"t1s":2,"t2s":1,"t1":35,"t2":24}],[3526,{"d":36,"dB":1556364600,"t1s":0,"t2s":1,"t1":24,"t2":28}],[4187,{"d":13,"dB":1574512200,"t1s":2,"t2s":3,"t1":28,"t2":24}],[4226,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":24,"t2":33}],[4243,{"d":7,"dB":1569679200,"t1s":2,"t2s":1,"t1":24,"t2":35}],[4273,{"d":4,"dB":1567260000,"t1s":1,"t2s":1,"t1":46,"t2":33}],[4292,{"d":2,"dB":1566050400,"t1s":3,"t2s":1,"t1":76,"t2":46}],[5660,{"d":17,"dB":1576947600,"t1s":4,"t2s":0,"t1":112,"t2":117}],[5680,{"d":15,"dB":1575661500,"t1s":0,"t2s":0,"t1":112,"t2":116}],[5692,{"d":14,"dB":1575208800,"t1s":2,"t2s":1,"t1":112,"t2":118}],[5710,{"d":12,"dB":1573318800,"t1s":2,"t2s":1,"t1":112,"t2":126}],[5719,{"d":11,"dB":1572714000,"t1s":1,"t2s":2,"t1":127,"t2":112}],[5756,{"d":8,"dB":1571567400,"t1s":3,"t2s":4,"t1":123,"t2":112}],[4076,{"d":24,"dB":1579721400,"t1s":2,"t2s":1,"t1":24,"t2":76}],[4134,{"d":18,"dB":1576940400,"t1s":1,"t2s":2,"t1":76,"t2":69}],[4154,{"d":16,"dB":1575813600,"t1s":1,"t2s":2,"t1":76,"t2":77}],[2257,{"d":29,"dB":1553889600,"t1s":1,"t2s":2,"t1":53,"t2":57}],[2342,{"d":38,"dB":1558205100,"t1s":2,"t2s":1,"t1":48,"t2":53}],[4114,{"d":20,"dB":1577554200,"t1s":2,"t2s":2,"t1":76,"t2":24}],[4192,{"d":12,"dB":1573243200,"t1s":0,"t2s":2,"t1":76,"t2":33}],[4274,{"d":4,"dB":1567260000,"t1s":2,"t2s":0,"t1":28,"t2":76}],[4095,{"d":22,"dB":1578686400,"t1s":1,"t2s":0,"t1":77,"t2":28}],[4125,{"d":19,"dB":1577372400,"t1s":1,"t2s":1,"t1":77,"t2":33}],[4174,{"d":14,"dB":1575208800,"t1s":1,"t2s":1,"t1":69,"t2":77}],[4234,{"d":8,"dB":1570284000,"t1s":0,"t2s":0,"t1":33,"t2":77}],[4194,{"d":12,"dB":1573311600,"t1s":1,"t2s":1,"t1":24,"t2":77}],[4217,{"d":10,"dB":1572098400,"t1s":1,"t2s":1,"t1":28,"t2":77}],[3475,{"d":31,"dB":1556045100,"t1s":1,"t2s":1,"t1":33,"t2":35}],[3505,{"d":34,"dB":1555164000,"t1s":3,"t2s":1,"t1":35,"t2":69}],[3536,{"d":37,"dB":1556978400,"t1s":3,"t2s":0,"t1":28,"t2":35}],[2230,{"d":26,"dB":1551610800,"t1s":1,"t2s":0,"t1":66,"t2":51}],[2239,{"d":27,"dB":1552215600,"t1s":0,"t2s":1,"t1":51,"t2":60}],[2254,{"d":29,"dB":1553967000,"t1s":3,"t2s":2,"t1":51,"t2":64}],[2270,{"d":30,"dB":1554316200,"t1s":3,"t2s":3,"t1":73,"t2":51}],[2274,{"d":31,"dB":1554654600,"t1s":3,"t2s":1,"t1":51,"t2":52}],[2318,{"d":35,"dB":1556382600,"t1s":0,"t2s":0,"t1":47,"t2":51}],[2329,{"d":36,"dB":1556995500,"t1s":2,"t2s":0,"t1":51,"t2":59}],[2332,{"d":37,"dB":1557678600,"t1s":3,"t2s":1,"t1":57,"t2":51}],[2343,{"d":38,"dB":1558205100,"t1s":2,"t2s":2,"t1":51,"t2":72}],[2308,{"d":34,"dB":1556130600,"t1s":1,"t2s":1,"t1":56,"t2":51}],[4086,{"d":23,"dB":1579350600,"t1s":0,"t2s":0,"t1":33,"t2":24}],[4147,{"d":17,"dB":1576418400,"t1s":1,"t2s":2,"t1":69,"t2":24}],[2205,{"d":24,"dB":1550432700,"t1s":1,"t2s":1,"t1":60,"t2":48}],[2222,{"d":26,"dB":1551626100,"t1s":1,"t2s":2,"t1":60,"t2":58}],[2246,{"d":28,"dB":1552851900,"t1s":1,"t2s":4,"t1":60,"t2":59}],[2258,{"d":29,"dB":1554033600,"t1s":1,"t2s":1,"t1":72,"t2":60}],[2269,{"d":30,"dB":1554406200,"t1s":2,"t2s":1,"t1":52,"t2":60}],[2273,{"d":31,"dB":1554662700,"t1s":2,"t2s":1,"t1":60,"t2":64}],[2288,{"d":32,"dB":1555181100,"t1s":3,"t2s":2,"t1":55,"t2":60}],[2294,{"d":33,"dB":1555872300,"t1s":1,"t2s":2,"t1":60,"t2":49}],[2314,{"d":35,"dB":1556564400,"t1s":1,"t2s":1,"t1":60,"t2":56}],[2330,{"d":36,"dB":1557057600,"t1s":1,"t2s":0,"t1":66,"t2":60}],[2335,{"d":37,"dB":1557678600,"t1s":2,"t2s":1,"t1":60,"t2":73}],[2350,{"d":38,"dB":1558260000,"t1s":0,"t2s":2,"t1":62,"t2":60}],[2997,{"d":27,"dB":1551628800,"t1s":5,"t2s":1,"t1":18,"t2":10}],[3017,{"d":29,"dB":1552829400,"t1s":3,"t2s":2,"t1":18,"t2":15}],[3028,{"d":30,"dB":1553888700,"t1s":0,"t2s":1,"t1":20,"t2":18}],[3036,{"d":31,"dB":1554562800,"t1s":1,"t2s":3,"t1":18,"t2":7}],[3048,{"d":32,"dB":1555094700,"t1s":2,"t2s":1,"t1":8,"t2":18}],[3054,{"d":33,"dB":1555699500,"t1s":2,"t2s":1,"t1":18,"t2":16}],[3064,{"d":34,"dB":1556304300,"t1s":2,"t2s":3,"t1":3,"t2":18}],[3087,{"d":36,"dB":1557687600,"t1s":0,"t2s":3,"t1":9,"t2":18}],[3109,{"d":38,"dB":1558724700,"t1s":2,"t2s":3,"t1":67,"t2":18}],[2989,{"d":26,"dB":1551024000,"t1s":1,"t2s":1,"t1":20,"t2":9}],[3008,{"d":28,"dB":1552233600,"t1s":3,"t2s":1,"t1":20,"t2":5}],[3013,{"d":29,"dB":1552838400,"t1s":1,"t2s":1,"t1":3,"t2":20}],[3033,{"d":31,"dB":1554573600,"t1s":3,"t2s":3,"t1":16,"t2":20}],[3052,{"d":33,"dB":1555693200,"t1s":3,"t2s":2,"t1":7,"t2":20}],[3081,{"d":35,"dB":1557061200,"t1s":2,"t2s":2,"t1":10,"t2":20}],[3090,{"d":36,"dB":1557666000,"t1s":1,"t2s":1,"t1":20,"t2":14}],[3100,{"d":37,"dB":1558206000,"t1s":0,"t2s":2,"t1":41,"t2":20}],[4244,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":69,"t2":33}],[4283,{"d":3,"dB":1566655200,"t1s":1,"t2s":3,"t1":33,"t2":28}],[3547,{"d":38,"dB":1557669600,"t1s":1,"t2s":4,"t1":33,"t2":28}],[5646,{"d":19,"dB":1578828600,"t1s":3,"t2s":0,"t1":124,"t2":123}],[5653,{"d":18,"dB":1578330000,"t1s":0,"t2s":1,"t1":113,"t2":124}],[5667,{"d":17,"dB":1576936800,"t1s":2,"t2s":1,"t1":124,"t2":108}],[5673,{"d":16,"dB":1576418400,"t1s":3,"t2s":1,"t1":115,"t2":124}],[5687,{"d":15,"dB":1575738000,"t1s":1,"t2s":1,"t1":124,"t2":111}],[5704,{"d":13,"dB":1574614800,"t1s":2,"t2s":1,"t1":120,"t2":124}],[5737,{"d":10,"dB":1572465600,"t1s":0,"t2s":4,"t1":124,"t2":116}],[5738,{"d":9,"dB":1572184800,"t1s":7,"t2s":1,"t1":119,"t2":124}],[5797,{"d":4,"dB":1569070800,"t1s":0,"t2s":1,"t1":124,"t2":109}],[5801,{"d":3,"dB":1568486700,"t1s":1,"t2s":0,"t1":112,"t2":124}],[5817,{"d":2,"dB":1567363500,"t1s":1,"t2s":3,"t1":124,"t2":114}],[5826,{"d":1,"dB":1566748800,"t1s":1,"t2s":0,"t1":124,"t2":125}],[2211,{"d":24,"dB":1550424600,"t1s":3,"t2s":0,"t1":64,"t2":55}],[2238,{"d":27,"dB":1552239000,"t1s":0,"t2s":2,"t1":63,"t2":64}],[2251,{"d":28,"dB":1552843800,"t1s":3,"t2s":1,"t1":64,"t2":72}],[2301,{"d":33,"dB":1555864200,"t1s":2,"t2s":1,"t1":64,"t2":47}],[2305,{"d":34,"dB":1556217000,"t1s":0,"t2s":1,"t1":52,"t2":64}],[2321,{"d":35,"dB":1556469000,"t1s":1,"t2s":1,"t1":64,"t2":73}],[2326,{"d":36,"dB":1557065700,"t1s":3,"t2s":2,"t1":62,"t2":64}],[2339,{"d":37,"dB":1557678600,"t1s":1,"t2s":0,"t1":64,"t2":66}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.premier-league.20201021.json b/src/test/resources/__files/mlnstats.premier-league.20201021.json deleted file mode 100644 index 272a62e..0000000 --- a/src/test/resources/__files/mlnstats.premier-league.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2020-10-21T15:40:47.656Z","mL":{"i":2,"n":"Premier League","cN":"Premier-League","aS":{"i":16,"n":"Premier League 2020-2021","cN":"Premier-League-2020-2021","mD":38,"cD":{"d":5,"lD":5,"p":0}},"lS":{"i":10,"n":"Premier League 2019-2020","cN":"Premier-League-2019-2020","mD":38}},"le":[[2,"Premier-League"],[3,"Liga"],[1,"Ligue-1"],[5,"Serie-A"]],"p":[[2,{"n":"Lacazette","f":"Alexandre","fp":"A","r":29,"c":39,"s":{"g":3,"s":23,"n":4,"a":5.75,"d":0.87,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":11,"Os":165,"On":31,"Oa":5.32,"Od":0.96,"pa":31},"p":[[5,{"n":4.5,"e":6889,"s":1}],[3,{"n":6,"e":6907,"g":1}],[2,{"n":6,"e":6912,"g":1}],[1,{"n":6.5,"e":6923,"g":1}],[-38,{"n":5,"e":3928}],[-37,{"n":4,"e":3938}],[-36,{"n":7,"e":3948,"g":1}],[-35,{"n":6,"e":3965,"g":1}],[-34,{"n":4.5,"e":3968}],[-33,{"n":6.5,"e":3987,"g":1,"s":1}],[-32,{"n":4.5,"e":3988}],[-31,{"n":6,"e":4005,"s":1}],[-30,{"n":4.5,"e":4010}],[-28,{"n":4.5,"e":4032,"s":1}],[-29,{"n":6,"e":4018,"g":1,"s":1}],[-26,{"n":7,"e":4048,"g":1,"s":1}],[-25,{"n":5,"e":4059}],[-24,{"n":5,"e":4075}],[-23,{"n":4,"e":4078}],[-22,{"n":6,"e":4091}],[-21,{"n":5.5,"e":4098}],[-20,{"n":4.5,"e":4108}],[-19,{"n":5,"e":4119}],[-18,{"n":4.5,"e":4131,"s":1}],[-15,{"n":5.5,"e":4158,"g":1}],[-14,{"n":4,"e":4176}],[-13,{"n":7,"e":4178,"g":2}],[-12,{"n":4,"e":4196}],[-11,{"n":6,"e":4198}],[-10,{"n":6,"e":4208}],[-9,{"n":4.5,"e":4225,"s":1}]],"fo":[[3938,[{"t":"Y"}]],[3965,[{"t":"Y"}]],[4010,[{"t":"Y"}]]],"a":{"m":26,"a":51,"M":90,"n":10}}],[211,{"n":"Pépé","f":"Nicolas","fp":"MO","r":18,"c":39,"s":{"g":1,"s":23,"n":5,"a":4.6,"d":0.82,"Ss":4,"Sn":1,"Sa":4,"Og":5,"Os":157.5,"On":30,"Oa":5.25,"Od":1.06,"pm":13,"pa":17},"p":[[4,{"n":6,"e":6894,"g":1,"s":1}],[-27,{"n":6,"e":4038}],[-17,{"n":4.5,"e":4138}],[-16,{"n":7,"e":4157,"g":1}],[-8,{"n":5.5,"e":4236}],[-7,{"n":4,"e":4247}],[-38,{"n":5.5,"e":3928}],[-37,{"n":5.5,"e":3938,"s":1}],[-36,{"n":4,"e":3948}],[-35,{"n":4,"e":3965}],[-32,{"n":4.5,"e":3988,"s":1}],[-31,{"n":5,"e":4005}],[-30,{"n":6,"e":4010,"g":1}],[-29,{"n":5,"e":4018}],[-26,{"n":8.5,"e":4048,"g":1}],[-24,{"n":5.5,"e":4075}],[-23,{"n":5.5,"e":4078}],[-22,{"n":5.5,"e":4091}],[-21,{"n":7.5,"e":4098,"g":1}],[-20,{"n":4.5,"e":4108,"s":1}],[-19,{"n":5,"e":4119,"s":1}],[-15,{"n":5,"e":4158,"s":1}],[-13,{"n":4.5,"e":4178,"s":1}],[-12,{"n":5,"e":4196,"s":1}],[-10,{"n":6,"e":4208}],[-9,{"n":5.5,"e":4225}],[5,{"n":4,"e":6889}],[3,{"n":4,"e":6907,"s":1}],[2,{"n":4.5,"e":6912,"s":1}],[1,{"n":4.5,"e":6923,"s":1}]],"fo":[[3965,[{"t":"Y"}]]],"a":{"m":20,"a":27,"M":30,"n":6}}],[591,{"n":"Özil","f":"Mesut","fp":"MO","r":6,"c":39,"s":{"Og":1,"Os":91.5,"On":17,"Oa":5.38,"Od":0.82,"pm":15,"pa":2},"p":[[-29,{"n":6,"e":4018}],[-27,{"n":5.5,"e":4038}],[-26,{"n":7.5,"e":4048,"g":1}],[-25,{"n":5,"e":4059}],[-24,{"n":6,"e":4075}],[-23,{"n":5.5,"e":4078}],[-22,{"n":4,"e":4091}],[-21,{"n":6,"e":4098}],[-20,{"n":4.5,"e":4108}],[-19,{"n":4.5,"e":4119}],[-17,{"n":4.5,"e":4138}],[-16,{"n":5.5,"e":4157}],[-15,{"n":5,"e":4158}],[-14,{"n":6,"e":4176}],[-13,{"n":5.5,"e":4178}],[-12,{"n":5,"e":4196}],[-11,{"n":5.5,"e":4198}]]}],[619,{"n":"Willian","f":"","fp":"A","r":14,"c":39,"s":{"s":25.5,"n":5,"a":5.1,"d":1.64,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":1.64,"Og":9,"Os":208,"On":36,"Oa":5.78,"Od":1.34,"pm":8,"pa":28},"p":[[-37,{"n":4.5,"e":3941}],[-36,{"n":6,"e":3950}],[-35,{"n":3.5,"e":3964}],[-34,{"n":7.5,"e":3972}],[-33,{"n":6.5,"e":3979,"g":1}],[-32,{"n":7,"e":3997,"g":2}],[-31,{"n":6,"e":3999,"g":1}],[-30,{"n":6,"e":4008}],[-29,{"n":8,"e":4020,"g":1}],[-28,{"n":5,"e":4029,"s":1}],[-27,{"n":5,"e":4040,"s":1}],[-26,{"n":5,"e":4051}],[-25,{"n":4,"e":4061,"s":1}],[-23,{"n":5,"e":4083}],[-22,{"n":7,"e":4090}],[-21,{"n":5.5,"e":4099}],[-19,{"n":4,"e":4120}],[-18,{"n":8.5,"e":4135,"g":2}],[-17,{"n":5.5,"e":4140}],[-16,{"n":5,"e":4151}],[-15,{"n":7,"e":4164}],[-14,{"n":5,"e":4169,"s":1}],[-13,{"n":4.5,"e":4184}],[-12,{"n":7.5,"e":4189}],[-11,{"n":5.5,"e":4206}],[-10,{"n":7,"e":4210,"g":1}],[-9,{"n":6,"e":4220}],[-8,{"n":7,"e":4233}],[-7,{"n":7,"e":4241,"g":1}],[-24,{"n":4.5,"e":4075}],[-20,{"n":7,"e":4108}],[5,{"n":4.5,"e":6889}],[4,{"n":4.5,"e":6894}],[3,{"n":4,"e":6907}],[2,{"n":4.5,"e":6912}],[1,{"n":8,"e":6923}]],"fo":[[3997,[{"t":"Y"}]]],"a":{"m":16,"a":25,"M":87,"n":20}}],[623,{"n":"David Luiz","f":"","fp":"DC","r":11,"c":39,"s":{"s":19,"n":4,"a":4.75,"d":0.87,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.87,"Og":2,"Os":158,"On":32,"Oa":4.94,"Od":1.13,"pd":32},"p":[[-38,{"n":4.5,"e":3928}],[-37,{"n":4,"e":3938}],[-36,{"n":5,"e":3948}],[-35,{"n":3.5,"e":3965}],[-34,{"n":5.5,"e":3968}],[-33,{"n":5.5,"e":3987}],[-32,{"n":6.5,"e":3988}],[-29,{"n":6,"e":4018}],[-28,{"n":2,"e":4032,"s":1}],[-27,{"n":5.5,"e":4038}],[-26,{"n":6,"e":4048}],[-25,{"n":6,"e":4059}],[-24,{"n":2.5,"e":4075}],[-23,{"n":5,"e":4078}],[-22,{"n":4.5,"e":4091}],[-21,{"n":6,"e":4098}],[-20,{"n":4.5,"e":4108}],[-19,{"n":5.5,"e":4119}],[-18,{"n":5.5,"e":4131}],[-15,{"n":3.5,"e":4158}],[-14,{"n":4.5,"e":4176}],[-13,{"n":5,"e":4178}],[-12,{"n":4,"e":4196}],[-11,{"n":5,"e":4198}],[-10,{"n":6.5,"e":4208,"g":1}],[-9,{"n":4.5,"e":4225}],[-8,{"n":7,"e":4236,"g":1}],[-7,{"n":5.5,"e":4247}],[5,{"n":5.5,"e":6889}],[4,{"n":5,"e":6894}],[3,{"n":3.5,"e":6907}],[2,{"n":5,"e":6912,"s":1}]],"fo":[[4032,[{"t":"R"}]],[3987,[{"t":"Y"}]]]}],[665,{"n":"Mustafi","f":"Shkodran","fp":"DC","r":7,"c":39,"s":{"Os":76.5,"On":15,"Oa":5.1,"Od":0.85,"pd":15},"p":[[-35,{"n":4,"e":3965}],[-34,{"n":4.5,"e":3968}],[-33,{"n":5.5,"e":3987}],[-32,{"n":5,"e":3988}],[-31,{"n":5.5,"e":4005}],[-30,{"n":5,"e":4010}],[-28,{"n":4,"e":4032}],[-27,{"n":5.5,"e":4038}],[-26,{"n":6.5,"e":4048}],[-25,{"n":5.5,"e":4059}],[-24,{"n":6.5,"e":4075}],[-23,{"n":5.5,"e":4078}],[-20,{"n":3.5,"e":4108,"s":1}],[-19,{"n":5,"e":4119,"s":1}],[-14,{"n":5,"e":4176}]],"fo":[[3988,[{"t":"I"}]],[3968,[{"t":"Y"}]],[4005,[{"t":"Y"}]]]}],[728,{"n":"Xhaka","f":"Granit","fp":"MD","r":16,"c":39,"s":{"s":25,"n":5,"a":5,"d":0.61,"Ss":25,"Sn":5,"Sa":5,"Sd":0.61,"Og":1,"Os":166,"On":31,"Oa":5.35,"Od":0.74,"pm":31},"p":[[-38,{"n":5.5,"e":3928}],[-37,{"n":4.5,"e":3938,"s":1}],[-36,{"n":6,"e":3948}],[-35,{"n":5,"e":3965}],[-34,{"n":5,"e":3968}],[-33,{"n":6,"e":3987}],[-32,{"n":7,"e":3988,"g":1}],[-31,{"n":5.5,"e":4005}],[-29,{"n":5,"e":4018}],[-28,{"n":4.5,"e":4032}],[-27,{"n":5.5,"e":4038}],[-26,{"n":6.5,"e":4048}],[-25,{"n":6.5,"e":4059}],[-24,{"n":6,"e":4075}],[-23,{"n":5.5,"e":4078}],[-22,{"n":5,"e":4091}],[-21,{"n":7,"e":4098}],[-19,{"n":5.5,"e":4119}],[-18,{"n":5.5,"e":4131}],[-16,{"n":4.5,"e":4157}],[-15,{"n":4.5,"e":4158}],[-14,{"n":5.5,"e":4176}],[-10,{"n":5,"e":4208}],[-9,{"n":4.5,"e":4225}],[-8,{"n":5.5,"e":4236}],[-7,{"n":4.5,"e":4247}],[5,{"n":5,"e":6889}],[4,{"n":4.5,"e":6894,"s":1}],[3,{"n":4.5,"e":6907}],[2,{"n":5,"e":6912}],[1,{"n":6,"e":6923}]],"fo":[[4032,[{"t":"I"}]],[3928,[{"t":"Y"}]],[3948,[{"t":"Y"}]],[3987,[{"t":"Y"}]]],"a":{"m":18,"a":21,"M":23,"n":5}}],[755,{"n":"Cédric Soares","f":"","fp":"DL","r":7,"c":39,"s":{"Og":1,"Os":89.5,"On":18,"Oa":4.97,"Od":0.87,"pd":14,"pm":4},"p":[[-24,{"n":5,"e":4077}],[-23,{"n":5,"e":4085}],[-22,{"n":5.5,"e":4093}],[-21,{"n":5,"e":4105}],[-20,{"n":5,"e":4115}],[-18,{"n":5,"e":4128}],[-17,{"n":4.5,"e":4146}],[-16,{"n":3,"e":4153}],[-15,{"n":5,"e":4165}],[-14,{"n":5,"e":4177}],[-12,{"n":4,"e":4193}],[-37,{"n":4.5,"e":3938}],[-36,{"n":4.5,"e":3948}],[-35,{"n":5,"e":3965,"s":1}],[-33,{"n":5.5,"e":3987}],[-32,{"n":7,"e":3988,"g":1,"s":1}],[-19,{"n":6.5,"e":4120}],[-13,{"n":4.5,"e":4178}]]}],[795,{"n":"Bellerín","f":"Héctor","fp":"DL","r":10,"c":39,"s":{"s":24,"n":5,"a":4.8,"d":0.97,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.97,"Og":1,"Os":93.5,"On":20,"Oa":4.68,"Od":0.95,"pd":11,"pm":9},"p":[[-35,{"n":4,"e":3965}],[-34,{"n":5,"e":3968}],[-33,{"n":5,"e":3987,"s":1}],[-32,{"n":6,"e":3988}],[-31,{"n":5,"e":4005}],[-30,{"n":3.5,"e":4010}],[-29,{"n":5,"e":4018,"s":1}],[-28,{"n":4.5,"e":4032}],[-27,{"n":5,"e":4038}],[-26,{"n":5,"e":4048}],[-25,{"n":5,"e":4059}],[-24,{"n":6.5,"e":4075,"g":1}],[-15,{"n":3,"e":4158}],[-13,{"n":3.5,"e":4178}],[-12,{"n":3.5,"e":4196}],[5,{"n":4.5,"e":6889}],[4,{"n":6,"e":6894}],[3,{"n":3.5,"e":6907}],[2,{"n":4.5,"e":6912}],[1,{"n":5.5,"e":6923}]],"fo":[[6907,[{"t":"Y"}]],[6923,[{"t":"Y"}]]]}],[860,{"n":"Chambers","f":"Calum","fp":"DC","r":1,"c":39,"s":{"Os":54.5,"On":12,"Oa":4.54,"Od":0.94,"pd":12},"p":[[-20,{"n":5.5,"e":4108}],[-18,{"n":6,"e":4131}],[-17,{"n":3,"e":4138}],[-16,{"n":6,"e":4157}],[-14,{"n":4,"e":4176}],[-13,{"n":4,"e":4178}],[-12,{"n":4,"e":4196}],[-11,{"n":4,"e":4198}],[-10,{"n":4,"e":4208}],[-9,{"n":4,"e":4225}],[-8,{"n":5,"e":4236}],[-7,{"n":5,"e":4247}]]}],[917,{"n":"Mohamed Elneny","f":"","fp":"MD","r":11,"c":39,"s":{"s":17.5,"n":3,"a":5.83,"d":0.76,"Os":17.5,"On":3,"Oa":5.83,"Od":0.76,"pm":3},"p":[[4,{"n":6,"e":6894}],[3,{"n":5,"e":6907}],[1,{"n":6.5,"e":6923}]]}],[983,{"n":"Holding","f":"Rob","fp":"DC","r":10,"c":39,"s":{"s":14.5,"n":3,"a":4.83,"d":1.04,"Os":53,"On":11,"Oa":4.82,"Od":0.81,"pd":11},"p":[[-38,{"n":5,"e":3928}],[-37,{"n":4.5,"e":3938}],[-36,{"n":5.5,"e":3948}],[-32,{"n":5,"e":3988,"s":1}],[-31,{"n":6,"e":4005}],[-30,{"n":4,"e":4010}],[-24,{"n":5,"e":4075,"s":1}],[-12,{"n":3.5,"e":4196}],[3,{"n":4,"e":6907}],[2,{"n":4.5,"e":6912}],[1,{"n":6,"e":6923}]],"fo":[[3928,[{"t":"Y"}]]]}],[1124,{"n":"Maitland-Niles","f":"Ainsley","fp":"DL","r":7,"c":39,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Os":79.5,"On":17,"Oa":4.68,"Od":0.58,"pd":9,"pm":8},"p":[[-38,{"n":5,"e":3928}],[-36,{"n":4.5,"e":3948,"s":1}],[-34,{"n":5,"e":3968,"s":1}],[-33,{"n":4.5,"e":3987,"s":1}],[-31,{"n":5,"e":4005,"s":1}],[-28,{"n":4.5,"e":4032,"s":1}],[-23,{"n":4.5,"e":4078}],[-22,{"n":4,"e":4091}],[-21,{"n":5.5,"e":4098}],[-20,{"n":4,"e":4108}],[-19,{"n":4.5,"e":4119}],[-18,{"n":5,"e":4131}],[-17,{"n":4.5,"e":4138}],[-16,{"n":6,"e":4157}],[4,{"n":4.5,"e":6894,"s":1}],[3,{"n":3.5,"e":6907}],[1,{"n":5,"e":6923}]],"fo":[[3987,[{"t":"Y"}]]]}],[1289,{"n":"Kolasinac","f":"Sead","fp":"DL","r":8,"c":39,"s":{"s":5,"n":1,"a":5,"Os":112.5,"On":23,"Oa":4.89,"Od":0.6,"pd":22,"pm":1},"p":[[-38,{"n":5,"e":3928,"s":1}],[-37,{"n":4.5,"e":3938}],[-36,{"n":5,"e":3948,"s":1}],[-35,{"n":3.5,"e":3965}],[-34,{"n":5.5,"e":3968}],[-33,{"n":5,"e":3987}],[-32,{"n":6,"e":3988}],[-31,{"n":5,"e":4005,"s":1}],[-30,{"n":4.5,"e":4010}],[-27,{"n":4.5,"e":4038}],[-22,{"n":4.5,"e":4091}],[-21,{"n":5,"e":4098}],[-17,{"n":4.5,"e":4138}],[-16,{"n":6,"e":4157,"s":1}],[-15,{"n":4,"e":4158}],[-14,{"n":4.5,"e":4176}],[-12,{"n":4.5,"e":4196}],[-11,{"n":5,"e":4198,"s":1}],[-10,{"n":5,"e":4208,"s":1}],[-9,{"n":5,"e":4225}],[-8,{"n":6,"e":4236}],[-7,{"n":5,"e":4247}],[2,{"n":5,"e":6912}]],"fo":[[3938,[{"t":"Y"}]]]}],[1346,{"n":"Willock","f":"Joseph","fp":"MO","r":6,"c":39,"s":{"Og":1,"Os":118,"On":24,"Oa":4.92,"Od":0.6,"pm":24},"p":[[-38,{"n":5,"e":3928}],[-37,{"n":4.5,"e":3938,"s":1}],[-36,{"n":5,"e":3948,"s":1}],[-35,{"n":5,"e":3965,"s":1}],[-34,{"n":4.5,"e":3968,"s":1}],[-33,{"n":6,"e":3987,"s":1}],[-32,{"n":5,"e":3988,"s":1}],[-31,{"n":6,"e":4005,"g":1,"s":1}],[-30,{"n":5,"e":4010,"s":1}],[-28,{"n":4.5,"e":4032}],[-26,{"n":5,"e":4048,"s":1}],[-25,{"n":5.5,"e":4059,"s":1}],[-24,{"n":4.5,"e":4075,"s":1}],[-20,{"n":5,"e":4108,"s":1}],[-19,{"n":5,"e":4119,"s":1}],[-18,{"n":5,"e":4131,"s":1}],[-17,{"n":4.5,"e":4138,"s":1}],[-15,{"n":3.5,"e":4158}],[-14,{"n":5,"e":4176}],[-13,{"n":5.5,"e":4178,"s":1}],[-12,{"n":5,"e":4196,"s":1}],[-9,{"n":3.5,"e":4225}],[-8,{"n":5,"e":4236,"s":1}],[-7,{"n":5.5,"e":4247,"s":1}]],"fo":[[3938,[{"t":"Y"}]]]}],[1389,{"n":"Nelson","f":"Reiss","fp":"A","r":5,"c":39,"s":{"Og":1,"Os":67.5,"On":14,"Oa":4.82,"Od":0.46,"pm":3,"pa":11},"p":[[-38,{"n":5,"e":3928,"s":1}],[-36,{"n":6,"e":3948,"g":1}],[-35,{"n":4.5,"e":3965,"s":1}],[-32,{"n":5,"e":3988}],[-30,{"n":4.5,"e":4010,"s":1}],[-29,{"n":4.5,"e":4018,"s":1}],[-28,{"n":4.5,"e":4032,"s":1}],[-22,{"n":4.5,"e":4091,"s":1}],[-21,{"n":4.5,"e":4098,"s":1}],[-20,{"n":4.5,"e":4108}],[-19,{"n":5.5,"e":4119}],[-18,{"n":5,"e":4131}],[-16,{"n":4.5,"e":4157,"s":1}],[-7,{"n":5,"e":4247,"s":1}]]}],[1702,{"n":"Ceballos","f":"Dani","fp":"MO","r":18,"c":39,"s":{"s":30,"n":5,"a":6,"d":0.94,"Ss":30,"Sn":5,"Sa":6,"Sd":0.94,"Os":131,"On":23,"Oa":5.7,"Od":0.88,"pm":23},"p":[[-38,{"n":6,"e":3928}],[-37,{"n":5,"e":3938}],[-36,{"n":4.5,"e":3948,"s":1}],[-35,{"n":6,"e":3965}],[-34,{"n":6,"e":3968}],[-33,{"n":6,"e":3987}],[-32,{"n":7.5,"e":3988}],[-31,{"n":6,"e":4005}],[-30,{"n":5,"e":4010}],[-29,{"n":7,"e":4018}],[-28,{"n":4,"e":4032,"s":1}],[-27,{"n":5.5,"e":4038}],[-26,{"n":6.5,"e":4048}],[-11,{"n":5,"e":4198}],[-10,{"n":5.5,"e":4208}],[-9,{"n":5,"e":4225,"s":1}],[-8,{"n":5.5,"e":4236}],[-7,{"n":5,"e":4247,"s":1}],[5,{"n":6,"e":6889}],[4,{"n":6,"e":6894}],[3,{"n":5.5,"e":6907,"s":1}],[2,{"n":7.5,"e":6912}],[1,{"n":5,"e":6923,"s":1}]],"fo":[[3948,[{"t":"Y"}]],[6907,[{"t":"Y"}]]]}],[1815,{"n":"Partey","f":"Thomas","fp":"MD","r":16,"c":39,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":191.5,"On":35,"Oa":5.47,"Od":0.87,"pm":35},"p":[[5,{"n":5.5,"e":7169}],[4,{"n":6,"e":7497}],[3,{"n":4.5,"e":7184,"s":1}],[-38,{"n":5.5,"e":4309}],[-37,{"n":6.5,"e":4322,"g":1,"s":1}],[-36,{"n":6.5,"e":4329}],[-35,{"n":5,"e":4340}],[-34,{"n":4.5,"e":4349,"s":1}],[-33,{"n":4.5,"e":4359}],[-32,{"n":6,"e":4369}],[-31,{"n":6.5,"e":4382}],[-30,{"n":6,"e":4389}],[-29,{"n":5.5,"e":4403,"s":1}],[-28,{"n":5.5,"e":4408}],[-26,{"n":6,"e":4430}],[-25,{"n":6,"e":4439}],[-24,{"n":7.5,"e":4456,"g":1}],[-23,{"n":5.5,"e":4459}],[-22,{"n":5,"e":4474}],[-21,{"n":6.5,"e":4479}],[-20,{"n":4,"e":4490}],[-19,{"n":6.5,"e":4499}],[-18,{"n":4.5,"e":4514}],[-17,{"n":5.5,"e":4520}],[-16,{"n":4,"e":4537}],[-15,{"n":5,"e":4540}],[-13,{"n":5,"e":4560}],[-12,{"n":6,"e":4576}],[-11,{"n":5.5,"e":4578,"s":1}],[-10,{"n":6,"e":4588}],[-9,{"n":4,"e":4600}],[-8,{"n":4,"e":4616}],[-7,{"n":6.5,"e":4620}],[-6,{"n":5.5,"e":4632}],[5,{"n":5,"e":6889,"s":1}]],"fo":[[4309,[{"t":"I"},{"t":"Y"}]],[4369,[{"t":"Y"}]],[4389,[{"t":"Y"}]],[6889,[{"t":"Y"}]],[7184,[{"t":"Y"}]]]}],[2064,{"n":"Macey","f":"Matt","fp":"G","r":3,"c":39}],[2066,{"n":"Nketiah","f":"Eddie","fp":"A","r":9,"c":39,"s":{"g":1,"s":24,"n":5,"a":4.8,"d":0.67,"Sg":1,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.67,"Og":3,"Os":84,"On":18,"Oa":4.67,"Od":1,"pa":18},"p":[[-38,{"n":5,"e":3928,"s":1}],[-37,{"n":3.5,"e":3938}],[-34,{"n":2,"e":3968,"s":1}],[-33,{"n":6,"e":3987}],[-32,{"n":5,"e":3988,"s":1}],[-31,{"n":6,"e":4005,"g":1}],[-30,{"n":4.5,"e":4010,"s":1}],[-29,{"n":4,"e":4018}],[-28,{"n":4,"e":4032}],[-27,{"n":6,"e":4038,"g":1}],[-26,{"n":5,"e":4048}],[-25,{"n":4.5,"e":4059,"s":1}],[-23,{"n":4.5,"e":4078,"s":1}],[5,{"n":4.5,"e":6889,"s":1}],[4,{"n":4.5,"e":6894}],[3,{"n":4.5,"e":6907,"s":1}],[2,{"n":6,"e":6912,"g":1,"s":1}],[1,{"n":4.5,"e":6923,"s":1}]],"fo":[[3968,[{"t":"R"}]]]}],[2302,{"n":"Aubameyang","f":"Pierre-Emerick","fp":"A","r":40,"c":39,"s":{"g":1,"s":27,"n":5,"a":5.4,"d":1.14,"Sg":1,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.14,"Og":17,"Os":198,"On":35,"Oa":5.66,"Od":1.34,"pm":12,"pa":23},"p":[[-38,{"n":8,"e":3928,"g":2}],[-37,{"n":4,"e":3938}],[-36,{"n":4.5,"e":3948,"s":1}],[-35,{"n":5,"e":3965}],[-34,{"n":6.5,"e":3968,"g":1}],[-33,{"n":6,"e":3987}],[-32,{"n":8,"e":3988,"g":2}],[-31,{"n":6,"e":4005}],[-30,{"n":5.5,"e":4010}],[-29,{"n":5.5,"e":4018}],[-28,{"n":4,"e":4032}],[-27,{"n":8,"e":4038,"g":2}],[-26,{"n":7.5,"e":4048,"g":1}],[-25,{"n":5,"e":4059}],[-22,{"n":5.5,"e":4091,"g":1}],[-21,{"n":5.5,"e":4098}],[-20,{"n":7,"e":4108,"g":1}],[-19,{"n":6.5,"e":4119,"g":1}],[-18,{"n":4,"e":4131}],[-17,{"n":3,"e":4138}],[-16,{"n":7,"e":4157,"g":1}],[-15,{"n":5,"e":4158}],[-14,{"n":8,"e":4176,"g":2}],[-13,{"n":5.5,"e":4178}],[-12,{"n":4.5,"e":4196}],[-11,{"n":6,"e":4198,"g":1}],[-10,{"n":4,"e":4208}],[-9,{"n":4.5,"e":4225}],[-8,{"n":5,"e":4236}],[-7,{"n":6.5,"e":4247,"g":1}],[5,{"n":5,"e":6889}],[4,{"n":5,"e":6894}],[3,{"n":4,"e":6907}],[2,{"n":6,"e":6912}],[1,{"n":7,"e":6923,"g":1}]],"fo":[[6923,[{"t":"Y"}]]],"a":{"m":42,"a":88,"M":143,"n":18}}],[2500,{"n":"Leno","f":"Bernd","fp":"G","r":13,"c":39,"s":{"s":26,"n":5,"a":5.2,"d":0.76,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.76,"Os":166.5,"On":29,"Oa":5.74,"Od":0.98,"pg":29},"p":[[-30,{"n":5,"e":4010}],[-29,{"n":7.5,"e":4018}],[-28,{"n":7.5,"e":4032}],[-27,{"n":5.5,"e":4038}],[-26,{"n":6,"e":4048}],[-25,{"n":6,"e":4059}],[-24,{"n":7,"e":4075}],[-23,{"n":5,"e":4078}],[-22,{"n":4.5,"e":4091}],[-21,{"n":7,"e":4098}],[-20,{"n":3.5,"e":4108}],[-19,{"n":6,"e":4119}],[-18,{"n":5.5,"e":4131}],[-17,{"n":5,"e":4138}],[-16,{"n":6,"e":4157}],[-15,{"n":6,"e":4158}],[-14,{"n":7,"e":4176}],[-13,{"n":6,"e":4178}],[-12,{"n":6,"e":4196}],[-11,{"n":7,"e":4198}],[-10,{"n":5.5,"e":4208}],[-9,{"n":4.5,"e":4225}],[-8,{"n":6,"e":4236}],[-7,{"n":5.5,"e":4247}],[5,{"n":6,"e":6889}],[4,{"n":5,"e":6894}],[3,{"n":4.5,"e":6907}],[2,{"n":4.5,"e":6912}],[1,{"n":6,"e":6923}]],"fo":[[4010,[{"t":"I"}]]],"a":{"m":8,"a":16,"M":27,"n":11}}],[2531,{"n":"Sokratis","f":"","fp":"DC","r":7,"c":39,"s":{"Og":2,"Os":66,"On":13,"Oa":5.08,"Od":0.98,"pd":13},"p":[[-29,{"n":5,"e":4018}],[-22,{"n":5.5,"e":4091}],[-21,{"n":7,"e":4098,"g":1}],[-19,{"n":5.5,"e":4119}],[-17,{"n":3,"e":4138}],[-16,{"n":5.5,"e":4157}],[-15,{"n":4.5,"e":4158}],[-13,{"n":4.5,"e":4178}],[-11,{"n":5.5,"e":4198}],[-10,{"n":6,"e":4208,"g":1}],[-9,{"n":4,"e":4225}],[-8,{"n":5,"e":4236}],[-7,{"n":5,"e":4247}]]}],[2725,{"n":"Rúnarsson","f":"Rúnar Alex","fp":"G","r":7,"c":39,"s":{"Os":36,"On":7,"Oa":5.14,"Od":1.21,"pg":7},"p":[[-28,{"n":5,"e":3649}],[-27,{"n":6,"e":3666}],[-26,{"n":6,"e":3669}],[-25,{"n":4,"e":3679}],[-24,{"n":3,"e":3690,"s":1}],[-17,{"n":6,"e":3762}],[-16,{"n":6,"e":3772,"s":1}]]}],[2738,{"n":"Gabriel Magalhães","f":"","fp":"DC","r":14,"c":39,"s":{"g":1,"s":23.5,"n":4,"a":5.88,"d":0.85,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":2,"Oao":1,"Os":130,"On":24,"Oa":5.42,"Od":0.88,"pd":24},"p":[[-28,{"n":6,"e":3650}],[-27,{"n":5.5,"e":3664}],[-26,{"n":6,"e":3670}],[-24,{"n":6,"e":3689}],[-23,{"n":6,"e":3699}],[-22,{"n":6,"e":3717,"g":1}],[-21,{"n":5,"e":3719}],[-20,{"n":4.5,"e":3731}],[-19,{"n":2.5,"e":3740}],[-18,{"n":5.5,"e":3752}],[-17,{"n":5.5,"e":3758}],[-16,{"n":6,"e":3773}],[-15,{"n":5.5,"e":3778}],[-14,{"n":5,"e":3795}],[-13,{"n":5,"e":3799}],[-12,{"n":4,"e":3812,"a":1}],[-11,{"n":6,"e":3819}],[-10,{"n":5,"e":3837}],[-8,{"n":5.5,"e":3854}],[-7,{"n":6,"e":3861}],[5,{"n":5,"e":6889}],[4,{"n":5.5,"e":6894}],[2,{"n":6,"e":6912}],[1,{"n":7,"e":6923,"g":1}]],"a":{"m":10,"a":19,"M":29,"n":18}}],[2766,{"n":"Saliba","f":"William","fp":"DC","r":7,"c":39,"s":{"Os":58,"On":12,"Oa":4.83,"Od":0.96,"pd":12},"p":[[-28,{"n":6,"e":3656}],[-27,{"n":4.5,"e":3661}],[-26,{"n":6,"e":3676}],[-25,{"n":4,"e":3680}],[-24,{"n":4.5,"e":3693}],[-23,{"n":3.5,"e":3702}],[-22,{"n":3.5,"e":3712}],[-12,{"n":6,"e":3816}],[-11,{"n":4.5,"e":3826}],[-10,{"n":6,"e":3829}],[-9,{"n":4.5,"e":3846}],[-8,{"n":5,"e":3855,"s":1}]]}],[2887,{"n":"Smith Rowe","f":"Emile","fp":"MO","r":3,"c":39,"s":{"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-18,{"n":5,"e":4131}],[-17,{"n":5,"e":4138,"s":1}]]}],[2927,{"n":"Saka","f":"Bukayo","fp":"A","r":12,"c":39,"s":{"g":1,"s":18,"n":3,"a":6,"d":1,"Sg":1,"Ss":13,"Sn":2,"Sa":6.5,"Sd":0.71,"Og":2,"Os":147,"On":28,"Oa":5.25,"Od":0.82,"pd":15,"pm":10,"pa":3},"p":[[-37,{"n":4,"e":3938}],[-36,{"n":5,"e":3948}],[-35,{"n":5,"e":3965,"s":1}],[-34,{"n":6,"e":3968}],[-33,{"n":6.5,"e":3987,"g":1}],[-31,{"n":5,"e":4005}],[-30,{"n":5.5,"e":4010}],[-29,{"n":6,"e":4018}],[-28,{"n":4.5,"e":4032}],[-27,{"n":5.5,"e":4038,"s":1}],[-26,{"n":7,"e":4048}],[-25,{"n":5,"e":4059}],[-24,{"n":5.5,"e":4075}],[-23,{"n":5,"e":4078}],[-21,{"n":5,"e":4098,"s":1}],[-20,{"n":4,"e":4108}],[-19,{"n":5,"e":4119}],[-18,{"n":5,"e":4131}],[-17,{"n":5,"e":4138,"s":1}],[-14,{"n":4.5,"e":4176,"s":1}],[-11,{"n":4,"e":4198,"s":1}],[-10,{"n":4.5,"e":4208,"s":1}],[-9,{"n":5,"e":4225}],[-8,{"n":5,"e":4236}],[-7,{"n":6.5,"e":4247}],[5,{"n":6,"e":6889}],[4,{"n":7,"e":6894,"g":1}],[2,{"n":5,"e":6912}]],"fo":[[3965,[{"t":"Y"}]],[4005,[{"t":"Y"}]]]}],[5416,{"n":"Gabriel Martinelli","f":"","fp":"MO","r":7,"c":39,"s":{"Og":3,"Os":69,"On":13,"Oa":5.31,"Od":0.75,"pm":13},"p":[[-25,{"n":4.5,"e":4059}],[-24,{"n":6.5,"e":4075,"g":1}],[-23,{"n":6,"e":4078,"g":1}],[-22,{"n":5.5,"e":4091,"s":1}],[-18,{"n":5,"e":4131}],[-17,{"n":4.5,"e":4138}],[-16,{"n":7,"e":4157,"g":1}],[-15,{"n":5,"e":4158,"s":1}],[-14,{"n":5,"e":4176,"s":1}],[-13,{"n":5,"e":4178,"s":1}],[-11,{"n":5,"e":4198,"s":1}],[-9,{"n":5,"e":4225,"s":1}],[-8,{"n":5,"e":4236,"s":1}]]}],[5429,{"n":"Olayinka","f":"James","fp":"MD","r":1,"c":39}],[6122,{"n":"Tierney","f":"Kieran","fp":"DL","r":10,"c":39,"s":{"s":17.5,"n":4,"a":4.38,"d":1.03,"Ss":12,"Sn":3,"Sa":4,"Sd":0.87,"Og":1,"Os":96.5,"On":19,"Oa":5.08,"Od":0.9,"pd":14,"pm":5},"p":[[-38,{"n":7.5,"e":3928,"g":1}],[-37,{"n":5,"e":3938,"s":1}],[-36,{"n":5,"e":3948}],[-35,{"n":4.5,"e":3965}],[-34,{"n":5,"e":3968}],[-33,{"n":6,"e":3987}],[-32,{"n":5.5,"e":3988}],[-31,{"n":6,"e":4005}],[-30,{"n":5,"e":4010,"s":1}],[-28,{"n":5,"e":4032}],[-16,{"n":5,"e":4157}],[-15,{"n":5,"e":4158,"s":1}],[-13,{"n":4,"e":4178}],[-11,{"n":5.5,"e":4198}],[-10,{"n":5,"e":4208}],[5,{"n":3.5,"e":6889}],[4,{"n":5,"e":6894}],[3,{"n":3.5,"e":6907}],[1,{"n":5.5,"e":6923}]],"fo":[[4032,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":16,"n":8}}],[6548,{"n":"Balogun","f":"Folarin","fp":"A","r":1,"c":39}],[6557,{"n":"Marí","f":"Pablo","fp":"DC","r":4,"c":39,"s":{"Os":11,"On":2,"Oa":5.5,"Od":0.71,"pd":2},"p":[[-29,{"n":6,"e":4018}],[-28,{"n":5,"e":4032}]],"fo":[[4032,[{"t":"I"}]]]}],[193,{"n":"El Ghazi","f":"Anwar","fp":"A","r":8,"c":78,"s":{"Og":3,"Os":141,"On":29,"Oa":4.86,"Od":0.81,"pm":11,"pa":18},"p":[[1,{"n":null,"e":6924,"d":1}],[-38,{"n":5,"e":3937,"s":1}],[-36,{"n":5,"e":3952,"s":1}],[-35,{"n":4.5,"e":3958,"s":1}],[-34,{"n":4.5,"e":3969}],[-33,{"n":5,"e":3981}],[-32,{"n":5,"e":3989,"s":1}],[-31,{"n":5,"e":4003}],[-28,{"n":4.5,"e":4028}],[-29,{"n":4.5,"e":4022,"s":1}],[-27,{"n":5,"e":4046}],[-26,{"n":5,"e":4049}],[-25,{"n":4,"e":4058}],[-24,{"n":4.5,"e":4068}],[-23,{"n":4.5,"e":4079}],[-22,{"n":3.5,"e":4088,"g":1}],[-20,{"n":4.5,"e":4116,"s":1}],[-19,{"n":6,"e":4118}],[-17,{"n":4.5,"e":4145}],[-16,{"n":4,"e":4148}],[-14,{"n":5.5,"e":4175}],[-13,{"n":6.5,"e":4179,"g":1}],[-12,{"n":5,"e":4195}],[-11,{"n":5,"e":4199}],[-10,{"n":5,"e":4212,"s":1}],[-9,{"n":4,"e":4218}],[-8,{"n":7,"e":4232}],[-7,{"n":6.5,"e":4239,"g":1}],[-30,{"n":4,"e":4008}],[-18,{"n":4,"e":4128}]]}],[344,{"n":"Guilbert","f":"Frédéric","fp":"DL","r":6,"c":78,"s":{"Os":97.5,"On":21,"Oa":4.64,"Od":0.79,"pd":15,"pm":6},"p":[[-21,{"n":5,"e":4100}],[-38,{"n":5,"e":3937}],[-37,{"n":6,"e":3938,"s":1}],[-29,{"n":4.5,"e":4022}],[-27,{"n":3,"e":4046}],[-26,{"n":3.5,"e":4049}],[-25,{"n":4,"e":4058}],[-24,{"n":5,"e":4068}],[-23,{"n":4,"e":4079}],[-20,{"n":5,"e":4116,"s":1}],[-18,{"n":4,"e":4128}],[-17,{"n":4.5,"e":4145}],[-16,{"n":5,"e":4148,"s":1}],[-14,{"n":4.5,"e":4175}],[-13,{"n":5,"e":4179}],[-12,{"n":4,"e":4195}],[-11,{"n":5,"e":4199}],[-10,{"n":4,"e":4212}],[-9,{"n":6.5,"e":4218}],[-8,{"n":5,"e":4232}],[-7,{"n":5,"e":4239}],[1,{"n":null,"e":6924,"d":1}]]}],[625,{"n":"Barkley","f":"Ross","fp":"MO","r":9,"c":78,"s":{"g":2,"s":25,"n":4,"a":6.25,"d":1.5,"Sg":2,"Ss":15,"Sn":2,"Sa":7.5,"Sd":0.71,"Og":3,"Os":118,"On":21,"Oa":5.62,"Od":1.18,"pm":20,"pa":1},"p":[[5,{"n":7,"e":6888,"g":1}],[4,{"n":8,"e":6895,"g":1}],[2,{"n":5,"e":6914,"s":1}],[1,{"n":5,"e":6928,"s":1}],[-38,{"n":5,"e":3930,"s":1}],[-36,{"n":5,"e":3950,"s":1}],[-35,{"n":4,"e":3964}],[-34,{"n":5,"e":3972}],[-33,{"n":7.5,"e":3979,"g":1}],[-32,{"n":5,"e":3997}],[-31,{"n":5.5,"e":3999}],[-30,{"n":5.5,"e":4008,"s":1}],[-29,{"n":8.5,"e":4020}],[-28,{"n":5,"e":4029,"s":1}],[-27,{"n":5.5,"e":4040}],[-25,{"n":4.5,"e":4061,"s":1}],[-24,{"n":5,"e":4075,"s":1}],[-23,{"n":5,"e":4083,"s":1}],[-22,{"n":6.5,"e":4090}],[-9,{"n":5,"e":4220}],[-7,{"n":5.5,"e":4241}],[1,{"n":null,"e":6924,"d":1}]]}],[708,{"n":"Heaton","f":"Tom","fp":"G","r":7,"c":78,"s":{"Oao":1,"Os":75,"On":14,"Oa":5.36,"Od":1.15,"pg":14},"p":[[-21,{"n":4.5,"e":4100}],[-20,{"n":5,"e":4116}],[-19,{"n":7,"e":4118}],[-18,{"n":4.5,"e":4128}],[-17,{"n":4,"e":4145}],[-16,{"n":4,"e":4148}],[-15,{"n":7,"e":4164}],[-14,{"n":5.5,"e":4175,"a":1}],[-13,{"n":7,"e":4179}],[-11,{"n":5,"e":4199}],[-10,{"n":5,"e":4212}],[-9,{"n":6.5,"e":4218}],[-8,{"n":6,"e":4232}],[-7,{"n":4,"e":4239}],[1,{"n":null,"e":6924,"d":1}]]}],[939,{"n":"Targett","f":"Matt","fp":"DL","r":14,"c":78,"s":{"s":22.5,"n":4,"a":5.63,"d":0.48,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":1,"Os":156,"On":32,"Oa":4.88,"Od":1.06,"pd":27,"pm":5},"p":[[3,{"n":6,"e":6906}],[2,{"n":5,"e":6913}],[-38,{"n":5,"e":3937}],[-37,{"n":5.5,"e":3938}],[-36,{"n":5,"e":3952}],[-35,{"n":5,"e":3958,"s":1}],[-32,{"n":5,"e":3989}],[-31,{"n":4,"e":4003}],[-30,{"n":4.5,"e":4008}],[-29,{"n":4,"e":4022}],[-28,{"n":5,"e":4028}],[-27,{"n":3.5,"e":4046}],[-26,{"n":4,"e":4049}],[-25,{"n":4,"e":4058}],[-24,{"n":5.5,"e":4068}],[-23,{"n":5,"e":4079}],[-20,{"n":5,"e":4116}],[-19,{"n":5,"e":4118}],[-18,{"n":3,"e":4128}],[-17,{"n":3,"e":4145}],[-16,{"n":3,"e":4148}],[-15,{"n":4.5,"e":4164}],[-14,{"n":6.5,"e":4175}],[-13,{"n":7,"e":4179}],[-12,{"n":4.5,"e":4195}],[-11,{"n":5,"e":4199}],[-10,{"n":3.5,"e":4212}],[-9,{"n":7,"e":4218,"g":1}],[-8,{"n":6,"e":4232}],[-7,{"n":5.5,"e":4239}],[5,{"n":6,"e":6888}],[4,{"n":5.5,"e":6895}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3989,[{"t":"I"}]],[3938,[{"t":"Y"}]],[6906,[{"t":"Y"}]],[6913,[{"t":"Y"}]]]}],[1059,{"n":"Mings","f":"Tyrone","fp":"DC","r":19,"c":78,"s":{"g":1,"s":26.5,"n":4,"a":6.63,"d":0.75,"Sg":1,"Ss":26.5,"Sn":4,"Sa":6.63,"Sd":0.75,"Og":3,"Os":164.5,"On":31,"Oa":5.31,"Od":1.04,"pd":31},"p":[[-38,{"n":5,"e":3937}],[-37,{"n":6.5,"e":3938}],[-36,{"n":5,"e":3952}],[-35,{"n":6,"e":3958}],[-34,{"n":4,"e":3969}],[-33,{"n":5,"e":3981}],[-32,{"n":5,"e":3989}],[-31,{"n":5.5,"e":4003}],[-30,{"n":4.5,"e":4008}],[-29,{"n":4,"e":4022}],[-28,{"n":5.5,"e":4028}],[-27,{"n":4.5,"e":4046}],[-25,{"n":4,"e":4058}],[-24,{"n":7,"e":4068,"g":1}],[-23,{"n":5.5,"e":4079}],[-22,{"n":3,"e":4088}],[-21,{"n":5.5,"e":4100}],[-16,{"n":4.5,"e":4148}],[-15,{"n":4.5,"e":4164}],[-14,{"n":6,"e":4175,"g":1}],[-13,{"n":7,"e":4179}],[-12,{"n":4.5,"e":4195}],[-11,{"n":5,"e":4199}],[-10,{"n":4.5,"e":4212}],[-9,{"n":6,"e":4218}],[-8,{"n":5.5,"e":4232}],[-7,{"n":5,"e":4239}],[5,{"n":6,"e":6888}],[4,{"n":6,"e":6895}],[3,{"n":7.5,"e":6906,"g":1}],[2,{"n":7,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3958,[{"t":"Y"}]],[3989,[{"t":"Y"}]],[6906,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":26,"n":9}}],[1161,{"n":"Traoré","f":"Bertrand","fp":"MO","r":7,"c":78,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.29,"Og":1,"Os":107.5,"On":21,"Oa":5.12,"Od":0.61,"pm":16,"pa":5},"p":[[-25,{"n":5,"e":3682,"g":1}],[-24,{"n":5,"e":3695,"s":1}],[-23,{"n":5,"e":3704}],[-22,{"n":5,"e":3713,"s":1}],[-21,{"n":5,"e":3720,"s":1}],[-20,{"n":5,"e":3730}],[-19,{"n":5.5,"e":3745}],[-18,{"n":4.5,"e":3753,"s":1}],[-17,{"n":7,"e":3764}],[-14,{"n":5.5,"e":3793}],[-13,{"n":6,"e":3800}],[-12,{"n":5,"e":3817,"s":1}],[-10,{"n":5.5,"e":3830,"s":1}],[-8,{"n":4,"e":3850}],[-7,{"n":5,"e":3859}],[-6,{"n":5,"e":3870,"s":1}],[-28,{"n":4.5,"e":3650,"s":1}],[-27,{"n":5.5,"e":3661}],[5,{"n":4.5,"e":6888,"s":1}],[4,{"n":5,"e":6895,"s":1}],[3,{"n":5,"e":6906,"s":1}],[1,{"n":null,"e":6924,"d":1}]]}],[1885,{"n":"Douglas Luiz","f":"","fp":"MD","r":17,"c":78,"s":{"s":24,"n":4,"a":6,"d":0.71,"Ss":24,"Sn":4,"Sa":6,"Sd":0.71,"Og":2,"Os":183.5,"On":35,"Oa":5.24,"Od":1,"pm":35},"p":[[-38,{"n":5,"e":3937}],[-37,{"n":6,"e":3938}],[-36,{"n":6.5,"e":3952}],[-35,{"n":6,"e":3958}],[-34,{"n":5,"e":3969}],[-33,{"n":5.5,"e":3981}],[-32,{"n":5,"e":3989}],[-31,{"n":4.5,"e":4003}],[-30,{"n":5.5,"e":4008}],[-29,{"n":3,"e":4022}],[-28,{"n":5,"e":4028}],[-27,{"n":4,"e":4046}],[-26,{"n":5.5,"e":4049}],[-25,{"n":4.5,"e":4058}],[-24,{"n":6,"e":4068,"g":1,"s":1}],[-23,{"n":6,"e":4079,"s":1}],[-22,{"n":3,"e":4088}],[-21,{"n":7,"e":4100}],[-20,{"n":4,"e":4116}],[-19,{"n":6,"e":4118}],[-18,{"n":4,"e":4128}],[-17,{"n":5,"e":4145,"s":1}],[-16,{"n":3.5,"e":4148}],[-15,{"n":6,"e":4164,"s":1}],[-14,{"n":5.5,"e":4175}],[-13,{"n":6,"e":4179}],[-12,{"n":5,"e":4195}],[-11,{"n":5,"e":4199}],[-10,{"n":4.5,"e":4212}],[-9,{"n":5.5,"e":4218,"s":1}],[-8,{"n":6.5,"e":4232,"g":1,"s":1}],[5,{"n":5.5,"e":6888}],[4,{"n":7,"e":6895}],[3,{"n":5.5,"e":6906}],[2,{"n":6,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3938,[{"t":"Y"}]],[3958,[{"t":"Y"}]],[4003,[{"t":"Y"}]],[4028,[{"t":"Y"}]],[6888,[{"t":"Y"}]],[6895,[{"t":"Y"}]]]}],[2013,{"n":"Emiliano Martínez","f":"","fp":"G","r":24,"c":78,"s":{"s":26,"n":4,"a":6.5,"d":0.58,"Ss":26,"Sn":4,"Sa":6.5,"Sd":0.58,"Os":80.5,"On":13,"Oa":6.19,"Od":0.66,"pg":13},"p":[[-38,{"n":6.5,"e":3928}],[-37,{"n":5,"e":3938}],[-36,{"n":7,"e":3948}],[-35,{"n":6.5,"e":3965}],[-34,{"n":6,"e":3968}],[-33,{"n":6,"e":3987}],[-32,{"n":6,"e":3988}],[-31,{"n":6.5,"e":4005}],[-30,{"n":5,"e":4010,"s":1}],[5,{"n":7,"e":6888}],[4,{"n":6,"e":6895}],[3,{"n":6,"e":6906}],[2,{"n":7,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3928,[{"t":"Y"}]],[3988,[{"t":"Y"}]]],"a":{"m":21,"a":27,"M":51,"n":19}}],[2587,{"n":"Hause","f":"Kortney","fp":"DC","r":6,"c":78,"s":{"Og":1,"Os":82,"On":18,"Oa":4.56,"Od":1.32,"pd":18},"p":[[-38,{"n":5,"e":3937,"s":1}],[-34,{"n":4.5,"e":3969}],[-33,{"n":4.5,"e":3981}],[-32,{"n":4.5,"e":3989}],[-31,{"n":5.5,"e":4003}],[-30,{"n":6,"e":4008,"g":1}],[-28,{"n":6,"e":4028}],[-27,{"n":3.5,"e":4046}],[-26,{"n":3,"e":4049}],[-25,{"n":3,"e":4058}],[-24,{"n":6,"e":4068}],[-23,{"n":5,"e":4079}],[-22,{"n":2,"e":4088}],[-21,{"n":5.5,"e":4100}],[-20,{"n":4,"e":4116}],[-19,{"n":7,"e":4118}],[-18,{"n":3.5,"e":4128}],[-17,{"n":3.5,"e":4145}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[4003,[{"t":"Y"}]]]}],[2823,{"n":"Engels","f":"Björn","fp":"DC","r":4,"c":78,"s":{"Og":1,"Os":49,"On":11,"Oa":4.45,"Od":1.13,"pd":11},"p":[[-29,{"n":3.5,"e":4022}],[-26,{"n":3.5,"e":4049,"g":1}],[-25,{"n":5.5,"e":4058,"s":1}],[-18,{"n":3.5,"e":4128}],[-17,{"n":4.5,"e":4145}],[-16,{"n":3.5,"e":4148,"s":1}],[-11,{"n":5,"e":4199}],[-10,{"n":3.5,"e":4212}],[-9,{"n":5,"e":4218}],[-8,{"n":7,"e":4232}],[-7,{"n":4.5,"e":4239}],[1,{"n":null,"e":6924,"d":1}]]}],[3651,{"n":"Ramsey","f":"Jacob","fp":"MO","r":4,"c":78,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[3,{"n":5,"e":6906,"s":1}],[1,{"n":null,"e":6924,"d":1}]]}],[3656,{"n":"Davis","f":"Keinan","fp":"A","r":6,"c":78,"s":{"s":4.5,"n":1,"a":4.5,"Os":70.5,"On":16,"Oa":4.41,"Od":0.58,"pa":16},"p":[[-38,{"n":4,"e":3937,"s":1}],[-37,{"n":4,"e":3938,"s":1}],[-36,{"n":4.5,"e":3952,"s":1}],[-35,{"n":4.5,"e":3958,"s":1}],[-34,{"n":4.5,"e":3969,"s":1}],[-33,{"n":3.5,"e":3981}],[-32,{"n":4,"e":3989}],[-31,{"n":5,"e":4003,"s":1}],[-30,{"n":4,"e":4008}],[-29,{"n":4,"e":4022,"s":1}],[-28,{"n":4.5,"e":4028}],[-25,{"n":6,"e":4058,"s":1}],[-10,{"n":4,"e":4212,"s":1}],[-9,{"n":5,"e":4218,"s":1}],[-7,{"n":4.5,"e":4239,"s":1}],[2,{"n":4.5,"e":6913,"s":1}],[1,{"n":null,"e":6924,"d":1}]]}],[3662,{"n":"Wesley","f":"","fp":"A","r":11,"c":78,"s":{"Og":3,"Os":65.5,"On":15,"Oa":4.37,"Od":1.29,"pa":15},"p":[[-21,{"n":6,"e":4100,"g":1}],[-20,{"n":3.5,"e":4116}],[-19,{"n":4.5,"e":4118}],[-18,{"n":4,"e":4128}],[-17,{"n":4,"e":4145}],[-16,{"n":3.5,"e":4148}],[-15,{"n":3.5,"e":4164}],[-14,{"n":5,"e":4175}],[-13,{"n":5,"e":4179}],[-12,{"n":4.5,"e":4195}],[-11,{"n":3,"e":4199}],[-10,{"n":3,"e":4212}],[-9,{"n":4,"e":4218}],[-8,{"n":8,"e":4232,"g":2}],[-7,{"n":4,"e":4239}],[1,{"n":null,"e":6924,"d":1}]]}],[3669,{"n":"Konsa Ngoyo","f":"Ezri","fp":"DC","r":18,"c":78,"s":{"g":1,"s":26,"n":4,"a":6.5,"d":0.82,"Sg":1,"Ss":26,"Sn":4,"Sa":6.5,"Sd":0.82,"Og":2,"Os":141.5,"On":29,"Oa":4.88,"Od":1.15,"pd":29},"p":[[-38,{"n":5,"e":3937}],[-37,{"n":6.5,"e":3938}],[-36,{"n":6,"e":3952,"g":1}],[-35,{"n":5,"e":3958}],[-34,{"n":3,"e":3969}],[-33,{"n":4.5,"e":3981}],[-32,{"n":4.5,"e":3989}],[-31,{"n":5,"e":4003}],[-30,{"n":4.5,"e":4008}],[-28,{"n":5,"e":4028}],[-27,{"n":3.5,"e":4046}],[-26,{"n":3.5,"e":4049}],[-25,{"n":3.5,"e":4058}],[-24,{"n":5,"e":4068}],[-23,{"n":5.5,"e":4079}],[-22,{"n":3,"e":4088}],[-21,{"n":5.5,"e":4100}],[-20,{"n":3.5,"e":4116}],[-19,{"n":5.5,"e":4118}],[-16,{"n":3.5,"e":4148}],[-15,{"n":5,"e":4164}],[-14,{"n":4.5,"e":4175}],[-13,{"n":6,"e":4179}],[-12,{"n":4,"e":4195}],[-8,{"n":5,"e":4232,"s":1}],[5,{"n":6.5,"e":6888}],[4,{"n":5.5,"e":6895}],[3,{"n":6.5,"e":6906}],[2,{"n":7.5,"e":6913,"g":1}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3969,[{"t":"Y"}]],[4008,[{"t":"Y"}]]]}],[3698,{"n":"McGinn","f":"John","fp":"MD","r":20,"c":78,"s":{"g":1,"s":27.5,"n":4,"a":6.88,"d":1.6,"Sg":1,"Ss":27.5,"Sn":4,"Sa":6.88,"Sd":1.6,"Og":2,"Os":147.5,"On":26,"Oa":5.67,"Od":1.15,"pm":26},"p":[[-38,{"n":4.5,"e":3937}],[-37,{"n":5.5,"e":3938}],[-36,{"n":5.5,"e":3952}],[-35,{"n":6,"e":3958}],[-34,{"n":4.5,"e":3969}],[-33,{"n":5,"e":3981}],[-32,{"n":5,"e":3989,"s":1}],[-31,{"n":5,"e":4003}],[-30,{"n":4.5,"e":4008}],[-28,{"n":5.5,"e":4028}],[-18,{"n":5,"e":4128}],[-17,{"n":5,"e":4145}],[-16,{"n":4,"e":4148}],[-15,{"n":6,"e":4164}],[-14,{"n":6,"e":4175}],[-13,{"n":5.5,"e":4179}],[-12,{"n":5.5,"e":4195}],[-11,{"n":7,"e":4199}],[-10,{"n":4,"e":4212}],[-9,{"n":7,"e":4218}],[-8,{"n":7,"e":4232}],[-7,{"n":7,"e":4239,"g":1}],[5,{"n":5.5,"e":6888}],[4,{"n":8.5,"e":6895,"g":1}],[3,{"n":8,"e":6906}],[2,{"n":5.5,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3981,[{"t":"Y"}]],[6888,[{"t":"Y"}]],[6906,[{"t":"Y"}]],[6913,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":31,"n":10}}],[3700,{"n":"Grealish","f":"Jack","fp":"MO","r":37,"c":78,"s":{"g":3,"s":29,"n":4,"a":7.25,"d":1.26,"Sg":3,"Ss":29,"Sn":4,"Sa":7.25,"Sd":1.26,"Og":11,"Os":202,"On":34,"Oa":5.94,"Od":1.43,"pm":10,"pa":24},"p":[[-38,{"n":7,"e":3937,"g":1}],[-37,{"n":6.5,"e":3938}],[-36,{"n":5.5,"e":3952}],[-35,{"n":6,"e":3958}],[-34,{"n":4,"e":3969}],[-33,{"n":5,"e":3981}],[-32,{"n":6,"e":3989}],[-31,{"n":5.5,"e":4003}],[-30,{"n":5,"e":4008}],[-29,{"n":4,"e":4022}],[-28,{"n":5.5,"e":4028}],[-27,{"n":5,"e":4046}],[-26,{"n":6.5,"e":4049}],[-25,{"n":6,"e":4058}],[-24,{"n":6,"e":4068}],[-23,{"n":7,"e":4079,"g":1}],[-22,{"n":3.5,"e":4088}],[-21,{"n":7.5,"e":4100,"g":1}],[-20,{"n":3.5,"e":4116}],[-19,{"n":7,"e":4118}],[-18,{"n":7.5,"e":4128,"g":1}],[-17,{"n":2.5,"e":4145}],[-16,{"n":6,"e":4148,"g":1}],[-15,{"n":5,"e":4164}],[-14,{"n":6.5,"e":4175,"g":1}],[-13,{"n":7.5,"e":4179}],[-10,{"n":4.5,"e":4212}],[-9,{"n":8,"e":4218,"g":1}],[-8,{"n":7.5,"e":4232,"g":1}],[-7,{"n":6,"e":4239}],[5,{"n":7,"e":6888}],[4,{"n":9,"e":6895,"g":2}],[3,{"n":7,"e":6906,"g":1}],[2,{"n":6,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[4008,[{"t":"Y"}]]],"a":{"m":35,"a":41,"M":51,"n":14}}],[3711,{"n":"Kalinic","f":"Lovre","fp":"G","r":1,"c":78,"s":{"Os":21.5,"On":4,"Oa":5.38,"Od":1.11,"pg":4},"p":[[-24,{"n":5,"e":3691}],[-23,{"n":6,"e":3707}],[-22,{"n":6.5,"e":3708}],[-21,{"n":4,"e":3720}],[1,{"n":null,"e":6924,"d":1}]]}],[3714,{"n":"Hourihane","f":"Conor","fp":"MD","r":17,"c":78,"s":{"g":1,"s":13.5,"n":2,"a":6.75,"d":1.77,"Og":4,"Os":145,"On":26,"Oa":5.58,"Od":1.24,"pm":26},"p":[[-38,{"n":5.5,"e":3937}],[-37,{"n":5.5,"e":3938}],[-36,{"n":6.5,"e":3952}],[-35,{"n":7,"e":3958}],[-34,{"n":5,"e":3969,"s":1}],[-32,{"n":5,"e":3989}],[-31,{"n":6,"e":4003,"s":1}],[-30,{"n":5,"e":4008}],[-29,{"n":5,"e":4022}],[-28,{"n":6,"e":4028}],[-27,{"n":4,"e":4046,"s":1}],[-23,{"n":5,"e":4079,"s":1}],[-22,{"n":3.5,"e":4088}],[-21,{"n":5,"e":4100,"s":1}],[-20,{"n":4,"e":4116}],[-19,{"n":7,"e":4118,"g":1,"s":1}],[-18,{"n":4,"e":4128}],[-15,{"n":4.5,"e":4164}],[-14,{"n":6,"e":4175}],[-13,{"n":8,"e":4179,"g":1}],[-11,{"n":5,"e":4199,"s":1}],[-9,{"n":5.5,"e":4218}],[-8,{"n":8,"e":4232,"g":1}],[-7,{"n":5.5,"e":4239}],[3,{"n":8,"e":6906,"g":1}],[2,{"n":5.5,"e":6913}],[1,{"n":null,"e":6924,"d":1}]]}],[3719,{"n":"Steer","f":"Jed","fp":"G","r":1,"c":78,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-12,{"n":5,"e":4195}],[1,{"n":null,"e":6924,"d":1}]]}],[3733,{"n":"Taylor","f":"Neil","fp":"DL","r":5,"c":78,"s":{"Os":36,"On":8,"Oa":4.5,"Od":0.65,"pd":7,"pm":1},"p":[[-35,{"n":5,"e":3958}],[-34,{"n":4.5,"e":3969}],[-33,{"n":5,"e":3981}],[-32,{"n":4.5,"e":3989,"s":1}],[-22,{"n":3,"e":4088}],[-21,{"n":5,"e":4100}],[-12,{"n":4.5,"e":4195,"s":1}],[-7,{"n":4.5,"e":4239,"s":1}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3958,[{"t":"I"}]]]}],[3737,{"n":"Lansbury","f":"Henri","fp":"MO","r":1,"c":78,"s":{"Os":37.5,"On":8,"Oa":4.69,"Od":0.53,"pm":8},"p":[[-37,{"n":5,"e":3938,"s":1}],[-22,{"n":4.5,"e":4088,"s":1}],[-20,{"n":3.5,"e":4116}],[-19,{"n":5,"e":4118,"s":1}],[-17,{"n":4.5,"e":4145}],[-14,{"n":5,"e":4175,"s":1}],[-13,{"n":5,"e":4179,"s":1}],[-12,{"n":5,"e":4195,"s":1}],[1,{"n":null,"e":6924,"d":1}]]}],[3740,{"n":"Ahmed El Mohamady","f":"","fp":"DL","r":7,"c":78,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":68,"On":14,"Oa":4.86,"Od":0.91,"pd":13,"pm":1},"p":[[-37,{"n":5,"e":3938}],[-36,{"n":4.5,"e":3952}],[-35,{"n":5,"e":3958}],[-32,{"n":5,"e":3989,"s":1}],[-31,{"n":6.5,"e":4003,"g":1,"s":1}],[-29,{"n":5,"e":4022}],[-28,{"n":5,"e":4028,"s":1}],[-22,{"n":3,"e":4088}],[-20,{"n":4,"e":4116}],[-19,{"n":5.5,"e":4118}],[-16,{"n":3.5,"e":4148}],[-15,{"n":6,"e":4164}],[-11,{"n":5,"e":4199,"s":1}],[4,{"n":5,"e":6895,"s":1}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3938,[{"t":"I"}]],[3952,[{"t":"Y"}]]]}],[5448,{"n":"Trézéguet","f":"","fp":"MO","r":25,"c":78,"s":{"s":25.5,"n":4,"a":6.38,"d":1.11,"Ss":25.5,"Sn":4,"Sa":6.38,"Sd":1.11,"Og":6,"Os":178,"On":33,"Oa":5.39,"Od":1,"pm":21,"pa":12},"p":[[-38,{"n":5.5,"e":3937}],[-37,{"n":7,"e":3938,"g":1}],[-36,{"n":3.5,"e":3952}],[-35,{"n":8,"e":3958,"g":2}],[-34,{"n":4.5,"e":3969}],[-33,{"n":5,"e":3981}],[-32,{"n":5,"e":3989,"s":1}],[-31,{"n":4,"e":4003}],[-30,{"n":5,"e":4008,"s":1}],[-28,{"n":5,"e":4028,"s":1}],[-27,{"n":4.5,"e":4046,"s":1}],[-26,{"n":5,"e":4049,"s":1}],[-25,{"n":4.5,"e":4058,"s":1}],[-24,{"n":5,"e":4068}],[-23,{"n":4,"e":4079}],[-22,{"n":6,"e":4088,"s":1}],[-21,{"n":5,"e":4100}],[-19,{"n":5.5,"e":4118}],[-18,{"n":5.5,"e":4128,"s":1}],[-17,{"n":5,"e":4145,"s":1}],[-16,{"n":4.5,"e":4148,"s":1}],[-15,{"n":6,"e":4164,"g":1}],[-14,{"n":5.5,"e":4175,"s":1}],[-12,{"n":6.5,"e":4195,"g":1}],[-11,{"n":6,"e":4199,"g":1}],[-10,{"n":5,"e":4212}],[-9,{"n":5.5,"e":4218,"s":1}],[-8,{"n":5,"e":4232,"s":1}],[-7,{"n":6,"e":4239,"s":1}],[5,{"n":6,"e":6888}],[4,{"n":8,"e":6895}],[3,{"n":6,"e":6906}],[2,{"n":5.5,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":24,"a":30,"M":37,"n":9}}],[5997,{"n":"Nakamba","f":"Marvelous","fp":"MD","r":7,"c":78,"s":{"s":10,"n":2,"a":5,"Os":146.5,"On":29,"Oa":5.05,"Od":0.74,"pm":29},"p":[[-38,{"n":5,"e":3937,"s":1}],[-37,{"n":5,"e":3938,"s":1}],[-35,{"n":5,"e":3958,"s":1}],[-34,{"n":4.5,"e":3969,"s":1}],[-32,{"n":5.5,"e":3989}],[-31,{"n":5,"e":4003,"s":1}],[-30,{"n":5.5,"e":4008,"s":1}],[-29,{"n":4.5,"e":4022}],[-28,{"n":5,"e":4028,"s":1}],[-27,{"n":4.5,"e":4046}],[-26,{"n":5.5,"e":4049,"s":1}],[-25,{"n":3.5,"e":4058}],[-24,{"n":5.5,"e":4068}],[-23,{"n":4.5,"e":4079}],[-22,{"n":5.5,"e":4088,"s":1}],[-21,{"n":5,"e":4100}],[-19,{"n":5,"e":4118}],[-18,{"n":4.5,"e":4128,"s":1}],[-17,{"n":5.5,"e":4145}],[-16,{"n":3.5,"e":4148}],[-15,{"n":6,"e":4164}],[-12,{"n":5,"e":4195}],[-11,{"n":5,"e":4199}],[-10,{"n":4.5,"e":4212}],[-9,{"n":5.5,"e":4218}],[-8,{"n":7.5,"e":4232}],[-7,{"n":5.5,"e":4239}],[4,{"n":5,"e":6895,"s":1}],[3,{"n":5,"e":6906,"s":1}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3969,[{"t":"Y"}]],[6895,[{"t":"Y"}]]]}],[7179,{"n":"Cash","f":"Matthew","fp":"DL","r":12,"c":78,"s":{"s":23.5,"n":4,"a":5.88,"d":0.25,"Ss":23.5,"Sn":4,"Sa":5.88,"Sd":0.25,"Os":23.5,"On":4,"Oa":5.88,"Od":0.25,"pd":4},"p":[[5,{"n":6,"e":6888}],[4,{"n":6,"e":6895}],[3,{"n":5.5,"e":6906}],[2,{"n":6,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[6888,[{"t":"Y"}]],[6913,[{"t":"Y"}]]]}],[7265,{"n":"Watkins","f":"Ollie","fp":"A","r":17,"c":78,"s":{"g":3,"s":23.5,"n":4,"a":5.88,"d":2.1,"Sg":3,"Ss":23.5,"Sn":4,"Sa":5.88,"Sd":2.1,"Og":3,"Os":23.5,"On":4,"Oa":5.88,"Od":2.1,"pa":4},"p":[[5,{"n":4.5,"e":6888}],[4,{"n":9,"e":6895,"g":3}],[3,{"n":5,"e":6906}],[2,{"n":5,"e":6913}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":16,"a":20,"M":25,"n":5}}],[388,{"n":"Bissouma","f":"Yves","fp":"MD","r":12,"c":45,"s":{"g":1,"s":22.5,"n":4,"a":5.63,"d":1.03,"Sg":1,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.06,"Og":2,"Os":128,"On":25,"Oa":5.12,"Od":1.04,"pm":24,"pa":1},"p":[[5,{"n":5,"e":6886}],[4,{"n":6.5,"e":6897,"g":1}],[2,{"n":6.5,"e":6918}],[-38,{"n":6,"e":3929,"g":1}],[-37,{"n":6,"e":3940}],[-36,{"n":4.5,"e":3956,"s":1}],[-35,{"n":2.5,"e":3960}],[-34,{"n":5,"e":3971,"s":1}],[-33,{"n":6,"e":3984}],[-32,{"n":5,"e":3991}],[-31,{"n":5,"e":4000}],[-29,{"n":7,"e":4027}],[-28,{"n":5,"e":4030}],[-27,{"n":5,"e":4045}],[-20,{"n":7,"e":4109}],[-19,{"n":5,"e":4126,"s":1}],[-18,{"n":4.5,"e":4130,"s":1}],[-17,{"n":5.5,"e":4141}],[-14,{"n":4.5,"e":4171}],[-13,{"n":5,"e":4181,"s":1}],[-8,{"n":4.5,"e":4228,"s":1}],[-30,{"n":5,"e":4010}],[-21,{"n":3.5,"e":4099}],[-7,{"n":4,"e":4241}],[1,{"n":4.5,"e":6928}]],"fo":[[6918,[{"t":"R"}]],[3940,[{"t":"Y"}]],[3960,[{"t":"Y"}]],[6886,[{"t":"Y"}]]]}],[618,{"n":"Lallana","f":"Adam","fp":"MO","r":11,"c":45,"s":{"s":23.5,"n":5,"a":4.7,"d":0.67,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":90,"On":18,"Oa":5,"Od":0.59,"pm":17,"pa":1},"p":[[3,{"n":3.5,"e":6903}],[-29,{"n":5,"e":4023,"s":1}],[-28,{"n":5.5,"e":4036,"s":1}],[-25,{"n":5,"e":4062,"s":1}],[-23,{"n":5,"e":4081,"s":1}],[-22,{"n":5.5,"e":4096,"s":1}],[-21,{"n":4.5,"e":4101,"s":1}],[-20,{"n":5,"e":4111}],[-19,{"n":4.5,"e":4123,"s":1}],[-15,{"n":5,"e":4167}],[-9,{"n":6.5,"e":4224,"g":1,"s":1}],[-8,{"n":5,"e":4230,"s":1}],[-14,{"n":4.5,"e":4171,"s":1}],[-11,{"n":5.5,"e":4199}],[5,{"n":5,"e":6886}],[4,{"n":5,"e":6897,"s":1}],[2,{"n":5,"e":6918,"s":1}],[1,{"n":5,"e":6928}]],"fo":[[6928,[{"t":"I"}]]]}],[1038,{"n":"Welbeck","f":"Danny","fp":"A","r":10,"c":45,"s":{"Og":2,"Os":75.5,"On":16,"Oa":4.72,"Od":0.86,"pm":3,"pa":13},"p":[[-37,{"n":4.5,"e":3946,"s":1}],[-36,{"n":4,"e":3957}],[-35,{"n":5,"e":3966}],[-34,{"n":6.5,"e":3976,"g":1}],[-32,{"n":4.5,"e":3996,"s":1}],[-31,{"n":4,"e":3998}],[-30,{"n":4,"e":4016,"s":1}],[-29,{"n":4.5,"e":4021,"s":1}],[-27,{"n":4.5,"e":4044,"s":1}],[-26,{"n":4.5,"e":4050,"s":1}],[-25,{"n":4.5,"e":4066,"s":1}],[-9,{"n":4.5,"e":4226}],[-8,{"n":4,"e":4234}],[-7,{"n":5,"e":4244}],[-38,{"n":7,"e":3928,"g":1}],[-33,{"n":4.5,"e":3979,"s":1}]]}],[1056,{"n":"Bernardo","f":"","fp":"DL","r":4,"c":45,"s":{"Os":57.5,"On":12,"Oa":4.79,"Od":0.69,"pd":10,"pm":2},"p":[[-25,{"n":4.5,"e":4067}],[-24,{"n":4.5,"e":4069}],[-22,{"n":4.5,"e":4092}],[-38,{"n":5,"e":3929,"s":1}],[-35,{"n":3,"e":3960}],[-33,{"n":5,"e":3984,"s":1}],[-32,{"n":5,"e":3991,"s":1}],[-27,{"n":5,"e":4045,"s":1}],[-23,{"n":5,"e":4079}],[-21,{"n":6,"e":4099,"s":1}],[-19,{"n":5,"e":4126}],[-17,{"n":5,"e":4141,"s":1}]]}],[1296,{"n":"Dunk","f":"Lewis","fp":"DC","r":17,"c":45,"s":{"ao":1,"s":22.5,"n":5,"a":4.5,"d":1.41,"Sao":1,"Ss":22.5,"Sn":5,"Sa":4.5,"Sd":1.41,"Og":3,"Oao":1,"Os":179.5,"On":35,"Oa":5.13,"Od":1.15,"pd":35},"p":[[-16,{"n":4,"e":4150}],[-12,{"n":4,"e":4197,"g":1}],[-11,{"n":7,"e":4201}],[-10,{"n":5,"e":4209}],[-38,{"n":6,"e":3929}],[-37,{"n":6,"e":3940}],[-36,{"n":6,"e":3956}],[-35,{"n":3,"e":3960}],[-34,{"n":4,"e":3971}],[-33,{"n":6,"e":3984}],[-32,{"n":3.5,"e":3991}],[-31,{"n":6,"e":4000}],[-30,{"n":7,"e":4010,"g":1}],[-29,{"n":5.5,"e":4027}],[-28,{"n":5.5,"e":4030}],[-27,{"n":5,"e":4045}],[-26,{"n":5,"e":4050}],[-25,{"n":4.5,"e":4067}],[-24,{"n":4.5,"e":4069}],[-23,{"n":5,"e":4079}],[-22,{"n":5,"e":4092}],[-21,{"n":6,"e":4099}],[-20,{"n":6,"e":4109}],[-18,{"n":5,"e":4130}],[-17,{"n":5,"e":4141}],[-15,{"n":5.5,"e":4158}],[-14,{"n":6.5,"e":4171,"g":1}],[-9,{"n":4,"e":4218}],[-8,{"n":7.5,"e":4228}],[-7,{"n":4,"e":4241}],[5,{"n":5.5,"e":6886}],[4,{"n":3,"e":6897}],[3,{"n":3,"e":6903,"a":1}],[2,{"n":6,"e":6918}],[1,{"n":5,"e":6928}]],"fo":[[6886,[{"t":"R"}]],[6903,[{"t":"Y"}]]],"a":{"m":23,"a":25,"M":32,"n":8}}],[1303,{"n":"Groß","f":"Pascal","fp":"MO","r":8,"c":45,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Og":2,"Oao":1,"Os":138,"On":27,"Oa":5.11,"Od":1.15,"pm":21,"pa":6},"p":[[-37,{"n":4.5,"e":3940}],[-36,{"n":4.5,"e":3956,"s":1}],[-35,{"n":3,"e":3960}],[-34,{"n":4,"e":3971}],[-33,{"n":5,"e":3984,"s":1}],[-30,{"n":5.5,"e":4010}],[-26,{"n":4,"e":4050}],[-25,{"n":7,"e":4067,"g":1}],[-24,{"n":2.5,"e":4069,"a":1}],[-23,{"n":5,"e":4079,"s":1}],[-22,{"n":5.5,"e":4092,"s":1}],[-19,{"n":6.5,"e":4126}],[-18,{"n":3.5,"e":4130}],[-17,{"n":6.5,"e":4141}],[-16,{"n":5,"e":4150}],[-15,{"n":5,"e":4158}],[-14,{"n":5,"e":4171}],[-12,{"n":6,"e":4197,"s":1}],[-11,{"n":5,"e":4201}],[-10,{"n":6,"e":4209,"g":1}],[-9,{"n":7,"e":4218}],[-8,{"n":7,"e":4228}],[-7,{"n":4.5,"e":4241}],[5,{"n":5,"e":6886,"s":1}],[4,{"n":5.5,"e":6897,"s":1}],[3,{"n":5,"e":6903,"s":1}],[1,{"n":5,"e":6928,"s":1}]],"fo":[[3940,[{"t":"Y"}]],[3984,[{"t":"Y"}]]]}],[1306,{"n":"March","f":"Solly","fp":"MO","r":10,"c":45,"s":{"g":1,"s":24.5,"n":5,"a":4.9,"d":1.52,"Sg":1,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.52,"Og":1,"Os":93,"On":19,"Oa":4.89,"Od":0.84,"pm":18,"pa":1},"p":[[-38,{"n":5,"e":3929}],[-37,{"n":4.5,"e":3940,"s":1}],[-36,{"n":5,"e":3956}],[-32,{"n":5,"e":3991,"s":1}],[-31,{"n":5,"e":4000,"s":1}],[-30,{"n":5,"e":4010,"s":1}],[-29,{"n":4.5,"e":4027}],[-28,{"n":4,"e":4030}],[-26,{"n":5.5,"e":4050}],[-25,{"n":6,"e":4067,"s":1}],[-24,{"n":5,"e":4069,"s":1}],[-13,{"n":5,"e":4181}],[-12,{"n":4,"e":4197,"s":1}],[-9,{"n":5,"e":4218,"s":1}],[5,{"n":5,"e":6886}],[4,{"n":3,"e":6897}],[3,{"n":7,"e":6903,"g":1}],[2,{"n":5.5,"e":6918}],[1,{"n":4,"e":6928}]]}],[1308,{"n":"Pröpper","f":"Davy","fp":"MD","r":8,"c":45,"s":{"Og":1,"Os":148.5,"On":29,"Oa":5.12,"Od":0.98,"pm":29},"p":[[-38,{"n":4.5,"e":3929,"s":1}],[-37,{"n":4.5,"e":3940,"s":1}],[-36,{"n":4,"e":3956}],[-35,{"n":4,"e":3960}],[-34,{"n":3.5,"e":3971}],[-33,{"n":5.5,"e":3984}],[-32,{"n":3.5,"e":3991}],[-31,{"n":5,"e":4000,"s":1}],[-30,{"n":4.5,"e":4010}],[-29,{"n":5,"e":4027}],[-28,{"n":5.5,"e":4030}],[-27,{"n":6,"e":4045}],[-26,{"n":6,"e":4050}],[-25,{"n":7,"e":4067}],[-24,{"n":5,"e":4069}],[-23,{"n":4.5,"e":4079}],[-22,{"n":4.5,"e":4092}],[-21,{"n":5,"e":4099}],[-20,{"n":7,"e":4109}],[-18,{"n":4,"e":4130}],[-17,{"n":6,"e":4141}],[-16,{"n":5.5,"e":4150,"g":1}],[-15,{"n":5.5,"e":4158}],[-14,{"n":6,"e":4171}],[-13,{"n":5,"e":4181}],[-12,{"n":4,"e":4197}],[-11,{"n":7,"e":4201}],[-10,{"n":5.5,"e":4209}],[-9,{"n":5.5,"e":4218}]]}],[1313,{"n":"Izquierdo","f":"José","fp":"A","r":1,"c":45}],[1323,{"n":"Ryan","f":"Mat","fp":"G","r":14,"c":45,"s":{"s":20,"n":5,"a":4,"d":1.22,"Ss":20,"Sn":5,"Sa":4,"Sd":1.22,"Os":195,"On":37,"Oa":5.27,"Od":1.11,"pg":37},"p":[[-38,{"n":5,"e":3929}],[-37,{"n":5.5,"e":3940}],[-36,{"n":6,"e":3956}],[-35,{"n":3,"e":3960}],[-34,{"n":5,"e":3971}],[-33,{"n":6,"e":3984}],[-32,{"n":4,"e":3991}],[-31,{"n":6,"e":4000}],[-30,{"n":6.5,"e":4010}],[-29,{"n":6,"e":4027}],[-28,{"n":5,"e":4030}],[-27,{"n":6,"e":4045}],[-26,{"n":4.5,"e":4050}],[-25,{"n":4,"e":4067}],[-24,{"n":3.5,"e":4069}],[-23,{"n":5,"e":4079}],[-22,{"n":6.5,"e":4092}],[-21,{"n":5.5,"e":4099}],[-20,{"n":6,"e":4109}],[-19,{"n":5.5,"e":4126}],[-18,{"n":4.5,"e":4130}],[-17,{"n":5.5,"e":4141}],[-16,{"n":5,"e":4150}],[-15,{"n":6,"e":4158}],[-14,{"n":6,"e":4171}],[-13,{"n":6.5,"e":4181}],[-12,{"n":6,"e":4197}],[-11,{"n":5,"e":4201}],[-10,{"n":6,"e":4209}],[-9,{"n":6,"e":4218}],[-8,{"n":6.5,"e":4228}],[-7,{"n":7.5,"e":4241}],[5,{"n":4,"e":6886}],[4,{"n":3,"e":6897}],[3,{"n":4,"e":6903}],[2,{"n":6,"e":6918}],[1,{"n":3,"e":6928}]],"fo":[[6886,[{"t":"Y"}]]],"a":{"m":19,"a":25,"M":26,"n":5}}],[1356,{"n":"Molumby","f":"Jayson","fp":"MD","r":1,"c":45}],[1378,{"n":"Connolly","f":"Aaron","fp":"A","r":10,"c":45,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":1.4,"Sg":1,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.4,"Og":4,"Os":122.5,"On":26,"Oa":4.71,"Od":1.18,"pa":26},"p":[[-38,{"n":6,"e":3929,"g":1}],[-35,{"n":3,"e":3960}],[-34,{"n":4.5,"e":3971,"s":1}],[-33,{"n":4.5,"e":3984}],[-32,{"n":4,"e":3991}],[-31,{"n":5.5,"e":4000}],[-30,{"n":6,"e":4010,"s":1}],[-27,{"n":4.5,"e":4045,"s":1}],[-24,{"n":4,"e":4069,"s":1}],[-23,{"n":4,"e":4079}],[-21,{"n":5,"e":4099,"s":1}],[-19,{"n":3.5,"e":4126}],[-18,{"n":4.5,"e":4130,"s":1}],[-15,{"n":5,"e":4158}],[-14,{"n":3.5,"e":4171}],[-12,{"n":3,"e":4197}],[-11,{"n":5,"e":4201}],[-10,{"n":6,"e":4209}],[-9,{"n":5,"e":4218}],[-8,{"n":8,"e":4228,"g":2}],[-7,{"n":4.5,"e":4241,"s":1}],[5,{"n":5,"e":6886,"s":1}],[4,{"n":4,"e":6897}],[3,{"n":3.5,"e":6903}],[2,{"n":7,"e":6918,"g":1}],[1,{"n":4,"e":6928,"s":1}]],"a":{"m":12,"a":15,"M":17,"n":6}}],[1612,{"n":"Andone","f":"Florin","fp":"A","r":5,"c":45}],[2525,{"n":"Steele","f":"Jason","fp":"G","r":1,"c":45}],[2576,{"n":"Jahanbakhsh","f":"Alireza","fp":"A","r":8,"c":45,"s":{"s":15,"n":3,"a":5,"d":0.87,"Og":2,"Os":65.5,"On":13,"Oa":5.04,"Od":1.05,"pm":2,"pa":11},"p":[[-38,{"n":4.5,"e":3929,"s":1}],[-35,{"n":4,"e":3960,"s":1}],[-29,{"n":5,"e":4027,"s":1}],[-28,{"n":5,"e":4030,"s":1}],[-26,{"n":5,"e":4050,"s":1}],[-24,{"n":5,"e":4069}],[-22,{"n":3.5,"e":4092}],[-21,{"n":7,"e":4099,"g":1,"s":1}],[-20,{"n":7,"e":4109,"g":1}],[-16,{"n":4.5,"e":4150,"s":1}],[3,{"n":6,"e":6903,"s":1}],[2,{"n":4.5,"e":6918,"s":1}],[1,{"n":4.5,"e":6928,"s":1}]],"fo":[[6903,[{"t":"Y"}]]]}],[2933,{"n":"White","f":"Ben","fp":"DC","r":9,"c":45,"s":{"s":22,"n":5,"a":4.4,"d":1.14,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.14,"Os":22,"On":5,"Oa":4.4,"Od":1.14,"pd":4,"pm":1},"p":[[5,{"n":5.5,"e":6886}],[4,{"n":3,"e":6897}],[3,{"n":4.5,"e":6903}],[2,{"n":5.5,"e":6918}],[1,{"n":3.5,"e":6928}]],"fo":[[6903,[{"t":"Y"}]]]}],[2986,{"n":"Burn","f":"Dan","fp":"DC","r":8,"c":45,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":143,"On":30,"Oa":4.77,"Od":0.78,"pd":30},"p":[[-38,{"n":5.5,"e":3929}],[-37,{"n":5.5,"e":3940}],[-36,{"n":5,"e":3956}],[-35,{"n":5,"e":3960,"s":1}],[-34,{"n":3.5,"e":3971}],[-33,{"n":5.5,"e":3984}],[-32,{"n":3,"e":3991}],[-31,{"n":5,"e":4000}],[-30,{"n":5,"e":4010}],[-29,{"n":5,"e":4027}],[-28,{"n":5,"e":4030}],[-27,{"n":5,"e":4045}],[-26,{"n":4.5,"e":4050}],[-21,{"n":4.5,"e":4099}],[-20,{"n":5,"e":4109}],[-19,{"n":4,"e":4126}],[-18,{"n":5,"e":4130}],[-17,{"n":4.5,"e":4141}],[-16,{"n":3,"e":4150}],[-15,{"n":6,"e":4158}],[-14,{"n":5.5,"e":4171}],[-13,{"n":5,"e":4181}],[-12,{"n":3,"e":4197}],[-11,{"n":5,"e":4201}],[-10,{"n":5.5,"e":4209}],[-9,{"n":4,"e":4218}],[-8,{"n":5.5,"e":4228}],[-7,{"n":5,"e":4241}],[5,{"n":5,"e":6886}],[2,{"n":5,"e":6918,"s":1}]],"fo":[[4010,[{"t":"Y"}]]]}],[3119,{"n":"Sanders","f":"Max","fp":"MD","r":1,"c":45}],[3353,{"n":"Sánchez","f":"Robert","fp":"G","r":1,"c":45}],[3699,{"n":"Trossard","f":"Leandro","fp":"MO","r":23,"c":45,"s":{"g":1,"s":26.5,"n":5,"a":5.3,"d":1.44,"Sg":1,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.44,"Og":5,"Os":169.5,"On":33,"Oa":5.14,"Od":1.08,"pm":21,"pa":12},"p":[[-37,{"n":5,"e":3940}],[-36,{"n":5,"e":3956}],[-35,{"n":3.5,"e":3960}],[-34,{"n":6.5,"e":3971,"g":1}],[-33,{"n":7,"e":3984,"g":1}],[-32,{"n":5,"e":3991,"s":1}],[-31,{"n":5,"e":4000,"s":1}],[-30,{"n":5,"e":4010}],[-29,{"n":4.5,"e":4027}],[-28,{"n":5,"e":4030}],[-27,{"n":4.5,"e":4045,"s":1}],[-26,{"n":5.5,"e":4050}],[-25,{"n":4.5,"e":4067}],[-24,{"n":4.5,"e":4069,"s":1}],[-23,{"n":6.5,"e":4079,"g":1}],[-22,{"n":4,"e":4092}],[-21,{"n":5,"e":4099}],[-20,{"n":7,"e":4109}],[-19,{"n":4.5,"e":4126,"s":1}],[-18,{"n":3.5,"e":4130}],[-17,{"n":5.5,"e":4141}],[-16,{"n":6,"e":4150}],[-15,{"n":4.5,"e":4158,"s":1}],[-14,{"n":4.5,"e":4171,"s":1}],[-13,{"n":4,"e":4181}],[-12,{"n":4.5,"e":4197}],[-11,{"n":7.5,"e":4201,"g":1,"s":1}],[-10,{"n":5.5,"e":4209,"s":1}],[5,{"n":5,"e":6886}],[4,{"n":3.5,"e":6897}],[3,{"n":4.5,"e":6903}],[2,{"n":7,"e":6918}],[1,{"n":6.5,"e":6928,"g":1}]],"fo":[[6903,[{"t":"Y"}]]],"a":{"m":24,"a":29,"M":34,"n":11}}],[3762,{"n":"Eneme","f":"Ulrich","fp":"MO","r":5,"c":45}],[4032,{"n":"Yapi","f":"Romaric","fp":"DL","r":1,"c":45}],[5999,{"n":"Maupay","f":"Neal","fp":"A","r":27,"c":45,"s":{"g":4,"s":28.5,"n":5,"a":5.7,"d":1.48,"Sg":4,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":1.48,"Og":12,"Os":185.5,"On":36,"Oa":5.15,"Od":1.15,"pa":36},"p":[[-38,{"n":5,"e":3929}],[-37,{"n":4.5,"e":3940}],[-36,{"n":6.5,"e":3956,"g":1}],[-35,{"n":4.5,"e":3960,"s":1}],[-34,{"n":4.5,"e":3971}],[-33,{"n":5,"e":3984}],[-32,{"n":4.5,"e":3991,"s":1}],[-31,{"n":3,"e":4000}],[-30,{"n":7,"e":4010,"g":1}],[-29,{"n":4,"e":4027}],[-28,{"n":5,"e":4030}],[-27,{"n":6,"e":4045,"g":1}],[-26,{"n":5,"e":4050,"s":1}],[-24,{"n":5,"e":4069}],[-23,{"n":5,"e":4079}],[-22,{"n":4,"e":4092}],[-21,{"n":4,"e":4099}],[-20,{"n":6,"e":4109}],[-19,{"n":4.5,"e":4126,"s":1}],[-18,{"n":4.5,"e":4130}],[-17,{"n":6,"e":4141,"g":1}],[-16,{"n":7,"e":4150,"g":1}],[-15,{"n":7,"e":4158,"g":1}],[-14,{"n":4,"e":4171,"s":1}],[-13,{"n":4.5,"e":4181}],[-12,{"n":4,"e":4197}],[-11,{"n":5,"e":4201}],[-10,{"n":6,"e":4209,"g":1}],[-9,{"n":5.5,"e":4218}],[-8,{"n":7,"e":4228,"g":1}],[-7,{"n":3.5,"e":4241}],[5,{"n":5,"e":6886}],[4,{"n":5.5,"e":6897,"g":1}],[3,{"n":6,"e":6903,"g":1}],[2,{"n":8,"e":6918,"g":2}],[1,{"n":4,"e":6928}]],"a":{"m":22,"a":35,"M":65,"n":20}}],[6000,{"n":"Webster","f":"Adam","fp":"DC","r":16,"c":45,"s":{"s":22,"n":5,"a":4.4,"d":1.24,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.24,"Og":3,"Oao":1,"Os":159.5,"On":33,"Oa":4.83,"Od":1.23,"pd":33},"p":[[-38,{"n":5.5,"e":3929}],[-37,{"n":6,"e":3940}],[-36,{"n":5.5,"e":3956}],[-35,{"n":2,"e":3960}],[-34,{"n":4.5,"e":3971}],[-33,{"n":5,"e":3984}],[-31,{"n":5,"e":4000}],[-30,{"n":5.5,"e":4010}],[-29,{"n":5,"e":4027}],[-28,{"n":5.5,"e":4030}],[-27,{"n":6,"e":4045}],[-25,{"n":3.5,"e":4067}],[-24,{"n":3,"e":4069}],[-23,{"n":5.5,"e":4079}],[-22,{"n":4.5,"e":4092}],[-21,{"n":5.5,"e":4099}],[-19,{"n":6.5,"e":4126,"g":1}],[-18,{"n":3.5,"e":4130}],[-17,{"n":4.5,"e":4141}],[-16,{"n":4.5,"e":4150}],[-15,{"n":7.5,"e":4158,"g":1}],[-14,{"n":4.5,"e":4171}],[-13,{"n":3,"e":4181}],[-11,{"n":5.5,"e":4201}],[-10,{"n":4,"e":4209,"a":1}],[-9,{"n":5.5,"e":4218,"g":1}],[-8,{"n":7,"e":4228}],[-7,{"n":4,"e":4241}],[5,{"n":5.5,"e":6886}],[4,{"n":2.5,"e":6897}],[3,{"n":4.5,"e":6903}],[2,{"n":5.5,"e":6918}],[1,{"n":4,"e":6928}]],"fo":[[4000,[{"t":"I"}]],[3940,[{"t":"Y"}]]],"a":{"m":20,"a":24,"M":25,"n":7}}],[6242,{"n":"Roberts","f":"Haydon","fp":"DC","r":1,"c":45}],[6243,{"n":"Alzate","f":"Steven","fp":"MO","r":10,"c":45,"s":{"s":20,"n":4,"a":5,"d":1.22,"Os":107,"On":22,"Oa":4.86,"Od":0.85,"pd":4,"pm":11,"pa":7},"p":[[-28,{"n":5,"e":4030,"s":1}],[-26,{"n":4.5,"e":4050,"s":1}],[-24,{"n":3.5,"e":4069}],[-23,{"n":3,"e":4079}],[-22,{"n":5,"e":4092,"s":1}],[-21,{"n":5.5,"e":4099}],[-20,{"n":5,"e":4109,"s":1}],[-19,{"n":5,"e":4126}],[-17,{"n":4.5,"e":4141,"s":1}],[-16,{"n":4.5,"e":4150}],[-15,{"n":5,"e":4158}],[-14,{"n":5,"e":4171,"s":1}],[-12,{"n":5,"e":4197}],[-11,{"n":6,"e":4201}],[-10,{"n":5,"e":4209}],[-9,{"n":4.5,"e":4218,"s":1}],[-8,{"n":6.5,"e":4228}],[-7,{"n":4.5,"e":4241}],[4,{"n":3.5,"e":6897}],[3,{"n":6,"e":6903}],[2,{"n":6,"e":6918}],[1,{"n":4.5,"e":6928}]],"fo":[[6897,[{"t":"Y"}]]],"a":{"m":6,"a":10,"M":12,"n":5}}],[6284,{"n":"Gwargis","f":"Peter","fp":"MO","r":1,"c":45}],[6388,{"n":"Lamptey","f":"Tariq","fp":"DL","r":10,"c":45,"s":{"s":23.5,"n":5,"a":4.7,"d":0.84,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.84,"Os":62.5,"On":13,"Oa":4.81,"Od":0.72,"pd":5,"pm":8},"p":[[-38,{"n":5.5,"e":3929}],[-37,{"n":5,"e":3940}],[-36,{"n":5,"e":3956}],[-35,{"n":4.5,"e":3960,"s":1}],[-34,{"n":4.5,"e":3971}],[-33,{"n":5.5,"e":3984}],[-32,{"n":3.5,"e":3991}],[-31,{"n":5.5,"e":4000}],[5,{"n":4,"e":6886}],[4,{"n":4,"e":6897}],[3,{"n":5,"e":6903}],[2,{"n":6,"e":6918}],[1,{"n":4.5,"e":6928}]],"fo":[[6897,[{"t":"I"}]],[6918,[{"t":"I"}]],[3971,[{"t":"Y"}]],[3984,[{"t":"Y"}]],[6928,[{"t":"Y"}]]]}],[6480,{"n":"Jenks","f":"Teddy","fp":"MD","r":1,"c":45}],[6542,{"n":"Spong","f":"Jack","fp":"MD","r":1,"c":45}],[6546,{"n":"Mac Allister","f":"Alexis","fp":"MO","r":5,"c":45,"s":{"g":1,"s":7,"n":1,"a":7,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":49,"On":10,"Oa":4.9,"Od":0.84,"pm":8,"pa":2},"p":[[-38,{"n":4.5,"e":3929}],[-37,{"n":5,"e":3940,"s":1}],[-36,{"n":5,"e":3956,"s":1}],[-34,{"n":4,"e":3971}],[-33,{"n":5,"e":3984,"s":1}],[-32,{"n":4,"e":3991}],[-31,{"n":4.5,"e":4000}],[-30,{"n":5,"e":4010,"s":1}],[-29,{"n":5,"e":4027,"s":1}],[5,{"n":7,"e":6886,"g":1,"s":1}]]}],[6699,{"n":"Veltman","f":"Joël","fp":"DL","r":7,"c":45,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[4,{"n":4.5,"e":6897,"s":1}]]}],[7136,{"n":"Walton","f":"Christian","fp":"G","r":2,"c":45}],[7322,{"n":"Dendoncker","f":"Lars","fp":"DC","r":1,"c":45}],[7405,{"n":"Zeqiri","f":"Andi","fp":"A","r":6,"c":45}],[718,{"n":"Rodriguez","f":"Jay","fp":"A","r":14,"c":23,"s":{"s":8,"n":2,"a":4,"d":0.71,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":8,"Os":154,"On":32,"Oa":4.81,"Od":1.16,"pa":32},"p":[[5,{"n":4.5,"e":6893,"s":1}],[2,{"n":3.5,"e":6916}],[1,{"n":null,"e":6921,"d":1}],[-37,{"n":6,"e":3942}],[-36,{"n":4.5,"e":3949}],[-35,{"n":6.5,"e":3961,"g":1}],[-34,{"n":6,"e":3977,"g":1}],[-33,{"n":6,"e":3978}],[-30,{"n":3.5,"e":4012}],[-29,{"n":6,"e":4019}],[-28,{"n":4,"e":4033}],[-27,{"n":6,"e":4039,"g":1}],[-26,{"n":4.5,"e":4056}],[-24,{"n":6.5,"e":4074,"g":1}],[-23,{"n":5,"e":4080}],[-20,{"n":5,"e":4110,"s":1}],[-19,{"n":4,"e":4122}],[-18,{"n":6,"e":4129,"g":1,"s":1}],[-17,{"n":4.5,"e":4139,"s":1}],[-16,{"n":2.5,"e":4155}],[-15,{"n":4.5,"e":4159,"s":1}],[-14,{"n":4,"e":4168,"s":1}],[-13,{"n":4.5,"e":4186,"s":1}],[-12,{"n":4,"e":4188,"s":1}],[-11,{"n":2.5,"e":4205}],[-9,{"n":4,"e":4223}],[-8,{"n":5,"e":4229,"s":1}],[-38,{"n":3,"e":3929}],[-31,{"n":6.5,"e":3998,"g":1}],[-25,{"n":5,"e":4059}],[-21,{"n":4.5,"e":4100,"s":1}],[-10,{"n":6,"e":4210,"g":1}],[-7,{"n":6,"e":4239,"g":1,"s":1}]],"fo":[[3949,[{"t":"I"}]],[6916,[{"t":"Y"}]]]}],[742,{"n":"Cork","f":"Jack","fp":"MD","r":9,"c":23,"s":{"Os":114,"On":24,"Oa":4.75,"Od":1.09,"pm":24},"p":[[-32,{"n":5,"e":3992}],[-31,{"n":5,"e":3998}],[-30,{"n":3.5,"e":4012}],[-29,{"n":6,"e":4019}],[-28,{"n":5,"e":4033}],[-27,{"n":7,"e":4039}],[-26,{"n":4.5,"e":4056}],[-25,{"n":4,"e":4059}],[-24,{"n":6,"e":4074}],[-23,{"n":4.5,"e":4080}],[-22,{"n":4,"e":4090}],[-21,{"n":4,"e":4100}],[-20,{"n":5,"e":4110}],[-19,{"n":4.5,"e":4122}],[-18,{"n":5.5,"e":4129}],[-17,{"n":5,"e":4139}],[-16,{"n":3,"e":4155}],[-15,{"n":3.5,"e":4159}],[-14,{"n":4,"e":4168}],[-13,{"n":5.5,"e":4186}],[-12,{"n":7,"e":4188}],[-11,{"n":3,"e":4205}],[-10,{"n":5.5,"e":4210}],[-7,{"n":4,"e":4239}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3992,[{"t":"I"}]]]}],[764,{"n":"Lowton","f":"Matthew","fp":"DL","r":6,"c":23,"s":{"Os":47,"On":11,"Oa":4.27,"Od":1.33,"pd":11},"p":[[-31,{"n":5.5,"e":3998}],[-30,{"n":3.5,"e":4012}],[-25,{"n":6,"e":4059}],[-24,{"n":5.5,"e":4074}],[-22,{"n":3,"e":4090}],[-16,{"n":2.5,"e":4155}],[-11,{"n":3,"e":4205}],[-10,{"n":3,"e":4210}],[-9,{"n":4,"e":4223}],[-8,{"n":5.5,"e":4229}],[-7,{"n":5.5,"e":4239}],[1,{"n":null,"e":6921,"d":1}]]}],[765,{"n":"Barnes","f":"Ashley","fp":"A","r":9,"c":23,"s":{"s":9,"n":2,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":67,"On":15,"Oa":4.47,"Od":1.13,"pa":15},"p":[[4,{"n":4.5,"e":6900}],[-21,{"n":3.5,"e":4100}],[-20,{"n":3.5,"e":4110}],[-19,{"n":4.5,"e":4122,"s":1}],[-18,{"n":4.5,"e":4129}],[-17,{"n":5,"e":4139}],[-15,{"n":4.5,"e":4159,"s":1}],[-14,{"n":3.5,"e":4168}],[-13,{"n":6.5,"e":4186,"g":1}],[-12,{"n":7,"e":4188,"g":1}],[-11,{"n":2.5,"e":4205}],[-10,{"n":4,"e":4210}],[-8,{"n":4.5,"e":4229}],[-7,{"n":4.5,"e":4239}],[5,{"n":4.5,"e":6893}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[6900,[{"t":"Y"}]]]}],[767,{"n":"Mee","f":"Ben","fp":"DC","r":11,"c":23,"s":{"Og":1,"Os":127.5,"On":26,"Oa":4.9,"Od":1.48,"pd":26},"p":[[-32,{"n":7,"e":3992,"g":1}],[-31,{"n":6,"e":3998}],[-30,{"n":2,"e":4012}],[-29,{"n":5,"e":4019}],[-28,{"n":6,"e":4033}],[-27,{"n":5.5,"e":4039}],[-26,{"n":5.5,"e":4056}],[-25,{"n":6,"e":4059}],[-24,{"n":8,"e":4074}],[-23,{"n":4.5,"e":4080}],[-22,{"n":5,"e":4090}],[-21,{"n":3.5,"e":4100}],[-20,{"n":3.5,"e":4110}],[-19,{"n":5.5,"e":4122}],[-18,{"n":5.5,"e":4129}],[-17,{"n":5.5,"e":4139}],[-16,{"n":3,"e":4155}],[-15,{"n":3.5,"e":4159}],[-14,{"n":3,"e":4168}],[-13,{"n":6,"e":4186}],[-12,{"n":7,"e":4188}],[-11,{"n":3,"e":4205}],[-10,{"n":3.5,"e":4210}],[-9,{"n":4,"e":4223}],[-8,{"n":6,"e":4229}],[-7,{"n":4.5,"e":4239}],[1,{"n":null,"e":6921,"d":1}]]}],[811,{"n":"Pieters","f":"Erik","fp":"DL","r":7,"c":23,"s":{"ao":1,"s":8,"n":2,"a":4,"d":1.41,"Ss":5,"Sn":1,"Sa":5,"Oao":1,"Os":91.5,"On":20,"Oa":4.58,"Od":1.16,"pd":15,"pm":5},"p":[[-38,{"n":5,"e":3929}],[-37,{"n":7,"e":3942}],[-36,{"n":5,"e":3949}],[-35,{"n":5.5,"e":3961}],[-34,{"n":6,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":6,"e":3992}],[-31,{"n":4.5,"e":3998,"s":1}],[-30,{"n":4.5,"e":4012,"s":1}],[-17,{"n":5,"e":4139}],[-16,{"n":3,"e":4155}],[-15,{"n":3.5,"e":4159}],[-14,{"n":4,"e":4168,"s":1}],[-11,{"n":2.5,"e":4205}],[-10,{"n":3,"e":4210}],[-9,{"n":4,"e":4223}],[-8,{"n":5,"e":4229}],[-7,{"n":5,"e":4239}],[5,{"n":5,"e":6893}],[2,{"n":3,"e":6916,"a":1,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3978,[{"t":"I"}]],[3929,[{"t":"Y"}]]]}],[846,{"n":"Gudmundsson","f":"Jóhann","fp":"MO","r":7,"c":23,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":56,"On":11,"Oa":5.09,"Od":0.54,"pm":11},"p":[[-38,{"n":4.5,"e":3929}],[-37,{"n":6,"e":3942}],[-36,{"n":5,"e":3949,"s":1}],[-35,{"n":5,"e":3961,"s":1}],[-33,{"n":4.5,"e":3978,"s":1}],[-21,{"n":5.5,"e":4100,"s":1}],[-20,{"n":5,"e":4110,"s":1}],[-19,{"n":4.5,"e":4122,"s":1}],[-8,{"n":6,"e":4229}],[5,{"n":5,"e":6893}],[4,{"n":5,"e":6900,"s":1}],[1,{"n":null,"e":6921,"d":1}]]}],[897,{"n":"Brady","f":"Robbie","fp":"MD","r":6,"c":23,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":89.5,"On":18,"Oa":4.97,"Od":0.78,"pm":18},"p":[[-38,{"n":5,"e":3929,"s":1}],[-37,{"n":6,"e":3942,"s":1}],[-36,{"n":5,"e":3949,"s":1}],[-27,{"n":5,"e":4039,"s":1}],[-21,{"n":3.5,"e":4100}],[-20,{"n":4.5,"e":4110,"s":1}],[-19,{"n":5.5,"e":4122}],[-18,{"n":5,"e":4129,"s":1}],[-16,{"n":3,"e":4155}],[-15,{"n":6,"e":4159,"g":1,"s":1}],[-14,{"n":5,"e":4168}],[-12,{"n":5,"e":4188,"s":1}],[-11,{"n":5,"e":4205,"s":1}],[-10,{"n":6,"e":4210,"s":1}],[-9,{"n":4.5,"e":4223}],[-7,{"n":5,"e":4239,"s":1}],[5,{"n":5,"e":6893,"s":1}],[2,{"n":5.5,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[6916,[{"t":"I"}]]]}],[932,{"n":"Bardsley","f":"Phil","fp":"DL","r":9,"c":23,"s":{"s":11,"n":3,"a":3.67,"d":0.76,"Os":119,"On":24,"Oa":4.96,"Od":0.92,"pd":24},"p":[[3,{"n":4.5,"e":6904}],[-38,{"n":4,"e":3929}],[-37,{"n":6,"e":3942}],[-36,{"n":5,"e":3949}],[-35,{"n":5,"e":3961}],[-34,{"n":5.5,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":5.5,"e":3992}],[-29,{"n":5,"e":4019}],[-28,{"n":5,"e":4033}],[-27,{"n":6,"e":4039}],[-26,{"n":5,"e":4056}],[-23,{"n":5,"e":4080}],[-21,{"n":4.5,"e":4100}],[-20,{"n":5,"e":4110}],[-19,{"n":4.5,"e":4122}],[-18,{"n":5,"e":4129}],[-17,{"n":5.5,"e":4139}],[-15,{"n":3.5,"e":4159}],[-14,{"n":4.5,"e":4168}],[-13,{"n":7,"e":4186}],[-12,{"n":6.5,"e":4188}],[4,{"n":3,"e":6900}],[2,{"n":3.5,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3929,[{"t":"Y"}]],[3961,[{"t":"Y"}]],[6904,[{"t":"Y"}]],[6916,[{"t":"Y"}]]]}],[951,{"n":"Tarkowski","f":"James","fp":"DC","r":17,"c":23,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":2,"Os":181,"On":34,"Oa":5.32,"Od":1.31,"pd":34},"p":[[-38,{"n":4.5,"e":3929}],[-37,{"n":6,"e":3942}],[-36,{"n":5.5,"e":3949}],[-35,{"n":7,"e":3961}],[-34,{"n":6,"e":3977}],[-33,{"n":7,"e":3978,"g":1}],[-32,{"n":6.5,"e":3992}],[-31,{"n":5.5,"e":3998}],[-30,{"n":3,"e":4012}],[-29,{"n":6,"e":4019}],[-28,{"n":6,"e":4033}],[-27,{"n":6,"e":4039}],[-26,{"n":5.5,"e":4056}],[-25,{"n":5.5,"e":4059}],[-24,{"n":7,"e":4074}],[-23,{"n":5.5,"e":4080}],[-22,{"n":4,"e":4090}],[-21,{"n":4,"e":4100}],[-20,{"n":4,"e":4110}],[-19,{"n":5.5,"e":4122}],[-18,{"n":5.5,"e":4129}],[-17,{"n":6,"e":4139}],[-16,{"n":3,"e":4155}],[-15,{"n":3.5,"e":4159}],[-14,{"n":3.5,"e":4168}],[-13,{"n":7.5,"e":4186,"g":1}],[-12,{"n":7.5,"e":4188}],[-11,{"n":3,"e":4205}],[-10,{"n":4,"e":4210}],[-9,{"n":5,"e":4223}],[-8,{"n":7,"e":4229}],[-7,{"n":5,"e":4239}],[5,{"n":6,"e":6893}],[4,{"n":4.5,"e":6900}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3977,[{"t":"Y"}]],[3992,[{"t":"Y"}]],[6900,[{"t":"Y"}]]],"a":{"m":23,"a":29,"M":42,"n":7}}],[1045,{"n":"Pope","f":"Nick","fp":"G","r":19,"c":23,"s":{"s":19,"n":4,"a":4.75,"d":2.25,"Ss":19,"Sn":4,"Sa":4.75,"Sd":2.25,"Os":196.5,"On":36,"Oa":5.46,"Od":1.46,"pg":36},"p":[[-38,{"n":4.5,"e":3929}],[-37,{"n":6,"e":3942}],[-36,{"n":5.5,"e":3949}],[-35,{"n":7,"e":3961}],[-34,{"n":8,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":7,"e":3992}],[-31,{"n":6,"e":3998}],[-30,{"n":3.5,"e":4012}],[-29,{"n":5,"e":4019}],[-28,{"n":6.5,"e":4033}],[-27,{"n":7,"e":4039}],[-26,{"n":5,"e":4056}],[-25,{"n":6,"e":4059}],[-24,{"n":8,"e":4074}],[-23,{"n":8,"e":4080}],[-22,{"n":4,"e":4090}],[-21,{"n":5.5,"e":4100}],[-20,{"n":4,"e":4110}],[-19,{"n":6,"e":4122}],[-18,{"n":6,"e":4129}],[-17,{"n":6,"e":4139}],[-16,{"n":3.5,"e":4155}],[-15,{"n":5,"e":4159}],[-14,{"n":4,"e":4168}],[-13,{"n":7,"e":4186}],[-12,{"n":6.5,"e":4188}],[-11,{"n":4,"e":4205}],[-10,{"n":4,"e":4210}],[-9,{"n":4,"e":4223}],[-8,{"n":6,"e":4229}],[-7,{"n":4,"e":4239}],[5,{"n":8,"e":6893}],[4,{"n":3,"e":6900}],[3,{"n":4.5,"e":6904}],[2,{"n":3.5,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3961,[{"t":"Y"}]]],"a":{"m":26,"a":30,"M":32,"n":5}}],[1054,{"n":"Westwood","f":"Ashley","fp":"MD","r":16,"c":23,"s":{"g":1,"s":20,"n":4,"a":5,"d":0.71,"Sg":1,"Ss":20,"Sn":4,"Sa":5,"Sd":0.71,"Og":3,"Os":177.5,"On":33,"Oa":5.38,"Od":1.04,"pm":33},"p":[[-38,{"n":5,"e":3929}],[-37,{"n":6.5,"e":3942}],[-36,{"n":6,"e":3949}],[-35,{"n":4.5,"e":3961}],[-34,{"n":5.5,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":6.5,"e":3992}],[-31,{"n":5.5,"e":3998}],[-30,{"n":3.5,"e":4012}],[-29,{"n":6,"e":4019}],[-28,{"n":4.5,"e":4033}],[-27,{"n":6.5,"e":4039}],[-26,{"n":6.5,"e":4056,"g":1}],[-25,{"n":6,"e":4059}],[-24,{"n":6.5,"e":4074}],[-23,{"n":6.5,"e":4080,"g":1}],[-22,{"n":3.5,"e":4090}],[-21,{"n":5,"e":4100}],[-20,{"n":5,"e":4110}],[-19,{"n":4.5,"e":4122}],[-18,{"n":6,"e":4129}],[-17,{"n":6.5,"e":4139}],[-13,{"n":7,"e":4186}],[-12,{"n":6,"e":4188}],[-11,{"n":4,"e":4205}],[-10,{"n":4,"e":4210}],[-9,{"n":4.5,"e":4223}],[-8,{"n":7,"e":4229}],[-7,{"n":4,"e":4239}],[5,{"n":5.5,"e":6893}],[4,{"n":5.5,"e":6900,"g":1}],[3,{"n":5,"e":6904}],[2,{"n":4,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[6893,[{"t":"Y"}]]]}],[1074,{"n":"Long","f":"Kevin","fp":"DC","r":8,"c":23,"s":{"s":17,"n":4,"a":4.25,"d":1.19,"Ss":17,"Sn":4,"Sa":4.25,"Sd":1.19,"Os":57.5,"On":12,"Oa":4.79,"Od":0.86,"pd":12},"p":[[-38,{"n":4,"e":3929}],[-37,{"n":6,"e":3942}],[-36,{"n":5,"e":3949}],[-35,{"n":5,"e":3961}],[-34,{"n":5,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":5.5,"e":3992,"s":1}],[-19,{"n":5,"e":4122,"s":1}],[5,{"n":5.5,"e":6893}],[4,{"n":3.5,"e":6900}],[3,{"n":5,"e":6904}],[2,{"n":3,"e":6916}],[1,{"n":null,"e":6921,"d":1}]]}],[1294,{"n":"Stephens","f":"Dale","fp":"MD","r":9,"c":23,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Os":150.5,"On":29,"Oa":5.19,"Od":0.71,"pm":29},"p":[[-38,{"n":6,"e":3929}],[-37,{"n":5,"e":3940}],[-36,{"n":5,"e":3956}],[-35,{"n":5.5,"e":3960,"s":1}],[-34,{"n":5.5,"e":3971}],[-33,{"n":5,"e":3984,"s":1}],[-32,{"n":4,"e":3991}],[-31,{"n":6,"e":4000}],[-30,{"n":5,"e":4010,"s":1}],[-29,{"n":5,"e":4027,"s":1}],[-25,{"n":5,"e":4067}],[-24,{"n":5,"e":4069}],[-23,{"n":5,"e":4079}],[-22,{"n":5,"e":4092}],[-20,{"n":5,"e":4109,"s":1}],[-19,{"n":5,"e":4126}],[-18,{"n":4.5,"e":4130}],[-16,{"n":7,"e":4150}],[-15,{"n":5.5,"e":4158}],[-14,{"n":5.5,"e":4171}],[-13,{"n":4,"e":4181}],[-12,{"n":4.5,"e":4197}],[-11,{"n":4.5,"e":4201}],[-10,{"n":6,"e":4209}],[-9,{"n":6,"e":4218}],[-8,{"n":6.5,"e":4228}],[-7,{"n":5,"e":4241}],[4,{"n":4,"e":6900}],[3,{"n":5.5,"e":6904}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3940,[{"t":"Y"}]],[4000,[{"t":"Y"}]]]}],[1297,{"n":"Taylor","f":"Charlie","fp":"DL","r":10,"c":23,"s":{"s":18,"n":4,"a":4.5,"d":0.58,"Ss":18,"Sn":4,"Sa":4.5,"Sd":0.58,"Os":143,"On":28,"Oa":5.11,"Od":0.89,"pd":28},"p":[[-36,{"n":5,"e":3949}],[-35,{"n":5,"e":3961}],[-34,{"n":7,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":6,"e":3992}],[-31,{"n":6,"e":3998}],[-30,{"n":3.5,"e":4012}],[-29,{"n":5,"e":4019}],[-28,{"n":5,"e":4033}],[-27,{"n":6,"e":4039}],[-26,{"n":4.5,"e":4056}],[-25,{"n":5,"e":4059}],[-24,{"n":5.5,"e":4074}],[-23,{"n":5.5,"e":4080}],[-22,{"n":4,"e":4090}],[-21,{"n":5,"e":4100}],[-20,{"n":3,"e":4110}],[-19,{"n":5,"e":4122}],[-18,{"n":6,"e":4129}],[-14,{"n":5,"e":4168}],[-13,{"n":6.5,"e":4186}],[-12,{"n":6,"e":4188}],[-11,{"n":5,"e":4205,"s":1}],[-8,{"n":5.5,"e":4229,"s":1}],[5,{"n":5,"e":6893}],[4,{"n":4,"e":6900}],[3,{"n":5,"e":6904}],[2,{"n":4,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3949,[{"t":"I"}]],[6893,[{"t":"Y"}]]]}],[1299,{"n":"Wood","f":"Chris","fp":"A","r":20,"c":23,"s":{"g":1,"s":18,"n":4,"a":4.5,"d":1,"Sg":1,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1,"Og":13,"Os":149,"On":30,"Oa":4.97,"Od":1.27,"pa":30},"p":[[-38,{"n":6,"e":3929,"g":1}],[-37,{"n":6.5,"e":3942,"g":1}],[-36,{"n":5,"e":3949,"g":1}],[-35,{"n":4,"e":3961}],[-34,{"n":5,"e":3977,"s":1}],[-33,{"n":4,"e":3978,"s":1}],[-29,{"n":6.5,"e":4019,"g":1}],[-28,{"n":4.5,"e":4033,"s":1}],[-26,{"n":4.5,"e":4056}],[-25,{"n":5,"e":4059}],[-24,{"n":7,"e":4074,"g":1}],[-23,{"n":6.5,"e":4080,"g":1}],[-22,{"n":4,"e":4090}],[-21,{"n":6,"e":4100,"g":1}],[-20,{"n":4,"e":4110}],[-19,{"n":3,"e":4122}],[-18,{"n":3.5,"e":4129}],[-17,{"n":6,"e":4139,"g":1}],[-16,{"n":2.5,"e":4155}],[-15,{"n":3.5,"e":4159}],[-14,{"n":4,"e":4168}],[-13,{"n":6.5,"e":4186,"g":1}],[-12,{"n":7,"e":4188,"g":1}],[-9,{"n":6,"e":4223,"g":1}],[-8,{"n":4.5,"e":4229}],[-7,{"n":6,"e":4239,"g":1}],[5,{"n":4,"e":6893}],[4,{"n":4,"e":6900}],[3,{"n":4,"e":6904}],[2,{"n":6,"e":6916,"g":1}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":22,"a":33,"M":60,"n":14}}],[2497,{"n":"Vydra","f":"Matej","fp":"A","r":7,"c":23,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Og":2,"Os":96.5,"On":21,"Oa":4.6,"Od":0.92,"pa":21},"p":[[-38,{"n":4.5,"e":3929,"s":1}],[-37,{"n":4.5,"e":3942,"s":1}],[-36,{"n":5,"e":3949,"s":1}],[-35,{"n":4.5,"e":3961,"s":1}],[-34,{"n":4.5,"e":3977}],[-33,{"n":4,"e":3978}],[-32,{"n":4.5,"e":3992}],[-31,{"n":5,"e":3998}],[-30,{"n":3,"e":4012}],[-29,{"n":4.5,"e":4019,"s":1}],[-28,{"n":4,"e":4033}],[-27,{"n":7,"e":4039,"g":1}],[-26,{"n":7,"e":4056,"g":1,"s":1}],[-22,{"n":4,"e":4090,"s":1}],[-16,{"n":4,"e":4155,"s":1}],[-11,{"n":4.5,"e":4205,"s":1}],[-10,{"n":4.5,"e":4210,"s":1}],[-9,{"n":4,"e":4223,"s":1}],[4,{"n":4.5,"e":6900,"s":1}],[3,{"n":4,"e":6904}],[2,{"n":5,"e":6916,"s":1}],[1,{"n":null,"e":6921,"d":1}]]}],[2571,{"n":"Norris","f":"Will","fp":"G","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[2817,{"n":"McNeil","f":"Dwight","fp":"MO","r":17,"c":23,"s":{"s":21.5,"n":4,"a":5.38,"d":1.11,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":1.11,"Og":2,"Os":207,"On":36,"Oa":5.75,"Od":1.14,"pm":35,"pa":1},"p":[[-38,{"n":6,"e":3929}],[-37,{"n":7,"e":3942}],[-36,{"n":5.5,"e":3949}],[-35,{"n":6,"e":3961}],[-34,{"n":6,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":6,"e":3992}],[-31,{"n":7,"e":3998}],[-30,{"n":3,"e":4012}],[-29,{"n":7,"e":4019}],[-28,{"n":5,"e":4033}],[-27,{"n":8,"e":4039,"g":1}],[-26,{"n":6,"e":4056}],[-25,{"n":7,"e":4059}],[-24,{"n":6,"e":4074}],[-23,{"n":5.5,"e":4080}],[-22,{"n":5.5,"e":4090}],[-21,{"n":5.5,"e":4100}],[-20,{"n":4.5,"e":4110}],[-19,{"n":5.5,"e":4122}],[-18,{"n":5,"e":4129}],[-17,{"n":7,"e":4139}],[-16,{"n":4,"e":4155}],[-15,{"n":4.5,"e":4159}],[-14,{"n":6,"e":4168}],[-13,{"n":6,"e":4186}],[-12,{"n":8,"e":4188}],[-11,{"n":3.5,"e":4205}],[-10,{"n":7,"e":4210,"g":1}],[-9,{"n":6,"e":4223}],[-8,{"n":6,"e":4229}],[-7,{"n":5.5,"e":4239}],[5,{"n":7,"e":6893}],[4,{"n":4.5,"e":6900}],[3,{"n":5,"e":6904}],[2,{"n":5,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3998,[{"t":"Y"}]],[6900,[{"t":"Y"}]]],"a":{"m":22,"a":25,"M":35,"n":10}}],[3351,{"n":"Benson","f":"Josh","fp":"MD","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[3673,{"n":"Driscoll-Glennon","f":"Anthony","fp":"DL","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[5995,{"n":"Peacock-Farrell","f":"Bailey","fp":"G","r":5,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6120,{"n":"Dunne","f":"Jimmy","fp":"DC","r":10,"c":23,"s":{"g":1,"s":10,"n":2,"a":5,"Og":1,"Os":10,"On":2,"Oa":5,"pd":2},"p":[[3,{"n":5,"e":6904}],[2,{"n":5,"e":6916,"g":1}],[1,{"n":null,"e":6921,"d":1}]]}],[6240,{"n":"Richardson","f":"Lewis","fp":"A","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6426,{"n":"Goodridge","f":"Mace","fp":"MD","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6554,{"n":"Brownhill","f":"Josh","fp":"MO","r":11,"c":23,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.25,"Os":73.5,"On":14,"Oa":5.25,"Od":0.7,"pm":14},"p":[[-38,{"n":5,"e":3929}],[-37,{"n":6,"e":3942}],[-36,{"n":5.5,"e":3949}],[-35,{"n":6,"e":3961}],[-34,{"n":6,"e":3977}],[-33,{"n":5,"e":3978}],[-32,{"n":6,"e":3992}],[-31,{"n":5.5,"e":3998}],[-30,{"n":3.5,"e":4012}],[-27,{"n":4.5,"e":4039,"s":1}],[5,{"n":5,"e":6893}],[4,{"n":5,"e":6900}],[3,{"n":5.5,"e":6904}],[2,{"n":5,"e":6916}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3929,[{"t":"Y"}]],[4012,[{"t":"Y"}]]]}],[6642,{"n":"Thompson","f":"Max","fp":"A","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6643,{"n":"Thomas","f":"Bobby","fp":"DC","r":1,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6644,{"n":"Jensen","f":"Lukas","fp":"G","r":3,"c":23,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[4,{"n":"Thiago Silva","f":"","fp":"DC","r":12,"c":25,"s":{"s":9.5,"n":2,"a":4.75,"d":2.47,"Os":97.5,"On":18,"Oa":5.42,"Od":0.9,"pd":18},"p":[[4,{"n":6.5,"e":6896}],[3,{"n":3,"e":6910}],[-28,{"n":null,"e":3657,"d":1}],[-26,{"n":5.5,"e":3674}],[-25,{"n":4,"e":3678}],[-15,{"n":6,"e":3780}],[-20,{"n":4.5,"e":3734}],[-19,{"n":5.5,"e":3744}],[-18,{"n":6,"e":3756}],[-17,{"n":6,"e":3761}],[-16,{"n":6,"e":3775}],[-13,{"n":5,"e":3798}],[-11,{"n":5,"e":3823}],[-10,{"n":5.5,"e":3834}],[-9,{"n":6,"e":3844}],[-8,{"n":6.5,"e":3849}],[-21,{"n":5,"e":3719}],[-14,{"n":5.5,"e":3795}],[-6,{"n":6,"e":3870}]],"a":{"m":13,"a":18,"M":30,"n":16}}],[419,{"n":"Jorginho","f":"","fp":"MD","r":20,"c":25,"s":{"g":3,"s":23.5,"n":4,"a":5.88,"d":2.17,"Sg":2,"Ss":13.5,"Sn":2,"Sa":6.75,"Sd":1.77,"Og":7,"Os":159.5,"On":29,"Oa":5.5,"Od":1.39,"pm":29},"p":[[5,{"n":5.5,"e":6885}],[-38,{"n":5.5,"e":3930}],[-37,{"n":3.5,"e":3941}],[-36,{"n":6,"e":3950}],[-35,{"n":3.5,"e":3964}],[-34,{"n":5,"e":3972,"s":1}],[-28,{"n":3.5,"e":4029}],[-27,{"n":6.5,"e":4040}],[-26,{"n":5,"e":4051}],[-25,{"n":5,"e":4061}],[-24,{"n":7,"e":4075,"g":1}],[-23,{"n":5,"e":4083}],[-22,{"n":6,"e":4090,"g":1}],[-21,{"n":5,"e":4099}],[-20,{"n":7,"e":4108,"g":1,"s":1}],[-19,{"n":4.5,"e":4120}],[-18,{"n":5,"e":4135,"s":1}],[-17,{"n":6,"e":4140}],[-15,{"n":5,"e":4164,"s":1}],[-14,{"n":3.5,"e":4169}],[-13,{"n":4,"e":4184}],[-11,{"n":7,"e":4206}],[-10,{"n":6,"e":4210}],[-9,{"n":6.5,"e":4220}],[-8,{"n":7,"e":4233}],[-7,{"n":8,"e":4241,"g":1}],[4,{"n":8,"e":6896,"g":2}],[2,{"n":3,"e":6914}],[1,{"n":7,"e":6928,"g":1}]],"fo":[[6928,[{"t":"I"}]]],"a":{"m":18,"a":28,"M":44,"n":14}}],[601,{"n":"Giroud","f":"Olivier","fp":"A","r":8,"c":25,"s":{"s":4.5,"n":1,"a":4.5,"Og":8,"Os":85,"On":16,"Oa":5.31,"Od":1.08,"pa":16},"p":[[-38,{"n":6.5,"e":3930,"g":1}],[-37,{"n":6,"e":3941,"g":1}],[-36,{"n":6,"e":3950,"g":1}],[-35,{"n":4.5,"e":3964,"s":1}],[-34,{"n":5.5,"e":3972,"g":1}],[-33,{"n":7,"e":3979,"g":1}],[-32,{"n":4.5,"e":3997,"s":1}],[-31,{"n":4.5,"e":3999}],[-30,{"n":6,"e":4008,"g":1}],[-29,{"n":7,"e":4020,"g":1}],[-28,{"n":5,"e":4029}],[-27,{"n":6,"e":4040,"g":1}],[-26,{"n":4.5,"e":4051,"s":1}],[-14,{"n":3.5,"e":4169}],[-10,{"n":4,"e":4210,"s":1}],[3,{"n":4.5,"e":6910,"s":1}]],"fo":[[3930,[{"t":"Y"}]]],"a":{"m":19,"a":22,"M":28,"n":5}}],[602,{"n":"Kanté","f":"N'Golo","fp":"MD","r":14,"c":25,"s":{"s":29,"n":5,"a":5.8,"d":0.91,"Ss":29,"Sn":5,"Sa":5.8,"Sd":0.91,"Og":2,"Os":131.5,"On":24,"Oa":5.48,"Od":0.94,"pm":24},"p":[[-33,{"n":6.5,"e":3979}],[-32,{"n":5.5,"e":3997}],[-31,{"n":5.5,"e":3999}],[-30,{"n":4.5,"e":4008}],[-26,{"n":5,"e":4051}],[-25,{"n":5,"e":4061}],[-24,{"n":4,"e":4075}],[-23,{"n":5.5,"e":4083}],[-21,{"n":6,"e":4099}],[-20,{"n":6,"e":4108}],[-19,{"n":3.5,"e":4120}],[-18,{"n":6,"e":4135}],[-17,{"n":4.5,"e":4140}],[-16,{"n":5,"e":4151}],[-15,{"n":6,"e":4164}],[-14,{"n":4.5,"e":4169,"s":1}],[-13,{"n":7,"e":4184,"g":1}],[-12,{"n":5.5,"e":4189}],[-8,{"n":7,"e":4233,"g":1}],[5,{"n":5,"e":6885}],[4,{"n":7,"e":6896}],[3,{"n":5,"e":6910}],[2,{"n":5.5,"e":6914}],[1,{"n":6.5,"e":6928}]],"fo":[[3979,[{"t":"I"}]],[6896,[{"t":"I"},{"t":"Y"}]],[4008,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":21,"n":16}}],[650,{"n":"Azpilicueta","f":"César","fp":"DL","r":14,"c":25,"s":{"s":18.5,"n":4,"a":4.63,"d":0.75,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.87,"Og":2,"Os":167.5,"On":34,"Oa":4.93,"Od":0.96,"pd":31,"pm":3},"p":[[-38,{"n":5.5,"e":3930}],[-37,{"n":3,"e":3941}],[-36,{"n":6,"e":3950}],[-35,{"n":3,"e":3964}],[-34,{"n":4.5,"e":3972}],[-33,{"n":6.5,"e":3979}],[-32,{"n":3.5,"e":3997}],[-31,{"n":5,"e":3999}],[-30,{"n":7,"e":4008}],[-29,{"n":6,"e":4020}],[-28,{"n":6,"e":4029}],[-27,{"n":5.5,"e":4040}],[-26,{"n":4,"e":4051}],[-25,{"n":4,"e":4061}],[-24,{"n":5,"e":4075,"g":1}],[-23,{"n":4.5,"e":4083}],[-22,{"n":6,"e":4090}],[-21,{"n":6,"e":4099,"g":1}],[-20,{"n":4.5,"e":4108}],[-19,{"n":4,"e":4120}],[-18,{"n":5,"e":4135}],[-17,{"n":6,"e":4140}],[-16,{"n":4,"e":4151}],[-15,{"n":5,"e":4164}],[-13,{"n":5,"e":4184}],[-11,{"n":5,"e":4206}],[-10,{"n":4.5,"e":4210}],[-9,{"n":4.5,"e":4220}],[-8,{"n":5,"e":4233}],[-7,{"n":5.5,"e":4241}],[5,{"n":3.5,"e":6885}],[4,{"n":5,"e":6896}],[3,{"n":5,"e":6910,"s":1}],[1,{"n":5,"e":6928,"s":1}]],"fo":[[3930,[{"t":"Y"}]],[6896,[{"t":"Y"}]]],"a":{"m":18,"a":24,"M":40,"n":8}}],[659,{"n":"Alonso","f":"Marcos","fp":"DL","r":11,"c":25,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Og":4,"Os":96,"On":18,"Oa":5.33,"Od":1.1,"pd":13,"pm":5},"p":[[-38,{"n":6,"e":3930}],[-37,{"n":3,"e":3941}],[-36,{"n":5.5,"e":3950}],[-35,{"n":5,"e":3964,"s":1}],[-32,{"n":5,"e":3997}],[-31,{"n":5,"e":3999}],[-30,{"n":5.5,"e":4008}],[-29,{"n":5,"e":4020}],[-28,{"n":7.5,"e":4029,"g":2}],[-27,{"n":6.5,"e":4040,"g":1}],[-18,{"n":7,"e":4135}],[-10,{"n":5,"e":4210}],[-9,{"n":6,"e":4220,"g":1}],[-8,{"n":6,"e":4233}],[-7,{"n":5,"e":4241}],[3,{"n":3.5,"e":6910}],[2,{"n":4.5,"e":6914}],[1,{"n":5,"e":6928}]],"fo":[[3999,[{"t":"Y"}]],[6910,[{"t":"Y"}]]],"a":{"m":15,"a":18,"M":24,"n":11}}],[816,{"n":"Drinkwater","f":"Daniel","fp":"MD","r":7,"c":25,"s":{"Os":19,"On":5,"Oa":3.8,"Od":1.1,"pm":5},"p":[[-26,{"n":4,"e":4049}],[-24,{"n":4,"e":4068}],[-23,{"n":5,"e":4079}],[-22,{"n":2,"e":4088}],[-15,{"n":4,"e":4159}]]}],[848,{"n":"Caballero","f":"Willy","fp":"G","r":7,"c":25,"s":{"s":4,"n":1,"a":4,"Os":28.5,"On":6,"Oa":4.75,"Od":0.99,"pg":6},"p":[[-38,{"n":6,"e":3930}],[-28,{"n":4.5,"e":4029}],[-27,{"n":6,"e":4040}],[-26,{"n":4,"e":4051}],[-25,{"n":4,"e":4061}],[3,{"n":4,"e":6910}]]}],[992,{"n":"Zouma","f":"Kurt","fp":"DC","r":15,"c":25,"s":{"g":2,"s":24,"n":4,"a":6,"d":1.47,"Sg":1,"Ss":12.5,"Sn":2,"Sa":6.25,"Sd":1.77,"Og":2,"Os":136.5,"On":26,"Oa":5.25,"Od":1.16,"pd":26},"p":[[-38,{"n":7,"e":3930}],[-37,{"n":3,"e":3941}],[-36,{"n":5.5,"e":3950}],[-35,{"n":3,"e":3964}],[-34,{"n":4.5,"e":3972}],[-33,{"n":6,"e":3979}],[-29,{"n":5,"e":4020}],[-26,{"n":4.5,"e":4051,"s":1}],[-21,{"n":4.5,"e":4099}],[-20,{"n":5,"e":4108}],[-19,{"n":4.5,"e":4120}],[-18,{"n":5,"e":4135}],[-17,{"n":6,"e":4140}],[-16,{"n":4,"e":4151}],[-15,{"n":5.5,"e":4164}],[-14,{"n":5.5,"e":4169}],[-13,{"n":4,"e":4184}],[-12,{"n":6,"e":4189}],[-11,{"n":7,"e":4206}],[-10,{"n":5,"e":4210}],[-9,{"n":6,"e":4220}],[-8,{"n":6,"e":4233}],[5,{"n":5,"e":6885}],[4,{"n":7.5,"e":6896,"g":1}],[2,{"n":4.5,"e":6914}],[1,{"n":7,"e":6928,"g":1}]],"fo":[[3950,[{"t":"Y"}]]],"a":{"m":10,"a":15,"M":23,"n":11}}],[1057,{"n":"Chilwell","f":"Ben","fp":"DL","r":24,"c":25,"s":{"g":1,"s":11.5,"n":2,"a":5.75,"d":2.47,"Sg":1,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":2.47,"Og":4,"Os":126,"On":25,"Oa":5.04,"Od":1.35,"pd":22,"pm":3},"p":[[-33,{"n":3.5,"e":3980}],[-32,{"n":3.5,"e":3993}],[-28,{"n":3.5,"e":4034}],[-27,{"n":4,"e":4042}],[-26,{"n":5,"e":4057}],[-24,{"n":6,"e":4071}],[-21,{"n":5.5,"e":4103}],[-18,{"n":4,"e":4132}],[-17,{"n":5,"e":4142}],[-14,{"n":5,"e":4170}],[-11,{"n":5.5,"e":4202}],[-10,{"n":8,"e":4215,"g":1}],[-7,{"n":6.5,"e":4245}],[-31,{"n":4.5,"e":4000}],[-30,{"n":6.5,"e":4016,"g":1}],[-25,{"n":5.5,"e":4061,"g":1}],[-22,{"n":3,"e":4093}],[-19,{"n":3.5,"e":4123}],[-16,{"n":5,"e":4148}],[-13,{"n":7,"e":4181}],[-12,{"n":6,"e":4196}],[-9,{"n":4.5,"e":4223}],[-8,{"n":4,"e":4230}],[5,{"n":4,"e":6885}],[4,{"n":7.5,"e":6896,"g":1}]],"fo":[[3980,[{"t":"Y"}]],[6885,[{"t":"Y"}]]],"a":{"m":25,"a":29,"M":36,"n":8}}],[1288,{"n":"Rüdiger","f":"Antonio","fp":"DC","r":7,"c":25,"s":{"Og":2,"Oao":1,"Os":95,"On":19,"Oa":5,"Od":1.13,"pd":19},"p":[[-38,{"n":5.5,"e":3930}],[-37,{"n":2.5,"e":3941}],[-36,{"n":6,"e":3950}],[-35,{"n":4.5,"e":3964,"s":1}],[-32,{"n":4,"e":3997}],[-31,{"n":5.5,"e":3999}],[-30,{"n":4.5,"e":4008}],[-29,{"n":6.5,"e":4020}],[-27,{"n":4,"e":4040,"a":1}],[-26,{"n":4.5,"e":4051}],[-25,{"n":7.5,"e":4061,"g":2}],[-24,{"n":5.5,"e":4075}],[-23,{"n":4.5,"e":4083}],[-22,{"n":6,"e":4090}],[-21,{"n":5,"e":4099}],[-20,{"n":5,"e":4108}],[-19,{"n":3.5,"e":4120}],[-18,{"n":5.5,"e":4135}],[-17,{"n":5,"e":4140}]]}],[1350,{"n":"Abraham","f":"Tammy","fp":"A","r":29,"c":25,"s":{"g":1,"s":22,"n":4,"a":5.5,"d":0.91,"Sg":1,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.91,"Og":9,"Os":162,"On":32,"Oa":5.06,"Od":1.23,"pa":32},"p":[[-38,{"n":4.5,"e":3930,"s":1}],[-37,{"n":6,"e":3941,"g":1,"s":1}],[-36,{"n":4.5,"e":3950,"s":1}],[-35,{"n":3,"e":3964}],[-34,{"n":6,"e":3972,"g":1,"s":1}],[-33,{"n":4.5,"e":3979,"s":1}],[-32,{"n":3.5,"e":3997}],[-31,{"n":5.5,"e":3999,"s":1}],[-30,{"n":4.5,"e":4008,"s":1}],[-27,{"n":4,"e":4040,"s":1}],[-25,{"n":4,"e":4061}],[-24,{"n":6,"e":4075}],[-23,{"n":3,"e":4083}],[-22,{"n":6.5,"e":4090,"g":1}],[-21,{"n":6,"e":4099}],[-20,{"n":6.5,"e":4108,"g":1}],[-19,{"n":3,"e":4120}],[-18,{"n":5,"e":4135}],[-17,{"n":4,"e":4140}],[-16,{"n":3.5,"e":4151}],[-15,{"n":7,"e":4164,"g":1}],[-13,{"n":4,"e":4184}],[-12,{"n":6,"e":4189,"g":1}],[-11,{"n":7,"e":4206,"g":1}],[-10,{"n":5,"e":4210}],[-9,{"n":5,"e":4220}],[-8,{"n":7,"e":4233,"g":1}],[-7,{"n":5.5,"e":4241}],[5,{"n":4.5,"e":6885,"s":1}],[4,{"n":6.5,"e":6896}],[3,{"n":6,"e":6910,"g":1}],[2,{"n":5,"e":6914,"s":1}]],"a":{"m":29,"a":55,"M":85,"n":12}}],[1370,{"n":"Christensen","f":"Andreas","fp":"DC","r":11,"c":25,"s":{"s":19,"n":4,"a":4.75,"d":0.87,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":98,"On":20,"Oa":4.9,"Od":0.97,"pd":20},"p":[[-35,{"n":3,"e":3964}],[-34,{"n":4.5,"e":3972}],[-33,{"n":5.5,"e":3979}],[-32,{"n":3.5,"e":3997}],[-31,{"n":7,"e":3999}],[-30,{"n":5,"e":4008}],[-28,{"n":5.5,"e":4029}],[-27,{"n":5.5,"e":4040}],[-26,{"n":5,"e":4051}],[-25,{"n":4.5,"e":4061}],[-24,{"n":4.5,"e":4075}],[-23,{"n":5,"e":4083}],[-22,{"n":6,"e":4090}],[-16,{"n":3.5,"e":4151}],[-15,{"n":5.5,"e":4164}],[-7,{"n":5.5,"e":4241}],[5,{"n":4.5,"e":6885}],[3,{"n":4,"e":6910}],[2,{"n":4.5,"e":6914}],[1,{"n":6,"e":6928}]],"fo":[[6914,[{"t":"R"}]],[6910,[{"t":"Y"}]]]}],[1386,{"n":"Tomori","f":"Fikayo","fp":"DC","r":6,"c":25,"s":{"s":5,"n":1,"a":5,"Os":65.5,"On":13,"Oa":5.04,"Od":0.75,"pd":13},"p":[[-28,{"n":4.5,"e":4029}],[-20,{"n":4,"e":4108}],[-19,{"n":4,"e":4120}],[-18,{"n":6,"e":4135}],[-14,{"n":4.5,"e":4169}],[-13,{"n":4.5,"e":4184}],[-12,{"n":6,"e":4189}],[-11,{"n":6,"e":4206}],[-10,{"n":5,"e":4210}],[-9,{"n":5,"e":4220}],[-8,{"n":5,"e":4233}],[-7,{"n":6,"e":4241}],[2,{"n":5,"e":6914,"s":1}]]}],[1652,{"n":"Arrizabalaga","f":"Kepa","fp":"G","r":10,"c":25,"s":{"s":11.5,"n":3,"a":3.83,"d":0.29,"Ss":4,"Sn":1,"Sa":4,"Os":145.5,"On":30,"Oa":4.85,"Od":0.88,"pg":30},"p":[[-37,{"n":3,"e":3941}],[-36,{"n":5,"e":3950}],[-35,{"n":4,"e":3964}],[-34,{"n":4,"e":3972}],[-33,{"n":6,"e":3979}],[-32,{"n":3.5,"e":3997}],[-31,{"n":5,"e":3999}],[-30,{"n":5.5,"e":4008}],[-29,{"n":6,"e":4020}],[-24,{"n":4,"e":4075}],[-23,{"n":4.5,"e":4083}],[-22,{"n":5.5,"e":4090}],[-21,{"n":6,"e":4099}],[-20,{"n":4.5,"e":4108}],[-19,{"n":4,"e":4120}],[-18,{"n":6,"e":4135}],[-17,{"n":5,"e":4140}],[-16,{"n":4.5,"e":4151}],[-15,{"n":5.5,"e":4164}],[-14,{"n":5.5,"e":4169}],[-13,{"n":4.5,"e":4184}],[-12,{"n":6,"e":4189}],[-11,{"n":6,"e":4206}],[-10,{"n":5,"e":4210}],[-9,{"n":5.5,"e":4220}],[-8,{"n":4.5,"e":4233}],[-7,{"n":5.5,"e":4241}],[5,{"n":4,"e":6885}],[2,{"n":3.5,"e":6914}],[1,{"n":4,"e":6928}]]}],[1657,{"n":"Kovacic","f":"Mateo","fp":"MO","r":11,"c":25,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Og":1,"Os":151.5,"On":28,"Oa":5.41,"Od":0.96,"pm":28},"p":[[-38,{"n":7,"e":3930}],[-37,{"n":3.5,"e":3941}],[-36,{"n":5.5,"e":3950}],[-32,{"n":4.5,"e":3997}],[-31,{"n":4.5,"e":3999,"s":1}],[-30,{"n":5,"e":4008}],[-28,{"n":5,"e":4029}],[-27,{"n":6.5,"e":4040}],[-26,{"n":6,"e":4051}],[-25,{"n":5.5,"e":4061,"s":1}],[-24,{"n":5,"e":4075}],[-21,{"n":5,"e":4099,"s":1}],[-20,{"n":4.5,"e":4108}],[-18,{"n":6,"e":4135}],[-17,{"n":4.5,"e":4140,"s":1}],[-16,{"n":6,"e":4151,"g":1}],[-15,{"n":4.5,"e":4164}],[-14,{"n":5,"e":4169}],[-13,{"n":7,"e":4184}],[-12,{"n":7,"e":4189}],[-11,{"n":7.5,"e":4206}],[-10,{"n":5.5,"e":4210}],[-9,{"n":6,"e":4220,"s":1}],[-8,{"n":5.5,"e":4233,"s":1}],[-7,{"n":5.5,"e":4241,"s":1}],[4,{"n":4.5,"e":6896,"s":1}],[3,{"n":4.5,"e":6910}],[2,{"n":5,"e":6914}]],"fo":[[3950,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":19,"n":9}}],[2220,{"n":"Hudson-Odoi","f":"Callum","fp":"A","r":9,"c":25,"s":{"g":1,"s":16.5,"n":3,"a":5.5,"d":0.87,"Og":2,"Os":126.5,"On":25,"Oa":5.06,"Od":0.77,"pm":3,"pa":22},"p":[[-38,{"n":4,"e":3930,"s":1}],[-37,{"n":5.5,"e":3941,"s":1}],[-36,{"n":5,"e":3950,"s":1}],[-35,{"n":5,"e":3964,"s":1}],[-33,{"n":4.5,"e":3979,"s":1}],[-25,{"n":5.5,"e":4061}],[-24,{"n":6,"e":4075}],[-23,{"n":4,"e":4083}],[-22,{"n":6.5,"e":4090,"g":1}],[-21,{"n":5,"e":4099,"s":1}],[-20,{"n":5,"e":4108,"s":1}],[-19,{"n":4,"e":4120}],[-17,{"n":4.5,"e":4140,"s":1}],[-16,{"n":4.5,"e":4151,"s":1}],[-15,{"n":5,"e":4164,"s":1}],[-14,{"n":5,"e":4169,"s":1}],[-12,{"n":4.5,"e":4189,"s":1}],[-11,{"n":4,"e":4206,"s":1}],[-10,{"n":5,"e":4210,"s":1}],[-9,{"n":6.5,"e":4220}],[-8,{"n":6,"e":4233}],[-7,{"n":5,"e":4241,"s":1}],[4,{"n":6,"e":6896}],[3,{"n":6,"e":6910,"g":1,"s":1}],[1,{"n":4.5,"e":6928,"s":1}]]}],[2303,{"n":"Emerson","f":"","fp":"DL","r":6,"c":25,"s":{"Os":46,"On":10,"Oa":4.6,"Od":0.74,"pd":8,"pm":2},"p":[[-37,{"n":5,"e":3941,"s":1}],[-24,{"n":4.5,"e":4075}],[-23,{"n":5,"e":4083,"s":1}],[-20,{"n":4,"e":4108}],[-19,{"n":3,"e":4120}],[-17,{"n":5,"e":4140}],[-14,{"n":5,"e":4169}],[-13,{"n":4,"e":4184}],[-12,{"n":5,"e":4189}],[-11,{"n":5.5,"e":4206}]]}],[2676,{"n":"Mendy","f":"Edouard","fp":"G","r":16,"c":25,"s":{"s":5,"n":1,"a":5,"Os":118,"On":21,"Oa":5.62,"Od":0.8,"pg":21},"p":[[1,{"n":4.5,"e":6201}],[-28,{"n":6,"e":3655}],[-27,{"n":6.5,"e":3667}],[-26,{"n":4.5,"e":3675}],[-25,{"n":5.5,"e":3686}],[-24,{"n":6,"e":3696}],[-22,{"n":5.5,"e":3716}],[-21,{"n":6,"e":3725}],[-20,{"n":5,"e":3735}],[-19,{"n":6.5,"e":3746}],[-17,{"n":5,"e":3766}],[-16,{"n":7.5,"e":3774}],[-15,{"n":4.5,"e":3786}],[-14,{"n":5,"e":3792}],[-13,{"n":6,"e":3806}],[-11,{"n":5.5,"e":3825}],[-8,{"n":5.5,"e":3851}],[-7,{"n":5.5,"e":3864}],[-23,{"n":5.5,"e":3699}],[-18,{"n":7,"e":3753}],[4,{"n":5,"e":6896}]],"a":{"m":17,"a":28,"M":45,"n":25}}],[3644,{"n":"Gilmour","f":"Billy","fp":"MD","r":4,"c":25,"s":{"Os":27,"On":5,"Oa":5.4,"Od":1.14,"pm":5},"p":[[-34,{"n":6,"e":3972}],[-33,{"n":4,"e":3979,"s":1}],[-31,{"n":5,"e":3999,"s":1}],[-29,{"n":7,"e":4020}],[-12,{"n":5,"e":4189,"s":1}]]}],[3655,{"n":"James","f":"Reece","fp":"DL","r":11,"c":25,"s":{"g":1,"s":21,"n":4,"a":5.25,"d":1.85,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":139.5,"On":28,"Oa":4.98,"Od":1.01,"pd":24,"pm":4},"p":[[-38,{"n":5.5,"e":3930}],[-37,{"n":2.5,"e":3941}],[-36,{"n":5,"e":3950,"s":1}],[-35,{"n":4.5,"e":3964}],[-34,{"n":4.5,"e":3972}],[-33,{"n":5.5,"e":3979}],[-30,{"n":4,"e":4008,"s":1}],[-29,{"n":5,"e":4020,"s":1}],[-28,{"n":5,"e":4029}],[-27,{"n":4.5,"e":4040}],[-26,{"n":3.5,"e":4051}],[-25,{"n":5,"e":4061}],[-23,{"n":5,"e":4083}],[-22,{"n":7,"e":4090}],[-21,{"n":6,"e":4099}],[-18,{"n":5,"e":4135,"s":1}],[-16,{"n":4.5,"e":4151}],[-15,{"n":6,"e":4164}],[-14,{"n":5.5,"e":4169}],[-13,{"n":5,"e":4184,"s":1}],[-12,{"n":5,"e":4189}],[-11,{"n":5,"e":4206,"s":1}],[-10,{"n":5,"e":4210,"s":1}],[-9,{"n":5,"e":4220,"s":1}],[5,{"n":4.5,"e":6885,"s":1}],[3,{"n":4.5,"e":6910}],[2,{"n":4,"e":6914}],[1,{"n":8,"e":6928,"g":1}]],"fo":[[6910,[{"t":"Y"}]]],"a":{"m":11,"a":12,"M":14,"n":12}}],[3679,{"n":"Mount","f":"Mason","fp":"MO","r":25,"c":25,"s":{"g":1,"s":23,"n":4,"a":5.75,"d":1.55,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":5,"Os":190.5,"On":35,"Oa":5.44,"Od":1.13,"pm":28,"pa":7},"p":[[-38,{"n":8,"e":3930,"g":1}],[-37,{"n":3.5,"e":3941}],[-35,{"n":3,"e":3964}],[-34,{"n":5.5,"e":3972}],[-33,{"n":5.5,"e":3979}],[-32,{"n":5,"e":3997,"s":1}],[-31,{"n":5,"e":3999}],[-30,{"n":5.5,"e":4008}],[-29,{"n":7.5,"e":4020,"g":1}],[-28,{"n":5.5,"e":4029}],[-27,{"n":4.5,"e":4040}],[-26,{"n":5,"e":4051,"s":1}],[-25,{"n":7,"e":4061}],[-24,{"n":5,"e":4075,"s":1}],[-23,{"n":4.5,"e":4083}],[-22,{"n":6.5,"e":4090}],[-21,{"n":5,"e":4099}],[-20,{"n":6.5,"e":4108}],[-19,{"n":4.5,"e":4120,"s":1}],[-18,{"n":6,"e":4135}],[-17,{"n":4.5,"e":4140}],[-16,{"n":4.5,"e":4151}],[-15,{"n":6,"e":4164,"g":1}],[-14,{"n":5,"e":4169}],[-13,{"n":5,"e":4184,"s":1}],[-12,{"n":6,"e":4189}],[-11,{"n":5.5,"e":4206}],[-10,{"n":5,"e":4210}],[-9,{"n":4.5,"e":4220}],[-8,{"n":7,"e":4233,"g":1}],[-7,{"n":6,"e":4241}],[5,{"n":4.5,"e":6885}],[3,{"n":8,"e":6910,"g":1}],[2,{"n":5,"e":6914}],[1,{"n":5.5,"e":6928}]],"a":{"m":26,"a":34,"M":51,"n":10}}],[3687,{"n":"Pulisic","f":"Christian","fp":"MO","r":23,"c":25,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":9,"Os":128.5,"On":23,"Oa":5.59,"Od":1.29,"pm":15,"pa":8},"p":[[-38,{"n":5,"e":3930}],[-37,{"n":7,"e":3941,"g":1,"s":1}],[-36,{"n":6,"e":3950}],[-35,{"n":3,"e":3964}],[-34,{"n":6.5,"e":3972,"g":1}],[-33,{"n":6.5,"e":3979}],[-32,{"n":5,"e":3997}],[-31,{"n":7,"e":3999,"g":1}],[-30,{"n":6.5,"e":4008,"g":1,"s":1}],[-21,{"n":5,"e":4099}],[-19,{"n":5,"e":4120,"s":1}],[-17,{"n":4.5,"e":4140}],[-16,{"n":4,"e":4151}],[-15,{"n":5.5,"e":4164}],[-14,{"n":4,"e":4169}],[-13,{"n":4,"e":4184}],[-12,{"n":7,"e":4189,"g":1}],[-11,{"n":7,"e":4206,"g":1}],[-10,{"n":8.5,"e":4210,"g":3}],[-9,{"n":5,"e":4220,"s":1}],[-8,{"n":6,"e":4233,"s":1}],[5,{"n":5,"e":6885}],[4,{"n":5.5,"e":6896,"s":1}]],"a":{"m":28,"a":37,"M":51,"n":16}}],[6495,{"n":"Anjorin","f":"Faustino","fp":"MO","r":1,"c":25,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-29,{"n":5,"e":4020,"s":1}]]}],[6697,{"n":"Werner","f":"Timo","fp":"A","r":15,"c":25,"s":{"g":2,"s":30,"n":5,"a":6,"d":1.32,"Sg":2,"Ss":30,"Sn":5,"Sa":6,"Sd":1.32,"Og":2,"Os":30,"On":5,"Oa":6,"Od":1.32,"pm":2,"pa":3},"p":[[5,{"n":8,"e":6885,"g":2}],[4,{"n":5.5,"e":6896}],[3,{"n":4.5,"e":6910}],[2,{"n":5.5,"e":6914}],[1,{"n":6.5,"e":6928}]],"a":{"m":17,"a":36,"M":67,"n":16}}],[6698,{"n":"Ziyech","f":"Hakim","fp":"MO","r":13,"c":25,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[5,{"n":4.5,"e":6885,"s":1}]],"a":{"m":15,"a":30,"M":63,"n":9}}],[7123,{"n":"Vale","f":"Harvey","fp":"MD","r":1,"c":25}],[7124,{"n":"Peart-Harris","f":"Myles","fp":"MO","r":1,"c":25}],[7125,{"n":"Lawrence","f":"Henry","fp":"DL","r":2,"c":25}],[7217,{"n":"Havertz","f":"Kai","fp":"MO","r":23,"c":25,"s":{"g":1,"s":28,"n":5,"a":5.6,"d":0.96,"Sg":1,"Ss":28,"Sn":5,"Sa":5.6,"Sd":0.96,"Og":1,"Os":28,"On":5,"Oa":5.6,"Od":0.96,"pm":4,"pa":1},"p":[[5,{"n":5,"e":6885,"g":1}],[4,{"n":7,"e":6896}],[3,{"n":6,"e":6910}],[2,{"n":4.5,"e":6914}],[1,{"n":5.5,"e":6928}]],"a":{"m":24,"a":35,"M":60,"n":11}}],[615,{"n":"Benteke","f":"Christian","fp":"A","r":6,"c":26,"s":{"s":9,"n":2,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":97.5,"On":20,"Oa":4.88,"Od":0.74,"pa":20},"p":[[3,{"n":4.5,"e":6905,"s":1}],[-30,{"n":4.5,"e":4009}],[-27,{"n":5,"e":4041}],[-26,{"n":5.5,"e":4052,"g":1}],[-25,{"n":4.5,"e":4060}],[-18,{"n":5,"e":4133}],[-16,{"n":4.5,"e":4156,"s":1}],[-13,{"n":4.5,"e":4182,"s":1}],[-9,{"n":5,"e":4221,"s":1}],[-8,{"n":4,"e":4235,"s":1}],[-35,{"n":5.5,"e":3958}],[-34,{"n":6.5,"e":3972,"g":1}],[-33,{"n":3,"e":3980}],[-29,{"n":6,"e":4021}],[-28,{"n":5.5,"e":4030}],[-17,{"n":5,"e":4141}],[-14,{"n":4.5,"e":4168,"s":1}],[-11,{"n":5,"e":4202,"s":1}],[-10,{"n":5,"e":4208,"s":1}],[5,{"n":4.5,"e":6886,"s":1}]],"fo":[[3958,[{"t":"R"}]]]}],[633,{"n":"Cahill","f":"Gary","fp":"DC","r":8,"c":26,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":109,"On":22,"Oa":4.95,"Od":1,"pd":22},"p":[[-31,{"n":3,"e":4001}],[-23,{"n":6.5,"e":4082}],[-7,{"n":6,"e":4242}],[-34,{"n":5,"e":3972}],[-33,{"n":4,"e":3980}],[-32,{"n":5,"e":3992}],[-30,{"n":5.5,"e":4009}],[-29,{"n":5.5,"e":4021}],[-28,{"n":6,"e":4030}],[-27,{"n":6,"e":4041}],[-26,{"n":3,"e":4052}],[-25,{"n":5.5,"e":4060}],[-24,{"n":4,"e":4077}],[-22,{"n":5,"e":4091}],[-16,{"n":6,"e":4156}],[-13,{"n":4.5,"e":4182}],[-12,{"n":4.5,"e":4189}],[-11,{"n":3.5,"e":4202}],[-10,{"n":5,"e":4208}],[-9,{"n":4.5,"e":4221}],[-8,{"n":6,"e":4235}],[5,{"n":5,"e":6886}]],"fo":[[3972,[{"t":"I"}]]]}],[663,{"n":"van Aanholt","f":"Patrick","fp":"DL","r":13,"c":26,"s":{"Og":2,"Os":116.5,"On":23,"Oa":5.07,"Od":1.2,"pd":23},"p":[[-36,{"n":4,"e":3951}],[-19,{"n":6,"e":4121}],[-15,{"n":5,"e":4166}],[-35,{"n":4,"e":3958}],[-34,{"n":5.5,"e":3972}],[-33,{"n":3,"e":3980}],[-32,{"n":4.5,"e":3992}],[-31,{"n":4,"e":4001}],[-30,{"n":6.5,"e":4009}],[-29,{"n":5.5,"e":4021}],[-28,{"n":6.5,"e":4030}],[-27,{"n":8,"e":4041,"g":1}],[-26,{"n":3.5,"e":4052}],[-25,{"n":4.5,"e":4060}],[-18,{"n":5,"e":4133}],[-14,{"n":6,"e":4168}],[-13,{"n":4.5,"e":4182}],[-12,{"n":4,"e":4189}],[-11,{"n":4.5,"e":4202}],[-10,{"n":4.5,"e":4208}],[-9,{"n":5,"e":4221}],[-8,{"n":7,"e":4235,"g":1}],[-7,{"n":5.5,"e":4242}]],"fo":[[3951,[{"t":"I"}]]]}],[683,{"n":"Hennessey","f":"Wayne","fp":"G","r":3,"c":26,"s":{"Os":15.5,"On":3,"Oa":5.17,"Od":1.53,"pg":3},"p":[[-31,{"n":3.5,"e":4001}],[-10,{"n":5.5,"e":4208}],[-9,{"n":6.5,"e":4221}]]}],[695,{"n":"Zaha","f":"Wilfried","fp":"A","r":17,"c":26,"s":{"g":4,"s":27.5,"n":5,"a":5.5,"d":1.66,"Sg":1,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.87,"Og":8,"Os":200,"On":37,"Oa":5.41,"Od":0.96,"pm":23,"pa":14},"p":[[2,{"n":8,"e":6917,"g":2}],[1,{"n":6,"e":6922,"g":1}],[-38,{"n":4,"e":3931}],[-37,{"n":5,"e":3947}],[-21,{"n":5.5,"e":4104}],[-36,{"n":5,"e":3951}],[-35,{"n":5.5,"e":3958}],[-34,{"n":6.5,"e":3972,"g":1}],[-33,{"n":3.5,"e":3980}],[-32,{"n":5.5,"e":3992}],[-31,{"n":5,"e":4001}],[-30,{"n":6,"e":4009}],[-29,{"n":5.5,"e":4021}],[-28,{"n":4.5,"e":4030}],[-27,{"n":5,"e":4041}],[-26,{"n":5,"e":4052}],[-25,{"n":6,"e":4060}],[-24,{"n":5,"e":4077}],[-23,{"n":6,"e":4082}],[-22,{"n":5,"e":4091}],[-20,{"n":5,"e":4115}],[-19,{"n":5.5,"e":4121}],[-18,{"n":4,"e":4133}],[-17,{"n":7,"e":4141,"g":1}],[-16,{"n":5,"e":4156}],[-15,{"n":6,"e":4166}],[-14,{"n":7.5,"e":4168,"g":1}],[-13,{"n":6.5,"e":4182,"g":1}],[-12,{"n":5,"e":4189}],[-11,{"n":5.5,"e":4202}],[-10,{"n":5,"e":4208}],[-9,{"n":5,"e":4221}],[-8,{"n":5.5,"e":4235}],[-7,{"n":6.5,"e":4242}],[5,{"n":5,"e":6886,"g":1}],[4,{"n":3.5,"e":6896}],[3,{"n":5,"e":6905}]],"fo":[[4001,[{"t":"I"}]],[3958,[{"t":"Y"}]],[6905,[{"t":"Y"}]]],"a":{"m":15,"a":21,"M":34,"n":10}}],[704,{"n":"Jordan Ayew","f":"","fp":"A","r":13,"c":26,"s":{"s":16.5,"n":4,"a":4.13,"d":1.31,"Og":7,"Os":183,"On":36,"Oa":5.08,"Od":1.23,"pm":8,"pa":28},"p":[[-38,{"n":6,"e":3931}],[-37,{"n":5,"e":3947}],[-36,{"n":4.5,"e":3951}],[-35,{"n":5,"e":3958}],[-34,{"n":4.5,"e":3972}],[-33,{"n":4.5,"e":3980}],[-32,{"n":5,"e":3992}],[-31,{"n":3,"e":4001}],[-30,{"n":7,"e":4009,"g":1}],[-29,{"n":7,"e":4021,"g":1}],[-28,{"n":6,"e":4030,"g":1}],[-27,{"n":7,"e":4041}],[-26,{"n":5,"e":4052}],[-25,{"n":5,"e":4060}],[-24,{"n":5,"e":4077}],[-23,{"n":5.5,"e":4082}],[-22,{"n":6.5,"e":4091,"g":1}],[-21,{"n":5,"e":4104}],[-20,{"n":4.5,"e":4115}],[-19,{"n":8,"e":4121,"g":1}],[-18,{"n":5,"e":4133}],[-17,{"n":5,"e":4141}],[-16,{"n":5,"e":4156}],[-15,{"n":5,"e":4166}],[-14,{"n":5.5,"e":4168}],[-13,{"n":3,"e":4182}],[-12,{"n":4,"e":4189}],[-11,{"n":3.5,"e":4202}],[-10,{"n":7,"e":4208,"g":1}],[-9,{"n":3.5,"e":4221}],[-8,{"n":6,"e":4235,"g":1}],[-7,{"n":5,"e":4242}],[4,{"n":3,"e":6896}],[3,{"n":4,"e":6905}],[2,{"n":6,"e":6917}],[1,{"n":3.5,"e":6922}]],"fo":[[4009,[{"t":"Y"}]]],"a":{"m":19,"a":23,"M":28,"n":7}}],[711,{"n":"Clyne","f":"Nathaniel","fp":"DL","r":7,"c":26}],[740,{"n":"Dann","f":"Scott","fp":"DC","r":9,"c":26,"s":{"s":6,"n":1,"a":6,"Os":78,"On":15,"Oa":5.2,"Od":0.98,"pd":15},"p":[[-38,{"n":5.5,"e":3931}],[-37,{"n":4.5,"e":3947}],[-36,{"n":4.5,"e":3951}],[-35,{"n":3.5,"e":3958}],[-34,{"n":4,"e":3972}],[-32,{"n":4,"e":3992}],[-30,{"n":6,"e":4009}],[-29,{"n":6,"e":4021}],[-28,{"n":6,"e":4030}],[-27,{"n":7,"e":4041}],[-26,{"n":5,"e":4052,"s":1}],[-17,{"n":5,"e":4141}],[-14,{"n":6,"e":4168}],[-9,{"n":5,"e":4221,"s":1}],[1,{"n":6,"e":6922}]]}],[761,{"n":"McCarthy","f":"James","fp":"MD","r":10,"c":26,"s":{"s":19.5,"n":4,"a":4.88,"d":1.03,"Os":163,"On":33,"Oa":4.94,"Od":0.76,"pm":33},"p":[[-38,{"n":5.5,"e":3931}],[-37,{"n":3.5,"e":3947}],[-36,{"n":5,"e":3951}],[-35,{"n":4.5,"e":3958,"s":1}],[-34,{"n":5,"e":3972,"s":1}],[-33,{"n":4.5,"e":3980,"s":1}],[-32,{"n":5,"e":3992,"s":1}],[-31,{"n":3.5,"e":4001}],[-30,{"n":5,"e":4009,"s":1}],[-29,{"n":6.5,"e":4021}],[-28,{"n":5.5,"e":4030}],[-27,{"n":6.5,"e":4041}],[-26,{"n":4.5,"e":4052}],[-25,{"n":5.5,"e":4060}],[-24,{"n":3.5,"e":4077}],[-23,{"n":5.5,"e":4082}],[-22,{"n":4.5,"e":4091}],[-21,{"n":5.5,"e":4104}],[-20,{"n":4.5,"e":4115}],[-19,{"n":5,"e":4121,"s":1}],[-18,{"n":5,"e":4133}],[-17,{"n":5.5,"e":4141,"s":1}],[-16,{"n":4.5,"e":4156,"s":1}],[-15,{"n":5.5,"e":4166,"s":1}],[-12,{"n":4.5,"e":4189,"s":1}],[-11,{"n":5,"e":4202,"s":1}],[-10,{"n":5,"e":4208,"s":1}],[-8,{"n":5.5,"e":4235}],[-7,{"n":4.5,"e":4242,"s":1}],[4,{"n":3.5,"e":6896}],[3,{"n":5,"e":6905}],[2,{"n":6,"e":6917}],[1,{"n":5,"e":6922}]],"fo":[[3931,[{"t":"Y"}]],[3947,[{"t":"Y"}]],[3992,[{"t":"Y"}]],[6922,[{"t":"Y"}]]],"a":{"m":9,"a":9,"M":10,"n":5}}],[777,{"n":"Townsend","f":"Andros","fp":"MO","r":13,"c":26,"s":{"g":1,"s":31,"n":5,"a":6.2,"d":1.35,"Sg":1,"Ss":31,"Sn":5,"Sa":6.2,"Sd":1.35,"Og":2,"Os":132.5,"On":24,"Oa":5.52,"Od":1.03,"pm":24},"p":[[-38,{"n":7,"e":3931}],[-37,{"n":3.5,"e":3947}],[-36,{"n":6,"e":3951}],[-35,{"n":5.5,"e":3958,"s":1}],[-34,{"n":5,"e":3972,"s":1}],[-33,{"n":6,"e":3980,"s":1}],[-32,{"n":5,"e":3992}],[-31,{"n":4,"e":4001}],[-30,{"n":5,"e":4009,"s":1}],[-25,{"n":5,"e":4060,"s":1}],[-16,{"n":5,"e":4156}],[-15,{"n":5.5,"e":4166}],[-14,{"n":6,"e":4168}],[-13,{"n":6.5,"e":4182}],[-12,{"n":4.5,"e":4189}],[-10,{"n":5.5,"e":4208}],[-9,{"n":5.5,"e":4221,"s":1}],[-8,{"n":4.5,"e":4235,"s":1}],[-7,{"n":6.5,"e":4242,"g":1,"s":1}],[5,{"n":6,"e":6886}],[4,{"n":4,"e":6896}],[3,{"n":6.5,"e":6905}],[2,{"n":7.5,"e":6917,"g":1}],[1,{"n":7,"e":6922}]],"a":{"m":11,"a":14,"M":21,"n":8}}],[808,{"n":"Wickham","f":"Connor","fp":"A","r":4,"c":26,"s":{"Og":1,"Os":20.5,"On":4,"Oa":5.13,"Od":0.95,"pa":4},"p":[[-24,{"n":4.5,"e":4077,"s":1}],[-23,{"n":4.5,"e":4082,"s":1}],[-21,{"n":6.5,"e":4104,"g":1,"s":1}],[-19,{"n":5,"e":4121,"s":1}]]}],[828,{"n":"McArthur","f":"James","fp":"MD","r":14,"c":26,"s":{"s":26,"n":5,"a":5.2,"d":1.35,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.35,"Os":188,"On":37,"Oa":5.08,"Od":1,"pm":37},"p":[[-38,{"n":4.5,"e":3931}],[-37,{"n":4.5,"e":3947}],[-36,{"n":5,"e":3951}],[-35,{"n":3.5,"e":3958}],[-34,{"n":5,"e":3972}],[-33,{"n":3.5,"e":3980}],[-32,{"n":4,"e":3992}],[-31,{"n":3,"e":4001}],[-30,{"n":6,"e":4009}],[-29,{"n":6.5,"e":4021}],[-28,{"n":5.5,"e":4030}],[-27,{"n":5.5,"e":4041}],[-26,{"n":4.5,"e":4052}],[-25,{"n":4.5,"e":4060}],[-24,{"n":4,"e":4077}],[-23,{"n":6,"e":4082}],[-22,{"n":6,"e":4091}],[-21,{"n":4,"e":4104}],[-20,{"n":5,"e":4115}],[-19,{"n":5,"e":4121}],[-18,{"n":5.5,"e":4133}],[-17,{"n":5,"e":4141}],[-16,{"n":5,"e":4156}],[-15,{"n":6,"e":4166}],[-14,{"n":6,"e":4168}],[-13,{"n":5,"e":4182}],[-12,{"n":4.5,"e":4189}],[-11,{"n":4.5,"e":4202}],[-10,{"n":6.5,"e":4208}],[-9,{"n":5.5,"e":4221}],[-8,{"n":6,"e":4235}],[-7,{"n":7,"e":4242}],[5,{"n":4.5,"e":6886}],[4,{"n":3.5,"e":6896}],[3,{"n":5,"e":6905}],[2,{"n":7,"e":6917}],[1,{"n":6,"e":6922}]],"fo":[[3980,[{"t":"Y"}]],[6886,[{"t":"Y"}]],[6905,[{"t":"Y"}]]]}],[843,{"n":"Kelly","f":"Martin","fp":"DL","r":7,"c":26,"s":{"Os":74,"On":15,"Oa":4.93,"Od":0.9,"pd":15},"p":[[-24,{"n":3.5,"e":4077}],[-23,{"n":4.5,"e":4082}],[-22,{"n":4.5,"e":4091}],[-21,{"n":4.5,"e":4104}],[-20,{"n":4,"e":4115}],[-19,{"n":5,"e":4121}],[-18,{"n":4.5,"e":4133}],[-17,{"n":5,"e":4141}],[-16,{"n":5,"e":4156}],[-15,{"n":7,"e":4166}],[-14,{"n":5.5,"e":4168}],[-13,{"n":5,"e":4182,"s":1}],[-12,{"n":4,"e":4189,"s":1}],[-8,{"n":6,"e":4235}],[-7,{"n":6,"e":4242}]]}],[850,{"n":"Batshuayi","f":"Michy","fp":"A","r":6,"c":26,"s":{"s":14,"n":3,"a":4.67,"d":0.76,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":72.5,"On":16,"Oa":4.53,"Od":0.69,"pa":16},"p":[[-28,{"n":4.5,"e":4029,"s":1}],[-26,{"n":3,"e":4051}],[-24,{"n":4.5,"e":4075,"s":1}],[-23,{"n":4,"e":4083,"s":1}],[-18,{"n":4.5,"e":4135,"s":1}],[-17,{"n":4.5,"e":4140,"s":1}],[-16,{"n":4.5,"e":4151,"s":1}],[-15,{"n":4.5,"e":4164,"s":1}],[-13,{"n":4,"e":4184,"s":1}],[-12,{"n":5.5,"e":4189,"s":1}],[-11,{"n":4.5,"e":4206,"s":1}],[-8,{"n":6,"e":4233,"g":1,"s":1}],[-7,{"n":4.5,"e":4241,"s":1}],[5,{"n":5.5,"e":6886}],[3,{"n":4,"e":6905,"s":1}],[2,{"n":4.5,"e":6917,"s":1}]],"a":{"m":5,"a":9,"M":18,"n":5}}],[855,{"n":"Kouyaté","f":"Cheikhou","fp":"MD","r":13,"c":26,"s":{"g":1,"s":26.5,"n":5,"a":5.3,"d":1.04,"Sg":1,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.04,"Og":2,"Os":182,"On":36,"Oa":5.06,"Od":0.88,"pd":7,"pm":29},"p":[[-38,{"n":5,"e":3931}],[-37,{"n":4.5,"e":3947,"s":1}],[-35,{"n":4,"e":3958}],[-34,{"n":5,"e":3972}],[-33,{"n":4.5,"e":3980,"s":1}],[-32,{"n":3.5,"e":3992}],[-31,{"n":4,"e":4001}],[-30,{"n":5.5,"e":4009}],[-29,{"n":6,"e":4021}],[-28,{"n":5.5,"e":4030}],[-27,{"n":5.5,"e":4041}],[-26,{"n":5,"e":4052,"s":1}],[-25,{"n":4.5,"e":4060,"s":1}],[-24,{"n":4,"e":4077}],[-23,{"n":4,"e":4082}],[-22,{"n":6.5,"e":4091}],[-21,{"n":5,"e":4104,"s":1}],[-20,{"n":5,"e":4115,"s":1}],[-19,{"n":7,"e":4121,"g":1}],[-18,{"n":5,"e":4133}],[-17,{"n":5,"e":4141}],[-16,{"n":5,"e":4156}],[-15,{"n":7,"e":4166}],[-14,{"n":4.5,"e":4168}],[-13,{"n":6,"e":4182}],[-12,{"n":5.5,"e":4189}],[-11,{"n":4,"e":4202}],[-10,{"n":4.5,"e":4208}],[-9,{"n":4.5,"e":4221}],[-8,{"n":5,"e":4235}],[-7,{"n":5.5,"e":4242}],[5,{"n":5.5,"e":6886}],[4,{"n":3.5,"e":6896}],[3,{"n":6,"e":6905,"g":1}],[2,{"n":6,"e":6917}],[1,{"n":5.5,"e":6922}]],"fo":[[3931,[{"t":"Y"}]],[3958,[{"t":"Y"}]]]}],[888,{"n":"Ward","f":"Joel","fp":"DL","r":10,"c":26,"s":{"s":23,"n":5,"a":4.6,"d":1.19,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.19,"Os":131,"On":28,"Oa":4.68,"Od":0.84,"pd":28},"p":[[-38,{"n":5,"e":3931}],[-37,{"n":4,"e":3947}],[-36,{"n":4,"e":3951}],[-35,{"n":4,"e":3958}],[-34,{"n":4,"e":3972}],[-33,{"n":3,"e":3980}],[-32,{"n":5,"e":3992}],[-31,{"n":4.5,"e":4001}],[-30,{"n":6,"e":4009}],[-29,{"n":5,"e":4021}],[-28,{"n":5.5,"e":4030}],[-27,{"n":6,"e":4041}],[-26,{"n":3.5,"e":4052}],[-25,{"n":4.5,"e":4060}],[-24,{"n":5,"e":4077,"s":1}],[-23,{"n":5,"e":4082,"s":1}],[-13,{"n":5,"e":4182}],[-12,{"n":4.5,"e":4189}],[-11,{"n":4.5,"e":4202}],[-10,{"n":5,"e":4208}],[-9,{"n":4,"e":4221}],[-8,{"n":5,"e":4235}],[-7,{"n":6,"e":4242}],[5,{"n":4.5,"e":6886}],[4,{"n":4,"e":6896}],[3,{"n":3,"e":6905}],[2,{"n":6,"e":6917}],[1,{"n":5.5,"e":6922}]],"fo":[[4009,[{"t":"Y"}]],[6905,[{"t":"Y"}]],[6917,[{"t":"Y"}]]],"a":{"m":11,"a":11,"M":12,"n":6}}],[895,{"n":"Milivojevic","f":"Luka","fp":"MD","r":9,"c":26,"s":{"s":21.5,"n":4,"a":5.38,"d":0.25,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":3,"Os":148.5,"On":29,"Oa":5.12,"Od":0.94,"pm":29},"p":[[-38,{"n":5,"e":3931,"s":1}],[-36,{"n":5.5,"e":3951}],[-35,{"n":3.5,"e":3958}],[-34,{"n":4.5,"e":3972}],[-33,{"n":3.5,"e":3980}],[-32,{"n":5,"e":3992}],[-31,{"n":4.5,"e":4001,"s":1}],[-30,{"n":7,"e":4009,"g":1}],[-29,{"n":5,"e":4021,"s":1}],[-26,{"n":4.5,"e":4052}],[-25,{"n":4.5,"e":4060}],[-21,{"n":4.5,"e":4104}],[-20,{"n":6.5,"e":4115}],[-19,{"n":5.5,"e":4121}],[-18,{"n":5,"e":4133}],[-17,{"n":5,"e":4141}],[-16,{"n":5,"e":4156}],[-15,{"n":5.5,"e":4166}],[-14,{"n":5,"e":4168}],[-13,{"n":5,"e":4182}],[-12,{"n":4,"e":4189}],[-11,{"n":4.5,"e":4202}],[-10,{"n":7,"e":4208,"g":1}],[-9,{"n":4.5,"e":4221}],[-7,{"n":7.5,"e":4242,"g":1}],[5,{"n":5,"e":6886,"s":1}],[4,{"n":5.5,"e":6896,"s":1}],[2,{"n":5.5,"e":6917,"s":1}],[1,{"n":5.5,"e":6922,"s":1}]],"fo":[[3951,[{"t":"Y"}]],[3958,[{"t":"Y"}]],[3972,[{"t":"Y"}]]]}],[927,{"n":"Sakho","f":"Mamadou","fp":"DC","r":9,"c":26,"s":{"s":13.5,"n":3,"a":4.5,"d":1.5,"Os":62.5,"On":14,"Oa":4.46,"Od":0.93,"pd":14},"p":[[-37,{"n":5.5,"e":3947}],[-36,{"n":4.5,"e":3951}],[-35,{"n":4,"e":3958}],[-34,{"n":4,"e":3972,"s":1}],[-33,{"n":3,"e":3980}],[-31,{"n":3.5,"e":4001}],[-21,{"n":5,"e":4104}],[-20,{"n":5,"e":4115}],[-19,{"n":5.5,"e":4121}],[-15,{"n":4,"e":4166}],[-14,{"n":5,"e":4168,"s":1}],[4,{"n":3,"e":6896}],[3,{"n":4.5,"e":6905}],[2,{"n":6,"e":6917}]],"fo":[[3947,[{"t":"I"}]],[3958,[{"t":"Y"}]]]}],[942,{"n":"Tomkins","f":"James","fp":"DC","r":8,"c":26,"s":{"Og":1,"Os":91.5,"On":18,"Oa":5.08,"Od":1.09,"pd":18},"p":[[-26,{"n":4.5,"e":4052}],[-25,{"n":4,"e":4060}],[-24,{"n":4.5,"e":4077}],[-23,{"n":5.5,"e":4082}],[-22,{"n":5,"e":4091}],[-21,{"n":4.5,"e":4104}],[-20,{"n":7.5,"e":4115,"g":1}],[-19,{"n":5,"e":4121}],[-18,{"n":5,"e":4133}],[-17,{"n":7,"e":4141}],[-16,{"n":5,"e":4156}],[-15,{"n":6,"e":4166}],[-14,{"n":6.5,"e":4168}],[-13,{"n":5.5,"e":4182}],[-12,{"n":4.5,"e":4189}],[-11,{"n":3.5,"e":4202}],[-10,{"n":4,"e":4208}],[-9,{"n":4,"e":4221}]]}],[981,{"n":"Butland","f":"Jack","fp":"G","r":9,"c":26}],[987,{"n":"Schlupp","f":"Jeffrey","fp":"DL","r":15,"c":26,"s":{"s":17.5,"n":3,"a":5.83,"d":1.04,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":3,"Os":80,"On":15,"Oa":5.33,"Od":1.05,"pd":6,"pm":9},"p":[[-38,{"n":7,"e":3931,"g":1}],[-37,{"n":4,"e":3947}],[-36,{"n":5,"e":3951,"s":1}],[-16,{"n":4,"e":4156}],[-15,{"n":7,"e":4166,"g":1,"s":1}],[-14,{"n":6,"e":4168,"g":1,"s":1}],[-13,{"n":5,"e":4182,"s":1}],[-12,{"n":4.5,"e":4189,"s":1}],[-11,{"n":4.5,"e":4202}],[-9,{"n":4.5,"e":4221}],[-8,{"n":5,"e":4235}],[-7,{"n":6,"e":4242}],[5,{"n":5.5,"e":6886}],[2,{"n":7,"e":6917}],[1,{"n":5,"e":6922}]],"fo":[[6922,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":21,"n":8}}],[1304,{"n":"Riedewald","f":"Jairo","fp":"MD","r":8,"c":26,"s":{"s":16,"n":3,"a":5.33,"d":0.58,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.58,"Os":97,"On":20,"Oa":4.85,"Od":0.4,"pd":6,"pm":14},"p":[[-38,{"n":5,"e":3931,"s":1}],[-37,{"n":5,"e":3947,"s":1}],[-36,{"n":5,"e":3951,"s":1}],[-35,{"n":5,"e":3958,"s":1}],[-33,{"n":5,"e":3980}],[-31,{"n":4.5,"e":4001,"s":1}],[-30,{"n":5,"e":4009,"s":1}],[-28,{"n":4.5,"e":4030,"s":1}],[-27,{"n":5,"e":4041,"s":1}],[-24,{"n":4,"e":4077}],[-23,{"n":4.5,"e":4082}],[-22,{"n":5,"e":4091}],[-21,{"n":4.5,"e":4104}],[-20,{"n":4.5,"e":4115}],[-19,{"n":5,"e":4121,"s":1}],[-17,{"n":4.5,"e":4141}],[-16,{"n":5,"e":4156,"s":1}],[5,{"n":6,"e":6886}],[4,{"n":5,"e":6896,"s":1}],[3,{"n":5,"e":6905,"s":1}]]}],[1678,{"n":"Guaita","f":"Vicente","fp":"G","r":19,"c":26,"s":{"s":27.5,"n":5,"a":5.5,"d":1.66,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.66,"Oao":1,"Os":188.5,"On":34,"Oa":5.54,"Od":1.23,"pg":34},"p":[[-38,{"n":4.5,"e":3931}],[-37,{"n":4.5,"e":3947}],[-36,{"n":5,"e":3951}],[-35,{"n":6.5,"e":3958}],[-34,{"n":4,"e":3972}],[-33,{"n":2.5,"e":3980}],[-32,{"n":5,"e":3992}],[-30,{"n":6,"e":4009}],[-29,{"n":7,"e":4021}],[-28,{"n":8,"e":4030}],[-27,{"n":6,"e":4041}],[-26,{"n":4,"e":4052}],[-25,{"n":4.5,"e":4060,"a":1}],[-24,{"n":5,"e":4077}],[-23,{"n":6,"e":4082}],[-22,{"n":6,"e":4091}],[-21,{"n":5.5,"e":4104}],[-20,{"n":6,"e":4115}],[-19,{"n":5,"e":4121}],[-18,{"n":5,"e":4133}],[-17,{"n":7.5,"e":4141}],[-16,{"n":6,"e":4156}],[-15,{"n":7,"e":4166}],[-14,{"n":6.5,"e":4168}],[-13,{"n":5,"e":4182}],[-12,{"n":5,"e":4189}],[-11,{"n":5,"e":4202}],[-8,{"n":6,"e":4235}],[-7,{"n":7,"e":4242}],[5,{"n":5,"e":6886}],[4,{"n":3.5,"e":6896}],[3,{"n":5,"e":6905}],[2,{"n":6,"e":6917}],[1,{"n":8,"e":6922}]],"fo":[[6886,[{"t":"Y"}]]],"a":{"m":18,"a":23,"M":26,"n":9}}],[2215,{"n":"Ferguson","f":"Nathan","fp":"DC","r":1,"c":26}],[2337,{"n":"Kirby","f":"Nya","fp":"MO","r":1,"c":26}],[2585,{"n":"Meyer","f":"Max","fp":"MO","r":7,"c":26,"s":{"Os":71.5,"On":15,"Oa":4.77,"Od":0.5,"pm":14,"pa":1},"p":[[-35,{"n":4.5,"e":3958,"s":1}],[-34,{"n":5,"e":3972,"s":1}],[-32,{"n":5,"e":3992,"s":1}],[-31,{"n":3.5,"e":4001,"s":1}],[-26,{"n":5,"e":4052,"s":1}],[-25,{"n":5,"e":4060,"s":1}],[-24,{"n":4.5,"e":4077,"s":1}],[-22,{"n":5.5,"e":4091}],[-21,{"n":5,"e":4104}],[-20,{"n":4.5,"e":4115}],[-19,{"n":5,"e":4121}],[-18,{"n":5,"e":4133,"s":1}],[-17,{"n":5,"e":4141,"s":1}],[-11,{"n":4,"e":4202,"s":1}],[-7,{"n":5,"e":4242,"s":1}]]}],[2845,{"n":"McGregor","f":"Giovanni","fp":"MD","r":1,"c":26}],[2852,{"n":"Woods","f":"Sam","fp":"DC","r":1,"c":26}],[3645,{"n":"Tavares","f":"Nikola","fp":"DC","r":1,"c":26}],[3736,{"n":"Henderson","f":"Stephen","fp":"G","r":1,"c":26}],[6387,{"n":"Pierrick","f":"Brandon","fp":"MO","r":1,"c":26,"s":{"Os":4,"On":1,"Oa":4,"pa":1},"p":[[-31,{"n":4,"e":4001,"s":1}]]}],[6481,{"n":"Mitchell","f":"Tyrick","fp":"DL","r":10,"c":26,"s":{"s":23.5,"n":5,"a":4.7,"d":1.04,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.04,"Os":41,"On":9,"Oa":4.56,"Od":0.85,"pd":9},"p":[[-38,{"n":4.5,"e":3931}],[-37,{"n":3.5,"e":3947}],[-36,{"n":5,"e":3951,"s":1}],[-33,{"n":4.5,"e":3980,"s":1}],[5,{"n":4.5,"e":6886}],[4,{"n":3,"e":6896}],[3,{"n":5,"e":6905}],[2,{"n":5.5,"e":6917}],[1,{"n":5.5,"e":6922}]],"fo":[[3931,[{"t":"Y"}]],[6886,[{"t":"Y"}]]]}],[7127,{"n":"Eze","f":"Eberechi","fp":"MO","r":8,"c":26,"s":{"s":19,"n":4,"a":4.75,"d":0.87,"Os":19,"On":4,"Oa":4.75,"Od":0.87,"pm":4},"p":[[4,{"n":3.5,"e":6896}],[3,{"n":5.5,"e":6905}],[2,{"n":5,"e":6917,"s":1}],[1,{"n":5,"e":6922,"s":1}]]}],[612,{"n":"Sigurdsson","f":"Gylfi","fp":"MO","r":18,"c":22,"s":{"s":27.5,"n":5,"a":5.5,"d":0.87,"Ss":17,"Sn":3,"Sa":5.67,"Sd":1.15,"Og":2,"Os":181,"On":34,"Oa":5.32,"Od":0.8,"pm":34},"p":[[5,{"n":5,"e":6887,"s":1}],[2,{"n":5.5,"e":6915,"s":1}],[1,{"n":5,"e":6925,"s":1}],[-38,{"n":5.5,"e":3932}],[-37,{"n":5.5,"e":3943}],[-35,{"n":4,"e":3967}],[-34,{"n":5.5,"e":3973,"s":1}],[-33,{"n":4.5,"e":3986}],[-31,{"n":5.5,"e":4004,"s":1}],[-30,{"n":5.5,"e":4011,"s":1}],[-28,{"n":5.5,"e":4031}],[-21,{"n":5,"e":4102}],[-20,{"n":5.5,"e":4113}],[-13,{"n":4.5,"e":4183}],[-11,{"n":5,"e":4203,"s":1}],[-9,{"n":7,"e":4222,"g":1,"s":1}],[-7,{"n":6,"e":4246}],[-36,{"n":5,"e":3952,"s":1}],[-32,{"n":6.5,"e":3993,"g":1}],[-29,{"n":3.5,"e":4020}],[-27,{"n":5,"e":4038}],[-26,{"n":5.5,"e":4052}],[-25,{"n":6,"e":4066}],[-22,{"n":6,"e":4092}],[-19,{"n":5.5,"e":4122}],[-18,{"n":4.5,"e":4131}],[-16,{"n":6,"e":4151}],[-15,{"n":3.5,"e":4167}],[-14,{"n":5.5,"e":4170}],[-12,{"n":6,"e":4193}],[-10,{"n":5,"e":4209,"s":1}],[-8,{"n":5.5,"e":4229}],[4,{"n":7,"e":6897}],[3,{"n":5,"e":6905,"s":1}]],"a":{"m":18,"a":23,"M":35,"n":6}}],[697,{"n":"Keane","f":"Michael","fp":"DC","r":15,"c":22,"s":{"g":2,"s":27,"n":5,"a":5.4,"d":0.89,"Sg":2,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.89,"Og":4,"Oao":1,"Os":152,"On":30,"Oa":5.07,"Od":1.13,"pd":30},"p":[[-17,{"n":5,"e":4144}],[-38,{"n":4,"e":3932}],[-37,{"n":7,"e":3943}],[-36,{"n":5.5,"e":3952}],[-35,{"n":4,"e":3967}],[-34,{"n":5,"e":3973}],[-33,{"n":4.5,"e":3986,"a":1}],[-32,{"n":5.5,"e":3993}],[-31,{"n":8,"e":4004,"g":1}],[-30,{"n":5.5,"e":4011}],[-29,{"n":3,"e":4020}],[-28,{"n":6,"e":4031}],[-26,{"n":5.5,"e":4052}],[-25,{"n":5,"e":4066,"s":1}],[-22,{"n":6,"e":4092}],[-20,{"n":5,"e":4113}],[-18,{"n":5,"e":4131,"s":1}],[-16,{"n":6,"e":4151}],[-15,{"n":4,"e":4167,"g":1}],[-14,{"n":4,"e":4170}],[-12,{"n":4.5,"e":4193,"s":1}],[-10,{"n":3,"e":4209}],[-9,{"n":6,"e":4222}],[-8,{"n":4.5,"e":4229}],[-7,{"n":3.5,"e":4246}],[5,{"n":6,"e":6887,"g":1}],[4,{"n":4,"e":6897}],[3,{"n":5,"e":6905}],[2,{"n":6,"e":6915,"g":1}],[1,{"n":6,"e":6925}]],"fo":[[3932,[{"t":"Y"}]],[3967,[{"t":"Y"}]],[4011,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":17,"n":5}}],[705,{"n":"Iwobi","f":"Alex","fp":"MO","r":9,"c":22,"s":{"s":20.5,"n":4,"a":5.13,"d":0.63,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.63,"Os":126.5,"On":25,"Oa":5.06,"Od":0.79,"pm":23,"pa":2},"p":[[-36,{"n":5,"e":3952}],[-35,{"n":5,"e":3967,"s":1}],[-34,{"n":3.5,"e":3973}],[-33,{"n":3.5,"e":3986}],[-32,{"n":5,"e":3993}],[-31,{"n":7,"e":4004}],[-30,{"n":5,"e":4011}],[-27,{"n":5.5,"e":4038}],[-25,{"n":5,"e":4066}],[-18,{"n":5,"e":4131}],[-17,{"n":6,"e":4144}],[-16,{"n":4.5,"e":4151}],[-15,{"n":4.5,"e":4167}],[-14,{"n":4,"e":4170}],[-13,{"n":5,"e":4183,"s":1}],[-12,{"n":6,"e":4193,"s":1}],[-11,{"n":4.5,"e":4203}],[-10,{"n":5,"e":4209}],[-9,{"n":6,"e":4222}],[-8,{"n":5.5,"e":4229}],[-7,{"n":5.5,"e":4246,"s":1}],[5,{"n":4.5,"e":6887,"s":1}],[4,{"n":6,"e":6897,"s":1}],[3,{"n":5,"e":6905,"s":1}],[2,{"n":5,"e":6915,"s":1}]]}],[715,{"n":"Bolasie","f":"Yannick","fp":"A","r":1,"c":22}],[834,{"n":"Davies","f":"Tom","fp":"MD","r":11,"c":22,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Og":1,"Os":157.5,"On":32,"Oa":4.92,"Od":0.82,"pm":32},"p":[[-24,{"n":4.5,"e":4070,"s":1}],[-23,{"n":4,"e":4087}],[-38,{"n":5,"e":3932}],[-37,{"n":5,"e":3943}],[-36,{"n":5,"e":3952}],[-35,{"n":3.5,"e":3967}],[-34,{"n":5.5,"e":3973}],[-33,{"n":5,"e":3986}],[-32,{"n":5.5,"e":3993,"s":1}],[-31,{"n":3.5,"e":4004}],[-30,{"n":5.5,"e":4011}],[-29,{"n":3.5,"e":4020}],[-28,{"n":5.5,"e":4031}],[-26,{"n":5,"e":4052,"s":1}],[-22,{"n":5.5,"e":4092}],[-21,{"n":5.5,"e":4102}],[-20,{"n":4.5,"e":4113}],[-19,{"n":5,"e":4122,"s":1}],[-18,{"n":5,"e":4131}],[-17,{"n":5,"e":4144}],[-16,{"n":5,"e":4151,"s":1}],[-15,{"n":3.5,"e":4167}],[-14,{"n":4.5,"e":4170}],[-13,{"n":4,"e":4183}],[-12,{"n":7,"e":4193,"g":1}],[-11,{"n":5.5,"e":4203}],[-10,{"n":5,"e":4209}],[-9,{"n":6.5,"e":4222}],[-7,{"n":4.5,"e":4246,"s":1}],[4,{"n":6,"e":6897}],[3,{"n":4.5,"e":6905,"s":1}],[1,{"n":5,"e":6925,"s":1}]],"fo":[[3943,[{"t":"Y"}]]]}],[844,{"n":"Holgate","f":"Mason","fp":"DC","r":8,"c":22,"s":{"Os":132.5,"On":26,"Oa":5.1,"Od":1.07,"pd":25,"pm":1},"p":[[-36,{"n":5,"e":3952}],[-33,{"n":4.5,"e":3986}],[-32,{"n":5.5,"e":3993}],[-31,{"n":6,"e":4004}],[-30,{"n":6,"e":4011}],[-29,{"n":2.5,"e":4020}],[-28,{"n":5,"e":4031}],[-27,{"n":4,"e":4038}],[-26,{"n":5,"e":4052,"s":1}],[-25,{"n":5.5,"e":4066}],[-24,{"n":5.5,"e":4070}],[-23,{"n":7.5,"e":4087}],[-22,{"n":6,"e":4092}],[-21,{"n":4.5,"e":4102}],[-20,{"n":4.5,"e":4113}],[-19,{"n":6,"e":4122}],[-18,{"n":5,"e":4131}],[-17,{"n":6,"e":4144}],[-16,{"n":6,"e":4151}],[-15,{"n":3,"e":4167}],[-14,{"n":4.5,"e":4170}],[-13,{"n":3.5,"e":4183}],[-12,{"n":6,"e":4193}],[-11,{"n":5,"e":4203}],[-10,{"n":5.5,"e":4209}],[-9,{"n":5,"e":4222,"s":1}]],"fo":[[3952,[{"t":"I"}]],[3986,[{"t":"I"},{"t":"Y"}]]]}],[909,{"n":"Pickford","f":"Jordan","fp":"G","r":16,"c":22,"s":{"s":25.5,"n":5,"a":5.1,"d":1.43,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":1.43,"Os":187.5,"On":37,"Oa":5.07,"Od":1.09,"pg":37},"p":[[-38,{"n":4,"e":3932}],[-37,{"n":5.5,"e":3943}],[-36,{"n":4,"e":3952}],[-35,{"n":5.5,"e":3967}],[-34,{"n":5.5,"e":3973}],[-33,{"n":5.5,"e":3986}],[-32,{"n":5.5,"e":3993}],[-31,{"n":6,"e":4004}],[-30,{"n":6,"e":4011}],[-29,{"n":5.5,"e":4020}],[-28,{"n":4.5,"e":4031}],[-27,{"n":3,"e":4038}],[-26,{"n":4,"e":4052}],[-25,{"n":4,"e":4066}],[-24,{"n":4,"e":4070}],[-23,{"n":5,"e":4087}],[-22,{"n":6,"e":4092}],[-21,{"n":6,"e":4102}],[-20,{"n":6,"e":4113}],[-19,{"n":5,"e":4122}],[-18,{"n":6,"e":4131}],[-17,{"n":6.5,"e":4144}],[-16,{"n":5.5,"e":4151}],[-15,{"n":2,"e":4167}],[-14,{"n":5.5,"e":4170}],[-13,{"n":5.5,"e":4183}],[-12,{"n":5,"e":4193}],[-11,{"n":4.5,"e":4203}],[-10,{"n":4,"e":4209}],[-9,{"n":7,"e":4222}],[-8,{"n":5.5,"e":4229}],[-7,{"n":4.5,"e":4246}],[5,{"n":6,"e":6887}],[4,{"n":3.5,"e":6897}],[3,{"n":5,"e":6905}],[2,{"n":4,"e":6915}],[1,{"n":7,"e":6925}]],"fo":[[3993,[{"t":"Y"}]]],"a":{"m":18,"a":22,"M":35,"n":5}}],[930,{"n":"Coleman","f":"Séamus","fp":"DL","r":13,"c":22,"s":{"s":27,"n":5,"a":5.4,"d":0.65,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.65,"Os":128.5,"On":26,"Oa":4.94,"Od":0.67,"pd":26},"p":[[-38,{"n":4.5,"e":3932}],[-37,{"n":5,"e":3943,"s":1}],[-36,{"n":5.5,"e":3952}],[-35,{"n":4.5,"e":3967,"s":1}],[-34,{"n":4.5,"e":3973}],[-33,{"n":4.5,"e":3986}],[-32,{"n":5.5,"e":3993}],[-31,{"n":5.5,"e":4004}],[-30,{"n":5,"e":4011}],[-28,{"n":5,"e":4031}],[-26,{"n":5,"e":4052}],[-24,{"n":4,"e":4070,"s":1}],[-23,{"n":5,"e":4087}],[-22,{"n":5.5,"e":4092,"s":1}],[-21,{"n":4,"e":4102}],[-20,{"n":4.5,"e":4113,"s":1}],[-19,{"n":5.5,"e":4122}],[-17,{"n":5,"e":4144}],[-13,{"n":5,"e":4183,"s":1}],[-8,{"n":3,"e":4229}],[-7,{"n":5.5,"e":4246}],[5,{"n":5,"e":6887}],[4,{"n":5.5,"e":6897}],[3,{"n":6,"e":6905}],[2,{"n":4.5,"e":6915}],[1,{"n":6,"e":6925}]],"fo":[[6887,[{"t":"I"}]],[6897,[{"t":"I"}]]]}],[944,{"n":"Doucouré","f":"Abdoulaye","fp":"MO","r":23,"c":22,"s":{"s":23.5,"n":4,"a":5.88,"d":0.85,"Ss":23.5,"Sn":4,"Sa":5.88,"Sd":0.85,"Og":4,"Os":192.5,"On":35,"Oa":5.5,"Od":1.12,"pm":35},"p":[[-23,{"n":5,"e":4086}],[-22,{"n":8,"e":4089,"g":1}],[-21,{"n":7,"e":4106,"g":1}],[-18,{"n":5.5,"e":4136}],[-17,{"n":5.5,"e":4143}],[-15,{"n":4.5,"e":4160}],[-12,{"n":7,"e":4192}],[-10,{"n":5.5,"e":4216}],[-38,{"n":5.5,"e":3928}],[-37,{"n":3,"e":3946}],[-36,{"n":5,"e":3957}],[-35,{"n":5.5,"e":3966}],[-34,{"n":5.5,"e":3976}],[-33,{"n":3.5,"e":3979}],[-32,{"n":4,"e":3996}],[-31,{"n":4.5,"e":3998,"s":1}],[-30,{"n":5,"e":4016}],[-29,{"n":6,"e":4021}],[-28,{"n":7,"e":4036}],[-27,{"n":4.5,"e":4044}],[-26,{"n":6.5,"e":4050,"g":1}],[-25,{"n":4.5,"e":4066}],[-24,{"n":5.5,"e":4068}],[-20,{"n":7,"e":4116}],[-16,{"n":5,"e":4156}],[-14,{"n":5.5,"e":4177}],[-13,{"n":4.5,"e":4186}],[-11,{"n":6,"e":4206}],[-9,{"n":7.5,"e":4226,"g":1}],[-8,{"n":4.5,"e":4234}],[-7,{"n":5.5,"e":4244}],[5,{"n":5,"e":6887}],[4,{"n":7,"e":6897}],[3,{"n":6,"e":6905}],[2,{"n":5.5,"e":6915}]],"fo":[[3996,[{"t":"Y"}]],[6915,[{"t":"Y"}]]],"a":{"m":23,"a":25,"M":30,"n":5}}],[958,{"n":"Delph","f":"Fabian","fp":"MD","r":7,"c":22,"s":{"s":5,"n":1,"a":5,"Os":71,"On":14,"Oa":5.07,"Od":0.51,"pm":14},"p":[[-27,{"n":5.5,"e":4038}],[-25,{"n":4,"e":4066}],[-24,{"n":4.5,"e":4070}],[-23,{"n":5,"e":4087}],[-22,{"n":5,"e":4092,"s":1}],[-21,{"n":4.5,"e":4102}],[-20,{"n":5,"e":4113,"s":1}],[-19,{"n":5.5,"e":4122}],[-18,{"n":5.5,"e":4131}],[-11,{"n":6,"e":4203}],[-10,{"n":5,"e":4209,"s":1}],[-8,{"n":5,"e":4229}],[-7,{"n":5.5,"e":4246}],[4,{"n":5,"e":6897,"s":1}]]}],[1066,{"n":"Calvert-Lewin","f":"Dominic","fp":"A","r":35,"c":22,"s":{"g":7,"s":34.5,"n":5,"a":6.9,"d":0.74,"Sg":7,"Ss":34.5,"Sn":5,"Sa":6.9,"Sd":0.74,"Og":19,"Os":190.5,"On":36,"Oa":5.29,"Od":1.43,"pa":36},"p":[[-38,{"n":4.5,"e":3932,"s":1}],[-37,{"n":4,"e":3943}],[-36,{"n":4,"e":3952}],[-35,{"n":4,"e":3967}],[-34,{"n":3.5,"e":3973}],[-33,{"n":5,"e":3986}],[-32,{"n":4.5,"e":3993}],[-31,{"n":6,"e":4004}],[-30,{"n":4,"e":4011}],[-29,{"n":2.5,"e":4020}],[-28,{"n":6.5,"e":4031,"g":1}],[-27,{"n":6.5,"e":4038,"g":1}],[-26,{"n":7,"e":4052,"g":1}],[-25,{"n":4.5,"e":4066}],[-24,{"n":6.5,"e":4070,"g":1}],[-23,{"n":6,"e":4087,"g":1}],[-22,{"n":5,"e":4092}],[-21,{"n":4,"e":4102}],[-20,{"n":8,"e":4113,"g":2}],[-19,{"n":6,"e":4122,"g":1}],[-18,{"n":5,"e":4131}],[-17,{"n":4,"e":4144}],[-16,{"n":8,"e":4151,"g":2}],[-15,{"n":4,"e":4167}],[-14,{"n":3.5,"e":4170}],[-13,{"n":5,"e":4183,"s":1}],[-12,{"n":4.5,"e":4193,"s":1}],[-11,{"n":4,"e":4203,"s":1}],[-10,{"n":6,"e":4209,"g":1,"s":1}],[-8,{"n":4,"e":4229}],[-7,{"n":6,"e":4246,"g":1}],[5,{"n":6.5,"e":6887,"g":1}],[4,{"n":7,"e":6897,"g":1}],[3,{"n":6,"e":6905,"g":1}],[2,{"n":8,"e":6915,"g":3}],[1,{"n":7,"e":6925,"g":1}]],"fo":[[3943,[{"t":"Y"}]],[3973,[{"t":"Y"}]]],"a":{"m":28,"a":51,"M":102,"n":13}}],[1094,{"n":"Kenny","f":"Jonjoe","fp":"DL","r":3,"c":22}],[1307,{"n":"Richarlison","f":"","fp":"A","r":32,"c":22,"s":{"g":1,"s":30.5,"n":5,"a":6.1,"d":1.43,"Sg":1,"Ss":30.5,"Sn":5,"Sa":6.1,"Sd":1.43,"Og":12,"Os":196.5,"On":35,"Oa":5.61,"Od":1.16,"pm":8,"pa":27},"p":[[-38,{"n":4,"e":3932}],[-37,{"n":6.5,"e":3943,"g":1}],[-36,{"n":4,"e":3952}],[-35,{"n":4,"e":3967}],[-34,{"n":7,"e":3973,"g":1}],[-33,{"n":5,"e":3986}],[-32,{"n":6.5,"e":3993,"g":1}],[-31,{"n":5,"e":4004}],[-30,{"n":5,"e":4011}],[-29,{"n":4,"e":4020}],[-28,{"n":5,"e":4031}],[-27,{"n":6.5,"e":4038,"g":1}],[-26,{"n":7.5,"e":4052,"g":1}],[-25,{"n":5,"e":4066}],[-22,{"n":7,"e":4092,"g":1}],[-21,{"n":6,"e":4102,"g":1}],[-20,{"n":7,"e":4113}],[-19,{"n":5,"e":4122}],[-18,{"n":5,"e":4131}],[-17,{"n":4,"e":4144}],[-16,{"n":6.5,"e":4151,"g":1}],[-15,{"n":5.5,"e":4167,"g":1}],[-14,{"n":6.5,"e":4170,"g":1}],[-13,{"n":4,"e":4183}],[-12,{"n":7.5,"e":4193,"g":1}],[-11,{"n":4.5,"e":4203}],[-10,{"n":5.5,"e":4209}],[-9,{"n":6,"e":4222}],[-8,{"n":5.5,"e":4229}],[-7,{"n":5.5,"e":4246}],[5,{"n":4.5,"e":6887}],[4,{"n":5,"e":6897}],[3,{"n":6,"e":6905,"g":1}],[2,{"n":8,"e":6915}],[1,{"n":7,"e":6925}]],"fo":[[3993,[{"t":"I"}]],[6897,[{"t":"I"}]],[6887,[{"t":"R"}]],[3943,[{"t":"Y"}]],[3952,[{"t":"Y"}]],[3973,[{"t":"Y"}]],[6905,[{"t":"Y"}]]],"a":{"m":30,"a":54,"M":71,"n":19}}],[1377,{"n":"Allan","f":"","fp":"MD","r":15,"c":22,"s":{"s":21.5,"n":4,"a":5.38,"d":0.95,"Ss":4,"Sn":1,"Sa":4,"Og":2,"Os":130,"On":25,"Oa":5.2,"Od":0.85,"pm":25},"p":[[-37,{"n":5,"e":5460,"s":1}],[-36,{"n":6.5,"e":5474,"g":1,"s":1}],[-35,{"n":4.5,"e":5482}],[-34,{"n":5,"e":5494,"s":1}],[-33,{"n":5,"e":5499,"s":1}],[-31,{"n":5,"e":5521,"s":1}],[-27,{"n":6,"e":5567}],[-26,{"n":4,"e":5573,"s":1}],[-25,{"n":4.5,"e":5580,"s":1}],[-20,{"n":4.5,"e":5636}],[-19,{"n":5,"e":5641}],[-18,{"n":4,"e":5655}],[-17,{"n":6,"e":5665,"g":1}],[-16,{"n":4,"e":5675}],[-13,{"n":5.5,"e":5701}],[-10,{"n":4.5,"e":5733}],[-9,{"n":6,"e":5745}],[-8,{"n":6.5,"e":5753}],[-7,{"n":6,"e":5766}],[-6,{"n":6.5,"e":5773}],[-5,{"n":4.5,"e":5782}],[5,{"n":4,"e":6887}],[3,{"n":5.5,"e":6905}],[2,{"n":6,"e":6915}],[1,{"n":6,"e":6925}]],"fo":[[6887,[{"t":"Y"}]]],"a":{"m":16,"a":17,"M":21,"n":5}}],[1479,{"n":"Lössl","f":"Jonas","fp":"G","r":3,"c":22}],[1751,{"n":"André Gomes","f":"","fp":"MD","r":10,"c":22,"s":{"s":20.5,"n":4,"a":5.13,"d":0.48,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":91,"On":19,"Oa":4.79,"Od":0.77,"pm":19},"p":[[-38,{"n":4.5,"e":3932}],[-37,{"n":5,"e":3943}],[-36,{"n":6.5,"e":3952}],[-34,{"n":4,"e":3973}],[-33,{"n":4,"e":3986}],[-32,{"n":4.5,"e":3993}],[-31,{"n":5.5,"e":4004}],[-30,{"n":5,"e":4011}],[-29,{"n":3,"e":4020}],[-28,{"n":4.5,"e":4031}],[-27,{"n":5,"e":4038,"s":1}],[-11,{"n":4.5,"e":4203}],[-10,{"n":4,"e":4209}],[-9,{"n":5.5,"e":4222}],[-8,{"n":5,"e":4229,"s":1}],[5,{"n":4.5,"e":6887}],[3,{"n":5.5,"e":6905}],[2,{"n":5.5,"e":6915}],[1,{"n":5,"e":6925}]],"fo":[[3973,[{"t":"I"}]],[3986,[{"t":"Y"}]],[6887,[{"t":"Y"}]]]}],[1881,{"n":"Digne","f":"Lucas","fp":"DL","r":17,"c":22,"s":{"s":28.5,"n":5,"a":5.7,"d":0.84,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":0.84,"Oao":1,"Os":173,"On":34,"Oa":5.09,"Od":0.97,"pd":31,"pm":3},"p":[[-38,{"n":5,"e":3932}],[-37,{"n":5.5,"e":3943}],[-36,{"n":4.5,"e":3952}],[-35,{"n":3,"e":3967}],[-34,{"n":7,"e":3973}],[-33,{"n":4.5,"e":3986}],[-32,{"n":5.5,"e":3993}],[-31,{"n":6,"e":4004}],[-30,{"n":6,"e":4011}],[-29,{"n":3,"e":4020}],[-26,{"n":5,"e":4052}],[-25,{"n":5,"e":4066}],[-24,{"n":5.5,"e":4070}],[-23,{"n":5,"e":4087}],[-22,{"n":7,"e":4092}],[-21,{"n":4.5,"e":4102}],[-19,{"n":5,"e":4122}],[-18,{"n":5,"e":4131}],[-17,{"n":5,"e":4144}],[-16,{"n":5,"e":4151}],[-15,{"n":3.5,"e":4167}],[-14,{"n":4.5,"e":4170}],[-13,{"n":4,"e":4183}],[-12,{"n":5,"e":4193}],[-11,{"n":6,"e":4203}],[-10,{"n":4.5,"e":4209,"a":1}],[-9,{"n":6,"e":4222}],[-8,{"n":5,"e":4229}],[-7,{"n":4,"e":4246}],[5,{"n":6,"e":6887}],[4,{"n":5,"e":6897}],[3,{"n":5.5,"e":6905}],[2,{"n":5,"e":6915}],[1,{"n":7,"e":6925}]],"fo":[[3952,[{"t":"Y"}]],[3967,[{"t":"Y"}]],[3973,[{"t":"Y"}]],[4011,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":23,"n":15}}],[2118,{"n":"Baningime","f":"Beni","fp":"MD","r":1,"c":22}],[2197,{"n":"Tosun","f":"Cenk","fp":"A","r":5,"c":22,"s":{"Og":2,"Os":41.5,"On":9,"Oa":4.61,"Od":1.19,"pa":9},"p":[[-28,{"n":4.5,"e":4030,"s":1}],[-27,{"n":4.5,"e":4041,"s":1}],[-24,{"n":3,"e":4077}],[-23,{"n":7,"e":4082,"g":1}],[-22,{"n":4,"e":4091,"s":1}],[-18,{"n":4,"e":4131,"s":1}],[-13,{"n":4.5,"e":4183}],[-12,{"n":4,"e":4193}],[-11,{"n":6,"e":4203,"g":1,"s":1}]]}],[2218,{"n":"Gordon","f":"Anthony","fp":"MO","r":6,"c":22,"s":{"Os":47.5,"On":10,"Oa":4.75,"Od":0.49,"pm":4,"pa":6},"p":[[-38,{"n":4.5,"e":3932,"s":1}],[-37,{"n":4.5,"e":3943,"s":1}],[-36,{"n":4.5,"e":3952,"s":1}],[-35,{"n":4.5,"e":3967}],[-34,{"n":5,"e":3973}],[-33,{"n":4.5,"e":3986,"s":1}],[-32,{"n":6,"e":3993}],[-31,{"n":4.5,"e":4004,"s":1}],[-30,{"n":5,"e":4011}],[-29,{"n":4.5,"e":4020,"s":1}]]}],[2241,{"n":"Mina","f":"Yerry","fp":"DC","r":18,"c":22,"s":{"g":1,"s":27,"n":5,"a":5.4,"d":1.52,"Sg":1,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.52,"Og":3,"Os":144,"On":28,"Oa":5.14,"Od":1,"pd":28},"p":[[-35,{"n":5,"e":3967}],[-34,{"n":6,"e":3973}],[-33,{"n":5,"e":3986,"s":1}],[-32,{"n":5,"e":3993,"s":1}],[-27,{"n":4.5,"e":4038}],[-26,{"n":5.5,"e":4052}],[-25,{"n":7,"e":4066,"g":2}],[-24,{"n":4,"e":4070}],[-23,{"n":5,"e":4087}],[-22,{"n":5,"e":4092,"s":1}],[-21,{"n":4.5,"e":4102}],[-20,{"n":5,"e":4113,"s":1}],[-19,{"n":6,"e":4122}],[-18,{"n":6,"e":4131}],[-17,{"n":5.5,"e":4144}],[-15,{"n":3,"e":4167}],[-14,{"n":5,"e":4170}],[-13,{"n":3.5,"e":4183}],[-12,{"n":6,"e":4193}],[-11,{"n":5,"e":4203}],[-9,{"n":6,"e":4222}],[-8,{"n":5,"e":4229}],[-7,{"n":4.5,"e":4246}],[5,{"n":3,"e":6887}],[4,{"n":7,"e":6897,"g":1}],[3,{"n":6,"e":6905}],[2,{"n":5,"e":6915}],[1,{"n":6,"e":6925}]],"fo":[[3967,[{"t":"I"}]]],"a":{"m":14,"a":19,"M":26,"n":7}}],[2764,{"n":"Bernard","f":"","fp":"MO","r":7,"c":22,"s":{"Og":2,"Os":107,"On":21,"Oa":5.1,"Od":0.93,"pm":10,"pa":11},"p":[[-38,{"n":5,"e":3932,"s":1}],[-36,{"n":5,"e":3952}],[-35,{"n":4.5,"e":3967,"s":1}],[-34,{"n":4.5,"e":3973,"s":1}],[-33,{"n":4.5,"e":3986,"s":1}],[-32,{"n":4.5,"e":3993,"s":1}],[-31,{"n":6,"e":4004}],[-30,{"n":4.5,"e":4011,"s":1}],[-29,{"n":4.5,"e":4020}],[-28,{"n":4.5,"e":4031,"s":1}],[-27,{"n":5,"e":4038,"s":1}],[-26,{"n":6.5,"e":4052,"g":1}],[-24,{"n":6.5,"e":4070}],[-23,{"n":3.5,"e":4087}],[-22,{"n":6,"e":4092}],[-19,{"n":5.5,"e":4122}],[-17,{"n":4.5,"e":4144}],[-16,{"n":4.5,"e":4151,"s":1}],[-15,{"n":5,"e":4167,"s":1}],[-10,{"n":5,"e":4209}],[-9,{"n":7.5,"e":4222,"g":1}]]}],[2851,{"n":"João Virgínia","f":"","fp":"G","r":1,"c":22}],[3625,{"n":"Rodríguez","f":"James","fp":"MO","r":23,"c":22,"s":{"g":3,"s":34.5,"n":5,"a":6.9,"d":1.08,"Sg":3,"Ss":34.5,"Sn":5,"Sa":6.9,"Sd":1.08,"Og":4,"Os":67,"On":11,"Oa":6.09,"Od":1.11,"pm":5,"pa":6},"p":[[-30,{"n":5,"e":4395}],[-9,{"n":5.5,"e":4605}],[-8,{"n":6.5,"e":4614,"g":1,"s":1}],[-6,{"n":5,"e":4634,"s":1}],[-5,{"n":5.5,"e":4645}],[-7,{"n":5,"e":4620,"s":1}],[5,{"n":6.5,"e":6887}],[4,{"n":8.5,"e":6897,"g":2}],[3,{"n":6,"e":6905}],[2,{"n":7.5,"e":6915,"g":1}],[1,{"n":6,"e":6925}]],"fo":[[6887,[{"t":"Y"}]]],"a":{"m":16,"a":32,"M":63,"n":7}}],[3670,{"n":"Godfrey","f":"Ben","fp":"DC","r":10,"c":22,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Oao":1,"Os":112,"On":25,"Oa":4.48,"Od":1.04,"pd":25},"p":[[-38,{"n":3,"e":3934}],[-35,{"n":3,"e":3963}],[-30,{"n":3.5,"e":4014}],[-29,{"n":5.5,"e":4025}],[-27,{"n":3.5,"e":4047}],[-23,{"n":5,"e":4084}],[-16,{"n":4,"e":4154}],[-10,{"n":3,"e":4214}],[-9,{"n":5.5,"e":4219}],[-37,{"n":4,"e":3942,"a":1}],[-36,{"n":4.5,"e":3950}],[-34,{"n":4.5,"e":3976}],[-33,{"n":5.5,"e":3984}],[-32,{"n":3.5,"e":3988}],[-31,{"n":4.5,"e":4004}],[-28,{"n":6,"e":4034}],[-17,{"n":5,"e":4142}],[-15,{"n":4.5,"e":4165}],[-14,{"n":5.5,"e":4176}],[-13,{"n":6.5,"e":4183}],[-12,{"n":4.5,"e":4192}],[-11,{"n":5,"e":4201}],[-8,{"n":2.5,"e":4232}],[-7,{"n":5,"e":4242}],[5,{"n":5,"e":6887,"s":1}]],"fo":[[3976,[{"t":"Y"}]]]}],[4586,{"n":"Olsen","f":"Robin","fp":"G","r":7,"c":22,"s":{"Os":81.5,"On":14,"Oa":5.82,"Od":1.05,"pg":14},"p":[[-27,{"n":6.5,"e":5565}],[-26,{"n":6,"e":5568}],[-20,{"n":5,"e":5630}],[-19,{"n":4.5,"e":5638}],[-18,{"n":4.5,"e":5652}],[-13,{"n":4.5,"e":5700}],[-12,{"n":6,"e":5709}],[-11,{"n":7,"e":5718}],[-10,{"n":5,"e":5729}],[-9,{"n":5.5,"e":5746}],[-8,{"n":7,"e":5749}],[-7,{"n":7,"e":5764}],[-6,{"n":5.5,"e":5768}],[-5,{"n":7.5,"e":5782}]]}],[5998,{"n":"Gbamin","f":"Jean-Philippe","fp":"MD","r":1,"c":22}],[6278,{"n":"Nkounkou","f":"Niels","fp":"DL","r":4,"c":22}],[6641,{"n":"Branthwaite","f":"Jarrad","fp":"DC","r":5,"c":22,"s":{"Os":18.5,"On":4,"Oa":4.63,"Od":0.75,"pd":4},"p":[[-38,{"n":4,"e":3932}],[-37,{"n":5.5,"e":3943}],[-36,{"n":5,"e":3952,"s":1}],[-35,{"n":4,"e":3967,"s":1}]]}],[33,{"n":"Seri","f":"Jean Michael","fp":"MD","r":2,"c":71}],[100,{"n":"Areola","f":"Alphonse","fp":"G","r":12,"c":71,"s":{"s":19.5,"n":4,"a":4.88,"d":1.31,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.44,"Os":40,"On":8,"Oa":5,"Od":1.04,"pg":8},"p":[[5,{"n":6,"e":6891}],[4,{"n":6,"e":6902}],[2,{"n":4,"e":6931}],[-38,{"n":6,"e":4312}],[-15,{"n":5.5,"e":4538}],[-8,{"n":4,"e":4614}],[-6,{"n":5,"e":4634}],[3,{"n":3.5,"e":6906}]]}],[327,{"n":"Zambo Anguissa","f":"André-Frank","fp":"MD","r":15,"c":71,"s":{"s":27.5,"n":5,"a":5.5,"d":1.27,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.27,"Og":2,"Os":199.5,"On":37,"Oa":5.39,"Od":0.97,"pm":37},"p":[[-38,{"n":8,"e":4317,"g":1}],[-37,{"n":5,"e":4325}],[-36,{"n":4.5,"e":4337}],[-35,{"n":6,"e":4342}],[-34,{"n":4,"e":4357}],[-33,{"n":6,"e":4363}],[-32,{"n":5.5,"e":4377}],[-31,{"n":5.5,"e":4387}],[-30,{"n":5,"e":4393,"s":1}],[-29,{"n":5,"e":4407}],[-28,{"n":6,"e":4409}],[-27,{"n":4.5,"e":4427,"s":1}],[-26,{"n":5.5,"e":4428,"s":1}],[-24,{"n":5.5,"e":4457,"s":1}],[-22,{"n":5,"e":4477,"s":1}],[-21,{"n":4.5,"e":4478,"s":1}],[-20,{"n":3.5,"e":4497}],[-19,{"n":5.5,"e":4504}],[-18,{"n":6.5,"e":4517}],[-17,{"n":5.5,"e":4526}],[-15,{"n":7,"e":4547,"g":1}],[-14,{"n":4.5,"e":4558}],[-13,{"n":6,"e":4564}],[-12,{"n":6,"e":4577}],[-11,{"n":4,"e":4581}],[-10,{"n":4.5,"e":4597}],[-9,{"n":6.5,"e":4602}],[-8,{"n":4.5,"e":4612}],[-7,{"n":6,"e":4627}],[-6,{"n":5.5,"e":4628}],[-25,{"n":5,"e":4439,"s":1}],[-16,{"n":6,"e":4537}],[5,{"n":6,"e":6891}],[4,{"n":5.5,"e":6902}],[3,{"n":3.5,"e":6906}],[2,{"n":7,"e":6931}],[1,{"n":5.5,"e":6923,"s":1}]],"fo":[[6891,[{"t":"Y"}]]]}],[435,{"n":"Le Marchand","f":"Maxime","fp":"DC","r":8,"c":71,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[4,{"n":4.5,"e":6902}],[3,{"n":5,"e":6906,"s":1}]],"fo":[[6902,[{"t":"Y"}]],[6906,[{"t":"Y"}]]]}],[938,{"n":"Aina","f":"Ola","fp":"DL","r":5,"c":71,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Os":142,"On":30,"Oa":4.73,"Od":0.6,"pd":13,"pm":17},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":5,"e":5465,"s":1}],[-35,{"n":5,"e":5486,"s":1}],[-34,{"n":4,"e":5490}],[-33,{"n":5,"e":5506,"s":1}],[-32,{"n":4.5,"e":5512}],[-31,{"n":5,"e":5526,"s":1}],[-30,{"n":4,"e":5531}],[-29,{"n":4.5,"e":5546}],[-28,{"n":4,"e":5549}],[-27,{"n":5,"e":5566,"s":1}],[-25,{"n":5,"e":5586,"s":1}],[-24,{"n":4.5,"e":5594,"s":1}],[-23,{"n":4,"e":5606}],[-22,{"n":4.5,"e":5613}],[-20,{"n":4,"e":5637}],[-19,{"n":5,"e":5645}],[-18,{"n":6,"e":5656}],[-17,{"n":4.5,"e":5666}],[-16,{"n":4.5,"e":5677}],[-15,{"n":5.5,"e":5686,"s":1}],[-13,{"n":5.5,"e":5706,"s":1}],[-12,{"n":5.5,"e":5708}],[-11,{"n":4,"e":5726}],[-6,{"n":4,"e":5774}],[-5,{"n":6,"e":5786}],[-9,{"n":5,"e":5746}],[-7,{"n":4.5,"e":5766,"s":1}],[5,{"n":5,"e":6891}],[4,{"n":4,"e":6902}]],"fo":[[5512,[{"t":"Y"}]],[5531,[{"t":"Y"}]]]}],[959,{"n":"Loftus-Cheek","f":"Ruben","fp":"MO","r":7,"c":71,"s":{"s":10,"n":2,"a":5,"d":1.41,"Ss":6,"Sn":1,"Sa":6,"Os":45,"On":9,"Oa":5,"Od":0.87,"pm":7,"pa":2},"p":[[-38,{"n":4.5,"e":3930,"s":1}],[-36,{"n":5.5,"e":3950}],[-35,{"n":5,"e":3964,"s":1}],[-34,{"n":6.5,"e":3972,"s":1}],[-33,{"n":5,"e":3979,"s":1}],[-32,{"n":4.5,"e":3997,"s":1}],[-30,{"n":4,"e":4008}],[5,{"n":6,"e":6891}],[1,{"n":4,"e":6928}]]}],[969,{"n":"Onomah","f":"Josh","fp":"MO","r":10,"c":71,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"pm":2},"p":[[2,{"n":4,"e":6931}],[1,{"n":3.5,"e":6923}]]}],[1039,{"n":"Lookman","f":"Ademola","fp":"A","r":7,"c":71,"s":{"g":1,"s":7,"n":1,"a":7,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":7,"On":1,"Oa":7,"pm":1},"p":[[5,{"n":7,"e":6891,"g":1}]]}],[1051,{"n":"Reed","f":"Harrison","fp":"MD","r":5,"c":71,"s":{"s":10,"n":2,"a":5,"d":0.71,"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[2,{"n":5.5,"e":6931}],[1,{"n":4.5,"e":6923}]]}],[1099,{"n":"Adarabioyo","f":"Tosin","fp":"DC","r":1,"c":71,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":6,"On":1,"Oa":6,"pd":1},"p":[[5,{"n":6,"e":6891}]]}],[1172,{"n":"Kongolo","f":"Terence","fp":"DC","r":8,"c":71}],[1176,{"n":"Tete","f":"Kenny","fp":"DL","r":7,"c":71,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":80,"On":16,"Oa":5,"Od":0.55,"pd":15,"pm":1},"p":[[2,{"n":5,"e":6188,"s":1}],[-15,{"n":5.5,"e":3787}],[-25,{"n":5.5,"e":3682,"s":1}],[-24,{"n":5,"e":3695,"s":1}],[-23,{"n":5,"e":3704}],[-22,{"n":5,"e":3713,"s":1}],[-19,{"n":4,"e":3745}],[-18,{"n":5,"e":3753}],[-17,{"n":6.5,"e":3764}],[-16,{"n":4.5,"e":3773,"s":1}],[-10,{"n":5,"e":3830}],[-9,{"n":5,"e":3846,"s":1}],[-7,{"n":4.5,"e":3859}],[-6,{"n":5,"e":3870,"s":1}],[3,{"n":4.5,"e":6906}],[2,{"n":5,"e":6931}]],"fo":[[6906,[{"t":"I"}]],[6931,[{"t":"Y"}]]]}],[1315,{"n":"Lemina","f":"Mario","fp":"MD","r":5,"c":71,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[5,{"n":5,"e":6891,"s":1}],[2,{"n":5,"e":6931,"s":1}]]}],[1493,{"n":"Aleksandar Mitrovic","f":"","fp":"A","r":15,"c":71,"s":{"g":2,"s":22,"n":5,"a":4.4,"d":1.67,"Sg":2,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.67,"Og":2,"Os":22,"On":5,"Oa":4.4,"Od":1.67,"pa":5},"p":[[5,{"n":2.5,"e":6891}],[4,{"n":4.5,"e":6902}],[3,{"n":3.5,"e":6906}],[2,{"n":7,"e":6931,"g":2}],[1,{"n":4.5,"e":6923,"s":1}]],"fo":[[6931,[{"t":"Y"}]]],"a":{"m":16,"a":24,"M":42,"n":12}}],[2483,{"n":"De Cordova-Reid","f":"Bobby","fp":"MO","r":8,"c":71,"s":{"g":1,"s":18,"n":4,"a":4.5,"d":1.29,"Og":1,"Os":18,"On":4,"Oa":4.5,"Od":1.29,"pm":1,"pa":3},"p":[[4,{"n":5,"e":6902}],[3,{"n":3,"e":6906}],[2,{"n":6,"e":6931,"g":1,"s":1}],[1,{"n":4,"e":6923,"s":1}]],"fo":[[6906,[{"t":"Y"}]]]}],[2487,{"n":"Kebano","f":"Neeskens","fp":"MO","r":8,"c":71,"s":{"s":20,"n":4,"a":5,"Os":20,"On":4,"Oa":5,"pm":4},"p":[[4,{"n":5,"e":6902,"s":1}],[3,{"n":5,"e":6906,"s":1}],[2,{"n":5,"e":6931,"s":1}],[1,{"n":5,"e":6923}]]}],[2494,{"n":"Hector","f":"Michael","fp":"DC","r":10,"c":71,"s":{"s":10.5,"n":3,"a":3.5,"d":0.5,"Os":10.5,"On":3,"Oa":3.5,"Od":0.5,"pd":3},"p":[[3,{"n":3,"e":6906}],[2,{"n":4,"e":6931}],[1,{"n":3.5,"e":6923}]],"fo":[[6906,[{"t":"I"}]],[6923,[{"t":"Y"}]]]}],[2495,{"n":"Ream","f":"Tim","fp":"DC","r":10,"c":71,"s":{"s":17.5,"n":4,"a":4.38,"d":0.48,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Os":17.5,"On":4,"Oa":4.38,"Od":0.48,"pd":4},"p":[[5,{"n":5,"e":6891}],[4,{"n":4.5,"e":6902}],[3,{"n":4,"e":6906}],[1,{"n":4,"e":6923}]]}],[2505,{"n":"Cairney","f":"Tom","fp":"MO","r":13,"c":71,"s":{"s":20.5,"n":4,"a":5.13,"d":1.11,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1,"Os":20.5,"On":4,"Oa":5.13,"Od":1.11,"pm":4},"p":[[5,{"n":6.5,"e":6891}],[4,{"n":5.5,"e":6902}],[3,{"n":4.5,"e":6906}],[1,{"n":4,"e":6923}]],"fo":[[6906,[{"t":"Y"}]],[6923,[{"t":"Y"}]]]}],[2509,{"n":"Odoi","f":"Denis","fp":"DL","r":9,"c":71,"s":{"s":10.5,"n":3,"a":3.5,"d":0.87,"Os":10.5,"On":3,"Oa":3.5,"Od":0.87,"pd":3},"p":[[3,{"n":2.5,"e":6906}],[2,{"n":4,"e":6931}],[1,{"n":4,"e":6923}]],"fo":[[6906,[{"t":"Y"}]]]}],[2511,{"n":"Johansen","f":"Stefan","fp":"MD","r":4,"c":71}],[2515,{"n":"McDonald","f":"Kevin","fp":"MD","r":4,"c":71}],[2529,{"n":"Fabri","f":"","fp":"G","r":1,"c":71,"s":{"Os":3.5,"On":1,"Oa":3.5,"pg":1},"p":[[-12,{"n":3.5,"e":4575}]]}],[2552,{"n":"Kamara","f":"Aboubakar","fp":"A","r":9,"c":71,"s":{"s":16.5,"n":4,"a":4.13,"d":0.85,"Os":16.5,"On":4,"Oa":4.13,"Od":0.85,"pm":1,"pa":3},"p":[[4,{"n":4.5,"e":6902,"s":1}],[3,{"n":5,"e":6906,"s":1}],[2,{"n":4,"e":6931}],[1,{"n":3,"e":6923}]],"fo":[[6906,[{"t":"Y"}]]]}],[2574,{"n":"Ivan Cavaleiro","f":"","fp":"MO","r":10,"c":71,"s":{"s":22.5,"n":5,"a":4.5,"d":0.61,"Ss":22.5,"Sn":5,"Sa":4.5,"Sd":0.61,"Os":22.5,"On":5,"Oa":4.5,"Od":0.61,"pm":4,"pa":1},"p":[[5,{"n":5.5,"e":6891}],[4,{"n":4.5,"e":6902}],[3,{"n":4,"e":6906}],[2,{"n":4.5,"e":6931}],[1,{"n":4,"e":6923}]],"fo":[[6891,[{"t":"Y"}]]]}],[2763,{"n":"Bryan","f":"Joe","fp":"DL","r":9,"c":71,"s":{"s":17,"n":4,"a":4.25,"d":0.5,"Os":17,"On":4,"Oa":4.25,"Od":0.5,"pd":2,"pm":2},"p":[[4,{"n":5,"e":6902}],[3,{"n":4,"e":6906}],[2,{"n":4,"e":6931}],[1,{"n":4,"e":6923}]],"fo":[[6906,[{"t":"Y"}]]]}],[3799,{"n":"Andersen","f":"Joachim","fp":"DC","r":6,"c":71,"s":{"Og":1,"Os":81,"On":16,"Oa":5.06,"Od":0.89,"pd":16},"p":[[1,{"n":5,"e":6204}],[3,{"n":4.5,"e":6179}],[-11,{"n":6,"e":3820}],[-28,{"n":4.5,"e":3650}],[-25,{"n":5,"e":3682}],[-20,{"n":4.5,"e":3730}],[-18,{"n":4.5,"e":3753}],[-17,{"n":8,"e":3764,"g":1}],[-15,{"n":5,"e":3787,"s":1}],[-14,{"n":5,"e":3793}],[-13,{"n":4.5,"e":3800}],[-12,{"n":4.5,"e":3817}],[-9,{"n":5.5,"e":3846}],[-7,{"n":4.5,"e":3859}],[-6,{"n":5,"e":3870}],[2,{"n":5,"e":6188,"s":1}]],"fo":[[6179,[{"t":"Y"}]]]}],[6890,{"n":"Rodák","f":"Marek","fp":"G","r":8,"c":71,"s":{"s":3.5,"n":1,"a":3.5,"Os":3.5,"On":1,"Oa":3.5,"pg":1},"p":[[1,{"n":3.5,"e":6923}]]}],[6919,{"n":"Robinson","f":"Antonee","fp":"DL","r":7,"c":71,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":2},"p":[[5,{"n":5.5,"e":6891}],[4,{"n":5,"e":6902}]]}],[7359,{"n":"Carvalho","f":"Fabio","fp":"MO","r":2,"c":71}],[7403,{"n":"Francois","f":"Tyrese","fp":"MD","r":1,"c":71}],[748,{"n":"Forshaw","f":"Adam","fp":"MD","r":4,"c":131}],[929,{"n":"Bamford","f":"Patrick","fp":"A","r":21,"c":131,"s":{"g":3,"s":28.5,"n":5,"a":5.7,"d":1.44,"Sg":2,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.65,"Og":3,"Os":28.5,"On":5,"Oa":5.7,"Od":1.44,"pa":5},"p":[[5,{"n":4,"e":7498}],[4,{"n":4.5,"e":7494}],[3,{"n":6.5,"e":6930,"g":1}],[1,{"n":6,"e":6932,"g":1}],[2,{"n":7.5,"e":6931,"g":1}]],"fo":[[7494,[{"t":"Y"}]]],"a":{"m":15,"a":25,"M":46,"n":14}}],[1347,{"n":"Roberts","f":"Tyler","fp":"A","r":6,"c":131,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Os":18,"On":4,"Oa":4.5,"Od":0.41,"pm":3,"pa":1},"p":[[4,{"n":4.5,"e":7494}],[3,{"n":4,"e":6930}],[2,{"n":5,"e":6931,"s":1}],[1,{"n":4.5,"e":6932,"s":1}]]}],[1636,{"n":"Rodrigo Moreno","f":"","fp":"A","r":14,"c":131,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":1.35,"Sg":1,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.35,"Og":5,"Os":134.5,"On":27,"Oa":4.98,"Od":1.32,"pm":3,"pa":24},"p":[[-33,{"n":4,"e":4367}],[-31,{"n":4,"e":4380}],[-30,{"n":7,"e":4397,"g":1}],[-29,{"n":3,"e":4405}],[-28,{"n":6.5,"e":4417,"g":1}],[-27,{"n":4.5,"e":4418,"s":1}],[-23,{"n":3.5,"e":4462}],[-22,{"n":6,"e":4476,"s":1}],[-21,{"n":4.5,"e":4487,"s":1}],[-19,{"n":3.5,"e":4507}],[-18,{"n":4.5,"e":4516}],[-17,{"n":5,"e":4527}],[-16,{"n":7.5,"e":4532}],[-14,{"n":4,"e":4554}],[-13,{"n":4.5,"e":4567}],[-12,{"n":7,"e":4569}],[-10,{"n":4,"e":4594,"g":1}],[-8,{"n":5.5,"e":4617}],[-7,{"n":5.5,"e":4619}],[-6,{"n":6,"e":4637}],[-32,{"n":4,"e":4377}],[-15,{"n":7,"e":4547,"g":1}],[5,{"n":4.5,"e":7498}],[4,{"n":7,"e":7494,"g":1,"s":1}],[3,{"n":4,"e":6930,"s":1}],[2,{"n":4.5,"e":6931}],[1,{"n":3.5,"e":6932,"s":1}]],"a":{"m":16,"a":24,"M":45,"n":9}}],[1739,{"n":"Pablo Hernández","f":"","fp":"MO","r":9,"c":131,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pm":2},"p":[[5,{"n":4.5,"e":7498,"s":1}],[1,{"n":4,"e":6932}]],"a":{"m":16,"a":19,"M":25,"n":5}}],[1818,{"n":"Llorente","f":"Diego","fp":"DC","r":14,"c":131,"s":{"Og":1,"Os":129,"On":27,"Oa":4.78,"Od":1.03,"pd":27},"p":[[1,{"n":5.5,"e":7200}],[-37,{"n":5.5,"e":4326}],[-35,{"n":3,"e":4346}],[-34,{"n":5,"e":4353,"s":1}],[-33,{"n":4.5,"e":4365}],[-31,{"n":4.5,"e":4385}],[-29,{"n":3.5,"e":4398}],[-28,{"n":5,"e":4415,"s":1}],[-27,{"n":5,"e":4420}],[-21,{"n":5.5,"e":4484}],[-20,{"n":3.5,"e":4495}],[-18,{"n":3.5,"e":4513}],[-17,{"n":5,"e":4525}],[-16,{"n":5.5,"e":4536}],[-15,{"n":6,"e":4545}],[-14,{"n":3.5,"e":4555}],[-13,{"n":5.5,"e":4566}],[-12,{"n":6,"e":4570}],[-11,{"n":4,"e":4586}],[-10,{"n":6,"e":4590}],[-8,{"n":4,"e":4615}],[-7,{"n":4,"e":4626}],[-6,{"n":6,"e":4635}],[-38,{"n":4,"e":4309}],[-36,{"n":7,"e":4337,"g":1}],[-30,{"n":3.5,"e":4395}],[-19,{"n":5,"e":4504}]],"fo":[[4385,[{"t":"Y"}]],[4395,[{"t":"Y"}]],[4398,[{"t":"Y"}]]]}],[1863,{"n":"Kiko Casilla","f":"","fp":"G","r":7,"c":131}],[2575,{"n":"Hélder Costa","f":"","fp":"MO","r":15,"c":131,"s":{"g":2,"s":27,"n":5,"a":5.4,"d":1.08,"Sg":2,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.08,"Og":2,"Os":27,"On":5,"Oa":5.4,"Od":1.08,"pm":5},"p":[[5,{"n":4.5,"e":7498}],[4,{"n":5,"e":7494}],[3,{"n":4.5,"e":6930}],[2,{"n":7,"e":6931,"g":2}],[1,{"n":6,"e":6932}]],"a":{"m":15,"a":20,"M":25,"n":10}}],[3224,{"n":"Poveda-Ocampo","f":"Ian","fp":"MO","r":6,"c":131,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[5,{"n":4.5,"e":7498,"s":1}],[4,{"n":5,"e":7494,"s":1}],[3,{"n":4.5,"e":6930,"s":1}]]}],[4948,{"n":"Meslier","f":"Illan","fp":"G","r":14,"c":131,"s":{"s":26,"n":5,"a":5.2,"d":1.15,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.15,"Os":26,"On":5,"Oa":5.2,"Od":1.15,"pg":5},"p":[[5,{"n":5.5,"e":7498}],[4,{"n":4.5,"e":7494}],[3,{"n":7,"e":6930}],[2,{"n":5,"e":6931}],[1,{"n":4,"e":6932}]]}],[6249,{"n":"Raphinha","f":"","fp":"MO","r":10,"c":131,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":150.5,"On":26,"Oa":5.79,"Od":1.13,"pm":17,"pa":9},"p":[[6,{"n":7.5,"e":6155,"g":1}],[5,{"n":6,"e":6167,"s":1}],[4,{"n":4.5,"e":6176}],[3,{"n":6,"e":6185}],[2,{"n":6,"e":6189}],[-9,{"n":4.5,"e":3845}],[-28,{"n":4.5,"e":3655,"s":1}],[-27,{"n":6.5,"e":3667}],[-26,{"n":6,"e":3675}],[-25,{"n":5,"e":3686}],[-23,{"n":4.5,"e":3699}],[-22,{"n":8,"e":3716,"g":2}],[-21,{"n":7,"e":3725}],[-20,{"n":4.5,"e":3735}],[-19,{"n":6,"e":3746}],[-18,{"n":5.5,"e":3753}],[-17,{"n":7.5,"e":3766}],[-16,{"n":5.5,"e":3774}],[-15,{"n":7,"e":3786,"g":1}],[-14,{"n":6,"e":3792,"g":1}],[-13,{"n":7.5,"e":3806,"g":1}],[-11,{"n":6,"e":3825}],[-8,{"n":5,"e":3851}],[-7,{"n":4,"e":3864,"s":1}],[5,{"n":4.5,"e":7498,"s":1}],[1,{"n":5.5,"e":6201}]],"a":{"m":13,"a":34,"M":80,"n":28}}],[6878,{"n":"Gelhardt","f":"Joe","fp":"A","r":3,"c":131}],[6881,{"n":"Struijk","f":"Pascal","fp":"DC","r":7,"c":131,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Ss":4,"Sn":1,"Sa":4,"Os":9.5,"On":2,"Oa":4.75,"Od":1.06,"pd":2},"p":[[5,{"n":4,"e":7498}],[1,{"n":5.5,"e":6932}]]}],[6882,{"n":"Shackleton","f":"Jamie","fp":"MD","r":5,"c":131,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[1,{"n":5,"e":6932,"s":1}]]}],[6883,{"n":"Harrison","f":"Jack","fp":"MO","r":14,"c":131,"s":{"g":1,"s":22,"n":4,"a":5.5,"d":1.08,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":22,"On":4,"Oa":5.5,"Od":1.08,"pm":4},"p":[[5,{"n":5.5,"e":7498}],[3,{"n":6,"e":6930}],[2,{"n":4,"e":6931}],[1,{"n":6.5,"e":6932,"g":1}]],"a":{"m":14,"a":21,"M":30,"n":5}}],[6887,{"n":"Grot","f":"Jay-Roy","fp":"A","r":1,"c":131}],[6891,{"n":"Phillips","f":"Kalvin","fp":"MD","r":14,"c":131,"s":{"s":26,"n":5,"a":5.2,"d":0.76,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.76,"Os":26,"On":5,"Oa":5.2,"Od":0.76,"pm":5},"p":[[5,{"n":4,"e":7498}],[4,{"n":5,"e":7494}],[3,{"n":6,"e":6930}],[2,{"n":5.5,"e":6931}],[1,{"n":5.5,"e":6932}]],"fo":[[6930,[{"t":"Y"}]],[7498,[{"t":"Y"}]]]}],[6894,{"n":"Alioski","f":"Ezgjan","fp":"DL","r":8,"c":131,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pm":3},"p":[[4,{"n":4.5,"e":7494}],[3,{"n":5,"e":6930,"s":1}],[2,{"n":5,"e":6931,"s":1}]]}],[6896,{"n":"Dallas","f":"Stuart","fp":"DL","r":16,"c":131,"s":{"s":27,"n":5,"a":5.4,"d":0.82,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.82,"Os":27,"On":5,"Oa":5.4,"Od":0.82,"pd":4,"pm":1},"p":[[5,{"n":4.5,"e":7498}],[4,{"n":6,"e":7494}],[3,{"n":6.5,"e":6930}],[2,{"n":5,"e":6931}],[1,{"n":5,"e":6932}]],"fo":[[7494,[{"t":"Y"}]]],"a":{"m":14,"a":17,"M":20,"n":5}}],[6899,{"n":"Klich","f":"Mateusz","fp":"MO","r":18,"c":131,"s":{"g":2,"s":26.5,"n":5,"a":5.3,"d":0.97,"Sg":2,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.97,"Og":2,"Os":26.5,"On":5,"Oa":5.3,"Od":0.97,"pm":5},"p":[[5,{"n":4,"e":7498}],[4,{"n":5,"e":7494}],[3,{"n":5,"e":6930}],[2,{"n":6.5,"e":6931,"g":1}],[1,{"n":6,"e":6932,"g":1}]],"fo":[[6931,[{"t":"Y"}]]],"a":{"m":14,"a":20,"M":26,"n":10}}],[6900,{"n":"Ayling","f":"Luke","fp":"DL","r":12,"c":131,"s":{"s":25,"n":5,"a":5,"d":0.71,"Ss":25,"Sn":5,"Sa":5,"Sd":0.71,"Os":25,"On":5,"Oa":5,"Od":0.71,"pd":5},"p":[[5,{"n":5,"e":7498}],[4,{"n":5,"e":7494}],[3,{"n":6,"e":6930}],[2,{"n":4,"e":6931}],[1,{"n":5,"e":6932}]],"fo":[[7498,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":23,"n":6}}],[6903,{"n":"Cooper","f":"Liam","fp":"DC","r":13,"c":131,"s":{"s":16,"n":3,"a":5.33,"d":0.76,"Os":16,"On":3,"Oa":5.33,"Od":0.76,"pd":3},"p":[[4,{"n":6,"e":7494}],[3,{"n":5.5,"e":6930}],[2,{"n":4.5,"e":6931}]]}],[6918,{"n":"Davis","f":"Leif","fp":"DL","r":5,"c":131,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pd":1},"p":[[4,{"n":4,"e":7494,"s":1}]]}],[7134,{"n":"Koch","f":"Robin","fp":"DC","r":10,"c":131,"s":{"s":23,"n":5,"a":4.6,"d":0.65,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.65,"Os":23,"On":5,"Oa":4.6,"Od":0.65,"pd":5},"p":[[5,{"n":5,"e":7498}],[4,{"n":4.5,"e":7494}],[3,{"n":5.5,"e":6930}],[2,{"n":4,"e":6931}],[1,{"n":4,"e":6932}]]}],[7212,{"n":"Casey","f":"Oliver","fp":"DC","r":1,"c":131}],[7318,{"n":"Cresswell","f":"Charlie","fp":"DC","r":2,"c":131}],[7321,{"n":"Caprile","f":"Elia","fp":"G","r":6,"c":131}],[148,{"n":"Ricardo Pereira","f":"","fp":"DL","r":9,"c":29,"s":{"Og":2,"Os":110,"On":22,"Oa":5,"Od":1.24,"pd":20,"pm":2},"p":[[-29,{"n":5,"e":4022}],[-28,{"n":3.5,"e":4034}],[-27,{"n":4.5,"e":4042}],[-26,{"n":4.5,"e":4057}],[-25,{"n":3.5,"e":4061}],[-24,{"n":7,"e":4071,"g":1}],[-23,{"n":3,"e":4080}],[-22,{"n":3.5,"e":4093}],[-21,{"n":5.5,"e":4103}],[-19,{"n":4,"e":4123}],[-18,{"n":3,"e":4132}],[-17,{"n":4.5,"e":4142}],[-16,{"n":5,"e":4148}],[-15,{"n":7,"e":4160}],[-14,{"n":5,"e":4170}],[-13,{"n":6.5,"e":4181}],[-12,{"n":6,"e":4196}],[-11,{"n":6,"e":4202}],[-10,{"n":6,"e":4215}],[-9,{"n":5.5,"e":4223}],[-8,{"n":5,"e":4230}],[-7,{"n":6.5,"e":4245,"g":1}]],"a":{"m":19,"a":23,"M":25,"n":7}}],[610,{"n":"Vardy","f":"Jamie","fp":"A","r":42,"c":29,"s":{"g":5,"s":23.5,"n":4,"a":5.88,"d":2.39,"Og":25,"Os":190,"On":33,"Oa":5.76,"Od":1.55,"pa":33},"p":[[4,{"n":3,"e":6898}],[3,{"n":8.5,"e":6908,"g":3}],[1,{"n":7,"e":6926,"g":2}],[-38,{"n":4.5,"e":3933}],[-37,{"n":4.5,"e":3944}],[-36,{"n":6.5,"e":3953}],[-35,{"n":6,"e":3959,"g":1}],[-34,{"n":7,"e":3968,"g":1}],[-33,{"n":7.5,"e":3980,"g":2}],[-32,{"n":4.5,"e":3993}],[-31,{"n":5,"e":4000}],[-30,{"n":5,"e":4016}],[-29,{"n":6.5,"e":4022,"g":2,"s":1}],[-27,{"n":4,"e":4042}],[-26,{"n":4.5,"e":4057}],[-25,{"n":5,"e":4061}],[-24,{"n":5,"e":4071}],[-23,{"n":3,"e":4080}],[-22,{"n":5.5,"e":4093}],[-19,{"n":3.5,"e":4123}],[-18,{"n":6.5,"e":4132,"g":1}],[-17,{"n":6,"e":4142}],[-16,{"n":8,"e":4148,"g":2}],[-15,{"n":5.5,"e":4160,"g":1}],[-14,{"n":6,"e":4170,"g":1}],[-13,{"n":7,"e":4181,"g":1}],[-12,{"n":7.5,"e":4196,"g":1}],[-11,{"n":6.5,"e":4202,"g":1}],[-10,{"n":9,"e":4215,"g":3}],[-9,{"n":6,"e":4223,"g":1}],[-8,{"n":3.5,"e":4230}],[-7,{"n":7.5,"e":4245,"g":2}],[2,{"n":5,"e":6916}]],"a":{"m":44,"a":87,"M":127,"n":18}}],[648,{"n":"Slimani","f":"Islam","fp":"A","r":4,"c":29,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":85.5,"On":16,"Oa":5.34,"Od":1.21,"pa":16},"p":[[-28,{"n":4.5,"e":3653,"s":1}],[-27,{"n":4,"e":3662}],[-25,{"n":6,"e":3683,"g":1}],[-24,{"n":6,"e":3688,"g":1,"s":1}],[-18,{"n":4,"e":3749}],[-14,{"n":4,"e":3790,"g":1}],[-13,{"n":5.5,"e":3801}],[-11,{"n":4,"e":3822}],[-10,{"n":6.5,"e":3833,"g":1}],[-9,{"n":5,"e":3842}],[-8,{"n":8,"e":3853,"g":1}],[-7,{"n":6.5,"e":3862}],[-26,{"n":6,"e":3669}],[-20,{"n":6.5,"e":3734,"g":1,"s":1}],[-19,{"n":4.5,"e":3740,"s":1}],[5,{"n":4.5,"e":6888,"s":1}]]}],[689,{"n":"Schmeichel","f":"Kasper","fp":"G","r":24,"c":29,"s":{"s":27,"n":5,"a":5.4,"d":0.82,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.82,"Os":207.5,"On":37,"Oa":5.61,"Od":1.09,"pg":37},"p":[[-20,{"n":6,"e":4117}],[-38,{"n":4,"e":3933}],[-37,{"n":3.5,"e":3944}],[-36,{"n":6,"e":3953}],[-35,{"n":3.5,"e":3959}],[-34,{"n":6.5,"e":3968}],[-33,{"n":6,"e":3980}],[-32,{"n":4,"e":3993}],[-31,{"n":7,"e":4000}],[-30,{"n":5.5,"e":4016}],[-29,{"n":5.5,"e":4022}],[-28,{"n":6,"e":4034}],[-27,{"n":8,"e":4042}],[-26,{"n":6,"e":4057}],[-25,{"n":4,"e":4061}],[-24,{"n":5.5,"e":4071}],[-23,{"n":5,"e":4080}],[-22,{"n":6,"e":4093}],[-21,{"n":6,"e":4103}],[-19,{"n":4,"e":4123}],[-18,{"n":7.5,"e":4132}],[-17,{"n":5,"e":4142}],[-16,{"n":5,"e":4148}],[-15,{"n":5.5,"e":4160}],[-14,{"n":5.5,"e":4170}],[-13,{"n":6,"e":4181}],[-12,{"n":6,"e":4196}],[-11,{"n":6,"e":4202}],[-10,{"n":7,"e":4215}],[-9,{"n":6,"e":4223}],[-8,{"n":7.5,"e":4230}],[-7,{"n":5.5,"e":4245}],[5,{"n":5.5,"e":6888}],[4,{"n":4,"e":6898}],[3,{"n":6,"e":6908}],[2,{"n":5.5,"e":6916}],[1,{"n":6,"e":6926}]],"a":{"m":25,"a":33,"M":55,"n":11}}],[701,{"n":"Morgan","f":"Wes","fp":"DC","r":8,"c":29,"s":{"s":5,"n":1,"a":5,"Os":54,"On":11,"Oa":4.91,"Od":0.77,"pd":11},"p":[[-38,{"n":4.5,"e":3933}],[-37,{"n":3,"e":3944}],[-36,{"n":6,"e":3953}],[-26,{"n":5,"e":4057,"s":1}],[-24,{"n":5,"e":4071,"s":1}],[-21,{"n":5,"e":4103,"s":1}],[-20,{"n":5.5,"e":4117}],[-13,{"n":5.5,"e":4181,"s":1}],[-11,{"n":4.5,"e":4202,"s":1}],[-9,{"n":5,"e":4223,"s":1}],[2,{"n":5,"e":6916,"s":1}]]}],[734,{"n":"Albrighton","f":"Marc","fp":"MO","r":8,"c":29,"s":{"s":10,"n":2,"a":5,"Os":102,"On":19,"Oa":5.37,"Od":0.6,"pm":19},"p":[[-38,{"n":5,"e":3933}],[-35,{"n":5,"e":3959}],[-34,{"n":5,"e":3968}],[-33,{"n":6,"e":3980}],[-32,{"n":5.5,"e":3993}],[-30,{"n":5.5,"e":4016}],[-29,{"n":7,"e":4022}],[-28,{"n":5,"e":4034,"s":1}],[-26,{"n":5.5,"e":4057,"s":1}],[-20,{"n":5.5,"e":4117}],[-19,{"n":4.5,"e":4123,"s":1}],[-18,{"n":5,"e":4132,"s":1}],[-16,{"n":5.5,"e":4148,"s":1}],[-14,{"n":5,"e":4170,"s":1}],[-10,{"n":5.5,"e":4215,"s":1}],[-8,{"n":5,"e":4230,"s":1}],[-7,{"n":6.5,"e":4245,"s":1}],[2,{"n":5,"e":6916,"s":1}],[1,{"n":5,"e":6926,"s":1}]],"fo":[[3959,[{"t":"I"}]],[3980,[{"t":"Y"}]]]}],[735,{"n":"Evans","f":"Jonny","fp":"DC","r":20,"c":29,"s":{"s":13,"n":3,"a":4.33,"d":1.26,"Ss":13,"Sn":3,"Sa":4.33,"Sd":1.26,"Og":1,"Oao":1,"Os":185,"On":35,"Oa":5.29,"Od":1.16,"pd":35},"p":[[-38,{"n":3,"e":3933}],[-37,{"n":3.5,"e":3944}],[-36,{"n":5,"e":3953}],[-35,{"n":2.5,"e":3959,"a":1}],[-34,{"n":5,"e":3968}],[-33,{"n":6,"e":3980}],[-32,{"n":5,"e":3993}],[-31,{"n":5.5,"e":4000}],[-30,{"n":4.5,"e":4016}],[-29,{"n":7,"e":4022}],[-28,{"n":5,"e":4034}],[-27,{"n":6,"e":4042}],[-26,{"n":6,"e":4057}],[-25,{"n":4.5,"e":4061}],[-24,{"n":6,"e":4071}],[-23,{"n":5.5,"e":4080}],[-22,{"n":5.5,"e":4093}],[-21,{"n":6,"e":4103}],[-20,{"n":5,"e":4117}],[-19,{"n":3.5,"e":4123}],[-18,{"n":5,"e":4132}],[-17,{"n":5,"e":4142}],[-16,{"n":7.5,"e":4148,"g":1}],[-15,{"n":7,"e":4160}],[-14,{"n":5.5,"e":4170}],[-13,{"n":5.5,"e":4181}],[-12,{"n":6,"e":4196}],[-11,{"n":6.5,"e":4202}],[-10,{"n":6,"e":4215}],[-9,{"n":5.5,"e":4223}],[-8,{"n":5.5,"e":4230}],[-7,{"n":7,"e":4245}],[5,{"n":4.5,"e":6888}],[4,{"n":3,"e":6898}],[3,{"n":5.5,"e":6908}]],"fo":[[6908,[{"t":"I"}]],[3933,[{"t":"R"},{"t":"Y"}]],[3944,[{"t":"Y"}]],[3953,[{"t":"Y"}]],[6888,[{"t":"Y"}]],[6898,[{"t":"Y"}]]],"a":{"m":25,"a":30,"M":32,"n":14}}],[756,{"n":"Fuchs","f":"Christian","fp":"DL","r":7,"c":29,"s":{"s":4.5,"n":1,"a":4.5,"Os":42.5,"On":9,"Oa":4.72,"Od":1.06,"pd":8,"pm":1},"p":[[-35,{"n":2.5,"e":3959}],[-34,{"n":5,"e":3968,"s":1}],[-33,{"n":5,"e":3980,"s":1}],[-27,{"n":5,"e":4042}],[-23,{"n":4,"e":4080}],[-21,{"n":6,"e":4103}],[-20,{"n":4.5,"e":4117}],[-15,{"n":6,"e":4160}],[3,{"n":4.5,"e":6908,"s":1}]]}],[798,{"n":"Jakupovic","f":"Eldin","fp":"G","r":1,"c":29}],[838,{"n":"Iheanacho","f":"Kelechi","fp":"A","r":8,"c":29,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":5,"Os":110.5,"On":23,"Oa":4.8,"Od":1.2,"pa":23},"p":[[-38,{"n":4,"e":3933}],[-37,{"n":5,"e":3944,"s":1}],[-35,{"n":3.5,"e":3959}],[-34,{"n":4,"e":3968}],[-33,{"n":6,"e":3980,"g":1}],[-32,{"n":6,"e":3993,"g":1,"s":1}],[-31,{"n":4,"e":4000}],[-30,{"n":4.5,"e":4016,"s":1}],[-29,{"n":3.5,"e":4022}],[-28,{"n":3.5,"e":4034}],[-27,{"n":4.5,"e":4042}],[-25,{"n":4,"e":4061,"s":1}],[-24,{"n":6.5,"e":4071,"s":1}],[-23,{"n":5,"e":4080,"s":1}],[-22,{"n":4.5,"e":4093,"s":1}],[-21,{"n":4,"e":4103}],[-20,{"n":7,"e":4117,"g":1}],[-17,{"n":3.5,"e":4142}],[-16,{"n":7.5,"e":4148,"g":1}],[-14,{"n":6.5,"e":4170,"g":1,"s":1}],[5,{"n":4,"e":6888}],[4,{"n":5,"e":6898,"s":1}],[3,{"n":4.5,"e":6908,"s":1}]]}],[851,{"n":"Mendy","f":"Nampalys","fp":"MD","r":11,"c":29,"s":{"s":27,"n":5,"a":5.4,"d":0.65,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.65,"Os":59.5,"On":11,"Oa":5.41,"Od":0.54,"pm":11},"p":[[-37,{"n":5,"e":3944,"s":1}],[-31,{"n":5.5,"e":4000}],[-29,{"n":5,"e":4022,"s":1}],[-24,{"n":5,"e":4071}],[-23,{"n":6,"e":4080}],[-20,{"n":6,"e":4117}],[5,{"n":5.5,"e":6888}],[4,{"n":4.5,"e":6898}],[3,{"n":6,"e":6908}],[2,{"n":5,"e":6916}],[1,{"n":6,"e":6926}]],"fo":[[6898,[{"t":"Y"}]],[6916,[{"t":"Y"}]]]}],[864,{"n":"Gray","f":"Demarai","fp":"MO","r":7,"c":29,"s":{"Og":2,"Os":97.5,"On":18,"Oa":5.42,"Od":0.65,"pm":18},"p":[[-38,{"n":5,"e":3933,"s":1}],[-37,{"n":5,"e":3944,"s":1}],[-36,{"n":6.5,"e":3953,"g":1,"s":1}],[-34,{"n":6,"e":3968,"s":1}],[-32,{"n":5,"e":3993,"s":1}],[-31,{"n":5,"e":4000}],[-30,{"n":6,"e":4016,"s":1}],[-22,{"n":5,"e":4093,"s":1}],[-21,{"n":5,"e":4103,"s":1}],[-20,{"n":7,"e":4117,"g":1}],[-18,{"n":4.5,"e":4132,"s":1}],[-17,{"n":5.5,"e":4142,"s":1}],[-13,{"n":5.5,"e":4181,"s":1}],[-12,{"n":6,"e":4196,"s":1}],[-11,{"n":5.5,"e":4202,"s":1}],[-10,{"n":5,"e":4215,"s":1}],[-9,{"n":5,"e":4223,"s":1}],[-7,{"n":5,"e":4245,"s":1}]]}],[880,{"n":"Amartey","f":"Daniel","fp":"MD","r":8,"c":29,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pd":2},"p":[[4,{"n":4,"e":6898}],[3,{"n":5,"e":6908}]],"fo":[[6898,[{"t":"I"}]],[6908,[{"t":"Y"}]]]}],[1015,{"n":"Ndidi","f":"Onyinye Wilfred","fp":"MD","r":12,"c":29,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Og":1,"Os":165,"On":29,"Oa":5.69,"Od":1.27,"pd":2,"pm":27},"p":[[-38,{"n":6,"e":3933}],[-37,{"n":3.5,"e":3944}],[-36,{"n":8,"e":3953}],[-35,{"n":3.5,"e":3959}],[-34,{"n":5,"e":3968}],[-33,{"n":6.5,"e":3980}],[-32,{"n":4.5,"e":3993}],[-31,{"n":4.5,"e":4000}],[-30,{"n":4.5,"e":4016}],[-29,{"n":6.5,"e":4022}],[-28,{"n":5,"e":4034,"s":1}],[-24,{"n":4,"e":4071,"s":1}],[-21,{"n":7.5,"e":4103}],[-20,{"n":5,"e":4117,"s":1}],[-19,{"n":4,"e":4123}],[-18,{"n":5,"e":4132}],[-17,{"n":6,"e":4142}],[-16,{"n":6,"e":4148}],[-15,{"n":5.5,"e":4160}],[-14,{"n":6.5,"e":4170}],[-13,{"n":6,"e":4181}],[-12,{"n":7,"e":4196}],[-11,{"n":7,"e":4202}],[-10,{"n":7.5,"e":4215}],[-9,{"n":5.5,"e":4223}],[-8,{"n":6,"e":4230}],[-7,{"n":8,"e":4245,"g":1}],[2,{"n":5,"e":6916}],[1,{"n":6,"e":6926}]],"fo":[[3959,[{"t":"Y"}]],[3993,[{"t":"Y"}]],[4000,[{"t":"Y"}]]],"a":{"m":17,"a":20,"M":27,"n":11}}],[1160,{"n":"Tielemans","f":"Youri","fp":"MO","r":18,"c":29,"s":{"g":1,"s":26.5,"n":5,"a":5.3,"d":1.3,"Sg":1,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.3,"Og":3,"Os":191,"On":36,"Oa":5.31,"Od":1.09,"pm":36},"p":[[-38,{"n":5,"e":3933}],[-37,{"n":3.5,"e":3944}],[-36,{"n":6.5,"e":3953}],[-35,{"n":4,"e":3959}],[-34,{"n":6,"e":3968}],[-33,{"n":7,"e":3980}],[-32,{"n":5.5,"e":3993}],[-31,{"n":5.5,"e":4000,"s":1}],[-30,{"n":5,"e":4016}],[-29,{"n":5,"e":4022,"s":1}],[-28,{"n":4.5,"e":4034,"s":1}],[-27,{"n":4.5,"e":4042}],[-26,{"n":5.5,"e":4057}],[-25,{"n":6,"e":4061}],[-24,{"n":6,"e":4071}],[-23,{"n":5,"e":4080,"s":1}],[-22,{"n":4.5,"e":4093,"s":1}],[-21,{"n":5,"e":4103}],[-19,{"n":3,"e":4123}],[-18,{"n":4,"e":4132}],[-17,{"n":5.5,"e":4142}],[-16,{"n":5.5,"e":4148}],[-15,{"n":4.5,"e":4160}],[-14,{"n":4.5,"e":4170}],[-13,{"n":6,"e":4181}],[-12,{"n":7,"e":4196}],[-11,{"n":6,"e":4202}],[-10,{"n":8,"e":4215,"g":1}],[-9,{"n":5.5,"e":4223,"g":1}],[-8,{"n":4.5,"e":4230}],[-7,{"n":6.5,"e":4245}],[5,{"n":5,"e":6888}],[4,{"n":3.5,"e":6898}],[3,{"n":7,"e":6908,"g":1}],[2,{"n":5,"e":6916}],[1,{"n":6,"e":6926}]],"fo":[[4016,[{"t":"Y"}]],[6888,[{"t":"Y"}]],[6908,[{"t":"Y"}]]],"a":{"m":18,"a":23,"M":36,"n":9}}],[1383,{"n":"Ward","f":"Danny","fp":"G","r":7,"c":29,"a":{"m":8,"a":8,"M":8,"n":5}}],[2067,{"n":"Choudhury","f":"Hamza","fp":"MD","r":6,"c":29,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":1,"Os":78.5,"On":16,"Oa":4.91,"Od":0.52,"pm":16},"p":[[-38,{"n":4.5,"e":3933}],[-36,{"n":5,"e":3953,"s":1}],[-33,{"n":5,"e":3980,"s":1}],[-30,{"n":4.5,"e":4016,"s":1}],[-28,{"n":5,"e":4034}],[-26,{"n":4.5,"e":4057}],[-25,{"n":5.5,"e":4061}],[-22,{"n":4.5,"e":4093}],[-21,{"n":6.5,"e":4103,"g":1,"s":1}],[-20,{"n":4.5,"e":4117}],[-19,{"n":5,"e":4123,"s":1}],[-15,{"n":4.5,"e":4160,"s":1}],[-8,{"n":5,"e":4230,"s":1}],[-7,{"n":5,"e":4245,"s":1}],[5,{"n":4.5,"e":6888,"s":1}],[4,{"n":5,"e":6898,"s":1}]]}],[2132,{"n":"Pérez","f":"Ayoze","fp":"MO","r":15,"c":29,"s":{"s":18.5,"n":4,"a":4.63,"d":0.85,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Og":8,"Os":167.5,"On":32,"Oa":5.23,"Od":1.24,"pm":18,"pa":14},"p":[[-38,{"n":4.5,"e":3933,"s":1}],[-37,{"n":5,"e":3944}],[-36,{"n":6.5,"e":3953,"g":1}],[-35,{"n":4,"e":3959}],[-34,{"n":4.5,"e":3968}],[-33,{"n":6,"e":3980}],[-32,{"n":5,"e":3993,"s":1}],[-31,{"n":4,"e":4000,"s":1}],[-28,{"n":4.5,"e":4034}],[-27,{"n":4.5,"e":4042,"s":1}],[-26,{"n":4.5,"e":4057}],[-25,{"n":5.5,"e":4061}],[-24,{"n":8,"e":4071,"g":2}],[-23,{"n":4.5,"e":4080}],[-22,{"n":4,"e":4093}],[-21,{"n":7,"e":4103,"g":1}],[-20,{"n":7,"e":4117}],[-19,{"n":4.5,"e":4123,"s":1}],[-18,{"n":4.5,"e":4132}],[-15,{"n":4,"e":4160}],[-14,{"n":5,"e":4170}],[-13,{"n":7,"e":4181,"g":1}],[-12,{"n":5,"e":4196}],[-11,{"n":5,"e":4202}],[-10,{"n":9,"e":4215,"g":3}],[-9,{"n":5,"e":4223}],[-8,{"n":5.5,"e":4230,"s":1}],[-7,{"n":5.5,"e":4245}],[5,{"n":5,"e":6888}],[4,{"n":3.5,"e":6898}],[2,{"n":4.5,"e":6916}],[1,{"n":5.5,"e":6926}]],"fo":[[6888,[{"t":"Y"}]]],"a":{"m":16,"a":25,"M":36,"n":15}}],[2207,{"n":"Barnes","f":"Harvey","fp":"MO","r":22,"c":29,"s":{"g":1,"s":29.5,"n":5,"a":5.9,"d":1.24,"Sg":1,"Ss":29.5,"Sn":5,"Sa":5.9,"Sd":1.24,"Og":6,"Os":196.5,"On":36,"Oa":5.46,"Od":1.24,"pm":33,"pa":3},"p":[[-38,{"n":5,"e":3933,"s":1}],[-37,{"n":4,"e":3944}],[-36,{"n":5.5,"e":3953}],[-35,{"n":5,"e":3959,"s":1}],[-34,{"n":5,"e":3968,"s":1}],[-33,{"n":7,"e":3980,"s":1}],[-32,{"n":3.5,"e":3993}],[-31,{"n":5,"e":4000,"s":1}],[-30,{"n":4.5,"e":4016}],[-29,{"n":8,"e":4022,"g":2}],[-28,{"n":5,"e":4034}],[-27,{"n":4.5,"e":4042,"s":1}],[-26,{"n":5,"e":4057}],[-25,{"n":6,"e":4061,"g":1}],[-24,{"n":8,"e":4071,"g":1}],[-23,{"n":7,"e":4080,"g":1}],[-22,{"n":4.5,"e":4093}],[-20,{"n":5,"e":4117,"s":1}],[-19,{"n":3.5,"e":4123}],[-18,{"n":5.5,"e":4132}],[-17,{"n":4.5,"e":4142,"s":1}],[-16,{"n":4.5,"e":4148,"s":1}],[-15,{"n":5.5,"e":4160}],[-14,{"n":5,"e":4170}],[-13,{"n":6.5,"e":4181}],[-12,{"n":5.5,"e":4196}],[-11,{"n":5.5,"e":4202}],[-10,{"n":8,"e":4215}],[-9,{"n":6.5,"e":4223}],[-8,{"n":3.5,"e":4230}],[-7,{"n":5.5,"e":4245}],[5,{"n":5.5,"e":6888}],[4,{"n":4,"e":6898}],[3,{"n":6,"e":6908}],[2,{"n":7,"e":6916,"g":1}],[1,{"n":7,"e":6926}]],"a":{"m":20,"a":27,"M":33,"n":16}}],[2272,{"n":"Fofana","f":"Wesley","fp":"DC","r":8,"c":29,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":95,"On":19,"Oa":5,"Od":0.97,"pd":19},"p":[[1,{"n":6.5,"e":6198}],[3,{"n":6,"e":6186}],[2,{"n":5.5,"e":6195}],[-21,{"n":5.5,"e":3727}],[-19,{"n":4.5,"e":3747}],[-17,{"n":3.5,"e":3765}],[-16,{"n":7,"e":3776,"g":1}],[-28,{"n":4,"e":3656}],[-27,{"n":5,"e":3661}],[-25,{"n":4,"e":3680}],[-24,{"n":5,"e":3693}],[-23,{"n":4.5,"e":3702}],[-18,{"n":3.5,"e":3756}],[-15,{"n":5.5,"e":3786,"s":1}],[-12,{"n":5.5,"e":3816}],[-11,{"n":4.5,"e":3826}],[-10,{"n":5.5,"e":3829}],[5,{"n":4,"e":6167,"s":1}],[5,{"n":5.5,"e":6888}]],"fo":[[6195,[{"t":"Y"}]]],"a":{"m":11,"a":15,"M":25,"n":12}}],[2567,{"n":"Maddison","f":"James","fp":"MO","r":26,"c":29,"s":{"g":1,"s":21.5,"n":4,"a":5.38,"d":1.11,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":163,"On":29,"Oa":5.62,"Od":1.32,"pm":29},"p":[[-32,{"n":5.5,"e":3993,"s":1}],[-31,{"n":5,"e":4000}],[-30,{"n":6,"e":4016}],[-29,{"n":6.5,"e":4022}],[-28,{"n":4,"e":4034}],[-27,{"n":5,"e":4042}],[-26,{"n":5.5,"e":4057}],[-25,{"n":5.5,"e":4061}],[-24,{"n":5.5,"e":4071}],[-23,{"n":5.5,"e":4080}],[-22,{"n":2.5,"e":4093}],[-21,{"n":7,"e":4103,"g":1}],[-20,{"n":6,"e":4117,"s":1}],[-19,{"n":3,"e":4123}],[-18,{"n":4.5,"e":4132}],[-17,{"n":5.5,"e":4142}],[-16,{"n":7.5,"e":4148}],[-15,{"n":6,"e":4160,"g":1}],[-14,{"n":5,"e":4170}],[-13,{"n":7,"e":4181}],[-12,{"n":7,"e":4196,"g":1}],[-11,{"n":8,"e":4202}],[-10,{"n":8,"e":4215,"g":1}],[-9,{"n":4.5,"e":4223}],[-8,{"n":6,"e":4230,"g":1}],[5,{"n":4.5,"e":6888,"s":1}],[3,{"n":7,"e":6908,"g":1,"s":1}],[2,{"n":5,"e":6916,"s":1}],[1,{"n":5,"e":6926,"s":1}]],"a":{"m":26,"a":33,"M":52,"n":16}}],[2754,{"n":"Söyüncü","f":"Çaglar","fp":"DC","r":18,"c":29,"s":{"s":19.5,"n":4,"a":4.88,"d":1.44,"Og":1,"Os":171,"On":32,"Oa":5.34,"Od":0.91,"pd":32},"p":[[-35,{"n":4,"e":3959}],[-34,{"n":5,"e":3968}],[-33,{"n":5.5,"e":3980}],[-32,{"n":4.5,"e":3993}],[-31,{"n":5.5,"e":4000}],[-30,{"n":5.5,"e":4016}],[-29,{"n":6,"e":4022}],[-28,{"n":5,"e":4034}],[-27,{"n":5,"e":4042}],[-26,{"n":6,"e":4057}],[-25,{"n":5,"e":4061}],[-24,{"n":5.5,"e":4071}],[-23,{"n":4,"e":4080}],[-22,{"n":5,"e":4093}],[-21,{"n":6,"e":4103}],[-19,{"n":4,"e":4123}],[-18,{"n":4,"e":4132}],[-17,{"n":6,"e":4142}],[-16,{"n":6,"e":4148}],[-15,{"n":6,"e":4160}],[-14,{"n":5,"e":4170}],[-13,{"n":6.5,"e":4181}],[-12,{"n":6,"e":4196}],[-11,{"n":7.5,"e":4202,"g":1}],[-10,{"n":6,"e":4215}],[-9,{"n":5.5,"e":4223}],[-8,{"n":5.5,"e":4230}],[-7,{"n":6,"e":4245}],[4,{"n":3,"e":6898}],[3,{"n":4.5,"e":6908}],[2,{"n":6,"e":6916}],[1,{"n":6,"e":6926}]],"fo":[[3959,[{"t":"R"}]],[6908,[{"t":"Y"}]]],"a":{"m":21,"a":26,"M":30,"n":8}}],[2925,{"n":"Leshabela","f":"Thakgalo","fp":"MO","r":1,"c":29}],[3658,{"n":"Justin","f":"James","fp":"DL","r":11,"c":29,"s":{"g":1,"s":25,"n":5,"a":5,"d":1.37,"Sg":1,"Ss":25,"Sn":5,"Sa":5,"Sd":1.37,"Og":1,"Oao":1,"Os":87,"On":18,"Oa":4.83,"Od":1.07,"pd":14,"pm":4},"p":[[-38,{"n":5,"e":3933}],[-37,{"n":3,"e":3944,"a":1}],[-36,{"n":6,"e":3953}],[-35,{"n":3.5,"e":3959}],[-34,{"n":5,"e":3968}],[-33,{"n":5.5,"e":3980}],[-32,{"n":4,"e":3993}],[-31,{"n":3.5,"e":4000}],[-30,{"n":6,"e":4016}],[-29,{"n":5.5,"e":4022}],[-20,{"n":4.5,"e":4117}],[-16,{"n":5,"e":4148,"s":1}],[-15,{"n":5.5,"e":4160,"s":1}],[5,{"n":4.5,"e":6888}],[4,{"n":3,"e":6898}],[3,{"n":6,"e":6908}],[2,{"n":5,"e":6916,"g":1}],[1,{"n":6.5,"e":6926}]],"fo":[[4000,[{"t":"Y"}]],[6926,[{"t":"Y"}]]],"a":{"m":9,"a":12,"M":14,"n":8}}],[4317,{"n":"Ünder","f":"Cengiz","fp":"MO","r":14,"c":29,"s":{"s":4.5,"n":1,"a":4.5,"Og":2,"Os":91,"On":17,"Oa":5.35,"Od":0.96,"pm":17},"p":[[-38,{"n":5.5,"e":5452,"s":1}],[-29,{"n":5,"e":5544}],[-27,{"n":5,"e":5564,"s":1}],[-25,{"n":7,"e":5584,"g":1}],[-23,{"n":4,"e":5604}],[-22,{"n":3.5,"e":5616}],[-21,{"n":6,"e":5623}],[-20,{"n":7.5,"e":5631,"g":1}],[-19,{"n":5.5,"e":5643,"s":1}],[-17,{"n":5.5,"e":5659,"s":1}],[-14,{"n":5,"e":5697}],[-13,{"n":5,"e":5702,"s":1}],[-12,{"n":5.5,"e":5714,"s":1}],[-11,{"n":5,"e":5724,"s":1}],[-26,{"n":6,"e":5568}],[-18,{"n":5.5,"e":5656,"s":1}],[4,{"n":4.5,"e":6898,"s":1}]]}],[4480,{"n":"Castagne","f":"Timothy","fp":"DL","r":14,"c":29,"s":{"g":1,"s":27.5,"n":5,"a":5.5,"d":1.37,"Sg":1,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.37,"Og":2,"Os":168.5,"On":32,"Oa":5.27,"Od":0.88,"pd":12,"pm":20},"p":[[-38,{"n":4,"e":5448}],[-37,{"n":4.5,"e":5462}],[-36,{"n":5.5,"e":5473,"s":1}],[-35,{"n":5.5,"e":5478}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":6,"e":5498}],[-32,{"n":6,"e":5513}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":5,"e":5529}],[-29,{"n":6,"e":5538}],[-28,{"n":4.5,"e":5557}],[-27,{"n":5,"e":5558,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[-23,{"n":6,"e":5599}],[-19,{"n":5,"e":5640,"s":1}],[-17,{"n":6,"e":5658}],[-16,{"n":4,"e":5668}],[-15,{"n":5,"e":5678}],[-14,{"n":7,"e":5688}],[-13,{"n":4,"e":5698,"s":1}],[-12,{"n":4.5,"e":5715}],[-9,{"n":6,"e":5738}],[-7,{"n":5.5,"e":5758}],[-5,{"n":6,"e":5784}],[-4,{"n":6,"e":5788,"g":1}],[-11,{"n":4,"e":5718}],[-10,{"n":5,"e":5733,"s":1}],[5,{"n":4.5,"e":6888}],[4,{"n":4,"e":6898}],[3,{"n":6,"e":6908}],[2,{"n":5.5,"e":6916}],[1,{"n":7.5,"e":6926,"g":1}]],"fo":[[5518,[{"t":"Y"}]],[6888,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":23,"n":6}}],[4601,{"n":"Praet","f":"Dennis","fp":"MO","r":13,"c":29,"s":{"g":1,"s":23.5,"n":4,"a":5.88,"d":1.49,"Ss":4,"Sn":1,"Sa":4,"Og":2,"Os":141.5,"On":28,"Oa":5.05,"Od":0.98,"pm":28},"p":[[-38,{"n":5,"e":3933,"s":1}],[-37,{"n":5.5,"e":3944,"s":1}],[-35,{"n":4,"e":3959,"s":1}],[-34,{"n":4.5,"e":3968,"s":1}],[-33,{"n":5,"e":3980,"s":1}],[-32,{"n":3.5,"e":3993}],[-29,{"n":6.5,"e":4022}],[-28,{"n":4,"e":4034}],[-27,{"n":5,"e":4042}],[-26,{"n":5,"e":4057,"s":1}],[-25,{"n":4.5,"e":4061,"s":1}],[-23,{"n":5.5,"e":4080}],[-22,{"n":4.5,"e":4093,"g":1}],[-19,{"n":3,"e":4123}],[-18,{"n":5,"e":4132,"s":1}],[-17,{"n":4.5,"e":4142}],[-16,{"n":7,"e":4148}],[-15,{"n":5,"e":4160,"s":1}],[-13,{"n":5,"e":4181,"s":1}],[-12,{"n":5,"e":4196,"s":1}],[-11,{"n":5,"e":4202,"s":1}],[-9,{"n":5,"e":4223,"s":1}],[-8,{"n":5.5,"e":4230}],[-7,{"n":5.5,"e":4245}],[5,{"n":4,"e":6888}],[3,{"n":5.5,"e":6908}],[2,{"n":6.5,"e":6916,"g":1}],[1,{"n":7.5,"e":6926}]],"fo":[[6908,[{"t":"I"}]]]}],[5411,{"n":"Fitzhugh","f":"Ethan","fp":"MD","r":1,"c":29}],[5418,{"n":"Tavares","f":"Sidnei","fp":"MD","r":1,"c":29}],[5430,{"n":"Daley-Campbell","f":"Vontae","fp":"DL","r":1,"c":29}],[5444,{"n":"Muskwe","f":"Admiral","fp":"A","r":1,"c":29}],[7126,{"n":"Thomas","f":"Luke","fp":"DL","r":1,"c":29}],[7211,{"n":"Madavidua","f":"Wanya","fp":"MD","r":2,"c":29}],[7214,{"n":"Stolarczyk","f":"Jakub","fp":"G","r":1,"c":29}],[5,{"n":"Fabinho","f":"","fp":"MD","r":11,"c":21,"s":{"s":26.5,"n":5,"a":5.3,"d":1.86,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.86,"Og":2,"Os":143.5,"On":27,"Oa":5.31,"Od":1.19,"pd":1,"pm":26},"p":[[-32,{"n":4,"e":3994}],[-27,{"n":5.5,"e":4043}],[-26,{"n":5,"e":4054,"s":1}],[-18,{"n":5,"e":4137,"s":1}],[-24,{"n":5,"e":4073,"s":1}],[-12,{"n":6.5,"e":4190,"g":1}],[-10,{"n":6,"e":4211}],[-7,{"n":6,"e":4238}],[-37,{"n":4.5,"e":3941}],[-36,{"n":5,"e":3948}],[-35,{"n":6,"e":3961}],[-34,{"n":5,"e":3971,"s":1}],[-33,{"n":5.5,"e":3981}],[-31,{"n":8.5,"e":4001,"g":1}],[-30,{"n":6,"e":4011}],[-29,{"n":4.5,"e":4023}],[-28,{"n":3.5,"e":4036}],[-25,{"n":6,"e":4062}],[-23,{"n":5,"e":4081,"s":1}],[-13,{"n":4,"e":4182}],[-9,{"n":5.5,"e":4224}],[-8,{"n":5,"e":4230}],[5,{"n":6,"e":6887}],[4,{"n":2,"e":6895}],[3,{"n":6.5,"e":6907}],[2,{"n":6,"e":6914}],[1,{"n":6,"e":6932,"s":1}]],"fo":[[3971,[{"t":"Y"}]],[6887,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":21,"n":8}}],[605,{"n":"Mané","f":"Sadio","fp":"A","r":42,"c":21,"s":{"g":4,"s":28,"n":4,"a":7,"d":0.82,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":18,"Os":197,"On":33,"Oa":5.97,"Od":1.22,"pm":3,"pa":30},"p":[[-38,{"n":6,"e":3935,"g":1,"s":1}],[-37,{"n":6,"e":3941}],[-36,{"n":7,"e":3948,"g":1}],[-35,{"n":6,"e":3961}],[-34,{"n":5,"e":3971,"s":1}],[-33,{"n":6.5,"e":3981,"g":1}],[-32,{"n":3,"e":3994}],[-31,{"n":7,"e":4001,"g":1}],[-30,{"n":5,"e":4011}],[-29,{"n":7.5,"e":4023,"g":1}],[-28,{"n":3.5,"e":4036}],[-27,{"n":6.5,"e":4043,"g":1}],[-26,{"n":6,"e":4054,"g":1,"s":1}],[-24,{"n":5,"e":4073}],[-23,{"n":4.5,"e":4081}],[-22,{"n":5,"e":4096}],[-21,{"n":6,"e":4101,"g":1}],[-20,{"n":7,"e":4111,"g":1}],[-19,{"n":6,"e":4123}],[-17,{"n":6,"e":4143}],[-15,{"n":8,"e":4167,"g":1}],[-14,{"n":5.5,"e":4171}],[-13,{"n":6.5,"e":4182,"g":1}],[-12,{"n":6.5,"e":4190,"g":1}],[-11,{"n":7,"e":4199,"g":1}],[-10,{"n":6,"e":4211}],[-9,{"n":4,"e":4224}],[-8,{"n":7,"e":4230,"g":1}],[-7,{"n":4,"e":4238}],[5,{"n":7,"e":6887,"g":1}],[3,{"n":7,"e":6907,"g":1}],[2,{"n":8,"e":6914,"g":2}],[1,{"n":6,"e":6932}]],"fo":[[3971,[{"t":"Y"}]],[6887,[{"t":"Y"}]],[6907,[{"t":"Y"}]]],"a":{"m":43,"a":65,"M":103,"n":14}}],[606,{"n":"Roberto Firmino","f":"","fp":"A","r":17,"c":21,"s":{"s":25,"n":5,"a":5,"d":0.94,"Ss":25,"Sn":5,"Sa":5,"Sd":0.94,"Og":6,"Os":193,"On":37,"Oa":5.22,"Od":1.04,"pm":2,"pa":35},"p":[[-16,{"n":6,"e":4149}],[-38,{"n":5,"e":3935,"s":1}],[-37,{"n":7,"e":3941,"g":1}],[-36,{"n":4,"e":3948}],[-35,{"n":5,"e":3961}],[-34,{"n":5,"e":3971}],[-33,{"n":5,"e":3981,"s":1}],[-32,{"n":4,"e":3994}],[-31,{"n":5,"e":4001}],[-30,{"n":4,"e":4011}],[-29,{"n":4,"e":4023}],[-28,{"n":3,"e":4036}],[-27,{"n":5,"e":4043}],[-26,{"n":4.5,"e":4054}],[-25,{"n":7,"e":4062}],[-24,{"n":6.5,"e":4073,"g":1}],[-23,{"n":6,"e":4081}],[-22,{"n":7,"e":4096,"g":1}],[-21,{"n":4.5,"e":4101}],[-20,{"n":5,"e":4111}],[-19,{"n":8,"e":4123,"g":2}],[-18,{"n":5,"e":4137}],[-17,{"n":6,"e":4143}],[-15,{"n":5.5,"e":4167,"s":1}],[-14,{"n":5,"e":4171}],[-13,{"n":6.5,"e":4182,"g":1}],[-12,{"n":5,"e":4190}],[-11,{"n":5,"e":4199}],[-10,{"n":5,"e":4211}],[-9,{"n":5,"e":4224}],[-8,{"n":4.5,"e":4230}],[-7,{"n":5,"e":4238}],[5,{"n":4.5,"e":6887}],[4,{"n":4,"e":6895}],[3,{"n":5,"e":6907}],[2,{"n":6.5,"e":6914}],[1,{"n":5,"e":6932}]],"fo":[[6932,[{"t":"Y"}]]],"a":{"m":18,"a":29,"M":85,"n":14}}],[624,{"n":"Milner","f":"James","fp":"MD","r":12,"c":21,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Og":2,"Os":110.5,"On":20,"Oa":5.53,"Od":0.91,"pd":3,"pm":17},"p":[[-38,{"n":7,"e":3935}],[-37,{"n":5,"e":3941,"s":1}],[-34,{"n":5,"e":3971,"s":1}],[-30,{"n":4.5,"e":4011}],[-29,{"n":6.5,"e":4023}],[-26,{"n":5,"e":4054,"s":1}],[-21,{"n":6,"e":4101}],[-20,{"n":5,"e":4111,"s":1}],[-19,{"n":7,"e":4123,"g":1,"s":1}],[-17,{"n":6,"e":4143}],[-16,{"n":7,"e":4149}],[-15,{"n":4.5,"e":4167}],[-13,{"n":4.5,"e":4182,"s":1}],[-12,{"n":5,"e":4190,"s":1}],[-10,{"n":5,"e":4211,"s":1}],[-8,{"n":7,"e":4230,"g":1}],[-7,{"n":5,"e":4238,"s":1}],[4,{"n":5,"e":6895,"s":1}],[3,{"n":5,"e":6907,"s":1}],[2,{"n":5.5,"e":6914,"s":1}]],"fo":[[4011,[{"t":"I"},{"t":"Y"}]]]}],[630,{"n":"Wijnaldum","f":"Georginio","fp":"MO","r":19,"c":21,"s":{"s":24.5,"n":5,"a":4.9,"d":0.82,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":0.82,"Og":4,"Os":198,"On":36,"Oa":5.5,"Od":0.89,"pm":36},"p":[[-38,{"n":5.5,"e":3935}],[-37,{"n":7,"e":3941,"g":1}],[-36,{"n":6,"e":3948}],[-35,{"n":5,"e":3961}],[-34,{"n":5,"e":3971}],[-33,{"n":5.5,"e":3981,"s":1}],[-32,{"n":5,"e":3994}],[-31,{"n":6.5,"e":4001}],[-30,{"n":4.5,"e":4011,"s":1}],[-29,{"n":5.5,"e":4023}],[-28,{"n":4.5,"e":4036}],[-27,{"n":7,"e":4043,"g":1}],[-26,{"n":5,"e":4054}],[-25,{"n":6.5,"e":4062}],[-24,{"n":4.5,"e":4073}],[-23,{"n":5.5,"e":4081}],[-22,{"n":6,"e":4096}],[-21,{"n":5,"e":4101}],[-20,{"n":4.5,"e":4111}],[-19,{"n":7,"e":4123}],[-18,{"n":5.5,"e":4137}],[-17,{"n":4.5,"e":4143}],[-15,{"n":7,"e":4167,"g":1}],[-14,{"n":5.5,"e":4171}],[-13,{"n":5.5,"e":4182}],[-12,{"n":7,"e":4190}],[-11,{"n":5,"e":4199}],[-10,{"n":5,"e":4211}],[-9,{"n":5.5,"e":4224}],[-8,{"n":5,"e":4230}],[-7,{"n":7,"e":4238,"g":1}],[5,{"n":5,"e":6887,"s":1}],[4,{"n":3.5,"e":6895}],[3,{"n":5.5,"e":6907}],[2,{"n":5.5,"e":6914}],[1,{"n":5,"e":6932}]],"a":{"m":21,"a":33,"M":51,"n":9}}],[636,{"n":"Oxlade-Chamberlain","f":"Alex","fp":"MO","r":9,"c":21,"s":{"Og":4,"Oao":1,"Os":135,"On":26,"Oa":5.19,"Od":0.88,"pm":20,"pa":6},"p":[[-38,{"n":5,"e":3935}],[-37,{"n":6.5,"e":3941,"g":1,"s":1}],[-36,{"n":4.5,"e":3948}],[-35,{"n":5,"e":3961,"s":1}],[-34,{"n":5,"e":3971}],[-33,{"n":5,"e":3981}],[-32,{"n":4,"e":3994,"a":1,"s":1}],[-31,{"n":5,"e":4001,"s":1}],[-30,{"n":5,"e":4011,"s":1}],[-29,{"n":5.5,"e":4023}],[-28,{"n":3,"e":4036}],[-27,{"n":5.5,"e":4043,"s":1}],[-26,{"n":5,"e":4054}],[-25,{"n":7,"e":4062,"g":1}],[-24,{"n":5,"e":4073}],[-23,{"n":6,"e":4081}],[-22,{"n":5.5,"e":4096}],[-18,{"n":7,"e":4137,"g":1}],[-17,{"n":4.5,"e":4143,"s":1}],[-16,{"n":6,"e":4149,"g":1}],[-14,{"n":6,"e":4171}],[-13,{"n":4,"e":4182}],[-12,{"n":5,"e":4190,"s":1}],[-11,{"n":5,"e":4199,"s":1}],[-9,{"n":5,"e":4224,"s":1}],[-7,{"n":5,"e":4238,"s":1}]]}],[644,{"n":"Henderson","f":"Jordan","fp":"MD","r":12,"c":21,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":4,"Os":164,"On":28,"Oa":5.86,"Od":1.08,"pm":28},"p":[[-34,{"n":7,"e":3971,"g":1}],[-33,{"n":5,"e":3981,"s":1}],[-32,{"n":5,"e":3994}],[-31,{"n":5.5,"e":4001}],[-30,{"n":5,"e":4011}],[-26,{"n":5.5,"e":4054}],[-25,{"n":8,"e":4062,"g":1}],[-24,{"n":7,"e":4073,"g":1}],[-23,{"n":6,"e":4081}],[-22,{"n":5,"e":4096}],[-21,{"n":6.5,"e":4101}],[-20,{"n":5,"e":4111}],[-19,{"n":7.5,"e":4123}],[-18,{"n":7,"e":4137}],[-17,{"n":4.5,"e":4143}],[-16,{"n":8,"e":4149}],[-15,{"n":6,"e":4167,"s":1}],[-14,{"n":5.5,"e":4171}],[-13,{"n":5.5,"e":4182}],[-12,{"n":6,"e":4190}],[-11,{"n":7,"e":4199}],[-10,{"n":7,"e":4211,"g":1}],[-9,{"n":5,"e":4224}],[-8,{"n":5,"e":4230,"s":1}],[-7,{"n":5,"e":4238}],[5,{"n":5.5,"e":6887}],[2,{"n":4,"e":6914}],[1,{"n":5,"e":6932}]],"fo":[[3971,[{"t":"I"}]],[3994,[{"t":"Y"}]]],"a":{"m":14,"a":18,"M":30,"n":10}}],[668,{"n":"van Dijk","f":"Virgil","fp":"DC","r":28,"c":21,"s":{"g":1,"s":23,"n":5,"a":4.6,"d":1.56,"Sg":1,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.56,"Og":5,"Os":208.5,"On":37,"Oa":5.64,"Od":1.12,"pd":37},"p":[[-38,{"n":7,"e":3935,"g":1}],[-37,{"n":4,"e":3941}],[-36,{"n":3.5,"e":3948}],[-35,{"n":5.5,"e":3961}],[-34,{"n":6,"e":3971}],[-33,{"n":6.5,"e":3981}],[-32,{"n":4.5,"e":3994}],[-31,{"n":6.5,"e":4001}],[-30,{"n":6,"e":4011}],[-29,{"n":7,"e":4023}],[-28,{"n":3.5,"e":4036}],[-27,{"n":6,"e":4043}],[-26,{"n":6,"e":4054}],[-25,{"n":6,"e":4062}],[-24,{"n":5,"e":4073}],[-23,{"n":7.5,"e":4081,"g":1}],[-22,{"n":5.5,"e":4096}],[-21,{"n":6,"e":4101}],[-20,{"n":6,"e":4111}],[-19,{"n":6,"e":4123}],[-18,{"n":6,"e":4137}],[-17,{"n":6,"e":4143}],[-16,{"n":6,"e":4149}],[-15,{"n":5,"e":4167}],[-14,{"n":8,"e":4171,"g":2}],[-13,{"n":6,"e":4182}],[-12,{"n":6,"e":4190}],[-11,{"n":5.5,"e":4199}],[-10,{"n":5.5,"e":4211}],[-9,{"n":5.5,"e":4224}],[-8,{"n":6,"e":4230}],[-7,{"n":6,"e":4238}],[5,{"n":4.5,"e":6887}],[4,{"n":2,"e":6895}],[3,{"n":5.5,"e":6907}],[2,{"n":6,"e":6914}],[1,{"n":5,"e":6932,"g":1}]],"fo":[[6887,[{"t":"I"}]],[6895,[{"t":"Y"}]]],"a":{"m":29,"a":46,"M":65,"n":18}}],[672,{"n":"Shaqiri","f":"Xherdan","fp":"A","r":2,"c":21,"s":{"Og":1,"Os":25.5,"On":5,"Oa":5.1,"Od":1.08,"pm":2,"pa":3},"p":[[-36,{"n":4.5,"e":3948,"s":1}],[-22,{"n":4.5,"e":4096,"s":1}],[-17,{"n":5,"e":4143}],[-16,{"n":4.5,"e":4149,"s":1}],[-15,{"n":7,"e":4167,"g":1}]]}],[681,{"n":"Origi","f":"Divock","fp":"A","r":7,"c":21,"s":{"Og":3,"Os":113.5,"On":24,"Oa":4.73,"Od":0.81,"pa":24},"p":[[-38,{"n":6,"e":3935,"g":1}],[-37,{"n":4.5,"e":3941,"s":1}],[-36,{"n":4.5,"e":3948,"s":1}],[-33,{"n":4,"e":3981}],[-32,{"n":5,"e":3994,"s":1}],[-30,{"n":4.5,"e":4011,"s":1}],[-29,{"n":4.5,"e":4023,"s":1}],[-28,{"n":4.5,"e":4036,"s":1}],[-24,{"n":4.5,"e":4073,"s":1}],[-23,{"n":4.5,"e":4081,"s":1}],[-22,{"n":5,"e":4096,"s":1}],[-21,{"n":4.5,"e":4101,"s":1}],[-20,{"n":4.5,"e":4111,"s":1}],[-19,{"n":4,"e":4123,"s":1}],[-18,{"n":6,"e":4137}],[-17,{"n":5,"e":4143,"s":1}],[-15,{"n":7.5,"e":4167,"g":2}],[-14,{"n":4,"e":4171,"s":1}],[-13,{"n":4,"e":4182,"s":1}],[-11,{"n":5,"e":4199,"s":1}],[-10,{"n":4,"e":4211,"s":1}],[-9,{"n":4,"e":4224}],[-8,{"n":5,"e":4230,"s":1}],[-7,{"n":4.5,"e":4238,"s":1}]],"fo":[[4011,[{"t":"Y"}]]]}],[766,{"n":"Matip","f":"Joel","fp":"DC","r":7,"c":21,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":31,"On":6,"Oa":5.17,"Od":0.52,"pd":6},"p":[[-30,{"n":5.5,"e":4011}],[-27,{"n":5,"e":4043,"s":1}],[-9,{"n":5,"e":4224}],[-7,{"n":6,"e":4238}],[5,{"n":4.5,"e":6887}],[1,{"n":5,"e":6932,"s":1}]],"fo":[[4011,[{"t":"I"}]]]}],[776,{"n":"Robertson","f":"Andrew","fp":"DL","r":21,"c":21,"s":{"g":1,"s":24.5,"n":5,"a":4.9,"d":1.39,"Sg":1,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.39,"Og":3,"Os":186,"On":35,"Oa":5.31,"Od":1.02,"pd":35},"p":[[-38,{"n":5,"e":3935}],[-37,{"n":6,"e":3941}],[-36,{"n":5,"e":3948}],[-35,{"n":6,"e":3961,"g":1}],[-34,{"n":6.5,"e":3971,"s":1}],[-33,{"n":5,"e":3981}],[-32,{"n":3,"e":3994}],[-31,{"n":5.5,"e":4001}],[-28,{"n":3.5,"e":4036}],[-27,{"n":5,"e":4043}],[-26,{"n":6,"e":4054}],[-25,{"n":6,"e":4062}],[-24,{"n":4.5,"e":4073}],[-23,{"n":5,"e":4081}],[-22,{"n":5,"e":4096}],[-21,{"n":7,"e":4101}],[-20,{"n":4,"e":4111}],[-19,{"n":7,"e":4123}],[-18,{"n":5.5,"e":4137}],[-17,{"n":5,"e":4143,"s":1}],[-16,{"n":5.5,"e":4149}],[-15,{"n":4,"e":4167}],[-14,{"n":5,"e":4171}],[-13,{"n":6,"e":4182}],[-12,{"n":5.5,"e":4190}],[-11,{"n":6.5,"e":4199,"g":1}],[-10,{"n":6,"e":4211}],[-9,{"n":6.5,"e":4224}],[-8,{"n":5.5,"e":4230}],[-7,{"n":5.5,"e":4238}],[5,{"n":5.5,"e":6887}],[4,{"n":2.5,"e":6895}],[3,{"n":6,"e":6907,"g":1}],[2,{"n":5.5,"e":6914}],[1,{"n":5,"e":6932}]],"fo":[[3981,[{"t":"Y"}]]],"a":{"m":22,"a":30,"M":51,"n":16}}],[901,{"n":"Adrián","f":"","fp":"G","r":10,"c":21,"s":{"s":5.5,"n":2,"a":2.75,"d":2.47,"Ss":5.5,"Sn":2,"Sa":2.75,"Sd":2.47,"Os":30.5,"On":7,"Oa":4.36,"Od":1.63,"pg":7},"p":[[-29,{"n":5.5,"e":4023}],[-15,{"n":5,"e":4167}],[-14,{"n":4,"e":4171,"s":1}],[-8,{"n":4.5,"e":4230}],[-7,{"n":6,"e":4238}],[5,{"n":4.5,"e":6887}],[4,{"n":1,"e":6895}]],"a":{"m":10,"a":13,"M":14,"n":5}}],[995,{"n":"Alexander-Arnold","f":"Trent","fp":"DL","r":19,"c":21,"s":{"s":23,"n":5,"a":4.6,"d":1.52,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.52,"Og":3,"Os":190.5,"On":37,"Oa":5.15,"Od":1.2,"pd":37},"p":[[-38,{"n":5,"e":3935,"s":1}],[-37,{"n":7,"e":3941,"g":1}],[-36,{"n":4.5,"e":3948}],[-35,{"n":5,"e":3961,"s":1}],[-34,{"n":4.5,"e":3971}],[-33,{"n":5,"e":3981}],[-32,{"n":4,"e":3994}],[-31,{"n":7,"e":4001,"g":1}],[-30,{"n":5,"e":4011}],[-29,{"n":5,"e":4023}],[-28,{"n":2,"e":4036}],[-27,{"n":6.5,"e":4043}],[-26,{"n":5,"e":4054}],[-25,{"n":4.5,"e":4062}],[-24,{"n":5,"e":4073}],[-23,{"n":6,"e":4081}],[-22,{"n":6,"e":4096}],[-21,{"n":5.5,"e":4101}],[-20,{"n":5,"e":4111}],[-19,{"n":8.5,"e":4123,"g":1}],[-18,{"n":4.5,"e":4137}],[-17,{"n":4.5,"e":4143}],[-16,{"n":6,"e":4149,"s":1}],[-15,{"n":5,"e":4167}],[-14,{"n":6.5,"e":4171}],[-13,{"n":5,"e":4182}],[-12,{"n":4.5,"e":4190}],[-11,{"n":6.5,"e":4199}],[-10,{"n":5,"e":4211}],[-9,{"n":4.5,"e":4224}],[-8,{"n":4.5,"e":4230}],[-7,{"n":5,"e":4238}],[5,{"n":5,"e":6887}],[4,{"n":3,"e":6895}],[3,{"n":6,"e":6907}],[2,{"n":6,"e":6914}],[1,{"n":3,"e":6932}]],"fo":[[3948,[{"t":"Y"}]],[6907,[{"t":"Y"}]]],"a":{"m":21,"a":33,"M":66,"n":12}}],[1096,{"n":"Gomez","f":"Joseph","fp":"DC","r":10,"c":21,"s":{"s":15.5,"n":4,"a":3.88,"d":1.44,"Ss":11.5,"Sn":3,"Sa":3.83,"Sd":1.76,"Os":150.5,"On":30,"Oa":5.02,"Od":1.06,"pd":30},"p":[[-38,{"n":6,"e":3935}],[-37,{"n":4,"e":3941}],[-36,{"n":4,"e":3948}],[-35,{"n":4.5,"e":3961}],[-34,{"n":4.5,"e":3971}],[-33,{"n":5.5,"e":3981}],[-32,{"n":2,"e":3994}],[-31,{"n":6,"e":4001}],[-30,{"n":5,"e":4011,"s":1}],[-29,{"n":5,"e":4023}],[-27,{"n":4.5,"e":4043}],[-26,{"n":5.5,"e":4054}],[-25,{"n":6,"e":4062}],[-24,{"n":5.5,"e":4073}],[-23,{"n":6,"e":4081}],[-22,{"n":5.5,"e":4096}],[-21,{"n":6,"e":4101}],[-20,{"n":6,"e":4111}],[-19,{"n":6,"e":4123}],[-18,{"n":5.5,"e":4137}],[-17,{"n":6,"e":4143}],[-16,{"n":5.5,"e":4149}],[-15,{"n":5,"e":4167,"s":1}],[-13,{"n":5.5,"e":4182,"s":1}],[-12,{"n":5,"e":4190,"s":1}],[-10,{"n":5,"e":4211,"s":1}],[5,{"n":4,"e":6887,"s":1}],[4,{"n":2,"e":6895}],[3,{"n":5.5,"e":6907}],[1,{"n":4,"e":6932}]],"fo":[[3941,[{"t":"Y"}]],[3961,[{"t":"Y"}]],[3971,[{"t":"Y"}]],[3994,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":16,"n":11}}],[1278,{"n":"Mohamed Salah","f":"","fp":"A","r":43,"c":21,"s":{"g":6,"s":34,"n":5,"a":6.8,"d":0.57,"Sg":6,"Ss":34,"Sn":5,"Sa":6.8,"Sd":0.57,"Og":21,"Os":197,"On":33,"Oa":5.97,"Od":1.36,"pa":33},"p":[[-38,{"n":5,"e":3935,"s":1}],[-37,{"n":5.5,"e":3941}],[-36,{"n":4,"e":3948}],[-35,{"n":5.5,"e":3961}],[-34,{"n":8,"e":3971,"g":2}],[-33,{"n":6,"e":3981}],[-32,{"n":4,"e":3994}],[-31,{"n":7,"e":4001,"g":1}],[-29,{"n":7,"e":4023,"g":1}],[-28,{"n":3,"e":4036}],[-27,{"n":6.5,"e":4043,"g":1}],[-26,{"n":4,"e":4054}],[-25,{"n":8,"e":4062,"g":2}],[-24,{"n":6,"e":4073}],[-23,{"n":7,"e":4081,"g":1}],[-22,{"n":6,"e":4096}],[-21,{"n":7.5,"e":4101,"g":1}],[-20,{"n":4,"e":4111}],[-19,{"n":5,"e":4123}],[-18,{"n":7,"e":4137,"g":1}],[-17,{"n":7.5,"e":4143,"g":2}],[-16,{"n":7,"e":4149,"g":1}],[-14,{"n":4.5,"e":4171}],[-12,{"n":7,"e":4190,"g":1}],[-11,{"n":4,"e":4199}],[-10,{"n":6.5,"e":4211,"g":1}],[-8,{"n":6,"e":4230}],[-7,{"n":4.5,"e":4238}],[5,{"n":7,"e":6887,"g":1}],[4,{"n":7,"e":6895,"g":2}],[3,{"n":6.5,"e":6907}],[2,{"n":6,"e":6914}],[1,{"n":7.5,"e":6932,"g":3}]],"a":{"m":44,"a":78,"M":143,"n":12}}],[2546,{"n":"Jones","f":"Curtis","fp":"MO","r":6,"c":21,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Og":1,"Os":40,"On":8,"Oa":5,"Od":0.71,"pm":8},"p":[[-38,{"n":5,"e":3935,"s":1}],[-37,{"n":5,"e":3941,"s":1}],[-35,{"n":5,"e":3961}],[-33,{"n":6.5,"e":3981,"g":1,"s":1}],[-18,{"n":5,"e":4137,"s":1}],[-16,{"n":4.5,"e":4149,"s":1}],[4,{"n":5,"e":6895,"s":1}],[1,{"n":4,"e":6932,"s":1}]]}],[2551,{"n":"Phillips","f":"Nathaniel","fp":"DC","r":1,"c":21}],[2556,{"n":"Diogo Jota","f":"","fp":"MO","r":21,"c":21,"s":{"g":1,"s":14,"n":3,"a":4.67,"d":1.53,"Sg":1,"Ss":14,"Sn":3,"Sa":4.67,"Sd":1.53,"Og":7,"Os":155.5,"On":31,"Oa":5.02,"Od":1.11,"pm":5,"pa":26},"p":[[-34,{"n":4,"e":3975}],[-31,{"n":4.5,"e":4007}],[-30,{"n":5,"e":4017}],[-28,{"n":7,"e":4035,"g":1}],[-25,{"n":5,"e":4063}],[-19,{"n":4.5,"e":4127}],[-18,{"n":4,"e":4134}],[-17,{"n":5,"e":4147}],[-15,{"n":5,"e":4162}],[-14,{"n":4.5,"e":4174}],[-13,{"n":6.5,"e":4180}],[-10,{"n":5,"e":4213}],[-9,{"n":5,"e":4227,"s":1}],[-38,{"n":4,"e":3930}],[-37,{"n":5,"e":3947,"s":1}],[-36,{"n":4.5,"e":3949}],[-35,{"n":6.5,"e":3967,"g":1,"s":1}],[-33,{"n":4,"e":3987,"s":1}],[-32,{"n":4,"e":3989}],[-29,{"n":4,"e":4027}],[-27,{"n":8,"e":4047,"g":2}],[-26,{"n":5,"e":4057}],[-24,{"n":5,"e":4073,"s":1}],[-21,{"n":5,"e":4106,"s":1}],[-20,{"n":4,"e":4111}],[-16,{"n":7.5,"e":4150,"g":2}],[-12,{"n":4.5,"e":4195}],[-11,{"n":5.5,"e":4198}],[5,{"n":5,"e":6887,"s":1}],[4,{"n":3,"e":6895}],[3,{"n":6,"e":6907,"g":1,"s":1}]],"fo":[[3930,[{"t":"Y"}]]],"a":{"m":22,"a":25,"M":33,"n":11}}],[2565,{"n":"Keita","f":"Naby","fp":"MD","r":11,"c":21,"s":{"s":18.5,"n":4,"a":4.63,"d":0.85,"Og":2,"Os":123,"On":22,"Oa":5.59,"Od":1.08,"pm":22},"p":[[-38,{"n":5.5,"e":3935}],[-37,{"n":7,"e":3941,"g":1}],[-36,{"n":5.5,"e":3948,"s":1}],[-35,{"n":5,"e":3961,"s":1}],[-34,{"n":7,"e":3971}],[-33,{"n":6.5,"e":3981}],[-32,{"n":5.5,"e":3994,"s":1}],[-31,{"n":5,"e":4001,"s":1}],[-30,{"n":5,"e":4011}],[-27,{"n":5,"e":4043}],[-26,{"n":6,"e":4054}],[-25,{"n":6,"e":4062,"s":1}],[-20,{"n":5,"e":4111,"s":1}],[-19,{"n":7,"e":4123}],[-18,{"n":5,"e":4137,"s":1}],[-16,{"n":8.5,"e":4149,"g":1}],[-11,{"n":5,"e":4199,"s":1}],[-9,{"n":5,"e":4224,"s":1}],[4,{"n":3.5,"e":6895}],[3,{"n":5,"e":6907}],[2,{"n":5.5,"e":6914}],[1,{"n":4.5,"e":6932}]],"a":{"m":12,"a":14,"M":15,"n":15}}],[2591,{"n":"Alisson","f":"","fp":"G","r":10,"c":21,"s":{"s":17.5,"n":3,"a":5.83,"d":2.02,"Os":167,"On":31,"Oa":5.39,"Od":1.15,"pg":31},"p":[[-38,{"n":4.5,"e":3935}],[-37,{"n":4,"e":3941}],[-36,{"n":3,"e":3948}],[-35,{"n":5,"e":3961}],[-34,{"n":4.5,"e":3971}],[-33,{"n":7,"e":3981}],[-32,{"n":4,"e":3994}],[-31,{"n":5,"e":4001}],[-30,{"n":6,"e":4011}],[-28,{"n":3.5,"e":4036}],[-27,{"n":4.5,"e":4043}],[-26,{"n":5.5,"e":4054}],[-25,{"n":6.5,"e":4062}],[-24,{"n":6,"e":4073}],[-23,{"n":7,"e":4081}],[-22,{"n":6.5,"e":4096}],[-21,{"n":6,"e":4101}],[-20,{"n":6,"e":4111}],[-19,{"n":6,"e":4123}],[-18,{"n":6.5,"e":4137}],[-17,{"n":6,"e":4143}],[-16,{"n":5.5,"e":4149}],[-14,{"n":4,"e":4171}],[-13,{"n":6,"e":4182}],[-12,{"n":6,"e":4190}],[-11,{"n":5,"e":4199}],[-10,{"n":5.5,"e":4211}],[-9,{"n":4.5,"e":4224}],[3,{"n":5.5,"e":6907}],[2,{"n":8,"e":6914}],[1,{"n":4,"e":6932}]]}],[3120,{"n":"Kelleher","f":"Caoimhin","fp":"G","r":1,"c":21}],[3639,{"n":"van den Berg","f":"Sepp","fp":"DC","r":1,"c":21}],[3641,{"n":"Larouci","f":"Yasser","fp":"DL","r":1,"c":21}],[3642,{"n":"Jaros","f":"Vitezslav","fp":"G","r":1,"c":21}],[6389,{"n":"Minamino","f":"Takumi","fp":"A","r":8,"c":21,"s":{"s":13.5,"n":3,"a":4.5,"Os":57,"On":13,"Oa":4.38,"Od":0.42,"pa":13},"p":[[-38,{"n":5,"e":3935}],[-37,{"n":4.5,"e":3941,"s":1}],[-36,{"n":4.5,"e":3948,"s":1}],[-34,{"n":4,"e":3971,"s":1}],[-32,{"n":4,"e":3994,"s":1}],[-31,{"n":4.5,"e":4001,"s":1}],[-30,{"n":3.5,"e":4011}],[-28,{"n":4.5,"e":4036,"s":1}],[-25,{"n":4,"e":4062,"s":1}],[-24,{"n":5,"e":4073,"s":1}],[4,{"n":4.5,"e":6895,"s":1}],[3,{"n":4.5,"e":6907,"s":1}],[2,{"n":4.5,"e":6914,"s":1}]]}],[6421,{"n":"Neco Williams","f":"","fp":"DL","r":7,"c":21,"s":{"Os":30.5,"On":6,"Oa":5.08,"Od":0.66,"pd":6},"p":[[-38,{"n":5,"e":3935}],[-35,{"n":5.5,"e":3961}],[-34,{"n":4,"e":3971}],[-33,{"n":5,"e":3981,"s":1}],[-32,{"n":5,"e":3994,"s":1}],[-31,{"n":6,"e":4001,"s":1}]],"fo":[[3971,[{"t":"Y"}]]]}],[6422,{"n":"Longstaff","f":"Luis","fp":"MO","r":1,"c":21}],[6423,{"n":"Dixon-Bonner","f":"Elijah","fp":"MD","r":1,"c":21}],[6466,{"n":"Stewart","f":"Layton","fp":"A","r":1,"c":21}],[6467,{"n":"Hill","f":"Thomas","fp":"MO","r":1,"c":21}],[6474,{"n":"Bearne","f":"Jack","fp":"MO","r":1,"c":21}],[6484,{"n":"Clarkson","f":"Leighton","fp":"MD","r":1,"c":21}],[6490,{"n":"Winterbottom","f":"Ben","fp":"G","r":1,"c":21}],[6499,{"n":"Clayton","f":"Thomas","fp":"DC","r":1,"c":21}],[6537,{"n":"Koumetio","f":"Billy","fp":"DC","r":1,"c":21}],[6541,{"n":"Norris","f":"James","fp":"DL","r":1,"c":21}],[6571,{"n":"Cain","f":"Jake","fp":"MO","r":1,"c":21}],[6572,{"n":"Millar","f":"Liam","fp":"A","r":1,"c":21}],[6573,{"n":"Hardy","f":"Joseph","fp":"A","r":1,"c":21}],[6885,{"n":"Tsimikas","f":"Konstantinos","fp":"DL","r":8,"c":21}],[7327,{"n":"Thiago","f":"","fp":"MD","r":14,"c":21,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":6,"On":1,"Oa":6,"pm":1},"p":[[5,{"n":6,"e":6887}]],"a":{"m":15,"a":22,"M":53,"n":8}}],[7360,{"n":"Rhys Williams","f":"","fp":"DC","r":1,"c":21}],[14,{"n":"Mendy","f":"Benjamin","fp":"DL","r":11,"c":40,"s":{"s":11.5,"n":3,"a":3.83,"d":0.76,"Os":103.5,"On":21,"Oa":4.93,"Od":1.05,"pd":20,"pm":1},"p":[[2,{"n":4.5,"e":6920}],[-36,{"n":5,"e":3954}],[-29,{"n":4,"e":4024,"s":1}],[-26,{"n":6,"e":4053}],[-14,{"n":4,"e":4172}],[-35,{"n":6,"e":3960}],[-32,{"n":6.5,"e":3994}],[-31,{"n":3.5,"e":3999}],[-28,{"n":6,"e":4032}],[-27,{"n":5,"e":4042}],[-23,{"n":6,"e":4082}],[-22,{"n":5.5,"e":4088}],[-21,{"n":5,"e":4102}],[-19,{"n":3,"e":4127}],[-18,{"n":6,"e":4132}],[-17,{"n":5,"e":4138}],[-13,{"n":4.5,"e":4184}],[-10,{"n":6,"e":4212}],[-9,{"n":5,"e":4221}],[4,{"n":4,"e":7494}],[3,{"n":3,"e":6908}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3994,[{"t":"Y"}]],[6920,[{"t":"Y"}]],[7494,[{"t":"Y"}]]],"a":{"m":12,"a":13,"M":17,"n":7}}],[25,{"n":"Bernardo Silva","f":"","fp":"MO","r":22,"c":40,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":2,"Os":169,"On":31,"Oa":5.45,"Od":1.06,"pm":22,"pa":9},"p":[[-34,{"n":6,"e":3974,"s":1}],[-33,{"n":5.5,"e":3985}],[-25,{"n":5,"e":4065,"s":1}],[-24,{"n":5,"e":4072,"s":1}],[-20,{"n":5,"e":4112}],[-16,{"n":4,"e":4152}],[-11,{"n":6,"e":4204}],[-8,{"n":4.5,"e":4231,"s":1}],[-38,{"n":5,"e":3934,"s":1}],[-37,{"n":6.5,"e":3946}],[-36,{"n":4,"e":3954}],[-35,{"n":8,"e":3960,"g":1}],[-32,{"n":4.5,"e":3994,"s":1}],[-31,{"n":4,"e":3999}],[-30,{"n":7.5,"e":4012}],[-29,{"n":4,"e":4024}],[-28,{"n":5.5,"e":4032,"s":1}],[-27,{"n":5.5,"e":4042}],[-26,{"n":6,"e":4053}],[-23,{"n":5,"e":4082}],[-19,{"n":4.5,"e":4127}],[-18,{"n":5.5,"e":4132}],[-17,{"n":5.5,"e":4138,"s":1}],[-15,{"n":7,"e":4159}],[-14,{"n":4.5,"e":4172,"s":1}],[-12,{"n":7,"e":4190,"g":1}],[-10,{"n":6,"e":4212}],[-9,{"n":7,"e":4221}],[-7,{"n":5,"e":4246,"s":1}],[5,{"n":5,"e":6889}],[4,{"n":5.5,"e":7494,"s":1}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":27,"a":39,"M":65,"n":8}}],[588,{"n":"Agüero","f":"Sergio","fp":"A","r":14,"c":40,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":8,"Os":100.5,"On":19,"Oa":5.29,"Od":1.34,"pa":19},"p":[[-30,{"n":6,"e":4012}],[-29,{"n":3.5,"e":4024}],[-28,{"n":6,"e":4032,"s":1}],[-27,{"n":4,"e":4042}],[-26,{"n":5.5,"e":4053}],[-25,{"n":5,"e":4065}],[-24,{"n":6,"e":4072,"g":1,"s":1}],[-23,{"n":7,"e":4082,"g":2}],[-22,{"n":9,"e":4088,"g":3}],[-20,{"n":6.5,"e":4112,"g":1}],[-19,{"n":4.5,"e":4127}],[-18,{"n":4,"e":4132,"s":1}],[-13,{"n":4.5,"e":4184}],[-12,{"n":4,"e":4190}],[-11,{"n":6,"e":4204,"g":1}],[-10,{"n":4.5,"e":4212,"s":1}],[-8,{"n":4,"e":4231}],[-7,{"n":5.5,"e":4246,"s":1}],[5,{"n":5,"e":6889}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[4012,[{"t":"I"}]]],"a":{"m":21,"a":42,"M":76,"n":13}}],[593,{"n":"De Bruyne","f":"Kevin","fp":"MO","r":39,"c":40,"s":{"g":1,"s":18,"n":3,"a":6,"d":2,"Og":12,"Os":207.5,"On":32,"Oa":6.48,"Od":1.28,"pm":32},"p":[[-38,{"n":9,"e":3934,"g":2}],[-37,{"n":8,"e":3946}],[-35,{"n":6,"e":3960}],[-34,{"n":7,"e":3974}],[-33,{"n":5,"e":3985,"s":1}],[-32,{"n":8,"e":3994,"g":1}],[-31,{"n":7,"e":3999,"g":1}],[-30,{"n":5,"e":4012,"s":1}],[-28,{"n":8,"e":4032,"g":1}],[-27,{"n":5,"e":4042}],[-26,{"n":8,"e":4053,"g":1}],[-25,{"n":4.5,"e":4065}],[-24,{"n":6.5,"e":4072}],[-23,{"n":6.5,"e":4082}],[-22,{"n":6.5,"e":4088}],[-21,{"n":4.5,"e":4102}],[-20,{"n":7.5,"e":4112,"g":1}],[-19,{"n":6,"e":4127}],[-18,{"n":7,"e":4132}],[-17,{"n":8,"e":4138,"g":2}],[-16,{"n":6,"e":4152}],[-15,{"n":6,"e":4159}],[-14,{"n":8,"e":4172,"g":1}],[-13,{"n":6.5,"e":4184,"g":1}],[-12,{"n":5,"e":4190}],[-11,{"n":6.5,"e":4204}],[-10,{"n":7,"e":4212}],[-9,{"n":5,"e":4221}],[-7,{"n":6.5,"e":4246}],[4,{"n":6,"e":7494}],[3,{"n":4,"e":6908}],[2,{"n":8,"e":6920,"g":1}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3999,[{"t":"Y"}]]],"a":{"m":60,"a":72,"M":103,"n":14}}],[594,{"n":"Sterling","f":"Raheem","fp":"A","r":35,"c":40,"s":{"g":2,"s":21,"n":4,"a":5.25,"d":1.55,"Sg":2,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.55,"Og":17,"Os":178,"On":32,"Oa":5.56,"Od":1.45,"pm":6,"pa":26},"p":[[-38,{"n":7,"e":3934,"g":1}],[-37,{"n":8,"e":3946,"g":2}],[-36,{"n":4.5,"e":3954,"s":1}],[-35,{"n":8.5,"e":3960,"g":3}],[-34,{"n":7,"e":3974,"g":1,"s":1}],[-33,{"n":3.5,"e":3985}],[-32,{"n":8,"e":3994,"g":1}],[-31,{"n":4,"e":3999}],[-29,{"n":3,"e":4024}],[-28,{"n":7,"e":4032,"g":1}],[-25,{"n":4,"e":4065}],[-24,{"n":5,"e":4072}],[-23,{"n":4.5,"e":4082}],[-21,{"n":4.5,"e":4102,"s":1}],[-20,{"n":5,"e":4112}],[-19,{"n":6.5,"e":4127,"g":2}],[-18,{"n":6,"e":4132}],[-17,{"n":7,"e":4138,"g":1}],[-16,{"n":5,"e":4152}],[-15,{"n":5,"e":4159}],[-14,{"n":6,"e":4172,"g":1}],[-13,{"n":5,"e":4184}],[-12,{"n":5,"e":4190}],[-11,{"n":4,"e":4204}],[-10,{"n":7,"e":4212,"g":1}],[-9,{"n":6.5,"e":4221}],[-8,{"n":4.5,"e":4231}],[-7,{"n":6,"e":4246,"g":1}],[5,{"n":6,"e":6889,"g":1}],[4,{"n":6.5,"e":7494,"g":1}],[3,{"n":3,"e":6908}],[2,{"n":5.5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":38,"a":55,"M":102,"n":13}}],[603,{"n":"Mahrez","f":"Riyad","fp":"MO","r":31,"c":40,"s":{"g":1,"s":14,"n":3,"a":4.67,"d":1.04,"Sg":1,"Ss":14,"Sn":3,"Sa":4.67,"Sd":1.04,"Og":11,"Os":174,"On":30,"Oa":5.8,"Od":1.32,"pm":4,"pa":26},"p":[[-38,{"n":7.5,"e":3934,"g":1,"s":1}],[-37,{"n":4,"e":3946,"s":1}],[-36,{"n":4.5,"e":3954,"s":1}],[-35,{"n":6.5,"e":3960}],[-34,{"n":7,"e":3974,"g":1}],[-33,{"n":4,"e":3985}],[-32,{"n":5,"e":3994,"s":1}],[-31,{"n":6,"e":3999}],[-30,{"n":6.5,"e":4012,"g":2}],[-29,{"n":5,"e":4024,"s":1}],[-28,{"n":6,"e":4032}],[-27,{"n":7,"e":4042}],[-25,{"n":4.5,"e":4065}],[-24,{"n":6.5,"e":4072}],[-23,{"n":4.5,"e":4082,"s":1}],[-22,{"n":8.5,"e":4088,"g":2}],[-21,{"n":6.5,"e":4102}],[-20,{"n":7,"e":4112}],[-19,{"n":6,"e":4127}],[-18,{"n":7.5,"e":4132,"g":1}],[-17,{"n":4.5,"e":4138,"s":1}],[-16,{"n":6,"e":4152,"s":1}],[-15,{"n":6.5,"e":4159,"g":1,"s":1}],[-14,{"n":4.5,"e":4172}],[-13,{"n":6.5,"e":4184,"g":1}],[-8,{"n":4,"e":4231}],[-7,{"n":8,"e":4246,"g":1}],[5,{"n":5,"e":6889}],[4,{"n":3.5,"e":7494}],[3,{"n":5.5,"e":6908,"g":1}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":37,"a":46,"M":58,"n":10}}],[639,{"n":"Fernandinho","f":"","fp":"DC","r":12,"c":40,"s":{"s":19,"n":4,"a":4.75,"d":0.65,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.65,"Oao":1,"Os":160,"On":32,"Oa":5,"Od":0.81,"pd":23,"pm":9},"p":[[-38,{"n":5.5,"e":3934,"s":1}],[-36,{"n":5,"e":3954}],[-35,{"n":5,"e":3960,"s":1}],[-33,{"n":4,"e":3985}],[-31,{"n":4.5,"e":3999}],[-30,{"n":6,"e":4012}],[-29,{"n":4,"e":4024}],[-28,{"n":5,"e":4032,"s":1}],[-27,{"n":6,"e":4042}],[-25,{"n":4,"e":4065}],[-24,{"n":6,"e":4072}],[-23,{"n":3,"e":4082,"a":1}],[-22,{"n":5,"e":4088}],[-21,{"n":6,"e":4102}],[-20,{"n":5.5,"e":4112}],[-19,{"n":4,"e":4127}],[-18,{"n":5,"e":4132}],[-17,{"n":6,"e":4138}],[-16,{"n":5,"e":4152}],[-15,{"n":5.5,"e":4159}],[-14,{"n":4,"e":4172}],[-13,{"n":6,"e":4184}],[-12,{"n":4.5,"e":4190}],[-11,{"n":5.5,"e":4204}],[-10,{"n":5.5,"e":4212}],[-9,{"n":5.5,"e":4221}],[-8,{"n":4,"e":4231}],[-7,{"n":6,"e":4246}],[5,{"n":4.5,"e":6889,"s":1}],[4,{"n":5.5,"e":7494,"s":1}],[3,{"n":4,"e":6908}],[2,{"n":5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3999,[{"t":"R"}]],[3985,[{"t":"Y"}]]]}],[654,{"n":"Stones","f":"John","fp":"DC","r":9,"c":40,"s":{"s":5.5,"n":1,"a":5.5,"Os":78.5,"On":15,"Oa":5.23,"Od":0.65,"pd":15},"p":[[-37,{"n":5,"e":3946,"s":1}],[-36,{"n":5.5,"e":3954}],[-35,{"n":5,"e":3960,"s":1}],[-34,{"n":6,"e":3974}],[-26,{"n":5,"e":4053,"s":1}],[-23,{"n":4.5,"e":4082}],[-22,{"n":5.5,"e":4088}],[-16,{"n":4.5,"e":4152}],[-14,{"n":5.5,"e":4172}],[-13,{"n":5,"e":4184}],[-12,{"n":4,"e":4190}],[-11,{"n":6,"e":4204}],[-10,{"n":6.5,"e":4212}],[-9,{"n":5,"e":4221,"s":1}],[2,{"n":5.5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]]}],[678,{"n":"Walker","f":"Kyle","fp":"DL","r":14,"c":40,"s":{"s":18.5,"n":4,"a":4.63,"d":1.11,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.11,"Og":1,"Os":138,"On":27,"Oa":5.11,"Od":1.05,"pd":26,"pm":1},"p":[[-38,{"n":7,"e":3934}],[-37,{"n":6,"e":3946}],[-36,{"n":4.5,"e":3954}],[-35,{"n":6,"e":3960}],[-34,{"n":5,"e":3974,"s":1}],[-32,{"n":6,"e":3994}],[-31,{"n":5.5,"e":3999}],[-28,{"n":5,"e":4032}],[-27,{"n":5.5,"e":4042}],[-26,{"n":6,"e":4053}],[-25,{"n":4.5,"e":4065}],[-24,{"n":5,"e":4072}],[-20,{"n":5,"e":4112}],[-19,{"n":3,"e":4127}],[-18,{"n":5,"e":4132}],[-17,{"n":6,"e":4138}],[-16,{"n":5,"e":4152}],[-15,{"n":5.5,"e":4159}],[-14,{"n":4,"e":4172}],[-12,{"n":3.5,"e":4190}],[-11,{"n":7.5,"e":4204,"g":1}],[-8,{"n":4,"e":4231}],[-7,{"n":5,"e":4246}],[5,{"n":5.5,"e":6889}],[4,{"n":5,"e":7494}],[3,{"n":3,"e":6908}],[2,{"n":5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3994,[{"t":"Y"}]]],"a":{"m":16,"a":19,"M":30,"n":10}}],[840,{"n":"Aké","f":"Nathan","fp":"DC","r":19,"c":40,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":0.25,"Sg":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Og":2,"Os":136,"On":27,"Oa":5.04,"Od":0.93,"pd":27},"p":[[-34,{"n":5.5,"e":3970}],[-33,{"n":3.5,"e":3982}],[-32,{"n":3.5,"e":3990}],[-26,{"n":4,"e":4055}],[-14,{"n":4,"e":4173}],[-12,{"n":4.5,"e":4191}],[-11,{"n":6.5,"e":4200}],[-7,{"n":5.5,"e":4240}],[-35,{"n":5,"e":3959}],[-31,{"n":5,"e":4007}],[-30,{"n":4,"e":4009}],[-29,{"n":6,"e":4023}],[-28,{"n":5.5,"e":4029}],[-25,{"n":7,"e":4058,"g":1}],[-24,{"n":6,"e":4069}],[-23,{"n":6,"e":4084}],[-22,{"n":3.5,"e":4089}],[-16,{"n":5.5,"e":4149}],[-15,{"n":4.5,"e":4166}],[-13,{"n":4.5,"e":4180}],[-10,{"n":5.5,"e":4216}],[-9,{"n":5.5,"e":4219}],[-8,{"n":6,"e":4236}],[5,{"n":5,"e":6889}],[4,{"n":5,"e":7494,"s":1}],[3,{"n":4.5,"e":6908,"g":1}],[2,{"n":5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3959,[{"t":"I"}]],[3990,[{"t":"Y"}]],[6889,[{"t":"Y"}]],[6908,[{"t":"Y"}]]],"a":{"m":18,"a":21,"M":25,"n":14}}],[866,{"n":"Gündogan","f":"Ilkay","fp":"MD","r":11,"c":40,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":149,"On":27,"Oa":5.52,"Od":0.87,"pm":27},"p":[[-38,{"n":5.5,"e":3934,"s":1}],[-36,{"n":5,"e":3954}],[-34,{"n":5.5,"e":3974,"s":1}],[-32,{"n":6.5,"e":3994}],[-31,{"n":6,"e":3999}],[-29,{"n":4.5,"e":4024}],[-28,{"n":7,"e":4032}],[-27,{"n":5.5,"e":4042}],[-26,{"n":5,"e":4053,"s":1}],[-25,{"n":3.5,"e":4065}],[-23,{"n":5.5,"e":4082}],[-22,{"n":4.5,"e":4088,"s":1}],[-21,{"n":6,"e":4102}],[-20,{"n":5.5,"e":4112,"s":1}],[-19,{"n":4.5,"e":4127,"s":1}],[-18,{"n":6.5,"e":4132,"g":1}],[-17,{"n":6,"e":4138}],[-16,{"n":5,"e":4152,"s":1}],[-14,{"n":5,"e":4172}],[-13,{"n":5.5,"e":4184,"s":1}],[-12,{"n":5,"e":4190}],[-11,{"n":5.5,"e":4204}],[-10,{"n":7.5,"e":4212,"g":1}],[-9,{"n":7,"e":4221}],[-8,{"n":5,"e":4231}],[-7,{"n":5.5,"e":4246}],[5,{"n":5.5,"e":6889,"s":1}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":13,"a":15,"M":20,"n":6}}],[966,{"n":"Gabriel Jesus","f":"","fp":"A","r":14,"c":40,"s":{"g":1,"s":7,"n":1,"a":7,"Og":14,"Os":179.5,"On":32,"Oa":5.61,"Od":1.31,"pa":32},"p":[[-38,{"n":7.5,"e":3934,"g":1}],[-37,{"n":4.5,"e":3946}],[-36,{"n":6,"e":3954,"g":1}],[-35,{"n":7.5,"e":3960,"g":1}],[-34,{"n":7,"e":3974,"g":1}],[-33,{"n":3.5,"e":3985}],[-32,{"n":4,"e":3994}],[-31,{"n":4.5,"e":3999,"s":1}],[-30,{"n":6,"e":4012,"s":1}],[-29,{"n":5,"e":4024,"s":1}],[-28,{"n":6,"e":4032}],[-27,{"n":6,"e":4042,"g":1,"s":1}],[-26,{"n":6,"e":4053}],[-25,{"n":4.5,"e":4065,"s":1}],[-24,{"n":4,"e":4072}],[-23,{"n":5.5,"e":4082,"s":1}],[-22,{"n":7,"e":4088,"g":1}],[-21,{"n":7.5,"e":4102,"g":2}],[-20,{"n":4.5,"e":4112,"s":1}],[-18,{"n":6.5,"e":4132,"g":1}],[-17,{"n":6,"e":4138}],[-16,{"n":4,"e":4152}],[-15,{"n":7.5,"e":4159,"g":2}],[-14,{"n":5,"e":4172}],[-13,{"n":4,"e":4184,"s":1}],[-12,{"n":4,"e":4190,"s":1}],[-11,{"n":5,"e":4204,"s":1}],[-10,{"n":5.5,"e":4212}],[-9,{"n":7.5,"e":4221,"g":1}],[-8,{"n":4,"e":4231,"s":1}],[-7,{"n":7,"e":4246,"g":1}],[2,{"n":7,"e":6920,"g":1}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3985,[{"t":"Y"}]],[6920,[{"t":"Y"}]]],"a":{"m":17,"a":27,"M":47,"n":20}}],[1005,{"n":"Foden","f":"Phil","fp":"MO","r":15,"c":40,"s":{"g":1,"s":22,"n":4,"a":5.5,"d":1.29,"Sg":1,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.29,"Og":6,"Os":138.5,"On":26,"Oa":5.33,"Od":1.1,"pm":7,"pa":19},"p":[[-38,{"n":5.5,"e":3934}],[-37,{"n":7,"e":3946,"g":1}],[-36,{"n":5,"e":3954}],[-35,{"n":5,"e":3960,"s":1}],[-34,{"n":4.5,"e":3974}],[-33,{"n":4.5,"e":3985,"s":1}],[-32,{"n":8,"e":3994,"g":1}],[-30,{"n":8,"e":4012,"g":2}],[-29,{"n":4.5,"e":4024}],[-28,{"n":6,"e":4032,"g":1,"s":1}],[-26,{"n":4.5,"e":4053,"s":1}],[-22,{"n":4.5,"e":4088,"s":1}],[-21,{"n":6,"e":4102}],[-20,{"n":5,"e":4112,"s":1}],[-18,{"n":4.5,"e":4132,"s":1}],[-17,{"n":5.5,"e":4138}],[-15,{"n":4.5,"e":4159,"s":1}],[-14,{"n":4.5,"e":4172,"s":1}],[-13,{"n":5,"e":4184,"s":1}],[-11,{"n":4.5,"e":4204,"s":1}],[-10,{"n":5.5,"e":4212,"s":1}],[-9,{"n":4.5,"e":4221,"s":1}],[5,{"n":6,"e":6889}],[4,{"n":5,"e":7494}],[3,{"n":4,"e":6908}],[2,{"n":7,"e":6920,"g":1}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":15,"a":21,"M":37,"n":12}}],[1279,{"n":"Ederson","f":"","fp":"G","r":17,"c":40,"s":{"s":19,"n":4,"a":4.75,"d":1.32,"Ss":19,"Sn":4,"Sa":4.75,"Sd":1.32,"Os":170,"On":33,"Oa":5.15,"Od":1.17,"pg":33},"p":[[-38,{"n":6,"e":3934}],[-37,{"n":5.5,"e":3946}],[-36,{"n":5,"e":3954}],[-35,{"n":5,"e":3960}],[-34,{"n":6,"e":3974}],[-33,{"n":5.5,"e":3985}],[-32,{"n":7,"e":3994}],[-31,{"n":6,"e":3999}],[-30,{"n":5,"e":4012}],[-29,{"n":2.5,"e":4024}],[-28,{"n":5.5,"e":4032}],[-27,{"n":6,"e":4042}],[-26,{"n":5,"e":4053}],[-25,{"n":4,"e":4065}],[-24,{"n":6,"e":4072}],[-23,{"n":4.5,"e":4082}],[-22,{"n":5,"e":4088}],[-19,{"n":3,"e":4127}],[-18,{"n":4.5,"e":4132}],[-17,{"n":6,"e":4138}],[-16,{"n":7,"e":4152}],[-15,{"n":4.5,"e":4159}],[-14,{"n":4,"e":4172}],[-13,{"n":4.5,"e":4184}],[-11,{"n":4,"e":4204}],[-10,{"n":7,"e":4212}],[-9,{"n":6,"e":4221}],[-8,{"n":4,"e":4231}],[-7,{"n":7,"e":4246}],[5,{"n":6,"e":6889}],[4,{"n":5.5,"e":7494}],[3,{"n":3,"e":6908}],[2,{"n":4.5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":18,"a":20,"M":21,"n":6}}],[1357,{"n":"Zinchenko","f":"Oleksandr","fp":"DL","r":7,"c":40,"s":{"Os":69.5,"On":14,"Oa":4.96,"Od":0.63,"pd":12,"pm":2},"p":[[-37,{"n":5,"e":3946,"s":1}],[-36,{"n":5,"e":3954,"s":1}],[-35,{"n":5,"e":3960,"s":1}],[-34,{"n":6,"e":3974}],[-33,{"n":4.5,"e":3985}],[-31,{"n":4.5,"e":3999,"s":1}],[-30,{"n":5.5,"e":4012}],[-29,{"n":4,"e":4024}],[-25,{"n":4,"e":4065}],[-24,{"n":5,"e":4072}],[-20,{"n":6,"e":4112}],[-17,{"n":5,"e":4138,"s":1}],[-8,{"n":4.5,"e":4231,"s":1}],[-7,{"n":5.5,"e":4246}],[1,{"n":null,"e":6924,"d":1}]]}],[1617,{"n":"Laporte","f":"Aymeric","fp":"DC","r":16,"c":40,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":67.5,"On":12,"Oa":5.63,"Od":0.71,"pd":12},"p":[[-38,{"n":6,"e":3934}],[-37,{"n":7,"e":3946,"g":1}],[-35,{"n":6.5,"e":3960}],[-33,{"n":5,"e":3985}],[-32,{"n":6,"e":3994}],[-31,{"n":4.5,"e":3999}],[-30,{"n":5,"e":4012,"s":1}],[-28,{"n":5.5,"e":4032}],[-27,{"n":6,"e":4042}],[-26,{"n":5.5,"e":4053}],[-24,{"n":5.5,"e":4072}],[4,{"n":5,"e":7494}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":17,"a":21,"M":30,"n":14}}],[2194,{"n":"Torres","f":"Ferran","fp":"MO","r":10,"c":40,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Og":4,"Os":171.5,"On":32,"Oa":5.36,"Od":1.05,"pm":27,"pa":5},"p":[[-38,{"n":4.5,"e":4316}],[-37,{"n":6,"e":4327}],[-36,{"n":5,"e":4332,"s":1}],[-26,{"n":6,"e":4437}],[-25,{"n":5,"e":4446}],[-20,{"n":6,"e":4493,"g":1,"s":1}],[-11,{"n":5,"e":4587}],[-33,{"n":4,"e":4367}],[-32,{"n":3.5,"e":4377}],[-31,{"n":5,"e":4380}],[-30,{"n":5,"e":4397,"s":1}],[-29,{"n":4.5,"e":4405}],[-28,{"n":5,"e":4417,"s":1}],[-24,{"n":6.5,"e":4456}],[-23,{"n":4.5,"e":4462}],[-22,{"n":5,"e":4476}],[-21,{"n":6.5,"e":4487}],[-19,{"n":5.5,"e":4507}],[-18,{"n":7,"e":4516}],[-17,{"n":4.5,"e":4527}],[-16,{"n":8,"e":4532,"g":1}],[-15,{"n":7,"e":4547,"g":1}],[-14,{"n":6,"e":4554}],[-13,{"n":7,"e":4567,"g":1}],[-12,{"n":5,"e":4569}],[-10,{"n":4.5,"e":4594,"s":1}],[-9,{"n":4.5,"e":4600}],[-8,{"n":5.5,"e":4617}],[-7,{"n":6.5,"e":4619}],[4,{"n":5,"e":7494}],[3,{"n":4,"e":6908,"s":1}],[2,{"n":4.5,"e":6920,"s":1}],[1,{"n":null,"e":6924,"d":1}]],"a":{"m":11,"a":13,"M":18,"n":10}}],[2427,{"n":"Rodrigo","f":"","fp":"MD","r":22,"c":40,"s":{"s":22,"n":4,"a":5.5,"d":0.91,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.91,"Og":2,"Os":187,"On":33,"Oa":5.67,"Od":1.21,"pd":2,"pm":31},"p":[[-38,{"n":3.5,"e":3934}],[-37,{"n":8,"e":3946}],[-36,{"n":4.5,"e":3954,"s":1}],[-35,{"n":7,"e":3960}],[-34,{"n":5,"e":3974}],[-32,{"n":7.5,"e":3994}],[-31,{"n":5,"e":3999}],[-30,{"n":7,"e":4012}],[-29,{"n":5.5,"e":4024}],[-28,{"n":5,"e":4032,"s":1}],[-27,{"n":6,"e":4042}],[-26,{"n":7.5,"e":4053,"g":1}],[-25,{"n":3,"e":4065}],[-24,{"n":5.5,"e":4072}],[-23,{"n":4.5,"e":4082,"s":1}],[-22,{"n":7,"e":4088}],[-21,{"n":5.5,"e":4102}],[-20,{"n":7,"e":4112}],[-19,{"n":5,"e":4127}],[-18,{"n":5,"e":4132,"s":1}],[-17,{"n":5.5,"e":4138}],[-16,{"n":5.5,"e":4152}],[-15,{"n":8,"e":4159,"g":1}],[-14,{"n":4.5,"e":4172,"s":1}],[-13,{"n":6,"e":4184}],[-12,{"n":5,"e":4190}],[-9,{"n":6,"e":4221}],[-8,{"n":5,"e":4231}],[-7,{"n":5.5,"e":4246}],[5,{"n":6.5,"e":6889}],[4,{"n":6,"e":7494}],[3,{"n":4.5,"e":6908}],[2,{"n":5,"e":6920}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[4032,[{"t":"Y"}]],[6889,[{"t":"Y"}]],[6920,[{"t":"Y"}]]]}],[2883,{"n":"Bernabé","f":"Adrián","fp":"MO","r":1,"c":40,"s":{},"p":[[1,{"n":null,"e":6924,"d":1}]]}],[2973,{"n":"García","f":"Eric","fp":"DC","r":8,"c":40,"s":{"s":3,"n":1,"a":3,"Os":66,"On":13,"Oa":5.08,"Od":0.95,"pd":13},"p":[[-38,{"n":4.5,"e":3934}],[-37,{"n":5.5,"e":3946}],[-36,{"n":5,"e":3954,"s":1}],[-35,{"n":6.5,"e":3960}],[-33,{"n":4.5,"e":3985}],[-32,{"n":6,"e":3994}],[-28,{"n":6,"e":4032}],[-24,{"n":5,"e":4072,"s":1}],[-21,{"n":5,"e":4102}],[-20,{"n":6,"e":4112}],[-19,{"n":4,"e":4127,"s":1}],[-15,{"n":5,"e":4159,"s":1}],[3,{"n":3,"e":6908}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3954,[{"t":"Y"}]]]}],[3499,{"n":"Nmecha","f":"Felix","fp":"MO","r":3,"c":40}],[4567,{"n":"João Cancelo","f":"","fp":"DL","r":7,"c":40,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":85.5,"On":16,"Oa":5.34,"Od":0.93,"pd":14,"pm":2},"p":[[-38,{"n":6,"e":3934}],[-37,{"n":7,"e":3946}],[-34,{"n":4.5,"e":3974}],[-33,{"n":5.5,"e":3985}],[-32,{"n":5,"e":3994,"s":1}],[-30,{"n":5,"e":4012}],[-29,{"n":5,"e":4024}],[-25,{"n":5,"e":4065,"s":1}],[-23,{"n":4.5,"e":4082}],[-22,{"n":6.5,"e":4088}],[-21,{"n":4.5,"e":4102}],[-13,{"n":5,"e":4184}],[-10,{"n":6,"e":4212}],[-9,{"n":6.5,"e":4221}],[-8,{"n":3.5,"e":4231}],[5,{"n":6,"e":6889}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[3934,[{"t":"Y"}]],[4012,[{"t":"Y"}]],[6889,[{"t":"Y"}]]]}],[5417,{"n":"Dionkou","f":"Alpha Richard","fp":"DL","r":1,"c":40,"s":{},"p":[[1,{"n":null,"e":6924,"d":1}]]}],[5420,{"n":"Harwood-Bellis","f":"Taylor","fp":"DC","r":1,"c":40,"s":{},"p":[[1,{"n":null,"e":6924,"d":1}]]}],[5993,{"n":"Doyle","f":"Tommy","fp":"MD","r":2,"c":40,"s":{"Os":5.5,"On":1,"Oa":5.5,"pm":1},"p":[[-34,{"n":5.5,"e":3974,"s":1}],[1,{"n":null,"e":6924,"d":1}]]}],[6128,{"n":"Carson","f":"Scott","fp":"G","r":1,"c":40,"s":{},"p":[[1,{"n":null,"e":6924,"d":1}]]}],[6690,{"n":"Palmer","f":"Cole","fp":"MO","r":1,"c":40,"s":{},"p":[[1,{"n":null,"e":6924,"d":1}]]}],[7326,{"n":"Steffen","f":"Zack","fp":"G","r":6,"c":40,"s":{},"p":[[1,{"n":null,"e":6924,"d":1}]]}],[7339,{"n":"Delap","f":"Liam","fp":"A","r":5,"c":40,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[3,{"n":4,"e":6908,"s":1}],[1,{"n":null,"e":6924,"d":1}]]}],[7362,{"n":"Rúben Dias","f":"","fp":"DC","r":14,"c":40,"s":{"s":12,"n":2,"a":6,"Ss":12,"Sn":2,"Sa":6,"Os":12,"On":2,"Oa":6,"pd":2},"p":[[5,{"n":6,"e":6889}],[4,{"n":6,"e":7494}],[1,{"n":null,"e":6924,"d":1}]],"fo":[[6889,[{"t":"Y"}]]],"a":{"m":15,"a":17,"M":24,"n":8}}],[1,{"n":"Cavani","f":"Edinson","fp":"A","r":13,"c":31,"s":{"Og":2,"Os":53,"On":11,"Oa":4.82,"Od":1.06,"pa":11},"p":[[-22,{"n":4.5,"e":3715,"s":1}],[-12,{"n":4.5,"e":3811,"s":1}],[-28,{"n":null,"e":3657,"d":1}],[-27,{"n":5,"e":3666}],[-26,{"n":7.5,"e":3674,"g":1}],[-25,{"n":4,"e":3678}],[-24,{"n":6,"e":3695,"g":1,"s":1}],[-20,{"n":4.5,"e":3734,"s":1}],[-16,{"n":4,"e":3775,"s":1}],[-14,{"n":4,"e":3795,"s":1}],[-13,{"n":4.5,"e":3798}],[-11,{"n":4.5,"e":3823,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":20,"a":27,"M":56,"n":9}}],[595,{"n":"Pogba","f":"Paul","fp":"MD","r":13,"c":31,"s":{"s":15,"n":4,"a":3.75,"d":1.04,"Ss":15,"Sn":4,"Sa":3.75,"Sd":1.04,"Og":1,"Os":81,"On":16,"Oa":5.06,"Od":1.41,"pm":16},"p":[[5,{"n":5,"e":6890,"s":1}],[4,{"n":2.5,"e":6899}],[-37,{"n":4.5,"e":3945}],[-35,{"n":3,"e":3962}],[-31,{"n":6.5,"e":4002}],[-30,{"n":6.5,"e":4015,"s":1}],[-19,{"n":5,"e":4124,"s":1}],[-38,{"n":4.5,"e":3933}],[-36,{"n":5,"e":3951}],[-34,{"n":7.5,"e":3969,"g":1}],[-33,{"n":7,"e":3982}],[-32,{"n":6,"e":3991}],[-18,{"n":5.5,"e":4136,"s":1}],[-7,{"n":5,"e":4247}],[3,{"n":4,"e":6903}],[2,{"n":3.5,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3933,[{"t":"Y"}]]],"a":{"m":20,"a":27,"M":51,"n":17}}],[600,{"n":"de Gea","f":"David","fp":"G","r":15,"c":31,"s":{"s":18,"n":4,"a":4.5,"d":1.58,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1.58,"Os":186.5,"On":36,"Oa":5.18,"Od":1.05,"pg":36},"p":[[-22,{"n":6,"e":4094}],[-15,{"n":6,"e":4163}],[-13,{"n":4,"e":4185}],[-8,{"n":4.5,"e":4237}],[-38,{"n":6.5,"e":3933}],[-37,{"n":6,"e":3945}],[-36,{"n":7,"e":3951}],[-35,{"n":4.5,"e":3962}],[-34,{"n":5.5,"e":3969}],[-33,{"n":4.5,"e":3982}],[-32,{"n":6,"e":3991}],[-31,{"n":5.5,"e":4002}],[-30,{"n":5,"e":4015}],[-29,{"n":7,"e":4024}],[-28,{"n":4,"e":4031}],[-27,{"n":6,"e":4044}],[-26,{"n":6,"e":4051}],[-25,{"n":6,"e":4063}],[-24,{"n":4,"e":4074}],[-23,{"n":5,"e":4081}],[-21,{"n":4,"e":4098}],[-20,{"n":6,"e":4110}],[-19,{"n":4.5,"e":4124}],[-18,{"n":3.5,"e":4136}],[-17,{"n":4,"e":4144}],[-16,{"n":6,"e":4152}],[-14,{"n":4,"e":4175}],[-12,{"n":5,"e":4197}],[-11,{"n":6,"e":4200}],[-10,{"n":5,"e":4214}],[-9,{"n":5.5,"e":4224}],[-7,{"n":6,"e":4247}],[5,{"n":6,"e":6890}],[4,{"n":2.5,"e":6899}],[3,{"n":5.5,"e":6903}],[2,{"n":4,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":20,"a":27,"M":38,"n":6}}],[604,{"n":"Mata","f":"Juan","fp":"MO","r":6,"c":31,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":73.5,"On":14,"Oa":5.25,"Od":0.73,"pm":14},"p":[[-33,{"n":5,"e":3982,"s":1}],[-31,{"n":4.5,"e":4002,"s":1}],[-28,{"n":5,"e":4031,"s":1}],[-25,{"n":5,"e":4063}],[-24,{"n":5,"e":4074}],[-23,{"n":5,"e":4081,"s":1}],[-22,{"n":7.5,"e":4094}],[-21,{"n":5,"e":4098,"s":1}],[-19,{"n":5.5,"e":4124,"s":1}],[-18,{"n":5,"e":4136,"s":1}],[-17,{"n":5,"e":4144,"s":1}],[-14,{"n":5,"e":4175}],[-8,{"n":5,"e":4237}],[5,{"n":6,"e":6890}],[1,{"n":null,"e":6921,"d":1}]]}],[616,{"n":"Matic","f":"Nemanja","fp":"MD","r":10,"c":31,"s":{"s":15,"n":3,"a":5,"d":1,"Ss":15,"Sn":3,"Sa":5,"Sd":1,"Os":120,"On":21,"Oa":5.71,"Od":0.85,"pm":21},"p":[[-38,{"n":5.5,"e":3933}],[-37,{"n":5,"e":3945}],[-36,{"n":5.5,"e":3951,"s":1}],[-35,{"n":5.5,"e":3962}],[-34,{"n":5.5,"e":3969}],[-33,{"n":6,"e":3982}],[-32,{"n":7,"e":3991}],[-31,{"n":6.5,"e":4002}],[-30,{"n":5,"e":4015,"s":1}],[-29,{"n":6.5,"e":4024}],[-28,{"n":6.5,"e":4031}],[-27,{"n":7,"e":4044}],[-26,{"n":6,"e":4051}],[-24,{"n":5,"e":4074}],[-23,{"n":4.5,"e":4081}],[-22,{"n":7,"e":4094}],[-21,{"n":5,"e":4098}],[-20,{"n":6,"e":4110}],[5,{"n":5,"e":6890,"s":1}],[4,{"n":4,"e":6899}],[3,{"n":6,"e":6903}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3933,[{"t":"Y"}]],[3969,[{"t":"Y"}]],[6903,[{"t":"Y"}]]],"a":{"m":11,"a":12,"M":12,"n":10}}],[626,{"n":"Martial","f":"Anthony","fp":"A","r":29,"c":31,"s":{"s":10.5,"n":3,"a":3.5,"d":0.87,"Og":15,"Os":176.5,"On":32,"Oa":5.52,"Od":1.33,"pa":32},"p":[[-38,{"n":6,"e":3933}],[-37,{"n":6,"e":3945}],[-36,{"n":6,"e":3951,"g":1}],[-35,{"n":7,"e":3962,"g":1}],[-34,{"n":6,"e":3969}],[-33,{"n":7.5,"e":3982,"g":1}],[-32,{"n":4.5,"e":3991}],[-31,{"n":8.5,"e":4002,"g":3}],[-30,{"n":4.5,"e":4015}],[-29,{"n":7,"e":4024,"g":1}],[-28,{"n":5,"e":4031}],[-27,{"n":6.5,"e":4044,"g":1}],[-26,{"n":6,"e":4051,"g":1}],[-25,{"n":5,"e":4063}],[-24,{"n":5,"e":4074}],[-23,{"n":4,"e":4081}],[-22,{"n":6,"e":4094,"g":1}],[-21,{"n":4,"e":4098}],[-20,{"n":6.5,"e":4110,"g":1}],[-19,{"n":7.5,"e":4124,"g":2}],[-18,{"n":5.5,"e":4136}],[-17,{"n":5,"e":4144}],[-16,{"n":6.5,"e":4152,"g":1}],[-14,{"n":5,"e":4175}],[-13,{"n":4.5,"e":4185}],[-12,{"n":7,"e":4197}],[-11,{"n":4,"e":4200}],[-10,{"n":6,"e":4214,"g":1}],[-9,{"n":4,"e":4224,"s":1}],[4,{"n":3,"e":6899}],[3,{"n":4.5,"e":6903}],[2,{"n":3,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[6899,[{"t":"R"}]]],"a":{"m":32,"a":75,"M":98,"n":10}}],[641,{"n":"Rashford","f":"Marcus","fp":"A","r":35,"c":31,"s":{"g":2,"s":22,"n":4,"a":5.5,"d":2.2,"Sg":2,"Ss":22,"Sn":4,"Sa":5.5,"Sd":2.2,"Og":16,"Os":175.5,"On":29,"Oa":6.05,"Od":1.47,"pm":24,"pa":5},"p":[[-38,{"n":5.5,"e":3933}],[-37,{"n":5,"e":3945}],[-36,{"n":8,"e":3951,"g":1}],[-35,{"n":6.5,"e":3962,"g":1}],[-34,{"n":6.5,"e":3969}],[-33,{"n":7.5,"e":3982,"g":1}],[-32,{"n":5.5,"e":3991}],[-31,{"n":7.5,"e":4002}],[-30,{"n":4.5,"e":4015}],[-22,{"n":8,"e":4094,"g":2}],[-21,{"n":3.5,"e":4098}],[-20,{"n":7.5,"e":4110,"g":1}],[-19,{"n":6,"e":4124,"g":1}],[-18,{"n":4.5,"e":4136}],[-17,{"n":5,"e":4144}],[-16,{"n":7,"e":4152,"g":1}],[-15,{"n":8,"e":4163,"g":2}],[-14,{"n":5,"e":4175}],[-13,{"n":7,"e":4185,"g":1}],[-12,{"n":6.5,"e":4197,"g":1}],[-11,{"n":5,"e":4200}],[-10,{"n":8,"e":4214,"g":1}],[-9,{"n":6,"e":4224,"g":1}],[-8,{"n":4,"e":4237}],[-7,{"n":6,"e":4247}],[5,{"n":8,"e":6890,"g":1}],[4,{"n":3,"e":6899}],[3,{"n":6.5,"e":6903,"g":1}],[2,{"n":4.5,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3945,[{"t":"Y"}]]],"a":{"m":37,"a":53,"M":87,"n":16}}],[706,{"n":"Bailly","f":"Eric","fp":"DC","r":6,"c":31,"s":{"s":7.5,"n":2,"a":3.75,"d":1.77,"Os":28,"On":6,"Oa":4.67,"Od":1.17,"pd":6},"p":[[-33,{"n":4.5,"e":3982,"s":1}],[-30,{"n":5,"e":4015,"s":1}],[-29,{"n":5,"e":4024,"s":1}],[-26,{"n":6,"e":4051}],[4,{"n":2.5,"e":6899}],[3,{"n":5,"e":6903,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[6899,[{"t":"Y"}]]]}],[731,{"n":"Rojo","f":"Marcos","fp":"DC","r":2,"c":31,"s":{"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":3},"p":[[-12,{"n":5,"e":4197,"s":1}],[-9,{"n":4.5,"e":4224}],[-8,{"n":5,"e":4237,"s":1}],[1,{"n":null,"e":6921,"d":1}]]}],[743,{"n":"Jones","f":"Phil","fp":"DC","r":1,"c":31,"s":{"Os":8,"On":2,"Oa":4,"Od":0.71,"pd":2},"p":[[-24,{"n":4.5,"e":4074}],[-13,{"n":3.5,"e":4185}],[1,{"n":null,"e":6921,"d":1}]]}],[768,{"n":"Lingard","f":"Jesse","fp":"MO","r":7,"c":31,"s":{"Og":1,"Os":84.5,"On":17,"Oa":4.97,"Od":0.8,"pm":17},"p":[[-38,{"n":7,"e":3933,"g":1,"s":1}],[-36,{"n":5,"e":3951,"s":1}],[-25,{"n":5,"e":4063,"s":1}],[-24,{"n":5,"e":4074,"s":1}],[-21,{"n":3.5,"e":4098}],[-20,{"n":4.5,"e":4110,"s":1}],[-19,{"n":5,"e":4124,"s":1}],[-18,{"n":4,"e":4136}],[-17,{"n":4,"e":4144}],[-16,{"n":6,"e":4152}],[-15,{"n":5,"e":4163}],[-14,{"n":5,"e":4175,"s":1}],[-13,{"n":4.5,"e":4185,"s":1}],[-12,{"n":5.5,"e":4197,"s":1}],[-11,{"n":5,"e":4200,"s":1}],[-10,{"n":5.5,"e":4214,"s":1}],[-7,{"n":5,"e":4247}],[1,{"n":null,"e":6921,"d":1}]]}],[804,{"n":"Shaw","f":"Luke","fp":"DL","r":10,"c":31,"s":{"ao":1,"s":16,"n":4,"a":4,"d":1.08,"Sao":1,"Ss":16,"Sn":4,"Sa":4,"Sd":1.08,"Oao":1,"Os":128,"On":25,"Oa":5.12,"Od":0.93,"pd":25},"p":[[-35,{"n":5,"e":3962}],[-34,{"n":6,"e":3969}],[-33,{"n":6,"e":3982}],[-32,{"n":5,"e":3991}],[-31,{"n":7,"e":4002}],[-30,{"n":5,"e":4015}],[-29,{"n":5.5,"e":4024}],[-28,{"n":5,"e":4031}],[-27,{"n":6.5,"e":4044}],[-26,{"n":6,"e":4051}],[-25,{"n":6,"e":4063}],[-24,{"n":5,"e":4074,"s":1}],[-23,{"n":5.5,"e":4081}],[-21,{"n":3.5,"e":4098}],[-20,{"n":5,"e":4110,"s":1}],[-19,{"n":5.5,"e":4124}],[-18,{"n":5,"e":4136}],[-17,{"n":5,"e":4144}],[-16,{"n":5,"e":4152}],[-15,{"n":5,"e":4163,"s":1}],[-14,{"n":4.5,"e":4175,"s":1}],[5,{"n":4.5,"e":6890,"a":1}],[4,{"n":2.5,"e":6899}],[3,{"n":5,"e":6903}],[2,{"n":4,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3962,[{"t":"I"}]],[3991,[{"t":"Y"}]],[4002,[{"t":"Y"}]],[6899,[{"t":"Y"}]]],"a":{"m":11,"a":14,"M":19,"n":9}}],[876,{"n":"Grant","f":"Lee","fp":"G","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[889,{"n":"Romero","f":"Sergio","fp":"G","r":7,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[898,{"n":"Maguire","f":"Harry","fp":"DC","r":19,"c":31,"s":{"g":1,"s":18.5,"n":4,"a":4.63,"d":2.14,"Sg":1,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":2.14,"Og":2,"Os":195,"On":36,"Oa":5.42,"Od":1.04,"pd":36},"p":[[-38,{"n":5.5,"e":3933}],[-37,{"n":6,"e":3945}],[-36,{"n":6,"e":3951}],[-35,{"n":4.5,"e":3962}],[-34,{"n":5.5,"e":3969}],[-33,{"n":5,"e":3982}],[-32,{"n":6,"e":3991}],[-31,{"n":5.5,"e":4002}],[-30,{"n":5.5,"e":4015}],[-29,{"n":5.5,"e":4024}],[-28,{"n":6,"e":4031}],[-27,{"n":6,"e":4044}],[-26,{"n":8,"e":4051,"g":1}],[-25,{"n":6,"e":4063}],[-24,{"n":4.5,"e":4074}],[-23,{"n":4,"e":4081}],[-22,{"n":6.5,"e":4094}],[-21,{"n":4,"e":4098}],[-20,{"n":6,"e":4110}],[-19,{"n":6.5,"e":4124}],[-18,{"n":5.5,"e":4136}],[-17,{"n":6,"e":4144}],[-16,{"n":6,"e":4152}],[-15,{"n":5.5,"e":4163}],[-14,{"n":4,"e":4175}],[-13,{"n":4.5,"e":4185}],[-12,{"n":5.5,"e":4197}],[-11,{"n":5,"e":4200}],[-10,{"n":6,"e":4214}],[-9,{"n":5.5,"e":4224}],[-8,{"n":5.5,"e":4237}],[-7,{"n":5,"e":4247}],[5,{"n":7,"e":6890,"g":1}],[4,{"n":2,"e":6899}],[3,{"n":5.5,"e":6903}],[2,{"n":4,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3933,[{"t":"Y"}]],[3951,[{"t":"Y"}]],[6917,[{"t":"Y"}]]],"a":{"m":23,"a":28,"M":34,"n":7}}],[1062,{"n":"Tuanzebe","f":"Axel","fp":"DC","r":1,"c":31,"s":{"Os":17,"On":4,"Oa":4.25,"Od":0.65,"pd":4},"p":[[-16,{"n":5,"e":4152,"s":1}],[-13,{"n":4.5,"e":4185,"s":1}],[-8,{"n":4,"e":4237}],[-7,{"n":3.5,"e":4247}],[1,{"n":null,"e":6921,"d":1}]]}],[1063,{"n":"Fosu-Mensah","f":"Timothy","fp":"DL","r":5,"c":31,"s":{"s":4.5,"n":1,"a":4.5,"Os":18.5,"On":4,"Oa":4.63,"Od":0.48,"pd":4},"p":[[-38,{"n":5,"e":3933,"s":1}],[-37,{"n":4,"e":3945}],[-36,{"n":5,"e":3951}],[2,{"n":4.5,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3945,[{"t":"Y"}]],[6917,[{"t":"Y"}]]]}],[1079,{"n":"James","f":"Daniel","fp":"MO","r":9,"c":31,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Ss":6,"Sn":1,"Sa":6,"Os":153,"On":29,"Oa":5.28,"Od":0.88,"pm":24,"pa":5},"p":[[-35,{"n":4.5,"e":3962,"s":1}],[-34,{"n":5,"e":3969,"s":1}],[-33,{"n":5.5,"e":3982,"s":1}],[-32,{"n":5,"e":3991,"s":1}],[-31,{"n":5,"e":4002,"s":1}],[-30,{"n":4.5,"e":4015}],[-29,{"n":5.5,"e":4024}],[-27,{"n":5.5,"e":4044}],[-26,{"n":5,"e":4051}],[-25,{"n":5,"e":4063}],[-24,{"n":4,"e":4074}],[-23,{"n":4,"e":4081}],[-22,{"n":5,"e":4094,"s":1}],[-21,{"n":4,"e":4098}],[-20,{"n":7,"e":4110}],[-18,{"n":4.5,"e":4136}],[-17,{"n":6,"e":4144}],[-16,{"n":7,"e":4152}],[-15,{"n":5,"e":4163}],[-14,{"n":4.5,"e":4175}],[-13,{"n":6,"e":4185}],[-12,{"n":6.5,"e":4197}],[-11,{"n":5.5,"e":4200}],[-10,{"n":7,"e":4214}],[-9,{"n":6,"e":4224}],[-8,{"n":4.5,"e":4237}],[-7,{"n":5.5,"e":4247}],[5,{"n":6,"e":6890}],[2,{"n":4.5,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[4015,[{"t":"Y"}]],[6890,[{"t":"Y"}]]]}],[1095,{"n":"Wan-Bissaka","f":"Aaron","fp":"DL","r":12,"c":31,"s":{"g":1,"s":14.5,"n":3,"a":4.83,"d":1.53,"Sg":1,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.53,"Og":1,"Os":167,"On":32,"Oa":5.22,"Od":1.06,"pd":26,"pm":5,"pa":1},"p":[[-38,{"n":6,"e":3933}],[-37,{"n":5,"e":3945,"s":1}],[-36,{"n":6.5,"e":3951}],[-35,{"n":4,"e":3962}],[-34,{"n":5,"e":3969}],[-33,{"n":5,"e":3982}],[-32,{"n":6,"e":3991}],[-31,{"n":6.5,"e":4002}],[-30,{"n":5,"e":4015}],[-29,{"n":7,"e":4024}],[-28,{"n":5,"e":4031}],[-27,{"n":6,"e":4044}],[-26,{"n":7,"e":4051}],[-25,{"n":5,"e":4063}],[-24,{"n":3,"e":4074}],[-23,{"n":4.5,"e":4081}],[-22,{"n":5,"e":4094}],[-21,{"n":4.5,"e":4098}],[-19,{"n":6.5,"e":4124}],[-18,{"n":3,"e":4136}],[-17,{"n":6,"e":4144}],[-16,{"n":6,"e":4152}],[-15,{"n":5,"e":4163}],[-14,{"n":5,"e":4175}],[-13,{"n":4,"e":4185}],[-12,{"n":6,"e":4197}],[-11,{"n":4.5,"e":4200}],[-10,{"n":5.5,"e":4214}],[-9,{"n":5,"e":4224}],[5,{"n":6.5,"e":6890,"g":1}],[4,{"n":3.5,"e":6899}],[3,{"n":4.5,"e":6903}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3951,[{"t":"Y"}]],[3962,[{"t":"Y"}]],[3969,[{"t":"Y"}]]],"a":{"m":14,"a":19,"M":30,"n":18}}],[1286,{"n":"Lindelöf","f":"Victor","fp":"DC","r":16,"c":31,"s":{"s":14,"n":3,"a":4.67,"d":1.53,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Oao":1,"Os":168,"On":32,"Oa":5.25,"Od":0.85,"pd":32},"p":[[-38,{"n":6,"e":3933}],[-37,{"n":6,"e":3945}],[-36,{"n":6.5,"e":3951}],[-35,{"n":4.5,"e":3962}],[-34,{"n":5.5,"e":3969}],[-33,{"n":5,"e":3982}],[-32,{"n":5.5,"e":3991}],[-31,{"n":6.5,"e":4002}],[-30,{"n":4,"e":4015}],[-29,{"n":6,"e":4024}],[-28,{"n":5,"e":4031}],[-27,{"n":5.5,"e":4044}],[-25,{"n":5.5,"e":4063}],[-23,{"n":4.5,"e":4081}],[-22,{"n":6,"e":4094}],[-21,{"n":4,"e":4098}],[-20,{"n":6,"e":4110}],[-19,{"n":5.5,"e":4124}],[-18,{"n":4.5,"e":4136}],[-17,{"n":4,"e":4144,"a":1}],[-16,{"n":6,"e":4152}],[-15,{"n":5.5,"e":4163}],[-14,{"n":6,"e":4175,"g":1}],[-13,{"n":4,"e":4185}],[-12,{"n":6,"e":4197}],[-11,{"n":4.5,"e":4200}],[-10,{"n":5.5,"e":4214}],[-9,{"n":5.5,"e":4224}],[-7,{"n":5,"e":4247}],[5,{"n":5,"e":6890}],[3,{"n":6,"e":6903}],[2,{"n":3,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3933,[{"t":"Y"}]]],"a":{"m":18,"a":23,"M":35,"n":15}}],[2062,{"n":"McTominay","f":"Scott","fp":"MD","r":15,"c":31,"s":{"s":17,"n":3,"a":5.67,"d":0.29,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":4,"Os":130.5,"On":24,"Oa":5.44,"Od":0.94,"pm":24},"p":[[-38,{"n":5,"e":3933,"s":1}],[-36,{"n":5,"e":3951}],[-35,{"n":4.5,"e":3962,"s":1}],[-34,{"n":5.5,"e":3969,"s":1}],[-32,{"n":5.5,"e":3991,"s":1}],[-31,{"n":5,"e":4002,"s":1}],[-30,{"n":6,"e":4015}],[-29,{"n":7,"e":4024,"g":1,"s":1}],[-28,{"n":5.5,"e":4031}],[-27,{"n":5,"e":4044,"s":1}],[-19,{"n":3.5,"e":4124}],[-18,{"n":3.5,"e":4136}],[-17,{"n":6.5,"e":4144}],[-16,{"n":6.5,"e":4152}],[-15,{"n":6,"e":4163}],[-12,{"n":6.5,"e":4197,"g":1}],[-11,{"n":4.5,"e":4200}],[-10,{"n":6.5,"e":4214,"g":1}],[-9,{"n":5,"e":4224}],[-8,{"n":4.5,"e":4237}],[-7,{"n":6.5,"e":4247,"g":1}],[5,{"n":5.5,"e":6890}],[4,{"n":6,"e":6899,"s":1}],[2,{"n":5.5,"e":6917}],[1,{"n":null,"e":6921,"d":1}]]}],[2601,{"n":"Fred","f":"","fp":"MO","r":15,"c":31,"s":{"s":16.5,"n":3,"a":5.5,"d":0.87,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.87,"Os":168,"On":30,"Oa":5.6,"Od":0.66,"pm":30},"p":[[-35,{"n":4.5,"e":3962,"s":1}],[-34,{"n":5,"e":3969,"s":1}],[-33,{"n":5.5,"e":3982,"s":1}],[-30,{"n":5,"e":4015}],[-29,{"n":6.5,"e":4024}],[-28,{"n":5,"e":4031}],[-27,{"n":6.5,"e":4044}],[-26,{"n":7,"e":4051}],[-25,{"n":5,"e":4063}],[-24,{"n":5.5,"e":4074}],[-23,{"n":6,"e":4081}],[-22,{"n":6.5,"e":4094}],[-21,{"n":5.5,"e":4098}],[-20,{"n":5.5,"e":4110}],[-19,{"n":5.5,"e":4124}],[-18,{"n":6.5,"e":4136}],[-17,{"n":5.5,"e":4144}],[-16,{"n":5.5,"e":4152}],[-15,{"n":5.5,"e":4163}],[-14,{"n":5,"e":4175}],[-13,{"n":5.5,"e":4185}],[-12,{"n":5.5,"e":4197}],[-11,{"n":6.5,"e":4200}],[-10,{"n":6.5,"e":4214}],[-9,{"n":5,"e":4224}],[-8,{"n":5,"e":4237}],[-7,{"n":5,"e":4247,"s":1}],[5,{"n":6,"e":6890}],[4,{"n":6,"e":6899,"s":1}],[3,{"n":4.5,"e":6903,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3969,[{"t":"Y"}]]]}],[2976,{"n":"Greenwood","f":"Mason","fp":"A","r":15,"c":31,"s":{"s":13,"n":3,"a":4.33,"d":0.58,"Og":10,"Os":159,"On":30,"Oa":5.3,"Od":1.24,"pm":12,"pa":18},"p":[[-38,{"n":5,"e":3933}],[-37,{"n":6,"e":3945,"g":1}],[-36,{"n":5.5,"e":3951}],[-35,{"n":5,"e":3962}],[-34,{"n":7,"e":3969,"g":1}],[-33,{"n":8,"e":3982,"g":2}],[-32,{"n":8,"e":3991,"g":1}],[-31,{"n":6,"e":4002}],[-30,{"n":4.5,"e":4015,"s":1}],[-28,{"n":4,"e":4031}],[-27,{"n":8,"e":4044,"g":1}],[-25,{"n":4.5,"e":4063,"s":1}],[-24,{"n":4.5,"e":4074,"s":1}],[-23,{"n":4.5,"e":4081,"s":1}],[-22,{"n":6,"e":4094,"g":1,"s":1}],[-21,{"n":4.5,"e":4098,"s":1}],[-19,{"n":7,"e":4124,"g":1}],[-18,{"n":4.5,"e":4136,"s":1}],[-17,{"n":6,"e":4144,"g":1,"s":1}],[-15,{"n":5,"e":4163}],[-14,{"n":4.5,"e":4175,"s":1}],[-13,{"n":6,"e":4185,"g":1,"s":1}],[-12,{"n":4.5,"e":4197,"s":1}],[-11,{"n":4.5,"e":4200,"s":1}],[-10,{"n":4,"e":4214,"s":1}],[-8,{"n":5,"e":4237,"s":1}],[-7,{"n":4,"e":4247,"s":1}],[4,{"n":4,"e":6899}],[3,{"n":5,"e":6903}],[2,{"n":4,"e":6917,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":16,"a":30,"M":63,"n":17}}],[5446,{"n":"Henderson","f":"Dean","fp":"G","r":8,"c":31,"s":{"Os":168.5,"On":30,"Oa":5.62,"Od":1.06,"pg":30},"p":[[-38,{"n":4,"e":3936}],[-32,{"n":5,"e":3995}],[-30,{"n":4.5,"e":4013}],[-22,{"n":6.5,"e":4095}],[-19,{"n":4.5,"e":4125}],[-15,{"n":4,"e":4161}],[-12,{"n":6,"e":4194}],[-10,{"n":5.5,"e":4217}],[-37,{"n":5,"e":3943}],[-36,{"n":6,"e":3953}],[-35,{"n":7,"e":3964}],[-34,{"n":6,"e":3975}],[-33,{"n":5,"e":3978}],[-29,{"n":7,"e":4025}],[-28,{"n":7.5,"e":4028}],[-27,{"n":4.5,"e":4045}],[-26,{"n":5,"e":4055}],[-25,{"n":6.5,"e":4060}],[-24,{"n":8,"e":4072}],[-23,{"n":5,"e":4078}],[-21,{"n":6.5,"e":4101}],[-20,{"n":4,"e":4112}],[-18,{"n":6,"e":4130}],[-17,{"n":5.5,"e":4145}],[-16,{"n":6,"e":4154}],[-14,{"n":6,"e":4174}],[-11,{"n":6,"e":4205}],[-9,{"n":6,"e":4225}],[-8,{"n":6,"e":4234}],[-7,{"n":4,"e":4238}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":11,"a":13,"M":15,"n":11}}],[6285,{"n":"Williams","f":"Brandon","fp":"DL","r":7,"c":31,"s":{"Og":1,"Os":80.5,"On":16,"Oa":5.03,"Od":0.72,"pd":12,"pm":4},"p":[[-38,{"n":6,"e":3933}],[-37,{"n":5,"e":3945}],[-35,{"n":5,"e":3962,"s":1}],[-34,{"n":5,"e":3969,"s":1}],[-32,{"n":5.5,"e":3991,"s":1}],[-29,{"n":5,"e":4024}],[-28,{"n":5,"e":4031,"s":1}],[-26,{"n":6,"e":4051}],[-24,{"n":4,"e":4074}],[-23,{"n":4,"e":4081}],[-22,{"n":6,"e":4094}],[-20,{"n":5.5,"e":4110}],[-14,{"n":3.5,"e":4175}],[-13,{"n":5,"e":4185,"g":1}],[-12,{"n":5,"e":4197}],[-11,{"n":5,"e":4200,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3933,[{"t":"Y"}]]]}],[6473,{"n":"Galbraith","f":"Ethan","fp":"MO","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6476,{"n":"Puigmal Martínez","f":"Arnau","fp":"MD","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6479,{"n":"Mengi","f":"Teden","fp":"DC","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6487,{"n":"Laird","f":"Ethan","fp":"DL","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6488,{"n":"Mellor","f":"D'Mani","fp":"A","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6543,{"n":"Bishop","f":"Nathan","fp":"G","r":1,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[6556,{"n":"Bruno Fernandes","f":"","fp":"MO","r":39,"c":31,"s":{"g":3,"s":27,"n":4,"a":6.75,"d":0.96,"Sg":3,"Ss":27,"Sn":4,"Sa":6.75,"Sd":0.96,"Og":11,"Os":113,"On":17,"Oa":6.65,"Od":1.01,"pm":15,"pa":2},"p":[[-38,{"n":7,"e":3933,"g":1}],[-37,{"n":5,"e":3945}],[-36,{"n":5.5,"e":3951}],[-35,{"n":5.5,"e":3962}],[-34,{"n":7.5,"e":3969,"g":1}],[-33,{"n":8,"e":3982,"g":1}],[-32,{"n":7.5,"e":3991,"g":2}],[-31,{"n":5.5,"e":4002}],[-30,{"n":7.5,"e":4015,"g":1}],[-29,{"n":6,"e":4024}],[-28,{"n":7,"e":4031,"g":1}],[-27,{"n":8,"e":4044,"g":1}],[-26,{"n":6,"e":4051}],[5,{"n":8,"e":6890,"g":1}],[4,{"n":6,"e":6899,"g":1}],[3,{"n":7,"e":6903,"g":1}],[2,{"n":6,"e":6917}],[1,{"n":null,"e":6921,"d":1}]],"fo":[[3945,[{"t":"Y"}]],[6903,[{"t":"Y"}]]],"a":{"m":40,"a":59,"M":77,"n":15}}],[6558,{"n":"Ighalo","f":"Odion","fp":"A","r":4,"c":31,"s":{"s":4,"n":1,"a":4,"Os":53,"On":12,"Oa":4.42,"Od":0.36,"pa":12},"p":[[-38,{"n":4,"e":3933,"s":1}],[-37,{"n":4.5,"e":3945,"s":1}],[-34,{"n":4.5,"e":3969,"s":1}],[-33,{"n":4,"e":3982,"s":1}],[-32,{"n":4.5,"e":3991,"s":1}],[-31,{"n":5,"e":4002,"s":1}],[-30,{"n":4.5,"e":4015,"s":1}],[-29,{"n":4.5,"e":4024,"s":1}],[-28,{"n":4.5,"e":4031,"s":1}],[-27,{"n":5,"e":4044,"s":1}],[-26,{"n":4,"e":4051,"s":1}],[2,{"n":4,"e":6917,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":4,"a":5,"M":5,"n":5}}],[7180,{"n":"van de Beek","f":"Donny","fp":"MO","r":11,"c":31,"s":{"g":1,"s":20,"n":4,"a":5,"Sg":1,"Ss":20,"Sn":4,"Sa":5,"Og":1,"Os":20,"On":4,"Oa":5,"pm":4},"p":[[5,{"n":5,"e":6890,"s":1}],[4,{"n":5,"e":6899,"s":1}],[3,{"n":5,"e":6903,"s":1}],[2,{"n":5,"e":6917,"g":1,"s":1}],[1,{"n":null,"e":6921,"d":1}]],"a":{"m":15,"a":18,"M":21,"n":13}}],[7262,{"n":"Elanga","f":"Anthony","fp":"A","r":2,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[7402,{"n":"Pellistri","f":"Facundo","fp":"MO","r":5,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]]}],[7407,{"n":"Alex Telles","f":"","fp":"DL","r":9,"c":31,"s":{},"p":[[1,{"n":null,"e":6921,"d":1}]],"a":{"m":10,"a":13,"M":21,"n":7}}],[30,{"n":"Saint-Maximin","f":"Allan","fp":"MO","r":19,"c":46,"s":{"g":1,"s":23.5,"n":4,"a":5.88,"d":1.75,"Sg":1,"Ss":13,"Sn":2,"Sa":6.5,"Sd":2.12,"Og":4,"Os":159,"On":27,"Oa":5.89,"Od":1.06,"pm":23,"pa":4},"p":[[1,{"n":6.5,"e":6927}],[-36,{"n":6.5,"e":3955}],[-33,{"n":5,"e":3983}],[-29,{"n":7.5,"e":4026,"g":1}],[-25,{"n":7,"e":4064}],[-11,{"n":6,"e":4207}],[-38,{"n":3.5,"e":3935}],[-37,{"n":5,"e":3940}],[-35,{"n":5.5,"e":3966}],[-32,{"n":8,"e":3990}],[-31,{"n":6,"e":4003}],[-30,{"n":7,"e":4013,"g":1}],[-28,{"n":5,"e":4033,"s":1}],[-27,{"n":5.5,"e":4041}],[-26,{"n":5.5,"e":4048}],[-23,{"n":6,"e":4083}],[-16,{"n":6.5,"e":4153}],[-15,{"n":6,"e":4161,"g":1}],[-14,{"n":6,"e":4172}],[-13,{"n":5,"e":4179}],[-12,{"n":6,"e":4191}],[-10,{"n":5.5,"e":4213}],[-9,{"n":5.5,"e":4220}],[-8,{"n":6,"e":4237}],[5,{"n":5,"e":6890}],[4,{"n":8,"e":6900,"g":1}],[2,{"n":4,"e":6918}]],"fo":[[6900,[{"t":"I"}]],[6918,[{"t":"I"}]]],"a":{"m":17,"a":23,"M":28,"n":6}}],[132,{"n":"Saivet","f":"Henri","fp":"MO","r":2,"c":46}],[628,{"n":"Carroll","f":"Andy","fp":"A","r":8,"c":46,"s":{"s":14,"n":3,"a":4.67,"d":1.04,"Os":99.5,"On":21,"Oa":4.74,"Od":0.75,"pa":21},"p":[[3,{"n":5,"e":6909,"s":1}],[-22,{"n":4.5,"e":4097,"s":1}],[-38,{"n":4,"e":3935,"s":1}],[-37,{"n":4,"e":3940,"s":1}],[-33,{"n":4,"e":3983,"s":1}],[-32,{"n":5,"e":3990,"s":1}],[-31,{"n":6,"e":4003,"s":1}],[-30,{"n":4.5,"e":4013,"s":1}],[-20,{"n":5.5,"e":4113}],[-18,{"n":4.5,"e":4133}],[-17,{"n":3.5,"e":4139}],[-16,{"n":6,"e":4153,"s":1}],[-15,{"n":6,"e":4161}],[-13,{"n":5,"e":4179,"s":1}],[-12,{"n":5,"e":4191,"s":1}],[-11,{"n":4.5,"e":4207,"s":1}],[-9,{"n":4.5,"e":4220,"s":1}],[-8,{"n":4.5,"e":4237,"s":1}],[-7,{"n":4.5,"e":4245,"s":1}],[2,{"n":3.5,"e":6918}],[1,{"n":5.5,"e":6927}]]}],[744,{"n":"Fraser","f":"Ryan","fp":"MO","r":9,"c":46,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Os":138,"On":25,"Oa":5.52,"Od":0.73,"pm":21,"pa":4},"p":[[-21,{"n":5.5,"e":4107,"s":1}],[-29,{"n":5.5,"e":4023}],[-28,{"n":5.5,"e":4029}],[-27,{"n":5,"e":4039,"s":1}],[-26,{"n":6,"e":4055}],[-25,{"n":7,"e":4058}],[-24,{"n":7,"e":4069}],[-23,{"n":5.5,"e":4084}],[-22,{"n":5,"e":4089}],[-20,{"n":5,"e":4109,"s":1}],[-19,{"n":5,"e":4119}],[-18,{"n":5,"e":4129}],[-17,{"n":7,"e":4140}],[-16,{"n":4.5,"e":4149}],[-15,{"n":5,"e":4166,"s":1}],[-14,{"n":4.5,"e":4173}],[-13,{"n":6,"e":4180}],[-12,{"n":5.5,"e":4191}],[-11,{"n":5.5,"e":4200}],[-10,{"n":6,"e":4216}],[-9,{"n":6,"e":4219}],[-8,{"n":5.5,"e":4236,"s":1}],[5,{"n":4.5,"e":6890,"s":1}],[4,{"n":6,"e":6900,"s":1}],[2,{"n":5,"e":6918,"s":1}]]}],[809,{"n":"Wilson","f":"Callum","fp":"A","r":22,"c":46,"s":{"g":4,"s":27.5,"n":5,"a":5.5,"d":2.18,"Sg":4,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":2.18,"Og":8,"Os":160,"On":34,"Oa":4.71,"Od":1.26,"pa":34},"p":[[-37,{"n":4,"e":3939}],[-38,{"n":5.5,"e":3932}],[-36,{"n":5.5,"e":3954,"s":1}],[-35,{"n":6,"e":3959}],[-34,{"n":5,"e":3970}],[-31,{"n":4,"e":4007}],[-30,{"n":4,"e":4009}],[-29,{"n":6,"e":4023,"g":1}],[-28,{"n":4.5,"e":4029}],[-27,{"n":3.5,"e":4039}],[-26,{"n":6,"e":4055,"g":1}],[-25,{"n":4.5,"e":4058}],[-24,{"n":7,"e":4069,"g":1}],[-23,{"n":4.5,"e":4084}],[-22,{"n":3,"e":4089}],[-21,{"n":3,"e":4107}],[-20,{"n":4.5,"e":4109,"s":1}],[-19,{"n":4,"e":4119}],[-18,{"n":4,"e":4129,"s":1}],[-16,{"n":3.5,"e":4149}],[-15,{"n":3.5,"e":4166}],[-14,{"n":4,"e":4173}],[-13,{"n":4.5,"e":4180}],[-12,{"n":4,"e":4191}],[-11,{"n":5,"e":4200}],[-10,{"n":4,"e":4216}],[-9,{"n":4,"e":4219}],[-8,{"n":5,"e":4236}],[-7,{"n":6.5,"e":4240,"g":1}],[5,{"n":3.5,"e":6890}],[4,{"n":8,"e":6900,"g":2}],[3,{"n":6,"e":6909,"g":1}],[2,{"n":3,"e":6918}],[1,{"n":7,"e":6927,"g":1}]],"fo":[[4007,[{"t":"Y"}]]],"a":{"m":17,"a":32,"M":61,"n":17}}],[814,{"n":"Manquillo","f":"Javier","fp":"DL","r":10,"c":46,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Os":103,"On":21,"Oa":4.9,"Od":1,"pd":17,"pm":4},"p":[[-38,{"n":3.5,"e":3935}],[-37,{"n":5,"e":3940}],[-35,{"n":3,"e":3966}],[-34,{"n":5,"e":3974,"s":1}],[-33,{"n":5,"e":3983}],[-32,{"n":6,"e":3990}],[-31,{"n":5.5,"e":4003}],[-30,{"n":6,"e":4013}],[-29,{"n":5,"e":4026}],[-28,{"n":5,"e":4033}],[-21,{"n":3.5,"e":4103}],[-19,{"n":3.5,"e":4124}],[-18,{"n":5.5,"e":4133}],[-17,{"n":5,"e":4139}],[-16,{"n":5.5,"e":4153}],[-15,{"n":7,"e":4161}],[-14,{"n":4.5,"e":4172}],[4,{"n":5,"e":6900,"s":1}],[3,{"n":4.5,"e":6909}],[2,{"n":4,"e":6918}],[1,{"n":6,"e":6927}]],"fo":[[3966,[{"t":"Y"}]],[6927,[{"t":"Y"}]]]}],[913,{"n":"Fernández","f":"Federico","fp":"DC","r":13,"c":46,"s":{"s":24.5,"n":5,"a":4.9,"d":1.29,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.29,"Og":2,"Oao":1,"Os":168.5,"On":34,"Oa":4.96,"Od":1.17,"pd":34},"p":[[-38,{"n":4,"e":3935}],[-37,{"n":6,"e":3940}],[-36,{"n":3.5,"e":3955}],[-35,{"n":5,"e":3966}],[-34,{"n":2,"e":3974,"a":1}],[-33,{"n":5,"e":3983}],[-32,{"n":5.5,"e":3990}],[-31,{"n":6,"e":4003}],[-30,{"n":6,"e":4013}],[-29,{"n":5.5,"e":4026}],[-28,{"n":5.5,"e":4033}],[-27,{"n":4.5,"e":4041}],[-26,{"n":4.5,"e":4048}],[-25,{"n":6,"e":4064}],[-24,{"n":3.5,"e":4070}],[-23,{"n":6,"e":4083}],[-22,{"n":4.5,"e":4097}],[-21,{"n":3,"e":4103}],[-20,{"n":4.5,"e":4113}],[-19,{"n":3,"e":4124}],[-18,{"n":5.5,"e":4133}],[-17,{"n":4.5,"e":4139}],[-16,{"n":6,"e":4153,"g":1}],[-15,{"n":6,"e":4161}],[-14,{"n":5,"e":4172}],[-13,{"n":4.5,"e":4179}],[-12,{"n":5.5,"e":4191}],[-11,{"n":7,"e":4207,"g":1}],[-10,{"n":6.5,"e":4213}],[5,{"n":3.5,"e":6890}],[4,{"n":5.5,"e":6900}],[3,{"n":6,"e":6909}],[2,{"n":3.5,"e":6918}],[1,{"n":6,"e":6927}]],"fo":[[3935,[{"t":"Y"}]],[3955,[{"t":"Y"}]],[3966,[{"t":"Y"}]],[4003,[{"t":"Y"}]]],"a":{"m":14,"a":18,"M":27,"n":8}}],[997,{"n":"Hendrick","f":"Jeff","fp":"MO","r":12,"c":46,"s":{"g":1,"s":26.5,"n":5,"a":5.3,"d":1.68,"Sg":1,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.68,"Og":2,"Os":131.5,"On":26,"Oa":5.06,"Od":1.21,"pm":24,"pa":2},"p":[[-29,{"n":5.5,"e":4019}],[-28,{"n":5.5,"e":4033}],[-27,{"n":6,"e":4039}],[-26,{"n":6,"e":4056}],[-25,{"n":5.5,"e":4059}],[-24,{"n":6,"e":4074}],[-23,{"n":5.5,"e":4080}],[-22,{"n":3,"e":4090}],[-20,{"n":4,"e":4110}],[-18,{"n":5,"e":4129}],[-17,{"n":5,"e":4139}],[-16,{"n":3,"e":4155}],[-15,{"n":4,"e":4159}],[-14,{"n":5,"e":4168}],[-13,{"n":5.5,"e":4186}],[-12,{"n":6.5,"e":4188}],[-11,{"n":3.5,"e":4205}],[-10,{"n":4,"e":4210}],[-9,{"n":4,"e":4223}],[-8,{"n":7,"e":4229,"g":1}],[-7,{"n":5.5,"e":4239}],[5,{"n":4.5,"e":6890}],[4,{"n":5,"e":6900}],[3,{"n":5.5,"e":6909}],[2,{"n":3.5,"e":6918}],[1,{"n":8,"e":6927,"g":1}]]}],[1466,{"n":"Gayle","f":"Dwight","fp":"A","r":8,"c":46,"s":{"Og":4,"Os":95.5,"On":20,"Oa":4.78,"Od":0.85,"pa":20},"p":[[-38,{"n":6,"e":3935,"g":1}],[-37,{"n":4,"e":3940}],[-36,{"n":4,"e":3955}],[-35,{"n":6,"e":3966,"g":1}],[-34,{"n":4.5,"e":3974,"s":1}],[-33,{"n":5.5,"e":3983}],[-32,{"n":6,"e":3990,"g":1}],[-31,{"n":6,"e":4003,"g":1,"s":1}],[-29,{"n":5,"e":4026}],[-28,{"n":5,"e":4033}],[-27,{"n":4.5,"e":4041,"s":1}],[-22,{"n":6,"e":4097}],[-20,{"n":4,"e":4113,"s":1}],[-19,{"n":3.5,"e":4124}],[-18,{"n":4.5,"e":4133,"s":1}],[-17,{"n":4,"e":4139,"s":1}],[-14,{"n":4,"e":4172,"s":1}],[-13,{"n":4.5,"e":4179,"s":1}],[-10,{"n":4,"e":4213,"s":1}],[-9,{"n":4.5,"e":4220,"s":1}]],"fo":[[3983,[{"t":"Y"}]]]}],[1468,{"n":"Ritchie","f":"Matt","fp":"DL","r":8,"c":46,"s":{"s":5,"n":1,"a":5,"Og":2,"Os":82,"On":16,"Oa":5.13,"Od":1.1,"pd":4,"pm":12},"p":[[-38,{"n":3,"e":3935}],[-37,{"n":5.5,"e":3940}],[-36,{"n":5,"e":3955,"g":1}],[-35,{"n":4.5,"e":3966}],[-34,{"n":4,"e":3974}],[-33,{"n":5,"e":3983,"s":1}],[-31,{"n":6,"e":4003}],[-30,{"n":8,"e":4013,"g":1}],[-29,{"n":5,"e":4026}],[-28,{"n":6,"e":4033}],[-27,{"n":4.5,"e":4041,"s":1}],[-26,{"n":4.5,"e":4048,"s":1}],[-25,{"n":5.5,"e":4064}],[-24,{"n":4.5,"e":4070}],[-23,{"n":6,"e":4083,"s":1}],[3,{"n":5,"e":6909}]],"fo":[[4003,[{"t":"I"}]],[6909,[{"t":"I"}]],[3940,[{"t":"Y"}]]]}],[1469,{"n":"Lascelles","f":"Jamaal","fp":"DC","r":11,"c":46,"s":{"s":19,"n":4,"a":4.75,"d":1.19,"Ss":4,"Sn":1,"Sa":4,"Og":1,"Os":109,"On":22,"Oa":4.95,"Od":1.06,"pd":22},"p":[[-35,{"n":5,"e":3966}],[-33,{"n":3.5,"e":3983}],[-32,{"n":5.5,"e":3990}],[-31,{"n":5.5,"e":4003}],[-30,{"n":5.5,"e":4013}],[-29,{"n":6,"e":4026}],[-28,{"n":4.5,"e":4033}],[-27,{"n":5.5,"e":4041}],[-26,{"n":3,"e":4048}],[-25,{"n":5.5,"e":4064}],[-24,{"n":4.5,"e":4070}],[-23,{"n":6.5,"e":4083}],[-12,{"n":4,"e":4191}],[-11,{"n":5,"e":4207}],[-10,{"n":7,"e":4213,"g":1}],[-9,{"n":4.5,"e":4220}],[-8,{"n":5.5,"e":4237}],[-7,{"n":3.5,"e":4245}],[5,{"n":4,"e":6890}],[3,{"n":5.5,"e":6909}],[2,{"n":3.5,"e":6918}],[1,{"n":6,"e":6927}]],"fo":[[3966,[{"t":"Y"}]],[4003,[{"t":"Y"}]],[4013,[{"t":"Y"}]],[6918,[{"t":"Y"}]]]}],[1475,{"n":"Darlow","f":"Karl","fp":"G","r":15,"c":46,"s":{"s":31,"n":5,"a":6.2,"d":1.6,"Ss":31,"Sn":5,"Sa":6.2,"Sd":1.6,"Os":31,"On":5,"Oa":6.2,"Od":1.6,"pg":5},"p":[[5,{"n":6,"e":6890}],[4,{"n":6,"e":6900}],[3,{"n":8.5,"e":6909}],[2,{"n":4,"e":6918}],[1,{"n":6.5,"e":6927}]]}],[1476,{"n":"Shelvey","f":"Jonjo","fp":"MD","r":18,"c":46,"s":{"s":23.5,"n":5,"a":4.7,"d":1.15,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.15,"Og":5,"Os":143.5,"On":27,"Oa":5.31,"Od":1.14,"pm":26,"pa":1},"p":[[-38,{"n":5.5,"e":3935}],[-37,{"n":4.5,"e":3940}],[-36,{"n":5,"e":3955}],[-35,{"n":5.5,"e":3966}],[-34,{"n":2.5,"e":3974}],[-33,{"n":6,"e":3983,"g":1}],[-32,{"n":7,"e":3990}],[-31,{"n":6,"e":4003}],[-30,{"n":5.5,"e":4013}],[-29,{"n":6,"e":4026}],[-28,{"n":5,"e":4033}],[-23,{"n":6,"e":4083}],[-21,{"n":4,"e":4103}],[-20,{"n":4,"e":4113}],[-18,{"n":5,"e":4133}],[-16,{"n":6,"e":4153,"g":1}],[-15,{"n":7.5,"e":4161,"g":1}],[-14,{"n":7,"e":4172,"g":1}],[-13,{"n":5,"e":4179}],[-12,{"n":5.5,"e":4191}],[-11,{"n":6.5,"e":4207,"g":1}],[-10,{"n":5,"e":4213,"s":1}],[5,{"n":3.5,"e":6890}],[4,{"n":6,"e":6900}],[3,{"n":5,"e":6909}],[2,{"n":3.5,"e":6918}],[1,{"n":5.5,"e":6927}]],"fo":[[3955,[{"t":"Y"}]],[6909,[{"t":"Y"}]],[6918,[{"t":"Y"}]]]}],[1487,{"n":"Atsu","f":"Christian","fp":"MO","r":3,"c":46,"s":{"Os":73,"On":15,"Oa":4.87,"Od":0.52,"pm":15},"p":[[-34,{"n":5,"e":3974,"s":1}],[-24,{"n":4.5,"e":4070}],[-22,{"n":4.5,"e":4097,"s":1}],[-20,{"n":4.5,"e":4113,"s":1}],[-19,{"n":5,"e":4124,"s":1}],[-17,{"n":4.5,"e":4139}],[-15,{"n":5.5,"e":4161,"s":1}],[-14,{"n":5.5,"e":4172,"s":1}],[-13,{"n":5,"e":4179,"s":1}],[-12,{"n":5,"e":4191,"s":1}],[-11,{"n":5.5,"e":4207,"s":1}],[-10,{"n":5,"e":4213,"s":1}],[-9,{"n":5,"e":4220,"s":1}],[-8,{"n":5,"e":4237,"s":1}],[-7,{"n":3.5,"e":4245}]]}],[1488,{"n":"Hayden","f":"Isaac","fp":"MD","r":14,"c":46,"s":{"s":26.5,"n":5,"a":5.3,"d":1.15,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":1.15,"Og":1,"Os":145,"On":28,"Oa":5.18,"Od":0.83,"pd":3,"pm":25},"p":[[-38,{"n":4.5,"e":3935,"s":1}],[-33,{"n":5,"e":3983}],[-32,{"n":4.5,"e":3990,"s":1}],[-31,{"n":5,"e":4003}],[-30,{"n":7,"e":4013}],[-29,{"n":5.5,"e":4026}],[-28,{"n":5.5,"e":4033}],[-26,{"n":4.5,"e":4048,"s":1}],[-25,{"n":5,"e":4064}],[-24,{"n":5,"e":4070}],[-23,{"n":7,"e":4083,"g":1}],[-22,{"n":4.5,"e":4097}],[-21,{"n":4,"e":4103}],[-20,{"n":5.5,"e":4113}],[-18,{"n":5.5,"e":4133}],[-17,{"n":5,"e":4139}],[-16,{"n":5.5,"e":4153}],[-15,{"n":5.5,"e":4161}],[-14,{"n":5,"e":4172}],[-13,{"n":4.5,"e":4179}],[-12,{"n":5,"e":4191}],[-11,{"n":6,"e":4207}],[-7,{"n":4,"e":4245}],[5,{"n":5.5,"e":6890}],[4,{"n":5.5,"e":6900}],[3,{"n":4.5,"e":6909}],[2,{"n":4,"e":6918}],[1,{"n":7,"e":6927}]],"fo":[[3983,[{"t":"I"}]],[4003,[{"t":"I"}]],[6890,[{"t":"I"}]],[6909,[{"t":"Y"}]],[6927,[{"t":"Y"}]]]}],[1491,{"n":"Dummett","f":"Paul","fp":"DC","r":1,"c":46,"s":{"Oao":1,"Os":47.5,"On":10,"Oa":4.75,"Od":0.89,"pd":9,"pm":1},"p":[[-22,{"n":5,"e":4097}],[-18,{"n":5.5,"e":4133}],[-17,{"n":4.5,"e":4139}],[-16,{"n":4,"e":4153}],[-15,{"n":6,"e":4161}],[-14,{"n":5,"e":4172}],[-13,{"n":4,"e":4179}],[-12,{"n":5.5,"e":4191,"s":1}],[-11,{"n":5,"e":4207,"s":1}],[-7,{"n":3,"e":4245,"a":1}]]}],[1492,{"n":"Yedlin","f":"DeAndre","fp":"DL","r":7,"c":46,"s":{"Og":1,"Os":77.5,"On":16,"Oa":4.84,"Od":0.83,"pd":15,"pm":1},"p":[[-36,{"n":4,"e":3955}],[-34,{"n":3,"e":3974}],[-32,{"n":5.5,"e":3990,"s":1}],[-30,{"n":5,"e":4013,"s":1}],[-25,{"n":5,"e":4064}],[-21,{"n":5,"e":4103,"s":1}],[-20,{"n":4.5,"e":4113}],[-19,{"n":5,"e":4124,"s":1}],[-18,{"n":5,"e":4133,"s":1}],[-13,{"n":4,"e":4179}],[-12,{"n":6.5,"e":4191,"g":1}],[-11,{"n":4,"e":4207}],[-10,{"n":5,"e":4213}],[-9,{"n":6,"e":4220}],[-8,{"n":5,"e":4237}],[-7,{"n":5,"e":4245,"s":1}]]}],[1499,{"n":"Clark","f":"Ciaran","fp":"DC","r":5,"c":46,"s":{"Og":2,"Os":74.5,"On":14,"Oa":5.32,"Od":0.91,"pd":14},"p":[[-26,{"n":4,"e":4048}],[-25,{"n":6,"e":4064}],[-24,{"n":4.5,"e":4070}],[-23,{"n":6,"e":4083}],[-22,{"n":6,"e":4097}],[-16,{"n":4.5,"e":4153}],[-15,{"n":6,"e":4161}],[-14,{"n":5.5,"e":4172}],[-13,{"n":4,"e":4179}],[-12,{"n":7,"e":4191,"g":1}],[-11,{"n":6,"e":4207,"g":1}],[-10,{"n":5,"e":4213}],[-9,{"n":4.5,"e":4220}],[-8,{"n":5.5,"e":4237}]]}],[1504,{"n":"Murphy","f":"Jacob","fp":"MO","r":6,"c":46,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[3,{"n":5,"e":6909,"s":1}]]}],[1515,{"n":"Aarons","f":"Rolando","fp":"MO","r":1,"c":46}],[1725,{"n":"Schär","f":"Fabian","fp":"DC","r":9,"c":46,"s":{"s":8,"n":2,"a":4,"d":0.71,"Ss":8,"Sn":2,"Sa":4,"Sd":0.71,"Og":1,"Os":82.5,"On":18,"Oa":4.58,"Od":1.09,"pd":16,"pm":2},"p":[[-36,{"n":3,"e":3955}],[-35,{"n":5.5,"e":3966}],[-34,{"n":3.5,"e":3974}],[-30,{"n":5,"e":4013,"s":1}],[-27,{"n":5.5,"e":4041}],[-26,{"n":4.5,"e":4048,"s":1}],[-24,{"n":5.5,"e":4070,"s":1}],[-21,{"n":4.5,"e":4103}],[-20,{"n":7,"e":4113,"g":1}],[-19,{"n":3,"e":4124}],[-18,{"n":5,"e":4133}],[-17,{"n":5,"e":4139}],[-16,{"n":5,"e":4153,"s":1}],[-9,{"n":4,"e":4220}],[-8,{"n":5.5,"e":4237}],[-7,{"n":3,"e":4245}],[5,{"n":3.5,"e":6890,"s":1}],[4,{"n":4.5,"e":6900}]],"fo":[[6900,[{"t":"I"}]],[3966,[{"t":"Y"}]]]}],[2306,{"n":"Dubravka","f":"Martin","fp":"G","r":9,"c":46,"s":{"Os":177,"On":32,"Oa":5.53,"Od":1.26,"pg":32},"p":[[-38,{"n":4,"e":3935}],[-37,{"n":6.5,"e":3940}],[-36,{"n":4,"e":3955}],[-35,{"n":6,"e":3966}],[-34,{"n":4,"e":3974}],[-33,{"n":6,"e":3983}],[-32,{"n":4.5,"e":3990}],[-31,{"n":3.5,"e":4003}],[-30,{"n":6,"e":4013}],[-29,{"n":6,"e":4026}],[-28,{"n":6,"e":4033}],[-27,{"n":6.5,"e":4041}],[-26,{"n":3,"e":4048}],[-25,{"n":6,"e":4064}],[-24,{"n":6,"e":4070}],[-23,{"n":6.5,"e":4083}],[-22,{"n":5.5,"e":4097}],[-21,{"n":5,"e":4103}],[-20,{"n":6.5,"e":4113}],[-19,{"n":4,"e":4124}],[-18,{"n":7,"e":4133}],[-17,{"n":6,"e":4139}],[-16,{"n":5.5,"e":4153}],[-15,{"n":8,"e":4161}],[-14,{"n":7,"e":4172}],[-13,{"n":6,"e":4179}],[-12,{"n":5.5,"e":4191}],[-11,{"n":6,"e":4207}],[-10,{"n":4,"e":4213}],[-9,{"n":7,"e":4220}],[-8,{"n":6.5,"e":4237}],[-7,{"n":3,"e":4245}]]}],[2758,{"n":"Sean Longstaff","f":"","fp":"MD","r":8,"c":46,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":98.5,"On":21,"Oa":4.69,"Od":0.98,"pm":21},"p":[[-38,{"n":4.5,"e":3935,"s":1}],[-32,{"n":6.5,"e":3990,"g":1}],[-29,{"n":4.5,"e":4026,"s":1}],[-27,{"n":5,"e":4041}],[-26,{"n":4.5,"e":4048}],[-25,{"n":5,"e":4064,"s":1}],[-24,{"n":4.5,"e":4070}],[-23,{"n":5,"e":4083,"s":1}],[-22,{"n":5,"e":4097}],[-21,{"n":4,"e":4103,"s":1}],[-20,{"n":4.5,"e":4113,"s":1}],[-19,{"n":3,"e":4124}],[-18,{"n":4.5,"e":4133,"s":1}],[-17,{"n":4,"e":4139}],[-16,{"n":5.5,"e":4153,"s":1}],[-10,{"n":4,"e":4213}],[-9,{"n":5,"e":4220}],[-8,{"n":7,"e":4237}],[-7,{"n":2.5,"e":4245}],[4,{"n":5,"e":6900,"s":1}],[1,{"n":5,"e":6927,"s":1}]],"fo":[[3990,[{"t":"I"}]]]}],[2796,{"n":"Krafth","f":"Emil","fp":"DL","r":8,"c":46,"s":{"s":8,"n":2,"a":4,"d":1.41,"Ss":8,"Sn":2,"Sa":4,"Sd":1.41,"Os":69.5,"On":15,"Oa":4.63,"Od":0.99,"pd":15},"p":[[-37,{"n":6,"e":3940}],[-36,{"n":3,"e":3955}],[-35,{"n":5,"e":3966,"s":1}],[-34,{"n":3.5,"e":3974}],[-33,{"n":5,"e":3983}],[-32,{"n":5,"e":3990}],[-24,{"n":5,"e":4070,"s":1}],[-23,{"n":5.5,"e":4083}],[-21,{"n":5,"e":4103,"s":1}],[-19,{"n":5,"e":4124,"s":1}],[-15,{"n":5.5,"e":4161,"s":1}],[-8,{"n":5,"e":4237,"s":1}],[-7,{"n":3,"e":4245}],[5,{"n":3,"e":6890}],[4,{"n":5,"e":6900}]],"fo":[[6890,[{"t":"Y"}]]]}],[3356,{"n":"Almirón","f":"Miguel","fp":"MO","r":19,"c":46,"s":{"s":21.5,"n":4,"a":5.38,"d":0.63,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":4,"Os":187.5,"On":34,"Oa":5.51,"Od":1.07,"pm":28,"pa":6},"p":[[-38,{"n":5,"e":3935}],[-37,{"n":5.5,"e":3940}],[-36,{"n":5.5,"e":3955}],[-35,{"n":4.5,"e":3966}],[-33,{"n":6.5,"e":3983,"g":1}],[-32,{"n":7,"e":3990,"g":1,"s":1}],[-31,{"n":5,"e":4003}],[-30,{"n":7,"e":4013}],[-29,{"n":5.5,"e":4026}],[-28,{"n":6,"e":4033}],[-27,{"n":4.5,"e":4041}],[-26,{"n":4,"e":4048}],[-25,{"n":5.5,"e":4064}],[-24,{"n":5,"e":4070}],[-23,{"n":7,"e":4083}],[-22,{"n":8,"e":4097,"g":1}],[-21,{"n":4,"e":4103}],[-20,{"n":4.5,"e":4113}],[-19,{"n":5,"e":4124}],[-18,{"n":7.5,"e":4133,"g":1}],[-16,{"n":6,"e":4153}],[-15,{"n":6,"e":4161}],[-14,{"n":6.5,"e":4172}],[-13,{"n":4,"e":4179}],[-12,{"n":5.5,"e":4191}],[-11,{"n":6.5,"e":4207}],[-10,{"n":5.5,"e":4213}],[-9,{"n":4.5,"e":4220}],[-8,{"n":5.5,"e":4237}],[-7,{"n":3.5,"e":4245}],[5,{"n":4.5,"e":6890,"s":1}],[3,{"n":5.5,"e":6909}],[2,{"n":5.5,"e":6918,"s":1}],[1,{"n":6,"e":6927,"s":1}]],"a":{"m":19,"a":21,"M":21,"n":6}}],[3674,{"n":"Lewis","f":"Jamal","fp":"DL","r":10,"c":46,"s":{"s":15.5,"n":4,"a":3.88,"d":0.75,"Ss":15.5,"Sn":4,"Sa":3.88,"Sd":0.75,"Og":1,"Os":110.5,"On":26,"Oa":4.25,"Od":0.99,"pd":26},"p":[[-20,{"n":5,"e":4114}],[-38,{"n":3,"e":3934}],[-37,{"n":4,"e":3942}],[-36,{"n":5.5,"e":3950}],[-35,{"n":3,"e":3963}],[-34,{"n":4,"e":3976}],[-33,{"n":5,"e":3984}],[-32,{"n":3.5,"e":3988}],[-31,{"n":4,"e":4004}],[-30,{"n":4,"e":4014}],[-29,{"n":4.5,"e":4025}],[-28,{"n":7,"e":4034,"g":1}],[-27,{"n":4,"e":4047}],[-26,{"n":6,"e":4054,"s":1}],[-22,{"n":4.5,"e":4094,"s":1}],[-16,{"n":4.5,"e":4154,"s":1}],[-12,{"n":4,"e":4192}],[-11,{"n":3.5,"e":4201}],[-10,{"n":3,"e":4214}],[-9,{"n":5,"e":4219}],[-8,{"n":3,"e":4232}],[-7,{"n":5,"e":4242}],[5,{"n":3,"e":6890}],[4,{"n":4.5,"e":6900}],[3,{"n":4.5,"e":6909,"s":1}],[2,{"n":3.5,"e":6918}]],"fo":[[3976,[{"t":"Y"}]],[3984,[{"t":"Y"}]],[6900,[{"t":"Y"}]],[6909,[{"t":"Y"}]],[6918,[{"t":"Y"}]]]}],[5433,{"n":"Matthew Longstaff","f":"","fp":"MD","r":7,"c":46,"s":{"Og":2,"Os":47,"On":9,"Oa":5.22,"Od":0.94,"pm":9},"p":[[-36,{"n":5,"e":3955,"s":1}],[-34,{"n":5,"e":3974,"s":1}],[-24,{"n":5.5,"e":4070}],[-23,{"n":5,"e":4083,"s":1}],[-22,{"n":6,"e":4097}],[-19,{"n":5,"e":4124,"g":1}],[-10,{"n":5,"e":4213}],[-9,{"n":3.5,"e":4220}],[-8,{"n":7,"e":4237,"g":1}]]}],[5442,{"n":"Joelinton","f":"","fp":"A","r":13,"c":46,"s":{"s":24.5,"n":5,"a":4.9,"d":0.96,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":0.96,"Og":1,"Os":171,"On":37,"Oa":4.62,"Od":0.9,"pm":7,"pa":30},"p":[[-38,{"n":3.5,"e":3935,"s":1}],[-37,{"n":4.5,"e":3940,"s":1}],[-36,{"n":5,"e":3955,"s":1}],[-35,{"n":5,"e":3966,"s":1}],[-34,{"n":2.5,"e":3974}],[-33,{"n":5,"e":3983}],[-32,{"n":5,"e":3990}],[-31,{"n":4,"e":4003}],[-30,{"n":7,"e":4013,"g":1}],[-29,{"n":4.5,"e":4026,"s":1}],[-28,{"n":5,"e":4033}],[-27,{"n":4,"e":4041}],[-26,{"n":4,"e":4048}],[-25,{"n":5,"e":4064}],[-24,{"n":4,"e":4070}],[-23,{"n":4,"e":4083}],[-22,{"n":4.5,"e":4097}],[-21,{"n":2.5,"e":4103}],[-20,{"n":5.5,"e":4113}],[-19,{"n":5.5,"e":4124}],[-18,{"n":5,"e":4133}],[-17,{"n":5.5,"e":4139}],[-16,{"n":4.5,"e":4153}],[-15,{"n":4.5,"e":4161,"s":1}],[-14,{"n":4.5,"e":4172}],[-13,{"n":5,"e":4179}],[-12,{"n":4.5,"e":4191}],[-11,{"n":6,"e":4207}],[-10,{"n":4.5,"e":4213}],[-9,{"n":3.5,"e":4220}],[-8,{"n":4,"e":4237}],[-7,{"n":5,"e":4245}],[5,{"n":3.5,"e":6890}],[4,{"n":5.5,"e":6900}],[3,{"n":6,"e":6909}],[2,{"n":4.5,"e":6918,"s":1}],[1,{"n":5,"e":6927,"s":1}]],"fo":[[4013,[{"t":"Y"}]],[6900,[{"t":"Y"}]],[6909,[{"t":"Y"}]]]}],[6898,{"n":"Gillespie","f":"Mark","fp":"G","r":1,"c":46}],[7264,{"n":"Langley","f":"Daniel","fp":"G","r":1,"c":46}],[7404,{"n":"Anderson","f":"Elliot","fp":"MD","r":1,"c":46}],[720,{"n":"Jagielka","f":"Phil","fp":"DC","r":4,"c":77,"s":{"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pd":4},"p":[[-35,{"n":5,"e":3964,"s":1}],[-31,{"n":4.5,"e":4002}],[-13,{"n":4.5,"e":4185}],[-11,{"n":5,"e":4205,"s":1}]]}],[815,{"n":"Rodwell","f":"Jack","fp":"MD","r":4,"c":77,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-33,{"n":5,"e":3978,"s":1}]]}],[980,{"n":"McBurnie","f":"Oliver","fp":"A","r":8,"c":77,"s":{"s":25,"n":5,"a":5,"d":0.5,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.48,"Og":5,"Os":171.5,"On":35,"Oa":4.9,"Od":0.81,"pa":35},"p":[[1,{"n":5.5,"e":6929}],[-38,{"n":3,"e":3936}],[-37,{"n":4,"e":3943}],[-36,{"n":4.5,"e":3953}],[-35,{"n":7,"e":3964,"g":1}],[-34,{"n":4.5,"e":3975}],[-33,{"n":5,"e":3978}],[-32,{"n":6.5,"e":3995,"g":1}],[-31,{"n":4.5,"e":4002,"s":1}],[-30,{"n":4.5,"e":4013}],[-29,{"n":4.5,"e":4025}],[-28,{"n":5,"e":4028}],[-27,{"n":5,"e":4045}],[-26,{"n":5,"e":4055}],[-25,{"n":5,"e":4060}],[-24,{"n":4,"e":4072}],[-23,{"n":5.5,"e":4078}],[-22,{"n":6,"e":4095,"g":1}],[-21,{"n":5,"e":4101,"s":1}],[-20,{"n":4.5,"e":4112,"s":1}],[-19,{"n":5,"e":4125}],[-18,{"n":6,"e":4130,"g":1}],[-17,{"n":5,"e":4145,"s":1}],[-16,{"n":4.5,"e":4154,"s":1}],[-15,{"n":4,"e":4161}],[-14,{"n":5,"e":4174,"s":1}],[-13,{"n":6.5,"e":4185,"g":1,"s":1}],[-11,{"n":5,"e":4205,"s":1}],[-9,{"n":4.5,"e":4225,"s":1}],[-8,{"n":4,"e":4234}],[-7,{"n":4,"e":4238}],[5,{"n":5.5,"e":6891}],[4,{"n":4.5,"e":6894,"s":1}],[3,{"n":4.5,"e":6930,"s":1}],[2,{"n":5,"e":6913,"s":1}]],"fo":[[3995,[{"t":"Y"}]],[6929,[{"t":"Y"}]]],"a":{"m":14,"a":16,"M":25,"n":9}}],[1071,{"n":"Mousset","f":"Lys","fp":"A","r":7,"c":77,"s":{"Og":5,"Os":126,"On":27,"Oa":4.67,"Od":1.04,"pa":27},"p":[[-36,{"n":4,"e":3953,"s":1}],[-35,{"n":3.5,"e":3964,"s":1}],[-34,{"n":4.5,"e":3975,"s":1}],[-33,{"n":4.5,"e":3978,"s":1}],[-32,{"n":6,"e":3995,"g":1,"s":1}],[-31,{"n":3,"e":4002}],[-28,{"n":4.5,"e":4028,"s":1}],[-26,{"n":6,"e":4055,"s":1}],[-25,{"n":5,"e":4060,"s":1}],[-24,{"n":4,"e":4072,"s":1}],[-23,{"n":3,"e":4078}],[-22,{"n":4,"e":4095,"s":1}],[-21,{"n":3.5,"e":4101}],[-20,{"n":4,"e":4112}],[-19,{"n":5,"e":4125,"s":1}],[-18,{"n":4.5,"e":4130,"s":1}],[-17,{"n":4,"e":4145}],[-16,{"n":4,"e":4154}],[-15,{"n":4.5,"e":4161,"s":1}],[-14,{"n":6,"e":4174,"g":1}],[-13,{"n":6,"e":4185,"g":1}],[-12,{"n":5,"e":4194}],[-11,{"n":7,"e":4205}],[-10,{"n":6,"e":4217,"g":1,"s":1}],[-9,{"n":6,"e":4225,"g":1}],[-8,{"n":4.5,"e":4234,"s":1}],[-7,{"n":4,"e":4238,"s":1}]]}],[1119,{"n":"Ramsdale","f":"Aaron","fp":"G","r":15,"c":77,"s":{"s":26,"n":5,"a":5.2,"d":1.15,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.15,"Os":196,"On":36,"Oa":5.44,"Od":0.98,"pg":36},"p":[[-38,{"n":6,"e":3932}],[-37,{"n":7,"e":3939}],[-36,{"n":4.5,"e":3954}],[-35,{"n":6,"e":3959}],[-34,{"n":5.5,"e":3970}],[-33,{"n":4.5,"e":3982}],[-32,{"n":4,"e":3990}],[-31,{"n":5,"e":4007}],[-30,{"n":4,"e":4009}],[-29,{"n":6,"e":4023}],[-28,{"n":5.5,"e":4029}],[-27,{"n":6,"e":4039}],[-26,{"n":5,"e":4055}],[-25,{"n":6,"e":4058}],[-24,{"n":7,"e":4069}],[-23,{"n":6.5,"e":4084}],[-21,{"n":4,"e":4107}],[-20,{"n":5.5,"e":4109}],[-19,{"n":5,"e":4119}],[-18,{"n":4.5,"e":4129}],[-17,{"n":7,"e":4140}],[-16,{"n":6,"e":4149}],[-15,{"n":4.5,"e":4166}],[-14,{"n":4,"e":4173}],[-13,{"n":6,"e":4180}],[-12,{"n":6,"e":4191}],[-11,{"n":7,"e":4200}],[-10,{"n":6.5,"e":4216}],[-9,{"n":5.5,"e":4219}],[-8,{"n":4.5,"e":4236}],[-7,{"n":5.5,"e":4240}],[5,{"n":5.5,"e":6891}],[4,{"n":4.5,"e":6894}],[3,{"n":7,"e":6930}],[2,{"n":5,"e":6913}],[1,{"n":4,"e":6929}]],"a":{"m":17,"a":17,"M":18,"n":5}}],[1318,{"n":"Burke","f":"Oliver","fp":"A","r":9,"c":77,"s":{"s":12.5,"n":3,"a":4.17,"d":0.76,"Og":1,"Os":162,"On":33,"Oa":4.91,"Od":0.69,"pm":26,"pa":7},"p":[[-38,{"n":3.5,"e":4308}],[-37,{"n":6,"e":4324}],[-36,{"n":4.5,"e":4328}],[-35,{"n":5,"e":4345}],[-34,{"n":5,"e":4355}],[-33,{"n":5,"e":4358,"s":1}],[-31,{"n":5,"e":4378,"s":1}],[-30,{"n":5,"e":4390,"s":1}],[-28,{"n":4.5,"e":4410}],[-26,{"n":5,"e":4432,"s":1}],[-25,{"n":5,"e":4438,"s":1}],[-24,{"n":5.5,"e":4453}],[-23,{"n":7,"e":4458,"g":1}],[-22,{"n":4,"e":4475}],[-19,{"n":5,"e":4498,"s":1}],[-18,{"n":5,"e":4508,"s":1}],[-17,{"n":5,"e":4518}],[-16,{"n":4.5,"e":4530,"s":1}],[-14,{"n":5.5,"e":4548}],[-13,{"n":5,"e":4557,"s":1}],[-12,{"n":5,"e":4573,"s":1}],[-9,{"n":5,"e":4598,"s":1}],[-7,{"n":6,"e":4618,"s":1}],[-32,{"n":4.5,"e":4369}],[-21,{"n":5,"e":4478,"s":1}],[-15,{"n":4.5,"e":4538,"s":1}],[-11,{"n":5,"e":4578,"s":1}],[-10,{"n":5,"e":4597,"s":1}],[-8,{"n":5.5,"e":4617}],[-6,{"n":4,"e":4635}],[4,{"n":3.5,"e":6894}],[3,{"n":4,"e":6930}],[2,{"n":5,"e":6913}]],"fo":[[4410,[{"t":"Y"}]]]}],[1362,{"n":"Brewster","f":"Rhian","fp":"A","r":1,"c":77,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[5,{"n":4,"e":6891,"s":1}]]}],[2072,{"n":"Ampadu","f":"Ethan","fp":"DC","r":9,"c":77,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":1,"pm":1},"p":[[3,{"n":5,"e":6930}],[2,{"n":5.5,"e":6913,"s":1}]]}],[2501,{"n":"Norwood","f":"Oliver","fp":"MD","r":11,"c":77,"s":{"s":13.5,"n":3,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":182.5,"On":35,"Oa":5.21,"Od":0.83,"pm":35},"p":[[-38,{"n":4,"e":3936,"s":1}],[-37,{"n":4.5,"e":3943}],[-36,{"n":5.5,"e":3953}],[-35,{"n":6,"e":3964}],[-34,{"n":6,"e":3975}],[-33,{"n":4.5,"e":3978}],[-32,{"n":6,"e":3995}],[-31,{"n":4,"e":4002}],[-30,{"n":3.5,"e":4013}],[-29,{"n":5,"e":4025}],[-28,{"n":5,"e":4028}],[-27,{"n":5,"e":4045}],[-26,{"n":4.5,"e":4055}],[-25,{"n":6.5,"e":4060}],[-24,{"n":5,"e":4072}],[-23,{"n":5,"e":4078}],[-22,{"n":6,"e":4095}],[-21,{"n":5,"e":4101}],[-20,{"n":6,"e":4112}],[-19,{"n":6,"e":4125,"g":1}],[-18,{"n":6,"e":4130}],[-17,{"n":7,"e":4145}],[-16,{"n":5,"e":4154}],[-15,{"n":4,"e":4161}],[-14,{"n":6,"e":4174}],[-13,{"n":5,"e":4185}],[-12,{"n":5.5,"e":4194}],[-11,{"n":6,"e":4205}],[-10,{"n":4.5,"e":4217}],[-9,{"n":6,"e":4225}],[-8,{"n":6,"e":4234}],[-7,{"n":5,"e":4238}],[5,{"n":4.5,"e":6891}],[3,{"n":4.5,"e":6930,"s":1}],[1,{"n":4.5,"e":6929}]],"fo":[[3943,[{"t":"Y"}]],[3995,[{"t":"Y"}]]]}],[3694,{"n":"Lundstram","f":"John","fp":"MD","r":17,"c":77,"s":{"s":23,"n":5,"a":4.6,"d":0.65,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.65,"Og":4,"Os":168.5,"On":33,"Oa":5.11,"Od":0.87,"pm":33},"p":[[-38,{"n":5.5,"e":3936,"g":1}],[-37,{"n":5,"e":3943,"s":1}],[-36,{"n":3.5,"e":3953,"s":1}],[-35,{"n":5,"e":3964,"s":1}],[-31,{"n":4.5,"e":4002}],[-30,{"n":4.5,"e":4013,"s":1}],[-29,{"n":6.5,"e":4025}],[-28,{"n":5.5,"e":4028}],[-27,{"n":5,"e":4045,"s":1}],[-26,{"n":6,"e":4055,"g":1,"s":1}],[-25,{"n":5.5,"e":4060,"s":1}],[-24,{"n":5,"e":4072,"s":1}],[-23,{"n":4.5,"e":4078}],[-22,{"n":5.5,"e":4095}],[-21,{"n":4.5,"e":4101}],[-19,{"n":4,"e":4125}],[-18,{"n":6,"e":4130}],[-17,{"n":6.5,"e":4145}],[-16,{"n":5.5,"e":4154}],[-15,{"n":4.5,"e":4161}],[-14,{"n":5,"e":4174}],[-13,{"n":4.5,"e":4185}],[-12,{"n":5,"e":4194}],[-11,{"n":8,"e":4205,"g":2}],[-10,{"n":5,"e":4217}],[-9,{"n":5.5,"e":4225}],[-8,{"n":4.5,"e":4234}],[-7,{"n":5.5,"e":4238}],[5,{"n":5,"e":6891}],[4,{"n":4.5,"e":6894}],[3,{"n":5.5,"e":6930}],[2,{"n":4,"e":6913}],[1,{"n":4,"e":6929}]],"fo":[[4028,[{"t":"Y"}]],[6913,[{"t":"Y"}]],[6930,[{"t":"Y"}]]]}],[3695,{"n":"O'Connell","f":"Jack","fp":"DC","r":12,"c":77,"s":{"s":8,"n":2,"a":4,"d":1.41,"Os":150,"On":29,"Oa":5.17,"Od":0.89,"pd":29},"p":[[-37,{"n":5,"e":3943}],[-36,{"n":3,"e":3953}],[-35,{"n":6.5,"e":3964}],[-34,{"n":6,"e":3975}],[-33,{"n":5,"e":3978,"s":1}],[-29,{"n":5.5,"e":4025}],[-27,{"n":5.5,"e":4045}],[-26,{"n":5,"e":4055}],[-25,{"n":5,"e":4060}],[-24,{"n":5.5,"e":4072}],[-23,{"n":4.5,"e":4078}],[-22,{"n":5,"e":4095}],[-21,{"n":5,"e":4101}],[-20,{"n":4.5,"e":4112}],[-19,{"n":5.5,"e":4125}],[-18,{"n":6,"e":4130}],[-17,{"n":6,"e":4145}],[-16,{"n":5.5,"e":4154}],[-15,{"n":4,"e":4161}],[-14,{"n":4.5,"e":4174}],[-13,{"n":5,"e":4185}],[-12,{"n":4.5,"e":4194}],[-11,{"n":6,"e":4205}],[-10,{"n":6,"e":4217}],[-9,{"n":7,"e":4225}],[-8,{"n":5.5,"e":4234}],[-7,{"n":5.5,"e":4238}],[2,{"n":5,"e":6913}],[1,{"n":3,"e":6929}]],"fo":[[3975,[{"t":"Y"}]]]}],[3703,{"n":"Bryan","f":"Kean","fp":"DC","r":1,"c":77}],[3705,{"n":"Egan","f":"John","fp":"DC","r":13,"c":77,"s":{"s":17,"n":4,"a":4.25,"d":0.65,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":2,"Os":176.5,"On":34,"Oa":5.19,"Od":0.85,"pd":34},"p":[[-38,{"n":4,"e":3936}],[-37,{"n":4.5,"e":3943}],[-36,{"n":5,"e":3953}],[-35,{"n":6,"e":3964}],[-34,{"n":7,"e":3975,"g":1}],[-33,{"n":6,"e":3978,"g":1}],[-32,{"n":6,"e":3995}],[-30,{"n":4,"e":4013}],[-29,{"n":6,"e":4025}],[-28,{"n":5.5,"e":4028}],[-27,{"n":5.5,"e":4045}],[-26,{"n":5.5,"e":4055}],[-25,{"n":6,"e":4060}],[-24,{"n":5,"e":4072}],[-23,{"n":5,"e":4078}],[-22,{"n":4.5,"e":4095}],[-21,{"n":4.5,"e":4101}],[-20,{"n":4.5,"e":4112}],[-19,{"n":6,"e":4125}],[-18,{"n":6,"e":4130}],[-17,{"n":4.5,"e":4145}],[-16,{"n":6,"e":4154}],[-15,{"n":3.5,"e":4161}],[-14,{"n":5,"e":4174}],[-12,{"n":5,"e":4194}],[-11,{"n":6,"e":4205}],[-10,{"n":5.5,"e":4217}],[-9,{"n":6,"e":4225}],[-8,{"n":5.5,"e":4234}],[-7,{"n":6,"e":4238}],[5,{"n":5,"e":6891}],[4,{"n":4.5,"e":6894}],[2,{"n":4,"e":6913}],[1,{"n":3.5,"e":6929}]],"fo":[[6913,[{"t":"R"}]],[3953,[{"t":"Y"}]],[4013,[{"t":"Y"},{"t":"O"}]],[6929,[{"t":"Y"}]]],"a":{"m":19,"a":21,"M":29,"n":11}}],[3716,{"n":"Baldock","f":"George","fp":"DL","r":17,"c":77,"s":{"s":24.5,"n":5,"a":4.9,"d":0.22,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":0.22,"Og":2,"Os":189,"On":37,"Oa":5.11,"Od":0.76,"pm":37},"p":[[-38,{"n":4,"e":3936}],[-37,{"n":5,"e":3943}],[-36,{"n":4,"e":3953}],[-35,{"n":5.5,"e":3964}],[-34,{"n":6,"e":3975}],[-33,{"n":5,"e":3978}],[-32,{"n":5.5,"e":3995}],[-31,{"n":4,"e":4002}],[-30,{"n":4.5,"e":4013}],[-29,{"n":5,"e":4025}],[-28,{"n":5,"e":4028}],[-27,{"n":5,"e":4045}],[-26,{"n":5,"e":4055}],[-25,{"n":5.5,"e":4060}],[-24,{"n":5.5,"e":4072}],[-23,{"n":5,"e":4078}],[-22,{"n":6,"e":4095}],[-21,{"n":4,"e":4101}],[-20,{"n":3.5,"e":4112}],[-19,{"n":5.5,"e":4125}],[-18,{"n":5.5,"e":4130}],[-17,{"n":5,"e":4145}],[-16,{"n":7.5,"e":4154,"g":1}],[-15,{"n":4.5,"e":4161}],[-14,{"n":5.5,"e":4174}],[-13,{"n":4.5,"e":4185}],[-12,{"n":6,"e":4194,"g":1}],[-11,{"n":6.5,"e":4205}],[-10,{"n":5,"e":4217}],[-9,{"n":6,"e":4225}],[-8,{"n":5,"e":4234}],[-7,{"n":5,"e":4238}],[5,{"n":5,"e":6891}],[4,{"n":5,"e":6894}],[3,{"n":5,"e":6930}],[2,{"n":5,"e":6913}],[1,{"n":4.5,"e":6929}]],"fo":[[3964,[{"t":"Y"}]],[6930,[{"t":"Y"}]]],"a":{"m":18,"a":20,"M":21,"n":6}}],[3721,{"n":"Moore","f":"Simon","fp":"G","r":7,"c":77,"s":{"Os":6.5,"On":2,"Oa":3.25,"Od":1.06,"pg":2},"p":[[-31,{"n":4,"e":4002}],[-13,{"n":2.5,"e":4185}]]}],[3725,{"n":"Stevens","f":"Enda","fp":"DL","r":13,"c":77,"s":{"s":23.5,"n":5,"a":4.7,"d":0.76,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.76,"Og":2,"Os":182,"On":37,"Oa":4.92,"Od":0.98,"pd":1,"pm":36},"p":[[-38,{"n":3,"e":3936}],[-37,{"n":5,"e":3943}],[-36,{"n":4,"e":3953}],[-35,{"n":6.5,"e":3964}],[-34,{"n":4.5,"e":3975}],[-33,{"n":5,"e":3978}],[-32,{"n":5.5,"e":3995}],[-31,{"n":3.5,"e":4002}],[-30,{"n":2.5,"e":4013}],[-29,{"n":5,"e":4025}],[-28,{"n":5,"e":4028}],[-27,{"n":6,"e":4045,"g":1}],[-26,{"n":5,"e":4055}],[-25,{"n":6,"e":4060}],[-24,{"n":5,"e":4072}],[-23,{"n":5.5,"e":4078}],[-22,{"n":6.5,"e":4095}],[-21,{"n":4,"e":4101}],[-20,{"n":4.5,"e":4112}],[-19,{"n":5.5,"e":4125}],[-18,{"n":5,"e":4130}],[-17,{"n":5,"e":4145}],[-16,{"n":6.5,"e":4154,"g":1}],[-15,{"n":4,"e":4161}],[-14,{"n":4,"e":4174}],[-13,{"n":4,"e":4185}],[-12,{"n":4,"e":4194}],[-11,{"n":6.5,"e":4205}],[-10,{"n":6,"e":4217}],[-9,{"n":5.5,"e":4225}],[-8,{"n":5,"e":4234}],[-7,{"n":5.5,"e":4238}],[5,{"n":5,"e":6891}],[4,{"n":4.5,"e":6894}],[3,{"n":5.5,"e":6930}],[2,{"n":5,"e":6913}],[1,{"n":3.5,"e":6929}]],"fo":[[3936,[{"t":"Y"}]],[3975,[{"t":"Y"}]]]}],[3734,{"n":"Fleck","f":"John","fp":"MO","r":15,"c":77,"s":{"s":14,"n":3,"a":4.67,"d":1.04,"Og":5,"Os":156,"On":29,"Oa":5.38,"Od":1.19,"pm":29},"p":[[-38,{"n":5.5,"e":3936}],[-37,{"n":5.5,"e":3943,"s":1}],[-36,{"n":4.5,"e":3953,"s":1}],[-31,{"n":3,"e":4002}],[-30,{"n":4,"e":4013}],[-29,{"n":5.5,"e":4025}],[-27,{"n":6,"e":4045}],[-26,{"n":4,"e":4055}],[-25,{"n":5.5,"e":4060}],[-24,{"n":5,"e":4072}],[-23,{"n":7,"e":4078,"g":1}],[-22,{"n":7,"e":4095}],[-21,{"n":4,"e":4101}],[-20,{"n":6,"e":4112}],[-19,{"n":4,"e":4125}],[-17,{"n":8,"e":4145,"g":2}],[-16,{"n":5.5,"e":4154}],[-15,{"n":4,"e":4161}],[-14,{"n":6,"e":4174}],[-13,{"n":6.5,"e":4185,"g":1}],[-12,{"n":5.5,"e":4194}],[-11,{"n":7.5,"e":4205,"g":1}],[-10,{"n":5.5,"e":4217}],[-9,{"n":5.5,"e":4225}],[-8,{"n":5.5,"e":4234}],[-7,{"n":6,"e":4238}],[4,{"n":5,"e":6894,"s":1}],[2,{"n":5.5,"e":6913}],[1,{"n":3.5,"e":6929}]],"fo":[[3953,[{"t":"Y"}]]],"a":{"m":17,"a":23,"M":37,"n":7}}],[3738,{"n":"Basham","f":"Chris","fp":"DC","r":13,"c":77,"s":{"s":26,"n":5,"a":5.2,"d":0.84,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.84,"Os":191,"On":37,"Oa":5.16,"Od":0.86,"pd":37},"p":[[-38,{"n":4.5,"e":3936}],[-37,{"n":6,"e":3943}],[-36,{"n":4,"e":3953}],[-35,{"n":6,"e":3964}],[-34,{"n":6,"e":3975}],[-33,{"n":5,"e":3978}],[-32,{"n":6.5,"e":3995}],[-31,{"n":3.5,"e":4002}],[-30,{"n":4,"e":4013}],[-29,{"n":6.5,"e":4025}],[-28,{"n":6,"e":4028}],[-27,{"n":5.5,"e":4045}],[-26,{"n":5.5,"e":4055}],[-25,{"n":5,"e":4060}],[-24,{"n":4,"e":4072}],[-23,{"n":5,"e":4078}],[-22,{"n":5,"e":4095}],[-21,{"n":4.5,"e":4101}],[-20,{"n":5,"e":4112}],[-19,{"n":5,"e":4125}],[-18,{"n":5.5,"e":4130}],[-17,{"n":6.5,"e":4145}],[-16,{"n":5,"e":4154}],[-15,{"n":3.5,"e":4161}],[-14,{"n":6,"e":4174}],[-13,{"n":4.5,"e":4185}],[-12,{"n":4.5,"e":4194}],[-11,{"n":5.5,"e":4205}],[-10,{"n":6,"e":4217}],[-9,{"n":6,"e":4225}],[-8,{"n":5.5,"e":4234}],[-7,{"n":4,"e":4238}],[5,{"n":6.5,"e":6891}],[4,{"n":4.5,"e":6894}],[3,{"n":5,"e":6930}],[2,{"n":5.5,"e":6913}],[1,{"n":4.5,"e":6929}]],"fo":[[3964,[{"t":"I"}]]]}],[3743,{"n":"McGoldrick","f":"David","fp":"A","r":10,"c":77,"s":{"g":1,"s":23,"n":5,"a":4.6,"d":1.14,"Sg":1,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.14,"Og":3,"Os":132,"On":28,"Oa":4.71,"Od":1.02,"pa":28},"p":[[-37,{"n":4,"e":3943}],[-36,{"n":3,"e":3953}],[-35,{"n":8,"e":3964,"g":2}],[-33,{"n":5,"e":3978}],[-32,{"n":4.5,"e":3995}],[-31,{"n":4,"e":4002}],[-29,{"n":4.5,"e":4025,"s":1}],[-28,{"n":4.5,"e":4028,"s":1}],[-27,{"n":5,"e":4045,"s":1}],[-22,{"n":4,"e":4095}],[-21,{"n":4.5,"e":4101}],[-20,{"n":4.5,"e":4112,"s":1}],[-19,{"n":4,"e":4125}],[-18,{"n":4,"e":4130}],[-17,{"n":6,"e":4145}],[-16,{"n":5,"e":4154}],[-15,{"n":4.5,"e":4161,"s":1}],[-14,{"n":4,"e":4174}],[-13,{"n":5,"e":4185}],[-12,{"n":6,"e":4194}],[-11,{"n":6,"e":4205}],[-10,{"n":5,"e":4217}],[-9,{"n":4,"e":4225}],[5,{"n":4,"e":6891}],[4,{"n":6.5,"e":6894,"g":1}],[3,{"n":3.5,"e":6930}],[2,{"n":4.5,"e":6913}],[1,{"n":4.5,"e":6929,"s":1}]],"a":{"m":10,"a":14,"M":18,"n":5}}],[3745,{"n":"Sharp","f":"Billy","fp":"A","r":8,"c":77,"s":{"g":1,"s":18.5,"n":4,"a":4.63,"d":0.63,"Sg":1,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.58,"Og":3,"Os":119,"On":26,"Oa":4.58,"Od":0.7,"pa":26},"p":[[-38,{"n":5,"e":3936}],[-37,{"n":4.5,"e":3943,"s":1}],[-36,{"n":4.5,"e":3953,"s":1}],[-34,{"n":4.5,"e":3975}],[-33,{"n":5.5,"e":3978,"s":1}],[-30,{"n":3.5,"e":4013}],[-29,{"n":6,"e":4025,"g":1}],[-28,{"n":4.5,"e":4028}],[-27,{"n":4,"e":4045}],[-26,{"n":6.5,"e":4055,"g":1}],[-25,{"n":4.5,"e":4060}],[-24,{"n":3.5,"e":4072}],[-23,{"n":4,"e":4078,"s":1}],[-22,{"n":4,"e":4095,"s":1}],[-21,{"n":5,"e":4101,"s":1}],[-20,{"n":4,"e":4112,"s":1}],[-15,{"n":4,"e":4161}],[-13,{"n":4.5,"e":4185,"s":1}],[-11,{"n":5,"e":4205,"s":1}],[-10,{"n":4.5,"e":4217,"s":1}],[-9,{"n":4.5,"e":4225,"s":1}],[-8,{"n":4.5,"e":4234,"s":1}],[5,{"n":5.5,"e":6891,"g":1,"s":1}],[4,{"n":4.5,"e":6894,"s":1}],[3,{"n":4.5,"e":6930,"s":1}],[1,{"n":4,"e":6929}]]}],[5447,{"n":"Osborn","f":"Ben","fp":"MD","r":10,"c":77,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Os":70,"On":14,"Oa":5,"Od":0.73,"pm":14},"p":[[-37,{"n":4,"e":3943}],[-36,{"n":3.5,"e":3953}],[-35,{"n":6,"e":3964}],[-34,{"n":5.5,"e":3975}],[-33,{"n":5,"e":3978}],[-32,{"n":6,"e":3995}],[-29,{"n":5.5,"e":4025,"s":1}],[-27,{"n":5.5,"e":4045,"s":1}],[-25,{"n":5,"e":4060,"s":1}],[-18,{"n":5,"e":4130,"s":1}],[-17,{"n":5,"e":4145,"s":1}],[4,{"n":5,"e":6894}],[3,{"n":5,"e":6930}],[2,{"n":4,"e":6913,"s":1}]]}],[6121,{"n":"Verrips","f":"Michael","fp":"G","r":3,"c":77}],[6450,{"n":"Robinson","f":"Jack","fp":"DL","r":8,"c":77,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":40.5,"On":9,"Oa":4.5,"Od":0.83,"pd":9},"p":[[-38,{"n":5,"e":3936}],[-33,{"n":4,"e":3978}],[-32,{"n":4.5,"e":3995}],[-31,{"n":4,"e":4002}],[-30,{"n":3,"e":4013}],[-28,{"n":6,"e":4028}],[5,{"n":4.5,"e":6891,"s":1}],[4,{"n":4.5,"e":6894}],[3,{"n":5,"e":6930}]]}],[6551,{"n":"Berge","f":"Sander","fp":"MD","r":9,"c":77,"s":{"s":26,"n":5,"a":5.2,"d":0.45,"Ss":26,"Sn":5,"Sa":5.2,"Sd":0.45,"Og":1,"Os":92.5,"On":18,"Oa":5.14,"Od":0.92,"pm":18},"p":[[-38,{"n":5.5,"e":3936}],[-37,{"n":5.5,"e":3943}],[-36,{"n":3.5,"e":3953}],[-35,{"n":5.5,"e":3964}],[-34,{"n":5.5,"e":3975}],[-33,{"n":5,"e":3978}],[-32,{"n":8,"e":3995,"g":1}],[-31,{"n":5,"e":4002,"s":1}],[-30,{"n":4,"e":4013}],[-29,{"n":5,"e":4025,"s":1}],[-28,{"n":4.5,"e":4028}],[-27,{"n":4.5,"e":4045}],[-26,{"n":5,"e":4055}],[5,{"n":5.5,"e":6891}],[4,{"n":4.5,"e":6894}],[3,{"n":5,"e":6930}],[2,{"n":5.5,"e":6913}],[1,{"n":5.5,"e":6929,"s":1}]],"fo":[[6894,[{"t":"Y"}]]]}],[6897,{"n":"Foderingham","f":"Wes","fp":"G","r":1,"c":77}],[7173,{"n":"Hackford","f":"Antwoine","fp":"A","r":1,"c":77}],[7174,{"n":"Brunt","f":"Zak","fp":"MO","r":1,"c":77}],[7175,{"n":"Gordon","f":"Kyron","fp":"DC","r":1,"c":77}],[7178,{"n":"Broadbent","f":"George","fp":"MO","r":1,"c":77}],[7216,{"n":"Bogle","f":"Jayden","fp":"DL","r":7,"c":77}],[7220,{"n":"Lowe","f":"Max","fp":"DL","r":8,"c":77,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[5,{"n":5,"e":6891}]],"fo":[[6891,[{"t":"I"}]]]}],[642,{"n":"Walcott","f":"Theo","fp":"A","r":6,"c":35,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":2,"Os":119.5,"On":23,"Oa":5.2,"Od":0.93,"pm":18,"pa":5},"p":[[-38,{"n":6,"e":3932}],[-37,{"n":5.5,"e":3943}],[-36,{"n":6.5,"e":3952,"g":1,"s":1}],[-35,{"n":4,"e":3967}],[-29,{"n":4,"e":4020,"s":1}],[-28,{"n":4.5,"e":4031}],[-26,{"n":6,"e":4052}],[-25,{"n":6,"e":4066,"g":1}],[-24,{"n":6,"e":4070}],[-23,{"n":4.5,"e":4087}],[-22,{"n":5,"e":4092}],[-21,{"n":5.5,"e":4102,"s":1}],[-20,{"n":5.5,"e":4113}],[-19,{"n":4.5,"e":4122,"s":1}],[-16,{"n":5.5,"e":4151}],[-13,{"n":3.5,"e":4183}],[-12,{"n":6,"e":4193}],[-11,{"n":4.5,"e":4203}],[-10,{"n":4,"e":4209}],[-9,{"n":7,"e":4222}],[-7,{"n":5,"e":4246}],[5,{"n":6,"e":6885}],[4,{"n":4.5,"e":6897,"s":1}]]}],[669,{"n":"Long","f":"Shane","fp":"A","r":7,"c":35,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":129,"On":28,"Oa":4.61,"Od":0.71,"pa":28},"p":[[4,{"n":4,"e":6901,"s":1}],[2,{"n":4.5,"e":6919,"s":1}],[-28,{"n":4,"e":4037}],[-7,{"n":4.5,"e":4243,"s":1}],[-38,{"n":4.5,"e":3936,"s":1}],[-37,{"n":5,"e":3939}],[-35,{"n":5,"e":3962,"s":1}],[-34,{"n":4.5,"e":3973,"s":1}],[-33,{"n":4.5,"e":3985,"s":1}],[-32,{"n":5,"e":3996}],[-31,{"n":4.5,"e":4005,"s":1}],[-29,{"n":5,"e":4026}],[-27,{"n":6,"e":4046,"g":1}],[-26,{"n":3.5,"e":4056}],[-25,{"n":3,"e":4062}],[-24,{"n":4,"e":4077}],[-23,{"n":5,"e":4085,"g":1}],[-22,{"n":5,"e":4093}],[-21,{"n":4.5,"e":4105,"s":1}],[-18,{"n":6,"e":4128}],[-17,{"n":4,"e":4146}],[-16,{"n":5,"e":4153}],[-15,{"n":6,"e":4165}],[-14,{"n":4.5,"e":4177,"s":1}],[-13,{"n":5,"e":4178,"s":1}],[-8,{"n":3.5,"e":4233}],[5,{"n":4.5,"e":6885,"s":1}],[1,{"n":4.5,"e":6922,"s":1}]]}],[673,{"n":"Redmond","f":"Nathan","fp":"MO","r":15,"c":35,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":10,"Sn":2,"Sa":5,"Og":3,"Os":170.5,"On":31,"Oa":5.5,"Od":1.22,"pm":24,"pa":7},"p":[[-38,{"n":6.5,"e":3936}],[-37,{"n":6,"e":3939}],[-36,{"n":7,"e":3956}],[-35,{"n":7,"e":3962}],[-34,{"n":5,"e":3973}],[-33,{"n":6,"e":3985}],[-32,{"n":6.5,"e":3996}],[-31,{"n":4.5,"e":4005}],[-30,{"n":8,"e":4014,"g":1}],[-25,{"n":3.5,"e":4062}],[-24,{"n":8,"e":4077,"g":1}],[-23,{"n":5.5,"e":4085}],[-22,{"n":7,"e":4093}],[-21,{"n":5,"e":4105}],[-20,{"n":5.5,"e":4115}],[-19,{"n":7,"e":4120,"g":1}],[-18,{"n":5,"e":4128}],[-17,{"n":3.5,"e":4146}],[-16,{"n":6,"e":4153}],[-15,{"n":5.5,"e":4165}],[-14,{"n":4.5,"e":4177}],[-13,{"n":6.5,"e":4178}],[-12,{"n":4,"e":4193}],[-11,{"n":4.5,"e":4204}],[-10,{"n":4.5,"e":4215}],[-9,{"n":5.5,"e":4227}],[-8,{"n":4,"e":4233}],[-7,{"n":4.5,"e":4243}],[5,{"n":5,"e":6885}],[4,{"n":5,"e":6901,"s":1}],[1,{"n":4.5,"e":6922}]],"a":{"m":16,"a":23,"M":35,"n":9}}],[710,{"n":"Romeu","f":"Oriol","fp":"MD","r":9,"c":35,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":1.3,"Sg":1,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.3,"Og":1,"Os":145,"On":29,"Oa":5,"Od":0.97,"pm":29},"p":[[-38,{"n":6.5,"e":3936}],[-37,{"n":6,"e":3939}],[-36,{"n":4,"e":3956}],[-35,{"n":5,"e":3962}],[-34,{"n":5,"e":3973}],[-33,{"n":6.5,"e":3985}],[-32,{"n":6,"e":3996}],[-31,{"n":5,"e":4005,"s":1}],[-28,{"n":5,"e":4037,"s":1}],[-27,{"n":5,"e":4046,"s":1}],[-25,{"n":3,"e":4062}],[-24,{"n":6,"e":4077,"s":1}],[-22,{"n":5,"e":4093,"s":1}],[-21,{"n":5,"e":4105,"s":1}],[-19,{"n":5,"e":4120,"s":1}],[-18,{"n":5,"e":4128,"s":1}],[-17,{"n":5.5,"e":4146,"s":1}],[-15,{"n":5,"e":4165,"s":1}],[-12,{"n":4,"e":4193}],[-11,{"n":5.5,"e":4204}],[-10,{"n":3,"e":4215}],[-9,{"n":4.5,"e":4227}],[-8,{"n":4,"e":4233}],[-7,{"n":4.5,"e":4243}],[5,{"n":5.5,"e":6885}],[4,{"n":7,"e":6901,"g":1}],[3,{"n":5.5,"e":6904}],[2,{"n":3.5,"e":6919}],[1,{"n":4.5,"e":6922}]],"fo":[[3956,[{"t":"Y"}]],[3985,[{"t":"Y"}]],[6885,[{"t":"Y"}]],[6919,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":14,"n":9}}],[721,{"n":"Bertrand","f":"Ryan","fp":"DL","r":10,"c":35,"s":{"s":21,"n":5,"a":4.2,"d":1.4,"Ss":21,"Sn":5,"Sa":4.2,"Sd":1.4,"Og":1,"Os":156.5,"On":34,"Oa":4.6,"Od":1.04,"pd":31,"pm":3},"p":[[-38,{"n":5,"e":3936}],[-37,{"n":6,"e":3939}],[-35,{"n":4.5,"e":3962}],[-34,{"n":4.5,"e":3973}],[-33,{"n":6,"e":3985}],[-32,{"n":5.5,"e":3996}],[-31,{"n":3,"e":4005}],[-30,{"n":5.5,"e":4014}],[-29,{"n":4.5,"e":4026}],[-28,{"n":3.5,"e":4037}],[-27,{"n":5.5,"e":4046}],[-26,{"n":4,"e":4056}],[-25,{"n":4.5,"e":4062}],[-24,{"n":5.5,"e":4077}],[-23,{"n":3.5,"e":4085}],[-22,{"n":4.5,"e":4093}],[-21,{"n":5,"e":4105}],[-20,{"n":5,"e":4115}],[-19,{"n":5.5,"e":4120}],[-18,{"n":5,"e":4128}],[-17,{"n":5,"e":4146}],[-16,{"n":3,"e":4153}],[-15,{"n":6,"e":4165,"g":1}],[-14,{"n":4.5,"e":4177}],[-13,{"n":5,"e":4178}],[-10,{"n":3,"e":4215}],[-9,{"n":5.5,"e":4227}],[-8,{"n":2.5,"e":4233}],[-7,{"n":5,"e":4243}],[5,{"n":3,"e":6885}],[4,{"n":5.5,"e":6901}],[3,{"n":5.5,"e":6904}],[2,{"n":2.5,"e":6919}],[1,{"n":4.5,"e":6922}]],"fo":[[6919,[{"t":"Y"}]]],"a":{"m":11,"a":12,"M":17,"n":9}}],[725,{"n":"Forster","f":"Fraser","fp":"G","r":3,"c":35}],[857,{"n":"Ward-Prowse","f":"James","fp":"MO","r":20,"c":35,"s":{"s":25,"n":5,"a":5,"d":1.27,"Ss":25,"Sn":5,"Sa":5,"Sd":1.27,"Og":4,"Os":199.5,"On":37,"Oa":5.39,"Od":1.1,"pd":3,"pm":33,"pa":1},"p":[[-38,{"n":5.5,"e":3936}],[-37,{"n":6,"e":3939}],[-36,{"n":6,"e":3956}],[-35,{"n":4,"e":3962}],[-34,{"n":4.5,"e":3973}],[-33,{"n":6,"e":3985}],[-32,{"n":8,"e":3996,"g":1}],[-31,{"n":4.5,"e":4005}],[-30,{"n":7.5,"e":4014}],[-29,{"n":5.5,"e":4026}],[-28,{"n":5,"e":4037}],[-27,{"n":5,"e":4046}],[-26,{"n":4.5,"e":4056}],[-25,{"n":4,"e":4062}],[-24,{"n":5.5,"e":4077}],[-23,{"n":5.5,"e":4085}],[-22,{"n":4.5,"e":4093}],[-21,{"n":6,"e":4105}],[-20,{"n":5.5,"e":4115}],[-19,{"n":7,"e":4120}],[-18,{"n":6.5,"e":4128}],[-17,{"n":4.5,"e":4146}],[-16,{"n":4.5,"e":4153}],[-15,{"n":6.5,"e":4165}],[-14,{"n":6,"e":4177,"g":1}],[-13,{"n":6,"e":4178,"g":1}],[-12,{"n":5.5,"e":4193}],[-11,{"n":7,"e":4204,"g":1}],[-10,{"n":4,"e":4215}],[-9,{"n":6,"e":4227}],[-8,{"n":4,"e":4233}],[-7,{"n":4,"e":4243}],[5,{"n":5,"e":6885}],[4,{"n":5.5,"e":6901}],[3,{"n":6.5,"e":6904}],[2,{"n":3,"e":6919}],[1,{"n":5,"e":6922}]],"fo":[[3939,[{"t":"Y"}]],[3962,[{"t":"Y"}]]],"a":{"m":23,"a":29,"M":36,"n":9}}],[940,{"n":"McCarthy","f":"Alex","fp":"G","r":16,"c":35,"s":{"s":24,"n":5,"a":4.8,"d":1.6,"Ss":24,"Sn":5,"Sa":4.8,"Sd":1.6,"Os":175.5,"On":33,"Oa":5.32,"Od":1.29,"pg":33},"p":[[-38,{"n":5.5,"e":3936}],[-37,{"n":7,"e":3939}],[-36,{"n":4.5,"e":3956}],[-35,{"n":4.5,"e":3962}],[-34,{"n":5.5,"e":3973}],[-33,{"n":8,"e":3985}],[-32,{"n":4.5,"e":3996}],[-31,{"n":3.5,"e":4005}],[-30,{"n":6,"e":4014}],[-29,{"n":8,"e":4026}],[-28,{"n":3,"e":4037}],[-27,{"n":6,"e":4046}],[-26,{"n":4,"e":4056}],[-25,{"n":5,"e":4062}],[-24,{"n":5.5,"e":4077}],[-23,{"n":4,"e":4085}],[-22,{"n":6,"e":4093}],[-21,{"n":7,"e":4105}],[-20,{"n":4.5,"e":4115}],[-19,{"n":7,"e":4120}],[-18,{"n":6,"e":4128}],[-17,{"n":6,"e":4146}],[-16,{"n":5,"e":4153}],[-15,{"n":5,"e":4165}],[-14,{"n":5,"e":4177}],[-13,{"n":6,"e":4178}],[-12,{"n":4.5,"e":4193}],[-11,{"n":5,"e":4204}],[5,{"n":4,"e":6885}],[4,{"n":6,"e":6901}],[3,{"n":6.5,"e":6904}],[2,{"n":2.5,"e":6919}],[1,{"n":5,"e":6922}]]}],[1010,{"n":"Ings","f":"Danny","fp":"A","r":39,"c":35,"s":{"g":4,"s":28.5,"n":5,"a":5.7,"d":0.76,"Sg":4,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":0.76,"Og":25,"Os":210.5,"On":37,"Oa":5.69,"Od":1.19,"pa":37},"p":[[-38,{"n":6.5,"e":3936,"g":1}],[-37,{"n":6,"e":3939,"g":1}],[-36,{"n":6,"e":3956,"g":1}],[-35,{"n":4.5,"e":3962}],[-34,{"n":7,"e":3973,"g":1}],[-33,{"n":4.5,"e":3985}],[-32,{"n":8,"e":3996,"g":2}],[-31,{"n":4.5,"e":4005}],[-30,{"n":8,"e":4014,"g":1}],[-29,{"n":4.5,"e":4026}],[-28,{"n":5,"e":4037,"s":1}],[-27,{"n":5.5,"e":4046}],[-26,{"n":4,"e":4056,"g":1}],[-25,{"n":4,"e":4062}],[-24,{"n":4,"e":4077,"s":1}],[-23,{"n":4,"e":4085}],[-22,{"n":7,"e":4093,"g":1}],[-21,{"n":6.5,"e":4105,"g":1}],[-20,{"n":7,"e":4115,"g":1}],[-19,{"n":4.5,"e":4120,"s":1}],[-18,{"n":8,"e":4128,"g":2}],[-17,{"n":4.5,"e":4146}],[-16,{"n":6,"e":4153,"g":1}],[-15,{"n":6.5,"e":4165,"g":1}],[-14,{"n":7,"e":4177,"g":1}],[-13,{"n":6,"e":4178,"g":1}],[-12,{"n":6,"e":4193,"g":1}],[-11,{"n":4.5,"e":4204}],[-10,{"n":4.5,"e":4215}],[-9,{"n":6,"e":4227,"g":1}],[-8,{"n":6,"e":4233,"g":1}],[-7,{"n":6,"e":4243,"g":1}],[5,{"n":6,"e":6885,"g":1}],[4,{"n":5.5,"e":6901}],[3,{"n":6.5,"e":6904,"g":1}],[2,{"n":6,"e":6919,"g":2}],[1,{"n":4.5,"e":6922}]],"fo":[[4014,[{"t":"Y"}]]],"a":{"m":41,"a":67,"M":111,"n":27}}],[1030,{"n":"Sims","f":"Josh","fp":"MO","r":2,"c":35}],[1037,{"n":"McQueen","f":"Sam","fp":"DL","r":1,"c":35}],[1050,{"n":"Stephens","f":"Jack","fp":"DC","r":9,"c":35,"s":{"s":6.5,"n":2,"a":3.25,"d":1.77,"Og":1,"Os":135.5,"On":29,"Oa":4.67,"Od":1.33,"pd":29},"p":[[-38,{"n":4.5,"e":3936}],[-37,{"n":6.5,"e":3939}],[-35,{"n":4.5,"e":3962}],[-34,{"n":5,"e":3973}],[-33,{"n":6,"e":3985}],[-31,{"n":4.5,"e":4005}],[-30,{"n":6,"e":4014}],[-29,{"n":4,"e":4026}],[-28,{"n":2.5,"e":4037}],[-27,{"n":6,"e":4046}],[-26,{"n":4,"e":4056}],[-25,{"n":2.5,"e":4062}],[-24,{"n":6,"e":4077}],[-23,{"n":3,"e":4085}],[-22,{"n":5,"e":4093}],[-21,{"n":7,"e":4105}],[-20,{"n":5,"e":4115}],[-19,{"n":6,"e":4120}],[-18,{"n":7,"e":4128,"g":1}],[-17,{"n":4.5,"e":4146}],[-16,{"n":4,"e":4153}],[-15,{"n":5.5,"e":4165}],[-14,{"n":4.5,"e":4177}],[-13,{"n":3.5,"e":4178}],[-12,{"n":3,"e":4193}],[-11,{"n":5,"e":4204}],[-10,{"n":4,"e":4215,"s":1}],[2,{"n":2,"e":6919}],[1,{"n":4.5,"e":6922}]],"fo":[[4005,[{"t":"R"}]],[3962,[{"t":"Y"}]],[3973,[{"t":"Y"}]],[6919,[{"t":"Y"}]]]}],[1077,{"n":"Lewis","f":"Harry","fp":"G","r":1,"c":35}],[1118,{"n":"Walker-Peters","f":"Kyle","fp":"DL","r":11,"c":35,"s":{"s":21.5,"n":5,"a":4.3,"d":0.76,"Ss":21.5,"Sn":5,"Sa":4.3,"Sd":0.76,"Os":73,"On":15,"Oa":4.87,"Od":1.08,"pd":15},"p":[[-38,{"n":6,"e":3936}],[-37,{"n":6,"e":3939}],[-36,{"n":6,"e":3956,"s":1}],[-35,{"n":3.5,"e":3962}],[-34,{"n":5,"e":3973}],[-33,{"n":6.5,"e":3985}],[-32,{"n":5.5,"e":3996}],[-31,{"n":5,"e":4005,"s":1}],[-30,{"n":5,"e":4014,"s":1}],[-26,{"n":3,"e":4056}],[5,{"n":3.5,"e":6885}],[4,{"n":5,"e":6901}],[3,{"n":5,"e":6904}],[2,{"n":4.5,"e":6919}],[1,{"n":3.5,"e":6922}]],"fo":[[3962,[{"t":"Y"}]],[6901,[{"t":"Y"}]],[6922,[{"t":"Y"}]]]}],[1333,{"n":"Bednarek","f":"Jan","fp":"DC","r":11,"c":35,"s":{"s":23,"n":5,"a":4.6,"d":1.64,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.64,"Og":1,"Oao":1,"Os":159,"On":33,"Oa":4.82,"Od":1.2,"pd":33},"p":[[-36,{"n":5,"e":3956}],[-35,{"n":5.5,"e":3962}],[-34,{"n":5,"e":3973}],[-33,{"n":7,"e":3985}],[-32,{"n":4.5,"e":3996,"a":1}],[-31,{"n":4,"e":4005}],[-30,{"n":6.5,"e":4014}],[-29,{"n":5.5,"e":4026}],[-28,{"n":4,"e":4037}],[-27,{"n":6,"e":4046}],[-25,{"n":3.5,"e":4062}],[-23,{"n":4.5,"e":4085,"g":1}],[-22,{"n":5,"e":4093}],[-21,{"n":5.5,"e":4105}],[-20,{"n":4.5,"e":4115}],[-19,{"n":6.5,"e":4120}],[-18,{"n":5.5,"e":4128}],[-17,{"n":4.5,"e":4146}],[-16,{"n":5,"e":4153}],[-15,{"n":5.5,"e":4165}],[-14,{"n":5,"e":4177}],[-13,{"n":4.5,"e":4178}],[-12,{"n":3.5,"e":4193}],[-11,{"n":5.5,"e":4204}],[-10,{"n":1.5,"e":4215}],[-9,{"n":5.5,"e":4227}],[-8,{"n":3,"e":4233}],[-7,{"n":4.5,"e":4243}],[5,{"n":4,"e":6885}],[4,{"n":6.5,"e":6901}],[3,{"n":6,"e":6904}],[2,{"n":2.5,"e":6919}],[1,{"n":4,"e":6922}]],"fo":[[3973,[{"t":"Y"}]]]}],[2264,{"n":"Obafemi","f":"Michael","fp":"A","r":7,"c":35,"s":{"s":4.5,"n":1,"a":4.5,"Og":3,"Os":100,"On":21,"Oa":4.76,"Od":0.83,"pa":21},"p":[[-38,{"n":4.5,"e":3936,"s":1}],[-37,{"n":6,"e":3939,"s":1}],[-36,{"n":3.5,"e":3956}],[-35,{"n":6,"e":3962,"g":1,"s":1}],[-31,{"n":3.5,"e":4005}],[-30,{"n":6,"e":4014}],[-29,{"n":4.5,"e":4026,"s":1}],[-28,{"n":5.5,"e":4037,"g":1}],[-27,{"n":5,"e":4046,"s":1}],[-26,{"n":4,"e":4056,"s":1}],[-25,{"n":4.5,"e":4062,"s":1}],[-24,{"n":6,"e":4077}],[-21,{"n":4,"e":4105,"s":1}],[-19,{"n":6,"e":4120,"g":1}],[-18,{"n":4.5,"e":4128,"s":1}],[-14,{"n":4,"e":4177}],[-13,{"n":4.5,"e":4178}],[-12,{"n":4.5,"e":4193,"s":1}],[-8,{"n":4.5,"e":4233,"s":1}],[-7,{"n":4.5,"e":4243,"s":1}],[3,{"n":4.5,"e":6904,"s":1}]]}],[2486,{"n":"Vestergaard","f":"Jannik","fp":"DC","r":11,"c":35,"s":{"g":1,"s":23,"n":4,"a":5.75,"d":0.5,"Sg":1,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.58,"Og":1,"Os":87,"On":17,"Oa":5.12,"Od":0.91,"pd":17},"p":[[-38,{"n":6,"e":3936}],[-37,{"n":6,"e":3939}],[-36,{"n":5,"e":3956}],[-32,{"n":5.5,"e":3996}],[-31,{"n":5,"e":4005,"s":1}],[-28,{"n":5,"e":4037,"s":1}],[-26,{"n":3.5,"e":4056}],[-24,{"n":5.5,"e":4077}],[-12,{"n":4,"e":4193}],[-11,{"n":5.5,"e":4204}],[-10,{"n":3,"e":4215}],[-9,{"n":5.5,"e":4227}],[-7,{"n":4.5,"e":4243}],[5,{"n":5,"e":6885,"g":1}],[4,{"n":6,"e":6901}],[3,{"n":6,"e":6904}],[1,{"n":6,"e":6922,"s":1}]],"fo":[[3939,[{"t":"Y"}]]]}],[2488,{"n":"Armstrong","f":"Stuart","fp":"MO","r":16,"c":35,"s":{"s":14.5,"n":3,"a":4.83,"d":1.26,"Og":5,"Os":154.5,"On":28,"Oa":5.52,"Od":1.25,"pm":28},"p":[[-38,{"n":5,"e":3936}],[-37,{"n":6,"e":3939}],[-36,{"n":5,"e":3956,"s":1}],[-35,{"n":7,"e":3962,"g":1}],[-34,{"n":7,"e":3973}],[-33,{"n":7,"e":3985}],[-32,{"n":5,"e":3996,"s":1}],[-31,{"n":5,"e":4005}],[-30,{"n":8,"e":4014,"g":1}],[-28,{"n":5,"e":4037}],[-27,{"n":7.5,"e":4046,"g":1}],[-26,{"n":4.5,"e":4056}],[-24,{"n":7.5,"e":4077,"g":1}],[-23,{"n":4,"e":4085}],[-22,{"n":7,"e":4093,"g":1}],[-21,{"n":5,"e":4105}],[-20,{"n":4.5,"e":4115,"s":1}],[-19,{"n":7,"e":4120}],[-18,{"n":5,"e":4128}],[-17,{"n":5,"e":4146,"s":1}],[-13,{"n":5,"e":4178}],[-12,{"n":3.5,"e":4193}],[-11,{"n":5,"e":4204}],[-10,{"n":4.5,"e":4215,"s":1}],[-7,{"n":5,"e":4243,"s":1}],[4,{"n":6,"e":6901}],[3,{"n":5,"e":6904}],[2,{"n":3.5,"e":6919}]],"fo":[[3936,[{"t":"I"}]],[3973,[{"t":"Y"}]]]}],[2543,{"n":"Valery","f":"Yan","fp":"DL","r":5,"c":35,"s":{"Os":31,"On":8,"Oa":3.88,"Od":1.46,"pd":6,"pm":2},"p":[[-31,{"n":3.5,"e":4005}],[-30,{"n":5.5,"e":4014}],[-29,{"n":3,"e":4026}],[-14,{"n":5,"e":4177,"s":1}],[-11,{"n":4.5,"e":4204}],[-10,{"n":1,"e":4215}],[-9,{"n":5,"e":4227}],[-8,{"n":3.5,"e":4233}]]}],[2671,{"n":"Diallo","f":"Ibrahima","fp":"MD","r":10,"c":35,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":95.5,"On":19,"Oa":5.03,"Od":1.06,"pm":19},"p":[[5,{"n":5.5,"e":6158}],[4,{"n":4.5,"e":6168}],[3,{"n":7,"e":6180}],[2,{"n":4,"e":6197}],[1,{"n":3.5,"e":6206}],[-28,{"n":4,"e":3654}],[-20,{"n":4.5,"e":3737}],[-19,{"n":4,"e":3741}],[-18,{"n":6,"e":3751}],[-16,{"n":7,"e":3771}],[-15,{"n":5.5,"e":3779}],[-14,{"n":6,"e":3791}],[-12,{"n":4.5,"e":3808}],[-11,{"n":5,"e":3818,"s":1}],[-9,{"n":6,"e":3839}],[-13,{"n":5.5,"e":3798}],[-8,{"n":5,"e":3853}],[-7,{"n":3.5,"e":3859}],[5,{"n":4.5,"e":6885,"s":1}]],"fo":[[6158,[{"t":"Y"}]]]}],[2802,{"n":"Salisu","f":"Mohammed","fp":"DC","r":9,"c":35,"s":{"Og":1,"Os":135.5,"On":26,"Oa":5.21,"Od":1.08,"pd":26},"p":[[-33,{"n":5.5,"e":4366}],[-31,{"n":6,"e":4386}],[-29,{"n":6,"e":4406}],[-28,{"n":5,"e":4412}],[-27,{"n":2,"e":4426}],[-26,{"n":5.5,"e":4435}],[-25,{"n":5.5,"e":4447}],[-24,{"n":5,"e":4451}],[-23,{"n":5.5,"e":4467}],[-22,{"n":6,"e":4473}],[-21,{"n":5.5,"e":4485}],[-20,{"n":5.5,"e":4494}],[-19,{"n":6,"e":4505}],[-17,{"n":4,"e":4523}],[-15,{"n":5.5,"e":4541}],[-14,{"n":4,"e":4556}],[-11,{"n":4,"e":4580,"s":1}],[-10,{"n":7.5,"e":4595,"g":1}],[-9,{"n":4,"e":4599}],[-7,{"n":5.5,"e":4622}],[-6,{"n":4.5,"e":4636}],[-18,{"n":5.5,"e":4516}],[-16,{"n":5.5,"e":4536}],[-13,{"n":4,"e":4557}],[-12,{"n":6.5,"e":4575}],[-8,{"n":6,"e":4616}]],"fo":[[4386,[{"t":"Y"}]],[4412,[{"t":"Y"}]]]}],[2974,{"n":"Ramsay","f":"Kayne","fp":"DL","r":1,"c":35}],[2983,{"n":"Slattery","f":"Callum","fp":"MO","r":1,"c":35}],[3643,{"n":"Djenepo","f":"Moussa","fp":"MO","r":11,"c":35,"s":{"g":1,"s":20,"n":4,"a":5,"d":0.82,"Og":1,"Os":95,"On":19,"Oa":5,"Od":0.97,"pm":18,"pa":1},"p":[[-29,{"n":3.5,"e":4026}],[-27,{"n":7,"e":4046}],[-26,{"n":4,"e":4056,"s":1}],[-25,{"n":4,"e":4062}],[-23,{"n":5,"e":4085,"s":1}],[-22,{"n":4.5,"e":4093,"s":1}],[-21,{"n":4.5,"e":4105}],[-20,{"n":6,"e":4115,"s":1}],[-17,{"n":5.5,"e":4146}],[-16,{"n":5,"e":4153}],[-15,{"n":5,"e":4165}],[-14,{"n":7,"e":4177}],[-13,{"n":5,"e":4178,"s":1}],[-12,{"n":4,"e":4193}],[-11,{"n":5,"e":4204,"s":1}],[4,{"n":6,"e":6901,"g":1}],[3,{"n":5,"e":6904}],[2,{"n":4,"e":6919}],[1,{"n":5,"e":6922,"s":1}]],"fo":[[6901,[{"t":"Y"}]]]}],[3668,{"n":"Adams","f":"Che","fp":"A","r":10,"c":35,"s":{"g":1,"s":24.5,"n":5,"a":4.9,"d":1.34,"Sg":1,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.34,"Og":5,"Os":144.5,"On":29,"Oa":4.98,"Od":1.05,"pa":29},"p":[[-38,{"n":8,"e":3936,"g":2}],[-37,{"n":7,"e":3939,"g":1,"s":1}],[-36,{"n":4.5,"e":3956,"s":1}],[-35,{"n":5,"e":3962}],[-34,{"n":4.5,"e":3973}],[-33,{"n":6.5,"e":3985,"g":1}],[-32,{"n":5.5,"e":3996,"s":1}],[-30,{"n":5,"e":4014,"s":1}],[-29,{"n":4.5,"e":4026,"s":1}],[-27,{"n":6,"e":4046,"s":1}],[-26,{"n":4.5,"e":4056,"s":1}],[-25,{"n":4.5,"e":4062,"s":1}],[-24,{"n":4.5,"e":4077,"s":1}],[-23,{"n":4.5,"e":4085,"s":1}],[-22,{"n":6,"e":4093,"s":1}],[-20,{"n":4.5,"e":4115}],[-19,{"n":5,"e":4120}],[-18,{"n":4,"e":4128,"s":1}],[-17,{"n":4.5,"e":4146,"s":1}],[-16,{"n":4.5,"e":4153,"s":1}],[-15,{"n":4,"e":4165,"s":1}],[-12,{"n":4,"e":4193,"s":1}],[-11,{"n":4.5,"e":4204,"s":1}],[-8,{"n":4.5,"e":4233,"s":1}],[5,{"n":7,"e":6885,"g":1}],[4,{"n":5,"e":6901}],[3,{"n":5,"e":6904}],[2,{"n":3.5,"e":6919}],[1,{"n":4,"e":6922}]],"fo":[[6919,[{"t":"Y"}]]],"a":{"m":12,"a":15,"M":21,"n":10}}],[5436,{"n":"Vokins","f":"Jake","fp":"DL","r":1,"c":35,"s":{"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[-36,{"n":4.5,"e":3956}]]}],[5437,{"n":"Smallbone","f":"William","fp":"MD","r":7,"c":35,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":56.5,"On":11,"Oa":5.14,"Od":0.55,"pm":11},"p":[[-38,{"n":6.5,"e":3936,"s":1}],[-36,{"n":5,"e":3956}],[-35,{"n":5,"e":3962,"s":1}],[-34,{"n":5,"e":3973,"s":1}],[-33,{"n":5,"e":3985,"s":1}],[-32,{"n":5.5,"e":3996}],[-30,{"n":5,"e":4014,"s":1}],[-28,{"n":4.5,"e":4037}],[-27,{"n":5.5,"e":4046}],[2,{"n":5,"e":6919,"s":1}],[1,{"n":4.5,"e":6922}]]}],[6148,{"n":"N'Lundulu","f":"Daniel","fp":"A","r":1,"c":35}],[6646,{"n":"Tella","f":"Nathan","fp":"A","r":7,"c":35,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":5,"Sn":1,"Sa":5,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pm":1,"pa":2},"p":[[5,{"n":5,"e":6885,"s":1}],[3,{"n":4.5,"e":6904,"s":1}],[2,{"n":5,"e":6919,"s":1}]]}],[6687,{"n":"Jankewitz","f":"Alexandre","fp":"MD","r":1,"c":35}],[6689,{"n":"Ferry","f":"Will","fp":"MO","r":1,"c":35}],[8,{"n":"Lucas Moura","f":"","fp":"MO","r":14,"c":24,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":1.04,"Sg":1,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.04,"Og":4,"Os":182,"On":35,"Oa":5.2,"Od":1.1,"pm":22,"pa":13},"p":[[5,{"n":4.5,"e":6892,"s":1}],[-31,{"n":5.5,"e":4006}],[-24,{"n":4.5,"e":4076}],[-13,{"n":5.5,"e":4187,"g":1}],[-38,{"n":6,"e":3931}],[-37,{"n":7.5,"e":3944}],[-36,{"n":5,"e":3955}],[-35,{"n":7.5,"e":3965}],[-34,{"n":5,"e":3970,"s":1}],[-33,{"n":4.5,"e":3986}],[-32,{"n":4,"e":3995}],[-29,{"n":5,"e":4019,"s":1}],[-28,{"n":5,"e":4035}],[-27,{"n":4.5,"e":4040}],[-26,{"n":7,"e":4049}],[-25,{"n":6,"e":4065}],[-23,{"n":5,"e":4086}],[-22,{"n":5,"e":4096}],[-21,{"n":5.5,"e":4105}],[-20,{"n":3.5,"e":4114,"s":1}],[-19,{"n":4.5,"e":4126}],[-18,{"n":3.5,"e":4135}],[-17,{"n":7,"e":4147,"g":1}],[-16,{"n":7.5,"e":4155,"g":1}],[-15,{"n":5,"e":4163}],[-14,{"n":4.5,"e":4173,"s":1}],[-12,{"n":5.5,"e":4194,"s":1}],[-11,{"n":4,"e":4203}],[-10,{"n":5,"e":4211,"s":1}],[-9,{"n":5,"e":4226}],[-8,{"n":5.5,"e":4228,"s":1}],[4,{"n":4.5,"e":6899,"s":1}],[3,{"n":6.5,"e":6909,"g":1}],[2,{"n":4,"e":6919}],[1,{"n":4,"e":6925}]],"fo":[[3944,[{"t":"Y"}]]],"a":{"m":16,"a":22,"M":42,"n":11}}],[21,{"n":"Aurier","f":"Serge","fp":"DL","r":17,"c":24,"s":{"g":1,"s":12,"n":2,"a":6,"d":2.83,"Sg":1,"Ss":12,"Sn":2,"Sa":6,"Sd":2.83,"Og":2,"Oao":1,"Os":172,"On":33,"Oa":5.21,"Od":0.97,"pd":28,"pm":5},"p":[[-38,{"n":4.5,"e":3931}],[-37,{"n":5,"e":3944}],[-36,{"n":4,"e":3955}],[-35,{"n":5,"e":3965}],[-34,{"n":6.5,"e":3970}],[-33,{"n":6,"e":3986}],[-32,{"n":4.5,"e":3995}],[-31,{"n":5.5,"e":4006}],[-30,{"n":5,"e":4015}],[-29,{"n":5.5,"e":4019,"s":1}],[-28,{"n":5,"e":4035,"g":1}],[-27,{"n":5,"e":4040,"s":1}],[-26,{"n":4.5,"e":4049}],[-25,{"n":5,"e":4065}],[-24,{"n":7,"e":4076}],[-23,{"n":4.5,"e":4086}],[-22,{"n":6,"e":4096}],[-21,{"n":6,"e":4105}],[-20,{"n":5,"e":4114,"a":1}],[-19,{"n":5,"e":4126}],[-18,{"n":5,"e":4135}],[-17,{"n":5,"e":4147}],[-16,{"n":5.5,"e":4155}],[-15,{"n":6,"e":4163}],[-14,{"n":5,"e":4173}],[-13,{"n":6,"e":4187}],[-12,{"n":5.5,"e":4194}],[-11,{"n":6,"e":4203}],[-10,{"n":3,"e":4211}],[-9,{"n":5,"e":4226}],[-7,{"n":3.5,"e":4243}],[5,{"n":4,"e":6892}],[4,{"n":8,"e":6899,"g":1}]],"fo":[[3965,[{"t":"Y"}]]]}],[295,{"n":"Lo Celso","f":"Giovani","fp":"MO","r":8,"c":24,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":135.5,"On":27,"Oa":5.02,"Od":0.75,"pm":27},"p":[[-38,{"n":6,"e":3931}],[-37,{"n":6,"e":3944}],[-36,{"n":5.5,"e":3955}],[-35,{"n":5,"e":3965}],[-34,{"n":3.5,"e":3970}],[-33,{"n":6,"e":3986}],[-32,{"n":4.5,"e":3995}],[-31,{"n":6.5,"e":4006}],[-30,{"n":5.5,"e":4015,"s":1}],[-29,{"n":4.5,"e":4019,"s":1}],[-28,{"n":4,"e":4035}],[-27,{"n":5.5,"e":4040}],[-26,{"n":4.5,"e":4049,"s":1}],[-25,{"n":6,"e":4065}],[-24,{"n":5.5,"e":4076}],[-23,{"n":5.5,"e":4086}],[-22,{"n":4,"e":4096,"s":1}],[-21,{"n":4.5,"e":4105,"s":1}],[-20,{"n":4.5,"e":4114}],[-19,{"n":4,"e":4126,"s":1}],[-15,{"n":4.5,"e":4163,"s":1}],[-14,{"n":5,"e":4173,"s":1}],[-12,{"n":5,"e":4194}],[-11,{"n":4.5,"e":4203,"s":1}],[-10,{"n":5,"e":4211,"s":1}],[3,{"n":5.5,"e":6909}],[2,{"n":5,"e":6919,"s":1}]],"fo":[[3965,[{"t":"Y"}]],[6919,[{"t":"Y"}]]],"a":{"m":9,"a":11,"M":13,"n":8}}],[589,{"n":"Kane","f":"Harry","fp":"A","r":36,"c":24,"s":{"g":5,"s":36,"n":5,"a":7.2,"d":1.89,"Sg":5,"Ss":36,"Sn":5,"Sa":7.2,"Sd":1.89,"Og":19,"Os":165.5,"On":28,"Oa":5.91,"Od":1.51,"pa":28},"p":[[-38,{"n":6,"e":3931,"g":1}],[-37,{"n":8,"e":3944,"g":2}],[-36,{"n":7.5,"e":3955,"g":2}],[-35,{"n":6,"e":3965}],[-34,{"n":4.5,"e":3970}],[-33,{"n":5,"e":3986}],[-32,{"n":6,"e":3995,"g":1}],[-31,{"n":6,"e":4006,"g":1}],[-30,{"n":4,"e":4015}],[-21,{"n":5.5,"e":4105}],[-20,{"n":6,"e":4114,"g":1}],[-19,{"n":7,"e":4126,"g":1}],[-18,{"n":5,"e":4135}],[-17,{"n":5.5,"e":4147}],[-16,{"n":8.5,"e":4155,"g":2}],[-15,{"n":4.5,"e":4163}],[-14,{"n":5,"e":4173}],[-13,{"n":6,"e":4187,"g":1}],[-12,{"n":3.5,"e":4194}],[-10,{"n":6,"e":4211,"g":1}],[-9,{"n":4.5,"e":4226}],[-8,{"n":3.5,"e":4228}],[-7,{"n":6,"e":4243,"g":1}],[5,{"n":8.5,"e":6892,"g":2}],[4,{"n":8,"e":6899,"g":2}],[3,{"n":6,"e":6909}],[2,{"n":9,"e":6919,"g":1}],[1,{"n":4.5,"e":6925}]],"fo":[[3955,[{"t":"Y"}]],[4006,[{"t":"Y"}]]],"a":{"m":37,"a":70,"M":107,"n":12}}],[596,{"n":"Alli","f":"Dele","fp":"MO","r":21,"c":24,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Og":8,"Os":145,"On":26,"Oa":5.58,"Od":1.09,"pm":20,"pa":6},"p":[[-38,{"n":5,"e":3931,"s":1}],[-32,{"n":4.5,"e":3995,"s":1}],[-31,{"n":4,"e":4006}],[-29,{"n":5.5,"e":4019,"g":1}],[-28,{"n":6,"e":4035}],[-27,{"n":5,"e":4040,"s":1}],[-26,{"n":5,"e":4049}],[-25,{"n":5.5,"e":4065}],[-24,{"n":7,"e":4076,"g":1}],[-23,{"n":6,"e":4086}],[-22,{"n":4,"e":4096}],[-21,{"n":4.5,"e":4105}],[-20,{"n":4.5,"e":4114}],[-19,{"n":6.5,"e":4126,"g":1}],[-18,{"n":4.5,"e":4135}],[-17,{"n":6.5,"e":4147}],[-16,{"n":7,"e":4155}],[-15,{"n":7,"e":4163,"g":1}],[-14,{"n":8,"e":4173,"g":2}],[-13,{"n":6,"e":4187}],[-12,{"n":5.5,"e":4194}],[-11,{"n":7,"e":4203,"g":1}],[-10,{"n":5,"e":4211}],[-9,{"n":6,"e":4226,"g":1}],[4,{"n":5.5,"e":6899,"s":1}],[1,{"n":4,"e":6925}]],"a":{"m":24,"a":32,"M":52,"n":12}}],[613,{"n":"Lloris","f":"Hugo","fp":"G","r":24,"c":24,"s":{"s":24.5,"n":5,"a":4.9,"d":0.74,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":0.74,"Os":117,"On":21,"Oa":5.57,"Od":1.19,"pg":21},"p":[[-38,{"n":4.5,"e":3931}],[-37,{"n":7.5,"e":3944}],[-36,{"n":6,"e":3955}],[-35,{"n":6,"e":3965}],[-34,{"n":6,"e":3970}],[-33,{"n":6.5,"e":3986}],[-32,{"n":4,"e":3995}],[-31,{"n":6,"e":4006}],[-30,{"n":6.5,"e":4015}],[-29,{"n":6.5,"e":4019}],[-27,{"n":6,"e":4040}],[-26,{"n":5.5,"e":4049}],[-25,{"n":8,"e":4065}],[-24,{"n":5.5,"e":4076}],[-8,{"n":3,"e":4228}],[-7,{"n":5,"e":4243}],[5,{"n":4,"e":6892}],[4,{"n":5,"e":6899}],[3,{"n":4.5,"e":6909}],[2,{"n":6,"e":6919}],[1,{"n":5,"e":6925}]],"a":{"m":25,"a":31,"M":41,"n":9}}],[652,{"n":"Alderweireld","f":"Toby","fp":"DC","r":9,"c":24,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Ss":4,"Sn":1,"Sa":4,"Og":2,"Oao":1,"Os":148.5,"On":29,"Oa":5.12,"Od":0.7,"pd":29},"p":[[-38,{"n":5,"e":3931}],[-37,{"n":6,"e":3944}],[-36,{"n":4.5,"e":3955}],[-35,{"n":7,"e":3965,"g":1}],[-34,{"n":5.5,"e":3970}],[-33,{"n":5.5,"e":3986}],[-29,{"n":4.5,"e":4019}],[-27,{"n":4,"e":4040}],[-26,{"n":5,"e":4049,"g":1,"a":1}],[-25,{"n":6,"e":4065}],[-24,{"n":6,"e":4076}],[-23,{"n":5,"e":4086}],[-22,{"n":5.5,"e":4096}],[-21,{"n":5,"e":4105}],[-20,{"n":5,"e":4114}],[-19,{"n":5,"e":4126}],[-18,{"n":4.5,"e":4135}],[-17,{"n":5.5,"e":4147}],[-16,{"n":5.5,"e":4155}],[-15,{"n":5,"e":4163}],[-14,{"n":6,"e":4173}],[-13,{"n":4.5,"e":4187}],[-11,{"n":4.5,"e":4203}],[-10,{"n":5.5,"e":4211}],[-9,{"n":5,"e":4226}],[-8,{"n":4,"e":4228}],[-7,{"n":5.5,"e":4243}],[5,{"n":4,"e":6892}],[1,{"n":4.5,"e":6925}]],"fo":[[3931,[{"t":"Y"}]],[3955,[{"t":"Y"}]],[3986,[{"t":"Y"}]]],"a":{"m":17,"a":21,"M":35,"n":8}}],[687,{"n":"Sissoko","f":"Moussa","fp":"MD","r":15,"c":24,"s":{"s":17,"n":3,"a":5.67,"d":1.26,"Ss":12.5,"Sn":2,"Sa":6.25,"Sd":1.06,"Og":2,"Os":138.5,"On":26,"Oa":5.33,"Od":1.02,"pd":1,"pm":25},"p":[[-38,{"n":5,"e":3931}],[-37,{"n":6.5,"e":3944}],[-36,{"n":6,"e":3955}],[-35,{"n":5.5,"e":3965}],[-34,{"n":5,"e":3970}],[-33,{"n":6,"e":3986}],[-32,{"n":4.5,"e":3995}],[-31,{"n":6,"e":4006}],[-30,{"n":6,"e":4015}],[-21,{"n":4,"e":4105}],[-19,{"n":5,"e":4126}],[-18,{"n":4,"e":4135}],[-17,{"n":6,"e":4147}],[-16,{"n":7,"e":4155,"g":1}],[-15,{"n":4,"e":4163}],[-14,{"n":7,"e":4173,"g":1}],[-13,{"n":4.5,"e":4187,"s":1}],[-12,{"n":5,"e":4194}],[-11,{"n":5.5,"e":4203}],[-10,{"n":5,"e":4211}],[-9,{"n":5,"e":4226}],[-8,{"n":3,"e":4228}],[-7,{"n":6,"e":4243}],[5,{"n":5.5,"e":6892}],[4,{"n":7,"e":6899}],[1,{"n":4.5,"e":6925,"s":1}]],"fo":[[3931,[{"t":"I"}]],[3970,[{"t":"Y"}]],[3986,[{"t":"Y"}]]]}],[714,{"n":"Rose","f":"Danny","fp":"DL","r":7,"c":24,"s":{"Os":79.5,"On":17,"Oa":4.68,"Od":0.71,"pd":16,"pm":1},"p":[[-38,{"n":3.5,"e":3935}],[-37,{"n":5.5,"e":3940}],[-35,{"n":5,"e":3966}],[-34,{"n":3.5,"e":3974}],[-31,{"n":5,"e":4003}],[-30,{"n":6,"e":4013}],[-29,{"n":5,"e":4026}],[-28,{"n":5,"e":4033}],[-27,{"n":4.5,"e":4041}],[-26,{"n":3.5,"e":4048}],[-25,{"n":5,"e":4064,"s":1}],[-22,{"n":4,"e":4096}],[-18,{"n":5,"e":4135,"s":1}],[-13,{"n":5,"e":4187,"s":1}],[-10,{"n":4.5,"e":4211}],[-9,{"n":4.5,"e":4226}],[-7,{"n":5,"e":4243}]],"fo":[[3940,[{"t":"Y"}]]]}],[724,{"n":"Dier","f":"Eric","fp":"MD","r":12,"c":24,"s":{"s":20,"n":4,"a":5,"d":0.91,"Os":108.5,"On":23,"Oa":4.72,"Od":0.74,"pd":12,"pm":11},"p":[[-38,{"n":4.5,"e":3931}],[-33,{"n":5.5,"e":3986}],[-32,{"n":3,"e":3995}],[-31,{"n":5.5,"e":4006}],[-30,{"n":4.5,"e":4015}],[-29,{"n":4.5,"e":4019}],[-28,{"n":4,"e":4035}],[-26,{"n":5,"e":4049}],[-25,{"n":5,"e":4065,"s":1}],[-24,{"n":5,"e":4076,"s":1}],[-19,{"n":5,"e":4126,"s":1}],[-18,{"n":3.5,"e":4135}],[-17,{"n":5,"e":4147}],[-16,{"n":6,"e":4155}],[-14,{"n":5,"e":4173}],[-13,{"n":4.5,"e":4187}],[-12,{"n":4.5,"e":4194}],[-8,{"n":4,"e":4228}],[-7,{"n":4.5,"e":4243,"s":1}],[4,{"n":6,"e":6899}],[3,{"n":4,"e":6909}],[2,{"n":5.5,"e":6919}],[1,{"n":4.5,"e":6925}]],"fo":[[3931,[{"t":"Y"}]]]}],[727,{"n":"Højbjerg","f":"Pierre-Emile","fp":"MD","r":16,"c":24,"s":{"s":29.5,"n":5,"a":5.9,"d":1.39,"Ss":29.5,"Sn":5,"Sa":5.9,"Sd":1.39,"Os":174,"On":32,"Oa":5.44,"Od":1.05,"pd":2,"pm":30},"p":[[-37,{"n":5,"e":3939,"s":1}],[-36,{"n":5.5,"e":3956}],[-34,{"n":5.5,"e":3973,"s":1}],[-31,{"n":5,"e":4005}],[-30,{"n":7,"e":4014}],[-29,{"n":5,"e":4026}],[-28,{"n":5,"e":4037}],[-27,{"n":5.5,"e":4046}],[-26,{"n":5,"e":4056}],[-25,{"n":4.5,"e":4062}],[-24,{"n":5.5,"e":4077}],[-23,{"n":5.5,"e":4085}],[-22,{"n":5,"e":4093}],[-21,{"n":6,"e":4105}],[-20,{"n":6,"e":4115}],[-19,{"n":7,"e":4120}],[-18,{"n":6.5,"e":4128}],[-17,{"n":5,"e":4146}],[-16,{"n":4,"e":4153}],[-15,{"n":7.5,"e":4165}],[-14,{"n":6.5,"e":4177}],[-13,{"n":5,"e":4178}],[-11,{"n":4.5,"e":4204}],[-10,{"n":3,"e":4215}],[-9,{"n":4.5,"e":4227}],[-8,{"n":4.5,"e":4233}],[-7,{"n":5.5,"e":4243}],[5,{"n":4.5,"e":6892}],[4,{"n":8,"e":6899}],[3,{"n":5.5,"e":6909}],[2,{"n":6.5,"e":6919}],[1,{"n":5,"e":6925}]],"fo":[[6925,[{"t":"Y"}]]]}],[786,{"n":"Lamela","f":"Erik","fp":"MO","r":9,"c":24,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Os":110,"On":22,"Oa":5,"Od":0.51,"pm":18,"pa":4},"p":[[-37,{"n":4.5,"e":3944,"s":1}],[-36,{"n":6,"e":3955,"s":1}],[-35,{"n":4.5,"e":3965,"s":1}],[-34,{"n":5,"e":3970}],[-33,{"n":5,"e":3986,"s":1}],[-32,{"n":5,"e":3995,"s":1}],[-31,{"n":5.5,"e":4006,"s":1}],[-30,{"n":5.5,"e":4015}],[-29,{"n":5,"e":4019}],[-27,{"n":5.5,"e":4040,"s":1}],[-25,{"n":5,"e":4065,"s":1}],[-24,{"n":5.5,"e":4076}],[-23,{"n":5,"e":4086}],[-22,{"n":4.5,"e":4096,"s":1}],[-21,{"n":5,"e":4105,"s":1}],[-20,{"n":4.5,"e":4114,"s":1}],[-9,{"n":5,"e":4226,"s":1}],[-8,{"n":3.5,"e":4228}],[-7,{"n":5,"e":4243,"s":1}],[4,{"n":5,"e":6899}],[3,{"n":5,"e":6909,"s":1}],[2,{"n":5.5,"e":6919,"s":1}]],"fo":[[6899,[{"t":"Y"}]]]}],[824,{"n":"Son Heung-Min","f":"","fp":"A","r":30,"c":24,"s":{"g":7,"s":35.5,"n":5,"a":7.1,"d":1.67,"Sg":7,"Ss":35.5,"Sn":5,"Sa":7.1,"Sd":1.67,"Og":16,"Os":190,"On":31,"Oa":6.13,"Od":1.4,"pm":20,"pa":11},"p":[[-38,{"n":4.5,"e":3931}],[-37,{"n":6.5,"e":3944}],[-36,{"n":6.5,"e":3955,"g":1}],[-35,{"n":7.5,"e":3965,"g":1}],[-34,{"n":4.5,"e":3970,"s":1}],[-33,{"n":5,"e":3986}],[-32,{"n":5.5,"e":3995}],[-31,{"n":6.5,"e":4006}],[-30,{"n":6.5,"e":4015}],[-26,{"n":8,"e":4049,"g":2}],[-25,{"n":7,"e":4065,"g":1}],[-24,{"n":6,"e":4076,"g":1}],[-23,{"n":6,"e":4086}],[-22,{"n":5.5,"e":4096}],[-18,{"n":4,"e":4135}],[-17,{"n":5.5,"e":4147}],[-16,{"n":8,"e":4155,"g":1}],[-15,{"n":5.5,"e":4163}],[-14,{"n":7.5,"e":4173}],[-13,{"n":8,"e":4187,"g":1}],[-12,{"n":6.5,"e":4194,"g":1}],[-11,{"n":4.5,"e":4203}],[-10,{"n":6,"e":4211}],[-9,{"n":4,"e":4226,"s":1}],[-8,{"n":3.5,"e":4228}],[-7,{"n":6,"e":4243}],[5,{"n":7,"e":6892,"g":1}],[4,{"n":8.5,"e":6899,"g":2}],[3,{"n":6,"e":6909}],[2,{"n":9,"e":6919,"g":4}],[1,{"n":5,"e":6925}]],"fo":[[6909,[{"t":"I"}]]],"a":{"m":22,"a":54,"M":107,"n":20}}],[831,{"n":"Winks","f":"Harry","fp":"MD","r":13,"c":24,"s":{"s":19,"n":4,"a":4.75,"d":0.65,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":149.5,"On":29,"Oa":5.16,"Od":0.68,"pm":29},"p":[[-38,{"n":5.5,"e":3931}],[-37,{"n":6.5,"e":3944}],[-36,{"n":6,"e":3955}],[-35,{"n":5.5,"e":3965}],[-34,{"n":6,"e":3970}],[-33,{"n":6,"e":3986}],[-31,{"n":5,"e":4006,"s":1}],[-30,{"n":5.5,"e":4015}],[-28,{"n":5,"e":4035}],[-27,{"n":4.5,"e":4040}],[-26,{"n":5,"e":4049}],[-25,{"n":6,"e":4065}],[-24,{"n":6,"e":4076}],[-23,{"n":5,"e":4086}],[-22,{"n":5,"e":4096}],[-19,{"n":4,"e":4126}],[-17,{"n":5,"e":4147,"s":1}],[-15,{"n":5.5,"e":4163}],[-14,{"n":5,"e":4173,"s":1}],[-13,{"n":4.5,"e":4187}],[-12,{"n":5,"e":4194,"s":1}],[-10,{"n":4.5,"e":4211}],[-9,{"n":4.5,"e":4226}],[-8,{"n":4,"e":4228,"s":1}],[-7,{"n":6,"e":4243}],[5,{"n":4.5,"e":6892,"s":1}],[3,{"n":5.5,"e":6909}],[2,{"n":5,"e":6919}],[1,{"n":4,"e":6925}]],"fo":[[3965,[{"t":"Y"}]],[6909,[{"t":"Y"}]]]}],[896,{"n":"Davies","f":"Ben","fp":"DL","r":10,"c":24,"s":{"s":20,"n":4,"a":5,"d":0.82,"Os":93,"On":20,"Oa":4.65,"Od":1.01,"pd":19,"pm":1},"p":[[-38,{"n":3,"e":3931}],[-37,{"n":6.5,"e":3944}],[-36,{"n":4,"e":3955}],[-35,{"n":5,"e":3965}],[-34,{"n":5,"e":3970}],[-33,{"n":5,"e":3986}],[-32,{"n":4,"e":3995}],[-31,{"n":6,"e":4006}],[-30,{"n":5,"e":4015}],[-28,{"n":3,"e":4035}],[-27,{"n":3.5,"e":4040}],[-26,{"n":6,"e":4049}],[-13,{"n":5,"e":4187}],[-12,{"n":4,"e":4194}],[-11,{"n":4.5,"e":4203}],[-8,{"n":3.5,"e":4228}],[4,{"n":6,"e":6899,"s":1}],[3,{"n":5,"e":6909}],[2,{"n":4,"e":6919}],[1,{"n":5,"e":6925}]],"fo":[[3955,[{"t":"Y"}]],[3965,[{"t":"Y"}]],[3986,[{"t":"Y"}]],[4006,[{"t":"Y"}]]]}],[1072,{"n":"Whiteman","f":"Alfie","fp":"G","r":1,"c":24}],[1314,{"n":"Sánchez","f":"Davinson","fp":"DC","r":14,"c":24,"s":{"ao":1,"s":19.5,"n":4,"a":4.88,"d":1.25,"Sao":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.25,"Oao":1,"Os":145,"On":29,"Oa":5,"Od":0.77,"pd":29},"p":[[-38,{"n":5,"e":3931,"s":1}],[-37,{"n":6,"e":3944}],[-36,{"n":5.5,"e":3955}],[-35,{"n":5,"e":3965}],[-32,{"n":3,"e":3995}],[-31,{"n":5,"e":4006}],[-30,{"n":6,"e":4015}],[-29,{"n":4.5,"e":4019}],[-28,{"n":4,"e":4035}],[-27,{"n":5,"e":4040}],[-26,{"n":5.5,"e":4049}],[-25,{"n":6,"e":4065}],[-22,{"n":5,"e":4096}],[-20,{"n":5,"e":4114,"s":1}],[-19,{"n":4.5,"e":4126}],[-18,{"n":5,"e":4135}],[-17,{"n":5,"e":4147}],[-16,{"n":6,"e":4155}],[-15,{"n":5.5,"e":4163}],[-14,{"n":4.5,"e":4173}],[-13,{"n":5,"e":4187}],[-12,{"n":5,"e":4194}],[-11,{"n":5,"e":4203}],[-10,{"n":5.5,"e":4211}],[-9,{"n":4,"e":4226}],[5,{"n":3,"e":6892,"a":1}],[4,{"n":5.5,"e":6899}],[3,{"n":5.5,"e":6909}],[2,{"n":5.5,"e":6919}]],"fo":[[3944,[{"t":"Y"}]]]}],[1320,{"n":"Hart","f":"Joe","fp":"G","r":3,"c":24}],[1391,{"n":"Gazzaniga","f":"Paulo","fp":"G","r":7,"c":24,"s":{"Os":91.5,"On":17,"Oa":5.38,"Od":1.17,"pg":17},"p":[[-28,{"n":3.5,"e":4035}],[-23,{"n":7,"e":4086}],[-22,{"n":6.5,"e":4096}],[-21,{"n":5.5,"e":4105}],[-20,{"n":4.5,"e":4114}],[-19,{"n":6,"e":4126}],[-18,{"n":4,"e":4135}],[-17,{"n":6,"e":4147}],[-16,{"n":6,"e":4155}],[-15,{"n":5,"e":4163}],[-14,{"n":6,"e":4173}],[-13,{"n":5,"e":4187}],[-12,{"n":5,"e":4194}],[-11,{"n":5,"e":4203}],[-10,{"n":8,"e":4211}],[-9,{"n":4.5,"e":4226}],[-8,{"n":4,"e":4228,"s":1}]]}],[1414,{"n":"Ndombele","f":"Tanguy","fp":"MD","r":10,"c":24,"s":{"g":1,"s":27,"n":5,"a":5.4,"d":1.24,"Sg":1,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.24,"Og":2,"Os":114,"On":22,"Oa":5.18,"Od":0.92,"pm":22},"p":[[-34,{"n":5,"e":3970,"s":1}],[-32,{"n":5,"e":3995,"s":1}],[-29,{"n":4,"e":4019}],[-28,{"n":5,"e":4035,"s":1}],[-27,{"n":4.5,"e":4040}],[-25,{"n":6,"e":4065,"s":1}],[-21,{"n":5.5,"e":4105}],[-20,{"n":5.5,"e":4114}],[-18,{"n":5.5,"e":4135,"s":1}],[-15,{"n":5,"e":4163,"s":1}],[-14,{"n":5.5,"e":4173}],[-12,{"n":4,"e":4194}],[-11,{"n":5,"e":4203}],[-10,{"n":5,"e":4211,"s":1}],[-9,{"n":5,"e":4226,"s":1}],[-8,{"n":4,"e":4228}],[-7,{"n":7.5,"e":4243,"g":1}],[5,{"n":5.5,"e":6892}],[4,{"n":7.5,"e":6899,"g":1}],[3,{"n":4.5,"e":6909,"s":1}],[2,{"n":5,"e":6919}],[1,{"n":4.5,"e":6925,"s":1}]],"fo":[[3970,[{"t":"Y"}]],[6919,[{"t":"Y"}]]]}],[1561,{"n":"Bale","f":"Gareth","fp":"A","r":13,"c":24,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":71,"On":14,"Oa":5.07,"Od":0.65,"pm":3,"pa":11},"p":[[-31,{"n":6,"e":4384}],[-28,{"n":4.5,"e":4414,"s":1}],[-24,{"n":4,"e":4454}],[-23,{"n":5.5,"e":4464}],[-19,{"n":6,"e":4502}],[-18,{"n":4.5,"e":4515,"s":1}],[-10,{"n":5,"e":4589}],[-17,{"n":4.5,"e":4527,"s":1}],[-15,{"n":5,"e":4538}],[-14,{"n":5,"e":4555,"s":1}],[-8,{"n":6,"e":4614}],[-7,{"n":5,"e":4620}],[-5,{"n":5.5,"e":4645}],[5,{"n":4.5,"e":6892,"s":1}]],"a":{"m":14,"a":27,"M":52,"n":5}}],[2126,{"n":"Rodon","f":"Joe","fp":"DC","r":3,"c":24}],[2439,{"n":"Reguilón","f":"Sergio","fp":"DL","r":8,"c":24,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Og":1,"Os":145.5,"On":29,"Oa":5.02,"Od":0.89,"pd":28,"pm":1},"p":[[-36,{"n":6,"e":4336}],[-35,{"n":5,"e":4338}],[-34,{"n":5,"e":4356,"s":1}],[-33,{"n":6,"e":4361}],[-30,{"n":5,"e":4396}],[-29,{"n":4.5,"e":4402,"s":1}],[-28,{"n":5,"e":4416}],[-27,{"n":5.5,"e":4419}],[-25,{"n":6.5,"e":4442}],[-24,{"n":3,"e":4455}],[-21,{"n":6.5,"e":4486}],[-20,{"n":4.5,"e":4496}],[-18,{"n":5.5,"e":4512}],[-16,{"n":5,"e":4533}],[-15,{"n":5,"e":4546}],[-13,{"n":5,"e":4565}],[-10,{"n":5,"e":4596}],[-9,{"n":5.5,"e":4607}],[-8,{"n":3,"e":4608}],[-38,{"n":7,"e":4316,"g":1}],[-37,{"n":4.5,"e":4326}],[-22,{"n":5,"e":4475}],[-17,{"n":5.5,"e":4526}],[-14,{"n":5,"e":4556}],[-12,{"n":4.5,"e":4576}],[-7,{"n":4.5,"e":4626}],[-5,{"n":4.5,"e":4645}],[5,{"n":4,"e":6892}],[4,{"n":4.5,"e":6899}]],"fo":[[4396,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":21,"n":7}}],[2492,{"n":"Doherty","f":"Matt","fp":"DL","r":19,"c":24,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Og":4,"Os":174,"On":34,"Oa":5.12,"Od":1.06,"pd":7,"pm":27},"p":[[-38,{"n":3.5,"e":3930}],[-37,{"n":7,"e":3947}],[-36,{"n":4,"e":3949,"s":1}],[-35,{"n":5,"e":3967}],[-34,{"n":5,"e":3975}],[-33,{"n":4.5,"e":3987}],[-32,{"n":5,"e":3989}],[-31,{"n":5,"e":4007}],[-30,{"n":6.5,"e":4017}],[-29,{"n":4.5,"e":4027}],[-28,{"n":7,"e":4035,"g":1}],[-27,{"n":7,"e":4047}],[-26,{"n":5,"e":4057}],[-25,{"n":6,"e":4063}],[-24,{"n":4,"e":4073}],[-23,{"n":3.5,"e":4085}],[-22,{"n":4.5,"e":4097}],[-21,{"n":4,"e":4106}],[-19,{"n":6.5,"e":4127,"g":1}],[-18,{"n":5,"e":4134}],[-17,{"n":3.5,"e":4147}],[-16,{"n":4,"e":4150}],[-15,{"n":6,"e":4162}],[-14,{"n":6.5,"e":4174,"g":1}],[-13,{"n":5,"e":4180}],[-12,{"n":5.5,"e":4195}],[-11,{"n":5,"e":4198}],[-10,{"n":4.5,"e":4213}],[-9,{"n":5.5,"e":4227,"s":1}],[-8,{"n":5,"e":4231,"s":1}],[-7,{"n":7,"e":4244,"g":1}],[3,{"n":5,"e":6909}],[2,{"n":4.5,"e":6919}],[1,{"n":4.5,"e":6925}]],"fo":[[6919,[{"t":"Y"}]]],"a":{"m":21,"a":28,"M":33,"n":9}}],[2932,{"n":"Marsh","f":"George","fp":"MD","r":1,"c":24}],[3362,{"n":"Carlos Vinicius","f":"","fp":"A","r":7,"c":24}],[5413,{"n":"White","f":"Harvey","fp":"MD","r":1,"c":24}],[5432,{"n":"Bowden","f":"Jamie","fp":"MD","r":1,"c":24}],[5441,{"n":"Tanganga","f":"Japhet","fp":"DC","r":5,"c":24,"s":{"Os":29,"On":6,"Oa":4.83,"Od":1.51,"pd":5,"pm":1},"p":[[-29,{"n":6,"e":4019}],[-28,{"n":2.5,"e":4035}],[-27,{"n":3.5,"e":4040}],[-25,{"n":6,"e":4065}],[-23,{"n":5,"e":4086}],[-22,{"n":6,"e":4096}]]}],[5996,{"n":"Austin","f":"Brandon","fp":"G","r":1,"c":24}],[6410,{"n":"Gedson Fernandes","f":"","fp":"MO","r":4,"c":24,"s":{"Os":35,"On":7,"Oa":5,"pm":7},"p":[[-37,{"n":5,"e":3944,"s":1}],[-34,{"n":5,"e":3970,"s":1}],[-30,{"n":5,"e":4015,"s":1}],[-28,{"n":5,"e":4035,"s":1}],[-26,{"n":5,"e":4049,"s":1}],[-24,{"n":5,"e":4076,"s":1}],[-23,{"n":5,"e":4086,"s":1}]]}],[6468,{"n":"Cirkin","f":"Dennis","fp":"DL","r":1,"c":24}],[6553,{"n":"Bergwijn","f":"Steven","fp":"A","r":9,"c":24,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":84.5,"On":17,"Oa":4.97,"Od":0.86,"pm":4,"pa":13},"p":[[-38,{"n":4.5,"e":3931,"s":1}],[-37,{"n":5,"e":3944,"s":1}],[-36,{"n":5.5,"e":3955,"s":1}],[-35,{"n":4.5,"e":3965,"s":1}],[-34,{"n":4,"e":3970}],[-33,{"n":4.5,"e":3986,"s":1}],[-32,{"n":4.5,"e":3995}],[-31,{"n":4.5,"e":4006,"s":1}],[-30,{"n":6.5,"e":4015,"g":1}],[-29,{"n":5.5,"e":4019}],[-28,{"n":6,"e":4035,"g":1}],[-27,{"n":4,"e":4040}],[-26,{"n":7,"e":4049}],[5,{"n":4.5,"e":6892}],[3,{"n":5,"e":6909,"s":1}],[2,{"n":4.5,"e":6919,"s":1}],[1,{"n":4.5,"e":6925,"s":1}]],"fo":[[3965,[{"t":"Y"}]]]}],[6645,{"n":"Fagan-Walcott","f":"Malachi","fp":"DC","r":1,"c":24}],[6879,{"n":"Clarke","f":"Jack","fp":"MO","r":2,"c":24}],[6916,{"n":"Devine","f":"Alfie","fp":"MD","r":1,"c":24}],[6917,{"n":"Scarlett","f":"Dane","fp":"A","r":1,"c":24}],[7215,{"n":"Okedina","f":"Jubril","fp":"DL","r":1,"c":24}],[682,{"n":"Phillips","f":"Matt","fp":"MO","r":9,"c":32,"s":{"s":15,"n":3,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":15,"On":3,"Oa":5,"pm":3},"p":[[5,{"n":5,"e":6893,"s":1}],[3,{"n":5,"e":6910,"s":1}],[2,{"n":5,"e":6915,"s":1}]],"fo":[[6893,[{"t":"Y"}]]]}],[693,{"n":"Austin","f":"Charlie","fp":"A","r":7,"c":32}],[726,{"n":"Livermore","f":"Jake","fp":"MD","r":10,"c":32,"s":{"s":21,"n":5,"a":4.2,"d":0.57,"Ss":21,"Sn":5,"Sa":4.2,"Sd":0.57,"Os":21,"On":5,"Oa":4.2,"Od":0.57,"pm":5},"p":[[5,{"n":5,"e":6893}],[4,{"n":4,"e":6901}],[3,{"n":4.5,"e":6910}],[2,{"n":3.5,"e":6915}],[1,{"n":4,"e":6926}]],"fo":[[6893,[{"t":"Y"}]],[6901,[{"t":"Y"}]]]}],[830,{"n":"Grosicki","f":"Kamil","fp":"MO","r":7,"c":32}],[875,{"n":"Robson-Kanu","f":"Hal","fp":"A","r":8,"c":32,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[4,{"n":4.5,"e":6901,"s":1}],[3,{"n":5,"e":6910,"s":1}],[1,{"n":4.5,"e":6926,"s":1}]]}],[982,{"n":"Field","f":"Sam","fp":"MD","r":8,"c":32,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Os":15.5,"On":3,"Oa":5.17,"Od":0.29,"pm":3},"p":[[4,{"n":5.5,"e":6901,"s":1}],[3,{"n":5,"e":6910,"s":1}],[2,{"n":5,"e":6915,"s":1}]]}],[990,{"n":"Gibbs","f":"Kieran","fp":"DL","r":9,"c":32,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pd":2},"p":[[2,{"n":3,"e":6915}],[1,{"n":4.5,"e":6926}]],"fo":[[6915,[{"t":"R"}]]]}],[1131,{"n":"Harper","f":"Rekeem","fp":"MD","r":4,"c":32,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[1,{"n":4.5,"e":6926,"s":1}]]}],[1132,{"n":"Diangana","f":"Grady","fp":"MO","r":12,"c":32,"s":{"g":1,"s":25,"n":5,"a":5,"d":0.94,"Sg":1,"Ss":25,"Sn":5,"Sa":5,"Sd":0.94,"Og":1,"Os":25,"On":5,"Oa":5,"Od":0.94,"pm":5},"p":[[5,{"n":5,"e":6893}],[4,{"n":5,"e":6901}],[3,{"n":5.5,"e":6910}],[2,{"n":6,"e":6915,"g":1}],[1,{"n":3.5,"e":6926}]],"a":{"m":8,"a":9,"M":11,"n":5}}],[1317,{"n":"Bartley","f":"Kyle","fp":"DC","r":10,"c":32,"s":{"g":1,"s":17,"n":4,"a":4.25,"d":1.26,"Og":1,"Os":17,"On":4,"Oa":4.25,"Od":1.26,"pd":4},"p":[[4,{"n":4,"e":6901}],[3,{"n":6,"e":6910,"g":1}],[2,{"n":3,"e":6915}],[1,{"n":4,"e":6926}]]}],[1349,{"n":"O'Shea","f":"Dara","fp":"DC","r":8,"c":32,"s":{"s":14.5,"n":4,"a":3.63,"d":0.75,"Os":14.5,"On":4,"Oa":3.63,"Od":0.75,"pd":4},"p":[[4,{"n":4,"e":6901}],[3,{"n":4.5,"e":6910}],[2,{"n":3,"e":6915}],[1,{"n":3,"e":6926}]]}],[1394,{"n":"Ahmed Hegazi","f":"","fp":"DC","r":7,"c":32,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":5.5,"On":1,"Oa":5.5,"pd":1},"p":[[5,{"n":5.5,"e":6893}]]}],[2520,{"n":"Button","f":"David","fp":"G","r":7,"c":32}],[2532,{"n":"Peltier","f":"Lee","fp":"DL","r":7,"c":32}],[3355,{"n":"Grant","f":"Karlan","fp":"A","r":9,"c":32}],[3650,{"n":"Gallagher","f":"Conor","fp":"MD","r":1,"c":32,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[5,{"n":5,"e":6893}]]}],[3691,{"n":"Robinson","f":"Callum","fp":"A","r":10,"c":32,"s":{"g":2,"s":22,"n":5,"a":4.4,"d":1.75,"Sg":2,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.75,"Og":2,"Os":65.5,"On":15,"Oa":4.37,"Od":1.01,"pa":15},"p":[[-24,{"n":4.5,"e":4072,"s":1}],[-23,{"n":4.5,"e":4078,"s":1}],[-20,{"n":4,"e":4112}],[-16,{"n":4,"e":4154,"s":1}],[-14,{"n":4.5,"e":4174,"s":1}],[-13,{"n":5.5,"e":4185,"s":1}],[-12,{"n":4,"e":4194,"s":1}],[-10,{"n":4,"e":4217}],[-8,{"n":4.5,"e":4234}],[-7,{"n":4,"e":4238}],[5,{"n":4,"e":6893,"s":1}],[4,{"n":3.5,"e":6901}],[3,{"n":7.5,"e":6910,"g":2}],[2,{"n":3.5,"e":6915}],[1,{"n":3.5,"e":6926}]]}],[6886,{"n":"Matheus Pereira","f":"","fp":"MO","r":15,"c":32,"s":{"g":1,"s":28,"n":5,"a":5.6,"d":0.82,"Sg":1,"Ss":28,"Sn":5,"Sa":5.6,"Sd":0.82,"Og":1,"Os":28,"On":5,"Oa":5.6,"Od":0.82,"pm":5},"p":[[5,{"n":6.5,"e":6893}],[4,{"n":5,"e":6901}],[3,{"n":6,"e":6910}],[2,{"n":6,"e":6915,"g":1}],[1,{"n":4.5,"e":6926}]]}],[6888,{"n":"Furlong","f":"Darnell","fp":"DL","r":8,"c":32,"s":{"s":18,"n":4,"a":4.5,"d":1.47,"Ss":6,"Sn":1,"Sa":6,"Os":18,"On":4,"Oa":4.5,"Od":1.47,"pd":4},"p":[[5,{"n":6,"e":6893}],[3,{"n":5,"e":6910}],[2,{"n":2.5,"e":6915}],[1,{"n":4.5,"e":6926}]],"fo":[[6910,[{"t":"Y"}]]]}],[6889,{"n":"Edwards","f":"Kyle","fp":"MO","r":7,"c":32,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Os":13.5,"On":3,"Oa":4.5,"Od":0.5,"pm":1,"pa":2},"p":[[4,{"n":4,"e":6901}],[2,{"n":4.5,"e":6915,"s":1}],[1,{"n":5,"e":6926,"s":1}]]}],[6892,{"n":"Ajayi","f":"Semi","fp":"DC","r":10,"c":32,"s":{"s":14,"n":4,"a":3.5,"d":0.71,"Os":14,"On":4,"Oa":3.5,"Od":0.71,"pd":4},"p":[[4,{"n":3.5,"e":6901}],[3,{"n":4.5,"e":6910}],[2,{"n":3,"e":6915}],[1,{"n":3,"e":6926}]],"fo":[[6926,[{"t":"Y"}]]]}],[6893,{"n":"Townsend","f":"Conor","fp":"DL","r":7,"c":32,"s":{"s":13.5,"n":3,"a":4.5,"d":0.87,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.87,"Os":13.5,"On":3,"Oa":4.5,"Od":0.87,"pd":3},"p":[[5,{"n":5.5,"e":6893}],[4,{"n":4,"e":6901}],[3,{"n":4,"e":6910}]]}],[6895,{"n":"Johnstone","f":"Sam","fp":"G","r":13,"c":32,"s":{"s":24.5,"n":5,"a":4.9,"d":1.64,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.64,"Os":24.5,"On":5,"Oa":4.9,"Od":1.64,"pg":5},"p":[[5,{"n":6.5,"e":6893}],[4,{"n":5.5,"e":6901}],[3,{"n":6,"e":6910}],[2,{"n":2.5,"e":6915}],[1,{"n":4,"e":6926}]]}],[6901,{"n":"Sawyers","f":"Romaine","fp":"MO","r":10,"c":32,"s":{"s":22,"n":5,"a":4.4,"d":1.19,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.19,"Os":22,"On":5,"Oa":4.4,"Od":1.19,"pm":5},"p":[[5,{"n":5,"e":6893,"s":1}],[4,{"n":4.5,"e":6901}],[3,{"n":6,"e":6910}],[2,{"n":3,"e":6915}],[1,{"n":3.5,"e":6926}]]}],[7219,{"n":"Kipré","f":"Cédric","fp":"DC","r":7,"c":32}],[7266,{"n":"Bond","f":"Jonathan","fp":"G","r":2,"c":32}],[7328,{"n":"Ivanovic","f":"Branislav","fp":"DC","r":12,"c":32,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":6,"On":1,"Oa":6,"pd":1},"p":[[5,{"n":6,"e":6893}]]}],[7361,{"n":"Krovinovic","f":"Filip","fp":"MO","r":7,"c":32,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[5,{"n":5,"e":6893}],[4,{"n":4.5,"e":6901,"s":1}]]}],[174,{"n":"Diop","f":"Issa","fp":"DC","r":14,"c":28,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":3,"Os":136.5,"On":28,"Oa":4.88,"Od":1.03,"pd":28},"p":[[-38,{"n":5,"e":3937}],[-37,{"n":5.5,"e":3945}],[-36,{"n":5,"e":3957}],[-35,{"n":7.5,"e":3963}],[-34,{"n":4,"e":3977}],[-33,{"n":5,"e":3983}],[-32,{"n":4.5,"e":3997}],[-31,{"n":4.5,"e":4006}],[-30,{"n":3.5,"e":4017}],[-29,{"n":6,"e":4018}],[-28,{"n":6,"e":4037}],[-27,{"n":6,"e":4043,"g":1}],[-26,{"n":5,"e":4053}],[-25,{"n":5,"e":4067,"g":1}],[-24,{"n":4.5,"e":4071}],[-23,{"n":7,"e":4087,"g":1}],[-20,{"n":4.5,"e":4117}],[-18,{"n":4,"e":4137}],[-17,{"n":5,"e":4146,"s":1}],[-13,{"n":2.5,"e":4187}],[-12,{"n":4.5,"e":4188}],[-11,{"n":3.5,"e":4207}],[-10,{"n":5.5,"e":4217}],[-9,{"n":4.5,"e":4222}],[-8,{"n":5,"e":4235}],[-7,{"n":4,"e":4240}],[2,{"n":5,"e":6912}],[1,{"n":4.5,"e":6927}]],"a":{"m":20,"a":22,"M":29,"n":5}}],[620,{"n":"Lanzini","f":"Manuel","fp":"MO","r":7,"c":28,"s":{"g":1,"s":7,"n":1,"a":7,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":99,"On":20,"Oa":4.95,"Od":0.67,"pm":17,"pa":3},"p":[[-38,{"n":5,"e":3937,"s":1}],[-33,{"n":4.5,"e":3983}],[-32,{"n":5,"e":3997}],[-31,{"n":5,"e":4006,"s":1}],[-30,{"n":5,"e":4017,"s":1}],[-25,{"n":4.5,"e":4067,"s":1}],[-24,{"n":3.5,"e":4071}],[-23,{"n":4.5,"e":4087}],[-22,{"n":5.5,"e":4095}],[-21,{"n":5.5,"e":4107,"s":1}],[-20,{"n":4.5,"e":4117}],[-19,{"n":5,"e":4121,"s":1}],[-18,{"n":5,"e":4137}],[-12,{"n":5.5,"e":4188,"s":1}],[-11,{"n":5,"e":4207,"s":1}],[-10,{"n":5,"e":4217,"s":1}],[-9,{"n":4.5,"e":4222}],[-8,{"n":4.5,"e":4235}],[-7,{"n":5,"e":4240,"s":1}],[5,{"n":7,"e":6892,"g":1,"s":1}]],"fo":[[3997,[{"t":"Y"}]],[6892,[{"t":"Y"}]]]}],[632,{"n":"Antonio","f":"Michail","fp":"A","r":23,"c":28,"s":{"g":2,"s":28,"n":5,"a":5.6,"d":1.14,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":2.12,"Og":12,"Os":142,"On":26,"Oa":5.46,"Od":1.41,"pm":5,"pa":21},"p":[[3,{"n":6,"e":6911}],[-38,{"n":3,"e":3937}],[-37,{"n":5.5,"e":3945,"g":1}],[-36,{"n":7,"e":3957,"g":1}],[-35,{"n":9.5,"e":3963,"g":4}],[-34,{"n":5.5,"e":3977}],[-33,{"n":6,"e":3983,"g":1}],[-32,{"n":7,"e":3997,"g":1}],[-31,{"n":5,"e":4006}],[-30,{"n":4,"e":4017}],[-29,{"n":3.5,"e":4018}],[-28,{"n":7,"e":4037,"g":1}],[-27,{"n":5,"e":4043}],[-26,{"n":4,"e":4053}],[-25,{"n":6,"e":4067}],[-24,{"n":4,"e":4071,"s":1}],[-20,{"n":5,"e":4117,"s":1}],[-19,{"n":6,"e":4121}],[-17,{"n":5.5,"e":4146}],[-16,{"n":4,"e":4157}],[-14,{"n":5,"e":4169}],[-13,{"n":6.5,"e":4187,"g":1,"s":1}],[5,{"n":4,"e":6892}],[4,{"n":7,"e":6898,"g":1}],[2,{"n":6,"e":6912,"g":1}],[1,{"n":5,"e":6927}]],"fo":[[3937,[{"t":"Y"}]],[4017,[{"t":"Y"}]],[6892,[{"t":"Y"}]]],"a":{"m":21,"a":32,"M":94,"n":24}}],[634,{"n":"Snodgrass","f":"Robert","fp":"MO","r":11,"c":28,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":5,"Os":113,"On":21,"Oa":5.38,"Od":1.08,"pm":19,"pa":2},"p":[[-29,{"n":5,"e":4018,"s":1}],[-28,{"n":5,"e":4037,"s":1}],[-27,{"n":6,"e":4043}],[-26,{"n":4,"e":4053}],[-25,{"n":8,"e":4067,"g":2}],[-24,{"n":4,"e":4071}],[-23,{"n":6.5,"e":4087}],[-22,{"n":5,"e":4095,"s":1}],[-21,{"n":7,"e":4107}],[-20,{"n":5.5,"e":4117,"s":1}],[-19,{"n":6.5,"e":4121,"g":1}],[-18,{"n":5,"e":4137}],[-17,{"n":5,"e":4146}],[-16,{"n":4.5,"e":4157}],[-15,{"n":4.5,"e":4162}],[-14,{"n":6,"e":4169}],[-13,{"n":6,"e":4187}],[-12,{"n":3.5,"e":4188}],[-11,{"n":5,"e":4207,"g":1}],[-10,{"n":6,"e":4217,"g":1}],[5,{"n":5,"e":6892,"s":1}]]}],[653,{"n":"Dawson","f":"Craig","fp":"DC","r":10,"c":28,"s":{"Og":2,"Os":114.5,"On":23,"Oa":4.98,"Od":1.26,"pd":23},"p":[[-38,{"n":3,"e":3928}],[-37,{"n":3,"e":3946}],[-36,{"n":4,"e":3957}],[-35,{"n":7.5,"e":3966}],[-34,{"n":7,"e":3976,"g":1}],[-33,{"n":4,"e":3979}],[-32,{"n":3,"e":3996}],[-31,{"n":6,"e":3998}],[-30,{"n":6,"e":4016,"g":1}],[-27,{"n":4,"e":4044}],[-24,{"n":4,"e":4068}],[-23,{"n":5.5,"e":4086}],[-22,{"n":6,"e":4089}],[-21,{"n":5,"e":4106}],[-20,{"n":5,"e":4116,"s":1}],[-19,{"n":5,"e":4125,"s":1}],[-13,{"n":5,"e":4186}],[-12,{"n":6,"e":4192}],[-11,{"n":4,"e":4206}],[-10,{"n":6,"e":4216}],[-9,{"n":6,"e":4226}],[-8,{"n":5.5,"e":4234,"s":1}],[-7,{"n":4,"e":4244}]],"fo":[[3928,[{"t":"Y"}]],[3996,[{"t":"Y"}]]]}],[684,{"n":"Noble","f":"Mark","fp":"MD","r":9,"c":28,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Og":3,"Os":162.5,"On":32,"Oa":5.08,"Od":1.14,"pm":32},"p":[[-38,{"n":5.5,"e":3937}],[-37,{"n":6,"e":3945}],[-36,{"n":5,"e":3957}],[-35,{"n":8,"e":3963}],[-33,{"n":5,"e":3983,"s":1}],[-31,{"n":5,"e":4006}],[-30,{"n":5,"e":4017}],[-29,{"n":5,"e":4018}],[-28,{"n":5.5,"e":4037}],[-27,{"n":5.5,"e":4043}],[-26,{"n":5,"e":4053}],[-25,{"n":4,"e":4067}],[-24,{"n":5.5,"e":4071,"g":1}],[-23,{"n":6,"e":4087}],[-22,{"n":5,"e":4095}],[-21,{"n":8.5,"e":4107,"g":2}],[-19,{"n":5.5,"e":4121}],[-18,{"n":5.5,"e":4137}],[-17,{"n":6,"e":4146}],[-16,{"n":4.5,"e":4157}],[-15,{"n":3.5,"e":4162}],[-14,{"n":5,"e":4169}],[-13,{"n":5.5,"e":4187}],[-12,{"n":4.5,"e":4188}],[-11,{"n":2.5,"e":4207}],[-10,{"n":4,"e":4217}],[-9,{"n":4.5,"e":4222}],[-8,{"n":4,"e":4235}],[-7,{"n":4,"e":4240}],[4,{"n":5,"e":6898,"s":1}],[3,{"n":5,"e":6911,"s":1}],[1,{"n":4,"e":6927}]],"fo":[[4006,[{"t":"Y"}]]],"a":{"m":15,"a":18,"M":22,"n":7}}],[762,{"n":"Ogbonna","f":"Angelo","fp":"DC","r":16,"c":28,"s":{"s":25,"n":5,"a":5,"d":1.41,"Ss":25,"Sn":5,"Sa":5,"Sd":1.41,"Og":2,"Oao":1,"Os":153.5,"On":31,"Oa":4.95,"Od":1.08,"pd":31},"p":[[-38,{"n":5.5,"e":3937}],[-37,{"n":5,"e":3945}],[-36,{"n":7,"e":3957}],[-35,{"n":6,"e":3963}],[-34,{"n":5,"e":3977}],[-33,{"n":4.5,"e":3983}],[-32,{"n":5.5,"e":3997}],[-29,{"n":5,"e":4018}],[-28,{"n":6,"e":4037}],[-27,{"n":4.5,"e":4043}],[-26,{"n":5,"e":4053}],[-25,{"n":3.5,"e":4067,"a":1}],[-24,{"n":2,"e":4071}],[-23,{"n":5,"e":4087}],[-22,{"n":4.5,"e":4095}],[-21,{"n":6,"e":4107}],[-19,{"n":4,"e":4121}],[-18,{"n":4.5,"e":4137}],[-17,{"n":6,"e":4146}],[-16,{"n":4.5,"e":4157,"g":1}],[-15,{"n":3.5,"e":4162}],[-14,{"n":6.5,"e":4169}],[-13,{"n":5,"e":4187,"g":1}],[-9,{"n":5,"e":4222}],[-8,{"n":5,"e":4235}],[-7,{"n":4.5,"e":4240}],[5,{"n":3.5,"e":6892}],[4,{"n":6.5,"e":6898}],[3,{"n":6.5,"e":6911}],[2,{"n":4.5,"e":6912}],[1,{"n":4,"e":6927}]],"fo":[[6892,[{"t":"Y"}]]],"a":{"m":18,"a":20,"M":25,"n":5}}],[849,{"n":"Randolph","f":"Darren","fp":"G","r":7,"c":28,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-24,{"n":5,"e":4071}]]}],[861,{"n":"Cresswell","f":"Aaron","fp":"DL","r":19,"c":28,"s":{"s":29.5,"n":5,"a":5.9,"d":1.6,"Ss":29.5,"Sn":5,"Sa":5.9,"Sd":1.6,"Og":2,"Os":169,"On":34,"Oa":4.97,"Od":1.02,"pd":34},"p":[[-37,{"n":5,"e":3945}],[-36,{"n":6,"e":3957}],[-35,{"n":6,"e":3963}],[-34,{"n":5,"e":3977}],[-33,{"n":5,"e":3983}],[-32,{"n":5,"e":3997}],[-31,{"n":4.5,"e":4006}],[-30,{"n":4,"e":4017}],[-29,{"n":5,"e":4018}],[-28,{"n":4.5,"e":4037}],[-27,{"n":4.5,"e":4043}],[-26,{"n":4.5,"e":4053}],[-25,{"n":4,"e":4067}],[-24,{"n":4,"e":4071}],[-23,{"n":4.5,"e":4087}],[-22,{"n":5.5,"e":4095}],[-21,{"n":6,"e":4107}],[-19,{"n":4.5,"e":4121}],[-18,{"n":4.5,"e":4137}],[-17,{"n":5,"e":4146}],[-16,{"n":5,"e":4157}],[-15,{"n":4,"e":4162}],[-14,{"n":7,"e":4169,"g":1}],[-13,{"n":3.5,"e":4187}],[-12,{"n":3.5,"e":4188}],[-11,{"n":3.5,"e":4207}],[-10,{"n":5.5,"e":4217}],[-8,{"n":5,"e":4235}],[-7,{"n":5.5,"e":4240,"g":1}],[5,{"n":5.5,"e":6892}],[4,{"n":8,"e":6898}],[3,{"n":7,"e":6911}],[2,{"n":5,"e":6912}],[1,{"n":4,"e":6927}]],"fo":[[3945,[{"t":"I"}]]]}],[870,{"n":"Fabianski","f":"Lukasz","fp":"G","r":15,"c":28,"s":{"s":23,"n":5,"a":4.6,"d":1.19,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.19,"Os":120.5,"On":24,"Oa":5.02,"Od":0.94,"pg":24},"p":[[-38,{"n":4,"e":3937}],[-37,{"n":5.5,"e":3945}],[-36,{"n":5.5,"e":3957}],[-35,{"n":6.5,"e":3963}],[-34,{"n":5.5,"e":3977}],[-33,{"n":4.5,"e":3983}],[-32,{"n":6,"e":3997}],[-31,{"n":4.5,"e":4006}],[-30,{"n":5,"e":4017}],[-29,{"n":5,"e":4018}],[-28,{"n":5,"e":4037}],[-27,{"n":4,"e":4043}],[-26,{"n":6,"e":4053}],[-25,{"n":3.5,"e":4067}],[-22,{"n":5,"e":4095}],[-21,{"n":6,"e":4107}],[-20,{"n":6,"e":4117}],[-18,{"n":6,"e":4137}],[-7,{"n":4,"e":4240}],[5,{"n":4,"e":6892}],[4,{"n":5,"e":6898}],[3,{"n":6.5,"e":6911}],[2,{"n":4,"e":6912}],[1,{"n":3.5,"e":6927}]],"a":{"m":16,"a":19,"M":25,"n":5}}],[934,{"n":"Masuaku","f":"Arthur","fp":"DL","r":11,"c":28,"s":{"s":19,"n":4,"a":4.75,"d":1.26,"Ss":19,"Sn":4,"Sa":4.75,"Sd":1.26,"Os":75.5,"On":17,"Oa":4.44,"Od":0.88,"pd":16,"pm":1},"p":[[-37,{"n":5,"e":3945,"s":1}],[-35,{"n":5,"e":3963,"s":1}],[-26,{"n":3,"e":4053}],[-25,{"n":4,"e":4067,"s":1}],[-24,{"n":3.5,"e":4071}],[-23,{"n":5,"e":4087,"s":1}],[-22,{"n":4.5,"e":4095}],[-21,{"n":5,"e":4107,"s":1}],[-20,{"n":4,"e":4117}],[-18,{"n":5,"e":4137}],[-16,{"n":4.5,"e":4157,"s":1}],[-14,{"n":5,"e":4169,"s":1}],[-9,{"n":3,"e":4222}],[5,{"n":3,"e":6892}],[4,{"n":5,"e":6898}],[3,{"n":6,"e":6911}],[2,{"n":5,"e":6912}]],"fo":[[3945,[{"t":"Y"}]],[6892,[{"t":"Y"}]]]}],[1087,{"n":"Rice","f":"Declan","fp":"MD","r":23,"c":28,"s":{"s":28.5,"n":5,"a":5.7,"d":1.64,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":1.64,"Og":1,"Os":212.5,"On":37,"Oa":5.74,"Od":1.17,"pd":1,"pm":36},"p":[[-38,{"n":5.5,"e":3937}],[-37,{"n":6,"e":3945}],[-36,{"n":8,"e":3957,"g":1}],[-35,{"n":7.5,"e":3963}],[-34,{"n":4.5,"e":3977}],[-33,{"n":6,"e":3983}],[-32,{"n":6.5,"e":3997}],[-31,{"n":6.5,"e":4006}],[-30,{"n":4,"e":4017}],[-29,{"n":6,"e":4018}],[-28,{"n":6.5,"e":4037}],[-27,{"n":6,"e":4043}],[-26,{"n":5.5,"e":4053}],[-25,{"n":5,"e":4067}],[-24,{"n":4,"e":4071}],[-23,{"n":5.5,"e":4087}],[-22,{"n":6.5,"e":4095}],[-21,{"n":8,"e":4107}],[-20,{"n":5.5,"e":4117}],[-19,{"n":5,"e":4121}],[-18,{"n":6,"e":4137}],[-17,{"n":5.5,"e":4146}],[-16,{"n":5.5,"e":4157}],[-15,{"n":6,"e":4162}],[-14,{"n":7,"e":4169}],[-13,{"n":6,"e":4187}],[-12,{"n":3.5,"e":4188}],[-11,{"n":4,"e":4207}],[-10,{"n":6,"e":4217}],[-9,{"n":5,"e":4222}],[-8,{"n":4.5,"e":4235}],[-7,{"n":7,"e":4240}],[5,{"n":4,"e":6892}],[4,{"n":7,"e":6898}],[3,{"n":7.5,"e":6911}],[2,{"n":6,"e":6912}],[1,{"n":4,"e":6927}]],"fo":[[3997,[{"t":"Y"}]]],"a":{"m":22,"a":24,"M":33,"n":10}}],[1130,{"n":"Bowen","f":"Jarrod","fp":"A","r":15,"c":28,"s":{"g":3,"s":29.5,"n":5,"a":5.9,"d":1.95,"Sg":3,"Ss":29.5,"Sn":5,"Sa":5.9,"Sd":1.95,"Og":4,"Os":105,"On":18,"Oa":5.83,"Od":1.4,"pm":16,"pa":2},"p":[[-38,{"n":4,"e":3937}],[-37,{"n":6.5,"e":3945}],[-36,{"n":7,"e":3957}],[-35,{"n":7,"e":3963}],[-34,{"n":5.5,"e":3977}],[-33,{"n":5.5,"e":3983}],[-32,{"n":7,"e":3997}],[-31,{"n":5.5,"e":4006}],[-30,{"n":4.5,"e":4017}],[-29,{"n":6,"e":4018}],[-28,{"n":8,"e":4037,"g":1}],[-27,{"n":4.5,"e":4043,"s":1}],[-26,{"n":4.5,"e":4053,"s":1}],[5,{"n":4.5,"e":6892}],[4,{"n":8,"e":6898,"g":1}],[3,{"n":8,"e":6911,"g":2}],[2,{"n":5,"e":6912}],[1,{"n":4,"e":6927}]],"fo":[[3945,[{"t":"I"}]]],"a":{"m":11,"a":21,"M":36,"n":9}}],[1627,{"n":"Fornals","f":"Pablo","fp":"MO","r":17,"c":28,"s":{"g":1,"s":29,"n":5,"a":5.8,"d":1.44,"Sg":1,"Ss":29,"Sn":5,"Sa":5.8,"Sd":1.44,"Og":3,"Os":188.5,"On":35,"Oa":5.39,"Od":0.99,"pm":34,"pa":1},"p":[[-38,{"n":5,"e":3937}],[-37,{"n":6,"e":3945}],[-36,{"n":6,"e":3957}],[-35,{"n":7,"e":3963}],[-34,{"n":5,"e":3977}],[-33,{"n":4.5,"e":3983}],[-32,{"n":5.5,"e":3997}],[-31,{"n":4.5,"e":4006}],[-30,{"n":4,"e":4017}],[-29,{"n":5,"e":4018}],[-28,{"n":7.5,"e":4037}],[-27,{"n":5.5,"e":4043,"g":1,"s":1}],[-25,{"n":5,"e":4067,"s":1}],[-24,{"n":5,"e":4071,"s":1}],[-23,{"n":5,"e":4087}],[-22,{"n":5,"e":4095,"s":1}],[-21,{"n":7,"e":4107}],[-20,{"n":7,"e":4117,"g":1}],[-19,{"n":5,"e":4121}],[-18,{"n":5,"e":4137,"s":1}],[-17,{"n":6.5,"e":4146}],[-16,{"n":4.5,"e":4157}],[-15,{"n":4.5,"e":4162}],[-14,{"n":5.5,"e":4169}],[-13,{"n":5,"e":4187,"s":1}],[-12,{"n":4,"e":4188}],[-10,{"n":5.5,"e":4217,"s":1}],[-9,{"n":4.5,"e":4222}],[-8,{"n":4.5,"e":4235,"s":1}],[-7,{"n":5.5,"e":4240}],[5,{"n":5,"e":6892}],[4,{"n":8,"e":6898,"g":1}],[3,{"n":6.5,"e":6911}],[2,{"n":5,"e":6912}],[1,{"n":4.5,"e":6927}]],"fo":[[4006,[{"t":"Y"}]],[6898,[{"t":"Y"}]]],"a":{"m":14,"a":16,"M":19,"n":7}}],[2073,{"n":"Holland","f":"Nathan","fp":"MO","r":2,"c":28,"s":{"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[-16,{"n":5.5,"e":4157,"s":1}],[-15,{"n":4.5,"e":4162,"s":1}]]}],[2221,{"n":"Johnson","f":"Ben","fp":"DL","r":5,"c":28,"s":{"s":5,"n":1,"a":5,"Os":19.5,"On":4,"Oa":4.88,"Od":0.25,"pd":4},"p":[[-38,{"n":5,"e":3937}],[-37,{"n":4.5,"e":3945}],[-36,{"n":5,"e":3957}],[3,{"n":5,"e":6911,"s":1}]]}],[2230,{"n":"Trott","f":"Nathan","fp":"G","r":1,"c":28}],[2498,{"n":"Fredericks","f":"Ryan","fp":"DL","r":10,"c":28,"s":{"s":15,"n":3,"a":5,"d":0.87,"Os":116.5,"On":24,"Oa":4.85,"Od":1.13,"pd":24},"p":[[-38,{"n":5,"e":3937}],[-35,{"n":7,"e":3963}],[-34,{"n":5,"e":3977}],[-33,{"n":4,"e":3983}],[-32,{"n":6,"e":3997}],[-31,{"n":4,"e":4006}],[-30,{"n":4.5,"e":4017,"s":1}],[-26,{"n":5,"e":4053}],[-25,{"n":4.5,"e":4067}],[-21,{"n":7.5,"e":4107}],[-20,{"n":3.5,"e":4117}],[-17,{"n":6,"e":4146}],[-16,{"n":3.5,"e":4157}],[-15,{"n":4.5,"e":4162}],[-14,{"n":6,"e":4169}],[-13,{"n":3.5,"e":4187}],[-12,{"n":4,"e":4188}],[-11,{"n":4.5,"e":4207,"s":1}],[-9,{"n":3,"e":4222}],[-8,{"n":5.5,"e":4235}],[-7,{"n":5,"e":4240}],[3,{"n":5.5,"e":6911}],[2,{"n":5.5,"e":6912}],[1,{"n":4,"e":6927}]],"fo":[[6911,[{"t":"I"}]],[3937,[{"t":"Y"}]],[3977,[{"t":"Y"}]],[6912,[{"t":"Y"}]],[6927,[{"t":"Y"}]]]}],[2514,{"n":"Yarmolenko","f":"Andriy","fp":"A","r":7,"c":28,"s":{"s":13.5,"n":3,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":3,"Os":100.5,"On":21,"Oa":4.79,"Od":1.09,"pm":6,"pa":15},"p":[[-38,{"n":6,"e":3937,"g":1,"s":1}],[-37,{"n":4.5,"e":3945,"s":1}],[-36,{"n":4.5,"e":3957,"s":1}],[-35,{"n":4.5,"e":3963,"s":1}],[-34,{"n":5.5,"e":3977}],[-33,{"n":5,"e":3983,"s":1}],[-32,{"n":6,"e":3997,"g":1,"s":1}],[-30,{"n":4.5,"e":4017,"s":1}],[-17,{"n":4,"e":4146,"s":1}],[-15,{"n":4.5,"e":4162,"s":1}],[-14,{"n":4,"e":4169,"s":1}],[-13,{"n":4,"e":4187}],[-12,{"n":3.5,"e":4188,"s":1}],[-11,{"n":3,"e":4207}],[-10,{"n":7,"e":4217}],[-9,{"n":4,"e":4222,"s":1}],[-8,{"n":5,"e":4235}],[-7,{"n":7.5,"e":4240,"g":1}],[5,{"n":4.5,"e":6892,"s":1}],[2,{"n":4.5,"e":6912,"s":1}],[1,{"n":4.5,"e":6927,"s":1}]],"fo":[[6927,[{"t":"Y"}]]]}],[2573,{"n":"Balbuena","f":"Fabián","fp":"DC","r":10,"c":28,"s":{"g":1,"s":17.5,"n":3,"a":5.83,"d":0.29,"Sg":1,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":0.29,"Og":2,"Os":87,"On":18,"Oa":4.83,"Od":1.2,"pd":18},"p":[[-36,{"n":5,"e":3957,"s":1}],[-35,{"n":5,"e":3963,"s":1}],[-32,{"n":5,"e":3997,"s":1}],[-31,{"n":4,"e":4006}],[-22,{"n":4,"e":4095}],[-21,{"n":6.5,"e":4107}],[-20,{"n":5.5,"e":4117}],[-19,{"n":3.5,"e":4121}],[-17,{"n":5.5,"e":4146}],[-16,{"n":4,"e":4157}],[-15,{"n":3,"e":4162}],[-14,{"n":7,"e":4169}],[-12,{"n":2.5,"e":4188}],[-11,{"n":4.5,"e":4207,"g":1}],[-10,{"n":4.5,"e":4217}],[5,{"n":5.5,"e":6892,"g":1}],[4,{"n":6,"e":6898}],[3,{"n":6,"e":6911}]]}],[2885,{"n":"Coventry","f":"Conor","fp":"MD","r":1,"c":28}],[3744,{"n":"Martin","f":"David","fp":"G","r":1,"c":28,"s":{"Os":27,"On":5,"Oa":5.4,"Od":1.95,"pg":5},"p":[[-22,{"n":4,"e":4095,"s":1}],[-17,{"n":6,"e":4146}],[-16,{"n":3,"e":4157}],[-15,{"n":6,"e":4162}],[-14,{"n":8,"e":4169}]]}],[5449,{"n":"Haller","f":"Sébastien","fp":"A","r":12,"c":28,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":0.85,"Og":5,"Os":150.5,"On":31,"Oa":4.85,"Od":1.04,"pa":31},"p":[[-38,{"n":4.5,"e":3937,"s":1}],[-37,{"n":4.5,"e":3945,"s":1}],[-36,{"n":5,"e":3957,"s":1}],[-35,{"n":4.5,"e":3963,"s":1}],[-34,{"n":4.5,"e":3977,"s":1}],[-29,{"n":5,"e":4018}],[-28,{"n":7.5,"e":4037,"g":1}],[-27,{"n":5,"e":4043,"s":1}],[-25,{"n":4.5,"e":4067}],[-24,{"n":5,"e":4071}],[-23,{"n":4,"e":4087}],[-22,{"n":4,"e":4095}],[-21,{"n":7,"e":4107,"g":1}],[-20,{"n":4,"e":4117}],[-19,{"n":3.5,"e":4121}],[-18,{"n":4.5,"e":4137}],[-17,{"n":7,"e":4146,"g":1}],[-16,{"n":4.5,"e":4157,"s":1}],[-15,{"n":4,"e":4162}],[-14,{"n":4.5,"e":4169,"s":1}],[-13,{"n":4,"e":4187}],[-12,{"n":3,"e":4188}],[-11,{"n":6,"e":4207}],[-10,{"n":4.5,"e":4217}],[-9,{"n":4.5,"e":4222}],[-8,{"n":6,"e":4235,"g":1}],[-7,{"n":6,"e":4240}],[4,{"n":4.5,"e":6898,"s":1}],[3,{"n":6,"e":6911,"g":1,"s":1}],[2,{"n":4,"e":6912,"s":1}],[1,{"n":5,"e":6927,"s":1}]],"a":{"m":16,"a":21,"M":36,"n":9}}],[5986,{"n":"Gonçalo Cardoso","f":"","fp":"DC","r":1,"c":28}],[6470,{"n":"Anang","f":"Joseph","fp":"G","r":1,"c":28}],[6545,{"n":"Bernardo Rosa","f":"","fp":"MD","r":1,"c":28}],[6550,{"n":"Soucek","f":"Tomas","fp":"MD","r":20,"c":28,"s":{"s":28,"n":5,"a":5.6,"d":1.34,"Ss":28,"Sn":5,"Sa":5.6,"Sd":1.34,"Og":3,"Oao":1,"Os":93.5,"On":17,"Oa":5.5,"Od":1.24,"pm":17},"p":[[-38,{"n":5.5,"e":3937}],[-37,{"n":6,"e":3945}],[-36,{"n":7,"e":3957,"g":1}],[-35,{"n":6.5,"e":3963}],[-34,{"n":5.5,"e":3977}],[-33,{"n":6,"e":3983,"g":1}],[-32,{"n":7.5,"e":3997,"g":1}],[-31,{"n":3,"e":4006,"a":1}],[-30,{"n":4.5,"e":4017}],[-29,{"n":4.5,"e":4018,"s":1}],[-27,{"n":5,"e":4043}],[-26,{"n":4.5,"e":4053}],[5,{"n":5,"e":6892}],[4,{"n":7,"e":6898}],[3,{"n":7,"e":6911}],[2,{"n":4,"e":6912}],[1,{"n":5,"e":6927}]],"fo":[[6892,[{"t":"Y"}]]]}],[6696,{"n":"Lewis","f":"Alfie","fp":"MO","r":1,"c":28}],[7323,{"n":"Ashby","f":"Harrison","fp":"DL","r":1,"c":28}],[7324,{"n":"Alese","f":"Ajibola","fp":"DC","r":1,"c":28}],[7340,{"n":"Longelo","f":"Emmanuel","fp":"A","r":1,"c":28}],[7406,{"n":"Coufal","f":"Vladimir","fp":"DL","r":8,"c":28,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":4,"On":1,"Oa":4,"pd":1},"p":[[5,{"n":4,"e":6892}]]}],[7454,{"n":"Benrahma","f":"Saïd","fp":"MO","r":12,"c":28}],[75,{"n":"João Moutinho","f":"","fp":"MO","r":16,"c":69,"s":{"s":26,"n":5,"a":5.2,"d":1.48,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.48,"Og":1,"Os":204.5,"On":37,"Oa":5.53,"Od":0.93,"pm":37},"p":[[-38,{"n":5.5,"e":3930,"s":1}],[-37,{"n":6,"e":3947}],[-36,{"n":5.5,"e":3949}],[-35,{"n":5,"e":3967,"s":1}],[-34,{"n":5,"e":3975}],[-33,{"n":5,"e":3987}],[-32,{"n":6.5,"e":3989}],[-31,{"n":5,"e":4007}],[-30,{"n":5.5,"e":4017}],[-29,{"n":5,"e":4027}],[-28,{"n":5.5,"e":4035}],[-27,{"n":5,"e":4047}],[-26,{"n":5.5,"e":4057,"s":1}],[-25,{"n":7,"e":4063}],[-24,{"n":4,"e":4073}],[-23,{"n":5,"e":4085}],[-22,{"n":5.5,"e":4097}],[-21,{"n":6,"e":4106}],[-20,{"n":5,"e":4111}],[-19,{"n":6.5,"e":4127}],[-18,{"n":5,"e":4134}],[-17,{"n":5,"e":4147}],[-16,{"n":5,"e":4150}],[-15,{"n":7.5,"e":4162}],[-14,{"n":5.5,"e":4174}],[-13,{"n":7,"e":4180,"g":1}],[-12,{"n":6,"e":4195}],[-11,{"n":7,"e":4198}],[-10,{"n":4.5,"e":4213}],[-9,{"n":4.5,"e":4227}],[-8,{"n":6.5,"e":4231}],[-7,{"n":6,"e":4244}],[5,{"n":6,"e":7498}],[4,{"n":5,"e":6902,"s":1}],[3,{"n":3,"e":6911}],[2,{"n":5,"e":6920}],[1,{"n":7,"e":6929}]],"fo":[[4007,[{"t":"Y"}]],[4017,[{"t":"Y"}]],[7498,[{"t":"Y"}]]],"a":{"m":17,"a":23,"M":33,"n":7}}],[204,{"n":"Marçal","f":"","fp":"DL","r":10,"c":69,"s":{"s":16,"n":3,"a":5.33,"d":0.58,"Ss":5,"Sn":1,"Sa":5,"Oao":2,"Os":75,"On":15,"Oa":5,"Od":1.16,"pd":14,"pm":1},"p":[[-26,{"n":5.5,"e":3672}],[-27,{"n":6,"e":3661}],[-25,{"n":5,"e":3682}],[-24,{"n":3,"e":3695,"a":1}],[-22,{"n":3.5,"e":3713}],[-21,{"n":7.5,"e":3720}],[-20,{"n":5.5,"e":3730}],[-14,{"n":4,"e":3793}],[-10,{"n":6,"e":3830}],[-9,{"n":4,"e":3846}],[-8,{"n":4,"e":3850,"a":1}],[5,{"n":5,"e":7498,"s":1}],[2,{"n":5,"e":6188}],[2,{"n":5,"e":6920}],[1,{"n":6,"e":6929}]],"fo":[[6920,[{"t":"I"}]],[6929,[{"t":"Y"}]]],"a":{"m":10,"a":12,"M":18,"n":5}}],[1704,{"n":"Nélson Semedo","f":"","fp":"DL","r":13,"c":69,"s":{"s":15,"n":3,"a":5,"d":1.32,"Ss":15,"Sn":3,"Sa":5,"Sd":1.32,"Og":1,"Os":153,"On":30,"Oa":5.1,"Od":0.83,"pd":27,"pm":3},"p":[[-37,{"n":4.5,"e":4319}],[-36,{"n":6.5,"e":4335}],[-35,{"n":4.5,"e":4339}],[-32,{"n":4,"e":4370}],[-31,{"n":5,"e":4379}],[-29,{"n":5,"e":4399,"s":1}],[-28,{"n":5,"e":4413,"s":1}],[-26,{"n":4,"e":4434}],[-25,{"n":5,"e":4440}],[-23,{"n":4,"e":4465}],[-22,{"n":5.5,"e":4469}],[-19,{"n":5,"e":4501,"s":1}],[-13,{"n":5,"e":4561}],[-12,{"n":4,"e":4572}],[-9,{"n":5,"e":4601,"s":1}],[-7,{"n":5,"e":4623,"s":1}],[-38,{"n":6,"e":4308,"g":1,"s":1}],[-34,{"n":5,"e":4357}],[-33,{"n":4.5,"e":4359}],[-30,{"n":6.5,"e":4396}],[-27,{"n":5.5,"e":4420}],[-18,{"n":5,"e":4508,"s":1}],[-17,{"n":5,"e":4525,"s":1}],[-11,{"n":6,"e":4580}],[-10,{"n":4.5,"e":4589}],[-8,{"n":7,"e":4608}],[-6,{"n":6,"e":4628}],[5,{"n":6,"e":7498}],[4,{"n":5.5,"e":6902}],[3,{"n":3.5,"e":6911}]],"fo":[[6902,[{"t":"I"}]],[4319,[{"t":"Y"}]]]}],[1710,{"n":"Jonny","f":"","fp":"DL","r":7,"c":69,"s":{"Og":2,"Os":147,"On":30,"Oa":4.9,"Od":0.71,"pd":2,"pm":28},"p":[[-38,{"n":3,"e":3930}],[-37,{"n":5.5,"e":3947,"g":1}],[-36,{"n":5,"e":3949,"s":1}],[-35,{"n":5.5,"e":3967}],[-34,{"n":5,"e":3975}],[-33,{"n":4,"e":3987}],[-32,{"n":6,"e":3989}],[-31,{"n":5,"e":4007}],[-30,{"n":5.5,"e":4017}],[-27,{"n":6,"e":4047}],[-26,{"n":5,"e":4057}],[-25,{"n":4,"e":4063}],[-24,{"n":4,"e":4073}],[-23,{"n":5,"e":4085}],[-22,{"n":5,"e":4097}],[-21,{"n":4,"e":4106}],[-20,{"n":4.5,"e":4111}],[-19,{"n":4.5,"e":4127}],[-18,{"n":4.5,"e":4134}],[-17,{"n":4,"e":4147}],[-16,{"n":5,"e":4150}],[-15,{"n":6,"e":4162}],[-14,{"n":5,"e":4174}],[-13,{"n":5,"e":4180}],[-12,{"n":4.5,"e":4195}],[-11,{"n":5,"e":4198}],[-10,{"n":5.5,"e":4213,"g":1}],[-9,{"n":5,"e":4227}],[-8,{"n":5,"e":4231,"s":1}],[-7,{"n":6,"e":4244}]]}],[2485,{"n":"Coady","f":"Conor","fp":"DC","r":12,"c":69,"s":{"s":23,"n":5,"a":4.6,"d":1.64,"Ss":23,"Sn":5,"Sa":4.6,"Sd":1.64,"Os":192,"On":37,"Oa":5.19,"Od":0.85,"pd":37},"p":[[-38,{"n":4,"e":3930}],[-37,{"n":5.5,"e":3947}],[-36,{"n":5.5,"e":3949}],[-35,{"n":6,"e":3967}],[-34,{"n":5,"e":3975}],[-33,{"n":4,"e":3987}],[-32,{"n":5.5,"e":3989}],[-31,{"n":5.5,"e":4007}],[-30,{"n":5.5,"e":4017}],[-29,{"n":6,"e":4027}],[-28,{"n":5,"e":4035}],[-27,{"n":6,"e":4047}],[-26,{"n":5.5,"e":4057}],[-25,{"n":6,"e":4063}],[-24,{"n":4,"e":4073}],[-23,{"n":5,"e":4085}],[-22,{"n":6,"e":4097}],[-21,{"n":4.5,"e":4106}],[-20,{"n":5.5,"e":4111}],[-19,{"n":5.5,"e":4127}],[-18,{"n":5,"e":4134}],[-17,{"n":4.5,"e":4147}],[-16,{"n":4.5,"e":4150}],[-15,{"n":6,"e":4162}],[-14,{"n":5,"e":4174}],[-13,{"n":5.5,"e":4180}],[-12,{"n":5.5,"e":4195}],[-11,{"n":5.5,"e":4198}],[-10,{"n":5,"e":4213}],[-9,{"n":4.5,"e":4227}],[-8,{"n":6.5,"e":4231}],[-7,{"n":6,"e":4244}],[5,{"n":5.5,"e":7498}],[4,{"n":5.5,"e":6902}],[3,{"n":2,"e":6911}],[2,{"n":4,"e":6920}],[1,{"n":6,"e":6929}]],"fo":[[3947,[{"t":"Y"}]],[3987,[{"t":"Y"}]],[6911,[{"t":"Y"}]]]}],[2490,{"n":"Boly","f":"Willy","fp":"DC","r":10,"c":69,"s":{"s":23.5,"n":5,"a":4.7,"d":1.44,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.44,"Os":118.5,"On":22,"Oa":5.39,"Od":1.14,"pd":22},"p":[[-38,{"n":4.5,"e":3930}],[-37,{"n":6,"e":3947}],[-36,{"n":7,"e":3949}],[-35,{"n":7,"e":3967}],[-34,{"n":4.5,"e":3975}],[-33,{"n":4,"e":3987}],[-32,{"n":5,"e":3989}],[-31,{"n":5.5,"e":4007}],[-30,{"n":5.5,"e":4017}],[-29,{"n":5.5,"e":4027}],[-28,{"n":4.5,"e":4035}],[-27,{"n":6,"e":4047}],[-26,{"n":6,"e":4057}],[-25,{"n":5.5,"e":4063}],[-9,{"n":4.5,"e":4227}],[-8,{"n":7,"e":4231}],[-7,{"n":7,"e":4244}],[5,{"n":5.5,"e":7498}],[4,{"n":6,"e":6902}],[3,{"n":2.5,"e":6911}],[2,{"n":4,"e":6920}],[1,{"n":5.5,"e":6929}]],"a":{"m":12,"a":16,"M":24,"n":19}}],[2533,{"n":"Rui Patrício","f":"","fp":"G","r":20,"c":69,"s":{"s":27,"n":5,"a":5.4,"d":0.89,"Ss":27,"Sn":5,"Sa":5.4,"Sd":0.89,"Os":204,"On":37,"Oa":5.51,"Od":0.98,"pg":37},"p":[[-38,{"n":4,"e":3930}],[-37,{"n":6,"e":3947}],[-36,{"n":5,"e":3949}],[-35,{"n":6.5,"e":3967}],[-34,{"n":5,"e":3975}],[-33,{"n":4.5,"e":3987}],[-32,{"n":6,"e":3989}],[-31,{"n":5.5,"e":4007}],[-30,{"n":6.5,"e":4017}],[-29,{"n":5.5,"e":4027}],[-28,{"n":5.5,"e":4035}],[-27,{"n":6.5,"e":4047}],[-26,{"n":6,"e":4057}],[-25,{"n":6.5,"e":4063}],[-24,{"n":5.5,"e":4073}],[-23,{"n":5,"e":4085}],[-22,{"n":4,"e":4097}],[-21,{"n":4,"e":4106}],[-20,{"n":5,"e":4111}],[-19,{"n":6,"e":4127}],[-18,{"n":7,"e":4134}],[-17,{"n":5,"e":4147}],[-16,{"n":3,"e":4150}],[-15,{"n":7,"e":4162}],[-14,{"n":6,"e":4174}],[-13,{"n":5,"e":4180}],[-12,{"n":5.5,"e":4195}],[-11,{"n":5.5,"e":4198}],[-10,{"n":4.5,"e":4213}],[-9,{"n":6,"e":4227}],[-8,{"n":6.5,"e":4231}],[-7,{"n":7.5,"e":4244}],[5,{"n":6,"e":7498}],[4,{"n":6,"e":6902}],[3,{"n":4,"e":6911}],[2,{"n":5,"e":6920}],[1,{"n":6,"e":6929}]]}],[2557,{"n":"Ruddy","f":"John","fp":"G","r":7,"c":69}],[2568,{"n":"Rúben Neves","f":"","fp":"MD","r":16,"c":69,"s":{"s":25,"n":5,"a":5,"d":0.71,"Ss":25,"Sn":5,"Sa":5,"Sd":0.71,"Og":1,"Os":206,"On":37,"Oa":5.57,"Od":0.9,"pm":37},"p":[[-38,{"n":5,"e":3930}],[-37,{"n":7,"e":3947}],[-36,{"n":5.5,"e":3949}],[-35,{"n":8,"e":3967}],[-34,{"n":5.5,"e":3975}],[-33,{"n":5,"e":3987}],[-32,{"n":6,"e":3989}],[-31,{"n":5,"e":4007}],[-30,{"n":6,"e":4017}],[-29,{"n":5,"e":4027}],[-28,{"n":5.5,"e":4035}],[-27,{"n":7,"e":4047}],[-26,{"n":6,"e":4057}],[-25,{"n":6.5,"e":4063}],[-24,{"n":5.5,"e":4073}],[-23,{"n":5.5,"e":4085}],[-22,{"n":4.5,"e":4097}],[-21,{"n":6,"e":4106,"s":1}],[-20,{"n":4.5,"e":4111}],[-19,{"n":7,"e":4127}],[-18,{"n":5,"e":4134}],[-17,{"n":5,"e":4147}],[-16,{"n":4.5,"e":4150}],[-15,{"n":5,"e":4162}],[-14,{"n":5.5,"e":4174}],[-13,{"n":6,"e":4180}],[-12,{"n":7,"e":4195,"g":1}],[-11,{"n":5,"e":4198}],[-10,{"n":5.5,"e":4213}],[-9,{"n":4.5,"e":4227}],[-8,{"n":7,"e":4231}],[-7,{"n":5,"e":4244,"s":1}],[5,{"n":5,"e":7498,"s":1}],[4,{"n":5,"e":6902}],[3,{"n":4,"e":6911}],[2,{"n":6,"e":6920}],[1,{"n":5,"e":6929,"s":1}]],"fo":[[3989,[{"t":"Y"}]],[4007,[{"t":"Y"}]],[6902,[{"t":"Y"}]]]}],[2597,{"n":"Saïss","f":"Romain","fp":"DC","r":14,"c":69,"s":{"g":1,"s":24.5,"n":5,"a":4.9,"d":1.92,"Sg":1,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.92,"Og":2,"Os":175.5,"On":34,"Oa":5.16,"Od":1.08,"pd":31,"pm":3},"p":[[-38,{"n":4,"e":3930}],[-36,{"n":5.5,"e":3949}],[-35,{"n":6,"e":3967}],[-34,{"n":4.5,"e":3975}],[-33,{"n":3.5,"e":3987}],[-32,{"n":5,"e":3989}],[-31,{"n":6.5,"e":4007}],[-30,{"n":6,"e":4017}],[-29,{"n":5.5,"e":4027}],[-28,{"n":5,"e":4035}],[-27,{"n":7,"e":4047}],[-26,{"n":5,"e":4057}],[-25,{"n":6,"e":4063}],[-24,{"n":4,"e":4073}],[-23,{"n":4.5,"e":4085}],[-22,{"n":4.5,"e":4097}],[-21,{"n":5,"e":4106}],[-20,{"n":5,"e":4111,"s":1}],[-19,{"n":5,"e":4127}],[-18,{"n":7,"e":4134,"g":1}],[-17,{"n":4,"e":4147}],[-16,{"n":4,"e":4150}],[-15,{"n":6.5,"e":4162}],[-13,{"n":5.5,"e":4180}],[-12,{"n":5,"e":4195}],[-11,{"n":5,"e":4198}],[-10,{"n":5.5,"e":4213}],[-8,{"n":5,"e":4231}],[-7,{"n":6,"e":4244}],[5,{"n":5.5,"e":7498}],[4,{"n":5.5,"e":6902}],[3,{"n":3,"e":6911}],[2,{"n":3,"e":6920}],[1,{"n":7.5,"e":6929,"g":1}]],"fo":[[3987,[{"t":"Y"}]],[4007,[{"t":"Y"}]]],"a":{"m":15,"a":16,"M":21,"n":12}}],[2600,{"n":"Jiménez","f":"Raúl","fp":"A","r":32,"c":69,"s":{"g":3,"ao":1,"s":26,"n":5,"a":5.2,"d":1.75,"Sg":3,"Sao":1,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.75,"Og":18,"Oao":1,"Os":208,"On":37,"Oa":5.62,"Od":1.27,"pa":37},"p":[[-38,{"n":3,"e":3930}],[-37,{"n":6,"e":3947}],[-36,{"n":6,"e":3949,"g":1}],[-35,{"n":6,"e":3967,"g":1}],[-34,{"n":4.5,"e":3975}],[-33,{"n":4.5,"e":3987}],[-32,{"n":5,"e":3989}],[-31,{"n":6,"e":4007,"g":1}],[-30,{"n":7.5,"e":4017,"g":1}],[-29,{"n":4,"e":4027}],[-28,{"n":7,"e":4035,"g":1}],[-27,{"n":6,"e":4047,"g":1}],[-26,{"n":5,"e":4057}],[-25,{"n":5,"e":4063}],[-24,{"n":6.5,"e":4073,"g":1}],[-23,{"n":7,"e":4085,"g":2}],[-22,{"n":4,"e":4097}],[-21,{"n":3.5,"e":4106}],[-20,{"n":4.5,"e":4111,"s":1}],[-19,{"n":7.5,"e":4127,"g":1}],[-18,{"n":6.5,"e":4134,"g":1}],[-17,{"n":5,"e":4147}],[-16,{"n":6,"e":4150}],[-15,{"n":6,"e":4162}],[-14,{"n":6.5,"e":4174}],[-13,{"n":6.5,"e":4180,"g":1}],[-12,{"n":7,"e":4195,"g":1}],[-11,{"n":7.5,"e":4198,"g":1}],[-10,{"n":5.5,"e":4213}],[-9,{"n":5,"e":4227,"g":1}],[-8,{"n":7,"e":4231}],[-7,{"n":5,"e":4244}],[5,{"n":6,"e":7498,"g":1}],[4,{"n":4.5,"e":6902}],[3,{"n":2.5,"e":6911,"a":1}],[2,{"n":6,"e":6920,"g":1}],[1,{"n":7,"e":6929,"g":1}]],"a":{"m":33,"a":57,"M":93,"n":13}}],[2646,{"n":"Aït-Nouri","f":"Rayan","fp":"DL","r":6,"c":69,"s":{"Os":67,"On":14,"Oa":4.79,"Od":0.87,"pd":14},"p":[[6,{"n":3,"e":6154}],[4,{"n":5,"e":6173,"s":1}],[-20,{"n":5.5,"e":3729}],[-19,{"n":5,"e":3742}],[-16,{"n":4,"e":3769}],[-14,{"n":3.5,"e":3789}],[-13,{"n":5.5,"e":3805}],[-12,{"n":5,"e":3809}],[-11,{"n":5.5,"e":3821}],[-8,{"n":4.5,"e":3848}],[-18,{"n":5.5,"e":3749}],[-17,{"n":5,"e":3766,"s":1}],[-9,{"n":4,"e":3844}],[5,{"n":6,"e":6158}]],"a":{"m":8,"a":10,"M":21,"n":16}}],[2762,{"n":"Dendoncker","f":"Leander","fp":"MD","r":16,"c":69,"s":{"s":23.5,"n":4,"a":5.88,"d":0.75,"Ss":12,"Sn":2,"Sa":6,"Sd":0.71,"Og":4,"Os":185,"On":36,"Oa":5.14,"Od":1.02,"pd":13,"pm":23},"p":[[-38,{"n":4.5,"e":3930}],[-37,{"n":5.5,"e":3947}],[-36,{"n":5,"e":3949,"s":1}],[-35,{"n":7,"e":3967,"g":1}],[-34,{"n":4.5,"e":3975,"s":1}],[-33,{"n":4,"e":3987}],[-32,{"n":6.5,"e":3989,"g":1}],[-31,{"n":5,"e":4007,"s":1}],[-30,{"n":4.5,"e":4017}],[-29,{"n":5,"e":4027}],[-28,{"n":4.5,"e":4035,"s":1}],[-27,{"n":6,"e":4047}],[-26,{"n":4.5,"e":4057}],[-25,{"n":5,"e":4063,"s":1}],[-24,{"n":4.5,"e":4073}],[-23,{"n":5.5,"e":4085}],[-22,{"n":6,"e":4097,"g":1}],[-21,{"n":3.5,"e":4106}],[-20,{"n":4,"e":4111}],[-19,{"n":4,"e":4127}],[-18,{"n":5,"e":4134}],[-17,{"n":2.5,"e":4147}],[-16,{"n":5,"e":4150}],[-15,{"n":7.5,"e":4162,"g":1}],[-14,{"n":5.5,"e":4174}],[-13,{"n":5.5,"e":4180}],[-12,{"n":5.5,"e":4195}],[-11,{"n":6,"e":4198}],[-10,{"n":4.5,"e":4213}],[-9,{"n":4,"e":4227}],[-8,{"n":6,"e":4231}],[-7,{"n":5.5,"e":4244}],[5,{"n":6.5,"e":7498}],[4,{"n":5.5,"e":6902}],[2,{"n":5,"e":6920,"s":1}],[1,{"n":6.5,"e":6929}]],"fo":[[3930,[{"t":"Y"}]]]}],[2798,{"n":"Traoré","f":"Adama","fp":"A","r":15,"c":69,"s":{"s":25,"n":5,"a":5,"d":0.61,"Ss":25,"Sn":5,"Sa":5,"Sd":0.61,"Og":4,"Os":206,"On":37,"Oa":5.57,"Od":1.13,"pd":1,"pm":5,"pa":31},"p":[[-38,{"n":3.5,"e":3930,"s":1}],[-37,{"n":6,"e":3947}],[-36,{"n":6.5,"e":3949}],[-35,{"n":4.5,"e":3967,"s":1}],[-34,{"n":4,"e":3975}],[-33,{"n":4,"e":3987}],[-32,{"n":5,"e":3989,"s":1}],[-31,{"n":5.5,"e":4007}],[-30,{"n":6,"e":4017,"s":1}],[-29,{"n":5,"e":4027,"s":1}],[-28,{"n":5,"e":4035}],[-27,{"n":4,"e":4047,"s":1}],[-26,{"n":5.5,"e":4057,"s":1}],[-25,{"n":5,"e":4063}],[-24,{"n":6.5,"e":4073}],[-23,{"n":7,"e":4085}],[-22,{"n":5,"e":4097}],[-21,{"n":5.5,"e":4106}],[-20,{"n":5.5,"e":4111,"s":1}],[-19,{"n":8,"e":4127,"g":1}],[-18,{"n":6.5,"e":4134}],[-17,{"n":7,"e":4147,"g":1}],[-16,{"n":6,"e":4150}],[-15,{"n":6,"e":4162}],[-14,{"n":5,"e":4174}],[-13,{"n":7,"e":4180}],[-12,{"n":7,"e":4195}],[-11,{"n":5,"e":4198}],[-10,{"n":4.5,"e":4213}],[-9,{"n":5.5,"e":4227}],[-8,{"n":8.5,"e":4231,"g":2}],[-7,{"n":6,"e":4244}],[5,{"n":5,"e":7498,"s":1}],[4,{"n":4.5,"e":6902,"s":1}],[3,{"n":4.5,"e":6911}],[2,{"n":5,"e":6920}],[1,{"n":6,"e":6929}]],"fo":[[3947,[{"t":"Y"}]]],"a":{"m":21,"a":29,"M":40,"n":6}}],[2978,{"n":"Kilman","f":"Maximilian","fp":"DC","r":8,"c":69,"s":{"s":13,"n":2,"a":6.5,"d":0.71,"Ss":13,"Sn":2,"Sa":6.5,"Sd":0.71,"Os":27.5,"On":5,"Oa":5.5,"Od":1.12,"pd":5},"p":[[-23,{"n":5,"e":4085,"s":1}],[-20,{"n":5.5,"e":4111}],[-14,{"n":4,"e":4174}],[5,{"n":7,"e":7498}],[4,{"n":6,"e":6902}]]}],[3117,{"n":"Hoever","f":"Ki-Jana","fp":"DL","r":8,"c":69,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pd":2},"p":[[4,{"n":5,"e":6902,"s":1}],[3,{"n":5,"e":6911,"s":1}]]}],[3724,{"n":"Roderick Miranda","f":"","fp":"DC","r":4,"c":69}],[4282,{"n":"Pedro Neto","f":"","fp":"MO","r":12,"c":69,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":1.15,"Sg":1,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.15,"Og":4,"Os":149.5,"On":30,"Oa":4.98,"Od":0.88,"pm":3,"pa":27},"p":[[-38,{"n":3,"e":3930}],[-37,{"n":4.5,"e":3947,"s":1}],[-36,{"n":5,"e":3949,"s":1}],[-35,{"n":6,"e":3967}],[-33,{"n":4.5,"e":3987,"s":1}],[-32,{"n":4.5,"e":3989,"s":1}],[-31,{"n":5,"e":4007,"s":1}],[-30,{"n":6.5,"e":4017,"g":1,"s":1}],[-28,{"n":4.5,"e":4035,"s":1}],[-27,{"n":4,"e":4047,"s":1}],[-26,{"n":5,"e":4057}],[-25,{"n":4.5,"e":4063,"s":1}],[-24,{"n":5,"e":4073}],[-23,{"n":6.5,"e":4085,"g":1}],[-22,{"n":5,"e":4097}],[-21,{"n":6,"e":4106,"g":1}],[-20,{"n":5,"e":4111}],[-19,{"n":4.5,"e":4127,"s":1}],[-18,{"n":5,"e":4134,"s":1}],[-16,{"n":4.5,"e":4150,"s":1}],[-15,{"n":6,"e":4162,"s":1}],[-12,{"n":4,"e":4195,"s":1}],[-11,{"n":4.5,"e":4198,"s":1}],[-10,{"n":4.5,"e":4213,"s":1}],[-7,{"n":6,"e":4244}],[5,{"n":5,"e":7498}],[4,{"n":6.5,"e":6902,"g":1}],[3,{"n":3.5,"e":6911}],[2,{"n":5,"e":6920}],[1,{"n":6,"e":6929}]],"fo":[[3967,[{"t":"I"}]],[3930,[{"t":"Y"}]]]}],[5988,{"n":"Söndergaard","f":"Andreas","fp":"G","r":1,"c":69}],[5992,{"n":"Perry","f":"Taylor","fp":"MO","r":1,"c":69}],[6429,{"n":"Buur","f":"Oskar","fp":"DL","r":4,"c":69,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[1,{"n":4.5,"e":6929,"s":1}]]}],[6447,{"n":"Campana","f":"Leonardo","fp":"A","r":1,"c":69}],[6475,{"n":"Otasowie","f":"Owen","fp":"MD","r":1,"c":69}],[6477,{"n":"Cundle","f":"Luke","fp":"MO","r":1,"c":69}],[6493,{"n":"Shabani","f":"Meritan","fp":"MO","r":1,"c":69}],[6538,{"n":"Campbell","f":"Chem","fp":"MO","r":1,"c":69}],[6540,{"n":"Richards","f":"Lewis","fp":"DC","r":1,"c":69}],[6552,{"n":"Daniel Podence","f":"","fp":"MO","r":10,"c":69,"s":{"s":21,"n":4,"a":5.25,"d":0.65,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":1,"Os":63,"On":12,"Oa":5.25,"Od":0.97,"pm":5,"pa":7},"p":[[-38,{"n":4.5,"e":3930,"s":1}],[-37,{"n":7,"e":3947,"g":1}],[-36,{"n":4,"e":3949}],[-35,{"n":7,"e":3967}],[-31,{"n":5,"e":4007,"s":1}],[-29,{"n":5,"e":4027,"s":1}],[-28,{"n":5,"e":4035,"s":1}],[-26,{"n":4.5,"e":4057,"s":1}],[5,{"n":5,"e":7498}],[4,{"n":4.5,"e":6902}],[2,{"n":5.5,"e":6920}],[1,{"n":6,"e":6929}]]}],[6877,{"n":"Marques","f":"Christian","fp":"DC","r":1,"c":69}],[7213,{"n":"Fábio Silva","f":"","fp":"A","r":8,"c":69,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pa":2},"p":[[3,{"n":5,"e":6911,"s":1}],[2,{"n":4.5,"e":6920,"s":1}]]}],[7263,{"n":"Vitinha","f":"","fp":"MO","r":8,"c":69,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[3,{"n":5,"e":6911,"s":1}]]}]],"np":641,"c":[[39,{"n":"Arsenal","rn":"Arsenal","cn":"Arsenal","crn":"Arsenal","a":"ARS","el":1076,"s":{"w":3,"l":2,"d":0,"pl":5,"GA":2,"GS":8,"GT":6,"p":9},"nm":[[6876,0.304],[6871,0.403]],"pM":[null,6923,6912,6907,6894,6889,null,4247,4236,4225,4208,4198,4196,4178,4176,4158,4157,4138,4131,4119,4108,4098,4091,4078,4075,4059,4048,4038,4032,4018,4010,4005,3988,3987,3968,3965,3948,3938,3928],"DMI":[3968,4196,4098,4247]}],[78,{"n":"Aston Villa","rn":"Aston Villa","cn":"Aston-Villa","crn":"Aston-Villa","a":"ASV","el":997,"s":{"w":4,"l":0,"d":1,"pl":5,"GA":10,"GS":12,"GT":2,"p":13},"nm":[[7510,0.496],[6867,0.557]],"pM":[null,6924,6913,6906,6895,6888,null,4239,4232,4218,4212,4199,4195,4179,4175,4164,4148,4145,4128,4118,4116,4100,4088,4079,4068,4058,4049,4046,4028,4022,4008,4003,3989,3981,3969,3958,3952,3938,3937],"DMI":[4128,4046]}],[45,{"n":"Brighton","rn":"Brighton","cn":"Brighton","crn":"Brighton","a":"BHA","el":1056,"s":{"w":1,"l":3,"d":1,"pl":5,"GA":-2,"GS":9,"GT":11,"p":4},"nm":[[6877,0.587],[6874,0.406]],"pM":[null,6928,6918,6903,6897,6886,null,4241,4228,4218,4209,4201,4197,4181,4171,4158,4150,4141,4130,4126,4109,4099,4092,4079,4069,4067,4050,4045,4030,4027,4010,4000,3991,3984,3971,3960,3956,3940,3929],"DMI":[4126,4228]}],[23,{"n":"Burnley","rn":"Burnley","cn":"Burnley","crn":"Burnley","a":"BUR","el":1036,"s":{"w":0,"l":3,"d":2,"pl":5,"GA":-5,"GS":3,"GT":8,"p":2},"nm":[[6878,0.379],[6868,0.409]],"pM":[null,6921,6916,6904,6900,6893,null,4239,4229,4223,4210,4205,4188,4186,4168,4159,4155,4139,4129,4122,4110,4100,4090,4080,4074,4059,4056,4039,4033,4019,4012,3998,3992,3978,3977,3961,3949,3942,3929],"DMI":[4019,4155,4090,4210]}],[25,{"n":"Chelsea","rn":"Chelsea","cn":"Chelsea","crn":"Chelsea","a":"CHE","el":1100,"s":{"w":2,"l":1,"d":2,"pl":5,"GA":4,"GS":13,"GT":9,"p":8},"nm":[[6868,0.591],[6881,0.437]],"pM":[null,6928,6914,6910,6896,6885,null,4241,4233,4220,4210,4206,4189,4184,4169,4164,4151,4140,4135,4120,4108,4099,4090,4083,4075,4061,4051,4040,4029,4020,4008,3999,3997,3979,3972,3964,3950,3941,3930],"DMI":[4051,4090,4210]}],[26,{"n":"Crystal Palace","rn":"Crystal Palace","cn":"Crystal-Palace","crn":"Crystal-Palace","a":"CRY","el":1100,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":-2,"GS":6,"GT":8,"p":7},"nm":[[6879,0.765],[6875,0.481]],"pM":[null,6922,6917,6905,6896,6886,null,4242,4235,4221,4208,4202,4189,4182,4168,4166,4156,4141,4133,4121,4115,4104,4091,4082,4077,4060,4052,4041,4030,4021,4009,4001,3992,3980,3972,3958,3951,3947,3931],"DMI":[3947]}],[22,{"n":"Everton","rn":"Everton","cn":"Everton","crn":"Everton","a":"EVE","el":1060,"s":{"w":6,"l":0,"d":1,"pl":7,"GA":11,"GS":20,"GT":9,"p":19},"nm":[[6882,0.644],[6872,0.467]],"pM":[null,6925,6915,6905,6897,6887,null,4246,4229,4222,4209,4203,4193,4183,4170,4167,4151,4144,4131,4122,4113,4102,4092,4087,4070,4066,4052,4038,4031,4020,4011,4004,3993,3986,3973,3967,3952,3943,3932],"DMI":[4193,3973,4070,4113]}],[71,{"n":"Fulham","rn":"Fulham FC","cn":"Fulham","crn":"Fulham-FC","a":"FUL","el":895,"s":{"w":0,"l":4,"d":1,"pl":5,"GA":-8,"GS":4,"GT":12,"p":1},"nm":[[6879,0.235],[6869,0.36]],"pM":[null,6923,6931,6906,6902,6891],"DMI":[]}],[131,{"n":"Leeds","rn":"Leeds","cn":"Leeds","crn":"Leeds","a":"LEE","el":1000,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":0,"GS":9,"GT":9,"p":7},"nm":[[7510,0.504],[7514,0.22]],"pM":[null,6932,6931,6930,7494,7498],"DMI":[]}],[29,{"n":"Leicester","rn":"Leicester City","cn":"Leicester","crn":"Leicester-City","a":"LEI","el":1220,"s":{"w":3,"l":2,"d":0,"pl":5,"GA":4,"GS":12,"GT":8,"p":9},"nm":[[6876,0.696],[7514,0.78]],"pM":[null,6926,6916,6908,6898,6888,null,4245,4230,4223,4215,4202,4196,4181,4170,4160,4148,4142,4132,4123,4117,4103,4093,4080,4071,4061,4057,4042,4034,4022,4016,4000,3993,3980,3968,3959,3953,3944,3933],"DMI":[3968,4196]}],[21,{"n":"Liverpool","rn":"Liverpool","cn":"Liverpool","crn":"Liverpool","a":"LIV","el":1440,"s":{"w":3,"l":1,"d":1,"pl":5,"GA":0,"GS":13,"GT":13,"p":10},"nm":[[6880,0.882],[6870,0.914]],"pM":[null,6932,6914,6907,6895,6887,null,4238,4230,4224,4211,4199,4190,4182,4171,4167,4149,4143,4137,4123,4111,4101,4096,4081,4073,4062,4054,4043,4036,4023,4011,4001,3994,3981,3971,3961,3948,3941,3935],"DMI":[4101,4238,4043,4137]}],[40,{"n":"Man. City","rn":"Manchester City","cn":"Man-City","crn":"Manchester-City","a":"MCI","el":1296,"s":{"w":2,"l":1,"d":2,"pl":5,"GA":0,"GS":7,"GT":7,"p":8},"nm":[[6883,0.823],[6873,0.765]],"pM":[null,6924,6920,6908,7494,6889,null,4246,4231,4221,4212,4204,4190,4184,4172,4159,4152,4138,4132,4127,4112,4102,4088,4082,4072,4065,4053,4042,4032,4024,4012,3999,3994,3985,3974,3960,3954,3946,3934],"DMI":[4053,4072,4112]}],[31,{"n":"Man. United","rn":"Manchester United","cn":"Man-United","crn":"Manchester-United","a":"MUN","el":1144,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":-3,"GS":9,"GT":12,"p":7},"nm":[[6871,0.597],[6881,0.563]],"pM":[null,6921,6917,6903,6899,6890,null,4247,4237,4224,4214,4200,4197,4185,4175,4163,4152,4144,4136,4124,4110,4098,4094,4081,4074,4063,4051,4044,4031,4024,4015,4002,3991,3982,3969,3962,3951,3945,3933],"DMI":[4051,4098,4247]}],[46,{"n":"Newcastle","rn":"Newcastle Utd","cn":"Newcastle","crn":"Newcastle-Utd","a":"NEW","el":1083,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":-2,"GS":7,"GT":9,"p":7},"nm":[[6872,0.533],[6884,0.457]],"pM":[null,6927,6918,6909,6900,6890,null,4245,4237,4220,4213,4207,4191,4179,4172,4161,4153,4139,4133,4124,4113,4103,4097,4083,4070,4064,4048,4041,4033,4026,4013,4003,3990,3983,3974,3966,3955,3940,3935],"DMI":[4213,4097,4070,4113]}],[77,{"n":"Sheffield","rn":"Sheffield","cn":"Sheffield","crn":"Sheffield","a":"SFU","el":1091,"s":{"w":0,"l":4,"d":1,"pl":5,"GA":-5,"GS":2,"GT":7,"p":1},"nm":[[6880,0.118],[6873,0.235]],"pM":[null,6929,6913,6930,6894,6891,null,4238,4234,4225,4217,4205,4194,4185,4174,4161,4154,4145,4130,4125,4112,4101,4095,4078,4072,4060,4055,4045,4028,4025,4013,4002,3995,3978,3975,3964,3953,3943,3936],"DMI":[4101,4238,4072,4112]}],[35,{"n":"Southampton","rn":"Southampton","cn":"Southampton","crn":"Southampton","a":"SOU","el":957,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":-1,"GS":8,"GT":9,"p":7},"nm":[[6867,0.443],[6882,0.356]],"pM":[null,6922,6919,6904,6901,6885,null,4243,4233,4227,4215,4204,4193,4178,4177,4165,4153,4146,4128,4120,4115,4105,4093,4085,4077,4062,4056,4046,4037,4026,4014,4005,3996,3985,3973,3962,3956,3939,3936],"DMI":[4193,3973,4128,4046]}],[24,{"n":"Tottenham","rn":"Tottenham","cn":"Tottenham","crn":"Tottenham","a":"TOT","el":1122,"s":{"w":2,"l":2,"d":2,"pl":6,"GA":6,"GS":15,"GT":9,"p":8},"nm":[[6874,0.594],[6878,0.621]],"pM":[null,6925,6919,6909,6899,6892,null,4243,4228,4226,4211,4203,4194,4187,4173,4163,4155,4147,4135,4126,4114,4105,4096,4086,4076,4065,4049,4040,4035,4019,4015,4006,3995,3986,3970,3965,3955,3944,3931],"DMI":[4019,4155,4126,4228]}],[32,{"n":"West Bromwich","rn":"West Bromwich","cn":"West-Bromwich","crn":"West-Bromwich","a":"WBA","el":995,"s":{"w":0,"l":4,"d":2,"pl":6,"GA":-11,"GS":7,"GT":18,"p":2},"nm":[[6877,0.413],[6869,0.64]],"pM":[null,6926,6915,6910,6901,6893],"DMI":[]}],[28,{"n":"West Ham","rn":"West Ham Utd","cn":"West-Ham","crn":"West-Ham-Utd","a":"WHU","el":1029,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":4,"GS":11,"GT":7,"p":7},"nm":[[6870,0.086],[6883,0.177]],"pM":[null,6927,6912,6911,6898,6892,null,4240,4235,4222,4217,4207,4188,4187,4169,4162,4157,4146,4137,4121,4117,4107,4095,4087,4071,4067,4053,4043,4037,4018,4017,4006,3997,3983,3977,3963,3957,3945,3937],"DMI":[4053,4043,4137]}],[69,{"n":"Wolverhampton","rn":"Wolverhampton Wanderers","cn":"Wolverhampton","crn":"Wolverhampton-Wanderers","a":"WOL","el":1113,"s":{"w":3,"l":2,"d":0,"pl":5,"GA":-2,"GS":5,"GT":7,"p":9},"nm":[[6875,0.519],[6884,0.543]],"pM":[null,6929,6920,6911,6902,7498,null,4244,4231,4227,4213,4198,4195,4180,4174,4162,4150,4147,4134,4127,4111,4106,4097,4085,4073,4063,4057,4047,4035,4027,4017,4007,3989,3987,3975,3967,3949,3947,3930],"DMI":[4213,4097,3947]}]],"nc":20,"op":[[33,{"n":"Watford"}],[76,{"n":"Norwich"}],[36,{"n":"Bournemouth"}],[54,{"n":"Atlético"}],[52,{"n":"Real Sociedad"}],[58,{"n":"Getafe"}],[60,{"n":"Betis"}],[51,{"n":"Celta"}],[87,{"n":"Mallorca"}],[59,{"n":"Barcelona"}],[48,{"n":"Alavés"}],[63,{"n":"Levante"}],[74,{"n":"Valladolid"}],[85,{"n":"Osasuna"}],[57,{"n":"Bilbao"}],[56,{"n":"Espanyol"}],[64,{"n":"Villarreal"}],[49,{"n":"Valencia"}],[86,{"n":"Granada"}],[62,{"n":"Real Madrid"}],[47,{"n":"Leganés"}],[66,{"n":"Eibar"}],[55,{"n":"Sevilla"}],[73,{"n":"Huesca"}],[7,{"n":"Dijon"}],[10,{"n":"Toulouse"}],[2,{"n":"Paris"}],[13,{"n":"Monaco"}],[3,{"n":"Bordeaux"}],[8,{"n":"Nantes"}],[15,{"n":"Montpellier"}],[12,{"n":"Lille"}],[18,{"n":"Lyon"}],[16,{"n":"Angers"}],[20,{"n":"Rennes"}],[41,{"n":"Strasbourg"}],[75,{"n":"Brest"}],[11,{"n":"Metz"}],[9,{"n":"Marseille"}],[19,{"n":"Nice"}],[4,{"n":"Saint-Étienne"}],[68,{"n":"Reims"}],[42,{"n":"Amiens"}],[67,{"n":"Nîmes"}],[112,{"n":"Inter"}],[111,{"n":"Napoli"}],[123,{"n":"Sassuolo"}],[114,{"n":"Parma"}],[124,{"n":"Udinese"}],[127,{"n":"Bologna"}],[117,{"n":"Genoa"}],[126,{"n":"Verona"}],[122,{"n":"Torino"}],[109,{"n":"Brescia"}],[110,{"n":"Fiorentina"}],[121,{"n":"Lazio"}],[125,{"n":"Milan"}],[119,{"n":"Atalanta"}],[118,{"n":"Spal"}],[108,{"n":"Cagliari"}],[116,{"n":"Roma"}],[115,{"n":"Juventus"}],[113,{"n":"Lecce"}],[120,{"n":"Sampdoria"}],[6,{"n":"Lorient"}]],"Ne":[[6876,{"d":6,"dB":1603653300,"t1":39,"t2":29,"o":{"h":1.88,"d":3.85,"a":3.98}}],[6871,{"d":7,"dB":1604248200,"t1":31,"t2":39,"o":{"h":2.08,"d":3.58,"a":3.22}}],[7510,{"d":6,"dB":1603479600,"t1":78,"t2":131,"o":{"h":2.26,"d":3.6,"a":3.1}}],[6867,{"d":7,"dB":1604232000,"t1":78,"t2":35,"o":{"h":2.39,"d":3.48,"a":2.75}}],[6877,{"d":6,"dB":1603733400,"t1":45,"t2":32,"o":{"h":1.77,"d":3.88,"a":4.5}}],[6874,{"d":7,"dB":1604258100,"t1":24,"t2":45,"o":{"h":1.63,"d":4.05,"a":4.8}}],[6878,{"d":6,"dB":1603742400,"t1":23,"t2":24,"o":{"h":5.45,"d":4.1,"a":1.62}}],[6868,{"d":7,"dB":1604156400,"t1":23,"t2":25,"o":{"h":5.75,"d":4.4,"a":1.49}}],[6881,{"d":6,"dB":1603557000,"t1":31,"t2":25,"o":{"h":2.44,"d":3.62,"a":2.8}}],[6879,{"d":6,"dB":1603548000,"t1":71,"t2":26,"o":{"h":2.88,"d":3.2,"a":2.6}}],[6875,{"d":7,"dB":1604088000,"t1":69,"t2":26,"o":{"h":1.85,"d":3.3,"a":4.4}}],[6882,{"d":6,"dB":1603634400,"t1":35,"t2":22,"o":{"h":2.92,"d":3.6,"a":2.37}}],[6872,{"d":7,"dB":1604239200,"t1":46,"t2":22,"o":{"h":4.2,"d":3.68,"a":1.79}}],[6869,{"d":7,"dB":1604338200,"t1":71,"t2":32,"o":{"h":2.38,"d":3.28,"a":2.92}}],[7514,{"d":7,"dB":1604347200,"t1":131,"t2":29,"o":{"h":2.62,"d":3.38,"a":2.55}}],[6880,{"d":6,"dB":1603566000,"t1":21,"t2":77,"o":{"h":1.26,"d":6.35,"a":10.5}}],[6870,{"d":7,"dB":1604165400,"t1":21,"t2":28,"o":{"h":1.36,"d":5.05,"a":7.15}}],[6883,{"d":6,"dB":1603539000,"t1":28,"t2":40,"o":{"h":6.8,"d":5.35,"a":1.41}}],[6873,{"d":7,"dB":1604147400,"t1":77,"t2":40,"o":{"h":9.3,"d":5.85,"a":1.26}}],[6884,{"d":6,"dB":1603643400,"t1":69,"t2":46,"o":{"h":1.76,"d":3.6,"a":5.05}}]],"e":[[3928,{"d":38,"dB":1595775600,"t1s":3,"t2s":2,"t1":39,"t2":33}],[3938,{"d":37,"dB":1595358900,"t1s":1,"t2s":0,"t1":78,"t2":39}],[3948,{"d":36,"dB":1594840500,"t1s":2,"t2s":1,"t1":39,"t2":21}],[3965,{"d":35,"dB":1594567800,"t1s":2,"t2s":1,"t1":24,"t2":39}],[3968,{"d":34,"dB":1594149300,"t1s":1,"t2s":1,"t1":39,"t2":29}],[3987,{"d":33,"dB":1593880200,"t1s":0,"t2s":2,"t1":69,"t2":39}],[3988,{"d":32,"dB":1593622800,"t1s":4,"t2s":0,"t1":39,"t2":76}],[4005,{"d":31,"dB":1593104400,"t1s":0,"t2s":2,"t1":35,"t2":39}],[4010,{"d":30,"dB":1592661600,"t1s":2,"t2s":1,"t1":45,"t2":39}],[4018,{"d":29,"dB":1583593200,"t1s":1,"t2s":0,"t1":39,"t2":28}],[4032,{"d":28,"dB":1592421300,"t1s":3,"t2s":0,"t1":40,"t2":39}],[4048,{"d":26,"dB":1581870600,"t1s":4,"t2s":0,"t1":39,"t2":46}],[4059,{"d":25,"dB":1580652000,"t1s":0,"t2s":0,"t1":23,"t2":39}],[4075,{"d":24,"dB":1579637700,"t1s":2,"t2s":2,"t1":25,"t2":39}],[4078,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":39,"t2":77}],[4091,{"d":22,"dB":1578745800,"t1s":1,"t2s":1,"t1":26,"t2":39}],[4098,{"d":21,"dB":1577908800,"t1s":2,"t2s":0,"t1":39,"t2":31}],[4108,{"d":20,"dB":1577628000,"t1s":1,"t2s":2,"t1":39,"t2":25}],[4119,{"d":19,"dB":1577372400,"t1s":1,"t2s":1,"t1":36,"t2":39}],[4131,{"d":18,"dB":1576931400,"t1s":0,"t2s":0,"t1":22,"t2":39}],[4158,{"d":15,"dB":1575576900,"t1s":1,"t2s":2,"t1":39,"t2":45}],[4176,{"d":14,"dB":1575208800,"t1s":2,"t2s":2,"t1":76,"t2":39}],[4178,{"d":13,"dB":1574521200,"t1s":2,"t2s":2,"t1":39,"t2":35}],[4196,{"d":12,"dB":1573320600,"t1s":2,"t2s":0,"t1":29,"t2":39}],[4198,{"d":11,"dB":1572706800,"t1s":1,"t2s":1,"t1":39,"t2":69}],[4208,{"d":10,"dB":1572193800,"t1s":2,"t2s":2,"t1":39,"t2":26}],[4225,{"d":9,"dB":1571684400,"t1s":1,"t2s":0,"t1":77,"t2":39}],[6889,{"d":5,"dB":1602952200,"t1s":1,"t2s":0,"t1":40,"t2":39}],[6907,{"d":3,"dB":1601319600,"t1s":3,"t2s":1,"t1":21,"t2":39}],[6912,{"d":2,"dB":1600542000,"t1s":2,"t2s":1,"t1":39,"t2":28}],[6923,{"d":1,"dB":1599910200,"t1s":0,"t2s":3,"t1":71,"t2":39}],[4038,{"d":27,"dB":1582475400,"t1s":3,"t2s":2,"t1":39,"t2":22}],[4138,{"d":17,"dB":1576427400,"t1s":0,"t2s":3,"t1":39,"t2":40}],[4157,{"d":16,"dB":1575921600,"t1s":1,"t2s":3,"t1":28,"t2":39}],[4236,{"d":8,"dB":1570366800,"t1s":1,"t2s":0,"t1":39,"t2":36}],[4247,{"d":7,"dB":1569870000,"t1s":1,"t2s":1,"t1":31,"t2":39}],[6894,{"d":4,"dB":1601816400,"t1s":2,"t2s":1,"t1":39,"t2":77}],[3941,{"d":37,"dB":1595445300,"t1s":5,"t2s":3,"t1":21,"t2":25}],[3950,{"d":36,"dB":1594754100,"t1s":1,"t2s":0,"t1":25,"t2":76}],[3964,{"d":35,"dB":1594485000,"t1s":3,"t2s":0,"t1":77,"t2":25}],[3972,{"d":34,"dB":1594141200,"t1s":2,"t2s":3,"t1":26,"t2":25}],[3979,{"d":33,"dB":1593889200,"t1s":3,"t2s":0,"t1":25,"t2":33}],[3997,{"d":32,"dB":1593630900,"t1s":3,"t2s":2,"t1":28,"t2":25}],[3999,{"d":31,"dB":1593112500,"t1s":2,"t2s":1,"t1":25,"t2":40}],[4008,{"d":30,"dB":1592752500,"t1s":1,"t2s":2,"t1":78,"t2":25}],[4020,{"d":29,"dB":1583676000,"t1s":4,"t2s":0,"t1":25,"t2":22}],[4029,{"d":28,"dB":1582988400,"t1s":2,"t2s":2,"t1":36,"t2":25}],[4040,{"d":27,"dB":1582374600,"t1s":2,"t2s":1,"t1":25,"t2":24}],[4051,{"d":26,"dB":1581969600,"t1s":0,"t2s":2,"t1":25,"t2":31}],[4061,{"d":25,"dB":1580560200,"t1s":2,"t2s":2,"t1":29,"t2":25}],[4083,{"d":23,"dB":1579368600,"t1s":1,"t2s":0,"t1":46,"t2":25}],[4090,{"d":22,"dB":1578754800,"t1s":3,"t2s":0,"t1":25,"t2":23}],[4099,{"d":21,"dB":1577881800,"t1s":1,"t2s":1,"t1":45,"t2":25}],[4120,{"d":19,"dB":1577372400,"t1s":0,"t2s":2,"t1":25,"t2":35}],[4135,{"d":18,"dB":1577032200,"t1s":0,"t2s":2,"t1":24,"t2":25}],[4140,{"d":17,"dB":1576335600,"t1s":0,"t2s":1,"t1":25,"t2":36}],[4151,{"d":16,"dB":1575721800,"t1s":3,"t2s":1,"t1":22,"t2":25}],[4164,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":25,"t2":78}],[4169,{"d":14,"dB":1575126000,"t1s":0,"t2s":1,"t1":25,"t2":28}],[4184,{"d":13,"dB":1574530200,"t1s":2,"t2s":1,"t1":40,"t2":25}],[4189,{"d":12,"dB":1573302600,"t1s":2,"t2s":0,"t1":25,"t2":26}],[4206,{"d":11,"dB":1572715800,"t1s":1,"t2s":2,"t1":33,"t2":25}],[4210,{"d":10,"dB":1572107400,"t1s":2,"t2s":4,"t1":23,"t2":25}],[4220,{"d":9,"dB":1571493600,"t1s":1,"t2s":0,"t1":25,"t2":46}],[4233,{"d":8,"dB":1570366800,"t1s":1,"t2s":4,"t1":35,"t2":25}],[4241,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":25,"t2":45}],[4077,{"d":24,"dB":1579635000,"t1s":0,"t2s":2,"t1":26,"t2":35}],[4085,{"d":23,"dB":1579359600,"t1s":2,"t2s":3,"t1":35,"t2":69}],[4093,{"d":22,"dB":1578754800,"t1s":1,"t2s":2,"t1":29,"t2":35}],[4105,{"d":21,"dB":1577890800,"t1s":1,"t2s":0,"t1":35,"t2":24}],[4115,{"d":20,"dB":1577545200,"t1s":1,"t2s":1,"t1":35,"t2":26}],[4128,{"d":18,"dB":1576940400,"t1s":1,"t2s":3,"t1":78,"t2":35}],[4146,{"d":17,"dB":1576344600,"t1s":0,"t2s":1,"t1":35,"t2":28}],[4153,{"d":16,"dB":1575813600,"t1s":2,"t2s":1,"t1":46,"t2":35}],[4165,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":35,"t2":76}],[4177,{"d":14,"dB":1575135000,"t1s":2,"t2s":1,"t1":35,"t2":33}],[4193,{"d":12,"dB":1573311600,"t1s":1,"t2s":2,"t1":35,"t2":22}],[4309,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":54,"t2":52}],[4322,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":58,"t2":54}],[4329,{"d":36,"dB":1594497600,"t1s":1,"t2s":0,"t1":54,"t2":60}],[4340,{"d":35,"dB":1594152000,"t1s":1,"t2s":1,"t1":51,"t2":54}],[4349,{"d":34,"dB":1593806400,"t1s":3,"t2s":0,"t1":54,"t2":87}],[4359,{"d":33,"dB":1593547200,"t1s":2,"t2s":2,"t1":59,"t2":54}],[4369,{"d":32,"dB":1593288000,"t1s":2,"t2s":1,"t1":54,"t2":48}],[4382,{"d":31,"dB":1592933400,"t1s":0,"t2s":1,"t1":63,"t2":54}],[4389,{"d":30,"dB":1592683200,"t1s":1,"t2s":0,"t1":54,"t2":74}],[4403,{"d":29,"dB":1592424000,"t1s":0,"t2s":5,"t1":85,"t2":54}],[4408,{"d":28,"dB":1592136000,"t1s":1,"t2s":1,"t1":57,"t2":54}],[4430,{"d":26,"dB":1583074800,"t1s":1,"t2s":1,"t1":56,"t2":54}],[4439,{"d":25,"dB":1582488000,"t1s":3,"t2s":1,"t1":54,"t2":64}],[4456,{"d":24,"dB":1581710400,"t1s":2,"t2s":2,"t1":49,"t2":54}],[4459,{"d":23,"dB":1581192000,"t1s":1,"t2s":0,"t1":54,"t2":86}],[4474,{"d":22,"dB":1580569200,"t1s":1,"t2s":0,"t1":62,"t2":54}],[4479,{"d":21,"dB":1580036400,"t1s":0,"t2s":0,"t1":54,"t2":47}],[4490,{"d":20,"dB":1579377600,"t1s":2,"t2s":0,"t1":66,"t2":54}],[4499,{"d":19,"dB":1578159000,"t1s":2,"t2s":1,"t1":54,"t2":63}],[4514,{"d":18,"dB":1577026800,"t1s":1,"t2s":2,"t1":60,"t2":54}],[4520,{"d":17,"dB":1576353600,"t1s":2,"t2s":0,"t1":54,"t2":85}],[4537,{"d":16,"dB":1575662400,"t1s":0,"t2s":0,"t1":64,"t2":54}],[4540,{"d":15,"dB":1575230400,"t1s":0,"t2s":1,"t1":54,"t2":59}],[4560,{"d":13,"dB":1573398000,"t1s":3,"t2s":1,"t1":54,"t2":56}],[4576,{"d":12,"dB":1572715800,"t1s":1,"t2s":1,"t1":55,"t2":54}],[4578,{"d":11,"dB":1572372000,"t1s":1,"t2s":1,"t1":48,"t2":54}],[4588,{"d":10,"dB":1572116400,"t1s":2,"t2s":0,"t1":54,"t2":57}],[4600,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":54,"t2":49}],[4616,{"d":8,"dB":1570370400,"t1s":0,"t2s":0,"t1":74,"t2":54}],[4620,{"d":7,"dB":1569697200,"t1s":0,"t2s":0,"t1":54,"t2":62}],[4632,{"d":6,"dB":1569430800,"t1s":0,"t2s":2,"t1":87,"t2":54}],[7169,{"d":5,"dB":1601733600,"t1s":0,"t2s":0,"t1":54,"t2":64}],[7184,{"d":3,"dB":1601215200,"t1s":6,"t2s":1,"t1":54,"t2":86}],[7497,{"d":4,"dB":1601485200,"t1s":0,"t2s":0,"t1":73,"t2":54}],[3649,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":7,"t2":10}],[3666,{"d":27,"dB":1582993800,"t1s":4,"t2s":0,"t1":2,"t2":7}],[3669,{"d":26,"dB":1582398000,"t1s":1,"t2s":1,"t1":7,"t2":13}],[3679,{"d":25,"dB":1581793200,"t1s":2,"t2s":2,"t1":3,"t2":7}],[3690,{"d":24,"dB":1581188400,"t1s":3,"t2s":3,"t1":7,"t2":8}],[3762,{"d":17,"dB":1575820800,"t1s":1,"t2s":0,"t1":8,"t2":7}],[3772,{"d":16,"dB":1575482400,"t1s":2,"t2s":2,"t1":7,"t2":15}],[3650,{"d":28,"dB":1583697600,"t1s":1,"t2s":0,"t1":12,"t2":18}],[3664,{"d":27,"dB":1583071200,"t1s":0,"t2s":1,"t1":8,"t2":12}],[3670,{"d":26,"dB":1582398000,"t1s":3,"t2s":0,"t1":12,"t2":10}],[3689,{"d":24,"dB":1581104700,"t1s":0,"t2s":2,"t1":16,"t2":12}],[3699,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":12,"t2":20}],[3717,{"d":22,"dB":1580583600,"t1s":1,"t2s":2,"t1":41,"t2":12}],[3719,{"d":21,"dB":1580068800,"t1s":0,"t2s":2,"t1":12,"t2":2}],[3731,{"d":20,"dB":1578844800,"t1s":1,"t2s":0,"t1":7,"t2":12}],[3740,{"d":19,"dB":1576957500,"t1s":5,"t2s":1,"t1":13,"t2":12}],[3752,{"d":18,"dB":1576266300,"t1s":2,"t2s":1,"t1":12,"t2":15}],[3758,{"d":17,"dB":1575655200,"t1s":1,"t2s":0,"t1":12,"t2":75}],[3773,{"d":16,"dB":1575403500,"t1s":0,"t2s":1,"t1":18,"t2":12}],[3778,{"d":15,"dB":1575140400,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3795,{"d":14,"dB":1574451900,"t1s":2,"t2s":0,"t1":2,"t2":12}],[3799,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":12,"t2":11}],[3812,{"d":12,"dB":1572712200,"t1s":2,"t2s":1,"t1":9,"t2":12}],[3819,{"d":11,"dB":1572103800,"t1s":3,"t2s":0,"t1":12,"t2":3}],[3837,{"d":10,"dB":1571508000,"t1s":2,"t2s":1,"t1":10,"t2":12}],[3854,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":19,"t2":12}],[3861,{"d":7,"dB":1569430800,"t1s":2,"t2s":0,"t1":12,"t2":41}],[3656,{"d":28,"dB":1583676000,"t1s":1,"t2s":1,"t1":4,"t2":3}],[3661,{"d":27,"dB":1583092800,"t1s":2,"t2s":0,"t1":18,"t2":4}],[3676,{"d":26,"dB":1582466400,"t1s":1,"t2s":1,"t1":4,"t2":68}],[3680,{"d":25,"dB":1581868800,"t1s":3,"t2s":2,"t1":75,"t2":4}],[3693,{"d":24,"dB":1581256800,"t1s":1,"t2s":0,"t1":15,"t2":4}],[3702,{"d":23,"dB":1580932800,"t1s":0,"t2s":2,"t1":4,"t2":9}],[3712,{"d":22,"dB":1580659200,"t1s":3,"t2s":1,"t1":11,"t2":4}],[3816,{"d":12,"dB":1572811200,"t1s":1,"t2s":0,"t1":4,"t2":13}],[3826,{"d":11,"dB":1572192000,"t1s":2,"t2s":2,"t1":4,"t2":42}],[3829,{"d":10,"dB":1571576400,"t1s":0,"t2s":1,"t1":3,"t2":4}],[3846,{"d":9,"dB":1570388400,"t1s":1,"t2s":0,"t1":4,"t2":18}],[3855,{"d":8,"dB":1569769200,"t1s":0,"t2s":1,"t1":67,"t2":4}],[3937,{"d":38,"dB":1595775600,"t1s":1,"t2s":1,"t1":28,"t2":78}],[3952,{"d":36,"dB":1594918800,"t1s":1,"t2s":1,"t1":22,"t2":78}],[3958,{"d":35,"dB":1594559700,"t1s":2,"t2s":0,"t1":78,"t2":26}],[3969,{"d":34,"dB":1594322100,"t1s":0,"t2s":3,"t1":78,"t2":31}],[3981,{"d":33,"dB":1593963000,"t1s":2,"t2s":0,"t1":21,"t2":78}],[3989,{"d":32,"dB":1593257400,"t1s":0,"t2s":1,"t1":78,"t2":69}],[4003,{"d":31,"dB":1593018000,"t1s":1,"t2s":1,"t1":46,"t2":78}],[4022,{"d":29,"dB":1583784000,"t1s":4,"t2s":0,"t1":29,"t2":78}],[4028,{"d":28,"dB":1592413200,"t1s":0,"t2s":0,"t1":78,"t2":77}],[4046,{"d":27,"dB":1582383600,"t1s":2,"t2s":0,"t1":35,"t2":78}],[4049,{"d":26,"dB":1581861600,"t1s":2,"t2s":3,"t1":78,"t2":24}],[4058,{"d":25,"dB":1580569200,"t1s":2,"t2s":1,"t1":36,"t2":78}],[4068,{"d":24,"dB":1579635000,"t1s":2,"t2s":1,"t1":78,"t2":33}],[4079,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":45,"t2":78}],[4088,{"d":22,"dB":1578846600,"t1s":1,"t2s":6,"t1":78,"t2":40}],[4116,{"d":20,"dB":1577545200,"t1s":3,"t2s":0,"t1":33,"t2":78}],[4118,{"d":19,"dB":1577372400,"t1s":1,"t2s":0,"t1":78,"t2":76}],[4145,{"d":17,"dB":1576335600,"t1s":2,"t2s":0,"t1":77,"t2":78}],[4148,{"d":16,"dB":1575813600,"t1s":1,"t2s":4,"t1":78,"t2":29}],[4175,{"d":14,"dB":1575217800,"t1s":2,"t2s":2,"t1":31,"t2":78}],[4179,{"d":13,"dB":1574712000,"t1s":2,"t2s":0,"t1":78,"t2":46}],[4195,{"d":12,"dB":1573394400,"t1s":2,"t2s":1,"t1":69,"t2":78}],[4199,{"d":11,"dB":1572706800,"t1s":1,"t2s":2,"t1":78,"t2":21}],[4212,{"d":10,"dB":1572089400,"t1s":3,"t2s":0,"t1":40,"t2":78}],[4218,{"d":9,"dB":1571493600,"t1s":2,"t2s":1,"t1":78,"t2":45}],[4232,{"d":8,"dB":1570284000,"t1s":1,"t2s":5,"t1":76,"t2":78}],[4239,{"d":7,"dB":1569679200,"t1s":2,"t2s":2,"t1":78,"t2":23}],[6924,{"d":1,"dB":1599919200,"dl":1,"t1s":null,"t2s":null,"t1":40,"t2":78}],[4100,{"d":21,"dB":1577881800,"t1s":1,"t2s":2,"t1":23,"t2":78}],[3930,{"d":38,"dB":1595775600,"t1s":2,"t2s":0,"t1":25,"t2":69}],[6888,{"d":5,"dB":1603044900,"t1s":0,"t2s":1,"t1":29,"t2":78}],[6895,{"d":4,"dB":1601835300,"t1s":7,"t2s":2,"t1":78,"t2":21}],[6914,{"d":2,"dB":1600615800,"t1s":0,"t2s":2,"t1":25,"t2":21}],[6928,{"d":1,"dB":1600110900,"t1s":1,"t2s":3,"t1":45,"t2":25}],[6906,{"d":3,"dB":1601311500,"t1s":0,"t2s":3,"t1":71,"t2":78}],[6913,{"d":2,"dB":1600707600,"t1s":1,"t2s":0,"t1":78,"t2":77}],[3682,{"d":25,"dB":1581861600,"t1s":1,"t2s":1,"t1":18,"t2":41}],[3695,{"d":24,"dB":1581278700,"t1s":4,"t2s":2,"t1":2,"t2":18}],[3704,{"d":23,"dB":1580925600,"t1s":0,"t2s":0,"t1":18,"t2":42}],[3713,{"d":22,"dB":1580652000,"t1s":2,"t2s":1,"t1":19,"t2":18}],[3720,{"d":21,"dB":1580047200,"t1s":3,"t2s":0,"t1":18,"t2":10}],[3730,{"d":20,"dB":1578760200,"t1s":1,"t2s":2,"t1":3,"t2":18}],[3745,{"d":19,"dB":1576957500,"t1s":1,"t2s":1,"t1":68,"t2":18}],[3753,{"d":18,"dB":1576425600,"t1s":0,"t2s":1,"t1":18,"t2":20}],[3764,{"d":17,"dB":1575661500,"t1s":0,"t2s":4,"t1":67,"t2":18}],[3793,{"d":14,"dB":1574526600,"t1s":2,"t2s":1,"t1":18,"t2":19}],[3800,{"d":13,"dB":1573416000,"t1s":2,"t2s":1,"t1":9,"t2":18}],[3817,{"d":12,"dB":1572721200,"t1s":2,"t2s":3,"t1":10,"t2":18}],[3830,{"d":10,"dB":1571499000,"t1s":0,"t2s":0,"t1":18,"t2":7}],[3850,{"d":8,"dB":1569670200,"t1s":0,"t2s":1,"t1":18,"t2":8}],[3859,{"d":7,"dB":1569430800,"t1s":2,"t2s":2,"t1":75,"t2":18}],[3870,{"d":6,"dB":1569178800,"t1s":0,"t2s":1,"t1":18,"t2":2}],[3691,{"d":24,"dB":1581179400,"t1s":1,"t2s":0,"t1":9,"t2":10}],[3707,{"d":23,"dB":1580925600,"t1s":0,"t2s":1,"t1":10,"t2":41}],[3708,{"d":22,"dB":1580583600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3929,{"d":38,"dB":1595775600,"t1s":1,"t2s":2,"t1":23,"t2":45}],[3940,{"d":37,"dB":1595264400,"t1s":0,"t2s":0,"t1":45,"t2":46}],[3956,{"d":36,"dB":1594926900,"t1s":1,"t2s":1,"t1":35,"t2":45}],[3960,{"d":35,"dB":1594494000,"t1s":0,"t2s":5,"t1":45,"t2":40}],[3971,{"d":34,"dB":1594235700,"t1s":1,"t2s":3,"t1":45,"t2":21}],[3984,{"d":33,"dB":1593862200,"t1s":0,"t2s":1,"t1":76,"t2":45}],[3991,{"d":32,"dB":1593544500,"t1s":0,"t2s":3,"t1":45,"t2":31}],[4000,{"d":31,"dB":1592931600,"t1s":0,"t2s":0,"t1":29,"t2":45}],[4027,{"d":29,"dB":1583593200,"t1s":0,"t2s":0,"t1":69,"t2":45}],[4030,{"d":28,"dB":1582979400,"t1s":0,"t2s":1,"t1":45,"t2":26}],[4045,{"d":27,"dB":1582383600,"t1s":1,"t2s":1,"t1":77,"t2":45}],[4109,{"d":20,"dB":1577536200,"t1s":2,"t2s":0,"t1":45,"t2":36}],[4126,{"d":19,"dB":1577363400,"t1s":2,"t2s":1,"t1":24,"t2":45}],[4130,{"d":18,"dB":1576940400,"t1s":0,"t2s":1,"t1":45,"t2":77}],[4141,{"d":17,"dB":1576525500,"t1s":1,"t2s":1,"t1":26,"t2":45}],[4171,{"d":14,"dB":1575126000,"t1s":2,"t2s":1,"t1":21,"t2":45}],[4181,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":45,"t2":29}],[4228,{"d":8,"dB":1570275000,"t1s":3,"t2s":0,"t1":45,"t2":24}],[6886,{"d":5,"dB":1603026000,"t1s":1,"t2s":1,"t1":26,"t2":45}],[6897,{"d":4,"dB":1601733600,"t1s":4,"t2s":2,"t1":22,"t2":45}],[6918,{"d":2,"dB":1600606800,"t1s":0,"t2s":3,"t1":46,"t2":45}],[4023,{"d":29,"dB":1583584200,"t1s":2,"t2s":1,"t1":21,"t2":36}],[4036,{"d":28,"dB":1582997400,"t1s":3,"t2s":0,"t1":33,"t2":21}],[4062,{"d":25,"dB":1580569200,"t1s":4,"t2s":0,"t1":21,"t2":35}],[4081,{"d":23,"dB":1579451400,"t1s":2,"t2s":0,"t1":21,"t2":31}],[4096,{"d":22,"dB":1578763800,"t1s":0,"t2s":1,"t1":24,"t2":21}],[4101,{"d":21,"dB":1577995200,"t1s":2,"t2s":0,"t1":21,"t2":77}],[4111,{"d":20,"dB":1577637000,"t1s":1,"t2s":0,"t1":21,"t2":69}],[4123,{"d":19,"dB":1577390400,"t1s":0,"t2s":4,"t1":29,"t2":21}],[4167,{"d":15,"dB":1575490500,"t1s":5,"t2s":2,"t1":21,"t2":22}],[4224,{"d":9,"dB":1571585400,"t1s":1,"t2s":1,"t1":31,"t2":21}],[4230,{"d":8,"dB":1570284000,"t1s":2,"t2s":1,"t1":21,"t2":29}],[6903,{"d":3,"dB":1601119800,"t1s":2,"t2s":3,"t1":45,"t2":31}],[3946,{"d":37,"dB":1595350800,"t1s":0,"t2s":4,"t1":33,"t2":40}],[3957,{"d":36,"dB":1595012400,"t1s":3,"t2s":1,"t1":28,"t2":33}],[3966,{"d":35,"dB":1594467000,"t1s":2,"t2s":1,"t1":33,"t2":46}],[3976,{"d":34,"dB":1594141200,"t1s":2,"t2s":1,"t1":33,"t2":76}],[3996,{"d":32,"dB":1593358200,"t1s":1,"t2s":3,"t1":33,"t2":35}],[3998,{"d":31,"dB":1593104400,"t1s":1,"t2s":0,"t1":23,"t2":33}],[4016,{"d":30,"dB":1592652600,"t1s":1,"t2s":1,"t1":33,"t2":29}],[4021,{"d":29,"dB":1583593200,"t1s":1,"t2s":0,"t1":26,"t2":33}],[4044,{"d":27,"dB":1582466400,"t1s":3,"t2s":0,"t1":31,"t2":33}],[4050,{"d":26,"dB":1581183000,"t1s":1,"t2s":1,"t1":45,"t2":33}],[4066,{"d":25,"dB":1580569200,"t1s":2,"t2s":3,"t1":33,"t2":22}],[4226,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":24,"t2":33}],[4234,{"d":8,"dB":1570284000,"t1s":0,"t2s":0,"t1":33,"t2":77}],[4244,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":69,"t2":33}],[4067,{"d":25,"dB":1580569200,"t1s":3,"t2s":3,"t1":28,"t2":45}],[4069,{"d":24,"dB":1579635000,"t1s":3,"t2s":1,"t1":36,"t2":45}],[4092,{"d":22,"dB":1578754800,"t1s":1,"t2s":0,"t1":22,"t2":45}],[4150,{"d":16,"dB":1575822600,"t1s":2,"t2s":2,"t1":45,"t2":69}],[4197,{"d":12,"dB":1573394400,"t1s":3,"t2s":1,"t1":31,"t2":45}],[4201,{"d":11,"dB":1572706800,"t1s":2,"t2s":0,"t1":45,"t2":76}],[4209,{"d":10,"dB":1572098400,"t1s":3,"t2s":2,"t1":45,"t2":22}],[3942,{"d":37,"dB":1595089800,"t1s":0,"t2s":2,"t1":76,"t2":23}],[3949,{"d":36,"dB":1594832400,"t1s":1,"t2s":1,"t1":23,"t2":69}],[3961,{"d":35,"dB":1594476000,"t1s":1,"t2s":1,"t1":21,"t2":23}],[3977,{"d":34,"dB":1594227600,"t1s":0,"t2s":1,"t1":28,"t2":23}],[3978,{"d":33,"dB":1593946800,"t1s":1,"t2s":1,"t1":23,"t2":77}],[4012,{"d":30,"dB":1592852400,"t1s":5,"t2s":0,"t1":40,"t2":23}],[4019,{"d":29,"dB":1583602200,"t1s":1,"t2s":1,"t1":23,"t2":24}],[4033,{"d":28,"dB":1582988400,"t1s":0,"t2s":0,"t1":46,"t2":23}],[4039,{"d":27,"dB":1582383600,"t1s":3,"t2s":0,"t1":23,"t2":36}],[4056,{"d":26,"dB":1581769800,"t1s":1,"t2s":2,"t1":35,"t2":23}],[4074,{"d":24,"dB":1579724100,"t1s":0,"t2s":2,"t1":31,"t2":23}],[4080,{"d":23,"dB":1579442400,"t1s":2,"t2s":1,"t1":23,"t2":29}],[4110,{"d":20,"dB":1577562300,"t1s":0,"t2s":2,"t1":23,"t2":31}],[4122,{"d":19,"dB":1577372400,"t1s":1,"t2s":0,"t1":22,"t2":23}],[4129,{"d":18,"dB":1576940400,"t1s":0,"t2s":1,"t1":36,"t2":23}],[4139,{"d":17,"dB":1576335600,"t1s":1,"t2s":0,"t1":23,"t2":46}],[4155,{"d":16,"dB":1575730800,"t1s":5,"t2s":0,"t1":24,"t2":23}],[4159,{"d":15,"dB":1575404100,"t1s":1,"t2s":4,"t1":23,"t2":40}],[4168,{"d":14,"dB":1575126000,"t1s":0,"t2s":2,"t1":23,"t2":26}],[4186,{"d":13,"dB":1574521200,"t1s":0,"t2s":3,"t1":33,"t2":23}],[4188,{"d":12,"dB":1573311600,"t1s":3,"t2s":0,"t1":23,"t2":28}],[4205,{"d":11,"dB":1572706800,"t1s":3,"t2s":0,"t1":77,"t2":23}],[4223,{"d":9,"dB":1571493600,"t1s":2,"t2s":1,"t1":29,"t2":23}],[4229,{"d":8,"dB":1570284000,"t1s":1,"t2s":0,"t1":23,"t2":22}],[6893,{"d":5,"dB":1603125000,"t1s":0,"t2s":0,"t1":32,"t2":23}],[6916,{"d":2,"dB":1600624800,"t1s":4,"t2s":2,"t1":29,"t2":23}],[6921,{"d":1,"dB":1599919200,"dl":1,"t1s":null,"t2s":null,"t1":23,"t2":31}],[3992,{"d":32,"dB":1593457200,"t1s":0,"t2s":1,"t1":26,"t2":23}],[6900,{"d":4,"dB":1601751600,"t1s":3,"t2s":1,"t1":46,"t2":23}],[6904,{"d":3,"dB":1601146800,"t1s":0,"t2s":1,"t1":23,"t2":35}],[3657,{"d":28,"dB":1584561600,"dl":1,"t1s":null,"t2s":null,"t1":41,"t2":2}],[3674,{"d":26,"dB":1582488000,"t1s":4,"t2s":3,"t1":2,"t2":3}],[3678,{"d":25,"dB":1581784200,"t1s":4,"t2s":4,"t1":42,"t2":2}],[3734,{"d":20,"dB":1578859200,"t1s":3,"t2s":3,"t1":2,"t2":13}],[3744,{"d":19,"dB":1576957500,"t1s":4,"t2s":1,"t1":2,"t2":42}],[3756,{"d":18,"dB":1576440000,"t1s":0,"t2s":4,"t1":4,"t2":2}],[3761,{"d":17,"dB":1575736200,"t1s":1,"t2s":3,"t1":15,"t2":2}],[3775,{"d":16,"dB":1575489900,"t1s":2,"t2s":0,"t1":2,"t2":8}],[3780,{"d":15,"dB":1579118400,"t1s":1,"t2s":4,"t1":13,"t2":2}],[3798,{"d":13,"dB":1573317000,"t1s":1,"t2s":2,"t1":75,"t2":2}],[3823,{"d":11,"dB":1572206400,"t1s":4,"t2s":0,"t1":2,"t2":9}],[3834,{"d":10,"dB":1571424300,"t1s":1,"t2s":4,"t1":19,"t2":2}],[3844,{"d":9,"dB":1570289400,"t1s":4,"t2s":0,"t1":2,"t2":16}],[3849,{"d":8,"dB":1569684600,"t1s":0,"t2s":1,"t1":3,"t2":2}],[6896,{"d":4,"dB":1601724600,"t1s":4,"t2s":0,"t1":25,"t2":26}],[6910,{"d":3,"dB":1601137800,"t1s":3,"t2s":3,"t1":32,"t2":25}],[6885,{"d":5,"dB":1602943200,"t1s":3,"t2s":3,"t1":25,"t2":35}],[3980,{"d":33,"dB":1593871200,"t1s":3,"t2s":0,"t1":29,"t2":26}],[3993,{"d":32,"dB":1593622800,"t1s":2,"t2s":1,"t1":22,"t2":29}],[4034,{"d":28,"dB":1582920000,"t1s":1,"t2s":0,"t1":76,"t2":29}],[4042,{"d":27,"dB":1582392600,"t1s":0,"t2s":1,"t1":29,"t2":40}],[4057,{"d":26,"dB":1581710400,"t1s":0,"t2s":0,"t1":69,"t2":29}],[4071,{"d":24,"dB":1579721400,"t1s":4,"t2s":1,"t1":29,"t2":28}],[4103,{"d":21,"dB":1577890800,"t1s":0,"t2s":3,"t1":46,"t2":29}],[4132,{"d":18,"dB":1576949400,"t1s":3,"t2s":1,"t1":40,"t2":29}],[4142,{"d":17,"dB":1576335600,"t1s":1,"t2s":1,"t1":29,"t2":76}],[4170,{"d":14,"dB":1575217800,"t1s":2,"t2s":1,"t1":29,"t2":22}],[4202,{"d":11,"dB":1572789600,"t1s":0,"t2s":2,"t1":26,"t2":29}],[4215,{"d":10,"dB":1572030000,"t1s":0,"t2s":9,"t1":35,"t2":29}],[4245,{"d":7,"dB":1569771000,"t1s":5,"t2s":0,"t1":29,"t2":46}],[3655,{"d":28,"dB":1583683200,"t1s":5,"t2s":0,"t1":20,"t2":15}],[3667,{"d":27,"dB":1583002800,"t1s":0,"t2s":2,"t1":10,"t2":20}],[3675,{"d":26,"dB":1582473600,"t1s":2,"t2s":1,"t1":20,"t2":67}],[3686,{"d":25,"dB":1581868800,"t1s":1,"t2s":0,"t1":68,"t2":20}],[3696,{"d":24,"dB":1581188400,"t1s":0,"t2s":0,"t1":20,"t2":75}],[3716,{"d":22,"dB":1580499900,"t1s":3,"t2s":2,"t1":20,"t2":8}],[3725,{"d":21,"dB":1579895100,"t1s":1,"t2s":1,"t1":19,"t2":20}],[3735,{"d":20,"dB":1578685500,"t1s":0,"t2s":1,"t1":20,"t2":9}],[3746,{"d":19,"dB":1576957500,"t1s":1,"t2s":0,"t1":20,"t2":3}],[3766,{"d":17,"dB":1575745200,"t1s":2,"t2s":1,"t1":20,"t2":16}],[3774,{"d":16,"dB":1575482400,"t1s":0,"t2s":1,"t1":11,"t2":20}],[3786,{"d":15,"dB":1575216000,"t1s":2,"t2s":1,"t1":20,"t2":4}],[3792,{"d":14,"dB":1574535600,"t1s":2,"t2s":1,"t1":7,"t2":20}],[3806,{"d":13,"dB":1573394400,"t1s":3,"t2s":1,"t1":20,"t2":42}],[3825,{"d":11,"dB":1572184800,"t1s":3,"t2s":2,"t1":20,"t2":10}],[3851,{"d":8,"dB":1569783600,"t1s":1,"t2s":1,"t1":9,"t2":20}],[3864,{"d":7,"dB":1569430800,"t1s":1,"t2s":0,"t1":8,"t2":20}],[6201,{"d":1,"dB":1598122800,"t1s":1,"t2s":1,"t1":12,"t2":20}],[4009,{"d":30,"dB":1592678700,"t1s":0,"t2s":2,"t1":36,"t2":26}],[4041,{"d":27,"dB":1582383600,"t1s":1,"t2s":0,"t1":26,"t2":46}],[4052,{"d":26,"dB":1581165000,"t1s":3,"t2s":1,"t1":22,"t2":26}],[4060,{"d":25,"dB":1580569200,"t1s":0,"t2s":1,"t1":26,"t2":77}],[4133,{"d":18,"dB":1576940400,"t1s":1,"t2s":0,"t1":46,"t2":26}],[4156,{"d":16,"dB":1575730800,"t1s":0,"t2s":0,"t1":33,"t2":26}],[4182,{"d":13,"dB":1574521200,"t1s":1,"t2s":2,"t1":26,"t2":21}],[4221,{"d":9,"dB":1571502600,"t1s":0,"t2s":2,"t1":26,"t2":40}],[4235,{"d":8,"dB":1570293000,"t1s":1,"t2s":2,"t1":28,"t2":26}],[6905,{"d":3,"dB":1601128800,"t1s":1,"t2s":2,"t1":26,"t2":22}],[4001,{"d":31,"dB":1593026100,"t1s":4,"t2s":0,"t1":21,"t2":26}],[4082,{"d":23,"dB":1579359600,"t1s":2,"t2s":2,"t1":40,"t2":26}],[4242,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":26,"t2":76}],[3951,{"d":36,"dB":1594926900,"t1s":0,"t2s":2,"t1":26,"t2":31}],[4121,{"d":19,"dB":1577372400,"t1s":2,"t2s":1,"t1":26,"t2":28}],[4166,{"d":15,"dB":1575401400,"t1s":1,"t2s":0,"t1":26,"t2":36}],[3931,{"d":38,"dB":1595775600,"t1s":1,"t2s":1,"t1":26,"t2":24}],[3947,{"d":37,"dB":1595272500,"t1s":2,"t2s":1,"t1":69,"t2":26}],[4104,{"d":21,"dB":1577899800,"t1s":1,"t2s":1,"t1":76,"t2":26}],[6917,{"d":2,"dB":1600533000,"t1s":1,"t2s":3,"t1":31,"t2":26}],[6922,{"d":1,"dB":1599919200,"t1s":1,"t2s":0,"t1":26,"t2":35}],[3932,{"d":38,"dB":1595775600,"t1s":1,"t2s":3,"t1":22,"t2":36}],[3943,{"d":37,"dB":1595264400,"t1s":0,"t2s":1,"t1":77,"t2":22}],[3967,{"d":35,"dB":1594551600,"t1s":3,"t2s":0,"t1":69,"t2":22}],[3973,{"d":34,"dB":1594314000,"t1s":1,"t2s":1,"t1":22,"t2":35}],[3986,{"d":33,"dB":1594062000,"t1s":1,"t2s":0,"t1":24,"t2":22}],[4004,{"d":31,"dB":1593018000,"t1s":0,"t2s":1,"t1":76,"t2":22}],[4011,{"d":30,"dB":1592762400,"t1s":0,"t2s":0,"t1":22,"t2":21}],[4031,{"d":28,"dB":1583071200,"t1s":1,"t2s":1,"t1":22,"t2":31}],[4102,{"d":21,"dB":1577899800,"t1s":2,"t2s":1,"t1":40,"t2":22}],[4113,{"d":20,"dB":1577545200,"t1s":1,"t2s":2,"t1":46,"t2":22}],[4183,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":22,"t2":76}],[4203,{"d":11,"dB":1572798600,"t1s":1,"t2s":1,"t1":22,"t2":24}],[4222,{"d":9,"dB":1571484600,"t1s":2,"t2s":0,"t1":22,"t2":28}],[4246,{"d":7,"dB":1569688200,"t1s":1,"t2s":3,"t1":22,"t2":40}],[6887,{"d":5,"dB":1602934200,"t1s":2,"t2s":2,"t1":22,"t2":21}],[6915,{"d":2,"dB":1600515000,"t1s":5,"t2s":2,"t1":22,"t2":32}],[6925,{"d":1,"dB":1600011000,"t1s":0,"t2s":1,"t1":24,"t2":22}],[4144,{"d":17,"dB":1576418400,"t1s":1,"t2s":1,"t1":31,"t2":22}],[4070,{"d":24,"dB":1579635000,"t1s":2,"t2s":2,"t1":22,"t2":46}],[4087,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":28,"t2":22}],[4086,{"d":23,"dB":1579350600,"t1s":0,"t2s":0,"t1":33,"t2":24}],[4089,{"d":22,"dB":1578837600,"t1s":0,"t2s":3,"t1":36,"t2":33}],[4106,{"d":21,"dB":1577890800,"t1s":2,"t2s":1,"t1":33,"t2":69}],[4136,{"d":18,"dB":1577023200,"t1s":2,"t2s":0,"t1":33,"t2":31}],[4143,{"d":17,"dB":1576326600,"t1s":2,"t2s":0,"t1":21,"t2":33}],[4160,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":29,"t2":33}],[4192,{"d":12,"dB":1573243200,"t1s":0,"t2s":2,"t1":76,"t2":33}],[4216,{"d":10,"dB":1572098400,"t1s":0,"t2s":0,"t1":33,"t2":36}],[5460,{"d":37,"dB":1595965500,"t1s":null,"t2s":null,"t1":112,"t2":111}],[5474,{"d":36,"dB":1595706300,"t1s":2,"t2s":0,"t1":111,"t2":123}],[5482,{"d":35,"dB":1595439000,"t1s":2,"t2s":1,"t1":114,"t2":111}],[5494,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":111,"t2":124}],[5499,{"d":33,"dB":1594834200,"t1s":1,"t2s":1,"t1":127,"t2":111}],[5521,{"d":31,"dB":1594229400,"t1s":1,"t2s":2,"t1":117,"t2":111}],[5567,{"d":27,"dB":1592933400,"t1s":0,"t2s":2,"t1":126,"t2":111}],[5573,{"d":26,"dB":1583005500,"t1s":2,"t2s":1,"t1":111,"t2":122}],[5580,{"d":25,"dB":1582314300,"t1s":1,"t2s":2,"t1":109,"t2":111}],[5636,{"d":20,"dB":1579376700,"t1s":0,"t2s":2,"t1":111,"t2":110}],[5641,{"d":19,"dB":1578762000,"t1s":1,"t2s":0,"t1":121,"t2":111}],[5655,{"d":18,"dB":1578339900,"t1s":1,"t2s":3,"t1":111,"t2":112}],[5665,{"d":17,"dB":1577043900,"t1s":1,"t2s":2,"t1":123,"t2":111}],[5675,{"d":16,"dB":1576342800,"t1s":1,"t2s":2,"t1":111,"t2":114}],[5701,{"d":13,"dB":1574528400,"t1s":1,"t2s":1,"t1":125,"t2":111}],[5733,{"d":10,"dB":1572458400,"t1s":2,"t2s":2,"t1":111,"t2":119}],[5745,{"d":9,"dB":1572184800,"t1s":1,"t2s":1,"t1":118,"t2":111}],[5753,{"d":8,"dB":1571500800,"t1s":2,"t2s":0,"t1":111,"t2":126}],[5766,{"d":7,"dB":1570377600,"t1s":0,"t2s":0,"t1":122,"t2":111}],[5773,{"d":6,"dB":1569753000,"t1s":2,"t2s":1,"t1":111,"t2":109}],[5782,{"d":5,"dB":1569438000,"t1s":0,"t2s":1,"t1":111,"t2":108}],[4395,{"d":30,"dB":1592769600,"t1s":1,"t2s":2,"t1":52,"t2":62}],[4605,{"d":9,"dB":1571511600,"t1s":1,"t2s":0,"t1":87,"t2":62}],[4614,{"d":8,"dB":1570284000,"t1s":4,"t2s":2,"t1":62,"t2":86}],[4634,{"d":6,"dB":1569438000,"t1s":2,"t2s":0,"t1":62,"t2":85}],[4645,{"d":5,"dB":1569178800,"t1s":0,"t2s":1,"t1":55,"t2":62}],[3934,{"d":38,"dB":1595775600,"t1s":5,"t2s":0,"t1":40,"t2":76}],[3963,{"d":35,"dB":1594467000,"t1s":0,"t2s":4,"t1":76,"t2":28}],[4014,{"d":30,"dB":1592586000,"t1s":0,"t2s":3,"t1":76,"t2":35}],[4025,{"d":29,"dB":1583593200,"t1s":1,"t2s":0,"t1":77,"t2":76}],[4047,{"d":27,"dB":1582466400,"t1s":3,"t2s":0,"t1":69,"t2":76}],[4084,{"d":23,"dB":1579359600,"t1s":1,"t2s":0,"t1":76,"t2":36}],[4154,{"d":16,"dB":1575813600,"t1s":1,"t2s":2,"t1":76,"t2":77}],[4214,{"d":10,"dB":1572193800,"t1s":1,"t2s":3,"t1":76,"t2":31}],[4219,{"d":9,"dB":1571493600,"t1s":0,"t2s":0,"t1":36,"t2":76}],[5565,{"d":27,"dB":1592933400,"t1s":0,"t2s":1,"t1":118,"t2":108}],[5568,{"d":26,"dB":1583082000,"t1s":3,"t2s":4,"t1":108,"t2":116}],[5630,{"d":20,"dB":1579442400,"t1s":2,"t2s":2,"t1":109,"t2":108}],[5638,{"d":19,"dB":1578751200,"t1s":0,"t2s":2,"t1":108,"t2":125}],[5652,{"d":18,"dB":1578319200,"t1s":4,"t2s":0,"t1":115,"t2":108}],[5700,{"d":13,"dB":1574624700,"t1s":2,"t2s":2,"t1":113,"t2":108}],[5709,{"d":12,"dB":1573385400,"t1s":5,"t2s":2,"t1":108,"t2":110}],[5718,{"d":11,"dB":1572780600,"t1s":0,"t2s":2,"t1":119,"t2":108}],[5729,{"d":10,"dB":1572465600,"t1s":3,"t2s":2,"t1":108,"t2":127}],[5746,{"d":9,"dB":1572184800,"t1s":1,"t2s":1,"t1":122,"t2":108}],[5749,{"d":8,"dB":1571576400,"t1s":2,"t2s":0,"t1":108,"t2":118}],[5764,{"d":7,"dB":1570366800,"t1s":1,"t2s":1,"t1":116,"t2":108}],[5768,{"d":6,"dB":1569772800,"t1s":1,"t2s":1,"t1":108,"t2":126}],[4312,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":47,"t2":62}],[4538,{"d":15,"dB":1575115200,"t1s":1,"t2s":2,"t1":48,"t2":62}],[6891,{"d":5,"dB":1603018800,"t1s":1,"t2s":1,"t1":77,"t2":71}],[6902,{"d":4,"dB":1601816400,"t1s":1,"t2s":0,"t1":69,"t2":71}],[6931,{"d":2,"dB":1600524000,"t1s":4,"t2s":3,"t1":131,"t2":71}],[4317,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":64,"t2":66}],[4325,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":62,"t2":64}],[4337,{"d":36,"dB":1594661400,"t1s":1,"t2s":2,"t1":64,"t2":52}],[4342,{"d":35,"dB":1594233000,"t1s":1,"t2s":3,"t1":58,"t2":64}],[4357,{"d":34,"dB":1593979200,"t1s":1,"t2s":4,"t1":64,"t2":59}],[4363,{"d":33,"dB":1593633600,"t1s":0,"t2s":2,"t1":60,"t2":64}],[4377,{"d":32,"dB":1593356400,"t1s":2,"t2s":0,"t1":64,"t2":49}],[4387,{"d":31,"dB":1592847000,"t1s":2,"t2s":2,"t1":64,"t2":55}],[4393,{"d":30,"dB":1592587800,"t1s":0,"t2s":1,"t1":86,"t2":64}],[4407,{"d":29,"dB":1592328600,"t1s":1,"t2s":0,"t1":64,"t2":87}],[4409,{"d":28,"dB":1592060400,"t1s":0,"t2s":1,"t1":51,"t2":64}],[4427,{"d":27,"dB":1583688600,"t1s":1,"t2s":2,"t1":64,"t2":47}],[4428,{"d":26,"dB":1583067600,"t1s":1,"t2s":0,"t1":57,"t2":64}],[4457,{"d":24,"dB":1581787800,"t1s":2,"t2s":1,"t1":64,"t2":63}],[4477,{"d":22,"dB":1580664600,"t1s":3,"t2s":1,"t1":64,"t2":85}],[4478,{"d":21,"dB":1579973400,"t1s":1,"t2s":2,"t1":48,"t2":64}],[4497,{"d":20,"dB":1579446000,"t1s":1,"t2s":2,"t1":64,"t2":56}],[4504,{"d":19,"dB":1578229200,"t1s":1,"t2s":2,"t1":52,"t2":64}],[4517,{"d":18,"dB":1576949400,"t1s":1,"t2s":0,"t1":64,"t2":58}],[4526,{"d":17,"dB":1576431000,"t1s":1,"t2s":2,"t1":55,"t2":64}],[4547,{"d":15,"dB":1575144000,"t1s":2,"t2s":1,"t1":49,"t2":64}],[4558,{"d":14,"dB":1574616600,"t1s":1,"t2s":3,"t1":64,"t2":51}],[4564,{"d":13,"dB":1573383600,"t1s":3,"t2s":1,"t1":87,"t2":64}],[4577,{"d":12,"dB":1572786000,"t1s":0,"t2s":0,"t1":64,"t2":57}],[4581,{"d":11,"dB":1572544800,"t1s":2,"t2s":1,"t1":66,"t2":64}],[4597,{"d":10,"dB":1572030000,"t1s":4,"t2s":1,"t1":64,"t2":48}],[4602,{"d":9,"dB":1571580000,"t1s":0,"t2s":1,"t1":56,"t2":64}],[4612,{"d":8,"dB":1570302000,"t1s":2,"t2s":1,"t1":85,"t2":64}],[4627,{"d":7,"dB":1569610800,"t1s":5,"t2s":1,"t1":64,"t2":60}],[4628,{"d":6,"dB":1569351600,"t1s":2,"t2s":1,"t1":59,"t2":64}],[5449,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":127,"t2":122}],[5465,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":122,"t2":116}],[5486,{"d":35,"dB":1595447100,"t1s":1,"t2s":1,"t1":122,"t2":126}],[5490,{"d":34,"dB":1595179800,"t1s":2,"t2s":0,"t1":110,"t2":122}],[5506,{"d":33,"dB":1594920600,"t1s":3,"t2s":0,"t1":122,"t2":117}],[5512,{"d":32,"dB":1594669500,"t1s":3,"t2s":1,"t1":112,"t2":122}],[5526,{"d":31,"dB":1594237500,"t1s":3,"t2s":1,"t1":122,"t2":109}],[5531,{"d":30,"dB":1593875700,"t1s":4,"t2s":1,"t1":115,"t2":122}],[5546,{"d":29,"dB":1593538200,"t1s":1,"t2s":2,"t1":122,"t2":121}],[5549,{"d":28,"dB":1593279000,"t1s":4,"t2s":2,"t1":108,"t2":122}],[5566,{"d":27,"dB":1592941500,"t1s":1,"t2s":0,"t1":122,"t2":124}],[5586,{"d":25,"dB":1592674200,"t1s":1,"t2s":1,"t1":122,"t2":114}],[5594,{"d":24,"dB":1581968700,"t1s":1,"t2s":0,"t1":125,"t2":122}],[5606,{"d":23,"dB":1581181200,"t1s":1,"t2s":3,"t1":122,"t2":120}],[5613,{"d":22,"dB":1580662800,"t1s":4,"t2s":0,"t1":113,"t2":122}],[5637,{"d":20,"dB":1579366800,"t1s":2,"t2s":1,"t1":123,"t2":122}],[5645,{"d":19,"dB":1578837600,"t1s":1,"t2s":0,"t1":122,"t2":127}],[5656,{"d":18,"dB":1578253500,"t1s":0,"t2s":2,"t1":116,"t2":122}],[5666,{"d":17,"dB":1576957500,"t1s":1,"t2s":2,"t1":122,"t2":118}],[5677,{"d":16,"dB":1576409400,"t1s":3,"t2s":3,"t1":126,"t2":122}],[5686,{"d":15,"dB":1575813600,"t1s":2,"t2s":1,"t1":122,"t2":110}],[5706,{"d":13,"dB":1574538300,"t1s":0,"t2s":3,"t1":122,"t2":112}],[5708,{"d":12,"dB":1573308000,"t1s":0,"t2s":4,"t1":109,"t2":122}],[5726,{"d":11,"dB":1572723900,"t1s":0,"t2s":1,"t1":122,"t2":115}],[5774,{"d":6,"dB":1569869100,"t1s":3,"t2s":2,"t1":114,"t2":122}],[5786,{"d":5,"dB":1569524400,"t1s":2,"t2s":1,"t1":122,"t2":125}],[3787,{"d":15,"dB":1575131400,"t1s":1,"t2s":2,"t1":41,"t2":18}],[6188,{"d":2,"dB":1598641200,"t1s":4,"t2s":1,"t1":18,"t2":7}],[4575,{"d":12,"dB":1572778800,"t1s":3,"t2s":0,"t1":74,"t2":87}],[3820,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":18,"t2":11}],[6179,{"d":3,"dB":1599850800,"t1s":0,"t2s":0,"t1":3,"t2":18}],[6204,{"d":1,"dB":1600196400,"t1s":2,"t2s":1,"t1":15,"t2":18}],[6930,{"d":3,"dB":1601204400,"t1s":0,"t2s":1,"t1":77,"t2":131}],[6932,{"d":1,"dB":1599928200,"t1s":4,"t2s":3,"t1":21,"t2":131}],[7494,{"d":4,"dB":1601742600,"t1s":1,"t2s":1,"t1":131,"t2":40}],[7498,{"d":5,"dB":1603134000,"t1s":0,"t2s":1,"t1":131,"t2":69}],[4367,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":49,"t2":57}],[4380,{"d":31,"dB":1593106200,"t1s":1,"t2s":0,"t1":66,"t2":49}],[4397,{"d":30,"dB":1592760600,"t1s":2,"t2s":0,"t1":49,"t2":85}],[4405,{"d":29,"dB":1592510400,"t1s":3,"t2s":0,"t1":62,"t2":49}],[4417,{"d":28,"dB":1591992000,"t1s":1,"t2s":1,"t1":49,"t2":63}],[4418,{"d":27,"dB":1583524800,"t1s":1,"t2s":1,"t1":48,"t2":49}],[4462,{"d":23,"dB":1581174000,"t1s":3,"t2s":0,"t1":58,"t2":49}],[4476,{"d":22,"dB":1580587200,"t1s":1,"t2s":0,"t1":49,"t2":51}],[4487,{"d":21,"dB":1579964400,"t1s":2,"t2s":0,"t1":49,"t2":59}],[4507,{"d":19,"dB":1578139200,"t1s":1,"t2s":0,"t1":49,"t2":66}],[4516,{"d":18,"dB":1576958400,"t1s":1,"t2s":1,"t1":74,"t2":49}],[4527,{"d":17,"dB":1576440000,"t1s":1,"t2s":1,"t1":49,"t2":62}],[4532,{"d":16,"dB":1575739800,"t1s":2,"t2s":4,"t1":63,"t2":49}],[4554,{"d":14,"dB":1574521200,"t1s":2,"t2s":1,"t1":60,"t2":49}],[4567,{"d":13,"dB":1573311600,"t1s":2,"t2s":0,"t1":49,"t2":86}],[4569,{"d":12,"dB":1572696000,"t1s":1,"t2s":2,"t1":56,"t2":49}],[4594,{"d":10,"dB":1572206400,"t1s":3,"t2s":1,"t1":85,"t2":49}],[4617,{"d":8,"dB":1570293000,"t1s":2,"t2s":1,"t1":49,"t2":48}],[4619,{"d":7,"dB":1569668400,"t1s":0,"t2s":1,"t1":57,"t2":49}],[4637,{"d":6,"dB":1569434400,"t1s":3,"t2s":3,"t1":49,"t2":58}],[4326,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":52,"t2":55}],[4346,{"d":35,"dB":1594402200,"t1s":2,"t2s":3,"t1":52,"t2":86}],[4353,{"d":34,"dB":1594056600,"t1s":1,"t2s":1,"t1":63,"t2":52}],[4365,{"d":33,"dB":1593711000,"t1s":2,"t2s":1,"t1":52,"t2":56}],[4385,{"d":31,"dB":1593019800,"t1s":0,"t2s":1,"t1":52,"t2":51}],[4398,{"d":29,"dB":1592501400,"t1s":2,"t2s":0,"t1":48,"t2":52}],[4415,{"d":28,"dB":1592164800,"t1s":1,"t2s":1,"t1":52,"t2":85}],[4420,{"d":27,"dB":1583602200,"t1s":1,"t2s":0,"t1":59,"t2":52}],[4484,{"d":21,"dB":1580059800,"t1s":3,"t2s":0,"t1":52,"t2":87}],[4495,{"d":20,"dB":1579438800,"t1s":3,"t2s":0,"t1":60,"t2":52}],[4513,{"d":18,"dB":1577019600,"t1s":3,"t2s":4,"t1":85,"t2":52}],[4525,{"d":17,"dB":1576335600,"t1s":2,"t2s":2,"t1":52,"t2":59}],[4536,{"d":16,"dB":1575817200,"t1s":0,"t2s":0,"t1":74,"t2":52}],[4545,{"d":15,"dB":1575126000,"t1s":4,"t2s":1,"t1":52,"t2":66}],[4555,{"d":14,"dB":1574539200,"t1s":3,"t2s":1,"t1":62,"t2":52}],[4566,{"d":13,"dB":1573243200,"t1s":1,"t2s":1,"t1":52,"t2":47}],[4570,{"d":12,"dB":1572811200,"t1s":1,"t2s":2,"t1":86,"t2":52}],[4586,{"d":11,"dB":1572458400,"t1s":1,"t2s":2,"t1":52,"t2":63}],[4590,{"d":10,"dB":1572174000,"t1s":0,"t2s":1,"t1":51,"t2":52}],[4615,{"d":8,"dB":1570379400,"t1s":1,"t2s":2,"t1":52,"t2":58}],[4626,{"d":7,"dB":1569783600,"t1s":3,"t2s":2,"t1":55,"t2":52}],[4635,{"d":6,"dB":1569524400,"t1s":3,"t2s":0,"t1":52,"t2":48}],[7200,{"d":1,"dB":1600005600,"t1s":1,"t2s":1,"t1":74,"t2":52}],[3845,{"d":9,"dB":1570374000,"t1s":0,"t2s":1,"t1":20,"t2":68}],[6155,{"d":6,"dB":1601823600,"t1s":2,"t2s":2,"t1":20,"t2":68}],[6167,{"d":5,"dB":1601132400,"t1s":0,"t2s":3,"t1":4,"t2":20}],[6176,{"d":4,"dB":1600542000,"t1s":2,"t2s":1,"t1":20,"t2":13}],[6185,{"d":3,"dB":1600002000,"t1s":2,"t2s":4,"t1":67,"t2":20}],[6189,{"d":2,"dB":1598713200,"t1s":2,"t2s":1,"t1":20,"t2":15}],[3933,{"d":38,"dB":1595775600,"t1s":0,"t2s":2,"t1":29,"t2":31}],[3944,{"d":37,"dB":1595170800,"t1s":3,"t2s":0,"t1":24,"t2":29}],[3953,{"d":36,"dB":1594918800,"t1s":2,"t2s":0,"t1":29,"t2":77}],[3959,{"d":35,"dB":1594576800,"t1s":4,"t2s":1,"t1":36,"t2":29}],[6898,{"d":4,"dB":1601809200,"t1s":0,"t2s":3,"t1":29,"t2":28}],[6908,{"d":3,"dB":1601220600,"t1s":2,"t2s":5,"t1":40,"t2":29}],[6926,{"d":1,"dB":1600002000,"t1s":0,"t2s":3,"t1":32,"t2":29}],[3653,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":19,"t2":13}],[3662,{"d":27,"dB":1583002800,"t1s":1,"t2s":1,"t1":13,"t2":68}],[3683,{"d":25,"dB":1581709500,"t1s":1,"t2s":0,"t1":13,"t2":15}],[3688,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":42,"t2":13}],[3749,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":16,"t2":13}],[3790,{"d":14,"dB":1574604000,"t1s":2,"t2s":1,"t1":3,"t2":13}],[3801,{"d":13,"dB":1573326000,"t1s":1,"t2s":0,"t1":13,"t2":7}],[3822,{"d":11,"dB":1572029100,"t1s":0,"t2s":1,"t1":8,"t2":13}],[3833,{"d":10,"dB":1571583600,"t1s":3,"t2s":2,"t1":13,"t2":20}],[3842,{"d":9,"dB":1570298400,"t1s":3,"t2s":1,"t1":15,"t2":13}],[3853,{"d":8,"dB":1569693600,"t1s":4,"t2s":1,"t1":13,"t2":75}],[3862,{"d":7,"dB":1569351600,"t1s":3,"t2s":1,"t1":13,"t2":19}],[4117,{"d":20,"dB":1577554200,"t1s":1,"t2s":2,"t1":28,"t2":29}],[3727,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":4,"t2":67}],[3747,{"d":19,"dB":1576957500,"t1s":2,"t2s":1,"t1":41,"t2":4}],[3765,{"d":17,"dB":1575813600,"t1s":3,"t2s":1,"t1":68,"t2":4}],[3776,{"d":16,"dB":1575482400,"t1s":4,"t2s":1,"t1":4,"t2":19}],[6186,{"d":3,"dB":1599937200,"t1s":2,"t2s":0,"t1":4,"t2":41}],[6195,{"d":2,"dB":1598792400,"t1s":2,"t2s":0,"t1":4,"t2":6}],[6198,{"d":1,"dB":1600369200,"t1s":0,"t2s":2,"t1":9,"t2":4}],[5452,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":115,"t2":116}],[5544,{"d":29,"dB":1593719100,"t1s":0,"t2s":2,"t1":116,"t2":124}],[5564,{"d":27,"dB":1593027900,"t1s":2,"t2s":1,"t1":116,"t2":120}],[5584,{"d":25,"dB":1582477200,"t1s":4,"t2s":0,"t1":116,"t2":113}],[5604,{"d":23,"dB":1581104700,"t1s":2,"t2s":3,"t1":116,"t2":127}],[5616,{"d":22,"dB":1580586300,"t1s":4,"t2s":2,"t1":123,"t2":116}],[5623,{"d":21,"dB":1580058000,"t1s":1,"t2s":1,"t1":116,"t2":121}],[5631,{"d":20,"dB":1579453200,"t1s":1,"t2s":3,"t1":117,"t2":116}],[5643,{"d":19,"dB":1578858300,"t1s":1,"t2s":2,"t1":116,"t2":115}],[5659,{"d":17,"dB":1576871100,"t1s":1,"t2s":4,"t1":110,"t2":116}],[5697,{"d":14,"dB":1575229500,"t1s":1,"t2s":3,"t1":126,"t2":116}],[5702,{"d":13,"dB":1574604000,"t1s":3,"t2s":0,"t1":116,"t2":109}],[5714,{"d":12,"dB":1573405200,"t1s":2,"t2s":0,"t1":114,"t2":116}],[5724,{"d":11,"dB":1572703200,"t1s":2,"t2s":1,"t1":116,"t2":111}],[5448,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":119,"t2":112}],[5462,{"d":37,"dB":1595957400,"t1s":1,"t2s":2,"t1":114,"t2":119}],[5473,{"d":36,"dB":1595619900,"t1s":1,"t2s":1,"t1":125,"t2":119}],[5478,{"d":35,"dB":1595352600,"t1s":1,"t2s":0,"t1":119,"t2":127}],[5497,{"d":34,"dB":1595085300,"t1s":1,"t2s":1,"t1":126,"t2":119}],[5498,{"d":33,"dB":1594755900,"t1s":6,"t2s":2,"t1":119,"t2":109}],[5513,{"d":32,"dB":1594496700,"t1s":2,"t2s":2,"t1":115,"t2":119}],[5518,{"d":31,"dB":1594237500,"t1s":2,"t2s":0,"t1":119,"t2":120}],[5529,{"d":30,"dB":1593970200,"t1s":0,"t2s":1,"t1":108,"t2":119}],[5538,{"d":29,"dB":1593711000,"t1s":2,"t2s":0,"t1":119,"t2":111}],[5557,{"d":28,"dB":1593365400,"t1s":2,"t2s":3,"t1":124,"t2":119}],[5558,{"d":27,"dB":1593027900,"t1s":3,"t2s":2,"t1":119,"t2":121}],[5578,{"d":25,"dB":1592760600,"t1s":4,"t2s":1,"t1":119,"t2":123}],[5599,{"d":23,"dB":1581170400,"t1s":1,"t2s":2,"t1":110,"t2":119}],[5640,{"d":19,"dB":1578771900,"t1s":1,"t2s":1,"t1":112,"t2":119}],[5658,{"d":17,"dB":1577014200,"t1s":5,"t2s":0,"t1":119,"t2":125}],[5668,{"d":16,"dB":1576418400,"t1s":2,"t2s":1,"t1":127,"t2":119}],[5678,{"d":15,"dB":1575727200,"t1s":3,"t2s":2,"t1":119,"t2":126}],[5688,{"d":14,"dB":1575122400,"t1s":0,"t2s":3,"t1":109,"t2":119}],[5698,{"d":13,"dB":1574517600,"t1s":1,"t2s":3,"t1":119,"t2":115}],[5715,{"d":12,"dB":1573394400,"t1s":0,"t2s":0,"t1":120,"t2":119}],[5738,{"d":9,"dB":1572184800,"t1s":7,"t2s":1,"t1":119,"t2":124}],[5758,{"d":7,"dB":1570366800,"t1s":3,"t2s":1,"t1":119,"t2":113}],[5784,{"d":5,"dB":1569430800,"t1s":0,"t2s":2,"t1":116,"t2":119}],[5788,{"d":4,"dB":1569168000,"t1s":2,"t2s":2,"t1":119,"t2":110}],[3994,{"d":32,"dB":1593717300,"t1s":4,"t2s":0,"t1":40,"t2":21}],[4043,{"d":27,"dB":1582574400,"t1s":3,"t2s":2,"t1":21,"t2":28}],[4054,{"d":26,"dB":1581787800,"t1s":0,"t2s":1,"t1":76,"t2":21}],[4073,{"d":24,"dB":1579809600,"t1s":1,"t2s":2,"t1":69,"t2":21}],[4137,{"d":18,"dB":1580327100,"t1s":0,"t2s":2,"t1":28,"t2":21}],[4190,{"d":12,"dB":1573403400,"t1s":3,"t2s":1,"t1":21,"t2":40}],[4211,{"d":10,"dB":1572193800,"t1s":2,"t2s":1,"t1":21,"t2":24}],[4238,{"d":7,"dB":1569670200,"t1s":0,"t2s":1,"t1":77,"t2":21}],[3935,{"d":38,"dB":1595775600,"t1s":1,"t2s":3,"t1":46,"t2":21}],[4149,{"d":16,"dB":1575730800,"t1s":0,"t2s":3,"t1":36,"t2":21}],[3975,{"d":34,"dB":1594227600,"t1s":1,"t2s":0,"t1":77,"t2":69}],[4007,{"d":31,"dB":1593018000,"t1s":1,"t2s":0,"t1":69,"t2":36}],[4017,{"d":30,"dB":1592670600,"t1s":0,"t2s":2,"t1":28,"t2":69}],[4035,{"d":28,"dB":1583071200,"t1s":2,"t2s":3,"t1":24,"t2":69}],[4063,{"d":25,"dB":1580578200,"t1s":0,"t2s":0,"t1":31,"t2":69}],[4127,{"d":19,"dB":1577475900,"t1s":3,"t2s":2,"t1":69,"t2":40}],[4134,{"d":18,"dB":1576940400,"t1s":1,"t2s":2,"t1":76,"t2":69}],[4147,{"d":17,"dB":1576418400,"t1s":1,"t2s":2,"t1":69,"t2":24}],[4162,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":69,"t2":28}],[4174,{"d":14,"dB":1575208800,"t1s":1,"t2s":1,"t1":69,"t2":77}],[4180,{"d":13,"dB":1574521200,"t1s":1,"t2s":2,"t1":36,"t2":69}],[4213,{"d":10,"dB":1572184800,"t1s":1,"t2s":1,"t1":46,"t2":69}],[4227,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":69,"t2":35}],[3954,{"d":36,"dB":1594832400,"t1s":2,"t2s":1,"t1":40,"t2":36}],[4024,{"d":29,"dB":1583685000,"t1s":2,"t2s":0,"t1":31,"t2":40}],[4053,{"d":26,"dB":1582140600,"t1s":2,"t2s":0,"t1":40,"t2":28}],[4172,{"d":14,"dB":1575117000,"t1s":2,"t2s":2,"t1":46,"t2":40}],[6920,{"d":2,"dB":1600715700,"t1s":1,"t2s":3,"t1":69,"t2":40}],[3974,{"d":34,"dB":1594227600,"t1s":5,"t2s":0,"t1":40,"t2":46}],[3985,{"d":33,"dB":1593972000,"t1s":1,"t2s":0,"t1":35,"t2":40}],[4065,{"d":25,"dB":1580661000,"t1s":2,"t2s":0,"t1":24,"t2":40}],[4072,{"d":24,"dB":1579635000,"t1s":0,"t2s":1,"t1":77,"t2":40}],[4112,{"d":20,"dB":1577642400,"t1s":2,"t2s":0,"t1":40,"t2":77}],[4152,{"d":16,"dB":1575739800,"t1s":1,"t2s":2,"t1":40,"t2":31}],[4204,{"d":11,"dB":1572706800,"t1s":2,"t2s":1,"t1":40,"t2":35}],[4231,{"d":8,"dB":1570366800,"t1s":0,"t2s":2,"t1":40,"t2":69}],[3970,{"d":34,"dB":1594314000,"t1s":0,"t2s":0,"t1":36,"t2":24}],[3982,{"d":33,"dB":1593871200,"t1s":5,"t2s":2,"t1":31,"t2":36}],[3990,{"d":32,"dB":1593622800,"t1s":1,"t2s":4,"t1":36,"t2":46}],[4055,{"d":26,"dB":1581256800,"t1s":2,"t2s":1,"t1":77,"t2":36}],[4173,{"d":14,"dB":1575126000,"t1s":3,"t2s":2,"t1":24,"t2":36}],[4191,{"d":12,"dB":1573311600,"t1s":2,"t2s":1,"t1":46,"t2":36}],[4200,{"d":11,"dB":1572697800,"t1s":1,"t2s":0,"t1":36,"t2":31}],[4240,{"d":7,"dB":1569679200,"t1s":2,"t2s":2,"t1":36,"t2":28}],[4316,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":55,"t2":49}],[4327,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":49,"t2":56}],[4332,{"d":36,"dB":1594575000,"t1s":1,"t2s":0,"t1":47,"t2":49}],[4437,{"d":26,"dB":1582988400,"t1s":2,"t2s":1,"t1":49,"t2":60}],[4446,{"d":25,"dB":1582392600,"t1s":3,"t2s":0,"t1":52,"t2":49}],[4493,{"d":20,"dB":1579431600,"t1s":4,"t2s":1,"t1":87,"t2":49}],[4587,{"d":11,"dB":1572458400,"t1s":1,"t2s":1,"t1":49,"t2":55}],[3715,{"d":22,"dB":1580574600,"t1s":5,"t2s":0,"t1":2,"t2":15}],[3811,{"d":12,"dB":1572637500,"t1s":2,"t2s":1,"t1":7,"t2":2}],[3945,{"d":37,"dB":1595437200,"t1s":1,"t2s":1,"t1":31,"t2":28}],[3962,{"d":35,"dB":1594666800,"t1s":2,"t2s":2,"t1":31,"t2":35}],[4002,{"d":31,"dB":1593018000,"t1s":3,"t2s":0,"t1":31,"t2":77}],[4015,{"d":30,"dB":1592594100,"t1s":1,"t2s":1,"t1":24,"t2":31}],[4124,{"d":19,"dB":1577381400,"t1s":4,"t2s":1,"t1":31,"t2":46}],[6890,{"d":5,"dB":1602961200,"t1s":1,"t2s":4,"t1":46,"t2":31}],[6899,{"d":4,"dB":1601825400,"t1s":1,"t2s":6,"t1":31,"t2":24}],[4094,{"d":22,"dB":1578754800,"t1s":4,"t2s":0,"t1":31,"t2":76}],[4163,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":31,"t2":24}],[4185,{"d":13,"dB":1574613000,"t1s":3,"t2s":3,"t1":77,"t2":31}],[4237,{"d":8,"dB":1570375800,"t1s":1,"t2s":0,"t1":46,"t2":31}],[3936,{"d":38,"dB":1595775600,"t1s":3,"t2s":1,"t1":35,"t2":77}],[3995,{"d":32,"dB":1593709200,"t1s":3,"t2s":1,"t1":77,"t2":24}],[4013,{"d":30,"dB":1592744400,"t1s":3,"t2s":0,"t1":46,"t2":77}],[4095,{"d":22,"dB":1578686400,"t1s":1,"t2s":0,"t1":77,"t2":28}],[4125,{"d":19,"dB":1577372400,"t1s":1,"t2s":1,"t1":77,"t2":33}],[4161,{"d":15,"dB":1575574200,"t1s":0,"t2s":2,"t1":77,"t2":46}],[4194,{"d":12,"dB":1573311600,"t1s":1,"t2s":1,"t1":24,"t2":77}],[4217,{"d":10,"dB":1572098400,"t1s":1,"t2s":1,"t1":28,"t2":77}],[3955,{"d":36,"dB":1594832400,"t1s":1,"t2s":3,"t1":46,"t2":24}],[3983,{"d":33,"dB":1593954900,"t1s":2,"t2s":2,"t1":46,"t2":28}],[4026,{"d":29,"dB":1583593200,"t1s":0,"t2s":1,"t1":35,"t2":46}],[4064,{"d":25,"dB":1580569200,"t1s":0,"t2s":0,"t1":46,"t2":76}],[4207,{"d":11,"dB":1572706800,"t1s":2,"t2s":3,"t1":28,"t2":46}],[6927,{"d":1,"dB":1599937200,"t1s":0,"t2s":2,"t1":28,"t2":46}],[4097,{"d":22,"dB":1578754800,"t1s":1,"t2s":1,"t1":69,"t2":46}],[6909,{"d":3,"dB":1601211600,"t1s":1,"t2s":1,"t1":24,"t2":46}],[4107,{"d":21,"dB":1577899800,"t1s":4,"t2s":0,"t1":28,"t2":36}],[3939,{"d":37,"dB":1595163600,"t1s":0,"t2s":2,"t1":36,"t2":35}],[4114,{"d":20,"dB":1577554200,"t1s":2,"t2s":2,"t1":76,"t2":24}],[6929,{"d":1,"dB":1600102800,"t1s":0,"t2s":2,"t1":77,"t2":69}],[4308,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":48,"t2":59}],[4324,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":60,"t2":48}],[4328,{"d":36,"dB":1594661400,"t1s":0,"t2s":0,"t1":48,"t2":58}],[4345,{"d":35,"dB":1594411200,"t1s":2,"t2s":0,"t1":62,"t2":48}],[4355,{"d":34,"dB":1593883800,"t1s":1,"t2s":0,"t1":74,"t2":48}],[4358,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":48,"t2":86}],[4378,{"d":31,"dB":1593019800,"t1s":0,"t2s":1,"t1":48,"t2":85}],[4390,{"d":30,"dB":1592740800,"t1s":6,"t2s":0,"t1":51,"t2":48}],[4410,{"d":28,"dB":1592049600,"t1s":2,"t2s":0,"t1":56,"t2":48}],[4432,{"d":26,"dB":1582997400,"t1s":1,"t2s":1,"t1":47,"t2":48}],[4438,{"d":25,"dB":1582462800,"t1s":2,"t2s":1,"t1":48,"t2":57}],[4453,{"d":24,"dB":1581768000,"t1s":1,"t2s":0,"t1":87,"t2":48}],[4458,{"d":23,"dB":1581105600,"t1s":2,"t2s":1,"t1":48,"t2":66}],[4475,{"d":22,"dB":1580664600,"t1s":1,"t2s":1,"t1":55,"t2":48}],[4498,{"d":19,"dB":1578236400,"t1s":1,"t2s":1,"t1":48,"t2":60}],[4508,{"d":18,"dB":1576940400,"t1s":4,"t2s":1,"t1":59,"t2":48}],[4518,{"d":17,"dB":1576267200,"t1s":1,"t2s":1,"t1":48,"t2":47}],[4530,{"d":16,"dB":1575730800,"t1s":3,"t2s":0,"t1":86,"t2":48}],[4548,{"d":14,"dB":1574607600,"t1s":0,"t2s":2,"t1":66,"t2":48}],[4557,{"d":13,"dB":1573300800,"t1s":3,"t2s":0,"t1":48,"t2":74}],[4573,{"d":12,"dB":1572793200,"t1s":4,"t2s":2,"t1":85,"t2":48}],[4598,{"d":9,"dB":1571565600,"t1s":2,"t2s":0,"t1":48,"t2":51}],[4618,{"d":7,"dB":1569765600,"t1s":2,"t2s":0,"t1":48,"t2":87}],[4037,{"d":28,"dB":1582988400,"t1s":3,"t2s":1,"t1":28,"t2":35}],[4243,{"d":7,"dB":1569679200,"t1s":2,"t2s":1,"t1":24,"t2":35}],[6901,{"d":4,"dB":1601809200,"t1s":2,"t2s":0,"t1":35,"t2":32}],[6919,{"d":2,"dB":1600599600,"t1s":2,"t2s":5,"t1":35,"t2":24}],[3654,{"d":28,"dB":1583607600,"t1s":1,"t2s":0,"t1":68,"t2":75}],[3737,{"d":20,"dB":1578769200,"t1s":2,"t2s":5,"t1":10,"t2":75}],[3741,{"d":19,"dB":1576957500,"t1s":4,"t2s":0,"t1":15,"t2":75}],[3751,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":75,"t2":19}],[3771,{"d":16,"dB":1575396000,"t1s":5,"t2s":0,"t1":75,"t2":41}],[3779,{"d":15,"dB":1575056700,"t1s":2,"t2s":1,"t1":9,"t2":75}],[3791,{"d":14,"dB":1574535600,"t1s":1,"t2s":1,"t1":75,"t2":8}],[3808,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":42,"t2":75}],[3818,{"d":11,"dB":1572112800,"t1s":2,"t2s":0,"t1":75,"t2":7}],[3839,{"d":9,"dB":1570298400,"t1s":2,"t2s":0,"t1":75,"t2":11}],[6158,{"d":5,"dB":1601211600,"t1s":3,"t2s":2,"t1":16,"t2":75}],[6168,{"d":4,"dB":1600606800,"t1s":3,"t2s":2,"t1":75,"t2":6}],[6180,{"d":3,"dB":1600002000,"t1s":0,"t2s":2,"t1":7,"t2":75}],[6197,{"d":2,"dB":1598814000,"t1s":2,"t2s":3,"t1":75,"t2":9}],[6206,{"d":1,"dB":1598187600,"t1s":4,"t2s":0,"t1":67,"t2":75}],[4366,{"d":33,"dB":1593633600,"t1s":0,"t2s":0,"t1":74,"t2":63}],[4386,{"d":31,"dB":1592933400,"t1s":1,"t2s":1,"t1":74,"t2":58}],[4406,{"d":29,"dB":1592415000,"t1s":0,"t2s":0,"t1":74,"t2":51}],[4412,{"d":28,"dB":1592069400,"t1s":1,"t2s":2,"t1":47,"t2":74}],[4426,{"d":27,"dB":1583672400,"t1s":1,"t2s":4,"t1":74,"t2":57}],[4435,{"d":26,"dB":1582920000,"t1s":1,"t2s":0,"t1":52,"t2":74}],[4447,{"d":25,"dB":1582470000,"t1s":2,"t2s":1,"t1":74,"t2":56}],[4451,{"d":24,"dB":1581796800,"t1s":2,"t2s":1,"t1":86,"t2":74}],[4467,{"d":23,"dB":1581183000,"t1s":1,"t2s":1,"t1":74,"t2":64}],[4473,{"d":22,"dB":1580578200,"t1s":0,"t2s":1,"t1":87,"t2":74}],[4485,{"d":21,"dB":1580068800,"t1s":0,"t2s":1,"t1":74,"t2":62}],[4494,{"d":20,"dB":1579368600,"t1s":0,"t2s":0,"t1":85,"t2":74}],[4505,{"d":19,"dB":1578074400,"t1s":2,"t2s":2,"t1":74,"t2":47}],[4523,{"d":17,"dB":1576407600,"t1s":2,"t2s":0,"t1":58,"t2":74}],[4541,{"d":15,"dB":1575057600,"t1s":0,"t2s":0,"t1":51,"t2":74}],[4556,{"d":14,"dB":1574625600,"t1s":0,"t2s":1,"t1":74,"t2":55}],[4580,{"d":11,"dB":1572380100,"t1s":5,"t2s":1,"t1":59,"t2":74}],[4595,{"d":10,"dB":1572107400,"t1s":2,"t2s":0,"t1":74,"t2":66}],[4599,{"d":9,"dB":1571589000,"t1s":1,"t2s":1,"t1":57,"t2":74}],[4622,{"d":7,"dB":1569751200,"t1s":0,"t2s":2,"t1":56,"t2":74}],[4636,{"d":6,"dB":1569344400,"t1s":1,"t2s":1,"t1":74,"t2":86}],[4006,{"d":31,"dB":1592939700,"t1s":2,"t2s":0,"t1":24,"t2":28}],[4076,{"d":24,"dB":1579721400,"t1s":2,"t2s":1,"t1":24,"t2":76}],[4187,{"d":13,"dB":1574512200,"t1s":2,"t2s":3,"t1":28,"t2":24}],[6892,{"d":5,"dB":1603035000,"t1s":3,"t2s":3,"t1":24,"t2":28}],[4384,{"d":31,"dB":1593028800,"t1s":2,"t2s":0,"t1":62,"t2":87}],[4414,{"d":28,"dB":1592155800,"t1s":3,"t2s":1,"t1":62,"t2":66}],[4454,{"d":24,"dB":1581883200,"t1s":2,"t2s":2,"t1":62,"t2":51}],[4464,{"d":23,"dB":1581260400,"t1s":1,"t2s":4,"t1":85,"t2":62}],[4502,{"d":19,"dB":1578150000,"t1s":0,"t2s":3,"t1":58,"t2":62}],[4515,{"d":18,"dB":1577044800,"t1s":0,"t2s":0,"t1":62,"t2":57}],[4589,{"d":10,"dB":1576695600,"t1s":0,"t2s":0,"t1":59,"t2":62}],[4336,{"d":36,"dB":1594584000,"t1s":2,"t2s":0,"t1":55,"t2":87}],[4338,{"d":35,"dB":1594324800,"t1s":1,"t2s":2,"t1":57,"t2":55}],[4356,{"d":34,"dB":1594065600,"t1s":1,"t2s":0,"t1":55,"t2":66}],[4361,{"d":33,"dB":1593543600,"t1s":0,"t2s":3,"t1":47,"t2":55}],[4396,{"d":30,"dB":1592596800,"t1s":0,"t2s":0,"t1":55,"t2":59}],[4402,{"d":29,"dB":1592242200,"t1s":1,"t2s":1,"t1":63,"t2":55}],[4416,{"d":28,"dB":1591905600,"t1s":2,"t2s":0,"t1":55,"t2":60}],[4419,{"d":27,"dB":1583593200,"t1s":2,"t2s":2,"t1":54,"t2":55}],[4442,{"d":25,"dB":1582479000,"t1s":0,"t2s":3,"t1":58,"t2":55}],[4455,{"d":24,"dB":1581850800,"t1s":2,"t2s":2,"t1":55,"t2":56}],[4486,{"d":21,"dB":1579982400,"t1s":2,"t2s":0,"t1":55,"t2":86}],[4496,{"d":20,"dB":1579359600,"t1s":2,"t2s":1,"t1":62,"t2":55}],[4512,{"d":18,"dB":1576929600,"t1s":0,"t2s":2,"t1":87,"t2":55}],[4533,{"d":16,"dB":1575835200,"t1s":1,"t2s":1,"t1":85,"t2":55}],[4546,{"d":15,"dB":1575198000,"t1s":1,"t2s":0,"t1":55,"t2":47}],[4565,{"d":13,"dB":1573416000,"t1s":1,"t2s":2,"t1":60,"t2":55}],[4596,{"d":10,"dB":1572197400,"t1s":2,"t2s":0,"t1":55,"t2":58}],[4607,{"d":9,"dB":1571598000,"t1s":1,"t2s":0,"t1":55,"t2":63}],[4608,{"d":8,"dB":1570388400,"t1s":4,"t2s":0,"t1":59,"t2":55}],[6911,{"d":3,"dB":1601229600,"t1s":4,"t2s":0,"t1":28,"t2":69}],[3672,{"d":26,"dB":1582314300,"t1s":0,"t2s":2,"t1":11,"t2":18}],[4319,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":59,"t2":85}],[4335,{"d":36,"dB":1594488600,"t1s":0,"t2s":1,"t1":74,"t2":59}],[4339,{"d":35,"dB":1594238400,"t1s":1,"t2s":0,"t1":59,"t2":56}],[4370,{"d":32,"dB":1593270000,"t1s":2,"t2s":2,"t1":51,"t2":59}],[4379,{"d":31,"dB":1592942400,"t1s":1,"t2s":0,"t1":59,"t2":57}],[4399,{"d":29,"dB":1592337600,"t1s":2,"t2s":0,"t1":59,"t2":47}],[4413,{"d":28,"dB":1592078400,"t1s":0,"t2s":4,"t1":87,"t2":59}],[4434,{"d":26,"dB":1583092800,"t1s":2,"t2s":0,"t1":62,"t2":59}],[4440,{"d":25,"dB":1582383600,"t1s":5,"t2s":0,"t1":59,"t2":66}],[4465,{"d":23,"dB":1581278400,"t1s":2,"t2s":3,"t1":60,"t2":59}],[4469,{"d":22,"dB":1580673600,"t1s":2,"t2s":1,"t1":59,"t2":63}],[4501,{"d":19,"dB":1578168000,"t1s":2,"t2s":2,"t1":56,"t2":59}],[4561,{"d":13,"dB":1573329600,"t1s":4,"t2s":1,"t1":59,"t2":51}],[4572,{"d":12,"dB":1572706800,"t1s":3,"t2s":1,"t1":63,"t2":59}],[4601,{"d":9,"dB":1571482800,"t1s":0,"t2s":3,"t1":66,"t2":59}],[4623,{"d":7,"dB":1569679200,"t1s":0,"t2s":2,"t1":58,"t2":59}],[3729,{"d":20,"dB":1578769200,"t1s":1,"t2s":1,"t1":16,"t2":19}],[3742,{"d":19,"dB":1576957500,"t1s":1,"t2s":2,"t1":8,"t2":16}],[3769,{"d":16,"dB":1575396000,"t1s":0,"t2s":2,"t1":16,"t2":9}],[3789,{"d":14,"dB":1574535600,"t1s":1,"t2s":0,"t1":16,"t2":67}],[3805,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":68,"t2":16}],[3809,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":16,"t2":41}],[3821,{"d":11,"dB":1572112800,"t1s":0,"t2s":0,"t1":15,"t2":16}],[3848,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":16,"t2":42}],[6154,{"d":6,"dB":1601665200,"t1s":6,"t2s":1,"t1":2,"t2":16}],[6173,{"d":4,"dB":1600606800,"t1s":4,"t2s":1,"t1":15,"t2":16}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.serie-a.20201021.json b/src/test/resources/__files/mlnstats.serie-a.20201021.json deleted file mode 100644 index 3d81a5f..0000000 --- a/src/test/resources/__files/mlnstats.serie-a.20201021.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2020-10-21T15:41:43.077Z","mL":{"i":5,"n":"Serie A","cN":"Serie-A","aS":{"i":18,"n":"Serie A 2020-2021","cN":"Serie-A-2020-2021","mD":38,"cD":{"d":4,"lD":4,"p":0}},"lS":{"i":13,"n":"Serie A 2019-2020","cN":"Serie-A-2019-2020","mD":38}},"le":[[5,"Serie-A"],[1,"Ligue-1"],[3,"Liga"],[4,"Ligue-2"],[2,"Premier-League"]],"p":[[885,{"n":"de Roon","f":"Marten","fp":"MD","r":18,"c":119,"s":{"g":1,"s":21.5,"n":4,"a":5.38,"d":1.11,"Sg":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1.32,"Og":3,"Oao":1,"Os":194,"On":36,"Oa":5.39,"Od":1.15,"pd":1,"pm":35},"p":[[4,{"n":4,"e":7449}],[3,{"n":6,"e":7459}],[1,{"n":5,"e":7476,"s":1}],[2,{"n":6.5,"e":7463,"g":1}],[-38,{"n":5,"e":5448}],[-37,{"n":4.5,"e":5462}],[-36,{"n":5.5,"e":5473}],[-35,{"n":5,"e":5478}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":8,"e":5498,"g":1}],[-32,{"n":4,"e":5513}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":6,"e":5529}],[-29,{"n":6.5,"e":5538}],[-28,{"n":4,"e":5557,"s":1}],[-27,{"n":4.5,"e":5558,"a":1}],[-25,{"n":5.5,"e":5578}],[-26,{"n":5,"e":5571}],[-24,{"n":5,"e":5588}],[-22,{"n":5,"e":5608}],[-21,{"n":4.5,"e":5626}],[-20,{"n":3.5,"e":5628}],[-19,{"n":5.5,"e":5640}],[-18,{"n":6.5,"e":5648}],[-17,{"n":7.5,"e":5658}],[-16,{"n":5,"e":5668}],[-15,{"n":5,"e":5678,"s":1}],[-14,{"n":4.5,"e":5688}],[-13,{"n":5,"e":5698}],[-12,{"n":6,"e":5715}],[-10,{"n":5,"e":5733}],[-9,{"n":8,"e":5738}],[-8,{"n":4,"e":5751,"s":1}],[-7,{"n":5.5,"e":5758}],[-5,{"n":8,"e":5784,"g":1}],[-4,{"n":5.5,"e":5788}]],"fo":[[5478,[{"t":"Y"}]],[5558,[{"t":"Y"}]]]}],[1610,{"n":"Muriel","f":"Luis","fp":"A","r":32,"c":119,"s":{"g":2,"s":21,"n":4,"a":5.25,"d":1.19,"Sg":2,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.19,"Og":17,"Os":182,"On":35,"Oa":5.2,"Od":1.23,"pa":35},"p":[[-11,{"n":4.5,"e":5718}],[-38,{"n":6,"e":5448,"s":1}],[-37,{"n":5,"e":5462,"s":1}],[-36,{"n":5,"e":5473,"s":1}],[-35,{"n":6.5,"e":5478,"g":1,"s":1}],[-34,{"n":4,"e":5497,"s":1}],[-32,{"n":4.5,"e":5513,"s":1}],[-31,{"n":6,"e":5518,"g":1,"s":1}],[-30,{"n":6,"e":5529,"g":1}],[-29,{"n":4.5,"e":5538,"s":1}],[-28,{"n":8,"e":5557,"g":2,"s":1}],[-27,{"n":5,"e":5558,"s":1}],[-26,{"n":6,"e":5571,"g":1,"s":1}],[-25,{"n":4.5,"e":5578,"s":1}],[-24,{"n":5,"e":5588,"s":1}],[-22,{"n":4.5,"e":5608,"s":1}],[-21,{"n":7,"e":5626,"g":2,"s":1}],[-20,{"n":4.5,"e":5628,"s":1}],[-19,{"n":3.5,"e":5640,"s":1}],[-18,{"n":5,"e":5648}],[-17,{"n":6,"e":5658,"g":1,"s":1}],[-16,{"n":3,"e":5668}],[-15,{"n":4.5,"e":5678,"g":1}],[-14,{"n":5,"e":5688}],[-13,{"n":4.5,"e":5698,"s":1}],[-12,{"n":3.5,"e":5715}],[-10,{"n":5,"e":5733,"s":1}],[-9,{"n":8,"e":5738,"g":3}],[-8,{"n":7.5,"e":5751,"g":2}],[-7,{"n":5,"e":5758,"s":1}],[-4,{"n":4,"e":5788}],[4,{"n":4.5,"e":7449,"s":1}],[3,{"n":6,"e":7459,"g":1}],[2,{"n":6.5,"e":7463,"g":1}],[1,{"n":4,"e":7476,"s":1}]],"fo":[[5578,[{"t":"Y"}]]]}],[1940,{"n":"Mojica","f":"Johan","fp":"DL","r":9,"c":119,"s":{"s":19,"n":4,"a":4.75,"d":0.5,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.5,"Os":19,"On":4,"Oa":4.75,"Od":0.5,"pd":4},"p":[[4,{"n":4,"e":7449,"s":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":5,"e":7476,"s":1}]]}],[2350,{"n":"Piccini","f":"Cristiano","fp":"DL","r":7,"c":119}],[4191,{"n":"Carnesecchi","f":"Marco","fp":"G","r":1,"c":119}],[4248,{"n":"Pessina","f":"Matteo","fp":"MO","r":16,"c":119,"s":{"Og":6,"Os":174,"On":32,"Oa":5.44,"Od":0.81,"pm":14,"pa":18},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":4,"e":5477}],[-35,{"n":6,"e":5486}],[-33,{"n":6.5,"e":5502,"g":1}],[-32,{"n":5,"e":5510}],[-31,{"n":5.5,"e":5527}],[-29,{"n":6.5,"e":5547,"g":1,"s":1}],[-28,{"n":7,"e":5556,"g":1}],[-27,{"n":5,"e":5567,"s":1}],[-26,{"n":5.5,"e":5575}],[-24,{"n":5,"e":5597}],[-23,{"n":5.5,"e":5607}],[-17,{"n":6,"e":5661}],[-22,{"n":5,"e":5614}],[-21,{"n":7,"e":5627,"g":1}],[-20,{"n":5,"e":5629}],[-19,{"n":5,"e":5647}],[-18,{"n":6.5,"e":5657}],[-16,{"n":4.5,"e":5677}],[-14,{"n":4,"e":5697}],[-13,{"n":6,"e":5707}],[-12,{"n":6,"e":5710}],[-11,{"n":6,"e":5727,"g":1,"s":1}],[-10,{"n":5,"e":5734,"s":1}],[-9,{"n":4.5,"e":5747}],[-8,{"n":5,"e":5753}],[-7,{"n":6,"e":5767}],[-6,{"n":5,"e":5768,"s":1}],[-5,{"n":5,"e":5787}],[-34,{"n":5.5,"e":5497,"g":1}],[-15,{"n":5.5,"e":5678}]],"fo":[[5451,[{"t":"I"}]],[5497,[{"t":"Y"}]],[5502,[{"t":"Y"}]],[5547,[{"t":"Y"}]]]}],[4340,{"n":"Depaoli","f":"Fabio","fp":"DL","r":10,"c":119,"s":{"s":11.5,"n":3,"a":3.83,"d":0.76,"Ss":3,"Sn":1,"Sa":3,"Os":145,"On":30,"Oa":4.83,"Od":0.91,"pd":13,"pm":17},"p":[[2,{"n":4,"e":7488,"s":1}],[1,{"n":4.5,"e":7474}],[-38,{"n":5,"e":5450}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":5.5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":6.5,"e":5517}],[-30,{"n":5,"e":5535,"s":1}],[-29,{"n":6.5,"e":5543}],[-28,{"n":5,"e":5555}],[-27,{"n":5.5,"e":5564}],[-25,{"n":4.5,"e":5583,"s":1}],[-24,{"n":5,"e":5595,"s":1}],[-18,{"n":4.5,"e":5654,"s":1}],[-17,{"n":4.5,"e":5664}],[-16,{"n":4.5,"e":5672}],[-13,{"n":5,"e":5704}],[-11,{"n":6,"e":5725}],[-10,{"n":4.5,"e":5735}],[-9,{"n":4.5,"e":5739,"s":1}],[-8,{"n":4.5,"e":5755,"s":1}],[-6,{"n":4,"e":5775}],[-5,{"n":3.5,"e":5779}],[-31,{"n":5,"e":5518}],[-26,{"n":7,"e":5575}],[-12,{"n":4.5,"e":5715}],[-7,{"n":4,"e":5767}],[4,{"n":3,"e":7449}]],"fo":[[5472,[{"t":"Y"}]]]}],[4342,{"n":"Romero","f":"Cristian","fp":"DC","r":10,"c":119,"s":{"s":15,"n":3,"a":5,"d":1.32,"Ss":9,"Sn":2,"Sa":4.5,"Sd":1.41,"Og":1,"Os":145,"On":30,"Oa":4.83,"Od":1.15,"pd":30},"p":[[-37,{"n":2.5,"e":5464}],[-36,{"n":3.5,"e":5471}],[-34,{"n":5,"e":5491}],[-30,{"n":4.5,"e":5537}],[-29,{"n":4,"e":5541}],[-28,{"n":6.5,"e":5548}],[-27,{"n":3,"e":5561}],[-26,{"n":5,"e":5572}],[-21,{"n":5.5,"e":5619}],[-20,{"n":3,"e":5631}],[-18,{"n":6,"e":5651}],[-17,{"n":3,"e":5660}],[-15,{"n":5.5,"e":5682}],[-14,{"n":5,"e":5691}],[-13,{"n":6.5,"e":5703}],[-12,{"n":6,"e":5713}],[-11,{"n":4.5,"e":5721}],[-10,{"n":6,"e":5730}],[-9,{"n":6,"e":5741}],[-7,{"n":4.5,"e":5762}],[-6,{"n":3.5,"e":5770}],[-5,{"n":5.5,"e":5780}],[-38,{"n":6,"e":5451,"g":1}],[-35,{"n":5.5,"e":5484}],[-22,{"n":5,"e":5608}],[-19,{"n":4,"e":5647}],[-16,{"n":5,"e":5672}],[4,{"n":3.5,"e":7449}],[3,{"n":5.5,"e":7459}],[1,{"n":6,"e":7476,"s":1}]],"fo":[[5484,[{"t":"I"}]],[5451,[{"t":"Y"},{"t":"O"}]],[5464,[{"t":"Y"}]],[5471,[{"t":"Y"}]],[5491,[{"t":"Y"}]]]}],[4450,{"n":"Gosens","f":"Robin","fp":"DL","r":29,"c":119,"s":{"g":1,"s":21,"n":4,"a":5.25,"d":2.33,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":2.33,"Og":9,"Os":194,"On":35,"Oa":5.54,"Od":1.26,"pd":4,"pm":31},"p":[[-23,{"n":5,"e":5599}],[-6,{"n":6.5,"e":5776,"g":1}],[-38,{"n":4,"e":5448}],[-37,{"n":6,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":5,"e":5478}],[-34,{"n":4,"e":5497}],[-33,{"n":7,"e":5498}],[-31,{"n":5.5,"e":5518}],[-30,{"n":5,"e":5529,"s":1}],[-29,{"n":7,"e":5538,"g":1}],[-28,{"n":5,"e":5557,"s":1}],[-27,{"n":6.5,"e":5558,"g":1}],[-26,{"n":4.5,"e":5571}],[-25,{"n":5,"e":5578}],[-24,{"n":6.5,"e":5588}],[-22,{"n":5,"e":5608}],[-21,{"n":7.5,"e":5626,"g":1}],[-20,{"n":4.5,"e":5628}],[-19,{"n":7,"e":5640,"g":1}],[-18,{"n":8,"e":5648,"g":1}],[-17,{"n":7,"e":5658}],[-16,{"n":5,"e":5668}],[-14,{"n":5,"e":5688}],[-13,{"n":6,"e":5698,"g":1}],[-11,{"n":4.5,"e":5718}],[-10,{"n":5,"e":5733}],[-8,{"n":5,"e":5751}],[-7,{"n":7,"e":5758,"g":1}],[-5,{"n":5,"e":5784,"s":1}],[-4,{"n":4,"e":5788}],[4,{"n":2.5,"e":7449}],[3,{"n":6,"e":7459}],[2,{"n":4.5,"e":7463}],[1,{"n":8,"e":7476,"g":1}]],"fo":[[5478,[{"t":"Y"}]],[7449,[{"t":"Y"}]]]}],[4454,{"n":"Caldara","f":"Mattia","fp":"DC","r":7,"c":119,"s":{"s":4,"n":1,"a":4,"Os":77,"On":15,"Oa":5.13,"Od":0.85,"pd":15},"p":[[-38,{"n":5,"e":5448}],[-37,{"n":5.5,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":5,"e":5498}],[-32,{"n":5,"e":5513,"s":1}],[-31,{"n":6,"e":5518}],[-30,{"n":6,"e":5529}],[-29,{"n":6,"e":5538}],[-28,{"n":4,"e":5557}],[-26,{"n":4.5,"e":5571}],[-25,{"n":7,"e":5578}],[-20,{"n":4,"e":5628}],[2,{"n":4,"e":7463}]],"fo":[[5557,[{"t":"Y"}]],[7463,[{"t":"Y"}]]]}],[4471,{"n":"Hateboer","f":"Hans","fp":"DL","r":19,"c":119,"s":{"g":2,"s":18,"n":3,"a":6,"d":1.32,"Og":2,"Os":161.5,"On":32,"Oa":5.05,"Od":0.74,"pd":8,"pm":24},"p":[[-38,{"n":5,"e":5448,"s":1}],[-37,{"n":5.5,"e":5462,"s":1}],[-36,{"n":5,"e":5473}],[-34,{"n":4.5,"e":5497}],[-32,{"n":5,"e":5513}],[-31,{"n":6,"e":5518}],[-30,{"n":5.5,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":5,"e":5557}],[-27,{"n":6,"e":5558}],[-26,{"n":4,"e":5571}],[-25,{"n":5,"e":5578}],[-24,{"n":4.5,"e":5588}],[-22,{"n":3.5,"e":5608}],[-21,{"n":5.5,"e":5626}],[-19,{"n":5,"e":5640}],[-18,{"n":5,"e":5648}],[-17,{"n":5,"e":5658,"s":1}],[-16,{"n":5,"e":5668,"s":1}],[-15,{"n":4.5,"e":5678}],[-14,{"n":4.5,"e":5688,"s":1}],[-13,{"n":4,"e":5698}],[-12,{"n":5,"e":5715}],[-11,{"n":5,"e":5718,"s":1}],[-10,{"n":4.5,"e":5733}],[-9,{"n":4.5,"e":5738}],[-8,{"n":4.5,"e":5751}],[-6,{"n":6,"e":5776}],[-5,{"n":6,"e":5784}],[3,{"n":4.5,"e":7459}],[2,{"n":6.5,"e":7463,"g":1}],[1,{"n":7,"e":7476,"g":1}]],"fo":[[5497,[{"t":"Y"}]],[5513,[{"t":"Y"}]],[5529,[{"t":"Y"}]]],"a":{"m":15,"a":19,"M":27,"n":6}}],[4485,{"n":"Pasalic","f":"Mario","fp":"MO","r":25,"c":119,"s":{"g":1,"s":21.5,"n":4,"a":5.38,"d":1.89,"Sg":1,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":1.89,"Og":10,"Oao":1,"Os":195,"On":36,"Oa":5.42,"Od":1.47,"pm":27,"pa":9},"p":[[-38,{"n":4,"e":5448}],[-37,{"n":4,"e":5462}],[-36,{"n":4.5,"e":5473,"s":1}],[-35,{"n":4.5,"e":5478}],[-34,{"n":5.5,"e":5497}],[-33,{"n":8.5,"e":5498,"g":3}],[-32,{"n":5,"e":5513,"s":1}],[-31,{"n":5,"e":5518}],[-30,{"n":5.5,"e":5529}],[-29,{"n":7,"e":5538,"g":1}],[-28,{"n":4,"e":5557}],[-26,{"n":8,"e":5571}],[-25,{"n":5,"e":5578}],[-24,{"n":7,"e":5588,"g":1,"s":1}],[-23,{"n":5,"e":5599}],[-22,{"n":4.5,"e":5608}],[-21,{"n":5,"e":5626,"s":1}],[-20,{"n":3.5,"e":5628}],[-19,{"n":4.5,"e":5640}],[-17,{"n":8.5,"e":5658,"g":1}],[-16,{"n":4.5,"e":5668}],[-15,{"n":4.5,"e":5678}],[-14,{"n":8,"e":5688,"g":2}],[-13,{"n":5,"e":5698}],[-12,{"n":6,"e":5715}],[-11,{"n":3.5,"e":5718,"a":1}],[-10,{"n":4,"e":5733}],[-9,{"n":7,"e":5738,"g":1}],[-8,{"n":5.5,"e":5751}],[-6,{"n":7,"e":5776}],[-5,{"n":5.5,"e":5784,"s":1}],[-4,{"n":4.5,"e":5788}],[4,{"n":3.5,"e":7449}],[3,{"n":8,"e":7459,"g":1}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":5,"e":7476}]],"fo":[[5513,[{"t":"Y"}]],[5578,[{"t":"Y"}]]]}],[4507,{"n":"Gollini","f":"Pierluigi","fp":"G","r":5,"c":119,"s":{"Os":163,"On":30,"Oa":5.43,"Od":1.09,"pg":30},"p":[[-38,{"n":4,"e":5448}],[-37,{"n":5,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5478}],[-34,{"n":6.5,"e":5497}],[-32,{"n":6,"e":5513}],[-31,{"n":6.5,"e":5518}],[-29,{"n":7.5,"e":5538}],[-28,{"n":5,"e":5557}],[-27,{"n":5,"e":5558}],[-26,{"n":4,"e":5571}],[-25,{"n":6,"e":5578}],[-24,{"n":4.5,"e":5588}],[-23,{"n":6,"e":5599}],[-22,{"n":5.5,"e":5608}],[-21,{"n":7,"e":5626}],[-19,{"n":5,"e":5640}],[-17,{"n":6,"e":5658}],[-16,{"n":5,"e":5668}],[-15,{"n":3,"e":5678}],[-14,{"n":7,"e":5688}],[-13,{"n":4,"e":5698}],[-12,{"n":6,"e":5715}],[-11,{"n":5,"e":5718}],[-10,{"n":7,"e":5733}],[-9,{"n":5.5,"e":5738}],[-8,{"n":5,"e":5751}],[-7,{"n":4.5,"e":5758}],[-5,{"n":6.5,"e":5784}],[-4,{"n":4,"e":5788}]],"fo":[[5448,[{"t":"I"}]]]}],[4611,{"n":"Zapata","f":"Duván","fp":"A","r":33,"c":119,"s":{"g":1,"s":21.5,"n":4,"a":5.38,"d":1.49,"Sg":1,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":1.49,"Og":16,"Os":162,"On":29,"Oa":5.59,"Od":1.32,"pa":29},"p":[[-38,{"n":3.5,"e":5448}],[-37,{"n":5.5,"e":5462}],[-36,{"n":6.5,"e":5473,"g":1}],[-35,{"n":5,"e":5478}],[-34,{"n":6.5,"e":5497,"g":1}],[-33,{"n":5,"e":5498,"g":1}],[-32,{"n":6,"e":5513,"g":1}],[-31,{"n":5.5,"e":5518}],[-30,{"n":4.5,"e":5529,"s":1}],[-29,{"n":5.5,"e":5538}],[-28,{"n":6.5,"e":5557,"g":1}],[-27,{"n":3.5,"e":5558}],[-26,{"n":8.5,"e":5571,"g":3}],[-25,{"n":7.5,"e":5578,"g":2}],[-24,{"n":4,"e":5588}],[-23,{"n":6,"e":5599,"g":1}],[-22,{"n":6.5,"e":5608}],[-21,{"n":6,"e":5626,"g":1}],[-20,{"n":6,"e":5628}],[-19,{"n":4,"e":5640}],[-18,{"n":4.5,"e":5648,"s":1}],[-7,{"n":6.5,"e":5758,"g":1}],[-6,{"n":7,"e":5776,"g":1}],[-5,{"n":7,"e":5784,"g":1,"s":1}],[-4,{"n":3.5,"e":5788}],[4,{"n":3.5,"e":7449}],[3,{"n":7,"e":7459,"g":1}],[2,{"n":6,"e":7463}],[1,{"n":5,"e":7476}]],"a":{"m":37,"a":56,"M":81,"n":5}}],[4623,{"n":"Djimsiti","f":"Berat","fp":"DC","r":18,"c":119,"s":{"s":16.5,"n":3,"a":5.5,"d":0.5,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":2,"Os":180,"On":34,"Oa":5.29,"Od":0.82,"pd":34},"p":[[-38,{"n":3.5,"e":5448}],[-37,{"n":5.5,"e":5462,"s":1}],[-36,{"n":5,"e":5473}],[-35,{"n":5.5,"e":5478}],[-34,{"n":5,"e":5497}],[-33,{"n":5.5,"e":5498}],[-32,{"n":5.5,"e":5513}],[-31,{"n":4.5,"e":5518}],[-29,{"n":6,"e":5538}],[-28,{"n":4,"e":5557}],[-27,{"n":5,"e":5558}],[-25,{"n":7,"e":5578,"g":1}],[-24,{"n":6,"e":5588}],[-23,{"n":5.5,"e":5599}],[-22,{"n":5,"e":5608}],[-21,{"n":5.5,"e":5626}],[-20,{"n":4.5,"e":5628,"s":1}],[-19,{"n":5,"e":5640}],[-18,{"n":6.5,"e":5648}],[-17,{"n":6,"e":5658}],[-16,{"n":4.5,"e":5668}],[-15,{"n":7,"e":5678,"g":1}],[-14,{"n":5.5,"e":5688}],[-13,{"n":3.5,"e":5698}],[-12,{"n":6,"e":5715}],[-11,{"n":5,"e":5718}],[-10,{"n":5,"e":5733}],[-9,{"n":4.5,"e":5738}],[-7,{"n":5.5,"e":5758}],[-6,{"n":6,"e":5776}],[-4,{"n":5,"e":5788}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":5.5,"e":7459}],[1,{"n":6,"e":7476}]],"fo":[[5478,[{"t":"I"}]],[5448,[{"t":"Y"}]],[5518,[{"t":"Y"}]],[5578,[{"t":"Y"}]],[7449,[{"t":"Y"}]],[7476,[{"t":"Y"}]]]}],[4639,{"n":"Palomino","f":"José Luis","fp":"DC","r":19,"c":119,"s":{"s":20.5,"n":4,"a":5.13,"d":1.65,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":1.65,"Og":2,"Oao":1,"Os":174,"On":33,"Oa":5.27,"Od":0.96,"pd":33},"p":[[-37,{"n":5,"e":5462}],[-35,{"n":6,"e":5478}],[-34,{"n":5,"e":5497}],[-32,{"n":5.5,"e":5513}],[-30,{"n":6,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":5,"e":5557,"s":1}],[-27,{"n":5.5,"e":5558,"g":1}],[-26,{"n":5,"e":5571}],[-25,{"n":5.5,"e":5578}],[-24,{"n":6.5,"e":5588,"g":1}],[-23,{"n":5,"e":5599}],[-22,{"n":5.5,"e":5608}],[-21,{"n":7.5,"e":5626}],[-20,{"n":4,"e":5628}],[-19,{"n":5.5,"e":5640}],[-18,{"n":6,"e":5648}],[-17,{"n":6,"e":5658}],[-16,{"n":5,"e":5668}],[-15,{"n":4.5,"e":5678}],[-14,{"n":5,"e":5688}],[-13,{"n":3.5,"e":5698}],[-12,{"n":6,"e":5715}],[-11,{"n":4.5,"e":5718}],[-10,{"n":5,"e":5733}],[-8,{"n":4,"e":5751}],[-7,{"n":6.5,"e":5758}],[-5,{"n":6,"e":5784}],[-4,{"n":4,"e":5788,"a":1}],[4,{"n":3,"e":7449}],[3,{"n":7,"e":7459}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":5.5,"e":7476}]],"fo":[[5462,[{"t":"I"}]],[5478,[{"t":"I"}]],[5529,[{"t":"Y"}]]]}],[4641,{"n":"Freuler","f":"Remo","fp":"MD","r":18,"c":119,"s":{"s":16.5,"n":3,"a":5.5,"d":0.5,"Og":2,"Os":173,"On":32,"Oa":5.41,"Od":1,"pm":31,"pa":1},"p":[[-38,{"n":4.5,"e":5448}],[-37,{"n":4,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5478}],[-34,{"n":4,"e":5497}],[-32,{"n":5.5,"e":5513}],[-31,{"n":5,"e":5518}],[-29,{"n":5.5,"e":5538}],[-28,{"n":5.5,"e":5557}],[-27,{"n":6,"e":5558}],[-26,{"n":6.5,"e":5571}],[-25,{"n":5,"e":5578}],[-24,{"n":5.5,"e":5588}],[-23,{"n":6,"e":5599}],[-22,{"n":4.5,"e":5608,"s":1}],[-21,{"n":7,"e":5626}],[-20,{"n":4,"e":5628}],[-18,{"n":8,"e":5648,"g":1}],[-17,{"n":5,"e":5658,"s":1}],[-16,{"n":4.5,"e":5668}],[-15,{"n":4.5,"e":5678}],[-14,{"n":5,"e":5688,"s":1}],[-13,{"n":4,"e":5698}],[-11,{"n":4.5,"e":5718}],[-10,{"n":6,"e":5733,"g":1}],[-8,{"n":6.5,"e":5751}],[-7,{"n":6,"e":5758}],[-6,{"n":5.5,"e":5776}],[-5,{"n":7.5,"e":5784}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5.5,"e":7463}],[1,{"n":6,"e":7476}]],"fo":[[5478,[{"t":"Y"}]],[7463,[{"t":"Y"}]],[7476,[{"t":"Y"}]]]}],[4680,{"n":"Rossi","f":"Francesco","fp":"G","r":3,"c":119,"s":{"Os":4,"On":1,"Oa":4,"pg":1},"p":[[-33,{"n":4,"e":5498,"s":1}]]}],[4698,{"n":"Rafael Tolói","f":"","fp":"DC","r":15,"c":119,"s":{"s":13,"n":3,"a":4.33,"d":1.61,"Ss":2.5,"Sn":1,"Sa":2.5,"Og":2,"Os":166,"On":33,"Oa":5.03,"Od":1.16,"pd":33},"p":[[-38,{"n":3.5,"e":5448}],[-36,{"n":3.5,"e":5473}],[-35,{"n":5.5,"e":5478}],[-34,{"n":4.5,"e":5497}],[-32,{"n":5,"e":5513}],[-31,{"n":7.5,"e":5518,"g":1}],[-30,{"n":4.5,"e":5529,"s":1}],[-29,{"n":6,"e":5538}],[-28,{"n":5,"e":5557}],[-27,{"n":4,"e":5558}],[-25,{"n":4.5,"e":5578,"s":1}],[-24,{"n":5,"e":5588}],[-23,{"n":4.5,"e":5599}],[-22,{"n":6,"e":5608,"g":1}],[-21,{"n":7.5,"e":5626}],[-20,{"n":3.5,"e":5628}],[-19,{"n":5,"e":5640}],[-18,{"n":6,"e":5648}],[-17,{"n":6,"e":5658}],[-16,{"n":4,"e":5668}],[-15,{"n":6,"e":5678}],[-13,{"n":4.5,"e":5698}],[-12,{"n":5,"e":5715}],[-11,{"n":3,"e":5718}],[-10,{"n":6.5,"e":5733}],[-9,{"n":5.5,"e":5738}],[-8,{"n":6,"e":5751}],[-7,{"n":4.5,"e":5758,"s":1}],[-6,{"n":5,"e":5776}],[-5,{"n":6,"e":5784}],[4,{"n":2.5,"e":7449}],[2,{"n":5,"e":7463}],[1,{"n":5.5,"e":7476}]],"fo":[[5448,[{"t":"Y"}]],[5473,[{"t":"Y"}]],[5497,[{"t":"Y"}]],[5538,[{"t":"Y"}]],[5558,[{"t":"Y"}]],[5578,[{"t":"Y"}]],[7449,[{"t":"Y"}]]]}],[4723,{"n":"Gómez","f":"Alejandro","fp":"MO","r":34,"c":119,"s":{"g":4,"s":28,"n":4,"a":7,"d":1.41,"Sg":4,"Ss":28,"Sn":4,"Sa":7,"Sd":1.41,"Og":11,"Os":237,"On":37,"Oa":6.41,"Od":1.08,"pm":4,"pa":33},"p":[[-38,{"n":4.5,"e":5448}],[-37,{"n":7,"e":5462,"g":1}],[-36,{"n":6,"e":5473}],[-35,{"n":5,"e":5478}],[-34,{"n":6,"e":5497}],[-32,{"n":5.5,"e":5513}],[-31,{"n":7,"e":5518}],[-30,{"n":5.5,"e":5529,"s":1}],[-29,{"n":7,"e":5538}],[-28,{"n":7,"e":5557}],[-27,{"n":6.5,"e":5558}],[-26,{"n":6,"e":5571}],[-25,{"n":6.5,"e":5578}],[-24,{"n":5.5,"e":5588}],[-23,{"n":7,"e":5599}],[-22,{"n":5.5,"e":5608}],[-21,{"n":8,"e":5626}],[-20,{"n":5,"e":5628}],[-19,{"n":6.5,"e":5640}],[-18,{"n":8,"e":5648,"g":1}],[-17,{"n":8,"e":5658,"g":1}],[-15,{"n":6,"e":5678}],[-14,{"n":6,"e":5688}],[-13,{"n":4.5,"e":5698}],[-12,{"n":5,"e":5715}],[-11,{"n":5,"e":5718}],[-10,{"n":6,"e":5733}],[-9,{"n":7,"e":5738}],[-8,{"n":7.5,"e":5751,"g":1}],[-7,{"n":7.5,"e":5758,"g":1}],[-6,{"n":8,"e":5776,"g":2}],[-5,{"n":6.5,"e":5784}],[-4,{"n":7,"e":5788,"s":1}],[4,{"n":5,"e":7449}],[3,{"n":7,"e":7459,"g":1}],[2,{"n":8,"e":7463,"g":1}],[1,{"n":8,"e":7476,"g":2}]],"a":{"m":48,"a":53,"M":61,"n":5}}],[4724,{"n":"Ilicic","f":"Josip","fp":"A","r":25,"c":119,"s":{"s":3.5,"n":1,"a":3.5,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":15,"Os":149.5,"On":25,"Oa":5.98,"Od":1.78,"pm":5,"pa":20},"p":[[-32,{"n":4.5,"e":5513}],[-31,{"n":5,"e":5518}],[-30,{"n":5,"e":5529,"s":1}],[-28,{"n":5,"e":5557,"s":1}],[-27,{"n":4.5,"e":5558,"s":1}],[-26,{"n":8.5,"e":5571,"g":1}],[-24,{"n":6,"e":5588}],[-23,{"n":6,"e":5599}],[-22,{"n":6.5,"e":5608,"g":1}],[-21,{"n":9,"e":5626,"g":3}],[-20,{"n":6,"e":5628,"g":1}],[-19,{"n":5.5,"e":5640}],[-18,{"n":9,"e":5648,"g":2}],[-17,{"n":8.5,"e":5658,"g":2}],[-15,{"n":3.5,"e":5678}],[-14,{"n":8,"e":5688,"g":1}],[-11,{"n":2.5,"e":5718}],[-10,{"n":6.5,"e":5733,"g":1}],[-9,{"n":8,"e":5738,"g":2}],[-8,{"n":6,"e":5751,"s":1}],[-7,{"n":6,"e":5758}],[-6,{"n":6.5,"e":5776}],[-5,{"n":4,"e":5784}],[-4,{"n":6,"e":5788,"g":1,"s":1}],[4,{"n":3.5,"e":7449}]]}],[4728,{"n":"Sportiello","f":"Marco","fp":"G","r":17,"c":119,"s":{"s":20.5,"n":4,"a":5.13,"d":0.63,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.63,"Os":52,"On":10,"Oa":5.2,"Od":0.59,"pg":10},"p":[[-38,{"n":4.5,"e":5448,"s":1}],[-33,{"n":5.5,"e":5498}],[-30,{"n":5.5,"e":5529}],[-20,{"n":4.5,"e":5628}],[-18,{"n":5.5,"e":5648}],[-6,{"n":6,"e":5776}],[4,{"n":5,"e":7449}],[3,{"n":4.5,"e":7459}],[2,{"n":5,"e":7463}],[1,{"n":6,"e":7476}]]}],[5322,{"n":"Radunovic","f":"Boris","fp":"G","r":7,"c":119,"s":{"Os":12.5,"On":3,"Oa":4.17,"Od":2.08,"pg":3},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":6.5,"e":5467}],[-36,{"n":2.5,"e":5477}]],"fo":[[5477,[{"t":"Y"}]]]}],[5962,{"n":"Malinovskiy","f":"Ruslan","fp":"MO","r":32,"c":119,"s":{"s":22.5,"n":4,"a":5.63,"d":0.95,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":0.95,"Og":8,"Os":204,"On":36,"Oa":5.67,"Od":1.01,"pm":24,"pa":12},"p":[[-38,{"n":5.5,"e":5448,"s":1}],[-37,{"n":7,"e":5462,"g":1,"s":1}],[-36,{"n":3.5,"e":5473}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":4.5,"e":5497}],[-33,{"n":8,"e":5498,"g":1}],[-32,{"n":7,"e":5513,"g":1,"s":1}],[-31,{"n":5.5,"e":5518,"s":1}],[-30,{"n":7,"e":5529}],[-28,{"n":5,"e":5557}],[-27,{"n":7,"e":5558,"g":1}],[-26,{"n":7,"e":5571,"g":1,"s":1}],[-25,{"n":4.5,"e":5578,"s":1}],[-24,{"n":4.5,"e":5588,"s":1}],[-23,{"n":6.5,"e":5599,"g":1,"s":1}],[-22,{"n":6,"e":5608,"s":1}],[-21,{"n":5,"e":5626,"s":1}],[-20,{"n":5,"e":5628,"s":1}],[-19,{"n":6,"e":5640,"s":1}],[-18,{"n":5,"e":5648,"s":1}],[-17,{"n":7,"e":5658}],[-16,{"n":6,"e":5668,"g":1}],[-15,{"n":6.5,"e":5678,"g":1,"s":1}],[-14,{"n":5,"e":5688,"s":1}],[-12,{"n":4,"e":5715}],[-11,{"n":6,"e":5718,"s":1}],[-9,{"n":5,"e":5738,"s":1}],[-8,{"n":6,"e":5751}],[-7,{"n":5.5,"e":5758,"s":1}],[-6,{"n":5,"e":5776,"s":1}],[-5,{"n":5.5,"e":5784}],[-4,{"n":5.5,"e":5788}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5.5,"e":7463,"s":1}],[1,{"n":7,"e":7476}]],"fo":[[5557,[{"t":"Y"}]]],"a":{"m":32,"a":40,"M":42,"n":5}}],[6281,{"n":"Traore","f":"Amad Diallo","fp":"MO","r":4,"c":119,"s":{"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[-18,{"n":4.5,"e":5648,"s":1}],[-13,{"n":4.5,"e":5698,"s":1}]]}],[6519,{"n":"Sutalo","f":"Bosko","fp":"DC","r":8,"c":119,"s":{"s":10,"n":2,"a":5,"Os":43.5,"On":9,"Oa":4.83,"Od":0.71,"pd":9},"p":[[-37,{"n":3,"e":5462}],[-36,{"n":5,"e":5473,"s":1}],[-35,{"n":5,"e":5478,"s":1}],[-33,{"n":5,"e":5498}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":5.5,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5,"e":7463}]],"fo":[[5462,[{"t":"Y"}]]]}],[6981,{"n":"Cortinovis","f":"Alessandro","fp":"MO","r":2,"c":119}],[7170,{"n":"Miranchuk","f":"Aleksey","fp":"MO","r":8,"c":119,"a":{"m":13,"a":16,"M":18,"n":5}}],[7333,{"n":"Lammers","f":"Sam","fp":"A","r":14,"c":119,"s":{"g":2,"s":20.5,"n":4,"a":5.13,"d":1.03,"Sg":2,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":1.03,"Og":2,"Os":20.5,"On":4,"Oa":5.13,"Od":1.03,"pa":4},"p":[[4,{"n":6,"e":7449,"g":1,"s":1}],[3,{"n":6,"e":7459,"g":1,"s":1}],[2,{"n":4.5,"e":7463,"s":1}],[1,{"n":4,"e":7476,"s":1}]]}],[7345,{"n":"Ruggeri","f":"Matteo","fp":"DL","r":2,"c":119}],[50,{"n":"Glik","f":"Kamil","fp":"DC","r":10,"c":140,"s":{"s":16.5,"n":4,"a":4.13,"d":1.65,"Ss":14,"Sn":3,"Sa":4.67,"Sd":1.53,"Og":1,"Os":104.5,"On":21,"Oa":4.98,"Od":1.25,"pd":21},"p":[[4,{"n":3,"e":7503}],[3,{"n":6,"e":7486}],[1,{"n":2.5,"e":7492}],[-28,{"n":4,"e":3653}],[-27,{"n":6,"e":3662}],[-25,{"n":6,"e":3683}],[-23,{"n":6,"e":3706}],[-21,{"n":4,"e":3722}],[-15,{"n":2.5,"e":3780}],[-20,{"n":5.5,"e":3734}],[-19,{"n":7,"e":3740,"g":1}],[-18,{"n":5,"e":3749}],[-17,{"n":6,"e":3760}],[-16,{"n":5,"e":3777}],[-13,{"n":6,"e":3801}],[-12,{"n":5,"e":3816}],[-11,{"n":5.5,"e":3822}],[-10,{"n":4.5,"e":3833}],[-9,{"n":4,"e":3842}],[-8,{"n":6,"e":3853}],[2,{"n":5,"e":7488}]]}],[258,{"n":"Dabo","f":"Bryan","fp":"MD","r":9,"c":140,"s":{"s":19,"n":4,"a":4.75,"d":0.65,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.65,"Og":1,"Os":93.5,"On":20,"Oa":4.68,"Od":1.09,"pm":20},"p":[[-38,{"n":5,"e":5456}],[-36,{"n":6,"e":5476}],[-35,{"n":2.5,"e":5483}],[-34,{"n":6,"e":5488,"g":1}],[-33,{"n":4,"e":5503}],[-32,{"n":4.5,"e":5511}],[-31,{"n":4.5,"e":5525,"s":1}],[-29,{"n":7,"e":5545}],[-28,{"n":5,"e":5553,"s":1}],[-27,{"n":5,"e":5565,"s":1}],[-23,{"n":4.5,"e":5605}],[-22,{"n":3,"e":5612}],[-21,{"n":4,"e":5624}],[-37,{"n":3.5,"e":5467}],[-30,{"n":4,"e":5535}],[-20,{"n":6,"e":5628}],[4,{"n":4.5,"e":7503}],[3,{"n":5.5,"e":7486,"s":1}],[2,{"n":5,"e":7488}],[1,{"n":4,"e":7492}]],"fo":[[5467,[{"t":"Y"}]],[5488,[{"t":"Y"}]],[5545,[{"t":"Y"}]],[7488,[{"t":"Y"}]]]}],[3598,{"n":"Barba","f":"Federico","fp":"DC","r":6,"c":140,"s":{"s":4.5,"n":1,"a":4.5,"Os":20.5,"On":5,"Oa":4.1,"Od":1.43,"pd":5},"p":[[-17,{"n":4,"e":4523}],[-13,{"n":4,"e":4557}],[-12,{"n":6,"e":4575}],[-11,{"n":2,"e":4580}],[1,{"n":4.5,"e":7492}]]}],[4625,{"n":"Caprari","f":"Gianluca","fp":"A","r":16,"c":140,"s":{"g":3,"s":24,"n":4,"a":6,"d":1.22,"Sg":3,"Ss":24,"Sn":4,"Sa":6,"Sd":1.22,"Og":8,"Os":153.5,"On":30,"Oa":5.12,"Od":0.91,"pm":3,"pa":27},"p":[[-38,{"n":7,"e":5453,"g":1}],[-36,{"n":5.5,"e":5469}],[-35,{"n":6,"e":5482,"g":1}],[-33,{"n":4.5,"e":5501,"s":1}],[-31,{"n":5,"e":5524,"s":1}],[-25,{"n":4.5,"e":5586,"s":1}],[-26,{"n":4.5,"e":5574,"s":1}],[-23,{"n":5,"e":5603}],[-22,{"n":4.5,"e":5610,"s":1}],[-21,{"n":4.5,"e":5625,"s":1}],[-20,{"n":4,"e":5633}],[-19,{"n":6.5,"e":5644,"g":1,"s":1}],[-15,{"n":4.5,"e":5684,"s":1}],[-14,{"n":4.5,"e":5689,"s":1}],[-37,{"n":5.5,"e":5462}],[-34,{"n":5,"e":5495}],[-29,{"n":4,"e":5547}],[-17,{"n":6,"e":5664,"g":1}],[-16,{"n":4,"e":5672,"s":1}],[-13,{"n":5,"e":5704,"s":1}],[-12,{"n":5,"e":5715,"s":1}],[-11,{"n":6,"e":5725,"g":1,"s":1}],[-9,{"n":4,"e":5739,"s":1}],[-7,{"n":5,"e":5767,"s":1}],[-6,{"n":4.5,"e":5775,"s":1}],[-5,{"n":5,"e":5779}],[4,{"n":6,"e":7503,"g":1}],[3,{"n":4.5,"e":7486}],[2,{"n":6,"e":7488}],[1,{"n":7.5,"e":7492,"g":2}]],"fo":[[5462,[{"t":"I"}]]]}],[4663,{"n":"Lapadula","f":"Gianluca","fp":"A","r":18,"c":140,"s":{"g":2,"s":20.5,"n":4,"a":5.13,"d":1.11,"Sg":2,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":1.11,"Og":13,"Os":129.5,"On":25,"Oa":5.18,"Od":1.36,"pa":25},"p":[[-37,{"n":6,"e":5466,"g":1}],[-36,{"n":4.5,"e":5468}],[-35,{"n":7.5,"e":5481,"g":2}],[-27,{"n":4,"e":5563}],[-25,{"n":4,"e":5584}],[-24,{"n":5,"e":5593}],[-23,{"n":8,"e":5602,"g":2}],[-22,{"n":6.5,"e":5613,"g":1}],[-20,{"n":4,"e":5634}],[-19,{"n":5,"e":5642,"s":1}],[-16,{"n":2.5,"e":5669}],[-13,{"n":6,"e":5700,"g":1}],[-12,{"n":6,"e":5712,"g":1}],[-11,{"n":7,"e":5722,"g":1}],[-9,{"n":5,"e":5743,"s":1}],[-8,{"n":4,"e":5752,"s":1}],[-38,{"n":6,"e":5453,"g":1}],[-34,{"n":5,"e":5491,"s":1}],[-26,{"n":3.5,"e":5571}],[-21,{"n":3.5,"e":5627}],[-10,{"n":6,"e":5735,"g":1}],[4,{"n":4.5,"e":7503,"g":1}],[3,{"n":6.5,"e":7486,"g":1,"s":1}],[2,{"n":4,"e":7488,"s":1}],[1,{"n":5.5,"e":7492,"s":1}]],"fo":[[5466,[{"t":"I"},{"t":"Y"}]],[5563,[{"t":"I"}]]]}],[4703,{"n":"Ionita","f":"Artur","fp":"MO","r":9,"c":140,"s":{"s":17.5,"n":4,"a":4.38,"d":0.75,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.75,"Os":164,"On":34,"Oa":4.82,"Od":0.74,"pm":34},"p":[[-38,{"n":4,"e":5454}],[-37,{"n":6,"e":5458}],[-36,{"n":5,"e":5470}],[-35,{"n":6,"e":5480}],[-32,{"n":6,"e":5509}],[-31,{"n":5,"e":5520,"s":1}],[-29,{"n":5,"e":5539,"s":1}],[-28,{"n":4.5,"e":5549,"s":1}],[-25,{"n":4,"e":5587}],[-26,{"n":4.5,"e":5568}],[-24,{"n":5,"e":5590}],[-23,{"n":4,"e":5600}],[-21,{"n":6,"e":5620}],[-20,{"n":4.5,"e":5630,"s":1}],[-19,{"n":5,"e":5638,"s":1}],[-17,{"n":5,"e":5667}],[-16,{"n":5,"e":5670}],[-10,{"n":5,"e":5729,"s":1}],[-9,{"n":4.5,"e":5746}],[-8,{"n":5.5,"e":5749,"s":1}],[-7,{"n":5.5,"e":5764,"s":1}],[-5,{"n":5.5,"e":5782}],[-33,{"n":2.5,"e":5504}],[-30,{"n":5,"e":5529}],[-27,{"n":4.5,"e":5565}],[-22,{"n":5,"e":5610}],[-14,{"n":5,"e":5689,"s":1}],[-13,{"n":4.5,"e":5700,"s":1}],[-11,{"n":5,"e":5718,"s":1}],[-6,{"n":4.5,"e":5768,"s":1}],[4,{"n":4,"e":7503}],[3,{"n":5,"e":7486}],[2,{"n":5,"e":7488}],[1,{"n":3.5,"e":7492}]],"fo":[[5470,[{"t":"Y"}]],[5504,[{"t":"Y"}]],[5565,[{"t":"Y"}]]]}],[4739,{"n":"Falque","f":"Iago","fp":"MO","r":7,"c":140,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Og":2,"Os":80.5,"On":16,"Oa":5.03,"Od":0.78,"pm":9,"pa":7},"p":[[-33,{"n":5,"e":5506}],[-31,{"n":5,"e":5521,"s":1}],[-25,{"n":5,"e":5582,"s":1}],[-10,{"n":4.5,"e":5731,"s":1}],[-8,{"n":5,"e":5757,"s":1}],[-7,{"n":5,"e":5766,"s":1}],[-37,{"n":5,"e":5464,"s":1}],[-35,{"n":5.5,"e":5484}],[-34,{"n":5,"e":5491}],[-32,{"n":6,"e":5511}],[-30,{"n":4,"e":5537}],[-28,{"n":7,"e":5548,"g":1}],[-27,{"n":5.5,"e":5561,"g":1,"s":1}],[-9,{"n":4.5,"e":5746}],[4,{"n":3.5,"e":7503}],[3,{"n":5,"e":7486}]],"fo":[[5548,[{"t":"I"}]]]}],[4773,{"n":"Sau","f":"Marco","fp":"A","r":10,"c":140,"s":{"s":15,"n":3,"a":5,"d":0.5,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Os":15,"On":3,"Oa":5,"Od":0.5,"pa":3},"p":[[4,{"n":4.5,"e":7503,"s":1}],[3,{"n":5.5,"e":7486,"s":1}],[2,{"n":5,"e":7488,"s":1}]]}],[4775,{"n":"Schiattarella","f":"Pasquale","fp":"MD","r":11,"c":140,"s":{"s":19,"n":4,"a":4.75,"d":0.5,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.5,"Os":19,"On":4,"Oa":4.75,"Od":0.5,"pm":4},"p":[[4,{"n":4.5,"e":7503}],[3,{"n":5.5,"e":7486}],[2,{"n":4.5,"e":7488}],[1,{"n":4.5,"e":7492}]],"fo":[[7486,[{"t":"Y"}]],[7492,[{"t":"Y"}]]]}],[6176,{"n":"Moncini","f":"Gabriele","fp":"A","r":8,"c":140,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Os":30.5,"On":7,"Oa":4.36,"Od":0.38,"pa":7},"p":[[-15,{"n":4.5,"e":5683,"s":1}],[-6,{"n":4,"e":5769}],[-11,{"n":4,"e":5725}],[-8,{"n":4.5,"e":5749,"s":1}],[3,{"n":4.5,"e":7486}],[2,{"n":5,"e":7488}],[1,{"n":4,"e":7492}]],"fo":[[7486,[{"t":"I"}]]]}],[6945,{"n":"Rillo","f":"Francesco","fp":"DL","r":4,"c":140}],[6946,{"n":"Pastina","f":"Christian","fp":"DC","r":5,"c":140}],[6947,{"n":"Di Serio","f":"Giuseppe","fp":"A","r":7,"c":140}],[6960,{"n":"Sanogo","f":"Siriki","fp":"MD","r":2,"c":140}],[6975,{"n":"Basit","f":"Abdallah","fp":"MD","r":5,"c":140}],[7001,{"n":"Tello","f":"Andrés","fp":"MD","r":8,"c":140}],[7010,{"n":"Del Pinto","f":"Lorenzo","fp":"MD","r":7,"c":140}],[7011,{"n":"Montipò","f":"Lorenzo","fp":"G","r":13,"c":140,"s":{"s":16,"n":4,"a":4,"d":2.42,"Ss":16,"Sn":4,"Sa":4,"Sd":2.42,"Os":16,"On":4,"Oa":4,"Od":2.42,"pg":4},"p":[[4,{"n":3,"e":7503}],[3,{"n":7.5,"e":7486}],[2,{"n":3.5,"e":7488}],[1,{"n":2,"e":7492}]]}],[7015,{"n":"Insigne","f":"Roberto","fp":"A","r":13,"c":140,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Ss":5,"Sn":1,"Sa":5,"Os":13,"On":3,"Oa":4.33,"Od":0.76,"pa":3},"p":[[4,{"n":5,"e":7503,"s":1}],[2,{"n":4.5,"e":7488}],[1,{"n":3.5,"e":7492}]]}],[7016,{"n":"Improta","f":"Riccardo","fp":"MO","r":16,"c":140,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[4,{"n":4.5,"e":7503,"s":1}],[3,{"n":4.5,"e":7486,"s":1}],[2,{"n":5,"e":7488,"s":1}]]}],[7021,{"n":"Letizia","f":"Gaetano","fp":"DL","r":14,"c":140,"s":{"g":1,"s":20,"n":4,"a":5,"d":1.47,"Sg":1,"Ss":20,"Sn":4,"Sa":5,"Sd":1.47,"Og":1,"Os":20,"On":4,"Oa":5,"Od":1.47,"pd":4},"p":[[4,{"n":3.5,"e":7503}],[3,{"n":6,"e":7486}],[2,{"n":6.5,"e":7488,"g":1}],[1,{"n":4,"e":7492,"s":1}]]}],[7029,{"n":"Caldirola","f":"Luca","fp":"DC","r":17,"c":140,"s":{"g":2,"s":19.5,"n":4,"a":4.88,"d":2.25,"Sg":2,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":2.25,"Og":2,"Os":19.5,"On":4,"Oa":4.88,"Od":2.25,"pd":4},"p":[[4,{"n":3,"e":7503}],[3,{"n":6,"e":7486}],[2,{"n":7.5,"e":7488,"g":2}],[1,{"n":3,"e":7492}]]}],[7031,{"n":"Tuia","f":"Alessandro","fp":"DC","r":11,"c":140,"s":{"s":15,"n":3,"a":5,"d":0.5,"Os":15,"On":3,"Oa":5,"Od":0.5,"pd":3},"p":[[3,{"n":5.5,"e":7486,"s":1}],[2,{"n":5,"e":7488,"s":1}],[1,{"n":4.5,"e":7492,"s":1}]]}],[7032,{"n":"Volta","f":"Massimo","fp":"DC","r":7,"c":140}],[7033,{"n":"Viola","f":"Nicolas","fp":"MO","r":10,"c":140}],[7035,{"n":"Hetemaj","f":"Perparim","fp":"MO","r":11,"c":140,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":4},"p":[[4,{"n":4.5,"e":7503,"s":1}],[3,{"n":4.5,"e":7486}],[2,{"n":5,"e":7488,"s":1}],[1,{"n":5,"e":7492,"s":1}]]}],[7036,{"n":"Manfredini","f":"Nicolò","fp":"G","r":6,"c":140}],[7039,{"n":"Gori","f":"Pier Graziano","fp":"G","r":1,"c":140}],[7041,{"n":"Maggio","f":"Christian","fp":"DL","r":12,"c":140,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":5,"Sn":1,"Sa":5,"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pd":2},"p":[[4,{"n":5,"e":7503,"s":1}],[1,{"n":3.5,"e":7492}]],"fo":[[7492,[{"t":"I"}]]]}],[7189,{"n":"Foulon","f":"Daam","fp":"DL","r":8,"c":140,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Os":19.5,"On":4,"Oa":4.88,"Od":0.25,"pd":4},"p":[[4,{"n":4.5,"e":7503}],[3,{"n":5,"e":7486}],[2,{"n":5,"e":7488}],[1,{"n":5,"e":7492,"s":1}]],"fo":[[7486,[{"t":"Y"}]],[7503,[{"t":"Y"}]]]}],[7342,{"n":"Masella","f":"Davide","fp":"MO","r":2,"c":140}],[7344,{"n":"Lucatelli","f":"Igor","fp":"G","r":1,"c":140}],[1594,{"n":"Soriano","f":"Roberto","fp":"MO","r":20,"c":127,"s":{"g":3,"s":26.5,"n":4,"a":6.63,"d":1.8,"Sg":1,"Ss":12.5,"Sn":2,"Sa":6.25,"Sd":1.06,"Og":7,"Os":169.5,"On":29,"Oa":5.84,"Od":1.07,"pm":27,"pa":2},"p":[[4,{"n":7,"e":7452,"g":1}],[2,{"n":9,"e":7469,"g":2}],[1,{"n":5,"e":7475}],[-38,{"n":6.5,"e":5449}],[-37,{"n":4.5,"e":5459}],[-34,{"n":4,"e":5493}],[-33,{"n":6.5,"e":5499}],[-32,{"n":6.5,"e":5516,"g":1}],[-30,{"n":4.5,"e":5530}],[-27,{"n":5.5,"e":5559}],[-26,{"n":6,"e":5570}],[-23,{"n":5.5,"e":5604}],[-22,{"n":5.5,"e":5609}],[-19,{"n":5.5,"e":5645}],[-18,{"n":6,"e":5649}],[-17,{"n":7,"e":5662,"g":1}],[-11,{"n":6.5,"e":5719,"g":1}],[-8,{"n":4,"e":5750}],[-6,{"n":5,"e":5777}],[-36,{"n":6.5,"e":5468,"g":1}],[-35,{"n":4.5,"e":5478}],[-29,{"n":6,"e":5539}],[-28,{"n":5.5,"e":5555}],[-21,{"n":7,"e":5624}],[-20,{"n":6,"e":5629}],[-10,{"n":6,"e":5729}],[-9,{"n":7,"e":5739}],[-5,{"n":5.5,"e":5780}],[3,{"n":5.5,"e":7486}]],"fo":[[5530,[{"t":"R"}]],[5449,[{"t":"Y"}]],[5559,[{"t":"Y"}]]],"a":{"m":19,"a":24,"M":32,"n":6}}],[1789,{"n":"Sansone","f":"Nicola","fp":"MO","r":9,"c":127,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Og":2,"Os":168,"On":33,"Oa":5.09,"Od":0.86,"pm":25,"pa":8},"p":[[-31,{"n":4.5,"e":5519,"s":1}],[-15,{"n":7,"e":5679,"g":1}],[-14,{"n":7,"e":5695,"g":1}],[-13,{"n":4.5,"e":5699}],[-12,{"n":5.5,"e":5716,"s":1}],[-7,{"n":5.5,"e":5759}],[-38,{"n":4.5,"e":5449,"s":1}],[-37,{"n":3.5,"e":5459}],[-36,{"n":5.5,"e":5468,"s":1}],[-35,{"n":5.5,"e":5478,"s":1}],[-34,{"n":3.5,"e":5493}],[-32,{"n":5,"e":5516}],[-30,{"n":5.5,"e":5530}],[-29,{"n":5.5,"e":5539,"s":1}],[-28,{"n":4.5,"e":5555}],[-27,{"n":4.5,"e":5559}],[-26,{"n":5.5,"e":5570,"s":1}],[-22,{"n":4.5,"e":5609}],[-20,{"n":4.5,"e":5629}],[-19,{"n":5,"e":5645}],[-18,{"n":6,"e":5649}],[-17,{"n":7,"e":5662}],[-16,{"n":5,"e":5668}],[-11,{"n":5,"e":5719}],[-10,{"n":4.5,"e":5729}],[-9,{"n":6,"e":5739}],[-8,{"n":5.5,"e":5750}],[-6,{"n":4.5,"e":5777}],[-5,{"n":4,"e":5780}],[4,{"n":4.5,"e":7452,"s":1}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":5,"e":7469,"s":1}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[5493,[{"t":"Y"}]],[7469,[{"t":"Y"}]],[7475,[{"t":"Y"}]]]}],[4223,{"n":"Barrow","f":"Musa","fp":"A","r":16,"c":127,"s":{"s":20.5,"n":4,"a":5.13,"d":1.31,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":1.31,"Og":9,"Os":153.5,"On":29,"Oa":5.29,"Od":1.21,"pm":13,"pa":16},"p":[[-25,{"n":4.5,"e":5579}],[-24,{"n":4.5,"e":5589}],[-38,{"n":4.5,"e":5449}],[-37,{"n":3.5,"e":5459}],[-36,{"n":8,"e":5468,"g":1}],[-35,{"n":5,"e":5478}],[-33,{"n":6,"e":5499,"g":1}],[-32,{"n":5,"e":5516}],[-31,{"n":6,"e":5519,"g":1}],[-30,{"n":7,"e":5530,"g":1}],[-29,{"n":6.5,"e":5539,"g":1}],[-28,{"n":6.5,"e":5555,"g":1,"s":1}],[-27,{"n":5,"e":5559}],[-26,{"n":4.5,"e":5570}],[-23,{"n":8,"e":5604,"g":2}],[-22,{"n":4.5,"e":5609,"s":1}],[-21,{"n":6.5,"e":5624,"g":1,"s":1}],[-20,{"n":4.5,"e":5629,"s":1}],[-16,{"n":6,"e":5668,"s":1}],[-15,{"n":4.5,"e":5678,"s":1}],[-13,{"n":3.5,"e":5698}],[-12,{"n":4.5,"e":5715,"s":1}],[-11,{"n":5,"e":5718,"s":1}],[-9,{"n":4.5,"e":5738,"s":1}],[-6,{"n":5,"e":5776,"s":1}],[4,{"n":4.5,"e":7452}],[3,{"n":5,"e":7486}],[2,{"n":7,"e":7469}],[1,{"n":4,"e":7475}]],"fo":[[5516,[{"t":"Y"}]]]}],[4299,{"n":"Ravaglia","f":"Federico","fp":"G","r":1,"c":127}],[4314,{"n":"Schouten","f":"Jerdy","fp":"MD","r":9,"c":127,"s":{"s":22,"n":4,"a":5.5,"d":1.47,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.47,"Os":115,"On":23,"Oa":5,"Od":0.83,"pm":23},"p":[[-38,{"n":4.5,"e":5449}],[-37,{"n":5,"e":5459,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":6,"e":5530}],[-29,{"n":5,"e":5539}],[-28,{"n":5,"e":5555,"s":1}],[-26,{"n":5,"e":5570}],[-24,{"n":4,"e":5589}],[-23,{"n":5,"e":5604}],[-22,{"n":5.5,"e":5609}],[-21,{"n":6,"e":5624}],[-20,{"n":5,"e":5629}],[-19,{"n":5,"e":5645}],[-17,{"n":4.5,"e":5662,"s":1}],[-15,{"n":3.5,"e":5679}],[-12,{"n":5,"e":5716,"s":1}],[-10,{"n":5,"e":5729}],[-9,{"n":4.5,"e":5739,"s":1}],[-7,{"n":5.5,"e":5759,"s":1}],[4,{"n":3.5,"e":7452}],[3,{"n":5.5,"e":7486}],[2,{"n":7,"e":7469}],[1,{"n":6,"e":7475}]],"fo":[[5539,[{"t":"Y"}]]]}],[4328,{"n":"Orsolini","f":"Riccardo","fp":"A","r":17,"c":127,"s":{"g":1,"s":18,"n":4,"a":4.5,"d":0.91,"Sg":1,"Ss":18,"Sn":4,"Sa":4.5,"Sd":0.91,"Og":8,"Os":194.5,"On":37,"Oa":5.26,"Od":1.23,"pm":29,"pa":8},"p":[[-37,{"n":3.5,"e":5459}],[-36,{"n":6.5,"e":5468,"s":1}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":3,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-32,{"n":6.5,"e":5516}],[-31,{"n":5,"e":5519}],[-30,{"n":5.5,"e":5530}],[-29,{"n":4.5,"e":5539}],[-28,{"n":7.5,"e":5555,"g":1}],[-27,{"n":4.5,"e":5559}],[-26,{"n":4,"e":5570}],[-25,{"n":5,"e":5579}],[-24,{"n":4.5,"e":5589}],[-23,{"n":7,"e":5604,"g":1}],[-22,{"n":6.5,"e":5609,"g":1}],[-21,{"n":6,"e":5624}],[-20,{"n":5,"e":5629}],[-19,{"n":4.5,"e":5645}],[-18,{"n":7.5,"e":5649,"g":1}],[-17,{"n":8,"e":5662,"g":2}],[-16,{"n":5,"e":5668}],[-15,{"n":6,"e":5679,"s":1}],[-14,{"n":3.5,"e":5695}],[-13,{"n":5.5,"e":5699}],[-12,{"n":7,"e":5716,"g":1}],[-11,{"n":4,"e":5719}],[-10,{"n":4,"e":5729}],[-9,{"n":5.5,"e":5739,"s":1}],[-8,{"n":5.5,"e":5750}],[-7,{"n":6,"e":5759}],[-6,{"n":4.5,"e":5777}],[-5,{"n":5.5,"e":5780}],[4,{"n":5.5,"e":7452,"g":1}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":4,"e":7469,"s":1}],[1,{"n":3.5,"e":7475}]]}],[4329,{"n":"Tomiyasu","f":"Takehiro","fp":"DL","r":10,"c":127,"s":{"ao":1,"s":18.5,"n":4,"a":4.63,"d":1.11,"Sao":1,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.11,"Og":1,"Oao":1,"Os":139.5,"On":29,"Oa":4.81,"Od":0.96,"pd":28,"pm":1},"p":[[-35,{"n":5,"e":5478}],[-34,{"n":4.5,"e":5493,"g":1}],[-33,{"n":5,"e":5499}],[-32,{"n":5,"e":5516}],[-31,{"n":4.5,"e":5519}],[-30,{"n":5,"e":5530}],[-29,{"n":5,"e":5539}],[-28,{"n":5.5,"e":5555}],[-27,{"n":4.5,"e":5559}],[-26,{"n":3.5,"e":5570}],[-25,{"n":6,"e":5579}],[-24,{"n":3,"e":5589}],[-23,{"n":3.5,"e":5604}],[-21,{"n":6,"e":5624}],[-20,{"n":5,"e":5629}],[-19,{"n":5.5,"e":5645}],[-18,{"n":4,"e":5649}],[-17,{"n":4.5,"e":5662}],[-16,{"n":7,"e":5668}],[-15,{"n":3,"e":5679}],[-14,{"n":6,"e":5695}],[-13,{"n":5,"e":5699}],[-7,{"n":5,"e":5759}],[-6,{"n":4.5,"e":5777}],[-5,{"n":5.5,"e":5780}],[4,{"n":3,"e":7452,"a":1}],[3,{"n":5,"e":7486}],[2,{"n":5.5,"e":7469}],[1,{"n":5,"e":7475}]],"fo":[[5478,[{"t":"I"},{"t":"Y"}]],[5499,[{"t":"Y"}]],[5539,[{"t":"Y"}]],[7475,[{"t":"Y"}]]]}],[4350,{"n":"Michael","f":"Kingsley","fp":"MD","r":3,"c":127}],[4376,{"n":"Svanberg","f":"Mattias","fp":"MD","r":12,"c":127,"s":{"g":1,"s":17,"n":3,"a":5.67,"d":0.58,"Sg":1,"Ss":12,"Sn":2,"Sa":6,"Og":2,"Os":137,"On":28,"Oa":4.89,"Od":0.64,"pm":28},"p":[[-38,{"n":6,"e":5449,"g":1}],[-37,{"n":4.5,"e":5459,"s":1}],[-36,{"n":5.5,"e":5468}],[-35,{"n":5,"e":5478}],[-34,{"n":5,"e":5493,"s":1}],[-32,{"n":4.5,"e":5516,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":5.5,"e":5530,"s":1}],[-29,{"n":5,"e":5539,"s":1}],[-28,{"n":4.5,"e":5555,"s":1}],[-27,{"n":4,"e":5559}],[-24,{"n":3.5,"e":5589}],[-23,{"n":5,"e":5604}],[-21,{"n":5,"e":5624,"s":1}],[-18,{"n":5,"e":5649,"s":1}],[-17,{"n":4.5,"e":5662,"s":1}],[-16,{"n":5,"e":5668,"s":1}],[-15,{"n":5,"e":5679,"s":1}],[-14,{"n":5,"e":5695,"s":1}],[-13,{"n":4.5,"e":5699}],[-12,{"n":4,"e":5716}],[-11,{"n":5,"e":5719}],[-10,{"n":4.5,"e":5729,"s":1}],[-8,{"n":4.5,"e":5750}],[-7,{"n":6,"e":5759}],[4,{"n":6,"e":7452,"g":1}],[3,{"n":6,"e":7486}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[7452,[{"t":"Y"}]],[7486,[{"t":"Y"}]]]}],[4461,{"n":"Paz","f":"Nehuén","fp":"DC","r":9,"c":127,"s":{"Os":74.5,"On":16,"Oa":4.66,"Od":1,"pd":16},"p":[[-33,{"n":3.5,"e":5500}],[-31,{"n":6,"e":5522}],[-30,{"n":2.5,"e":5536}],[-28,{"n":3.5,"e":5550}],[-37,{"n":4.5,"e":5466}],[-36,{"n":4.5,"e":5468}],[-35,{"n":5,"e":5481}],[-34,{"n":4.5,"e":5491}],[-32,{"n":6,"e":5509}],[-29,{"n":3.5,"e":5543}],[-24,{"n":5,"e":5593,"s":1}],[-23,{"n":5,"e":5602,"s":1}],[-22,{"n":5,"e":5613,"s":1}],[-21,{"n":5,"e":5624}],[-20,{"n":5,"e":5629,"s":1}],[-13,{"n":6,"e":5699,"s":1}]],"fo":[[5466,[{"t":"Y"}]],[5481,[{"t":"Y"}]],[5536,[{"t":"Y"}]],[5543,[{"t":"Y"}]]]}],[4510,{"n":"Calabresi","f":"Arturo","fp":"DC","r":5,"c":127,"s":{"Og":1,"Os":86,"On":20,"Oa":4.3,"Od":0.99,"pd":19,"pm":1},"p":[[-28,{"n":4,"e":3651}],[-26,{"n":4.5,"e":3677}],[-25,{"n":3.5,"e":3678}],[-24,{"n":4,"e":3688}],[-23,{"n":6,"e":3704}],[-22,{"n":4.5,"e":3708}],[-21,{"n":4.5,"e":3718}],[-16,{"n":5,"e":3768}],[-20,{"n":4,"e":3728}],[-19,{"n":3,"e":3744}],[-18,{"n":5.5,"e":3748}],[-15,{"n":3,"e":3781}],[-13,{"n":3.5,"e":3806}],[-12,{"n":5,"e":3808}],[-11,{"n":3.5,"e":3826}],[-10,{"n":6.5,"e":3835,"g":1}],[-9,{"n":5,"e":3838}],[-8,{"n":4.5,"e":3848}],[-7,{"n":3,"e":3858}],[-17,{"n":3.5,"e":3760}]]}],[4571,{"n":"Mbaye","f":"Ibrahima","fp":"DL","r":7,"c":127,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":99,"On":21,"Oa":4.71,"Od":0.78,"pd":21},"p":[[-38,{"n":5.5,"e":5449}],[-37,{"n":3,"e":5459}],[-36,{"n":5,"e":5468}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":5,"e":5493,"s":1}],[-33,{"n":5,"e":5499}],[-32,{"n":5,"e":5516,"s":1}],[-25,{"n":5,"e":5579}],[-22,{"n":5,"e":5609}],[-21,{"n":6.5,"e":5624}],[-20,{"n":5,"e":5629}],[-19,{"n":4,"e":5645}],[-17,{"n":4.5,"e":5662}],[-16,{"n":5,"e":5668,"s":1}],[-13,{"n":4,"e":5699}],[-12,{"n":3,"e":5716}],[-11,{"n":4.5,"e":5719}],[-10,{"n":4,"e":5729}],[-9,{"n":5,"e":5739}],[-8,{"n":5,"e":5750}],[4,{"n":5,"e":7452,"s":1}]],"fo":[[7452,[{"t":"Y"}]]]}],[4573,{"n":"Dijks","f":"Mitchell","fp":"DL","r":6,"c":127,"s":{"s":4,"n":1,"a":4,"Os":43.5,"On":10,"Oa":4.35,"Od":0.82,"pd":10},"p":[[-36,{"n":5,"e":5468}],[-34,{"n":2.5,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-32,{"n":4.5,"e":5516}],[-31,{"n":4,"e":5519}],[-30,{"n":4.5,"e":5530}],[-29,{"n":4.5,"e":5539}],[-28,{"n":5.5,"e":5555}],[-27,{"n":4,"e":5559}],[1,{"n":4,"e":7475}]],"fo":[[5519,[{"t":"Y"}]],[5539,[{"t":"Y"}]],[7475,[{"t":"Y"},{"t":"O"}]]]}],[4588,{"n":"Denswil","f":"Stefano","fp":"DC","r":8,"c":127,"s":{"s":10,"n":2,"a":5,"Oao":1,"Os":107.5,"On":24,"Oa":4.48,"Od":0.9,"pd":24},"p":[[-38,{"n":5,"e":5449}],[-37,{"n":3,"e":5459}],[-36,{"n":4.5,"e":5468}],[-35,{"n":5.5,"e":5478}],[-34,{"n":2.5,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":5.5,"e":5530}],[-27,{"n":3,"e":5559}],[-26,{"n":4,"e":5570}],[-24,{"n":3,"e":5589}],[-23,{"n":5,"e":5604,"a":1}],[-22,{"n":5,"e":5609}],[-18,{"n":4.5,"e":5649}],[-17,{"n":5,"e":5662}],[-16,{"n":4.5,"e":5668}],[-15,{"n":3.5,"e":5679}],[-14,{"n":5,"e":5695}],[-13,{"n":4.5,"e":5699}],[-10,{"n":5,"e":5729}],[-6,{"n":4.5,"e":5777}],[-5,{"n":6,"e":5780}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":5,"e":7469,"s":1}]],"fo":[[5519,[{"t":"Y"}]]]}],[4652,{"n":"Skorupski","f":"Lukasz","fp":"G","r":13,"c":127,"s":{"s":20.5,"n":4,"a":5.13,"d":0.85,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.85,"Os":197.5,"On":37,"Oa":5.34,"Od":1.15,"pg":37},"p":[[-38,{"n":7,"e":5449}],[-37,{"n":3.5,"e":5459}],[-36,{"n":6.5,"e":5468}],[-35,{"n":7,"e":5478}],[-34,{"n":3,"e":5493}],[-33,{"n":5,"e":5499}],[-32,{"n":4,"e":5516}],[-31,{"n":5,"e":5519}],[-30,{"n":8,"e":5530}],[-29,{"n":5.5,"e":5539}],[-28,{"n":5,"e":5555}],[-27,{"n":4.5,"e":5559}],[-26,{"n":4,"e":5570}],[-24,{"n":5,"e":5589}],[-23,{"n":6.5,"e":5604}],[-22,{"n":5,"e":5609}],[-21,{"n":6,"e":5624}],[-20,{"n":6.5,"e":5629}],[-19,{"n":4,"e":5645}],[-18,{"n":6,"e":5649}],[-17,{"n":5,"e":5662}],[-16,{"n":6,"e":5668}],[-15,{"n":5.5,"e":5679}],[-14,{"n":7,"e":5695}],[-13,{"n":5,"e":5699}],[-12,{"n":4.5,"e":5716}],[-11,{"n":6,"e":5719}],[-10,{"n":3.5,"e":5729}],[-9,{"n":5,"e":5739}],[-8,{"n":7,"e":5750}],[-7,{"n":4.5,"e":5759}],[-6,{"n":5,"e":5777}],[-5,{"n":6,"e":5780}],[4,{"n":6,"e":7452}],[3,{"n":5,"e":7486}],[2,{"n":5.5,"e":7469}],[1,{"n":4,"e":7475}]]}],[4672,{"n":"Santander","f":"Federico","fp":"A","r":8,"c":127,"s":{"s":13.5,"n":3,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":101.5,"On":23,"Oa":4.41,"Od":0.36,"pa":23},"p":[[-38,{"n":4.5,"e":5449,"s":1}],[-36,{"n":4.5,"e":5468,"s":1}],[-35,{"n":4.5,"e":5478,"s":1}],[-34,{"n":3.5,"e":5493}],[-26,{"n":4.5,"e":5570,"s":1}],[-22,{"n":4,"e":5609,"s":1}],[-21,{"n":4.5,"e":5624}],[-20,{"n":4,"e":5629}],[-19,{"n":4,"e":5645,"s":1}],[-18,{"n":5,"e":5649,"s":1}],[-17,{"n":4.5,"e":5662,"s":1}],[-16,{"n":4.5,"e":5668,"s":1}],[-15,{"n":4,"e":5679,"s":1}],[-11,{"n":4.5,"e":5719,"s":1}],[-10,{"n":5,"e":5729,"g":1}],[-9,{"n":4.5,"e":5739,"s":1}],[-8,{"n":5,"e":5750,"s":1}],[-7,{"n":4.5,"e":5759,"s":1}],[-6,{"n":4,"e":5777}],[-5,{"n":4.5,"e":5780,"s":1}],[4,{"n":4.5,"e":7452,"s":1}],[2,{"n":4.5,"e":7469,"s":1}],[1,{"n":4.5,"e":7475,"s":1}]],"fo":[[5449,[{"t":"Y"}]]]}],[4722,{"n":"Ângelo da Costa","f":"","fp":"G","r":7,"c":127,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-25,{"n":4.5,"e":5579}]]}],[4776,{"n":"Poli","f":"Andrea","fp":"MD","r":8,"c":127,"s":{"s":5.5,"n":1,"a":5.5,"Og":2,"Os":131,"On":25,"Oa":5.24,"Od":0.9,"pm":25},"p":[[-36,{"n":4.5,"e":5468,"s":1}],[-34,{"n":4,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-28,{"n":5.5,"e":5555}],[-27,{"n":5,"e":5559,"s":1}],[-26,{"n":4.5,"e":5570}],[-25,{"n":5.5,"e":5579}],[-24,{"n":3.5,"e":5589}],[-22,{"n":6,"e":5609}],[-21,{"n":8,"e":5624,"g":1}],[-20,{"n":5,"e":5629,"s":1}],[-19,{"n":6,"e":5645}],[-18,{"n":4.5,"e":5649}],[-17,{"n":5.5,"e":5662}],[-16,{"n":6.5,"e":5668,"g":1}],[-15,{"n":5.5,"e":5679}],[-14,{"n":6,"e":5695}],[-13,{"n":5,"e":5699,"s":1}],[-12,{"n":4.5,"e":5716}],[-11,{"n":6,"e":5719}],[-9,{"n":5,"e":5739}],[-8,{"n":5,"e":5750}],[-7,{"n":4.5,"e":5759}],[-5,{"n":5,"e":5780}],[2,{"n":5.5,"e":7469}]],"fo":[[5555,[{"t":"I"}]]]}],[4804,{"n":"De Silvestri","f":"Lorenzo","fp":"DL","r":9,"c":127,"s":{"s":17.5,"n":4,"a":4.38,"d":0.63,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.63,"Os":131.5,"On":29,"Oa":4.53,"Od":0.92,"pd":6,"pm":23},"p":[[-34,{"n":4.5,"e":5490}],[-32,{"n":3.5,"e":5512}],[-31,{"n":5,"e":5526}],[-30,{"n":4,"e":5531}],[-29,{"n":4,"e":5546}],[-27,{"n":6,"e":5566}],[-26,{"n":4,"e":5573}],[-24,{"n":5,"e":5594}],[-23,{"n":4,"e":5606}],[-20,{"n":4.5,"e":5637}],[-18,{"n":6,"e":5656}],[-15,{"n":5,"e":5686}],[-13,{"n":3.5,"e":5706}],[-12,{"n":5,"e":5708,"s":1}],[-5,{"n":4.5,"e":5786}],[-35,{"n":5,"e":5486}],[-33,{"n":6.5,"e":5506}],[-28,{"n":3.5,"e":5549}],[-25,{"n":6,"e":5586}],[-22,{"n":3.5,"e":5613}],[-21,{"n":3,"e":5626}],[-19,{"n":5,"e":5645}],[-14,{"n":5,"e":5691}],[-10,{"n":3,"e":5731}],[-9,{"n":5,"e":5746}],[4,{"n":3.5,"e":7452}],[3,{"n":4.5,"e":7486}],[2,{"n":5,"e":7469}],[1,{"n":4.5,"e":7475}]],"fo":[[5486,[{"t":"I"}]],[7452,[{"t":"I"}]],[5512,[{"t":"Y"}]]]}],[4805,{"n":"Palacio","f":"Rodrigo","fp":"A","r":12,"c":127,"s":{"g":1,"s":22,"n":4,"a":5.5,"d":1.22,"Sg":1,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.22,"Og":7,"Os":179,"On":35,"Oa":5.11,"Od":0.94,"pm":1,"pa":34},"p":[[-38,{"n":4,"e":5449}],[-36,{"n":7,"e":5468,"g":1}],[-35,{"n":4,"e":5478}],[-33,{"n":4,"e":5499}],[-32,{"n":5,"e":5516,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":4.5,"e":5530,"s":1}],[-29,{"n":5,"e":5539}],[-28,{"n":5,"e":5555}],[-27,{"n":5,"e":5559,"s":1}],[-26,{"n":4.5,"e":5570}],[-25,{"n":6,"e":5579,"g":1}],[-24,{"n":4.5,"e":5589}],[-23,{"n":5,"e":5604}],[-22,{"n":6,"e":5609}],[-21,{"n":6,"e":5624}],[-19,{"n":4,"e":5645}],[-18,{"n":5.5,"e":5649}],[-17,{"n":6.5,"e":5662}],[-16,{"n":6,"e":5668,"g":1}],[-15,{"n":5,"e":5679}],[-14,{"n":5,"e":5695}],[-13,{"n":6,"e":5699,"g":1}],[-12,{"n":4,"e":5716}],[-11,{"n":4,"e":5719}],[-10,{"n":4.5,"e":5729,"s":1}],[-9,{"n":7,"e":5739,"g":1}],[-8,{"n":5,"e":5750}],[-7,{"n":6,"e":5759,"g":1}],[-6,{"n":4.5,"e":5777,"s":1}],[-5,{"n":4.5,"e":5780}],[4,{"n":6,"e":7452}],[3,{"n":4.5,"e":7486}],[2,{"n":7,"e":7469,"g":1}],[1,{"n":4.5,"e":7475}]],"fo":[[5468,[{"t":"Y"}]],[5530,[{"t":"Y"}]]]}],[5315,{"n":"Skov Olsen","f":"Andreas","fp":"MO","r":9,"c":127,"s":{"g":1,"s":16.5,"n":3,"a":5.5,"d":1.32,"Og":2,"Os":134,"On":28,"Oa":4.79,"Od":0.73,"pm":9,"pa":19},"p":[[-38,{"n":4.5,"e":5449,"s":1}],[-36,{"n":6,"e":5468}],[-35,{"n":5,"e":5478}],[-34,{"n":4.5,"e":5493,"s":1}],[-33,{"n":5.5,"e":5499}],[-32,{"n":4,"e":5516,"s":1}],[-31,{"n":4.5,"e":5519,"s":1}],[-26,{"n":4,"e":5570,"s":1}],[-25,{"n":4.5,"e":5579}],[-24,{"n":4.5,"e":5589,"s":1}],[-23,{"n":4.5,"e":5604,"s":1}],[-22,{"n":4.5,"e":5609,"s":1}],[-21,{"n":4,"e":5624,"s":1}],[-19,{"n":5,"e":5645,"s":1}],[-18,{"n":4.5,"e":5649,"s":1}],[-15,{"n":5,"e":5679}],[-14,{"n":6.5,"e":5695,"g":1,"s":1}],[-13,{"n":4.5,"e":5699,"s":1}],[-12,{"n":4,"e":5716}],[-10,{"n":5,"e":5729,"s":1}],[-9,{"n":4.5,"e":5739}],[-8,{"n":5,"e":5750,"s":1}],[-7,{"n":4.5,"e":5759,"s":1}],[-6,{"n":5,"e":5777,"s":1}],[-5,{"n":4,"e":5780,"s":1}],[3,{"n":4.5,"e":7486}],[2,{"n":7,"e":7469,"g":1}],[1,{"n":5,"e":7475,"s":1}]]}],[6116,{"n":"Danilo","f":"","fp":"DC","r":9,"c":127,"s":{"s":18,"n":4,"a":4.5,"d":1.35,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1.35,"Og":2,"Os":152.5,"On":32,"Oa":4.77,"Od":0.92,"pd":32},"p":[[-38,{"n":5,"e":5449}],[-37,{"n":4,"e":5459}],[-36,{"n":5,"e":5468}],[-35,{"n":4.5,"e":5478}],[-34,{"n":2.5,"e":5493}],[-33,{"n":5,"e":5499}],[-32,{"n":6,"e":5516,"g":1}],[-30,{"n":5.5,"e":5530}],[-29,{"n":5,"e":5539}],[-28,{"n":5,"e":5555}],[-27,{"n":4.5,"e":5559}],[-26,{"n":4,"e":5570}],[-25,{"n":5,"e":5579}],[-24,{"n":4.5,"e":5589}],[-23,{"n":4.5,"e":5604}],[-22,{"n":5.5,"e":5609}],[-21,{"n":6,"e":5624}],[-20,{"n":5.5,"e":5629}],[-19,{"n":4.5,"e":5645}],[-18,{"n":4.5,"e":5649}],[-16,{"n":6,"e":5668}],[-15,{"n":3.5,"e":5679}],[-14,{"n":6,"e":5695}],[-12,{"n":3,"e":5716}],[-11,{"n":4.5,"e":5719}],[-9,{"n":5.5,"e":5739}],[-8,{"n":5.5,"e":5750,"g":1}],[-7,{"n":4.5,"e":5759}],[4,{"n":2.5,"e":7452}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":5,"e":7469}],[1,{"n":5.5,"e":7475}]],"fo":[[5478,[{"t":"Y"}]],[5530,[{"t":"Y"}]]]}],[6226,{"n":"Medel","f":"Gary","fp":"MD","r":9,"c":127,"s":{"s":11,"n":2,"a":5.5,"Os":114,"On":22,"Oa":5.18,"Od":0.61,"pd":3,"pm":19},"p":[[-38,{"n":5,"e":5449}],[-37,{"n":4,"e":5459}],[-36,{"n":6,"e":5468}],[-35,{"n":5.5,"e":5478}],[-33,{"n":4.5,"e":5499}],[-32,{"n":5,"e":5516}],[-31,{"n":4,"e":5519}],[-29,{"n":5,"e":5539}],[-28,{"n":6,"e":5555}],[-27,{"n":6,"e":5559}],[-18,{"n":5,"e":5649}],[-17,{"n":5.5,"e":5662}],[-16,{"n":5.5,"e":5668}],[-14,{"n":5,"e":5695}],[-13,{"n":5.5,"e":5699}],[-12,{"n":5,"e":5716}],[-11,{"n":4.5,"e":5719,"s":1}],[-7,{"n":5.5,"e":5759}],[-6,{"n":4.5,"e":5777}],[-5,{"n":6,"e":5780}],[3,{"n":5.5,"e":7486}],[2,{"n":5.5,"e":7469,"s":1}]],"fo":[[7486,[{"t":"I"}]],[5449,[{"t":"Y"}]],[5519,[{"t":"Y"}]],[5555,[{"t":"Y"}]]]}],[6299,{"n":"Baldursson","f":"Andri Fannar","fp":"MD","r":3,"c":127,"s":{"Os":33,"On":7,"Oa":4.71,"Od":0.27,"pm":7},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":4.5,"e":5459,"s":1}],[-34,{"n":4.5,"e":5493,"s":1}],[-33,{"n":4.5,"e":5499,"s":1}],[-31,{"n":4.5,"e":5519,"s":1}],[-30,{"n":5,"e":5530,"s":1}],[-25,{"n":5,"e":5579,"s":1}]]}],[6350,{"n":"Domínguez","f":"Nicolás","fp":"MD","r":9,"c":127,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Os":95.5,"On":18,"Oa":5.31,"Od":0.75,"pm":18},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":5.5,"e":5459}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":4,"e":5493}],[-33,{"n":6.5,"e":5499}],[-32,{"n":5.5,"e":5516}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":7.5,"e":5530}],[-29,{"n":5.5,"e":5539,"s":1}],[-28,{"n":5,"e":5555,"s":1}],[-27,{"n":5.5,"e":5559,"s":1}],[-25,{"n":5.5,"e":5579}],[-24,{"n":5,"e":5589,"s":1}],[-23,{"n":5,"e":5604,"s":1}],[-20,{"n":5,"e":5629}],[-19,{"n":5.5,"e":5645,"s":1}],[4,{"n":5,"e":7452,"s":1}],[1,{"n":4.5,"e":7475}]],"fo":[[7475,[{"t":"Y"}]]]}],[6576,{"n":"Ruffo Luci","f":"Dion","fp":"MD","r":1,"c":127,"s":{"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[-32,{"n":4.5,"e":5516,"s":1}]]}],[7160,{"n":"Vignato","f":"Emanuel","fp":"MO","r":6,"c":127,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[3,{"n":4.5,"e":7486,"s":1}],[1,{"n":5,"e":7475,"s":1}]]}],[7347,{"n":"Hickey","f":"Aaron","fp":"DL","r":9,"c":127,"s":{"s":8,"n":2,"a":4,"d":1.41,"Ss":8,"Sn":2,"Sa":4,"Sd":1.41,"Os":8,"On":2,"Oa":4,"Od":1.41,"pd":2},"p":[[4,{"n":3,"e":7452}],[3,{"n":5,"e":7486}]]}],[178,{"n":"Ounas","f":"Adam","fp":"MO","r":8,"c":108,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":78,"On":14,"Oa":5.57,"Od":1,"pm":6,"pa":8},"p":[[4,{"n":4.5,"e":7453,"s":1}],[-27,{"n":7,"e":3659,"g":1}],[-26,{"n":6,"e":3673,"g":1}],[-25,{"n":7,"e":3687}],[-22,{"n":3.5,"e":3713}],[-21,{"n":6.5,"e":3725}],[-20,{"n":5,"e":3729,"s":1}],[-18,{"n":6,"e":3751}],[-17,{"n":6,"e":3763}],[-15,{"n":4.5,"e":3783}],[-14,{"n":5.5,"e":3793}],[-13,{"n":5.5,"e":3804}],[-7,{"n":5,"e":3862}],[-28,{"n":6,"e":3653}]]}],[794,{"n":"Klavan","f":"Ragnar","fp":"DC","r":10,"c":108,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":10,"Sn":2,"Sa":5,"Oao":1,"Os":153.5,"On":32,"Oa":4.8,"Od":0.83,"pd":32},"p":[[2,{"n":4.5,"e":7464}],[1,{"n":5,"e":7473}],[-34,{"n":5,"e":5489,"s":1}],[-18,{"n":3,"e":5652}],[-15,{"n":4.5,"e":5685}],[-12,{"n":5,"e":5709}],[-38,{"n":3,"e":5454,"a":1}],[-37,{"n":6,"e":5458}],[-36,{"n":4.5,"e":5470}],[-35,{"n":4.5,"e":5480}],[-32,{"n":5,"e":5509}],[-31,{"n":5.5,"e":5520}],[-30,{"n":5,"e":5529,"s":1}],[-27,{"n":6,"e":5565}],[-26,{"n":3,"e":5568}],[-24,{"n":4.5,"e":5590}],[-23,{"n":5,"e":5600}],[-22,{"n":4.5,"e":5610}],[-21,{"n":4.5,"e":5620}],[-20,{"n":5,"e":5630}],[-19,{"n":4,"e":5638}],[-17,{"n":4.5,"e":5667}],[-16,{"n":4,"e":5670}],[-14,{"n":4,"e":5689}],[-13,{"n":5.5,"e":5700}],[-11,{"n":6,"e":5718}],[-10,{"n":6,"e":5729}],[-9,{"n":5.5,"e":5746,"s":1}],[-8,{"n":5,"e":5749,"s":1}],[-5,{"n":6,"e":5782}],[4,{"n":5,"e":7453,"s":1}],[3,{"n":5,"e":7459,"s":1}]],"fo":[[5480,[{"t":"Y"}]]]}],[1599,{"n":"Godín","f":"Diego","fp":"DC","r":13,"c":108,"s":{"g":1,"s":10.5,"n":2,"a":5.25,"d":0.35,"Sg":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":2,"Os":115.5,"On":22,"Oa":5.25,"Od":0.8,"pd":22},"p":[[-37,{"n":5,"e":5460,"s":1}],[-35,{"n":6,"e":5479}],[-28,{"n":5,"e":5554}],[-24,{"n":4,"e":5592}],[-23,{"n":5,"e":5601}],[-16,{"n":5,"e":5671,"s":1}],[-15,{"n":5.5,"e":5680}],[-14,{"n":5,"e":5692,"s":1}],[-10,{"n":6,"e":5728}],[-9,{"n":4,"e":5742}],[-7,{"n":4,"e":5763}],[-5,{"n":5.5,"e":5781}],[-38,{"n":6.5,"e":5448}],[-36,{"n":6,"e":5471}],[-32,{"n":7,"e":5512,"g":1}],[-31,{"n":5,"e":5527}],[-21,{"n":4.5,"e":5620,"s":1}],[-20,{"n":6,"e":5634}],[-19,{"n":4.5,"e":5640}],[-13,{"n":5.5,"e":5706}],[4,{"n":5.5,"e":7453}],[3,{"n":5,"e":7459,"g":1}]],"fo":[[5512,[{"t":"Y"}]],[5554,[{"t":"Y"}]]]}],[3343,{"n":"Rog","f":"Marko","fp":"MO","r":11,"c":108,"s":{"s":20.5,"n":4,"a":5.13,"d":0.48,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.48,"Og":1,"Os":161,"On":31,"Oa":5.19,"Od":0.93,"pm":31},"p":[[-37,{"n":5,"e":5458}],[-35,{"n":5,"e":5480}],[-34,{"n":5.5,"e":5489}],[-33,{"n":4,"e":5504}],[-32,{"n":6.5,"e":5509}],[-31,{"n":5,"e":5520}],[-30,{"n":5.5,"e":5529}],[-29,{"n":6,"e":5539}],[-28,{"n":5.5,"e":5549}],[-27,{"n":5,"e":5565}],[-26,{"n":3.5,"e":5568}],[-25,{"n":4.5,"e":5587}],[-20,{"n":4.5,"e":5630}],[-19,{"n":4,"e":5638}],[-18,{"n":3,"e":5652}],[-17,{"n":5.5,"e":5667}],[-15,{"n":6,"e":5685}],[-14,{"n":6.5,"e":5689}],[-13,{"n":5.5,"e":5700}],[-12,{"n":7,"e":5709,"g":1}],[-11,{"n":6,"e":5718}],[-10,{"n":6,"e":5729}],[-9,{"n":5,"e":5746,"s":1}],[-8,{"n":6.5,"e":5749}],[-7,{"n":4,"e":5764}],[-6,{"n":4.5,"e":5768}],[-5,{"n":5.5,"e":5782}],[4,{"n":5.5,"e":7453}],[3,{"n":4.5,"e":7459}],[2,{"n":5.5,"e":7464}],[1,{"n":5,"e":7473}]],"fo":[[5458,[{"t":"I"},{"t":"Y"}]],[5489,[{"t":"Y"}]],[5504,[{"t":"Y"}]],[5565,[{"t":"Y"}]],[7453,[{"t":"Y"}]],[7473,[{"t":"Y"}]]]}],[4255,{"n":"Walukiewicz","f":"Sebastian","fp":"DC","r":8,"c":108,"s":{"s":18,"n":4,"a":4.5,"d":1.29,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1.29,"Os":86,"On":18,"Oa":4.78,"Od":1.03,"pd":18},"p":[[-38,{"n":2.5,"e":5454}],[-37,{"n":6,"e":5458}],[-35,{"n":4.5,"e":5480}],[-33,{"n":3.5,"e":5504}],[-32,{"n":5.5,"e":5509}],[-31,{"n":5,"e":5520}],[-30,{"n":6,"e":5529}],[-29,{"n":4.5,"e":5539}],[-28,{"n":5.5,"e":5549}],[-27,{"n":6,"e":5565}],[-24,{"n":4.5,"e":5590}],[-23,{"n":5,"e":5600,"s":1}],[-21,{"n":5,"e":5620}],[-18,{"n":4.5,"e":5652}],[4,{"n":6,"e":7453}],[3,{"n":3,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":5,"e":7473}]],"fo":[[5539,[{"t":"I"}]]]}],[4302,{"n":"Zappa","f":"Gabriele","fp":"DL","r":6,"c":108,"s":{"s":17.5,"n":4,"a":4.38,"d":0.95,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.95,"Os":17.5,"On":4,"Oa":4.38,"Od":0.95,"pd":4},"p":[[4,{"n":5,"e":7453}],[3,{"n":3,"e":7459}],[2,{"n":5,"e":7464,"s":1}],[1,{"n":4.5,"e":7473,"s":1}]]}],[4304,{"n":"Sottil","f":"Riccardo","fp":"A","r":7,"c":108,"s":{"s":20,"n":4,"a":5,"d":1,"Ss":20,"Sn":4,"Sa":5,"Sd":1,"Os":95,"On":20,"Oa":4.75,"Od":0.55,"pm":3,"pa":17},"p":[[-30,{"n":4.5,"e":5534,"s":1}],[-29,{"n":5,"e":5540,"s":1}],[-28,{"n":4.5,"e":5551,"s":1}],[-27,{"n":4.5,"e":5560,"s":1}],[-22,{"n":5,"e":5611,"s":1}],[-20,{"n":4.5,"e":5636,"s":1}],[-17,{"n":4.5,"e":5659,"s":1}],[-10,{"n":5,"e":5736}],[-9,{"n":4.5,"e":5740,"s":1}],[-8,{"n":5,"e":5748,"s":1}],[-38,{"n":5,"e":5456,"s":1}],[-32,{"n":3.5,"e":5510}],[-23,{"n":4.5,"e":5599,"s":1}],[-15,{"n":5,"e":5686,"s":1}],[-12,{"n":5,"e":5709,"s":1}],[-5,{"n":5,"e":5779,"s":1}],[4,{"n":6.5,"e":7453}],[3,{"n":4.5,"e":7459}],[2,{"n":4.5,"e":7464}],[1,{"n":4.5,"e":7473,"s":1}]],"fo":[[5534,[{"t":"Y"}]]]}],[4334,{"n":"Caligara","f":"Fabrizio","fp":"MD","r":8,"c":108,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.25,"Os":20.5,"On":4,"Oa":5.13,"Od":0.25,"pm":4},"p":[[4,{"n":5,"e":7453,"s":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5.5,"e":7464,"s":1}],[1,{"n":5,"e":7473}]]}],[4358,{"n":"Tripaldelli","f":"Alessandro","fp":"DL","r":7,"c":108,"s":{"s":10,"n":2,"a":5,"Os":19.5,"On":4,"Oa":4.88,"Od":0.25,"pd":4},"p":[[-8,{"n":4.5,"e":5756}],[-6,{"n":5,"e":5776,"s":1}],[2,{"n":5,"e":7464,"s":1}],[1,{"n":5,"e":7473,"s":1}]]}],[4427,{"n":"Pajac","f":"Marko","fp":"MD","r":3,"c":108,"s":{"Os":42.5,"On":9,"Oa":4.72,"Od":0.79,"pd":4,"pm":5},"p":[[-8,{"n":3,"e":5754}],[-18,{"n":5,"e":5651}],[-16,{"n":4,"e":5672}],[-15,{"n":4.5,"e":5682}],[-14,{"n":5,"e":5691}],[-12,{"n":5.5,"e":5713}],[-7,{"n":5.5,"e":5762}],[-6,{"n":5,"e":5770,"s":1}],[-5,{"n":5,"e":5780,"s":1}]]}],[4479,{"n":"Bradaric","f":"Filip","fp":"MD","r":7,"c":108,"s":{"Os":67,"On":14,"Oa":4.79,"Od":0.67,"pm":14},"p":[[-38,{"n":4.5,"e":4310}],[-37,{"n":4.5,"e":4320,"s":1}],[-36,{"n":5,"e":4334,"s":1}],[-35,{"n":5,"e":4340,"s":1}],[-34,{"n":4.5,"e":4350,"s":1}],[-33,{"n":3.5,"e":4362}],[-32,{"n":5,"e":4370,"s":1}],[-31,{"n":6,"e":4385}],[-30,{"n":5,"e":4390,"s":1}],[-28,{"n":5,"e":4409}],[-27,{"n":5.5,"e":4422}],[-25,{"n":3.5,"e":4441}],[-24,{"n":5,"e":4454}],[-23,{"n":5,"e":4460,"s":1}]],"fo":[[4310,[{"t":"Y"}]],[4350,[{"t":"Y"}]]]}],[4481,{"n":"Simeone","f":"Giovanni","fp":"A","r":18,"c":108,"s":{"g":3,"s":21.5,"n":4,"a":5.38,"d":2.06,"Sg":3,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":2.06,"Og":13,"Os":189,"On":38,"Oa":4.97,"Od":1.35,"pa":38},"p":[[-38,{"n":2.5,"e":5454}],[-37,{"n":7,"e":5458,"g":1}],[-36,{"n":4.5,"e":5470}],[-35,{"n":6,"e":5480,"g":1}],[-34,{"n":4.5,"e":5489,"s":1}],[-33,{"n":3,"e":5504}],[-32,{"n":4.5,"e":5509}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":5.5,"e":5539,"g":1}],[-28,{"n":6.5,"e":5549,"g":1}],[-27,{"n":6.5,"e":5565,"g":1}],[-26,{"n":4.5,"e":5568,"s":1}],[-25,{"n":6,"e":5587,"g":1}],[-24,{"n":4,"e":5590}],[-23,{"n":3.5,"e":5600}],[-22,{"n":7,"e":5610,"g":1}],[-21,{"n":5,"e":5620}],[-20,{"n":6,"e":5630}],[-19,{"n":3.5,"e":5638}],[-18,{"n":3.5,"e":5652}],[-17,{"n":3.5,"e":5667}],[-16,{"n":6,"e":5670,"g":1}],[-15,{"n":3.5,"e":5685}],[-14,{"n":5,"e":5689}],[-13,{"n":4,"e":5700}],[-12,{"n":7,"e":5709,"g":1}],[-11,{"n":6.5,"e":5718}],[-10,{"n":7,"e":5729,"g":1}],[-9,{"n":5,"e":5746}],[-8,{"n":4.5,"e":5749}],[-7,{"n":4,"e":5764}],[-6,{"n":4.5,"e":5768}],[-5,{"n":4,"e":5782}],[4,{"n":8,"e":7453,"g":2}],[3,{"n":3.5,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":6,"e":7473,"g":1}]],"a":{"m":21,"a":33,"M":77,"n":6}}],[4506,{"n":"Cerri","f":"Alberto","fp":"A","r":7,"c":108,"s":{"Og":2,"Os":77.5,"On":17,"Oa":4.56,"Od":0.73,"pa":17},"p":[[-35,{"n":6,"e":5483,"g":1}],[-34,{"n":5,"e":5488}],[-33,{"n":3,"e":5503}],[-32,{"n":4,"e":5511,"s":1}],[-31,{"n":4.5,"e":5525,"s":1}],[-30,{"n":4,"e":5535}],[-28,{"n":4,"e":5553}],[-27,{"n":4,"e":5565,"s":1}],[-20,{"n":5,"e":5630,"s":1}],[-19,{"n":4.5,"e":5638,"s":1}],[-18,{"n":4.5,"e":5652,"s":1}],[-17,{"n":5,"e":5667,"s":1}],[-15,{"n":4.5,"e":5685,"s":1}],[-14,{"n":6,"e":5689,"g":1,"s":1}],[-12,{"n":4.5,"e":5709,"s":1}],[-11,{"n":4.5,"e":5718,"s":1}],[-5,{"n":4.5,"e":5782,"s":1}]],"fo":[[5511,[{"t":"Y"}]]]}],[4562,{"n":"Faragò","f":"Paolo","fp":"DL","r":8,"c":108,"s":{"s":12.5,"n":3,"a":4.17,"d":0.76,"Og":1,"Oao":1,"Os":117.5,"On":24,"Oa":4.9,"Od":0.85,"pd":11,"pm":13},"p":[[-38,{"n":4,"e":5454}],[-37,{"n":6,"e":5458}],[-36,{"n":5.5,"e":5470,"s":1}],[-35,{"n":5,"e":5480}],[-34,{"n":6,"e":5489}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509,"s":1}],[-31,{"n":4.5,"e":5520,"s":1}],[-30,{"n":4.5,"e":5529,"s":1}],[-23,{"n":4.5,"e":5600}],[-22,{"n":4.5,"e":5610}],[-21,{"n":5,"e":5620}],[-20,{"n":4.5,"e":5630}],[-19,{"n":4,"e":5638}],[-18,{"n":5.5,"e":5652,"s":1}],[-17,{"n":4.5,"e":5667}],[-16,{"n":5,"e":5670,"s":1}],[-14,{"n":5,"e":5689}],[-10,{"n":4,"e":5729,"a":1}],[-9,{"n":5,"e":5746}],[-8,{"n":7.5,"e":5749,"g":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":3.5,"e":7464}],[1,{"n":4,"e":7473}]],"fo":[[5454,[{"t":"Y"}]],[5489,[{"t":"Y"}]],[7473,[{"t":"Y"}]]]}],[4590,{"n":"Lykogiannis","f":"Charalampos","fp":"DL","r":9,"c":108,"s":{"s":17.5,"n":4,"a":4.38,"d":1.11,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":1.11,"Os":103.5,"On":22,"Oa":4.7,"Od":0.8,"pd":18,"pm":4},"p":[[-38,{"n":3.5,"e":5454}],[-37,{"n":5,"e":5458,"s":1}],[-36,{"n":4.5,"e":5470}],[-35,{"n":5,"e":5480}],[-33,{"n":3.5,"e":5504}],[-32,{"n":5,"e":5509}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":5.5,"e":5539,"s":1}],[-28,{"n":5.5,"e":5549}],[-27,{"n":5,"e":5565,"s":1}],[-25,{"n":5,"e":5587,"s":1}],[-17,{"n":3.5,"e":5667}],[-16,{"n":5,"e":5670}],[-15,{"n":4,"e":5685,"s":1}],[-13,{"n":5,"e":5700}],[-11,{"n":6,"e":5718}],[-5,{"n":5.5,"e":5782}],[4,{"n":5,"e":7453}],[3,{"n":3,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":5.5,"e":7473}]],"fo":[[5520,[{"t":"Y"}]],[7453,[{"t":"Y"}]]]}],[4605,{"n":"Cragno","f":"Alessio","fp":"G","r":16,"c":108,"s":{"s":21,"n":4,"a":5.25,"d":1.55,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.55,"Os":115,"On":20,"Oa":5.75,"Od":1.48,"pg":20},"p":[[-38,{"n":5.5,"e":5454}],[-37,{"n":8,"e":5458}],[-36,{"n":6,"e":5470}],[-35,{"n":8,"e":5480}],[-34,{"n":4.5,"e":5489}],[-33,{"n":3.5,"e":5504}],[-32,{"n":8,"e":5509}],[-31,{"n":7,"e":5520}],[-30,{"n":7.5,"e":5529}],[-29,{"n":5.5,"e":5539}],[-28,{"n":5,"e":5549}],[-25,{"n":4,"e":5587}],[-24,{"n":5.5,"e":5590}],[-23,{"n":6,"e":5600}],[-22,{"n":4,"e":5610}],[-21,{"n":6,"e":5620}],[4,{"n":5,"e":7453}],[3,{"n":4,"e":7459}],[2,{"n":4.5,"e":7464}],[1,{"n":7.5,"e":7473}]],"fo":[[5454,[{"t":"Y"}]]]}],[4645,{"n":"João Pedro","f":"","fp":"A","r":39,"c":108,"s":{"g":2,"s":23,"n":4,"a":5.75,"d":0.87,"Sg":2,"Ss":23,"Sn":4,"Sa":5.75,"Sd":0.87,"Og":18,"Os":201,"On":36,"Oa":5.58,"Od":0.99,"pm":12,"pa":24},"p":[[-37,{"n":6,"e":5458}],[-36,{"n":4.5,"e":5470}],[-35,{"n":5,"e":5480}],[-34,{"n":6,"e":5489,"g":1}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509}],[-31,{"n":5,"e":5520}],[-30,{"n":4.5,"e":5529}],[-29,{"n":5,"e":5539}],[-28,{"n":6.5,"e":5549,"g":1}],[-27,{"n":5.5,"e":5565}],[-26,{"n":6.5,"e":5568,"g":2}],[-24,{"n":5,"e":5590}],[-23,{"n":6,"e":5600}],[-22,{"n":5.5,"e":5610,"g":1}],[-21,{"n":5.5,"e":5620}],[-20,{"n":8,"e":5630,"g":2}],[-19,{"n":4.5,"e":5638}],[-18,{"n":4,"e":5652}],[-17,{"n":6,"e":5667,"g":1}],[-16,{"n":5.5,"e":5670}],[-15,{"n":6,"e":5685,"g":1}],[-14,{"n":8,"e":5689,"g":2}],[-13,{"n":6,"e":5700,"g":1}],[-12,{"n":7,"e":5709,"g":1}],[-11,{"n":5,"e":5718}],[-10,{"n":7,"e":5729,"g":2}],[-9,{"n":4,"e":5746}],[-8,{"n":5.5,"e":5749}],[-7,{"n":5.5,"e":5764,"g":1}],[-6,{"n":4,"e":5768}],[-5,{"n":5,"e":5782}],[4,{"n":6.5,"e":7453,"g":1}],[3,{"n":6,"e":7459,"g":1}],[2,{"n":4.5,"e":7464}],[1,{"n":6,"e":7473}]],"fo":[[5458,[{"t":"Y"}]]],"a":{"m":39,"a":50,"M":79,"n":6}}],[4690,{"n":"Pavoletti","f":"Leonardo","fp":"A","r":4,"c":108,"s":{"s":13,"n":3,"a":4.33,"d":0.29,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.29,"Os":17.5,"On":4,"Oa":4.38,"Od":0.25,"pa":4},"p":[[-38,{"n":4.5,"e":5454,"s":1}],[4,{"n":4,"e":7453,"s":1}],[3,{"n":4.5,"e":7459,"s":1}],[2,{"n":4.5,"e":7464,"s":1}]],"fo":[[7453,[{"t":"Y"}]]]}],[4700,{"n":"Ceppitelli","f":"Luca","fp":"DC","r":5,"c":108,"s":{"Oao":1,"Os":60,"On":12,"Oa":5,"Od":0.8,"pd":12},"p":[[-38,{"n":4,"e":5454}],[-37,{"n":6,"e":5458}],[-36,{"n":5,"e":5470}],[-34,{"n":5.5,"e":5489}],[-29,{"n":5,"e":5539}],[-28,{"n":5.5,"e":5549}],[-25,{"n":3.5,"e":5587}],[-9,{"n":5,"e":5746}],[-8,{"n":6,"e":5749}],[-7,{"n":4,"e":5764,"a":1}],[-6,{"n":5.5,"e":5768}],[-5,{"n":5,"e":5782,"s":1}]],"fo":[[5539,[{"t":"I"}]],[5587,[{"t":"Y"}]]]}],[4732,{"n":"Pisacane","f":"Fabio","fp":"DC","r":7,"c":108,"s":{"s":5.5,"n":1,"a":5.5,"Og":1,"Os":140,"On":28,"Oa":5,"Od":0.97,"pd":27,"pm":1},"p":[[-36,{"n":4.5,"e":5470}],[-35,{"n":4.5,"e":5480,"s":1}],[-34,{"n":5,"e":5489}],[-33,{"n":3.5,"e":5504}],[-30,{"n":4.5,"e":5529}],[-29,{"n":5,"e":5539,"s":1}],[-27,{"n":6,"e":5565}],[-26,{"n":3,"e":5568}],[-25,{"n":4.5,"e":5587}],[-24,{"n":4.5,"e":5590}],[-23,{"n":5.5,"e":5600}],[-22,{"n":5,"e":5610}],[-20,{"n":4,"e":5630}],[-19,{"n":4.5,"e":5638}],[-17,{"n":4,"e":5667}],[-16,{"n":4,"e":5670}],[-15,{"n":4.5,"e":5685}],[-14,{"n":6,"e":5689}],[-13,{"n":4.5,"e":5700}],[-12,{"n":6.5,"e":5709,"g":1}],[-11,{"n":7.5,"e":5718}],[-10,{"n":5,"e":5729}],[-9,{"n":5,"e":5746}],[-8,{"n":6,"e":5749}],[-7,{"n":6,"e":5764}],[-6,{"n":5.5,"e":5768}],[-5,{"n":6,"e":5782}],[1,{"n":5.5,"e":7473,"s":1}]],"fo":[[5565,[{"t":"I"}]],[5529,[{"t":"Y"}]],[5587,[{"t":"Y"}]]]}],[4783,{"n":"Aresti","f":"Simone","fp":"G","r":1,"c":108}],[4958,{"n":"Tramoni","f":"Matteo","fp":"MO","r":8,"c":108,"s":{"s":4.5,"n":1,"a":4.5,"Og":1,"Os":106,"On":20,"Oa":5.3,"Od":0.97,"pm":20},"p":[[2,{"n":5,"e":6568,"s":1}],[-28,{"n":5,"e":4788}],[-27,{"n":5,"e":4806}],[-26,{"n":5,"e":4808}],[-25,{"n":7,"e":4825}],[-24,{"n":4.5,"e":4828}],[-22,{"n":4.5,"e":4848}],[-21,{"n":6,"e":4859}],[-20,{"n":6.5,"e":4868}],[-19,{"n":4,"e":4886}],[-18,{"n":4.5,"e":4888}],[-16,{"n":5,"e":4909}],[-15,{"n":5.5,"e":4918}],[-14,{"n":5,"e":4930}],[-13,{"n":5.5,"e":4938}],[-12,{"n":8,"e":4956,"g":1}],[-11,{"n":4.5,"e":4958}],[-10,{"n":5.5,"e":4972}],[-9,{"n":5.5,"e":4978}],[3,{"n":4.5,"e":7459,"s":1}]]}],[5312,{"n":"Oliva","f":"Christian","fp":"MD","r":6,"c":108,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":60,"On":11,"Oa":5.45,"Od":0.93,"pm":11},"p":[[-26,{"n":5,"e":5568}],[-22,{"n":4.5,"e":5610,"s":1}],[-21,{"n":5.5,"e":5620}],[-20,{"n":5,"e":5630,"s":1}],[-18,{"n":5,"e":5652,"s":1}],[-16,{"n":5,"e":5670,"s":1}],[-11,{"n":7.5,"e":5718,"g":1}],[-10,{"n":5,"e":5729,"s":1}],[-6,{"n":5.5,"e":5768,"s":1}],[-5,{"n":7,"e":5782}],[1,{"n":5,"e":7473,"s":1}]]}],[6135,{"n":"Pinna","f":"Simone","fp":"DL","r":4,"c":108}],[6136,{"n":"Nández","f":"Nahitan","fp":"MD","r":12,"c":108,"s":{"s":19.5,"n":4,"a":4.88,"d":1.03,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.03,"Og":2,"Os":172.5,"On":35,"Oa":4.93,"Od":0.77,"pm":35},"p":[[-38,{"n":4,"e":5454}],[-36,{"n":4.5,"e":5470}],[-35,{"n":5,"e":5480}],[-34,{"n":4.5,"e":5489}],[-33,{"n":4.5,"e":5504}],[-32,{"n":6,"e":5509}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":5,"e":5539}],[-28,{"n":6,"e":5549,"g":1}],[-27,{"n":5.5,"e":5565}],[-25,{"n":4,"e":5587}],[-24,{"n":4.5,"e":5590}],[-23,{"n":5,"e":5600}],[-22,{"n":5,"e":5610}],[-21,{"n":5,"e":5620}],[-20,{"n":6,"e":5630}],[-19,{"n":3.5,"e":5638}],[-18,{"n":3.5,"e":5652}],[-16,{"n":4,"e":5670}],[-15,{"n":5,"e":5685}],[-14,{"n":5,"e":5689,"s":1}],[-13,{"n":5,"e":5700}],[-12,{"n":5.5,"e":5709}],[-11,{"n":5,"e":5718,"s":1}],[-10,{"n":5,"e":5729}],[-9,{"n":5.5,"e":5746,"g":1}],[-8,{"n":5.5,"e":5749,"s":1}],[-7,{"n":4.5,"e":5764}],[-6,{"n":5,"e":5768}],[-5,{"n":7,"e":5782}],[4,{"n":6,"e":7453}],[3,{"n":4,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":5.5,"e":7473}]],"fo":[[5470,[{"t":"Y"}]],[5529,[{"t":"Y"}]],[5565,[{"t":"Y"}]],[5587,[{"t":"Y"}]],[7473,[{"t":"Y"}]]]}],[6348,{"n":"Carboni","f":"Andrea","fp":"DC","r":5,"c":108,"s":{"Os":30.5,"On":7,"Oa":4.36,"Od":1.03,"pd":7},"p":[[-38,{"n":5,"e":5454,"s":1}],[-34,{"n":3,"e":5489}],[-33,{"n":4,"e":5504}],[-30,{"n":3,"e":5529}],[-29,{"n":5.5,"e":5539}],[-28,{"n":5,"e":5549}],[-27,{"n":5,"e":5565,"s":1}]],"fo":[[5529,[{"t":"R"},{"t":"Y"}]],[5489,[{"t":"Y"},{"t":"O"}]],[5539,[{"t":"Y"}]],[5549,[{"t":"Y"}]]]}],[6525,{"n":"Pereiro","f":"Gastón","fp":"MO","r":6,"c":108,"s":{"Og":1,"Os":45.5,"On":10,"Oa":4.55,"Od":0.64,"pm":7,"pa":3},"p":[[-38,{"n":4.5,"e":5454}],[-37,{"n":4.5,"e":5458,"s":1}],[-36,{"n":4.5,"e":5470,"s":1}],[-34,{"n":4,"e":5489}],[-33,{"n":4.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509,"s":1}],[-26,{"n":6,"e":5568,"g":1,"s":1}],[-25,{"n":3.5,"e":5587}],[-24,{"n":4.5,"e":5590}],[-23,{"n":4.5,"e":5600,"s":1}]],"fo":[[5454,[{"t":"Y"}]],[5587,[{"t":"Y"}]]]}],[6607,{"n":"Boccia","f":"Salvatore","fp":"DC","r":2,"c":108}],[7167,{"n":"Vicario","f":"Guglielmo","fp":"G","r":1,"c":108}],[7169,{"n":"Marin","f":"Razvan","fp":"MD","r":11,"c":108,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.25,"Os":18.5,"On":4,"Oa":4.63,"Od":0.25,"pm":4},"p":[[4,{"n":5,"e":7453}],[3,{"n":4.5,"e":7459}],[2,{"n":4.5,"e":7464}],[1,{"n":4.5,"e":7473}]],"fo":[[7464,[{"t":"Y"}]]]}],[7227,{"n":"Conti","f":"Bruno","fp":"MO","r":2,"c":108}],[7346,{"n":"Zito","f":"","fp":"A","r":5,"c":108}],[404,{"n":"Djidji","f":"Koffi","fp":"DC","r":4,"c":139,"s":{"Oao":1,"Os":66,"On":14,"Oa":4.71,"Od":0.93,"pd":14},"p":[[-37,{"n":4,"e":5465,"s":1}],[-6,{"n":5,"e":5774,"s":1}],[-38,{"n":5.5,"e":5449}],[-31,{"n":5,"e":5526,"s":1}],[-30,{"n":4,"e":5531,"a":1,"s":1}],[-29,{"n":5,"e":5546,"s":1}],[-22,{"n":3,"e":5613}],[-21,{"n":3,"e":5626}],[-20,{"n":5,"e":5637}],[-19,{"n":6,"e":5645}],[-18,{"n":6,"e":5656}],[-10,{"n":5,"e":5731,"s":1}],[-9,{"n":4.5,"e":5746}],[-5,{"n":5,"e":5786,"s":1}]]}],[1529,{"n":"Rivière","f":"Emmanuel","fp":"A","r":12,"c":139,"s":{"g":1,"s":6,"n":1,"a":6,"Og":1,"Os":6,"On":1,"Oa":6,"pa":1},"p":[[1,{"n":6,"e":7491,"g":1}]]}],[4316,{"n":"Reca","f":"Arkadiusz","fp":"DL","r":7,"c":139,"s":{"s":13,"n":3,"a":4.33,"d":1.15,"Ss":13,"Sn":3,"Sa":4.33,"Sd":1.15,"Os":116,"On":27,"Oa":4.3,"Od":0.84,"pd":13,"pm":14},"p":[[4,{"n":5,"e":7501}],[3,{"n":3,"e":7485}],[2,{"n":5,"e":7490,"s":1}],[-25,{"n":4,"e":5585}],[-12,{"n":5,"e":5717}],[-10,{"n":5,"e":5732}],[-9,{"n":5,"e":5745}],[-7,{"n":5.5,"e":5765}],[-5,{"n":4,"e":5785}],[-35,{"n":2.5,"e":5483,"s":1}],[-34,{"n":5,"e":5488}],[-33,{"n":4,"e":5503}],[-32,{"n":3,"e":5511}],[-31,{"n":5,"e":5525,"s":1}],[-28,{"n":4.5,"e":5553}],[-27,{"n":4.5,"e":5565,"s":1}],[-26,{"n":3.5,"e":5574}],[-24,{"n":4.5,"e":5593}],[-23,{"n":4,"e":5605}],[-22,{"n":3,"e":5612}],[-21,{"n":3,"e":5624}],[-20,{"n":5.5,"e":5628}],[-14,{"n":5,"e":5692}],[-13,{"n":4.5,"e":5703}],[-11,{"n":4.5,"e":5725}],[-8,{"n":4,"e":5749}],[-6,{"n":4.5,"e":5769}]],"fo":[[5488,[{"t":"Y"}]],[7501,[{"t":"Y"}]]]}],[4415,{"n":"Petriccione","f":"Jacopo","fp":"MD","r":10,"c":139,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":153,"On":30,"Oa":5.1,"Od":0.98,"pm":30},"p":[[-18,{"n":5,"e":5653}],[-14,{"n":6.5,"e":5690}],[-6,{"n":5.5,"e":5771}],[-38,{"n":4,"e":5453,"s":1}],[-37,{"n":5,"e":5466}],[-36,{"n":6,"e":5468,"s":1}],[-34,{"n":4.5,"e":5491}],[-33,{"n":4,"e":5500}],[-32,{"n":5.5,"e":5509}],[-31,{"n":7,"e":5522}],[-30,{"n":4,"e":5536}],[-29,{"n":5,"e":5543,"s":1}],[-28,{"n":5.5,"e":5550}],[-27,{"n":3.5,"e":5563}],[-25,{"n":2.5,"e":5584}],[-23,{"n":5,"e":5602,"s":1}],[-22,{"n":5,"e":5613,"s":1}],[-20,{"n":6,"e":5634}],[-19,{"n":5.5,"e":5642}],[-17,{"n":6,"e":5662}],[-15,{"n":6,"e":5682}],[-13,{"n":4.5,"e":5700}],[-12,{"n":6.5,"e":5712}],[-11,{"n":5,"e":5722}],[-10,{"n":5,"e":5735}],[-9,{"n":4,"e":5743}],[-8,{"n":6,"e":5752,"s":1}],[-7,{"n":4.5,"e":5758}],[-5,{"n":5.5,"e":5785}],[4,{"n":5,"e":7501,"s":1}]],"fo":[[5491,[{"t":"Y"}]],[5522,[{"t":"Y"}]]]}],[4475,{"n":"Luperto","f":"Sebastiano","fp":"DC","r":6,"c":139,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":42.5,"On":9,"Oa":4.72,"Od":0.51,"pd":9},"p":[[-17,{"n":4,"e":5665}],[-16,{"n":5,"e":5675,"s":1}],[-6,{"n":5.5,"e":5773,"s":1}],[-20,{"n":4,"e":5636}],[-12,{"n":5,"e":5713,"s":1}],[-10,{"n":4.5,"e":5733}],[-9,{"n":4.5,"e":5745}],[-7,{"n":5,"e":5766}],[4,{"n":5,"e":7501}]],"fo":[[7501,[{"t":"I"}]]]}],[4708,{"n":"Marrone","f":"Luca","fp":"DC","r":8,"c":139,"s":{"s":14,"n":4,"a":3.5,"d":0.71,"Ss":14,"Sn":4,"Sa":3.5,"Sd":0.71,"Os":14,"On":4,"Oa":3.5,"Od":0.71,"pd":4},"p":[[4,{"n":4.5,"e":7501}],[3,{"n":3,"e":7485}],[2,{"n":3.5,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7490,[{"t":"Y"}]]]}],[4751,{"n":"Siligardi","f":"Luca","fp":"A","r":7,"c":139,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":5,"Sn":1,"Sa":5,"Os":67.5,"On":14,"Oa":4.82,"Od":0.5,"pm":2,"pa":12},"p":[[1,{"n":4.5,"e":7472,"s":1}],[-24,{"n":5,"e":5596}],[-20,{"n":5,"e":5632,"s":1}],[-38,{"n":5,"e":5453,"s":1}],[-37,{"n":4.5,"e":5462,"s":1}],[-36,{"n":6,"e":5469,"s":1}],[-35,{"n":5.5,"e":5482}],[-34,{"n":5,"e":5495,"s":1}],[-30,{"n":4.5,"e":5534,"s":1}],[-29,{"n":4.5,"e":5547,"s":1}],[-26,{"n":4.5,"e":5574,"s":1}],[-22,{"n":4,"e":5610}],[4,{"n":5,"e":7501,"s":1}],[2,{"n":4.5,"e":7469,"s":1}]]}],[4816,{"n":"Cigarini","f":"Luca","fp":"MD","r":7,"c":139,"s":{"s":18,"n":4,"a":4.5,"d":1.22,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1.22,"Os":115.5,"On":23,"Oa":5.02,"Od":1.09,"pm":23},"p":[[-28,{"n":4.5,"e":5549,"s":1}],[-25,{"n":3.5,"e":5587}],[-24,{"n":5.5,"e":5590}],[-22,{"n":4,"e":5610}],[-21,{"n":5,"e":5620,"s":1}],[-20,{"n":4.5,"e":5630}],[-19,{"n":5.5,"e":5638}],[-18,{"n":3,"e":5652}],[-17,{"n":6,"e":5667}],[-16,{"n":5.5,"e":5670}],[-15,{"n":4.5,"e":5685}],[-14,{"n":5,"e":5689}],[-13,{"n":4.5,"e":5700}],[-12,{"n":7,"e":5709}],[-10,{"n":5.5,"e":5729}],[-9,{"n":6.5,"e":5746}],[-8,{"n":7,"e":5749}],[-7,{"n":5,"e":5764}],[-6,{"n":5.5,"e":5768}],[4,{"n":4.5,"e":7501}],[3,{"n":4.5,"e":7485}],[2,{"n":6,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[5549,[{"t":"Y"}]],[5587,[{"t":"Y"},{"t":"O"}]],[7485,[{"t":"Y"}]],[7501,[{"t":"Y"}]]]}],[6138,{"n":"Rispoli","f":"Andrea","fp":"DL","r":11,"c":139,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":137.5,"On":28,"Oa":4.91,"Od":0.77,"pd":28},"p":[[-36,{"n":5,"e":5468,"s":1}],[-35,{"n":5.5,"e":5481}],[-33,{"n":3,"e":5500}],[-32,{"n":5,"e":5509,"s":1}],[-31,{"n":5.5,"e":5522,"s":1}],[-29,{"n":5,"e":5543}],[-28,{"n":5,"e":5550}],[-27,{"n":3.5,"e":5563}],[-23,{"n":6,"e":5602}],[-22,{"n":6,"e":5613}],[-21,{"n":4,"e":5627}],[-20,{"n":6,"e":5634}],[-19,{"n":5,"e":5642,"s":1}],[-17,{"n":4,"e":5662}],[-16,{"n":3.5,"e":5669}],[-15,{"n":5.5,"e":5682}],[-14,{"n":6,"e":5690}],[-13,{"n":5.5,"e":5700}],[-12,{"n":5,"e":5712,"s":1}],[-10,{"n":5,"e":5735,"s":1}],[-9,{"n":5,"e":5743,"s":1}],[-7,{"n":5,"e":5758}],[-6,{"n":4.5,"e":5771}],[-5,{"n":5,"e":5785}],[4,{"n":5,"e":7501,"s":1}],[3,{"n":4.5,"e":7485,"s":1}],[2,{"n":5,"e":7490,"s":1}],[1,{"n":4.5,"e":7491,"s":1}]],"fo":[[5468,[{"t":"Y"}]]]}],[6238,{"n":"Magallán","f":"Lisandro","fp":"DC","r":7,"c":139,"s":{"s":16.5,"n":4,"a":4.13,"d":1.03,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":1.03,"Og":1,"Os":92.5,"On":21,"Oa":4.4,"Od":1.29,"pd":21},"p":[[-38,{"n":2,"e":4308}],[-37,{"n":5,"e":4324,"s":1}],[-34,{"n":4.5,"e":4355}],[-33,{"n":3,"e":4358}],[-29,{"n":7,"e":4398}],[-26,{"n":4.5,"e":4432,"s":1}],[-24,{"n":3,"e":4453}],[-23,{"n":5.5,"e":4458}],[-22,{"n":5.5,"e":4475}],[-17,{"n":5,"e":4518,"s":1}],[-14,{"n":5,"e":4548,"s":1}],[-12,{"n":4,"e":4573}],[-11,{"n":4.5,"e":4578}],[-10,{"n":3,"e":4597}],[-9,{"n":7,"e":4598,"g":1}],[-6,{"n":3.5,"e":4635}],[-30,{"n":4,"e":4390}],[4,{"n":5,"e":7501}],[3,{"n":3.5,"e":7485}],[2,{"n":5,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7485,[{"t":"Y"}]],[7501,[{"t":"Y"}]]]}],[6938,{"n":"D'Alterio","f":"Francesco","fp":"G","r":1,"c":139}],[6940,{"n":"Yakubiv","f":"Sergio","fp":"DC","r":1,"c":139}],[6950,{"n":"Rodio","f":"Francesco","fp":"MO","r":3,"c":139}],[6953,{"n":"Tripoli","f":"Silvestre","fp":"A","r":2,"c":139}],[6961,{"n":"Figliuzzi","f":"Giacomo","fp":"G","r":2,"c":139}],[6965,{"n":"Messias","f":"Junior","fp":"A","r":10,"c":139,"s":{"s":16,"n":4,"a":4,"d":0.41,"Ss":16,"Sn":4,"Sa":4,"Sd":0.41,"Os":16,"On":4,"Oa":4,"Od":0.41,"pm":1,"pa":3},"p":[[4,{"n":4.5,"e":7501}],[3,{"n":4,"e":7485}],[2,{"n":3.5,"e":7490}],[1,{"n":4,"e":7491}]]}],[6972,{"n":"Cuomo","f":"Giuseppe","fp":"DC","r":6,"c":139}],[6979,{"n":"Zanellato","f":"Niccolò","fp":"MO","r":7,"c":139,"s":{"s":7.5,"n":2,"a":3.75,"d":0.35,"Os":7.5,"On":2,"Oa":3.75,"Od":0.35,"pm":2},"p":[[2,{"n":4,"e":7490}],[1,{"n":3.5,"e":7491}]]}],[6986,{"n":"Crociata","f":"Giovanni","fp":"MO","r":9,"c":139}],[6994,{"n":"Golemic","f":"Vladimir","fp":"DC","r":11,"c":139,"s":{"s":14.5,"n":4,"a":3.63,"d":1.38,"Ss":14.5,"Sn":4,"Sa":3.63,"Sd":1.38,"Os":14.5,"On":4,"Oa":3.63,"Od":1.38,"pd":4},"p":[[4,{"n":5,"e":7501,"s":1}],[3,{"n":3,"e":7485}],[2,{"n":4.5,"e":7490}],[1,{"n":2,"e":7491}]]}],[6995,{"n":"Romero","f":"Aristóteles","fp":"MD","r":2,"c":139}],[7006,{"n":"Simy","f":"","fp":"A","r":17,"c":139,"s":{"g":2,"s":17,"n":4,"a":4.25,"d":1.5,"Sg":2,"Ss":17,"Sn":4,"Sa":4.25,"Sd":1.5,"Og":2,"Os":17,"On":4,"Oa":4.25,"Od":1.5,"pa":4},"p":[[4,{"n":6,"e":7501,"g":1}],[3,{"n":5,"e":7485,"g":1}],[2,{"n":3,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7485,[{"t":"Y"}]]]}],[7007,{"n":"Gomelt","f":"Tomislav","fp":"MD","r":9,"c":139,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[3,{"n":5,"e":7485,"s":1}],[1,{"n":4.5,"e":7491,"s":1}]]}],[7013,{"n":"Molina","f":"Salvatore","fp":"MD","r":12,"c":139,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pm":4},"p":[[4,{"n":5,"e":7501}],[3,{"n":4.5,"e":7485}],[2,{"n":5,"e":7490}],[1,{"n":4.5,"e":7491}]],"fo":[[7491,[{"t":"Y"}]]]}],[7014,{"n":"Festa","f":"Marco","fp":"G","r":7,"c":139}],[7018,{"n":"Benali","f":"Ahmad","fp":"MO","r":10,"c":139}],[7025,{"n":"Mazzotta","f":"Antonio","fp":"DL","r":9,"c":139,"s":{"s":3,"n":1,"a":3,"Os":3,"On":1,"Oa":3,"pm":1},"p":[[1,{"n":3,"e":7491}]],"fo":[[7491,[{"t":"Y"}]]]}],[7034,{"n":"Mustacchio","f":"Mattia","fp":"MO","r":10,"c":139}],[7038,{"n":"Cordaz","f":"Alex","fp":"G","r":12,"c":139,"s":{"s":16,"n":4,"a":4,"d":1.58,"Ss":16,"Sn":4,"Sa":4,"Sd":1.58,"Os":16,"On":4,"Oa":4,"Od":1.58,"pg":4},"p":[[4,{"n":4.5,"e":7501}],[3,{"n":2.5,"e":7485}],[2,{"n":6,"e":7490}],[1,{"n":3,"e":7491}]]}],[7183,{"n":"Crespi","f":"Gian Marco","fp":"G","r":1,"c":139}],[7192,{"n":"Vulic","f":"Milos","fp":"MO","r":7,"c":139,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.76,"Os":13,"On":3,"Oa":4.33,"Od":0.76,"pm":3},"p":[[4,{"n":4.5,"e":7501}],[3,{"n":3.5,"e":7485}],[2,{"n":5,"e":7490,"s":1}]]}],[7229,{"n":"Rojas","f":"Luis","fp":"MO","r":7,"c":139}],[7235,{"n":"Eduardo Henrique","f":"","fp":"MD","r":7,"c":139,"s":{"s":7.5,"n":2,"a":3.75,"d":1.06,"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pm":2},"p":[[2,{"n":3,"e":7490,"s":1}],[1,{"n":4.5,"e":7491,"s":1}]]}],[7291,{"n":"Dragus","f":"Denis","fp":"A","r":7,"c":139,"s":{"s":8,"n":2,"a":4,"d":0.71,"Os":8,"On":2,"Oa":4,"Od":0.71,"pa":2},"p":[[3,{"n":4.5,"e":7485,"s":1}],[2,{"n":3.5,"e":7490}]]}],[7332,{"n":"Amerise","f":"Andrea","fp":"DC","r":2,"c":139}],[7337,{"n":"Pedro Pereira","f":"","fp":"DL","r":9,"c":139,"s":{"s":12.5,"n":3,"a":4.17,"d":0.76,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":0.76,"Os":12.5,"On":3,"Oa":4.17,"Od":0.76,"pd":2,"pm":1},"p":[[4,{"n":5,"e":7501}],[3,{"n":3.5,"e":7485}],[2,{"n":4,"e":7490}]],"fo":[[7485,[{"t":"I"}]]]}],[145,{"n":"Eysseric","f":"Valentin","fp":"MO","r":5,"c":110,"s":{"Os":41.5,"On":9,"Oa":4.61,"Od":0.78,"pm":6,"pa":3},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":3.5,"e":5477}],[-35,{"n":4.5,"e":5486,"s":1}],[-33,{"n":5,"e":5502,"s":1}],[-21,{"n":5,"e":5619,"s":1}],[-17,{"n":4.5,"e":5659,"s":1}],[-17,{"n":5,"e":5661,"s":1}],[-16,{"n":4.5,"e":5671,"s":1}]],"fo":[[5467,[{"t":"Y"}]],[5486,[{"t":"Y"}]],[5502,[{"t":"Y"}]]]}],[2721,{"n":"Barreca","f":"Antonio","fp":"DL","r":7,"c":110,"s":{"Os":69,"On":15,"Oa":4.6,"Od":0.83,"pd":7,"pm":8},"p":[[-38,{"n":6,"e":5451,"s":1}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5491,"s":1}],[-33,{"n":4.5,"e":5506}],[-32,{"n":5.5,"e":5511,"s":1}],[-31,{"n":4,"e":5521}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":4,"e":5548}],[-27,{"n":4.5,"e":5561,"s":1}],[-21,{"n":5,"e":5619}],[-20,{"n":3.5,"e":5631}],[-19,{"n":6,"e":5647}],[-11,{"n":3.5,"e":5721,"s":1}],[-6,{"n":3.5,"e":5770}],[-5,{"n":5,"e":5780}]]}],[4200,{"n":"Tòfol Montiel","f":"","fp":"MO","r":1,"c":110}],[4249,{"n":"Brancolini","f":"Federico","fp":"G","r":1,"c":110,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-37,{"n":5,"e":5459,"s":1}]]}],[4312,{"n":"Kouamé","f":"Christian","fp":"A","r":9,"c":110,"s":{"g":1,"s":18.5,"n":4,"a":4.63,"d":1.11,"Sg":1,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.11,"Og":4,"Os":86.5,"On":18,"Oa":4.81,"Od":1.24,"pm":2,"pa":16},"p":[[4,{"n":4,"e":7502,"s":1}],[3,{"n":3.5,"e":7456}],[2,{"n":6,"e":7465,"g":1}],[1,{"n":5,"e":7470}],[-36,{"n":3.5,"e":5475}],[-38,{"n":6,"e":5456,"g":1,"s":1}],[-37,{"n":4.5,"e":5459,"s":1}],[-35,{"n":4.5,"e":5479,"s":1}],[-34,{"n":4.5,"e":5490}],[-32,{"n":5,"e":5510}],[-31,{"n":4.5,"e":5520,"s":1}],[-11,{"n":5.5,"e":5721}],[-10,{"n":7,"e":5730,"g":1}],[-9,{"n":7,"e":5741,"g":1,"s":1}],[-8,{"n":3,"e":5754}],[-7,{"n":6,"e":5762}],[-6,{"n":3,"e":5770}],[-5,{"n":4,"e":5780}]],"a":{"m":5,"a":7,"M":9,"n":7}}],[4319,{"n":"Milenkovic","f":"Nikola","fp":"DC","r":13,"c":110,"s":{"s":19.5,"n":4,"a":4.88,"d":1.31,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.31,"Og":4,"Os":192.5,"On":38,"Oa":5.07,"Od":1.14,"pd":38},"p":[[-26,{"n":5.5,"e":5577}],[-25,{"n":5.5,"e":5581}],[-19,{"n":6.5,"e":5639}],[-11,{"n":5,"e":5720}],[-7,{"n":7,"e":5761,"g":1}],[-6,{"n":5.5,"e":5772}],[-38,{"n":5,"e":5456}],[-37,{"n":7.5,"e":5459,"g":1}],[-36,{"n":6,"e":5475,"g":1}],[-35,{"n":6,"e":5479}],[-34,{"n":6,"e":5490}],[-33,{"n":5.5,"e":5500}],[-32,{"n":4,"e":5510}],[-31,{"n":5.5,"e":5520}],[-30,{"n":5,"e":5534}],[-29,{"n":3.5,"e":5540}],[-28,{"n":4.5,"e":5551}],[-27,{"n":5,"e":5560,"s":1}],[-24,{"n":5.5,"e":5595}],[-23,{"n":4.5,"e":5599}],[-21,{"n":5,"e":5619}],[-20,{"n":6,"e":5636}],[-18,{"n":4.5,"e":5649}],[-17,{"n":3,"e":5659}],[-16,{"n":5,"e":5671}],[-15,{"n":4.5,"e":5686}],[-14,{"n":5,"e":5690}],[-13,{"n":4.5,"e":5707}],[-12,{"n":2,"e":5709}],[-10,{"n":7,"e":5736,"g":1}],[-9,{"n":4,"e":5740}],[-8,{"n":5,"e":5748}],[-5,{"n":5.5,"e":5779}],[-4,{"n":3.5,"e":5788}],[4,{"n":5.5,"e":7502}],[3,{"n":6,"e":7456}],[2,{"n":3,"e":7465}],[1,{"n":5,"e":7470}]],"fo":[[5475,[{"t":"Y"}]],[5510,[{"t":"Y"}]],[5534,[{"t":"Y"}]],[5551,[{"t":"Y"}]],[7470,[{"t":"Y"}]]],"a":{"m":15,"a":21,"M":31,"n":8}}],[4325,{"n":"Vlahovic","f":"Dusan","fp":"A","r":9,"c":110,"s":{"g":1,"s":18,"n":4,"a":4.5,"d":1.08,"Sg":1,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1.08,"Og":7,"Os":151,"On":32,"Oa":4.72,"Od":1,"pa":32},"p":[[-38,{"n":5,"e":5456}],[-36,{"n":4,"e":5475,"s":1}],[-34,{"n":4.5,"e":5490,"s":1}],[-33,{"n":4.5,"e":5500,"s":1}],[-32,{"n":4.5,"e":5510,"s":1}],[-31,{"n":4.5,"e":5520}],[-28,{"n":2.5,"e":5551,"s":1}],[-27,{"n":5,"e":5560}],[-26,{"n":4.5,"e":5577}],[-25,{"n":4.5,"e":5581}],[-24,{"n":7.5,"e":5595,"g":2}],[-23,{"n":4.5,"e":5599,"s":1}],[-22,{"n":4.5,"e":5611,"s":1}],[-21,{"n":5,"e":5619,"s":1}],[-20,{"n":6,"e":5636,"g":1,"s":1}],[-19,{"n":5,"e":5639,"s":1}],[-18,{"n":4,"e":5649}],[-17,{"n":4,"e":5659}],[-16,{"n":6,"e":5671,"g":1,"s":1}],[-15,{"n":3,"e":5686}],[-14,{"n":5,"e":5690}],[-13,{"n":5,"e":5707}],[-12,{"n":7,"e":5709,"g":2}],[-11,{"n":4.5,"e":5720,"s":1}],[-10,{"n":5,"e":5736,"s":1}],[-8,{"n":5,"e":5748,"s":1}],[-5,{"n":4,"e":5779,"s":1}],[-4,{"n":4.5,"e":5788,"s":1}],[4,{"n":3.5,"e":7502}],[3,{"n":6,"e":7456,"g":1}],[2,{"n":4,"e":7465,"s":1}],[1,{"n":4.5,"e":7470,"s":1}]],"fo":[[5551,[{"t":"R"}]]]}],[4337,{"n":"Igor Julio","f":"","fp":"DC","r":9,"c":110,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":120.5,"On":25,"Oa":4.82,"Od":0.68,"pd":22,"pm":3},"p":[[-17,{"n":4.5,"e":5666}],[-16,{"n":3.5,"e":5676}],[-38,{"n":5.5,"e":5456}],[-32,{"n":5,"e":5510}],[-30,{"n":5.5,"e":5534}],[-29,{"n":5.5,"e":5540,"s":1}],[-28,{"n":5,"e":5551,"s":1}],[-26,{"n":5,"e":5577}],[-25,{"n":5,"e":5581,"s":1}],[-23,{"n":4,"e":5599}],[-22,{"n":5,"e":5611}],[-21,{"n":5,"e":5624}],[-20,{"n":6,"e":5628}],[-19,{"n":4.5,"e":5639}],[-18,{"n":4.5,"e":5657}],[-15,{"n":5,"e":5683}],[-14,{"n":4.5,"e":5692}],[-13,{"n":5,"e":5703,"s":1}],[-11,{"n":4,"e":5725}],[-9,{"n":4.5,"e":5745}],[-8,{"n":3.5,"e":5749}],[-7,{"n":6,"e":5765}],[-6,{"n":4,"e":5769}],[-5,{"n":5.5,"e":5785,"s":1}],[4,{"n":5,"e":7502,"s":1}]],"fo":[[5510,[{"t":"Y"}]],[5534,[{"t":"Y"}]]]}],[4354,{"n":"Lirola","f":"Pol","fp":"DL","r":15,"c":110,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Ss":5,"Sn":1,"Sa":5,"Os":175.5,"On":35,"Oa":5.01,"Od":0.78,"pd":7,"pm":28},"p":[[-38,{"n":5,"e":5456}],[-37,{"n":5,"e":5459,"s":1}],[-36,{"n":4.5,"e":5475}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":6,"e":5490}],[-33,{"n":6,"e":5500}],[-32,{"n":5,"e":5510}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5.5,"e":5534,"s":1}],[-29,{"n":4,"e":5540}],[-28,{"n":4.5,"e":5551}],[-27,{"n":5,"e":5560,"s":1}],[-26,{"n":6,"e":5577}],[-25,{"n":5,"e":5581}],[-24,{"n":7,"e":5595}],[-23,{"n":4,"e":5599}],[-22,{"n":5,"e":5611}],[-21,{"n":5.5,"e":5619}],[-20,{"n":6.5,"e":5636}],[-19,{"n":6,"e":5639}],[-18,{"n":5.5,"e":5649}],[-17,{"n":4,"e":5659}],[-16,{"n":5,"e":5671}],[-14,{"n":4.5,"e":5690}],[-13,{"n":5,"e":5707,"s":1}],[-12,{"n":3,"e":5709}],[-9,{"n":4.5,"e":5740}],[-8,{"n":5,"e":5748}],[-7,{"n":5.5,"e":5761}],[-6,{"n":5,"e":5772}],[-5,{"n":5,"e":5779}],[-4,{"n":4.5,"e":5788}],[4,{"n":5,"e":7502}],[2,{"n":4,"e":7465,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[7502,[{"t":"Y"}]]]}],[4380,{"n":"Cutrone","f":"Patrick","fp":"A","r":14,"c":110,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.25,"Og":5,"Os":141,"On":30,"Oa":4.7,"Od":0.99,"pa":30},"p":[[-18,{"n":4.5,"e":4134,"s":1}],[-16,{"n":4.5,"e":4150,"s":1}],[-15,{"n":6,"e":4162,"g":1,"s":1}],[-12,{"n":4.5,"e":4195,"s":1}],[-9,{"n":4.5,"e":4227}],[-8,{"n":4.5,"e":4231}],[-7,{"n":4,"e":4244,"s":1}],[-38,{"n":5,"e":5456,"s":1}],[-37,{"n":5.5,"e":5459}],[-36,{"n":4,"e":5475,"s":1}],[-35,{"n":4,"e":5479}],[-34,{"n":6.5,"e":5490,"g":1,"s":1}],[-33,{"n":7.5,"e":5500,"g":1}],[-32,{"n":6,"e":5510,"g":1,"s":1}],[-31,{"n":4.5,"e":5520,"s":1}],[-30,{"n":4,"e":5534}],[-29,{"n":6,"e":5540,"g":1,"s":1}],[-28,{"n":3.5,"e":5551}],[-27,{"n":4.5,"e":5560,"s":1}],[-26,{"n":4.5,"e":5577,"s":1}],[-25,{"n":6,"e":5581,"s":1}],[-23,{"n":3.5,"e":5599}],[-22,{"n":3,"e":5611}],[-21,{"n":4,"e":5619}],[-20,{"n":5,"e":5636}],[-19,{"n":4,"e":5639,"s":1}],[4,{"n":4.5,"e":7502,"s":1}],[3,{"n":4,"e":7456,"s":1}],[2,{"n":4.5,"e":7465,"s":1}],[1,{"n":4.5,"e":7470,"s":1}]],"fo":[[5534,[{"t":"Y"}]]]}],[4449,{"n":"Venuti","f":"Lorenzo","fp":"DL","r":8,"c":110,"s":{"s":5,"n":1,"a":5,"Os":81.5,"On":16,"Oa":5.09,"Od":0.38,"pd":9,"pm":7},"p":[[-38,{"n":5.5,"e":5456}],[-37,{"n":6,"e":5459}],[-36,{"n":5,"e":5475,"s":1}],[-35,{"n":5.5,"e":5479}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":5,"e":5500,"s":1}],[-31,{"n":5,"e":5520}],[-30,{"n":5,"e":5534}],[-28,{"n":4.5,"e":5551,"s":1}],[-21,{"n":5,"e":5619}],[-18,{"n":5,"e":5649,"s":1}],[-13,{"n":4.5,"e":5707}],[-11,{"n":5,"e":5720}],[-10,{"n":5.5,"e":5736}],[-4,{"n":5,"e":5788,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[5534,[{"t":"Y"}]]]}],[4486,{"n":"Dragowski","f":"Bartlomiej","fp":"G","r":14,"c":110,"s":{"s":21,"n":4,"a":5.25,"d":1.5,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.5,"Os":175.5,"On":32,"Oa":5.48,"Od":1.14,"pg":32},"p":[[-32,{"n":5,"e":5510}],[-31,{"n":7,"e":5520}],[-29,{"n":5,"e":5540}],[-28,{"n":4,"e":5551}],[-27,{"n":6,"e":5560}],[-26,{"n":6,"e":5577}],[-25,{"n":5.5,"e":5581}],[-24,{"n":6,"e":5595}],[-23,{"n":5.5,"e":5599}],[-22,{"n":6,"e":5611}],[-21,{"n":8.5,"e":5619}],[-20,{"n":6.5,"e":5636}],[-19,{"n":5.5,"e":5639}],[-18,{"n":6,"e":5649}],[-17,{"n":3,"e":5659}],[-16,{"n":6,"e":5671}],[-15,{"n":4.5,"e":5686}],[-14,{"n":5.5,"e":5690}],[-13,{"n":6,"e":5707}],[-12,{"n":3.5,"e":5709}],[-11,{"n":5.5,"e":5720}],[-10,{"n":5,"e":5736}],[-9,{"n":7,"e":5740}],[-8,{"n":5.5,"e":5748}],[-7,{"n":6,"e":5761}],[-6,{"n":5.5,"e":5772}],[-5,{"n":5,"e":5779}],[-4,{"n":4,"e":5788}],[4,{"n":4,"e":7502}],[3,{"n":6,"e":7456}],[2,{"n":4,"e":7465}],[1,{"n":7,"e":7470}]]}],[4548,{"n":"Pulgar","f":"Erick","fp":"MD","r":21,"c":110,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":5,"Os":196,"On":35,"Oa":5.6,"Od":1.26,"pm":35},"p":[[-38,{"n":7,"e":5456,"g":1}],[-37,{"n":7.5,"e":5459}],[-36,{"n":7,"e":5475}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":6,"e":5490}],[-33,{"n":5.5,"e":5500}],[-32,{"n":5,"e":5510}],[-31,{"n":6,"e":5520,"s":1}],[-30,{"n":8,"e":5534,"g":2}],[-29,{"n":4.5,"e":5540}],[-28,{"n":4.5,"e":5551,"s":1}],[-27,{"n":6.5,"e":5560}],[-26,{"n":4.5,"e":5577,"s":1}],[-25,{"n":7.5,"e":5581,"g":1}],[-24,{"n":5.5,"e":5595,"s":1}],[-23,{"n":5,"e":5599}],[-22,{"n":4,"e":5611}],[-21,{"n":6,"e":5619}],[-20,{"n":7,"e":5636}],[-19,{"n":7,"e":5639}],[-18,{"n":4.5,"e":5649}],[-17,{"n":4,"e":5659}],[-16,{"n":4,"e":5671}],[-15,{"n":6,"e":5686}],[-14,{"n":4.5,"e":5690}],[-12,{"n":3,"e":5709}],[-11,{"n":5.5,"e":5720}],[-10,{"n":7,"e":5736}],[-9,{"n":4,"e":5740}],[-8,{"n":6,"e":5748}],[-7,{"n":7,"e":5761}],[-6,{"n":7,"e":5772,"g":1}],[-5,{"n":4.5,"e":5779}],[-4,{"n":5,"e":5788}],[4,{"n":5,"e":7502,"s":1}]],"fo":[[5510,[{"t":"Y"}]],[5540,[{"t":"Y"}]]]}],[4566,{"n":"Pezzella","f":"Germán","fp":"DC","r":18,"c":110,"s":{"g":1,"s":6,"n":1,"a":6,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":4,"Os":162.5,"On":31,"Oa":5.24,"Od":1.24,"pd":31},"p":[[-37,{"n":7,"e":5459}],[-36,{"n":5,"e":5475}],[-35,{"n":6,"e":5479}],[-34,{"n":6,"e":5490}],[-33,{"n":4.5,"e":5500}],[-32,{"n":5,"e":5510}],[-30,{"n":5,"e":5534}],[-29,{"n":4.5,"e":5540}],[-28,{"n":5,"e":5551}],[-27,{"n":7.5,"e":5560,"g":1}],[-26,{"n":6,"e":5577}],[-25,{"n":5.5,"e":5581}],[-24,{"n":6,"e":5595}],[-23,{"n":4,"e":5599}],[-22,{"n":4,"e":5611}],[-21,{"n":4,"e":5619}],[-20,{"n":7,"e":5636}],[-19,{"n":7,"e":5639,"g":1}],[-18,{"n":5.5,"e":5649}],[-17,{"n":2,"e":5659}],[-16,{"n":5.5,"e":5671}],[-13,{"n":5,"e":5707}],[-12,{"n":3,"e":5709}],[-10,{"n":5,"e":5736}],[-9,{"n":4,"e":5740}],[-8,{"n":5.5,"e":5748}],[-7,{"n":6,"e":5761}],[-6,{"n":5,"e":5772}],[-5,{"n":7,"e":5779,"g":1}],[-4,{"n":4,"e":5788}],[4,{"n":6,"e":7502,"g":1}]],"fo":[[7502,[{"t":"I"}]],[5475,[{"t":"Y"}]],[5490,[{"t":"Y"}]],[5534,[{"t":"Y"}]]]}],[4581,{"n":"Joseph Alfred Duncan","f":"","fp":"MD","r":7,"c":110,"s":{"s":10,"n":2,"a":5,"d":0.71,"Og":1,"Os":126.5,"On":25,"Oa":5.06,"Od":0.74,"pm":25},"p":[[-7,{"n":5,"e":5760,"s":1}],[-14,{"n":5,"e":5693,"s":1}],[-13,{"n":4,"e":5705}],[-38,{"n":6,"e":5456,"g":1}],[-37,{"n":5,"e":5459,"s":1}],[-36,{"n":5,"e":5475}],[-35,{"n":4,"e":5479}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":6,"e":5500}],[-31,{"n":6.5,"e":5520}],[-30,{"n":4.5,"e":5534}],[-29,{"n":6.5,"e":5540,"s":1}],[-27,{"n":4.5,"e":5560}],[-26,{"n":4.5,"e":5577}],[-25,{"n":4.5,"e":5581}],[-24,{"n":6.5,"e":5595}],[-18,{"n":4.5,"e":5651}],[-17,{"n":5.5,"e":5665}],[-11,{"n":5,"e":5722,"s":1}],[-10,{"n":4.5,"e":5736}],[-9,{"n":5,"e":5747}],[-8,{"n":5,"e":5756}],[-6,{"n":4.5,"e":5776}],[3,{"n":4.5,"e":7456,"s":1}],[1,{"n":5.5,"e":7470}]],"fo":[[5520,[{"t":"Y"}]]]}],[4644,{"n":"Biraghi","f":"Cristiano","fp":"DL","r":22,"c":110,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":1.55,"Sg":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.55,"Og":3,"Os":160.5,"On":30,"Oa":5.35,"Od":1.05,"pd":8,"pm":22},"p":[[-34,{"n":5,"e":5496,"s":1}],[-27,{"n":6.5,"e":5562,"g":1}],[-18,{"n":5.5,"e":5655}],[-38,{"n":5,"e":5448,"s":1}],[-37,{"n":5.5,"e":5460}],[-36,{"n":7,"e":5471}],[-33,{"n":7.5,"e":5503,"g":1}],[-32,{"n":5,"e":5512,"s":1}],[-30,{"n":5,"e":5530,"s":1}],[-28,{"n":5,"e":5554}],[-25,{"n":5,"e":5583,"s":1}],[-23,{"n":5,"e":5601,"s":1}],[-21,{"n":5,"e":5620}],[-20,{"n":6.5,"e":5634}],[-19,{"n":4.5,"e":5640}],[-17,{"n":6,"e":5660}],[-16,{"n":6,"e":5671}],[-15,{"n":5.5,"e":5680}],[-14,{"n":5,"e":5692,"s":1}],[-13,{"n":7,"e":5706}],[-12,{"n":5,"e":5710}],[-11,{"n":4.5,"e":5719}],[-10,{"n":5,"e":5728,"s":1}],[-9,{"n":3,"e":5742}],[-8,{"n":4.5,"e":5756}],[-5,{"n":6.5,"e":5781}],[4,{"n":7,"e":7502,"g":1}],[3,{"n":4,"e":7456}],[2,{"n":3.5,"e":7465}],[1,{"n":5,"e":7470}]],"fo":[[5460,[{"t":"Y"}]],[5503,[{"t":"Y"}]],[5512,[{"t":"Y"}]],[7470,[{"t":"Y"}]]]}],[4667,{"n":"Terracciano","f":"Pietro","fp":"G","r":9,"c":110,"s":{"Os":41.5,"On":7,"Oa":5.93,"Od":0.98,"pg":7},"p":[[-38,{"n":5.5,"e":5456}],[-37,{"n":5.5,"e":5459}],[-36,{"n":5.5,"e":5475}],[-35,{"n":8,"e":5479}],[-34,{"n":6,"e":5490}],[-33,{"n":5,"e":5500}],[-30,{"n":6,"e":5534}]]}],[4717,{"n":"Saponara","f":"Riccardo","fp":"MO","r":8,"c":110,"s":{"s":5,"n":1,"a":5,"Og":2,"Os":90,"On":16,"Oa":5.63,"Od":0.94,"pm":14,"pa":2},"p":[[-38,{"n":6.5,"e":5453}],[-37,{"n":5,"e":5466,"s":1}],[-36,{"n":5.5,"e":5468}],[-35,{"n":7.5,"e":5481,"g":1}],[-34,{"n":5.5,"e":5491}],[-33,{"n":5,"e":5500,"s":1}],[-32,{"n":6,"e":5509}],[-31,{"n":6,"e":5522}],[-29,{"n":6,"e":5543}],[-27,{"n":4,"e":5563}],[-26,{"n":5,"e":5571,"g":1}],[-23,{"n":6.5,"e":5602}],[-22,{"n":7,"e":5613}],[-11,{"n":4.5,"e":5721}],[-5,{"n":5,"e":5780,"s":1}],[3,{"n":5,"e":7456,"s":1}]],"fo":[[5491,[{"t":"Y"}]]]}],[4740,{"n":"Callejón","f":"José","fp":"MO","r":13,"c":110,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":3,"Os":157.5,"On":30,"Oa":5.25,"Od":0.95,"pm":8,"pa":22},"p":[[-38,{"n":5,"e":5455}],[-36,{"n":5,"e":5474}],[-34,{"n":4.5,"e":5494}],[-32,{"n":6,"e":5515}],[-30,{"n":6.5,"e":5533,"g":1}],[-22,{"n":6,"e":5615}],[-21,{"n":7,"e":5621}],[-19,{"n":4,"e":5641}],[-15,{"n":5.5,"e":5687}],[-13,{"n":4,"e":5701}],[-11,{"n":3.5,"e":5724}],[-37,{"n":4.5,"e":5460,"s":1}],[-35,{"n":4.5,"e":5482,"s":1}],[-33,{"n":4.5,"e":5499,"s":1}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":6,"e":5553,"g":1}],[-24,{"n":6,"e":5590}],[-23,{"n":6,"e":5602,"g":1,"s":1}],[-20,{"n":4.5,"e":5636}],[-18,{"n":6,"e":5655}],[-17,{"n":5,"e":5665}],[-16,{"n":4.5,"e":5675}],[-12,{"n":6,"e":5713}],[-10,{"n":7,"e":5733}],[-9,{"n":4.5,"e":5745,"s":1}],[-8,{"n":5.5,"e":5753}],[-7,{"n":4.5,"e":5766,"s":1}],[-6,{"n":7,"e":5773}],[-5,{"n":5,"e":5782}],[4,{"n":4.5,"e":7502,"s":1}]]}],[4757,{"n":"Bonaventura","f":"Giacomo","fp":"MO","r":15,"c":110,"s":{"s":19.5,"n":4,"a":4.88,"d":1.11,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.11,"Og":3,"Os":179,"On":33,"Oa":5.42,"Od":0.85,"pm":31,"pa":2},"p":[[-35,{"n":5,"e":5485,"s":1}],[-31,{"n":6,"e":5523,"s":1}],[-30,{"n":7,"e":5532}],[-28,{"n":5,"e":5552}],[-20,{"n":4,"e":5635}],[-16,{"n":5.5,"e":5674}],[-14,{"n":6,"e":5696}],[-12,{"n":5,"e":5711,"s":1}],[-11,{"n":5,"e":5723,"s":1}],[-38,{"n":6,"e":5454,"s":1}],[-37,{"n":6,"e":5463,"s":1}],[-36,{"n":5.5,"e":5473,"s":1}],[-34,{"n":5,"e":5493,"s":1}],[-33,{"n":6,"e":5501}],[-32,{"n":6,"e":5515,"s":1}],[-29,{"n":5,"e":5545,"s":1}],[-27,{"n":7,"e":5563,"g":1}],[-26,{"n":6,"e":5572,"s":1}],[-24,{"n":5,"e":5594,"s":1}],[-23,{"n":5,"e":5601,"s":1}],[-22,{"n":5.5,"e":5614}],[-19,{"n":5,"e":5638,"s":1}],[-18,{"n":4.5,"e":5654}],[-17,{"n":4.5,"e":5658}],[-15,{"n":7,"e":5679,"g":1}],[-13,{"n":7,"e":5701,"g":1}],[-10,{"n":5,"e":5732,"s":1}],[-7,{"n":5,"e":5762}],[-5,{"n":5,"e":5786,"s":1}],[4,{"n":3.5,"e":7502}],[3,{"n":4.5,"e":7456}],[2,{"n":6,"e":7465}],[1,{"n":5.5,"e":7470}]],"fo":[[5485,[{"t":"Y"}]],[7502,[{"t":"Y"}]]]}],[4765,{"n":"Cáceres","f":"Martín","fp":"DC","r":10,"c":110,"s":{"s":17,"n":4,"a":4.25,"d":1.32,"Ss":17,"Sn":4,"Sa":4.25,"Sd":1.32,"Og":1,"Os":149,"On":30,"Oa":4.97,"Od":1.03,"pd":30},"p":[[-37,{"n":6,"e":5459}],[-36,{"n":5.5,"e":5475}],[-35,{"n":5,"e":5479}],[-34,{"n":5.5,"e":5490}],[-33,{"n":5.5,"e":5500}],[-31,{"n":5.5,"e":5520}],[-27,{"n":3,"e":5560}],[-26,{"n":6,"e":5577}],[-25,{"n":4,"e":5581}],[-24,{"n":6,"e":5595}],[-21,{"n":5.5,"e":5619}],[-20,{"n":6,"e":5636}],[-19,{"n":5,"e":5639}],[-18,{"n":4.5,"e":5649}],[-17,{"n":3,"e":5659}],[-16,{"n":6,"e":5671}],[-15,{"n":5,"e":5686,"g":1}],[-14,{"n":4.5,"e":5690}],[-13,{"n":5,"e":5707}],[-12,{"n":3,"e":5709}],[-9,{"n":5,"e":5740}],[-8,{"n":5.5,"e":5748}],[-7,{"n":6.5,"e":5761}],[-6,{"n":6,"e":5772}],[-5,{"n":5,"e":5779}],[-4,{"n":4.5,"e":5788}],[4,{"n":3.5,"e":7502}],[3,{"n":4.5,"e":7456}],[2,{"n":3,"e":7465}],[1,{"n":6,"e":7470}]],"fo":[[5475,[{"t":"Y"}]],[5479,[{"t":"Y"}]],[5560,[{"t":"Y"},{"t":"O"}]]]}],[4797,{"n":"Valero","f":"Borja","fp":"MD","r":9,"c":110,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":2,"Os":112,"On":21,"Oa":5.33,"Od":0.66,"pm":17,"pa":4},"p":[[-29,{"n":6,"e":5542}],[-37,{"n":6,"e":5460}],[-36,{"n":5,"e":5471,"s":1}],[-33,{"n":5.5,"e":5503,"s":1}],[-32,{"n":5,"e":5512}],[-31,{"n":5.5,"e":5527}],[-30,{"n":5,"e":5530,"s":1}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":5.5,"e":5562,"g":1}],[-25,{"n":5,"e":5583,"s":1}],[-21,{"n":5,"e":5620}],[-20,{"n":4.5,"e":5634,"s":1}],[-19,{"n":4.5,"e":5640,"s":1}],[-18,{"n":5,"e":5655,"s":1}],[-17,{"n":6.5,"e":5660}],[-16,{"n":7,"e":5671,"g":1}],[-15,{"n":6,"e":5680}],[-14,{"n":5,"e":5692,"s":1}],[-13,{"n":5.5,"e":5706,"s":1}],[2,{"n":4.5,"e":7465,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[5527,[{"t":"Y"}]],[5583,[{"t":"Y"}]]]}],[5327,{"n":"Castrovilli","f":"Gaetano","fp":"MO","r":18,"c":110,"s":{"g":2,"s":22,"n":4,"a":5.5,"d":0.71,"Sg":2,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.71,"Og":5,"Os":179.5,"On":34,"Oa":5.28,"Od":1.12,"pm":34},"p":[[-37,{"n":7,"e":5459}],[-35,{"n":5.5,"e":5479}],[-34,{"n":5.5,"e":5490}],[-33,{"n":5,"e":5500,"s":1}],[-32,{"n":4.5,"e":5510}],[-30,{"n":5,"e":5534,"s":1}],[-29,{"n":3,"e":5540}],[-28,{"n":5.5,"e":5551}],[-27,{"n":6.5,"e":5560}],[-26,{"n":5,"e":5577}],[-25,{"n":5,"e":5581}],[-24,{"n":7,"e":5595}],[-23,{"n":4,"e":5599}],[-21,{"n":5,"e":5619}],[-20,{"n":7,"e":5636}],[-19,{"n":5.5,"e":5639}],[-18,{"n":5,"e":5649}],[-17,{"n":3,"e":5659}],[-16,{"n":4.5,"e":5671}],[-15,{"n":5.5,"e":5686}],[-14,{"n":5.5,"e":5690}],[-12,{"n":3.5,"e":5709}],[-11,{"n":6,"e":5720,"g":1}],[-10,{"n":7.5,"e":5736,"g":1}],[-9,{"n":4,"e":5740}],[-8,{"n":5,"e":5748}],[-7,{"n":5.5,"e":5761}],[-6,{"n":7,"e":5772,"g":1}],[-5,{"n":5.5,"e":5779}],[-4,{"n":4,"e":5788}],[4,{"n":4.5,"e":7502}],[3,{"n":6,"e":7456}],[2,{"n":5.5,"e":7465,"g":1}],[1,{"n":6,"e":7470,"g":1}]],"fo":[[7456,[{"t":"I"}]],[5479,[{"t":"Y"}]],[5540,[{"t":"Y"}]]],"a":{"m":16,"a":20,"M":25,"n":6}}],[6181,{"n":"Ribéry","f":"Franck","fp":"A","r":10,"c":110,"s":{"s":15,"n":3,"a":5,"d":1.8,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":3,"Os":108.5,"On":21,"Oa":5.17,"Od":1.22,"pa":21},"p":[[-36,{"n":3,"e":5475}],[-35,{"n":5,"e":5479}],[-34,{"n":7,"e":5490}],[-33,{"n":6,"e":5500}],[-32,{"n":4,"e":5510}],[-31,{"n":5,"e":5520}],[-30,{"n":5.5,"e":5534}],[-29,{"n":4,"e":5540}],[-28,{"n":7,"e":5551,"g":1}],[-27,{"n":5,"e":5560}],[-14,{"n":4,"e":5690}],[-13,{"n":5.5,"e":5707}],[-9,{"n":5,"e":5740}],[-8,{"n":4.5,"e":5748}],[-7,{"n":4,"e":5761}],[-6,{"n":7,"e":5772,"g":1}],[-5,{"n":6,"e":5779}],[-4,{"n":6,"e":5788,"g":1}],[4,{"n":4.5,"e":7502}],[2,{"n":7,"e":7465}],[1,{"n":3.5,"e":7470}]],"fo":[[5534,[{"t":"I"}]],[5479,[{"t":"Y"}]],[5500,[{"t":"Y"}]]],"a":{"m":12,"a":20,"M":29,"n":5}}],[6207,{"n":"Amrabat","f":"Sofyan","fp":"MD","r":11,"c":110,"s":{"s":15,"n":3,"a":5,"d":0.5,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Og":1,"Os":172.5,"On":33,"Oa":5.23,"Od":0.84,"pm":33},"p":[[-38,{"n":2.5,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":5,"e":5477,"g":1}],[-34,{"n":5.5,"e":5497}],[-33,{"n":4.5,"e":5502}],[-32,{"n":6.5,"e":5510}],[-31,{"n":5.5,"e":5527}],[-29,{"n":5,"e":5547}],[-28,{"n":4.5,"e":5556}],[-27,{"n":5,"e":5567}],[-26,{"n":5,"e":5575}],[-25,{"n":6.5,"e":5587}],[-24,{"n":5.5,"e":5597}],[-23,{"n":6,"e":5607}],[-22,{"n":4.5,"e":5614}],[-21,{"n":7,"e":5627}],[-20,{"n":5,"e":5629}],[-19,{"n":5,"e":5647}],[-16,{"n":5,"e":5677}],[-15,{"n":5,"e":5678}],[-14,{"n":5,"e":5697}],[-13,{"n":6.5,"e":5707}],[-12,{"n":5,"e":5710}],[-11,{"n":5,"e":5727}],[-10,{"n":5,"e":5734}],[-9,{"n":4,"e":5747}],[-8,{"n":5.5,"e":5753}],[-7,{"n":6,"e":5767}],[-6,{"n":5,"e":5768}],[-5,{"n":6,"e":5787}],[4,{"n":4.5,"e":7502}],[3,{"n":5,"e":7456}],[2,{"n":5.5,"e":7465}]],"fo":[[5451,[{"t":"R"}]],[5497,[{"t":"Y"}]],[5527,[{"t":"Y"}]]]}],[6517,{"n":"Dalle Mura","f":"Christian","fp":"DC","r":2,"c":110,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-38,{"n":5,"e":5456,"s":1}]]}],[7153,{"n":"Ponsi","f":"Fabio","fp":"DL","r":1,"c":110}],[7378,{"n":"Martínez Quarta","f":"Lucas","fp":"DC","r":8,"c":110}],[7423,{"n":"Dutu","f":"Eduard","fp":"DC","r":1,"c":110}],[810,{"n":"Behrami","f":"Valon","fp":"MD","r":8,"c":117,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Ss":5,"Sn":1,"Sa":5,"Os":94,"On":19,"Oa":4.95,"Od":0.76,"pm":19},"p":[[3,{"n":null,"e":7457,"d":1}],[4,{"n":5,"e":7455,"s":1}],[2,{"n":4,"e":7466,"s":1}],[-38,{"n":6.5,"e":5451}],[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":4,"e":5471}],[-33,{"n":4,"e":5506}],[-32,{"n":5.5,"e":5511}],[-31,{"n":5,"e":5521}],[-30,{"n":4,"e":5537}],[-29,{"n":4.5,"e":5541}],[-28,{"n":5,"e":5548}],[-27,{"n":5,"e":5561,"s":1}],[-26,{"n":6,"e":5572}],[-25,{"n":5,"e":5582}],[-24,{"n":6.5,"e":5589}],[-22,{"n":4.5,"e":5608}],[-21,{"n":5,"e":5619}],[-19,{"n":4.5,"e":5647,"s":1}],[1,{"n":5,"e":7491,"s":1}]],"fo":[[5511,[{"t":"Y"}]]]}],[1109,{"n":"Asoro","f":"Joel","fp":"A","r":1,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[1203,{"n":"Lerager","f":"Lukas","fp":"MD","r":9,"c":117,"s":{"s":8.5,"n":2,"a":4.25,"d":2.47,"Og":1,"Os":92,"On":19,"Oa":4.84,"Od":1.14,"pm":17,"pa":2},"p":[[-38,{"n":6.5,"e":5451}],[-37,{"n":3,"e":5464}],[-35,{"n":6.5,"e":5484,"g":1}],[-34,{"n":5,"e":5491}],[-33,{"n":4.5,"e":5506,"s":1}],[-32,{"n":5.5,"e":5511,"s":1}],[-31,{"n":4.5,"e":5521,"s":1}],[-30,{"n":4.5,"e":5537}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":5.5,"e":5548,"s":1}],[-13,{"n":5.5,"e":5703}],[-12,{"n":6,"e":5713}],[-9,{"n":4.5,"e":5741}],[-8,{"n":3,"e":5754}],[-7,{"n":5,"e":5762}],[-6,{"n":4,"e":5770}],[-5,{"n":5.5,"e":5780}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":2.5,"e":7466}],[1,{"n":6,"e":7491}]],"fo":[[5484,[{"t":"Y"}]],[5491,[{"t":"Y"}]]]}],[2022,{"n":"Zappacosta","f":"Davide","fp":"DL","r":13,"c":117,"s":{"g":1,"s":9.5,"n":2,"a":4.75,"d":2.47,"Og":1,"Os":48,"On":10,"Oa":4.8,"Od":0.98,"pd":7,"pm":3},"p":[[-38,{"n":5.5,"e":5452}],[-29,{"n":4.5,"e":5544,"s":1}],[-37,{"n":5,"e":5465,"s":1}],[-35,{"n":5.5,"e":5483,"s":1}],[-33,{"n":5,"e":5502,"s":1}],[-30,{"n":4,"e":5533}],[-28,{"n":4,"e":5552}],[-27,{"n":5,"e":5564,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3,"e":7466}],[1,{"n":6.5,"e":7491,"g":1}]],"fo":[[7491,[{"t":"Y"}]]]}],[4207,{"n":"Rovella","f":"Nicolò","fp":"MD","r":6,"c":117,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":15.5,"On":3,"Oa":5.17,"Od":1.04,"pm":3},"p":[[-36,{"n":4,"e":5471}],[-17,{"n":6,"e":5660,"s":1}],[4,{"n":5.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}]]}],[4360,{"n":"Pellegrini","f":"Luca","fp":"DL","r":6,"c":117,"s":{"s":3,"n":1,"a":3,"Os":101,"On":22,"Oa":4.59,"Od":1.01,"pd":17,"pm":5},"p":[[-29,{"n":4.5,"e":5539}],[-28,{"n":6,"e":5549,"s":1}],[-27,{"n":5.5,"e":5565}],[-26,{"n":2,"e":5568}],[-25,{"n":5,"e":5587}],[-24,{"n":4.5,"e":5590}],[-23,{"n":4.5,"e":5600}],[-22,{"n":6,"e":5610}],[-21,{"n":5,"e":5620}],[-20,{"n":4.5,"e":5630}],[-19,{"n":3.5,"e":5638}],[-18,{"n":4,"e":5652}],[-17,{"n":4.5,"e":5667,"s":1}],[-15,{"n":3,"e":5685}],[-14,{"n":6,"e":5689}],[-12,{"n":5,"e":5709}],[-10,{"n":5,"e":5729}],[-9,{"n":5,"e":5746}],[-8,{"n":5,"e":5749}],[-7,{"n":4.5,"e":5764}],[-6,{"n":5,"e":5768}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3,"e":7466}]],"fo":[[5539,[{"t":"Y"}]]]}],[4396,{"n":"Ghiglione","f":"Paolo","fp":"DL","r":8,"c":117,"s":{"s":15,"n":3,"a":5,"d":2,"Ss":15,"Sn":3,"Sa":5,"Sd":2,"Os":114,"On":25,"Oa":4.56,"Od":1.08,"pd":11,"pm":14},"p":[[-36,{"n":4.5,"e":5471,"s":1}],[-33,{"n":4.5,"e":5506,"s":1}],[-31,{"n":5,"e":5521,"s":1}],[-29,{"n":4.5,"e":5541}],[-28,{"n":5,"e":5548,"s":1}],[-23,{"n":5,"e":5600}],[-22,{"n":4,"e":5608}],[-21,{"n":5.5,"e":5619}],[-20,{"n":3.5,"e":5631}],[-17,{"n":4,"e":5660}],[-16,{"n":3,"e":5672}],[-15,{"n":3,"e":5682}],[-14,{"n":4,"e":5691}],[-13,{"n":6,"e":5703}],[-12,{"n":5,"e":5713,"s":1}],[-11,{"n":4,"e":5721}],[-10,{"n":5.5,"e":5730}],[-9,{"n":6.5,"e":5741}],[-8,{"n":3.5,"e":5754}],[-7,{"n":5,"e":5762}],[-6,{"n":3,"e":5770}],[-5,{"n":5,"e":5780}],[4,{"n":5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3,"e":7466,"s":1}],[1,{"n":7,"e":7491}]],"fo":[[7455,[{"t":"Y"}]],[7491,[{"t":"Y"}]]]}],[4440,{"n":"Cassata","f":"Francesco","fp":"MD","r":7,"c":117,"s":{"Og":2,"Os":109,"On":24,"Oa":4.54,"Od":0.94,"pm":24},"p":[[-38,{"n":3.5,"e":5451,"s":1}],[-37,{"n":3.5,"e":5464}],[-32,{"n":6,"e":5511}],[-31,{"n":5,"e":5521}],[-30,{"n":4,"e":5537}],[-29,{"n":4,"e":5541}],[-27,{"n":3.5,"e":5561}],[-26,{"n":6.5,"e":5572,"g":1}],[-25,{"n":6,"e":5582,"g":1}],[-24,{"n":5,"e":5589,"s":1}],[-23,{"n":5,"e":5600,"s":1}],[-22,{"n":5,"e":5608,"s":1}],[-20,{"n":4,"e":5631}],[-19,{"n":4.5,"e":5647}],[-18,{"n":5.5,"e":5651,"s":1}],[-17,{"n":3,"e":5660}],[-16,{"n":4,"e":5672}],[-15,{"n":4.5,"e":5682,"s":1}],[-14,{"n":5,"e":5691}],[-13,{"n":5.5,"e":5703}],[-12,{"n":5,"e":5713}],[-10,{"n":3.5,"e":5730}],[-9,{"n":4,"e":5741}],[-6,{"n":3.5,"e":5770}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[5451,[{"t":"R"}]],[5541,[{"t":"Y"}]],[5561,[{"t":"Y"}]]]}],[4501,{"n":"Parigini","f":"Vittorio","fp":"A","r":6,"c":117,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[4,{"n":5,"e":7455,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[4524,{"n":"Bani","f":"Mattia","fp":"DC","r":8,"c":117,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":3,"Os":124,"On":26,"Oa":4.77,"Od":1.15,"pd":26},"p":[[-32,{"n":4,"e":5516}],[-31,{"n":4,"e":5519}],[-30,{"n":5,"e":5530,"s":1}],[-29,{"n":5,"e":5539}],[-28,{"n":5.5,"e":5555}],[-26,{"n":3.5,"e":5570}],[-25,{"n":6,"e":5579}],[-24,{"n":4,"e":5589}],[-23,{"n":4,"e":5604}],[-22,{"n":7,"e":5609,"g":1}],[-20,{"n":6,"e":5629,"g":1}],[-19,{"n":4,"e":5645}],[-18,{"n":5,"e":5649}],[-17,{"n":5,"e":5662}],[-16,{"n":6,"e":5668}],[-15,{"n":3,"e":5679}],[-14,{"n":5,"e":5695}],[-12,{"n":3.5,"e":5716}],[-11,{"n":4.5,"e":5719}],[-10,{"n":3,"e":5729}],[-9,{"n":7,"e":5739,"g":1}],[-8,{"n":4.5,"e":5750}],[-7,{"n":3,"e":5759}],[-6,{"n":5,"e":5777}],[-5,{"n":6,"e":5780}],[4,{"n":5.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[7455,[{"t":"I"}]]]}],[4536,{"n":"Goldaniga","f":"Edoardo","fp":"DC","r":7,"c":117,"s":{"s":13.5,"n":3,"a":4.5,"d":2.5,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":2.5,"Og":1,"Os":69,"On":16,"Oa":4.31,"Od":1.35,"pd":16},"p":[[-38,{"n":5,"e":5451,"s":1}],[-37,{"n":2.5,"e":5464}],[-36,{"n":3.5,"e":5471}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":5,"e":5491,"s":1}],[-33,{"n":3,"e":5506}],[-32,{"n":6,"e":5511}],[-31,{"n":5,"e":5521,"g":1}],[-30,{"n":4.5,"e":5537}],[-24,{"n":5,"e":5589,"s":1}],[-22,{"n":5,"e":5608,"s":1}],[-20,{"n":3,"e":5631}],[-8,{"n":3,"e":5754}],[4,{"n":4.5,"e":7455,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":2,"e":7466}],[1,{"n":7,"e":7491}]],"fo":[[5506,[{"t":"Y"}]],[5521,[{"t":"Y"}]],[5537,[{"t":"Y"}]],[7455,[{"t":"Y"}]]]}],[4555,{"n":"Zima","f":"Lukas","fp":"G","r":3,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[4560,{"n":"Lakicevic","f":"Ivan","fp":"DL","r":2,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[4580,{"n":"Biraschi","f":"Davide","fp":"DC","r":7,"c":117,"s":{"s":8,"n":2,"a":4,"d":2.83,"Oao":1,"Os":111.5,"On":25,"Oa":4.46,"Od":1.23,"pd":19,"pm":6},"p":[[-37,{"n":3,"e":5464}],[-35,{"n":5,"e":5484}],[-33,{"n":3.5,"e":5506}],[-32,{"n":5,"e":5511}],[-31,{"n":4.5,"e":5521}],[-30,{"n":4.5,"e":5537}],[-29,{"n":6,"e":5541,"s":1}],[-28,{"n":4.5,"e":5548}],[-27,{"n":2.5,"e":5561}],[-26,{"n":6,"e":5572}],[-25,{"n":3.5,"e":5582}],[-24,{"n":5.5,"e":5589}],[-23,{"n":5.5,"e":5600}],[-22,{"n":5,"e":5608}],[-21,{"n":5.5,"e":5619}],[-20,{"n":3,"e":5631,"a":1}],[-19,{"n":5,"e":5647}],[-18,{"n":5,"e":5651}],[-17,{"n":4,"e":5660}],[-16,{"n":5.5,"e":5672}],[-15,{"n":4,"e":5682}],[-14,{"n":5.5,"e":5691}],[-7,{"n":2,"e":5762,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":2,"e":7466}],[1,{"n":6,"e":7491}]],"fo":[[5484,[{"t":"Y"}]],[5548,[{"t":"Y"}]]]}],[4613,{"n":"Brlek","f":"Petar","fp":"MD","r":2,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[4614,{"n":"Pjaca","f":"Marko","fp":"MO","r":8,"c":117,"s":{"g":1,"s":9,"n":2,"a":4.5,"d":2.83,"Og":1,"Os":9,"On":2,"Oa":4.5,"Od":2.83,"pa":2},"p":[[3,{"n":null,"e":7457,"d":1}],[2,{"n":2.5,"e":7466}],[1,{"n":6.5,"e":7491,"g":1,"s":1}]]}],[4627,{"n":"Sturaro","f":"Stefano","fp":"MD","r":7,"c":117,"s":{"Og":1,"Os":79,"On":16,"Oa":4.94,"Od":1.2,"pm":15,"pa":1},"p":[[-34,{"n":5,"e":5491}],[-30,{"n":5,"e":5537}],[-29,{"n":3.5,"e":5541}],[-28,{"n":5,"e":5548}],[-27,{"n":3.5,"e":5561}],[-26,{"n":5,"e":5572,"s":1}],[-24,{"n":8,"e":5589}],[-23,{"n":5.5,"e":5600}],[-22,{"n":6,"e":5608}],[-21,{"n":5.5,"e":5619}],[-20,{"n":4,"e":5631}],[-19,{"n":3,"e":5647}],[-18,{"n":4.5,"e":5651}],[-15,{"n":4.5,"e":5682}],[-14,{"n":5,"e":5691}],[-13,{"n":6,"e":5703,"g":1}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[5491,[{"t":"I"}]],[5537,[{"t":"Y"}]],[5541,[{"t":"Y"}]]]}],[4646,{"n":"Perin","f":"Mattia","fp":"G","r":16,"c":117,"s":{"s":14,"n":2,"a":7,"d":2.12,"Ss":8.5,"Sn":1,"Sa":8.5,"Os":122.5,"On":23,"Oa":5.33,"Od":1.41,"pg":23},"p":[[-38,{"n":6,"e":5451}],[-37,{"n":3,"e":5464}],[-36,{"n":3.5,"e":5471}],[-35,{"n":6,"e":5484}],[-34,{"n":4,"e":5491}],[-33,{"n":4,"e":5506}],[-32,{"n":5,"e":5511}],[-31,{"n":7,"e":5521}],[-30,{"n":4.5,"e":5537}],[-29,{"n":5,"e":5541}],[-28,{"n":4.5,"e":5548}],[-27,{"n":4,"e":5561}],[-26,{"n":5.5,"e":5572}],[-25,{"n":5,"e":5582}],[-24,{"n":6.5,"e":5589}],[-23,{"n":7,"e":5600}],[-22,{"n":6,"e":5608}],[-21,{"n":6.5,"e":5619}],[-20,{"n":3,"e":5631}],[-19,{"n":7,"e":5647}],[-18,{"n":5.5,"e":5651}],[4,{"n":8.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[1,{"n":5.5,"e":7491}]]}],[4706,{"n":"Destro","f":"Mattia","fp":"A","r":8,"c":117,"s":{"g":1,"s":9.5,"n":2,"a":4.75,"d":3.18,"Og":1,"Os":54.5,"On":12,"Oa":4.54,"Od":1.01,"pa":12},"p":[[-36,{"n":5,"e":5471,"s":1}],[-33,{"n":4.5,"e":5506,"s":1}],[-32,{"n":4.5,"e":5511,"s":1}],[-30,{"n":4.5,"e":5537,"s":1}],[-28,{"n":4,"e":5548}],[-27,{"n":4.5,"e":5561,"s":1}],[-25,{"n":5,"e":5582,"s":1}],[-22,{"n":4.5,"e":5608,"s":1}],[-14,{"n":4,"e":5695,"s":1}],[-6,{"n":4.5,"e":5777,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":2.5,"e":7466}],[1,{"n":7,"e":7491,"g":1}]],"fo":[[7466,[{"t":"Y"}]]]}],[4718,{"n":"Badelj","f":"Milan","fp":"MD","r":8,"c":117,"s":{"s":15,"n":3,"a":5,"d":1.32,"Ss":15,"Sn":3,"Sa":5,"Sd":1.32,"Og":1,"Os":109,"On":22,"Oa":4.95,"Od":0.75,"pm":22},"p":[[-35,{"n":5,"e":5479}],[-31,{"n":5.5,"e":5520}],[-28,{"n":4.5,"e":5551}],[-26,{"n":5,"e":5577}],[-24,{"n":4,"e":5595}],[-23,{"n":5,"e":5599,"s":1}],[-17,{"n":4.5,"e":5659,"g":1}],[-16,{"n":5,"e":5671}],[-14,{"n":4.5,"e":5690}],[-13,{"n":4.5,"e":5707}],[-12,{"n":3.5,"e":5709}],[-11,{"n":5,"e":5720}],[-10,{"n":4.5,"e":5736,"s":1}],[-9,{"n":5.5,"e":5740}],[-8,{"n":5,"e":5748}],[-7,{"n":5,"e":5761}],[-6,{"n":6.5,"e":5772}],[-5,{"n":6,"e":5779}],[-4,{"n":5.5,"e":5788}],[4,{"n":4.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":4,"e":7466}],[1,{"n":6.5,"e":7491}]],"fo":[[7491,[{"t":"I"}]],[7455,[{"t":"Y"}]]]}],[4772,{"n":"Radovanovic","f":"Ivan","fp":"MD","r":8,"c":117,"s":{"s":15,"n":3,"a":5,"Ss":15,"Sn":3,"Sa":5,"Os":89.5,"On":18,"Oa":4.97,"Od":0.93,"pd":1,"pm":17},"p":[[-24,{"n":7,"e":5589}],[-23,{"n":6,"e":5600}],[-20,{"n":5,"e":5631,"s":1}],[-18,{"n":5.5,"e":5651}],[-17,{"n":4,"e":5660}],[-16,{"n":5.5,"e":5672}],[-13,{"n":6,"e":5703}],[-12,{"n":5,"e":5713,"s":1}],[-11,{"n":4.5,"e":5721,"s":1}],[-10,{"n":5,"e":5730,"s":1}],[-9,{"n":4.5,"e":5741}],[-8,{"n":3.5,"e":5754}],[-7,{"n":4.5,"e":5762}],[-6,{"n":3,"e":5770}],[-5,{"n":5.5,"e":5780}],[4,{"n":5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":5,"e":7466,"s":1}],[1,{"n":5,"e":7491,"s":1}]]}],[4788,{"n":"Marchetti","f":"Federico","fp":"G","r":8,"c":117,"s":{"s":2.5,"n":1,"a":2.5,"Os":2.5,"On":1,"Oa":2.5,"pg":1},"p":[[3,{"n":null,"e":7457,"d":1}],[2,{"n":2.5,"e":7466}]]}],[4799,{"n":"Cristián Zapata","f":"","fp":"DC","r":10,"c":117,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":92,"On":18,"Oa":5.11,"Od":0.98,"pd":18},"p":[[-38,{"n":6.5,"e":5451}],[-36,{"n":4,"e":5471}],[-35,{"n":5.5,"e":5484,"s":1}],[-34,{"n":5,"e":5491}],[-33,{"n":4,"e":5506}],[-32,{"n":6,"e":5511}],[-31,{"n":5.5,"e":5521}],[-28,{"n":4.5,"e":5548}],[-13,{"n":5.5,"e":5703}],[-12,{"n":5.5,"e":5713}],[-11,{"n":4,"e":5721}],[-10,{"n":6,"e":5730}],[-9,{"n":5.5,"e":5741}],[-8,{"n":2.5,"e":5754}],[-7,{"n":5.5,"e":5762}],[-5,{"n":5,"e":5780}],[4,{"n":5.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[1,{"n":6,"e":7491}]],"fo":[[5548,[{"t":"Y"}]]]}],[4808,{"n":"Criscito","f":"Domenico","fp":"DL","r":20,"c":117,"s":{"Og":6,"Os":111.5,"On":22,"Oa":5.07,"Od":1.06,"pd":14,"pm":8},"p":[[-38,{"n":5,"e":5451}],[-37,{"n":4,"e":5464,"s":1}],[-36,{"n":3,"e":5471}],[-35,{"n":6.5,"e":5484,"g":1}],[-34,{"n":5.5,"e":5491}],[-33,{"n":5,"e":5506,"s":1}],[-27,{"n":3.5,"e":5561}],[-26,{"n":5,"e":5572}],[-25,{"n":5,"e":5582,"g":1}],[-24,{"n":7.5,"e":5589,"g":1}],[-23,{"n":5.5,"e":5600}],[-22,{"n":6,"e":5608,"g":1}],[-21,{"n":6,"e":5619}],[-19,{"n":4.5,"e":5647}],[-18,{"n":6,"e":5651,"g":1}],[-17,{"n":4,"e":5660}],[-16,{"n":5,"e":5672}],[-15,{"n":6,"e":5682,"g":1}],[-13,{"n":4,"e":5703}],[-7,{"n":5.5,"e":5762}],[-6,{"n":4,"e":5770}],[-5,{"n":5,"e":5780}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[5451,[{"t":"I"}]],[5471,[{"t":"Y"}]]]}],[4818,{"n":"Masiello","f":"Andrea","fp":"DC","r":6,"c":117,"s":{"s":7.5,"n":2,"a":3.75,"d":2.47,"Ss":7.5,"Sn":2,"Sa":3.75,"Sd":2.47,"Os":95,"On":21,"Oa":4.52,"Od":1.25,"pd":21},"p":[[-38,{"n":6,"e":5451}],[-37,{"n":2.5,"e":5464}],[-35,{"n":5.5,"e":5484}],[-34,{"n":5.5,"e":5491}],[-33,{"n":3.5,"e":5506}],[-32,{"n":5,"e":5511}],[-31,{"n":4,"e":5521}],[-30,{"n":4.5,"e":5537}],[-29,{"n":3,"e":5541}],[-27,{"n":3.5,"e":5561}],[-26,{"n":6,"e":5572}],[-25,{"n":3,"e":5582}],[-24,{"n":6.5,"e":5589}],[-23,{"n":5.5,"e":5600}],[-22,{"n":4.5,"e":5608}],[-14,{"n":5.5,"e":5688}],[-8,{"n":4.5,"e":5751}],[-6,{"n":5,"e":5776}],[-4,{"n":4,"e":5788}],[4,{"n":5.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":2,"e":7466}]],"fo":[[5451,[{"t":"Y"}]],[5506,[{"t":"Y"}]],[5541,[{"t":"Y"}]],[7466,[{"t":"Y"}]]]}],[4824,{"n":"Pandev","f":"Goran","fp":"A","r":18,"c":117,"s":{"g":1,"s":13.5,"n":3,"a":4.5,"d":2,"Sg":1,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":2,"Og":10,"Os":162.5,"On":33,"Oa":4.92,"Od":1.35,"pm":3,"pa":30},"p":[[-38,{"n":6,"e":5451}],[-37,{"n":3,"e":5464}],[-36,{"n":4.5,"e":5471,"s":1}],[-35,{"n":6,"e":5484}],[-34,{"n":5.5,"e":5491}],[-33,{"n":2.5,"e":5506,"s":1}],[-32,{"n":6.5,"e":5511,"g":1}],[-31,{"n":4.5,"e":5521,"s":1}],[-30,{"n":6,"e":5537,"g":1,"s":1}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":5,"e":5548,"s":1}],[-27,{"n":3.5,"e":5561}],[-26,{"n":6,"e":5572,"g":1}],[-25,{"n":5,"e":5582,"s":1}],[-24,{"n":4.5,"e":5589}],[-23,{"n":7,"e":5600,"g":1,"s":1}],[-21,{"n":3.5,"e":5619}],[-20,{"n":6,"e":5631,"g":1}],[-19,{"n":3,"e":5647}],[-18,{"n":7,"e":5651,"g":1}],[-15,{"n":7.5,"e":5682,"g":1}],[-14,{"n":4.5,"e":5691}],[-13,{"n":4,"e":5703,"s":1}],[-12,{"n":5,"e":5713}],[-11,{"n":6,"e":5721,"g":1}],[-10,{"n":5,"e":5730}],[-9,{"n":6,"e":5741,"g":1,"s":1}],[-8,{"n":3,"e":5754}],[-7,{"n":4.5,"e":5762,"s":1}],[-6,{"n":4,"e":5770,"s":1}],[4,{"n":4.5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":2.5,"e":7466,"s":1}],[1,{"n":6.5,"e":7491,"g":1}]],"fo":[[7455,[{"t":"Y"}]],[7491,[{"t":"Y"}]]]}],[6140,{"n":"Schöne","f":"Lasse","fp":"MD","r":8,"c":117,"s":{"Og":2,"Os":140,"On":28,"Oa":5,"Od":0.99,"pm":27,"pa":1},"p":[[-37,{"n":3.5,"e":5464}],[-36,{"n":4.5,"e":5471,"s":1}],[-35,{"n":5,"e":5484}],[-34,{"n":5,"e":5491}],[-33,{"n":4,"e":5506}],[-32,{"n":7,"e":5511,"g":1}],[-31,{"n":6,"e":5521}],[-29,{"n":4,"e":5541}],[-28,{"n":6,"e":5548,"s":1}],[-27,{"n":3.5,"e":5561}],[-26,{"n":5.5,"e":5572}],[-25,{"n":5.5,"e":5582}],[-23,{"n":5.5,"e":5600}],[-22,{"n":4.5,"e":5608}],[-21,{"n":5,"e":5619}],[-20,{"n":6.5,"e":5631}],[-19,{"n":5,"e":5647}],[-16,{"n":4.5,"e":5672}],[-15,{"n":4.5,"e":5682}],[-14,{"n":5.5,"e":5691}],[-12,{"n":6,"e":5713}],[-11,{"n":4.5,"e":5721}],[-10,{"n":6,"e":5730}],[-9,{"n":6,"e":5741}],[-8,{"n":3,"e":5754}],[-7,{"n":5.5,"e":5762,"g":1}],[-6,{"n":5,"e":5770,"s":1}],[-5,{"n":3.5,"e":5780}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[5541,[{"t":"Y"}]]]}],[6290,{"n":"Cleonise","f":"Denilho","fp":"A","r":2,"c":117,"s":{"Os":17.5,"On":4,"Oa":4.38,"Od":0.25,"pa":4},"p":[[-17,{"n":4.5,"e":5660,"s":1}],[-16,{"n":4,"e":5672,"s":1}],[-13,{"n":4.5,"e":5703,"s":1}],[-12,{"n":4.5,"e":5713,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[6317,{"n":"Eboa Ebongue","f":"Steeve-Mike","fp":"MD","r":6,"c":117,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[4,{"n":5,"e":7455,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[6443,{"n":"Czyborra","f":"Lennart","fp":"DL","r":7,"c":117,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":2,"pm":1},"p":[[-33,{"n":4.5,"e":5498,"s":1}],[4,{"n":5,"e":7455}],[3,{"n":null,"e":7457,"d":1}],[1,{"n":5,"e":7491,"s":1}]]}],[7237,{"n":"Zajc","f":"Miha","fp":"MD","r":8,"c":117,"s":{"s":10,"n":2,"a":5,"d":1.41,"Os":10,"On":2,"Oa":5,"Od":1.41,"pm":2},"p":[[3,{"n":null,"e":7457,"d":1}],[2,{"n":4,"e":7466}],[1,{"n":6,"e":7491}]],"fo":[[7491,[{"t":"Y"}]]]}],[7275,{"n":"Agostino","f":"Giuseppe","fp":"G","r":1,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[7283,{"n":"Males","f":"Darian","fp":"A","r":1,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[7292,{"n":"Melegoni","f":"Filippo","fp":"MO","r":7,"c":117,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[3,{"n":null,"e":7457,"d":1}],[2,{"n":5,"e":7466,"s":1}]]}],[7335,{"n":"Scamacca","f":"Gianluca","fp":"A","r":6,"c":117,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pa":1},"p":[[4,{"n":5,"e":7455,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[7343,{"n":"Micovschi","f":"Claudiu","fp":"MO","r":4,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[7379,{"n":"Shomurodov","f":"Eldor","fp":"A","r":6,"c":117,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[4,{"n":4,"e":7455}],[3,{"n":null,"e":7457,"d":1}]]}],[7383,{"n":"Paleari","f":"Alberto","fp":"G","r":5,"c":117,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[7430,{"n":"Caso","f":"Giuseppe","fp":"A","r":5,"c":117}],[7441,{"n":"Dumbravanu","f":"Daniel","fp":"DC","r":2,"c":117}],[586,{"n":"Lukaku","f":"Romelu","fp":"A","r":41,"c":112,"s":{"g":4,"s":24.5,"n":4,"a":6.13,"d":1.03,"Sg":4,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":1.03,"Og":24,"Os":201.5,"On":36,"Oa":5.6,"Od":1.23,"pa":36},"p":[[4,{"n":6,"e":7450,"g":1}],[3,{"n":5,"e":7460}],[-26,{"n":3.5,"e":5569}],[-22,{"n":7,"e":5617,"g":2}],[-38,{"n":5,"e":5448}],[-37,{"n":5,"e":5460}],[-36,{"n":7.5,"e":5471,"g":2}],[-35,{"n":4,"e":5479}],[-34,{"n":5.5,"e":5496,"g":1,"s":1}],[-31,{"n":5,"e":5527}],[-30,{"n":6,"e":5530,"g":1}],[-29,{"n":4.5,"e":5542,"s":1}],[-28,{"n":4,"e":5554}],[-27,{"n":6,"e":5562,"g":1}],[-25,{"n":5,"e":5583,"g":1}],[-24,{"n":4.5,"e":5592}],[-23,{"n":7,"e":5601,"g":1}],[-21,{"n":4,"e":5620}],[-20,{"n":4.5,"e":5634}],[-19,{"n":6,"e":5640}],[-18,{"n":8,"e":5655,"g":2}],[-17,{"n":8,"e":5660,"g":2}],[-16,{"n":5,"e":5671}],[-15,{"n":4.5,"e":5680}],[-14,{"n":5.5,"e":5692}],[-13,{"n":7,"e":5706,"g":1}],[-12,{"n":5,"e":5710}],[-11,{"n":7.5,"e":5719,"g":2}],[-10,{"n":6,"e":5728,"g":1}],[-9,{"n":6,"e":5742,"g":1}],[-8,{"n":6.5,"e":5756,"g":2}],[-7,{"n":4,"e":5763}],[-6,{"n":5,"e":5775,"s":1}],[-5,{"n":5,"e":5781}],[2,{"n":6,"e":7465,"g":1}],[1,{"n":7.5,"e":7492,"g":2}]],"fo":[[7460,[{"t":"Y"}]]],"a":{"m":48,"a":74,"M":101,"n":5}}],[587,{"n":"Sánchez","f":"Alexis","fp":"A","r":12,"c":112,"s":{"s":20,"n":4,"a":5,"d":0.71,"Ss":20,"Sn":4,"Sa":5,"Sd":0.71,"Og":4,"Os":131.5,"On":25,"Oa":5.26,"Od":1,"pa":25},"p":[[-38,{"n":4.5,"e":5448,"s":1}],[-37,{"n":4.5,"e":5460}],[-36,{"n":6,"e":5471,"g":1,"s":1}],[-35,{"n":4,"e":5479}],[-34,{"n":5,"e":5496}],[-33,{"n":7,"e":5503,"g":1}],[-32,{"n":7.5,"e":5512}],[-31,{"n":5,"e":5527}],[-30,{"n":5,"e":5530,"s":1}],[-29,{"n":8,"e":5542,"g":1}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":5.5,"e":5562}],[-26,{"n":4.5,"e":5569,"s":1}],[-25,{"n":5,"e":5583,"s":1}],[-24,{"n":4.5,"e":5592,"s":1}],[-23,{"n":6,"e":5601}],[-22,{"n":5.5,"e":5617,"s":1}],[-21,{"n":4.5,"e":5620,"s":1}],[-20,{"n":4.5,"e":5634,"s":1}],[-6,{"n":5,"e":5775,"g":1}],[-5,{"n":5,"e":5781,"s":1}],[4,{"n":4.5,"e":7450,"s":1}],[3,{"n":4.5,"e":7460,"s":1}],[2,{"n":5,"e":7465,"s":1}],[1,{"n":6,"e":7492}]],"fo":[[5460,[{"t":"Y"}]],[5512,[{"t":"Y"}]]]}],[611,{"n":"Eriksen","f":"Christian","fp":"MO","r":17,"c":112,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":175,"On":34,"Oa":5.15,"Od":0.81,"pm":24,"pa":10},"p":[[-24,{"n":5,"e":4076,"s":1}],[-23,{"n":5.5,"e":4086,"s":1}],[-22,{"n":5,"e":4096}],[-21,{"n":4.5,"e":4105}],[-20,{"n":7,"e":4114,"g":1}],[-19,{"n":5,"e":4126,"s":1}],[-18,{"n":4.5,"e":4135,"s":1}],[-17,{"n":5.5,"e":4147,"s":1}],[-15,{"n":5,"e":4163,"s":1}],[-13,{"n":4.5,"e":4187,"s":1}],[-11,{"n":4.5,"e":4203}],[-10,{"n":4,"e":4211}],[-8,{"n":4,"e":4228}],[-7,{"n":6.5,"e":4243}],[-38,{"n":5,"e":5448,"s":1}],[-37,{"n":5,"e":5460,"s":1}],[-36,{"n":5,"e":5471}],[-35,{"n":6.5,"e":5479}],[-34,{"n":5,"e":5496,"s":1}],[-33,{"n":6.5,"e":5503}],[-32,{"n":5,"e":5512,"s":1}],[-31,{"n":5,"e":5527,"s":1}],[-30,{"n":4.5,"e":5530}],[-29,{"n":6.5,"e":5542,"g":1,"s":1}],[-28,{"n":5,"e":5554}],[-27,{"n":4.5,"e":5562}],[-26,{"n":4,"e":5569,"s":1}],[-25,{"n":7,"e":5583}],[-24,{"n":5,"e":5592,"s":1}],[-23,{"n":5.5,"e":5601,"s":1}],[-22,{"n":5,"e":5617}],[4,{"n":5,"e":7450,"s":1}],[2,{"n":4.5,"e":7465}],[1,{"n":5,"e":7492,"s":1}]]}],[631,{"n":"Kolarov","f":"Aleksandar","fp":"DL","r":26,"c":112,"s":{"s":13.5,"n":3,"a":4.5,"d":1.32,"Ss":3,"Sn":1,"Sa":3,"Og":4,"Os":170.5,"On":31,"Oa":5.5,"Od":1.11,"pd":30,"pm":1},"p":[[-32,{"n":6.5,"e":5508}],[-21,{"n":5,"e":5623,"s":1}],[-19,{"n":4.5,"e":5643}],[-13,{"n":5.5,"e":5702}],[-12,{"n":3.5,"e":5714}],[-10,{"n":8,"e":5737,"g":1}],[-9,{"n":5.5,"e":5744}],[-37,{"n":5,"e":5465}],[-36,{"n":6,"e":5475}],[-35,{"n":7,"e":5483,"g":1}],[-34,{"n":5,"e":5496}],[-33,{"n":5.5,"e":5502}],[-31,{"n":5,"e":5524,"s":1}],[-29,{"n":5,"e":5544}],[-27,{"n":6,"e":5564}],[-26,{"n":6,"e":5568}],[-25,{"n":7.5,"e":5584,"g":1}],[-23,{"n":6,"e":5604}],[-18,{"n":4.5,"e":5656}],[-17,{"n":8,"e":5659,"g":1}],[-16,{"n":5,"e":5676}],[-15,{"n":5,"e":5680}],[-14,{"n":5,"e":5697}],[-11,{"n":6,"e":5724}],[-8,{"n":5.5,"e":5755}],[-7,{"n":5,"e":5764}],[-6,{"n":6,"e":5771}],[-5,{"n":4.5,"e":5784}],[4,{"n":3,"e":7450}],[2,{"n":5,"e":7465}],[1,{"n":5.5,"e":7492}]],"a":{"m":30,"a":39,"M":55,"n":5}}],[797,{"n":"Darmian","f":"Matteo","fp":"DL","r":8,"c":112,"s":{"s":12,"n":3,"a":4,"d":1,"Og":1,"Os":167.5,"On":35,"Oa":4.79,"Od":0.84,"pd":32,"pm":3},"p":[[3,{"n":5,"e":7461,"s":1}],[-21,{"n":5.5,"e":5622}],[-17,{"n":5,"e":5663}],[-5,{"n":6,"e":5783}],[-4,{"n":4.5,"e":5792}],[-38,{"n":4.5,"e":5453}],[-37,{"n":4,"e":5462}],[-36,{"n":7,"e":5469,"g":1}],[-35,{"n":6,"e":5482}],[-33,{"n":4,"e":5501}],[-32,{"n":5.5,"e":5516}],[-31,{"n":3.5,"e":5524}],[-30,{"n":3.5,"e":5534}],[-29,{"n":5,"e":5547,"s":1}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":5,"e":5561,"s":1}],[-26,{"n":5,"e":5574}],[-25,{"n":4.5,"e":5586}],[-24,{"n":5,"e":5596}],[-23,{"n":4.5,"e":5603}],[-22,{"n":4,"e":5610}],[-20,{"n":5,"e":5632}],[-19,{"n":5.5,"e":5642}],[-18,{"n":3,"e":5648}],[-16,{"n":5,"e":5675}],[-15,{"n":6,"e":5684}],[-14,{"n":4.5,"e":5696}],[-13,{"n":4.5,"e":5699}],[-12,{"n":5,"e":5714}],[-11,{"n":5,"e":5720}],[-10,{"n":5,"e":5734}],[-9,{"n":5,"e":5742}],[-8,{"n":5,"e":5754}],[2,{"n":3,"e":7469}],[1,{"n":4,"e":7472}]],"fo":[[5462,[{"t":"Y"}]],[5501,[{"t":"Y"}]],[7472,[{"t":"Y"}]]]}],[947,{"n":"Young","f":"Ashley","fp":"DL","r":17,"c":112,"s":{"s":15,"n":3,"a":5,"d":1,"Og":4,"Os":153.5,"On":29,"Oa":5.29,"Od":1.01,"pd":13,"pm":16},"p":[[-20,{"n":5,"e":4110}],[-16,{"n":5,"e":4152,"s":1}],[-11,{"n":5,"e":4200}],[-10,{"n":5,"e":4214}],[-9,{"n":4.5,"e":4224}],[-8,{"n":5,"e":4237}],[-7,{"n":4.5,"e":4247}],[-38,{"n":8,"e":5448,"g":1}],[-37,{"n":5,"e":5460,"s":1}],[-36,{"n":5,"e":5471,"s":1}],[-35,{"n":5.5,"e":5479}],[-34,{"n":4.5,"e":5496}],[-33,{"n":6,"e":5503,"s":1}],[-32,{"n":7,"e":5512,"g":1}],[-31,{"n":4.5,"e":5527}],[-30,{"n":4.5,"e":5530}],[-29,{"n":7.5,"e":5542,"g":1}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":4,"e":5562,"s":1}],[-26,{"n":4,"e":5569}],[-25,{"n":5,"e":5583}],[-24,{"n":6.5,"e":5592,"g":1}],[-23,{"n":5,"e":5601}],[-22,{"n":6.5,"e":5617}],[-21,{"n":6,"e":5620}],[-15,{"n":5,"e":4163}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":4,"e":7465}],[1,{"n":6,"e":7492}]],"fo":[[5527,[{"t":"Y"}]],[7460,[{"t":"Y"}]]]}],[974,{"n":"Ranocchia","f":"Andrea","fp":"DC","r":7,"c":112,"s":{"Os":28,"On":5,"Oa":5.6,"Od":0.65,"pd":5},"p":[[-36,{"n":6,"e":5471}],[-35,{"n":6,"e":5479,"s":1}],[-33,{"n":6,"e":5503}],[-29,{"n":5.5,"e":5542,"s":1}],[-27,{"n":4.5,"e":5562}]],"fo":[[5471,[{"t":"Y"}]],[5503,[{"t":"Y"}]]]}],[1980,{"n":"Hakimi","f":"Achraf","fp":"DL","r":19,"c":112,"s":{"g":1,"s":22.5,"n":4,"a":5.63,"d":1.38,"Sg":1,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.38,"Og":1,"Os":22.5,"On":4,"Oa":5.63,"Od":1.38,"pd":1,"pm":3},"p":[[4,{"n":4,"e":7450}],[3,{"n":5,"e":7460}],[2,{"n":6.5,"e":7465,"s":1}],[1,{"n":7,"e":7492,"g":1}]],"fo":[[7450,[{"t":"Y"}]]],"a":{"m":21,"a":22,"M":23,"n":5}}],[2397,{"n":"Vidal","f":"Arturo","fp":"MD","r":10,"c":112,"s":{"s":21.5,"n":4,"a":5.38,"d":0.63,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.63,"Og":7,"Os":180.5,"On":33,"Oa":5.47,"Od":1.01,"pm":31,"pa":2},"p":[[-37,{"n":4.5,"e":4319,"s":1}],[-36,{"n":7,"e":4335,"g":1}],[-35,{"n":5,"e":4339,"s":1}],[-34,{"n":6.5,"e":4357}],[-33,{"n":4,"e":4359}],[-31,{"n":5.5,"e":4379}],[-30,{"n":4.5,"e":4396}],[-29,{"n":5.5,"e":4399,"s":1}],[-28,{"n":5.5,"e":4413,"g":1}],[-27,{"n":5.5,"e":4420,"s":1}],[-26,{"n":4,"e":4434}],[-25,{"n":6,"e":4440}],[-24,{"n":5,"e":4449,"s":1}],[-23,{"n":3.5,"e":4465}],[-21,{"n":4.5,"e":4487,"s":1}],[-20,{"n":6.5,"e":4489}],[-19,{"n":6.5,"e":4501,"g":1,"s":1}],[-18,{"n":7,"e":4508,"g":1}],[-10,{"n":6,"e":4589,"s":1}],[-17,{"n":5,"e":4525,"s":1}],[-16,{"n":5,"e":4528,"s":1}],[-15,{"n":5,"e":4540,"s":1}],[-14,{"n":6.5,"e":4550,"g":1,"s":1}],[-12,{"n":4,"e":4572}],[-9,{"n":5,"e":4601,"s":1}],[-8,{"n":7,"e":4608,"g":1}],[-38,{"n":7,"e":4308}],[-32,{"n":5,"e":4370}],[-11,{"n":7,"e":4580,"g":1}],[4,{"n":5.5,"e":7450}],[3,{"n":6,"e":7460}],[2,{"n":5.5,"e":7465,"s":1}],[1,{"n":4.5,"e":7492}]],"fo":[[4413,[{"t":"Y"}]],[7450,[{"t":"Y"}]],[7460,[{"t":"Y"}]]],"a":{"m":10,"a":16,"M":22,"n":12}}],[4357,{"n":"Pinamonti","f":"Andrea","fp":"A","r":9,"c":112,"s":{"Og":4,"Os":131.5,"On":29,"Oa":4.53,"Od":0.87,"pa":29},"p":[[-38,{"n":4.5,"e":5451,"s":1}],[-37,{"n":3,"e":5464}],[-36,{"n":3,"e":5471}],[-35,{"n":5,"e":5484}],[-34,{"n":4,"e":5491,"s":1}],[-33,{"n":4,"e":5506}],[-32,{"n":5.5,"e":5511}],[-31,{"n":4,"e":5521}],[-30,{"n":5,"e":5537,"g":1,"s":1}],[-29,{"n":6,"e":5541,"g":1}],[-28,{"n":5.5,"e":5548,"g":1}],[-27,{"n":4.5,"e":5561,"s":1}],[-26,{"n":4,"e":5572,"s":1}],[-24,{"n":5,"e":5589,"s":1}],[-23,{"n":4,"e":5600}],[-22,{"n":5.5,"e":5608}],[-21,{"n":4.5,"e":5619,"s":1}],[-17,{"n":3,"e":5660}],[-16,{"n":5,"e":5672}],[-15,{"n":4,"e":5682}],[-14,{"n":4.5,"e":5691,"s":1}],[-13,{"n":4,"e":5703}],[-12,{"n":5,"e":5713}],[-11,{"n":4.5,"e":5721}],[-10,{"n":5,"e":5730}],[-9,{"n":6,"e":5741}],[-8,{"n":6,"e":5754,"g":1,"s":1}],[-7,{"n":3.5,"e":5762}],[-5,{"n":4,"e":5780}]]}],[4361,{"n":"Bastoni","f":"Alessandro","fp":"DC","r":9,"c":112,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":2,"Os":140.5,"On":27,"Oa":5.2,"Od":0.88,"pd":27},"p":[[-38,{"n":5.5,"e":5448}],[-37,{"n":6,"e":5460}],[-35,{"n":4.5,"e":5479,"s":1}],[-34,{"n":4.5,"e":5496}],[-33,{"n":5,"e":5503}],[-32,{"n":5.5,"e":5512}],[-30,{"n":4,"e":5530}],[-29,{"n":6,"e":5542}],[-28,{"n":6.5,"e":5554,"g":1,"s":1}],[-27,{"n":4.5,"e":5562}],[-26,{"n":4,"e":5569}],[-25,{"n":5.5,"e":5583}],[-22,{"n":5.5,"e":5617}],[-21,{"n":5.5,"e":5620}],[-20,{"n":6,"e":5634,"g":1,"s":1}],[-19,{"n":4.5,"e":5640}],[-18,{"n":5.5,"e":5655}],[-17,{"n":6.5,"e":5660}],[-16,{"n":5.5,"e":5671}],[-12,{"n":7.5,"e":5710}],[-11,{"n":4.5,"e":5719}],[-9,{"n":4,"e":5742}],[-8,{"n":4,"e":5756}],[-7,{"n":5,"e":5763,"s":1}],[-6,{"n":5.5,"e":5775}],[3,{"n":4.5,"e":7460}],[2,{"n":5,"e":7465}]],"fo":[[5503,[{"t":"Y"}]],[5530,[{"t":"Y"},{"t":"O"}]],[5562,[{"t":"Y"}]]]}],[4364,{"n":"Radu","f":"Ionut","fp":"G","r":3,"c":112,"s":{"Os":68.5,"On":13,"Oa":5.27,"Od":1.39,"pg":13},"p":[[-17,{"n":5.5,"e":5660}],[-16,{"n":4,"e":5672}],[-15,{"n":4.5,"e":5682}],[-14,{"n":5,"e":5691}],[-13,{"n":7,"e":5703}],[-12,{"n":7.5,"e":5713}],[-11,{"n":4,"e":5721}],[-10,{"n":7,"e":5730}],[-9,{"n":5,"e":5741}],[-8,{"n":2.5,"e":5754}],[-7,{"n":5.5,"e":5762}],[-6,{"n":5,"e":5770}],[-5,{"n":6,"e":5780}]]}],[4378,{"n":"Lautaro Martínez","f":"","fp":"A","r":21,"c":112,"s":{"g":3,"s":24.5,"n":4,"a":6.13,"d":0.63,"Sg":3,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":0.63,"Og":16,"Os":190.5,"On":35,"Oa":5.44,"Od":1.21,"pa":35},"p":[[-38,{"n":5,"e":5448}],[-37,{"n":6.5,"e":5460,"g":1,"s":1}],[-36,{"n":4.5,"e":5471}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":4,"e":5496}],[-33,{"n":5,"e":5503}],[-32,{"n":7.5,"e":5512,"g":1}],[-31,{"n":4.5,"e":5527,"s":1}],[-30,{"n":3,"e":5530}],[-29,{"n":4.5,"e":5542}],[-28,{"n":5,"e":5554}],[-27,{"n":4.5,"e":5562,"s":1}],[-26,{"n":5,"e":5569}],[-25,{"n":6,"e":5583,"g":1}],[-24,{"n":4,"e":5592}],[-21,{"n":7,"e":5620,"g":1}],[-20,{"n":5,"e":5634}],[-19,{"n":6.5,"e":5640,"g":1}],[-18,{"n":7,"e":5655,"g":1}],[-16,{"n":4,"e":5671}],[-15,{"n":4,"e":5680}],[-14,{"n":7.5,"e":5692,"g":2}],[-13,{"n":7,"e":5706,"g":1}],[-12,{"n":4,"e":5710}],[-11,{"n":6.5,"e":5719}],[-10,{"n":6,"e":5728,"g":1}],[-9,{"n":5,"e":5742}],[-8,{"n":7.5,"e":5756,"g":2}],[-7,{"n":5.5,"e":5763,"g":1}],[-6,{"n":5,"e":5775}],[-5,{"n":4.5,"e":5781,"s":1}],[4,{"n":5.5,"e":7450}],[3,{"n":6,"e":7460,"g":1}],[2,{"n":7,"e":7465,"g":1}],[1,{"n":6,"e":7492,"g":1,"s":1}]],"fo":[[5554,[{"t":"Y"}]],[5583,[{"t":"Y"}]]],"a":{"m":20,"a":37,"M":60,"n":11}}],[4465,{"n":"Barella","f":"Nicolò","fp":"MO","r":9,"c":112,"s":{"s":19.5,"n":4,"a":4.88,"d":0.75,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.75,"Og":1,"Os":138.5,"On":27,"Oa":5.13,"Od":0.74,"pm":25,"pa":2},"p":[[-38,{"n":6,"e":5448}],[-37,{"n":6,"e":5460}],[-35,{"n":6,"e":5479}],[-34,{"n":4.5,"e":5496}],[-29,{"n":5.5,"e":5542}],[-28,{"n":5,"e":5554}],[-26,{"n":3.5,"e":5569}],[-25,{"n":5,"e":5583}],[-24,{"n":5,"e":5592}],[-23,{"n":6,"e":5601}],[-22,{"n":6,"e":5617}],[-21,{"n":5,"e":5620}],[-20,{"n":5.5,"e":5634}],[-18,{"n":4.5,"e":5655,"s":1}],[-13,{"n":5,"e":5706}],[-12,{"n":6,"e":5710,"g":1}],[-11,{"n":6,"e":5719}],[-10,{"n":4,"e":5728}],[-9,{"n":5.5,"e":5742}],[-8,{"n":5,"e":5756}],[-7,{"n":4,"e":5763}],[-6,{"n":4.5,"e":5775,"s":1}],[-5,{"n":5.5,"e":5781}],[4,{"n":4.5,"e":7450}],[3,{"n":5.5,"e":7460}],[2,{"n":5.5,"e":7465}],[1,{"n":4,"e":7492,"s":1}]],"fo":[[5460,[{"t":"Y"}]],[5479,[{"t":"Y"}]],[5496,[{"t":"Y"}]],[7460,[{"t":"Y"}]],[7465,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":14,"n":6}}],[4467,{"n":"Gagliardini","f":"Roberto","fp":"MD","r":13,"c":112,"s":{"g":1,"s":12.5,"n":2,"a":6.25,"d":2.47,"Og":5,"Os":128,"On":24,"Oa":5.33,"Od":1.39,"pm":24},"p":[[-38,{"n":6,"e":5448}],[-36,{"n":5,"e":5471}],[-35,{"n":4,"e":5479}],[-34,{"n":4.5,"e":5496}],[-33,{"n":7.5,"e":5503,"g":1}],[-32,{"n":6.5,"e":5512}],[-31,{"n":5.5,"e":5527}],[-30,{"n":3,"e":5530}],[-29,{"n":7.5,"e":5542,"g":1}],[-28,{"n":6,"e":5554}],[-27,{"n":4,"e":5562}],[-26,{"n":4.5,"e":5569,"s":1}],[-25,{"n":5,"e":5583}],[-19,{"n":5.5,"e":5640}],[-18,{"n":3.5,"e":5655}],[-17,{"n":8,"e":5660,"g":1}],[-14,{"n":4.5,"e":5692}],[-11,{"n":5,"e":5719}],[-10,{"n":4.5,"e":5728}],[-9,{"n":4,"e":5742}],[-8,{"n":5.5,"e":5756}],[-6,{"n":6,"e":5775,"g":1}],[3,{"n":4.5,"e":7460}],[1,{"n":8,"e":7492,"g":1}]],"fo":[[5471,[{"t":"Y"}]],[5554,[{"t":"Y"}]],[5583,[{"t":"Y"}]]],"a":{"m":12,"a":15,"M":19,"n":7}}],[4533,{"n":"Vecino","f":"Matías","fp":"MD","r":6,"c":112,"s":{"Og":2,"Os":90.5,"On":17,"Oa":5.32,"Od":1.16,"pm":16,"pa":1},"p":[[-31,{"n":4,"e":5527,"s":1}],[-30,{"n":4.5,"e":5530,"s":1}],[-26,{"n":3.5,"e":5569}],[-24,{"n":5,"e":5592}],[-23,{"n":6.5,"e":5601,"g":1}],[-22,{"n":6,"e":5617}],[-18,{"n":5.5,"e":5655}],[-17,{"n":7,"e":5660}],[-16,{"n":5.5,"e":5671}],[-15,{"n":5,"e":5680}],[-14,{"n":5,"e":5692}],[-13,{"n":8,"e":5706}],[-12,{"n":6.5,"e":5710,"g":1}],[-11,{"n":4.5,"e":5719,"s":1}],[-8,{"n":5,"e":5756,"s":1}],[-7,{"n":4.5,"e":5763,"s":1}],[-5,{"n":4.5,"e":5781}]]}],[4539,{"n":"Sensi","f":"Stefano","fp":"MD","r":7,"c":112,"s":{"s":15,"n":3,"a":5,"d":1.32,"Og":1,"Os":58,"On":11,"Oa":5.27,"Od":1.01,"pm":11},"p":[[-21,{"n":5,"e":5620}],[-20,{"n":5,"e":5634}],[-19,{"n":5,"e":5640}],[-18,{"n":4.5,"e":5655,"s":1}],[-17,{"n":5,"e":5660,"s":1}],[-7,{"n":5,"e":5763}],[-6,{"n":7.5,"e":5775,"g":1}],[-5,{"n":6,"e":5781,"s":1}],[3,{"n":3.5,"e":7460,"s":1}],[2,{"n":5.5,"e":7465,"s":1}],[1,{"n":6,"e":7492}]],"fo":[[7460,[{"t":"R"}]]],"a":{"m":7,"a":9,"M":11,"n":6}}],[4585,{"n":"Skriniar","f":"Milan","fp":"DC","r":7,"c":112,"s":{"s":8,"n":2,"a":4,"Oao":1,"Os":146,"On":30,"Oa":4.87,"Od":0.76,"pd":30},"p":[[-38,{"n":5,"e":5448,"s":1}],[-36,{"n":5.5,"e":5471}],[-34,{"n":4.5,"e":5496}],[-33,{"n":6.5,"e":5503}],[-32,{"n":5,"e":5512,"s":1}],[-31,{"n":4,"e":5527}],[-27,{"n":5,"e":5562}],[-26,{"n":3.5,"e":5569}],[-25,{"n":5.5,"e":5583}],[-24,{"n":5,"e":5592}],[-23,{"n":4.5,"e":5601}],[-22,{"n":5.5,"e":5617}],[-21,{"n":4,"e":5620}],[-20,{"n":5,"e":5634}],[-18,{"n":6,"e":5655}],[-17,{"n":6,"e":5660}],[-16,{"n":4.5,"e":5671}],[-15,{"n":5,"e":5680}],[-14,{"n":4.5,"e":5692}],[-13,{"n":5.5,"e":5706}],[-12,{"n":6,"e":5710}],[-11,{"n":5,"e":5719}],[-10,{"n":4,"e":5728,"a":1}],[-9,{"n":4.5,"e":5742}],[-8,{"n":4.5,"e":5756}],[-7,{"n":3.5,"e":5763}],[-6,{"n":5,"e":5775}],[-5,{"n":5.5,"e":5781}],[3,{"n":4,"e":7460}],[1,{"n":4,"e":7492}]],"fo":[[5562,[{"t":"Y"},{"t":"O"}]]]}],[4628,{"n":"Brozovic","f":"Marcelo","fp":"MD","r":18,"c":112,"s":{"s":19,"n":4,"a":4.75,"d":0.5,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.5,"Og":1,"Os":175.5,"On":32,"Oa":5.48,"Od":0.87,"pm":31,"pa":1},"p":[[-38,{"n":7,"e":5448}],[-37,{"n":6,"e":5460}],[-36,{"n":7,"e":5471}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":5,"e":5496}],[-33,{"n":6,"e":5503}],[-32,{"n":6,"e":5512}],[-31,{"n":3.5,"e":5527}],[-30,{"n":4.5,"e":5530}],[-26,{"n":4.5,"e":5569}],[-24,{"n":5.5,"e":5592}],[-23,{"n":6,"e":5601,"g":1}],[-22,{"n":5,"e":5617,"s":1}],[-20,{"n":5.5,"e":5634}],[-19,{"n":5.5,"e":5640}],[-18,{"n":6,"e":5655}],[-16,{"n":6,"e":5671}],[-15,{"n":5.5,"e":5680}],[-14,{"n":6,"e":5692}],[-13,{"n":7.5,"e":5706}],[-12,{"n":6,"e":5710}],[-11,{"n":6,"e":5719}],[-10,{"n":5.5,"e":5728}],[-9,{"n":4.5,"e":5742}],[-8,{"n":5,"e":5756}],[-7,{"n":4.5,"e":5763}],[-6,{"n":6,"e":5775}],[-5,{"n":6,"e":5781}],[4,{"n":4.5,"e":7450}],[3,{"n":4.5,"e":7460,"s":1}],[2,{"n":5.5,"e":7465}],[1,{"n":4.5,"e":7492,"s":1}]],"fo":[[5448,[{"t":"Y"}]],[5460,[{"t":"Y"}]],[5512,[{"t":"Y"}]],[7450,[{"t":"Y"}]]]}],[4671,{"n":"de Vrij","f":"Stefan","fp":"DC","r":21,"c":112,"s":{"s":14,"n":3,"a":4.67,"d":1.04,"Ss":9,"Sn":2,"Sa":4.5,"Sd":1.41,"Og":4,"Os":189,"On":35,"Oa":5.4,"Od":0.87,"pd":35},"p":[[-38,{"n":6,"e":5448}],[-37,{"n":5.5,"e":5460}],[-35,{"n":5,"e":5479}],[-34,{"n":6,"e":5496,"g":1}],[-32,{"n":5.5,"e":5512}],[-31,{"n":4.5,"e":5527}],[-30,{"n":4.5,"e":5530}],[-29,{"n":4.5,"e":5542}],[-28,{"n":5.5,"e":5554,"g":1}],[-27,{"n":5,"e":5562,"s":1}],[-26,{"n":4,"e":5569}],[-25,{"n":5.5,"e":5583}],[-24,{"n":3.5,"e":5592}],[-23,{"n":6,"e":5601,"g":1}],[-22,{"n":5.5,"e":5617}],[-21,{"n":5,"e":5620}],[-20,{"n":6,"e":5634}],[-19,{"n":5,"e":5640}],[-18,{"n":5.5,"e":5655}],[-17,{"n":6,"e":5660}],[-16,{"n":5.5,"e":5671}],[-15,{"n":6,"e":5680}],[-14,{"n":5.5,"e":5692}],[-13,{"n":7.5,"e":5706,"g":1}],[-12,{"n":7.5,"e":5710}],[-11,{"n":6,"e":5719}],[-10,{"n":6,"e":5728}],[-9,{"n":5.5,"e":5742,"s":1}],[-8,{"n":5,"e":5756}],[-7,{"n":4.5,"e":5763}],[-6,{"n":6,"e":5775}],[-5,{"n":6,"e":5781}],[4,{"n":3.5,"e":7450}],[3,{"n":5.5,"e":7460}],[1,{"n":5,"e":7492}]],"fo":[[5479,[{"t":"I"}]],[5448,[{"t":"Y"}]],[5542,[{"t":"Y"}]]]}],[4764,{"n":"Perisic","f":"Ivan","fp":"MO","r":15,"c":112,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.85,"Os":19.5,"On":4,"Oa":4.88,"Od":0.85,"pm":4},"p":[[4,{"n":5,"e":7450}],[3,{"n":6,"e":7460}],[2,{"n":4,"e":7465}],[1,{"n":4.5,"e":7492,"s":1}]]}],[4777,{"n":"D'Ambrosio","f":"Danilo","fp":"DL","r":10,"c":112,"s":{"g":1,"s":12.5,"n":3,"a":4.17,"d":1.04,"Sg":1,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":1.04,"Og":5,"Os":111.5,"On":22,"Oa":5.07,"Od":1.07,"pd":16,"pm":6},"p":[[-38,{"n":7,"e":5448,"g":1}],[-37,{"n":6.5,"e":5460,"g":1}],[-36,{"n":5,"e":5471,"s":1}],[-35,{"n":4.5,"e":5479}],[-34,{"n":5,"e":5496,"s":1}],[-33,{"n":5,"e":5503,"s":1}],[-32,{"n":4.5,"e":5512}],[-30,{"n":4,"e":5530}],[-29,{"n":7.5,"e":5542,"g":1}],[-28,{"n":5,"e":5554}],[-22,{"n":4.5,"e":5617,"s":1}],[-16,{"n":5,"e":5671}],[-15,{"n":5,"e":5680,"s":1}],[-14,{"n":4.5,"e":5692}],[-13,{"n":5.5,"e":5706}],[-12,{"n":5,"e":5710,"s":1}],[-7,{"n":4,"e":5763}],[-6,{"n":4.5,"e":5775,"s":1}],[-5,{"n":7,"e":5781,"g":1}],[4,{"n":3,"e":7450}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":4.5,"e":7465,"g":1}]],"fo":[[5512,[{"t":"Y"}]],[5530,[{"t":"Y"}]]],"a":{"m":10,"a":11,"M":13,"n":5}}],[4786,{"n":"Nainggolan","f":"Radja","fp":"MO","r":8,"c":112,"s":{"s":4.5,"n":1,"a":4.5,"Og":6,"Os":147,"On":25,"Oa":5.88,"Od":1.2,"pm":19,"pa":6},"p":[[-32,{"n":4.5,"e":5509}],[-31,{"n":6,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":6,"e":5539}],[-28,{"n":6.5,"e":5549,"g":1}],[-26,{"n":5,"e":5568}],[-23,{"n":6.5,"e":5600}],[-22,{"n":5.5,"e":5610}],[-21,{"n":7,"e":5620,"g":1}],[-20,{"n":7,"e":5630}],[-19,{"n":5,"e":5638}],[-18,{"n":4.5,"e":5652}],[-17,{"n":4,"e":5667}],[-16,{"n":5.5,"e":5670}],[-15,{"n":5,"e":5685}],[-14,{"n":8,"e":5689,"g":1}],[-13,{"n":7,"e":5700,"g":1}],[-12,{"n":8.5,"e":5709,"g":1}],[-11,{"n":7,"e":5718}],[-10,{"n":7,"e":5729}],[-9,{"n":5,"e":5746}],[-8,{"n":7,"e":5749,"g":1}],[-7,{"n":5,"e":5764}],[-6,{"n":5,"e":5768,"s":1}],[2,{"n":4.5,"e":7465,"s":1}]],"fo":[[5509,[{"t":"I"}]]],"a":{"m":20,"a":23,"M":28,"n":5}}],[4814,{"n":"Handanovic","f":"Samir","fp":"G","r":12,"c":112,"s":{"s":19.5,"n":4,"a":4.88,"d":1.03,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.03,"Os":186.5,"On":35,"Oa":5.33,"Od":0.96,"pg":35},"p":[[-38,{"n":6,"e":5448}],[-37,{"n":6,"e":5460}],[-36,{"n":6,"e":5471}],[-35,{"n":6,"e":5479}],[-34,{"n":4,"e":5496}],[-33,{"n":5,"e":5503}],[-32,{"n":4,"e":5512}],[-31,{"n":4,"e":5527}],[-30,{"n":6,"e":5530}],[-29,{"n":6,"e":5542}],[-28,{"n":5,"e":5554}],[-27,{"n":4,"e":5562}],[-26,{"n":4.5,"e":5569}],[-25,{"n":4.5,"e":5583}],[-21,{"n":4.5,"e":5620}],[-20,{"n":5,"e":5634}],[-19,{"n":7.5,"e":5640}],[-18,{"n":6.5,"e":5655}],[-17,{"n":6,"e":5660}],[-16,{"n":6,"e":5671}],[-15,{"n":6,"e":5680}],[-14,{"n":5,"e":5692}],[-13,{"n":6.5,"e":5706}],[-12,{"n":5,"e":5710}],[-11,{"n":5,"e":5719}],[-10,{"n":6.5,"e":5728}],[-9,{"n":5,"e":5742}],[-8,{"n":4,"e":5756}],[-7,{"n":5.5,"e":5763}],[-6,{"n":5,"e":5775}],[-5,{"n":7,"e":5781}],[4,{"n":6,"e":7450}],[3,{"n":5.5,"e":7460}],[2,{"n":4,"e":7465}],[1,{"n":4,"e":7492}]],"fo":[[5448,[{"t":"Y"}]],[5471,[{"t":"Y"}]]],"a":{"m":13,"a":18,"M":22,"n":7}}],[4815,{"n":"Padelli","f":"Daniele","fp":"G","r":7,"c":112,"s":{"Os":13.5,"On":3,"Oa":4.5,"Od":1.32,"pg":3},"p":[[-24,{"n":5,"e":5592}],[-23,{"n":3,"e":5601}],[-22,{"n":5.5,"e":5617}]]}],[6518,{"n":"Stankovic","f":"Filip","fp":"G","r":1,"c":112}],[6980,{"n":"Bakayoko","f":"Axel","fp":"A","r":1,"c":112}],[7425,{"n":"Carboni","f":"Franco Ezequiel","fp":"A","r":1,"c":112}],[7427,{"n":"Vezzoni","f":"Franco Orlando","fp":"MD","r":1,"c":112}],[7428,{"n":"Cortinovis","f":"Fabio","fp":"DC","r":1,"c":112}],[7429,{"n":"Sottini","f":"Edoardo","fp":"DC","r":1,"c":112}],[7431,{"n":"Lorenzo Moretti","f":"","fp":"DC","r":1,"c":112}],[7432,{"n":"Squizzato","f":"Niccolò","fp":"MD","r":1,"c":112}],[7434,{"n":"Satriano","f":"Martín","fp":"A","r":1,"c":112}],[7438,{"n":"Chio","f":"Riccardo Boscolo","fp":"MD","r":1,"c":112}],[7439,{"n":"Bonfanti","f":"Nicholas","fp":"A","r":1,"c":112}],[7440,{"n":"Oristanio","f":"Gaetano Pio","fp":"A","r":1,"c":112}],[7443,{"n":"Persyn","f":"Tibo","fp":"MO","r":1,"c":112}],[121,{"n":"Rabiot","f":"Adrien","fp":"MD","r":15,"c":115,"s":{"s":14,"n":3,"a":4.67,"d":2.02,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":161,"On":30,"Oa":5.37,"Od":0.86,"pm":30},"p":[[3,{"n":null,"e":7462,"d":1}],[2,{"n":2.5,"e":7468}],[-35,{"n":5.5,"e":5487}],[-34,{"n":6.5,"e":5492}],[-33,{"n":4.5,"e":5505,"s":1}],[-24,{"n":6,"e":5591}],[-16,{"n":6,"e":5673}],[-5,{"n":5.5,"e":5778}],[-38,{"n":5.5,"e":5452}],[-36,{"n":6,"e":5472}],[-32,{"n":5,"e":5513}],[-31,{"n":6,"e":5523,"g":1}],[-30,{"n":7,"e":5531}],[-29,{"n":5.5,"e":5541}],[-28,{"n":5,"e":5550}],[-27,{"n":5,"e":5559}],[-25,{"n":5,"e":5585,"s":1}],[-23,{"n":5,"e":5607}],[-22,{"n":6,"e":5611}],[-21,{"n":5,"e":5621,"s":1}],[-20,{"n":5,"e":5632}],[-19,{"n":6.5,"e":5643}],[-18,{"n":6,"e":5652}],[-17,{"n":5,"e":5664}],[-12,{"n":5,"e":5711,"s":1}],[-10,{"n":4,"e":5730,"s":1}],[-9,{"n":5,"e":5743,"s":1}],[-8,{"n":5,"e":5750}],[-6,{"n":5.5,"e":5769}],[4,{"n":5,"e":7501,"s":1}],[1,{"n":6.5,"e":7474}]],"fo":[[5472,[{"t":"Y"}]],[5513,[{"t":"Y"}]],[7468,[{"t":"Y"},{"t":"O"}]]]}],[690,{"n":"Ramsey","f":"Aaron","fp":"MO","r":14,"c":115,"s":{"s":12,"n":2,"a":6,"d":1.41,"Og":2,"Os":131.5,"On":25,"Oa":5.26,"Od":1,"pm":24,"pa":1},"p":[[-11,{"n":5.5,"e":5726,"s":1}],[-38,{"n":5.5,"e":5452,"s":1}],[-35,{"n":3.5,"e":5487}],[-34,{"n":4.5,"e":5492}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":4.5,"e":5513,"s":1}],[-31,{"n":3.5,"e":5523,"s":1}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":5.5,"e":5550,"s":1}],[-27,{"n":4.5,"e":5559,"s":1}],[-26,{"n":8,"e":5569,"g":1}],[-25,{"n":6,"e":5585,"g":1}],[-24,{"n":6,"e":5591}],[-23,{"n":5,"e":5607,"s":1}],[-20,{"n":5,"e":5632}],[-19,{"n":5,"e":5643}],[-18,{"n":7,"e":5652}],[-17,{"n":5,"e":5664,"s":1}],[-14,{"n":5,"e":5693,"s":1}],[-13,{"n":5.5,"e":5698,"s":1}],[-10,{"n":5,"e":5730,"s":1}],[-6,{"n":5.5,"e":5769}],[-5,{"n":5,"e":5778}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":7,"e":7474}]],"fo":[[5487,[{"t":"Y"}]],[5505,[{"t":"Y"}]]],"a":{"m":14,"a":16,"M":20,"n":6}}],[1277,{"n":"Morata","f":"Álvaro","fp":"A","r":18,"c":115,"s":{"g":1,"s":10,"n":2,"a":5,"d":1.41,"Sg":1,"Ss":10,"Sn":2,"Sa":5,"Sd":1.41,"Og":12,"Os":164,"On":33,"Oa":4.97,"Od":1.16,"pa":33},"p":[[-38,{"n":5.5,"e":4309}],[-37,{"n":4,"e":4322,"s":1}],[-36,{"n":3.5,"e":4329}],[-34,{"n":7,"e":4349,"g":2}],[-32,{"n":4,"e":4369}],[-31,{"n":4,"e":4382,"s":1}],[-30,{"n":4,"e":4389}],[-29,{"n":6,"e":4403,"g":1,"s":1}],[-28,{"n":4.5,"e":4408,"s":1}],[-27,{"n":5.5,"e":4419,"g":1}],[-26,{"n":4,"e":4430}],[-25,{"n":5.5,"e":4439}],[-24,{"n":4,"e":4456,"s":1}],[-22,{"n":4.5,"e":4474}],[-21,{"n":4,"e":4479}],[-20,{"n":3.5,"e":4490}],[-19,{"n":4.5,"e":4499}],[-18,{"n":6.5,"e":4514,"g":1}],[-17,{"n":6.5,"e":4520,"g":1}],[-16,{"n":5,"e":4537}],[-14,{"n":4,"e":4549}],[-13,{"n":7.5,"e":4560,"g":1}],[-12,{"n":6,"e":4576,"g":1}],[-10,{"n":6,"e":4588,"g":1}],[-9,{"n":5.5,"e":4600}],[-8,{"n":4.5,"e":4616}],[-6,{"n":2.5,"e":4632,"s":1}],[-35,{"n":6,"e":4340,"g":1}],[-33,{"n":4.5,"e":4359,"s":1}],[-15,{"n":5.5,"e":4540}],[-11,{"n":6,"e":4578,"g":1,"s":1}],[4,{"n":6,"e":7501,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4,"e":7468}]],"fo":[[4382,[{"t":"Y"}]]],"a":{"m":18,"a":38,"M":61,"n":5}}],[1292,{"n":"Danilo","f":"","fp":"DL","r":17,"c":115,"s":{"s":18.5,"n":3,"a":6.17,"d":0.76,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":0.76,"Og":1,"Os":110,"On":22,"Oa":5,"Od":1.01,"pd":22},"p":[[-15,{"n":4.5,"e":5681,"s":1}],[-38,{"n":3.5,"e":5452}],[-36,{"n":5,"e":5472}],[-35,{"n":5,"e":5487}],[-34,{"n":5,"e":5492,"s":1}],[-33,{"n":6,"e":5505,"g":1}],[-32,{"n":4,"e":5513}],[-31,{"n":3.5,"e":5523}],[-30,{"n":7,"e":5531}],[-29,{"n":5,"e":5541}],[-27,{"n":3.5,"e":5559,"s":1}],[-25,{"n":6,"e":5585}],[-24,{"n":6,"e":5591}],[-20,{"n":5,"e":5632,"s":1}],[-19,{"n":4.5,"e":5643,"s":1}],[-17,{"n":4.5,"e":5664}],[-16,{"n":4.5,"e":5673}],[-9,{"n":4.5,"e":5743}],[-5,{"n":4.5,"e":5778}],[4,{"n":5.5,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7468}],[1,{"n":6,"e":7474}]],"fo":[[5472,[{"t":"I"}]],[5492,[{"t":"Y"}]],[5559,[{"t":"Y"},{"t":"O"}]]]}],[1555,{"n":"Cristiano Ronaldo","f":"","fp":"A","r":46,"c":115,"s":{"g":3,"s":14.5,"n":2,"a":7.25,"d":0.35,"Og":32,"Os":206.5,"On":31,"Oa":6.66,"Od":1.02,"pa":31},"p":[[-37,{"n":5.5,"e":5458}],[-36,{"n":7,"e":5472,"g":1}],[-35,{"n":5,"e":5487}],[-34,{"n":7.5,"e":5492,"g":2}],[-33,{"n":6,"e":5505}],[-32,{"n":6.5,"e":5513,"g":2}],[-31,{"n":6,"e":5523,"g":1}],[-30,{"n":8,"e":5531,"g":1}],[-29,{"n":7,"e":5541,"g":1}],[-28,{"n":7,"e":5550,"g":1}],[-27,{"n":6,"e":5559,"g":1}],[-26,{"n":7,"e":5569}],[-25,{"n":7,"e":5585,"g":1}],[-23,{"n":6.5,"e":5607,"g":1}],[-22,{"n":7,"e":5611,"g":2}],[-21,{"n":6,"e":5621,"g":1}],[-20,{"n":8,"e":5632,"g":2}],[-19,{"n":6,"e":5643,"g":1}],[-18,{"n":9,"e":5652,"g":3}],[-17,{"n":6.5,"e":5664,"g":1}],[-16,{"n":8,"e":5673,"g":2}],[-15,{"n":6.5,"e":5681,"g":1}],[-14,{"n":6,"e":5693,"g":1}],[-12,{"n":4,"e":5711}],[-11,{"n":5,"e":5726}],[-10,{"n":6.5,"e":5730,"g":1}],[-8,{"n":7.5,"e":5750,"g":1}],[-7,{"n":6.5,"e":5763}],[-6,{"n":7.5,"e":5769,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7468,"g":2}],[1,{"n":7.5,"e":7474,"g":1}]],"fo":[[5505,[{"t":"Y"}]]],"a":{"m":49,"a":96,"M":131,"n":11}}],[2436,{"n":"Arthur","f":"","fp":"MD","r":9,"c":115,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Og":2,"Os":118,"On":21,"Oa":5.62,"Od":1.07,"pm":21},"p":[[-22,{"n":4.5,"e":4469,"s":1}],[-13,{"n":6,"e":4561}],[-7,{"n":7,"e":4623}],[-6,{"n":7.5,"e":4628,"g":1}],[-32,{"n":4.5,"e":4370,"s":1}],[-31,{"n":4.5,"e":4379}],[-30,{"n":6,"e":4396,"s":1}],[-29,{"n":5.5,"e":4399}],[-28,{"n":5.5,"e":4413,"s":1}],[-26,{"n":4.5,"e":4434}],[-25,{"n":8,"e":4440,"g":1}],[-24,{"n":5.5,"e":4449}],[-23,{"n":5.5,"e":4465,"s":1}],[-21,{"n":4,"e":4487}],[-20,{"n":5,"e":4489,"s":1}],[-15,{"n":6,"e":4540}],[-12,{"n":4.5,"e":4572}],[-9,{"n":5.5,"e":4601}],[-8,{"n":7,"e":4608}],[4,{"n":6,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7468,"s":1}]]}],[2661,{"n":"Buffon","f":"Gianluigi","fp":"G","r":8,"c":115,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Os":46.5,"On":9,"Oa":5.17,"Od":0.97,"pg":9},"p":[[-37,{"n":4.5,"e":5458}],[-30,{"n":6,"e":5531}],[-17,{"n":5,"e":5664}],[-16,{"n":6,"e":5673}],[-14,{"n":3,"e":5693}],[-10,{"n":5.5,"e":5730}],[-8,{"n":5,"e":5750}],[-6,{"n":5.5,"e":5769}],[4,{"n":6,"e":7501}],[3,{"n":null,"e":7462,"d":1}]]}],[4219,{"n":"Kulusevski","f":"Dejan","fp":"MO","r":22,"c":115,"s":{"g":1,"s":18,"n":3,"a":6,"d":0.87,"Sg":1,"Ss":18,"Sn":3,"Sa":6,"Sd":0.87,"Og":11,"Os":202,"On":36,"Oa":5.61,"Od":1.35,"pm":11,"pa":25},"p":[[-38,{"n":5.5,"e":5453}],[-37,{"n":6,"e":5462,"g":1}],[-36,{"n":7.5,"e":5469,"g":1}],[-35,{"n":6.5,"e":5482,"g":1,"s":1}],[-34,{"n":5,"e":5495}],[-33,{"n":5,"e":5501}],[-32,{"n":6,"e":5516,"s":1}],[-31,{"n":4,"e":5524}],[-30,{"n":4,"e":5534}],[-29,{"n":7.5,"e":5547,"g":1}],[-28,{"n":5.5,"e":5554}],[-27,{"n":7.5,"e":5561,"g":1}],[-26,{"n":4.5,"e":5574}],[-25,{"n":4.5,"e":5586}],[-23,{"n":5,"e":5603,"s":1}],[-21,{"n":7.5,"e":5622,"g":1}],[-20,{"n":5,"e":5632}],[-19,{"n":5.5,"e":5642}],[-18,{"n":2.5,"e":5648}],[-17,{"n":6,"e":5663}],[-16,{"n":7.5,"e":5675,"g":1}],[-15,{"n":4,"e":5684}],[-14,{"n":5,"e":5696}],[-13,{"n":7,"e":5699,"g":1}],[-12,{"n":6,"e":5714}],[-11,{"n":5,"e":5720}],[-10,{"n":5.5,"e":5734}],[-9,{"n":5.5,"e":5742}],[-8,{"n":8.5,"e":5754,"g":1}],[-7,{"n":3,"e":5765}],[-6,{"n":7,"e":5774,"g":1}],[-5,{"n":5,"e":5783}],[-4,{"n":4.5,"e":5792}],[4,{"n":5.5,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7468}],[1,{"n":7,"e":7474,"g":1}]],"fo":[[5534,[{"t":"Y"}]],[7501,[{"t":"Y"}]]],"a":{"m":21,"a":30,"M":41,"n":7}}],[4231,{"n":"Demiral","f":"Merih","fp":"DC","r":8,"c":115,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Os":41.5,"On":7,"Oa":5.93,"Od":0.89,"pd":7},"p":[[-38,{"n":5,"e":5452,"s":1}],[-19,{"n":6.5,"e":5643,"g":1}],[-18,{"n":6,"e":5652}],[-17,{"n":5.5,"e":5664}],[-16,{"n":7.5,"e":5673}],[4,{"n":6,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":5,"e":7474,"s":1}]]}],[4233,{"n":"Portanova","f":"Manolo","fp":"MO","r":1,"c":115,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pa":1},"p":[[4,{"n":5,"e":7501}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7501,[{"t":"Y"}]]]}],[4296,{"n":"Peeters","f":"Daouda","fp":"MD","r":1,"c":115,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-37,{"n":5,"e":5458,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[4330,{"n":"Chiesa","f":"Federico","fp":"A","r":22,"c":115,"s":{"g":1,"s":20.5,"n":4,"a":5.13,"d":0.63,"Sg":1,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.63,"Og":11,"Os":188.5,"On":35,"Oa":5.39,"Od":1.3,"pm":8,"pa":27},"p":[[-38,{"n":7,"e":5456}],[-37,{"n":9,"e":5459,"g":3}],[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":5,"e":5490}],[-33,{"n":8,"e":5500,"g":1}],[-32,{"n":6,"e":5510,"s":1}],[-31,{"n":4,"e":5520}],[-30,{"n":5,"e":5534,"s":1}],[-29,{"n":4,"e":5540}],[-27,{"n":4,"e":5560}],[-26,{"n":4.5,"e":5577}],[-25,{"n":5.5,"e":5581}],[-24,{"n":7.5,"e":5595,"g":2}],[-23,{"n":6,"e":5599,"g":1}],[-22,{"n":3.5,"e":5611}],[-21,{"n":5.5,"e":5619}],[-20,{"n":6.5,"e":5636,"g":1}],[-19,{"n":3.5,"e":5639}],[-18,{"n":5.5,"e":5649}],[-16,{"n":4,"e":5671}],[-15,{"n":5,"e":5686}],[-12,{"n":3.5,"e":5709}],[-11,{"n":4.5,"e":5720}],[-10,{"n":5,"e":5736}],[-9,{"n":6,"e":5740,"g":1}],[-8,{"n":5,"e":5748}],[-7,{"n":5,"e":5761}],[-6,{"n":7,"e":5772}],[-5,{"n":7,"e":5779,"g":1}],[-4,{"n":6,"e":5788}],[4,{"n":5,"e":7501}],[3,{"n":4.5,"e":7456}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7465,"g":1}],[1,{"n":6,"e":7470}]],"fo":[[7501,[{"t":"R"}]],[5456,[{"t":"Y"}]],[5520,[{"t":"Y"}]],[5560,[{"t":"Y"}]]],"a":{"m":27,"a":35,"M":44,"n":5}}],[4381,{"n":"Coccolo","f":"Luca","fp":"DC","r":1,"c":115,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[4395,{"n":"Bentancur","f":"Rodrigo","fp":"MD","r":24,"c":115,"s":{"s":17.5,"n":3,"a":5.83,"d":1.04,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":1.04,"Os":179,"On":31,"Oa":5.77,"Od":0.74,"pm":31},"p":[[-37,{"n":5.5,"e":5458}],[-36,{"n":5,"e":5472,"s":1}],[-35,{"n":4.5,"e":5487}],[-34,{"n":5.5,"e":5492}],[-33,{"n":6,"e":5505}],[-32,{"n":5.5,"e":5513}],[-31,{"n":6,"e":5523}],[-30,{"n":6,"e":5531}],[-29,{"n":6,"e":5541}],[-28,{"n":6,"e":5550}],[-27,{"n":6,"e":5559}],[-26,{"n":6.5,"e":5569}],[-25,{"n":6,"e":5585}],[-24,{"n":6.5,"e":5591}],[-23,{"n":6,"e":5607}],[-22,{"n":7,"e":5611}],[-21,{"n":7,"e":5621}],[-16,{"n":6,"e":5673}],[-15,{"n":6,"e":5681}],[-14,{"n":6,"e":5693}],[-13,{"n":4,"e":5698}],[-12,{"n":5.5,"e":5711}],[-11,{"n":5,"e":5726}],[-10,{"n":7,"e":5730}],[-9,{"n":5,"e":5743}],[-8,{"n":5,"e":5750,"s":1}],[-7,{"n":6,"e":5763,"s":1}],[-6,{"n":5,"e":5769,"s":1}],[4,{"n":7,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7468,"s":1}],[1,{"n":5,"e":7474,"s":1}]],"fo":[[5550,[{"t":"Y"}]],[5559,[{"t":"Y"}]]]}],[4537,{"n":"Bernardeschi","f":"Federico","fp":"A","r":8,"c":115,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Og":1,"Os":138.5,"On":28,"Oa":4.95,"Od":0.66,"pm":17,"pa":11},"p":[[-38,{"n":4,"e":5452}],[-37,{"n":5,"e":5458}],[-36,{"n":7,"e":5472,"g":1,"s":1}],[-35,{"n":4,"e":5487}],[-33,{"n":5.5,"e":5505}],[-32,{"n":4,"e":5513}],[-31,{"n":5,"e":5523}],[-30,{"n":4,"e":5531}],[-29,{"n":5,"e":5541}],[-28,{"n":5.5,"e":5550}],[-27,{"n":6,"e":5559}],[-26,{"n":5,"e":5569,"s":1}],[-25,{"n":5,"e":5585,"s":1}],[-22,{"n":5,"e":5611,"s":1}],[-21,{"n":5,"e":5621,"s":1}],[-16,{"n":5,"e":5673,"s":1}],[-15,{"n":5,"e":5681}],[-14,{"n":4.5,"e":5693}],[-13,{"n":5,"e":5698}],[-12,{"n":5,"e":5711}],[-11,{"n":4.5,"e":5726}],[-10,{"n":4.5,"e":5730}],[-9,{"n":5.5,"e":5743}],[-8,{"n":5.5,"e":5750}],[-7,{"n":5,"e":5763}],[-6,{"n":5,"e":5769,"s":1}],[-5,{"n":5,"e":5778,"s":1}],[4,{"n":4,"e":7501,"s":1}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5472,[{"t":"Y"}]],[5505,[{"t":"Y"}]],[5513,[{"t":"Y"}]]]}],[4569,{"n":"Dybala","f":"Paulo","fp":"A","r":27,"c":115,"s":{"Og":11,"Os":187.5,"On":31,"Oa":6.05,"Od":1.01,"pm":3,"pa":28},"p":[[-36,{"n":4.5,"e":5472}],[-35,{"n":5,"e":5487}],[-34,{"n":7,"e":5492}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":5,"e":5513}],[-30,{"n":7,"e":5531,"g":1}],[-29,{"n":7.5,"e":5541,"g":1}],[-28,{"n":7,"e":5550,"g":1}],[-27,{"n":6,"e":5559,"g":1}],[-26,{"n":7,"e":5569,"g":1,"s":1}],[-25,{"n":6,"e":5585}],[-24,{"n":8,"e":5591,"g":1}],[-23,{"n":4,"e":5607,"s":1}],[-22,{"n":6,"e":5611,"s":1}],[-21,{"n":5.5,"e":5621}],[-20,{"n":6,"e":5632}],[-19,{"n":6,"e":5643}],[-18,{"n":6.5,"e":5652}],[-17,{"n":7,"e":5664,"g":1}],[-16,{"n":6,"e":5673}],[-15,{"n":4.5,"e":5681}],[-14,{"n":6,"e":5693,"s":1}],[-13,{"n":7,"e":5698,"g":1}],[-12,{"n":7,"e":5711,"g":1,"s":1}],[-11,{"n":5,"e":5726}],[-10,{"n":6,"e":5730}],[-9,{"n":5.5,"e":5743,"g":1}],[-8,{"n":4.5,"e":5750,"s":1}],[-7,{"n":7,"e":5763,"g":1}],[-6,{"n":7,"e":5769}],[-5,{"n":6,"e":5778}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5472,[{"t":"I"}]],[5531,[{"t":"Y"}]]]}],[4692,{"n":"Cuadrado","f":"Juan","fp":"DL","r":21,"c":115,"s":{"s":16,"n":3,"a":5.33,"d":0.29,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.29,"Og":2,"Os":181.5,"On":33,"Oa":5.5,"Od":1,"pd":25,"pm":6,"pa":2},"p":[[-37,{"n":4.5,"e":5458}],[-36,{"n":5,"e":5472}],[-35,{"n":4.5,"e":5487,"s":1}],[-34,{"n":5.5,"e":5492}],[-32,{"n":4,"e":5513}],[-31,{"n":4,"e":5523}],[-30,{"n":8,"e":5531,"g":1}],[-29,{"n":7,"e":5541}],[-28,{"n":6,"e":5550}],[-27,{"n":6.5,"e":5559}],[-26,{"n":6.5,"e":5569}],[-25,{"n":7,"e":5585}],[-24,{"n":7,"e":5591,"g":1}],[-23,{"n":4,"e":5607}],[-22,{"n":5,"e":5611}],[-21,{"n":5,"e":5621}],[-20,{"n":4.5,"e":5632}],[-19,{"n":6,"e":5643}],[-18,{"n":6,"e":5652}],[-15,{"n":4,"e":5681}],[-14,{"n":5,"e":5693}],[-13,{"n":6.5,"e":5698}],[-12,{"n":5,"e":5711}],[-11,{"n":5,"e":5726}],[-10,{"n":5,"e":5730}],[-9,{"n":5.5,"e":5743,"s":1}],[-8,{"n":5.5,"e":5750}],[-7,{"n":6,"e":5763}],[-6,{"n":6.5,"e":5769}],[-5,{"n":5.5,"e":5778,"s":1}],[4,{"n":5.5,"e":7501,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":5.5,"e":7474}]],"fo":[[5472,[{"t":"Y"}]],[5487,[{"t":"Y"}]],[5513,[{"t":"Y"}]]]}],[4710,{"n":"Szczesny","f":"Wojciech","fp":"G","r":21,"c":115,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Os":158.5,"On":28,"Oa":5.66,"Od":0.91,"pg":28},"p":[[-38,{"n":5,"e":5452}],[-36,{"n":7,"e":5472}],[-35,{"n":4.5,"e":5487}],[-34,{"n":5,"e":5492}],[-33,{"n":6,"e":5505}],[-32,{"n":4,"e":5513}],[-31,{"n":5,"e":5523}],[-29,{"n":4.5,"e":5541}],[-28,{"n":6,"e":5550}],[-27,{"n":5.5,"e":5559}],[-26,{"n":6,"e":5569}],[-25,{"n":6,"e":5585}],[-24,{"n":6,"e":5591}],[-23,{"n":5.5,"e":5607}],[-22,{"n":6,"e":5611}],[-21,{"n":4.5,"e":5621}],[-20,{"n":6,"e":5632}],[-19,{"n":6,"e":5643}],[-18,{"n":5.5,"e":5652}],[-15,{"n":6,"e":5681}],[-13,{"n":7,"e":5698}],[-12,{"n":8,"e":5711}],[-11,{"n":6.5,"e":5726}],[-9,{"n":6,"e":5743}],[-7,{"n":6,"e":5763}],[-5,{"n":4,"e":5778}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":6,"e":7474}]]}],[4712,{"n":"Pinsoglio","f":"Carlo","fp":"G","r":3,"c":115,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-38,{"n":5,"e":5452,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[4730,{"n":"Alex Sandro","f":"","fp":"DL","r":10,"c":115,"s":{"Og":1,"Os":129.5,"On":25,"Oa":5.18,"Od":1.05,"pd":25},"p":[[-37,{"n":4,"e":5458}],[-36,{"n":6,"e":5472}],[-35,{"n":3.5,"e":5487}],[-34,{"n":5,"e":5492}],[-33,{"n":7,"e":5505,"g":1}],[-32,{"n":5.5,"e":5513,"s":1}],[-31,{"n":4.5,"e":5523,"s":1}],[-26,{"n":6.5,"e":5569}],[-25,{"n":6,"e":5585}],[-24,{"n":7,"e":5591}],[-23,{"n":4.5,"e":5607}],[-22,{"n":6.5,"e":5611}],[-21,{"n":3.5,"e":5621}],[-20,{"n":5,"e":5632}],[-19,{"n":5.5,"e":5643}],[-18,{"n":6,"e":5652}],[-17,{"n":6,"e":5664}],[-15,{"n":3.5,"e":5681}],[-14,{"n":4.5,"e":5693}],[-12,{"n":5.5,"e":5711}],[-10,{"n":4,"e":5730}],[-9,{"n":5,"e":5743}],[-8,{"n":5,"e":5750}],[-7,{"n":5.5,"e":5763}],[-5,{"n":4.5,"e":5778}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5492,[{"t":"Y"}]]]}],[4778,{"n":"Khedira","f":"Sami","fp":"MD","r":7,"c":115,"s":{"Os":40.5,"On":8,"Oa":5.06,"Od":0.5,"pm":8},"p":[[-13,{"n":4.5,"e":5698}],[-11,{"n":5,"e":5726,"s":1}],[-10,{"n":4.5,"e":5730}],[-9,{"n":5,"e":5743,"s":1}],[-8,{"n":5,"e":5750}],[-7,{"n":6,"e":5763}],[-6,{"n":5.5,"e":5769}],[-5,{"n":5,"e":5778}],[3,{"n":null,"e":7462,"d":1}]]}],[4796,{"n":"Bonucci","f":"Leonardo","fp":"DC","r":24,"c":115,"s":{"g":1,"s":16.5,"n":3,"a":5.5,"d":1.8,"Sg":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1.8,"Og":4,"Os":178.5,"On":34,"Oa":5.25,"Od":1.18,"pd":34},"p":[[-38,{"n":4,"e":5452}],[-37,{"n":3,"e":5458}],[-36,{"n":5.5,"e":5472}],[-34,{"n":4.5,"e":5492}],[-32,{"n":4.5,"e":5513}],[-31,{"n":2.5,"e":5523}],[-30,{"n":5.5,"e":5531}],[-29,{"n":5,"e":5541}],[-28,{"n":6,"e":5550}],[-27,{"n":6,"e":5559}],[-26,{"n":6.5,"e":5569}],[-24,{"n":5.5,"e":5591}],[-23,{"n":4,"e":5607}],[-22,{"n":6,"e":5611}],[-21,{"n":4,"e":5621}],[-20,{"n":5,"e":5632}],[-19,{"n":5.5,"e":5643}],[-18,{"n":5.5,"e":5652}],[-17,{"n":5.5,"e":5664}],[-16,{"n":7.5,"e":5673,"g":1}],[-15,{"n":3,"e":5681}],[-14,{"n":6,"e":5693,"g":1}],[-13,{"n":6,"e":5698}],[-12,{"n":6,"e":5711}],[-11,{"n":6.5,"e":5726}],[-10,{"n":7,"e":5730,"g":1}],[-9,{"n":5.5,"e":5743}],[-8,{"n":5,"e":5750}],[-7,{"n":5.5,"e":5763}],[-6,{"n":5,"e":5769}],[-5,{"n":5,"e":5778}],[4,{"n":4,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":7.5,"e":7474,"g":1}]],"fo":[[5492,[{"t":"Y"}]],[5505,[{"t":"Y"}]],[5523,[{"t":"Y"}]],[5531,[{"t":"Y"}]],[5541,[{"t":"Y"}]],[7501,[{"t":"Y"}]]]}],[4817,{"n":"Chiellini","f":"Giorgio","fp":"DC","r":10,"c":115,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Os":25.5,"On":5,"Oa":5.1,"Od":0.55,"pd":5},"p":[[-33,{"n":5,"e":5505}],[-25,{"n":4.5,"e":5585}],[-24,{"n":5,"e":5591,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":6,"e":7474}]],"fo":[[5505,[{"t":"I"}]]],"a":{"m":10,"a":14,"M":17,"n":9}}],[5323,{"n":"de Ligt","f":"Matthijs","fp":"DC","r":5,"c":115,"s":{"Og":4,"Os":147.5,"On":27,"Oa":5.46,"Od":1.05,"pd":27},"p":[[-36,{"n":5.5,"e":5472}],[-35,{"n":6,"e":5487,"g":1}],[-34,{"n":6,"e":5492}],[-33,{"n":4,"e":5505}],[-32,{"n":5,"e":5513}],[-30,{"n":5.5,"e":5531}],[-29,{"n":5.5,"e":5541}],[-28,{"n":7.5,"e":5550,"g":1}],[-27,{"n":6.5,"e":5559}],[-26,{"n":6,"e":5569}],[-25,{"n":5,"e":5585,"s":1}],[-23,{"n":4,"e":5607}],[-22,{"n":7.5,"e":5611,"g":1}],[-21,{"n":4,"e":5621}],[-20,{"n":6,"e":5632}],[-19,{"n":6,"e":5643,"s":1}],[-16,{"n":5,"e":5673,"s":1}],[-15,{"n":4,"e":5681}],[-14,{"n":3.5,"e":5693}],[-13,{"n":6,"e":5698}],[-12,{"n":6,"e":5711}],[-11,{"n":7,"e":5726,"g":1}],[-9,{"n":5,"e":5743}],[-8,{"n":5,"e":5750}],[-7,{"n":4.5,"e":5763}],[-6,{"n":6,"e":5769}],[-5,{"n":5.5,"e":5778}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5472,[{"t":"I"}]],[5531,[{"t":"Y"}]]],"a":{"m":7,"a":8,"M":9,"n":5}}],[6219,{"n":"Wesley","f":"","fp":"DL","r":1,"c":115,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[6624,{"n":"Vrioni","f":"Giacomo","fp":"A","r":1,"c":115,"s":{"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[-38,{"n":4.5,"e":5452,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[6968,{"n":"Frabotta","f":"Gianluca","fp":"DL","r":7,"c":115,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.29,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":1,"pm":2},"p":[[4,{"n":5,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4.5,"e":7468,"s":1}],[1,{"n":5,"e":7474}]],"fo":[[7468,[{"t":"Y"}]],[7474,[{"t":"Y"}]]],"a":{"m":2,"a":7,"M":8,"n":6}}],[7154,{"n":"Felix Correia","f":"","fp":"A","r":5,"c":115,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[7161,{"n":"McKennie","f":"Weston","fp":"MD","r":9,"c":115,"s":{"s":11,"n":2,"a":5.5,"d":1.41,"Os":11,"On":2,"Oa":5.5,"Od":1.41,"pm":2},"p":[[3,{"n":null,"e":7462,"d":1}],[2,{"n":4.5,"e":7468}],[1,{"n":6.5,"e":7474}]]}],[7444,{"n":"Rafia","f":"Hamza","fp":"MO","r":1,"c":115}],[7446,{"n":"Gori","f":"Stefano","fp":"G","r":1,"c":115}],[949,{"n":"Lucas Leiva","f":"","fp":"MD","r":11,"c":121,"s":{"s":17.5,"n":4,"a":4.38,"d":1.11,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":1.11,"Os":142,"On":27,"Oa":5.26,"Od":1.01,"pm":27},"p":[[4,{"n":3,"e":7451}],[-32,{"n":4,"e":5514,"s":1}],[-14,{"n":6,"e":5694}],[-31,{"n":3.5,"e":5522}],[-30,{"n":4.5,"e":5532}],[-26,{"n":7,"e":5570}],[-25,{"n":5.5,"e":5582}],[-24,{"n":5,"e":5592}],[-23,{"n":5,"e":5603}],[-22,{"n":6,"e":5612}],[-21,{"n":5.5,"e":5623}],[-20,{"n":7,"e":5633}],[-19,{"n":5.5,"e":5641}],[-17,{"n":5,"e":5661}],[-16,{"n":5,"e":5670}],[-15,{"n":6,"e":5681}],[-13,{"n":6,"e":5705}],[-12,{"n":5.5,"e":5712}],[-11,{"n":6,"e":5723}],[-9,{"n":5.5,"e":5740}],[-7,{"n":3.5,"e":5759}],[-6,{"n":6.5,"e":5770}],[-5,{"n":5,"e":5781,"s":1}],[-4,{"n":6,"e":5792}],[3,{"n":5,"e":7460}],[2,{"n":5.5,"e":7464}],[1,{"n":4,"e":7476}]],"fo":[[5514,[{"t":"Y"}]],[7464,[{"t":"Y"}]],[7476,[{"t":"Y"}]]]}],[1302,{"n":"Hoedt","f":"Wesley","fp":"DC","r":6,"c":121,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[4,{"n":4.5,"e":7451}]]}],[1355,{"n":"Andreas Pereira","f":"","fp":"MO","r":7,"c":121,"s":{"Og":1,"Os":99,"On":20,"Oa":4.95,"Od":0.79,"pm":18,"pa":2},"p":[[-32,{"n":5,"e":3991,"s":1}],[-31,{"n":4.5,"e":4002,"s":1}],[-26,{"n":5,"e":4051,"s":1}],[-25,{"n":4,"e":4063}],[-24,{"n":3.5,"e":4074}],[-23,{"n":4.5,"e":4081}],[-22,{"n":6,"e":4094}],[-21,{"n":5,"e":4098,"s":1}],[-19,{"n":6,"e":4124}],[-14,{"n":4,"e":4175}],[-13,{"n":4,"e":4185}],[-12,{"n":6.5,"e":4197,"g":1}],[-20,{"n":6,"e":4110}],[-16,{"n":5.5,"e":4152,"s":1}],[-15,{"n":4.5,"e":4163,"s":1}],[-11,{"n":4.5,"e":4200}],[-10,{"n":5.5,"e":4214}],[-9,{"n":5,"e":4224}],[-8,{"n":5,"e":4237}],[-7,{"n":5,"e":4247}]]}],[1660,{"n":"Durmisi","f":"Riza","fp":"DL","r":5,"c":121,"s":{"Os":19,"On":4,"Oa":4.75,"Od":0.5,"pd":2,"pm":2},"p":[[-23,{"n":5,"e":3701,"s":1}],[-28,{"n":4,"e":3653}],[-27,{"n":5,"e":3659}],[-26,{"n":5,"e":3673,"s":1}]]}],[1793,{"n":"Correa","f":"Joaquín","fp":"A","r":13,"c":121,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.76,"Og":8,"Os":165.5,"On":30,"Oa":5.52,"Od":1.19,"pm":8,"pa":22},"p":[[-37,{"n":7.5,"e":5461,"g":1}],[-18,{"n":4.5,"e":5650}],[-38,{"n":5,"e":5455}],[-36,{"n":7,"e":5477,"g":1}],[-35,{"n":5,"e":5480,"s":1}],[-30,{"n":4,"e":5532}],[-29,{"n":5,"e":5546,"s":1}],[-28,{"n":5,"e":5551,"s":1}],[-27,{"n":4.5,"e":5558}],[-26,{"n":6.5,"e":5570,"g":1}],[-25,{"n":5,"e":5582,"s":1}],[-24,{"n":4.5,"e":5592,"s":1}],[-23,{"n":5,"e":5603,"s":1}],[-21,{"n":5,"e":5623}],[-16,{"n":6,"e":5670}],[-15,{"n":6,"e":5681}],[-14,{"n":7.5,"e":5694}],[-13,{"n":6,"e":5705}],[-12,{"n":8,"e":5712,"g":2}],[-11,{"n":6.5,"e":5723,"g":1}],[-10,{"n":5,"e":5731,"s":1}],[-9,{"n":6.5,"e":5740,"g":1}],[-8,{"n":6.5,"e":5751,"g":1}],[-7,{"n":3.5,"e":5759}],[-6,{"n":4.5,"e":5770}],[-5,{"n":6,"e":5781}],[-4,{"n":7,"e":5792}],[4,{"n":3.5,"e":7451}],[3,{"n":4.5,"e":7460}],[2,{"n":5,"e":7464}]]}],[1847,{"n":"Escalante","f":"Gonzalo","fp":"MD","r":9,"c":121,"s":{"s":15,"n":3,"a":5,"Os":111,"On":22,"Oa":5.05,"Od":0.96,"pm":22},"p":[[-31,{"n":6,"e":4380}],[-30,{"n":5,"e":4392}],[-29,{"n":4.5,"e":4400}],[-24,{"n":4,"e":4450}],[-27,{"n":4.5,"e":4421,"s":1}],[-26,{"n":5,"e":4429,"s":1}],[-18,{"n":7.5,"e":4509}],[-17,{"n":5,"e":4519}],[-16,{"n":5,"e":4529}],[-15,{"n":3.5,"e":4545}],[-13,{"n":3.5,"e":4562}],[-12,{"n":5,"e":4571}],[-11,{"n":6.5,"e":4581}],[-10,{"n":5.5,"e":4595}],[-8,{"n":5.5,"e":4613}],[-7,{"n":6,"e":4621}],[-6,{"n":5.5,"e":4630,"s":1}],[-25,{"n":3.5,"e":4440}],[-14,{"n":5,"e":4548}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":5,"e":7464,"s":1}],[1,{"n":5,"e":7476,"s":1}]],"fo":[[4380,[{"t":"Y"}]],[4400,[{"t":"Y"}]]]}],[4146,{"n":"Cerbara","f":"Alessandro","fp":"MO","r":1,"c":121}],[4175,{"n":"Alia","f":"Marco","fp":"G","r":1,"c":121}],[4323,{"n":"Armini","f":"Nicolò","fp":"DC","r":1,"c":121,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-36,{"n":5,"e":5477,"s":1}]]}],[4365,{"n":"Luiz Felipe","f":"","fp":"DC","r":6,"c":121,"s":{"Og":1,"Os":124.5,"On":24,"Oa":5.19,"Od":1.06,"pd":24},"p":[[-33,{"n":5,"e":5507}],[-38,{"n":3.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":5.5,"e":5477}],[-35,{"n":5.5,"e":5480}],[-34,{"n":3.5,"e":5492}],[-31,{"n":6,"e":5522,"s":1}],[-26,{"n":6,"e":5570}],[-24,{"n":5,"e":5592}],[-23,{"n":5.5,"e":5603}],[-21,{"n":4.5,"e":5623}],[-19,{"n":6,"e":5641}],[-18,{"n":5,"e":5650}],[-16,{"n":4.5,"e":5670}],[-15,{"n":7,"e":5681,"g":1}],[-14,{"n":6,"e":5694}],[-13,{"n":4,"e":5705}],[-12,{"n":5.5,"e":5712}],[-10,{"n":5,"e":5731,"s":1}],[-8,{"n":3.5,"e":5751}],[-7,{"n":4.5,"e":5759}],[-6,{"n":7.5,"e":5770}],[-5,{"n":4,"e":5781}],[-4,{"n":6,"e":5792}]],"fo":[[5507,[{"t":"Y"}]]]}],[4434,{"n":"Fares","f":"Mohamed","fp":"MO","r":8,"c":121,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":42,"On":9,"Oa":4.67,"Od":0.71,"pd":2,"pm":7},"p":[[-38,{"n":4.5,"e":5456}],[-37,{"n":3,"e":5467}],[-36,{"n":4.5,"e":5476}],[-29,{"n":5,"e":5545,"s":1}],[-28,{"n":5,"e":5553}],[-27,{"n":5,"e":5565,"s":1}],[-26,{"n":5,"e":5574}],[-25,{"n":4.5,"e":5585,"s":1}],[4,{"n":5.5,"e":7451,"s":1}]],"fo":[[5545,[{"t":"I"}]],[5456,[{"t":"Y"}]],[5553,[{"t":"Y"}]]]}],[4444,{"n":"Milinkovic-Savic","f":"Sergej","fp":"MO","r":28,"c":121,"s":{"g":1,"s":18.5,"n":4,"a":4.63,"d":1.44,"Sg":1,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.44,"Og":8,"Os":202,"On":38,"Oa":5.32,"Od":1.2,"pm":38},"p":[[-38,{"n":4,"e":5455}],[-37,{"n":6.5,"e":5461}],[-36,{"n":8,"e":5477,"g":1}],[-35,{"n":6,"e":5480,"g":1}],[-34,{"n":5,"e":5492}],[-33,{"n":5,"e":5507}],[-32,{"n":3.5,"e":5514}],[-31,{"n":6,"e":5522,"s":1}],[-30,{"n":4,"e":5532}],[-29,{"n":6,"e":5546}],[-28,{"n":4.5,"e":5551}],[-27,{"n":6,"e":5558,"g":1}],[-26,{"n":5,"e":5570}],[-25,{"n":4.5,"e":5582}],[-24,{"n":6,"e":5592,"g":1}],[-22,{"n":5.5,"e":5612}],[-21,{"n":3.5,"e":5623}],[-20,{"n":5.5,"e":5633}],[-19,{"n":5.5,"e":5641}],[-18,{"n":4,"e":5650}],[-17,{"n":5.5,"e":5661}],[-16,{"n":5,"e":5670}],[-15,{"n":6.5,"e":5681,"g":1}],[-14,{"n":6,"e":5694}],[-13,{"n":5,"e":5705}],[-12,{"n":6,"e":5712,"g":1}],[-11,{"n":4,"e":5723}],[-10,{"n":7,"e":5731}],[-9,{"n":5,"e":5740}],[-8,{"n":5,"e":5751}],[-7,{"n":4.5,"e":5759}],[-6,{"n":8,"e":5770,"g":1}],[-5,{"n":4.5,"e":5781}],[-4,{"n":7.5,"e":5792}],[4,{"n":3.5,"e":7451}],[3,{"n":6.5,"e":7460,"g":1}],[2,{"n":5,"e":7464}],[1,{"n":3.5,"e":7476}]],"fo":[[5455,[{"t":"Y"}]],[5551,[{"t":"Y"}]],[5558,[{"t":"Y"}]]]}],[4468,{"n":"Anderson","f":"Djavan","fp":"DL","r":5,"c":121,"s":{"s":8,"n":2,"a":4,"d":0.71,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":37.5,"On":8,"Oa":4.69,"Od":0.7,"pd":5,"pm":3},"p":[[-36,{"n":5.5,"e":5477}],[-34,{"n":4,"e":5492}],[-33,{"n":5,"e":5507,"s":1}],[-30,{"n":4.5,"e":5532,"s":1}],[-29,{"n":5.5,"e":5546,"s":1}],[-28,{"n":5,"e":5551,"s":1}],[4,{"n":3.5,"e":7451}],[1,{"n":4.5,"e":7476,"s":1}]],"fo":[[5492,[{"t":"Y"}]]]}],[4473,{"n":"Marusic","f":"Adam","fp":"DL","r":10,"c":121,"s":{"s":20,"n":4,"a":5,"d":1.87,"Ss":20,"Sn":4,"Sa":5,"Sd":1.87,"Og":2,"Os":93.5,"On":18,"Oa":5.19,"Od":1.16,"pd":1,"pm":17},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":4.5,"e":5461,"s":1}],[-36,{"n":6,"e":5477}],[-35,{"n":5,"e":5480,"s":1}],[-28,{"n":5,"e":5551,"s":1}],[-25,{"n":6.5,"e":5582,"g":1}],[-24,{"n":5,"e":5592}],[-23,{"n":5.5,"e":5603}],[-17,{"n":5,"e":5661,"s":1}],[-10,{"n":5.5,"e":5731}],[-8,{"n":3,"e":5751}],[-7,{"n":4.5,"e":5759}],[-6,{"n":6,"e":5770}],[-4,{"n":7,"e":5792,"g":1}],[4,{"n":4.5,"e":7451,"s":1}],[3,{"n":5,"e":7460}],[2,{"n":7.5,"e":7464}],[1,{"n":3,"e":7476}]],"fo":[[7460,[{"t":"I"}]],[5477,[{"t":"Y"}]],[7476,[{"t":"Y"}]]],"a":{"m":8,"a":11,"M":13,"n":6}}],[4508,{"n":"Lazzari","f":"Manuel","fp":"MD","r":10,"c":121,"s":{"g":1,"s":15.5,"n":3,"a":5.17,"d":1.76,"Og":1,"Os":162,"On":32,"Oa":5.06,"Od":0.87,"pm":32},"p":[[-38,{"n":4.5,"e":5455}],[-37,{"n":5,"e":5461}],[-35,{"n":5,"e":5480}],[-34,{"n":5,"e":5492}],[-33,{"n":5.5,"e":5507}],[-32,{"n":4.5,"e":5514}],[-31,{"n":4.5,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":5.5,"e":5546}],[-28,{"n":5,"e":5551}],[-27,{"n":3.5,"e":5558}],[-26,{"n":5.5,"e":5570}],[-25,{"n":4,"e":5582,"s":1}],[-24,{"n":5.5,"e":5592,"s":1}],[-23,{"n":5,"e":5603,"s":1}],[-22,{"n":8,"e":5612}],[-21,{"n":5,"e":5623}],[-20,{"n":5,"e":5633}],[-19,{"n":5,"e":5641}],[-18,{"n":4.5,"e":5650}],[-17,{"n":4.5,"e":5661}],[-16,{"n":5.5,"e":5670}],[-15,{"n":6,"e":5681}],[-14,{"n":5.5,"e":5694}],[-13,{"n":5,"e":5705}],[-12,{"n":5,"e":5712}],[-11,{"n":5.5,"e":5723}],[-9,{"n":5,"e":5740}],[-5,{"n":5,"e":5781}],[3,{"n":5,"e":7460}],[2,{"n":7,"e":7464,"g":1}],[1,{"n":3.5,"e":7476}]],"fo":[[5461,[{"t":"Y"}]],[5480,[{"t":"Y"}]],[7460,[{"t":"Y"}]]],"a":{"m":10,"a":13,"M":14,"n":5}}],[4546,{"n":"Strakosha","f":"Thomas","fp":"G","r":20,"c":121,"s":{"s":18,"n":4,"a":4.5,"d":1.29,"Ss":18,"Sn":4,"Sa":4.5,"Sd":1.29,"Os":214.5,"On":39,"Oa":5.5,"Od":1.03,"pg":39},"p":[[-38,{"n":4.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":6,"e":5477}],[-35,{"n":6,"e":5480}],[-34,{"n":6,"e":5492}],[-33,{"n":7,"e":5507}],[-32,{"n":4,"e":5514}],[-31,{"n":4,"e":5522}],[-30,{"n":4.5,"e":5532}],[-29,{"n":5,"e":5546}],[-28,{"n":6,"e":5551}],[-27,{"n":4.5,"e":5558}],[-26,{"n":6.5,"e":5570}],[-25,{"n":5.5,"e":5582}],[-24,{"n":6,"e":5592}],[-23,{"n":6.5,"e":5603}],[-22,{"n":5.5,"e":5612}],[-21,{"n":3.5,"e":5623}],[-20,{"n":6,"e":5633}],[-19,{"n":7,"e":5641}],[-18,{"n":5,"e":5650}],[-17,{"n":6,"e":5661}],[-16,{"n":5.5,"e":5670}],[-15,{"n":6,"e":5681}],[-14,{"n":5.5,"e":5694}],[-13,{"n":4.5,"e":5705}],[-12,{"n":8,"e":5712}],[-11,{"n":5.5,"e":5723}],[-10,{"n":6,"e":5731}],[-9,{"n":5.5,"e":5740}],[-8,{"n":5,"e":5751}],[-7,{"n":6,"e":5759}],[-6,{"n":7,"e":5770}],[-5,{"n":5,"e":5781}],[-4,{"n":6,"e":5792}],[4,{"n":4,"e":7451}],[3,{"n":5,"e":7460}],[2,{"n":6,"e":7464}],[1,{"n":3,"e":7476}]],"fo":[[5477,[{"t":"Y"}]]]}],[4550,{"n":"Cataldi","f":"Danilo","fp":"MD","r":8,"c":121,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":119.5,"On":23,"Oa":5.2,"Od":0.62,"pm":23},"p":[[-35,{"n":5,"e":5480,"s":1}],[-34,{"n":4.5,"e":5492}],[-33,{"n":5,"e":5507,"s":1}],[-32,{"n":5.5,"e":5514,"s":1}],[-31,{"n":5.5,"e":5522,"s":1}],[-30,{"n":5.5,"e":5532,"s":1}],[-27,{"n":5,"e":5558}],[-26,{"n":5,"e":5570,"s":1}],[-25,{"n":7,"e":5582,"g":1,"s":1}],[-24,{"n":5,"e":5592,"s":1}],[-23,{"n":4.5,"e":5603,"s":1}],[-19,{"n":5.5,"e":5641,"s":1}],[-18,{"n":5.5,"e":5650,"s":1}],[-16,{"n":5.5,"e":5670,"s":1}],[-15,{"n":5,"e":5681,"s":1}],[-14,{"n":5.5,"e":5694,"s":1}],[-12,{"n":4.5,"e":5712,"s":1}],[-11,{"n":4.5,"e":5723,"s":1}],[-10,{"n":6,"e":5731}],[-8,{"n":6,"e":5751,"s":1}],[4,{"n":4.5,"e":7451,"s":1}],[2,{"n":4.5,"e":7464,"s":1}],[1,{"n":5,"e":7476,"s":1}]],"fo":[[5558,[{"t":"I"}]],[7476,[{"t":"Y"}]]]}],[4593,{"n":"Bastos","f":"","fp":"DC","r":7,"c":121,"s":{"s":9,"n":2,"a":4.5,"Og":1,"Oao":1,"Os":80,"On":17,"Oa":4.71,"Od":0.79,"pd":17},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":5,"e":5461,"s":1}],[-34,{"n":3,"e":5492}],[-33,{"n":5,"e":5507,"s":1}],[-32,{"n":3.5,"e":5514}],[-29,{"n":5,"e":5546,"s":1}],[-28,{"n":4,"e":5551}],[-27,{"n":5,"e":5558,"s":1}],[-22,{"n":6,"e":5612}],[-20,{"n":6,"e":5633,"g":1,"s":1}],[-13,{"n":4,"e":5705,"s":1}],[-12,{"n":5,"e":5712,"s":1}],[-11,{"n":4.5,"e":5723,"a":1}],[-7,{"n":4.5,"e":5759,"s":1}],[-5,{"n":5.5,"e":5781}],[3,{"n":4.5,"e":7460,"s":1}],[1,{"n":4.5,"e":7476,"s":1}]],"fo":[[7460,[{"t":"I"}]],[5514,[{"t":"Y"}]],[5551,[{"t":"Y"}]]]}],[4602,{"n":"Patric","f":"","fp":"DC","r":8,"c":121,"s":{"s":17.5,"n":4,"a":4.38,"d":1.38,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":1.38,"Os":121.5,"On":24,"Oa":5.06,"Od":1.01,"pd":24},"p":[[-38,{"n":4.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":5.5,"e":5477}],[-35,{"n":4.5,"e":5480}],[-31,{"n":3,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":6,"e":5546}],[-28,{"n":5,"e":5551}],[-27,{"n":3.5,"e":5558}],[-26,{"n":6,"e":5570}],[-25,{"n":5.5,"e":5582}],[-23,{"n":6,"e":5603}],[-21,{"n":5,"e":5623,"s":1}],[-20,{"n":5.5,"e":5633}],[-17,{"n":6,"e":5661}],[-13,{"n":5,"e":5705}],[-12,{"n":6,"e":5712}],[-10,{"n":6,"e":5731}],[-9,{"n":6,"e":5740}],[-8,{"n":5,"e":5751,"s":1}],[4,{"n":3.5,"e":7451}],[3,{"n":5,"e":7460}],[2,{"n":6,"e":7464}],[1,{"n":3,"e":7476}]],"fo":[[5522,[{"t":"R"}]],[5480,[{"t":"Y"}]],[5558,[{"t":"Y"}]],[7460,[{"t":"Y"}]]]}],[4656,{"n":"Acerbi","f":"Francesco","fp":"DC","r":20,"c":121,"s":{"s":19.5,"n":4,"a":4.88,"d":1.11,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.11,"Og":2,"Os":206,"On":37,"Oa":5.57,"Od":0.9,"pd":37},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":6.5,"e":5477}],[-35,{"n":5.5,"e":5480}],[-34,{"n":5,"e":5492}],[-33,{"n":5,"e":5507}],[-32,{"n":4.5,"e":5514}],[-31,{"n":5,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":6,"e":5546}],[-28,{"n":5,"e":5551}],[-27,{"n":4.5,"e":5558}],[-24,{"n":5,"e":5592}],[-23,{"n":7,"e":5603}],[-22,{"n":5.5,"e":5612}],[-21,{"n":6.5,"e":5623,"g":1}],[-20,{"n":7.5,"e":5633}],[-19,{"n":5.5,"e":5641}],[-18,{"n":5.5,"e":5650}],[-17,{"n":5.5,"e":5661}],[-16,{"n":5.5,"e":5670}],[-15,{"n":5.5,"e":5681}],[-14,{"n":6,"e":5694}],[-13,{"n":5.5,"e":5705}],[-12,{"n":7.5,"e":5712}],[-11,{"n":6,"e":5723}],[-10,{"n":7,"e":5731,"g":1}],[-9,{"n":6,"e":5740}],[-8,{"n":4.5,"e":5751}],[-7,{"n":5,"e":5759}],[-6,{"n":6,"e":5770}],[-5,{"n":5.5,"e":5781}],[-4,{"n":6.5,"e":5792}],[4,{"n":4.5,"e":7451}],[3,{"n":6,"e":7460}],[2,{"n":5.5,"e":7464}],[1,{"n":3.5,"e":7476}]],"fo":[[7476,[{"t":"Y"}]]]}],[4660,{"n":"Luis Alberto","f":"","fp":"MO","r":25,"c":121,"s":{"s":17,"n":4,"a":4.25,"d":1.5,"Ss":17,"Sn":4,"Sa":4.25,"Sd":1.5,"Og":5,"Os":211,"On":37,"Oa":5.7,"Od":1.23,"pm":36,"pa":1},"p":[[-38,{"n":5.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":6.5,"e":5477}],[-35,{"n":6.5,"e":5480}],[-33,{"n":5,"e":5507}],[-32,{"n":5,"e":5514,"g":1}],[-31,{"n":3,"e":5522}],[-30,{"n":3.5,"e":5532}],[-29,{"n":6.5,"e":5546}],[-28,{"n":7,"e":5551,"g":1}],[-27,{"n":4.5,"e":5558}],[-26,{"n":7,"e":5570,"g":1}],[-25,{"n":6,"e":5582}],[-24,{"n":6,"e":5592}],[-23,{"n":6,"e":5603}],[-22,{"n":6,"e":5612}],[-21,{"n":5.5,"e":5623}],[-20,{"n":5.5,"e":5633}],[-19,{"n":6.5,"e":5641}],[-17,{"n":5.5,"e":5661}],[-16,{"n":7,"e":5670,"g":1}],[-15,{"n":7,"e":5681}],[-14,{"n":6.5,"e":5694,"g":1}],[-13,{"n":6,"e":5705}],[-12,{"n":6.5,"e":5712}],[-11,{"n":7,"e":5723}],[-10,{"n":7.5,"e":5731}],[-9,{"n":5,"e":5740}],[-8,{"n":4,"e":5751}],[-7,{"n":6,"e":5759}],[-6,{"n":7,"e":5770}],[-5,{"n":4.5,"e":5781}],[-4,{"n":7,"e":5792}],[4,{"n":3.5,"e":7451}],[3,{"n":5.5,"e":7460}],[2,{"n":5.5,"e":7464}],[1,{"n":2.5,"e":7476}]],"fo":[[5507,[{"t":"Y"}]],[7476,[{"t":"Y"}]]]}],[4714,{"n":"Immobile","f":"Ciro","fp":"A","r":42,"c":121,"s":{"g":1,"s":13,"n":3,"a":4.33,"d":2.31,"Og":34,"Os":220.5,"On":37,"Oa":5.96,"Od":1.49,"pa":37},"p":[[-38,{"n":6,"e":5455,"g":1}],[-37,{"n":8,"e":5461,"g":1}],[-36,{"n":8,"e":5477,"g":3}],[-35,{"n":6.5,"e":5480,"g":1}],[-34,{"n":6,"e":5492,"g":1}],[-33,{"n":4.5,"e":5507}],[-32,{"n":4,"e":5514}],[-31,{"n":4,"e":5522}],[-29,{"n":6,"e":5546,"g":1}],[-28,{"n":5,"e":5551,"g":1}],[-27,{"n":3.5,"e":5558}],[-26,{"n":5,"e":5570}],[-25,{"n":6,"e":5582,"g":1}],[-24,{"n":6,"e":5592,"g":1}],[-23,{"n":4.5,"e":5603}],[-22,{"n":8.5,"e":5612,"g":2}],[-21,{"n":4.5,"e":5623}],[-20,{"n":8,"e":5633,"g":3}],[-19,{"n":7,"e":5641,"g":1}],[-18,{"n":7,"e":5650,"g":2}],[-17,{"n":5,"e":5661}],[-16,{"n":5,"e":5670}],[-15,{"n":5,"e":5681}],[-14,{"n":7,"e":5694,"g":2}],[-13,{"n":7,"e":5705,"g":1}],[-12,{"n":7,"e":5712,"g":1}],[-11,{"n":6,"e":5723,"g":1}],[-10,{"n":7,"e":5731,"g":2}],[-9,{"n":7,"e":5740,"g":1}],[-8,{"n":7.5,"e":5751,"g":2}],[-7,{"n":7.5,"e":5759,"g":2}],[-6,{"n":7.5,"e":5770,"g":1}],[-5,{"n":4.5,"e":5781,"s":1}],[-4,{"n":6.5,"e":5792,"g":1}],[3,{"n":3,"e":7460}],[2,{"n":7,"e":7464,"g":1}],[1,{"n":3,"e":7476}]],"fo":[[7460,[{"t":"R"}]],[5455,[{"t":"Y"}]],[5514,[{"t":"Y"}]],[5522,[{"t":"Y"}]],[5546,[{"t":"Y"}]],[7476,[{"t":"Y"}]]],"a":{"m":52,"a":89,"M":129,"n":6}}],[4738,{"n":"Lulic","f":"Senad","fp":"MD","r":4,"c":121,"s":{"Os":87,"On":17,"Oa":5.12,"Od":0.84,"pm":17},"p":[[-22,{"n":6,"e":5612}],[-21,{"n":4,"e":5623}],[-19,{"n":6.5,"e":5641}],[-18,{"n":5,"e":5650}],[-17,{"n":5,"e":5661}],[-16,{"n":4.5,"e":5670}],[-15,{"n":5,"e":5681}],[-14,{"n":5.5,"e":5694}],[-13,{"n":5,"e":5705}],[-12,{"n":4.5,"e":5712}],[-11,{"n":4,"e":5723}],[-10,{"n":6.5,"e":5731}],[-9,{"n":5,"e":5740}],[-8,{"n":4,"e":5751}],[-7,{"n":4.5,"e":5759}],[-6,{"n":6,"e":5770}],[-4,{"n":6,"e":5792}]]}],[4742,{"n":"Parolo","f":"Marco","fp":"MD","r":9,"c":121,"s":{"s":14,"n":3,"a":4.67,"d":1.04,"Ss":14,"Sn":3,"Sa":4.67,"Sd":1.04,"Og":1,"Os":145,"On":29,"Oa":5,"Od":0.83,"pm":29},"p":[[-38,{"n":4,"e":5455}],[-37,{"n":6.5,"e":5461}],[-36,{"n":6.5,"e":5477}],[-35,{"n":5.5,"e":5480}],[-34,{"n":5.5,"e":5492}],[-33,{"n":5.5,"e":5507}],[-32,{"n":4,"e":5514}],[-31,{"n":4.5,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":6.5,"e":5546,"g":1}],[-28,{"n":6,"e":5551}],[-27,{"n":4.5,"e":5558,"s":1}],[-26,{"n":5,"e":5570,"s":1}],[-23,{"n":5.5,"e":5603}],[-21,{"n":5,"e":5623,"s":1}],[-18,{"n":5,"e":5650}],[-17,{"n":5,"e":5661,"s":1}],[-15,{"n":5,"e":5681,"s":1}],[-11,{"n":4.5,"e":5723,"s":1}],[-10,{"n":5,"e":5731,"s":1}],[-9,{"n":4.5,"e":5740,"s":1}],[-8,{"n":3,"e":5751}],[-7,{"n":5,"e":5759,"s":1}],[-6,{"n":5,"e":5770,"s":1}],[-5,{"n":5.5,"e":5781}],[-4,{"n":5,"e":5792,"s":1}],[4,{"n":3.5,"e":7451}],[3,{"n":5.5,"e":7460,"s":1}],[2,{"n":5,"e":7464,"s":1}]],"fo":[[5480,[{"t":"Y"}]],[5514,[{"t":"Y"}]],[5551,[{"t":"Y"}]],[7451,[{"t":"Y"}]]]}],[4770,{"n":"Caicedo","f":"Felipe","fp":"A","r":10,"c":121,"s":{"g":1,"s":13,"n":3,"a":4.33,"d":1.53,"Ss":3,"Sn":1,"Sa":3,"Og":10,"Os":157.5,"On":32,"Oa":4.92,"Od":1.06,"pa":32},"p":[[-36,{"n":4.5,"e":5477,"s":1}],[-35,{"n":4.5,"e":5480}],[-34,{"n":4,"e":5492}],[-33,{"n":4,"e":5507}],[-32,{"n":3.5,"e":5514}],[-31,{"n":6,"e":5522,"g":1}],[-29,{"n":4.5,"e":5546}],[-28,{"n":5.5,"e":5551}],[-27,{"n":4.5,"e":5558,"s":1}],[-26,{"n":4.5,"e":5570,"s":1}],[-25,{"n":5,"e":5582}],[-24,{"n":4,"e":5592}],[-23,{"n":6,"e":5603,"g":1}],[-22,{"n":7,"e":5612,"g":2}],[-21,{"n":4.5,"e":5623,"s":1}],[-20,{"n":6,"e":5633,"g":1}],[-19,{"n":4.5,"e":5641}],[-18,{"n":7,"e":5650}],[-17,{"n":4,"e":5661}],[-16,{"n":6,"e":5670,"g":1,"s":1}],[-15,{"n":6,"e":5681,"g":1,"s":1}],[-13,{"n":6,"e":5705,"g":1,"s":1}],[-11,{"n":4,"e":5723,"s":1}],[-10,{"n":6,"e":5731}],[-9,{"n":3.5,"e":5740,"s":1}],[-8,{"n":4.5,"e":5751,"s":1}],[-6,{"n":6,"e":5770,"g":1,"s":1}],[-5,{"n":4,"e":5781}],[-4,{"n":5,"e":5792,"s":1}],[4,{"n":3,"e":7451}],[2,{"n":4,"e":7464,"s":1}],[1,{"n":6,"e":7476,"g":1}]],"fo":[[5507,[{"t":"Y"}]],[5522,[{"t":"Y"}]],[5546,[{"t":"Y"}]],[7451,[{"t":"Y"}]],[7476,[{"t":"Y"}]]]}],[4774,{"n":"Di Gennaro","f":"Davide","fp":"MD","r":6,"c":121}],[4798,{"n":"Radu","f":"Stefan","fp":"DC","r":9,"c":121,"s":{"s":15,"n":3,"a":5,"d":1,"Og":1,"Os":152.5,"On":29,"Oa":5.26,"Od":0.97,"pd":29},"p":[[-33,{"n":5.5,"e":5507}],[-32,{"n":4.5,"e":5514}],[-31,{"n":3.5,"e":5522}],[-30,{"n":3,"e":5532}],[-29,{"n":6,"e":5546}],[-28,{"n":5.5,"e":5551,"s":1}],[-27,{"n":4,"e":5558}],[-26,{"n":5.5,"e":5570}],[-25,{"n":6,"e":5582}],[-24,{"n":5.5,"e":5592}],[-22,{"n":5.5,"e":5612}],[-21,{"n":5.5,"e":5623}],[-20,{"n":6,"e":5633}],[-19,{"n":5.5,"e":5641}],[-18,{"n":5,"e":5650}],[-17,{"n":6,"e":5661}],[-16,{"n":5,"e":5670}],[-15,{"n":6,"e":5681}],[-14,{"n":6,"e":5694}],[-11,{"n":5,"e":5723}],[-10,{"n":5.5,"e":5731}],[-9,{"n":6,"e":5740}],[-8,{"n":3.5,"e":5751}],[-7,{"n":4.5,"e":5759}],[-6,{"n":7.5,"e":5770,"g":1}],[-4,{"n":6,"e":5792}],[3,{"n":5,"e":7460}],[2,{"n":6,"e":7464}],[1,{"n":4,"e":7476}]],"fo":[[7460,[{"t":"I"}]],[5522,[{"t":"Y"}]],[5551,[{"t":"Y"}]]],"a":{"m":13,"a":14,"M":15,"n":7}}],[4801,{"n":"Proto","f":"Silvio","fp":"G","r":7,"c":121}],[4830,{"n":"Pepe Reina","f":"","fp":"G","r":9,"c":121,"s":{"Os":68.5,"On":13,"Oa":5.27,"Od":1.24,"pg":13},"p":[[-38,{"n":4,"e":3937}],[-37,{"n":6,"e":3938}],[-36,{"n":4,"e":3952}],[-35,{"n":7.5,"e":3958}],[-34,{"n":5,"e":3969}],[-33,{"n":5,"e":3981}],[-29,{"n":3,"e":4022}],[-27,{"n":6,"e":4046}],[-26,{"n":7,"e":4049}],[-25,{"n":5,"e":4058}],[-24,{"n":5,"e":4068}],[-23,{"n":5,"e":4079}],[-7,{"n":6,"e":5762}]]}],[5329,{"n":"Vavro","f":"Denis","fp":"DC","r":8,"c":121,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":51,"On":10,"Oa":5.1,"Od":0.32,"pd":10},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":5.5,"e":5461,"s":1}],[-36,{"n":5.5,"e":5477,"s":1}],[-34,{"n":5,"e":5492,"s":1}],[-32,{"n":5,"e":5514,"s":1}],[-30,{"n":4.5,"e":5532,"s":1}],[-25,{"n":5.5,"e":5582}],[-22,{"n":5,"e":5612,"s":1}],[-20,{"n":5,"e":5633,"s":1}],[4,{"n":5,"e":7451,"s":1}]]}],[6615,{"n":"Raul Moro","f":"","fp":"A","r":3,"c":121,"s":{"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[-34,{"n":4.5,"e":5492,"s":1}]]}],[6983,{"n":"Mohamed","f":"Abukar","fp":"MD","r":1,"c":121}],[7159,{"n":"Kiyine","f":"Sofian","fp":"MO","r":1,"c":121}],[7198,{"n":"Akpa Akpro","f":"Jean-Daniel","fp":"DL","r":8,"c":121,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[3,{"n":5,"e":7460,"s":1}],[2,{"n":4.5,"e":7464,"s":1}],[1,{"n":4.5,"e":7476,"s":1}]]}],[7236,{"n":"Muriqi","f":"Vedat","fp":"A","r":14,"c":121,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[4,{"n":4.5,"e":7451,"s":1}]]}],[7421,{"n":"Czyz","f":"Szymon","fp":"MO","r":1,"c":121}],[7433,{"n":"Ndrecka","f":"Angelo","fp":"DL","r":1,"c":121}],[7442,{"n":"Novella","f":"Mattia","fp":"DL","r":1,"c":121}],[7445,{"n":"Madiu Bari","f":"","fp":"MD","r":1,"c":121}],[592,{"n":"Ibrahimovic","f":"Zlatan","fp":"A","r":36,"c":125,"s":{"g":4,"s":15.5,"n":2,"a":7.75,"d":0.35,"Sg":2,"Ss":8,"Sn":1,"Sa":8,"Og":14,"Os":113,"On":19,"Oa":5.95,"Od":1.37,"pa":19},"p":[[-21,{"n":4,"e":5618}],[-38,{"n":6,"e":5454,"g":1}],[-37,{"n":8,"e":5463,"g":2}],[-36,{"n":5,"e":5473}],[-35,{"n":8,"e":5485,"g":2}],[-34,{"n":5,"e":5493}],[-33,{"n":6,"e":5501}],[-32,{"n":4,"e":5515}],[-31,{"n":7,"e":5523,"g":1}],[-30,{"n":5.5,"e":5532,"g":1}],[-29,{"n":5,"e":5545,"s":1}],[-26,{"n":6,"e":5572,"g":1}],[-25,{"n":4.5,"e":5581}],[-24,{"n":5,"e":5594}],[-23,{"n":7,"e":5601,"g":1}],[-20,{"n":4.5,"e":5635}],[-19,{"n":7,"e":5638,"g":1}],[4,{"n":8,"e":7450,"g":2}],[1,{"n":7.5,"e":7475,"g":2}]],"fo":[[7450,[{"t":"Y"}]]]}],[1021,{"n":"Díaz","f":"Brahim","fp":"MO","r":9,"c":125,"s":{"g":1,"s":17.5,"n":3,"a":5.83,"d":1.76,"Og":1,"Os":44,"On":9,"Oa":4.89,"Od":1.17,"pm":2,"pa":7},"p":[[3,{"n":6,"e":7487}],[-38,{"n":5,"e":4312,"s":1}],[-35,{"n":4,"e":4345,"s":1}],[-31,{"n":4.5,"e":4384,"s":1}],[-16,{"n":4.5,"e":4535,"s":1}],[-9,{"n":4.5,"e":4605,"s":1}],[-13,{"n":4,"e":4562,"s":1}],[2,{"n":7.5,"e":7490,"g":1}],[1,{"n":4,"e":7475,"s":1}]],"fo":[[4312,[{"t":"Y"}]]],"a":{"m":8,"a":9,"M":9,"n":5}}],[1163,{"n":"Tatarusanu","f":"Ciprian","fp":"G","r":8,"c":125,"s":{"Os":11,"On":2,"Oa":5.5,"Od":1.41,"pg":2},"p":[[-21,{"n":6.5,"e":3720}],[-22,{"n":4.5,"e":3713}]]}],[1604,{"n":"Kjaer","f":"Simon","fp":"DC","r":16,"c":125,"s":{"s":24.5,"n":4,"a":6.13,"d":0.48,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":0.48,"Os":128,"On":24,"Oa":5.33,"Od":0.83,"pd":24},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":4.5,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5485}],[-34,{"n":5,"e":5493}],[-33,{"n":6,"e":5501}],[-32,{"n":4.5,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":5.5,"e":5532}],[-28,{"n":6,"e":5552}],[-27,{"n":5.5,"e":5563}],[-24,{"n":5.5,"e":5594}],[-23,{"n":3,"e":5601}],[-21,{"n":6,"e":5618}],[-20,{"n":4,"e":5635}],[-10,{"n":5,"e":5733,"s":1}],[-9,{"n":4.5,"e":5738}],[-8,{"n":5,"e":5751,"s":1}],[-7,{"n":5.5,"e":5758}],[-5,{"n":6,"e":5784}],[4,{"n":6,"e":7450}],[3,{"n":6.5,"e":7487}],[2,{"n":6.5,"e":7490}],[1,{"n":5.5,"e":7475}]],"fo":[[5563,[{"t":"I"}]],[5493,[{"t":"Y"}]],[7450,[{"t":"Y"}]]]}],[1645,{"n":"Samu Castillejo","f":"","fp":"MO","r":7,"c":125,"s":{"s":14,"n":3,"a":4.67,"d":0.76,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":123.5,"On":23,"Oa":5.37,"Od":0.98,"pm":21,"pa":2},"p":[[-38,{"n":8,"e":5454,"g":1}],[-37,{"n":5,"e":5463,"s":1}],[-36,{"n":4.5,"e":5473,"s":1}],[-29,{"n":5,"e":5545}],[-28,{"n":4.5,"e":5552}],[-27,{"n":7,"e":5563,"g":1}],[-26,{"n":5,"e":5572}],[-25,{"n":5.5,"e":5581}],[-24,{"n":6.5,"e":5594}],[-23,{"n":4.5,"e":5601}],[-22,{"n":5,"e":5614}],[-21,{"n":5.5,"e":5618}],[-20,{"n":6,"e":5635}],[-19,{"n":7,"e":5638}],[-17,{"n":5,"e":5658,"s":1}],[-16,{"n":5,"e":5674,"s":1}],[-15,{"n":5,"e":5679,"s":1}],[-11,{"n":6,"e":5723}],[-10,{"n":4.5,"e":5732}],[-6,{"n":5,"e":5772,"s":1}],[4,{"n":5.5,"e":7450,"s":1}],[2,{"n":4.5,"e":7490,"s":1}],[1,{"n":4,"e":7475}]],"fo":[[5545,[{"t":"I"}]],[5552,[{"t":"Y"}]],[7475,[{"t":"Y"}]]]}],[1829,{"n":"Hernández","f":"Theo","fp":"DL","r":30,"c":125,"s":{"g":1,"s":25.5,"n":4,"a":6.38,"d":1.38,"Sg":1,"Ss":25.5,"Sn":4,"Sa":6.38,"Sd":1.38,"Og":7,"Oao":1,"Os":202,"On":36,"Oa":5.61,"Od":1.17,"pd":36},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":6,"e":5463}],[-35,{"n":4,"e":5485}],[-34,{"n":7,"e":5493}],[-33,{"n":6,"e":5501}],[-32,{"n":6,"e":5515,"g":1}],[-31,{"n":5,"e":5523}],[-30,{"n":6.5,"e":5532}],[-29,{"n":4.5,"e":5545}],[-28,{"n":7,"e":5552}],[-27,{"n":5.5,"e":5563}],[-26,{"n":4,"e":5572}],[-25,{"n":5.5,"e":5581}],[-24,{"n":6.5,"e":5594}],[-23,{"n":3,"e":5601}],[-22,{"n":5,"e":5614}],[-21,{"n":6,"e":5618}],[-20,{"n":6,"e":5635,"g":1}],[-19,{"n":7.5,"e":5638}],[-18,{"n":5,"e":5654}],[-16,{"n":5.5,"e":5674}],[-15,{"n":5,"e":5679,"g":1,"a":1}],[-14,{"n":7.5,"e":5696,"g":1}],[-13,{"n":6.5,"e":5701}],[-12,{"n":5,"e":5711}],[-11,{"n":4.5,"e":5723}],[-10,{"n":4.5,"e":5732}],[-9,{"n":6,"e":5744,"g":1}],[-8,{"n":4.5,"e":5752}],[-7,{"n":7,"e":5762,"g":1}],[-6,{"n":5,"e":5772}],[-5,{"n":3.5,"e":5786}],[4,{"n":5,"e":7450}],[3,{"n":8,"e":7487,"g":1}],[2,{"n":5.5,"e":7490}],[1,{"n":7,"e":7475}]],"fo":[[5485,[{"t":"Y"}]],[5515,[{"t":"Y"}]],[7490,[{"t":"Y"}]]],"a":{"m":30,"a":36,"M":41,"n":5}}],[2541,{"n":"Diogo Dalot","f":"","fp":"DL","r":6,"c":125,"s":{"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pd":4},"p":[[-26,{"n":5,"e":4051,"s":1}],[-25,{"n":4.5,"e":4063,"s":1}],[-23,{"n":4.5,"e":4081,"s":1}],[-8,{"n":5,"e":4237}]]}],[2791,{"n":"Rafael Leão","f":"","fp":"A","r":15,"c":125,"s":{"g":2,"s":18.5,"n":3,"a":6.17,"d":1.26,"Sg":2,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":1.26,"Og":8,"Os":163.5,"On":32,"Oa":5.11,"Od":1.11,"pm":4,"pa":28},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":6.5,"e":5463,"g":1,"s":1}],[-36,{"n":5,"e":5473,"s":1}],[-34,{"n":6,"e":5493,"s":1}],[-33,{"n":5.5,"e":5501}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":6,"e":5523,"g":1,"s":1}],[-29,{"n":6.5,"e":5545,"g":1,"s":1}],[-28,{"n":4,"e":5552,"s":1}],[-27,{"n":6,"e":5563,"g":1,"s":1}],[-26,{"n":4,"e":5572,"s":1}],[-24,{"n":4.5,"e":5594,"s":1}],[-23,{"n":4.5,"e":5601,"s":1}],[-22,{"n":5,"e":5614}],[-21,{"n":4,"e":5618}],[-20,{"n":6.5,"e":5635}],[-19,{"n":6.5,"e":5638,"g":1}],[-18,{"n":5,"e":5654,"s":1}],[-17,{"n":2.5,"e":5658}],[-16,{"n":4.5,"e":5674,"s":1}],[-14,{"n":4.5,"e":5696,"s":1}],[-13,{"n":4,"e":5701,"s":1}],[-12,{"n":4,"e":5711,"s":1}],[-11,{"n":4.5,"e":5723,"s":1}],[-9,{"n":3.5,"e":5744}],[-8,{"n":4.5,"e":5752}],[-7,{"n":5.5,"e":5762,"s":1}],[-6,{"n":6.5,"e":5772,"g":1}],[-5,{"n":5,"e":5786}],[4,{"n":6,"e":7450}],[3,{"n":7.5,"e":7487,"g":2}],[2,{"n":5,"e":7490,"s":1}]],"fo":[[5454,[{"t":"I"}]],[7490,[{"t":"Y"}]]]}],[4244,{"n":"Tonali","f":"Sandro","fp":"MD","r":14,"c":125,"s":{"s":19.5,"n":4,"a":4.88,"d":0.63,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.63,"Og":1,"Os":178,"On":35,"Oa":5.09,"Od":1.05,"pm":35},"p":[[-30,{"n":7,"e":5528}],[-25,{"n":5,"e":5580}],[-23,{"n":5,"e":5598}],[-38,{"n":5.5,"e":5450}],[-37,{"n":4.5,"e":5461}],[-36,{"n":4,"e":5469}],[-35,{"n":4.5,"e":5481}],[-34,{"n":5,"e":5488}],[-33,{"n":5,"e":5498,"s":1}],[-32,{"n":3.5,"e":5508}],[-31,{"n":4.5,"e":5526}],[-29,{"n":4,"e":5542}],[-28,{"n":5.5,"e":5548}],[-27,{"n":5.5,"e":5560}],[-22,{"n":4.5,"e":5609}],[-21,{"n":6,"e":5618}],[-20,{"n":6.5,"e":5630}],[-18,{"n":4.5,"e":5650}],[-17,{"n":6,"e":5663}],[-16,{"n":7,"e":5669}],[-15,{"n":6.5,"e":5683}],[-14,{"n":4,"e":5688}],[-13,{"n":4,"e":5702}],[-12,{"n":3,"e":5708}],[-11,{"n":3.5,"e":5727}],[-10,{"n":5.5,"e":5728}],[-9,{"n":7,"e":5741,"g":1}],[-8,{"n":4.5,"e":5748}],[-7,{"n":5.5,"e":5760}],[-6,{"n":6.5,"e":5773}],[-5,{"n":5.5,"e":5778}],[4,{"n":5,"e":7450,"s":1}],[3,{"n":4,"e":7487}],[2,{"n":5.5,"e":7490}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[5461,[{"t":"Y"}]],[5508,[{"t":"Y"}]],[5526,[{"t":"Y"}]]]}],[4392,{"n":"Donnarumma","f":"Gianluigi","fp":"G","r":22,"c":125,"s":{"s":24,"n":4,"a":6,"d":0.41,"Ss":24,"Sn":4,"Sa":6,"Sd":0.41,"Os":203.5,"On":36,"Oa":5.65,"Od":1.02,"pg":36},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":7.5,"e":5463}],[-36,{"n":7,"e":5473}],[-35,{"n":6,"e":5485}],[-34,{"n":4.5,"e":5493}],[-33,{"n":5.5,"e":5501}],[-32,{"n":5,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":6.5,"e":5532}],[-29,{"n":4,"e":5545}],[-28,{"n":6,"e":5552}],[-27,{"n":5,"e":5563}],[-25,{"n":5,"e":5581}],[-24,{"n":6,"e":5594}],[-23,{"n":3.5,"e":5601}],[-22,{"n":5,"e":5614}],[-21,{"n":8,"e":5618}],[-20,{"n":4.5,"e":5635}],[-19,{"n":6.5,"e":5638}],[-18,{"n":6,"e":5654}],[-17,{"n":4,"e":5658}],[-16,{"n":7,"e":5674}],[-15,{"n":6,"e":5679}],[-14,{"n":6,"e":5696}],[-13,{"n":6,"e":5701}],[-12,{"n":6,"e":5711}],[-11,{"n":4.5,"e":5723}],[-10,{"n":6,"e":5732}],[-9,{"n":5,"e":5744}],[-8,{"n":6.5,"e":5752}],[-6,{"n":6,"e":5772}],[-5,{"n":4,"e":5786}],[4,{"n":6,"e":7450}],[3,{"n":6,"e":7487}],[2,{"n":5.5,"e":7490}],[1,{"n":6.5,"e":7475}]],"a":{"m":18,"a":24,"M":31,"n":6}}],[4424,{"n":"Conti","f":"Andrea","fp":"DL","r":8,"c":125,"s":{"Os":105,"On":22,"Oa":4.77,"Od":1.16,"pd":22},"p":[[-35,{"n":5,"e":5485}],[-33,{"n":4,"e":5501}],[-32,{"n":4,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":6,"e":5532}],[-28,{"n":6,"e":5552}],[-27,{"n":7,"e":5563}],[-26,{"n":4.5,"e":5572}],[-25,{"n":6,"e":5581}],[-23,{"n":3,"e":5601}],[-21,{"n":5,"e":5618}],[-20,{"n":5.5,"e":5635}],[-19,{"n":5,"e":5638,"s":1}],[-17,{"n":2,"e":5658}],[-16,{"n":4.5,"e":5674}],[-15,{"n":4.5,"e":5679}],[-14,{"n":6.5,"e":5696}],[-13,{"n":4,"e":5701}],[-12,{"n":5,"e":5711}],[-9,{"n":4,"e":5744}],[-8,{"n":3.5,"e":5752}],[-7,{"n":5,"e":5762,"s":1}]],"fo":[[5485,[{"t":"I"}]],[5501,[{"t":"Y"}]],[5515,[{"t":"Y"}]],[5523,[{"t":"Y"}]]]}],[4456,{"n":"Kessié","f":"Franck","fp":"MD","r":27,"c":125,"s":{"g":1,"s":26,"n":4,"a":6.5,"d":0.71,"Sg":1,"Ss":26,"Sn":4,"Sa":6.5,"Sd":0.71,"Og":5,"Os":197.5,"On":35,"Oa":5.64,"Od":0.99,"pm":35},"p":[[-38,{"n":5.5,"e":5454}],[-37,{"n":6,"e":5463}],[-36,{"n":4.5,"e":5473}],[-35,{"n":6.5,"e":5485}],[-34,{"n":6,"e":5493}],[-33,{"n":7.5,"e":5501,"g":1}],[-32,{"n":6.5,"e":5515,"g":1}],[-31,{"n":7,"e":5523,"g":1}],[-30,{"n":7,"e":5532}],[-29,{"n":5,"e":5545}],[-28,{"n":6,"e":5552}],[-27,{"n":6.5,"e":5563}],[-26,{"n":4.5,"e":5572}],[-25,{"n":5,"e":5581}],[-24,{"n":5.5,"e":5594}],[-23,{"n":5,"e":5601}],[-22,{"n":5.5,"e":5614}],[-21,{"n":6,"e":5618}],[-20,{"n":4.5,"e":5635}],[-19,{"n":6,"e":5638}],[-17,{"n":3.5,"e":5658}],[-16,{"n":4.5,"e":5674}],[-15,{"n":5,"e":5679}],[-14,{"n":5.5,"e":5696}],[-13,{"n":5.5,"e":5701,"s":1}],[-10,{"n":6,"e":5732}],[-9,{"n":4.5,"e":5744}],[-8,{"n":5.5,"e":5752}],[-7,{"n":7,"e":5762,"g":1}],[-6,{"n":4,"e":5772}],[-5,{"n":4.5,"e":5786}],[4,{"n":6,"e":7450}],[3,{"n":6.5,"e":7487,"s":1}],[2,{"n":7.5,"e":7490,"g":1}],[1,{"n":6,"e":7475}]],"fo":[[7450,[{"t":"I"},{"t":"Y"}]]]}],[4494,{"n":"Calabria","f":"Davide","fp":"DL","r":16,"c":125,"s":{"s":23,"n":4,"a":5.75,"d":0.5,"Ss":23,"Sn":4,"Sa":5.75,"Sd":0.5,"Og":1,"Os":134,"On":26,"Oa":5.15,"Od":0.75,"pd":26},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":5,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5485,"s":1}],[-34,{"n":6.5,"e":5493,"g":1}],[-33,{"n":5,"e":5501,"s":1}],[-31,{"n":5,"e":5523,"s":1}],[-30,{"n":5,"e":5532,"s":1}],[-29,{"n":3.5,"e":5545}],[-26,{"n":5,"e":5572,"s":1}],[-24,{"n":6,"e":5594}],[-22,{"n":5,"e":5614}],[-19,{"n":6,"e":5638}],[-18,{"n":5,"e":5654}],[-17,{"n":4.5,"e":5658,"s":1}],[-13,{"n":5,"e":5701,"s":1}],[-11,{"n":5,"e":5723}],[-10,{"n":5,"e":5732,"s":1}],[-9,{"n":5,"e":5744,"s":1}],[-7,{"n":4.5,"e":5762}],[-6,{"n":4.5,"e":5772}],[-5,{"n":3.5,"e":5786}],[4,{"n":5,"e":7450}],[3,{"n":6,"e":7487}],[2,{"n":6,"e":7490}],[1,{"n":6,"e":7475}]]}],[4511,{"n":"Krunic","f":"Rade","fp":"MO","r":8,"c":125,"s":{"s":19.5,"n":4,"a":4.88,"d":0.48,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.48,"Os":97,"On":19,"Oa":5.11,"Od":0.39,"pm":19},"p":[[-36,{"n":5,"e":5473,"s":1}],[-34,{"n":5,"e":5493,"s":1}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":5,"e":5515,"s":1}],[-31,{"n":5,"e":5523,"s":1}],[-30,{"n":5.5,"e":5532,"s":1}],[-21,{"n":5,"e":5618,"s":1}],[-20,{"n":5,"e":5635,"s":1}],[-18,{"n":5.5,"e":5654}],[-14,{"n":5,"e":5696,"s":1}],[-13,{"n":6,"e":5701}],[-12,{"n":5,"e":5711}],[-11,{"n":5.5,"e":5723}],[-8,{"n":5.5,"e":5752,"s":1}],[-6,{"n":4.5,"e":5772,"s":1}],[4,{"n":4.5,"e":7450,"s":1}],[3,{"n":5.5,"e":7487}],[2,{"n":5,"e":7490,"s":1}],[1,{"n":4.5,"e":7475,"s":1}]],"fo":[[7475,[{"t":"Y"}]]]}],[4553,{"n":"Romagnoli","f":"Alessio","fp":"DC","r":13,"c":125,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":167.5,"On":32,"Oa":5.23,"Od":0.91,"pd":32},"p":[[-35,{"n":5.5,"e":5485}],[-34,{"n":5,"e":5493}],[-33,{"n":7,"e":5501,"g":1}],[-32,{"n":4.5,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":6,"e":5532}],[-29,{"n":5,"e":5545}],[-28,{"n":6,"e":5552}],[-27,{"n":6,"e":5563}],[-26,{"n":4,"e":5572}],[-25,{"n":5,"e":5581}],[-24,{"n":6,"e":5594}],[-23,{"n":3,"e":5601}],[-22,{"n":6,"e":5614}],[-21,{"n":6,"e":5618}],[-20,{"n":5,"e":5635}],[-19,{"n":7,"e":5638}],[-18,{"n":5,"e":5654}],[-17,{"n":3,"e":5658}],[-16,{"n":6,"e":5674}],[-15,{"n":5,"e":5679}],[-14,{"n":5.5,"e":5696}],[-13,{"n":5.5,"e":5701}],[-12,{"n":5.5,"e":5711}],[-11,{"n":5,"e":5723}],[-10,{"n":5.5,"e":5732}],[-9,{"n":4,"e":5744}],[-8,{"n":5.5,"e":5752}],[-7,{"n":5.5,"e":5762}],[-6,{"n":5,"e":5772}],[-5,{"n":4.5,"e":5786}],[4,{"n":5,"e":7450}]],"fo":[[5485,[{"t":"I"}]]]}],[4587,{"n":"Calhanoglu","f":"Hakan","fp":"MO","r":27,"c":125,"s":{"s":23,"n":4,"a":5.75,"d":0.5,"Ss":23,"Sn":4,"Sa":5.75,"Sd":0.5,"Og":8,"Os":200.5,"On":35,"Oa":5.73,"Od":1.22,"pm":24,"pa":11},"p":[[-38,{"n":5.5,"e":5454}],[-37,{"n":7.5,"e":5463,"g":1}],[-36,{"n":7,"e":5473,"g":1}],[-35,{"n":7,"e":5485}],[-34,{"n":7,"e":5493,"g":1}],[-33,{"n":8,"e":5501,"g":1}],[-32,{"n":4,"e":5515}],[-31,{"n":5.5,"e":5523,"s":1}],[-30,{"n":6.5,"e":5532,"g":1}],[-29,{"n":6,"e":5545}],[-28,{"n":7,"e":5552,"g":1}],[-27,{"n":8,"e":5563}],[-26,{"n":4.5,"e":5572}],[-25,{"n":5,"e":5581}],[-23,{"n":5,"e":5601}],[-22,{"n":6,"e":5614,"g":1}],[-21,{"n":5.5,"e":5618}],[-19,{"n":5.5,"e":5638}],[-18,{"n":5.5,"e":5654}],[-17,{"n":3.5,"e":5658}],[-16,{"n":5.5,"e":5674}],[-15,{"n":5,"e":5679}],[-14,{"n":7,"e":5696}],[-12,{"n":5,"e":5711}],[-11,{"n":5,"e":5723}],[-10,{"n":5.5,"e":5732}],[-9,{"n":5,"e":5744}],[-8,{"n":8,"e":5752,"g":1}],[-7,{"n":4,"e":5762}],[-6,{"n":3.5,"e":5772}],[-5,{"n":4.5,"e":5786}],[4,{"n":6,"e":7450}],[3,{"n":6,"e":7487,"s":1}],[2,{"n":6,"e":7490}],[1,{"n":5,"e":7475}]],"fo":[[5532,[{"t":"I"}]],[7487,[{"t":"Y"}]]]}],[4658,{"n":"Antonio Donnarumma","f":"","fp":"G","r":3,"c":125}],[4715,{"n":"Musacchio","f":"Mateo","fp":"DC","r":4,"c":125,"s":{"Os":65,"On":14,"Oa":4.64,"Od":1.03,"pd":14},"p":[[-25,{"n":5,"e":5581,"s":1}],[-22,{"n":5,"e":5614}],[-19,{"n":6,"e":5638}],[-18,{"n":5.5,"e":5654}],[-17,{"n":3,"e":5658}],[-16,{"n":4.5,"e":5674}],[-15,{"n":4,"e":5679}],[-14,{"n":6,"e":5696}],[-13,{"n":5.5,"e":5701}],[-10,{"n":5.5,"e":5732}],[-9,{"n":3,"e":5744}],[-8,{"n":4.5,"e":5752}],[-6,{"n":3.5,"e":5772}],[-5,{"n":4,"e":5786}]]}],[5305,{"n":"Mionic","f":"Antonio","fp":"MD","r":1,"c":125}],[5306,{"n":"Capone","f":"Andrea","fp":"A","r":1,"c":125}],[5307,{"n":"Maldini","f":"Daniel","fp":"MO","r":5,"c":125,"s":{"s":4.5,"n":1,"a":4.5,"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[-38,{"n":4,"e":5454,"s":1}],[-22,{"n":4.5,"e":5614,"s":1}],[3,{"n":4.5,"e":7487,"s":1}]]}],[5321,{"n":"Gabbia","f":"Matteo","fp":"DC","r":12,"c":125,"s":{"s":18,"n":3,"a":6,"d":0.5,"Os":65,"On":12,"Oa":5.42,"Od":0.67,"pd":9,"pm":3},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":6,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":5.5,"e":5485,"s":1}],[-29,{"n":5,"e":5545}],[-27,{"n":4,"e":5563,"s":1}],[-26,{"n":5,"e":5572}],[-25,{"n":5,"e":5581}],[-24,{"n":5.5,"e":5594,"s":1}],[3,{"n":6.5,"e":7487}],[2,{"n":6,"e":7490}],[1,{"n":5.5,"e":7475}]],"fo":[[5563,[{"t":"Y"}]],[7475,[{"t":"Y"}]],[7490,[{"t":"Y"}]]]}],[5960,{"n":"Bennacer","f":"Ismael","fp":"MD","r":24,"c":125,"s":{"s":23.5,"n":4,"a":5.88,"d":0.85,"Ss":23.5,"Sn":4,"Sa":5.88,"Sd":0.85,"Og":1,"Os":182,"On":33,"Oa":5.52,"Od":0.93,"pm":33},"p":[[-38,{"n":6.5,"e":5454}],[-37,{"n":6,"e":5463}],[-35,{"n":6,"e":5485}],[-34,{"n":7.5,"e":5493,"g":1}],[-33,{"n":5.5,"e":5501,"s":1}],[-32,{"n":5,"e":5515}],[-31,{"n":6,"e":5523}],[-30,{"n":6,"e":5532}],[-29,{"n":5,"e":5545}],[-28,{"n":6,"e":5552}],[-27,{"n":6,"e":5563}],[-26,{"n":5.5,"e":5572}],[-25,{"n":6.5,"e":5581}],[-24,{"n":5.5,"e":5594}],[-23,{"n":4,"e":5601}],[-21,{"n":5.5,"e":5618}],[-20,{"n":5,"e":5635}],[-19,{"n":6,"e":5638}],[-18,{"n":6,"e":5654}],[-17,{"n":3,"e":5658}],[-16,{"n":6,"e":5674}],[-15,{"n":5.5,"e":5679}],[-14,{"n":6.5,"e":5696}],[-12,{"n":5.5,"e":5711}],[-11,{"n":5,"e":5723}],[-10,{"n":5,"e":5732}],[-9,{"n":4.5,"e":5744,"s":1}],[-6,{"n":3.5,"e":5772}],[-5,{"n":4.5,"e":5786}],[4,{"n":6,"e":7450}],[3,{"n":5.5,"e":7487,"s":1}],[2,{"n":5,"e":7490,"s":1}],[1,{"n":7,"e":7475}]],"fo":[[5485,[{"t":"Y"}]],[5523,[{"t":"Y"}]]]}],[6134,{"n":"Léo Duarte","f":"","fp":"DC","r":5,"c":125,"s":{"s":5,"n":1,"a":5,"Os":33,"On":7,"Oa":4.71,"Od":0.76,"pd":7},"p":[[-38,{"n":5,"e":5454,"s":1}],[-12,{"n":4.5,"e":5711}],[-11,{"n":3.5,"e":5723}],[-10,{"n":5.5,"e":5732}],[-7,{"n":5.5,"e":5762}],[-6,{"n":4,"e":5772,"s":1}],[1,{"n":5,"e":7475,"s":1}]]}],[6223,{"n":"Rebic","f":"Ante","fp":"A","r":20,"c":125,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"Og":11,"Os":144.5,"On":26,"Oa":5.56,"Od":1.24,"pm":10,"pa":16},"p":[[-37,{"n":5,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":5,"e":5485}],[-34,{"n":8,"e":5493,"g":1}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":6,"e":5515}],[-31,{"n":7.5,"e":5523,"g":1}],[-30,{"n":7,"e":5532,"g":1,"s":1}],[-29,{"n":3.5,"e":5545}],[-28,{"n":6.5,"e":5552,"g":1}],[-27,{"n":6.5,"e":5563,"g":1}],[-26,{"n":4,"e":5572}],[-25,{"n":7,"e":5581,"g":1}],[-24,{"n":6.5,"e":5594,"g":1}],[-23,{"n":6,"e":5601,"g":1}],[-22,{"n":5,"e":5614}],[-21,{"n":6,"e":5618,"g":1,"s":1}],[-20,{"n":7.5,"e":5635,"g":2,"s":1}],[-19,{"n":4.5,"e":5638,"s":1}],[-13,{"n":4,"e":5701}],[-12,{"n":4.5,"e":5711,"s":1}],[-11,{"n":4,"e":5723,"s":1}],[-8,{"n":4.5,"e":5752,"s":1}],[-5,{"n":4.5,"e":5786,"s":1}],[2,{"n":5.5,"e":7490}],[1,{"n":6,"e":7475}]],"fo":[[7490,[{"t":"I"}]],[5463,[{"t":"Y"}]],[5523,[{"t":"Y"}]],[5552,[{"t":"Y"}]]]}],[6522,{"n":"Saelemaekers","f":"Alexis","fp":"DL","r":14,"c":125,"s":{"s":22,"n":4,"a":5.5,"d":0.82,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.82,"Og":1,"Os":85,"On":16,"Oa":5.31,"Od":0.98,"pd":7,"pm":9},"p":[[-38,{"n":4.5,"e":5454,"s":1}],[-37,{"n":5.5,"e":5463}],[-36,{"n":4.5,"e":5473}],[-35,{"n":6,"e":5485}],[-34,{"n":6.5,"e":5493,"g":1}],[-32,{"n":3,"e":5515,"s":1}],[-31,{"n":4.5,"e":5523}],[-30,{"n":6.5,"e":5532}],[-29,{"n":6,"e":5545,"s":1}],[-28,{"n":6,"e":5552,"s":1}],[-27,{"n":5.5,"e":5563,"s":1}],[-25,{"n":4.5,"e":5581,"s":1}],[4,{"n":5.5,"e":7450}],[3,{"n":6.5,"e":7487}],[2,{"n":4.5,"e":7490}],[1,{"n":5.5,"e":7475,"s":1}]],"fo":[[5454,[{"t":"Y"}]],[5493,[{"t":"Y"}]],[5515,[{"t":"Y"},{"t":"O"}]]]}],[6564,{"n":"Kalulu Kyatengwa","f":"Pierre","fp":"DL","r":3,"c":125}],[6609,{"n":"Olzer","f":"Giacomo","fp":"MO","r":1,"c":125}],[6610,{"n":"Stanga","f":"Luca","fp":"DL","r":1,"c":125}],[6619,{"n":"Colombo","f":"Lorenzo","fp":"A","r":5,"c":125,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":12.5,"On":3,"Oa":4.17,"Od":0.29,"pa":3},"p":[[-34,{"n":4,"e":5493,"s":1}],[3,{"n":4.5,"e":7487}],[2,{"n":4,"e":7490,"s":1}]]}],[7184,{"n":"Roback","f":"Emil","fp":"A","r":1,"c":125}],[7185,{"n":"Jungdal","f":"Andreas","fp":"G","r":1,"c":125}],[7193,{"n":"Tonin","f":"Riccardo","fp":"A","r":2,"c":125}],[7271,{"n":"Brambilla","f":"Alessio","fp":"MD","r":1,"c":125}],[7272,{"n":"Frigerio","f":"Marco","fp":"MD","r":1,"c":125}],[7273,{"n":"Oddi","f":"Riccardo","fp":"DL","r":1,"c":125}],[7274,{"n":"Moleri","f":"Leonardo","fp":"G","r":1,"c":125}],[7375,{"n":"Hauge","f":"Jens Petter","fp":"MO","r":6,"c":125}],[7420,{"n":"Paloschi","f":"Mattia","fp":"G","r":1,"c":125}],[95,{"n":"Bakayoko","f":"Tiemoué","fp":"MD","r":9,"c":111,"s":{"s":6,"n":1,"a":6,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Os":105.5,"On":19,"Oa":5.55,"Od":1.27,"pm":19},"p":[[-26,{"n":6,"e":3669}],[-22,{"n":3,"e":3714}],[-14,{"n":4,"e":3790}],[-28,{"n":6.5,"e":3653}],[-27,{"n":4,"e":3662}],[-25,{"n":5,"e":3683}],[-21,{"n":4,"e":3722}],[-20,{"n":5.5,"e":3734}],[-19,{"n":6,"e":3740}],[-18,{"n":6.5,"e":3749}],[-17,{"n":7,"e":3760}],[-16,{"n":7,"e":3777}],[-15,{"n":5.5,"e":3780,"g":1}],[-11,{"n":5.5,"e":3822}],[-10,{"n":5.5,"e":3833}],[-9,{"n":4,"e":3842}],[-8,{"n":7.5,"e":3853}],[-7,{"n":7,"e":3862}],[4,{"n":6,"e":7449}],[3,{"n":null,"e":7462,"d":1}]]}],[134,{"n":"Malcuit","f":"Kevin","fp":"DL","r":6,"c":111,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":20,"On":4,"Oa":5,"Od":0.41,"pd":4},"p":[[-37,{"n":5,"e":5460,"s":1}],[-9,{"n":4.5,"e":5745}],[-8,{"n":5.5,"e":5753}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[627,{"n":"Llorente","f":"Fernando","fp":"A","r":3,"c":111,"s":{"Og":1,"Os":67,"On":15,"Oa":4.47,"Od":0.52,"pa":15},"p":[[-21,{"n":4.5,"e":5621,"s":1}],[-20,{"n":4,"e":5636,"s":1}],[-19,{"n":4.5,"e":5641,"s":1}],[-18,{"n":4,"e":5655,"s":1}],[-15,{"n":4.5,"e":5687,"s":1}],[-14,{"n":6,"e":5695,"g":1}],[-13,{"n":4.5,"e":5701,"s":1}],[-12,{"n":4,"e":5713,"s":1}],[-11,{"n":4.5,"e":5724,"s":1}],[-10,{"n":4.5,"e":5733,"s":1}],[-9,{"n":4,"e":5745,"s":1}],[-8,{"n":4,"e":5753,"s":1}],[-7,{"n":4.5,"e":5766,"s":1}],[-6,{"n":5,"e":5773}],[-5,{"n":4.5,"e":5782,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[946,{"n":"Ospina","f":"David","fp":"G","r":13,"c":111,"s":{"s":11.5,"n":2,"a":5.75,"d":0.35,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":94,"On":18,"Oa":5.22,"Od":0.73,"pg":18},"p":[[-38,{"n":5,"e":5455}],[-36,{"n":6,"e":5474}],[-34,{"n":5,"e":5494}],[-32,{"n":4.5,"e":5515}],[-29,{"n":5,"e":5538}],[-27,{"n":7,"e":5567}],[-26,{"n":4,"e":5573}],[-25,{"n":4.5,"e":5580}],[-24,{"n":6,"e":5590}],[-23,{"n":5.5,"e":5602}],[-20,{"n":5.5,"e":5636}],[-19,{"n":4.5,"e":5641}],[-14,{"n":5,"e":5695}],[-12,{"n":5.5,"e":5713}],[-9,{"n":4.5,"e":5745}],[-6,{"n":5,"e":5773}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":6,"e":7472}]],"fo":[[5538,[{"t":"I"}]]]}],[1851,{"n":"Lobotka","f":"Stanislav","fp":"MD","r":9,"c":111,"s":{"s":15,"n":3,"a":5,"Ss":15,"Sn":3,"Sa":5,"Os":148,"On":29,"Oa":5.1,"Od":0.66,"pm":29},"p":[[-18,{"n":3.5,"e":4511}],[-17,{"n":5,"e":4521}],[-15,{"n":4.5,"e":4541}],[-14,{"n":5.5,"e":4558}],[-12,{"n":4.5,"e":4568}],[-11,{"n":6,"e":4584}],[-10,{"n":5.5,"e":4590}],[-8,{"n":6,"e":4609}],[-6,{"n":4.5,"e":4629}],[-38,{"n":5.5,"e":5455}],[-36,{"n":6,"e":5474}],[-35,{"n":5,"e":5482,"s":1}],[-34,{"n":5.5,"e":5494}],[-32,{"n":5,"e":5515}],[-31,{"n":6,"e":5521}],[-30,{"n":5,"e":5533,"s":1}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":6,"e":5553}],[-27,{"n":5,"e":5567,"s":1}],[-26,{"n":6,"e":5573}],[-23,{"n":4,"e":5602}],[-22,{"n":5,"e":5615}],[-21,{"n":5,"e":5621,"s":1}],[-13,{"n":4.5,"e":4561}],[-9,{"n":5.5,"e":4598}],[-7,{"n":4,"e":4621}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7466,"s":1}],[1,{"n":5,"e":7472,"s":1}]]}],[1854,{"n":"Ruiz","f":"Fabián","fp":"MD","r":30,"c":111,"s":{"s":19.5,"n":3,"a":6.5,"d":0.87,"Ss":19.5,"Sn":3,"Sa":6.5,"Sd":0.87,"Og":2,"Os":192.5,"On":32,"Oa":6.02,"Od":0.9,"pm":32},"p":[[-38,{"n":7,"e":5455,"g":1}],[-36,{"n":5.5,"e":5474}],[-35,{"n":5,"e":5482}],[-34,{"n":6.5,"e":5494}],[-33,{"n":4.5,"e":5499,"s":1}],[-32,{"n":5,"e":5515}],[-31,{"n":7,"e":5521}],[-30,{"n":6,"e":5533}],[-29,{"n":5,"e":5538}],[-28,{"n":8,"e":5553}],[-27,{"n":5.5,"e":5567,"s":1}],[-26,{"n":5.5,"e":5573}],[-25,{"n":7,"e":5580,"g":1}],[-24,{"n":6.5,"e":5590}],[-21,{"n":5.5,"e":5621}],[-20,{"n":5.5,"e":5636}],[-19,{"n":5,"e":5641}],[-18,{"n":7,"e":5655}],[-17,{"n":5,"e":5665}],[-16,{"n":6.5,"e":5675}],[-15,{"n":5.5,"e":5687}],[-14,{"n":5,"e":5695}],[-12,{"n":6.5,"e":5713}],[-11,{"n":5,"e":5724}],[-10,{"n":7,"e":5733}],[-9,{"n":5.5,"e":5745,"s":1}],[-8,{"n":7,"e":5753}],[-7,{"n":7,"e":5766}],[-6,{"n":6,"e":5773}],[4,{"n":7,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":5.5,"e":7472}]]}],[4466,{"n":"Meret","f":"Alex","fp":"G","r":9,"c":111,"s":{"s":5,"n":1,"a":5,"Os":101.5,"On":20,"Oa":5.08,"Od":1.02,"pg":20},"p":[[-37,{"n":5.5,"e":5460}],[-35,{"n":5,"e":5482}],[-33,{"n":4,"e":5499}],[-31,{"n":5.5,"e":5521}],[-30,{"n":5,"e":5533}],[-29,{"n":4,"e":5538,"s":1}],[-28,{"n":5,"e":5553}],[-22,{"n":5.5,"e":5615}],[-21,{"n":6,"e":5621}],[-18,{"n":3.5,"e":5655}],[-17,{"n":6,"e":5665}],[-16,{"n":4.5,"e":5675}],[-15,{"n":4,"e":5687}],[-13,{"n":5,"e":5701}],[-11,{"n":7,"e":5724}],[-10,{"n":3.5,"e":5733}],[-8,{"n":7,"e":5753}],[-7,{"n":6,"e":5766}],[-5,{"n":4.5,"e":5782}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7466}]]}],[4484,{"n":"Rrahmani","f":"Amir","fp":"DC","r":8,"c":111,"s":{"Os":162,"On":32,"Oa":5.06,"Od":0.85,"pd":32},"p":[[-38,{"n":3,"e":5451}],[-36,{"n":3,"e":5477}],[-35,{"n":5.5,"e":5486}],[-34,{"n":5.5,"e":5497}],[-32,{"n":5.5,"e":5510}],[-31,{"n":4,"e":5527}],[-30,{"n":4.5,"e":5528}],[-29,{"n":5,"e":5547}],[-28,{"n":4.5,"e":5556}],[-27,{"n":4.5,"e":5567}],[-26,{"n":4.5,"e":5575}],[-25,{"n":6,"e":5587}],[-24,{"n":5.5,"e":5597}],[-23,{"n":4.5,"e":5607}],[-22,{"n":5.5,"e":5614}],[-21,{"n":6,"e":5627}],[-20,{"n":6,"e":5629}],[-19,{"n":5,"e":5647}],[-18,{"n":6,"e":5657}],[-17,{"n":5.5,"e":5661}],[-16,{"n":4.5,"e":5677}],[-15,{"n":6,"e":5678}],[-14,{"n":4,"e":5697}],[-13,{"n":6.5,"e":5707}],[-12,{"n":4.5,"e":5710}],[-11,{"n":5.5,"e":5727}],[-10,{"n":5.5,"e":5734}],[-9,{"n":4.5,"e":5747}],[-8,{"n":5,"e":5753}],[-7,{"n":5.5,"e":5767}],[-6,{"n":5,"e":5768}],[-5,{"n":6,"e":5787}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5477,[{"t":"Y"}]]]}],[4518,{"n":"Politano","f":"Matteo","fp":"MO","r":15,"c":111,"s":{"g":2,"s":18,"n":3,"a":6,"d":1,"Sg":2,"Ss":18,"Sn":3,"Sa":6,"Sd":1,"Og":4,"Os":127.5,"On":25,"Oa":5.1,"Od":0.78,"pm":7,"pa":18},"p":[[-38,{"n":6.5,"e":5455,"g":1,"s":1}],[-37,{"n":5,"e":5460}],[-36,{"n":4.5,"e":5474,"s":1}],[-35,{"n":4,"e":5482}],[-34,{"n":6,"e":5494,"g":1,"s":1}],[-33,{"n":6,"e":5499}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":5,"e":5521}],[-29,{"n":4,"e":5538}],[-27,{"n":6,"e":5567}],[-26,{"n":5,"e":5573}],[-25,{"n":5.5,"e":5580}],[-24,{"n":5,"e":5590,"s":1}],[-23,{"n":5,"e":5602}],[-22,{"n":4,"e":5615,"s":1}],[-19,{"n":5,"e":5640,"s":1}],[-16,{"n":4.5,"e":5671,"s":1}],[-11,{"n":5,"e":5719,"s":1}],[-9,{"n":5,"e":5742,"s":1}],[-8,{"n":4.5,"e":5756,"s":1}],[-7,{"n":5,"e":5763,"s":1}],[-5,{"n":4.5,"e":5781}],[4,{"n":7,"e":7449,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":6,"e":7466,"g":1,"s":1}],[1,{"n":5,"e":7472,"s":1}]]}],[4535,{"n":"Petagna","f":"Andrea","fp":"A","r":8,"c":111,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Og":10,"Os":165.5,"On":34,"Oa":4.87,"Od":0.99,"pa":34},"p":[[-37,{"n":4.5,"e":5467}],[-36,{"n":5,"e":5476}],[-35,{"n":4.5,"e":5483,"s":1}],[-34,{"n":4.5,"e":5488}],[-33,{"n":3.5,"e":5503}],[-32,{"n":4,"e":5511}],[-31,{"n":4,"e":5525}],[-30,{"n":6,"e":5535,"s":1}],[-29,{"n":5,"e":5545}],[-28,{"n":6,"e":5553,"g":1}],[-27,{"n":5,"e":5565}],[-26,{"n":5.5,"e":5574,"g":1}],[-25,{"n":6,"e":5585,"g":1}],[-24,{"n":6,"e":5593,"g":1}],[-23,{"n":4.5,"e":5605}],[-21,{"n":6.5,"e":5624,"g":1}],[-20,{"n":6,"e":5628,"g":1}],[-19,{"n":4,"e":5639}],[-18,{"n":4.5,"e":5657}],[-17,{"n":7,"e":5666,"g":1}],[-16,{"n":5,"e":5676,"g":1}],[-15,{"n":3,"e":5683}],[-14,{"n":4,"e":5692}],[-13,{"n":5,"e":5703,"g":1}],[-12,{"n":3,"e":5717,"s":1}],[-11,{"n":4,"e":5725}],[-10,{"n":5.5,"e":5732}],[-9,{"n":5,"e":5745}],[-8,{"n":4,"e":5749}],[-7,{"n":6.5,"e":5765,"g":1}],[-6,{"n":4,"e":5769}],[-5,{"n":5,"e":5785}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":4.5,"e":7472,"s":1}]]}],[4557,{"n":"Zielinski","f":"Piotr","fp":"MO","r":22,"c":111,"s":{"g":1,"s":13.5,"n":2,"a":6.75,"d":1.77,"Og":3,"Os":193,"On":35,"Oa":5.51,"Od":0.81,"pm":35},"p":[[-38,{"n":5.5,"e":5455}],[-37,{"n":5,"e":5460}],[-36,{"n":7,"e":5474}],[-35,{"n":5,"e":5482,"s":1}],[-34,{"n":5.5,"e":5494}],[-33,{"n":5,"e":5499}],[-32,{"n":5.5,"e":5515}],[-31,{"n":5,"e":5521,"s":1}],[-30,{"n":6.5,"e":5533}],[-29,{"n":5.5,"e":5538}],[-27,{"n":6,"e":5567}],[-26,{"n":5.5,"e":5573}],[-25,{"n":5,"e":5580,"s":1}],[-24,{"n":6,"e":5590}],[-23,{"n":5,"e":5602}],[-22,{"n":6,"e":5615}],[-21,{"n":7,"e":5621,"g":1}],[-20,{"n":4.5,"e":5636}],[-19,{"n":5.5,"e":5641}],[-18,{"n":6,"e":5655}],[-17,{"n":6.5,"e":5665}],[-16,{"n":5.5,"e":5675}],[-15,{"n":6,"e":5687,"g":1}],[-14,{"n":4,"e":5695}],[-13,{"n":4,"e":5701}],[-12,{"n":5.5,"e":5713}],[-11,{"n":5,"e":5724}],[-10,{"n":5.5,"e":5733,"s":1}],[-9,{"n":5,"e":5745}],[-8,{"n":5,"e":5753,"s":1}],[-7,{"n":5,"e":5766}],[-6,{"n":5,"e":5773}],[-5,{"n":5.5,"e":5782}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":8,"e":7466,"g":1}],[1,{"n":5.5,"e":7472}]],"fo":[[5474,[{"t":"I"}]]]}],[4599,{"n":"Hysaj","f":"Elseid","fp":"DL","r":12,"c":111,"s":{"s":17.5,"n":3,"a":5.83,"d":1.04,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":1.04,"Og":1,"Os":115,"On":22,"Oa":5.23,"Od":1.04,"pd":22},"p":[[-37,{"n":4.5,"e":5460}],[-36,{"n":8,"e":5474,"g":1}],[-34,{"n":5,"e":5494}],[-33,{"n":4.5,"e":5499}],[-31,{"n":4.5,"e":5521}],[-28,{"n":5,"e":5553}],[-27,{"n":5.5,"e":5567}],[-26,{"n":5,"e":5573}],[-24,{"n":6.5,"e":5590}],[-22,{"n":5.5,"e":5615}],[-21,{"n":5,"e":5621}],[-20,{"n":4,"e":5636}],[-19,{"n":6.5,"e":5641}],[-18,{"n":3,"e":5655}],[-17,{"n":5,"e":5665,"s":1}],[-13,{"n":5,"e":5701}],[-12,{"n":5,"e":5713}],[-7,{"n":5,"e":5766}],[-6,{"n":5,"e":5773,"s":1}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":5,"e":7472}]]}],[4612,{"n":"Milik","f":"Arkadiusz","fp":"A","r":9,"c":111,"s":{"Og":11,"Os":135,"On":25,"Oa":5.4,"Od":1.12,"pa":25},"p":[[-37,{"n":5,"e":5460}],[-36,{"n":5,"e":5474}],[-34,{"n":6,"e":5494,"g":1,"s":1}],[-33,{"n":4,"e":5499}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":4.5,"e":5521,"s":1}],[-30,{"n":5,"e":5533}],[-29,{"n":4.5,"e":5538,"s":1}],[-28,{"n":4.5,"e":5553,"s":1}],[-27,{"n":6.5,"e":5567,"g":1}],[-26,{"n":5,"e":5573}],[-25,{"n":4,"e":5580,"s":1}],[-23,{"n":5,"e":5602,"g":1}],[-22,{"n":7,"e":5615,"g":1}],[-21,{"n":5,"e":5621}],[-20,{"n":4,"e":5636}],[-19,{"n":5,"e":5641}],[-18,{"n":6,"e":5655,"g":1}],[-17,{"n":4.5,"e":5665}],[-16,{"n":6.5,"e":5675,"g":1}],[-11,{"n":6.5,"e":5724,"g":1}],[-10,{"n":7,"e":5733,"g":1}],[-9,{"n":7,"e":5745,"g":1}],[-8,{"n":8,"e":5753,"g":2}],[-5,{"n":5,"e":5782,"s":1}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5494,[{"t":"Y"}]]]}],[4617,{"n":"Mário Rui","f":"","fp":"DL","r":8,"c":111,"s":{"Os":105,"On":21,"Oa":5,"Od":0.72,"pd":20,"pm":1},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":5,"e":5460}],[-35,{"n":3.5,"e":5482}],[-34,{"n":6,"e":5494}],[-32,{"n":5,"e":5515}],[-31,{"n":5,"e":5521}],[-30,{"n":7,"e":5533}],[-29,{"n":5,"e":5538}],[-28,{"n":5,"e":5553}],[-25,{"n":4.5,"e":5580}],[-24,{"n":5,"e":5590,"s":1}],[-23,{"n":5,"e":5602}],[-22,{"n":5.5,"e":5615}],[-21,{"n":4.5,"e":5621}],[-19,{"n":5,"e":5641}],[-18,{"n":4,"e":5655}],[-17,{"n":6,"e":5665}],[-16,{"n":5,"e":5675}],[-15,{"n":4.5,"e":5687}],[-11,{"n":4.5,"e":5724}],[-5,{"n":5,"e":5782}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[5455,[{"t":"Y"}]],[5515,[{"t":"Y"}]],[5538,[{"t":"Y"}]]]}],[4630,{"n":"Di Lorenzo","f":"Giovanni","fp":"DL","r":23,"c":111,"s":{"s":19.5,"n":3,"a":6.5,"d":0.5,"Ss":19.5,"Sn":3,"Sa":6.5,"Sd":0.5,"Og":2,"Os":172,"On":33,"Oa":5.21,"Od":0.86,"pd":33},"p":[[-38,{"n":5,"e":5455}],[-36,{"n":5,"e":5474}],[-35,{"n":5.5,"e":5482}],[-33,{"n":5,"e":5499}],[-32,{"n":7,"e":5515,"g":1}],[-30,{"n":4.5,"e":5533}],[-29,{"n":4,"e":5538}],[-27,{"n":5.5,"e":5567}],[-26,{"n":6.5,"e":5573,"g":1}],[-25,{"n":6,"e":5580}],[-24,{"n":5,"e":5590}],[-23,{"n":4,"e":5602}],[-22,{"n":7,"e":5615}],[-21,{"n":5.5,"e":5621}],[-20,{"n":4.5,"e":5636}],[-19,{"n":5.5,"e":5641}],[-18,{"n":4.5,"e":5655}],[-17,{"n":5,"e":5665}],[-16,{"n":4,"e":5675}],[-15,{"n":5.5,"e":5687}],[-14,{"n":4.5,"e":5695}],[-13,{"n":4.5,"e":5701}],[-12,{"n":5,"e":5713}],[-11,{"n":5,"e":5724}],[-10,{"n":4.5,"e":5733}],[-9,{"n":4.5,"e":5745}],[-8,{"n":5.5,"e":5753}],[-7,{"n":5,"e":5766}],[-6,{"n":5,"e":5773}],[-5,{"n":4.5,"e":5782}],[4,{"n":6.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":6,"e":7472}]],"fo":[[5499,[{"t":"Y"}]],[5515,[{"t":"Y"}]]]}],[4643,{"n":"Ghoulam","f":"Faouzi","fp":"DL","r":7,"c":111,"s":{"s":9,"n":2,"a":4.5,"Ss":9,"Sn":2,"Sa":4.5,"Os":40,"On":8,"Oa":5,"Od":0.46,"pd":8},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":5,"e":5460,"s":1}],[-28,{"n":5,"e":5553,"s":1}],[-27,{"n":6,"e":5567,"s":1}],[-7,{"n":5,"e":5766,"s":1}],[-6,{"n":5,"e":5773}],[4,{"n":4.5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4.5,"e":7466,"s":1}]]}],[4648,{"n":"Nikola Maksimovic","f":"","fp":"DC","r":8,"c":111,"s":{"s":5.5,"n":1,"a":5.5,"Og":1,"Os":108.5,"On":21,"Oa":5.17,"Od":0.93,"pd":21},"p":[[-37,{"n":4,"e":5460}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":6,"e":5482}],[-33,{"n":5.5,"e":5499}],[-32,{"n":4,"e":5515}],[-31,{"n":6,"e":5521}],[-30,{"n":6,"e":5533,"s":1}],[-29,{"n":3.5,"e":5538}],[-28,{"n":5,"e":5553}],[-27,{"n":6,"e":5567}],[-26,{"n":5,"e":5573}],[-25,{"n":5,"e":5580}],[-24,{"n":5.5,"e":5590}],[-23,{"n":4,"e":5602}],[-14,{"n":5,"e":5695}],[-13,{"n":5,"e":5701}],[-12,{"n":5.5,"e":5713}],[-10,{"n":5.5,"e":5733,"g":1}],[-6,{"n":7.5,"e":5773}],[-5,{"n":4,"e":5782}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7466,"s":1}]]}],[4650,{"n":"Koulibaly","f":"Kalidou","fp":"DC","r":12,"c":111,"s":{"s":18,"n":3,"a":6,"d":0.87,"Ss":18,"Sn":3,"Sa":6,"Sd":0.87,"Os":122.5,"On":24,"Oa":5.1,"Od":0.91,"pd":24},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":4,"e":5460}],[-36,{"n":6,"e":5474}],[-35,{"n":4,"e":5482}],[-34,{"n":5.5,"e":5494}],[-32,{"n":5.5,"e":5515}],[-30,{"n":5.5,"e":5533}],[-29,{"n":4,"e":5538}],[-28,{"n":5,"e":5553}],[-27,{"n":6,"e":5567}],[-23,{"n":3.5,"e":5602}],[-16,{"n":4,"e":5675}],[-15,{"n":6,"e":5687}],[-14,{"n":4,"e":5695}],[-13,{"n":6,"e":5701}],[-12,{"n":5.5,"e":5713}],[-11,{"n":4.5,"e":5724}],[-10,{"n":5,"e":5733}],[-9,{"n":5.5,"e":5745}],[-8,{"n":6,"e":5753}],[-5,{"n":4,"e":5782,"s":1}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":5.5,"e":7472}]],"fo":[[5455,[{"t":"Y"}]],[5494,[{"t":"Y"}]],[5533,[{"t":"Y"}]],[5567,[{"t":"Y"}]]],"a":{"m":11,"a":13,"M":14,"n":7}}],[4679,{"n":"Insigne","f":"Lorenzo","fp":"A","r":30,"c":111,"s":{"g":1,"s":12,"n":2,"a":6,"d":1.41,"Og":6,"Os":195.5,"On":35,"Oa":5.59,"Od":0.97,"pm":7,"pa":28},"p":[[-38,{"n":6,"e":5455,"g":1}],[-37,{"n":5.5,"e":5460}],[-36,{"n":6,"e":5474}],[-35,{"n":5,"e":5482,"g":1}],[-34,{"n":6,"e":5494}],[-33,{"n":4.5,"e":5499,"s":1}],[-32,{"n":6,"e":5515}],[-31,{"n":6,"e":5521}],[-30,{"n":7,"e":5533,"g":1}],[-29,{"n":4,"e":5538}],[-28,{"n":5.5,"e":5553}],[-27,{"n":6,"e":5567}],[-26,{"n":7,"e":5573}],[-25,{"n":6,"e":5580,"g":1}],[-24,{"n":4.5,"e":5590,"s":1}],[-23,{"n":5,"e":5602}],[-22,{"n":6,"e":5615}],[-21,{"n":8,"e":5621,"g":1}],[-20,{"n":4.5,"e":5636}],[-19,{"n":5.5,"e":5641}],[-18,{"n":6,"e":5655}],[-17,{"n":6,"e":5665}],[-16,{"n":4.5,"e":5675}],[-15,{"n":3.5,"e":5687}],[-14,{"n":7,"e":5695}],[-13,{"n":5.5,"e":5701}],[-12,{"n":5,"e":5713}],[-11,{"n":5,"e":5724}],[-10,{"n":6.5,"e":5733}],[-9,{"n":5.5,"e":5745}],[-8,{"n":6,"e":5753}],[-7,{"n":4.5,"e":5766}],[-5,{"n":4.5,"e":5782}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7466}],[1,{"n":7,"e":7472,"g":1}]],"fo":[[5455,[{"t":"I"}]],[7466,[{"t":"I"}]]]}],[4691,{"n":"Manolas","f":"Kostas","fp":"DC","r":23,"c":111,"s":{"s":17,"n":3,"a":5.67,"d":0.29,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.29,"Og":3,"Os":146,"On":27,"Oa":5.41,"Od":0.91,"pd":27},"p":[[-38,{"n":4.5,"e":5455}],[-36,{"n":6,"e":5474}],[-34,{"n":6,"e":5494}],[-33,{"n":7,"e":5499,"g":1}],[-31,{"n":5.5,"e":5521}],[-30,{"n":5,"e":5533}],[-28,{"n":5,"e":5553,"s":1}],[-26,{"n":7.5,"e":5573,"g":1}],[-25,{"n":5.5,"e":5580}],[-24,{"n":5.5,"e":5590}],[-22,{"n":5,"e":5615}],[-21,{"n":5,"e":5621}],[-20,{"n":4,"e":5636}],[-19,{"n":5,"e":5641}],[-18,{"n":3.5,"e":5655}],[-17,{"n":4.5,"e":5665}],[-16,{"n":4.5,"e":5675}],[-15,{"n":5.5,"e":5687}],[-14,{"n":5,"e":5695}],[-11,{"n":4.5,"e":5724}],[-8,{"n":6,"e":5753}],[-7,{"n":6,"e":5766}],[-6,{"n":7,"e":5773,"g":1}],[-5,{"n":6,"e":5782}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7466}],[1,{"n":6,"e":7472}]],"fo":[[5474,[{"t":"I"}]]]}],[4729,{"n":"Mertens","f":"Dries","fp":"A","r":22,"c":111,"s":{"g":2,"s":21.5,"n":3,"a":7.17,"d":1.26,"Sg":2,"Ss":21.5,"Sn":3,"Sa":7.17,"Sd":1.26,"Og":8,"Os":169.5,"On":31,"Oa":5.47,"Od":1.13,"pm":2,"pa":29},"p":[[-38,{"n":7.5,"e":5455}],[-36,{"n":5.5,"e":5474,"s":1}],[-34,{"n":4.5,"e":5494}],[-33,{"n":4.5,"e":5499,"s":1}],[-32,{"n":7,"e":5515,"g":1}],[-31,{"n":6.5,"e":5521,"g":1}],[-30,{"n":5,"e":5533,"s":1}],[-29,{"n":4,"e":5538}],[-28,{"n":6,"e":5553,"g":1}],[-27,{"n":4.5,"e":5567,"s":1}],[-26,{"n":6,"e":5573,"s":1}],[-25,{"n":5,"e":5580}],[-24,{"n":7,"e":5590,"g":1}],[-23,{"n":5,"e":5602,"s":1}],[-22,{"n":6.5,"e":5615,"g":1,"s":1}],[-17,{"n":4,"e":5665,"s":1}],[-16,{"n":5.5,"e":5675,"s":1}],[-15,{"n":5,"e":5687}],[-14,{"n":4.5,"e":5695,"s":1}],[-13,{"n":5,"e":5701,"s":1}],[-12,{"n":6,"e":5713}],[-11,{"n":4.5,"e":5724}],[-10,{"n":5,"e":5733,"s":1}],[-9,{"n":4,"e":5745}],[-8,{"n":4,"e":5753,"s":1}],[-7,{"n":5,"e":5766}],[-6,{"n":5.5,"e":5773,"g":1}],[-5,{"n":5.5,"e":5782}],[4,{"n":6,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":8.5,"e":7466,"g":1}],[1,{"n":7,"e":7472,"g":1}]],"fo":[[5494,[{"t":"I"}]],[5474,[{"t":"Y"}]]],"a":{"m":20,"a":31,"M":42,"n":6}}],[5319,{"n":"Elmas","f":"Eljif","fp":"MO","r":14,"c":111,"s":{"g":1,"s":12.5,"n":2,"a":6.25,"d":1.77,"Og":2,"Os":126,"On":24,"Oa":5.25,"Od":0.79,"pm":23,"pa":1},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":5,"e":5460}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":5.5,"e":5482,"s":1}],[-34,{"n":5,"e":5494,"s":1}],[-33,{"n":5,"e":5499}],[-32,{"n":5,"e":5515,"s":1}],[-31,{"n":5.5,"e":5521}],[-30,{"n":5,"e":5533,"s":1}],[-28,{"n":7,"e":5553}],[-26,{"n":5,"e":5573,"s":1}],[-25,{"n":4.5,"e":5580}],[-24,{"n":5.5,"e":5590}],[-22,{"n":6.5,"e":5615,"g":1}],[-21,{"n":4.5,"e":5621,"s":1}],[-19,{"n":5,"e":5641,"s":1}],[-17,{"n":4.5,"e":5665,"s":1}],[-14,{"n":4.5,"e":5695}],[-13,{"n":5.5,"e":5701}],[-12,{"n":5.5,"e":5713,"s":1}],[-9,{"n":4,"e":5745}],[-6,{"n":5.5,"e":5773,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7.5,"e":7466,"g":1,"s":1}],[1,{"n":5,"e":7472,"s":1}]],"fo":[[5455,[{"t":"Y"}]]]}],[6018,{"n":"Osimhen","f":"Victor","fp":"A","r":21,"c":111,"s":{"g":1,"s":19,"n":3,"a":6.33,"d":1.53,"Sg":1,"Ss":19,"Sn":3,"Sa":6.33,"Sd":1.53,"Og":9,"Os":129,"On":24,"Oa":5.38,"Od":1.19,"pa":24},"p":[[-28,{"n":5,"e":3650}],[-27,{"n":5,"e":3664}],[-26,{"n":7,"e":3670}],[-25,{"n":6,"e":3681,"g":1}],[-24,{"n":7,"e":3689,"g":1}],[-23,{"n":5,"e":3699}],[-22,{"n":6,"e":3717,"g":1}],[-21,{"n":3.5,"e":3719}],[-20,{"n":4.5,"e":3731}],[-18,{"n":5,"e":3752}],[-17,{"n":6,"e":3758,"g":1}],[-16,{"n":6,"e":3773}],[-15,{"n":6,"e":3778,"g":1}],[-13,{"n":5,"e":3799}],[-12,{"n":4,"e":3812,"s":1}],[-11,{"n":4,"e":3819}],[-10,{"n":3,"e":3837}],[-9,{"n":5.5,"e":3841,"g":1}],[-8,{"n":4.5,"e":3854}],[-7,{"n":7,"e":3861,"g":1}],[-19,{"n":5,"e":3740,"g":1}],[4,{"n":8,"e":7449,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":6,"e":7466}],[1,{"n":5,"e":7472,"s":1}]],"fo":[[7466,[{"t":"Y"}]]]}],[6206,{"n":"Lozano","f":"Hirving","fp":"A","r":16,"c":111,"s":{"g":4,"s":22.5,"n":3,"a":7.5,"d":0.87,"Sg":4,"Ss":22.5,"Sn":3,"Sa":7.5,"Sd":0.87,"Og":7,"Os":136,"On":26,"Oa":5.23,"Od":1.12,"pm":2,"pa":24},"p":[[-38,{"n":4.5,"e":5455,"s":1}],[-37,{"n":4.5,"e":5460,"s":1}],[-35,{"n":5,"e":5482}],[-33,{"n":5,"e":5499}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":6.5,"e":5521,"g":1,"s":1}],[-30,{"n":4.5,"e":5533,"s":1}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":5.5,"e":5553,"s":1}],[-27,{"n":6,"e":5567,"g":1,"s":1}],[-23,{"n":4.5,"e":5602,"s":1}],[-20,{"n":5,"e":5636,"s":1}],[-19,{"n":4.5,"e":5641,"s":1}],[-18,{"n":5,"e":5655,"s":1}],[-16,{"n":4.5,"e":5675,"s":1}],[-15,{"n":4,"e":5687}],[-14,{"n":5.5,"e":5695}],[-13,{"n":6.5,"e":5701,"g":1}],[-12,{"n":5,"e":5713}],[-11,{"n":5.5,"e":5724,"s":1}],[-10,{"n":4,"e":5733}],[-7,{"n":3.5,"e":5766}],[-5,{"n":5,"e":5782}],[4,{"n":8,"e":7449,"g":2}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":8,"e":7466,"g":2}],[1,{"n":6.5,"e":7472}]],"fo":[[5460,[{"t":"Y"}]],[5482,[{"t":"Y"}]],[7449,[{"t":"Y"}]]]}],[6407,{"n":"Demme","f":"Diego","fp":"MD","r":9,"c":111,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":85,"On":17,"Oa":5,"Od":0.64,"pm":17},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":4.5,"e":5460}],[-35,{"n":5,"e":5482}],[-34,{"n":4.5,"e":5494,"s":1}],[-33,{"n":5.5,"e":5499}],[-32,{"n":5,"e":5515,"s":1}],[-30,{"n":5,"e":5533}],[-29,{"n":4,"e":5538}],[-27,{"n":6,"e":5567}],[-25,{"n":5,"e":5580}],[-24,{"n":5,"e":5590}],[-23,{"n":4,"e":5602}],[-22,{"n":6.5,"e":5615,"g":1,"s":1}],[-21,{"n":5.5,"e":5621}],[-20,{"n":4.5,"e":5636,"s":1}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":5,"e":7472}]],"fo":[[5494,[{"t":"Y"}]],[5533,[{"t":"Y"}]],[7472,[{"t":"Y"}]]]}],[7168,{"n":"Contini","f":"Nikita","fp":"G","r":1,"c":111,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[11,{"n":"Cyprien","f":"Wylan","fp":"MO","r":10,"c":114,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":4,"Os":82,"On":15,"Oa":5.47,"Od":1.38,"pm":15},"p":[[4,{"n":5,"e":7454,"s":1}],[-19,{"n":7,"e":3743}],[-16,{"n":4.5,"e":3776}],[-12,{"n":8,"e":3814,"g":1}],[-10,{"n":3,"e":3834}],[-9,{"n":4.5,"e":3843}],[-21,{"n":5,"e":3725}],[-20,{"n":6,"e":3729,"g":1}],[-18,{"n":5,"e":3751}],[-17,{"n":8,"e":3763,"g":2}],[-15,{"n":5.5,"e":3783}],[-14,{"n":6,"e":3793}],[-13,{"n":5.5,"e":3804}],[-8,{"n":5,"e":3854}],[-7,{"n":4,"e":3862}]],"a":{"m":11,"a":23,"M":36,"n":30}}],[116,{"n":"Karamoh","f":"Yann","fp":"A","r":10,"c":114,"s":{"g":1,"s":20.5,"n":4,"a":5.13,"d":1.03,"Sg":1,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":1.03,"Og":2,"Os":82,"On":17,"Oa":4.82,"Od":0.86,"pm":1,"pa":16},"p":[[-37,{"n":4.5,"e":5462,"s":1}],[-35,{"n":5.5,"e":5482}],[-34,{"n":5,"e":5495,"s":1}],[-33,{"n":4,"e":5501,"s":1}],[-32,{"n":4.5,"e":5516,"s":1}],[-31,{"n":4.5,"e":5524,"s":1}],[-30,{"n":3.5,"e":5534}],[-29,{"n":4.5,"e":5547,"s":1}],[-26,{"n":4.5,"e":5574,"s":1}],[-11,{"n":5,"e":5720}],[-10,{"n":4.5,"e":5734}],[-9,{"n":7,"e":5742,"g":1}],[-4,{"n":4.5,"e":5792,"s":1}],[4,{"n":6,"e":7454,"g":1}],[3,{"n":6,"e":7461}],[2,{"n":4,"e":7469}],[1,{"n":4.5,"e":7472,"s":1}]]}],[2863,{"n":"Cornelius","f":"Andreas","fp":"A","r":9,"c":114,"s":{"s":9,"n":2,"a":4.5,"Og":12,"Os":136.5,"On":26,"Oa":5.25,"Od":1.39,"pa":26},"p":[[-38,{"n":6,"e":5453,"g":1}],[-33,{"n":4.5,"e":5501}],[-31,{"n":5,"e":5524}],[-30,{"n":4,"e":5534,"s":1}],[-29,{"n":4,"e":5547}],[-28,{"n":4,"e":5554}],[-27,{"n":9,"e":5561,"g":3}],[-26,{"n":4,"e":5574}],[-25,{"n":5,"e":5586}],[-24,{"n":6,"e":5596}],[-23,{"n":4,"e":5603}],[-22,{"n":6,"e":5610,"g":1}],[-21,{"n":5,"e":5622}],[-20,{"n":6,"e":5632,"g":1,"s":1}],[-19,{"n":6,"e":5642,"g":1,"s":1}],[-16,{"n":4.5,"e":5675}],[-15,{"n":4.5,"e":5684}],[-14,{"n":4,"e":5696,"s":1}],[-12,{"n":7,"e":5714,"g":1}],[-8,{"n":9,"e":5754,"g":3,"s":1}],[-7,{"n":5,"e":5765}],[-6,{"n":6,"e":5774,"g":1}],[-5,{"n":4.5,"e":5783,"s":1}],[-4,{"n":4.5,"e":5792,"s":1}],[3,{"n":4.5,"e":7461,"s":1}],[1,{"n":4.5,"e":7472}]],"fo":[[5501,[{"t":"I"}]]]}],[4152,{"n":"Kasa","f":"Redi","fp":"MO","r":1,"c":114}],[4186,{"n":"Adorante","f":"Andrea","fp":"A","r":5,"c":114,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[2,{"n":4,"e":7469,"s":1}]]}],[4196,{"n":"Carriero","f":"Giuseppe","fp":"MD","r":1,"c":114}],[4234,{"n":"Nicolussi Caviglia","f":"Hans","fp":"MO","r":1,"c":114}],[4247,{"n":"Dini","f":"Andrea","fp":"G","r":1,"c":114}],[4366,{"n":"Pezzella","f":"Giuseppe","fp":"DL","r":8,"c":114,"s":{"s":13.5,"n":3,"a":4.5,"d":1.32,"Ss":10,"Sn":2,"Sa":5,"Sd":1.41,"Os":107.5,"On":23,"Oa":4.67,"Od":0.75,"pd":23},"p":[[-37,{"n":5,"e":5462,"s":1}],[-36,{"n":5.5,"e":5469,"s":1}],[-35,{"n":5,"e":5482}],[-34,{"n":3,"e":5495}],[-32,{"n":5,"e":5516,"s":1}],[-31,{"n":4.5,"e":5524}],[-30,{"n":5,"e":5534,"s":1}],[-28,{"n":4,"e":5554,"s":1}],[-24,{"n":5.5,"e":5596,"s":1}],[-23,{"n":5,"e":5603,"s":1}],[-18,{"n":3,"e":5648}],[-17,{"n":5,"e":5663,"s":1}],[-16,{"n":5,"e":5675,"s":1}],[-11,{"n":4.5,"e":5720}],[-10,{"n":4.5,"e":5734}],[-9,{"n":5,"e":5742,"s":1}],[-8,{"n":5,"e":5754,"s":1}],[-7,{"n":5,"e":5765}],[-6,{"n":5,"e":5774,"s":1}],[-4,{"n":4.5,"e":5792}],[4,{"n":4,"e":7454}],[3,{"n":6,"e":7461}],[1,{"n":3.5,"e":7472}]],"fo":[[7472,[{"t":"Y"}]]]}],[4408,{"n":"Ricci","f":"Giacomo","fp":"DL","r":1,"c":114}],[4418,{"n":"Grassi","f":"Alberto","fp":"MD","r":9,"c":114,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Og":1,"Os":91.5,"On":18,"Oa":5.08,"Od":0.83,"pm":18},"p":[[-35,{"n":5.5,"e":5482}],[-33,{"n":5.5,"e":5501}],[-32,{"n":5.5,"e":5516,"s":1}],[-30,{"n":5,"e":5534,"s":1}],[-26,{"n":6,"e":5574}],[-24,{"n":4.5,"e":5596,"s":1}],[-21,{"n":4.5,"e":5622,"s":1}],[-19,{"n":6,"e":5642}],[-18,{"n":3,"e":5648}],[-17,{"n":7,"e":5663,"g":1,"s":1}],[-16,{"n":5,"e":5675,"s":1}],[-15,{"n":5,"e":5684,"s":1}],[-14,{"n":5,"e":5696,"s":1}],[-13,{"n":4.5,"e":5699,"s":1}],[4,{"n":5,"e":7454,"s":1}],[3,{"n":4.5,"e":7461,"s":1}],[2,{"n":5,"e":7469,"s":1}],[1,{"n":5,"e":7472}]],"fo":[[5482,[{"t":"I"},{"t":"Y"}]],[5501,[{"t":"Y"}]]]}],[4521,{"n":"Gagliolo","f":"Riccardo","fp":"DL","r":14,"c":114,"s":{"s":10,"n":2,"a":5,"d":0.71,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Og":2,"Os":159.5,"On":31,"Oa":5.15,"Od":0.95,"pd":30,"pm":1},"p":[[-38,{"n":4.5,"e":5453}],[-37,{"n":4.5,"e":5462}],[-34,{"n":4.5,"e":5495}],[-33,{"n":4,"e":5501}],[-32,{"n":6,"e":5516}],[-30,{"n":4,"e":5534}],[-29,{"n":6,"e":5547,"g":1}],[-28,{"n":4.5,"e":5554}],[-27,{"n":6.5,"e":5561}],[-26,{"n":5,"e":5574}],[-25,{"n":5,"e":5586}],[-24,{"n":5,"e":5596}],[-23,{"n":5,"e":5603}],[-22,{"n":3,"e":5610}],[-21,{"n":7,"e":5622,"g":1}],[-20,{"n":5,"e":5632}],[-19,{"n":6.5,"e":5642}],[-17,{"n":4.5,"e":5663}],[-16,{"n":5,"e":5675}],[-15,{"n":6,"e":5684}],[-14,{"n":4.5,"e":5696}],[-13,{"n":5,"e":5699}],[-12,{"n":7,"e":5714}],[-11,{"n":5,"e":5720,"s":1}],[-9,{"n":4.5,"e":5742}],[-8,{"n":7,"e":5754}],[-7,{"n":5,"e":5765}],[-6,{"n":5,"e":5774}],[-5,{"n":5,"e":5783}],[4,{"n":4.5,"e":7454}],[3,{"n":5.5,"e":7461,"s":1}]]}],[4531,{"n":"Sprocati","f":"Mattia","fp":"MO","r":6,"c":114,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":100.5,"On":20,"Oa":5.03,"Od":0.55,"pm":16,"pa":4},"p":[[-36,{"n":4.5,"e":5469,"s":1}],[-32,{"n":4.5,"e":5516}],[-31,{"n":5,"e":5524,"s":1}],[-30,{"n":5,"e":5534,"s":1}],[-23,{"n":5,"e":5603,"s":1}],[-22,{"n":5,"e":5610,"s":1}],[-20,{"n":5,"e":5632,"s":1}],[-18,{"n":4,"e":5648}],[-17,{"n":5,"e":5663}],[-16,{"n":5.5,"e":5675,"s":1}],[-14,{"n":5,"e":5696,"s":1}],[-13,{"n":5,"e":5699}],[-12,{"n":7,"e":5714,"g":1,"s":1}],[-11,{"n":5,"e":5720,"s":1}],[-10,{"n":5,"e":5734,"s":1}],[-9,{"n":5,"e":5742,"s":1}],[-7,{"n":5,"e":5765,"s":1}],[-5,{"n":5,"e":5783,"s":1}],[-4,{"n":5,"e":5792,"s":1}],[2,{"n":5,"e":7469,"s":1}]]}],[4632,{"n":"Kurtic","f":"Jasmin","fp":"MO","r":21,"c":114,"s":{"g":1,"s":10.5,"n":2,"a":5.25,"d":2.47,"Sg":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":2.47,"Og":4,"Os":186,"On":34,"Oa":5.47,"Od":0.81,"pm":32,"pa":2},"p":[[-38,{"n":5.5,"e":5453}],[-37,{"n":4.5,"e":5462}],[-36,{"n":6,"e":5469}],[-35,{"n":5.5,"e":5482}],[-34,{"n":4,"e":5495}],[-33,{"n":7,"e":5501,"g":1}],[-32,{"n":6,"e":5516,"g":1}],[-31,{"n":5,"e":5524,"s":1}],[-30,{"n":5.5,"e":5534}],[-29,{"n":5,"e":5547,"s":1}],[-28,{"n":5.5,"e":5554}],[-27,{"n":7,"e":5561}],[-26,{"n":5.5,"e":5574}],[-25,{"n":5.5,"e":5586}],[-24,{"n":6,"e":5596}],[-23,{"n":5.5,"e":5603}],[-22,{"n":7,"e":5610}],[-21,{"n":5.5,"e":5622}],[-20,{"n":5.5,"e":5632}],[-19,{"n":5.5,"e":5642}],[-18,{"n":5,"e":5657}],[-17,{"n":5.5,"e":5666}],[-15,{"n":5.5,"e":5683}],[-14,{"n":5,"e":5692}],[-13,{"n":6,"e":5703}],[-12,{"n":5,"e":5717}],[-11,{"n":4.5,"e":5725}],[-10,{"n":5,"e":5732}],[-9,{"n":6,"e":5745,"g":1}],[-8,{"n":6,"e":5749}],[-7,{"n":5,"e":5765}],[-5,{"n":4.5,"e":5785}],[4,{"n":3.5,"e":7454}],[3,{"n":7,"e":7461,"g":1}]],"fo":[[5453,[{"t":"Y"}]],[5524,[{"t":"Y"}]],[5534,[{"t":"Y"}]],[5554,[{"t":"Y"}]]]}],[4653,{"n":"Laurini","f":"Vincent","fp":"DL","r":8,"c":114,"s":{"s":12,"n":3,"a":4,"d":1,"Ss":12,"Sn":3,"Sa":4,"Sd":1,"Os":76,"On":16,"Oa":4.75,"Od":0.93,"pd":16},"p":[[-38,{"n":4.5,"e":5453}],[-36,{"n":6,"e":5469}],[-34,{"n":3.5,"e":5495}],[-32,{"n":5,"e":5516}],[-29,{"n":4.5,"e":5547}],[-28,{"n":5,"e":5554}],[-27,{"n":7,"e":5561}],[-25,{"n":5,"e":5586,"s":1}],[-24,{"n":5,"e":5596,"s":1}],[-21,{"n":5,"e":5622,"s":1}],[-18,{"n":4.5,"e":5648,"s":1}],[-13,{"n":5,"e":5699,"s":1}],[-6,{"n":4,"e":5774}],[4,{"n":4,"e":7454}],[3,{"n":5,"e":7461}],[2,{"n":3,"e":7469}]],"fo":[[5561,[{"t":"Y"}]],[7469,[{"t":"Y"}]]]}],[4661,{"n":"Inglese","f":"Roberto","fp":"A","r":8,"c":114,"s":{"s":3.5,"n":1,"a":3.5,"Og":3,"Os":68,"On":15,"Oa":4.53,"Od":0.88,"pa":15},"p":[[-38,{"n":6,"e":5453,"g":1,"s":1}],[-36,{"n":4.5,"e":5469,"s":1}],[-35,{"n":4.5,"e":5482,"s":1}],[-34,{"n":4.5,"e":5495,"s":1}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":6,"e":5516,"g":1,"s":1}],[-20,{"n":4,"e":5632}],[-19,{"n":4.5,"e":5642}],[-18,{"n":4,"e":5648,"s":1}],[-8,{"n":4.5,"e":5754}],[-7,{"n":4,"e":5765,"s":1}],[-6,{"n":6,"e":5774,"g":1,"s":1}],[-5,{"n":3.5,"e":5783}],[-4,{"n":3.5,"e":5792}],[1,{"n":3.5,"e":7472}]]}],[4673,{"n":"Dezi","f":"Jacopo","fp":"MO","r":6,"c":114,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pm":1,"pa":1},"p":[[2,{"n":4,"e":7469}],[1,{"n":4.5,"e":7472,"s":1}]]}],[4685,{"n":"Kucka","f":"Juraj","fp":"MD","r":14,"c":114,"s":{"s":19,"n":4,"a":4.75,"d":1.04,"Ss":19,"Sn":4,"Sa":4.75,"Sd":1.04,"Og":6,"Os":156.5,"On":29,"Oa":5.4,"Od":1.18,"pm":23,"pa":6},"p":[[-37,{"n":6,"e":5462}],[-36,{"n":4.5,"e":5469}],[-32,{"n":4,"e":5516}],[-31,{"n":6,"e":5524,"g":1}],[-30,{"n":7,"e":5534,"g":1}],[-28,{"n":6.5,"e":5554}],[-27,{"n":5,"e":5561,"s":1}],[-25,{"n":7,"e":5586,"g":1}],[-23,{"n":5,"e":5603}],[-22,{"n":6,"e":5610,"g":1}],[-21,{"n":6.5,"e":5622}],[-20,{"n":5.5,"e":5632}],[-19,{"n":7,"e":5642}],[-18,{"n":2.5,"e":5648}],[-17,{"n":4.5,"e":5663,"s":1}],[-15,{"n":6,"e":5684,"g":1}],[-14,{"n":4,"e":5696}],[-13,{"n":6,"e":5699}],[-12,{"n":5.5,"e":5714}],[-11,{"n":6,"e":5720}],[-10,{"n":4,"e":5734}],[-9,{"n":6,"e":5742}],[-8,{"n":7.5,"e":5754,"g":1}],[-7,{"n":4.5,"e":5765}],[-6,{"n":5,"e":5774,"s":1}],[4,{"n":5,"e":7454}],[3,{"n":6,"e":7461}],[2,{"n":3.5,"e":7469}],[1,{"n":4.5,"e":7472}]],"fo":[[5554,[{"t":"R"},{"t":"Y"}]],[5462,[{"t":"Y"}]],[5534,[{"t":"Y"}]],[7469,[{"t":"Y"}]],[7472,[{"t":"Y"}]]]}],[4699,{"n":"Scozzarella","f":"Matteo","fp":"MD","r":5,"c":114,"s":{"Os":86.5,"On":16,"Oa":5.41,"Od":0.74,"pm":16},"p":[[-32,{"n":4,"e":5516}],[-31,{"n":5,"e":5524,"s":1}],[-28,{"n":4.5,"e":5554}],[-27,{"n":5,"e":5561,"s":1}],[-25,{"n":5,"e":5586}],[-21,{"n":6.5,"e":5622}],[-20,{"n":5,"e":5632}],[-19,{"n":5,"e":5642,"s":1}],[-13,{"n":5.5,"e":5699}],[-12,{"n":5.5,"e":5714}],[-11,{"n":6.5,"e":5720}],[-9,{"n":6,"e":5742}],[-8,{"n":6.5,"e":5754}],[-7,{"n":5,"e":5765,"s":1}],[-6,{"n":6,"e":5774}],[-5,{"n":5.5,"e":5783}]]}],[4713,{"n":"Sepe","f":"Luigi","fp":"G","r":11,"c":114,"s":{"s":17,"n":4,"a":4.25,"d":1.19,"Ss":17,"Sn":4,"Sa":4.25,"Sd":1.19,"Os":194,"On":35,"Oa":5.54,"Od":1.25,"pg":35},"p":[[-38,{"n":4.5,"e":5453}],[-37,{"n":4,"e":5462}],[-36,{"n":5,"e":5469}],[-35,{"n":6,"e":5482}],[-34,{"n":3.5,"e":5495}],[-33,{"n":4.5,"e":5501}],[-32,{"n":5,"e":5516}],[-31,{"n":6,"e":5524}],[-30,{"n":6,"e":5534}],[-29,{"n":4,"e":5547}],[-28,{"n":5,"e":5554}],[-27,{"n":7,"e":5561}],[-25,{"n":8,"e":5586}],[-21,{"n":7,"e":5622}],[-20,{"n":5,"e":5632}],[-19,{"n":6.5,"e":5642}],[-18,{"n":4,"e":5648}],[-17,{"n":5.5,"e":5663}],[-16,{"n":7,"e":5675}],[-15,{"n":8,"e":5684}],[-14,{"n":6.5,"e":5696}],[-13,{"n":5.5,"e":5699}],[-12,{"n":7,"e":5714}],[-11,{"n":5,"e":5720}],[-10,{"n":5,"e":5734}],[-9,{"n":5,"e":5742}],[-8,{"n":6,"e":5754}],[-7,{"n":6,"e":5765}],[-6,{"n":6,"e":5774}],[-5,{"n":6.5,"e":5783}],[-4,{"n":7,"e":5792}],[4,{"n":4,"e":7454}],[3,{"n":6,"e":7461}],[2,{"n":3.5,"e":7469}],[1,{"n":3.5,"e":7472}]]}],[4749,{"n":"Colombi","f":"Simone","fp":"G","r":8,"c":114,"s":{"Os":25,"On":4,"Oa":6.25,"Od":0.65,"pg":4},"p":[[-26,{"n":5.5,"e":5574}],[-24,{"n":7,"e":5596}],[-23,{"n":6,"e":5603}],[-22,{"n":6.5,"e":5610}]]}],[4766,{"n":"Gervinho","f":"","fp":"A","r":9,"c":114,"s":{"s":12.5,"n":3,"a":4.17,"d":1.04,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":1.04,"Og":6,"Os":148,"On":31,"Oa":4.77,"Od":1.03,"pa":31},"p":[[-38,{"n":4.5,"e":5453,"s":1}],[-37,{"n":4,"e":5462}],[-36,{"n":4,"e":5469}],[-35,{"n":4.5,"e":5482,"s":1}],[-34,{"n":6,"e":5495,"g":1}],[-33,{"n":3.5,"e":5501}],[-31,{"n":4.5,"e":5524}],[-30,{"n":4,"e":5534}],[-29,{"n":4,"e":5547,"s":1}],[-28,{"n":6,"e":5554,"g":1}],[-27,{"n":5.5,"e":5561}],[-26,{"n":4.5,"e":5574}],[-25,{"n":5,"e":5586}],[-24,{"n":6,"e":5596,"g":1}],[-19,{"n":4.5,"e":5642,"s":1}],[-17,{"n":3.5,"e":5663}],[-16,{"n":7,"e":5675,"g":1}],[-15,{"n":5,"e":5684}],[-14,{"n":4,"e":5696}],[-12,{"n":4.5,"e":5714}],[-11,{"n":6,"e":5720,"g":1}],[-10,{"n":4,"e":5734}],[-9,{"n":6.5,"e":5742,"g":1}],[-8,{"n":6.5,"e":5754}],[-7,{"n":4,"e":5765}],[-6,{"n":6,"e":5774}],[-5,{"n":4.5,"e":5783}],[-4,{"n":3.5,"e":5792}],[4,{"n":4.5,"e":7454}],[3,{"n":5,"e":7461}],[2,{"n":3,"e":7469}]]}],[4767,{"n":"Gazzola","f":"Marcello","fp":"DL","r":7,"c":114}],[4791,{"n":"Iacoponi","f":"Simone","fp":"DC","r":8,"c":114,"s":{"ao":1,"s":10.5,"n":3,"a":3.5,"d":0.87,"Sao":1,"Ss":3,"Sn":1,"Sa":3,"Og":2,"Oao":1,"Os":171.5,"On":36,"Oa":4.76,"Od":0.97,"pd":36},"p":[[-37,{"n":4.5,"e":5462,"s":1}],[-36,{"n":5,"e":5469}],[-35,{"n":5,"e":5482,"s":1}],[-34,{"n":3.5,"e":5495}],[-33,{"n":4,"e":5501}],[-32,{"n":4.5,"e":5516}],[-31,{"n":5,"e":5524}],[-30,{"n":5.5,"e":5534}],[-29,{"n":4,"e":5547}],[-27,{"n":5,"e":5561}],[-26,{"n":5,"e":5574}],[-25,{"n":4,"e":5586}],[-24,{"n":6,"e":5596}],[-23,{"n":5,"e":5603}],[-22,{"n":4.5,"e":5610}],[-21,{"n":6,"e":5622}],[-20,{"n":4,"e":5632}],[-19,{"n":7,"e":5642,"g":1}],[-18,{"n":2.5,"e":5648}],[-17,{"n":4.5,"e":5663}],[-16,{"n":5.5,"e":5675}],[-15,{"n":6,"e":5684}],[-14,{"n":4.5,"e":5696}],[-13,{"n":6,"e":5699,"g":1}],[-12,{"n":6,"e":5714}],[-11,{"n":5.5,"e":5720}],[-10,{"n":4.5,"e":5734}],[-9,{"n":5,"e":5742}],[-8,{"n":5.5,"e":5754}],[-7,{"n":4.5,"e":5765}],[-6,{"n":4,"e":5774}],[-5,{"n":5.5,"e":5783}],[-4,{"n":4,"e":5792}],[4,{"n":3,"e":7454,"a":1}],[2,{"n":3,"e":7469}],[1,{"n":4.5,"e":7472}]],"fo":[[7469,[{"t":"R"}]],[5482,[{"t":"Y"}]],[5547,[{"t":"Y"}]],[5561,[{"t":"Y"}]],[5586,[{"t":"Y"}]],[7454,[{"t":"Y"}]]]}],[4800,{"n":"Bruno Alves","f":"","fp":"DC","r":8,"c":114,"s":{"s":12.5,"n":3,"a":4.17,"d":1.26,"Os":160.5,"On":33,"Oa":4.86,"Od":1.04,"pd":33},"p":[[-38,{"n":3,"e":5453}],[-37,{"n":4.5,"e":5462}],[-36,{"n":5,"e":5469,"s":1}],[-35,{"n":6,"e":5482}],[-33,{"n":4.5,"e":5501}],[-32,{"n":3,"e":5516}],[-31,{"n":4.5,"e":5524}],[-30,{"n":5.5,"e":5534}],[-29,{"n":3.5,"e":5547}],[-28,{"n":4,"e":5554}],[-27,{"n":5.5,"e":5561}],[-26,{"n":4.5,"e":5574}],[-25,{"n":4.5,"e":5586}],[-24,{"n":5.5,"e":5596}],[-23,{"n":5.5,"e":5603}],[-22,{"n":5,"e":5610}],[-21,{"n":7,"e":5622}],[-20,{"n":4.5,"e":5632}],[-19,{"n":5.5,"e":5642}],[-18,{"n":2.5,"e":5648}],[-17,{"n":5.5,"e":5663}],[-16,{"n":6,"e":5675}],[-15,{"n":6,"e":5684}],[-14,{"n":5,"e":5696}],[-13,{"n":5.5,"e":5699}],[-12,{"n":5,"e":5714,"s":1}],[-7,{"n":5,"e":5765}],[-6,{"n":6,"e":5774}],[-5,{"n":6,"e":5783}],[-4,{"n":4.5,"e":5792}],[3,{"n":5.5,"e":7461}],[2,{"n":3,"e":7469}],[1,{"n":4,"e":7472}]],"fo":[[5453,[{"t":"Y"}]],[5516,[{"t":"Y"}]],[7461,[{"t":"Y"}]],[7472,[{"t":"Y"}]]]}],[5965,{"n":"Brugman","f":"Gastón","fp":"MD","r":18,"c":114,"s":{"s":22,"n":4,"a":5.5,"d":0.58,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.58,"Os":134,"On":25,"Oa":5.36,"Od":0.68,"pm":25},"p":[[-35,{"n":6.5,"e":5482}],[-34,{"n":6,"e":5495}],[-33,{"n":4.5,"e":5501}],[-30,{"n":4.5,"e":5534}],[-29,{"n":5.5,"e":5547}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":6.5,"e":5561}],[-26,{"n":5.5,"e":5574}],[-25,{"n":4.5,"e":5586,"s":1}],[-24,{"n":6,"e":5596}],[-23,{"n":5,"e":5603}],[-22,{"n":6,"e":5610}],[-18,{"n":5,"e":5648,"s":1}],[-17,{"n":4.5,"e":5663}],[-16,{"n":6,"e":5675}],[-15,{"n":6,"e":5684,"s":1}],[-14,{"n":5,"e":5696}],[-13,{"n":5,"e":5699,"s":1}],[-10,{"n":6,"e":5734}],[-5,{"n":4.5,"e":5783,"s":1}],[-4,{"n":4.5,"e":5792}],[4,{"n":5,"e":7454}],[3,{"n":6,"e":7461}],[2,{"n":6,"e":7469}],[1,{"n":5,"e":7472}]],"fo":[[5482,[{"t":"Y"}]],[5534,[{"t":"Y"}]],[5586,[{"t":"Y"}]],[7454,[{"t":"Y"}]]]}],[6113,{"n":"Hernani","f":"","fp":"MD","r":17,"c":114,"s":{"g":2,"s":21.5,"n":4,"a":5.38,"d":1.25,"Sg":2,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":1.25,"Og":2,"Os":177.5,"On":33,"Oa":5.38,"Od":0.94,"pm":33},"p":[[-38,{"n":6,"e":5453}],[-34,{"n":4.5,"e":5495}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":4.5,"e":5516}],[-31,{"n":5.5,"e":5524}],[-29,{"n":4.5,"e":5547}],[-28,{"n":4.5,"e":5554,"s":1}],[-27,{"n":6,"e":5561}],[-25,{"n":4.5,"e":5586,"s":1}],[-24,{"n":6,"e":5596}],[-23,{"n":6,"e":5603}],[-22,{"n":5.5,"e":5610}],[-21,{"n":5.5,"e":5622}],[-20,{"n":6.5,"e":5632}],[-19,{"n":7.5,"e":5642}],[-18,{"n":3.5,"e":5648}],[-17,{"n":5.5,"e":5663}],[-16,{"n":6,"e":5675}],[-15,{"n":6,"e":5684}],[-14,{"n":5,"e":5696}],[-12,{"n":7,"e":5714}],[-11,{"n":5.5,"e":5720}],[-10,{"n":5,"e":5734,"s":1}],[-9,{"n":6,"e":5742}],[-8,{"n":5,"e":5754,"s":1}],[-7,{"n":3.5,"e":5765}],[-6,{"n":5,"e":5774}],[-5,{"n":6,"e":5783}],[-4,{"n":5,"e":5792}],[4,{"n":7,"e":7454,"g":1}],[3,{"n":5,"e":7461}],[2,{"n":5.5,"e":7469,"g":1}],[1,{"n":4,"e":7472}]],"fo":[[5547,[{"t":"Y"}]]]}],[6322,{"n":"Balogh","f":"Botond","fp":"DC","r":1,"c":114}],[7282,{"n":"Rinaldi","f":"Filippo","fp":"G","r":1,"c":114}],[7348,{"n":"Valenti","f":"Lautaro","fp":"DC","r":3,"c":114}],[7369,{"n":"Busi","f":"Maxime","fp":"DL","r":6,"c":114}],[7370,{"n":"Sohm","f":"Simon","fp":"MO","r":6,"c":114,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[4,{"n":5,"e":7454,"s":1}]]}],[7372,{"n":"Mihaila","f":"Mihai Valentin","fp":"A","r":8,"c":114}],[7374,{"n":"Brunetta","f":"Juan","fp":"MO","r":6,"c":114}],[7380,{"n":"Osorio","f":"Yordan","fp":"DC","r":7,"c":114}],[68,{"n":"Veretout","f":"Jordan","fp":"MD","r":27,"c":116,"s":{"g":3,"s":24,"n":4,"a":6,"d":1.08,"Sg":1,"Ss":5,"Sn":1,"Sa":5,"Og":9,"Os":195,"On":35,"Oa":5.57,"Od":1.02,"pm":35},"p":[[3,{"n":5.5,"e":7458}],[1,{"n":6,"e":7471}],[-22,{"n":5.5,"e":5616,"g":1}],[-37,{"n":5,"e":5465,"s":1}],[-36,{"n":7.5,"e":5475,"g":2}],[-34,{"n":5.5,"e":5496}],[-33,{"n":6.5,"e":5502,"g":1}],[-32,{"n":6,"e":5508}],[-31,{"n":7,"e":5524,"g":1}],[-30,{"n":4.5,"e":5533}],[-28,{"n":4.5,"e":5552}],[-27,{"n":5.5,"e":5564}],[-26,{"n":4.5,"e":5568,"s":1}],[-25,{"n":7,"e":5584}],[-24,{"n":5.5,"e":5588,"s":1}],[-23,{"n":5,"e":5604}],[-21,{"n":6,"e":5623}],[-20,{"n":5,"e":5631}],[-19,{"n":4,"e":5643}],[-18,{"n":4,"e":5656}],[-17,{"n":6,"e":5659}],[-16,{"n":6,"e":5676}],[-15,{"n":4.5,"e":5680}],[-14,{"n":5.5,"e":5697}],[-13,{"n":6.5,"e":5702}],[-12,{"n":4.5,"e":5714}],[-11,{"n":7.5,"e":5724,"g":1}],[-10,{"n":7,"e":5737}],[-9,{"n":5.5,"e":5744}],[-8,{"n":5,"e":5755}],[-7,{"n":5.5,"e":5764}],[-6,{"n":5,"e":5771}],[-5,{"n":4,"e":5784}],[4,{"n":5,"e":7503,"g":1}],[2,{"n":7.5,"e":7468,"g":2}]],"fo":[[5533,[{"t":"Y"}]],[5552,[{"t":"Y"}]],[7503,[{"t":"Y"}]]],"a":{"m":23,"a":32,"M":35,"n":5}}],[254,{"n":"Pastore","f":"Javier","fp":"MO","r":5,"c":116,"s":{"Os":45,"On":8,"Oa":5.63,"Od":1.13,"pm":8},"p":[[-28,{"n":4.5,"e":5552,"s":1}],[-27,{"n":5.5,"e":5564}],[-21,{"n":5,"e":5623,"s":1}],[-12,{"n":4.5,"e":5714}],[-11,{"n":6,"e":5724}],[-10,{"n":8,"e":5737}],[-9,{"n":6,"e":5744}],[-8,{"n":5.5,"e":5755,"s":1}]]}],[607,{"n":"Pedro","f":"","fp":"A","r":18,"c":116,"s":{"g":2,"s":25,"n":4,"a":6.25,"d":0.87,"Sg":2,"Ss":25,"Sn":4,"Sa":6.25,"Sd":0.87,"Og":3,"Os":73.5,"On":13,"Oa":5.65,"Od":0.97,"pm":3,"pa":10},"p":[[-38,{"n":4.5,"e":3930,"s":1}],[-31,{"n":5,"e":3999,"s":1}],[-29,{"n":7.5,"e":4020,"g":1}],[-28,{"n":6,"e":4029}],[-25,{"n":5.5,"e":4061}],[-19,{"n":4.5,"e":4120,"s":1}],[-14,{"n":5,"e":4169}],[-7,{"n":5,"e":4241}],[-26,{"n":5.5,"e":4051}],[4,{"n":7,"e":7503,"g":1}],[3,{"n":7,"e":7458,"g":1}],[2,{"n":5.5,"e":7468}],[1,{"n":5.5,"e":7471}]]}],[676,{"n":"Mkhitaryan","f":"Henrikh","fp":"MO","r":29,"c":116,"s":{"s":24,"n":4,"a":6,"d":1.22,"Ss":24,"Sn":4,"Sa":6,"Sd":1.22,"Og":8,"Os":141,"On":24,"Oa":5.88,"Od":1.13,"pm":16,"pa":8},"p":[[-37,{"n":6,"e":5465}],[-36,{"n":4.5,"e":5475}],[-34,{"n":7,"e":5496,"g":1}],[-33,{"n":5.5,"e":5502}],[-31,{"n":7.5,"e":5524,"g":1}],[-30,{"n":7,"e":5533,"g":1}],[-29,{"n":5,"e":5544,"s":1}],[-28,{"n":4.5,"e":5552}],[-27,{"n":5.5,"e":5564}],[-26,{"n":8,"e":5568,"g":1}],[-25,{"n":8,"e":5584,"g":1}],[-24,{"n":4.5,"e":5588}],[-23,{"n":6,"e":5604,"g":1}],[-18,{"n":5.5,"e":5656,"s":1}],[-17,{"n":5,"e":5659,"s":1}],[-16,{"n":6,"e":5676,"g":1,"s":1}],[-15,{"n":4.5,"e":5680}],[-14,{"n":6,"e":5697,"g":1,"s":1}],[-6,{"n":6,"e":5771}],[-5,{"n":5,"e":5784,"s":1}],[4,{"n":7.5,"e":7503}],[3,{"n":6,"e":7458}],[2,{"n":6,"e":7468}],[1,{"n":4.5,"e":7471}]],"fo":[[5524,[{"t":"Y"}]],[5544,[{"t":"Y"}]],[5564,[{"t":"Y"}]]],"a":{"m":29,"a":38,"M":45,"n":7}}],[749,{"n":"Smalling","f":"Chris","fp":"DC","r":8,"c":116,"s":{"Og":3,"Os":166.5,"On":30,"Oa":5.55,"Od":1.2,"pd":30},"p":[[-38,{"n":6,"e":5452}],[-37,{"n":7,"e":5465,"g":1}],[-36,{"n":5.5,"e":5475}],[-35,{"n":7,"e":5483}],[-34,{"n":5,"e":5496,"s":1}],[-30,{"n":4.5,"e":5533}],[-29,{"n":4.5,"e":5544}],[-28,{"n":4.5,"e":5552}],[-27,{"n":5.5,"e":5564}],[-26,{"n":3.5,"e":5568}],[-25,{"n":7,"e":5584}],[-24,{"n":4.5,"e":5588}],[-23,{"n":5,"e":5604}],[-22,{"n":4,"e":5616}],[-21,{"n":6,"e":5623}],[-20,{"n":5.5,"e":5631}],[-19,{"n":5,"e":5643}],[-18,{"n":3.5,"e":5656}],[-17,{"n":6,"e":5659}],[-15,{"n":6,"e":5680}],[-14,{"n":6,"e":5697}],[-13,{"n":8,"e":5702,"g":1}],[-12,{"n":4,"e":5714}],[-11,{"n":6,"e":5724}],[-10,{"n":8,"e":5737,"g":1}],[-9,{"n":5.5,"e":5744}],[-8,{"n":6,"e":5755}],[-7,{"n":6,"e":5764}],[-6,{"n":7,"e":5771}],[-5,{"n":4.5,"e":5784}]],"fo":[[5533,[{"t":"I"}]],[5452,[{"t":"Y"}]]]}],[1889,{"n":"Mayoral","f":"Borja","fp":"A","r":6,"c":116,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Og":7,"Os":161,"On":33,"Oa":4.88,"Od":1.15,"pa":33},"p":[[4,{"n":4,"e":7179,"s":1}],[3,{"n":4,"e":7188,"s":1}],[-38,{"n":5,"e":4313,"s":1}],[-36,{"n":6,"e":4333}],[-35,{"n":5,"e":4343,"s":1}],[-34,{"n":4.5,"e":4353}],[-33,{"n":5,"e":4366}],[-32,{"n":7,"e":4374,"g":1}],[-30,{"n":6,"e":4391,"g":1}],[-29,{"n":5,"e":4402}],[-28,{"n":5,"e":4417,"s":1}],[-25,{"n":4,"e":4443}],[-24,{"n":6,"e":4457,"g":1}],[-23,{"n":5,"e":4463}],[-21,{"n":3.5,"e":4483}],[-20,{"n":4,"e":4492}],[-16,{"n":4.5,"e":4532,"s":1}],[-15,{"n":3,"e":4543}],[-14,{"n":5,"e":4552}],[-13,{"n":4,"e":4559}],[-11,{"n":6,"e":4586,"g":1}],[-10,{"n":5,"e":4593,"s":1}],[-9,{"n":4.5,"e":4607,"s":1}],[-7,{"n":5,"e":4625}],[-6,{"n":4,"e":4633,"s":1}],[-37,{"n":6.5,"e":4320,"g":1}],[-31,{"n":4,"e":4382,"s":1}],[-26,{"n":3.5,"e":4429}],[-22,{"n":4.5,"e":4469,"s":1}],[-19,{"n":3.5,"e":4499}],[-18,{"n":8,"e":4511,"g":1,"s":1}],[-12,{"n":7,"e":4572,"g":1}],[4,{"n":4,"e":7503,"s":1}]]}],[2451,{"n":"López","f":"Pau","fp":"G","r":8,"c":116,"s":{"Os":149.5,"On":28,"Oa":5.34,"Od":1.03,"pg":28},"p":[[-37,{"n":3.5,"e":5465}],[-36,{"n":4,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":4.5,"e":5496}],[-33,{"n":4.5,"e":5502}],[-31,{"n":5,"e":5524}],[-30,{"n":7,"e":5533}],[-26,{"n":6,"e":5568}],[-25,{"n":6,"e":5584}],[-24,{"n":5.5,"e":5588}],[-23,{"n":4,"e":5604}],[-22,{"n":4.5,"e":5616}],[-21,{"n":4,"e":5623}],[-20,{"n":6,"e":5631}],[-19,{"n":5,"e":5643}],[-18,{"n":6,"e":5656}],[-17,{"n":6,"e":5659}],[-16,{"n":6,"e":5676}],[-14,{"n":5,"e":5697}],[-13,{"n":6,"e":5702}],[-12,{"n":6,"e":5714}],[-11,{"n":5,"e":5724}],[-10,{"n":7,"e":5737}],[-9,{"n":6,"e":5744}],[-8,{"n":6.5,"e":5755}],[-7,{"n":5,"e":5764}],[-6,{"n":7,"e":5771}],[-5,{"n":3.5,"e":5784}]],"fo":[[5496,[{"t":"Y"}]]]}],[2452,{"n":"Pérez","f":"Carles","fp":"MO","r":14,"c":116,"s":{"g":1,"s":11,"n":2,"a":5.5,"d":1.41,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":1.41,"Og":2,"Os":108.5,"On":21,"Oa":5.17,"Od":0.91,"pm":6,"pa":15},"p":[[-37,{"n":5.5,"e":5465}],[-36,{"n":5,"e":5475,"s":1}],[-35,{"n":7,"e":5483,"g":1}],[-34,{"n":4,"e":5496,"s":1}],[-32,{"n":7,"e":5508}],[-31,{"n":4.5,"e":5524,"s":1}],[-29,{"n":5.5,"e":5544}],[-28,{"n":4,"e":5552,"s":1}],[-27,{"n":5.5,"e":5564}],[-26,{"n":4.5,"e":5568,"s":1}],[-25,{"n":6,"e":5584,"s":1}],[-24,{"n":4,"e":5588,"s":1}],[-23,{"n":5,"e":5604,"s":1}],[-22,{"n":4.5,"e":5616,"s":1}],[-20,{"n":5,"e":4489,"s":1}],[-18,{"n":5,"e":4508,"s":1}],[-16,{"n":5,"e":4528,"s":1}],[-12,{"n":4.5,"e":4572,"s":1}],[-7,{"n":6,"e":4623}],[4,{"n":6.5,"e":7503,"g":1,"s":1}],[3,{"n":4.5,"e":7458,"s":1}]],"fo":[[5465,[{"t":"Y"}]]]}],[4242,{"n":"Kumbulla","f":"Marash","fp":"DC","r":8,"c":116,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.76,"Og":1,"Os":122,"On":24,"Oa":5.08,"Od":0.95,"pd":24},"p":[[-33,{"n":5,"e":5502}],[-32,{"n":5,"e":5510}],[-31,{"n":4.5,"e":5527}],[-30,{"n":4,"e":5528}],[-28,{"n":4,"e":5556}],[-27,{"n":4,"e":5567}],[-25,{"n":6,"e":5587}],[-24,{"n":5.5,"e":5597}],[-23,{"n":6.5,"e":5607}],[-22,{"n":6,"e":5614}],[-21,{"n":5.5,"e":5627}],[-20,{"n":5,"e":5629}],[-19,{"n":5,"e":5647}],[-18,{"n":5,"e":5657}],[-17,{"n":5,"e":5661}],[-16,{"n":3,"e":5677}],[-11,{"n":5,"e":5727}],[-10,{"n":6,"e":5734}],[-9,{"n":4.5,"e":5747}],[-8,{"n":4.5,"e":5753}],[-7,{"n":7.5,"e":5767,"g":1}],[4,{"n":5,"e":7503,"s":1}],[3,{"n":6,"e":7458}],[2,{"n":4.5,"e":7468}]],"fo":[[5502,[{"t":"I"}]],[5510,[{"t":"I"}]],[5556,[{"t":"Y"}]],[7468,[{"t":"Y"}]]]}],[4252,{"n":"Ibañez","f":"","fp":"DC","r":11,"c":116,"s":{"s":22.5,"n":4,"a":5.63,"d":1.03,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.03,"Os":68.5,"On":13,"Oa":5.27,"Od":0.83,"pd":13},"p":[[-38,{"n":4.5,"e":5452}],[-37,{"n":5,"e":5465,"s":1}],[-34,{"n":6,"e":5496}],[-33,{"n":6,"e":5502}],[-32,{"n":5,"e":5508}],[-31,{"n":6,"e":5524}],[-30,{"n":4.5,"e":5533}],[-29,{"n":4,"e":5544,"s":1}],[-27,{"n":5,"e":5564}],[4,{"n":4.5,"e":7503}],[3,{"n":7,"e":7458}],[2,{"n":5.5,"e":7468}],[1,{"n":5.5,"e":7471}]],"fo":[[5502,[{"t":"I"}]],[5524,[{"t":"Y"}]],[5544,[{"t":"Y"}]],[7503,[{"t":"Y"}]]]}],[4287,{"n":"Zaniolo","f":"Nicolò","fp":"MO","r":9,"c":116,"s":{"Og":6,"Os":124,"On":22,"Oa":5.64,"Od":1.11,"pm":20,"pa":2},"p":[[-38,{"n":6,"e":5452}],[-37,{"n":5,"e":5465,"s":1}],[-36,{"n":5.5,"e":5475,"s":1}],[-35,{"n":6,"e":5483,"g":1,"s":1}],[-33,{"n":4.5,"e":5502,"s":1}],[-32,{"n":7,"e":5508,"g":1,"s":1}],[-31,{"n":5.5,"e":5524,"s":1}],[-30,{"n":5,"e":5533,"s":1}],[-19,{"n":4.5,"e":5643}],[-18,{"n":5,"e":5656}],[-17,{"n":8,"e":5659,"g":1}],[-16,{"n":6,"e":5676}],[-15,{"n":4.5,"e":5680}],[-13,{"n":5,"e":5702}],[-12,{"n":5,"e":5714}],[-11,{"n":7,"e":5724,"g":1}],[-10,{"n":8,"e":5737,"g":1}],[-9,{"n":6.5,"e":5744,"g":1}],[-8,{"n":4.5,"e":5755}],[-7,{"n":6,"e":5764}],[-6,{"n":5.5,"e":5771,"s":1}],[-5,{"n":4,"e":5784}]],"fo":[[5465,[{"t":"Y"}]],[5502,[{"t":"Y"}]]]}],[4375,{"n":"Diawara","f":"Amadou","fp":"MD","r":9,"c":116,"s":{"s":11,"n":2,"a":5.5,"d":0.71,"Og":1,"Os":125,"On":23,"Oa":5.43,"Od":0.82,"pm":23},"p":[[-37,{"n":6.5,"e":5465,"g":1}],[-36,{"n":6,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":5.5,"e":5496}],[-33,{"n":5,"e":5502}],[-32,{"n":6.5,"e":5508}],[-31,{"n":5.5,"e":5524}],[-29,{"n":5,"e":5544}],[-28,{"n":5,"e":5552,"s":1}],[-27,{"n":3.5,"e":5564}],[-20,{"n":6.5,"e":5631}],[-19,{"n":5.5,"e":5643}],[-18,{"n":4.5,"e":5656}],[-17,{"n":6,"e":5659}],[-16,{"n":6,"e":5676}],[-15,{"n":6,"e":5680}],[-14,{"n":5.5,"e":5697}],[-13,{"n":6,"e":5702}],[-12,{"n":3.5,"e":5714,"s":1}],[-7,{"n":5.5,"e":5764}],[-6,{"n":5.5,"e":5771}],[2,{"n":5,"e":7468,"s":1}],[1,{"n":6,"e":7471}]],"fo":[[5496,[{"t":"I"}]],[5524,[{"t":"Y"}]]]}],[4404,{"n":"Mancini","f":"Gianluca","fp":"DC","r":14,"c":116,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":20,"Sn":4,"Sa":5,"Sd":0.41,"Og":1,"Os":165.5,"On":32,"Oa":5.17,"Od":1.07,"pd":27,"pm":5},"p":[[-37,{"n":4.5,"e":5465}],[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":4.5,"e":5496}],[-33,{"n":4.5,"e":5502}],[-32,{"n":5.5,"e":5508}],[-31,{"n":7,"e":5524}],[-30,{"n":4,"e":5533}],[-28,{"n":4.5,"e":5552}],[-25,{"n":6,"e":5584}],[-24,{"n":5,"e":5588}],[-23,{"n":3,"e":5604}],[-22,{"n":3,"e":5616}],[-21,{"n":5.5,"e":5623}],[-20,{"n":5.5,"e":5631}],[-19,{"n":5,"e":5643}],[-18,{"n":4,"e":5656}],[-17,{"n":5.5,"e":5659}],[-15,{"n":5.5,"e":5680}],[-14,{"n":4.5,"e":5697}],[-13,{"n":7.5,"e":5702,"g":1}],[-12,{"n":5,"e":5714}],[-11,{"n":6,"e":5724}],[-10,{"n":8,"e":5737}],[-9,{"n":5.5,"e":5744}],[-8,{"n":6,"e":5755}],[-7,{"n":4.5,"e":5764}],[-6,{"n":6,"e":5771}],[4,{"n":5,"e":7503}],[3,{"n":5.5,"e":7458}],[2,{"n":4.5,"e":7468}],[1,{"n":5,"e":7471}]],"fo":[[5465,[{"t":"Y"}]],[5475,[{"t":"Y"}]],[5502,[{"t":"Y"}]],[5533,[{"t":"Y"}]]]}],[4428,{"n":"Karsdorp","f":"Rick","fp":"DC","r":8,"c":116,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[1,{"n":5,"e":7471}]],"fo":[[7471,[{"t":"I"}]]]}],[4436,{"n":"Pellegrini","f":"Lorenzo","fp":"MO","r":14,"c":116,"s":{"s":22,"n":4,"a":5.5,"d":0.71,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.71,"Og":1,"Os":150,"On":27,"Oa":5.56,"Od":0.79,"pm":20,"pa":7},"p":[[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":5.5,"e":5496}],[-33,{"n":5.5,"e":5502}],[-32,{"n":6,"e":5508}],[-31,{"n":5.5,"e":5524}],[-30,{"n":4.5,"e":5533}],[-28,{"n":5,"e":5552}],[-27,{"n":6,"e":5564,"s":1}],[-25,{"n":5,"e":5584}],[-24,{"n":4,"e":5588}],[-22,{"n":4.5,"e":5616}],[-21,{"n":6,"e":5623}],[-20,{"n":7,"e":5631}],[-19,{"n":5,"e":5643}],[-18,{"n":5.5,"e":5656}],[-17,{"n":7,"e":5659,"g":1}],[-16,{"n":6,"e":5676}],[-15,{"n":5,"e":5680}],[-14,{"n":7,"e":5697}],[-13,{"n":6.5,"e":5702}],[-6,{"n":6,"e":5771}],[-5,{"n":5.5,"e":5784}],[4,{"n":6,"e":7503}],[3,{"n":5.5,"e":7458}],[2,{"n":4.5,"e":7468}],[1,{"n":6,"e":7471}]],"fo":[[5475,[{"t":"I"}]],[5533,[{"t":"Y"}]],[5552,[{"t":"Y"}]],[7468,[{"t":"Y"}]]],"a":{"m":17,"a":20,"M":21,"n":6}}],[4595,{"n":"Cristante","f":"Bryan","fp":"MD","r":11,"c":116,"s":{"s":15,"n":3,"a":5,"d":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Os":123,"On":25,"Oa":4.92,"Od":0.79,"pd":2,"pm":23},"p":[[-38,{"n":5,"e":5452}],[-37,{"n":4.5,"e":5465}],[-36,{"n":5,"e":5475,"s":1}],[-35,{"n":5.5,"e":5483}],[-34,{"n":5,"e":5496,"s":1}],[-33,{"n":5,"e":5502,"s":1}],[-31,{"n":4.5,"e":5524}],[-30,{"n":5,"e":5533,"s":1}],[-29,{"n":4.5,"e":5544}],[-28,{"n":5,"e":5552}],[-27,{"n":6,"e":5564,"s":1}],[-26,{"n":5.5,"e":5568}],[-25,{"n":7,"e":5584}],[-23,{"n":3.5,"e":5604}],[-22,{"n":4,"e":5616}],[-21,{"n":6,"e":5623}],[-20,{"n":4.5,"e":5631,"s":1}],[-19,{"n":5,"e":5643,"s":1}],[-8,{"n":4.5,"e":5755}],[-7,{"n":4,"e":5764}],[-6,{"n":5,"e":5771,"s":1}],[-5,{"n":4,"e":5784}],[4,{"n":6,"e":7503}],[3,{"n":5,"e":7458,"s":1}],[1,{"n":4,"e":7471}]],"fo":[[5452,[{"t":"Y"}]],[5502,[{"t":"Y"}]],[5524,[{"t":"Y"}]],[5533,[{"t":"Y"}]]]}],[4634,{"n":"Juan Jesus","f":"","fp":"DC","r":1,"c":116,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pd":2},"p":[[-38,{"n":4.5,"e":5452,"s":1}],[-5,{"n":4,"e":5784,"s":1}]]}],[4657,{"n":"Spinazzola","f":"Leonardo","fp":"DL","r":14,"c":116,"s":{"s":21.5,"n":4,"a":5.38,"d":0.48,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.48,"Og":1,"Os":131.5,"On":26,"Oa":5.06,"Od":0.64,"pd":17,"pm":9},"p":[[-37,{"n":5,"e":5465}],[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":5,"e":5496,"g":1}],[-33,{"n":6.5,"e":5502}],[-32,{"n":5.5,"e":5508,"s":1}],[-31,{"n":5.5,"e":5524}],[-30,{"n":4.5,"e":5533}],[-28,{"n":4,"e":5552}],[-24,{"n":4,"e":5588}],[-22,{"n":3.5,"e":5616}],[-21,{"n":5.5,"e":5623}],[-20,{"n":5,"e":5631}],[-17,{"n":5,"e":5659,"s":1}],[-15,{"n":5,"e":5680,"s":1}],[-12,{"n":5,"e":5714}],[-11,{"n":6,"e":5724}],[-9,{"n":5,"e":5744}],[-8,{"n":5.5,"e":5755}],[-7,{"n":4.5,"e":5764}],[-6,{"n":5,"e":5771,"s":1}],[-5,{"n":5,"e":5784}],[4,{"n":5,"e":7503}],[3,{"n":5.5,"e":7458}],[2,{"n":5,"e":7468}],[1,{"n":6,"e":7471}]]}],[4726,{"n":"Santon","f":"Davide","fp":"DL","r":9,"c":116,"s":{"s":20.5,"n":4,"a":5.13,"d":0.63,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.63,"Os":86.5,"On":18,"Oa":4.81,"Od":0.93,"pd":16,"pm":2},"p":[[-38,{"n":4.5,"e":5452,"s":1}],[-26,{"n":5,"e":5568,"s":1}],[-23,{"n":3,"e":5604}],[-22,{"n":2.5,"e":5616}],[-21,{"n":6,"e":5623}],[-20,{"n":6,"e":5631}],[-15,{"n":5,"e":5680}],[-14,{"n":5.5,"e":5697}],[-13,{"n":5,"e":5702,"s":1}],[-12,{"n":4,"e":5714,"s":1}],[-11,{"n":5,"e":5724,"s":1}],[-10,{"n":5,"e":5737}],[-9,{"n":4.5,"e":5744,"s":1}],[-7,{"n":5,"e":5764,"s":1}],[4,{"n":4.5,"e":7503}],[3,{"n":6,"e":7458}],[2,{"n":5,"e":7468}],[1,{"n":5,"e":7471,"s":1}]],"fo":[[7503,[{"t":"Y"}]]]}],[4768,{"n":"Dzeko","f":"Edin","fp":"A","r":27,"c":116,"s":{"g":2,"s":17,"n":3,"a":5.67,"d":1.76,"Sg":2,"Ss":17,"Sn":3,"Sa":5.67,"Sd":1.76,"Og":15,"Os":194.5,"On":34,"Oa":5.72,"Od":1.27,"pa":34},"p":[[-37,{"n":7,"e":5465,"g":1}],[-36,{"n":6.5,"e":5475}],[-34,{"n":6.5,"e":5496}],[-33,{"n":6,"e":5502,"g":1}],[-32,{"n":4,"e":5508,"s":1}],[-31,{"n":5,"e":5524}],[-30,{"n":5,"e":5533}],[-29,{"n":4.5,"e":5544,"s":1}],[-28,{"n":3.5,"e":5552}],[-27,{"n":8,"e":5564,"g":2}],[-25,{"n":8,"e":5584,"g":1}],[-24,{"n":6,"e":5588,"g":1}],[-23,{"n":5,"e":5604}],[-22,{"n":6.5,"e":5616,"g":1}],[-21,{"n":6.5,"e":5623,"g":1}],[-20,{"n":7,"e":5631,"g":1}],[-19,{"n":5,"e":5643}],[-18,{"n":4.5,"e":5656}],[-17,{"n":8,"e":5659,"g":1}],[-16,{"n":6,"e":5676}],[-15,{"n":4.5,"e":5680,"s":1}],[-14,{"n":6,"e":5697}],[-13,{"n":7,"e":5702,"g":1}],[-12,{"n":5,"e":5714}],[-11,{"n":4.5,"e":5724}],[-10,{"n":5.5,"e":5737}],[-9,{"n":6.5,"e":5744,"g":1}],[-8,{"n":5.5,"e":5755,"s":1}],[-7,{"n":4,"e":5764}],[-6,{"n":6.5,"e":5771,"g":1}],[-5,{"n":4,"e":5784}],[4,{"n":7.5,"e":7503,"g":2}],[3,{"n":4,"e":7458}],[2,{"n":5.5,"e":7468}]],"a":{"m":31,"a":38,"M":47,"n":6}}],[4771,{"n":"Fazio","f":"Federico","fp":"DC","r":7,"c":116,"s":{"Og":1,"Os":59.5,"On":12,"Oa":4.96,"Od":1.23,"pd":12},"p":[[-38,{"n":5.5,"e":5452}],[-32,{"n":7.5,"e":5508,"g":1}],[-30,{"n":4,"e":5533,"s":1}],[-29,{"n":4.5,"e":5544}],[-26,{"n":4.5,"e":5568}],[-24,{"n":3.5,"e":5588}],[-16,{"n":6,"e":5676}],[-14,{"n":5,"e":5697,"s":1}],[-12,{"n":4,"e":5714}],[-10,{"n":3.5,"e":5737}],[-9,{"n":6.5,"e":5744}],[-5,{"n":5,"e":5784}]],"fo":[[5452,[{"t":"Y"}]]]}],[4828,{"n":"Mirante","f":"Antonio","fp":"G","r":15,"c":116,"s":{"s":24,"n":4,"a":6,"d":1.35,"Ss":24,"Sn":4,"Sa":6,"Sd":1.35,"Os":54.5,"On":9,"Oa":6.06,"Od":1.13,"pg":9},"p":[[-32,{"n":6.5,"e":5508}],[-29,{"n":4.5,"e":5544}],[-28,{"n":6,"e":5552}],[-27,{"n":7.5,"e":5564}],[-15,{"n":6,"e":5680}],[4,{"n":6.5,"e":7503}],[3,{"n":7,"e":7458}],[2,{"n":4,"e":7468}],[1,{"n":6.5,"e":7471}]]}],[6296,{"n":"Darboe","f":"Ebrima","fp":"MD","r":1,"c":116}],[6297,{"n":"Calafiori","f":"Riccardo","fp":"DL","r":1,"c":116,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-38,{"n":5,"e":5452}]]}],[6355,{"n":"Bruno Peres","f":"","fp":"DL","r":16,"c":116,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":97.5,"On":18,"Oa":5.42,"Od":1.14,"pd":11,"pm":7},"p":[[-38,{"n":5.5,"e":5452,"s":1}],[-37,{"n":3.5,"e":5465}],[-36,{"n":6,"e":5475}],[-35,{"n":8,"e":5483,"g":2}],[-34,{"n":5,"e":5496}],[-33,{"n":5,"e":5502}],[-32,{"n":7,"e":5508}],[-31,{"n":7,"e":5524}],[-29,{"n":4.5,"e":5544}],[-27,{"n":4.5,"e":5564}],[-26,{"n":5,"e":5568}],[-25,{"n":6.5,"e":5584}],[-24,{"n":4,"e":5588}],[-23,{"n":6,"e":5604,"s":1}],[-22,{"n":5,"e":5616,"s":1}],[-20,{"n":5,"e":5631,"s":1}],[4,{"n":5,"e":7503,"s":1}],[2,{"n":5,"e":7468,"s":1}]],"fo":[[5465,[{"t":"I"}]],[5508,[{"t":"Y"}]],[5524,[{"t":"Y"}]]]}],[6453,{"n":"Galeazzi","f":"Felipe Estrella","fp":"A","r":2,"c":116}],[6520,{"n":"Villar","f":"Gonzalo","fp":"MD","r":7,"c":116,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":54,"On":11,"Oa":4.91,"Od":0.58,"pm":11},"p":[[-38,{"n":6.5,"e":5452}],[-35,{"n":5,"e":5483,"s":1}],[-33,{"n":4.5,"e":5502,"s":1}],[-32,{"n":5,"e":5508,"s":1}],[-31,{"n":4.5,"e":5524,"s":1}],[-29,{"n":4.5,"e":5544,"s":1}],[-26,{"n":5,"e":5568}],[-24,{"n":5,"e":5588,"s":1}],[4,{"n":5,"e":7503,"s":1}],[3,{"n":4.5,"e":7458,"s":1}],[1,{"n":4.5,"e":7471,"s":1}]],"fo":[[5502,[{"t":"Y"}]],[5544,[{"t":"Y"}]]]}],[7226,{"n":"Berti","f":"Filippo","fp":"G","r":1,"c":116}],[7228,{"n":"Feratovic","f":"Amir","fp":"DC","r":2,"c":116}],[7230,{"n":"Boer","f":"Pietro","fp":"G","r":1,"c":116}],[7276,{"n":"Vicario","f":"Javier","fp":"DC","r":1,"c":116}],[7277,{"n":"Tall","f":"Lamine","fp":"A","r":1,"c":116}],[7278,{"n":"Ciervo","f":"Riccardo","fp":"MO","r":1,"c":116}],[7285,{"n":"Zalewski","f":"Nicola","fp":"MO","r":1,"c":116}],[7286,{"n":"Chierico","f":"Luca","fp":"MD","r":1,"c":116}],[7287,{"n":"Providence","f":"Ruben","fp":"MO","r":1,"c":116}],[7436,{"n":"Bove","f":"Edoardo","fp":"MD","r":1,"c":116}],[696,{"n":"Gabbiadini","f":"Manolo","fp":"A","r":17,"c":120,"s":{"s":4.5,"n":1,"a":4.5,"Og":10,"Os":164,"On":31,"Oa":5.29,"Od":0.96,"pm":1,"pa":30},"p":[[-38,{"n":5,"e":5450}],[-37,{"n":5,"e":5463,"s":1}],[-36,{"n":4,"e":5472,"s":1}],[-35,{"n":6,"e":5484,"g":1}],[-34,{"n":4.5,"e":5495,"s":1}],[-33,{"n":7,"e":5504,"g":1}],[-32,{"n":6.5,"e":5517,"g":1,"s":1}],[-31,{"n":5,"e":5518}],[-30,{"n":6.5,"e":5535,"g":1}],[-29,{"n":4.5,"e":5543,"s":1}],[-28,{"n":4,"e":5555}],[-27,{"n":6,"e":5564,"g":1}],[-26,{"n":4.5,"e":5575}],[-24,{"n":6,"e":5595,"g":1}],[-23,{"n":5.5,"e":5606}],[-22,{"n":6,"e":5615,"g":1}],[-21,{"n":5.5,"e":5625}],[-20,{"n":5,"e":5633}],[-19,{"n":5,"e":5644}],[-18,{"n":5,"e":5654}],[-17,{"n":4.5,"e":5664,"s":1}],[-16,{"n":6.5,"e":5672,"g":1,"s":1}],[-15,{"n":5,"e":5684}],[-14,{"n":6,"e":5689}],[-13,{"n":7.5,"e":5704,"g":1}],[-11,{"n":5.5,"e":5725}],[-9,{"n":6,"e":5739,"g":1}],[-8,{"n":4,"e":5755}],[-7,{"n":4.5,"e":5767,"s":1}],[-5,{"n":3.5,"e":5779}],[2,{"n":4.5,"e":7488,"s":1}]]}],[818,{"n":"Ramírez","f":"Gastón","fp":"MO","r":14,"c":120,"s":{"s":19,"n":4,"a":4.75,"d":0.65,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.65,"Og":7,"Os":150,"On":29,"Oa":5.17,"Od":1.01,"pm":17,"pa":12},"p":[[-37,{"n":4,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5495}],[-32,{"n":5,"e":5517}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":6,"e":5535}],[-29,{"n":7,"e":5543,"g":2}],[-28,{"n":5,"e":5555,"s":1}],[-27,{"n":5.5,"e":5564,"s":1}],[-25,{"n":4,"e":5583}],[-24,{"n":4,"e":5595}],[-23,{"n":8,"e":5606,"g":2}],[-22,{"n":4.5,"e":5615}],[-21,{"n":5,"e":5625}],[-18,{"n":5.5,"e":5654}],[-17,{"n":5,"e":5664}],[-16,{"n":4.5,"e":5672}],[-15,{"n":4.5,"e":5684}],[-14,{"n":6,"e":5689,"g":1}],[-13,{"n":7.5,"e":5704,"g":1}],[-12,{"n":5,"e":5715,"s":1}],[-11,{"n":5.5,"e":5725,"s":1}],[-10,{"n":6,"e":5735,"g":1,"s":1}],[-5,{"n":4,"e":5779}],[4,{"n":4,"e":7451}],[3,{"n":5,"e":7456}],[2,{"n":4.5,"e":7488,"s":1}],[1,{"n":5.5,"e":7474,"s":1}]],"fo":[[5472,[{"t":"I"}]],[5517,[{"t":"I"}]],[7451,[{"t":"Y"}]],[7488,[{"t":"Y"}]]]}],[879,{"n":"Yoshida","f":"Maya","fp":"DC","r":12,"c":120,"s":{"s":15.5,"n":3,"a":5.17,"d":1.04,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Os":110,"On":22,"Oa":5,"Od":1.21,"pd":22},"p":[[-15,{"n":5,"e":4165,"s":1}],[-10,{"n":2,"e":4215}],[-8,{"n":3,"e":4233}],[-38,{"n":6,"e":5450}],[-37,{"n":3,"e":5463}],[-36,{"n":6,"e":5472}],[-35,{"n":4.5,"e":5484}],[-34,{"n":5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":6.5,"e":5517}],[-31,{"n":3.5,"e":5518}],[-30,{"n":6.5,"e":5535}],[-29,{"n":6,"e":5543}],[-28,{"n":5,"e":5555,"s":1}],[-27,{"n":5,"e":5564}],[-26,{"n":5.5,"e":5575}],[-25,{"n":5.5,"e":5583}],[-9,{"n":5.5,"e":4227}],[-7,{"n":5,"e":4243}],[4,{"n":6,"e":7451}],[3,{"n":5.5,"e":7456}],[1,{"n":4,"e":7474,"s":1}]],"fo":[[5555,[{"t":"Y"}]]]}],[2034,{"n":"Keita Baldé","f":"","fp":"A","r":8,"c":120,"s":{"Og":3,"Os":83.5,"On":17,"Oa":4.91,"Od":1.24,"pm":5,"pa":12},"p":[[-27,{"n":5.5,"e":3662}],[-25,{"n":4,"e":3683,"s":1}],[-24,{"n":4.5,"e":3688}],[-23,{"n":4.5,"e":3706,"s":1}],[-22,{"n":4,"e":3714}],[-20,{"n":5,"e":3734}],[-19,{"n":8,"e":3740,"g":1}],[-18,{"n":5,"e":3749,"s":1}],[-17,{"n":7,"e":3760,"g":1}],[-16,{"n":5.5,"e":3777,"s":1}],[-15,{"n":3.5,"e":3780}],[-14,{"n":4.5,"e":3790,"s":1}],[-12,{"n":3,"e":3816}],[-11,{"n":4.5,"e":3822,"s":1}],[-10,{"n":5,"e":3833,"s":1}],[-9,{"n":4,"e":3842,"s":1}],[-8,{"n":6,"e":3853,"g":1,"s":1}]]}],[2198,{"n":"Adrien Silva","f":"","fp":"MD","r":10,"c":120,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":98.5,"On":19,"Oa":5.18,"Od":0.85,"pm":19},"p":[[-26,{"n":3.5,"e":3669}],[-24,{"n":6,"e":3688}],[-23,{"n":5,"e":3706}],[-22,{"n":5,"e":3714}],[-21,{"n":4.5,"e":3722,"s":1}],[-20,{"n":5,"e":3734,"s":1}],[-19,{"n":6.5,"e":3740,"s":1}],[-18,{"n":4.5,"e":3749}],[-17,{"n":5,"e":3760,"s":1}],[-16,{"n":6,"e":3777}],[-15,{"n":6.5,"e":3780,"s":1}],[-13,{"n":5.5,"e":3801}],[-12,{"n":4.5,"e":3816}],[-11,{"n":6.5,"e":3822}],[-10,{"n":4,"e":3833}],[-9,{"n":5.5,"e":3842,"s":1}],[-8,{"n":4.5,"e":3853,"s":1}],[-7,{"n":5,"e":3862,"s":1}],[4,{"n":5.5,"e":7451,"s":1}]]}],[4250,{"n":"Augello","f":"Tommaso","fp":"DL","r":14,"c":120,"s":{"g":1,"s":21,"n":4,"a":5.25,"d":1.89,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.89,"Og":1,"Os":109.5,"On":21,"Oa":5.21,"Od":1.11,"pd":21},"p":[[-38,{"n":7,"e":5450}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":5,"e":5484}],[-33,{"n":5.5,"e":5504}],[-32,{"n":5,"e":5517}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":5.5,"e":5535}],[-29,{"n":5.5,"e":5543}],[-28,{"n":6.5,"e":5555,"s":1}],[-27,{"n":5,"e":5564}],[-26,{"n":5.5,"e":5575}],[-22,{"n":3,"e":5615}],[-21,{"n":6,"e":5625}],[-20,{"n":5,"e":5633,"s":1}],[-17,{"n":5,"e":5664,"s":1}],[-11,{"n":5.5,"e":5725,"s":1}],[4,{"n":8,"e":7451,"g":1}],[3,{"n":5,"e":7456}],[2,{"n":4,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[5517,[{"t":"Y"}]],[5543,[{"t":"Y"}]],[7488,[{"t":"Y"}]]]}],[4414,{"n":"Jankto","f":"Jakub","fp":"MO","r":16,"c":120,"s":{"s":14,"n":3,"a":4.67,"d":1.15,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":161,"On":31,"Oa":5.19,"Od":1.19,"pm":31},"p":[[-38,{"n":5,"e":5450,"s":1}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":4.5,"e":5484}],[-34,{"n":4.5,"e":5495}],[-33,{"n":8,"e":5504}],[-31,{"n":5,"e":5518}],[-30,{"n":7,"e":5535}],[-29,{"n":6.5,"e":5543}],[-27,{"n":6,"e":5564}],[-26,{"n":6,"e":5575}],[-25,{"n":4,"e":5583}],[-24,{"n":4.5,"e":5595,"s":1}],[-23,{"n":5,"e":5606,"s":1}],[-22,{"n":4.5,"e":5615}],[-20,{"n":4,"e":5633}],[-19,{"n":8.5,"e":5644,"g":1}],[-18,{"n":4.5,"e":5654,"s":1}],[-17,{"n":5,"e":5664}],[-15,{"n":4,"e":5684}],[-14,{"n":5,"e":5689}],[-13,{"n":5,"e":5704}],[-12,{"n":5,"e":5715}],[-11,{"n":6,"e":5725}],[-9,{"n":5,"e":5739}],[-8,{"n":5.5,"e":5755}],[-7,{"n":4,"e":5767}],[-6,{"n":6.5,"e":5775,"g":1}],[4,{"n":6,"e":7451}],[2,{"n":4,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[5543,[{"t":"I"}]],[5472,[{"t":"Y"}]],[5484,[{"t":"Y"}]],[5518,[{"t":"Y"}]],[5564,[{"t":"Y"}]]]}],[4422,{"n":"Audero","f":"Emil","fp":"G","r":21,"c":120,"s":{"s":21,"n":4,"a":5.25,"d":1.04,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.04,"Oao":1,"Os":193,"On":36,"Oa":5.36,"Od":1.06,"pg":36},"p":[[-36,{"n":5.5,"e":5472}],[-35,{"n":5,"e":5484}],[-34,{"n":5.5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":5.5,"e":5517}],[-31,{"n":6,"e":5518}],[-30,{"n":7,"e":5535}],[-29,{"n":7,"e":5543}],[-28,{"n":4.5,"e":5555}],[-27,{"n":7,"e":5564}],[-26,{"n":4,"e":5575,"a":1}],[-25,{"n":4.5,"e":5583}],[-24,{"n":4,"e":5595}],[-23,{"n":5,"e":5606}],[-22,{"n":4,"e":5615}],[-21,{"n":6,"e":5625}],[-20,{"n":4,"e":5633}],[-19,{"n":5.5,"e":5644}],[-18,{"n":8,"e":5654}],[-17,{"n":4.5,"e":5664}],[-16,{"n":6,"e":5672}],[-15,{"n":4,"e":5684}],[-14,{"n":4,"e":5689}],[-13,{"n":5,"e":5704}],[-12,{"n":6,"e":5715}],[-11,{"n":7,"e":5725}],[-10,{"n":5.5,"e":5735}],[-9,{"n":5,"e":5739}],[-8,{"n":6,"e":5755}],[-7,{"n":4.5,"e":5767}],[-6,{"n":4.5,"e":5775}],[-5,{"n":6,"e":5779}],[4,{"n":5.5,"e":7451}],[3,{"n":6.5,"e":7456}],[2,{"n":4,"e":7488}],[1,{"n":5,"e":7474}]],"fo":[[5517,[{"t":"Y"}]]]}],[4447,{"n":"Thorsby","f":"Morten","fp":"MD","r":10,"c":120,"s":{"s":20,"n":4,"a":5,"d":1.08,"Ss":20,"Sn":4,"Sa":5,"Sd":1.08,"Og":1,"Oao":1,"Os":138.5,"On":28,"Oa":4.95,"Od":1.05,"pd":4,"pm":24},"p":[[-38,{"n":5,"e":5450,"s":1}],[-36,{"n":4,"e":5472}],[-35,{"n":4.5,"e":5484}],[-34,{"n":6.5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":6,"e":5517}],[-31,{"n":4.5,"e":5518}],[-29,{"n":3.5,"e":5543}],[-27,{"n":5,"e":5564}],[-26,{"n":5,"e":5575,"s":1}],[-25,{"n":5,"e":5583,"g":1}],[-24,{"n":4,"e":5595,"a":1}],[-23,{"n":5.5,"e":5606}],[-22,{"n":3,"e":5615}],[-21,{"n":5,"e":5625}],[-20,{"n":3.5,"e":5633}],[-19,{"n":7,"e":5644}],[-18,{"n":4.5,"e":5654}],[-17,{"n":6,"e":5664}],[-16,{"n":5.5,"e":5672}],[-15,{"n":4,"e":5684}],[-14,{"n":3.5,"e":5689}],[-13,{"n":6,"e":5704,"s":1}],[-11,{"n":6,"e":5725}],[4,{"n":6.5,"e":7451}],[3,{"n":5,"e":7456}],[2,{"n":4.5,"e":7488,"s":1}],[1,{"n":4,"e":7474}]],"fo":[[5472,[{"t":"Y"},{"t":"O"}]],[5517,[{"t":"Y"}]],[5518,[{"t":"Y"}]],[5543,[{"t":"Y"}]],[5583,[{"t":"Y"}]],[7451,[{"t":"Y"}]],[7456,[{"t":"Y"}]]]}],[4496,{"n":"Ferrari","f":"Alex","fp":"DC","r":3,"c":120,"s":{"Os":43,"On":9,"Oa":4.78,"Od":1,"pd":9},"p":[[-17,{"n":4.5,"e":5664}],[-16,{"n":5.5,"e":5672}],[-15,{"n":4.5,"e":5684}],[-14,{"n":3,"e":5689}],[-13,{"n":6,"e":5704}],[-12,{"n":5.5,"e":5715}],[-11,{"n":5.5,"e":5725}],[-10,{"n":5,"e":5735}],[-7,{"n":3.5,"e":5767}]]}],[4509,{"n":"Colley","f":"Omar","fp":"DC","r":12,"c":120,"s":{"g":1,"s":9.5,"n":2,"a":4.75,"d":1.06,"Og":1,"Os":148,"On":30,"Oa":4.93,"Od":1.2,"pd":30},"p":[[-38,{"n":6,"e":5450,"s":1}],[-37,{"n":2.5,"e":5463}],[-35,{"n":4,"e":5484}],[-33,{"n":6,"e":5504}],[-32,{"n":5.5,"e":5517}],[-31,{"n":5,"e":5518}],[-30,{"n":7.5,"e":5535}],[-29,{"n":5.5,"e":5543}],[-28,{"n":5.5,"e":5555}],[-25,{"n":5,"e":5583}],[-24,{"n":5,"e":5595}],[-23,{"n":5.5,"e":5606}],[-22,{"n":3,"e":5615}],[-21,{"n":6,"e":5625}],[-20,{"n":3,"e":5633}],[-18,{"n":5.5,"e":5654}],[-17,{"n":5,"e":5664}],[-16,{"n":6,"e":5672}],[-15,{"n":5.5,"e":5684}],[-14,{"n":3.5,"e":5689}],[-13,{"n":5.5,"e":5704}],[-12,{"n":5.5,"e":5715}],[-11,{"n":6,"e":5725}],[-10,{"n":5,"e":5735}],[-9,{"n":3,"e":5739}],[-8,{"n":6,"e":5755}],[-6,{"n":4,"e":5775}],[-5,{"n":3,"e":5779}],[2,{"n":5.5,"e":7488,"g":1}],[1,{"n":4,"e":7474}]],"fo":[[5484,[{"t":"Y"}]]]}],[4654,{"n":"Bereszynski","f":"Bartosz","fp":"DL","r":9,"c":120,"s":{"s":18.5,"n":4,"a":4.63,"d":1.6,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.6,"Oao":1,"Os":131,"On":28,"Oa":4.68,"Od":0.97,"pd":28},"p":[[-37,{"n":3,"e":5463}],[-35,{"n":4,"e":5484}],[-34,{"n":3.5,"e":5495,"a":1}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5517}],[-31,{"n":4,"e":5518}],[-30,{"n":6,"e":5535}],[-29,{"n":6.5,"e":5543}],[-28,{"n":4,"e":5555}],[-27,{"n":5,"e":5564}],[-26,{"n":5,"e":5575}],[-25,{"n":4.5,"e":5583}],[-24,{"n":4,"e":5595}],[-23,{"n":5.5,"e":5606}],[-21,{"n":5,"e":5625}],[-20,{"n":4.5,"e":5633}],[-19,{"n":5,"e":5644}],[-18,{"n":5,"e":5654}],[-12,{"n":5.5,"e":5715}],[-9,{"n":4.5,"e":5739}],[-8,{"n":6,"e":5755}],[-7,{"n":4,"e":5767}],[-6,{"n":3.5,"e":5775}],[-5,{"n":4,"e":5779}],[4,{"n":6,"e":7451}],[3,{"n":6,"e":7456}],[2,{"n":3,"e":7488}],[1,{"n":3.5,"e":7474}]],"fo":[[5463,[{"t":"Y"}]],[5484,[{"t":"Y"}]],[5518,[{"t":"Y"}]],[5543,[{"t":"Y"}]],[5564,[{"t":"Y"}]]]}],[4747,{"n":"Ekdal","f":"Albin","fp":"MD","r":17,"c":120,"s":{"s":20,"n":4,"a":5,"d":0.71,"Ss":20,"Sn":4,"Sa":5,"Sd":0.71,"Os":171,"On":32,"Oa":5.34,"Od":0.6,"pm":32},"p":[[-35,{"n":5,"e":5484}],[-34,{"n":6,"e":5495}],[-33,{"n":6.5,"e":5504}],[-32,{"n":5.5,"e":5517}],[-31,{"n":4.5,"e":5518}],[-30,{"n":6.5,"e":5535}],[-29,{"n":5.5,"e":5543}],[-28,{"n":5,"e":5555}],[-27,{"n":5,"e":5564}],[-26,{"n":6,"e":5575}],[-23,{"n":6,"e":5606}],[-22,{"n":5.5,"e":5615}],[-21,{"n":6,"e":5625}],[-20,{"n":5.5,"e":5633,"s":1}],[-19,{"n":5,"e":5644,"s":1}],[-18,{"n":5,"e":5654,"s":1}],[-16,{"n":5,"e":5672}],[-15,{"n":5,"e":5684}],[-14,{"n":5.5,"e":5689}],[-13,{"n":5,"e":5704}],[-12,{"n":5.5,"e":5715}],[-11,{"n":6.5,"e":5725}],[-10,{"n":4.5,"e":5735}],[-9,{"n":5,"e":5739,"s":1}],[-8,{"n":5.5,"e":5755,"s":1}],[-7,{"n":4.5,"e":5767}],[-6,{"n":5.5,"e":5775}],[-5,{"n":5,"e":5779}],[4,{"n":5.5,"e":7451}],[3,{"n":5.5,"e":7456}],[2,{"n":5,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[5484,[{"t":"I"}]],[5495,[{"t":"Y"}]],[5517,[{"t":"Y"}]],[5555,[{"t":"Y"}]],[7456,[{"t":"Y"}]]]}],[4752,{"n":"Regini","f":"Vasco","fp":"DC","r":5,"c":120,"s":{"s":5,"n":1,"a":5,"Os":25,"On":5,"Oa":5,"Od":0.35,"pd":5},"p":[[-38,{"n":5,"e":5453,"s":1}],[-28,{"n":4.5,"e":5554,"s":1}],[-21,{"n":5,"e":5625,"s":1}],[-19,{"n":5.5,"e":5644}],[3,{"n":5,"e":7456,"s":1}]]}],[4763,{"n":"Candreva","f":"Antonio","fp":"MO","r":20,"c":120,"s":{"s":18.5,"n":3,"a":6.17,"d":0.76,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":0.76,"Og":4,"Os":170,"On":31,"Oa":5.48,"Od":0.94,"pm":31},"p":[[-37,{"n":5,"e":5460}],[-36,{"n":4.5,"e":5471,"s":1}],[-35,{"n":5,"e":5479}],[-34,{"n":4,"e":5496}],[-33,{"n":7.5,"e":5503,"g":1}],[-32,{"n":4.5,"e":5512,"s":1}],[-31,{"n":7,"e":5527,"g":1}],[-30,{"n":4.5,"e":5530}],[-29,{"n":6,"e":5542,"g":1,"s":1}],[-28,{"n":5,"e":5554}],[-27,{"n":6,"e":5562,"s":1}],[-26,{"n":4,"e":5569}],[-25,{"n":6,"e":5583}],[-24,{"n":6,"e":5592}],[-23,{"n":6,"e":5601}],[-20,{"n":5.5,"e":5634}],[-19,{"n":5,"e":5640}],[-18,{"n":5,"e":5655}],[-17,{"n":7.5,"e":5660}],[-15,{"n":5,"e":5680}],[-14,{"n":5.5,"e":5692}],[-13,{"n":5,"e":5706,"s":1}],[-12,{"n":5,"e":5710,"s":1}],[-11,{"n":5,"e":5719,"s":1}],[-10,{"n":5,"e":5728}],[-9,{"n":7,"e":5742,"g":1}],[-8,{"n":5,"e":5756}],[-6,{"n":5,"e":5775}],[4,{"n":6,"e":7451}],[3,{"n":7,"e":7456}],[2,{"n":5.5,"e":7488}]],"fo":[[7456,[{"t":"I"}]]]}],[4769,{"n":"Tonelli","f":"Lorenzo","fp":"DC","r":8,"c":120,"s":{"s":18.5,"n":4,"a":4.63,"d":1.11,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.11,"Os":58.5,"On":13,"Oa":4.5,"Od":0.87,"pd":13},"p":[[-38,{"n":5,"e":5450}],[-36,{"n":4,"e":5472}],[-28,{"n":4.5,"e":5555}],[-27,{"n":4.5,"e":5564}],[-26,{"n":5.5,"e":5575}],[-24,{"n":3,"e":5595}],[-23,{"n":5,"e":5606}],[-22,{"n":3.5,"e":5615}],[-21,{"n":5,"e":5625}],[4,{"n":6,"e":7451}],[3,{"n":5,"e":7456}],[2,{"n":3.5,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[5450,[{"t":"I"}]],[5555,[{"t":"I"},{"t":"Y"}]],[5472,[{"t":"Y"}]],[7456,[{"t":"Y"}]],[7474,[{"t":"Y"}]],[7488,[{"t":"Y"}]]]}],[4829,{"n":"Quagliarella","f":"Fabio","fp":"A","r":28,"c":120,"s":{"g":3,"s":24,"n":4,"a":6,"d":1.08,"Sg":3,"Ss":24,"Sn":4,"Sa":6,"Sd":1.08,"Og":13,"Os":152,"On":28,"Oa":5.43,"Od":1.51,"pa":28},"p":[[-38,{"n":3.5,"e":5450}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":4.5,"e":5484,"s":1}],[-34,{"n":8,"e":5495,"g":1}],[-33,{"n":4,"e":5504,"s":1}],[-32,{"n":7,"e":5517,"g":1}],[-26,{"n":7.5,"e":5575,"g":2}],[-24,{"n":4,"e":5595}],[-23,{"n":7.5,"e":5606,"g":1}],[-22,{"n":7,"e":5615,"g":1}],[-21,{"n":5.5,"e":5625}],[-19,{"n":8,"e":5644,"g":2}],[-18,{"n":4.5,"e":5654}],[-16,{"n":4.5,"e":5672}],[-15,{"n":4,"e":5684}],[-14,{"n":8,"e":5689,"g":2}],[-13,{"n":5.5,"e":5704}],[-12,{"n":4,"e":5715}],[-10,{"n":5,"e":5735}],[-9,{"n":5,"e":5739}],[-8,{"n":4.5,"e":5755}],[-7,{"n":4,"e":5767}],[-6,{"n":4,"e":5775}],[4,{"n":7,"e":7451,"g":1}],[3,{"n":6.5,"e":7456,"g":1}],[2,{"n":6,"e":7488,"g":1}],[1,{"n":4.5,"e":7474,"s":1}]]}],[5335,{"n":"Verre","f":"Valerio","fp":"MO","r":14,"c":120,"s":{"g":1,"s":22.5,"n":4,"a":5.63,"d":1.03,"Sg":1,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.03,"Og":4,"Os":164,"On":32,"Oa":5.13,"Od":0.89,"pm":13,"pa":19},"p":[[-35,{"n":4,"e":5486}],[-33,{"n":4,"e":5502}],[-32,{"n":5.5,"e":5510,"s":1}],[-31,{"n":5,"e":5527,"s":1}],[-30,{"n":4,"e":5528,"s":1}],[-29,{"n":6,"e":5547}],[-28,{"n":5,"e":5556,"s":1}],[-27,{"n":4,"e":5567}],[-26,{"n":4.5,"e":5575}],[-25,{"n":6,"e":5587}],[-24,{"n":5,"e":5597}],[-23,{"n":4.5,"e":5607,"s":1}],[-22,{"n":4,"e":5614}],[-21,{"n":4.5,"e":5627}],[-19,{"n":6,"e":5647,"g":1}],[-18,{"n":6.5,"e":5657}],[-17,{"n":4,"e":5661}],[-16,{"n":7,"e":5677,"g":1,"s":1}],[-15,{"n":5,"e":5678,"s":1}],[-14,{"n":4,"e":5697}],[-13,{"n":5.5,"e":5707}],[-12,{"n":6.5,"e":5710,"g":1}],[-11,{"n":5.5,"e":5727}],[-10,{"n":5.5,"e":5734}],[-9,{"n":5,"e":5747}],[-7,{"n":5,"e":5767,"s":1}],[-6,{"n":5,"e":5768}],[-5,{"n":5,"e":5787,"s":1}],[4,{"n":6.5,"e":7451,"s":1}],[3,{"n":6.5,"e":7456,"g":1,"s":1}],[2,{"n":4.5,"e":7488}],[1,{"n":5,"e":7474,"s":1}]]}],[6133,{"n":"Léris","f":"Mehdi","fp":"MO","r":7,"c":120,"s":{"s":15,"n":3,"a":5,"d":0.5,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":1,"Os":75.5,"On":15,"Oa":5.03,"Od":0.55,"pm":15},"p":[[-38,{"n":6.5,"e":5450,"g":1}],[-37,{"n":5,"e":5463,"s":1}],[-36,{"n":5.5,"e":5472,"s":1}],[-30,{"n":5,"e":5535,"s":1}],[-29,{"n":5,"e":5543,"s":1}],[-28,{"n":5,"e":5555,"s":1}],[-27,{"n":5,"e":5564,"s":1}],[-25,{"n":4.5,"e":5583,"s":1}],[-17,{"n":5,"e":5664,"s":1}],[-15,{"n":5,"e":5684,"s":1}],[-10,{"n":5,"e":5735,"s":1}],[-9,{"n":4,"e":5739}],[4,{"n":5.5,"e":7451,"s":1}],[3,{"n":5,"e":7456,"s":1}],[1,{"n":4.5,"e":7474}]]}],[6179,{"n":"Letica","f":"Karlo","fp":"G","r":9,"c":120,"s":{"Os":44,"On":10,"Oa":4.4,"Od":1.54,"pg":10},"p":[[-37,{"n":4,"e":5467}],[-35,{"n":2,"e":5483}],[-34,{"n":4,"e":5488}],[-33,{"n":3.5,"e":5503}],[-32,{"n":7,"e":5511}],[-31,{"n":3,"e":5525}],[-30,{"n":4,"e":5535}],[-29,{"n":6.5,"e":5545}],[-28,{"n":4.5,"e":5553}],[-27,{"n":5.5,"e":5565}]],"fo":[[5545,[{"t":"Y"}]]]}],[6204,{"n":"Avogadri","f":"Lorenzo","fp":"G","r":1,"c":120}],[6218,{"n":"Kaique Rocha","f":"","fp":"DL","r":1,"c":120}],[6521,{"n":"Askildsen","f":"Kristoffer","fp":"MD","r":6,"c":120,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":24,"On":5,"Oa":4.8,"Od":1.15,"pm":5},"p":[[-38,{"n":3,"e":5450,"s":1}],[-37,{"n":6,"e":5463,"g":1,"s":1}],[-30,{"n":5.5,"e":5535,"s":1}],[-25,{"n":4.5,"e":5583,"s":1}],[3,{"n":5,"e":7456,"s":1}]],"fo":[[5450,[{"t":"Y"},{"t":"O"}]]]}],[6523,{"n":"La Gumina","f":"Antonino","fp":"A","r":4,"c":120,"s":{"Os":21.5,"On":5,"Oa":4.3,"Od":0.45,"pa":5},"p":[[-31,{"n":4,"e":5518,"s":1}],[-30,{"n":5,"e":5535,"s":1}],[-28,{"n":4,"e":5555}],[-25,{"n":4,"e":5583}],[-23,{"n":4.5,"e":5606,"s":1}]]}],[7155,{"n":"Damsgaard","f":"Mikkel","fp":"MO","r":9,"c":120,"s":{"g":1,"s":17,"n":3,"a":5.67,"d":1.15,"Sg":1,"Ss":12,"Sn":2,"Sa":6,"Sd":1.41,"Og":1,"Os":17,"On":3,"Oa":5.67,"Od":1.15,"pm":3},"p":[[4,{"n":7,"e":7451,"g":1,"s":1}],[3,{"n":5,"e":7456}],[1,{"n":5,"e":7474,"s":1}]]}],[7191,{"n":"Prelec","f":"Nik","fp":"A","r":1,"c":120}],[7200,{"n":"Ravaglia","f":"Nicola","fp":"G","r":3,"c":120}],[99,{"n":"Lopez","f":"Maxime","fp":"MO","r":9,"c":123,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":111,"On":23,"Oa":4.83,"Od":0.54,"pm":19,"pa":4},"p":[[6,{"n":5,"e":6157,"s":1}],[5,{"n":5,"e":6163,"s":1}],[1,{"n":3.5,"e":6198}],[3,{"n":4,"e":6187}],[-27,{"n":5,"e":3665,"s":1}],[-26,{"n":4.5,"e":3671,"s":1}],[-24,{"n":5,"e":3691}],[-23,{"n":5,"e":3702,"s":1}],[-21,{"n":5.5,"e":3721}],[-20,{"n":5,"e":3735,"s":1}],[-19,{"n":5,"e":3739,"s":1}],[-17,{"n":5,"e":3759,"s":1}],[-16,{"n":5,"e":3769,"s":1}],[-15,{"n":4.5,"e":3779,"s":1}],[-14,{"n":4.5,"e":3797}],[-13,{"n":5,"e":3800}],[-11,{"n":3.5,"e":3823}],[-10,{"n":5.5,"e":3831}],[-7,{"n":5,"e":3860}],[-28,{"n":5,"e":3651,"s":1}],[-12,{"n":5,"e":3812,"s":1}],[-9,{"n":5,"e":3838}],[4,{"n":5.5,"e":7452,"s":1}]],"fo":[[6187,[{"t":"Y"}]]]}],[907,{"n":"Obiang","f":"Pedro","fp":"MD","r":8,"c":123,"s":{"s":19.5,"n":4,"a":4.88,"d":0.25,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Oao":1,"Os":123,"On":25,"Oa":4.92,"Od":0.76,"pm":25},"p":[[2,{"n":4.5,"e":7489}],[-19,{"n":3.5,"e":5646}],[-37,{"n":5,"e":5464,"s":1}],[-28,{"n":5.5,"e":5556,"s":1}],[-27,{"n":4.5,"e":5562}],[-25,{"n":5,"e":5578,"s":1}],[-24,{"n":4,"e":5596}],[-23,{"n":5.5,"e":5605}],[-22,{"n":5.5,"e":5616}],[-21,{"n":6,"e":5625}],[-20,{"n":5.5,"e":5637}],[-18,{"n":6,"e":5651,"g":1}],[-17,{"n":4,"e":5665,"a":1}],[-16,{"n":5,"e":5674,"s":1}],[-15,{"n":5,"e":5685,"s":1}],[-11,{"n":4.5,"e":5722}],[-10,{"n":5,"e":5736,"s":1}],[-9,{"n":5.5,"e":5747,"s":1}],[-8,{"n":4,"e":5756}],[-7,{"n":6.5,"e":5760}],[-6,{"n":4.5,"e":5776}],[-5,{"n":3.5,"e":5783}],[4,{"n":5,"e":7452,"s":1}],[3,{"n":5,"e":7485,"s":1}],[1,{"n":5,"e":7473}]],"fo":[[5464,[{"t":"Y"}]]]}],[1382,{"n":"Boga","f":"Jeremie","fp":"MO","r":25,"c":123,"s":{"Og":11,"Os":179.5,"On":31,"Oa":5.79,"Od":1.25,"pm":20,"pa":11},"p":[[-26,{"n":8,"e":5576,"g":1}],[-35,{"n":5,"e":5485,"s":1}],[-34,{"n":5,"e":5489}],[-33,{"n":5,"e":5505}],[-32,{"n":5.5,"e":5514}],[-31,{"n":4,"e":5519,"s":1}],[-30,{"n":7,"e":5536,"g":1}],[-29,{"n":6,"e":5540}],[-28,{"n":8,"e":5556,"g":2,"s":1}],[-27,{"n":4,"e":5562}],[-25,{"n":4.5,"e":5578}],[-24,{"n":5.5,"e":5596}],[-23,{"n":8,"e":5605,"g":1}],[-22,{"n":6.5,"e":5616,"g":1}],[-21,{"n":5.5,"e":5625}],[-20,{"n":7.5,"e":5637,"g":1}],[-19,{"n":5,"e":5646}],[-18,{"n":4.5,"e":5651}],[-17,{"n":5,"e":5665}],[-16,{"n":7,"e":5674}],[-15,{"n":5.5,"e":5685}],[-14,{"n":7.5,"e":5693,"g":1}],[-13,{"n":5.5,"e":5705}],[-12,{"n":6.5,"e":5716,"g":1}],[-11,{"n":5,"e":5722}],[-10,{"n":7,"e":5736,"g":1}],[-9,{"n":5.5,"e":5747}],[-8,{"n":6.5,"e":5756,"g":1,"s":1}],[-7,{"n":6,"e":5760}],[-6,{"n":4,"e":5776}],[-5,{"n":4,"e":5783}]],"fo":[[5485,[{"t":"I"}]],[5514,[{"t":"I"}]]],"a":{"m":31,"a":39,"M":50,"n":6}}],[1547,{"n":"Marlon Santos","f":"","fp":"DC","r":7,"c":123,"s":{"Os":98,"On":20,"Oa":4.9,"Od":0.98,"pd":20},"p":[[-37,{"n":6,"e":5464}],[-36,{"n":4,"e":5474}],[-35,{"n":4,"e":5485}],[-34,{"n":5.5,"e":5489}],[-33,{"n":5.5,"e":5505,"s":1}],[-32,{"n":5.5,"e":5514}],[-30,{"n":5,"e":5536}],[-26,{"n":5,"e":5576,"s":1}],[-25,{"n":3,"e":5578}],[-17,{"n":5,"e":5665}],[-16,{"n":6,"e":5674}],[-15,{"n":4.5,"e":5685}],[-14,{"n":5.5,"e":5693}],[-13,{"n":5,"e":5705}],[-12,{"n":5,"e":5716}],[-11,{"n":4,"e":5722}],[-10,{"n":4,"e":5736}],[-9,{"n":6,"e":5747}],[-8,{"n":3,"e":5756}],[-7,{"n":6.5,"e":5760}]],"fo":[[5474,[{"t":"Y"}]],[5489,[{"t":"Y"}]],[5536,[{"t":"Y"}]],[5578,[{"t":"Y"}]]]}],[4214,{"n":"Raspadori","f":"Giacomo","fp":"A","r":7,"c":123,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":55,"On":11,"Oa":5,"Od":0.92,"pm":1,"pa":10},"p":[[-38,{"n":5,"e":5457,"s":1}],[-37,{"n":6,"e":5464,"g":1,"s":1}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":3.5,"e":5485}],[-34,{"n":4.5,"e":5489,"s":1}],[-33,{"n":4.5,"e":5505,"s":1}],[-32,{"n":7,"e":5514,"g":1}],[-19,{"n":5,"e":5646,"s":1}],[-18,{"n":4.5,"e":5651,"s":1}],[-13,{"n":4.5,"e":5705,"s":1}],[4,{"n":5.5,"e":7452,"s":1}]]}],[4241,{"n":"Turati","f":"Stefano","fp":"G","r":3,"c":123,"s":{"Os":11,"On":2,"Oa":5.5,"Od":2.12,"pg":2},"p":[[-15,{"n":4,"e":5685}],[-14,{"n":7,"e":5693}]]}],[4266,{"n":"Traore","f":"Hamed Junior","fp":"MO","r":8,"c":123,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Og":3,"Os":151,"On":30,"Oa":5.03,"Od":0.86,"pm":29,"pa":1},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":7.5,"e":5464,"g":1}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5,"e":5485,"s":1}],[-34,{"n":5,"e":5489}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":4.5,"e":5514}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":4,"e":5536}],[-29,{"n":4,"e":5540}],[-28,{"n":5,"e":5556,"s":1}],[-23,{"n":3.5,"e":5605}],[-21,{"n":5.5,"e":5625}],[-20,{"n":5,"e":5637}],[-19,{"n":4.5,"e":5646}],[-18,{"n":4.5,"e":5651}],[-17,{"n":7,"e":5665,"g":1}],[-16,{"n":5.5,"e":5674,"s":1}],[-15,{"n":4.5,"e":5685,"s":1}],[-14,{"n":4.5,"e":5693}],[-12,{"n":5,"e":5716,"s":1}],[-11,{"n":5,"e":5722}],[-10,{"n":5,"e":5736,"s":1}],[-8,{"n":4.5,"e":5756}],[-7,{"n":7,"e":5760,"g":1}],[-6,{"n":5.5,"e":5776,"s":1}],[-5,{"n":4.5,"e":5783,"s":1}],[4,{"n":5.5,"e":7452}],[3,{"n":5,"e":7485,"s":1}],[2,{"n":5,"e":7489,"s":1}]],"fo":[[5540,[{"t":"Y"}]]]}],[4349,{"n":"Rogerio","f":"","fp":"DL","r":8,"c":123,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":77,"On":15,"Oa":5.13,"Od":0.88,"pd":15},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":6,"e":5464}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5,"e":5485}],[-34,{"n":4.5,"e":5489}],[-32,{"n":5.5,"e":5514,"s":1}],[-31,{"n":5.5,"e":5519}],[-29,{"n":5,"e":5540}],[-28,{"n":5.5,"e":5556,"g":1,"s":1}],[-27,{"n":4,"e":5562}],[-26,{"n":5.5,"e":5576}],[-21,{"n":6,"e":5625,"s":1}],[-19,{"n":3,"e":5646}],[-7,{"n":6.5,"e":5760}],[1,{"n":5,"e":7473}]],"fo":[[7473,[{"t":"I"}]],[5519,[{"t":"Y"}]],[5540,[{"t":"Y"}]],[5562,[{"t":"Y"}]]]}],[4463,{"n":"Romagna","f":"Filippo","fp":"DC","r":6,"c":123,"s":{"Os":93,"On":18,"Oa":5.17,"Od":0.77,"pd":18},"p":[[-26,{"n":6,"e":5576}],[-24,{"n":5,"e":5596}],[-23,{"n":6,"e":5605}],[-22,{"n":5,"e":5616}],[-21,{"n":7,"e":5625}],[-20,{"n":5,"e":5637}],[-19,{"n":4.5,"e":5646}],[-18,{"n":4.5,"e":5651}],[-17,{"n":4.5,"e":5665,"s":1}],[-16,{"n":5.5,"e":5674,"s":1}],[-15,{"n":4.5,"e":5685}],[-14,{"n":5,"e":5693}],[-13,{"n":5,"e":5705}],[-12,{"n":4.5,"e":5716}],[-11,{"n":5,"e":5722}],[-10,{"n":4,"e":5736}],[-9,{"n":6,"e":5747}],[-7,{"n":6,"e":5760}]]}],[4464,{"n":"Locatelli","f":"Manuel","fp":"MD","r":27,"c":123,"s":{"g":1,"s":23.5,"n":4,"a":5.88,"d":0.75,"Sg":1,"Ss":23.5,"Sn":4,"Sa":5.88,"Sd":0.75,"Og":1,"Oao":1,"Os":190.5,"On":33,"Oa":5.77,"Od":0.99,"pm":33},"p":[[-38,{"n":4.5,"e":5457}],[-37,{"n":6.5,"e":5464}],[-36,{"n":5,"e":5474}],[-35,{"n":5.5,"e":5485}],[-34,{"n":7,"e":5489}],[-33,{"n":5.5,"e":5505}],[-32,{"n":5.5,"e":5514}],[-31,{"n":6,"e":5519}],[-30,{"n":7,"e":5536}],[-29,{"n":6,"e":5540}],[-28,{"n":5.5,"e":5556}],[-27,{"n":5,"e":5562,"s":1}],[-26,{"n":7,"e":5576}],[-25,{"n":3,"e":5578}],[-24,{"n":6,"e":5596}],[-23,{"n":5,"e":5605}],[-22,{"n":6,"e":5616}],[-21,{"n":6,"e":5625}],[-20,{"n":5,"e":5637,"a":1}],[-18,{"n":6,"e":5651}],[-17,{"n":8,"e":5665}],[-16,{"n":6,"e":5674}],[-15,{"n":6,"e":5685}],[-14,{"n":5.5,"e":5693}],[-13,{"n":5.5,"e":5705}],[-12,{"n":6,"e":5716}],[-11,{"n":7,"e":5722}],[-7,{"n":6.5,"e":5760}],[-5,{"n":3.5,"e":5783}],[4,{"n":5.5,"e":7452}],[3,{"n":7,"e":7485,"g":1}],[2,{"n":5.5,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[5485,[{"t":"Y"}]],[7452,[{"t":"Y"}]]]}],[4499,{"n":"Toljan","f":"Jeremy","fp":"DL","r":9,"c":123,"s":{"s":16,"n":3,"a":5.33,"d":0.29,"Og":1,"Os":143,"On":29,"Oa":4.93,"Od":0.84,"pd":29},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":6.5,"e":5464}],[-36,{"n":4.5,"e":5474,"s":1}],[-32,{"n":4.5,"e":5514}],[-30,{"n":5,"e":5536,"s":1}],[-26,{"n":5,"e":5576}],[-25,{"n":3.5,"e":5578}],[-24,{"n":5,"e":5596}],[-23,{"n":5,"e":5605}],[-22,{"n":7,"e":5616}],[-21,{"n":6,"e":5625}],[-20,{"n":5,"e":5637}],[-19,{"n":4.5,"e":5646}],[-18,{"n":4.5,"e":5651}],[-16,{"n":5,"e":5674}],[-15,{"n":5,"e":5685}],[-14,{"n":5,"e":5693}],[-13,{"n":4.5,"e":5705}],[-12,{"n":5,"e":5716}],[-11,{"n":5,"e":5722,"g":1}],[-10,{"n":4,"e":5736}],[-9,{"n":5.5,"e":5747}],[-8,{"n":5,"e":5756,"s":1}],[-7,{"n":5.5,"e":5760}],[-6,{"n":2.5,"e":5776}],[-5,{"n":4,"e":5783}],[3,{"n":5.5,"e":7485}],[2,{"n":5,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[5578,[{"t":"Y"}]]]}],[4512,{"n":"Ferrari","f":"Gian Marco","fp":"DC","r":18,"c":123,"s":{"s":24.5,"n":4,"a":6.13,"d":1.03,"Ss":24.5,"Sn":4,"Sa":6.13,"Sd":1.03,"Os":119,"On":23,"Oa":5.17,"Od":1.11,"pd":23},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":6,"e":5464}],[-36,{"n":4,"e":5474}],[-34,{"n":5,"e":5489}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":7,"e":5514}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":6,"e":5536}],[-29,{"n":5.5,"e":5540}],[-27,{"n":4,"e":5562}],[-26,{"n":6,"e":5576}],[-24,{"n":4.5,"e":5596}],[-23,{"n":5,"e":5605}],[-22,{"n":6,"e":5616}],[-19,{"n":3,"e":5646}],[-18,{"n":5,"e":5651}],[-16,{"n":5.5,"e":5674}],[-6,{"n":3,"e":5776}],[-5,{"n":4,"e":5783}],[4,{"n":5,"e":7452}],[3,{"n":7,"e":7485}],[2,{"n":7,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[5489,[{"t":"Y"}]],[5514,[{"t":"Y"}]]]}],[4577,{"n":"Berardi","f":"Domenico","fp":"A","r":30,"c":123,"s":{"g":3,"s":28.5,"n":4,"a":7.13,"d":0.85,"Sg":3,"Ss":28.5,"Sn":4,"Sa":7.13,"Sd":0.85,"Og":12,"Os":199,"On":32,"Oa":6.22,"Od":1.31,"pm":23,"pa":9},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":8.5,"e":5464,"g":1}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5.5,"e":5485}],[-33,{"n":8,"e":5505,"g":1}],[-31,{"n":7.5,"e":5519,"g":1}],[-30,{"n":7,"e":5536,"g":1}],[-29,{"n":5,"e":5540,"s":1}],[-28,{"n":6,"e":5556}],[-27,{"n":7,"e":5562,"g":1}],[-26,{"n":5,"e":5576}],[-25,{"n":5,"e":5578}],[-24,{"n":4.5,"e":5596}],[-23,{"n":7,"e":5605}],[-22,{"n":7.5,"e":5616}],[-21,{"n":6,"e":5625}],[-20,{"n":7.5,"e":5637,"g":1}],[-18,{"n":2.5,"e":5651,"s":1}],[-16,{"n":6,"e":5674}],[-15,{"n":6.5,"e":5685,"g":1}],[-12,{"n":6,"e":5716}],[-11,{"n":7,"e":5722,"g":1}],[-10,{"n":4.5,"e":5736}],[-9,{"n":6.5,"e":5747}],[-8,{"n":7,"e":5756,"g":1}],[-7,{"n":7,"e":5760}],[-6,{"n":5,"e":5776}],[-5,{"n":5.5,"e":5783}],[4,{"n":7.5,"e":7452,"g":1}],[3,{"n":8,"e":7485,"g":1}],[2,{"n":7,"e":7489,"g":1}],[1,{"n":6,"e":7473}]],"fo":[[5474,[{"t":"Y"}]],[5505,[{"t":"Y"}]]],"a":{"m":37,"a":47,"M":70,"n":6}}],[4583,{"n":"Ricci","f":"Federico","fp":"MD","r":9,"c":123,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[2,{"n":5,"e":7489,"s":1}]]}],[4624,{"n":"Defrel","f":"Gregoire","fp":"A","r":9,"c":123,"s":{"g":1,"s":17.5,"n":3,"a":5.83,"d":0.29,"Og":4,"Os":92,"On":18,"Oa":5.11,"Od":0.88,"pm":5,"pa":13},"p":[[-31,{"n":6,"e":5519}],[-29,{"n":7,"e":5540,"g":2}],[-28,{"n":5,"e":5556}],[-27,{"n":4,"e":5562,"s":1}],[-26,{"n":6,"e":5576,"s":1}],[-25,{"n":4.5,"e":5578}],[-24,{"n":4.5,"e":5596,"s":1}],[-23,{"n":4.5,"e":5605,"s":1}],[-22,{"n":4.5,"e":5616,"s":1}],[-12,{"n":4.5,"e":5716,"s":1}],[-11,{"n":5,"e":5722}],[-10,{"n":5,"e":5736,"s":1}],[-9,{"n":4,"e":5747}],[-6,{"n":6,"e":5776,"g":1}],[-5,{"n":4,"e":5783,"s":1}],[3,{"n":6,"e":7485}],[2,{"n":6,"e":7489,"g":1}],[1,{"n":5.5,"e":7473,"s":1}]],"fo":[[5519,[{"t":"I"}]]]}],[4670,{"n":"Bourabia","f":"Mehdi","fp":"MD","r":11,"c":123,"s":{"g":1,"s":20,"n":4,"a":5,"d":0.91,"Sg":1,"Ss":20,"Sn":4,"Sa":5,"Sd":0.91,"Og":2,"Oao":2,"Os":102,"On":20,"Oa":5.1,"Od":1.21,"pm":20},"p":[[-38,{"n":6,"e":5457}],[-37,{"n":7.5,"e":5464}],[-35,{"n":3.5,"e":5485}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":5.5,"e":5514}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":5.5,"e":5536}],[-29,{"n":5.5,"e":5540,"s":1}],[-28,{"n":4,"e":5556}],[-26,{"n":8,"e":5576}],[-25,{"n":5,"e":5578,"g":1,"a":1}],[-24,{"n":5,"e":5596,"s":1}],[-13,{"n":5,"e":5705,"s":1}],[-12,{"n":4.5,"e":5716,"s":1}],[-6,{"n":3,"e":5776}],[-5,{"n":4,"e":5783,"a":1,"s":1}],[4,{"n":5.5,"e":7452}],[3,{"n":4,"e":7485}],[2,{"n":4.5,"e":7489,"s":1}],[1,{"n":6,"e":7473,"g":1,"s":1}]],"fo":[[5485,[{"t":"Y"},{"t":"O"}]],[5505,[{"t":"Y"}]],[5519,[{"t":"Y"}]],[5556,[{"t":"Y"}]]]}],[4693,{"n":"Djuricic","f":"Filip","fp":"MO","r":29,"c":123,"s":{"g":2,"s":26.5,"n":4,"a":6.63,"d":0.85,"Sg":2,"Ss":26.5,"Sn":4,"Sa":6.63,"Sd":0.85,"Og":7,"Os":183.5,"On":32,"Oa":5.73,"Od":1.22,"pm":32},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":7,"e":5464}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5,"e":5485,"s":1}],[-34,{"n":5.5,"e":5489}],[-33,{"n":6.5,"e":5505,"g":1}],[-32,{"n":5.5,"e":5514}],[-30,{"n":5,"e":5536,"s":1}],[-29,{"n":8,"e":5540}],[-27,{"n":6.5,"e":5562}],[-26,{"n":7,"e":5576}],[-25,{"n":5.5,"e":5578,"s":1}],[-24,{"n":6,"e":5596}],[-22,{"n":8,"e":5616,"g":1}],[-21,{"n":5,"e":5625,"s":1}],[-20,{"n":5,"e":5637,"s":1}],[-19,{"n":3.5,"e":5646}],[-18,{"n":5,"e":5651,"s":1}],[-17,{"n":5,"e":5665,"s":1}],[-16,{"n":5.5,"e":5674}],[-15,{"n":7.5,"e":5685,"g":1}],[-14,{"n":4.5,"e":5693}],[-13,{"n":4.5,"e":5705}],[-12,{"n":6.5,"e":5716}],[-11,{"n":5,"e":5722,"s":1}],[-10,{"n":3,"e":5736}],[-9,{"n":6.5,"e":5747,"g":1}],[-8,{"n":5.5,"e":5756,"g":1,"s":1}],[4,{"n":7,"e":7452,"g":1}],[3,{"n":5.5,"e":7485}],[2,{"n":7.5,"e":7489,"g":1}],[1,{"n":6.5,"e":7473}]],"fo":[[5474,[{"t":"Y"}]],[5536,[{"t":"Y"}]],[7489,[{"t":"Y"}]]],"a":{"m":27,"a":30,"M":36,"n":7}}],[4694,{"n":"Chiriches","f":"Vlad","fp":"DC","r":12,"c":123,"s":{"s":21,"n":4,"a":5.25,"d":0.29,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.29,"Os":55,"On":11,"Oa":5,"Od":0.81,"pd":11},"p":[[-33,{"n":4.5,"e":5505}],[-31,{"n":6,"e":5519}],[-29,{"n":5,"e":5540}],[-28,{"n":5.5,"e":5556,"s":1}],[-27,{"n":5.5,"e":5562}],[-6,{"n":3,"e":5776}],[-5,{"n":4.5,"e":5783}],[4,{"n":5,"e":7452}],[3,{"n":5,"e":7485}],[2,{"n":5.5,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[7485,[{"t":"I"},{"t":"Y"}]],[7473,[{"t":"Y"}]]]}],[4746,{"n":"Caputo","f":"Francesco","fp":"A","r":40,"c":123,"s":{"g":4,"s":27,"n":4,"a":6.75,"d":1.55,"Sg":4,"Ss":27,"Sn":4,"Sa":6.75,"Sd":1.55,"Og":22,"Os":209,"On":36,"Oa":5.81,"Od":1.42,"pa":36},"p":[[-38,{"n":4.5,"e":5457}],[-37,{"n":8,"e":5464,"g":2}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5.5,"e":5485,"g":1}],[-34,{"n":6,"e":5489,"g":1}],[-33,{"n":8,"e":5505,"g":1}],[-32,{"n":7,"e":5514,"g":1,"s":1}],[-31,{"n":5,"e":5519}],[-30,{"n":6.5,"e":5536,"g":1}],[-29,{"n":4.5,"e":5540,"s":1}],[-28,{"n":6,"e":5556}],[-27,{"n":6.5,"e":5562,"g":1}],[-26,{"n":8,"e":5576,"g":2}],[-25,{"n":5,"e":5578}],[-24,{"n":4,"e":5596}],[-23,{"n":6,"e":5605,"g":1}],[-22,{"n":8,"e":5616,"g":2}],[-21,{"n":6,"e":5625}],[-20,{"n":4.5,"e":5637}],[-19,{"n":4.5,"e":5646}],[-18,{"n":4,"e":5651}],[-17,{"n":4,"e":5665}],[-16,{"n":5,"e":5674}],[-15,{"n":4.5,"e":5685}],[-14,{"n":7.5,"e":5693,"g":1}],[-13,{"n":6,"e":5705,"g":1}],[-12,{"n":8,"e":5716,"g":2}],[-10,{"n":4,"e":5736}],[-9,{"n":4,"e":5747,"s":1}],[-8,{"n":5.5,"e":5756}],[-7,{"n":6.5,"e":5760,"g":1}],[-5,{"n":5,"e":5783}],[4,{"n":7.5,"e":7452,"g":1}],[3,{"n":7,"e":7485,"g":2}],[2,{"n":8,"e":7489,"g":1}],[1,{"n":4.5,"e":7473}]],"fo":[[5536,[{"t":"Y"}]]]}],[4789,{"n":"Peluso","f":"Federico","fp":"DL","r":7,"c":123,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":96.5,"On":21,"Oa":4.6,"Od":0.83,"pd":21},"p":[[-38,{"n":4.5,"e":5457}],[-35,{"n":4.5,"e":5485}],[-33,{"n":4,"e":5505}],[-31,{"n":5.5,"e":5519}],[-30,{"n":5,"e":5536,"s":1}],[-28,{"n":4,"e":5556}],[-25,{"n":3,"e":5578}],[-21,{"n":4,"e":5625}],[-20,{"n":5.5,"e":5637}],[-17,{"n":4,"e":5665}],[-15,{"n":4.5,"e":5685,"s":1}],[-14,{"n":5,"e":5693,"s":1}],[-13,{"n":4.5,"e":5705}],[-11,{"n":5.5,"e":5722,"s":1}],[-10,{"n":4.5,"e":5736}],[-9,{"n":6,"e":5747}],[-8,{"n":5,"e":5756}],[-7,{"n":5,"e":5760,"s":1}],[-6,{"n":2.5,"e":5776}],[4,{"n":5,"e":7452,"s":1}],[3,{"n":5,"e":7485,"s":1}]],"fo":[[5457,[{"t":"Y"}]],[5578,[{"t":"Y"}]]]}],[4813,{"n":"Consigli","f":"Andrea","fp":"G","r":17,"c":123,"s":{"s":22.5,"n":4,"a":5.63,"d":0.48,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":0.48,"Os":167,"On":31,"Oa":5.39,"Od":1.15,"pg":31},"p":[[-38,{"n":4,"e":5457}],[-37,{"n":6,"e":5464}],[-36,{"n":5.5,"e":5474}],[-35,{"n":6,"e":5485}],[-33,{"n":3.5,"e":5505}],[-32,{"n":4.5,"e":5514}],[-31,{"n":4.5,"e":5519}],[-30,{"n":5,"e":5536}],[-28,{"n":3,"e":5556}],[-27,{"n":6,"e":5562}],[-26,{"n":7,"e":5576}],[-25,{"n":3.5,"e":5578}],[-24,{"n":5.5,"e":5596}],[-23,{"n":6,"e":5605}],[-22,{"n":7,"e":5616}],[-21,{"n":7,"e":5625}],[-20,{"n":5.5,"e":5637}],[-19,{"n":5,"e":5646}],[-18,{"n":6.5,"e":5651}],[-13,{"n":5,"e":5705}],[-12,{"n":6,"e":5716}],[-11,{"n":4,"e":5722}],[-10,{"n":5,"e":5736}],[-9,{"n":7,"e":5747}],[-8,{"n":5,"e":5756}],[-6,{"n":4,"e":5776}],[-5,{"n":7.5,"e":5783}],[4,{"n":5.5,"e":7452}],[3,{"n":6,"e":7485}],[2,{"n":6,"e":7489}],[1,{"n":5,"e":7473}]]}],[4825,{"n":"Magnanelli","f":"Francesco","fp":"MD","r":7,"c":123,"s":{"Os":112.5,"On":21,"Oa":5.36,"Od":0.5,"pm":21},"p":[[-36,{"n":5,"e":5474}],[-35,{"n":5,"e":5485,"s":1}],[-33,{"n":5,"e":5505}],[-31,{"n":6,"e":5519}],[-30,{"n":5,"e":5536,"s":1}],[-29,{"n":6,"e":5540}],[-27,{"n":5.5,"e":5562}],[-22,{"n":5.5,"e":5616,"s":1}],[-20,{"n":5,"e":5637,"s":1}],[-19,{"n":4.5,"e":5646}],[-17,{"n":5,"e":5665,"s":1}],[-16,{"n":5.5,"e":5674}],[-15,{"n":4.5,"e":5685}],[-14,{"n":6,"e":5693}],[-13,{"n":5,"e":5705}],[-12,{"n":6,"e":5716}],[-10,{"n":5.5,"e":5736}],[-9,{"n":6,"e":5747}],[-8,{"n":6,"e":5756}],[-6,{"n":5,"e":5776,"s":1}],[-5,{"n":5.5,"e":5783}]],"fo":[[5505,[{"t":"Y"}]]]}],[4831,{"n":"Pegolo","f":"Gianluca","fp":"G","r":8,"c":123,"s":{"Os":32,"On":5,"Oa":6.4,"Od":1.67,"pg":5},"p":[[-34,{"n":4,"e":5489}],[-29,{"n":6,"e":5540}],[-17,{"n":6,"e":5665}],[-16,{"n":8,"e":5674}],[-7,{"n":8,"e":5760}]]}],[6180,{"n":"Müldür","f":"Mert","fp":"DL","r":9,"c":123,"s":{"s":18.5,"n":4,"a":4.63,"d":0.85,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.85,"Og":2,"Os":122.5,"On":25,"Oa":4.9,"Od":0.79,"pd":25},"p":[[-38,{"n":5,"e":5457,"s":1}],[-36,{"n":4.5,"e":5474}],[-35,{"n":3.5,"e":5485}],[-34,{"n":4.5,"e":5489}],[-33,{"n":4.5,"e":5505}],[-32,{"n":5,"e":5514,"s":1}],[-31,{"n":6,"e":5519}],[-30,{"n":6.5,"e":5536,"g":1}],[-29,{"n":6.5,"e":5540,"g":1}],[-28,{"n":4.5,"e":5556}],[-27,{"n":6,"e":5562}],[-26,{"n":5,"e":5576,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[-21,{"n":5,"e":5625,"s":1}],[-20,{"n":5,"e":5637,"s":1}],[-19,{"n":5,"e":5646,"s":1}],[-17,{"n":4.5,"e":5665}],[-14,{"n":4.5,"e":5693,"s":1}],[-9,{"n":5,"e":5747,"s":1}],[-8,{"n":3.5,"e":5756}],[-5,{"n":5,"e":5783}],[4,{"n":3.5,"e":7452}],[3,{"n":5,"e":7485}],[2,{"n":5.5,"e":7489,"s":1}],[1,{"n":4.5,"e":7473,"s":1}]],"fo":[[5474,[{"t":"I"}]],[5514,[{"t":"Y"}]],[5519,[{"t":"Y"}]]]}],[6222,{"n":"Kyriakopoulos","f":"Georgios","fp":"DL","r":9,"c":123,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":145.5,"On":30,"Oa":4.85,"Od":0.66,"pd":30},"p":[[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":4.5,"e":5485,"s":1}],[-34,{"n":5,"e":5489,"s":1}],[-33,{"n":3,"e":5505}],[-32,{"n":5,"e":5514}],[-30,{"n":5,"e":5536}],[-29,{"n":5,"e":5540,"s":1}],[-28,{"n":4.5,"e":5556}],[-27,{"n":5,"e":5562,"s":1}],[-25,{"n":3,"e":5578}],[-24,{"n":4.5,"e":5596}],[-23,{"n":5,"e":5605}],[-22,{"n":6,"e":5616}],[-21,{"n":5.5,"e":5625}],[-20,{"n":5,"e":5637}],[-19,{"n":5,"e":5646,"s":1}],[-18,{"n":5,"e":5651}],[-17,{"n":5,"e":5665}],[-16,{"n":6.5,"e":5674}],[-15,{"n":4.5,"e":5685}],[-14,{"n":4.5,"e":5693}],[-13,{"n":5,"e":5705,"s":1}],[-12,{"n":5,"e":5716}],[-11,{"n":5,"e":5722}],[-7,{"n":5,"e":5760,"s":1}],[4,{"n":4.5,"e":7452}],[3,{"n":5,"e":7485,"s":1}],[2,{"n":4.5,"e":7489}],[1,{"n":5,"e":7473,"s":1}]],"fo":[[5505,[{"t":"Y"}]],[7485,[{"t":"Y"}]]]}],[6295,{"n":"Piccinini","f":"Stefano","fp":"DC","r":1,"c":123,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-38,{"n":5,"e":5457,"s":1}]]}],[6524,{"n":"Haraslin","f":"Lukas","fp":"A","r":7,"c":123,"s":{"s":5.5,"n":1,"a":5.5,"Og":1,"Os":60,"On":12,"Oa":5,"Od":0.85,"pm":11,"pa":1},"p":[[-38,{"n":5.5,"e":5457,"s":1}],[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":3.5,"e":5485}],[-34,{"n":4.5,"e":5489}],[-32,{"n":5,"e":5514,"s":1}],[-31,{"n":7,"e":5519,"g":1}],[-28,{"n":4,"e":5556}],[-27,{"n":5,"e":5562,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[-24,{"n":5,"e":5596,"s":1}],[1,{"n":5.5,"e":7473}]],"fo":[[5519,[{"t":"Y"}]]]}],[6600,{"n":"Mercati","f":"Alessandro","fp":"MD","r":1,"c":123}],[7171,{"n":"Ayhan","f":"Kaan","fp":"DC","r":9,"c":123,"s":{"s":21,"n":4,"a":5.25,"d":0.29,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.29,"Os":21,"On":4,"Oa":5.25,"Od":0.29,"pd":4},"p":[[4,{"n":5.5,"e":7452,"s":1}],[3,{"n":5.5,"e":7485,"s":1}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":5,"e":7473,"s":1}]]}],[7281,{"n":"Vitale","f":"Samuele","fp":"G","r":1,"c":123}],[7376,{"n":"Schiappacasse","f":"Nicolás","fp":"A","r":1,"c":123}],[2746,{"n":"Verde","f":"Daniele","fp":"A","r":8,"c":141,"s":{"g":1,"s":15.5,"n":3,"a":5.17,"d":1.26,"Sg":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.77,"Og":1,"Os":15.5,"On":3,"Oa":5.17,"Od":1.26,"pa":3},"p":[[1,{"n":5,"e":7493}],[4,{"n":6.5,"e":7502,"g":1}],[3,{"n":4,"e":7487}]]}],[4178,{"n":"Agoume","f":"Lucien","fp":"MD","r":4,"c":141,"s":{"Os":15,"On":3,"Oa":5,"Od":0.5,"pm":3},"p":[[-29,{"n":5.5,"e":5542,"s":1}],[-27,{"n":5,"e":5562,"s":1}],[-16,{"n":4.5,"e":5671,"s":1}]],"fo":[[5542,[{"t":"Y"}]]]}],[4257,{"n":"Chabot","f":"Julian","fp":"DC","r":10,"c":141,"s":{"s":19.5,"n":4,"a":4.88,"d":1.03,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.03,"Og":1,"Os":58,"On":12,"Oa":4.83,"Od":1.25,"pd":12},"p":[[-36,{"n":5,"e":5472}],[-34,{"n":7,"e":5495,"g":1}],[-20,{"n":3,"e":5633}],[-19,{"n":5.5,"e":5644}],[-18,{"n":6,"e":5654}],[-7,{"n":4,"e":5767}],[-6,{"n":3,"e":5775}],[-5,{"n":5,"e":5779,"s":1}],[4,{"n":5,"e":7502}],[3,{"n":3.5,"e":7487}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":6,"e":7493}]],"fo":[[5472,[{"t":"I"}]],[7502,[{"t":"Y"}]]]}],[4322,{"n":"Piccoli","f":"Roberto","fp":"A","r":5,"c":141,"s":{"s":8,"n":2,"a":4,"Ss":8,"Sn":2,"Sa":4,"Os":12.5,"On":3,"Oa":4.17,"Od":0.29,"pa":3},"p":[[-33,{"n":4.5,"e":5498,"s":1}],[4,{"n":4,"e":7502}],[3,{"n":4,"e":7487,"s":1}]]}],[4372,{"n":"Dell'Orco","f":"Cristian","fp":"DL","r":10,"c":141,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Ss":5,"Sn":1,"Sa":5,"Os":66.5,"On":15,"Oa":4.43,"Od":0.94,"pd":15},"p":[[-38,{"n":3,"e":5453}],[-37,{"n":5.5,"e":5466,"s":1}],[-36,{"n":4.5,"e":5468}],[-34,{"n":5,"e":5491}],[-33,{"n":5.5,"e":5500,"s":1}],[-24,{"n":5,"e":5593,"s":1}],[-21,{"n":3,"e":5627}],[-20,{"n":5,"e":5634}],[-19,{"n":3,"e":5642}],[-18,{"n":5,"e":5653}],[-16,{"n":3.5,"e":5669}],[-15,{"n":5,"e":5682}],[-10,{"n":5,"e":5735}],[4,{"n":5,"e":7502,"s":1}],[2,{"n":3.5,"e":7489}]]}],[4393,{"n":"Erlic","f":"Martin","fp":"DC","r":9,"c":141,"s":{"s":12.5,"n":3,"a":4.17,"d":0.76,"Os":12.5,"On":3,"Oa":4.17,"Od":0.76,"pd":3},"p":[[3,{"n":4,"e":7487}],[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493,"s":1}]]}],[4399,{"n":"Marchizza","f":"Riccardo","fp":"DC","r":5,"c":141,"s":{"s":3.5,"n":1,"a":3.5,"Os":3.5,"On":1,"Oa":3.5,"pd":1},"p":[[3,{"n":3.5,"e":7487}]]}],[4488,{"n":"Deiola","f":"Alessandro","fp":"MD","r":9,"c":141,"s":{"s":15,"n":3,"a":5,"d":0.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":68,"On":14,"Oa":4.86,"Od":0.77,"pm":14},"p":[[-32,{"n":5,"e":5509,"s":1}],[-31,{"n":5,"e":5522,"s":1}],[-26,{"n":4,"e":5571}],[-25,{"n":3.5,"e":5584}],[-24,{"n":5.5,"e":5593}],[-23,{"n":5,"e":5602}],[-22,{"n":6,"e":5613,"g":1}],[-21,{"n":4,"e":5627}],[-20,{"n":6,"e":5634}],[-19,{"n":4,"e":5642}],[-16,{"n":5,"e":5670,"s":1}],[4,{"n":4.5,"e":7502}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":5.5,"e":7493}]],"fo":[[5509,[{"t":"Y"}]],[7502,[{"t":"Y"}]]]}],[4543,{"n":"Mattiello","f":"Federico","fp":"DL","r":9,"c":141,"s":{"Os":92,"On":18,"Oa":5.11,"Od":0.72,"pd":9,"pm":9},"p":[[-38,{"n":4.5,"e":5454}],[-37,{"n":7,"e":5458}],[-36,{"n":5,"e":5470,"s":1}],[-35,{"n":4.5,"e":5480}],[-34,{"n":5,"e":5489}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509}],[-31,{"n":5.5,"e":5520}],[-30,{"n":5.5,"e":5529,"s":1}],[-29,{"n":5,"e":5539}],[-28,{"n":4,"e":5549}],[-27,{"n":6.5,"e":5565}],[-25,{"n":5,"e":5587,"s":1}],[-24,{"n":5,"e":5590,"s":1}],[-23,{"n":4.5,"e":5600,"s":1}],[-21,{"n":5,"e":5620,"s":1}],[-13,{"n":4.5,"e":5700,"s":1}],[-7,{"n":5,"e":5764,"s":1}]],"fo":[[5520,[{"t":"Y"}]],[5549,[{"t":"Y"}]]]}],[4662,{"n":"Sala","f":"Jacopo","fp":"DL","r":6,"c":141,"s":{"s":11.5,"n":3,"a":3.83,"d":0.76,"Ss":11.5,"Sn":3,"Sa":3.83,"Sd":0.76,"Os":75.5,"On":17,"Oa":4.44,"Od":0.75,"pd":14,"pm":3},"p":[[-35,{"n":5,"e":5483}],[-33,{"n":3.5,"e":5503}],[-32,{"n":4.5,"e":5511,"s":1}],[-31,{"n":4,"e":5525}],[-30,{"n":3,"e":5535}],[-29,{"n":5,"e":5545}],[-27,{"n":5,"e":5565}],[-26,{"n":4.5,"e":5574,"s":1}],[-13,{"n":5.5,"e":5703}],[-12,{"n":5,"e":5717,"s":1}],[-10,{"n":5,"e":5732,"s":1}],[-8,{"n":5,"e":5749}],[-7,{"n":5,"e":5765,"s":1}],[-6,{"n":4,"e":5769}],[4,{"n":4.5,"e":7502}],[3,{"n":4,"e":7487}],[2,{"n":3,"e":7489}]],"fo":[[5483,[{"t":"I"}]],[5565,[{"t":"I"}]],[7489,[{"t":"Y"}]]]}],[4725,{"n":"Farias","f":"Diego","fp":"A","r":8,"c":141,"s":{"g":1,"s":10.5,"n":2,"a":5.25,"d":1.77,"Sg":1,"Ss":6.5,"Sn":1,"Sa":6.5,"Og":2,"Os":84,"On":17,"Oa":4.94,"Od":0.92,"pm":2,"pa":15},"p":[[-34,{"n":5.5,"e":5491}],[-33,{"n":3.5,"e":5500}],[-32,{"n":5.5,"e":5509,"s":1}],[-31,{"n":5,"e":5522,"s":1}],[-30,{"n":4.5,"e":5536}],[-29,{"n":5,"e":5543,"s":1}],[-18,{"n":4.5,"e":5653,"s":1}],[-17,{"n":7,"e":5662,"g":1,"s":1}],[-16,{"n":4.5,"e":5669,"s":1}],[-15,{"n":5,"e":5682,"s":1}],[-14,{"n":5,"e":5690}],[-13,{"n":5.5,"e":5700,"s":1}],[-9,{"n":3.5,"e":5743}],[-8,{"n":4.5,"e":5752,"s":1}],[-7,{"n":5,"e":5758,"s":1}],[4,{"n":6.5,"e":7502,"g":1,"s":1}],[1,{"n":4,"e":7493,"s":1}]],"fo":[[7493,[{"t":"Y"}]]]}],[6115,{"n":"Rafael","f":"","fp":"G","r":8,"c":141,"s":{"s":10,"n":2,"a":5,"d":2.12,"Os":32.5,"On":7,"Oa":4.64,"Od":1.07,"pg":7},"p":[[-17,{"n":4,"e":5667}],[-16,{"n":5.5,"e":5670}],[-15,{"n":4,"e":5685}],[-14,{"n":5,"e":5689}],[-13,{"n":4,"e":5700,"s":1}],[3,{"n":3.5,"e":7487}],[1,{"n":6.5,"e":7493,"s":1}]]}],[6132,{"n":"Agudelo","f":"Kevin","fp":"MO","r":7,"c":141,"s":{"s":13.5,"n":3,"a":4.5,"d":1.32,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":1.32,"Og":1,"Os":77,"On":16,"Oa":4.81,"Od":0.91,"pm":11,"pa":5},"p":[[-38,{"n":4.5,"e":5456}],[-33,{"n":5,"e":5500,"s":1}],[-22,{"n":4.5,"e":5611,"s":1}],[-20,{"n":5,"e":5631,"s":1}],[-19,{"n":4.5,"e":5647,"s":1}],[-17,{"n":3.5,"e":5660}],[-15,{"n":4.5,"e":5682}],[-14,{"n":4.5,"e":5691}],[-13,{"n":5,"e":5703}],[-12,{"n":5,"e":5713}],[-11,{"n":4.5,"e":5721}],[-10,{"n":7,"e":5730}],[-9,{"n":6,"e":5741,"g":1,"s":1}],[4,{"n":5.5,"e":7502,"s":1}],[3,{"n":5,"e":7487,"s":1}],[2,{"n":3,"e":7489}]]}],[6951,{"n":"Ferrer","f":"Salvador","fp":"DL","r":14,"c":141,"s":{"s":17,"n":3,"a":5.67,"d":0.76,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":17,"On":3,"Oa":5.67,"Od":0.76,"pd":3},"p":[[4,{"n":5.5,"e":7502,"s":1}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":6.5,"e":7493}]],"fo":[[7493,[{"t":"Y"}]]]}],[6969,{"n":"Pinto","f":"Vincenzo","fp":"A","r":1,"c":141}],[6976,{"n":"Maggiore","f":"Giulio","fp":"MD","r":11,"c":141,"s":{"s":9.5,"n":2,"a":4.75,"d":1.77,"Os":9.5,"On":2,"Oa":4.75,"Od":1.77,"pm":2},"p":[[3,{"n":3.5,"e":7487}],[1,{"n":6,"e":7493}]]}],[6978,{"n":"Krapikas","f":"Titas","fp":"G","r":2,"c":141}],[6987,{"n":"Nzola","f":"M'Bala","fp":"A","r":5,"c":141,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[4,{"n":4.5,"e":7502,"s":1}]]}],[6990,{"n":"Vignali","f":"Luca","fp":"DL","r":8,"c":141}],[6991,{"n":"Bartolomei","f":"Paolo","fp":"MD","r":12,"c":141,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Os":13,"On":3,"Oa":4.33,"Od":0.76,"pm":3},"p":[[3,{"n":4.5,"e":7487,"s":1}],[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493,"s":1}]]}],[6996,{"n":"Ramos","f":"Juan","fp":"DL","r":8,"c":141,"s":{"s":8.5,"n":2,"a":4.25,"d":1.06,"Os":8.5,"On":2,"Oa":4.25,"Od":1.06,"pd":2},"p":[[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493}]],"fo":[[7493,[{"t":"Y"}]]]}],[6999,{"n":"Acampora","f":"Gennaro","fp":"MD","r":9,"c":141,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[4,{"n":5,"e":7502}],[3,{"n":5,"e":7487,"s":1}]]}],[7002,{"n":"Bastoni","f":"Simone","fp":"DL","r":7,"c":141,"s":{"s":3.5,"n":1,"a":3.5,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":3.5,"On":1,"Oa":3.5,"pd":1},"p":[[4,{"n":3.5,"e":7502}]]}],[7003,{"n":"Mastinu","f":"Giuseppe","fp":"MO","r":8,"c":141}],[7008,{"n":"Capradossi","f":"Elio","fp":"DC","r":9,"c":141}],[7009,{"n":"Gyasi","f":"Emmanuel","fp":"A","r":11,"c":141,"s":{"s":16.5,"n":4,"a":4.13,"d":1.49,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":1.49,"Os":16.5,"On":4,"Oa":4.13,"Od":1.49,"pa":4},"p":[[4,{"n":4.5,"e":7502}],[3,{"n":2.5,"e":7487}],[2,{"n":3.5,"e":7489}],[1,{"n":6,"e":7493}]],"fo":[[7487,[{"t":"Y"}]]]}],[7012,{"n":"Ricci","f":"Matteo","fp":"MD","r":17,"c":141,"s":{"s":22,"n":4,"a":5.5,"d":0.82,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.82,"Os":22,"On":4,"Oa":5.5,"Od":0.82,"pm":4},"p":[[4,{"n":5.5,"e":7502}],[3,{"n":4.5,"e":7487}],[2,{"n":6.5,"e":7489}],[1,{"n":5.5,"e":7493}]],"fo":[[7487,[{"t":"Y"}]]]}],[7024,{"n":"Galabinov","f":"Andrej","fp":"A","r":17,"c":141,"s":{"g":3,"s":17,"n":3,"a":5.67,"d":1.76,"Og":3,"Os":17,"On":3,"Oa":5.67,"Od":1.76,"pa":3},"p":[[3,{"n":4,"e":7487}],[2,{"n":5.5,"e":7489,"g":1}],[1,{"n":7.5,"e":7493,"g":2}]],"fo":[[7487,[{"t":"I"}]]]}],[7028,{"n":"Mora","f":"Luca","fp":"MO","r":9,"c":141,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[3,{"n":5,"e":7487,"s":1}],[2,{"n":5,"e":7489,"s":1}]]}],[7040,{"n":"Terzi","f":"Claudio","fp":"DC","r":12,"c":141,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":2},"p":[[4,{"n":5.5,"e":7502}],[1,{"n":5,"e":7493}]],"fo":[[7493,[{"t":"Y"},{"t":"O"}]]]}],[7188,{"n":"Pobega","f":"Tommaso","fp":"MD","r":6,"c":141,"s":{"s":12,"n":3,"a":4,"d":0.87,"Os":12,"On":3,"Oa":4,"Od":0.87,"pm":3},"p":[[3,{"n":3.5,"e":7487}],[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493,"s":1}]]}],[7190,{"n":"Boloca","f":"Daniel","fp":"MD","r":7,"c":141}],[7239,{"n":"Zoet","f":"Jeroen","fp":"G","r":8,"c":141,"s":{"s":7,"n":2,"a":3.5,"d":1.41,"Os":7,"On":2,"Oa":3.5,"Od":1.41,"pg":2},"p":[[2,{"n":2.5,"e":7489}],[1,{"n":4.5,"e":7493}]],"fo":[[7493,[{"t":"I"}]],[7489,[{"t":"Y"}]]]}],[7289,{"n":"Ismajli","f":"Ardian","fp":"DC","r":6,"c":141}],[7334,{"n":"Estévez","f":"Nahuel","fp":"MD","r":8,"c":141}],[7381,{"n":"Léo Sena","f":"","fp":"MD","r":7,"c":141}],[7384,{"n":"Provedel","f":"Ivan","fp":"G","r":10,"c":141,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[4,{"n":5,"e":7502}]]}],[7422,{"n":"Afi","f":"Ayoub","fp":"A","r":1,"c":141}],[1196,{"n":"Meité","f":"Soualiho","fp":"MD","r":12,"c":122,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Os":159,"On":32,"Oa":4.97,"Od":0.96,"pm":31,"pa":1},"p":[[-37,{"n":4.5,"e":5465}],[-36,{"n":5.5,"e":5476}],[-35,{"n":5,"e":5486}],[-34,{"n":5,"e":5490}],[-33,{"n":6.5,"e":5506}],[-32,{"n":4.5,"e":5512}],[-31,{"n":6.5,"e":5526}],[-30,{"n":3.5,"e":5531}],[-29,{"n":5,"e":5546}],[-28,{"n":5,"e":5549}],[-27,{"n":5,"e":5566}],[-26,{"n":5,"e":5573,"s":1}],[-25,{"n":6,"e":5586}],[-23,{"n":5,"e":5606,"s":1}],[-22,{"n":3.5,"e":5613}],[-21,{"n":3,"e":5626}],[-20,{"n":5,"e":5637,"s":1}],[-19,{"n":7,"e":5645}],[-18,{"n":5,"e":5656,"s":1}],[-17,{"n":5,"e":5666,"s":1}],[-16,{"n":5,"e":5677,"s":1}],[-15,{"n":5,"e":5686,"s":1}],[-14,{"n":4.5,"e":5691,"s":1}],[-13,{"n":3.5,"e":5706}],[-12,{"n":7,"e":5708}],[-11,{"n":5,"e":5726}],[-10,{"n":3.5,"e":5731}],[-7,{"n":5.5,"e":5766,"s":1}],[-6,{"n":5.5,"e":5774}],[4,{"n":4.5,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":4.5,"e":7463}],[1,{"n":5,"e":7470}]],"fo":[[5465,[{"t":"Y"}]],[5512,[{"t":"Y"}]],[5566,[{"t":"Y"}]]]}],[1584,{"n":"Zaza","f":"Simone","fp":"A","r":8,"c":122,"s":{"s":8,"n":2,"a":4,"d":0.71,"Og":5,"Os":107,"On":23,"Oa":4.65,"Od":1.21,"pa":23},"p":[[-38,{"n":6,"e":5449,"g":1}],[-37,{"n":5.5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":6.5,"e":5486,"g":1}],[-34,{"n":3,"e":5490}],[-33,{"n":4,"e":5506}],[-31,{"n":7,"e":5526,"g":1}],[-27,{"n":4,"e":5566}],[-26,{"n":3,"e":5573}],[-25,{"n":5,"e":5586}],[-24,{"n":4,"e":5594,"s":1}],[-17,{"n":4,"e":5666,"s":1}],[-16,{"n":5,"e":5677}],[-15,{"n":6.5,"e":5686,"g":1}],[-13,{"n":3,"e":5706,"s":1}],[-11,{"n":4.5,"e":5726,"s":1}],[-10,{"n":3,"e":5731}],[-9,{"n":6,"e":5746,"g":1,"s":1}],[-8,{"n":4,"e":5757,"s":1}],[-6,{"n":4.5,"e":5774,"s":1}],[-5,{"n":5.5,"e":5786}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3.5,"e":7463}],[1,{"n":4.5,"e":7470}]],"fo":[[5486,[{"t":"Y"}]],[5506,[{"t":"Y"}]],[5526,[{"t":"Y"}]],[7463,[{"t":"Y"}]]]}],[1999,{"n":"Lukic","f":"Sasa","fp":"MD","r":11,"c":122,"s":{"s":15.5,"n":3,"a":5.17,"d":0.76,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.76,"Og":1,"Os":150,"On":31,"Oa":4.84,"Od":0.89,"pm":28,"pa":3},"p":[[-38,{"n":6,"e":5449}],[-37,{"n":5,"e":5465}],[-36,{"n":4.5,"e":5476,"s":1}],[-34,{"n":4,"e":5490}],[-33,{"n":6.5,"e":5506,"g":1,"s":1}],[-32,{"n":5,"e":5512,"s":1}],[-31,{"n":5,"e":5526,"s":1}],[-30,{"n":3.5,"e":5531}],[-29,{"n":5,"e":5546}],[-28,{"n":5,"e":5549,"s":1}],[-27,{"n":5,"e":5566,"s":1}],[-26,{"n":5.5,"e":5573}],[-25,{"n":5,"e":5586,"s":1}],[-24,{"n":5,"e":5594}],[-23,{"n":5,"e":5606}],[-21,{"n":2,"e":5626}],[-20,{"n":5,"e":5637}],[-19,{"n":5.5,"e":5645}],[-18,{"n":6,"e":5656}],[-17,{"n":4,"e":5666}],[-16,{"n":4.5,"e":5677,"s":1}],[-14,{"n":4.5,"e":5691}],[-13,{"n":3.5,"e":5706}],[-12,{"n":6,"e":5708}],[-11,{"n":5,"e":5726,"s":1}],[-10,{"n":4,"e":5731}],[-8,{"n":4.5,"e":5757}],[-7,{"n":5,"e":5766}],[4,{"n":6,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":4.5,"e":7463,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[5490,[{"t":"Y"}]]]}],[4159,{"n":"Singo","f":"Wilfried Stephane","fp":"DC","r":7,"c":122,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":27,"On":5,"Oa":5.4,"Od":0.42,"pd":4,"pm":1},"p":[[-37,{"n":6,"e":5465,"g":1}],[-33,{"n":5,"e":5506,"s":1}],[-32,{"n":5.5,"e":5512,"s":1}],[-28,{"n":5,"e":5549,"s":1}],[4,{"n":5.5,"e":7453,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[4209,{"n":"Ferigra","f":"Erick","fp":"DC","r":1,"c":122,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[4212,{"n":"Adopo","f":"Michel Ndary","fp":"MD","r":1,"c":122,"s":{"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-37,{"n":5,"e":5465,"s":1}],[-18,{"n":5,"e":5656,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[4222,{"n":"Millico","f":"Vincenzo","fp":"MO","r":7,"c":122,"s":{"s":9,"n":2,"a":4.5,"Os":59,"On":13,"Oa":4.54,"Od":0.38,"pa":13},"p":[[-34,{"n":4.5,"e":5490,"s":1}],[-32,{"n":5,"e":5512,"s":1}],[-30,{"n":4.5,"e":5531,"s":1}],[-29,{"n":4.5,"e":5546,"s":1}],[-28,{"n":4.5,"e":5549,"s":1}],[-24,{"n":4.5,"e":5594,"s":1}],[-22,{"n":3.5,"e":5613,"s":1}],[-21,{"n":5,"e":5626,"s":1}],[-20,{"n":4.5,"e":5637,"s":1}],[-11,{"n":4.5,"e":5726,"s":1}],[-8,{"n":5,"e":5757,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":4.5,"e":7463,"s":1}],[1,{"n":4.5,"e":7470,"s":1}]]}],[4259,{"n":"Bremer","f":"","fp":"DC","r":10,"c":122,"s":{"s":9,"n":2,"a":4.5,"d":1.41,"Og":3,"Os":133.5,"On":27,"Oa":4.94,"Od":1.38,"pd":27},"p":[[-38,{"n":6.5,"e":5449}],[-37,{"n":5.5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":4.5,"e":5490}],[-33,{"n":7.5,"e":5506,"g":1}],[-32,{"n":4.5,"e":5512}],[-31,{"n":5.5,"e":5526}],[-30,{"n":3.5,"e":5531}],[-29,{"n":4,"e":5546}],[-28,{"n":5.5,"e":5549,"g":1}],[-27,{"n":6,"e":5566}],[-26,{"n":4.5,"e":5573}],[-25,{"n":5,"e":5586}],[-24,{"n":4,"e":5594}],[-22,{"n":3,"e":5613}],[-17,{"n":3.5,"e":5666}],[-16,{"n":3,"e":5677}],[-15,{"n":6.5,"e":5686}],[-14,{"n":7.5,"e":5691,"g":1}],[-13,{"n":3.5,"e":5706}],[-12,{"n":6,"e":5708}],[-11,{"n":5,"e":5726}],[-6,{"n":2.5,"e":5774}],[-5,{"n":6.5,"e":5786}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3.5,"e":7463}],[1,{"n":5.5,"e":7470}]]}],[4284,{"n":"Buongiorno","f":"Alessandro","fp":"DC","r":2,"c":122,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[4373,{"n":"Lyanco","f":"","fp":"DC","r":8,"c":122,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Oao":1,"Os":79.5,"On":17,"Oa":4.68,"Od":0.85,"pd":17},"p":[[-37,{"n":3,"e":5465}],[-35,{"n":5.5,"e":5486}],[-34,{"n":3.5,"e":5490,"a":1}],[-33,{"n":5.5,"e":5506}],[-31,{"n":5.5,"e":5526}],[-30,{"n":3,"e":5531}],[-29,{"n":5,"e":5546}],[-24,{"n":5.5,"e":5594}],[-23,{"n":4.5,"e":5606}],[-22,{"n":5,"e":5613,"s":1}],[-21,{"n":5,"e":5626,"s":1}],[-11,{"n":5,"e":5726}],[-10,{"n":4,"e":5731}],[-8,{"n":5,"e":5757}],[-7,{"n":5.5,"e":5766}],[-5,{"n":4.5,"e":5786}],[4,{"n":4.5,"e":7453}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[5465,[{"t":"Y"}]],[5486,[{"t":"Y"}]],[5490,[{"t":"Y"}]],[5506,[{"t":"Y"}]]]}],[4406,{"n":"Edera","f":"Simone","fp":"MO","r":6,"c":122,"s":{"Og":1,"Os":63,"On":13,"Oa":4.85,"Od":0.85,"pm":9,"pa":4},"p":[[-36,{"n":5,"e":5476,"s":1}],[-34,{"n":4.5,"e":5490,"s":1}],[-30,{"n":4.5,"e":5531,"s":1}],[-29,{"n":4.5,"e":5546,"s":1}],[-28,{"n":4.5,"e":5549}],[-27,{"n":6,"e":5566}],[-26,{"n":6.5,"e":5573,"g":1,"s":1}],[-25,{"n":6,"e":5586}],[-24,{"n":4,"e":5594}],[-22,{"n":4.5,"e":5613,"s":1}],[-21,{"n":5,"e":5626,"s":1}],[-19,{"n":4.5,"e":5645,"s":1}],[-14,{"n":3.5,"e":5691,"s":1}],[3,{"n":null,"e":7457,"d":1}]],"fo":[[5566,[{"t":"Y"}]]]}],[4491,{"n":"Bonazzoli","f":"Federico","fp":"A","r":18,"c":122,"s":{"s":14.5,"n":3,"a":4.83,"d":1.26,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.26,"Og":6,"Os":109,"On":21,"Oa":5.19,"Od":1.16,"pa":21},"p":[[-35,{"n":5,"e":5484}],[-34,{"n":7,"e":5495,"g":1,"s":1}],[-33,{"n":8,"e":5504,"g":2}],[-32,{"n":7,"e":5517,"g":1,"s":1}],[-29,{"n":4,"e":5543}],[-28,{"n":6,"e":5555,"g":1,"s":1}],[-27,{"n":4.5,"e":5564,"s":1}],[-26,{"n":4.5,"e":5575,"s":1}],[-25,{"n":4.5,"e":5583,"s":1}],[-22,{"n":4,"e":5615,"s":1}],[-20,{"n":4.5,"e":5633,"s":1}],[-12,{"n":5,"e":5715}],[-11,{"n":5,"e":5725}],[-10,{"n":6,"e":5735}],[-8,{"n":5,"e":5755,"s":1}],[-7,{"n":4,"e":5767}],[-6,{"n":4.5,"e":5775,"s":1}],[-5,{"n":6,"e":5779,"g":1,"s":1}],[4,{"n":6,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":5,"e":7488}],[1,{"n":3.5,"e":7474}]],"fo":[[7453,[{"t":"Y"}]]]}],[4547,{"n":"Linetty","f":"Karol","fp":"MD","r":15,"c":122,"s":{"s":14,"n":3,"a":4.67,"d":0.76,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.76,"Og":4,"Os":147.5,"On":28,"Oa":5.27,"Od":1.06,"pm":28},"p":[[-38,{"n":5,"e":5450,"s":1}],[-37,{"n":4,"e":5463}],[-36,{"n":5.5,"e":5472}],[-35,{"n":5,"e":5484}],[-33,{"n":6.5,"e":5504}],[-32,{"n":6,"e":5517}],[-31,{"n":5,"e":5518}],[-30,{"n":8,"e":5535,"g":2}],[-28,{"n":4,"e":5555}],[-27,{"n":4.5,"e":5564}],[-26,{"n":4.5,"e":5575,"s":1}],[-25,{"n":5,"e":5583}],[-24,{"n":4,"e":5595}],[-23,{"n":5.5,"e":5606}],[-22,{"n":4.5,"e":5615}],[-21,{"n":6,"e":5625}],[-20,{"n":5.5,"e":5633,"g":1}],[-19,{"n":8,"e":5644,"g":1}],[-18,{"n":5,"e":5654}],[-17,{"n":5,"e":5664}],[-16,{"n":7,"e":5672}],[-15,{"n":5,"e":5684,"s":1}],[-14,{"n":5,"e":5689,"s":1}],[-13,{"n":5,"e":5704,"s":1}],[-6,{"n":5,"e":5775}],[4,{"n":4.5,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":4,"e":7463}],[1,{"n":5.5,"e":7470}]],"fo":[[7470,[{"t":"Y"}]]]}],[4589,{"n":"Belotti","f":"Andrea","fp":"A","r":35,"c":122,"s":{"g":4,"s":19.5,"n":3,"a":6.5,"d":1.32,"Sg":4,"Ss":19.5,"Sn":3,"Sa":6.5,"Sd":1.32,"Og":18,"Oao":1,"Os":190,"On":35,"Oa":5.43,"Od":1.39,"pa":35},"p":[[-38,{"n":5.5,"e":5449}],[-37,{"n":4,"e":5465,"s":1}],[-36,{"n":4.5,"e":5476}],[-35,{"n":4.5,"e":5486}],[-34,{"n":4,"e":5490}],[-33,{"n":8,"e":5506,"g":1}],[-32,{"n":6,"e":5512,"g":1}],[-31,{"n":7,"e":5526,"g":1}],[-30,{"n":5,"e":5531,"g":1}],[-29,{"n":5,"e":5546,"g":1}],[-28,{"n":6,"e":5549,"g":1}],[-27,{"n":7,"e":5566,"g":1}],[-26,{"n":4.5,"e":5573}],[-25,{"n":4.5,"e":5586}],[-24,{"n":4.5,"e":5594}],[-23,{"n":4.5,"e":5606}],[-22,{"n":4.5,"e":5613}],[-21,{"n":4.5,"e":5626}],[-20,{"n":5,"e":5637}],[-19,{"n":6,"e":5645}],[-18,{"n":8,"e":5656,"g":2}],[-17,{"n":5,"e":5666}],[-16,{"n":4,"e":5677,"s":1}],[-13,{"n":4.5,"e":5706}],[-12,{"n":7.5,"e":5708,"g":2}],[-11,{"n":5,"e":5726}],[-10,{"n":2.5,"e":5731,"a":1}],[-9,{"n":6,"e":5746}],[-8,{"n":4,"e":5757}],[-7,{"n":4.5,"e":5766}],[-6,{"n":7,"e":5774,"g":1}],[-5,{"n":8,"e":5786,"g":2}],[4,{"n":7,"e":7453,"g":2}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":7.5,"e":7463,"g":2}],[1,{"n":5,"e":7470}]],"fo":[[5476,[{"t":"Y"}]]]}],[4606,{"n":"Izzo","f":"Armando","fp":"DC","r":9,"c":122,"s":{"s":5,"n":1,"a":5,"Os":133.5,"On":28,"Oa":4.77,"Od":1.08,"pd":28},"p":[[-38,{"n":5.5,"e":5449}],[-36,{"n":5.5,"e":5476}],[-33,{"n":5,"e":5506,"s":1}],[-32,{"n":3.5,"e":5512}],[-30,{"n":3,"e":5531}],[-28,{"n":4.5,"e":5549}],[-27,{"n":6,"e":5566}],[-26,{"n":4,"e":5573}],[-25,{"n":4.5,"e":5586}],[-23,{"n":3,"e":5606}],[-21,{"n":3,"e":5626}],[-20,{"n":5,"e":5637}],[-19,{"n":6,"e":5645}],[-18,{"n":5.5,"e":5656}],[-17,{"n":4.5,"e":5666}],[-16,{"n":4,"e":5677}],[-15,{"n":5.5,"e":5686}],[-14,{"n":7,"e":5691}],[-13,{"n":4,"e":5706}],[-12,{"n":6,"e":5708}],[-11,{"n":4,"e":5726}],[-10,{"n":5,"e":5731}],[-9,{"n":4.5,"e":5746}],[-8,{"n":4,"e":5757}],[-7,{"n":5,"e":5766}],[-6,{"n":4,"e":5774}],[-5,{"n":7,"e":5786}],[3,{"n":null,"e":7457,"d":1}],[1,{"n":5,"e":7470}]],"fo":[[5531,[{"t":"Y"}]]]}],[4607,{"n":"Murru","f":"Nicola","fp":"DL","r":7,"c":122,"s":{"s":8,"n":2,"a":4,"d":1.41,"Ss":8,"Sn":2,"Sa":4,"Sd":1.41,"Oao":1,"Os":117,"On":26,"Oa":4.5,"Od":0.88,"pd":22,"pm":4},"p":[[-34,{"n":4.5,"e":5495}],[-31,{"n":4.5,"e":5518}],[-29,{"n":5,"e":5543,"s":1}],[-28,{"n":4,"e":5555}],[-27,{"n":5,"e":5564,"s":1}],[-25,{"n":4,"e":5583}],[-24,{"n":3,"e":5595}],[-23,{"n":5,"e":5606}],[-20,{"n":3,"e":5633}],[-19,{"n":5.5,"e":5644}],[-18,{"n":5,"e":5654}],[-17,{"n":4.5,"e":5664}],[-16,{"n":5,"e":5672}],[-15,{"n":5,"e":5684}],[-14,{"n":4,"e":5689}],[-13,{"n":5.5,"e":5704}],[-12,{"n":5.5,"e":5715}],[-11,{"n":6,"e":5725}],[-10,{"n":5,"e":5735}],[-9,{"n":4,"e":5739}],[-8,{"n":5,"e":5755}],[-7,{"n":2.5,"e":5767,"a":1}],[-6,{"n":4.5,"e":5775}],[-5,{"n":4,"e":5779}],[4,{"n":5,"e":7453,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3,"e":7463}]]}],[4615,{"n":"Baselli","f":"Daniele","fp":"MD","r":2,"c":122,"s":{"Os":62,"On":12,"Oa":5.17,"Od":0.98,"pm":12},"p":[[-26,{"n":4.5,"e":5573}],[-16,{"n":4.5,"e":5677}],[-15,{"n":5.5,"e":5686}],[-14,{"n":7,"e":5691}],[-13,{"n":3.5,"e":5706}],[-11,{"n":4,"e":5726}],[-10,{"n":4.5,"e":5731}],[-9,{"n":5.5,"e":5746}],[-8,{"n":5.5,"e":5757}],[-7,{"n":5.5,"e":5766}],[-6,{"n":6,"e":5774}],[-5,{"n":6,"e":5786}],[3,{"n":null,"e":7457,"d":1}]]}],[4669,{"n":"Verdi","f":"Simone","fp":"A","r":11,"c":122,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":2,"Os":180,"On":34,"Oa":5.29,"Od":1.05,"pm":2,"pa":32},"p":[[-38,{"n":6.5,"e":5449}],[-37,{"n":4.5,"e":5465}],[-36,{"n":7,"e":5476,"g":1}],[-35,{"n":7,"e":5486}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":7,"e":5506}],[-32,{"n":5,"e":5512}],[-31,{"n":7,"e":5526}],[-30,{"n":4.5,"e":5531}],[-29,{"n":3.5,"e":5546}],[-28,{"n":6,"e":5549,"s":1}],[-26,{"n":4.5,"e":5573,"s":1}],[-23,{"n":6,"e":5606,"g":1}],[-22,{"n":4.5,"e":5613}],[-21,{"n":3.5,"e":5626}],[-20,{"n":5,"e":5637}],[-19,{"n":5.5,"e":5645}],[-18,{"n":6,"e":5656}],[-17,{"n":4,"e":5666}],[-16,{"n":6,"e":5677}],[-15,{"n":5,"e":5686}],[-14,{"n":7,"e":5691}],[-13,{"n":5,"e":5706}],[-12,{"n":5,"e":5708}],[-11,{"n":5,"e":5726}],[-10,{"n":4.5,"e":5731,"s":1}],[-9,{"n":4.5,"e":5746,"s":1}],[-8,{"n":4.5,"e":5757}],[-7,{"n":5.5,"e":5766}],[-6,{"n":7,"e":5774}],[-5,{"n":5.5,"e":5786}],[4,{"n":4.5,"e":7453,"s":1}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":4,"e":7470,"s":1}]],"fo":[[5486,[{"t":"Y"}]],[5546,[{"t":"Y"}]]]}],[4684,{"n":"Rodríguez","f":"Ricardo","fp":"DL","r":6,"c":122,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":8,"On":2,"Oa":4,"pd":2},"p":[[-17,{"n":4,"e":5658}],[4,{"n":4,"e":7453}],[3,{"n":null,"e":7457,"d":1}]]}],[4736,{"n":"Nkoulou","f":"Nicolas","fp":"DC","r":9,"c":122,"s":{"s":12,"n":3,"a":4,"d":1,"Ss":12,"Sn":3,"Sa":4,"Sd":1,"Og":1,"Os":166,"On":34,"Oa":4.88,"Od":1.11,"pd":34},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":4.5,"e":5486}],[-34,{"n":5,"e":5490}],[-33,{"n":6,"e":5506}],[-32,{"n":4,"e":5512}],[-31,{"n":5,"e":5526}],[-29,{"n":5,"e":5546}],[-28,{"n":3,"e":5549}],[-27,{"n":6,"e":5566}],[-26,{"n":4,"e":5573}],[-25,{"n":7,"e":5586,"g":1}],[-24,{"n":5,"e":5594}],[-23,{"n":4.5,"e":5606}],[-22,{"n":3.5,"e":5613}],[-21,{"n":3,"e":5626}],[-20,{"n":4.5,"e":5637}],[-19,{"n":5.5,"e":5645}],[-18,{"n":7,"e":5656}],[-17,{"n":5.5,"e":5666}],[-16,{"n":5,"e":5677}],[-15,{"n":5.5,"e":5686}],[-14,{"n":6,"e":5691}],[-13,{"n":4,"e":5706}],[-12,{"n":6.5,"e":5708}],[-10,{"n":2.5,"e":5731}],[-9,{"n":6,"e":5746}],[-8,{"n":5.5,"e":5757}],[-7,{"n":5.5,"e":5766}],[-6,{"n":4.5,"e":5774}],[4,{"n":4,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3,"e":7463}],[1,{"n":5,"e":7470}]],"fo":[[5486,[{"t":"Y"}]]]}],[4744,{"n":"Ansaldi","f":"Cristian","fp":"DL","r":9,"c":122,"s":{"s":9,"n":2,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":4,"Os":142.5,"On":28,"Oa":5.09,"Od":1.07,"pd":8,"pm":19,"pa":1},"p":[[-38,{"n":4.5,"e":5449}],[-37,{"n":5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":6,"e":5506}],[-32,{"n":4.5,"e":5512}],[-31,{"n":4.5,"e":5526}],[-30,{"n":4.5,"e":5531,"s":1}],[-29,{"n":4.5,"e":5546,"s":1}],[-28,{"n":5.5,"e":5549,"s":1}],[-26,{"n":5,"e":5573}],[-24,{"n":4.5,"e":5594}],[-23,{"n":5,"e":5606,"s":1}],[-17,{"n":4,"e":5666}],[-16,{"n":7.5,"e":5677,"g":2}],[-15,{"n":8,"e":5686,"g":1}],[-14,{"n":5.5,"e":5691}],[-13,{"n":3,"e":5706}],[-12,{"n":5,"e":5708}],[-11,{"n":4.5,"e":5726}],[-9,{"n":4,"e":5746}],[-8,{"n":4.5,"e":5757}],[-7,{"n":6,"e":5766}],[-6,{"n":7,"e":5774,"g":1}],[-5,{"n":5,"e":5786,"s":1}],[4,{"n":4.5,"e":7453,"s":1}],[3,{"n":null,"e":7457,"d":1}],[1,{"n":4.5,"e":7470}]],"fo":[[5449,[{"t":"Y"}]],[5476,[{"t":"Y"}]]]}],[4745,{"n":"Rincón","f":"Tomás","fp":"MD","r":11,"c":122,"s":{"s":15,"n":3,"a":5,"d":0.5,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Og":1,"Os":159,"On":31,"Oa":5.13,"Od":0.85,"pm":31},"p":[[-38,{"n":5.5,"e":5449}],[-36,{"n":5.5,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":5.5,"e":5506}],[-32,{"n":4,"e":5512}],[-31,{"n":4.5,"e":5526}],[-29,{"n":4.5,"e":5546}],[-28,{"n":4.5,"e":5549}],[-27,{"n":6,"e":5566}],[-26,{"n":4.5,"e":5573}],[-25,{"n":4.5,"e":5586}],[-24,{"n":5,"e":5594}],[-23,{"n":4.5,"e":5606}],[-22,{"n":3,"e":5613}],[-20,{"n":4.5,"e":5637}],[-18,{"n":6,"e":5656}],[-17,{"n":6,"e":5666,"g":1}],[-16,{"n":4.5,"e":5677}],[-15,{"n":6,"e":5686}],[-14,{"n":5.5,"e":5691}],[-12,{"n":7,"e":5708}],[-11,{"n":5,"e":5726}],[-9,{"n":5,"e":5746}],[-8,{"n":5.5,"e":5757}],[-7,{"n":6.5,"e":5766}],[-6,{"n":4,"e":5774}],[-5,{"n":6,"e":5786}],[4,{"n":5,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":5.5,"e":7463}],[1,{"n":4.5,"e":7470}]],"fo":[[7463,[{"t":"I"}]],[5449,[{"t":"Y"}]],[5476,[{"t":"Y"}]],[5586,[{"t":"Y"}]],[7453,[{"t":"Y"}]]]}],[4803,{"n":"Sirigu","f":"Salvatore","fp":"G","r":14,"c":122,"s":{"s":12.5,"n":3,"a":4.17,"d":1.61,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":1.61,"Os":187,"On":35,"Oa":5.34,"Od":1.21,"pg":35},"p":[[-36,{"n":4,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":5,"e":5490}],[-33,{"n":7,"e":5506}],[-32,{"n":6,"e":5512}],[-31,{"n":5.5,"e":5526}],[-30,{"n":4,"e":5531}],[-29,{"n":5,"e":5546}],[-28,{"n":3.5,"e":5549}],[-27,{"n":6,"e":5566}],[-26,{"n":5.5,"e":5573}],[-25,{"n":6,"e":5586}],[-24,{"n":4,"e":5594}],[-23,{"n":4.5,"e":5606}],[-22,{"n":5,"e":5613}],[-21,{"n":4,"e":5626}],[-20,{"n":5,"e":5637}],[-19,{"n":7,"e":5645}],[-18,{"n":8,"e":5656}],[-17,{"n":4,"e":5666}],[-16,{"n":6,"e":5677}],[-15,{"n":6,"e":5686}],[-14,{"n":6,"e":5691}],[-13,{"n":4,"e":5706}],[-12,{"n":7,"e":5708}],[-11,{"n":7.5,"e":5726}],[-10,{"n":5,"e":5731}],[-9,{"n":5,"e":5746}],[-8,{"n":5,"e":5757}],[-7,{"n":6,"e":5766}],[-6,{"n":6,"e":5774}],[-5,{"n":6,"e":5786}],[4,{"n":3,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":3.5,"e":7463}],[1,{"n":6,"e":7470}]]}],[4821,{"n":"Rosati","f":"Antonio","fp":"G","r":3,"c":122,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-38,{"n":4.5,"e":5449}],[3,{"n":null,"e":7457,"d":1}]]}],[6227,{"n":"Ujkani","f":"Samir","fp":"G","r":7,"c":122,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-37,{"n":5,"e":5465}],[3,{"n":null,"e":7457,"d":1}]]}],[6292,{"n":"Kryeziu","f":"Altin","fp":"MD","r":1,"c":122}],[6293,{"n":"Portanova","f":"Denis","fp":"DC","r":1,"c":122}],[6608,{"n":"Celesia","f":"Christian","fp":"DC","r":1,"c":122,"s":{"Os":5.5,"On":1,"Oa":5.5,"pd":1},"p":[[-38,{"n":5.5,"e":5449,"s":1}],[3,{"n":null,"e":7457,"d":1}]]}],[6612,{"n":"Horváth","f":"Krisztofer","fp":"MO","r":1,"c":122,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[-38,{"n":4.5,"e":5456,"s":1}],[-37,{"n":5,"e":5467,"s":1}],[-36,{"n":4.5,"e":5476,"s":1}]]}],[6620,{"n":"Jean Greco","f":"","fp":"MD","r":1,"c":122,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[6666,{"n":"Milinkovic-Savic","f":"Vanja","fp":"G","r":1,"c":122,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]],"fo":[[7453,[{"t":"R"}]]]}],[7150,{"n":"Segre","f":"Jacopo","fp":"MD","r":5,"c":122,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[3,{"n":null,"e":7457,"d":1}],[2,{"n":5,"e":7463,"s":1}]]}],[7197,{"n":"Vojvoda","f":"Mergim","fp":"DL","r":8,"c":122,"s":{"s":12.5,"n":3,"a":4.17,"d":0.76,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":0.76,"Os":12.5,"On":3,"Oa":4.17,"Od":0.76,"pd":3},"p":[[4,{"n":3.5,"e":7453}],[3,{"n":null,"e":7457,"d":1}],[2,{"n":4,"e":7463}],[1,{"n":5,"e":7470,"s":1}]]}],[7382,{"n":"Gojak","f":"Amer","fp":"MO","r":5,"c":122,"s":{},"p":[[3,{"n":null,"e":7457,"d":1}]]}],[7424,{"n":"Aceto","f":"Giovanni","fp":"DC","r":1,"c":122}],[7426,{"n":"Cancello","f":"Rosario","fp":"A","r":1,"c":122}],[7437,{"n":"Spina","f":"Raffaele","fp":"DC","r":1,"c":122}],[449,{"n":"Makengo","f":"Jean-Victor","fp":"MD","r":7,"c":124,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":63.5,"On":14,"Oa":4.54,"Od":0.54,"pm":13,"pa":1},"p":[[-28,{"n":4,"e":3649}],[-20,{"n":4.5,"e":3737,"s":1}],[-18,{"n":5,"e":3757,"s":1}],[-15,{"n":4.5,"e":3782,"s":1}],[-12,{"n":4.5,"e":3817,"s":1}],[-11,{"n":5,"e":3825,"s":1}],[-9,{"n":3.5,"e":3847}],[-8,{"n":5,"e":3852}],[-25,{"n":5,"e":3687}],[-24,{"n":4.5,"e":3691}],[-22,{"n":5,"e":3708,"s":1}],[-19,{"n":3.5,"e":3743}],[-10,{"n":5,"e":3837,"s":1}],[4,{"n":4.5,"e":7454,"s":1}]],"fo":[[7454,[{"t":"Y"}]]]}],[739,{"n":"Pereyra","f":"Roberto","fp":"MO","r":12,"c":124,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":2,"Os":126.5,"On":25,"Oa":5.06,"Od":0.75,"pm":21,"pa":4},"p":[[-38,{"n":5,"e":3928}],[-37,{"n":4,"e":3946}],[-33,{"n":5,"e":3979,"s":1}],[-32,{"n":4,"e":3996}],[-30,{"n":5.5,"e":4016}],[-29,{"n":4.5,"e":4021}],[-28,{"n":5.5,"e":4036,"s":1}],[-27,{"n":3.5,"e":4044}],[-26,{"n":5,"e":4050}],[-25,{"n":6,"e":4066,"g":1}],[-22,{"n":7,"e":4089,"g":1,"s":1}],[-21,{"n":5,"e":4106,"s":1}],[-19,{"n":5.5,"e":4125,"s":1}],[-18,{"n":5,"e":4136,"s":1}],[-16,{"n":5,"e":4156}],[-12,{"n":4.5,"e":4192}],[-11,{"n":4.5,"e":4206}],[-10,{"n":4.5,"e":4216}],[-9,{"n":5,"e":4226}],[-8,{"n":6,"e":4234}],[-24,{"n":5.5,"e":4068}],[-23,{"n":5,"e":4086,"s":1}],[-7,{"n":5.5,"e":4244,"s":1}],[4,{"n":6,"e":7454}],[3,{"n":4.5,"e":7458}]],"fo":[[3928,[{"t":"Y"}]]]}],[812,{"n":"Prödl","f":"Sebastian","fp":"DC","r":1,"c":124,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-8,{"n":5,"e":4234}]]}],[845,{"n":"Okaka","f":"Stefano","fp":"A","r":12,"c":124,"s":{"s":17,"n":4,"a":4.25,"d":0.5,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Og":8,"Os":177,"On":36,"Oa":4.92,"Od":1.17,"pa":36},"p":[[2,{"n":4,"e":7467}],[-38,{"n":7,"e":5457,"g":1}],[-37,{"n":3.5,"e":5466}],[-36,{"n":6.5,"e":5470,"g":1}],[-35,{"n":5,"e":5487}],[-33,{"n":4,"e":5507}],[-32,{"n":4.5,"e":5517,"s":1}],[-31,{"n":6,"e":5525,"g":1}],[-30,{"n":4.5,"e":5537,"s":1}],[-29,{"n":4,"e":5544}],[-28,{"n":4.5,"e":5557,"s":1}],[-27,{"n":4,"e":5566}],[-26,{"n":4.5,"e":5577}],[-25,{"n":6,"e":5579,"g":1}],[-24,{"n":6,"e":5597}],[-23,{"n":7,"e":5598}],[-22,{"n":4,"e":5617}],[-21,{"n":3.5,"e":5622}],[-20,{"n":5.5,"e":5635}],[-19,{"n":7,"e":5646,"g":1}],[-18,{"n":4,"e":5653}],[-17,{"n":6,"e":5667}],[-16,{"n":4,"e":5673}],[-15,{"n":4,"e":5687}],[-14,{"n":3.5,"e":5694}],[-12,{"n":4.5,"e":5717}],[-11,{"n":6,"e":5721}],[-10,{"n":3,"e":5737}],[-9,{"n":7,"e":5738,"g":1}],[-8,{"n":6,"e":5757,"g":1}],[-7,{"n":5,"e":5761}],[-6,{"n":6,"e":5777,"g":1}],[-5,{"n":4,"e":5787,"s":1}],[4,{"n":5,"e":7454}],[3,{"n":4,"e":7458}],[1,{"n":4,"e":7493}]],"fo":[[5507,[{"t":"Y"}]],[5544,[{"t":"Y"}]],[7458,[{"t":"Y"}]]]}],[1724,{"n":"Deulofeu","f":"Gerard","fp":"A","r":8,"c":124,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Og":4,"Os":121,"On":23,"Oa":5.26,"Od":1.26,"pm":12,"pa":11},"p":[[-20,{"n":7,"e":4116}],[-17,{"n":4.5,"e":4143}],[-15,{"n":3.5,"e":4160}],[-14,{"n":3.5,"e":4177}],[-13,{"n":5,"e":4186}],[-28,{"n":5.5,"e":4036}],[-27,{"n":3.5,"e":4044}],[-26,{"n":5,"e":4050}],[-25,{"n":5,"e":4066}],[-24,{"n":6,"e":4068}],[-23,{"n":6,"e":4086}],[-22,{"n":6.5,"e":4089}],[-21,{"n":7,"e":4106,"g":1}],[-19,{"n":6,"e":4125,"g":1}],[-18,{"n":6.5,"e":4136}],[-16,{"n":6,"e":4156}],[-12,{"n":7.5,"e":4192,"g":1}],[-11,{"n":6,"e":4206,"g":1}],[-10,{"n":3.5,"e":4216}],[-9,{"n":5,"e":4226,"s":1}],[-8,{"n":5,"e":4234,"s":1}],[-7,{"n":3.5,"e":4244}],[4,{"n":4,"e":7454,"s":1}]]}],[2023,{"n":"Zeegelaar","f":"Marvin","fp":"DL","r":8,"c":124,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":72.5,"On":15,"Oa":4.83,"Od":0.52,"pd":7,"pm":8},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":5,"e":5466,"s":1}],[-36,{"n":5.5,"e":5470}],[-35,{"n":5,"e":5487}],[-34,{"n":4.5,"e":5494}],[-31,{"n":5,"e":5525}],[-30,{"n":3.5,"e":5537,"s":1}],[-29,{"n":5,"e":5544}],[-28,{"n":5,"e":5557,"s":1}],[-26,{"n":5,"e":5577,"s":1}],[-25,{"n":5,"e":5579,"s":1}],[-23,{"n":5,"e":5598,"s":1}],[-22,{"n":5,"e":5617,"s":1}],[2,{"n":4,"e":7467}],[1,{"n":4.5,"e":7493}]],"fo":[[5487,[{"t":"Y"}]],[5544,[{"t":"Y"}]],[5557,[{"t":"Y"}]]]}],[2101,{"n":"González","f":"Cristo","fp":"A","r":9,"c":124}],[4155,{"n":"Battistella","f":"Thomas","fp":"MD","r":1,"c":124}],[4228,{"n":"Gasparini","f":"Manuel","fp":"G","r":1,"c":124}],[4238,{"n":"Micin","f":"Petar","fp":"MO","r":1,"c":124}],[4277,{"n":"Coulibaly","f":"Mamadou","fp":"MD","r":6,"c":124,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Os":13.5,"On":3,"Oa":4.5,"Od":0.5,"pm":3},"p":[[3,{"n":5,"e":7458,"s":1}],[2,{"n":4.5,"e":7467}],[1,{"n":4,"e":7493}]]}],[4346,{"n":"Rodrigo Becão","f":"","fp":"DC","r":11,"c":124,"s":{"s":16.5,"n":4,"a":4.13,"d":0.25,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":0.25,"Os":137,"On":29,"Oa":4.72,"Od":1.01,"pd":29},"p":[[-37,{"n":4,"e":5466}],[-36,{"n":5.5,"e":5470}],[-35,{"n":6,"e":5487}],[-34,{"n":4,"e":5494}],[-33,{"n":6,"e":5507}],[-31,{"n":5.5,"e":5525}],[-29,{"n":6,"e":5544}],[-28,{"n":4,"e":5557,"s":1}],[-27,{"n":5.5,"e":5566,"s":1}],[-26,{"n":5.5,"e":5577}],[-25,{"n":5,"e":5579}],[-24,{"n":5.5,"e":5597}],[-22,{"n":4.5,"e":5617}],[-21,{"n":3,"e":5622}],[-20,{"n":3,"e":5635}],[-19,{"n":6,"e":5646}],[-15,{"n":5,"e":5687,"s":1}],[-14,{"n":5,"e":5694}],[-12,{"n":5.5,"e":5717}],[-11,{"n":5,"e":5721,"s":1}],[-10,{"n":2.5,"e":5737}],[-9,{"n":3,"e":5738}],[-8,{"n":5,"e":5757,"s":1}],[-6,{"n":5.5,"e":5777}],[-5,{"n":5,"e":5787}],[4,{"n":4,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":4.5,"e":7467}],[1,{"n":4,"e":7493}]],"fo":[[5487,[{"t":"I"}]],[5494,[{"t":"Y"}]],[5557,[{"t":"Y"}]],[7454,[{"t":"Y"}]]]}],[4425,{"n":"Lasagna","f":"Kevin","fp":"A","r":17,"c":124,"s":{"s":16.5,"n":4,"a":4.13,"d":0.63,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":0.63,"Og":9,"Os":175.5,"On":36,"Oa":4.88,"Od":1.09,"pa":36},"p":[[-38,{"n":6,"e":5457}],[-37,{"n":5,"e":5466,"s":1}],[-36,{"n":4,"e":5470}],[-34,{"n":4.5,"e":5494}],[-33,{"n":5,"e":5507}],[-32,{"n":6.5,"e":5517,"g":1}],[-31,{"n":6.5,"e":5525,"g":1}],[-30,{"n":6.5,"e":5537,"g":1}],[-29,{"n":6,"e":5544,"g":1}],[-28,{"n":7.5,"e":5557,"g":2}],[-27,{"n":4,"e":5566,"s":1}],[-26,{"n":5,"e":5577,"s":1}],[-25,{"n":4.5,"e":5579}],[-24,{"n":5,"e":5597}],[-23,{"n":5,"e":5598}],[-22,{"n":4,"e":5617}],[-21,{"n":4.5,"e":5622}],[-20,{"n":6.5,"e":5635,"g":1}],[-19,{"n":4.5,"e":5646}],[-18,{"n":4.5,"e":5653,"s":1}],[-17,{"n":4.5,"e":5667}],[-16,{"n":4.5,"e":5673}],[-15,{"n":6,"e":5687,"g":1}],[-13,{"n":4,"e":5704}],[-12,{"n":4.5,"e":5717,"s":1}],[-11,{"n":6.5,"e":5721,"g":1,"s":1}],[-10,{"n":2,"e":5737}],[-9,{"n":4,"e":5738}],[-8,{"n":5,"e":5757}],[-7,{"n":4.5,"e":5761,"s":1}],[-6,{"n":4.5,"e":5777,"s":1}],[-5,{"n":4,"e":5787}],[4,{"n":5,"e":7454}],[3,{"n":3.5,"e":7458}],[2,{"n":4,"e":7467}],[1,{"n":4,"e":7493}]],"a":{"m":24,"a":29,"M":33,"n":6}}],[4435,{"n":"ter Avest","f":"Hidde","fp":"DL","r":8,"c":124,"s":{"s":17.5,"n":4,"a":4.38,"d":0.25,"Ss":17.5,"Sn":4,"Sa":4.38,"Sd":0.25,"Os":113.5,"On":24,"Oa":4.73,"Od":0.42,"pd":14,"pm":10},"p":[[-38,{"n":5,"e":5457,"s":1}],[-37,{"n":5,"e":5466}],[-36,{"n":5,"e":5470,"s":1}],[-35,{"n":5,"e":5487}],[-34,{"n":5,"e":5494,"s":1}],[-33,{"n":5,"e":5507,"s":1}],[-32,{"n":4.5,"e":5517,"s":1}],[-31,{"n":5,"e":5525,"s":1}],[-30,{"n":4.5,"e":5537,"s":1}],[-29,{"n":5,"e":5544,"s":1}],[-28,{"n":5,"e":5557,"s":1}],[-24,{"n":5,"e":5597,"s":1}],[-20,{"n":5,"e":5635,"s":1}],[-17,{"n":5,"e":5667,"s":1}],[-16,{"n":4,"e":5673}],[-15,{"n":5,"e":5687}],[-13,{"n":4.5,"e":5704,"s":1}],[-10,{"n":3.5,"e":5737}],[-8,{"n":5,"e":5757}],[-7,{"n":5,"e":5761,"s":1}],[4,{"n":4.5,"e":7454}],[3,{"n":4.5,"e":7458}],[2,{"n":4.5,"e":7467}],[1,{"n":4,"e":7493}]],"fo":[[5517,[{"t":"Y"}]]]}],[4442,{"n":"Mandragora","f":"Rolando","fp":"MD","r":4,"c":124,"s":{"Os":117.5,"On":23,"Oa":5.11,"Od":1.05,"pm":23},"p":[[-27,{"n":4.5,"e":5566}],[-26,{"n":6.5,"e":5577}],[-25,{"n":4.5,"e":5579}],[-24,{"n":4,"e":5597}],[-23,{"n":5,"e":5598,"s":1}],[-22,{"n":6,"e":5617}],[-21,{"n":5,"e":5622}],[-20,{"n":5,"e":5635}],[-19,{"n":7.5,"e":5646}],[-18,{"n":6,"e":5653}],[-17,{"n":6,"e":5667}],[-16,{"n":4,"e":5673}],[-15,{"n":5,"e":5687}],[-14,{"n":4,"e":5694}],[-13,{"n":5,"e":5704}],[-12,{"n":5,"e":5717}],[-11,{"n":6,"e":5721}],[-10,{"n":3.5,"e":5737}],[-9,{"n":3,"e":5738}],[-8,{"n":6,"e":5757}],[-7,{"n":4.5,"e":5761}],[-6,{"n":5.5,"e":5777}],[-5,{"n":6,"e":5787}]]}],[4453,{"n":"Bonifazi","f":"Kevin","fp":"DC","r":7,"c":124,"s":{"Og":1,"Os":61.5,"On":14,"Oa":4.39,"Od":1.16,"pd":14},"p":[[-38,{"n":3.5,"e":5456}],[-37,{"n":4,"e":5467}],[-33,{"n":3.5,"e":5503}],[-32,{"n":4,"e":5511}],[-31,{"n":4,"e":5525}],[-30,{"n":3.5,"e":5535}],[-29,{"n":6,"e":5545}],[-27,{"n":5,"e":5565}],[-26,{"n":6,"e":5574}],[-25,{"n":4,"e":5585}],[-24,{"n":4,"e":5593}],[-23,{"n":7,"e":5605,"g":1}],[-22,{"n":3,"e":5612}],[-21,{"n":4,"e":5624,"s":1}]],"fo":[[5545,[{"t":"I"}]],[5565,[{"t":"Y"}]]]}],[4476,{"n":"Pussetto","f":"Ignacio","fp":"A","r":13,"c":124,"s":{"g":1,"s":7,"n":1,"a":7,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":2,"Os":82,"On":16,"Oa":5.13,"Od":0.79,"pm":7,"pa":9},"p":[[-32,{"n":4.5,"e":3996,"s":1}],[-29,{"n":5,"e":4021,"s":1}],[-28,{"n":5,"e":4036,"s":1}],[-26,{"n":5,"e":4050,"s":1}],[-25,{"n":4.5,"e":4066,"s":1}],[-24,{"n":5,"e":4068,"s":1}],[-23,{"n":5.5,"e":4086,"s":1}],[-19,{"n":4.5,"e":5646,"s":1}],[-18,{"n":5,"e":5653,"s":1}],[-17,{"n":4.5,"e":5667,"s":1}],[-16,{"n":7,"e":5673,"g":1,"s":1}],[-15,{"n":5,"e":5687,"s":1}],[-13,{"n":5,"e":5704,"s":1}],[-10,{"n":4.5,"e":5737,"s":1}],[-9,{"n":5,"e":5738,"s":1}],[4,{"n":7,"e":7454,"g":1,"s":1}]]}],[4487,{"n":"Samir","f":"","fp":"DC","r":10,"c":124,"s":{"g":1,"s":19.5,"n":4,"a":4.88,"d":0.85,"Sg":1,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.85,"Og":2,"Os":108,"On":22,"Oa":4.91,"Od":1.02,"pd":20,"pm":2},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":6.5,"e":5466,"g":1}],[-36,{"n":6,"e":5470,"s":1}],[-35,{"n":5,"e":5487,"s":1}],[-33,{"n":5,"e":5507,"s":1}],[-32,{"n":3,"e":5517}],[-31,{"n":5,"e":5525,"s":1}],[-30,{"n":5,"e":5537}],[-29,{"n":5,"e":5544,"s":1}],[-28,{"n":4,"e":5557}],[-27,{"n":4.5,"e":5566}],[-14,{"n":5,"e":5694}],[-10,{"n":3,"e":5737}],[-9,{"n":3,"e":5738}],[-8,{"n":6,"e":5757}],[-7,{"n":5,"e":5761}],[-6,{"n":6,"e":5777}],[-5,{"n":6,"e":5787}],[4,{"n":6,"e":7454,"g":1}],[3,{"n":5,"e":7458}],[2,{"n":4.5,"e":7467}],[1,{"n":4,"e":7493}]]}],[4526,{"n":"Scuffet","f":"Simone","fp":"G","r":4,"c":124}],[4565,{"n":"Musso","f":"Juan","fp":"G","r":10,"c":124,"s":{"s":13.5,"n":3,"a":4.5,"d":0.87,"Os":214,"On":37,"Oa":5.78,"Od":1.12,"pg":37},"p":[[-38,{"n":8,"e":5457}],[-37,{"n":6,"e":5466}],[-36,{"n":7,"e":5470}],[-35,{"n":6,"e":5487}],[-34,{"n":6,"e":5494}],[-33,{"n":6,"e":5507}],[-32,{"n":4,"e":5517}],[-31,{"n":6,"e":5525}],[-30,{"n":6,"e":5537}],[-29,{"n":6.5,"e":5544}],[-28,{"n":6.5,"e":5557}],[-27,{"n":5,"e":5566}],[-26,{"n":7,"e":5577}],[-25,{"n":5.5,"e":5579}],[-24,{"n":6.5,"e":5597}],[-23,{"n":6,"e":5598}],[-22,{"n":5,"e":5617}],[-21,{"n":3.5,"e":5622}],[-20,{"n":4.5,"e":5635}],[-19,{"n":7,"e":5646}],[-18,{"n":7,"e":5653}],[-17,{"n":4.5,"e":5667}],[-16,{"n":5,"e":5673}],[-15,{"n":5,"e":5687}],[-14,{"n":6,"e":5694}],[-13,{"n":6.5,"e":5704}],[-12,{"n":8,"e":5717}],[-11,{"n":5,"e":5721}],[-10,{"n":4,"e":5737}],[-9,{"n":6,"e":5738}],[-8,{"n":6,"e":5757}],[-7,{"n":6,"e":5761}],[-6,{"n":6.5,"e":5777}],[-5,{"n":7,"e":5787}],[3,{"n":5,"e":7458}],[2,{"n":5,"e":7467}],[1,{"n":3.5,"e":7493}]],"fo":[[5457,[{"t":"Y"}]]]}],[4574,{"n":"de Paul","f":"Rodrigo","fp":"MO","r":31,"c":124,"s":{"s":23,"n":4,"a":5.75,"d":0.96,"Ss":23,"Sn":4,"Sa":5.75,"Sd":0.96,"Og":7,"Os":207,"On":35,"Oa":5.91,"Od":1.3,"pm":35},"p":[[-38,{"n":7,"e":5457}],[-37,{"n":6,"e":5466}],[-36,{"n":6.5,"e":5470}],[-35,{"n":7,"e":5487}],[-34,{"n":6,"e":5494,"g":1}],[-33,{"n":7,"e":5507}],[-32,{"n":5,"e":5517}],[-31,{"n":8,"e":5525,"g":1}],[-30,{"n":5.5,"e":5537}],[-29,{"n":8,"e":5544}],[-27,{"n":4,"e":5566}],[-26,{"n":5.5,"e":5577}],[-25,{"n":6.5,"e":5579}],[-24,{"n":6,"e":5597}],[-23,{"n":7,"e":5598,"g":1}],[-22,{"n":6,"e":5617}],[-21,{"n":5,"e":5622}],[-20,{"n":4,"e":5635}],[-19,{"n":8,"e":5646,"g":1}],[-18,{"n":7,"e":5653,"g":1}],[-17,{"n":7,"e":5667,"g":1}],[-16,{"n":4,"e":5673}],[-15,{"n":5,"e":5687}],[-14,{"n":4.5,"e":5694}],[-13,{"n":5,"e":5704}],[-12,{"n":6,"e":5717}],[-11,{"n":8,"e":5721,"g":1}],[-10,{"n":3,"e":5737}],[-9,{"n":4.5,"e":5738}],[-8,{"n":7,"e":5757}],[-7,{"n":5,"e":5761}],[4,{"n":7,"e":7454}],[3,{"n":5,"e":7458}],[2,{"n":6,"e":7467}],[1,{"n":5,"e":7493}]],"fo":[[5566,[{"t":"Y"}]]]}],[4608,{"n":"Nícolas","f":"","fp":"G","r":13,"c":124,"s":{"s":4,"n":1,"a":4,"Ss":4,"Sn":1,"Sa":4,"Os":4,"On":1,"Oa":4,"pg":1},"p":[[4,{"n":4,"e":7454}]]}],[4674,{"n":"Nuytinck","f":"Bram","fp":"DC","r":9,"c":124,"s":{"Os":131,"On":26,"Oa":5.04,"Od":0.96,"pd":26},"p":[[-36,{"n":5,"e":5470}],[-35,{"n":5.5,"e":5487}],[-34,{"n":4.5,"e":5494}],[-33,{"n":5,"e":5507}],[-32,{"n":3,"e":5517}],[-31,{"n":7,"e":5525}],[-30,{"n":4.5,"e":5537}],[-29,{"n":5.5,"e":5544}],[-28,{"n":4,"e":5557}],[-27,{"n":5,"e":5566}],[-26,{"n":6,"e":5577}],[-25,{"n":4.5,"e":5579}],[-24,{"n":6.5,"e":5597}],[-23,{"n":5,"e":5598}],[-22,{"n":4.5,"e":5617}],[-21,{"n":4,"e":5622}],[-20,{"n":4.5,"e":5635}],[-19,{"n":7,"e":5646}],[-18,{"n":5.5,"e":5653}],[-17,{"n":4.5,"e":5667}],[-16,{"n":4,"e":5673}],[-15,{"n":5.5,"e":5687}],[-14,{"n":4,"e":5694}],[-13,{"n":5,"e":5704}],[-12,{"n":5.5,"e":5717}],[-11,{"n":6,"e":5721}]],"fo":[[5470,[{"t":"I"}]],[5507,[{"t":"I"}]]]}],[4688,{"n":"Stryger Larsen","f":"Jens","fp":"DL","r":9,"c":124,"s":{"Og":1,"Os":148,"On":29,"Oa":5.1,"Od":0.69,"pd":1,"pm":28},"p":[[-38,{"n":5.5,"e":5457}],[-36,{"n":6,"e":5470}],[-35,{"n":5,"e":5487,"s":1}],[-34,{"n":4.5,"e":5494}],[-33,{"n":5.5,"e":5507}],[-32,{"n":4,"e":5517}],[-31,{"n":6,"e":5525}],[-30,{"n":4.5,"e":5537}],[-29,{"n":6,"e":5544}],[-28,{"n":4,"e":5557}],[-27,{"n":4.5,"e":5566}],[-26,{"n":6,"e":5577}],[-25,{"n":5,"e":5579}],[-24,{"n":5.5,"e":5597}],[-23,{"n":5,"e":5598}],[-22,{"n":4.5,"e":5617}],[-21,{"n":4,"e":5622}],[-20,{"n":6,"e":5635,"g":1}],[-19,{"n":6,"e":5646}],[-18,{"n":5.5,"e":5653}],[-17,{"n":5,"e":5667}],[-16,{"n":4,"e":5673}],[-15,{"n":5.5,"e":5687}],[-14,{"n":4.5,"e":5694}],[-13,{"n":5,"e":5704}],[-12,{"n":5,"e":5717}],[-7,{"n":5,"e":5761}],[-6,{"n":6,"e":5777}],[-5,{"n":5,"e":5787}]],"fo":[[5470,[{"t":"Y"}]],[5507,[{"t":"Y"}]],[5537,[{"t":"Y"}]]]}],[4720,{"n":"Jajalo","f":"Mato","fp":"MD","r":6,"c":124,"s":{"Os":106,"On":22,"Oa":4.82,"Od":0.78,"pm":22},"p":[[-33,{"n":5,"e":5507}],[-32,{"n":4,"e":5517}],[-30,{"n":5,"e":5537}],[-29,{"n":5,"e":5544}],[-28,{"n":4.5,"e":5557}],[-27,{"n":5,"e":5566,"s":1}],[-26,{"n":5,"e":5577}],[-25,{"n":5,"e":5579,"s":1}],[-24,{"n":4.5,"e":5597,"s":1}],[-23,{"n":4,"e":5598}],[-22,{"n":5.5,"e":5617,"s":1}],[-21,{"n":4.5,"e":5622,"s":1}],[-19,{"n":5,"e":5646,"s":1}],[-17,{"n":5,"e":5667,"s":1}],[-13,{"n":3,"e":5704}],[-12,{"n":6,"e":5717}],[-10,{"n":3.5,"e":5737}],[-9,{"n":4,"e":5738}],[-8,{"n":6,"e":5757}],[-7,{"n":5,"e":5761}],[-6,{"n":6,"e":5777}],[-5,{"n":5.5,"e":5787}]],"fo":[[5507,[{"t":"I"}]]]}],[4779,{"n":"De Maio","f":"Sebastien","fp":"DC","r":11,"c":124,"s":{"s":20,"n":4,"a":5,"d":1.08,"Ss":20,"Sn":4,"Sa":5,"Sd":1.08,"Os":120,"On":23,"Oa":5.22,"Od":0.65,"pd":23},"p":[[-38,{"n":6,"e":5457}],[-36,{"n":5.5,"e":5470}],[-35,{"n":5,"e":5487,"s":1}],[-34,{"n":5,"e":5494}],[-33,{"n":6,"e":5507}],[-31,{"n":6,"e":5525}],[-29,{"n":6,"e":5544}],[-27,{"n":4.5,"e":5566}],[-23,{"n":4.5,"e":5598}],[-22,{"n":5,"e":5617}],[-21,{"n":5.5,"e":5622,"s":1}],[-20,{"n":5,"e":5635,"s":1}],[-18,{"n":5.5,"e":5653}],[-17,{"n":5,"e":5667}],[-16,{"n":4.5,"e":5673}],[-15,{"n":5.5,"e":5687}],[-13,{"n":4.5,"e":5704}],[-11,{"n":6,"e":5721}],[-6,{"n":5,"e":5777,"s":1}],[4,{"n":5.5,"e":7454}],[3,{"n":5,"e":7458}],[2,{"n":6,"e":7467}],[1,{"n":3.5,"e":7493}]]}],[5338,{"n":"Nestorovski","f":"Ilija","fp":"A","r":10,"c":124,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Og":3,"Os":129.5,"On":28,"Oa":4.63,"Od":0.97,"pa":28},"p":[[-38,{"n":5,"e":5457,"s":1}],[-37,{"n":3.5,"e":5466}],[-36,{"n":4.5,"e":5470,"s":1}],[-35,{"n":7,"e":5487,"g":1}],[-34,{"n":3.5,"e":5494}],[-32,{"n":3.5,"e":5517}],[-31,{"n":4.5,"e":5525,"s":1}],[-30,{"n":4,"e":5537}],[-29,{"n":7,"e":5544,"g":1,"s":1}],[-28,{"n":4.5,"e":5557,"s":1}],[-27,{"n":4.5,"e":5566}],[-26,{"n":4,"e":5577}],[-23,{"n":4.5,"e":5598,"s":1}],[-21,{"n":4.5,"e":5622,"s":1}],[-20,{"n":4.5,"e":5635,"s":1}],[-18,{"n":5,"e":5653}],[-16,{"n":5,"e":5673,"s":1}],[-14,{"n":3,"e":5694}],[-13,{"n":6,"e":5704,"g":1}],[-12,{"n":4,"e":5717}],[-11,{"n":6,"e":5721}],[-10,{"n":5,"e":5737,"s":1}],[-8,{"n":4.5,"e":5757,"s":1}],[-7,{"n":3.5,"e":5761}],[-6,{"n":5,"e":5777}],[3,{"n":4.5,"e":7458,"s":1}],[2,{"n":4,"e":7467,"s":1}],[1,{"n":5,"e":7493,"s":1}]],"fo":[[5566,[{"t":"I"}]]]}],[6137,{"n":"Walace","f":"","fp":"MD","r":8,"c":124,"s":{"Os":92.5,"On":18,"Oa":5.14,"Od":0.72,"pm":18},"p":[[-38,{"n":6,"e":5457}],[-37,{"n":3.5,"e":5466}],[-36,{"n":6,"e":5470}],[-34,{"n":5.5,"e":5494}],[-33,{"n":5.5,"e":5507,"s":1}],[-32,{"n":5,"e":5517}],[-31,{"n":6.5,"e":5525}],[-30,{"n":5,"e":5537,"s":1}],[-29,{"n":4.5,"e":5544}],[-28,{"n":5,"e":5557}],[-25,{"n":5.5,"e":5579,"s":1}],[-16,{"n":5.5,"e":5673,"s":1}],[-14,{"n":4,"e":5694}],[-11,{"n":5,"e":5721}],[-9,{"n":5,"e":5738,"s":1}],[-8,{"n":5.5,"e":5757,"s":1}],[-6,{"n":5,"e":5777,"s":1}],[-5,{"n":4.5,"e":5787,"s":1}]],"fo":[[5494,[{"t":"I"},{"t":"Y"}]]]}],[6611,{"n":"Palumbo","f":"Martin","fp":"MD","r":5,"c":124,"s":{"s":4,"n":1,"a":4,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pm":1,"pa":1},"p":[[-38,{"n":4.5,"e":5457,"s":1}],[1,{"n":4,"e":7493}]]}],[7195,{"n":"Ouwejan","f":"Thomas","fp":"DL","r":8,"c":124,"s":{"s":19.5,"n":4,"a":4.88,"d":0.85,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.85,"Os":19.5,"On":4,"Oa":4.88,"Od":0.85,"pm":4},"p":[[4,{"n":6,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":5,"e":7467,"s":1}],[1,{"n":4.5,"e":7493,"s":1}]]}],[7238,{"n":"Arslan","f":"Tolgay","fp":"MD","r":9,"c":124,"s":{"s":14.5,"n":3,"a":4.83,"d":0.76,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.76,"Os":14.5,"On":3,"Oa":4.83,"Od":0.76,"pm":3},"p":[[4,{"n":5.5,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":5,"e":7467}]],"fo":[[7454,[{"t":"Y"}]]]}],[7240,{"n":"Forestieri","f":"Fernando","fp":"A","r":8,"c":124,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":0.25,"Os":18.5,"On":4,"Oa":4.63,"Od":0.25,"pa":4},"p":[[4,{"n":4.5,"e":7454,"s":1}],[3,{"n":4.5,"e":7458,"s":1}],[2,{"n":4.5,"e":7467,"s":1}],[1,{"n":5,"e":7493,"s":1}]]}],[7290,{"n":"Molina","f":"Nahuel","fp":"DL","r":7,"c":124,"s":{"s":5.5,"n":1,"a":5.5,"Os":5.5,"On":1,"Oa":5.5,"pd":1},"p":[[3,{"n":5.5,"e":7458,"s":1}]]}],[1204,{"n":"Tameze","f":"Adrien","fp":"MD","r":11,"c":126,"s":{"s":21,"n":4,"a":5.25,"d":0.87,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.87,"Os":72,"On":14,"Oa":5.14,"Od":0.53,"pm":12,"pa":2},"p":[[-37,{"n":5,"e":5462,"s":1}],[-33,{"n":5.5,"e":5498}],[-32,{"n":5,"e":5513,"s":1}],[-30,{"n":6,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[-26,{"n":5,"e":5571,"s":1}],[-23,{"n":5,"e":5599,"s":1}],[-18,{"n":5,"e":3751,"s":1}],[-10,{"n":5,"e":3834,"s":1}],[-7,{"n":4.5,"e":3862}],[4,{"n":5.5,"e":7455}],[3,{"n":4,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":5.5,"e":7471}]],"fo":[[7455,[{"t":"Y"}]]]}],[2749,{"n":"Kalinic","f":"Nikola","fp":"A","r":11,"c":126,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":5,"Os":80.5,"On":16,"Oa":5.03,"Od":1.35,"pa":16},"p":[[-38,{"n":7,"e":5452,"g":1}],[-35,{"n":6.5,"e":5483,"g":1}],[-32,{"n":6.5,"e":5508,"g":1}],[-29,{"n":5,"e":5544}],[-28,{"n":4,"e":5552,"s":1}],[-27,{"n":4.5,"e":5564,"s":1}],[-26,{"n":8.5,"e":5568,"g":2}],[-25,{"n":4,"e":5584,"s":1}],[-23,{"n":4.5,"e":5604,"s":1}],[-19,{"n":4,"e":5643,"s":1}],[-18,{"n":4,"e":5656,"s":1}],[-16,{"n":4.5,"e":5676,"s":1}],[-8,{"n":4.5,"e":5755}],[-7,{"n":4,"e":5764,"s":1}],[-5,{"n":4.5,"e":5784,"s":1}],[4,{"n":4.5,"e":7455,"s":1}]]}],[4256,{"n":"Eddie Salcedo","f":"","fp":"A","r":7,"c":126,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Og":1,"Os":87,"On":19,"Oa":4.58,"Od":0.71,"pa":19},"p":[[-38,{"n":4.5,"e":5451,"s":1}],[-37,{"n":4.5,"e":5467,"s":1}],[-36,{"n":4,"e":5477,"s":1}],[-35,{"n":3.5,"e":5486}],[-34,{"n":4.5,"e":5497}],[-33,{"n":4.5,"e":5502,"s":1}],[-27,{"n":4.5,"e":5567,"s":1}],[-26,{"n":4,"e":5575,"s":1}],[-14,{"n":4,"e":5697,"s":1}],[-13,{"n":5,"e":5707}],[-12,{"n":5.5,"e":5710}],[-11,{"n":6.5,"e":5727,"g":1}],[-10,{"n":3.5,"e":5734}],[-9,{"n":5,"e":5747,"s":1}],[-8,{"n":5,"e":5753,"s":1}],[-7,{"n":5,"e":5767}],[-6,{"n":4.5,"e":5768,"s":1}],[4,{"n":5,"e":7455,"s":1}],[3,{"n":4,"e":7461,"s":1}]]}],[4306,{"n":"Danzi","f":"Andrea","fp":"MD","r":5,"c":126,"s":{"s":4.5,"n":1,"a":4.5,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[-10,{"n":5,"e":5734,"s":1}],[1,{"n":4.5,"e":7471}]],"fo":[[7471,[{"t":"Y"}]]]}],[4343,{"n":"Vieira","f":"Ronaldo","fp":"MD","r":8,"c":126,"s":{"s":5.5,"n":1,"a":5.5,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":123,"On":25,"Oa":4.92,"Od":0.8,"pm":25},"p":[[-38,{"n":5.5,"e":5450}],[-37,{"n":3.5,"e":5463}],[-35,{"n":4.5,"e":5484,"s":1}],[-29,{"n":5,"e":5543,"s":1}],[-28,{"n":5,"e":5555}],[-26,{"n":5,"e":5575}],[-25,{"n":4.5,"e":5583,"s":1}],[-24,{"n":4.5,"e":5595,"s":1}],[-22,{"n":5,"e":5615,"s":1}],[-21,{"n":5.5,"e":5625,"s":1}],[-20,{"n":3.5,"e":5633}],[-19,{"n":6,"e":5644}],[-18,{"n":5,"e":5654}],[-16,{"n":5.5,"e":5672}],[-15,{"n":3.5,"e":5684}],[-14,{"n":5.5,"e":5689}],[-12,{"n":6,"e":5715}],[-11,{"n":5,"e":5725}],[-10,{"n":4,"e":5735}],[-9,{"n":6,"e":5739}],[-8,{"n":5,"e":5755}],[-7,{"n":3.5,"e":5767}],[-6,{"n":5.5,"e":5775,"s":1}],[-5,{"n":5.5,"e":5779}],[4,{"n":5.5,"e":7455}]],"fo":[[5450,[{"t":"Y"}]],[5484,[{"t":"Y"}]],[5583,[{"t":"Y"}]]]}],[4347,{"n":"Barak","f":"Antonin","fp":"MO","r":9,"c":126,"s":{"s":15,"n":3,"a":5,"d":1.32,"Og":2,"Os":125,"On":25,"Oa":5,"Od":1.03,"pm":22,"pa":3},"p":[[-38,{"n":4.5,"e":5453,"g":1}],[-37,{"n":6,"e":5466}],[-36,{"n":5,"e":5468}],[-35,{"n":5.5,"e":5481}],[-34,{"n":5.5,"e":5491}],[-33,{"n":5,"e":5500}],[-32,{"n":6,"e":5509}],[-31,{"n":6.5,"e":5522}],[-30,{"n":3.5,"e":5536}],[-29,{"n":4.5,"e":5543}],[-28,{"n":4.5,"e":5550,"s":1}],[-26,{"n":3.5,"e":5571}],[-25,{"n":3.5,"e":5584}],[-24,{"n":4.5,"e":5593}],[-23,{"n":4.5,"e":5602}],[-22,{"n":8,"e":5613,"g":1}],[-18,{"n":5,"e":5653,"s":1}],[-15,{"n":5,"e":5687,"s":1}],[-14,{"n":5,"e":5694,"s":1}],[-10,{"n":4.5,"e":5737,"s":1}],[-7,{"n":5,"e":5761,"s":1}],[-5,{"n":5,"e":5787}],[3,{"n":4,"e":7461}],[2,{"n":6.5,"e":7467}],[1,{"n":4.5,"e":7471,"s":1}]]}],[4398,{"n":"Favilli","f":"Andrea","fp":"A","r":9,"c":126,"s":{"g":1,"s":14,"n":3,"a":4.67,"d":1.26,"Sg":1,"Ss":14,"Sn":3,"Sa":4.67,"Sd":1.26,"Og":1,"Os":92.5,"On":22,"Oa":4.2,"Od":0.81,"pa":22},"p":[[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":2.5,"e":5471}],[-35,{"n":4.5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5491,"s":1}],[-31,{"n":4.5,"e":5521,"s":1}],[-30,{"n":4,"e":5537,"s":1}],[-29,{"n":3.5,"e":5541}],[-27,{"n":3,"e":5561}],[-25,{"n":3,"e":5582}],[-21,{"n":5,"e":5619}],[-20,{"n":4.5,"e":5631,"s":1}],[-19,{"n":4,"e":5647,"s":1}],[-18,{"n":5,"e":5651,"s":1}],[-17,{"n":4,"e":5660,"s":1}],[-15,{"n":4.5,"e":5682,"s":1}],[-14,{"n":3.5,"e":5691}],[-13,{"n":4.5,"e":5703,"s":1}],[-7,{"n":5,"e":5762,"s":1}],[-5,{"n":4,"e":5780,"s":1}],[4,{"n":4.5,"e":7455}],[3,{"n":3.5,"e":7461}],[2,{"n":6,"e":7467,"g":1,"s":1}]],"fo":[[5541,[{"t":"Y"}]],[7467,[{"t":"Y"}]]]}],[4459,{"n":"Empereur","f":"Alan","fp":"DC","r":9,"c":126,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":5,"Sn":1,"Sa":5,"Os":69,"On":15,"Oa":4.6,"Od":0.63,"pd":15},"p":[[-35,{"n":4,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":3.5,"e":5502}],[-32,{"n":5,"e":5510,"s":1}],[-31,{"n":5,"e":5527,"s":1}],[-30,{"n":4,"e":5528}],[-29,{"n":4.5,"e":5547,"s":1}],[-28,{"n":4,"e":5556,"s":1}],[-27,{"n":4,"e":5567}],[-25,{"n":6,"e":5587}],[-15,{"n":5,"e":5678,"s":1}],[-12,{"n":5,"e":5710}],[-11,{"n":4.5,"e":5727}],[4,{"n":5,"e":7455}],[1,{"n":4.5,"e":7471}]],"fo":[[7471,[{"t":"I"}]],[5486,[{"t":"Y"}]],[5547,[{"t":"Y"}]]]}],[4493,{"n":"Dimarco","f":"Federico","fp":"DL","r":12,"c":126,"s":{"s":22,"n":4,"a":5.5,"d":0.41,"Ss":22,"Sn":4,"Sa":5.5,"Sd":0.41,"Oao":1,"Os":103,"On":20,"Oa":5.15,"Od":0.81,"pd":14,"pm":6},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":8,"e":5467}],[-36,{"n":5,"e":5477,"s":1}],[-35,{"n":5,"e":5486,"s":1}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":5.5,"e":5502,"s":1}],[-32,{"n":5,"e":5510}],[-31,{"n":4,"e":5527,"a":1}],[-30,{"n":5,"e":5528,"s":1}],[-29,{"n":4.5,"e":5547}],[-27,{"n":5,"e":5567,"s":1}],[-25,{"n":5,"e":5587,"s":1}],[-23,{"n":5,"e":5607,"s":1}],[-21,{"n":5,"e":5620,"s":1}],[-17,{"n":5,"e":5660,"s":1}],[-13,{"n":5,"e":5706,"s":1}],[4,{"n":5.5,"e":7455,"s":1}],[3,{"n":5.5,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":5,"e":7471}]],"fo":[[5527,[{"t":"I"},{"t":"Y"}]],[7461,[{"t":"Y"}]]]}],[4495,{"n":"Magnani","f":"Giangiacomo","fp":"DC","r":7,"c":126,"s":{"Og":1,"Os":48.5,"On":10,"Oa":4.85,"Od":0.58,"pd":10},"p":[[-34,{"n":5,"e":5489,"s":1}],[-32,{"n":5,"e":5514,"s":1}],[-31,{"n":5,"e":5519,"s":1}],[-28,{"n":4,"e":5556}],[-27,{"n":6,"e":5562,"g":1,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[-23,{"n":5,"e":5605,"s":1}],[-22,{"n":5,"e":5616,"s":1}],[-15,{"n":4.5,"e":5683,"s":1}],[-12,{"n":4,"e":5708}]],"fo":[[5556,[{"t":"Y"}]]]}],[4505,{"n":"Zaccagni","f":"Mattia","fp":"MO","r":12,"c":126,"s":{"s":20,"n":4,"a":5,"d":0.71,"Ss":20,"Sn":4,"Sa":5,"Sd":0.71,"Og":2,"Os":180.5,"On":34,"Oa":5.31,"Od":0.83,"pm":10,"pa":24},"p":[[-37,{"n":4.5,"e":5467,"s":1}],[-36,{"n":5,"e":5477}],[-35,{"n":5,"e":5486,"s":1}],[-34,{"n":4,"e":5497}],[-33,{"n":5.5,"e":5502}],[-32,{"n":5,"e":5510,"s":1}],[-30,{"n":4.5,"e":5528}],[-29,{"n":7,"e":5547,"g":1,"s":1}],[-28,{"n":6,"e":5556}],[-27,{"n":4,"e":5567}],[-26,{"n":6,"e":5575}],[-25,{"n":5.5,"e":5587,"s":1}],[-24,{"n":5,"e":5597,"s":1}],[-23,{"n":5.5,"e":5607}],[-22,{"n":7,"e":5614}],[-20,{"n":5.5,"e":5629}],[-19,{"n":7.5,"e":5647,"g":1}],[-18,{"n":5.5,"e":5657}],[-17,{"n":6,"e":5661}],[-16,{"n":4,"e":5677}],[-15,{"n":5.5,"e":5678}],[-14,{"n":6,"e":5697}],[-13,{"n":5,"e":5707,"s":1}],[-12,{"n":5,"e":5710}],[-11,{"n":6,"e":5727}],[-10,{"n":5.5,"e":5734,"s":1}],[-9,{"n":5,"e":5747}],[-8,{"n":4.5,"e":5753}],[-6,{"n":5,"e":5768}],[-5,{"n":5,"e":5787}],[4,{"n":5,"e":7455,"s":1}],[3,{"n":4,"e":7461}],[2,{"n":5.5,"e":7467}],[1,{"n":5.5,"e":7471,"s":1}]]}],[4540,{"n":"Dawidowicz","f":"Pawel","fp":"DC","r":6,"c":126,"s":{"s":5,"n":1,"a":5,"Og":1,"Os":76.5,"On":15,"Oa":5.1,"Od":0.99,"pd":15},"p":[[-29,{"n":4,"e":5547}],[-26,{"n":3,"e":5575}],[-22,{"n":4.5,"e":5614,"s":1}],[-21,{"n":7.5,"e":5627,"g":1}],[-20,{"n":5,"e":5629,"s":1}],[-19,{"n":5,"e":5647,"s":1}],[-18,{"n":5,"e":5657,"s":1}],[-17,{"n":5,"e":5661,"s":1}],[-15,{"n":5,"e":5678}],[-13,{"n":5,"e":5707,"s":1}],[-11,{"n":6,"e":5727,"s":1}],[-9,{"n":5.5,"e":5747,"s":1}],[-6,{"n":5,"e":5768}],[-5,{"n":6,"e":5787}],[2,{"n":5,"e":7467,"s":1}]]}],[4563,{"n":"Benassi","f":"Marco","fp":"MO","r":6,"c":126,"s":{"Og":1,"Os":83.5,"On":17,"Oa":4.91,"Od":0.81,"pm":17},"p":[[-30,{"n":5,"e":5534}],[-29,{"n":4.5,"e":5540,"s":1}],[-24,{"n":5,"e":5595,"s":1}],[-23,{"n":4.5,"e":5599}],[-22,{"n":4,"e":5611}],[-21,{"n":4.5,"e":5619}],[-20,{"n":7,"e":5636}],[-19,{"n":5.5,"e":5639}],[-18,{"n":6.5,"e":5649,"g":1}],[-16,{"n":4.5,"e":5671,"s":1}],[-15,{"n":4,"e":5686}],[-13,{"n":4,"e":5707}],[-12,{"n":5,"e":5709,"s":1}],[-10,{"n":5,"e":5736}],[-7,{"n":5,"e":5761,"s":1}],[-6,{"n":4.5,"e":5772,"s":1}],[-5,{"n":5,"e":5779,"s":1}]],"fo":[[5534,[{"t":"I"}]]]}],[4576,{"n":"Günter","f":"Koray","fp":"DC","r":14,"c":126,"s":{"s":17.5,"n":3,"a":5.83,"d":0.29,"Os":157,"On":31,"Oa":5.06,"Od":1,"pd":31},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":5.5,"e":5467}],[-36,{"n":4,"e":5477}],[-35,{"n":4.5,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":5.5,"e":5502}],[-32,{"n":5,"e":5510}],[-31,{"n":4,"e":5527}],[-29,{"n":4.5,"e":5547}],[-28,{"n":3.5,"e":5556}],[-26,{"n":4.5,"e":5575}],[-24,{"n":5.5,"e":5597}],[-23,{"n":6.5,"e":5607}],[-22,{"n":5,"e":5614}],[-20,{"n":5.5,"e":5629}],[-19,{"n":5.5,"e":5647}],[-18,{"n":5.5,"e":5657}],[-17,{"n":6,"e":5661}],[-16,{"n":3.5,"e":5677}],[-14,{"n":3,"e":5697}],[-13,{"n":6,"e":5707}],[-12,{"n":5.5,"e":5710}],[-10,{"n":7,"e":5734}],[-9,{"n":4,"e":5747}],[-8,{"n":4,"e":5753}],[-7,{"n":6,"e":5767}],[-6,{"n":5.5,"e":5768}],[-5,{"n":6,"e":5787}],[3,{"n":6,"e":7461}],[2,{"n":5.5,"e":7467}],[1,{"n":6,"e":7471}]],"fo":[[5527,[{"t":"Y"}]]]}],[4619,{"n":"Di Gaudio","f":"Antonio","fp":"MO","r":4,"c":126}],[4629,{"n":"Berardi","f":"Alessandro","fp":"G","r":7,"c":126}],[4638,{"n":"Ceccherini","f":"Federico","fp":"DC","r":9,"c":126,"s":{"ao":1,"s":18.5,"n":4,"a":4.63,"d":1.38,"Sao":1,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.38,"Oao":1,"Os":88.5,"On":18,"Oa":4.92,"Od":0.77,"pd":18},"p":[[-38,{"n":5.5,"e":5456}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":5,"e":5500,"s":1}],[-31,{"n":6,"e":5520}],[-30,{"n":5,"e":5534,"s":1}],[-29,{"n":4.5,"e":5540}],[-28,{"n":5,"e":5551}],[-27,{"n":5,"e":5560}],[-22,{"n":4,"e":5611}],[-20,{"n":5,"e":5636,"s":1}],[-18,{"n":5,"e":5649,"s":1}],[-15,{"n":4.5,"e":5686}],[-14,{"n":4.5,"e":5690}],[-13,{"n":6,"e":5707,"s":1}],[4,{"n":6,"e":7455}],[3,{"n":4,"e":7456}],[2,{"n":3,"e":7465,"a":1}],[1,{"n":5.5,"e":7470}]],"fo":[[5540,[{"t":"Y"}]],[5560,[{"t":"Y"}]],[7465,[{"t":"Y"}]],[7470,[{"t":"Y"}]]]}],[4701,{"n":"Badu","f":"Emmanuel","fp":"MD","r":5,"c":126,"s":{"Os":47.5,"On":10,"Oa":4.75,"Od":0.35,"pm":10},"p":[[-37,{"n":5,"e":5467,"s":1}],[-33,{"n":4.5,"e":5502,"s":1}],[-30,{"n":4,"e":5528}],[-29,{"n":5,"e":5547,"s":1}],[-28,{"n":5,"e":5556,"s":1}],[-26,{"n":4.5,"e":5575,"s":1}],[-25,{"n":5,"e":5587}],[-21,{"n":5,"e":5627,"s":1}],[-19,{"n":5,"e":5647,"s":1}],[-18,{"n":4.5,"e":5657,"s":1}]],"fo":[[5587,[{"t":"Y"}]]]}],[4721,{"n":"Silvestri","f":"Marco","fp":"G","r":24,"c":126,"s":{"s":25,"n":4,"a":6.25,"d":0.65,"Ss":25,"Sn":4,"Sa":6.25,"Sd":0.65,"Os":204,"On":35,"Oa":5.83,"Od":0.87,"pg":35},"p":[[-35,{"n":5,"e":5486}],[-34,{"n":6.5,"e":5497}],[-33,{"n":5.5,"e":5502}],[-32,{"n":4.5,"e":5510}],[-31,{"n":6,"e":5527}],[-30,{"n":4,"e":5528}],[-29,{"n":5.5,"e":5547}],[-28,{"n":5.5,"e":5556}],[-27,{"n":6,"e":5567}],[-26,{"n":6,"e":5575}],[-25,{"n":5.5,"e":5587}],[-24,{"n":7,"e":5597}],[-23,{"n":5.5,"e":5607}],[-22,{"n":6,"e":5614}],[-21,{"n":5.5,"e":5627}],[-20,{"n":4.5,"e":5629}],[-19,{"n":5,"e":5647}],[-18,{"n":6,"e":5657}],[-17,{"n":7,"e":5661}],[-16,{"n":5,"e":5677}],[-15,{"n":7,"e":5678}],[-14,{"n":4,"e":5697}],[-13,{"n":6,"e":5707}],[-12,{"n":7,"e":5710}],[-11,{"n":6,"e":5727}],[-10,{"n":7.5,"e":5734}],[-9,{"n":5.5,"e":5747}],[-8,{"n":6,"e":5753}],[-7,{"n":7,"e":5767}],[-6,{"n":5.5,"e":5768}],[-5,{"n":6,"e":5787}],[4,{"n":6,"e":7455}],[3,{"n":5.5,"e":7461}],[2,{"n":7,"e":7467}],[1,{"n":6.5,"e":7471}]]}],[4758,{"n":"Faraoni","f":"Marco","fp":"DL","r":16,"c":126,"s":{"s":21.5,"n":4,"a":5.38,"d":0.95,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.95,"Og":5,"Os":191.5,"On":36,"Oa":5.32,"Od":0.81,"pd":1,"pm":35},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":6,"e":5467,"g":1}],[-36,{"n":4.5,"e":5477}],[-35,{"n":5.5,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":5,"e":5502}],[-32,{"n":6,"e":5510,"g":1}],[-31,{"n":4.5,"e":5527}],[-30,{"n":5,"e":5528}],[-29,{"n":4.5,"e":5547}],[-27,{"n":4,"e":5567}],[-25,{"n":6,"e":5587}],[-24,{"n":5.5,"e":5597}],[-23,{"n":5.5,"e":5607}],[-22,{"n":6,"e":5614,"g":1}],[-21,{"n":6,"e":5627}],[-20,{"n":4.5,"e":5629}],[-19,{"n":5,"e":5647}],[-18,{"n":6.5,"e":5657}],[-17,{"n":5.5,"e":5661}],[-16,{"n":6,"e":5677}],[-15,{"n":5,"e":5678}],[-14,{"n":6.5,"e":5697,"g":1}],[-13,{"n":7,"e":5707}],[-12,{"n":4.5,"e":5710}],[-11,{"n":5,"e":5727}],[-10,{"n":6,"e":5734}],[-9,{"n":4.5,"e":5747}],[-8,{"n":4,"e":5753}],[-7,{"n":5.5,"e":5767}],[-6,{"n":6.5,"e":5768,"g":1}],[-5,{"n":5,"e":5787}],[4,{"n":5.5,"e":7455}],[3,{"n":4,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":6,"e":7471}]],"fo":[[5510,[{"t":"Y"}]],[5567,[{"t":"Y"}]]]}],[4785,{"n":"Vitale","f":"Luigi","fp":"DL","r":5,"c":126,"s":{"Os":10,"On":2,"Oa":5,"pd":2},"p":[[-7,{"n":5,"e":5767,"s":1}],[-5,{"n":5,"e":5787,"s":1}]]}],[4792,{"n":"Di Carmine","f":"Samuel","fp":"A","r":8,"c":126,"s":{"s":8,"n":2,"a":4,"Og":8,"Os":105,"On":22,"Oa":4.77,"Od":1.29,"pa":22},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":7.5,"e":5467,"g":2}],[-36,{"n":4.5,"e":5477,"s":1}],[-34,{"n":4,"e":5497,"s":1}],[-32,{"n":4,"e":5510}],[-31,{"n":4.5,"e":5527,"s":1}],[-30,{"n":4,"e":5528}],[-29,{"n":6,"e":5547,"g":1}],[-27,{"n":4,"e":5567}],[-26,{"n":4,"e":5575}],[-25,{"n":8,"e":5587,"g":2}],[-21,{"n":5,"e":5627}],[-20,{"n":4,"e":5629}],[-16,{"n":4,"e":5677}],[-15,{"n":7,"e":5678,"g":2}],[-14,{"n":4,"e":5697}],[-13,{"n":6,"e":5707,"g":1}],[-9,{"n":4,"e":5747}],[-8,{"n":5,"e":5753,"s":1}],[-5,{"n":4,"e":5787}],[2,{"n":4,"e":7467}],[1,{"n":4,"e":7471}]],"fo":[[7467,[{"t":"I"}]],[5528,[{"t":"Y"}]],[7471,[{"t":"Y"}]]]}],[4811,{"n":"Miguel Veloso","f":"","fp":"MD","r":14,"c":126,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Og":1,"Os":176,"On":32,"Oa":5.5,"Od":0.89,"pd":1,"pm":31},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":4,"e":5477}],[-35,{"n":5,"e":5486}],[-34,{"n":5.5,"e":5497}],[-33,{"n":5,"e":5502}],[-32,{"n":6,"e":5510}],[-31,{"n":7.5,"e":5527,"g":1}],[-30,{"n":5.5,"e":5528}],[-29,{"n":6,"e":5547}],[-28,{"n":5.5,"e":5556}],[-27,{"n":4.5,"e":5567}],[-25,{"n":5.5,"e":5587,"s":1}],[-24,{"n":4.5,"e":5597}],[-23,{"n":4.5,"e":5607}],[-22,{"n":6.5,"e":5614}],[-21,{"n":7,"e":5627}],[-20,{"n":5,"e":5629}],[-19,{"n":5.5,"e":5647}],[-18,{"n":6.5,"e":5657}],[-17,{"n":6.5,"e":5661}],[-16,{"n":4.5,"e":5677}],[-15,{"n":4.5,"e":5678}],[-14,{"n":5.5,"e":5697,"s":1}],[-11,{"n":5.5,"e":5727}],[-10,{"n":5.5,"e":5734}],[-8,{"n":5,"e":5753}],[-7,{"n":7,"e":5767}],[-6,{"n":6,"e":5768}],[-5,{"n":6,"e":5787}],[2,{"n":6,"e":7467}],[1,{"n":4.5,"e":7471}]],"fo":[[5502,[{"t":"Y"}]]]}],[5954,{"n":"Colley","f":"Ebrima","fp":"MO","r":9,"c":126,"s":{"s":17,"n":3,"a":5.67,"d":0.76,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.76,"Os":42.5,"On":8,"Oa":5.31,"Od":0.65,"pm":7,"pa":1},"p":[[-36,{"n":5,"e":5473,"s":1}],[-35,{"n":5,"e":5478,"s":1}],[-33,{"n":6,"e":5498,"s":1}],[-25,{"n":4.5,"e":5578,"s":1}],[-16,{"n":5,"e":5668,"s":1}],[4,{"n":6.5,"e":7455}],[3,{"n":5.5,"e":7461,"s":1}],[2,{"n":5,"e":7467,"s":1}]],"fo":[[5478,[{"t":"Y"}]]]}],[5967,{"n":"Lazovic","f":"Darko","fp":"MO","r":15,"c":126,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Og":3,"Os":189,"On":36,"Oa":5.25,"Od":1.05,"pm":34,"pa":2},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":7,"e":5467}],[-36,{"n":3,"e":5477}],[-35,{"n":5,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":5,"e":5502}],[-32,{"n":4,"e":5510}],[-31,{"n":7,"e":5527,"g":1}],[-30,{"n":4.5,"e":5528}],[-29,{"n":5,"e":5547,"s":1}],[-28,{"n":6,"e":5556,"g":1}],[-27,{"n":5,"e":5567}],[-26,{"n":5.5,"e":5575}],[-25,{"n":6.5,"e":5587}],[-24,{"n":5.5,"e":5597}],[-23,{"n":5,"e":5607}],[-22,{"n":5,"e":5614}],[-21,{"n":6.5,"e":5627}],[-20,{"n":7,"e":5629}],[-19,{"n":5.5,"e":5647}],[-18,{"n":6.5,"e":5657}],[-17,{"n":6.5,"e":5661}],[-16,{"n":3.5,"e":5677}],[-15,{"n":5,"e":5678}],[-14,{"n":5,"e":5697}],[-13,{"n":6.5,"e":5707}],[-12,{"n":4.5,"e":5710}],[-11,{"n":5.5,"e":5727}],[-10,{"n":7,"e":5734,"g":1}],[-9,{"n":4.5,"e":5747}],[-8,{"n":4.5,"e":5753}],[-7,{"n":4,"e":5767}],[-6,{"n":5,"e":5768}],[-5,{"n":4.5,"e":5787}],[4,{"n":5,"e":7455}],[3,{"n":5,"e":7461,"s":1}]]}],[6172,{"n":"Çetin","f":"Yildirim Mert","fp":"DC","r":8,"c":126,"s":{"s":16,"n":3,"a":5.33,"d":0.76,"Os":47,"On":9,"Oa":5.22,"Od":0.57,"pd":9},"p":[[-35,{"n":5.5,"e":5483,"s":1}],[-20,{"n":5,"e":5631,"s":1}],[-16,{"n":6,"e":5676}],[-11,{"n":4.5,"e":5724}],[-10,{"n":5,"e":5737,"s":1}],[-9,{"n":5,"e":5744,"s":1}],[3,{"n":4.5,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":5.5,"e":7471}]]}],[6444,{"n":"Jocic","f":"Bogdan","fp":"MO","r":1,"c":126}],[6603,{"n":"Terracciano","f":"Filippo","fp":"MD","r":1,"c":126}],[6604,{"n":"Calabrese","f":"Bernardo","fp":"DC","r":1,"c":126}],[6647,{"n":"Pierobon","f":"Christian","fp":"MD","r":1,"c":126}],[6652,{"n":"Lovato","f":"Matteo","fp":"DC","r":10,"c":126,"s":{"s":20,"n":4,"a":5,"d":0.41,"Ss":20,"Sn":4,"Sa":5,"Sd":0.41,"Os":25,"On":5,"Oa":5,"Od":0.35,"pd":5},"p":[[-34,{"n":5,"e":5497,"s":1}],[4,{"n":5.5,"e":7455}],[3,{"n":4.5,"e":7461}],[2,{"n":5,"e":7467}],[1,{"n":5,"e":7471,"s":1}]],"fo":[[7461,[{"t":"I"}]]]}],[6932,{"n":"Yeboah Ankrah","f":"Philip","fp":"A","r":1,"c":126}],[7152,{"n":"Pandur","f":"Ivor","fp":"G","r":4,"c":126}],[7166,{"n":"Rüegg","f":"Kevin","fp":"DL","r":8,"c":126,"s":{"s":5.5,"n":1,"a":5.5,"Os":5.5,"On":1,"Oa":5.5,"pm":1},"p":[[1,{"n":5.5,"e":7471,"s":1}]]}],[7233,{"n":"Ilic","f":"Ivan","fp":"MD","r":10,"c":126,"s":{"s":15.5,"n":3,"a":5.17,"d":0.29,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":15.5,"On":3,"Oa":5.17,"Od":0.29,"pm":3},"p":[[4,{"n":5.5,"e":7455}],[3,{"n":5,"e":7461}],[1,{"n":5,"e":7471,"s":1}]]}],[7280,{"n":"Ilie","f":"Matei","fp":"DC","r":1,"c":126}],[7284,{"n":"Destiny Udogie","f":"Iyenoma","fp":"DL","r":1,"c":126}],[7288,{"n":"Borghetto","f":"Nicola","fp":"G","r":1,"c":126}],[7338,{"n":"Laribi","f":"Karim","fp":"MO","r":7,"c":126}],[7368,{"n":"Amione","f":"Bruno","fp":"DC","r":7,"c":126}],[7371,{"n":"Manè","f":"Bachir","fp":"MD","r":4,"c":126}],[7435,{"n":"Cancellieri","f":"Matteo","fp":"A","r":1,"c":126}]],"np":680,"c":[[119,{"n":"Atalanta","rn":"Atalanta Bergame","cn":"Atalanta","crn":"Atalanta-Bergame","a":"ATA","el":1042,"s":{"w":4,"l":1,"d":0,"pl":5,"GA":7,"GS":18,"GT":11,"p":12},"nm":[[7442,0.644],[7518,0.56]],"pM":[null,7476,7463,7459,7449,5784,5776,5758,5751,5738,5733,5718,5715,5698,5688,5678,5668,5658,5648,5640,5628,5626,5608,5599,5588,5578,5571,5558,5557,5538,5529,5518,5513,5498,5497,5478,5473,5462,5448],"DMI":[5518,5715]}],[140,{"n":"Benevento","rn":"Bénévent Calcio","cn":"Benevento","crn":"Benevent-Calcio","a":"BEN","el":1000,"s":{"w":2,"l":2,"d":0,"pl":4,"GA":-4,"GS":8,"GT":12,"p":6},"nm":[[7507,0.59],[7520,0.51]],"pM":[null,7492,7488,7486,7503],"DMI":[]}],[127,{"n":"Bologna","rn":"Bologna FC","cn":"Bologna","crn":"Bologna-FC","a":"BOL","el":988,"s":{"w":1,"l":3,"d":0,"pl":4,"GA":-1,"GS":7,"GT":8,"p":3},"nm":[[7446,0.25],[7435,0.359]],"pM":[null,7475,7469,7486,7452,5780,5777,5759,5750,5739,5729,5719,5716,5699,5695,5679,5668,5662,5649,5645,5629,5624,5609,5604,5589,5579,5570,5559,5555,5539,5530,5519,5516,5499,5493,5478,5468,5459,5449],"DMI":[5570,5759,5729,5539]}],[108,{"n":"Cagliari","rn":"Cagliari Calcio","cn":"Cagliari","crn":"Cagliari-Calcio","a":"CAG","el":1089,"s":{"w":1,"l":2,"d":1,"pl":4,"GA":-4,"GS":6,"GT":10,"p":4},"nm":[[7435,0.641],[7508,0.625]],"pM":[null,7473,7464,7459,7453,5782,5768,5764,5749,5746,5729,5718,5709,5700,5689,5685,5670,5667,5652,5638,5630,5620,5610,5600,5590,5587,5568,5565,5549,5539,5529,5520,5509,5504,5489,5480,5470,5458,5454],"DMI":[5729,5539]}],[139,{"n":"Crotone","rn":"Crotone","cn":"Crotone","crn":"Crotone","a":"CRO","el":1000,"s":{"w":0,"l":3,"d":1,"pl":4,"GA":-8,"GS":3,"GT":11,"p":1},"nm":[[7518,0.44],[7508,0.375]],"pM":[null,7491,7490,7485,7501],"DMI":[]}],[110,{"n":"Fiorentina","rn":"AC Fiorentina","cn":"Fiorentina","crn":"AC-Fiorentina","a":"FIO","el":939,"s":{"w":2,"l":2,"d":1,"pl":5,"GA":0,"GS":8,"GT":8,"p":7},"nm":[[7443,0.574],[7438,0.271]],"pM":[null,7470,7465,7456,7502,5779,5772,5761,5748,5740,5736,5720,5709,5707,5690,5686,5671,5659,5649,5639,5636,5619,5611,5599,5595,5581,5577,5560,5551,5540,5534,5520,5510,5500,5490,5479,5475,5459,5456],"DMI":[5577,5761,5659,5475]}],[117,{"n":"Genoa","rn":"Genoa CFC","cn":"Genoa","crn":"Genoa-CFC","a":"GEN","el":822,"s":{"w":1,"l":1,"d":2,"pl":4,"GA":-3,"GS":4,"GT":7,"p":5},"nm":[[7457,0.254],[7444,0.137],[7439,0.338]],"pM":[null,7491,7466,7457,7455,5780,5770,5762,5754,5741,5730,5721,5713,5703,5691,5682,5672,5660,5651,5647,5631,5619,5608,5600,5589,5582,5572,5561,5548,5541,5537,5521,5511,5506,5491,5484,5471,5464,5451],"DMI":[5660,5471,5672,5484,5506,5691]}],[112,{"n":"Inter","rn":"Internazionale Milan","cn":"Inter","crn":"Internazionale-Milan","a":"INT","el":1142,"s":{"w":2,"l":1,"d":1,"pl":4,"GA":3,"GS":11,"GT":8,"p":7},"nm":[[7444,0.863],[7436,0.636]],"pM":[null,7492,7465,7460,7450,5781,5775,5763,5756,5742,5728,5719,5710,5706,5692,5680,5671,5660,5655,5640,5634,5620,5617,5601,5592,5583,5569,5562,5554,5542,5530,5527,5512,5503,5496,5479,5471,5460,5448],"DMI":[5660,5471,5554,5742]}],[115,{"n":"Juventus","rn":"Juventus FC Turin","cn":"Juventus","crn":"Juventus-FC-Turin","a":"JUV","el":1145,"s":{"w":2,"l":0,"d":3,"pl":5,"GA":6,"GS":9,"GT":3,"p":9},"nm":[[7445,0.706],[7519,0.697]],"pM":[null,7474,7468,7462,7501,5778,5769,5763,5750,5743,5730,5726,5711,5698,5693,5681,5673,5664,5652,5643,5632,5621,5611,5607,5591,5585,5569,5559,5550,5541,5531,5523,5513,5505,5492,5487,5472,5458,5452],"DMI":[5607]}],[121,{"n":"Lazio","rn":"SS Lazio Roma","cn":"Lazio","crn":"SS-Lazio-Roma","a":"LAZ","el":1179,"s":{"w":1,"l":2,"d":1,"pl":4,"GA":-4,"GS":4,"GT":8,"p":4},"nm":[[7446,0.75],[7440,0.727]],"pM":[null,7476,7464,7460,7451,5781,5770,5759,5751,5740,5731,5723,5712,5705,5694,5681,5670,5661,5650,5641,5633,5623,5612,5603,5592,5582,5570,5558,5551,5546,5532,5522,5514,5507,5492,5480,5477,5461,5455],"DMI":[5570,5759,5546,5731]}],[125,{"n":"Milan","rn":"AC Milan","cn":"Milan","crn":"AC-Milan","a":"ACM","el":1042,"s":{"w":4,"l":0,"d":0,"pl":4,"GA":8,"GS":9,"GT":1,"p":12},"nm":[[7447,0.402],[7441,0.709]],"pM":[null,7475,7490,7487,7450,5786,5772,5762,5752,5744,5732,5723,5711,5701,5696,5679,5674,5658,5654,5638,5635,5618,5614,5601,5594,5581,5572,5563,5552,5545,5532,5523,5515,5501,5493,5485,5473,5463,5454],"DMI":[5552,5744,5635]}],[111,{"n":"Napoli","rn":"SSC Naples","cn":"Napoli","crn":"SSC-Naples","a":"NAP","el":937,"s":{"w":3,"l":0,"d":1,"pl":4,"GA":11,"GS":12,"GT":1,"p":10},"nm":[[7507,0.41],[7437,0.447]],"pM":[null,7472,7466,7462,7449,5782,5773,5766,5753,5745,5733,5724,5713,5701,5695,5687,5675,5665,5655,5641,5636,5621,5615,5602,5590,5580,5573,5567,5553,5538,5533,5521,5515,5499,5494,5482,5474,5460,5455],"DMI":[5474,5665]}],[114,{"n":"Parma","rn":"Parme Calcio 1913","cn":"Parma","crn":"Parme-Calcio-1913","a":"PMA","el":1045,"s":{"w":1,"l":3,"d":0,"pl":4,"GA":-5,"GS":4,"GT":9,"p":3},"nm":[[7436,0.364],[7509,0.564]],"pM":[null,7472,7469,7461,7454,5783,5774,5765,5754,5742,5734,5720,5714,5699,5696,5684,5675,5663,5648,5642,5632,5622,5610,5603,5596,5586,5574,5561,5554,5547,5534,5524,5516,5501,5495,5482,5469,5462,5453],"DMI":[5554,5742]}],[116,{"n":"Roma","rn":"AS Roma","cn":"Roma","crn":"AS-Roma","a":"RMA","el":1111,"s":{"w":2,"l":0,"d":2,"pl":4,"GA":4,"GS":8,"GT":4,"p":8},"nm":[[7438,0.729],[7447,0.598]],"pM":[null,7471,7468,7458,7503,5784,5771,5764,5755,5744,5737,5724,5714,5702,5697,5680,5676,5659,5656,5643,5631,5623,5616,5604,5588,5584,5568,5564,5552,5544,5533,5524,5508,5502,5496,5483,5475,5465,5452],"DMI":[5552,5744,5659,5475]}],[120,{"n":"Sampdoria","rn":"UC Sampdoria","cn":"Sampdoria","crn":"UC-Sampdoria","a":"SAM","el":939,"s":{"w":2,"l":3,"d":0,"pl":5,"GA":-3,"GS":7,"GT":10,"p":6},"nm":[[7442,0.356],[7439,0.662]],"pM":[null,7474,7488,7456,7451,5779,5775,5767,5755,5739,5735,5725,5715,5704,5689,5684,5672,5664,5654,5644,5633,5625,5615,5606,5595,5583,5575,5564,5555,5543,5535,5518,5517,5504,5495,5484,5472,5463,5450],"DMI":[5518,5715,5672,5484]}],[123,{"n":"Sassuolo","rn":"US Sassuolo","cn":"Sassuolo","crn":"US-Sassuolo","a":"SASS","el":974,"s":{"w":3,"l":0,"d":1,"pl":4,"GA":7,"GS":13,"GT":6,"p":10},"nm":[[7437,0.553],[7448,0.45]],"pM":[null,7473,7489,7485,7452,5783,5776,5760,5756,5747,5736,5722,5716,5705,5693,5685,5674,5665,5651,5646,5637,5625,5616,5605,5596,5578,5576,5562,5556,5540,5536,5519,5514,5505,5489,5485,5474,5464,5457],"DMI":[5637,5474,5665]}],[141,{"n":"Spezia","rn":"Spezia Calcio","cn":"Spezia","crn":"Spezia-Calcio","a":"SPE","el":1000,"s":{"w":1,"l":2,"d":1,"pl":4,"GA":-4,"GS":5,"GT":9,"p":4},"nm":[[7519,0.303],[7509,0.436]],"pM":[null,7493,7489,7487,7502],"DMI":[]}],[122,{"n":"Torino","rn":"Torino FC","cn":"Torino","crn":"Torino-FC","a":"TNO","el":1009,"s":{"w":0,"l":5,"d":1,"pl":6,"GA":-7,"GS":6,"GT":13,"p":1},"nm":[[7457,0.746],[7440,0.273],[7448,0.55]],"pM":[null,7470,7463,7457,7453,5786,5774,5766,5757,5746,5731,5726,5708,5706,5691,5686,5677,5666,5656,5645,5637,5626,5613,5606,5594,5586,5573,5566,5549,5546,5531,5526,5512,5506,5490,5486,5476,5465,5449],"DMI":[5637,5546,5731,5506,5691]}],[124,{"n":"Udinese","rn":"Udinese Calcio","cn":"Udinese","crn":"Udinese-Calcio","a":"UDI","el":887,"s":{"w":1,"l":3,"d":0,"pl":4,"GA":-3,"GS":3,"GT":6,"p":3},"nm":[[7443,0.426],[7441,0.291]],"pM":[null,7493,7467,7458,7454,5787,5777,5761,5757,5738,5737,5721,5717,5704,5694,5687,5673,5667,5653,5646,5635,5622,5617,5598,5597,5579,5577,5566,5557,5544,5537,5525,5517,5507,5494,5487,5470,5466,5457],"DMI":[5577,5761,5635]}],[126,{"n":"Verona","rn":"Hellas Verone","cn":"Verona","crn":"Hellas-Verone","a":"VRN","el":993,"s":{"w":1,"l":1,"d":2,"pl":4,"GA":0,"GS":1,"GT":1,"p":5},"nm":[[7520,0.49],[7445,0.294]],"pM":[null,7471,7467,7461,7455,5787,5768,5767,5753,5747,5734,5727,5710,5707,5697,5678,5677,5661,5657,5647,5629,5627,5614,5607,5597,5587,5575,5567,5556,5547,5528,5527,5510,5502,5497,5486,5477,5467,5451],"DMI":[5607]}]],"nc":20,"op":[[109,{"n":"Brescia"}],[113,{"n":"Lecce"}],[118,{"n":"Spal"}],[19,{"n":"Nice"}],[13,{"n":"Monaco"}],[68,{"n":"Reims"}],[15,{"n":"Montpellier"}],[16,{"n":"Angers"}],[41,{"n":"Strasbourg"}],[2,{"n":"Paris"}],[12,{"n":"Lille"}],[42,{"n":"Amiens"}],[10,{"n":"Toulouse"}],[7,{"n":"Dijon"}],[4,{"n":"Saint-Étienne"}],[8,{"n":"Nantes"}],[20,{"n":"Rennes"}],[75,{"n":"Brest"}],[58,{"n":"Getafe"}],[74,{"n":"Valladolid"}],[48,{"n":"Alavés"}],[87,{"n":"Mallorca"}],[59,{"n":"Barcelona"}],[9,{"n":"Marseille"}],[18,{"n":"Lyon"}],[67,{"n":"Nîmes"}],[3,{"n":"Bordeaux"}],[11,{"n":"Metz"}],[56,{"n":"Espanyol"}],[51,{"n":"Celta"}],[63,{"n":"Levante"}],[85,{"n":"Osasuna"}],[54,{"n":"Atlético"}],[60,{"n":"Betis"}],[52,{"n":"Real Sociedad"}],[64,{"n":"Villarreal"}],[47,{"n":"Leganés"}],[62,{"n":"Real Madrid"}],[55,{"n":"Sevilla"}],[88,{"n":"Ajaccio"}],[6,{"n":"Lorient"}],[91,{"n":"Valenciennes"}],[103,{"n":"Le Mans"}],[97,{"n":"Orléans"}],[101,{"n":"Auxerre"}],[93,{"n":"Châteauroux"}],[5,{"n":"Caen"}],[94,{"n":"Grenoble"}],[43,{"n":"Troyes"}],[104,{"n":"Lens"}],[90,{"n":"Chambly"}],[92,{"n":"Clermont"}],[14,{"n":"Guingamp"}],[100,{"n":"Rodez"}],[102,{"n":"Sochaux"}],[17,{"n":"Nancy"}],[86,{"n":"Granada"}],[66,{"n":"Eibar"}],[76,{"n":"Norwich"}],[69,{"n":"Wolverhampton"}],[45,{"n":"Brighton"}],[28,{"n":"West Ham"}],[78,{"n":"Aston Villa"}],[35,{"n":"Southampton"}],[40,{"n":"Man. City"}],[33,{"n":"Watford"}],[24,{"n":"Tottenham"}],[21,{"n":"Liverpool"}],[25,{"n":"Chelsea"}],[31,{"n":"Man. United"}],[22,{"n":"Everton"}],[23,{"n":"Burnley"}],[36,{"n":"Bournemouth"}],[46,{"n":"Newcastle"}],[39,{"n":"Arsenal"}],[57,{"n":"Bilbao"}],[49,{"n":"Valencia"}],[77,{"n":"Sheffield"}],[26,{"n":"Crystal Palace"}],[29,{"n":"Leicester"}]],"Ne":[[7442,{"d":5,"dB":1603544400,"t1":119,"t2":120,"o":{"h":1.44,"d":5.35,"a":6.2}}],[7518,{"d":6,"dB":1604152800,"t1":139,"t2":119}],[7507,{"d":5,"dB":1603634400,"t1":140,"t2":111,"o":{"h":7.9,"d":5.75,"a":1.34}}],[7520,{"d":6,"dB":1604346300,"t1":126,"t2":140,"o":{"h":1.82,"d":3.58,"a":4.1}}],[7446,{"d":5,"dB":1603565100,"t1":121,"t2":127,"o":{"h":1.72,"d":4.2,"a":4.45}}],[7435,{"d":6,"dB":1604173500,"t1":127,"t2":108,"o":{"h":2.02,"d":3.68,"a":3.3}}],[7508,{"d":5,"dB":1603625400,"t1":108,"t2":139,"o":{"h":1.97,"d":3.65,"a":3.8}}],[7443,{"d":5,"dB":1603645200,"t1":110,"t2":124,"o":{"h":1.73,"d":3.9,"a":4.75}}],[7438,{"d":6,"dB":1604250000,"t1":116,"t2":110,"o":{"h":1.77,"d":3.9,"a":4}}],[7457,{"d":3,"dB":1604505600,"dl":1,"t1":117,"t2":122,"o":{"h":3.4,"d":3.65,"a":2.1}}],[7444,{"d":5,"dB":1603555200,"t1":117,"t2":112,"o":{"h":7.9,"d":5.35,"a":1.37}}],[7436,{"d":6,"dB":1604163600,"t1":112,"t2":114}],[7445,{"d":5,"dB":1603655100,"t1":115,"t2":126,"o":{"h":1.48,"d":4.5,"a":6.85}}],[7519,{"d":6,"dB":1604239200,"t1":141,"t2":115}],[7440,{"d":6,"dB":1604239200,"t1":122,"t2":121}],[7447,{"d":5,"dB":1603741500,"t1":125,"t2":116,"o":{"h":2.35,"d":3.55,"a":2.98}}],[7441,{"d":6,"dB":1604230200,"t1":124,"t2":125,"o":{"h":4.6,"d":3.85,"a":1.68}}],[7437,{"d":6,"dB":1604250000,"t1":111,"t2":123,"o":{"h":1.54,"d":4.5,"a":5}}],[7509,{"d":5,"dB":1603634400,"t1":114,"t2":141,"o":{"h":1.99,"d":3.32,"a":3.45}}],[7439,{"d":6,"dB":1604259900,"t1":120,"t2":117}],[7448,{"d":5,"dB":1603478700,"t1":123,"t2":122,"o":{"h":1.55,"d":4.65,"a":5.4}}]],"e":[[5448,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":119,"t2":112}],[5462,{"d":37,"dB":1595957400,"t1s":1,"t2s":2,"t1":114,"t2":119}],[5473,{"d":36,"dB":1595619900,"t1s":1,"t2s":1,"t1":125,"t2":119}],[5478,{"d":35,"dB":1595352600,"t1s":1,"t2s":0,"t1":119,"t2":127}],[5497,{"d":34,"dB":1595085300,"t1s":1,"t2s":1,"t1":126,"t2":119}],[5498,{"d":33,"dB":1594755900,"t1s":6,"t2s":2,"t1":119,"t2":109}],[5513,{"d":32,"dB":1594496700,"t1s":2,"t2s":2,"t1":115,"t2":119}],[5518,{"d":31,"dB":1594237500,"t1s":2,"t2s":0,"t1":119,"t2":120}],[5529,{"d":30,"dB":1593970200,"t1s":0,"t2s":1,"t1":108,"t2":119}],[5538,{"d":29,"dB":1593711000,"t1s":2,"t2s":0,"t1":119,"t2":111}],[5557,{"d":28,"dB":1593365400,"t1s":2,"t2s":3,"t1":124,"t2":119}],[5558,{"d":27,"dB":1593027900,"t1s":3,"t2s":2,"t1":119,"t2":121}],[5571,{"d":26,"dB":1583071200,"t1s":2,"t2s":7,"t1":113,"t2":119}],[5578,{"d":25,"dB":1592760600,"t1s":4,"t2s":1,"t1":119,"t2":123}],[5588,{"d":24,"dB":1581795900,"t1s":2,"t2s":1,"t1":119,"t2":116}],[5608,{"d":22,"dB":1580652000,"t1s":2,"t2s":2,"t1":119,"t2":117}],[5626,{"d":21,"dB":1579981500,"t1s":0,"t2s":7,"t1":122,"t2":119}],[5628,{"d":20,"dB":1579549500,"t1s":1,"t2s":2,"t1":119,"t2":118}],[5640,{"d":19,"dB":1578771900,"t1s":1,"t2s":1,"t1":112,"t2":119}],[5648,{"d":18,"dB":1578319200,"t1s":5,"t2s":0,"t1":119,"t2":114}],[5658,{"d":17,"dB":1577014200,"t1s":5,"t2s":0,"t1":119,"t2":125}],[5668,{"d":16,"dB":1576418400,"t1s":2,"t2s":1,"t1":127,"t2":119}],[5678,{"d":15,"dB":1575727200,"t1s":3,"t2s":2,"t1":119,"t2":126}],[5688,{"d":14,"dB":1575122400,"t1s":0,"t2s":3,"t1":109,"t2":119}],[5698,{"d":13,"dB":1574517600,"t1s":1,"t2s":3,"t1":119,"t2":115}],[5715,{"d":12,"dB":1573394400,"t1s":0,"t2s":0,"t1":120,"t2":119}],[5733,{"d":10,"dB":1572458400,"t1s":2,"t2s":2,"t1":111,"t2":119}],[5738,{"d":9,"dB":1572184800,"t1s":7,"t2s":1,"t1":119,"t2":124}],[5751,{"d":8,"dB":1571490000,"t1s":3,"t2s":3,"t1":121,"t2":119}],[5758,{"d":7,"dB":1570366800,"t1s":3,"t2s":1,"t1":119,"t2":113}],[5784,{"d":5,"dB":1569430800,"t1s":0,"t2s":2,"t1":116,"t2":119}],[5788,{"d":4,"dB":1569168000,"t1s":2,"t2s":2,"t1":119,"t2":110}],[7449,{"d":4,"dB":1602939600,"t1s":4,"t2s":1,"t1":111,"t2":119}],[7459,{"d":3,"dB":1601807400,"t1s":5,"t2s":2,"t1":119,"t2":108}],[7463,{"d":2,"dB":1601125200,"t1s":2,"t2s":4,"t1":122,"t2":119}],[7476,{"d":1,"dB":1601491500,"t1s":1,"t2s":4,"t1":121,"t2":119}],[5718,{"d":11,"dB":1572780600,"t1s":0,"t2s":2,"t1":119,"t2":108}],[5451,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":117,"t2":126}],[5467,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":126,"t2":118}],[5477,{"d":36,"dB":1595784600,"t1s":1,"t2s":5,"t1":126,"t2":121}],[5486,{"d":35,"dB":1595447100,"t1s":1,"t2s":1,"t1":122,"t2":126}],[5502,{"d":33,"dB":1594842300,"t1s":2,"t2s":1,"t1":116,"t2":126}],[5510,{"d":32,"dB":1594575000,"t1s":1,"t2s":1,"t1":110,"t2":126}],[5527,{"d":31,"dB":1594323900,"t1s":2,"t2s":2,"t1":126,"t2":112}],[5547,{"d":29,"dB":1593632700,"t1s":3,"t2s":2,"t1":126,"t2":114}],[5556,{"d":28,"dB":1593365400,"t1s":3,"t2s":3,"t1":123,"t2":126}],[5567,{"d":27,"dB":1592933400,"t1s":0,"t2s":2,"t1":126,"t2":111}],[5575,{"d":26,"dB":1583676000,"t1s":2,"t2s":1,"t1":120,"t2":126}],[5597,{"d":24,"dB":1581852600,"t1s":0,"t2s":0,"t1":124,"t2":126}],[5607,{"d":23,"dB":1581191100,"t1s":2,"t2s":1,"t1":126,"t2":115}],[5614,{"d":22,"dB":1580652000,"t1s":1,"t2s":1,"t1":125,"t2":126}],[5627,{"d":21,"dB":1580047200,"t1s":3,"t2s":0,"t1":126,"t2":113}],[5629,{"d":20,"dB":1579442400,"t1s":1,"t2s":1,"t1":127,"t2":126}],[5647,{"d":19,"dB":1578848400,"t1s":2,"t2s":1,"t1":126,"t2":117}],[5657,{"d":18,"dB":1578232800,"t1s":0,"t2s":2,"t1":118,"t2":126}],[5661,{"d":17,"dB":1580931900,"t1s":0,"t2s":0,"t1":121,"t2":126}],[5677,{"d":16,"dB":1576409400,"t1s":3,"t2s":3,"t1":126,"t2":122}],[5697,{"d":14,"dB":1575229500,"t1s":1,"t2s":3,"t1":126,"t2":116}],[5707,{"d":13,"dB":1574604000,"t1s":1,"t2s":0,"t1":126,"t2":110}],[5710,{"d":12,"dB":1573318800,"t1s":2,"t2s":1,"t1":112,"t2":126}],[5727,{"d":11,"dB":1572789600,"t1s":2,"t2s":1,"t1":126,"t2":109}],[5734,{"d":10,"dB":1572372000,"t1s":0,"t2s":1,"t1":114,"t2":126}],[5747,{"d":9,"dB":1572029100,"t1s":0,"t2s":1,"t1":126,"t2":123}],[5753,{"d":8,"dB":1571500800,"t1s":2,"t2s":0,"t1":111,"t2":126}],[5767,{"d":7,"dB":1570291200,"t1s":2,"t2s":0,"t1":126,"t2":120}],[5768,{"d":6,"dB":1569772800,"t1s":1,"t2s":1,"t1":108,"t2":126}],[5787,{"d":5,"dB":1569344400,"t1s":0,"t2s":0,"t1":126,"t2":124}],[5450,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":109,"t2":120}],[5463,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":120,"t2":125}],[5472,{"d":36,"dB":1595792700,"t1s":2,"t2s":0,"t1":115,"t2":120}],[5484,{"d":35,"dB":1595447100,"t1s":1,"t2s":2,"t1":120,"t2":117}],[5495,{"d":34,"dB":1595171700,"t1s":2,"t2s":3,"t1":114,"t2":120}],[5504,{"d":33,"dB":1594834200,"t1s":3,"t2s":0,"t1":120,"t2":108}],[5517,{"d":32,"dB":1594575000,"t1s":1,"t2s":3,"t1":124,"t2":120}],[5535,{"d":30,"dB":1593970200,"t1s":3,"t2s":0,"t1":120,"t2":118}],[5543,{"d":29,"dB":1593632700,"t1s":1,"t2s":2,"t1":113,"t2":120}],[5555,{"d":28,"dB":1593365400,"t1s":1,"t2s":2,"t1":120,"t2":127}],[5564,{"d":27,"dB":1593027900,"t1s":2,"t2s":1,"t1":116,"t2":120}],[5583,{"d":25,"dB":1592768700,"t1s":2,"t2s":1,"t1":112,"t2":120}],[5595,{"d":24,"dB":1581861600,"t1s":1,"t2s":5,"t1":120,"t2":110}],[5654,{"d":18,"dB":1578319200,"t1s":0,"t2s":0,"t1":125,"t2":120}],[5664,{"d":17,"dB":1576691700,"t1s":1,"t2s":2,"t1":120,"t2":115}],[5672,{"d":16,"dB":1576352700,"t1s":0,"t2s":1,"t1":117,"t2":120}],[5704,{"d":13,"dB":1574614800,"t1s":2,"t2s":1,"t1":120,"t2":124}],[5725,{"d":11,"dB":1572896700,"t1s":0,"t2s":1,"t1":118,"t2":120}],[5735,{"d":10,"dB":1572465600,"t1s":1,"t2s":1,"t1":120,"t2":113}],[5739,{"d":9,"dB":1572175800,"t1s":2,"t2s":1,"t1":127,"t2":120}],[5755,{"d":8,"dB":1571576400,"t1s":0,"t2s":0,"t1":120,"t2":116}],[5775,{"d":6,"dB":1569686400,"t1s":1,"t2s":3,"t1":120,"t2":112}],[5779,{"d":5,"dB":1569438000,"t1s":2,"t2s":1,"t1":110,"t2":120}],[7474,{"d":1,"dB":1600627500,"t1s":3,"t2s":0,"t1":115,"t2":120}],[7488,{"d":2,"dB":1601136000,"t1s":2,"t2s":3,"t1":120,"t2":140}],[5464,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":123,"t2":117}],[5471,{"d":36,"dB":1595698200,"t1s":0,"t2s":3,"t1":117,"t2":112}],[5491,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":117,"t2":113}],[5537,{"d":30,"dB":1593970200,"t1s":2,"t2s":2,"t1":124,"t2":117}],[5541,{"d":29,"dB":1593546300,"t1s":1,"t2s":3,"t1":117,"t2":115}],[5548,{"d":28,"dB":1593270900,"t1s":2,"t2s":2,"t1":109,"t2":117}],[5561,{"d":27,"dB":1592941500,"t1s":1,"t2s":4,"t1":117,"t2":114}],[5572,{"d":26,"dB":1583676000,"t1s":1,"t2s":2,"t1":125,"t2":117}],[5619,{"d":21,"dB":1579971600,"t1s":0,"t2s":0,"t1":110,"t2":117}],[5631,{"d":20,"dB":1579453200,"t1s":1,"t2s":3,"t1":117,"t2":116}],[5651,{"d":18,"dB":1578243600,"t1s":2,"t2s":1,"t1":117,"t2":123}],[5660,{"d":17,"dB":1576947600,"t1s":4,"t2s":0,"t1":112,"t2":117}],[5682,{"d":15,"dB":1575804600,"t1s":2,"t2s":2,"t1":113,"t2":117}],[5691,{"d":14,"dB":1575133200,"t1s":0,"t2s":1,"t1":117,"t2":122}],[5703,{"d":13,"dB":1574711100,"t1s":1,"t2s":1,"t1":118,"t2":117}],[5713,{"d":12,"dB":1573328700,"t1s":0,"t2s":0,"t1":111,"t2":117}],[5721,{"d":11,"dB":1572789600,"t1s":1,"t2s":3,"t1":117,"t2":124}],[5730,{"d":10,"dB":1572465600,"t1s":2,"t2s":1,"t1":115,"t2":117}],[5741,{"d":9,"dB":1572115500,"t1s":3,"t2s":1,"t1":117,"t2":109}],[5762,{"d":7,"dB":1570301100,"t1s":1,"t2s":2,"t1":117,"t2":125}],[5770,{"d":6,"dB":1569762000,"t1s":4,"t2s":0,"t1":121,"t2":117}],[5780,{"d":5,"dB":1569438000,"t1s":0,"t2s":0,"t1":117,"t2":127}],[5599,{"d":23,"dB":1581170400,"t1s":1,"t2s":2,"t1":110,"t2":119}],[5776,{"d":6,"dB":1569696300,"t1s":1,"t2s":4,"t1":123,"t2":119}],[3653,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":19,"t2":13}],[3662,{"d":27,"dB":1583002800,"t1s":1,"t2s":1,"t1":13,"t2":68}],[3683,{"d":25,"dB":1581709500,"t1s":1,"t2s":0,"t1":13,"t2":15}],[3706,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":13,"t2":16}],[3722,{"d":21,"dB":1579978800,"t1s":1,"t2s":3,"t1":13,"t2":41}],[3734,{"d":20,"dB":1578859200,"t1s":3,"t2s":3,"t1":2,"t2":13}],[3740,{"d":19,"dB":1576957500,"t1s":5,"t2s":1,"t1":13,"t2":12}],[3749,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":16,"t2":13}],[3760,{"d":17,"dB":1575745200,"t1s":3,"t2s":0,"t1":13,"t2":42}],[3777,{"d":16,"dB":1575482400,"t1s":1,"t2s":2,"t1":10,"t2":13}],[3780,{"d":15,"dB":1579118400,"t1s":1,"t2s":4,"t1":13,"t2":2}],[3801,{"d":13,"dB":1573326000,"t1s":1,"t2s":0,"t1":13,"t2":7}],[3816,{"d":12,"dB":1572811200,"t1s":1,"t2s":0,"t1":4,"t2":13}],[3822,{"d":11,"dB":1572029100,"t1s":0,"t2s":1,"t1":8,"t2":13}],[3833,{"d":10,"dB":1571583600,"t1s":3,"t2s":2,"t1":13,"t2":20}],[3842,{"d":9,"dB":1570298400,"t1s":3,"t2s":1,"t1":15,"t2":13}],[3853,{"d":8,"dB":1569693600,"t1s":4,"t2s":1,"t1":13,"t2":75}],[7486,{"d":3,"dB":1601816400,"t1s":1,"t2s":0,"t1":140,"t2":127}],[7492,{"d":1,"dB":1601481600,"t1s":2,"t2s":5,"t1":140,"t2":112}],[7503,{"d":4,"dB":1603046700,"t1s":5,"t2s":2,"t1":116,"t2":140}],[5456,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":118,"t2":110}],[5476,{"d":36,"dB":1595784600,"t1s":1,"t2s":1,"t1":118,"t2":122}],[5483,{"d":35,"dB":1595447100,"t1s":1,"t2s":6,"t1":118,"t2":116}],[5488,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":109,"t2":118}],[5503,{"d":33,"dB":1594928700,"t1s":0,"t2s":4,"t1":118,"t2":112}],[5511,{"d":32,"dB":1594566900,"t1s":2,"t2s":0,"t1":117,"t2":118}],[5525,{"d":31,"dB":1594315800,"t1s":0,"t2s":3,"t1":118,"t2":124}],[5545,{"d":29,"dB":1593632700,"t1s":2,"t2s":2,"t1":118,"t2":125}],[5553,{"d":28,"dB":1593365400,"t1s":3,"t2s":1,"t1":111,"t2":118}],[5565,{"d":27,"dB":1592933400,"t1s":0,"t2s":1,"t1":118,"t2":108}],[5605,{"d":23,"dB":1581247800,"t1s":1,"t2s":2,"t1":118,"t2":123}],[5612,{"d":22,"dB":1580652000,"t1s":5,"t2s":1,"t1":121,"t2":118}],[5624,{"d":21,"dB":1579960800,"t1s":1,"t2s":3,"t1":118,"t2":127}],[4523,{"d":17,"dB":1576407600,"t1s":2,"t2s":0,"t1":58,"t2":74}],[4557,{"d":13,"dB":1573300800,"t1s":3,"t2s":0,"t1":48,"t2":74}],[4575,{"d":12,"dB":1572778800,"t1s":3,"t2s":0,"t1":74,"t2":87}],[4580,{"d":11,"dB":1572380100,"t1s":5,"t2s":1,"t1":59,"t2":74}],[5453,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":113,"t2":114}],[5469,{"d":36,"dB":1595690100,"t1s":1,"t2s":2,"t1":109,"t2":114}],[5482,{"d":35,"dB":1595439000,"t1s":2,"t2s":1,"t1":114,"t2":111}],[5501,{"d":33,"dB":1594834200,"t1s":3,"t2s":1,"t1":125,"t2":114}],[5524,{"d":31,"dB":1594237500,"t1s":2,"t2s":1,"t1":116,"t2":114}],[5574,{"d":26,"dB":1583667000,"t1s":0,"t2s":1,"t1":114,"t2":118}],[5586,{"d":25,"dB":1592674200,"t1s":1,"t2s":1,"t1":122,"t2":114}],[5603,{"d":23,"dB":1581267600,"t1s":0,"t2s":1,"t1":114,"t2":121}],[5610,{"d":22,"dB":1580576400,"t1s":2,"t2s":2,"t1":108,"t2":114}],[5625,{"d":21,"dB":1580047200,"t1s":0,"t2s":0,"t1":120,"t2":123}],[5633,{"d":20,"dB":1579356000,"t1s":5,"t2s":1,"t1":121,"t2":120}],[5644,{"d":19,"dB":1578837600,"t1s":5,"t2s":1,"t1":120,"t2":109}],[5684,{"d":15,"dB":1575824400,"t1s":0,"t2s":1,"t1":120,"t2":114}],[5689,{"d":14,"dB":1575315900,"t1s":4,"t2s":3,"t1":108,"t2":120}],[5466,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":124,"t2":113}],[5468,{"d":36,"dB":1595776500,"t1s":3,"t2s":2,"t1":127,"t2":113}],[5481,{"d":35,"dB":1595447100,"t1s":3,"t2s":1,"t1":113,"t2":109}],[5563,{"d":27,"dB":1592847000,"t1s":1,"t2s":4,"t1":113,"t2":125}],[5584,{"d":25,"dB":1582477200,"t1s":4,"t2s":0,"t1":116,"t2":113}],[5593,{"d":24,"dB":1581775200,"t1s":2,"t2s":1,"t1":113,"t2":118}],[5602,{"d":23,"dB":1581256800,"t1s":2,"t2s":3,"t1":111,"t2":113}],[5613,{"d":22,"dB":1580662800,"t1s":4,"t2s":0,"t1":113,"t2":122}],[5634,{"d":20,"dB":1579442400,"t1s":1,"t2s":1,"t1":113,"t2":112}],[5642,{"d":19,"dB":1578944700,"t1s":2,"t2s":0,"t1":114,"t2":113}],[5669,{"d":16,"dB":1576332000,"t1s":3,"t2s":0,"t1":109,"t2":113}],[5700,{"d":13,"dB":1574624700,"t1s":2,"t2s":2,"t1":113,"t2":108}],[5712,{"d":12,"dB":1573394400,"t1s":4,"t2s":2,"t1":121,"t2":113}],[5722,{"d":11,"dB":1572789600,"t1s":2,"t2s":2,"t1":113,"t2":123}],[5743,{"d":9,"dB":1572094800,"t1s":1,"t2s":1,"t1":113,"t2":115}],[5752,{"d":8,"dB":1571597100,"t1s":2,"t2s":2,"t1":125,"t2":113}],[5454,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":125,"t2":108}],[5458,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":108,"t2":115}],[5470,{"d":36,"dB":1595784600,"t1s":0,"t2s":1,"t1":108,"t2":124}],[5480,{"d":35,"dB":1595533500,"t1s":2,"t2s":1,"t1":121,"t2":108}],[5509,{"d":32,"dB":1594575000,"t1s":0,"t2s":0,"t1":108,"t2":113}],[5520,{"d":31,"dB":1594229400,"t1s":0,"t2s":0,"t1":110,"t2":108}],[5539,{"d":29,"dB":1593624600,"t1s":1,"t2s":1,"t1":127,"t2":108}],[5549,{"d":28,"dB":1593279000,"t1s":4,"t2s":2,"t1":108,"t2":122}],[5568,{"d":26,"dB":1583082000,"t1s":3,"t2s":4,"t1":108,"t2":116}],[5587,{"d":25,"dB":1592682300,"t1s":2,"t2s":1,"t1":126,"t2":108}],[5590,{"d":24,"dB":1581872400,"t1s":0,"t2s":1,"t1":108,"t2":111}],[5600,{"d":23,"dB":1581256800,"t1s":1,"t2s":0,"t1":117,"t2":108}],[5620,{"d":21,"dB":1580038200,"t1s":1,"t2s":1,"t1":112,"t2":108}],[5630,{"d":20,"dB":1579442400,"t1s":2,"t2s":2,"t1":109,"t2":108}],[5638,{"d":19,"dB":1578751200,"t1s":0,"t2s":2,"t1":108,"t2":125}],[5667,{"d":17,"dB":1576936800,"t1s":2,"t2s":1,"t1":124,"t2":108}],[5670,{"d":16,"dB":1576525500,"t1s":1,"t2s":2,"t1":108,"t2":121}],[5729,{"d":10,"dB":1572465600,"t1s":3,"t2s":2,"t1":108,"t2":127}],[5746,{"d":9,"dB":1572184800,"t1s":1,"t2s":1,"t1":122,"t2":108}],[5749,{"d":8,"dB":1571576400,"t1s":2,"t2s":0,"t1":108,"t2":118}],[5764,{"d":7,"dB":1570366800,"t1s":1,"t2s":1,"t1":116,"t2":108}],[5782,{"d":5,"dB":1569438000,"t1s":0,"t2s":1,"t1":111,"t2":108}],[5506,{"d":33,"dB":1594920600,"t1s":3,"t2s":0,"t1":122,"t2":117}],[5521,{"d":31,"dB":1594229400,"t1s":1,"t2s":2,"t1":117,"t2":111}],[5582,{"d":25,"dB":1582457400,"t1s":2,"t2s":3,"t1":117,"t2":121}],[5731,{"d":10,"dB":1572465600,"t1s":4,"t2s":0,"t1":121,"t2":122}],[5757,{"d":8,"dB":1571576400,"t1s":1,"t2s":0,"t1":124,"t2":122}],[5766,{"d":7,"dB":1570377600,"t1s":0,"t2s":0,"t1":122,"t2":111}],[5683,{"d":15,"dB":1575813600,"t1s":0,"t2s":1,"t1":118,"t2":109}],[5769,{"d":6,"dB":1569675600,"t1s":2,"t2s":0,"t1":115,"t2":118}],[5449,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":127,"t2":122}],[5459,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":110,"t2":127}],[5493,{"d":34,"dB":1595101500,"t1s":5,"t2s":1,"t1":125,"t2":127}],[5499,{"d":33,"dB":1594834200,"t1s":1,"t2s":1,"t1":127,"t2":111}],[5516,{"d":32,"dB":1594575000,"t1s":2,"t2s":2,"t1":114,"t2":127}],[5530,{"d":30,"dB":1593962100,"t1s":1,"t2s":2,"t1":112,"t2":127}],[5559,{"d":27,"dB":1592855100,"t1s":0,"t2s":2,"t1":127,"t2":115}],[5570,{"d":26,"dB":1582984800,"t1s":2,"t2s":0,"t1":121,"t2":127}],[5604,{"d":23,"dB":1581104700,"t1s":2,"t2s":3,"t1":116,"t2":127}],[5609,{"d":22,"dB":1580565600,"t1s":2,"t2s":1,"t1":127,"t2":109}],[5645,{"d":19,"dB":1578837600,"t1s":1,"t2s":0,"t1":122,"t2":127}],[5649,{"d":18,"dB":1578310200,"t1s":1,"t2s":1,"t1":127,"t2":110}],[5662,{"d":17,"dB":1577023200,"t1s":2,"t2s":3,"t1":113,"t2":127}],[5719,{"d":11,"dB":1572714000,"t1s":1,"t2s":2,"t1":127,"t2":112}],[5750,{"d":8,"dB":1571510700,"t1s":2,"t2s":1,"t1":115,"t2":127}],[5777,{"d":6,"dB":1569762000,"t1s":1,"t2s":0,"t1":124,"t2":127}],[7452,{"d":4,"dB":1603017000,"t1s":3,"t2s":4,"t1":127,"t2":123}],[7469,{"d":2,"dB":1601318700,"t1s":4,"t2s":1,"t1":127,"t2":114}],[7475,{"d":1,"dB":1600713900,"t1s":2,"t2s":0,"t1":125,"t2":127}],[5519,{"d":31,"dB":1594237500,"t1s":1,"t2s":2,"t1":127,"t2":123}],[5679,{"d":15,"dB":1575834300,"t1s":2,"t2s":3,"t1":127,"t2":125}],[5695,{"d":14,"dB":1575219600,"t1s":1,"t2s":2,"t1":111,"t2":127}],[5699,{"d":13,"dB":1574595000,"t1s":2,"t2s":2,"t1":127,"t2":114}],[5716,{"d":12,"dB":1573242300,"t1s":3,"t2s":1,"t1":123,"t2":127}],[5759,{"d":7,"dB":1570366800,"t1s":2,"t2s":2,"t1":127,"t2":121}],[5579,{"d":25,"dB":1582380000,"t1s":1,"t2s":1,"t1":127,"t2":124}],[5589,{"d":24,"dB":1581786000,"t1s":0,"t2s":3,"t1":127,"t2":117}],[5500,{"d":33,"dB":1594842300,"t1s":1,"t2s":3,"t1":113,"t2":110}],[5522,{"d":31,"dB":1594143000,"t1s":2,"t2s":1,"t1":113,"t2":121}],[5536,{"d":30,"dB":1593883800,"t1s":4,"t2s":2,"t1":123,"t2":113}],[5550,{"d":28,"dB":1593200700,"t1s":4,"t2s":0,"t1":115,"t2":113}],[3651,{"d":28,"dB":1583524800,"t1s":2,"t2s":2,"t1":9,"t2":42}],[3677,{"d":26,"dB":1582398000,"t1s":0,"t2s":0,"t1":41,"t2":42}],[3678,{"d":25,"dB":1581784200,"t1s":4,"t2s":4,"t1":42,"t2":2}],[3688,{"d":24,"dB":1581188400,"t1s":1,"t2s":2,"t1":42,"t2":13}],[3704,{"d":23,"dB":1580925600,"t1s":0,"t2s":0,"t1":18,"t2":42}],[3708,{"d":22,"dB":1580583600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3718,{"d":21,"dB":1579978800,"t1s":2,"t2s":1,"t1":75,"t2":42}],[3728,{"d":20,"dB":1578769200,"t1s":1,"t2s":2,"t1":42,"t2":15}],[3744,{"d":19,"dB":1576957500,"t1s":4,"t2s":1,"t1":2,"t2":42}],[3748,{"d":18,"dB":1576350000,"t1s":1,"t2s":1,"t1":42,"t2":7}],[3768,{"d":16,"dB":1579111200,"t1s":1,"t2s":1,"t1":42,"t2":68}],[3781,{"d":15,"dB":1575140400,"t1s":4,"t2s":2,"t1":15,"t2":42}],[3806,{"d":13,"dB":1573394400,"t1s":3,"t2s":1,"t1":20,"t2":42}],[3808,{"d":12,"dB":1572721200,"t1s":1,"t2s":0,"t1":42,"t2":75}],[3826,{"d":11,"dB":1572192000,"t1s":2,"t2s":2,"t1":4,"t2":42}],[3835,{"d":10,"dB":1571508000,"t1s":1,"t2s":1,"t1":67,"t2":42}],[3838,{"d":9,"dB":1570214700,"t1s":3,"t2s":1,"t1":42,"t2":9}],[3848,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":16,"t2":42}],[3858,{"d":7,"dB":1569430800,"t1s":1,"t2s":3,"t1":42,"t2":3}],[5490,{"d":34,"dB":1595179800,"t1s":2,"t2s":0,"t1":110,"t2":122}],[5512,{"d":32,"dB":1594669500,"t1s":3,"t2s":1,"t1":112,"t2":122}],[5526,{"d":31,"dB":1594237500,"t1s":3,"t2s":1,"t1":122,"t2":109}],[5531,{"d":30,"dB":1593875700,"t1s":4,"t2s":1,"t1":115,"t2":122}],[5546,{"d":29,"dB":1593538200,"t1s":1,"t2s":2,"t1":122,"t2":121}],[5566,{"d":27,"dB":1592941500,"t1s":1,"t2s":0,"t1":122,"t2":124}],[5573,{"d":26,"dB":1583005500,"t1s":2,"t2s":1,"t1":111,"t2":122}],[5594,{"d":24,"dB":1581968700,"t1s":1,"t2s":0,"t1":125,"t2":122}],[5606,{"d":23,"dB":1581181200,"t1s":1,"t2s":3,"t1":122,"t2":120}],[5637,{"d":20,"dB":1579366800,"t1s":2,"t2s":1,"t1":123,"t2":122}],[5656,{"d":18,"dB":1578253500,"t1s":0,"t2s":2,"t1":116,"t2":122}],[5686,{"d":15,"dB":1575813600,"t1s":2,"t2s":1,"t1":122,"t2":110}],[5706,{"d":13,"dB":1574538300,"t1s":0,"t2s":3,"t1":122,"t2":112}],[5708,{"d":12,"dB":1573308000,"t1s":0,"t2s":4,"t1":109,"t2":122}],[5786,{"d":5,"dB":1569524400,"t1s":2,"t2s":1,"t1":122,"t2":125}],[3659,{"d":27,"dB":1583078400,"t1s":1,"t2s":1,"t1":3,"t2":19}],[3673,{"d":26,"dB":1582308000,"t1s":2,"t2s":2,"t1":19,"t2":75}],[3687,{"d":25,"dB":1581793200,"t1s":0,"t2s":2,"t1":10,"t2":19}],[3713,{"d":22,"dB":1580652000,"t1s":2,"t2s":1,"t1":19,"t2":18}],[3725,{"d":21,"dB":1579895100,"t1s":1,"t2s":1,"t1":19,"t2":20}],[3729,{"d":20,"dB":1578769200,"t1s":1,"t2s":1,"t1":16,"t2":19}],[3751,{"d":18,"dB":1576350000,"t1s":0,"t2s":0,"t1":75,"t2":19}],[3763,{"d":17,"dB":1575745200,"t1s":4,"t2s":1,"t1":19,"t2":11}],[3783,{"d":15,"dB":1575140400,"t1s":3,"t2s":1,"t1":19,"t2":16}],[3793,{"d":14,"dB":1574526600,"t1s":2,"t2s":1,"t1":18,"t2":19}],[3804,{"d":13,"dB":1573242300,"t1s":1,"t2s":1,"t1":19,"t2":3}],[3862,{"d":7,"dB":1569351600,"t1s":3,"t2s":1,"t1":13,"t2":19}],[7453,{"d":4,"dB":1603026000,"t1s":2,"t2s":3,"t1":122,"t2":108}],[5489,{"d":34,"dB":1595093400,"t1s":1,"t2s":1,"t1":108,"t2":123}],[5652,{"d":18,"dB":1578319200,"t1s":4,"t2s":0,"t1":115,"t2":108}],[5685,{"d":15,"dB":1575813600,"t1s":2,"t2s":2,"t1":123,"t2":108}],[5709,{"d":12,"dB":1573385400,"t1s":5,"t2s":2,"t1":108,"t2":110}],[7464,{"d":2,"dB":1601136000,"t1s":0,"t2s":2,"t1":108,"t2":121}],[7473,{"d":1,"dB":1600617600,"t1s":1,"t2s":1,"t1":123,"t2":108}],[5460,{"d":37,"dB":1595965500,"t1s":null,"t2s":null,"t1":112,"t2":111}],[5479,{"d":35,"dB":1595447100,"t1s":0,"t2s":0,"t1":112,"t2":110}],[5554,{"d":28,"dB":1593373500,"t1s":1,"t2s":2,"t1":114,"t2":112}],[5592,{"d":24,"dB":1581882300,"t1s":2,"t2s":1,"t1":121,"t2":112}],[5601,{"d":23,"dB":1581277500,"t1s":4,"t2s":2,"t1":112,"t2":125}],[5671,{"d":16,"dB":1576439100,"t1s":1,"t2s":1,"t1":110,"t2":112}],[5680,{"d":15,"dB":1575661500,"t1s":0,"t2s":0,"t1":112,"t2":116}],[5692,{"d":14,"dB":1575208800,"t1s":2,"t2s":1,"t1":112,"t2":118}],[5728,{"d":10,"dB":1572379200,"t1s":1,"t2s":2,"t1":109,"t2":112}],[5742,{"d":9,"dB":1572105600,"t1s":2,"t2s":2,"t1":112,"t2":114}],[5763,{"d":7,"dB":1570387500,"t1s":1,"t2s":2,"t1":112,"t2":115}],[5781,{"d":5,"dB":1569438000,"t1s":1,"t2s":0,"t1":112,"t2":121}],[5534,{"d":30,"dB":1593970200,"t1s":1,"t2s":2,"t1":114,"t2":110}],[5540,{"d":29,"dB":1593632700,"t1s":1,"t2s":3,"t1":110,"t2":123}],[5551,{"d":28,"dB":1593287100,"t1s":2,"t2s":1,"t1":121,"t2":110}],[5560,{"d":27,"dB":1592847000,"t1s":1,"t2s":1,"t1":110,"t2":109}],[5611,{"d":22,"dB":1580643000,"t1s":3,"t2s":0,"t1":115,"t2":110}],[5636,{"d":20,"dB":1579376700,"t1s":0,"t2s":2,"t1":111,"t2":110}],[5659,{"d":17,"dB":1576871100,"t1s":1,"t2s":4,"t1":110,"t2":116}],[5736,{"d":10,"dB":1572465600,"t1s":1,"t2s":2,"t1":123,"t2":110}],[5740,{"d":9,"dB":1572205500,"t1s":1,"t2s":2,"t1":110,"t2":121}],[5748,{"d":8,"dB":1571683500,"t1s":0,"t2s":0,"t1":109,"t2":110}],[5756,{"d":8,"dB":1571567400,"t1s":3,"t2s":4,"t1":123,"t2":112}],[5754,{"d":8,"dB":1571587200,"t1s":5,"t2s":1,"t1":114,"t2":117}],[4310,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":56,"t2":51}],[4320,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":51,"t2":63}],[4334,{"d":36,"dB":1594479600,"t1s":2,"t2s":1,"t1":85,"t2":51}],[4340,{"d":35,"dB":1594152000,"t1s":1,"t2s":1,"t1":51,"t2":54}],[4350,{"d":34,"dB":1593874800,"t1s":1,"t2s":1,"t1":51,"t2":60}],[4362,{"d":33,"dB":1593538200,"t1s":5,"t2s":1,"t1":87,"t2":51}],[4370,{"d":32,"dB":1593270000,"t1s":2,"t2s":2,"t1":51,"t2":59}],[4385,{"d":31,"dB":1593019800,"t1s":0,"t2s":1,"t1":52,"t2":51}],[4390,{"d":30,"dB":1592740800,"t1s":6,"t2s":0,"t1":51,"t2":48}],[4409,{"d":28,"dB":1592060400,"t1s":0,"t2s":1,"t1":51,"t2":64}],[4422,{"d":27,"dB":1583611200,"t1s":0,"t2s":0,"t1":58,"t2":51}],[4441,{"d":25,"dB":1582372800,"t1s":1,"t2s":0,"t1":51,"t2":47}],[4454,{"d":24,"dB":1581883200,"t1s":2,"t2s":2,"t1":62,"t2":51}],[4460,{"d":23,"dB":1581269400,"t1s":2,"t2s":1,"t1":51,"t2":55}],[4788,{"d":28,"dB":1583589600,"t1s":1,"t2s":0,"t1":88,"t2":6}],[4806,{"d":27,"dB":1582916400,"t1s":0,"t2s":0,"t1":91,"t2":88}],[4808,{"d":26,"dB":1582311600,"t1s":2,"t2s":0,"t1":88,"t2":103}],[4825,{"d":25,"dB":1581706800,"t1s":0,"t2s":3,"t1":97,"t2":88}],[4828,{"d":24,"dB":1581102000,"t1s":2,"t2s":3,"t1":88,"t2":101}],[4848,{"d":22,"dB":1580497200,"t1s":0,"t2s":1,"t1":88,"t2":93}],[4859,{"d":21,"dB":1579892400,"t1s":0,"t2s":1,"t1":5,"t2":88}],[4868,{"d":20,"dB":1578682800,"t1s":3,"t2s":1,"t1":88,"t2":94}],[4886,{"d":19,"dB":1576940400,"t1s":2,"t2s":1,"t1":43,"t2":88}],[4888,{"d":18,"dB":1576332000,"t1s":1,"t2s":2,"t1":88,"t2":104}],[4909,{"d":16,"dB":1575054000,"t1s":0,"t2s":2,"t1":90,"t2":88}],[4918,{"d":15,"dB":1574449200,"t1s":1,"t2s":1,"t1":88,"t2":92}],[4930,{"d":14,"dB":1573307100,"t1s":1,"t2s":1,"t1":14,"t2":88}],[4938,{"d":13,"dB":1572634800,"t1s":1,"t2s":0,"t1":88,"t2":100}],[4956,{"d":12,"dB":1572026400,"t1s":0,"t2s":2,"t1":102,"t2":88}],[4958,{"d":11,"dB":1571421600,"t1s":0,"t2s":0,"t1":88,"t2":17}],[4972,{"d":10,"dB":1570212000,"t1s":0,"t2s":0,"t1":6,"t2":88}],[4978,{"d":9,"dB":1569607200,"t1s":2,"t2s":0,"t1":88,"t2":91}],[6568,{"d":2,"dB":1598706000,"t1s":1,"t2s":0,"t1":5,"t2":88}],[5465,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":122,"t2":116}],[5774,{"d":6,"dB":1569869100,"t1s":3,"t2s":2,"t1":114,"t2":122}],[7491,{"d":1,"dB":1600606800,"t1s":4,"t2s":1,"t1":117,"t2":139}],[5585,{"d":25,"dB":1582390800,"t1s":1,"t2s":2,"t1":118,"t2":115}],[5717,{"d":12,"dB":1573394400,"t1s":0,"t2s":0,"t1":124,"t2":118}],[5732,{"d":10,"dB":1572552000,"t1s":1,"t2s":0,"t1":125,"t2":118}],[5745,{"d":9,"dB":1572184800,"t1s":1,"t2s":1,"t1":118,"t2":111}],[5765,{"d":7,"dB":1570280400,"t1s":1,"t2s":0,"t1":118,"t2":114}],[5785,{"d":5,"dB":1569438000,"t1s":1,"t2s":3,"t1":118,"t2":113}],[7485,{"d":3,"dB":1601730000,"t1s":4,"t2s":1,"t1":123,"t2":139}],[7490,{"d":2,"dB":1601222400,"t1s":0,"t2s":2,"t1":139,"t2":125}],[7501,{"d":4,"dB":1602960300,"t1s":1,"t2s":1,"t1":139,"t2":115}],[5653,{"d":18,"dB":1578330000,"t1s":0,"t2s":1,"t1":113,"t2":124}],[5690,{"d":14,"dB":1575143100,"t1s":0,"t2s":1,"t1":110,"t2":113}],[5771,{"d":6,"dB":1569762000,"t1s":0,"t2s":1,"t1":113,"t2":116}],[5665,{"d":17,"dB":1577043900,"t1s":1,"t2s":2,"t1":123,"t2":111}],[5675,{"d":16,"dB":1576342800,"t1s":1,"t2s":2,"t1":111,"t2":114}],[5773,{"d":6,"dB":1569753000,"t1s":2,"t2s":1,"t1":111,"t2":109}],[5596,{"d":24,"dB":1581861600,"t1s":0,"t2s":1,"t1":123,"t2":114}],[5632,{"d":20,"dB":1579463100,"t1s":2,"t2s":1,"t1":115,"t2":114}],[7472,{"d":1,"dB":1600597800,"t1s":0,"t2s":2,"t1":114,"t2":111}],[4308,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":48,"t2":59}],[4324,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":60,"t2":48}],[4355,{"d":34,"dB":1593883800,"t1s":1,"t2s":0,"t1":74,"t2":48}],[4358,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":48,"t2":86}],[4398,{"d":29,"dB":1592501400,"t1s":2,"t2s":0,"t1":48,"t2":52}],[4432,{"d":26,"dB":1582997400,"t1s":1,"t2s":1,"t1":47,"t2":48}],[4453,{"d":24,"dB":1581768000,"t1s":1,"t2s":0,"t1":87,"t2":48}],[4458,{"d":23,"dB":1581105600,"t1s":2,"t2s":1,"t1":48,"t2":66}],[4475,{"d":22,"dB":1580664600,"t1s":1,"t2s":1,"t1":55,"t2":48}],[4518,{"d":17,"dB":1576267200,"t1s":1,"t2s":1,"t1":48,"t2":47}],[4548,{"d":14,"dB":1574607600,"t1s":0,"t2s":2,"t1":66,"t2":48}],[4573,{"d":12,"dB":1572793200,"t1s":4,"t2s":2,"t1":85,"t2":48}],[4578,{"d":11,"dB":1572372000,"t1s":1,"t2s":1,"t1":48,"t2":54}],[4597,{"d":10,"dB":1572030000,"t1s":4,"t2s":1,"t1":64,"t2":48}],[4598,{"d":9,"dB":1571565600,"t1s":2,"t2s":0,"t1":48,"t2":51}],[4635,{"d":6,"dB":1569524400,"t1s":3,"t2s":0,"t1":52,"t2":48}],[5475,{"d":36,"dB":1595784600,"t1s":2,"t2s":1,"t1":116,"t2":110}],[7456,{"d":3,"dB":1601664300,"t1s":1,"t2s":2,"t1":110,"t2":120}],[7465,{"d":2,"dB":1601145900,"t1s":4,"t2s":3,"t1":112,"t2":110}],[7470,{"d":1,"dB":1600531200,"t1s":1,"t2s":0,"t1":110,"t2":122}],[7502,{"d":4,"dB":1603026000,"t1s":2,"t2s":2,"t1":141,"t2":110}],[5577,{"d":26,"dB":1583686800,"t1s":0,"t2s":0,"t1":124,"t2":110}],[5581,{"d":25,"dB":1582400700,"t1s":1,"t2s":1,"t1":110,"t2":125}],[5639,{"d":19,"dB":1578837600,"t1s":1,"t2s":0,"t1":110,"t2":118}],[5720,{"d":11,"dB":1572800400,"t1s":1,"t2s":1,"t1":110,"t2":114}],[5761,{"d":7,"dB":1570357800,"t1s":1,"t2s":0,"t1":110,"t2":124}],[5772,{"d":6,"dB":1569782700,"t1s":1,"t2s":3,"t1":125,"t2":110}],[5666,{"d":17,"dB":1576957500,"t1s":1,"t2s":2,"t1":122,"t2":118}],[5676,{"d":16,"dB":1576429200,"t1s":3,"t2s":1,"t1":116,"t2":118}],[4134,{"d":18,"dB":1576940400,"t1s":1,"t2s":2,"t1":76,"t2":69}],[4150,{"d":16,"dB":1575822600,"t1s":2,"t2s":2,"t1":45,"t2":69}],[4162,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":69,"t2":28}],[4195,{"d":12,"dB":1573394400,"t1s":2,"t2s":1,"t1":69,"t2":78}],[4227,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":69,"t2":35}],[4231,{"d":8,"dB":1570366800,"t1s":0,"t2s":2,"t1":40,"t2":69}],[4244,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":69,"t2":33}],[5693,{"d":14,"dB":1575199800,"t1s":2,"t2s":2,"t1":115,"t2":123}],[5705,{"d":13,"dB":1574604000,"t1s":1,"t2s":2,"t1":123,"t2":121}],[5760,{"d":7,"dB":1576698300,"t1s":0,"t2s":2,"t1":109,"t2":123}],[5496,{"d":34,"dB":1595187900,"t1s":2,"t2s":2,"t1":116,"t2":112}],[5562,{"d":27,"dB":1593019800,"t1s":3,"t2s":3,"t1":112,"t2":123}],[5655,{"d":18,"dB":1578339900,"t1s":1,"t2s":3,"t1":111,"t2":112}],[5455,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":111,"t2":121}],[5474,{"d":36,"dB":1595706300,"t1s":2,"t2s":0,"t1":111,"t2":123}],[5494,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":111,"t2":124}],[5515,{"d":32,"dB":1594583100,"t1s":2,"t2s":2,"t1":111,"t2":125}],[5533,{"d":30,"dB":1593978300,"t1s":2,"t2s":1,"t1":111,"t2":116}],[5615,{"d":22,"dB":1580759100,"t1s":2,"t2s":4,"t1":120,"t2":111}],[5621,{"d":21,"dB":1580067900,"t1s":2,"t2s":1,"t1":111,"t2":115}],[5641,{"d":19,"dB":1578762000,"t1s":1,"t2s":0,"t1":121,"t2":111}],[5687,{"d":15,"dB":1575738000,"t1s":1,"t2s":1,"t1":124,"t2":111}],[5701,{"d":13,"dB":1574528400,"t1s":1,"t2s":1,"t1":125,"t2":111}],[5724,{"d":11,"dB":1572703200,"t1s":2,"t2s":1,"t1":116,"t2":111}],[5485,{"d":35,"dB":1595360700,"t1s":1,"t2s":2,"t1":123,"t2":125}],[5523,{"d":31,"dB":1594151100,"t1s":4,"t2s":2,"t1":125,"t2":115}],[5532,{"d":30,"dB":1593891900,"t1s":0,"t2s":3,"t1":121,"t2":125}],[5552,{"d":28,"dB":1593357300,"t1s":2,"t2s":0,"t1":125,"t2":116}],[5635,{"d":20,"dB":1579433400,"t1s":3,"t2s":2,"t1":125,"t2":124}],[5674,{"d":16,"dB":1576418400,"t1s":0,"t2s":0,"t1":125,"t2":123}],[5696,{"d":14,"dB":1575208800,"t1s":0,"t2s":1,"t1":114,"t2":125}],[5711,{"d":12,"dB":1573415100,"t1s":1,"t2s":0,"t1":115,"t2":125}],[5723,{"d":11,"dB":1572810300,"t1s":1,"t2s":2,"t1":125,"t2":121}],[5542,{"d":29,"dB":1593624600,"t1s":6,"t2s":0,"t1":112,"t2":109}],[7455,{"d":4,"dB":1603133100,"t1s":0,"t2s":0,"t1":126,"t2":117}],[7457,{"d":3,"dB":1604505600,"dl":1,"t1s":null,"t2s":null,"t1":117,"t2":122}],[7466,{"d":2,"dB":1601211600,"t1s":6,"t2s":0,"t1":111,"t2":117}],[5452,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":115,"t2":116}],[5544,{"d":29,"dB":1593719100,"t1s":0,"t2s":2,"t1":116,"t2":124}],[5569,{"d":26,"dB":1583696700,"t1s":2,"t2s":0,"t1":115,"t2":112}],[5617,{"d":22,"dB":1580672700,"t1s":0,"t2s":2,"t1":124,"t2":112}],[7450,{"d":4,"dB":1602950400,"t1s":1,"t2s":2,"t1":112,"t2":125}],[7460,{"d":3,"dB":1601816400,"t1s":1,"t2s":1,"t1":121,"t2":112}],[4076,{"d":24,"dB":1579721400,"t1s":2,"t2s":1,"t1":24,"t2":76}],[4086,{"d":23,"dB":1579350600,"t1s":0,"t2s":0,"t1":33,"t2":24}],[4096,{"d":22,"dB":1578763800,"t1s":0,"t2s":1,"t1":24,"t2":21}],[4105,{"d":21,"dB":1577890800,"t1s":1,"t2s":0,"t1":35,"t2":24}],[4114,{"d":20,"dB":1577554200,"t1s":2,"t2s":2,"t1":76,"t2":24}],[4126,{"d":19,"dB":1577363400,"t1s":2,"t2s":1,"t1":24,"t2":45}],[4135,{"d":18,"dB":1577032200,"t1s":0,"t2s":2,"t1":24,"t2":25}],[4147,{"d":17,"dB":1576418400,"t1s":1,"t2s":2,"t1":69,"t2":24}],[4163,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":31,"t2":24}],[4187,{"d":13,"dB":1574512200,"t1s":2,"t2s":3,"t1":28,"t2":24}],[4203,{"d":11,"dB":1572798600,"t1s":1,"t2s":1,"t1":22,"t2":24}],[4211,{"d":10,"dB":1572193800,"t1s":2,"t2s":1,"t1":21,"t2":24}],[4228,{"d":8,"dB":1570275000,"t1s":3,"t2s":0,"t1":45,"t2":24}],[4243,{"d":7,"dB":1569679200,"t1s":2,"t2s":1,"t1":24,"t2":35}],[5508,{"d":32,"dB":1594488600,"t1s":0,"t2s":3,"t1":109,"t2":116}],[5623,{"d":21,"dB":1580058000,"t1s":1,"t2s":1,"t1":116,"t2":121}],[5643,{"d":19,"dB":1578858300,"t1s":1,"t2s":2,"t1":116,"t2":115}],[5702,{"d":13,"dB":1574604000,"t1s":3,"t2s":0,"t1":116,"t2":109}],[5714,{"d":12,"dB":1573405200,"t1s":2,"t2s":0,"t1":114,"t2":116}],[5737,{"d":10,"dB":1572465600,"t1s":0,"t2s":4,"t1":124,"t2":116}],[5744,{"d":9,"dB":1572195600,"t1s":2,"t2s":1,"t1":116,"t2":125}],[5622,{"d":21,"dB":1580047200,"t1s":2,"t2s":0,"t1":114,"t2":124}],[5663,{"d":17,"dB":1577023200,"t1s":1,"t2s":1,"t1":114,"t2":109}],[5783,{"d":5,"dB":1569438000,"t1s":1,"t2s":0,"t1":114,"t2":123}],[5792,{"d":4,"dB":1569177900,"t1s":2,"t2s":0,"t1":121,"t2":114}],[7461,{"d":3,"dB":1601816400,"t1s":1,"t2s":0,"t1":114,"t2":126}],[4110,{"d":20,"dB":1577562300,"t1s":0,"t2s":2,"t1":23,"t2":31}],[4152,{"d":16,"dB":1575739800,"t1s":1,"t2s":2,"t1":40,"t2":31}],[4200,{"d":11,"dB":1572697800,"t1s":1,"t2s":0,"t1":36,"t2":31}],[4214,{"d":10,"dB":1572193800,"t1s":1,"t2s":3,"t1":76,"t2":31}],[4224,{"d":9,"dB":1571585400,"t1s":1,"t2s":1,"t1":31,"t2":21}],[4237,{"d":8,"dB":1570375800,"t1s":1,"t2s":0,"t1":46,"t2":31}],[4247,{"d":7,"dB":1569870000,"t1s":1,"t2s":1,"t1":31,"t2":39}],[4319,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":59,"t2":85}],[4335,{"d":36,"dB":1594488600,"t1s":0,"t2s":1,"t1":74,"t2":59}],[4339,{"d":35,"dB":1594238400,"t1s":1,"t2s":0,"t1":59,"t2":56}],[4357,{"d":34,"dB":1593979200,"t1s":1,"t2s":4,"t1":64,"t2":59}],[4359,{"d":33,"dB":1593547200,"t1s":2,"t2s":2,"t1":59,"t2":54}],[4379,{"d":31,"dB":1592942400,"t1s":1,"t2s":0,"t1":59,"t2":57}],[4396,{"d":30,"dB":1592596800,"t1s":0,"t2s":0,"t1":55,"t2":59}],[4399,{"d":29,"dB":1592337600,"t1s":2,"t2s":0,"t1":59,"t2":47}],[4413,{"d":28,"dB":1592078400,"t1s":0,"t2s":4,"t1":87,"t2":59}],[4420,{"d":27,"dB":1583602200,"t1s":1,"t2s":0,"t1":59,"t2":52}],[4434,{"d":26,"dB":1583092800,"t1s":2,"t2s":0,"t1":62,"t2":59}],[4440,{"d":25,"dB":1582383600,"t1s":5,"t2s":0,"t1":59,"t2":66}],[4449,{"d":24,"dB":1581778800,"t1s":2,"t2s":1,"t1":59,"t2":58}],[4465,{"d":23,"dB":1581278400,"t1s":2,"t2s":3,"t1":60,"t2":59}],[4487,{"d":21,"dB":1579964400,"t1s":2,"t2s":0,"t1":49,"t2":59}],[4489,{"d":20,"dB":1579464000,"t1s":1,"t2s":0,"t1":59,"t2":86}],[4501,{"d":19,"dB":1578168000,"t1s":2,"t2s":2,"t1":56,"t2":59}],[4508,{"d":18,"dB":1576940400,"t1s":4,"t2s":1,"t1":59,"t2":48}],[4525,{"d":17,"dB":1576335600,"t1s":2,"t2s":2,"t1":52,"t2":59}],[4528,{"d":16,"dB":1575748800,"t1s":5,"t2s":2,"t1":59,"t2":87}],[4540,{"d":15,"dB":1575230400,"t1s":0,"t2s":1,"t1":54,"t2":59}],[4550,{"d":14,"dB":1574510400,"t1s":1,"t2s":2,"t1":47,"t2":59}],[4572,{"d":12,"dB":1572706800,"t1s":3,"t2s":1,"t1":63,"t2":59}],[4589,{"d":10,"dB":1576695600,"t1s":0,"t2s":0,"t1":59,"t2":62}],[4601,{"d":9,"dB":1571482800,"t1s":0,"t2s":3,"t1":66,"t2":59}],[4608,{"d":8,"dB":1570388400,"t1s":4,"t2s":0,"t1":59,"t2":55}],[5487,{"d":35,"dB":1595525400,"t1s":2,"t2s":1,"t1":124,"t2":115}],[5492,{"d":34,"dB":1595274300,"t1s":2,"t2s":1,"t1":115,"t2":121}],[5505,{"d":33,"dB":1594842300,"t1s":3,"t2s":3,"t1":123,"t2":115}],[5591,{"d":24,"dB":1581861600,"t1s":2,"t2s":0,"t1":115,"t2":109}],[5673,{"d":16,"dB":1576418400,"t1s":3,"t2s":1,"t1":115,"t2":124}],[5778,{"d":5,"dB":1569351600,"t1s":1,"t2s":2,"t1":109,"t2":115}],[7462,{"d":3,"dB":1601837100,"dl":1,"t1s":null,"t2s":null,"t1":115,"t2":111}],[7468,{"d":2,"dB":1601232300,"t1s":2,"t2s":2,"t1":116,"t2":115}],[5726,{"d":11,"dB":1572723900,"t1s":0,"t2s":1,"t1":122,"t2":115}],[4309,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":54,"t2":52}],[4322,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":58,"t2":54}],[4329,{"d":36,"dB":1594497600,"t1s":1,"t2s":0,"t1":54,"t2":60}],[4349,{"d":34,"dB":1593806400,"t1s":3,"t2s":0,"t1":54,"t2":87}],[4369,{"d":32,"dB":1593288000,"t1s":2,"t2s":1,"t1":54,"t2":48}],[4382,{"d":31,"dB":1592933400,"t1s":0,"t2s":1,"t1":63,"t2":54}],[4389,{"d":30,"dB":1592683200,"t1s":1,"t2s":0,"t1":54,"t2":74}],[4403,{"d":29,"dB":1592424000,"t1s":0,"t2s":5,"t1":85,"t2":54}],[4408,{"d":28,"dB":1592136000,"t1s":1,"t2s":1,"t1":57,"t2":54}],[4419,{"d":27,"dB":1583593200,"t1s":2,"t2s":2,"t1":54,"t2":55}],[4430,{"d":26,"dB":1583074800,"t1s":1,"t2s":1,"t1":56,"t2":54}],[4439,{"d":25,"dB":1582488000,"t1s":3,"t2s":1,"t1":54,"t2":64}],[4456,{"d":24,"dB":1581710400,"t1s":2,"t2s":2,"t1":49,"t2":54}],[4474,{"d":22,"dB":1580569200,"t1s":1,"t2s":0,"t1":62,"t2":54}],[4479,{"d":21,"dB":1580036400,"t1s":0,"t2s":0,"t1":54,"t2":47}],[4490,{"d":20,"dB":1579377600,"t1s":2,"t2s":0,"t1":66,"t2":54}],[4499,{"d":19,"dB":1578159000,"t1s":2,"t2s":1,"t1":54,"t2":63}],[4514,{"d":18,"dB":1577026800,"t1s":1,"t2s":2,"t1":60,"t2":54}],[4520,{"d":17,"dB":1576353600,"t1s":2,"t2s":0,"t1":54,"t2":85}],[4537,{"d":16,"dB":1575662400,"t1s":0,"t2s":0,"t1":64,"t2":54}],[4549,{"d":14,"dB":1574530200,"t1s":1,"t2s":1,"t1":86,"t2":54}],[4560,{"d":13,"dB":1573398000,"t1s":3,"t2s":1,"t1":54,"t2":56}],[4576,{"d":12,"dB":1572715800,"t1s":1,"t2s":1,"t1":55,"t2":54}],[4588,{"d":10,"dB":1572116400,"t1s":2,"t2s":0,"t1":54,"t2":57}],[4600,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":54,"t2":49}],[4616,{"d":8,"dB":1570370400,"t1s":0,"t2s":0,"t1":74,"t2":54}],[4632,{"d":6,"dB":1569430800,"t1s":0,"t2s":2,"t1":87,"t2":54}],[5681,{"d":15,"dB":1575747900,"t1s":3,"t2s":1,"t1":121,"t2":115}],[4469,{"d":22,"dB":1580673600,"t1s":2,"t2s":1,"t1":59,"t2":63}],[4561,{"d":13,"dB":1573329600,"t1s":4,"t2s":1,"t1":59,"t2":51}],[4623,{"d":7,"dB":1569679200,"t1s":0,"t2s":2,"t1":58,"t2":59}],[4628,{"d":6,"dB":1569351600,"t1s":2,"t2s":1,"t1":59,"t2":64}],[5514,{"d":32,"dB":1594480500,"t1s":1,"t2s":2,"t1":121,"t2":123}],[5694,{"d":14,"dB":1575208800,"t1s":3,"t2s":0,"t1":121,"t2":124}],[7451,{"d":4,"dB":1602950400,"t1s":3,"t2s":0,"t1":120,"t2":121}],[3991,{"d":32,"dB":1593544500,"t1s":0,"t2s":3,"t1":45,"t2":31}],[4002,{"d":31,"dB":1593018000,"t1s":3,"t2s":0,"t1":31,"t2":77}],[4051,{"d":26,"dB":1581969600,"t1s":0,"t2s":2,"t1":25,"t2":31}],[4063,{"d":25,"dB":1580578200,"t1s":0,"t2s":0,"t1":31,"t2":69}],[4074,{"d":24,"dB":1579724100,"t1s":0,"t2s":2,"t1":31,"t2":23}],[4081,{"d":23,"dB":1579451400,"t1s":2,"t2s":0,"t1":21,"t2":31}],[4094,{"d":22,"dB":1578754800,"t1s":4,"t2s":0,"t1":31,"t2":76}],[4098,{"d":21,"dB":1577908800,"t1s":2,"t2s":0,"t1":39,"t2":31}],[4124,{"d":19,"dB":1577381400,"t1s":4,"t2s":1,"t1":31,"t2":46}],[4175,{"d":14,"dB":1575217800,"t1s":2,"t2s":2,"t1":31,"t2":78}],[4185,{"d":13,"dB":1574613000,"t1s":3,"t2s":3,"t1":77,"t2":31}],[4197,{"d":12,"dB":1573394400,"t1s":3,"t2s":1,"t1":31,"t2":45}],[3701,{"d":23,"dB":1580925600,"t1s":1,"t2s":1,"t1":68,"t2":19}],[5461,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":121,"t2":109}],[5650,{"d":18,"dB":1578223800,"t1s":1,"t2s":2,"t1":109,"t2":121}],[4380,{"d":31,"dB":1593106200,"t1s":1,"t2s":0,"t1":66,"t2":49}],[4392,{"d":30,"dB":1592674200,"t1s":1,"t2s":1,"t1":58,"t2":66}],[4400,{"d":29,"dB":1592415000,"t1s":2,"t2s":2,"t1":66,"t2":57}],[4421,{"d":27,"dB":1583582400,"t1s":1,"t2s":2,"t1":66,"t2":87}],[4429,{"d":26,"dB":1582977600,"t1s":3,"t2s":0,"t1":66,"t2":63}],[4450,{"d":24,"dB":1583866800,"t1s":1,"t2s":2,"t1":66,"t2":52}],[4509,{"d":18,"dB":1576872000,"t1s":3,"t2s":0,"t1":66,"t2":86}],[4519,{"d":17,"dB":1576344600,"t1s":0,"t2s":0,"t1":57,"t2":66}],[4529,{"d":16,"dB":1575802800,"t1s":0,"t2s":1,"t1":66,"t2":58}],[4545,{"d":15,"dB":1575126000,"t1s":4,"t2s":1,"t1":52,"t2":66}],[4562,{"d":13,"dB":1573320600,"t1s":0,"t2s":4,"t1":66,"t2":62}],[4571,{"d":12,"dB":1572802200,"t1s":1,"t2s":2,"t1":47,"t2":66}],[4581,{"d":11,"dB":1572544800,"t1s":2,"t2s":1,"t1":66,"t2":64}],[4595,{"d":10,"dB":1572107400,"t1s":2,"t2s":0,"t1":74,"t2":66}],[4613,{"d":8,"dB":1570215600,"t1s":1,"t2s":1,"t1":60,"t2":66}],[4621,{"d":7,"dB":1569758400,"t1s":2,"t2s":0,"t1":66,"t2":51}],[4630,{"d":6,"dB":1569517200,"t1s":3,"t2s":2,"t1":66,"t2":55}],[5507,{"d":33,"dB":1594842300,"t1s":0,"t2s":0,"t1":124,"t2":121}],[3937,{"d":38,"dB":1595775600,"t1s":1,"t2s":1,"t1":28,"t2":78}],[3938,{"d":37,"dB":1595358900,"t1s":1,"t2s":0,"t1":78,"t2":39}],[3952,{"d":36,"dB":1594918800,"t1s":1,"t2s":1,"t1":22,"t2":78}],[3958,{"d":35,"dB":1594559700,"t1s":2,"t2s":0,"t1":78,"t2":26}],[3969,{"d":34,"dB":1594322100,"t1s":0,"t2s":3,"t1":78,"t2":31}],[3981,{"d":33,"dB":1593963000,"t1s":2,"t2s":0,"t1":21,"t2":78}],[4022,{"d":29,"dB":1583784000,"t1s":4,"t2s":0,"t1":29,"t2":78}],[4046,{"d":27,"dB":1582383600,"t1s":2,"t2s":0,"t1":35,"t2":78}],[4049,{"d":26,"dB":1581861600,"t1s":2,"t2s":3,"t1":78,"t2":24}],[4058,{"d":25,"dB":1580569200,"t1s":2,"t2s":1,"t1":36,"t2":78}],[4068,{"d":24,"dB":1579635000,"t1s":2,"t2s":1,"t1":78,"t2":33}],[4079,{"d":23,"dB":1579359600,"t1s":1,"t2s":1,"t1":45,"t2":78}],[5618,{"d":21,"dB":1579895100,"t1s":0,"t2s":1,"t1":109,"t2":125}],[4312,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":47,"t2":62}],[4345,{"d":35,"dB":1594411200,"t1s":2,"t2s":0,"t1":62,"t2":48}],[4384,{"d":31,"dB":1593028800,"t1s":2,"t2s":0,"t1":62,"t2":87}],[4535,{"d":16,"dB":1575720000,"t1s":2,"t2s":0,"t1":62,"t2":56}],[4605,{"d":9,"dB":1571511600,"t1s":1,"t2s":0,"t1":87,"t2":62}],[7487,{"d":3,"dB":1601827200,"t1s":3,"t2s":0,"t1":125,"t2":141}],[3720,{"d":21,"dB":1580047200,"t1s":3,"t2s":0,"t1":18,"t2":10}],[5528,{"d":30,"dB":1593970200,"t1s":2,"t2s":0,"t1":109,"t2":126}],[5580,{"d":25,"dB":1582314300,"t1s":1,"t2s":2,"t1":109,"t2":111}],[5598,{"d":23,"dB":1581256800,"t1s":1,"t2s":1,"t1":109,"t2":124}],[3669,{"d":26,"dB":1582398000,"t1s":1,"t2s":1,"t1":7,"t2":13}],[3714,{"d":22,"dB":1580583600,"t1s":3,"t2s":1,"t1":67,"t2":13}],[3790,{"d":14,"dB":1574604000,"t1s":2,"t2s":1,"t1":3,"t2":13}],[4511,{"d":18,"dB":1577035800,"t1s":3,"t2s":1,"t1":63,"t2":51}],[4521,{"d":17,"dB":1576414800,"t1s":2,"t2s":2,"t1":51,"t2":87}],[4541,{"d":15,"dB":1575057600,"t1s":0,"t2s":0,"t1":51,"t2":74}],[4558,{"d":14,"dB":1574616600,"t1s":1,"t2s":3,"t1":64,"t2":51}],[4568,{"d":12,"dB":1572802200,"t1s":0,"t2s":1,"t1":51,"t2":58}],[4584,{"d":11,"dB":1572465600,"t1s":2,"t2s":1,"t1":60,"t2":51}],[4590,{"d":10,"dB":1572174000,"t1s":0,"t2s":1,"t1":51,"t2":52}],[4609,{"d":8,"dB":1570363200,"t1s":1,"t2s":0,"t1":51,"t2":57}],[4629,{"d":6,"dB":1569520800,"t1s":1,"t2s":1,"t1":51,"t2":56}],[3650,{"d":28,"dB":1583697600,"t1s":1,"t2s":0,"t1":12,"t2":18}],[3664,{"d":27,"dB":1583071200,"t1s":0,"t2s":1,"t1":8,"t2":12}],[3670,{"d":26,"dB":1582398000,"t1s":3,"t2s":0,"t1":12,"t2":10}],[3681,{"d":25,"dB":1581883200,"t1s":1,"t2s":2,"t1":12,"t2":9}],[3689,{"d":24,"dB":1581104700,"t1s":0,"t2s":2,"t1":16,"t2":12}],[3699,{"d":23,"dB":1580839200,"t1s":1,"t2s":0,"t1":12,"t2":20}],[3717,{"d":22,"dB":1580583600,"t1s":1,"t2s":2,"t1":41,"t2":12}],[3719,{"d":21,"dB":1580068800,"t1s":0,"t2s":2,"t1":12,"t2":2}],[3731,{"d":20,"dB":1578844800,"t1s":1,"t2s":0,"t1":7,"t2":12}],[3752,{"d":18,"dB":1576266300,"t1s":2,"t2s":1,"t1":12,"t2":15}],[3758,{"d":17,"dB":1575655200,"t1s":1,"t2s":0,"t1":12,"t2":75}],[3773,{"d":16,"dB":1575403500,"t1s":0,"t2s":1,"t1":18,"t2":12}],[3778,{"d":15,"dB":1575140400,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3799,{"d":13,"dB":1573326000,"t1s":0,"t2s":0,"t1":12,"t2":11}],[3812,{"d":12,"dB":1572712200,"t1s":2,"t2s":1,"t1":9,"t2":12}],[3819,{"d":11,"dB":1572103800,"t1s":3,"t2s":0,"t1":12,"t2":3}],[3837,{"d":10,"dB":1571508000,"t1s":2,"t2s":1,"t1":10,"t2":12}],[3841,{"d":9,"dB":1570366800,"t1s":2,"t2s":2,"t1":12,"t2":67}],[3854,{"d":8,"dB":1569693600,"t1s":1,"t2s":1,"t1":19,"t2":12}],[3861,{"d":7,"dB":1569430800,"t1s":2,"t2s":0,"t1":12,"t2":41}],[3743,{"d":19,"dB":1576957500,"t1s":3,"t2s":0,"t1":19,"t2":10}],[3776,{"d":16,"dB":1575482400,"t1s":4,"t2s":1,"t1":4,"t2":19}],[3814,{"d":12,"dB":1572796800,"t1s":2,"t2s":0,"t1":19,"t2":68}],[3834,{"d":10,"dB":1571424300,"t1s":1,"t2s":4,"t1":19,"t2":2}],[3843,{"d":9,"dB":1570298400,"t1s":1,"t2s":0,"t1":8,"t2":19}],[7454,{"d":4,"dB":1603036800,"t1s":3,"t2s":2,"t1":124,"t2":114}],[5616,{"d":22,"dB":1580586300,"t1s":4,"t2s":2,"t1":123,"t2":116}],[7458,{"d":3,"dB":1601750700,"t1s":0,"t2s":1,"t1":124,"t2":116}],[7471,{"d":1,"dB":1600541100,"t1s":0,"t2s":0,"t1":126,"t2":116}],[3930,{"d":38,"dB":1595775600,"t1s":2,"t2s":0,"t1":25,"t2":69}],[3999,{"d":31,"dB":1593112500,"t1s":2,"t2s":1,"t1":25,"t2":40}],[4020,{"d":29,"dB":1583676000,"t1s":4,"t2s":0,"t1":25,"t2":22}],[4029,{"d":28,"dB":1582988400,"t1s":2,"t2s":2,"t1":36,"t2":25}],[4061,{"d":25,"dB":1580560200,"t1s":2,"t2s":2,"t1":29,"t2":25}],[4120,{"d":19,"dB":1577372400,"t1s":0,"t2s":2,"t1":25,"t2":35}],[4169,{"d":14,"dB":1575126000,"t1s":0,"t2s":1,"t1":25,"t2":28}],[4241,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":25,"t2":45}],[4313,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":63,"t2":58}],[4333,{"d":36,"dB":1594566000,"t1s":1,"t2s":2,"t1":63,"t2":57}],[4343,{"d":35,"dB":1594315800,"t1s":2,"t2s":0,"t1":87,"t2":63}],[4353,{"d":34,"dB":1594056600,"t1s":1,"t2s":1,"t1":63,"t2":52}],[4366,{"d":33,"dB":1593633600,"t1s":0,"t2s":0,"t1":74,"t2":63}],[4374,{"d":32,"dB":1593345600,"t1s":4,"t2s":2,"t1":63,"t2":60}],[4391,{"d":30,"dB":1592654400,"t1s":1,"t2s":3,"t1":56,"t2":63}],[4402,{"d":29,"dB":1592242200,"t1s":1,"t2s":1,"t1":63,"t2":55}],[4417,{"d":28,"dB":1591992000,"t1s":1,"t2s":1,"t1":49,"t2":63}],[4443,{"d":25,"dB":1582401600,"t1s":1,"t2s":0,"t1":63,"t2":62}],[4457,{"d":24,"dB":1581787800,"t1s":2,"t2s":1,"t1":64,"t2":63}],[4463,{"d":23,"dB":1581163200,"t1s":2,"t2s":0,"t1":63,"t2":47}],[4483,{"d":21,"dB":1579896000,"t1s":2,"t2s":0,"t1":85,"t2":63}],[4492,{"d":20,"dB":1579348800,"t1s":0,"t2s":1,"t1":63,"t2":48}],[4532,{"d":16,"dB":1575739800,"t1s":2,"t2s":4,"t1":63,"t2":49}],[4543,{"d":15,"dB":1575221400,"t1s":4,"t2s":0,"t1":58,"t2":63}],[4552,{"d":14,"dB":1574452800,"t1s":2,"t2s":1,"t1":63,"t2":87}],[4559,{"d":13,"dB":1573390800,"t1s":2,"t2s":1,"t1":57,"t2":63}],[4586,{"d":11,"dB":1572458400,"t1s":1,"t2s":2,"t1":52,"t2":63}],[4593,{"d":10,"dB":1572188400,"t1s":0,"t2s":1,"t1":63,"t2":56}],[4607,{"d":9,"dB":1571598000,"t1s":1,"t2s":0,"t1":55,"t2":63}],[4625,{"d":7,"dB":1569774600,"t1s":1,"t2s":1,"t1":63,"t2":85}],[4633,{"d":6,"dB":1569348000,"t1s":3,"t2s":1,"t1":60,"t2":63}],[7179,{"d":4,"dB":1601494200,"t1s":1,"t2s":0,"t1":62,"t2":74}],[7188,{"d":3,"dB":1601146800,"t1s":2,"t2s":3,"t1":60,"t2":62}],[4165,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":35,"t2":76}],[4215,{"d":10,"dB":1572030000,"t1s":0,"t2s":9,"t1":35,"t2":29}],[4233,{"d":8,"dB":1570366800,"t1s":1,"t2s":4,"t1":35,"t2":25}],[3665,{"d":27,"dB":1582919100,"t1s":2,"t2s":3,"t1":67,"t2":9}],[3671,{"d":26,"dB":1582389000,"t1s":1,"t2s":3,"t1":9,"t2":8}],[3691,{"d":24,"dB":1581179400,"t1s":1,"t2s":0,"t1":9,"t2":10}],[3702,{"d":23,"dB":1580932800,"t1s":0,"t2s":2,"t1":4,"t2":9}],[3721,{"d":21,"dB":1579969800,"t1s":0,"t2s":0,"t1":9,"t2":16}],[3735,{"d":20,"dB":1578685500,"t1s":0,"t2s":1,"t1":20,"t2":9}],[3739,{"d":19,"dB":1576957500,"t1s":3,"t2s":1,"t1":9,"t2":67}],[3759,{"d":17,"dB":1575835200,"t1s":3,"t2s":1,"t1":9,"t2":3}],[3769,{"d":16,"dB":1575396000,"t1s":0,"t2s":2,"t1":16,"t2":9}],[3779,{"d":15,"dB":1575056700,"t1s":2,"t2s":1,"t1":9,"t2":75}],[3797,{"d":14,"dB":1574625600,"t1s":0,"t2s":2,"t1":10,"t2":9}],[3800,{"d":13,"dB":1573416000,"t1s":2,"t2s":1,"t1":9,"t2":18}],[3823,{"d":11,"dB":1572206400,"t1s":4,"t2s":0,"t1":2,"t2":9}],[3831,{"d":10,"dB":1571598000,"t1s":2,"t2s":0,"t1":9,"t2":41}],[3860,{"d":7,"dB":1569344400,"t1s":0,"t2s":0,"t1":7,"t2":9}],[6157,{"d":6,"dB":1601838000,"t1s":1,"t2s":1,"t1":18,"t2":9}],[6163,{"d":5,"dB":1601146800,"t1s":1,"t2s":1,"t1":9,"t2":11}],[6187,{"d":3,"dB":1600023600,"t1s":0,"t2s":1,"t1":2,"t2":9}],[6198,{"d":1,"dB":1600369200,"t1s":0,"t2s":2,"t1":9,"t2":4}],[5646,{"d":19,"dB":1578828600,"t1s":3,"t2s":0,"t1":124,"t2":123}],[7489,{"d":2,"dB":1601202600,"t1s":1,"t2s":4,"t1":141,"t2":123}],[5576,{"d":26,"dB":1583775000,"t1s":3,"t2s":0,"t1":123,"t2":109}],[5457,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":123,"t2":124}],[7493,{"d":1,"dB":1601481600,"t1s":0,"t2s":2,"t1":124,"t2":141}],[3649,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":7,"t2":10}],[3737,{"d":20,"dB":1578769200,"t1s":2,"t2s":5,"t1":10,"t2":75}],[3757,{"d":18,"dB":1576350000,"t1s":0,"t2s":1,"t1":10,"t2":68}],[3782,{"d":15,"dB":1575208800,"t1s":2,"t2s":1,"t1":8,"t2":10}],[3817,{"d":12,"dB":1572721200,"t1s":2,"t2s":3,"t1":10,"t2":18}],[3825,{"d":11,"dB":1572184800,"t1s":3,"t2s":2,"t1":20,"t2":10}],[3847,{"d":9,"dB":1570298400,"t1s":1,"t2s":3,"t1":10,"t2":3}],[3852,{"d":8,"dB":1569693600,"t1s":2,"t2s":2,"t1":11,"t2":10}],[3928,{"d":38,"dB":1595775600,"t1s":3,"t2s":2,"t1":39,"t2":33}],[3946,{"d":37,"dB":1595350800,"t1s":0,"t2s":4,"t1":33,"t2":40}],[3979,{"d":33,"dB":1593889200,"t1s":3,"t2s":0,"t1":25,"t2":33}],[3996,{"d":32,"dB":1593358200,"t1s":1,"t2s":3,"t1":33,"t2":35}],[4016,{"d":30,"dB":1592652600,"t1s":1,"t2s":1,"t1":33,"t2":29}],[4021,{"d":29,"dB":1583593200,"t1s":1,"t2s":0,"t1":26,"t2":33}],[4036,{"d":28,"dB":1582997400,"t1s":3,"t2s":0,"t1":33,"t2":21}],[4044,{"d":27,"dB":1582466400,"t1s":3,"t2s":0,"t1":31,"t2":33}],[4050,{"d":26,"dB":1581183000,"t1s":1,"t2s":1,"t1":45,"t2":33}],[4066,{"d":25,"dB":1580569200,"t1s":2,"t2s":3,"t1":33,"t2":22}],[4089,{"d":22,"dB":1578837600,"t1s":0,"t2s":3,"t1":36,"t2":33}],[4106,{"d":21,"dB":1577890800,"t1s":2,"t2s":1,"t1":33,"t2":69}],[4125,{"d":19,"dB":1577372400,"t1s":1,"t2s":1,"t1":77,"t2":33}],[4136,{"d":18,"dB":1577023200,"t1s":2,"t2s":0,"t1":33,"t2":31}],[4156,{"d":16,"dB":1575730800,"t1s":0,"t2s":0,"t1":33,"t2":26}],[4192,{"d":12,"dB":1573243200,"t1s":0,"t2s":2,"t1":76,"t2":33}],[4206,{"d":11,"dB":1572715800,"t1s":1,"t2s":2,"t1":33,"t2":25}],[4216,{"d":10,"dB":1572098400,"t1s":0,"t2s":0,"t1":33,"t2":36}],[4226,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":24,"t2":33}],[4234,{"d":8,"dB":1570284000,"t1s":0,"t2s":0,"t1":33,"t2":77}],[7467,{"d":2,"dB":1601211600,"t1s":1,"t2s":0,"t1":126,"t2":124}],[4116,{"d":20,"dB":1577545200,"t1s":3,"t2s":0,"t1":33,"t2":78}],[4143,{"d":17,"dB":1576326600,"t1s":2,"t2s":0,"t1":21,"t2":33}],[4160,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":29,"t2":33}],[4177,{"d":14,"dB":1575135000,"t1s":2,"t2s":1,"t1":35,"t2":33}],[4186,{"d":13,"dB":1574521200,"t1s":0,"t2s":3,"t1":33,"t2":23}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mlnstats.serie-a.20210406.json b/src/test/resources/__files/mlnstats.serie-a.20210406.json deleted file mode 100644 index 4a7ce0f..0000000 --- a/src/test/resources/__files/mlnstats.serie-a.20210406.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2021-04-04T03:32:24.072Z","mL":{"i":5,"n":"Serie A","cN":"Serie-A","aS":{"i":18,"n":"Serie A 2020-2021","cN":"Serie-A-2020-2021","mD":38,"cD":{"d":29,"lD":29,"p":0}},"lS":{"i":13,"n":"Serie A 2019-2020","cN":"Serie-A-2019-2020","mD":38}},"le":[[5,"Serie-A"],[1,"Ligue-1"],[4,"Ligue-2"],[3,"Liga"],[2,"Premier-League"]],"p":[[885,{"n":"de Roon","f":"Marten","fp":"MD","r":16,"c":119,"s":{"g":1,"s":139.5,"n":26,"a":5.37,"d":0.76,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.65,"Og":2,"Oao":1,"Os":208,"On":39,"Oa":5.33,"Od":0.87,"pm":39,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":4.5,"e":7271}],[28,{"n":5.5,"e":7283}],[27,{"n":5,"e":7701}],[26,{"n":6,"e":7292}],[24,{"n":5.5,"e":7303}],[23,{"n":4.5,"e":7313}],[22,{"n":5.5,"e":7320,"s":1}],[21,{"n":5,"e":7327}],[20,{"n":5,"e":7334}],[19,{"n":6.5,"e":7344}],[10,{"n":5,"e":7411}],[18,{"n":5,"e":7348}],[17,{"n":6,"e":7593}],[16,{"n":7,"e":7363}],[15,{"n":6,"e":7370}],[14,{"n":5.5,"e":7377}],[13,{"n":6,"e":7384}],[12,{"n":5.5,"e":7392}],[11,{"n":5.5,"e":7394}],[9,{"n":4.5,"e":7413}],[8,{"n":5,"e":7532}],[5,{"n":4,"e":7442}],[4,{"n":4,"e":7449}],[3,{"n":6,"e":7459}],[1,{"n":5,"e":7476,"s":1}],[2,{"n":6.5,"e":7463,"g":1}],[-38,{"n":5,"e":5448}],[-37,{"n":4.5,"e":5462}],[-36,{"n":5.5,"e":5473}],[-35,{"n":5,"e":5478}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":8,"e":5498,"g":1}],[-32,{"n":4,"e":5513}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":6,"e":5529}],[-29,{"n":6.5,"e":5538}],[-28,{"n":4,"e":5557,"s":1}],[-27,{"n":4.5,"e":5558,"a":1}],[-25,{"n":5.5,"e":5578}]],"fo":[[7442,[{"t":"I"}]],[7303,[{"t":"Y"}]],[7320,[{"t":"Y"}]],[7370,[{"t":"Y"}]],[7392,[{"t":"Y"}]],[7593,[{"t":"Y"}]],[7701,[{"t":"Y"}]]]}],[1610,{"n":"Muriel","f":"Luis","fp":"A","r":37,"c":119,"s":{"g":18,"s":152,"n":27,"a":5.63,"d":1.19,"Sg":3,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.47,"Og":23,"Os":217,"On":39,"Oa":5.56,"Od":1.16,"pa":39,"Smsn":6,"Omsn":6},"p":[[25,{"n":7,"e":7645,"g":1}],[7,{"n":5,"e":7427,"s":1}],[6,{"n":7,"e":7518,"g":2}],[-38,{"n":6,"e":5448,"s":1}],[-37,{"n":5,"e":5462,"s":1}],[-36,{"n":5,"e":5473,"s":1}],[-35,{"n":6.5,"e":5478,"g":1,"s":1}],[-34,{"n":4,"e":5497,"s":1}],[-32,{"n":4.5,"e":5513,"s":1}],[-31,{"n":6,"e":5518,"g":1,"s":1}],[-30,{"n":6,"e":5529,"g":1}],[29,{"n":7,"e":7271,"g":2}],[-29,{"n":4.5,"e":5538,"s":1}],[-28,{"n":8,"e":5557,"g":2,"s":1}],[28,{"n":4,"e":7283,"s":1}],[27,{"n":6.5,"e":7701,"g":1}],[-27,{"n":5,"e":5558,"s":1}],[26,{"n":4.5,"e":7292,"s":1}],[-25,{"n":4.5,"e":5578,"s":1}],[24,{"n":5,"e":7303}],[23,{"n":7.5,"e":7313,"g":1}],[22,{"n":6,"e":7320,"g":1,"s":1}],[21,{"n":6,"e":7327,"g":1}],[20,{"n":5.5,"e":7334,"s":1}],[19,{"n":4.5,"e":7344,"s":1}],[18,{"n":4.5,"e":7348,"s":1}],[17,{"n":7,"e":7593,"g":1,"s":1}],[16,{"n":6,"e":7363,"g":1}],[15,{"n":6,"e":7370,"g":1,"s":1}],[14,{"n":7,"e":7377,"g":2}],[13,{"n":7,"e":7384,"g":1,"s":1}],[12,{"n":4.5,"e":7392,"s":1}],[11,{"n":4,"e":7394,"s":1}],[10,{"n":6,"e":7411,"g":1}],[9,{"n":3.5,"e":7413,"s":1}],[4,{"n":4.5,"e":7449,"s":1}],[3,{"n":6,"e":7459,"g":1}],[2,{"n":6.5,"e":7463,"g":1}],[1,{"n":4,"e":7476,"s":1}]]}],[4248,{"n":"Pessina","f":"Matteo","fp":"MO","r":15,"c":119,"s":{"g":1,"s":113,"n":21,"a":5.38,"d":0.8,"Ss":46,"Sn":9,"Sa":5.11,"Sd":0.7,"Og":5,"Os":179.5,"On":33,"Oa":5.44,"Od":0.85,"pm":15,"pa":18,"Smsn":7,"Omsn":5.5},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":4,"e":5477}],[-35,{"n":6,"e":5486}],[-33,{"n":6.5,"e":5502,"g":1}],[-32,{"n":5,"e":5510}],[-31,{"n":5.5,"e":5527}],[-29,{"n":6.5,"e":5547,"g":1,"s":1}],[-28,{"n":7,"e":5556,"g":1}],[-27,{"n":5,"e":5567,"s":1}],[-26,{"n":5.5,"e":5575}],[-34,{"n":5.5,"e":5497,"g":1}],[29,{"n":6,"e":7271}],[28,{"n":4.5,"e":7283}],[27,{"n":5,"e":7701,"s":1}],[26,{"n":5.5,"e":7292}],[25,{"n":6,"e":7645}],[24,{"n":5,"e":7303,"s":1}],[23,{"n":5.5,"e":7313}],[22,{"n":4.5,"e":7320}],[21,{"n":4,"e":7327}],[19,{"n":6,"e":7344}],[17,{"n":5,"e":7593}],[16,{"n":5.5,"e":7363}],[15,{"n":7,"e":7370,"g":1}],[14,{"n":4.5,"e":7377}],[13,{"n":4.5,"e":7384}],[12,{"n":5.5,"e":7392}],[11,{"n":6,"e":7394}],[10,{"n":7,"e":7411}],[8,{"n":6,"e":7532}],[7,{"n":5,"e":7427,"s":1}],[6,{"n":5,"e":7518,"s":1}]],"fo":[[7363,[{"t":"Y"}]],[7532,[{"t":"Y"}]]],"a":{"m":14,"a":27,"M":31,"n":10}}],[4342,{"n":"Romero","f":"Cristian","fp":"DC","r":15,"c":119,"s":{"g":2,"s":123,"n":23,"a":5.35,"d":1.11,"Sg":1,"Ss":47,"Sn":9,"Sa":5.22,"Sd":1.12,"Og":3,"Os":168.5,"On":33,"Oa":5.11,"Od":1.21,"pd":33,"Smsn":7,"Omsn":6},"p":[[-37,{"n":2.5,"e":5464}],[-36,{"n":3.5,"e":5471}],[-35,{"n":5.5,"e":5484}],[-34,{"n":5,"e":5491}],[-30,{"n":4.5,"e":5537}],[-29,{"n":4,"e":5541}],[-28,{"n":6.5,"e":5548}],[-27,{"n":3,"e":5561}],[-26,{"n":5,"e":5572}],[-38,{"n":6,"e":5451,"g":1}],[29,{"n":4,"e":7271}],[28,{"n":6,"e":7283}],[27,{"n":5,"e":7701,"s":1}],[26,{"n":4.5,"e":7292}],[25,{"n":5,"e":7645}],[24,{"n":6,"e":7303}],[23,{"n":7,"e":7313,"g":1}],[22,{"n":6,"e":7320}],[21,{"n":3.5,"e":7327}],[19,{"n":8,"e":7344,"g":1}],[17,{"n":6.5,"e":7593}],[15,{"n":5.5,"e":7370}],[14,{"n":5,"e":7377}],[13,{"n":4,"e":7384}],[12,{"n":4.5,"e":7392}],[11,{"n":6,"e":7394}],[10,{"n":5,"e":7411}],[8,{"n":6,"e":7532}],[7,{"n":6,"e":7427}],[6,{"n":4.5,"e":7518}],[4,{"n":3.5,"e":7449}],[3,{"n":5.5,"e":7459}],[1,{"n":6,"e":7476,"s":1}]],"fo":[[7518,[{"t":"I"},{"t":"Y"}]],[7283,[{"t":"Y"}]],[7292,[{"t":"Y"}]],[7320,[{"t":"Y"}]],[7370,[{"t":"Y"}]],[7384,[{"t":"Y"}]],[7392,[{"t":"Y"}]],[7394,[{"t":"Y"}]],[7411,[{"t":"Y"}]]],"a":{"m":12,"a":14,"M":18,"n":8}}],[4450,{"n":"Gosens","f":"Robin","fp":"DL","r":30,"c":119,"s":{"g":9,"ao":1,"s":136,"n":24,"a":5.67,"d":1.33,"Ss":5,"Sn":1,"Sa":5,"Og":11,"Oao":1,"Os":201,"On":36,"Oa":5.58,"Od":1.23,"pd":5,"pm":31,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":4,"e":5448}],[-37,{"n":6,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":5,"e":5478}],[-34,{"n":4,"e":5497}],[-33,{"n":7,"e":5498}],[-31,{"n":5.5,"e":5518}],[-30,{"n":5,"e":5529,"s":1}],[-29,{"n":7,"e":5538,"g":1}],[29,{"n":5,"e":7271}],[-28,{"n":5,"e":5557,"s":1}],[27,{"n":5,"e":7701}],[-27,{"n":6.5,"e":5558,"g":1}],[26,{"n":4.5,"e":7292}],[-25,{"n":5,"e":5578}],[25,{"n":7,"e":7645,"g":1}],[24,{"n":7,"e":7303,"g":1}],[23,{"n":5.5,"e":7313,"g":1,"a":1}],[22,{"n":5,"e":7320}],[21,{"n":5.5,"e":7327,"g":1}],[19,{"n":7,"e":7344}],[18,{"n":5.5,"e":7348}],[17,{"n":5,"e":7593}],[16,{"n":8,"e":7363,"g":1}],[15,{"n":7,"e":7370,"g":1}],[14,{"n":4.5,"e":7377}],[13,{"n":7.5,"e":7384,"g":1}],[12,{"n":5,"e":7392}],[11,{"n":6.5,"e":7394,"g":1}],[10,{"n":5,"e":7411,"s":1}],[8,{"n":5,"e":7532}],[5,{"n":4.5,"e":7442,"s":1}],[4,{"n":2.5,"e":7449}],[3,{"n":6,"e":7459}],[2,{"n":4.5,"e":7463}],[1,{"n":8,"e":7476,"g":1}]],"fo":[[7313,[{"t":"Y"}]],[7344,[{"t":"Y"}]],[7348,[{"t":"Y"}]],[7377,[{"t":"Y"}]],[7449,[{"t":"Y"}]],[7532,[{"t":"Y"}]]],"a":{"m":31,"a":40,"M":45,"n":19}}],[4454,{"n":"Caldara","f":"Mattia","fp":"DC","r":5,"c":119,"s":{"s":24,"n":5,"a":4.8,"d":0.45,"Os":88.5,"On":17,"Oa":5.21,"Od":0.73,"pd":17},"p":[[-38,{"n":5,"e":5448}],[-37,{"n":5.5,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":5,"e":5498}],[-32,{"n":5,"e":5513,"s":1}],[-31,{"n":6,"e":5518}],[-30,{"n":6,"e":5529}],[-29,{"n":6,"e":5538}],[-28,{"n":4,"e":5557}],[-25,{"n":7,"e":5578}],[25,{"n":5,"e":7645,"s":1}],[20,{"n":5,"e":7334,"s":1}],[19,{"n":5,"e":7344,"s":1}],[16,{"n":5,"e":7363,"s":1}],[2,{"n":4,"e":7463}]]}],[4471,{"n":"Hateboer","f":"Hans","fp":"DL","r":7,"c":119,"s":{"g":2,"s":89,"n":17,"a":5.24,"d":0.85,"Og":2,"Os":146.5,"On":28,"Oa":5.23,"Od":0.71,"pd":5,"pm":23,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5,"e":5448,"s":1}],[-37,{"n":5.5,"e":5462,"s":1}],[-36,{"n":5,"e":5473}],[-34,{"n":4.5,"e":5497}],[-32,{"n":5,"e":5513}],[-31,{"n":6,"e":5518}],[-30,{"n":5.5,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":5,"e":5557}],[-27,{"n":6,"e":5558}],[-25,{"n":5,"e":5578}],[19,{"n":6,"e":7344}],[18,{"n":5,"e":7348}],[17,{"n":5.5,"e":7593}],[16,{"n":5.5,"e":7363}],[15,{"n":5.5,"e":7370}],[14,{"n":4.5,"e":7377}],[13,{"n":5,"e":7384}],[12,{"n":4,"e":7392}],[11,{"n":6.5,"e":7394}],[10,{"n":4.5,"e":7411}],[9,{"n":5,"e":7413}],[7,{"n":4.5,"e":7427}],[6,{"n":4.5,"e":7518}],[5,{"n":5,"e":7442,"s":1}],[3,{"n":4.5,"e":7459}],[2,{"n":6.5,"e":7463,"g":1}],[1,{"n":7,"e":7476,"g":1}]],"fo":[[7344,[{"t":"I"}]],[7518,[{"t":"I"},{"t":"Y"}]],[7370,[{"t":"Y"}]]]}],[4485,{"n":"Pasalic","f":"Mario","fp":"MO","r":12,"c":119,"s":{"g":4,"s":94.5,"n":18,"a":5.25,"d":1.17,"Sg":3,"Ss":53.5,"Sn":10,"Sa":5.35,"Sd":1.03,"Og":8,"Os":157,"On":30,"Oa":5.23,"Od":1.22,"pm":22,"pa":8,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4,"e":5448}],[-37,{"n":4,"e":5462}],[-36,{"n":4.5,"e":5473,"s":1}],[-35,{"n":4.5,"e":5478}],[-34,{"n":5.5,"e":5497}],[-33,{"n":8.5,"e":5498,"g":3}],[-32,{"n":5,"e":5513,"s":1}],[-31,{"n":5,"e":5518}],[-30,{"n":5.5,"e":5529}],[-29,{"n":7,"e":5538,"g":1}],[29,{"n":5,"e":7271,"s":1}],[-28,{"n":4,"e":5557}],[28,{"n":5,"e":7283,"s":1}],[27,{"n":8,"e":7701,"g":2}],[26,{"n":4.5,"e":7292,"s":1}],[25,{"n":5,"e":7645,"s":1}],[-25,{"n":5,"e":5578}],[24,{"n":5.5,"e":7303}],[23,{"n":5,"e":7313,"s":1}],[22,{"n":4.5,"e":7320}],[21,{"n":5,"e":7327,"s":1}],[20,{"n":6,"e":7334,"g":1,"s":1}],[8,{"n":5,"e":7532,"s":1}],[7,{"n":4,"e":7427}],[6,{"n":6,"e":7518}],[5,{"n":4.5,"e":7442}],[4,{"n":3.5,"e":7449}],[3,{"n":8,"e":7459,"g":1}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":5,"e":7476}]],"fo":[[7327,[{"t":"Y"}]],[7532,[{"t":"Y"}]]],"a":{"m":18,"a":25,"M":27,"n":5}}],[4507,{"n":"Gollini","f":"Pierluigi","fp":"G","r":7,"c":119,"s":{"s":92,"n":17,"a":5.41,"d":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Os":154.5,"On":28,"Oa":5.52,"Od":0.99,"pg":28},"p":[[-38,{"n":4,"e":5448}],[-37,{"n":5,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5478}],[-34,{"n":6.5,"e":5497}],[-32,{"n":6,"e":5513}],[-31,{"n":6.5,"e":5518}],[-29,{"n":7.5,"e":5538}],[29,{"n":4.5,"e":7271}],[28,{"n":6,"e":7283}],[-28,{"n":5,"e":5557}],[-27,{"n":5,"e":5558}],[-25,{"n":6,"e":5578}],[23,{"n":5,"e":7313}],[21,{"n":6,"e":7327}],[20,{"n":4.5,"e":7334}],[19,{"n":6,"e":7344}],[18,{"n":6,"e":7348}],[17,{"n":5,"e":7593}],[16,{"n":5,"e":7363}],[15,{"n":6,"e":7370}],[14,{"n":4,"e":7377}],[13,{"n":5.5,"e":7384}],[12,{"n":8,"e":7392}],[11,{"n":6,"e":7394}],[10,{"n":4.5,"e":7411}],[9,{"n":4,"e":7413}],[8,{"n":6,"e":7532}]],"fo":[[7413,[{"t":"I"}]]],"a":{"m":13,"a":14,"M":15,"n":8}}],[4611,{"n":"Zapata","f":"Duván","fp":"A","r":26,"c":119,"s":{"g":11,"s":149,"n":28,"a":5.32,"d":1.33,"Sg":2,"Ss":28,"Sn":5,"Sa":5.6,"Sd":0.89,"Og":18,"Os":220,"On":41,"Oa":5.37,"Od":1.27,"pa":41,"Smsn":5.5,"Omsn":5},"p":[[-38,{"n":3.5,"e":5448}],[-37,{"n":5.5,"e":5462}],[-36,{"n":6.5,"e":5473,"g":1}],[-35,{"n":5,"e":5478}],[-34,{"n":6.5,"e":5497,"g":1}],[-33,{"n":5,"e":5498,"g":1}],[-32,{"n":6,"e":5513,"g":1}],[-31,{"n":5.5,"e":5518}],[-30,{"n":4.5,"e":5529,"s":1}],[-29,{"n":5.5,"e":5538}],[29,{"n":6.5,"e":7271,"g":1}],[-28,{"n":6.5,"e":5557,"g":1}],[28,{"n":6.5,"e":7283,"g":1}],[-27,{"n":3.5,"e":5558}],[27,{"n":5.5,"e":7701,"s":1}],[26,{"n":4.5,"e":7292}],[-25,{"n":7.5,"e":5578,"g":2}],[25,{"n":5,"e":7645,"s":1}],[23,{"n":7,"e":7313,"g":1}],[22,{"n":5,"e":7320}],[21,{"n":4,"e":7327,"s":1}],[20,{"n":4,"e":7334}],[19,{"n":6.5,"e":7344,"g":1}],[18,{"n":3.5,"e":7348}],[17,{"n":6,"e":7593,"g":1}],[16,{"n":7,"e":7363,"g":1,"s":1}],[15,{"n":8,"e":7370,"g":2}],[14,{"n":4.5,"e":7377,"s":1}],[13,{"n":7,"e":7384,"g":1}],[12,{"n":4,"e":7392}],[11,{"n":7,"e":7394}],[10,{"n":4.5,"e":7411,"s":1}],[9,{"n":4,"e":7413}],[8,{"n":3.5,"e":7532}],[7,{"n":4.5,"e":7427}],[6,{"n":4,"e":7518,"s":1}],[5,{"n":5.5,"e":7442,"g":1,"s":1}],[4,{"n":3.5,"e":7449}],[3,{"n":7,"e":7459,"g":1}],[2,{"n":6,"e":7463}],[1,{"n":5,"e":7476}]],"a":{"m":33,"a":68,"M":87,"n":9}}],[4623,{"n":"Djimsiti","f":"Berat","fp":"DC","r":17,"c":119,"s":{"s":130.5,"n":24,"a":5.44,"d":0.86,"Ss":28,"Sn":5,"Sa":5.6,"Sd":0.96,"Og":1,"Os":192.5,"On":36,"Oa":5.35,"Od":0.88,"pd":36,"Omsn":7},"p":[[-38,{"n":3.5,"e":5448}],[-37,{"n":5.5,"e":5462,"s":1}],[-36,{"n":5,"e":5473}],[-35,{"n":5.5,"e":5478}],[-34,{"n":5,"e":5497}],[-33,{"n":5.5,"e":5498}],[-32,{"n":5.5,"e":5513}],[-31,{"n":4.5,"e":5518}],[-29,{"n":6,"e":5538}],[29,{"n":5,"e":7271,"s":1}],[-28,{"n":4,"e":5557}],[28,{"n":6,"e":7283}],[-27,{"n":5,"e":5558}],[27,{"n":4.5,"e":7701}],[26,{"n":5.5,"e":7292}],[-25,{"n":7,"e":5578,"g":1}],[25,{"n":7,"e":7645}],[23,{"n":5,"e":7313}],[22,{"n":6,"e":7320}],[21,{"n":5,"e":7327,"s":1}],[20,{"n":4,"e":7334}],[19,{"n":6.5,"e":7344}],[18,{"n":6,"e":7348}],[16,{"n":6,"e":7363}],[15,{"n":6,"e":7370}],[14,{"n":4.5,"e":7377}],[13,{"n":5,"e":7384}],[12,{"n":4.5,"e":7392}],[11,{"n":7.5,"e":7394}],[9,{"n":4.5,"e":7413}],[7,{"n":5.5,"e":7427}],[6,{"n":5.5,"e":7518}],[5,{"n":4.5,"e":7442}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":5.5,"e":7459}],[1,{"n":6,"e":7476}]],"fo":[[7313,[{"t":"Y"}]],[7377,[{"t":"Y"}]],[7427,[{"t":"Y"}]],[7449,[{"t":"Y"}]]],"a":{"m":16,"a":21,"M":23,"n":8}}],[4639,{"n":"Palomino","f":"José Luis","fp":"DC","r":14,"c":119,"s":{"g":1,"s":139.5,"n":28,"a":4.98,"d":1.08,"Sg":1,"Ss":111,"Sn":22,"Sa":5.05,"Sd":0.95,"Og":2,"Os":188,"On":37,"Oa":5.08,"Od":0.97,"pd":37,"Smsn":6.5,"Omsn":5.5},"p":[[-37,{"n":5,"e":5462}],[-35,{"n":6,"e":5478}],[-34,{"n":5,"e":5497}],[-32,{"n":5.5,"e":5513}],[-30,{"n":6,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[29,{"n":5,"e":7271}],[-28,{"n":5,"e":5557,"s":1}],[28,{"n":5.5,"e":7283}],[-27,{"n":5.5,"e":5558,"g":1}],[27,{"n":5,"e":7701}],[26,{"n":5,"e":7292,"s":1}],[-25,{"n":5.5,"e":5578}],[25,{"n":6.5,"e":7645,"g":1}],[24,{"n":6,"e":7303}],[23,{"n":5,"e":7313,"s":1}],[22,{"n":5.5,"e":7320}],[21,{"n":2.5,"e":7327}],[20,{"n":3.5,"e":7334}],[19,{"n":5,"e":7344,"s":1}],[18,{"n":5,"e":7348}],[17,{"n":5,"e":7593}],[16,{"n":6.5,"e":7363}],[15,{"n":6,"e":7370}],[14,{"n":4,"e":7377,"s":1}],[13,{"n":5.5,"e":7384,"s":1}],[12,{"n":4.5,"e":7392}],[11,{"n":5,"e":7394,"s":1}],[10,{"n":5,"e":7411}],[9,{"n":4,"e":7413}],[8,{"n":6,"e":7532}],[6,{"n":5,"e":7518,"s":1}],[5,{"n":3,"e":7442}],[4,{"n":3,"e":7449}],[3,{"n":7,"e":7459}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":5.5,"e":7476}]],"fo":[[7327,[{"t":"Y"}]],[7442,[{"t":"Y"}]],[7593,[{"t":"Y"}]]]}],[4641,{"n":"Freuler","f":"Remo","fp":"MD","r":16,"c":119,"s":{"g":1,"s":140.5,"n":25,"a":5.62,"d":0.85,"Ss":44,"Sn":8,"Sa":5.5,"Sd":0.65,"Og":1,"Os":196.5,"On":36,"Oa":5.46,"Od":0.83,"pm":35,"pa":1,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5448}],[-37,{"n":4,"e":5462}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5478}],[-34,{"n":4,"e":5497}],[-32,{"n":5.5,"e":5513}],[-31,{"n":5,"e":5518}],[-29,{"n":5.5,"e":5538}],[29,{"n":5.5,"e":7271}],[-28,{"n":5.5,"e":5557}],[28,{"n":6.5,"e":7283}],[-27,{"n":6,"e":5558}],[27,{"n":5,"e":7701}],[26,{"n":6,"e":7292}],[-25,{"n":5,"e":5578}],[25,{"n":4.5,"e":7645}],[24,{"n":5.5,"e":7303}],[23,{"n":5,"e":7313}],[22,{"n":6,"e":7320}],[20,{"n":5,"e":7334}],[19,{"n":6.5,"e":7344}],[18,{"n":5.5,"e":7348}],[17,{"n":6,"e":7593}],[16,{"n":6.5,"e":7363}],[15,{"n":8,"e":7370}],[14,{"n":4,"e":7377}],[13,{"n":6,"e":7384}],[12,{"n":6,"e":7392,"g":1}],[11,{"n":5,"e":7394}],[10,{"n":5,"e":7411,"s":1}],[9,{"n":4.5,"e":7413}],[7,{"n":5.5,"e":7427}],[6,{"n":6.5,"e":7518}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5.5,"e":7463}],[1,{"n":6,"e":7476}]],"fo":[[7303,[{"t":"Y"}]],[7411,[{"t":"Y"}]]],"a":{"m":16,"a":21,"M":23,"n":11}}],[4680,{"n":"Rossi","f":"Francesco","fp":"G","r":5,"c":119,"s":{"Os":4,"On":1,"Oa":4,"pg":1},"p":[[-33,{"n":4,"e":5498,"s":1}]]}],[4698,{"n":"Rafael Tolói","f":"","fp":"DC","r":14,"c":119,"s":{"g":2,"s":118.5,"n":24,"a":4.94,"d":1.13,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Og":3,"Os":172,"On":35,"Oa":4.91,"Od":1.12,"pd":35,"Smsn":7,"Omsn":7},"p":[[-38,{"n":3.5,"e":5448}],[-36,{"n":3.5,"e":5473}],[-35,{"n":5.5,"e":5478}],[-34,{"n":4.5,"e":5497}],[-32,{"n":5,"e":5513}],[-31,{"n":7.5,"e":5518,"g":1}],[-30,{"n":4.5,"e":5529,"s":1}],[-29,{"n":6,"e":5538}],[29,{"n":4.5,"e":7271}],[-28,{"n":5,"e":5557}],[28,{"n":5,"e":7283}],[-27,{"n":4,"e":5558}],[27,{"n":4.5,"e":7701}],[26,{"n":5,"e":7292}],[-25,{"n":4.5,"e":5578,"s":1}],[24,{"n":5.5,"e":7303}],[23,{"n":5,"e":7313}],[21,{"n":3,"e":7327}],[20,{"n":3.5,"e":7334}],[19,{"n":5.5,"e":7344}],[18,{"n":5.5,"e":7348}],[17,{"n":7,"e":7593,"g":1}],[16,{"n":5.5,"e":7363}],[14,{"n":4.5,"e":7377}],[13,{"n":5.5,"e":7384}],[11,{"n":7.5,"e":7394,"g":1}],[10,{"n":6,"e":7411}],[9,{"n":4,"e":7413}],[8,{"n":5.5,"e":7532}],[7,{"n":5,"e":7427}],[6,{"n":4,"e":7518}],[5,{"n":4,"e":7442,"s":1}],[4,{"n":2.5,"e":7449}],[2,{"n":5,"e":7463}],[1,{"n":5.5,"e":7476}]],"fo":[[7377,[{"t":"I"}]],[7283,[{"t":"Y"}]],[7303,[{"t":"Y"}]],[7327,[{"t":"Y"}]],[7413,[{"t":"Y"}]],[7449,[{"t":"Y"}]],[7518,[{"t":"Y"}]],[7701,[{"t":"Y"}]]]}],[4724,{"n":"Ilicic","f":"Josip","fp":"A","r":23,"c":119,"s":{"g":5,"s":124,"n":22,"a":5.64,"d":1.44,"Sg":1,"Ss":33.5,"Sn":6,"Sa":5.58,"Sd":1.36,"Og":5,"Os":148,"On":27,"Oa":5.48,"Od":1.34,"pm":10,"pa":17,"Smsn":6,"Omsn":6},"p":[[-32,{"n":4.5,"e":5513}],[-31,{"n":5,"e":5518}],[-30,{"n":5,"e":5529,"s":1}],[29,{"n":5,"e":7271,"s":1}],[-28,{"n":5,"e":5557,"s":1}],[28,{"n":5.5,"e":7283,"s":1}],[-27,{"n":4.5,"e":5558,"s":1}],[27,{"n":6,"e":7701}],[26,{"n":4,"e":7292,"s":1}],[25,{"n":8,"e":7645,"g":1}],[24,{"n":5,"e":7303,"s":1}],[22,{"n":5,"e":7320}],[21,{"n":6,"e":7327,"g":1}],[20,{"n":4,"e":7334}],[19,{"n":7.5,"e":7344,"g":1}],[18,{"n":4.5,"e":7348}],[17,{"n":9,"e":7593,"g":1}],[16,{"n":6,"e":7363}],[15,{"n":6,"e":7370}],[14,{"n":5.5,"e":7377}],[13,{"n":8,"e":7384,"g":1,"s":1}],[10,{"n":4.5,"e":7411,"s":1}],[9,{"n":4,"e":7413}],[8,{"n":5,"e":7532}],[6,{"n":6,"e":7518,"s":1}],[5,{"n":6,"e":7442}],[4,{"n":3.5,"e":7449}]],"fo":[[7320,[{"t":"Y"}]]],"a":{"m":20,"a":32,"M":55,"n":8}}],[4728,{"n":"Sportiello","f":"Marco","fp":"G","r":12,"c":119,"s":{"s":65,"n":13,"a":5,"d":0.76,"Os":80.5,"On":16,"Oa":5.03,"Od":0.72,"pg":16},"p":[[-38,{"n":4.5,"e":5448,"s":1}],[-33,{"n":5.5,"e":5498}],[-30,{"n":5.5,"e":5529}],[27,{"n":5.5,"e":7701}],[26,{"n":4,"e":7292}],[25,{"n":5,"e":7645}],[24,{"n":6,"e":7303}],[22,{"n":6,"e":7320}],[9,{"n":4,"e":7413,"s":1}],[7,{"n":5.5,"e":7427}],[6,{"n":4.5,"e":7518}],[5,{"n":4,"e":7442}],[4,{"n":5,"e":7449}],[3,{"n":4.5,"e":7459}],[2,{"n":5,"e":7463}],[1,{"n":6,"e":7476}]]}],[5322,{"n":"Radunovic","f":"Boris","fp":"G","r":3,"c":119,"s":{"Os":12.5,"On":3,"Oa":4.17,"Od":2.08,"pg":3},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":6.5,"e":5467}],[-36,{"n":2.5,"e":5477}]]}],[5962,{"n":"Malinovskiy","f":"Ruslan","fp":"MO","r":15,"c":119,"s":{"g":3,"s":145,"n":27,"a":5.37,"d":1.04,"Sg":3,"Ss":107,"Sn":20,"Sa":5.35,"Sd":1.03,"Og":7,"Os":214.5,"On":39,"Oa":5.5,"Od":1.15,"pm":22,"pa":17,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5.5,"e":5448,"s":1}],[-37,{"n":7,"e":5462,"g":1,"s":1}],[-36,{"n":3.5,"e":5473}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":4.5,"e":5497}],[-33,{"n":8,"e":5498,"g":1}],[-32,{"n":7,"e":5513,"g":1,"s":1}],[-31,{"n":5.5,"e":5518,"s":1}],[-30,{"n":7,"e":5529}],[29,{"n":6,"e":7271}],[-28,{"n":5,"e":5557}],[28,{"n":8,"e":7283,"g":1}],[-27,{"n":7,"e":5558,"g":1}],[27,{"n":5.5,"e":7701,"s":1}],[26,{"n":4,"e":7292}],[-25,{"n":4.5,"e":5578,"s":1}],[25,{"n":4.5,"e":7645}],[24,{"n":6.5,"e":7303,"g":1}],[23,{"n":5,"e":7313,"s":1}],[22,{"n":5,"e":7320,"s":1}],[21,{"n":5.5,"e":7327}],[20,{"n":4,"e":7334,"s":1}],[19,{"n":5,"e":7344,"s":1}],[18,{"n":5,"e":7348}],[17,{"n":6,"e":7593,"s":1}],[16,{"n":5,"e":7363,"s":1}],[15,{"n":4.5,"e":7370,"s":1}],[14,{"n":5,"e":7377,"s":1}],[13,{"n":5.5,"e":7384}],[12,{"n":4,"e":7392}],[11,{"n":7,"e":7394,"g":1}],[10,{"n":6,"e":7411}],[7,{"n":4.5,"e":7427}],[6,{"n":7,"e":7518}],[5,{"n":4,"e":7442,"s":1}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5.5,"e":7463,"s":1}],[1,{"n":7,"e":7476}]],"fo":[[7384,[{"t":"Y"}]],[7442,[{"t":"Y"}]]]}],[6519,{"n":"Sutalo","f":"Bosko","fp":"DC","r":5,"c":119,"s":{"s":34,"n":7,"a":4.86,"d":0.38,"Os":67.5,"On":14,"Oa":4.82,"Od":0.61,"pd":13,"pm":1},"p":[[-37,{"n":3,"e":5462}],[-36,{"n":5,"e":5473,"s":1}],[-35,{"n":5,"e":5478,"s":1}],[-33,{"n":5,"e":5498}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":5.5,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[23,{"n":5,"e":7313,"s":1}],[22,{"n":5,"e":7320}],[8,{"n":5,"e":7532,"s":1}],[6,{"n":5,"e":7518,"s":1}],[5,{"n":4,"e":7442}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":5,"e":7463}]]}],[6959,{"n":"Gelmi","f":"Ludovico","fp":"G","r":1,"c":119}],[6981,{"n":"Cortinovis","f":"Alessandro","fp":"MO","r":1,"c":119}],[7170,{"n":"Miranchuk","f":"Aleksey","fp":"MO","r":12,"c":119,"s":{"g":2,"s":99,"n":19,"a":5.21,"d":0.61,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":2,"Os":99,"On":19,"Oa":5.21,"Od":0.61,"pm":17,"pa":2,"Smsn":6,"Omsn":6},"p":[[29,{"n":5,"e":7271,"s":1}],[28,{"n":5.5,"e":7283}],[26,{"n":5.5,"e":7292,"s":1}],[25,{"n":6,"e":7645,"g":1,"s":1}],[24,{"n":4.5,"e":7303,"s":1}],[23,{"n":5,"e":7313,"s":1}],[22,{"n":6,"e":7320,"s":1}],[21,{"n":5.5,"e":7327,"s":1}],[20,{"n":4.5,"e":7334}],[18,{"n":5,"e":7348,"s":1}],[17,{"n":5,"e":7593,"s":1}],[16,{"n":5,"e":7363,"s":1}],[15,{"n":5,"e":7370,"s":1}],[14,{"n":5,"e":7377,"s":1}],[13,{"n":5,"e":7384,"s":1}],[12,{"n":5,"e":7392,"s":1}],[10,{"n":4.5,"e":7411}],[8,{"n":5,"e":7532,"s":1}],[7,{"n":7,"e":7427,"g":1,"s":1}]]}],[7333,{"n":"Lammers","f":"Sam","fp":"A","r":3,"c":119,"s":{"g":2,"s":54.5,"n":12,"a":4.54,"d":0.81,"Og":2,"Os":54.5,"On":12,"Oa":4.54,"Od":0.81,"pa":12,"Smsn":6,"Omsn":6},"p":[[21,{"n":4.5,"e":7327,"s":1}],[20,{"n":4.5,"e":7334,"s":1}],[18,{"n":4.5,"e":7348,"s":1}],[11,{"n":4.5,"e":7394,"s":1}],[9,{"n":4,"e":7413,"s":1}],[8,{"n":4.5,"e":7532,"s":1}],[7,{"n":4.5,"e":7427,"s":1}],[5,{"n":3,"e":7442}],[4,{"n":6,"e":7449,"g":1,"s":1}],[3,{"n":6,"e":7459,"g":1,"s":1}],[2,{"n":4.5,"e":7463,"s":1}],[1,{"n":4,"e":7476,"s":1}]]}],[7345,{"n":"Ruggeri","f":"Matteo","fp":"DL","r":5,"c":119,"s":{"s":28,"n":6,"a":4.67,"d":0.41,"Os":28,"On":6,"Oa":4.67,"Od":0.41,"pd":3,"pm":3},"p":[[27,{"n":5,"e":7701,"s":1}],[21,{"n":4,"e":7327}],[20,{"n":4.5,"e":7334}],[15,{"n":5,"e":7370,"s":1}],[9,{"n":5,"e":7413,"s":1}],[7,{"n":4.5,"e":7427}]]}],[7503,{"n":"Scalvini","f":"Giorgio","fp":"DC","r":1,"c":119}],[7554,{"n":"Panada","f":"Simone","fp":"MD","r":1,"c":119}],[7557,{"n":"Gyabuaa","f":"Emmanuel","fp":"MD","r":1,"c":119}],[7614,{"n":"Maehle","f":"Joakim","fp":"DL","r":11,"c":119,"s":{"s":53.5,"n":11,"a":4.86,"d":0.71,"Ss":40.5,"Sn":8,"Sa":5.06,"Sd":0.42,"Os":53.5,"On":11,"Oa":4.86,"Od":0.71,"pd":4,"pm":7},"p":[[29,{"n":4.5,"e":7271,"s":1}],[28,{"n":5,"e":7283,"s":1}],[27,{"n":5,"e":7701}],[26,{"n":5,"e":7292}],[25,{"n":5,"e":7645}],[24,{"n":6,"e":7303}],[23,{"n":5,"e":7313}],[22,{"n":5,"e":7320,"s":1}],[20,{"n":3,"e":7334}],[19,{"n":5,"e":7344,"s":1}],[10,{"n":5,"e":7411}]]}],[7678,{"n":"Kovalenko","f":"Viktor","fp":"MO","r":1,"c":119,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[28,{"n":5,"e":7283,"s":1}]]}],[7729,{"n":"Ghislandi","f":"Davide","fp":"DL","r":3,"c":119,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[25,{"n":5,"e":7645,"s":1}]]}],[50,{"n":"Glik","f":"Kamil","fp":"DC","r":11,"c":140,"s":{"g":1,"ao":1,"s":125.5,"n":27,"a":4.65,"d":1.18,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":1,"Oao":1,"Os":129.5,"On":28,"Oa":4.63,"Od":1.17,"pd":28,"Smsn":6,"Omsn":6},"p":[[29,{"n":6,"e":8253,"g":1}],[27,{"n":3.5,"e":7702}],[26,{"n":5.5,"e":7651}],[25,{"n":3.5,"e":7646}],[23,{"n":4,"e":7631}],[22,{"n":6.5,"e":7622}],[21,{"n":5.5,"e":7617}],[20,{"n":3,"e":7609}],[19,{"n":4,"e":7604}],[18,{"n":3,"e":7597,"a":1}],[16,{"n":5.5,"e":7581}],[15,{"n":5.5,"e":7577}],[14,{"n":6.5,"e":7570}],[13,{"n":6,"e":7565}],[12,{"n":5.5,"e":7558}],[11,{"n":5,"e":7551}],[10,{"n":4.5,"e":7545}],[9,{"n":5.5,"e":7537}],[8,{"n":5,"e":7533}],[7,{"n":3.5,"e":7525}],[6,{"n":3.5,"e":7520}],[5,{"n":4.5,"e":7507}],[4,{"n":3,"e":7503}],[3,{"n":6,"e":7486}],[1,{"n":2.5,"e":7492}],[2,{"n":5,"e":7488}],[-28,{"n":4,"e":3653}],[17,{"n":4,"e":7593}]],"fo":[[7507,[{"t":"Y"}]],[7533,[{"t":"Y"}]],[7537,[{"t":"Y"}]],[7604,[{"t":"Y"}]],[7631,[{"t":"Y"},{"t":"O"}]],[7702,[{"t":"Y"}]]]}],[258,{"n":"Dabo","f":"Bryan","fp":"MD","r":8,"c":140,"s":{"s":83.5,"n":18,"a":4.64,"d":0.48,"Og":1,"Os":140.5,"On":30,"Oa":4.68,"Od":0.84,"pm":30,"Omsn":6},"p":[[28,{"n":5,"e":8248,"s":1}],[-38,{"n":5,"e":5456}],[-36,{"n":6,"e":5476}],[-35,{"n":2.5,"e":5483}],[-34,{"n":6,"e":5488,"g":1}],[-33,{"n":4,"e":5503}],[-32,{"n":4.5,"e":5511}],[-31,{"n":4.5,"e":5525,"s":1}],[-30,{"n":4,"e":5535}],[-29,{"n":7,"e":5545}],[-28,{"n":5,"e":5553,"s":1}],[-27,{"n":5,"e":5565,"s":1}],[-37,{"n":3.5,"e":5467}],[26,{"n":5,"e":7651,"s":1}],[22,{"n":4.5,"e":7622,"s":1}],[19,{"n":4.5,"e":7604,"s":1}],[18,{"n":4,"e":7597}],[17,{"n":4,"e":7593}],[16,{"n":5,"e":7581,"s":1}],[14,{"n":4,"e":7570,"s":1}],[12,{"n":4.5,"e":7558,"s":1}],[11,{"n":5,"e":7551,"s":1}],[10,{"n":5,"e":7545,"s":1}],[7,{"n":4,"e":7525}],[6,{"n":5,"e":7520}],[5,{"n":5,"e":7507}],[4,{"n":4.5,"e":7503}],[3,{"n":5.5,"e":7486,"s":1}],[2,{"n":5,"e":7488}],[1,{"n":4,"e":7492}]],"fo":[[7551,[{"t":"Y"}]],[7593,[{"t":"Y"}]],[7597,[{"t":"Y"}]],[7651,[{"t":"Y"}]]]}],[3598,{"n":"Barba","f":"Federico","fp":"DC","r":11,"c":140,"s":{"s":108.5,"n":23,"a":4.72,"d":0.85,"Ss":19,"Sn":4,"Sa":4.75,"Sd":1.26,"Os":108.5,"On":23,"Oa":4.72,"Od":0.85,"pd":23},"p":[[24,{"n":4.5,"e":7639}],[29,{"n":5,"e":8253}],[28,{"n":6,"e":8248}],[27,{"n":3,"e":7702}],[26,{"n":5,"e":7651}],[23,{"n":6,"e":7631}],[22,{"n":5,"e":7622}],[21,{"n":5,"e":7617}],[20,{"n":3.5,"e":7609}],[19,{"n":4.5,"e":7604}],[18,{"n":3,"e":7597}],[17,{"n":3,"e":7593}],[16,{"n":5,"e":7581}],[15,{"n":5,"e":7577}],[14,{"n":5,"e":7570}],[13,{"n":5.5,"e":7565}],[12,{"n":4.5,"e":7558}],[11,{"n":5,"e":7551}],[10,{"n":5,"e":7545}],[9,{"n":5,"e":7537}],[8,{"n":5.5,"e":7533}],[7,{"n":5,"e":7525,"s":1}],[1,{"n":4.5,"e":7492}]],"fo":[[7622,[{"t":"I"}]],[7537,[{"t":"Y"}]],[7545,[{"t":"Y"}]],[7551,[{"t":"Y"}]],[7597,[{"t":"Y"}]],[7639,[{"t":"Y"}]],[7651,[{"t":"Y"}]],[8248,[{"t":"Y"}]]]}],[4340,{"n":"Depaoli","f":"Fabio","fp":"DL","r":9,"c":140,"s":{"s":59,"n":14,"a":4.21,"d":0.78,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":133.5,"On":28,"Oa":4.77,"Od":1.01,"pd":14,"pm":14},"p":[[1,{"n":4.5,"e":7474}],[-38,{"n":5,"e":5450}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-34,{"n":4.5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":6.5,"e":5517}],[-29,{"n":6.5,"e":5543}],[-28,{"n":5,"e":5555}],[-27,{"n":5.5,"e":5564}],[-25,{"n":4.5,"e":5583,"s":1}],[-35,{"n":5.5,"e":5484,"s":1}],[-31,{"n":5,"e":5518}],[-30,{"n":5,"e":5535,"s":1}],[29,{"n":4.5,"e":8253}],[-26,{"n":7,"e":5575}],[25,{"n":3.5,"e":7646}],[24,{"n":4,"e":7639}],[23,{"n":5,"e":7631}],[22,{"n":4.5,"e":7622}],[21,{"n":5,"e":7617}],[20,{"n":2.5,"e":7609}],[17,{"n":5,"e":7593,"s":1}],[15,{"n":4.5,"e":7370,"s":1}],[8,{"n":5,"e":7532}],[5,{"n":4,"e":7442}],[4,{"n":3,"e":7449}],[2,{"n":4,"e":7488,"s":1}]],"fo":[[7532,[{"t":"I"}]],[7609,[{"t":"Y"}]],[7617,[{"t":"Y"}]]]}],[4625,{"n":"Caprari","f":"Gianluca","fp":"A","r":15,"c":140,"s":{"g":5,"s":132.5,"n":25,"a":5.3,"d":1.26,"Ss":20,"Sn":4,"Sa":5,"Sd":1.15,"Og":7,"Os":184,"On":35,"Oa":5.26,"Od":1.15,"pm":15,"pa":20,"Smsn":6,"Omsn":6},"p":[[-38,{"n":7,"e":5453,"g":1}],[-36,{"n":5.5,"e":5469}],[-35,{"n":6,"e":5482,"g":1}],[-33,{"n":4.5,"e":5501,"s":1}],[-31,{"n":5,"e":5524,"s":1}],[-25,{"n":4.5,"e":5586,"s":1}],[-26,{"n":4.5,"e":5574,"s":1}],[-37,{"n":5.5,"e":5462}],[-34,{"n":5,"e":5495}],[-29,{"n":4,"e":5547}],[29,{"n":6,"e":8253,"s":1}],[28,{"n":4,"e":8248,"s":1}],[27,{"n":6,"e":7702}],[26,{"n":4,"e":7651}],[24,{"n":4.5,"e":7639}],[23,{"n":6,"e":7631}],[22,{"n":5,"e":7622}],[21,{"n":7,"e":7617,"g":1}],[20,{"n":3,"e":7609}],[19,{"n":4.5,"e":7604}],[18,{"n":4,"e":7597,"s":1}],[16,{"n":4.5,"e":7581,"s":1}],[15,{"n":3.5,"e":7577}],[14,{"n":8,"e":7570,"g":1}],[13,{"n":7,"e":7565}],[12,{"n":5,"e":7558}],[11,{"n":6,"e":7551}],[10,{"n":4.5,"e":7545}],[9,{"n":5.5,"e":7537}],[6,{"n":5.5,"e":7520}],[5,{"n":5,"e":7507}],[4,{"n":6,"e":7503,"g":1}],[3,{"n":4.5,"e":7486}],[2,{"n":6,"e":7488}],[1,{"n":7.5,"e":7492,"g":2}]],"fo":[[7507,[{"t":"Y"}]],[7565,[{"t":"Y"}]],[7581,[{"t":"Y"}]]],"a":{"m":16,"a":25,"M":29,"n":6}}],[4663,{"n":"Lapadula","f":"Gianluca","fp":"A","r":12,"c":140,"s":{"g":4,"s":133,"n":28,"a":4.75,"d":0.97,"Ss":13.5,"Sn":3,"Sa":4.5,"Og":8,"Os":166,"On":34,"Oa":4.88,"Od":1.04,"pa":34,"Smsn":4.5,"Omsn":4.5},"p":[[-37,{"n":6,"e":5466,"g":1}],[-36,{"n":4.5,"e":5468}],[-35,{"n":7.5,"e":5481,"g":2}],[-27,{"n":4,"e":5563}],[-38,{"n":6,"e":5453,"g":1}],[-34,{"n":5,"e":5491,"s":1}],[29,{"n":4.5,"e":8253}],[28,{"n":4.5,"e":8248}],[27,{"n":4.5,"e":7702,"s":1}],[25,{"n":3,"e":7646}],[24,{"n":4,"e":7639}],[23,{"n":5.5,"e":7631}],[22,{"n":5,"e":7622}],[21,{"n":5,"e":7617}],[20,{"n":3,"e":7609}],[19,{"n":7,"e":7604,"g":1}],[18,{"n":4,"e":7597}],[17,{"n":4,"e":7593}],[16,{"n":5,"e":7581}],[15,{"n":5,"e":7577}],[14,{"n":5,"e":7570}],[13,{"n":5,"e":7565}],[12,{"n":4,"e":7558}],[11,{"n":4.5,"e":7551}],[10,{"n":5,"e":7545}],[9,{"n":4,"e":7537}],[8,{"n":5,"e":7533,"s":1}],[7,{"n":4,"e":7525}],[6,{"n":7,"e":7520,"g":1}],[5,{"n":5,"e":7507}],[4,{"n":4.5,"e":7503,"g":1}],[3,{"n":6.5,"e":7486,"g":1,"s":1}],[2,{"n":4,"e":7488,"s":1}],[1,{"n":5.5,"e":7492,"s":1}]],"fo":[[7558,[{"t":"Y"}]],[7593,[{"t":"Y"}]]],"a":{"m":14,"a":18,"M":19,"n":10}}],[4703,{"n":"Ionita","f":"Artur","fp":"MO","r":11,"c":140,"s":{"g":2,"s":131.5,"n":28,"a":4.7,"d":0.96,"Sg":2,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":1.07,"Og":2,"Os":189,"On":40,"Oa":4.72,"Od":0.96,"pm":39,"pa":1,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4,"e":5454}],[-37,{"n":6,"e":5458}],[-36,{"n":5,"e":5470}],[-35,{"n":6,"e":5480}],[-32,{"n":6,"e":5509}],[-31,{"n":5,"e":5520,"s":1}],[-29,{"n":5,"e":5539,"s":1}],[-28,{"n":4.5,"e":5549,"s":1}],[-25,{"n":4,"e":5587}],[-33,{"n":2.5,"e":5504}],[-30,{"n":5,"e":5529}],[29,{"n":6.5,"e":8253,"g":1}],[28,{"n":5.5,"e":8248}],[-27,{"n":4.5,"e":5565}],[27,{"n":6,"e":7702,"g":1}],[26,{"n":4.5,"e":7651}],[25,{"n":3.5,"e":7646}],[24,{"n":4.5,"e":7639}],[23,{"n":6,"e":7631}],[21,{"n":5,"e":7617}],[20,{"n":3.5,"e":7609}],[19,{"n":5,"e":7604}],[18,{"n":3.5,"e":7597}],[17,{"n":3.5,"e":7593}],[16,{"n":5.5,"e":7581}],[15,{"n":4.5,"e":7577}],[14,{"n":5,"e":7570}],[13,{"n":6,"e":7565}],[12,{"n":4.5,"e":7558}],[11,{"n":5,"e":7551}],[10,{"n":5,"e":7545}],[9,{"n":5,"e":7537}],[8,{"n":6,"e":7533}],[7,{"n":3,"e":7525}],[6,{"n":3.5,"e":7520}],[5,{"n":4,"e":7507}],[4,{"n":4,"e":7503}],[3,{"n":5,"e":7486}],[2,{"n":5,"e":7488}],[1,{"n":3.5,"e":7492}]],"fo":[[7537,[{"t":"I"}]],[7604,[{"t":"I"}]],[7545,[{"t":"Y"}]],[7551,[{"t":"Y"}]],[7597,[{"t":"Y"}]],[7617,[{"t":"Y"}]]]}],[4739,{"n":"Falque","f":"Iago","fp":"MO","r":7,"c":140,"s":{"g":1,"s":35,"n":7,"a":5,"d":0.91,"Og":3,"Os":83,"On":16,"Oa":5.19,"Od":0.85,"pm":9,"pa":7,"Smsn":6.5,"Omsn":5.5},"p":[[-33,{"n":5,"e":5506}],[-31,{"n":5,"e":5521,"s":1}],[-37,{"n":5,"e":5464,"s":1}],[-35,{"n":5.5,"e":5484}],[-34,{"n":5,"e":5491}],[-32,{"n":6,"e":5511}],[-30,{"n":4,"e":5537}],[-28,{"n":7,"e":5548,"g":1}],[-27,{"n":5.5,"e":5561,"g":1,"s":1}],[22,{"n":5.5,"e":7622}],[19,{"n":4.5,"e":7604,"s":1}],[18,{"n":6.5,"e":7597,"g":1,"s":1}],[12,{"n":5,"e":7558,"s":1}],[11,{"n":5,"e":7551,"s":1}],[4,{"n":3.5,"e":7503}],[3,{"n":5,"e":7486}]]}],[4773,{"n":"Sau","f":"Marco","fp":"A","r":9,"c":140,"s":{"g":3,"s":100,"n":21,"a":4.76,"d":0.94,"Og":3,"Os":100,"On":21,"Oa":4.76,"Od":0.94,"pm":6,"pa":15,"Smsn":6,"Omsn":6},"p":[[27,{"n":4.5,"e":7702,"s":1}],[26,{"n":4,"e":7651,"s":1}],[25,{"n":3.5,"e":7646}],[24,{"n":4.5,"e":7639,"s":1}],[22,{"n":4.5,"e":7622,"s":1}],[21,{"n":4.5,"e":7617,"s":1}],[18,{"n":3.5,"e":7597}],[17,{"n":6.5,"e":7593,"g":1}],[16,{"n":7,"e":7581,"g":1}],[15,{"n":5,"e":7577,"s":1}],[14,{"n":4.5,"e":7570,"s":1}],[13,{"n":6,"e":7565,"g":1,"s":1}],[11,{"n":4.5,"e":7551,"s":1}],[10,{"n":5,"e":7545,"s":1}],[9,{"n":4.5,"e":7537,"s":1}],[8,{"n":5,"e":7533}],[7,{"n":3,"e":7525}],[5,{"n":5,"e":7507,"s":1}],[4,{"n":4.5,"e":7503,"s":1}],[3,{"n":5.5,"e":7486,"s":1}],[2,{"n":5,"e":7488,"s":1}]],"fo":[[7597,[{"t":"R"}]],[7651,[{"t":"Y"}]]],"a":{"m":12,"a":16,"M":21,"n":5}}],[4775,{"n":"Schiattarella","f":"Pasquale","fp":"MD","r":11,"c":140,"s":{"g":1,"s":114,"n":23,"a":4.96,"d":1.08,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":114,"On":23,"Oa":4.96,"Od":1.08,"pm":23,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":4.5,"e":8253}],[27,{"n":2.5,"e":7702}],[25,{"n":4.5,"e":7646}],[24,{"n":3.5,"e":7639}],[23,{"n":4,"e":7631}],[22,{"n":5,"e":7622}],[21,{"n":5.5,"e":7617}],[20,{"n":5,"e":7609,"s":1}],[17,{"n":4,"e":7593}],[16,{"n":7,"e":7581}],[15,{"n":6,"e":7577}],[14,{"n":6,"e":7570}],[12,{"n":6.5,"e":7558,"g":1}],[11,{"n":5.5,"e":7551}],[9,{"n":6,"e":7537}],[8,{"n":6,"e":7533}],[7,{"n":3.5,"e":7525}],[6,{"n":4.5,"e":7520}],[5,{"n":5.5,"e":7507}],[4,{"n":4.5,"e":7503}],[3,{"n":5.5,"e":7486}],[2,{"n":4.5,"e":7488}],[1,{"n":4.5,"e":7492}]],"fo":[[7558,[{"t":"R"}]],[7537,[{"t":"Y"}]],[7577,[{"t":"Y"}]],[7581,[{"t":"Y"}]],[7622,[{"t":"Y"}]],[7631,[{"t":"Y"}]],[7702,[{"t":"Y"}]]]}],[6176,{"n":"Moncini","f":"Gabriele","fp":"A","r":8,"c":140,"s":{"s":45,"n":10,"a":4.5,"d":0.33,"Os":45,"On":10,"Oa":4.5,"Od":0.33,"pa":10},"p":[[26,{"n":4.5,"e":7651,"s":1}],[24,{"n":4.5,"e":7639,"s":1}],[23,{"n":4.5,"e":7631,"s":1}],[15,{"n":5,"e":7577,"s":1}],[8,{"n":4,"e":7533}],[7,{"n":4.5,"e":7525,"s":1}],[6,{"n":4.5,"e":7520,"s":1}],[3,{"n":4.5,"e":7486}],[2,{"n":5,"e":7488}],[1,{"n":4,"e":7492}]]}],[6946,{"n":"Pastina","f":"Christian","fp":"DC","r":3,"c":140,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pd":2},"p":[[20,{"n":4,"e":7609,"s":1}],[17,{"n":5,"e":7593,"s":1}]]}],[6947,{"n":"Di Serio","f":"Giuseppe","fp":"A","r":5,"c":140,"s":{"s":58,"n":13,"a":4.46,"d":0.32,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Os":58,"On":13,"Oa":4.46,"Od":0.32,"pa":13},"p":[[29,{"n":4.5,"e":8253,"s":1}],[28,{"n":4,"e":8248,"s":1}],[21,{"n":4,"e":7617,"s":1}],[19,{"n":4.5,"e":7604,"s":1}],[18,{"n":4.5,"e":7597,"s":1}],[17,{"n":4,"e":7593,"s":1}],[16,{"n":4.5,"e":7581,"s":1}],[15,{"n":4.5,"e":7577,"s":1}],[14,{"n":5,"e":7570,"s":1}],[13,{"n":4.5,"e":7565,"s":1}],[12,{"n":5,"e":7558,"s":1}],[10,{"n":4.5,"e":7545,"s":1}],[5,{"n":4.5,"e":7507,"s":1}]],"fo":[[8253,[{"t":"Y"}]]]}],[6960,{"n":"Sanogo","f":"Siriki","fp":"MD","r":1,"c":140}],[7001,{"n":"Tello","f":"Andrés","fp":"MD","r":9,"c":140,"s":{"s":69,"n":14,"a":4.93,"d":0.27,"Os":69,"On":14,"Oa":4.93,"Od":0.27,"pm":14},"p":[[28,{"n":4.5,"e":8248,"s":1}],[27,{"n":5,"e":7702,"s":1}],[26,{"n":5,"e":7651}],[23,{"n":5,"e":7631,"s":1}],[20,{"n":5,"e":7609,"s":1}],[19,{"n":5,"e":7604}],[18,{"n":4.5,"e":7597,"s":1}],[14,{"n":5,"e":7570,"s":1}],[13,{"n":5.5,"e":7565,"s":1}],[10,{"n":5,"e":7545,"s":1}],[9,{"n":5,"e":7537,"s":1}],[8,{"n":5,"e":7533,"s":1}],[7,{"n":5,"e":7525,"s":1}],[6,{"n":4.5,"e":7520,"s":1}]],"fo":[[7545,[{"t":"Y"}]],[8248,[{"t":"Y"}]]]}],[7011,{"n":"Montipò","f":"Lorenzo","fp":"G","r":13,"c":140,"s":{"s":144,"n":29,"a":4.97,"d":1.55,"Ss":144,"Sn":29,"Sa":4.97,"Sd":1.55,"Os":144,"On":29,"Oa":4.97,"Od":1.55,"pg":29},"p":[[29,{"n":6,"e":8253}],[28,{"n":8.5,"e":8248}],[27,{"n":2.5,"e":7702}],[26,{"n":5,"e":7651}],[25,{"n":3.5,"e":7646}],[24,{"n":5,"e":7639}],[23,{"n":6.5,"e":7631}],[22,{"n":4.5,"e":7622}],[21,{"n":6,"e":7617}],[20,{"n":3.5,"e":7609}],[19,{"n":5,"e":7604}],[18,{"n":2.5,"e":7597}],[17,{"n":6,"e":7593}],[16,{"n":6,"e":7581}],[15,{"n":4,"e":7577}],[14,{"n":6.5,"e":7570}],[13,{"n":6.5,"e":7565}],[12,{"n":4.5,"e":7558}],[11,{"n":5,"e":7551}],[10,{"n":5.5,"e":7545}],[9,{"n":6,"e":7537}],[8,{"n":6,"e":7533}],[7,{"n":4,"e":7525}],[6,{"n":4,"e":7520}],[5,{"n":5.5,"e":7507}],[4,{"n":3,"e":7503}],[3,{"n":7.5,"e":7486}],[2,{"n":3.5,"e":7488}],[1,{"n":2,"e":7492}]],"fo":[[7622,[{"t":"Y"}]],[7631,[{"t":"Y"}]]]}],[7015,{"n":"Insigne","f":"Roberto","fp":"A","r":11,"c":140,"s":{"g":2,"s":119,"n":24,"a":4.96,"d":0.76,"Og":2,"Os":119,"On":24,"Oa":4.96,"Od":0.76,"pm":11,"pa":13,"Smsn":6,"Omsn":6},"p":[[27,{"n":5,"e":7702,"s":1}],[25,{"n":4.5,"e":7646}],[24,{"n":4.5,"e":7639,"s":1}],[23,{"n":4.5,"e":7631,"s":1}],[22,{"n":5,"e":7622,"s":1}],[21,{"n":5,"e":7617}],[20,{"n":4.5,"e":7609,"s":1}],[18,{"n":5,"e":7597}],[17,{"n":5,"e":7593,"s":1}],[16,{"n":6,"e":7581}],[15,{"n":5,"e":7577}],[14,{"n":5.5,"e":7570}],[13,{"n":7,"e":7565,"g":1}],[12,{"n":5,"e":7558}],[11,{"n":5,"e":7551,"s":1}],[10,{"n":5,"e":7545}],[9,{"n":4.5,"e":7537,"s":1}],[8,{"n":6,"e":7533,"s":1}],[7,{"n":3.5,"e":7525}],[6,{"n":4.5,"e":7520}],[5,{"n":6,"e":7507,"g":1}],[4,{"n":5,"e":7503,"s":1}],[2,{"n":4.5,"e":7488}],[1,{"n":3.5,"e":7492}]],"fo":[[7597,[{"t":"I"}]],[7537,[{"t":"Y"}]],[7570,[{"t":"Y"}]]]}],[7016,{"n":"Improta","f":"Riccardo","fp":"MO","r":10,"c":140,"s":{"g":1,"ao":1,"s":120.5,"n":25,"a":4.82,"d":1.15,"Ss":24,"Sn":5,"Sa":4.8,"Sd":1.64,"Og":1,"Oao":1,"Os":120.5,"On":25,"Oa":4.82,"Od":1.15,"pd":4,"pm":12,"pa":9,"Smsn":7.5,"Omsn":7.5},"p":[[29,{"n":4.5,"e":8253}],[28,{"n":7,"e":8248}],[27,{"n":2.5,"e":7702}],[26,{"n":5.5,"e":7651}],[25,{"n":4.5,"e":7646,"s":1}],[21,{"n":6,"e":7617}],[20,{"n":3,"e":7609,"a":1}],[19,{"n":4,"e":7604}],[18,{"n":3.5,"e":7597}],[17,{"n":3.5,"e":7593}],[16,{"n":5,"e":7581}],[15,{"n":5.5,"e":7577,"s":1}],[14,{"n":5.5,"e":7570}],[13,{"n":5.5,"e":7565}],[12,{"n":4,"e":7558,"s":1}],[11,{"n":6,"e":7551}],[10,{"n":5,"e":7545}],[9,{"n":5.5,"e":7537}],[8,{"n":7.5,"e":7533,"g":1}],[7,{"n":4,"e":7525,"s":1}],[6,{"n":4.5,"e":7520,"s":1}],[5,{"n":4.5,"e":7507,"s":1}],[4,{"n":4.5,"e":7503,"s":1}],[3,{"n":4.5,"e":7486,"s":1}],[2,{"n":5,"e":7488,"s":1}]],"fo":[[7525,[{"t":"Y"}]],[7537,[{"t":"Y"}]],[7545,[{"t":"Y"}]],[7581,[{"t":"Y"}]],[7617,[{"t":"Y"}]],[7651,[{"t":"Y"}]],[7702,[{"t":"Y"}]]]}],[7017,{"n":"Antei","f":"Luca","fp":"DC","r":1,"c":140}],[7021,{"n":"Letizia","f":"Gaetano","fp":"DL","r":10,"c":140,"s":{"g":3,"s":96,"n":18,"a":5.33,"d":1.32,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":96,"On":18,"Oa":5.33,"Od":1.32,"pd":18,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":5,"e":8253,"s":1}],[25,{"n":5,"e":7646}],[24,{"n":5.5,"e":7639,"s":1}],[15,{"n":5,"e":7577}],[14,{"n":8,"e":7570,"g":1}],[13,{"n":7,"e":7565}],[12,{"n":5,"e":7558}],[11,{"n":5.5,"e":7551}],[10,{"n":5.5,"e":7545}],[9,{"n":7.5,"e":7537,"g":1}],[8,{"n":5,"e":7533}],[7,{"n":3,"e":7525}],[6,{"n":4,"e":7520}],[5,{"n":5,"e":7507}],[4,{"n":3.5,"e":7503}],[3,{"n":6,"e":7486}],[2,{"n":6.5,"e":7488,"g":1}],[1,{"n":4,"e":7492,"s":1}]],"fo":[[7577,[{"t":"I"}]],[7646,[{"t":"I"}]],[7533,[{"t":"Y"}]]]}],[7029,{"n":"Caldirola","f":"Luca","fp":"DC","r":9,"c":140,"s":{"g":2,"s":85,"n":18,"a":4.72,"d":1.25,"Og":2,"Os":85,"On":18,"Oa":4.72,"Od":1.25,"pd":18,"Smsn":7.5,"Omsn":7.5},"p":[[28,{"n":6,"e":8248}],[26,{"n":5,"e":7651,"s":1}],[25,{"n":3.5,"e":7646}],[23,{"n":6,"e":7631,"s":1}],[22,{"n":5,"e":7622,"s":1}],[21,{"n":5,"e":7617,"s":1}],[20,{"n":3.5,"e":7609}],[19,{"n":5,"e":7604,"s":1}],[18,{"n":5,"e":7597,"s":1}],[9,{"n":5,"e":7537}],[8,{"n":5,"e":7533}],[7,{"n":3,"e":7525}],[6,{"n":3.5,"e":7520}],[5,{"n":5,"e":7507}],[4,{"n":3,"e":7503}],[3,{"n":6,"e":7486}],[2,{"n":7.5,"e":7488,"g":2}],[1,{"n":3,"e":7492}]],"fo":[[7537,[{"t":"I"}]],[7525,[{"t":"Y"}]],[7609,[{"t":"Y"}]],[8248,[{"t":"Y"}]]]}],[7031,{"n":"Tuia","f":"Alessandro","fp":"DC","r":11,"c":140,"s":{"g":1,"s":107,"n":23,"a":4.65,"d":0.87,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":0.97,"Og":1,"Os":107,"On":23,"Oa":4.65,"Od":0.87,"pd":23,"Smsn":6,"Omsn":6},"p":[[29,{"n":3.5,"e":8253}],[28,{"n":5.5,"e":8248}],[27,{"n":3,"e":7702}],[26,{"n":5,"e":7651}],[25,{"n":4.5,"e":7646,"s":1}],[24,{"n":5,"e":7639}],[22,{"n":5,"e":7622}],[21,{"n":5,"e":7617}],[19,{"n":4,"e":7604}],[18,{"n":3.5,"e":7597}],[16,{"n":6,"e":7581,"g":1}],[15,{"n":3,"e":7577}],[14,{"n":5.5,"e":7570}],[13,{"n":6,"e":7565}],[12,{"n":4.5,"e":7558}],[11,{"n":4,"e":7551}],[10,{"n":5.5,"e":7545}],[9,{"n":5,"e":7537,"s":1}],[6,{"n":4,"e":7520,"s":1}],[5,{"n":4.5,"e":7507,"s":1}],[3,{"n":5.5,"e":7486,"s":1}],[2,{"n":5,"e":7488,"s":1}],[1,{"n":4.5,"e":7492,"s":1}]],"fo":[[7545,[{"t":"I"}]],[7581,[{"t":"I"}]],[7651,[{"t":"I"}]],[7558,[{"t":"Y"}]],[7570,[{"t":"Y"}]],[7617,[{"t":"Y"}]],[8248,[{"t":"Y"}]]]}],[7033,{"n":"Viola","f":"Nicolas","fp":"MO","r":12,"c":140,"s":{"g":2,"s":52,"n":10,"a":5.2,"d":1.09,"Og":2,"Os":52,"On":10,"Oa":5.2,"Od":1.09,"pm":10,"Smsn":5.5,"Omsn":5.5},"p":[[28,{"n":6,"e":8248}],[27,{"n":4,"e":7702}],[26,{"n":6.5,"e":7651}],[25,{"n":5,"e":7646,"s":1}],[24,{"n":4.5,"e":7639}],[23,{"n":5,"e":7631}],[22,{"n":7,"e":7622,"g":1}],[21,{"n":5,"e":7617,"s":1}],[20,{"n":3.5,"e":7609}],[19,{"n":5.5,"e":7604,"g":1}]]}],[7035,{"n":"Hetemaj","f":"Perparim","fp":"MO","r":10,"c":140,"s":{"s":117,"n":24,"a":4.88,"d":1.08,"Ss":39.5,"Sn":8,"Sa":4.94,"Sd":1.08,"Os":117,"On":24,"Oa":4.88,"Od":1.08,"pm":24},"p":[[29,{"n":5,"e":8253}],[28,{"n":7,"e":8248}],[27,{"n":4.5,"e":7702}],[26,{"n":4,"e":7651}],[25,{"n":4,"e":7646}],[24,{"n":6,"e":7639}],[23,{"n":4,"e":7631}],[22,{"n":5,"e":7622}],[20,{"n":3.5,"e":7609}],[19,{"n":4.5,"e":7604}],[18,{"n":3,"e":7597}],[17,{"n":4.5,"e":7593,"s":1}],[16,{"n":5.5,"e":7581}],[15,{"n":4,"e":7577}],[13,{"n":8,"e":7565}],[12,{"n":5,"e":7558}],[11,{"n":4.5,"e":7551}],[10,{"n":6,"e":7545}],[9,{"n":5,"e":7537}],[8,{"n":5,"e":7533}],[4,{"n":4.5,"e":7503,"s":1}],[3,{"n":4.5,"e":7486}],[2,{"n":5,"e":7488,"s":1}],[1,{"n":5,"e":7492,"s":1}]],"fo":[[7622,[{"t":"I"}]],[7533,[{"t":"Y"}]],[7551,[{"t":"Y"}]],[7639,[{"t":"Y"}]],[8253,[{"t":"Y"}]]]}],[7036,{"n":"Manfredini","f":"Nicolò","fp":"G","r":7,"c":140}],[7039,{"n":"Gori","f":"Pier Graziano","fp":"G","r":1,"c":140}],[7189,{"n":"Foulon","f":"Daam","fp":"DL","r":9,"c":140,"s":{"ao":1,"s":105,"n":22,"a":4.77,"d":0.7,"Oao":1,"Os":105,"On":22,"Oa":4.77,"Od":0.7,"pd":21,"pm":1},"p":[[28,{"n":5.5,"e":8248}],[27,{"n":5,"e":7702,"s":1}],[25,{"n":3,"e":7646,"a":1,"s":1}],[24,{"n":4.5,"e":7639}],[23,{"n":6,"e":7631}],[22,{"n":5,"e":7622,"s":1}],[21,{"n":5,"e":7617,"s":1}],[20,{"n":4.5,"e":7609,"s":1}],[17,{"n":4,"e":7593}],[16,{"n":5,"e":7581,"s":1}],[15,{"n":5,"e":7577,"s":1}],[14,{"n":5,"e":7570,"s":1}],[13,{"n":5.5,"e":7565,"s":1}],[12,{"n":5,"e":7558,"s":1}],[10,{"n":5,"e":7545,"s":1}],[7,{"n":5,"e":7525}],[6,{"n":3,"e":7520}],[5,{"n":4.5,"e":7507}],[4,{"n":4.5,"e":7503}],[3,{"n":5,"e":7486}],[2,{"n":5,"e":7488}],[1,{"n":5,"e":7492,"s":1}]],"fo":[[7525,[{"t":"I"}]],[7503,[{"t":"Y"}]],[7507,[{"t":"Y"}]],[7593,[{"t":"Y"}]]]}],[7342,{"n":"Masella","f":"Davide","fp":"MO","r":1,"c":140}],[7344,{"n":"Lucatelli","f":"Igor","fp":"G","r":3,"c":140}],[7674,{"n":"Gaich","f":"Adolfo","fp":"A","r":9,"c":140,"s":{"g":2,"s":29,"n":6,"a":4.83,"d":1.13,"Sg":2,"Ss":29,"Sn":6,"Sa":4.83,"Sd":1.13,"Og":2,"Os":29,"On":6,"Oa":4.83,"Od":1.13,"pa":6,"Smsn":6,"Omsn":6},"p":[[29,{"n":5,"e":8253}],[28,{"n":6,"e":8248,"g":1}],[27,{"n":3,"e":7702}],[26,{"n":6,"e":7651,"g":1}],[25,{"n":4.5,"e":7646,"s":1}],[24,{"n":4.5,"e":7639,"s":1}]]}],[7743,{"n":"Diambo","f":"Amadou","fp":"MD","r":1,"c":140}],[181,{"n":"Soumaoro","f":"Adama","fp":"DC","r":12,"c":127,"s":{"g":1,"s":60.5,"n":11,"a":5.5,"d":1,"Sg":1,"Ss":45.5,"Sn":8,"Sa":5.69,"Sd":1,"Og":1,"Os":99,"On":19,"Oa":5.21,"Od":1.08,"pd":19,"Smsn":5.5,"Omsn":5.5},"p":[[29,{"n":5.5,"e":7270}],[28,{"n":5.5,"e":8246,"g":1}],[27,{"n":6,"e":7284}],[26,{"n":4,"e":7294}],[25,{"n":5,"e":7299}],[24,{"n":7.5,"e":7305}],[23,{"n":6,"e":7319}],[21,{"n":6,"e":7332}],[20,{"n":4,"e":7335}],[19,{"n":5,"e":7342,"s":1}],[11,{"n":6.5,"e":6101}],[9,{"n":5,"e":6120,"s":1}],[7,{"n":5,"e":6140,"s":1}],[-30,{"n":5,"e":5537,"s":1}],[-29,{"n":4,"e":5541}],[-28,{"n":4,"e":5548}],[-27,{"n":3,"e":5561}],[-26,{"n":6,"e":5572}],[22,{"n":6,"e":7622}]],"fo":[[6120,[{"t":"Y"}]],[7270,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[1594,{"n":"Soriano","f":"Roberto","fp":"MO","r":31,"c":127,"s":{"g":9,"s":169,"n":29,"a":5.83,"d":1.14,"Sg":3,"Ss":65,"Sn":11,"Sa":5.91,"Sd":0.94,"Og":11,"Os":229.5,"On":40,"Oa":5.74,"Od":1.09,"pm":38,"pa":2,"Smsn":6,"Omsn":6},"p":[[18,{"n":7,"e":7349}],[17,{"n":5.5,"e":7357}],[16,{"n":5.5,"e":7364}],[15,{"n":6,"e":7372}],[13,{"n":6,"e":7390,"g":1}],[12,{"n":6,"e":7559}],[11,{"n":3.5,"e":7393}],[10,{"n":5.5,"e":7407}],[9,{"n":6,"e":7538,"g":1}],[8,{"n":5,"e":7424}],[7,{"n":5,"e":7428}],[6,{"n":7.5,"e":7435,"g":1}],[5,{"n":4.5,"e":7446}],[4,{"n":7,"e":7452,"g":1}],[2,{"n":9,"e":7469,"g":2}],[1,{"n":5,"e":7475}],[-38,{"n":6.5,"e":5449}],[-37,{"n":4.5,"e":5459}],[-34,{"n":4,"e":5493}],[-33,{"n":6.5,"e":5499}],[-32,{"n":6.5,"e":5516,"g":1}],[-30,{"n":4.5,"e":5530}],[-27,{"n":5.5,"e":5559}],[-36,{"n":6.5,"e":5468,"g":1}],[-35,{"n":4.5,"e":5478}],[-29,{"n":6,"e":5539}],[29,{"n":5.5,"e":7270}],[28,{"n":5.5,"e":8246}],[-28,{"n":5.5,"e":5555}],[27,{"n":7,"e":7284,"g":1}],[26,{"n":6,"e":7294,"g":1}],[25,{"n":4.5,"e":7299}],[24,{"n":6,"e":7305}],[23,{"n":7,"e":7319,"g":1}],[22,{"n":5,"e":7622}],[21,{"n":7.5,"e":7332}],[20,{"n":6,"e":7335}],[19,{"n":5,"e":7342}],[14,{"n":4.5,"e":7377}],[3,{"n":5.5,"e":7486}]],"fo":[[7335,[{"t":"Y"}]],[7393,[{"t":"Y"}]],[7622,[{"t":"Y"}]],[8246,[{"t":"Y"}]]],"a":{"m":30,"a":40,"M":45,"n":8}}],[1789,{"n":"Sansone","f":"Nicola","fp":"MO","r":13,"c":127,"s":{"g":2,"s":99.5,"n":19,"a":5.24,"d":0.86,"Sg":2,"Ss":65.5,"Sn":12,"Sa":5.46,"Sd":1.01,"Og":2,"Os":151.5,"On":30,"Oa":5.05,"Od":0.84,"pm":18,"pa":12,"Smsn":6.5,"Omsn":6.5},"p":[[-31,{"n":4.5,"e":5519,"s":1}],[-38,{"n":4.5,"e":5449,"s":1}],[-37,{"n":3.5,"e":5459}],[-36,{"n":5.5,"e":5468,"s":1}],[-35,{"n":5.5,"e":5478,"s":1}],[-34,{"n":3.5,"e":5493}],[-32,{"n":5,"e":5516}],[-30,{"n":5.5,"e":5530}],[-29,{"n":5.5,"e":5539,"s":1}],[29,{"n":5,"e":7270}],[28,{"n":5,"e":8246,"s":1}],[-28,{"n":4.5,"e":5555}],[27,{"n":5,"e":7284,"s":1}],[-27,{"n":4.5,"e":5559}],[26,{"n":4.5,"e":7294}],[25,{"n":5.5,"e":7299}],[24,{"n":7.5,"e":7305,"g":1}],[23,{"n":5.5,"e":7319}],[22,{"n":6.5,"e":7622,"g":1}],[21,{"n":7,"e":7332}],[20,{"n":5,"e":7335}],[19,{"n":4.5,"e":7342,"s":1}],[18,{"n":4.5,"e":7349,"s":1}],[9,{"n":5,"e":7538,"s":1}],[8,{"n":4.5,"e":7424,"s":1}],[5,{"n":5,"e":7446}],[4,{"n":4.5,"e":7452,"s":1}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":5,"e":7469,"s":1}],[1,{"n":5,"e":7475,"s":1}]]}],[4223,{"n":"Barrow","f":"Musa","fp":"A","r":20,"c":127,"s":{"g":6,"s":157.5,"n":29,"a":5.43,"d":1.3,"Sg":6,"Ss":157.5,"Sn":29,"Sa":5.43,"Sd":1.3,"Og":12,"Os":220.5,"On":40,"Oa":5.51,"Od":1.28,"pm":20,"pa":20,"Smsn":7,"Omsn":6},"p":[[-38,{"n":4.5,"e":5449}],[-37,{"n":3.5,"e":5459}],[-36,{"n":8,"e":5468,"g":1}],[-35,{"n":5,"e":5478}],[-33,{"n":6,"e":5499,"g":1}],[-32,{"n":5,"e":5516}],[-31,{"n":6,"e":5519,"g":1}],[-30,{"n":7,"e":5530,"g":1}],[-29,{"n":6.5,"e":5539,"g":1}],[29,{"n":4.5,"e":7270}],[28,{"n":7,"e":8246}],[-28,{"n":6.5,"e":5555,"g":1,"s":1}],[27,{"n":7.5,"e":7284,"g":1}],[-27,{"n":5,"e":5559}],[26,{"n":5,"e":7294,"s":1}],[25,{"n":4,"e":7299}],[24,{"n":6.5,"e":7305}],[23,{"n":6,"e":7319}],[22,{"n":6,"e":7622}],[21,{"n":8,"e":7332,"g":2}],[20,{"n":3.5,"e":7335}],[19,{"n":4.5,"e":7342}],[18,{"n":5,"e":7349}],[17,{"n":4.5,"e":7357,"s":1}],[16,{"n":6,"e":7364}],[15,{"n":5,"e":7372}],[14,{"n":4.5,"e":7377}],[13,{"n":5.5,"e":7390}],[12,{"n":7,"e":7559,"g":1}],[11,{"n":3.5,"e":7393}],[10,{"n":4,"e":7407}],[9,{"n":5,"e":7538}],[8,{"n":6.5,"e":7424}],[7,{"n":5,"e":7428}],[6,{"n":8,"e":7435,"g":2}],[5,{"n":5,"e":7446,"s":1}],[4,{"n":4.5,"e":7452}],[3,{"n":5,"e":7486}],[2,{"n":7,"e":7469}],[1,{"n":4,"e":7475}]]}],[4299,{"n":"Ravaglia","f":"Federico","fp":"G","r":3,"c":127,"s":{"s":7.5,"n":2,"a":3.75,"d":1.77,"Ss":5,"Sn":1,"Sa":5,"Os":7.5,"On":2,"Oa":3.75,"Od":1.77,"pg":2},"p":[[29,{"n":5,"e":7270}],[11,{"n":2.5,"e":7393}]]}],[4314,{"n":"Schouten","f":"Jerdy","fp":"MD","r":10,"c":127,"s":{"g":1,"s":143.5,"n":26,"a":5.52,"d":0.97,"Sg":1,"Ss":17,"Sn":3,"Sa":5.67,"Sd":1.15,"Og":1,"Os":173,"On":32,"Oa":5.41,"Od":0.95,"pm":32,"Smsn":7,"Omsn":7},"p":[[-38,{"n":4.5,"e":5449}],[-37,{"n":5,"e":5459,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":6,"e":5530}],[-29,{"n":5,"e":5539}],[29,{"n":5,"e":7270}],[28,{"n":7,"e":8246,"g":1,"s":1}],[-28,{"n":5,"e":5555,"s":1}],[27,{"n":5,"e":7284}],[25,{"n":6,"e":7299,"s":1}],[24,{"n":5.5,"e":7305,"s":1}],[23,{"n":5.5,"e":7319,"s":1}],[22,{"n":5.5,"e":7622}],[21,{"n":6,"e":7332}],[20,{"n":5.5,"e":7335}],[19,{"n":6.5,"e":7342}],[18,{"n":7,"e":7349}],[17,{"n":3.5,"e":7357}],[16,{"n":5,"e":7364}],[15,{"n":5,"e":7372}],[14,{"n":4,"e":7377}],[13,{"n":4.5,"e":7390,"s":1}],[10,{"n":4.5,"e":7407}],[9,{"n":6,"e":7538}],[8,{"n":6.5,"e":7424}],[7,{"n":6,"e":7428}],[6,{"n":6,"e":7435}],[5,{"n":6,"e":7446}],[4,{"n":3.5,"e":7452}],[3,{"n":5.5,"e":7486}],[2,{"n":7,"e":7469}],[1,{"n":6,"e":7475}]],"fo":[[7424,[{"t":"I"}]],[7299,[{"t":"Y"}]],[7364,[{"t":"Y"}]],[7372,[{"t":"Y"}]],[7428,[{"t":"Y"}]],[7435,[{"t":"Y"}]]]}],[4320,{"n":"Vergani","f":"Edoardo","fp":"A","r":1,"c":127,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[10,{"n":4.5,"e":7407,"s":1}]]}],[4328,{"n":"Orsolini","f":"Riccardo","fp":"A","r":17,"c":127,"s":{"g":4,"s":134,"n":25,"a":5.36,"d":0.99,"Sg":2,"Ss":87,"Sn":16,"Sa":5.44,"Sd":0.91,"Og":5,"Os":190.5,"On":36,"Oa":5.29,"Od":1.09,"pm":25,"pa":11,"Smsn":5.5,"Omsn":5.5},"p":[[-37,{"n":3.5,"e":5459}],[-36,{"n":6.5,"e":5468,"s":1}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":3,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-32,{"n":6.5,"e":5516}],[-31,{"n":5,"e":5519}],[-30,{"n":5.5,"e":5530}],[-29,{"n":4.5,"e":5539}],[29,{"n":4.5,"e":7270,"s":1}],[28,{"n":5,"e":8246}],[-28,{"n":7.5,"e":5555,"g":1}],[27,{"n":5,"e":7284,"s":1}],[-27,{"n":4.5,"e":5559}],[26,{"n":5,"e":7294,"s":1}],[25,{"n":5,"e":7299}],[24,{"n":6,"e":7305}],[23,{"n":6,"e":7319}],[22,{"n":4.5,"e":7622,"s":1}],[21,{"n":6.5,"e":7332,"g":1,"s":1}],[20,{"n":5,"e":7335}],[19,{"n":5,"e":7342}],[18,{"n":7.5,"e":7349,"g":1}],[17,{"n":4,"e":7357}],[16,{"n":6.5,"e":7364}],[15,{"n":5.5,"e":7372}],[14,{"n":6,"e":7377,"s":1}],[9,{"n":5,"e":7538}],[8,{"n":7,"e":7424,"g":1}],[7,{"n":5,"e":7428}],[6,{"n":7,"e":7435}],[5,{"n":5,"e":7446}],[4,{"n":5.5,"e":7452,"g":1}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":4,"e":7469,"s":1}],[1,{"n":3.5,"e":7475}]],"fo":[[7538,[{"t":"I"}]]]}],[4329,{"n":"Tomiyasu","f":"Takehiro","fp":"DL","r":10,"c":127,"s":{"g":2,"ao":1,"s":127.5,"n":26,"a":4.9,"d":0.99,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Og":3,"Oao":1,"Os":171.5,"On":35,"Oa":4.9,"Od":0.86,"pd":35,"Smsn":6,"Omsn":4.5},"p":[[-35,{"n":5,"e":5478}],[-34,{"n":4.5,"e":5493,"g":1}],[-33,{"n":5,"e":5499}],[-32,{"n":5,"e":5516}],[-31,{"n":4.5,"e":5519}],[-30,{"n":5,"e":5530}],[-29,{"n":5,"e":5539}],[29,{"n":5,"e":7270}],[28,{"n":5.5,"e":8246}],[-28,{"n":5.5,"e":5555}],[27,{"n":5,"e":7284}],[-27,{"n":4.5,"e":5559}],[23,{"n":5.5,"e":7319}],[22,{"n":5,"e":7622}],[21,{"n":7,"e":7332}],[20,{"n":4.5,"e":7335}],[19,{"n":4,"e":7342}],[18,{"n":6,"e":7349}],[17,{"n":4.5,"e":7357}],[16,{"n":6,"e":7364,"g":1}],[15,{"n":5.5,"e":7372}],[14,{"n":6,"e":7377,"g":1}],[13,{"n":5,"e":7390}],[12,{"n":4,"e":7559}],[11,{"n":3,"e":7393}],[10,{"n":3.5,"e":7407}],[9,{"n":6,"e":7538}],[8,{"n":5.5,"e":7424}],[7,{"n":4.5,"e":7428}],[6,{"n":4.5,"e":7435}],[5,{"n":3.5,"e":7446}],[4,{"n":3,"e":7452,"a":1}],[3,{"n":5,"e":7486}],[2,{"n":5.5,"e":7469}],[1,{"n":5,"e":7475}]],"fo":[[7270,[{"t":"I"}]],[7390,[{"t":"Y"}]],[7446,[{"t":"Y"}]],[7559,[{"t":"Y"}]]]}],[4376,{"n":"Svanberg","f":"Mattias","fp":"MD","r":14,"c":127,"s":{"g":3,"s":136.5,"n":26,"a":5.25,"d":0.9,"Sg":1,"Ss":38,"Sn":7,"Sa":5.43,"Sd":1.4,"Og":4,"Os":190,"On":37,"Oa":5.14,"Od":0.84,"pm":37,"Smsn":6,"Omsn":6},"p":[[-38,{"n":6,"e":5449,"g":1}],[-37,{"n":4.5,"e":5459,"s":1}],[-36,{"n":5.5,"e":5468}],[-35,{"n":5,"e":5478}],[-34,{"n":5,"e":5493,"s":1}],[-32,{"n":4.5,"e":5516,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":5.5,"e":5530,"s":1}],[-29,{"n":5,"e":5539,"s":1}],[29,{"n":4.5,"e":7270,"s":1}],[28,{"n":4.5,"e":8246}],[-28,{"n":4.5,"e":5555,"s":1}],[27,{"n":8,"e":7284,"g":1}],[-27,{"n":4,"e":5559}],[26,{"n":4,"e":7294}],[25,{"n":5.5,"e":7299}],[24,{"n":6.5,"e":7305}],[23,{"n":5,"e":7319}],[21,{"n":6,"e":7332}],[20,{"n":5,"e":7335,"s":1}],[19,{"n":5,"e":7342}],[18,{"n":5,"e":7349,"s":1}],[16,{"n":6,"e":7364,"g":1}],[15,{"n":5,"e":7372,"s":1}],[14,{"n":5,"e":7377,"s":1}],[13,{"n":6,"e":7390}],[12,{"n":5,"e":7559,"s":1}],[11,{"n":3.5,"e":7393}],[10,{"n":5,"e":7407}],[9,{"n":5,"e":7538}],[8,{"n":5.5,"e":7424}],[7,{"n":5.5,"e":7428,"s":1}],[6,{"n":5,"e":7435}],[5,{"n":4,"e":7446}],[4,{"n":6,"e":7452,"g":1}],[3,{"n":6,"e":7486}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[7332,[{"t":"Y"}]],[7364,[{"t":"Y"},{"t":"O"}]],[7390,[{"t":"Y"}]],[7446,[{"t":"Y"}]],[7452,[{"t":"Y"}]]]}],[4562,{"n":"Faragò","f":"Paolo","fp":"DL","r":1,"c":127,"s":{"s":38,"n":8,"a":4.75,"d":0.8,"Os":84,"On":17,"Oa":4.94,"Od":0.75,"pd":4,"pm":13},"p":[[11,{"n":6,"e":7396}],[10,{"n":5.5,"e":7412}],[9,{"n":5,"e":7539,"s":1}],[5,{"n":4.5,"e":7508,"s":1}],[2,{"n":3.5,"e":7464}],[1,{"n":4,"e":7473}],[-34,{"n":6,"e":5489}],[-38,{"n":4,"e":5454}],[-37,{"n":6,"e":5458}],[-36,{"n":5.5,"e":5470,"s":1}],[-35,{"n":5,"e":5480}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509,"s":1}],[-31,{"n":4.5,"e":5520,"s":1}],[-30,{"n":4.5,"e":5529,"s":1}],[6,{"n":4.5,"e":7435,"s":1}],[3,{"n":5,"e":7459,"s":1}]],"fo":[[7396,[{"t":"Y"}]]]}],[4571,{"n":"Mbaye","f":"Ibrahima","fp":"DL","r":10,"c":127,"s":{"g":1,"s":23.5,"n":5,"a":4.7,"d":1.57,"Og":1,"Os":57,"On":12,"Oa":4.75,"Od":1.12,"pd":12,"Smsn":7,"Omsn":7},"p":[[-38,{"n":5.5,"e":5449}],[-37,{"n":3,"e":5459}],[-36,{"n":5,"e":5468}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":5,"e":5493,"s":1}],[-33,{"n":5,"e":5499}],[-32,{"n":5,"e":5516,"s":1}],[26,{"n":3.5,"e":7294}],[25,{"n":5,"e":7299}],[24,{"n":7,"e":7305,"g":1}],[11,{"n":3,"e":7393}],[4,{"n":5,"e":7452,"s":1}]],"fo":[[7393,[{"t":"I"}]],[7452,[{"t":"Y"}]]]}],[4573,{"n":"Dijks","f":"Mitchell","fp":"DL","r":7,"c":127,"s":{"s":65.5,"n":14,"a":4.68,"d":0.7,"Ss":15,"Sn":3,"Sa":5,"Os":105,"On":23,"Oa":4.57,"Od":0.76,"pd":23},"p":[[-36,{"n":5,"e":5468}],[-34,{"n":2.5,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-32,{"n":4.5,"e":5516}],[-31,{"n":4,"e":5519}],[-30,{"n":4.5,"e":5530}],[-29,{"n":4.5,"e":5539}],[29,{"n":5,"e":7270}],[28,{"n":5,"e":8246}],[-28,{"n":5.5,"e":5555}],[27,{"n":5,"e":7284}],[-27,{"n":4,"e":5559}],[22,{"n":4.5,"e":7622}],[21,{"n":6,"e":7332}],[20,{"n":3,"e":7335}],[19,{"n":4,"e":7342}],[18,{"n":4.5,"e":7349}],[17,{"n":5,"e":7357,"s":1}],[16,{"n":5,"e":7364}],[15,{"n":5,"e":7372}],[14,{"n":4.5,"e":7377}],[13,{"n":5,"e":7390,"s":1}],[1,{"n":4,"e":7475}]],"fo":[[7377,[{"t":"I"}]],[7335,[{"t":"Y"}]],[7342,[{"t":"Y"}]],[7349,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[4652,{"n":"Skorupski","f":"Lukasz","fp":"G","r":23,"c":127,"s":{"s":120,"n":21,"a":5.71,"d":1.39,"Os":184,"On":33,"Oa":5.58,"Od":1.43,"pg":33},"p":[[-38,{"n":7,"e":5449}],[-37,{"n":3.5,"e":5459}],[-36,{"n":6.5,"e":5468}],[-35,{"n":7,"e":5478}],[-34,{"n":3,"e":5493}],[-33,{"n":5,"e":5499}],[-32,{"n":4,"e":5516}],[-31,{"n":5,"e":5519}],[-30,{"n":8,"e":5530}],[-29,{"n":5.5,"e":5539}],[-28,{"n":5,"e":5555}],[28,{"n":5,"e":8246}],[27,{"n":5.5,"e":7284}],[-27,{"n":4.5,"e":5559}],[26,{"n":4,"e":7294}],[25,{"n":5,"e":7299}],[24,{"n":9,"e":7305}],[23,{"n":7,"e":7319}],[22,{"n":5,"e":7622}],[21,{"n":7,"e":7332}],[20,{"n":8.5,"e":7335}],[19,{"n":7.5,"e":7342}],[18,{"n":6,"e":7349}],[10,{"n":4.5,"e":7407}],[9,{"n":6,"e":7538}],[8,{"n":5.5,"e":7424}],[7,{"n":5,"e":7428}],[6,{"n":5,"e":7435}],[5,{"n":4,"e":7446}],[4,{"n":6,"e":7452}],[3,{"n":5,"e":7486}],[2,{"n":5.5,"e":7469}],[1,{"n":4,"e":7475}]],"fo":[[8246,[{"t":"Y"}]]]}],[4672,{"n":"Santander","f":"Federico","fp":"A","r":1,"c":127,"s":{"s":19.5,"n":4,"a":4.88,"d":0.75,"Os":36.5,"On":8,"Oa":4.56,"Od":0.68,"pa":8},"p":[[-38,{"n":4.5,"e":5449,"s":1}],[-36,{"n":4.5,"e":5468,"s":1}],[-35,{"n":4.5,"e":5478,"s":1}],[-34,{"n":3.5,"e":5493}],[5,{"n":6,"e":7446,"s":1}],[4,{"n":4.5,"e":7452,"s":1}],[2,{"n":4.5,"e":7469,"s":1}],[1,{"n":4.5,"e":7475,"s":1}]]}],[4722,{"n":"Ângelo da Costa","f":"","fp":"G","r":7,"c":127,"s":{"s":29.5,"n":6,"a":4.92,"d":0.74,"Os":29.5,"On":6,"Oa":4.92,"Od":0.74,"pg":6},"p":[[17,{"n":5.5,"e":7357}],[16,{"n":4,"e":7364}],[15,{"n":5.5,"e":7372}],[14,{"n":5.5,"e":7377}],[13,{"n":4,"e":7390}],[12,{"n":5,"e":7559}]],"fo":[[7364,[{"t":"Y"}]],[7377,[{"t":"Y"}]]],"a":{"m":8,"a":10,"M":11,"n":5}}],[4776,{"n":"Poli","f":"Andrea","fp":"MD","r":10,"c":127,"s":{"g":1,"ao":1,"s":69.5,"n":14,"a":4.96,"d":0.87,"Og":1,"Oao":1,"Os":93.5,"On":19,"Oa":4.92,"Od":0.79,"pm":19,"Smsn":6.5,"Omsn":6.5},"p":[[-36,{"n":4.5,"e":5468,"s":1}],[-34,{"n":4,"e":5493}],[-33,{"n":5,"e":5499,"s":1}],[-28,{"n":5.5,"e":5555}],[28,{"n":5,"e":8246,"s":1}],[27,{"n":4.5,"e":7284,"s":1}],[-27,{"n":5,"e":5559,"s":1}],[26,{"n":5,"e":7294}],[24,{"n":5.5,"e":7305,"s":1}],[22,{"n":5.5,"e":7622,"s":1}],[21,{"n":4.5,"e":7332,"s":1}],[20,{"n":6.5,"e":7335,"g":1,"s":1}],[17,{"n":5,"e":7357,"s":1}],[16,{"n":5,"e":7364,"s":1}],[15,{"n":5,"e":7372,"s":1}],[13,{"n":5,"e":7390,"s":1}],[12,{"n":5,"e":7559,"s":1}],[11,{"n":2.5,"e":7393,"a":1}],[2,{"n":5.5,"e":7469}]]}],[4804,{"n":"De Silvestri","f":"Lorenzo","fp":"DL","r":8,"c":127,"s":{"g":1,"s":98,"n":22,"a":4.45,"d":0.86,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":146,"On":32,"Oa":4.56,"Od":0.93,"pd":21,"pm":11,"Smsn":5,"Omsn":5},"p":[[-34,{"n":4.5,"e":5490}],[-32,{"n":3.5,"e":5512}],[-31,{"n":5,"e":5526}],[-30,{"n":4,"e":5531}],[-29,{"n":4,"e":5546}],[-27,{"n":6,"e":5566}],[-35,{"n":5,"e":5486}],[-33,{"n":6.5,"e":5506}],[29,{"n":5.5,"e":7270,"s":1}],[-28,{"n":3.5,"e":5549}],[27,{"n":5,"e":7284,"s":1}],[26,{"n":2.5,"e":7294}],[25,{"n":3.5,"e":7299}],[-25,{"n":6,"e":5586}],[24,{"n":5,"e":7305}],[23,{"n":5.5,"e":7319,"s":1}],[19,{"n":4.5,"e":7342}],[18,{"n":5,"e":7349}],[15,{"n":4,"e":7372}],[13,{"n":5,"e":7390}],[12,{"n":4,"e":7559}],[11,{"n":2.5,"e":7393}],[10,{"n":4,"e":7407}],[9,{"n":5.5,"e":7538}],[8,{"n":4.5,"e":7424}],[7,{"n":4.5,"e":7428}],[6,{"n":5,"e":7435}],[5,{"n":5,"e":7446,"g":1}],[4,{"n":3.5,"e":7452}],[3,{"n":4.5,"e":7486}],[2,{"n":5,"e":7469}],[1,{"n":4.5,"e":7475}]],"fo":[[7452,[{"t":"I"}]],[7270,[{"t":"Y"}]],[7372,[{"t":"Y"}]],[7435,[{"t":"Y"}]]]}],[4805,{"n":"Palacio","f":"Rodrigo","fp":"A","r":9,"c":127,"s":{"g":1,"s":135,"n":28,"a":4.82,"d":1.04,"Og":2,"Os":182.5,"On":38,"Oa":4.8,"Od":1,"pm":1,"pa":37,"Smsn":7,"Omsn":7},"p":[[-38,{"n":4,"e":5449}],[-36,{"n":7,"e":5468,"g":1}],[-35,{"n":4,"e":5478}],[-33,{"n":4,"e":5499}],[-32,{"n":5,"e":5516,"s":1}],[-31,{"n":4,"e":5519}],[-30,{"n":4.5,"e":5530,"s":1}],[-29,{"n":5,"e":5539}],[-28,{"n":5,"e":5555}],[28,{"n":7.5,"e":8246}],[27,{"n":6,"e":7284}],[-27,{"n":5,"e":5559,"s":1}],[26,{"n":3.5,"e":7294}],[25,{"n":4,"e":7299,"s":1}],[24,{"n":4,"e":7305,"s":1}],[23,{"n":4,"e":7319,"s":1}],[22,{"n":4.5,"e":7622,"s":1}],[21,{"n":4,"e":7332,"s":1}],[20,{"n":4.5,"e":7335,"s":1}],[19,{"n":4,"e":7342,"s":1}],[18,{"n":4,"e":7349,"s":1}],[17,{"n":5,"e":7357}],[16,{"n":5,"e":7364}],[15,{"n":4,"e":7372}],[14,{"n":6,"e":7377}],[13,{"n":5,"e":7390}],[12,{"n":5.5,"e":7559}],[11,{"n":3,"e":7393}],[10,{"n":4,"e":7407}],[9,{"n":6,"e":7538}],[8,{"n":5,"e":7424}],[7,{"n":4.5,"e":7428}],[6,{"n":5,"e":7435}],[5,{"n":5,"e":7446}],[4,{"n":6,"e":7452}],[3,{"n":4.5,"e":7486}],[2,{"n":7,"e":7469,"g":1}],[1,{"n":4.5,"e":7475}]],"fo":[[7284,[{"t":"Y"}]],[7377,[{"t":"Y"}]],[7424,[{"t":"Y"}]],[7538,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[5315,{"n":"Skov Olsen","f":"Andreas","fp":"MO","r":9,"c":127,"s":{"g":2,"s":89,"n":17,"a":5.24,"d":0.79,"Sg":1,"Ss":68,"Sn":13,"Sa":5.23,"Sd":0.7,"Og":2,"Os":123,"On":24,"Oa":5.13,"Od":0.77,"pm":10,"pa":14,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5449,"s":1}],[-36,{"n":6,"e":5468}],[-35,{"n":5,"e":5478}],[-34,{"n":4.5,"e":5493,"s":1}],[-33,{"n":5.5,"e":5499}],[-32,{"n":4,"e":5516,"s":1}],[-31,{"n":4.5,"e":5519,"s":1}],[29,{"n":5.5,"e":7270}],[28,{"n":6,"e":8246,"g":1,"s":1}],[27,{"n":5.5,"e":7284}],[26,{"n":6,"e":7294}],[25,{"n":4.5,"e":7299,"s":1}],[24,{"n":4.5,"e":7305,"s":1}],[23,{"n":5,"e":7319,"s":1}],[22,{"n":5.5,"e":7622}],[21,{"n":6,"e":7332}],[20,{"n":6,"e":7335,"s":1}],[19,{"n":4.5,"e":7342,"s":1}],[18,{"n":5,"e":7349,"s":1}],[17,{"n":4,"e":7357,"s":1}],[15,{"n":4.5,"e":7372,"s":1}],[3,{"n":4.5,"e":7486}],[2,{"n":7,"e":7469,"g":1}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[7284,[{"t":"Y"}]]]}],[6116,{"n":"Danilo","f":"","fp":"DC","r":13,"c":127,"s":{"s":131,"n":28,"a":4.68,"d":1.1,"Ss":18.5,"Sn":4,"Sa":4.63,"Sd":1.25,"Og":1,"Os":183,"On":39,"Oa":4.69,"Od":1.04,"pd":39,"Omsn":6},"p":[[-38,{"n":5,"e":5449}],[-37,{"n":4,"e":5459}],[-36,{"n":5,"e":5468}],[-35,{"n":4.5,"e":5478}],[-34,{"n":2.5,"e":5493}],[-33,{"n":5,"e":5499}],[-32,{"n":6,"e":5516,"g":1}],[-30,{"n":5.5,"e":5530}],[-29,{"n":5,"e":5539}],[29,{"n":4.5,"e":7270}],[28,{"n":5,"e":8246}],[-28,{"n":5,"e":5555}],[27,{"n":6,"e":7284}],[-27,{"n":4.5,"e":5559}],[26,{"n":3,"e":7294}],[24,{"n":6,"e":7305}],[23,{"n":5.5,"e":7319}],[22,{"n":5.5,"e":7622}],[21,{"n":6,"e":7332}],[20,{"n":5,"e":7335}],[19,{"n":4,"e":7342}],[18,{"n":5.5,"e":7349}],[17,{"n":3.5,"e":7357}],[16,{"n":5,"e":7364}],[15,{"n":5.5,"e":7372}],[14,{"n":5,"e":7377}],[13,{"n":5,"e":7390}],[12,{"n":4,"e":7559}],[11,{"n":2,"e":7393}],[10,{"n":3.5,"e":7407}],[9,{"n":6,"e":7538}],[8,{"n":5,"e":7424}],[7,{"n":5,"e":7428}],[6,{"n":4.5,"e":7435}],[5,{"n":3,"e":7446}],[4,{"n":2.5,"e":7452}],[3,{"n":5,"e":7486,"s":1}],[2,{"n":5,"e":7469}],[1,{"n":5.5,"e":7475}]],"fo":[[7305,[{"t":"Y"}]],[7407,[{"t":"Y"}]],[7428,[{"t":"Y"}]],[7435,[{"t":"Y"}]],[7446,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[6169,{"n":"Molla","f":"Marco","fp":"G","r":1,"c":127}],[6226,{"n":"Medel","f":"Gary","fp":"MD","r":8,"c":127,"s":{"s":52,"n":10,"a":5.2,"d":0.63,"Os":103,"On":20,"Oa":5.15,"Od":0.69,"pd":6,"pm":14},"p":[[-38,{"n":5,"e":5449}],[-37,{"n":4,"e":5459}],[-36,{"n":6,"e":5468}],[-35,{"n":5.5,"e":5478}],[-33,{"n":4.5,"e":5499}],[-32,{"n":5,"e":5516}],[-31,{"n":4,"e":5519}],[-29,{"n":5,"e":5539}],[-28,{"n":6,"e":5555}],[-27,{"n":6,"e":5559}],[26,{"n":4.5,"e":7294,"s":1}],[25,{"n":5.5,"e":7299,"s":1}],[14,{"n":6,"e":7377}],[13,{"n":6,"e":7390}],[12,{"n":5,"e":7559}],[11,{"n":5,"e":7393,"s":1}],[10,{"n":4,"e":7407}],[8,{"n":5,"e":7424,"s":1}],[3,{"n":5.5,"e":7486}],[2,{"n":5.5,"e":7469,"s":1}]]}],[6298,{"n":"Musa Juwara","f":"","fp":"A","r":3,"c":127,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":27.5,"On":5,"Oa":5.5,"Od":0.94,"pm":5,"Omsn":7},"p":[[-38,{"n":5.5,"e":5449}],[-37,{"n":5,"e":5459,"s":1}],[-30,{"n":7,"e":5530,"g":1,"s":1}],[29,{"n":4.5,"e":7270,"s":1}],[-27,{"n":5.5,"e":5559,"s":1}]],"fo":[[7270,[{"t":"Y"}]]]}],[6299,{"n":"Baldursson","f":"Andri Fannar","fp":"MD","r":3,"c":127,"s":{"s":23.5,"n":5,"a":4.7,"d":0.67,"Os":51.5,"On":11,"Oa":4.68,"Od":0.46,"pm":11},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":4.5,"e":5459,"s":1}],[-34,{"n":4.5,"e":5493,"s":1}],[-33,{"n":4.5,"e":5499,"s":1}],[-31,{"n":4.5,"e":5519,"s":1}],[-30,{"n":5,"e":5530,"s":1}],[23,{"n":5,"e":7319,"s":1}],[14,{"n":3.5,"e":7377}],[12,{"n":5,"e":7559,"s":1}],[11,{"n":5,"e":7393,"s":1}],[5,{"n":5,"e":7446,"s":1}]],"fo":[[7393,[{"t":"Y"}]]]}],[6350,{"n":"Domínguez","f":"Nicolás","fp":"MD","r":12,"c":127,"s":{"g":1,"s":131,"n":25,"a":5.24,"d":0.5,"Ss":68.5,"Sn":13,"Sa":5.27,"Sd":0.48,"Og":1,"Os":191,"On":36,"Oa":5.31,"Od":0.65,"pm":36,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":5.5,"e":5459}],[-35,{"n":5,"e":5478,"s":1}],[-34,{"n":4,"e":5493}],[-33,{"n":6.5,"e":5499}],[-32,{"n":5.5,"e":5516}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":7.5,"e":5530}],[-29,{"n":5.5,"e":5539,"s":1}],[29,{"n":5.5,"e":7270}],[28,{"n":5,"e":8246}],[-28,{"n":5,"e":5555,"s":1}],[27,{"n":5.5,"e":7284,"s":1}],[-27,{"n":5.5,"e":5559,"s":1}],[26,{"n":5,"e":7294,"s":1}],[25,{"n":5.5,"e":7299}],[24,{"n":5.5,"e":7305}],[23,{"n":6.5,"e":7319}],[22,{"n":5,"e":7622}],[21,{"n":5,"e":7332,"s":1}],[20,{"n":4.5,"e":7335}],[19,{"n":5,"e":7342,"s":1}],[18,{"n":5.5,"e":7349}],[17,{"n":5,"e":7357}],[15,{"n":5.5,"e":7372}],[14,{"n":5.5,"e":7377,"s":1}],[13,{"n":5.5,"e":7390}],[12,{"n":6,"e":7559,"g":1}],[11,{"n":4.5,"e":7393,"s":1}],[10,{"n":5.5,"e":7407,"s":1}],[9,{"n":5,"e":7538,"s":1}],[8,{"n":6,"e":7424,"s":1}],[7,{"n":4.5,"e":7428}],[6,{"n":5,"e":7435,"s":1}],[4,{"n":5,"e":7452,"s":1}],[1,{"n":4.5,"e":7475}]],"fo":[[7299,[{"t":"I"}]],[7349,[{"t":"Y"}]],[7372,[{"t":"Y"}]],[7390,[{"t":"Y"}]],[7393,[{"t":"Y"}]],[7428,[{"t":"Y"}]],[7622,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[6576,{"n":"Ruffo Luci","f":"Dion","fp":"MD","r":1,"c":127,"s":{"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[-32,{"n":4.5,"e":5516,"s":1}]]}],[6578,{"n":"Breza","f":"Sebastian","fp":"G","r":1,"c":127}],[7160,{"n":"Vignato","f":"Emanuel","fp":"MO","r":9,"c":127,"s":{"g":1,"s":127,"n":25,"a":5.08,"d":0.79,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":1,"Os":127,"On":25,"Oa":5.08,"Od":0.79,"pm":25,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":5,"e":7270,"s":1}],[28,{"n":5.5,"e":8246,"s":1}],[26,{"n":4.5,"e":7294,"s":1}],[25,{"n":5,"e":7299,"s":1}],[24,{"n":5,"e":7305,"s":1}],[22,{"n":5,"e":7622,"s":1}],[21,{"n":6,"e":7332,"s":1}],[20,{"n":5,"e":7335,"s":1}],[19,{"n":4,"e":7342}],[18,{"n":6,"e":7349}],[17,{"n":4.5,"e":7357}],[16,{"n":5,"e":7364,"s":1}],[15,{"n":5,"e":7372,"s":1}],[14,{"n":5.5,"e":7377}],[13,{"n":7,"e":7390}],[12,{"n":4.5,"e":7559}],[11,{"n":3,"e":7393}],[10,{"n":6.5,"e":7407,"g":1,"s":1}],[9,{"n":5,"e":7538,"s":1}],[8,{"n":5,"e":7424,"s":1}],[7,{"n":5,"e":7428,"s":1}],[6,{"n":5,"e":7435,"s":1}],[5,{"n":5.5,"e":7446,"s":1}],[3,{"n":4.5,"e":7486,"s":1}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[7270,[{"t":"Y"}]],[7342,[{"t":"Y"}]],[7393,[{"t":"Y"}]],[7622,[{"t":"Y"}]]]}],[7347,{"n":"Hickey","f":"Aaron","fp":"DL","r":3,"c":127,"s":{"s":42,"n":10,"a":4.2,"d":0.79,"Os":42,"On":10,"Oa":4.2,"Od":0.79,"pd":9,"pm":1},"p":[[23,{"n":3,"e":7319}],[17,{"n":4,"e":7357}],[16,{"n":5,"e":7364,"s":1}],[10,{"n":3.5,"e":7407}],[9,{"n":4.5,"e":7538}],[8,{"n":5,"e":7424}],[6,{"n":4.5,"e":7435}],[5,{"n":4.5,"e":7446}],[4,{"n":3,"e":7452}],[3,{"n":5,"e":7486}]],"fo":[[7319,[{"t":"R"}]],[7407,[{"t":"Y"}]],[7424,[{"t":"Y"}]],[7538,[{"t":"Y"}]]]}],[7460,{"n":"Rabbi","f":"Simone","fp":"A","r":1,"c":127,"s":{"s":18,"n":4,"a":4.5,"d":0.41,"Os":18,"On":4,"Oa":4.5,"Od":0.41,"pa":4},"p":[[17,{"n":4,"e":7357,"s":1}],[16,{"n":4.5,"e":7364,"s":1}],[12,{"n":5,"e":7559,"s":1}],[10,{"n":4.5,"e":7407,"s":1}]]}],[7501,{"n":"Pagliuca","f":"Mattia","fp":"A","r":1,"c":127,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pa":1},"p":[[11,{"n":5,"e":7393,"s":1}]]}],[7502,{"n":"Khailoti","f":"Omar","fp":"DC","r":1,"c":127,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[10,{"n":5,"e":7407,"s":1}]]}],[7504,{"n":"Rocchi","f":"Matias","fp":"MO","r":1,"c":127}],[7505,{"n":"Arnofoli","f":"Alex","fp":"DL","r":1,"c":127}],[7676,{"n":"Antov","f":"Valentin","fp":"DC","r":3,"c":127,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[25,{"n":5,"e":7299}]],"fo":[[7299,[{"t":"Y"}]]]}],[794,{"n":"Klavan","f":"Ragnar","fp":"DC","r":6,"c":108,"s":{"s":62,"n":13,"a":4.77,"d":0.48,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Oao":1,"Os":106.5,"On":22,"Oa":4.84,"Od":0.68,"pd":22},"p":[[29,{"n":4.5,"e":7272}],[28,{"n":4,"e":8247}],[27,{"n":5,"e":7285,"s":1}],[12,{"n":5.5,"e":7399}],[8,{"n":4.5,"e":7421}],[4,{"n":5,"e":7453,"s":1}],[-38,{"n":3,"e":5454,"a":1}],[-37,{"n":6,"e":5458}],[-36,{"n":4.5,"e":5470}],[-35,{"n":4.5,"e":5480}],[-34,{"n":5,"e":5489,"s":1}],[-32,{"n":5,"e":5509}],[-31,{"n":5.5,"e":5520}],[-30,{"n":5,"e":5529,"s":1}],[-27,{"n":6,"e":5565}],[25,{"n":5.5,"e":7299}],[11,{"n":4.5,"e":7396,"s":1}],[9,{"n":4,"e":7539}],[5,{"n":5,"e":7508,"s":1}],[3,{"n":5,"e":7459,"s":1}],[2,{"n":4.5,"e":7464}],[1,{"n":5,"e":7473}]],"fo":[[7421,[{"t":"I"}]],[7272,[{"t":"Y"}]]]}],[1599,{"n":"Godín","f":"Diego","fp":"DC","r":15,"c":108,"s":{"g":1,"s":101,"n":20,"a":5.05,"d":1.04,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":0.29,"Og":2,"Os":141.5,"On":27,"Oa":5.24,"Od":1.02,"pd":27,"Smsn":5,"Omsn":5},"p":[[26,{"n":4.5,"e":7296}],[24,{"n":7.5,"e":7638}],[23,{"n":5.5,"e":7314}],[21,{"n":5.5,"e":7331}],[20,{"n":5.5,"e":7336}],[19,{"n":6,"e":7341}],[18,{"n":4,"e":7350}],[17,{"n":5,"e":7356}],[14,{"n":4,"e":7381}],[13,{"n":5.5,"e":7385}],[7,{"n":6,"e":7429}],[-37,{"n":5,"e":5460,"s":1}],[-35,{"n":6,"e":5479}],[-28,{"n":5,"e":5554}],[-38,{"n":6.5,"e":5448}],[-36,{"n":6,"e":5471}],[-32,{"n":7,"e":5512,"g":1}],[-31,{"n":5,"e":5527}],[29,{"n":4,"e":7272}],[28,{"n":4,"e":8247}],[27,{"n":4.5,"e":7285}],[25,{"n":6.5,"e":7299}],[22,{"n":5,"e":7320}],[6,{"n":3,"e":7435}],[5,{"n":4.5,"e":7508}],[4,{"n":5.5,"e":7453}],[3,{"n":5,"e":7459,"g":1}]],"fo":[[7296,[{"t":"Y"}]],[7350,[{"t":"Y"}]]]}],[3343,{"n":"Rog","f":"Marko","fp":"MO","r":5,"c":108,"s":{"s":74,"n":14,"a":5.29,"d":0.67,"Os":131.5,"On":25,"Oa":5.26,"Od":0.66,"pm":25},"p":[[-37,{"n":5,"e":5458}],[-35,{"n":5,"e":5480}],[-34,{"n":5.5,"e":5489}],[-33,{"n":4,"e":5504}],[-32,{"n":6.5,"e":5509}],[-31,{"n":5,"e":5520}],[-30,{"n":5.5,"e":5529}],[-29,{"n":6,"e":5539}],[-28,{"n":5.5,"e":5549}],[-27,{"n":5,"e":5565}],[-25,{"n":4.5,"e":5587}],[14,{"n":4.5,"e":7381}],[13,{"n":5,"e":7385}],[12,{"n":6,"e":7399}],[11,{"n":5,"e":7396}],[10,{"n":5,"e":7412}],[9,{"n":5.5,"e":7539}],[8,{"n":5,"e":7421}],[7,{"n":6.5,"e":7429}],[6,{"n":4.5,"e":7435}],[5,{"n":6.5,"e":7508}],[4,{"n":5.5,"e":7453}],[3,{"n":4.5,"e":7459}],[2,{"n":5.5,"e":7464}],[1,{"n":5,"e":7473}]],"fo":[[7381,[{"t":"I"}]],[7453,[{"t":"Y"}]]]}],[4255,{"n":"Walukiewicz","f":"Sebastian","fp":"DC","r":6,"c":108,"s":{"s":85,"n":19,"a":4.47,"d":0.86,"Os":134,"On":29,"Oa":4.62,"Od":0.98,"pd":29},"p":[[15,{"n":3.5,"e":7371}],[-38,{"n":2.5,"e":5454}],[-37,{"n":6,"e":5458}],[-35,{"n":4.5,"e":5480}],[-33,{"n":3.5,"e":5504}],[-32,{"n":5.5,"e":5509}],[-31,{"n":5,"e":5520}],[-30,{"n":6,"e":5529}],[-29,{"n":4.5,"e":5539}],[-28,{"n":5.5,"e":5549}],[-27,{"n":6,"e":5565}],[22,{"n":3.5,"e":7320}],[21,{"n":5,"e":7331}],[20,{"n":5,"e":7336,"s":1}],[17,{"n":5,"e":7356}],[16,{"n":4,"e":7581}],[14,{"n":3,"e":7381}],[12,{"n":5,"e":7399}],[11,{"n":4,"e":7396}],[10,{"n":5,"e":7412}],[9,{"n":5.5,"e":7539}],[8,{"n":4.5,"e":7421}],[7,{"n":5.5,"e":7429}],[6,{"n":4,"e":7435}],[5,{"n":4.5,"e":7508}],[4,{"n":6,"e":7453}],[3,{"n":3,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":5,"e":7473}]],"fo":[[7399,[{"t":"I"}]],[7320,[{"t":"Y"}]]]}],[4302,{"n":"Zappa","f":"Gabriele","fp":"DL","r":10,"c":108,"s":{"s":120,"n":26,"a":4.62,"d":0.86,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":120,"On":26,"Oa":4.62,"Od":0.86,"pd":16,"pm":10},"p":[[29,{"n":4.5,"e":7272}],[27,{"n":5,"e":7285}],[25,{"n":5,"e":7299}],[23,{"n":4.5,"e":7314}],[22,{"n":4,"e":7320}],[21,{"n":4.5,"e":7331}],[20,{"n":5.5,"e":7336}],[19,{"n":4.5,"e":7341}],[18,{"n":5,"e":7350}],[17,{"n":5,"e":7356,"s":1}],[16,{"n":3.5,"e":7581}],[15,{"n":3,"e":7371}],[14,{"n":3,"e":7381}],[13,{"n":4,"e":7385}],[12,{"n":5,"e":7399}],[11,{"n":5.5,"e":7396}],[10,{"n":6,"e":7412}],[9,{"n":5.5,"e":7539}],[8,{"n":4,"e":7421}],[7,{"n":6,"e":7429}],[6,{"n":4,"e":7435}],[5,{"n":5.5,"e":7508}],[4,{"n":5,"e":7453}],[3,{"n":3,"e":7459}],[2,{"n":5,"e":7464,"s":1}],[1,{"n":4.5,"e":7473,"s":1}]],"fo":[[7314,[{"t":"Y"}]],[7341,[{"t":"Y"}]],[7381,[{"t":"Y"}]]]}],[4304,{"n":"Sottil","f":"Riccardo","fp":"A","r":6,"c":108,"s":{"g":2,"s":103,"n":20,"a":5.15,"d":0.83,"Og":2,"Os":130,"On":26,"Oa":5,"Od":0.81,"pm":11,"pa":15,"Smsn":6,"Omsn":6},"p":[[-30,{"n":4.5,"e":5534,"s":1}],[-29,{"n":5,"e":5540,"s":1}],[-28,{"n":4.5,"e":5551,"s":1}],[-27,{"n":4.5,"e":5560,"s":1}],[-38,{"n":5,"e":5456,"s":1}],[-32,{"n":3.5,"e":5510}],[20,{"n":4.5,"e":7336,"s":1}],[19,{"n":4.5,"e":7341,"s":1}],[18,{"n":5,"e":7350,"s":1}],[17,{"n":5.5,"e":7356}],[16,{"n":4.5,"e":7581,"s":1}],[15,{"n":3.5,"e":7371}],[14,{"n":4.5,"e":7381,"s":1}],[13,{"n":5.5,"e":7385}],[12,{"n":5.5,"e":7399}],[11,{"n":6,"e":7396,"g":1}],[10,{"n":5.5,"e":7412}],[9,{"n":5,"e":7539}],[8,{"n":5,"e":7421,"s":1}],[7,{"n":5.5,"e":7429,"s":1}],[6,{"n":6,"e":7435}],[5,{"n":7,"e":7508,"g":1}],[4,{"n":6.5,"e":7453}],[3,{"n":4.5,"e":7459}],[2,{"n":4.5,"e":7464}],[1,{"n":4.5,"e":7473,"s":1}]],"fo":[[7371,[{"t":"Y"}]],[7421,[{"t":"Y"}]],[7581,[{"t":"Y"}]]]}],[4358,{"n":"Tripaldelli","f":"Alessandro","fp":"DL","r":5,"c":108,"s":{"s":46,"n":10,"a":4.6,"d":0.74,"Os":46,"On":10,"Oa":4.6,"Od":0.74,"pd":9,"pm":1},"p":[[28,{"n":5,"e":8247,"s":1}],[21,{"n":5,"e":7331,"s":1}],[20,{"n":5,"e":7336,"s":1}],[16,{"n":3.5,"e":7581}],[15,{"n":4.5,"e":7371,"s":1}],[10,{"n":5,"e":7412}],[9,{"n":5,"e":7539,"s":1}],[8,{"n":3,"e":7421}],[2,{"n":5,"e":7464,"s":1}],[1,{"n":5,"e":7473,"s":1}]],"fo":[[7421,[{"t":"Y"}]]]}],[4481,{"n":"Simeone","f":"Giovanni","fp":"A","r":9,"c":108,"s":{"g":6,"s":126.5,"n":27,"a":4.69,"d":1.13,"Sg":1,"Ss":82.5,"Sn":19,"Sa":4.34,"Sd":0.71,"Og":12,"Os":192.5,"On":40,"Oa":4.81,"Od":1.2,"pa":40,"Smsn":6,"Omsn":5.5},"p":[[-38,{"n":2.5,"e":5454}],[-37,{"n":7,"e":5458,"g":1}],[-36,{"n":4.5,"e":5470}],[-35,{"n":6,"e":5480,"g":1}],[-34,{"n":4.5,"e":5489,"s":1}],[-33,{"n":3,"e":5504}],[-32,{"n":4.5,"e":5509}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":5.5,"e":5539,"g":1}],[29,{"n":4.5,"e":7272,"s":1}],[28,{"n":4.5,"e":8247,"s":1}],[-28,{"n":6.5,"e":5549,"g":1}],[-27,{"n":6.5,"e":5565,"g":1}],[27,{"n":6.5,"e":7285,"g":1}],[26,{"n":4.5,"e":7296,"s":1}],[-25,{"n":6,"e":5587,"g":1}],[25,{"n":4,"e":7299}],[24,{"n":4.5,"e":7638,"s":1}],[23,{"n":4,"e":7314}],[22,{"n":4,"e":7320}],[21,{"n":5,"e":7331,"s":1}],[20,{"n":4,"e":7336}],[19,{"n":4,"e":7341}],[18,{"n":4,"e":7350}],[17,{"n":5,"e":7356}],[16,{"n":4.5,"e":7581,"s":1}],[15,{"n":3,"e":7371}],[14,{"n":3.5,"e":7381}],[13,{"n":4,"e":7385,"s":1}],[12,{"n":4.5,"e":7399,"s":1}],[11,{"n":4.5,"e":7396,"s":1}],[8,{"n":4,"e":7421}],[7,{"n":6,"e":7429}],[6,{"n":6,"e":7435,"g":1}],[5,{"n":6.5,"e":7508,"g":1}],[4,{"n":8,"e":7453,"g":2}],[3,{"n":3.5,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":6,"e":7473,"g":1}]],"fo":[[7314,[{"t":"Y"}]]]}],[4488,{"n":"Deiola","f":"Alessandro","fp":"MD","r":8,"c":108,"s":{"s":83.5,"n":17,"a":4.91,"d":0.4,"Os":93.5,"On":19,"Oa":4.92,"Od":0.38,"pm":19},"p":[[18,{"n":5,"e":7596,"s":1}],[16,{"n":4.5,"e":7583}],[15,{"n":5,"e":7576,"s":1}],[14,{"n":5,"e":7569,"s":1}],[13,{"n":5,"e":7566}],[10,{"n":5.5,"e":7544,"s":1}],[4,{"n":4.5,"e":7502}],[1,{"n":5.5,"e":7493}],[2,{"n":5,"e":7489,"s":1}],[-31,{"n":5,"e":5522,"s":1}],[-32,{"n":5,"e":5509,"s":1}],[27,{"n":4.5,"e":7285,"s":1}],[25,{"n":4.5,"e":7299,"s":1}],[24,{"n":4.5,"e":7638,"s":1}],[22,{"n":4.5,"e":7320,"s":1}],[20,{"n":5.5,"e":7336}],[12,{"n":4.5,"e":7559,"s":1}],[9,{"n":5.5,"e":7539,"s":1}],[8,{"n":5,"e":7532,"s":1}]],"fo":[[7502,[{"t":"Y"}]]]}],[4506,{"n":"Cerri","f":"Alberto","fp":"A","r":8,"c":108,"s":{"s":70,"n":16,"a":4.38,"d":0.43,"Ss":21.5,"Sn":5,"Sa":4.3,"Sd":0.57,"Og":1,"Os":104.5,"On":24,"Oa":4.35,"Od":0.6,"pa":24,"Omsn":6},"p":[[-35,{"n":6,"e":5483,"g":1}],[-34,{"n":5,"e":5488}],[-33,{"n":3,"e":5503}],[-32,{"n":4,"e":5511,"s":1}],[-31,{"n":4.5,"e":5525,"s":1}],[-30,{"n":4,"e":5535}],[29,{"n":3.5,"e":7272}],[28,{"n":4,"e":8247,"s":1}],[-28,{"n":4,"e":5553}],[27,{"n":4.5,"e":7285,"s":1}],[-27,{"n":4,"e":5565,"s":1}],[26,{"n":4.5,"e":7296,"s":1}],[25,{"n":5,"e":7299,"s":1}],[23,{"n":4.5,"e":7314,"s":1}],[22,{"n":4.5,"e":7320,"s":1}],[21,{"n":4.5,"e":7331,"s":1}],[19,{"n":4,"e":7341,"s":1}],[18,{"n":5,"e":7350,"s":1}],[17,{"n":4.5,"e":7356,"s":1}],[12,{"n":4,"e":7399}],[11,{"n":4.5,"e":7396,"s":1}],[10,{"n":4,"e":7412,"s":1}],[9,{"n":5,"e":7539,"s":1}],[6,{"n":4,"e":7435,"s":1}]],"fo":[[7299,[{"t":"Y"}]]]}],[4510,{"n":"Calabresi","f":"Arturo","fp":"DC","r":5,"c":108,"s":{"s":10,"n":2,"a":5,"Os":14,"On":3,"Oa":4.67,"Od":0.58,"pd":3},"p":[[-28,{"n":4,"e":3651}],[26,{"n":5,"e":7296,"s":1}],[16,{"n":5,"e":7364,"s":1}]]}],[4529,{"n":"Rugani","f":"Daniele","fp":"DC","r":12,"c":108,"s":{"g":1,"s":43.5,"n":9,"a":4.83,"d":0.79,"Sg":1,"Ss":43.5,"Sn":9,"Sa":4.83,"Sd":0.79,"Og":1,"Os":78,"On":17,"Oa":4.59,"Od":0.73,"pd":17,"Smsn":6,"Omsn":6},"p":[[7,{"n":5,"e":6139}],[-38,{"n":4,"e":5452}],[-35,{"n":4,"e":5487}],[-34,{"n":5,"e":5492,"s":1}],[-33,{"n":4,"e":5505,"s":1}],[-31,{"n":3.5,"e":5523}],[-37,{"n":4,"e":5458}],[-36,{"n":5,"e":5472,"s":1}],[29,{"n":4,"e":7272}],[28,{"n":6,"e":8247}],[27,{"n":4,"e":7285}],[26,{"n":4.5,"e":7296}],[25,{"n":6,"e":7299,"g":1}],[24,{"n":5,"e":7638}],[23,{"n":5,"e":7314}],[22,{"n":4,"e":7320}],[21,{"n":5,"e":7331}]],"fo":[[6139,[{"t":"Y"}]],[7320,[{"t":"Y"}]],[7638,[{"t":"Y"}]]]}],[4581,{"n":"Duncan","f":"Joseph Alfred","fp":"MD","r":10,"c":108,"s":{"s":67.5,"n":14,"a":4.82,"d":0.8,"Ss":41,"Sn":8,"Sa":5.13,"Sd":0.74,"Og":1,"Os":125,"On":25,"Oa":5,"Od":0.84,"pm":25,"Omsn":6},"p":[[6,{"n":5,"e":7438,"s":1}],[3,{"n":4.5,"e":7456,"s":1}],[1,{"n":5.5,"e":7470}],[-36,{"n":5,"e":5475}],[-33,{"n":6,"e":5500}],[-26,{"n":4.5,"e":5577}],[-38,{"n":6,"e":5456,"g":1}],[-37,{"n":5,"e":5459,"s":1}],[-35,{"n":4,"e":5479}],[-34,{"n":5,"e":5490,"s":1}],[-31,{"n":6.5,"e":5520}],[-30,{"n":4.5,"e":5534}],[29,{"n":4.5,"e":7272}],[-29,{"n":6.5,"e":5540,"s":1}],[28,{"n":4.5,"e":8247}],[-27,{"n":4.5,"e":5560}],[27,{"n":5,"e":7285}],[26,{"n":5,"e":7296}],[25,{"n":6.5,"e":7299}],[24,{"n":6,"e":7638}],[23,{"n":4.5,"e":7314,"s":1}],[22,{"n":5,"e":7320,"s":1}],[19,{"n":4,"e":7341}],[18,{"n":4,"e":7350}],[8,{"n":3.5,"e":7533}]]}],[4590,{"n":"Lykogiannis","f":"Charalampos","fp":"DL","r":10,"c":108,"s":{"g":2,"s":115.5,"n":24,"a":4.81,"d":1.09,"Ss":10,"Sn":2,"Sa":5,"Og":2,"Os":172.5,"On":36,"Oa":4.79,"Od":0.96,"pd":24,"pm":12,"Smsn":7,"Omsn":7},"p":[[-38,{"n":3.5,"e":5454}],[-37,{"n":5,"e":5458,"s":1}],[-36,{"n":4.5,"e":5470}],[-35,{"n":5,"e":5480}],[-33,{"n":3.5,"e":5504}],[-32,{"n":5,"e":5509}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":5.5,"e":5539,"s":1}],[29,{"n":5,"e":7272}],[28,{"n":5,"e":8247}],[-28,{"n":5.5,"e":5549}],[-27,{"n":5,"e":5565,"s":1}],[26,{"n":4.5,"e":7296}],[-25,{"n":5,"e":5587,"s":1}],[24,{"n":6,"e":7638}],[23,{"n":4.5,"e":7314}],[22,{"n":3.5,"e":7320}],[21,{"n":4.5,"e":7331}],[20,{"n":5.5,"e":7336}],[19,{"n":6,"e":7341}],[18,{"n":4,"e":7350}],[17,{"n":5,"e":7356}],[15,{"n":3,"e":7371}],[14,{"n":4,"e":7381}],[13,{"n":7,"e":7385,"g":1}],[12,{"n":5.5,"e":7399}],[11,{"n":4,"e":7396}],[10,{"n":5,"e":7412,"s":1}],[7,{"n":5.5,"e":7429}],[6,{"n":3.5,"e":7435}],[5,{"n":7,"e":7508,"g":1}],[4,{"n":5,"e":7453}],[3,{"n":3,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":5.5,"e":7473}]],"fo":[[7331,[{"t":"I"}]],[7336,[{"t":"I"}]],[7399,[{"t":"I"}]],[7296,[{"t":"Y"}]],[7320,[{"t":"Y"}]],[7371,[{"t":"Y"},{"t":"O"}]],[7435,[{"t":"Y"}]],[7453,[{"t":"Y"}]],[7508,[{"t":"Y"}]],[7638,[{"t":"Y"},{"t":"O"}]]]}],[4605,{"n":"Cragno","f":"Alessio","fp":"G","r":23,"c":108,"s":{"s":157.5,"n":29,"a":5.43,"d":0.92,"Ss":157.5,"Sn":29,"Sa":5.43,"Sd":0.92,"Os":230,"On":41,"Oa":5.61,"Od":1.19,"pg":41},"p":[[-38,{"n":5.5,"e":5454}],[-37,{"n":8,"e":5458}],[-36,{"n":6,"e":5470}],[-35,{"n":8,"e":5480}],[-34,{"n":4.5,"e":5489}],[-33,{"n":3.5,"e":5504}],[-32,{"n":8,"e":5509}],[-31,{"n":7,"e":5520}],[-30,{"n":7.5,"e":5529}],[-29,{"n":5.5,"e":5539}],[29,{"n":4,"e":7272}],[28,{"n":5,"e":8247}],[-28,{"n":5,"e":5549}],[27,{"n":4,"e":7285}],[26,{"n":5,"e":7296}],[25,{"n":7,"e":7299}],[-25,{"n":4,"e":5587}],[24,{"n":6,"e":7638}],[23,{"n":6,"e":7314}],[22,{"n":4.5,"e":7320}],[21,{"n":6.5,"e":7331}],[20,{"n":6,"e":7336}],[19,{"n":6,"e":7341}],[18,{"n":5,"e":7350}],[17,{"n":6,"e":7356}],[16,{"n":4.5,"e":7581}],[15,{"n":4.5,"e":7371}],[14,{"n":5,"e":7381}],[13,{"n":6,"e":7385}],[12,{"n":6,"e":7399}],[11,{"n":7,"e":7396}],[10,{"n":5.5,"e":7412}],[9,{"n":5,"e":7539}],[8,{"n":5,"e":7421}],[7,{"n":6,"e":7429}],[6,{"n":5.5,"e":7435}],[5,{"n":5.5,"e":7508}],[4,{"n":5,"e":7453}],[3,{"n":4,"e":7459}],[2,{"n":4.5,"e":7464}],[1,{"n":7.5,"e":7473}]],"fo":[[7435,[{"t":"Y"}]]]}],[4645,{"n":"João Pedro","f":"","fp":"A","r":44,"c":108,"s":{"g":13,"s":164,"n":29,"a":5.66,"d":1.1,"Sg":13,"Ss":164,"Sn":29,"Sa":5.66,"Sd":1.1,"Og":15,"Os":222.5,"On":40,"Oa":5.56,"Od":1,"pm":13,"pa":27,"Smsn":5.5,"Omsn":5.5},"p":[[-37,{"n":6,"e":5458}],[-36,{"n":4.5,"e":5470}],[-35,{"n":5,"e":5480}],[-34,{"n":6,"e":5489,"g":1}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509}],[-31,{"n":5,"e":5520}],[-30,{"n":4.5,"e":5529}],[-29,{"n":5,"e":5539}],[29,{"n":6,"e":7272}],[28,{"n":4,"e":8247}],[-28,{"n":6.5,"e":5549,"g":1}],[27,{"n":5,"e":7285}],[-27,{"n":5.5,"e":5565}],[26,{"n":6.5,"e":7296,"g":1}],[25,{"n":5.5,"e":7299}],[24,{"n":6,"e":7638,"g":1}],[23,{"n":5,"e":7314}],[22,{"n":4,"e":7320}],[21,{"n":5.5,"e":7331}],[20,{"n":7,"e":7336,"g":1}],[19,{"n":5.5,"e":7341}],[18,{"n":5,"e":7350}],[17,{"n":3,"e":7356}],[16,{"n":6,"e":7581,"g":1}],[15,{"n":5.5,"e":7371,"g":1}],[14,{"n":8,"e":7381,"g":2}],[13,{"n":5,"e":7385}],[12,{"n":5.5,"e":7399}],[11,{"n":5,"e":7396}],[10,{"n":5.5,"e":7412}],[9,{"n":7,"e":7539,"g":1}],[8,{"n":5,"e":7421}],[7,{"n":6.5,"e":7429,"g":1}],[6,{"n":6,"e":7435,"g":1}],[5,{"n":8,"e":7508,"g":1}],[4,{"n":6.5,"e":7453,"g":1}],[3,{"n":6,"e":7459,"g":1}],[2,{"n":4.5,"e":7464}],[1,{"n":6,"e":7473}]],"fo":[[7331,[{"t":"Y"}]],[7435,[{"t":"Y"}]],[8247,[{"t":"Y"}]]],"a":{"m":45,"a":56,"M":73,"n":12}}],[4690,{"n":"Pavoletti","f":"Leonardo","fp":"A","r":11,"c":108,"s":{"g":2,"s":115,"n":25,"a":4.6,"d":0.83,"Ss":8,"Sn":2,"Sa":4,"Sd":0.71,"Og":2,"Os":119.5,"On":26,"Oa":4.6,"Od":0.81,"pa":26,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5454,"s":1}],[29,{"n":4.5,"e":7272,"s":1}],[28,{"n":3.5,"e":8247}],[26,{"n":5.5,"e":7296}],[25,{"n":4.5,"e":7299,"s":1}],[24,{"n":7,"e":7638,"g":1}],[23,{"n":4,"e":7314,"s":1}],[22,{"n":4.5,"e":7320,"s":1}],[21,{"n":4.5,"e":7331}],[20,{"n":4.5,"e":7336,"s":1}],[18,{"n":4.5,"e":7350,"s":1}],[17,{"n":4,"e":7356,"s":1}],[16,{"n":5,"e":7581}],[15,{"n":4.5,"e":7371,"s":1}],[14,{"n":4,"e":7381,"s":1}],[13,{"n":4,"e":7385}],[11,{"n":3.5,"e":7396}],[10,{"n":5.5,"e":7412}],[9,{"n":6,"e":7539,"g":1}],[8,{"n":4,"e":7421,"s":1}],[7,{"n":4.5,"e":7429,"s":1}],[6,{"n":4,"e":7435,"s":1}],[5,{"n":6,"e":7508,"s":1}],[4,{"n":4,"e":7453,"s":1}],[3,{"n":4.5,"e":7459,"s":1}],[2,{"n":4.5,"e":7464,"s":1}]],"fo":[[7296,[{"t":"Y"}]],[7356,[{"t":"Y"}]],[7385,[{"t":"Y"}]],[7396,[{"t":"Y"}]],[7453,[{"t":"Y"}]]]}],[4700,{"n":"Ceppitelli","f":"Luca","fp":"DC","r":11,"c":108,"s":{"s":61,"n":13,"a":4.69,"d":0.97,"Os":95.5,"On":20,"Oa":4.78,"Od":0.92,"pd":20},"p":[[-38,{"n":4,"e":5454}],[-37,{"n":6,"e":5458}],[-36,{"n":5,"e":5470}],[-34,{"n":5.5,"e":5489}],[-29,{"n":5,"e":5539}],[-28,{"n":5.5,"e":5549}],[27,{"n":4,"e":7285}],[26,{"n":4.5,"e":7296}],[-25,{"n":3.5,"e":5587}],[25,{"n":6,"e":7299,"s":1}],[24,{"n":6,"e":7638}],[23,{"n":4.5,"e":7314}],[20,{"n":5,"e":7336}],[19,{"n":5.5,"e":7341}],[18,{"n":4,"e":7350}],[16,{"n":3.5,"e":7581}],[15,{"n":3,"e":7371}],[14,{"n":4,"e":7381}],[13,{"n":5.5,"e":7385,"s":1}],[12,{"n":5.5,"e":7399,"s":1}]],"fo":[[7314,[{"t":"Y"}]],[7350,[{"t":"Y"}]],[7371,[{"t":"Y"}]],[7638,[{"t":"Y"}]]]}],[4756,{"n":"Asamoah","f":"Kwadwo","fp":"DL","r":5,"c":108,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Ss":5,"Sn":1,"Sa":5,"Os":20.5,"On":4,"Oa":5.13,"Od":0.25,"pd":4},"p":[[29,{"n":5,"e":7272,"s":1}],[27,{"n":5.5,"e":7285,"s":1}],[25,{"n":5,"e":7299,"s":1}],[24,{"n":5,"e":7638,"s":1}]]}],[4783,{"n":"Aresti","f":"Simone","fp":"G","r":3,"c":108}],[4786,{"n":"Nainggolan","f":"Radja","fp":"MO","r":17,"c":108,"s":{"g":1,"s":97,"n":18,"a":5.39,"d":0.7,"Sg":1,"Ss":78,"Sn":14,"Sa":5.57,"Sd":0.68,"Og":2,"Os":125,"On":23,"Oa":5.43,"Od":0.71,"pm":14,"pa":9,"Smsn":6,"Omsn":6},"p":[[8,{"n":5,"e":7420,"s":1}],[6,{"n":5,"e":7436,"s":1}],[5,{"n":4.5,"e":7444,"s":1}],[2,{"n":4.5,"e":7465,"s":1}],[-32,{"n":4.5,"e":5509}],[-31,{"n":6,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":6,"e":5539}],[29,{"n":5.5,"e":7272}],[28,{"n":4.5,"e":8247}],[-28,{"n":6.5,"e":5549,"g":1}],[27,{"n":5,"e":7285}],[26,{"n":6,"e":7296,"g":1}],[25,{"n":6,"e":7299}],[24,{"n":7,"e":7638}],[23,{"n":4.5,"e":7314}],[22,{"n":5.5,"e":7320}],[21,{"n":5,"e":7331}],[20,{"n":5.5,"e":7336}],[19,{"n":5.5,"e":7341}],[18,{"n":6,"e":7350}],[17,{"n":6,"e":7356}],[16,{"n":6,"e":7581}]],"fo":[[7336,[{"t":"Y"}]],[8247,[{"t":"Y"}]]],"a":{"m":13,"a":16,"M":21,"n":5}}],[4958,{"n":"Tramoni","f":"Matteo","fp":"MO","r":1,"c":108,"s":{"s":29.5,"n":6,"a":4.92,"d":0.2,"Os":39.5,"On":8,"Oa":4.94,"Od":0.18,"pm":8},"p":[[2,{"n":5,"e":6568,"s":1}],[-28,{"n":5,"e":4788}],[17,{"n":5,"e":7356,"s":1}],[15,{"n":5,"e":7371,"s":1}],[12,{"n":5,"e":7399,"s":1}],[10,{"n":5,"e":7412,"s":1}],[7,{"n":5,"e":7429,"s":1}],[3,{"n":4.5,"e":7459,"s":1}]],"fo":[[7356,[{"t":"Y"}]]]}],[6136,{"n":"Nández","f":"Nahitan","fp":"MD","r":13,"c":108,"s":{"g":1,"s":116.5,"n":23,"a":5.07,"d":1.01,"Ss":43,"Sn":9,"Sa":4.78,"Sd":0.67,"Og":2,"Os":175,"On":35,"Oa":5,"Od":0.91,"pm":35,"Smsn":7.5,"Omsn":6},"p":[[-38,{"n":4,"e":5454}],[-36,{"n":4.5,"e":5470}],[-35,{"n":5,"e":5480}],[-34,{"n":4.5,"e":5489}],[-33,{"n":4.5,"e":5504}],[-32,{"n":6,"e":5509}],[-31,{"n":4.5,"e":5520}],[-30,{"n":5,"e":5529}],[-29,{"n":5,"e":5539}],[29,{"n":4,"e":7272}],[28,{"n":4,"e":8247}],[-28,{"n":6,"e":5549,"g":1}],[-27,{"n":5.5,"e":5565}],[27,{"n":4.5,"e":7285}],[26,{"n":4.5,"e":7296}],[-25,{"n":4,"e":5587}],[25,{"n":5,"e":7299}],[24,{"n":5,"e":7638}],[23,{"n":4.5,"e":7314}],[22,{"n":6,"e":7320}],[21,{"n":5.5,"e":7331}],[19,{"n":5.5,"e":7341}],[16,{"n":6,"e":7581}],[15,{"n":3,"e":7371}],[14,{"n":4,"e":7381}],[13,{"n":6,"e":7385}],[12,{"n":6,"e":7399}],[11,{"n":5,"e":7396,"s":1}],[7,{"n":7.5,"e":7429,"g":1}],[6,{"n":5,"e":7435}],[5,{"n":6,"e":7508}],[4,{"n":6,"e":7453}],[3,{"n":4,"e":7459}],[2,{"n":4,"e":7464}],[1,{"n":5.5,"e":7473}]],"fo":[[7429,[{"t":"I"}]],[7581,[{"t":"R"},{"t":"Y"}]],[7299,[{"t":"Y"}]],[7331,[{"t":"Y"}]],[7341,[{"t":"Y"}]],[7381,[{"t":"Y"}]],[7385,[{"t":"Y"}]]]}],[6348,{"n":"Carboni","f":"Andrea","fp":"DC","r":3,"c":108,"s":{"s":28.5,"n":6,"a":4.75,"d":0.42,"Os":59,"On":13,"Oa":4.54,"Od":0.8,"pd":13},"p":[[-38,{"n":5,"e":5454,"s":1}],[-34,{"n":3,"e":5489}],[-33,{"n":4,"e":5504}],[-30,{"n":3,"e":5529}],[-29,{"n":5.5,"e":5539}],[-28,{"n":5,"e":5549}],[-27,{"n":5,"e":5565,"s":1}],[13,{"n":5,"e":7385}],[12,{"n":5,"e":7399,"s":1}],[11,{"n":4,"e":7396}],[10,{"n":4.5,"e":7412}],[9,{"n":5,"e":7539}],[8,{"n":5,"e":7421,"s":1}]]}],[6525,{"n":"Pereiro","f":"Gastón","fp":"MO","r":6,"c":108,"s":{"g":1,"s":58.5,"n":12,"a":4.88,"d":0.57,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.65,"Og":1,"Os":89,"On":19,"Oa":4.68,"Od":0.58,"pm":16,"pa":3,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5454}],[-37,{"n":4.5,"e":5458,"s":1}],[-36,{"n":4.5,"e":5470,"s":1}],[-34,{"n":4,"e":5489}],[-33,{"n":4.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509,"s":1}],[29,{"n":5.5,"e":7272,"s":1}],[28,{"n":6,"e":8247,"g":1,"s":1}],[27,{"n":5,"e":7285,"s":1}],[26,{"n":4.5,"e":7296,"s":1}],[-25,{"n":3.5,"e":5587}],[23,{"n":4.5,"e":7314,"s":1}],[21,{"n":4.5,"e":7331,"s":1}],[19,{"n":5,"e":7341,"s":1}],[18,{"n":4,"e":7350}],[16,{"n":5.5,"e":7581,"s":1}],[15,{"n":4.5,"e":7371}],[14,{"n":4.5,"e":7381,"s":1}],[13,{"n":5,"e":7385,"s":1}]]}],[6605,{"n":"Del Pupo","f":"Isaias","fp":"MO","r":1,"c":108}],[6607,{"n":"Boccia","f":"Salvatore","fp":"DC","r":1,"c":108}],[7167,{"n":"Vicario","f":"Guglielmo","fp":"G","r":7,"c":108}],[7169,{"n":"Marin","f":"Razvan","fp":"MD","r":14,"c":108,"s":{"g":1,"s":146,"n":29,"a":5.03,"d":0.78,"Sg":1,"Ss":146,"Sn":29,"Sa":5.03,"Sd":0.78,"Og":1,"Os":146,"On":29,"Oa":5.03,"Od":0.78,"pm":29,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":4.5,"e":7272,"s":1}],[28,{"n":6,"e":8247}],[27,{"n":4,"e":7285}],[26,{"n":4.5,"e":7296}],[25,{"n":6,"e":7299}],[24,{"n":5.5,"e":7638}],[23,{"n":5.5,"e":7314}],[22,{"n":5,"e":7320}],[21,{"n":4.5,"e":7331}],[20,{"n":7,"e":7336}],[19,{"n":6,"e":7341}],[18,{"n":4.5,"e":7350}],[17,{"n":5,"e":7356}],[16,{"n":5,"e":7581}],[15,{"n":3.5,"e":7371}],[14,{"n":4.5,"e":7381}],[13,{"n":5,"e":7385}],[12,{"n":5,"e":7399,"s":1}],[11,{"n":5.5,"e":7396}],[10,{"n":6.5,"e":7412,"g":1}],[9,{"n":5.5,"e":7539}],[8,{"n":4.5,"e":7421}],[7,{"n":4,"e":7429}],[6,{"n":5,"e":7435}],[5,{"n":5.5,"e":7508}],[4,{"n":5,"e":7453}],[3,{"n":4.5,"e":7459}],[2,{"n":4.5,"e":7464}],[1,{"n":4.5,"e":7473}]],"fo":[[7336,[{"t":"Y"}]],[7508,[{"t":"Y"}]]]}],[7227,{"n":"Conti","f":"Bruno","fp":"MO","r":1,"c":108}],[7346,{"n":"Zito","f":"","fp":"A","r":1,"c":108}],[7545,{"n":"Contini","f":"Gianluca","fp":"A","r":1,"c":108}],[7548,{"n":"Cusumano","f":"Francesco","fp":"DC","r":1,"c":108}],[178,{"n":"Ounas","f":"Adam","fp":"MO","r":13,"c":139,"s":{"g":2,"s":72,"n":14,"a":5.14,"d":1.15,"Ss":3.5,"Sn":1,"Sa":3.5,"Og":2,"Os":78,"On":15,"Oa":5.2,"Od":1.13,"pm":2,"pa":13,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":3.5,"e":8255}],[27,{"n":5,"e":7700}],[26,{"n":8,"e":7652,"g":1}],[23,{"n":4,"e":7632}],[22,{"n":6.5,"e":7624,"g":1}],[21,{"n":5,"e":7615}],[-28,{"n":6,"e":3653}],[24,{"n":6,"e":7638}],[17,{"n":4,"e":7356,"s":1}],[9,{"n":5.5,"e":7539}],[8,{"n":4.5,"e":7421}],[7,{"n":5.5,"e":7429}],[6,{"n":5,"e":7435,"s":1}],[5,{"n":5,"e":7508,"s":1}],[4,{"n":4.5,"e":7453,"s":1}]],"fo":[[7652,[{"t":"Y"}]]]}],[404,{"n":"Djidji","f":"Koffi","fp":"DC","r":7,"c":139,"s":{"s":49.5,"n":11,"a":4.5,"d":0.84,"Ss":11.5,"Sn":3,"Sa":3.83,"Sd":0.76,"Oao":1,"Os":73,"On":16,"Oa":4.56,"Od":0.77,"pd":16},"p":[[20,{"n":5,"e":7608,"s":1}],[19,{"n":3.5,"e":7606}],[17,{"n":4.5,"e":7594}],[15,{"n":5,"e":7575,"s":1}],[13,{"n":5,"e":7564,"s":1}],[-37,{"n":4,"e":5465,"s":1}],[-38,{"n":5.5,"e":5449}],[-31,{"n":5,"e":5526,"s":1}],[-30,{"n":4,"e":5531,"a":1,"s":1}],[29,{"n":4,"e":8255}],[-29,{"n":5,"e":5546,"s":1}],[28,{"n":3,"e":8246}],[27,{"n":4.5,"e":7700,"s":1}],[22,{"n":5,"e":7624}],[21,{"n":4,"e":7615}],[18,{"n":6,"e":7597}]],"fo":[[7594,[{"t":"Y"}]],[7700,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[1529,{"n":"Rivière","f":"Emmanuel","fp":"A","r":7,"c":139,"s":{"g":1,"s":76,"n":17,"a":4.47,"d":0.62,"Og":1,"Os":76,"On":17,"Oa":4.47,"Od":0.62,"pa":17,"Smsn":6,"Omsn":6},"p":[[16,{"n":4.5,"e":7582,"s":1}],[14,{"n":4,"e":7568}],[12,{"n":4,"e":7557}],[11,{"n":4.5,"e":7552,"s":1}],[8,{"n":4.5,"e":7531,"s":1}],[1,{"n":6,"e":7491,"g":1}],[28,{"n":4,"e":8246,"s":1}],[25,{"n":4,"e":7645}],[23,{"n":4,"e":7632,"s":1}],[22,{"n":4.5,"e":7624,"s":1}],[21,{"n":4.5,"e":7615,"s":1}],[20,{"n":4.5,"e":7608,"s":1}],[18,{"n":6,"e":7597}],[17,{"n":4,"e":7594}],[15,{"n":4,"e":7575}],[13,{"n":4.5,"e":7564,"s":1}],[5,{"n":4.5,"e":7508,"s":1}]],"fo":[[7645,[{"t":"Y"}]]]}],[4316,{"n":"Reca","f":"Arkadiusz","fp":"DL","r":11,"c":139,"s":{"g":2,"s":109,"n":24,"a":4.54,"d":1.01,"Og":2,"Os":141,"On":32,"Oa":4.41,"Od":1,"pd":12,"pm":20,"Smsn":6,"Omsn":6},"p":[[10,{"n":3.5,"e":7546}],[7,{"n":5,"e":7526}],[4,{"n":5,"e":7501}],[3,{"n":3,"e":7485}],[2,{"n":5,"e":7490,"s":1}],[-35,{"n":2.5,"e":5483,"s":1}],[-34,{"n":5,"e":5488}],[-33,{"n":4,"e":5503}],[-32,{"n":3,"e":5511}],[-31,{"n":5,"e":5525,"s":1}],[-28,{"n":4.5,"e":5553}],[-27,{"n":4.5,"e":5565,"s":1}],[27,{"n":4.5,"e":7700}],[-26,{"n":3.5,"e":5574}],[26,{"n":6,"e":7652,"g":1}],[25,{"n":4.5,"e":7645}],[24,{"n":5,"e":7638,"s":1}],[23,{"n":3.5,"e":7632}],[22,{"n":5,"e":7624}],[20,{"n":3,"e":7608}],[19,{"n":4,"e":7606}],[17,{"n":4.5,"e":7594}],[16,{"n":4.5,"e":7582}],[15,{"n":3,"e":7575}],[14,{"n":6.5,"e":7568}],[13,{"n":4.5,"e":7564}],[12,{"n":5,"e":7557}],[11,{"n":7,"e":7552,"g":1}],[9,{"n":4,"e":7538}],[8,{"n":4.5,"e":7531}],[6,{"n":4,"e":7518}],[5,{"n":4.5,"e":7508}]],"fo":[[7700,[{"t":"I"}]],[7501,[{"t":"Y"}]],[7546,[{"t":"Y"}]],[7568,[{"t":"Y"}]],[7575,[{"t":"Y"}]],[7594,[{"t":"Y"}]],[7608,[{"t":"Y"}]]]}],[4415,{"n":"Petriccione","f":"Jacopo","fp":"MD","r":10,"c":139,"s":{"s":69,"n":15,"a":4.6,"d":0.51,"Os":123,"On":26,"Oa":4.73,"Od":0.78,"pm":26},"p":[[-30,{"n":4,"e":5536}],[-28,{"n":5.5,"e":5550}],[-38,{"n":4,"e":5453,"s":1}],[-37,{"n":5,"e":5466}],[-36,{"n":6,"e":5468,"s":1}],[-34,{"n":4.5,"e":5491}],[-33,{"n":4,"e":5500}],[-32,{"n":5.5,"e":5509}],[-31,{"n":7,"e":5522}],[-29,{"n":5,"e":5543,"s":1}],[28,{"n":4.5,"e":8246}],[27,{"n":4.5,"e":7700}],[-27,{"n":3.5,"e":5563}],[26,{"n":5,"e":7652}],[25,{"n":5,"e":7645,"s":1}],[22,{"n":5,"e":7624}],[21,{"n":5,"e":7615,"s":1}],[18,{"n":4.5,"e":7597,"s":1}],[14,{"n":4.5,"e":7568,"s":1}],[13,{"n":3.5,"e":7564}],[12,{"n":5,"e":7557}],[10,{"n":3.5,"e":7546}],[9,{"n":4.5,"e":7538}],[8,{"n":4.5,"e":7531}],[7,{"n":5,"e":7526,"s":1}],[4,{"n":5,"e":7501,"s":1}]],"fo":[[7546,[{"t":"R"}]],[7538,[{"t":"Y"}]],[7557,[{"t":"Y"}]],[7652,[{"t":"Y"}]],[7700,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[4475,{"n":"Luperto","f":"Sebastiano","fp":"DC","r":10,"c":139,"s":{"s":87.5,"n":21,"a":4.17,"d":0.87,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":87.5,"On":21,"Oa":4.17,"Od":0.87,"pd":21},"p":[[29,{"n":3.5,"e":8255}],[27,{"n":4,"e":7700}],[26,{"n":5,"e":7652}],[25,{"n":2.5,"e":7645}],[24,{"n":4.5,"e":7638}],[23,{"n":4,"e":7632}],[22,{"n":5,"e":7624}],[21,{"n":3.5,"e":7615}],[19,{"n":4,"e":7606}],[18,{"n":5,"e":7597,"s":1}],[17,{"n":4.5,"e":7594}],[15,{"n":3,"e":7575}],[14,{"n":5,"e":7568}],[13,{"n":4,"e":7564}],[11,{"n":5,"e":7552}],[10,{"n":3,"e":7546}],[9,{"n":5.5,"e":7538}],[7,{"n":5,"e":7526}],[6,{"n":3.5,"e":7518}],[5,{"n":3,"e":7508}],[4,{"n":5,"e":7501}]],"fo":[[7501,[{"t":"I"}]],[7526,[{"t":"Y"},{"t":"O"}]],[7538,[{"t":"Y"}]],[7568,[{"t":"Y"}]],[7575,[{"t":"Y"}]]]}],[4708,{"n":"Marrone","f":"Luca","fp":"DC","r":7,"c":139,"s":{"ao":1,"s":71.5,"n":18,"a":3.97,"d":0.99,"Ss":5,"Sn":1,"Sa":5,"Oao":1,"Os":71.5,"On":18,"Oa":3.97,"Od":0.99,"pd":18},"p":[[29,{"n":5,"e":8255,"s":1}],[25,{"n":4.5,"e":7645,"s":1}],[23,{"n":5,"e":7632,"s":1}],[20,{"n":3.5,"e":7608}],[19,{"n":4,"e":7606}],[15,{"n":2,"e":7575,"a":1}],[13,{"n":3,"e":7564}],[12,{"n":5.5,"e":7557}],[11,{"n":5.5,"e":7552}],[10,{"n":3,"e":7546}],[9,{"n":4,"e":7538}],[8,{"n":4,"e":7531}],[7,{"n":5,"e":7526}],[6,{"n":3.5,"e":7518}],[4,{"n":4.5,"e":7501}],[3,{"n":3,"e":7485}],[2,{"n":3.5,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7518,[{"t":"Y"}]],[7531,[{"t":"Y"}]],[7538,[{"t":"Y"}]],[7564,[{"t":"Y"}]],[7632,[{"t":"Y"}]]]}],[4792,{"n":"Di Carmine","f":"Samuel","fp":"A","r":9,"c":139,"s":{"s":84.5,"n":20,"a":4.22,"d":0.6,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.75,"Og":5,"Os":138.5,"On":31,"Oa":4.47,"Od":1.06,"pa":31,"Omsn":6},"p":[[19,{"n":5,"e":7347,"s":1}],[16,{"n":4.5,"e":7369,"s":1}],[12,{"n":4,"e":7400}],[8,{"n":4,"e":7426}],[2,{"n":4,"e":7467}],[1,{"n":4,"e":7471}],[-30,{"n":4,"e":5528}],[-38,{"n":3.5,"e":5451}],[-37,{"n":7.5,"e":5467,"g":2}],[-36,{"n":4.5,"e":5477,"s":1}],[-34,{"n":4,"e":5497,"s":1}],[-32,{"n":4,"e":5510}],[-31,{"n":4.5,"e":5527,"s":1}],[-29,{"n":6,"e":5547,"g":1}],[29,{"n":4.5,"e":8255,"s":1}],[28,{"n":6,"e":8246}],[27,{"n":4.5,"e":7700,"s":1}],[-27,{"n":4,"e":5567}],[-26,{"n":4,"e":5575}],[26,{"n":4.5,"e":7652,"s":1}],[-25,{"n":8,"e":5587,"g":2}],[24,{"n":3.5,"e":7638}],[23,{"n":3.5,"e":7632}],[22,{"n":4,"e":7624}],[21,{"n":3.5,"e":7615}],[20,{"n":4,"e":7608}],[18,{"n":4.5,"e":7349,"s":1}],[17,{"n":4,"e":7594,"s":1}],[10,{"n":4.5,"e":7412}],[9,{"n":3.5,"e":7413}],[6,{"n":4.5,"e":7520,"s":1}]],"fo":[[7638,[{"t":"Y"}]]]}],[4816,{"n":"Cigarini","f":"Luca","fp":"MD","r":1,"c":139,"s":{"s":26,"n":6,"a":4.33,"d":1.03,"Os":34,"On":8,"Oa":4.25,"Od":0.93,"pm":8},"p":[[-28,{"n":4.5,"e":5549,"s":1}],[-25,{"n":3.5,"e":5587}],[7,{"n":4.5,"e":7526}],[5,{"n":3.5,"e":7508}],[4,{"n":4.5,"e":7501}],[3,{"n":4.5,"e":7485}],[2,{"n":6,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7501,[{"t":"Y"}]],[7508,[{"t":"Y"},{"t":"O"}]]]}],[6138,{"n":"Rispoli","f":"Andrea","fp":"DL","r":8,"c":139,"s":{"s":81.5,"n":18,"a":4.53,"d":0.67,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":0.58,"Os":119,"On":26,"Oa":4.58,"Od":0.74,"pd":21,"pm":5},"p":[[-36,{"n":5,"e":5468,"s":1}],[-35,{"n":5.5,"e":5481}],[-33,{"n":3,"e":5500}],[-32,{"n":5,"e":5509,"s":1}],[-31,{"n":5.5,"e":5522,"s":1}],[-29,{"n":5,"e":5543}],[29,{"n":3.5,"e":8255}],[28,{"n":4.5,"e":8246,"s":1}],[-28,{"n":5,"e":5550}],[-27,{"n":3.5,"e":5563}],[27,{"n":4.5,"e":7700,"s":1}],[25,{"n":3.5,"e":7645,"s":1}],[24,{"n":4.5,"e":7638}],[23,{"n":5.5,"e":7632,"s":1}],[22,{"n":5,"e":7624,"s":1}],[21,{"n":3,"e":7615}],[20,{"n":4.5,"e":7608,"s":1}],[18,{"n":5.5,"e":7597}],[8,{"n":4,"e":7531}],[7,{"n":5,"e":7526,"s":1}],[6,{"n":5,"e":7518,"s":1}],[5,{"n":4.5,"e":7508,"s":1}],[4,{"n":5,"e":7501,"s":1}],[3,{"n":4.5,"e":7485,"s":1}],[2,{"n":5,"e":7490,"s":1}],[1,{"n":4.5,"e":7491,"s":1}]],"fo":[[7531,[{"t":"Y"}]],[7615,[{"t":"Y"}]],[7700,[{"t":"Y"}]],[8255,[{"t":"Y"}]]]}],[6238,{"n":"Magallán","f":"Lisandro","fp":"DC","r":9,"c":139,"s":{"s":84,"n":21,"a":4,"d":0.92,"Os":109.5,"On":27,"Oa":4.06,"Od":1.11,"pd":27},"p":[[-38,{"n":2,"e":4308}],[-37,{"n":5,"e":4324,"s":1}],[-34,{"n":4.5,"e":4355}],[-33,{"n":3,"e":4358}],[-30,{"n":4,"e":4390}],[-29,{"n":7,"e":4398}],[27,{"n":4,"e":7700}],[26,{"n":4,"e":7652}],[25,{"n":3,"e":7645}],[24,{"n":3.5,"e":7638}],[23,{"n":4,"e":7632}],[20,{"n":3.5,"e":7608}],[18,{"n":5.5,"e":7597}],[16,{"n":3.5,"e":7582}],[15,{"n":4.5,"e":7575,"s":1}],[14,{"n":5,"e":7568,"s":1}],[13,{"n":3,"e":7564}],[11,{"n":5,"e":7552}],[9,{"n":4,"e":7538}],[8,{"n":4,"e":7531}],[7,{"n":5.5,"e":7526}],[6,{"n":3.5,"e":7518}],[5,{"n":2,"e":7508}],[4,{"n":5,"e":7501}],[3,{"n":3.5,"e":7485}],[2,{"n":5,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7501,[{"t":"Y"}]],[7508,[{"t":"Y"}]],[7538,[{"t":"Y"}]],[7552,[{"t":"Y"}]],[7582,[{"t":"Y"}]],[7638,[{"t":"Y"}]],[7645,[{"t":"Y"}]]]}],[6930,{"n":"Ranieri","f":"Antonio","fp":"MO","r":1,"c":139}],[6938,{"n":"D'Alterio","f":"Francesco","fp":"G","r":1,"c":139}],[6940,{"n":"Yakubiv","f":"Sergio","fp":"DC","r":1,"c":139}],[6965,{"n":"Messias","f":"Junior","fp":"A","r":16,"c":139,"s":{"g":8,"s":148,"n":28,"a":5.29,"d":1.37,"Sg":2,"Ss":44.5,"Sn":8,"Sa":5.56,"Sd":1.57,"Og":8,"Os":148,"On":28,"Oa":5.29,"Od":1.37,"pm":9,"pa":19,"Smsn":6,"Omsn":6},"p":[[29,{"n":6.5,"e":8255,"g":1}],[28,{"n":8,"e":8246,"g":1}],[27,{"n":6,"e":7700}],[26,{"n":6.5,"e":7652}],[25,{"n":3,"e":7645}],[24,{"n":4,"e":7638}],[23,{"n":5.5,"e":7632}],[22,{"n":5,"e":7624}],[20,{"n":4,"e":7608}],[19,{"n":5.5,"e":7606}],[18,{"n":7,"e":7597}],[17,{"n":6,"e":7594,"g":1}],[16,{"n":6.5,"e":7582}],[15,{"n":4.5,"e":7575}],[14,{"n":8,"e":7568,"g":2}],[13,{"n":4,"e":7564}],[12,{"n":5,"e":7557}],[11,{"n":7.5,"e":7552,"g":2}],[10,{"n":4,"e":7546}],[9,{"n":4.5,"e":7538}],[8,{"n":5,"e":7531}],[7,{"n":5,"e":7526}],[6,{"n":4.5,"e":7518}],[5,{"n":6.5,"e":7508,"g":1}],[4,{"n":4.5,"e":7501}],[3,{"n":4,"e":7485}],[2,{"n":3.5,"e":7490}],[1,{"n":4,"e":7491}]],"fo":[[7606,[{"t":"I"}]],[7552,[{"t":"Y"}]],[7557,[{"t":"Y"}]],[7564,[{"t":"Y"}]],[7597,[{"t":"Y"}]],[7608,[{"t":"Y"}]]],"a":{"m":22,"a":33,"M":44,"n":11}}],[6972,{"n":"Cuomo","f":"Giuseppe","fp":"DC","r":6,"c":139,"s":{"s":42.5,"n":10,"a":4.25,"d":1.06,"Os":42.5,"On":10,"Oa":4.25,"Od":1.06,"pd":10},"p":[[28,{"n":3.5,"e":8246}],[25,{"n":4.5,"e":7645,"s":1}],[16,{"n":3.5,"e":7582}],[14,{"n":4.5,"e":7568}],[12,{"n":5,"e":7557}],[11,{"n":5.5,"e":7552,"s":1}],[10,{"n":2.5,"e":7546}],[9,{"n":5.5,"e":7538,"s":1}],[8,{"n":3,"e":7531}],[7,{"n":5,"e":7526,"s":1}]],"fo":[[7531,[{"t":"Y"}]],[7546,[{"t":"Y"}]],[7568,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[6979,{"n":"Zanellato","f":"Niccolò","fp":"MO","r":9,"c":139,"s":{"g":1,"s":83,"n":19,"a":4.37,"d":0.62,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":83,"On":19,"Oa":4.37,"Od":0.62,"pm":19,"Smsn":4.5,"Omsn":4.5},"p":[[29,{"n":4.5,"e":8255}],[26,{"n":4.5,"e":7652,"s":1}],[25,{"n":3.5,"e":7645}],[24,{"n":4.5,"e":7638,"s":1}],[23,{"n":4.5,"e":7632,"s":1}],[22,{"n":4.5,"e":7624}],[21,{"n":3.5,"e":7615}],[20,{"n":3.5,"e":7608}],[19,{"n":4,"e":7606}],[18,{"n":5.5,"e":7597}],[17,{"n":5,"e":7594}],[16,{"n":4.5,"e":7582}],[15,{"n":4.5,"e":7575,"g":1}],[14,{"n":5.5,"e":7568}],[12,{"n":5,"e":7557,"s":1}],[11,{"n":4.5,"e":7552}],[6,{"n":4,"e":7518}],[2,{"n":4,"e":7490}],[1,{"n":3.5,"e":7491}]],"fo":[[7606,[{"t":"Y"}]],[7652,[{"t":"Y"}]]]}],[6994,{"n":"Golemic","f":"Vladimir","fp":"DC","r":10,"c":139,"s":{"g":2,"s":92,"n":23,"a":4,"d":1.02,"Sg":2,"Ss":64,"Sn":16,"Sa":4,"Sd":0.91,"Og":2,"Os":92,"On":23,"Oa":4,"Od":1.02,"pd":23,"Smsn":3.5,"Omsn":3.5},"p":[[29,{"n":3,"e":8255}],[28,{"n":3.5,"e":8246}],[27,{"n":4,"e":7700}],[26,{"n":5,"e":7652}],[25,{"n":3,"e":7645}],[24,{"n":5,"e":7638}],[23,{"n":3.5,"e":7632}],[22,{"n":3.5,"e":7624}],[21,{"n":3,"e":7615}],[20,{"n":3,"e":7608}],[19,{"n":5,"e":7606,"s":1}],[18,{"n":6,"e":7597}],[17,{"n":4,"e":7594}],[16,{"n":4.5,"e":7582,"g":1}],[15,{"n":3.5,"e":7575,"g":1}],[14,{"n":4.5,"e":7568}],[12,{"n":5.5,"e":7557}],[9,{"n":5,"e":7538,"s":1}],[5,{"n":3,"e":7508}],[4,{"n":5,"e":7501,"s":1}],[3,{"n":3,"e":7485}],[2,{"n":4.5,"e":7490}],[1,{"n":2,"e":7491}]],"fo":[[7568,[{"t":"Y"}]],[7575,[{"t":"Y"}]],[7582,[{"t":"Y"}]],[8246,[{"t":"Y"}]]]}],[6995,{"n":"Romero","f":"Aristóteles","fp":"MD","r":1,"c":139}],[7006,{"n":"Simy","f":"","fp":"A","r":21,"c":139,"s":{"g":15,"s":141.5,"n":29,"a":4.88,"d":1.29,"Sg":15,"Ss":141.5,"Sn":29,"Sa":4.88,"Sd":1.29,"Og":15,"Os":141.5,"On":29,"Oa":4.88,"Od":1.29,"pa":29,"Smsn":4.5,"Omsn":4.5},"p":[[29,{"n":7.5,"e":8255,"g":2}],[28,{"n":5,"e":8246,"g":1}],[27,{"n":7,"e":7700,"g":2}],[26,{"n":7,"e":7652,"g":2}],[25,{"n":5.5,"e":7645,"g":1}],[24,{"n":4,"e":7638,"s":1}],[23,{"n":5,"e":7632,"s":1}],[22,{"n":4.5,"e":7624,"s":1}],[21,{"n":4.5,"e":7615,"s":1}],[20,{"n":4,"e":7608}],[19,{"n":6,"e":7606,"g":1}],[18,{"n":8,"e":7597,"g":2}],[17,{"n":4,"e":7594,"s":1}],[16,{"n":3,"e":7582}],[15,{"n":4.5,"e":7575,"s":1}],[14,{"n":4.5,"e":7568,"s":1}],[13,{"n":4.5,"e":7564,"g":1}],[12,{"n":4,"e":7557}],[11,{"n":5,"e":7552}],[10,{"n":3.5,"e":7546}],[9,{"n":4.5,"e":7538}],[8,{"n":4,"e":7531}],[7,{"n":4.5,"e":7526}],[6,{"n":5.5,"e":7518,"g":1}],[5,{"n":5,"e":7508}],[4,{"n":6,"e":7501,"g":1}],[3,{"n":5,"e":7485,"g":1}],[2,{"n":3,"e":7490}],[1,{"n":3,"e":7491}]]}],[7013,{"n":"Molina","f":"Salvatore","fp":"MD","r":9,"c":139,"s":{"g":1,"s":97.5,"n":20,"a":4.88,"d":1.01,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.96,"Og":1,"Os":97.5,"On":20,"Oa":4.88,"Od":1.01,"pm":20,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":3.5,"e":8255}],[28,{"n":4.5,"e":8246}],[27,{"n":5.5,"e":7700}],[26,{"n":5.5,"e":7652}],[24,{"n":5,"e":7638}],[23,{"n":3.5,"e":7632}],[17,{"n":4,"e":7594}],[16,{"n":5,"e":7582}],[15,{"n":3,"e":7575}],[14,{"n":6.5,"e":7568}],[13,{"n":4.5,"e":7564}],[12,{"n":6,"e":7557}],[11,{"n":6.5,"e":7552}],[10,{"n":4,"e":7546}],[9,{"n":5,"e":7538}],[5,{"n":6.5,"e":7508,"g":1}],[4,{"n":5,"e":7501}],[3,{"n":4.5,"e":7485}],[2,{"n":5,"e":7490}],[1,{"n":4.5,"e":7491}]],"fo":[[7638,[{"t":"I"}]]]}],[7014,{"n":"Festa","f":"Marco","fp":"G","r":7,"c":139}],[7018,{"n":"Benali","f":"Ahmad","fp":"MO","r":5,"c":139,"s":{"s":52,"n":11,"a":4.73,"d":0.72,"Ss":15,"Sn":3,"Sa":5,"Os":52,"On":11,"Oa":4.73,"Od":0.72,"pm":11},"p":[[29,{"n":5,"e":8255}],[28,{"n":5,"e":8246}],[27,{"n":5,"e":7700,"s":1}],[21,{"n":3.5,"e":7615}],[20,{"n":4,"e":7608}],[19,{"n":5,"e":7606,"s":1}],[10,{"n":4.5,"e":7546}],[8,{"n":5.5,"e":7531}],[7,{"n":6,"e":7526}],[6,{"n":4.5,"e":7518}],[5,{"n":4,"e":7508}]],"fo":[[7615,[{"t":"I"}]],[7508,[{"t":"Y"}]],[8255,[{"t":"Y"}]]]}],[7025,{"n":"Mazzotta","f":"Antonio","fp":"DL","r":1,"c":139,"s":{"s":8,"n":2,"a":4,"d":1.41,"Os":8,"On":2,"Oa":4,"Od":1.41,"pd":1,"pm":1},"p":[[18,{"n":5,"e":7597,"s":1}],[1,{"n":3,"e":7491}]]}],[7038,{"n":"Cordaz","f":"Alex","fp":"G","r":12,"c":139,"s":{"s":135.5,"n":29,"a":4.67,"d":1.23,"Ss":135.5,"Sn":29,"Sa":4.67,"Sd":1.23,"Os":135.5,"On":29,"Oa":4.67,"Od":1.23,"pg":29},"p":[[29,{"n":4.5,"e":8255}],[28,{"n":5.5,"e":8246}],[27,{"n":4.5,"e":7700}],[26,{"n":5,"e":7652}],[25,{"n":4,"e":7645}],[24,{"n":4,"e":7638}],[23,{"n":5,"e":7632}],[22,{"n":5,"e":7624}],[21,{"n":4,"e":7615}],[20,{"n":3.5,"e":7608}],[19,{"n":5.5,"e":7606}],[18,{"n":6,"e":7597}],[17,{"n":5,"e":7594}],[16,{"n":4,"e":7582}],[15,{"n":2.5,"e":7575}],[14,{"n":7,"e":7568}],[13,{"n":3,"e":7564}],[12,{"n":7,"e":7557}],[11,{"n":6,"e":7552}],[10,{"n":3.5,"e":7546}],[9,{"n":6.5,"e":7538}],[8,{"n":5,"e":7531}],[7,{"n":5.5,"e":7526}],[6,{"n":4,"e":7518}],[5,{"n":4,"e":7508}],[4,{"n":4.5,"e":7501}],[3,{"n":2.5,"e":7485}],[2,{"n":6,"e":7490}],[1,{"n":3,"e":7491}]],"fo":[[7652,[{"t":"Y"}]]]}],[7183,{"n":"Crespi","f":"Gian Marco","fp":"G","r":3,"c":139}],[7192,{"n":"Vulic","f":"Milos","fp":"MO","r":8,"c":139,"s":{"g":1,"s":108,"n":23,"a":4.7,"d":0.88,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":1,"Os":108,"On":23,"Oa":4.7,"Od":0.88,"pm":23,"Smsn":7,"Omsn":7},"p":[[29,{"n":5,"e":8255,"s":1}],[28,{"n":4.5,"e":8246,"s":1}],[24,{"n":4.5,"e":7638}],[23,{"n":5.5,"e":7632}],[22,{"n":5,"e":7624,"s":1}],[21,{"n":2.5,"e":7615}],[19,{"n":4,"e":7606}],[18,{"n":7,"e":7597,"g":1}],[17,{"n":3.5,"e":7594}],[16,{"n":5,"e":7582,"s":1}],[15,{"n":5,"e":7575,"s":1}],[14,{"n":6,"e":7568}],[13,{"n":4.5,"e":7564,"s":1}],[11,{"n":5,"e":7552,"s":1}],[10,{"n":4.5,"e":7546,"s":1}],[9,{"n":4.5,"e":7538}],[8,{"n":4.5,"e":7531}],[7,{"n":5,"e":7526}],[6,{"n":4.5,"e":7518}],[5,{"n":5,"e":7508,"s":1}],[4,{"n":4.5,"e":7501}],[3,{"n":3.5,"e":7485}],[2,{"n":5,"e":7490,"s":1}]],"fo":[[7526,[{"t":"Y"}]],[7624,[{"t":"Y"}]]]}],[7229,{"n":"Rojas","f":"Luis","fp":"MO","r":5,"c":139,"s":{"s":24,"n":5,"a":4.8,"d":0.27,"Ss":5,"Sn":1,"Sa":5,"Os":24,"On":5,"Oa":4.8,"Od":0.27,"pm":5},"p":[[29,{"n":5,"e":8255,"s":1}],[19,{"n":4.5,"e":7606,"s":1}],[18,{"n":5,"e":7597,"s":1}],[15,{"n":4.5,"e":7575,"s":1}],[13,{"n":5,"e":7564,"s":1}]],"fo":[[8255,[{"t":"Y"}]]]}],[7235,{"n":"Eduardo Henrique","f":"","fp":"MD","r":8,"c":139,"s":{"g":1,"s":64.5,"n":15,"a":4.3,"d":0.84,"Og":1,"Os":64.5,"On":15,"Oa":4.3,"Od":0.84,"pm":15,"Smsn":6,"Omsn":6},"p":[[25,{"n":3.5,"e":7645}],[24,{"n":4.5,"e":7638,"s":1}],[21,{"n":5,"e":7615,"s":1}],[20,{"n":4.5,"e":7608,"s":1}],[19,{"n":4,"e":7606}],[18,{"n":5,"e":7597,"s":1}],[17,{"n":4,"e":7594}],[16,{"n":4,"e":7582}],[15,{"n":3,"e":7575}],[13,{"n":3.5,"e":7564}],[12,{"n":5,"e":7557,"s":1}],[11,{"n":6,"e":7552,"g":1}],[10,{"n":5,"e":7546,"s":1}],[2,{"n":3,"e":7490,"s":1}],[1,{"n":4.5,"e":7491,"s":1}]],"fo":[[7552,[{"t":"Y"}]],[7557,[{"t":"Y"}]],[7608,[{"t":"Y"}]]]}],[7291,{"n":"Dragus","f":"Denis","fp":"A","r":3,"c":139,"s":{"s":29.5,"n":7,"a":4.21,"d":0.39,"Os":29.5,"On":7,"Oa":4.21,"Od":0.39,"pa":7},"p":[[17,{"n":4,"e":7594,"s":1}],[12,{"n":4,"e":7557,"s":1}],[10,{"n":4.5,"e":7546,"s":1}],[9,{"n":4.5,"e":7538,"s":1}],[8,{"n":4.5,"e":7531,"s":1}],[3,{"n":4.5,"e":7485,"s":1}],[2,{"n":3.5,"e":7490}]],"fo":[[7557,[{"t":"Y"}]]]}],[7332,{"n":"Amerise","f":"Andrea","fp":"DC","r":1,"c":139}],[7337,{"n":"Pedro Pereira","f":"","fp":"DL","r":10,"c":139,"s":{"s":119.5,"n":28,"a":4.27,"d":1,"Ss":119.5,"Sn":28,"Sa":4.27,"Sd":1,"Os":119.5,"On":28,"Oa":4.27,"Od":1,"pd":6,"pm":22},"p":[[29,{"n":4.5,"e":8255,"s":1}],[28,{"n":4.5,"e":8246}],[27,{"n":4,"e":7700}],[26,{"n":5,"e":7652}],[25,{"n":3,"e":7645}],[24,{"n":5,"e":7638}],[23,{"n":4,"e":7632}],[22,{"n":5.5,"e":7624}],[21,{"n":3,"e":7615}],[20,{"n":3,"e":7608}],[19,{"n":5,"e":7606}],[18,{"n":6,"e":7597}],[17,{"n":5.5,"e":7594,"s":1}],[16,{"n":3,"e":7582}],[15,{"n":3,"e":7575}],[14,{"n":5,"e":7568}],[13,{"n":3,"e":7564}],[12,{"n":4.5,"e":7557}],[11,{"n":6,"e":7552}],[10,{"n":3,"e":7546}],[9,{"n":5,"e":7538}],[8,{"n":5,"e":7531,"s":1}],[7,{"n":4.5,"e":7526}],[6,{"n":4,"e":7518}],[5,{"n":3,"e":7508}],[4,{"n":5,"e":7501}],[3,{"n":3.5,"e":7485}],[2,{"n":4,"e":7490}]],"fo":[[7526,[{"t":"Y"}]],[7546,[{"t":"Y"}]],[7594,[{"t":"Y"}]],[7606,[{"t":"Y"}]],[8255,[{"t":"Y"}]]]}],[7546,{"n":"Timmoneri","f":"Mattia","fp":"MD","r":1,"c":139}],[7553,{"n":"Mignogna","f":"Massimiliano","fp":"DC","r":1,"c":139}],[7610,{"n":"Itrak","f":"Mateo","fp":"MD","r":1,"c":139}],[7669,{"n":"D'Aprile","f":"Giovanni","fp":"DC","r":1,"c":139}],[134,{"n":"Malcuit","f":"Kevin","fp":"DL","r":9,"c":110,"s":{"s":29,"n":6,"a":4.83,"d":0.68,"Os":34,"On":7,"Oa":4.86,"Od":0.63,"pd":5,"pm":2},"p":[[3,{"n":null,"e":7462,"d":1}],[26,{"n":3.5,"e":7291}],[24,{"n":5.5,"e":7311}],[22,{"n":5,"e":7324,"s":1}],[21,{"n":5,"e":7328,"s":1}],[13,{"n":5,"e":7387,"s":1}],[-37,{"n":5,"e":5460,"s":1}],[4,{"n":5,"e":7449,"s":1}]]}],[145,{"n":"Eysseric","f":"Valentin","fp":"MO","r":9,"c":110,"s":{"g":2,"s":57,"n":11,"a":5.18,"d":0.96,"Sg":1,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.08,"Og":2,"Os":79.5,"On":16,"Oa":4.97,"Od":1.01,"pm":13,"pa":3,"Smsn":7,"Omsn":7},"p":[[29,{"n":5.5,"e":7273,"s":1}],[28,{"n":5,"e":7277}],[23,{"n":7,"e":7630,"g":1,"s":1}],[20,{"n":4.5,"e":7340,"s":1}],[16,{"n":4.5,"e":7365,"s":1}],[10,{"n":5,"e":7406,"s":1}],[-38,{"n":3.5,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":3.5,"e":5477}],[-35,{"n":4.5,"e":5486,"s":1}],[-33,{"n":5,"e":5502,"s":1}],[27,{"n":7,"e":7702,"g":1}],[26,{"n":4.5,"e":7291}],[24,{"n":5,"e":7311}],[21,{"n":4.5,"e":7328}],[11,{"n":4.5,"e":7394}]],"fo":[[7630,[{"t":"Y"}]]]}],[2721,{"n":"Barreca","f":"Antonio","fp":"DL","r":3,"c":110,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Os":56.5,"On":12,"Oa":4.71,"Od":0.62,"pd":8,"pm":4},"p":[[13,{"n":4,"e":7386}],[-38,{"n":6,"e":5451,"s":1}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5491,"s":1}],[-33,{"n":4.5,"e":5506}],[-32,{"n":5.5,"e":5511,"s":1}],[-31,{"n":4,"e":5521}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":4,"e":5548}],[-27,{"n":4.5,"e":5561,"s":1}],[21,{"n":5,"e":7328,"s":1}],[11,{"n":5,"e":7394,"s":1}]]}],[4200,{"n":"Tòfol Montiel","f":"","fp":"MO","r":3,"c":110,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[27,{"n":5,"e":7702,"s":1}],[24,{"n":4.5,"e":7311,"s":1}]]}],[4249,{"n":"Brancolini","f":"Federico","fp":"G","r":3,"c":110,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-37,{"n":5,"e":5459,"s":1}]]}],[4312,{"n":"Kouamé","f":"Christian","fp":"A","r":7,"c":110,"s":{"g":1,"s":106.5,"n":25,"a":4.26,"d":0.61,"Ss":12.5,"Sn":3,"Sa":4.17,"Sd":0.29,"Og":2,"Os":139,"On":32,"Oa":4.34,"Od":0.65,"pm":1,"pa":31,"Smsn":6,"Omsn":6},"p":[[18,{"n":4,"e":7353,"s":1}],[14,{"n":4.5,"e":7378,"s":1}],[12,{"n":4,"e":7391,"s":1}],[9,{"n":4.5,"e":7416,"s":1}],[7,{"n":3,"e":7433}],[5,{"n":4.5,"e":7443,"s":1}],[-38,{"n":6,"e":5456,"g":1,"s":1}],[-37,{"n":4.5,"e":5459,"s":1}],[-36,{"n":3.5,"e":5475}],[-35,{"n":4.5,"e":5479,"s":1}],[-34,{"n":4.5,"e":5490}],[-32,{"n":5,"e":5510}],[-31,{"n":4.5,"e":5520,"s":1}],[29,{"n":4,"e":7273,"s":1}],[28,{"n":4,"e":7277,"s":1}],[27,{"n":4.5,"e":7702,"s":1}],[23,{"n":4,"e":7630}],[22,{"n":3,"e":7324}],[21,{"n":4,"e":7328,"s":1}],[20,{"n":4.5,"e":7340,"s":1}],[19,{"n":5,"e":7606,"s":1}],[17,{"n":4.5,"e":7356,"s":1}],[16,{"n":4.5,"e":7365,"s":1}],[15,{"n":4,"e":7372,"s":1}],[11,{"n":4.5,"e":7394,"s":1}],[10,{"n":4.5,"e":7406,"s":1}],[8,{"n":4,"e":7533}],[6,{"n":4.5,"e":7438,"s":1}],[4,{"n":4,"e":7502,"s":1}],[3,{"n":3.5,"e":7456}],[2,{"n":6,"e":7465,"g":1}],[1,{"n":5,"e":7470}]],"fo":[[7277,[{"t":"Y"}]],[7340,[{"t":"Y"}]],[7372,[{"t":"Y"}]]]}],[4319,{"n":"Milenkovic","f":"Nikola","fp":"DC","r":15,"c":110,"s":{"g":3,"s":136,"n":27,"a":5.04,"d":1.02,"Sg":1,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.85,"Og":5,"Os":205,"On":40,"Oa":5.13,"Od":1.01,"pd":40,"Smsn":5,"Omsn":5},"p":[[25,{"n":4.5,"e":7300}],[-38,{"n":5,"e":5456}],[-37,{"n":7.5,"e":5459,"g":1}],[-36,{"n":6,"e":5475,"g":1}],[-35,{"n":6,"e":5479}],[-34,{"n":6,"e":5490}],[-33,{"n":5.5,"e":5500}],[-32,{"n":4,"e":5510}],[-31,{"n":5.5,"e":5520}],[-30,{"n":5,"e":5534}],[29,{"n":5.5,"e":7273}],[-29,{"n":3.5,"e":5540}],[-28,{"n":4.5,"e":5551}],[28,{"n":4,"e":7277}],[27,{"n":6,"e":7702}],[-27,{"n":5,"e":5560,"s":1}],[26,{"n":5,"e":7291,"g":1}],[-26,{"n":5.5,"e":5577}],[24,{"n":4,"e":7311}],[23,{"n":6,"e":7630}],[22,{"n":4,"e":7324}],[20,{"n":5,"e":7340}],[19,{"n":6.5,"e":7606}],[18,{"n":3,"e":7353}],[17,{"n":5.5,"e":7356}],[15,{"n":5.5,"e":7372}],[14,{"n":5.5,"e":7378}],[13,{"n":5.5,"e":7386}],[12,{"n":5,"e":7391}],[11,{"n":3,"e":7394}],[10,{"n":6.5,"e":7406,"g":1}],[9,{"n":5,"e":7416}],[8,{"n":4.5,"e":7533}],[7,{"n":5.5,"e":7433}],[6,{"n":5,"e":7438}],[5,{"n":6.5,"e":7443,"g":1}],[4,{"n":5.5,"e":7502}],[3,{"n":6,"e":7456}],[2,{"n":3,"e":7465}],[1,{"n":5,"e":7470}]],"fo":[[7340,[{"t":"R"}]],[7391,[{"t":"Y"}]],[7433,[{"t":"Y"}]]]}],[4325,{"n":"Vlahovic","f":"Dusan","fp":"A","r":20,"c":110,"s":{"g":13,"s":136.5,"n":28,"a":4.88,"d":1.53,"Sg":12,"Ss":110.5,"Sn":22,"Sa":5.02,"Sd":1.64,"Og":13,"Os":175.5,"On":37,"Oa":4.74,"Od":1.39,"pa":37,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":5,"e":5456}],[-36,{"n":4,"e":5475,"s":1}],[-34,{"n":4.5,"e":5490,"s":1}],[-33,{"n":4.5,"e":5500,"s":1}],[-32,{"n":4.5,"e":5510,"s":1}],[-31,{"n":4.5,"e":5520}],[29,{"n":6.5,"e":7273,"g":1}],[-28,{"n":2.5,"e":5551,"s":1}],[28,{"n":5,"e":7277}],[-27,{"n":5,"e":5560}],[27,{"n":8.5,"e":7702,"g":3}],[26,{"n":4.5,"e":7291}],[-26,{"n":4.5,"e":5577}],[25,{"n":4.5,"e":7300}],[24,{"n":4,"e":7311}],[23,{"n":7.5,"e":7630,"g":1}],[22,{"n":6,"e":7324,"g":1}],[21,{"n":4,"e":7328}],[20,{"n":4.5,"e":7340}],[19,{"n":6.5,"e":7606,"g":1}],[18,{"n":3,"e":7353}],[17,{"n":6,"e":7356,"g":1}],[16,{"n":6,"e":7365,"g":1}],[15,{"n":3.5,"e":7372}],[14,{"n":7,"e":7378,"g":1}],[13,{"n":6,"e":7386,"g":1}],[12,{"n":5.5,"e":7391,"g":1}],[11,{"n":2.5,"e":7394}],[10,{"n":3,"e":7406}],[9,{"n":3.5,"e":7416}],[8,{"n":3,"e":7533}],[6,{"n":4.5,"e":7438,"s":1}],[5,{"n":3.5,"e":7443}],[4,{"n":3.5,"e":7502}],[3,{"n":6,"e":7456,"g":1}],[2,{"n":4,"e":7465,"s":1}],[1,{"n":4.5,"e":7470,"s":1}]],"a":{"m":25,"a":31,"M":32,"n":9}}],[4337,{"n":"Igor Julio","f":"","fp":"DC","r":8,"c":110,"s":{"s":70.5,"n":15,"a":4.7,"d":0.94,"Os":102,"On":21,"Oa":4.86,"Od":0.84,"pd":19,"pm":2},"p":[[-38,{"n":5.5,"e":5456}],[-32,{"n":5,"e":5510}],[-30,{"n":5.5,"e":5534}],[-29,{"n":5.5,"e":5540,"s":1}],[-28,{"n":5,"e":5551,"s":1}],[-26,{"n":5,"e":5577}],[25,{"n":5.5,"e":7300}],[23,{"n":5,"e":7630,"s":1}],[21,{"n":3.5,"e":7328}],[20,{"n":5,"e":7340,"s":1}],[19,{"n":5.5,"e":7606}],[18,{"n":2,"e":7353}],[17,{"n":4.5,"e":7356}],[16,{"n":4,"e":7365}],[15,{"n":5,"e":7372}],[14,{"n":5.5,"e":7378}],[13,{"n":5.5,"e":7386}],[12,{"n":5,"e":7391,"s":1}],[8,{"n":4.5,"e":7533}],[7,{"n":5,"e":7433}],[4,{"n":5,"e":7502,"s":1}]],"fo":[[7300,[{"t":"I"}]],[7372,[{"t":"Y"}]],[7386,[{"t":"Y"}]],[7606,[{"t":"Y"}]]]}],[4449,{"n":"Venuti","f":"Lorenzo","fp":"DL","r":9,"c":110,"s":{"s":90.5,"n":19,"a":4.76,"d":0.89,"Ss":16,"Sn":3,"Sa":5.33,"Sd":0.58,"Os":137,"On":28,"Oa":4.89,"Od":0.79,"pd":11,"pm":17},"p":[[-38,{"n":5.5,"e":5456}],[-37,{"n":6,"e":5459}],[-36,{"n":5,"e":5475,"s":1}],[-35,{"n":5.5,"e":5479}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":5,"e":5500,"s":1}],[-31,{"n":5,"e":5520}],[-30,{"n":5,"e":5534}],[29,{"n":5,"e":7273}],[-28,{"n":4.5,"e":5551,"s":1}],[28,{"n":5,"e":7277,"s":1}],[27,{"n":6,"e":7702}],[25,{"n":4,"e":7300}],[23,{"n":6,"e":7630}],[22,{"n":4.5,"e":7324}],[21,{"n":4,"e":7328}],[20,{"n":5.5,"e":7340}],[18,{"n":2.5,"e":7353}],[17,{"n":5,"e":7356,"s":1}],[16,{"n":5,"e":7365}],[15,{"n":5.5,"e":7372}],[14,{"n":5,"e":7378,"s":1}],[13,{"n":5,"e":7386}],[12,{"n":4.5,"e":7391}],[11,{"n":3,"e":7394}],[7,{"n":5,"e":7433}],[5,{"n":5,"e":7443,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[7433,[{"t":"I"}]],[7324,[{"t":"Y"}]],[7378,[{"t":"Y"}]]]}],[4486,{"n":"Dragowski","f":"Bartlomiej","fp":"G","r":14,"c":110,"s":{"s":150,"n":29,"a":5.17,"d":1.11,"Ss":150,"Sn":29,"Sa":5.17,"Sd":1.11,"Os":183,"On":35,"Oa":5.23,"Od":1.09,"pg":35},"p":[[-32,{"n":5,"e":5510}],[-31,{"n":7,"e":5520}],[-29,{"n":5,"e":5540}],[29,{"n":5,"e":7273}],[-28,{"n":4,"e":5551}],[28,{"n":4,"e":7277}],[-27,{"n":6,"e":5560}],[27,{"n":6,"e":7702}],[26,{"n":4,"e":7291}],[-26,{"n":6,"e":5577}],[25,{"n":5.5,"e":7300}],[24,{"n":5,"e":7311}],[23,{"n":6,"e":7630}],[22,{"n":4,"e":7324}],[21,{"n":5,"e":7328}],[20,{"n":5.5,"e":7340}],[19,{"n":5.5,"e":7606}],[18,{"n":2,"e":7353}],[17,{"n":7.5,"e":7356}],[16,{"n":4,"e":7365}],[15,{"n":6,"e":7372}],[14,{"n":6.5,"e":7378}],[13,{"n":5.5,"e":7386}],[12,{"n":5.5,"e":7391}],[11,{"n":4,"e":7394}],[10,{"n":5,"e":7406}],[9,{"n":6,"e":7416}],[8,{"n":5.5,"e":7533}],[7,{"n":5.5,"e":7433}],[6,{"n":5.5,"e":7438}],[5,{"n":5,"e":7443}],[4,{"n":4,"e":7502}],[3,{"n":6,"e":7456}],[2,{"n":4,"e":7465}],[1,{"n":7,"e":7470}]],"fo":[[7277,[{"t":"I"}]]]}],[4548,{"n":"Pulgar","f":"Erick","fp":"MD","r":12,"c":110,"s":{"g":1,"s":122,"n":23,"a":5.3,"d":0.54,"Sg":1,"Ss":70,"Sn":13,"Sa":5.38,"Sd":0.62,"Og":4,"Os":199,"On":36,"Oa":5.53,"Od":0.88,"pm":36,"Smsn":6,"Omsn":6},"p":[[-38,{"n":7,"e":5456,"g":1}],[-37,{"n":7.5,"e":5459}],[-36,{"n":7,"e":5475}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":6,"e":5490}],[-33,{"n":5.5,"e":5500}],[-32,{"n":5,"e":5510}],[-31,{"n":6,"e":5520,"s":1}],[-30,{"n":8,"e":5534,"g":2}],[-29,{"n":4.5,"e":5540}],[29,{"n":5,"e":7273}],[-28,{"n":4.5,"e":5551,"s":1}],[28,{"n":6,"e":7277,"g":1}],[-27,{"n":6.5,"e":5560}],[27,{"n":6,"e":7702}],[26,{"n":6,"e":7291}],[-26,{"n":4.5,"e":5577,"s":1}],[25,{"n":5,"e":7300}],[24,{"n":4.5,"e":7311}],[23,{"n":6,"e":7630}],[22,{"n":6,"e":7324}],[21,{"n":5,"e":7328,"s":1}],[20,{"n":5,"e":7340,"s":1}],[19,{"n":4.5,"e":7606,"s":1}],[18,{"n":5,"e":7353,"s":1}],[17,{"n":6,"e":7356}],[14,{"n":5.5,"e":7378,"s":1}],[12,{"n":5,"e":7391,"s":1}],[11,{"n":4.5,"e":7394}],[10,{"n":5.5,"e":7406}],[9,{"n":5.5,"e":7416}],[8,{"n":5,"e":7533,"s":1}],[7,{"n":6,"e":7433}],[6,{"n":5,"e":7438,"s":1}],[5,{"n":5,"e":7443,"s":1}],[4,{"n":5,"e":7502,"s":1}]],"fo":[[7273,[{"t":"Y"}]],[7324,[{"t":"Y"}]],[7328,[{"t":"Y"}]],[7406,[{"t":"Y"}]],[7702,[{"t":"Y"}]]]}],[4566,{"n":"Pezzella","f":"Germán","fp":"DC","r":12,"c":110,"s":{"g":1,"s":117.5,"n":24,"a":4.9,"d":1.14,"Ss":106,"Sn":22,"Sa":4.82,"Sd":1.16,"Og":2,"Os":179,"On":35,"Oa":5.11,"Od":1.13,"pd":35,"Smsn":6,"Omsn":6},"p":[[-37,{"n":7,"e":5459}],[-36,{"n":5,"e":5475}],[-35,{"n":6,"e":5479}],[-34,{"n":6,"e":5490}],[-33,{"n":4.5,"e":5500}],[-32,{"n":5,"e":5510}],[-30,{"n":5,"e":5534}],[-29,{"n":4.5,"e":5540}],[29,{"n":6,"e":7273}],[-28,{"n":5,"e":5551}],[28,{"n":3.5,"e":7277}],[-27,{"n":7.5,"e":5560,"g":1}],[27,{"n":6,"e":7702}],[26,{"n":4.5,"e":7291}],[-26,{"n":6,"e":5577}],[25,{"n":4,"e":7300}],[24,{"n":5,"e":7311}],[23,{"n":6.5,"e":7630}],[22,{"n":4,"e":7324}],[21,{"n":4,"e":7328}],[20,{"n":5,"e":7340}],[19,{"n":5.5,"e":7606}],[18,{"n":2,"e":7353}],[17,{"n":5,"e":7356}],[16,{"n":4,"e":7365}],[15,{"n":5,"e":7372}],[14,{"n":6,"e":7378}],[13,{"n":6.5,"e":7386}],[12,{"n":5.5,"e":7391}],[11,{"n":3.5,"e":7394}],[10,{"n":6,"e":7406}],[9,{"n":3.5,"e":7416}],[8,{"n":5,"e":7533}],[5,{"n":5.5,"e":7443}],[4,{"n":6,"e":7502,"g":1}]],"fo":[[7356,[{"t":"I"}]],[7443,[{"t":"I"}]],[7502,[{"t":"I"}]],[7372,[{"t":"Y"}]],[7416,[{"t":"Y"}]]]}],[4644,{"n":"Biraghi","f":"Cristiano","fp":"DL","r":12,"c":110,"s":{"g":1,"s":127,"n":26,"a":4.88,"d":0.97,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":183.5,"On":36,"Oa":5.1,"Od":1.02,"pd":13,"pm":23,"Smsn":7,"Omsn":6.5},"p":[[-34,{"n":5,"e":5496,"s":1}],[-27,{"n":6.5,"e":5562,"g":1}],[-38,{"n":5,"e":5448,"s":1}],[-37,{"n":5.5,"e":5460}],[-36,{"n":7,"e":5471}],[-33,{"n":7.5,"e":5503,"g":1}],[-32,{"n":5,"e":5512,"s":1}],[-30,{"n":5,"e":5530,"s":1}],[29,{"n":5,"e":7273,"s":1}],[-28,{"n":5,"e":5554}],[26,{"n":4.5,"e":7291}],[25,{"n":5,"e":7300,"s":1}],[-25,{"n":5,"e":5583,"s":1}],[24,{"n":4.5,"e":7311}],[23,{"n":6,"e":7630}],[22,{"n":4.5,"e":7324}],[21,{"n":4.5,"e":7328}],[20,{"n":5,"e":7340}],[19,{"n":5,"e":7606}],[18,{"n":3,"e":7353}],[17,{"n":5,"e":7356}],[16,{"n":5,"e":7365}],[14,{"n":7,"e":7378}],[13,{"n":5,"e":7386,"s":1}],[12,{"n":5,"e":7391}],[11,{"n":4,"e":7394}],[10,{"n":6,"e":7406}],[9,{"n":4.5,"e":7416}],[8,{"n":3.5,"e":7533}],[7,{"n":5.5,"e":7433}],[6,{"n":4,"e":7438}],[5,{"n":6,"e":7443}],[4,{"n":7,"e":7502,"g":1}],[3,{"n":4,"e":7456}],[2,{"n":3.5,"e":7465}],[1,{"n":5,"e":7470}]],"fo":[[7394,[{"t":"I"}]],[7356,[{"t":"Y"}]],[7378,[{"t":"Y"}]],[7391,[{"t":"Y"}]],[7416,[{"t":"Y"}]],[7533,[{"t":"Y"}]]]}],[4667,{"n":"Terracciano","f":"Pietro","fp":"G","r":7,"c":110,"s":{"s":4,"n":1,"a":4,"Os":45.5,"On":8,"Oa":5.69,"Od":1.13,"pg":8},"p":[[-38,{"n":5.5,"e":5456}],[-37,{"n":5.5,"e":5459}],[-36,{"n":5.5,"e":5475}],[-35,{"n":8,"e":5479}],[-34,{"n":6,"e":5490}],[-33,{"n":5,"e":5500}],[-30,{"n":6,"e":5534}],[28,{"n":4,"e":7277,"s":1}]]}],[4740,{"n":"Callejón","f":"José","fp":"MO","r":8,"c":110,"s":{"s":68.5,"n":15,"a":4.57,"d":0.94,"Ss":18,"Sn":4,"Sa":4.5,"Og":2,"Os":120,"On":25,"Oa":4.8,"Od":0.9,"pa":25,"Omsn":6},"p":[[-38,{"n":5,"e":5455}],[-36,{"n":5,"e":5474}],[-34,{"n":4.5,"e":5494}],[-32,{"n":6,"e":5515}],[-30,{"n":6.5,"e":5533,"g":1}],[-37,{"n":4.5,"e":5460,"s":1}],[-35,{"n":4.5,"e":5482,"s":1}],[-33,{"n":4.5,"e":5499,"s":1}],[-29,{"n":5,"e":5538,"s":1}],[29,{"n":4.5,"e":7273,"s":1}],[-28,{"n":6,"e":5553,"g":1}],[28,{"n":4.5,"e":7277,"s":1}],[27,{"n":4.5,"e":7702,"s":1}],[26,{"n":4.5,"e":7291,"s":1}],[22,{"n":4.5,"e":7324,"s":1}],[18,{"n":3,"e":7353}],[17,{"n":7,"e":7356}],[16,{"n":5,"e":7365,"s":1}],[13,{"n":5,"e":7386,"s":1}],[11,{"n":5,"e":7394,"s":1}],[10,{"n":5.5,"e":7406}],[9,{"n":3.5,"e":7416}],[6,{"n":3.5,"e":7438}],[5,{"n":4,"e":7443}],[4,{"n":4.5,"e":7502,"s":1}]]}],[4757,{"n":"Bonaventura","f":"Giacomo","fp":"MO","r":12,"c":110,"s":{"g":1,"s":133,"n":26,"a":5.12,"d":0.91,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Og":2,"Os":208.5,"On":39,"Oa":5.35,"Od":0.9,"pm":38,"pa":1,"Smsn":7,"Omsn":7},"p":[[-35,{"n":5,"e":5485,"s":1}],[-30,{"n":7,"e":5532}],[-28,{"n":5,"e":5552}],[-38,{"n":6,"e":5454,"s":1}],[-37,{"n":6,"e":5463,"s":1}],[-36,{"n":5.5,"e":5473,"s":1}],[-34,{"n":5,"e":5493,"s":1}],[-33,{"n":6,"e":5501}],[-32,{"n":6,"e":5515,"s":1}],[-31,{"n":6,"e":5523,"s":1}],[-29,{"n":5,"e":5545,"s":1}],[29,{"n":4.5,"e":7273}],[28,{"n":4.5,"e":7277}],[-27,{"n":7,"e":5563,"g":1}],[27,{"n":5,"e":7702}],[26,{"n":5,"e":7291,"s":1}],[-26,{"n":6,"e":5572,"s":1}],[23,{"n":5,"e":7630}],[22,{"n":5,"e":7324}],[21,{"n":5.5,"e":7328}],[20,{"n":7.5,"e":7340}],[19,{"n":7,"e":7606,"g":1}],[18,{"n":4.5,"e":7353,"s":1}],[17,{"n":7,"e":7356}],[16,{"n":5,"e":7365}],[15,{"n":4.5,"e":7372,"s":1}],[14,{"n":5,"e":7378,"s":1}],[13,{"n":4.5,"e":7386}],[12,{"n":4.5,"e":7391}],[11,{"n":4.5,"e":7394}],[10,{"n":4.5,"e":7406,"s":1}],[9,{"n":5.5,"e":7416,"s":1}],[7,{"n":5,"e":7433,"s":1}],[6,{"n":4.5,"e":7438}],[5,{"n":5.5,"e":7443}],[4,{"n":3.5,"e":7502}],[3,{"n":4.5,"e":7456}],[2,{"n":6,"e":7465}],[1,{"n":5.5,"e":7470}]],"fo":[[7630,[{"t":"I"}]],[7324,[{"t":"Y"}]],[7372,[{"t":"Y"}]],[7386,[{"t":"Y"}]],[7502,[{"t":"Y"}]]]}],[4765,{"n":"Cáceres","f":"Martín","fp":"DC","r":7,"c":110,"s":{"g":1,"s":95,"n":20,"a":4.75,"d":1.02,"Ss":15,"Sn":3,"Sa":5,"Sd":1,"Og":1,"Os":137,"On":28,"Oa":4.89,"Od":1.01,"pd":22,"pm":6,"Smsn":7,"Omsn":7},"p":[[-37,{"n":6,"e":5459}],[-36,{"n":5.5,"e":5475}],[-35,{"n":5,"e":5479}],[-34,{"n":5.5,"e":5490}],[-33,{"n":5.5,"e":5500}],[-31,{"n":5.5,"e":5520}],[29,{"n":5,"e":7273}],[28,{"n":4,"e":7277}],[-27,{"n":3,"e":5560}],[27,{"n":6,"e":7702}],[-26,{"n":6,"e":5577}],[25,{"n":4.5,"e":7300,"s":1}],[24,{"n":5,"e":7311,"s":1}],[23,{"n":5,"e":7630,"s":1}],[19,{"n":5.5,"e":7606}],[17,{"n":5,"e":7356}],[15,{"n":5,"e":7372}],[14,{"n":7,"e":7378,"g":1}],[12,{"n":4.5,"e":7391}],[10,{"n":5,"e":7406}],[9,{"n":3.5,"e":7416}],[7,{"n":5.5,"e":7433}],[6,{"n":3,"e":7438}],[5,{"n":4.5,"e":7443}],[4,{"n":3.5,"e":7502}],[3,{"n":4.5,"e":7456}],[2,{"n":3,"e":7465}],[1,{"n":6,"e":7470}]]}],[4797,{"n":"Valero","f":"Borja","fp":"MD","r":9,"c":110,"s":{"s":87,"n":18,"a":4.83,"d":0.45,"Og":1,"Os":140.5,"On":28,"Oa":5.02,"Od":0.5,"pm":22,"pa":6,"Omsn":5.5},"p":[[-29,{"n":6,"e":5542}],[-37,{"n":6,"e":5460}],[-36,{"n":5,"e":5471,"s":1}],[-33,{"n":5.5,"e":5503,"s":1}],[-32,{"n":5,"e":5512}],[-31,{"n":5.5,"e":5527}],[-30,{"n":5,"e":5530,"s":1}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":5.5,"e":5562,"g":1}],[27,{"n":5,"e":7702,"s":1}],[26,{"n":4.5,"e":7291}],[-25,{"n":5,"e":5583,"s":1}],[25,{"n":4.5,"e":7300,"s":1}],[24,{"n":4.5,"e":7311,"s":1}],[23,{"n":5,"e":7630,"s":1}],[21,{"n":4,"e":7328}],[19,{"n":4.5,"e":7606,"s":1}],[18,{"n":4.5,"e":7353,"s":1}],[17,{"n":4.5,"e":7356,"s":1}],[15,{"n":6,"e":7372}],[14,{"n":5.5,"e":7378}],[13,{"n":5,"e":7386,"s":1}],[12,{"n":5,"e":7391,"s":1}],[10,{"n":5,"e":7406,"s":1}],[9,{"n":5,"e":7416,"s":1}],[8,{"n":5,"e":7533,"s":1}],[2,{"n":4.5,"e":7465,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[7378,[{"t":"Y"}]],[7406,[{"t":"Y"}]],[7630,[{"t":"Y"}]]]}],[4821,{"n":"Rosati","f":"Antonio","fp":"G","r":3,"c":110,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-38,{"n":4.5,"e":5449}]]}],[5327,{"n":"Castrovilli","f":"Gaetano","fp":"MO","r":13,"c":110,"s":{"g":5,"s":124.5,"n":25,"a":4.98,"d":1.23,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":5,"Os":177,"On":35,"Oa":5.06,"Od":1.18,"pm":35,"Smsn":5.5,"Omsn":5.5},"p":[[-37,{"n":7,"e":5459}],[-35,{"n":5.5,"e":5479}],[-34,{"n":5.5,"e":5490}],[-33,{"n":5,"e":5500,"s":1}],[-32,{"n":4.5,"e":5510}],[-30,{"n":5,"e":5534,"s":1}],[-29,{"n":3,"e":5540}],[29,{"n":5,"e":7273}],[-28,{"n":5.5,"e":5551}],[28,{"n":4.5,"e":7277}],[-27,{"n":6.5,"e":5560}],[-26,{"n":5,"e":5577}],[25,{"n":4.5,"e":7300}],[24,{"n":4,"e":7311}],[23,{"n":7.5,"e":7630,"g":1,"s":1}],[22,{"n":3.5,"e":7324}],[20,{"n":4,"e":7340}],[19,{"n":5,"e":7606}],[18,{"n":2,"e":7353}],[16,{"n":5,"e":7365}],[15,{"n":5,"e":7372}],[14,{"n":6,"e":7378}],[13,{"n":5.5,"e":7386}],[12,{"n":4.5,"e":7391}],[11,{"n":4.5,"e":7394,"s":1}],[10,{"n":5.5,"e":7406}],[9,{"n":5,"e":7416}],[8,{"n":5.5,"e":7533}],[7,{"n":4.5,"e":7433}],[6,{"n":3.5,"e":7438}],[5,{"n":8,"e":7443,"g":2}],[4,{"n":4.5,"e":7502}],[3,{"n":6,"e":7456}],[2,{"n":5.5,"e":7465,"g":1}],[1,{"n":6,"e":7470,"g":1}]],"fo":[[7300,[{"t":"I"}]],[7406,[{"t":"I"}]],[7340,[{"t":"R"}]],[7365,[{"t":"Y"}]],[7391,[{"t":"Y"}]],[7416,[{"t":"Y"}]],[7438,[{"t":"Y"}]],[7443,[{"t":"Y"}]]]}],[6181,{"n":"Ribéry","f":"Franck","fp":"A","r":10,"c":110,"s":{"g":2,"s":109.5,"n":22,"a":4.98,"d":1.27,"Sg":1,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":2.02,"Og":3,"Os":161,"On":32,"Oa":5.03,"Od":1.26,"pm":2,"pa":30,"Smsn":6,"Omsn":6},"p":[[-36,{"n":3,"e":5475}],[-35,{"n":5,"e":5479}],[-34,{"n":7,"e":5490}],[-33,{"n":6,"e":5500}],[-32,{"n":4,"e":5510}],[-31,{"n":5,"e":5520}],[-30,{"n":5.5,"e":5534}],[-29,{"n":4,"e":5540}],[29,{"n":2.5,"e":7273}],[-28,{"n":7,"e":5551,"g":1}],[28,{"n":6,"e":7277,"g":1}],[-27,{"n":5,"e":5560}],[27,{"n":6,"e":7702}],[25,{"n":5,"e":7300}],[24,{"n":4,"e":7311}],[20,{"n":7,"e":7340,"g":1}],[19,{"n":5,"e":7606}],[18,{"n":4,"e":7353}],[16,{"n":4.5,"e":7365}],[15,{"n":5,"e":7372}],[14,{"n":7,"e":7378}],[13,{"n":4.5,"e":7386}],[12,{"n":7,"e":7391}],[11,{"n":5,"e":7394,"s":1}],[10,{"n":4,"e":7406}],[9,{"n":3.5,"e":7416}],[8,{"n":5.5,"e":7533}],[7,{"n":5,"e":7433}],[6,{"n":4,"e":7438}],[4,{"n":4.5,"e":7502}],[2,{"n":7,"e":7465}],[1,{"n":3.5,"e":7470}]],"fo":[[7365,[{"t":"I"}]],[7533,[{"t":"I"}]],[7273,[{"t":"R"}]],[7300,[{"t":"Y"}]],[7378,[{"t":"Y"}]],[7394,[{"t":"Y"}]],[7433,[{"t":"Y"}]],[7606,[{"t":"Y"}]]],"a":{"m":11,"a":16,"M":19,"n":5}}],[6207,{"n":"Amrabat","f":"Sofyan","fp":"MD","r":10,"c":110,"s":{"s":121.5,"n":25,"a":4.86,"d":0.88,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":183,"On":37,"Oa":4.95,"Od":0.94,"pm":37,"Omsn":5},"p":[[-38,{"n":2.5,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":5,"e":5477,"g":1}],[-34,{"n":5.5,"e":5497}],[-33,{"n":4.5,"e":5502}],[-32,{"n":6.5,"e":5510}],[-31,{"n":5.5,"e":5527}],[-29,{"n":5,"e":5547}],[29,{"n":5,"e":7273,"s":1}],[-28,{"n":4.5,"e":5556}],[-27,{"n":5,"e":5567}],[26,{"n":4.5,"e":7291}],[-26,{"n":5,"e":5575}],[-25,{"n":6.5,"e":5587}],[25,{"n":4,"e":7300}],[24,{"n":5,"e":7311,"s":1}],[23,{"n":5.5,"e":7630}],[21,{"n":5,"e":7328}],[20,{"n":4.5,"e":7340}],[19,{"n":5.5,"e":7606}],[18,{"n":2.5,"e":7353}],[17,{"n":6,"e":7356}],[16,{"n":4,"e":7365}],[15,{"n":4.5,"e":7372}],[14,{"n":6.5,"e":7378}],[13,{"n":5.5,"e":7386}],[12,{"n":5.5,"e":7391}],[11,{"n":3.5,"e":7394}],[10,{"n":5.5,"e":7406}],[9,{"n":3.5,"e":7416}],[8,{"n":4.5,"e":7533}],[7,{"n":5.5,"e":7433}],[6,{"n":5,"e":7438}],[5,{"n":5.5,"e":7443}],[4,{"n":4.5,"e":7502}],[3,{"n":5,"e":7456}],[2,{"n":5.5,"e":7465}]],"fo":[[7291,[{"t":"I"}]],[7328,[{"t":"Y"}]],[7340,[{"t":"Y"}]],[7391,[{"t":"Y"}]],[7394,[{"t":"Y"}]],[7416,[{"t":"Y"}]],[7630,[{"t":"Y"}]]]}],[6354,{"n":"Olivera","f":"Maximiliano","fp":"DL","r":1,"c":110,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[27,{"n":5,"e":7702,"s":1}]]}],[7153,{"n":"Ponsi","f":"Fabio","fp":"DL","r":1,"c":110}],[7378,{"n":"Martínez Quarta","f":"Lucas","fp":"DC","r":12,"c":110,"s":{"g":1,"s":77,"n":16,"a":4.81,"d":0.89,"Sg":1,"Ss":69.5,"Sn":14,"Sa":4.96,"Sd":0.8,"Og":1,"Os":77,"On":16,"Oa":4.81,"Od":0.89,"pd":16,"Smsn":5.5,"Omsn":5.5},"p":[[29,{"n":5.5,"e":7273}],[28,{"n":3,"e":7277}],[27,{"n":5,"e":7702}],[26,{"n":5.5,"e":7291,"g":1}],[25,{"n":4,"e":7300}],[24,{"n":4.5,"e":7311}],[23,{"n":6,"e":7630}],[22,{"n":5,"e":7324}],[21,{"n":4.5,"e":7328}],[20,{"n":6,"e":7340}],[19,{"n":5.5,"e":7606,"s":1}],[18,{"n":5,"e":7353,"s":1}],[17,{"n":5,"e":7356,"s":1}],[16,{"n":5,"e":7365}],[6,{"n":3,"e":7438}],[5,{"n":4.5,"e":7443,"s":1}]],"fo":[[7438,[{"t":"R"}]],[7311,[{"t":"Y"}]],[7328,[{"t":"Y"}]],[7630,[{"t":"Y"}]]]}],[7423,{"n":"Dutu","f":"Eduard","fp":"DC","r":1,"c":110}],[7544,{"n":"Krastev","f":"Dimo","fp":"MD","r":1,"c":110}],[7605,{"n":"Ricco","f":"Jacopo","fp":"G","r":1,"c":110}],[7680,{"n":"Kokorin","f":"Aleksandr","fp":"A","r":5,"c":110,"s":{"s":13,"n":3,"a":4.33,"d":0.29,"Os":13,"On":3,"Oa":4.33,"Od":0.29,"pa":3},"p":[[25,{"n":4.5,"e":7300,"s":1}],[24,{"n":4,"e":7311,"s":1}],[21,{"n":4.5,"e":7328,"s":1}]],"fo":[[7311,[{"t":"Y"}]]]}],[7725,{"n":"Chiti","f":"Lorenzo","fp":"DC","r":1,"c":110}],[7726,{"n":"Bianco","f":"Alessandro","fp":"MD","r":1,"c":110}],[7727,{"n":"Munteanu","f":"Louis","fp":"A","r":1,"c":110}],[810,{"n":"Behrami","f":"Valon","fp":"MD","r":5,"c":117,"s":{"s":92,"n":19,"a":4.84,"d":0.41,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":146.5,"On":30,"Oa":4.88,"Od":0.58,"pm":30},"p":[[28,{"n":5,"e":7279,"s":1}],[27,{"n":5,"e":7286,"s":1}],[24,{"n":4.5,"e":7307,"s":1}],[21,{"n":4.5,"e":7329,"s":1}],[15,{"n":5,"e":7373}],[12,{"n":4.5,"e":7398,"s":1}],[11,{"n":5,"e":7401,"s":1}],[6,{"n":4.5,"e":7439,"s":1}],[4,{"n":5,"e":7455,"s":1}],[2,{"n":4,"e":7466,"s":1}],[-38,{"n":6.5,"e":5451}],[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":4,"e":5471}],[-33,{"n":4,"e":5506}],[-32,{"n":5.5,"e":5511}],[-31,{"n":5,"e":5521}],[-30,{"n":4,"e":5537}],[29,{"n":4.5,"e":7273}],[-29,{"n":4.5,"e":5541}],[-28,{"n":5,"e":5548}],[-27,{"n":5,"e":5561,"s":1}],[-26,{"n":6,"e":5572}],[20,{"n":5,"e":7608,"s":1}],[19,{"n":5,"e":7341,"s":1}],[18,{"n":4.5,"e":7348,"s":1}],[17,{"n":5,"e":7357}],[14,{"n":6,"e":7569}],[10,{"n":5,"e":7406,"s":1}],[5,{"n":5,"e":7444}],[1,{"n":5,"e":7491,"s":1}]]}],[2022,{"n":"Zappacosta","f":"Davide","fp":"DL","r":14,"c":117,"s":{"g":2,"s":93,"n":18,"a":5.17,"d":1.03,"Ss":17,"Sn":3,"Sa":5.67,"Sd":0.58,"Og":2,"Os":131.5,"On":26,"Oa":5.06,"Od":0.92,"pd":9,"pm":17,"Smsn":6.5,"Omsn":6.5},"p":[[26,{"n":5,"e":7295}],[25,{"n":7,"e":7301,"g":1}],[23,{"n":4.5,"e":7315}],[22,{"n":4.5,"e":7325}],[16,{"n":3.5,"e":7368}],[-29,{"n":4.5,"e":5544,"s":1}],[-38,{"n":5.5,"e":5452}],[-37,{"n":5,"e":5465,"s":1}],[-35,{"n":5.5,"e":5483,"s":1}],[-33,{"n":5,"e":5502,"s":1}],[-30,{"n":4,"e":5533}],[29,{"n":5,"e":7273}],[28,{"n":6,"e":7279}],[-28,{"n":4,"e":5552}],[-27,{"n":5,"e":5564,"s":1}],[27,{"n":6,"e":7286}],[21,{"n":5,"e":7329}],[20,{"n":6.5,"e":7608}],[19,{"n":5,"e":7341}],[18,{"n":5,"e":7348}],[17,{"n":6,"e":7357}],[15,{"n":5,"e":7373}],[14,{"n":4.5,"e":7569,"s":1}],[13,{"n":5,"e":7565,"s":1}],[2,{"n":3,"e":7466}],[1,{"n":6.5,"e":7491,"g":1}]],"fo":[[7348,[{"t":"Y"}]]]}],[2835,{"n":"Strootman","f":"Kevin","fp":"MD","r":10,"c":117,"s":{"s":64,"n":12,"a":5.33,"d":0.81,"Ss":64,"Sn":12,"Sa":5.33,"Sd":0.81,"Os":125,"On":24,"Oa":5.21,"Od":0.62,"pm":24},"p":[[19,{"n":5,"e":6019,"s":1}],[18,{"n":5,"e":6032,"s":1}],[17,{"n":5,"e":6038,"s":1}],[15,{"n":5,"e":6067,"s":1}],[13,{"n":5,"e":6085,"s":1}],[12,{"n":5,"e":6091,"s":1}],[10,{"n":5,"e":6116,"s":1}],[7,{"n":4.5,"e":6141,"s":1}],[1,{"n":5,"e":6198,"s":1}],[3,{"n":5,"e":6187,"s":1}],[2,{"n":5.5,"e":6197}],[29,{"n":5.5,"e":7273}],[-28,{"n":6,"e":3651}],[28,{"n":4.5,"e":7279}],[27,{"n":6.5,"e":7286}],[26,{"n":4.5,"e":7295}],[25,{"n":6,"e":7301}],[24,{"n":4,"e":7307}],[23,{"n":5,"e":7315}],[22,{"n":5.5,"e":7325}],[21,{"n":5,"e":7329}],[20,{"n":6,"e":7608}],[19,{"n":6.5,"e":7341}],[18,{"n":5,"e":7348}]],"fo":[[6091,[{"t":"Y"}]],[7273,[{"t":"Y"}]],[7295,[{"t":"Y"}]],[7307,[{"t":"Y"}]],[7315,[{"t":"Y"}]],[7608,[{"t":"Y"}]]]}],[4207,{"n":"Rovella","f":"Nicolò","fp":"MD","r":7,"c":117,"s":{"s":67,"n":14,"a":4.79,"d":0.75,"Os":71,"On":15,"Oa":4.73,"Od":0.75,"pm":15},"p":[[7,{"n":3.5,"e":7430}],[3,{"n":5,"e":7457}],[-36,{"n":4,"e":5471}],[28,{"n":5,"e":7279,"s":1}],[24,{"n":4,"e":7307}],[23,{"n":5,"e":7315,"s":1}],[22,{"n":5.5,"e":7325}],[21,{"n":5,"e":7329,"s":1}],[16,{"n":5,"e":7368,"s":1}],[15,{"n":4,"e":7373}],[14,{"n":5,"e":7569,"s":1}],[11,{"n":5,"e":7401}],[6,{"n":6,"e":7439}],[5,{"n":3.5,"e":7444}],[4,{"n":5.5,"e":7455}]],"fo":[[7325,[{"t":"Y"}]],[7457,[{"t":"Y"}]]]}],[4233,{"n":"Portanova","f":"Manolo","fp":"MO","r":3,"c":117,"s":{"s":20,"n":4,"a":5,"Os":20,"On":4,"Oa":5,"pm":3,"pa":1},"p":[[13,{"n":5,"e":7388,"s":1}],[24,{"n":5,"e":7307,"s":1}],[21,{"n":5,"e":7329,"s":1}],[4,{"n":5,"e":7501}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7501,[{"t":"Y"}]]]}],[4360,{"n":"Luca Pellegrini","f":"","fp":"DL","r":3,"c":117,"s":{"ao":1,"s":49.5,"n":11,"a":4.5,"d":0.81,"Oao":1,"Os":70.5,"On":15,"Oa":4.7,"Od":0.82,"pd":4,"pm":11},"p":[[9,{"n":4,"e":7414}],[8,{"n":4.5,"e":7425}],[-29,{"n":4.5,"e":5539}],[-28,{"n":6,"e":5549,"s":1}],[-27,{"n":5.5,"e":5565}],[-25,{"n":5,"e":5587}],[23,{"n":5,"e":7315,"s":1}],[12,{"n":4.5,"e":7398}],[11,{"n":5,"e":7401}],[10,{"n":6,"e":7406}],[7,{"n":4.5,"e":7430,"s":1}],[6,{"n":5,"e":7439,"s":1}],[5,{"n":4.5,"e":7444,"s":1}],[3,{"n":3.5,"e":7457,"a":1}],[2,{"n":3,"e":7466}]],"fo":[[7398,[{"t":"Y"}]],[7406,[{"t":"Y"}]]]}],[4396,{"n":"Ghiglione","f":"Paolo","fp":"DL","r":9,"c":117,"s":{"s":88,"n":18,"a":4.89,"d":0.95,"Ss":6,"Sn":1,"Sa":6,"Os":111.5,"On":23,"Oa":4.85,"Od":0.85,"pd":12,"pm":11},"p":[[-36,{"n":4.5,"e":5471,"s":1}],[-33,{"n":4.5,"e":5506,"s":1}],[-31,{"n":5,"e":5521,"s":1}],[-29,{"n":4.5,"e":5541}],[29,{"n":6,"e":7273,"s":1}],[-28,{"n":5,"e":5548,"s":1}],[26,{"n":4,"e":7295}],[24,{"n":4.5,"e":7307}],[20,{"n":5,"e":7608,"s":1}],[17,{"n":4.5,"e":7357,"s":1}],[16,{"n":6.5,"e":7368,"s":1}],[14,{"n":5,"e":7569}],[13,{"n":4.5,"e":7565}],[12,{"n":6,"e":7398}],[10,{"n":4.5,"e":7406,"s":1}],[9,{"n":4.5,"e":7414}],[8,{"n":4.5,"e":7425}],[7,{"n":4.5,"e":7430,"s":1}],[5,{"n":4.5,"e":7444}],[4,{"n":5,"e":7455}],[3,{"n":4.5,"e":7457}],[2,{"n":3,"e":7466,"s":1}],[1,{"n":7,"e":7491}]],"fo":[[7357,[{"t":"Y"}]],[7455,[{"t":"Y"}]],[7569,[{"t":"Y"}]]]}],[4440,{"n":"Cassata","f":"Francesco","fp":"MD","r":6,"c":117,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Og":1,"Os":45.5,"On":10,"Oa":4.55,"Od":1.07,"pm":10,"Omsn":6.5},"p":[[-38,{"n":3.5,"e":5451,"s":1}],[-37,{"n":3.5,"e":5464}],[-32,{"n":6,"e":5511}],[-31,{"n":5,"e":5521}],[-30,{"n":4,"e":5537}],[-29,{"n":4,"e":5541}],[-27,{"n":3.5,"e":5561}],[-26,{"n":6.5,"e":5572,"g":1}],[26,{"n":5,"e":7295,"s":1}],[25,{"n":4.5,"e":7301,"s":1}]]}],[4536,{"n":"Goldaniga","f":"Edoardo","fp":"DC","r":10,"c":117,"s":{"s":81.5,"n":18,"a":4.53,"d":1.08,"Og":1,"Os":121,"On":27,"Oa":4.48,"Od":1.08,"pd":26,"pm":1,"Omsn":5},"p":[[-38,{"n":5,"e":5451,"s":1}],[-37,{"n":2.5,"e":5464}],[-36,{"n":3.5,"e":5471}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":5,"e":5491,"s":1}],[-33,{"n":3,"e":5506}],[-32,{"n":6,"e":5511}],[-31,{"n":5,"e":5521,"g":1}],[-30,{"n":4.5,"e":5537}],[25,{"n":5,"e":7301}],[24,{"n":4,"e":7307}],[22,{"n":5.5,"e":7325,"s":1}],[21,{"n":5,"e":7329}],[18,{"n":5,"e":7348,"s":1}],[16,{"n":4.5,"e":7368,"s":1}],[13,{"n":3.5,"e":7565}],[12,{"n":5,"e":7398}],[11,{"n":4,"e":7401}],[10,{"n":5.5,"e":7406}],[9,{"n":4,"e":7414}],[8,{"n":4.5,"e":7425,"s":1}],[6,{"n":5,"e":7439}],[5,{"n":4.5,"e":7444}],[4,{"n":4.5,"e":7455,"s":1}],[3,{"n":3,"e":7457}],[2,{"n":2,"e":7466}],[1,{"n":7,"e":7491}]],"fo":[[7325,[{"t":"Y"}]],[7348,[{"t":"Y"}]],[7368,[{"t":"Y"}]],[7401,[{"t":"Y"}]],[7439,[{"t":"Y"}]],[7455,[{"t":"Y"}]],[7565,[{"t":"Y"}]]]}],[4555,{"n":"Zima","f":"Lukas","fp":"G","r":3,"c":117}],[4580,{"n":"Biraschi","f":"Davide","fp":"DC","r":1,"c":117,"s":{"s":34,"n":8,"a":4.25,"d":1.39,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Os":78.5,"On":18,"Oa":4.36,"Od":1.23,"pd":11,"pm":7},"p":[[-37,{"n":3,"e":5464}],[-35,{"n":5,"e":5484}],[-33,{"n":3.5,"e":5506}],[-32,{"n":5,"e":5511}],[-31,{"n":4.5,"e":5521}],[-30,{"n":4.5,"e":5537}],[-29,{"n":6,"e":5541,"s":1}],[29,{"n":4.5,"e":7273}],[-28,{"n":4.5,"e":5548}],[28,{"n":5,"e":7279,"s":1}],[-27,{"n":2.5,"e":5561}],[27,{"n":5.5,"e":7286}],[-26,{"n":6,"e":5572}],[8,{"n":4.5,"e":7425}],[7,{"n":2.5,"e":7430}],[6,{"n":4,"e":7439}],[2,{"n":2,"e":7466}],[1,{"n":6,"e":7491}]],"fo":[[7425,[{"t":"I"}]],[7279,[{"t":"Y"}]]]}],[4614,{"n":"Pjaca","f":"Marko","fp":"MO","r":10,"c":117,"s":{"g":3,"s":118.5,"n":26,"a":4.56,"d":0.9,"Ss":34.5,"Sn":8,"Sa":4.31,"Sd":0.59,"Og":3,"Os":118.5,"On":26,"Oa":4.56,"Od":0.9,"pm":4,"pa":22,"Smsn":6,"Omsn":6},"p":[[29,{"n":4.5,"e":7273,"s":1}],[28,{"n":5,"e":7279,"s":1}],[27,{"n":4.5,"e":7286,"s":1}],[26,{"n":3.5,"e":7295}],[25,{"n":5,"e":7301,"s":1}],[24,{"n":3.5,"e":7307}],[23,{"n":4,"e":7315}],[22,{"n":4.5,"e":7325,"s":1}],[20,{"n":4.5,"e":7608,"s":1}],[19,{"n":5,"e":7341,"s":1}],[18,{"n":5,"e":7348}],[17,{"n":4.5,"e":7357,"s":1}],[16,{"n":4.5,"e":7368,"s":1}],[15,{"n":4,"e":7373}],[14,{"n":4,"e":7569,"s":1}],[13,{"n":4.5,"e":7565}],[12,{"n":5.5,"e":7398}],[11,{"n":3.5,"e":7401}],[10,{"n":6.5,"e":7406,"g":1,"s":1}],[9,{"n":4.5,"e":7414,"s":1}],[7,{"n":6,"e":7430,"g":1}],[6,{"n":4.5,"e":7439,"s":1}],[5,{"n":4,"e":7444}],[3,{"n":4.5,"e":7457}],[2,{"n":2.5,"e":7466}],[1,{"n":6.5,"e":7491,"g":1,"s":1}]]}],[4646,{"n":"Perin","f":"Mattia","fp":"G","r":16,"c":117,"s":{"s":136.5,"n":25,"a":5.46,"d":1.36,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":1.44,"Os":198.5,"On":38,"Oa":5.22,"Od":1.31,"pg":38},"p":[[-38,{"n":6,"e":5451}],[-37,{"n":3,"e":5464}],[-36,{"n":3.5,"e":5471}],[-35,{"n":6,"e":5484}],[-34,{"n":4,"e":5491}],[-33,{"n":4,"e":5506}],[-32,{"n":5,"e":5511}],[-31,{"n":7,"e":5521}],[-30,{"n":4.5,"e":5537}],[-29,{"n":5,"e":5541}],[29,{"n":5,"e":7273}],[28,{"n":7.5,"e":7279}],[-28,{"n":4.5,"e":5548}],[27,{"n":5,"e":7286}],[-27,{"n":4,"e":5561}],[-26,{"n":5.5,"e":5572}],[25,{"n":5,"e":7301}],[24,{"n":6.5,"e":7307}],[23,{"n":4,"e":7315}],[22,{"n":6,"e":7325}],[21,{"n":7.5,"e":7329}],[20,{"n":6.5,"e":7608}],[19,{"n":7,"e":7341}],[18,{"n":6.5,"e":7348}],[17,{"n":6.5,"e":7357}],[16,{"n":4,"e":7368}],[15,{"n":5,"e":7373}],[14,{"n":5.5,"e":7569}],[13,{"n":4,"e":7565}],[12,{"n":4.5,"e":7398}],[11,{"n":6,"e":7401}],[8,{"n":3,"e":7425}],[7,{"n":4.5,"e":7430}],[6,{"n":5,"e":7439}],[5,{"n":4,"e":7444}],[4,{"n":8.5,"e":7455}],[3,{"n":4,"e":7457}],[1,{"n":5.5,"e":7491}]],"fo":[[7425,[{"t":"R"}]],[7401,[{"t":"Y"}]]]}],[4706,{"n":"Destro","f":"Mattia","fp":"A","r":16,"c":117,"s":{"g":10,"s":118,"n":23,"a":5.13,"d":1.42,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":10,"Os":145,"On":29,"Oa":5,"Od":1.29,"pa":29,"Smsn":6,"Omsn":6},"p":[[-36,{"n":5,"e":5471,"s":1}],[-33,{"n":4.5,"e":5506,"s":1}],[-32,{"n":4.5,"e":5511,"s":1}],[-30,{"n":4.5,"e":5537,"s":1}],[29,{"n":6,"e":7273,"g":1}],[28,{"n":5,"e":7279}],[-28,{"n":4,"e":5548}],[-27,{"n":4.5,"e":5561,"s":1}],[26,{"n":4,"e":7295}],[25,{"n":4,"e":7301}],[23,{"n":4,"e":7315}],[22,{"n":4,"e":7325}],[21,{"n":4,"e":7329}],[20,{"n":8,"e":7608,"g":2}],[19,{"n":6.5,"e":7341,"g":1}],[17,{"n":7,"e":7357,"g":1}],[16,{"n":4,"e":7368,"s":1}],[15,{"n":6,"e":7373,"g":1}],[14,{"n":6,"e":7569,"g":1}],[13,{"n":4,"e":7565}],[12,{"n":7.5,"e":7398,"g":2}],[11,{"n":4.5,"e":7401,"s":1}],[10,{"n":6,"e":7406,"s":1}],[9,{"n":4.5,"e":7414,"s":1}],[8,{"n":4,"e":7425,"s":1}],[7,{"n":5,"e":7430,"s":1}],[3,{"n":4.5,"e":7457,"s":1}],[2,{"n":2.5,"e":7466}],[1,{"n":7,"e":7491,"g":1}]],"fo":[[7295,[{"t":"Y"}]],[7341,[{"t":"Y"}]],[7373,[{"t":"Y"}]],[7569,[{"t":"Y"}]]],"a":{"m":20,"a":27,"M":40,"n":10}}],[4718,{"n":"Badelj","f":"Milan","fp":"MD","r":18,"c":117,"s":{"g":1,"s":129,"n":23,"a":5.61,"d":0.89,"Ss":28,"Sn":5,"Sa":5.6,"Sd":0.42,"Og":1,"Os":149,"On":27,"Oa":5.52,"Od":0.86,"pm":27,"Smsn":7,"Omsn":7},"p":[[-35,{"n":5,"e":5479}],[-31,{"n":5.5,"e":5520}],[29,{"n":5.5,"e":7273}],[28,{"n":6,"e":7279}],[-28,{"n":4.5,"e":5551}],[27,{"n":5.5,"e":7286}],[-26,{"n":5,"e":5577}],[26,{"n":5,"e":7295}],[25,{"n":6,"e":7301}],[23,{"n":7,"e":7315,"g":1}],[21,{"n":6,"e":7329}],[20,{"n":6.5,"e":7608}],[19,{"n":6,"e":7341}],[18,{"n":7,"e":7348}],[17,{"n":6.5,"e":7357}],[16,{"n":5,"e":7368}],[15,{"n":6,"e":7373}],[14,{"n":6,"e":7569}],[9,{"n":3.5,"e":7414}],[8,{"n":6,"e":7425}],[7,{"n":5,"e":7430,"s":1}],[6,{"n":5,"e":7439}],[5,{"n":5.5,"e":7444}],[4,{"n":4.5,"e":7455}],[3,{"n":5,"e":7457}],[2,{"n":4,"e":7466}],[1,{"n":6.5,"e":7491}]],"fo":[[7286,[{"t":"Y"}]],[7301,[{"t":"Y"}]],[7329,[{"t":"Y"}]],[7414,[{"t":"Y"}]],[7425,[{"t":"Y"}]],[7455,[{"t":"Y"}]],[7457,[{"t":"Y"}]]],"a":{"m":14,"a":16,"M":18,"n":5}}],[4772,{"n":"Radovanovic","f":"Ivan","fp":"MD","r":13,"c":117,"s":{"s":135,"n":26,"a":5.19,"d":0.62,"Ss":107,"Sn":20,"Sa":5.35,"Sd":0.54,"Os":135,"On":26,"Oa":5.19,"Od":0.62,"pd":15,"pm":11},"p":[[29,{"n":4.5,"e":7273}],[28,{"n":5,"e":7279}],[27,{"n":6,"e":7286}],[26,{"n":4.5,"e":7295}],[25,{"n":5.5,"e":7301}],[24,{"n":4.5,"e":7307}],[23,{"n":5,"e":7315}],[22,{"n":5,"e":7325}],[21,{"n":5.5,"e":7329}],[20,{"n":6,"e":7608}],[19,{"n":6,"e":7341}],[18,{"n":6,"e":7348}],[17,{"n":5.5,"e":7357}],[16,{"n":5,"e":7368}],[15,{"n":6,"e":7373,"s":1}],[14,{"n":5.5,"e":7569}],[13,{"n":5.5,"e":7565,"s":1}],[12,{"n":5,"e":7398,"s":1}],[11,{"n":5,"e":7401}],[10,{"n":6,"e":7406}],[7,{"n":3.5,"e":7430}],[6,{"n":5,"e":7439,"s":1}],[5,{"n":4.5,"e":7444,"s":1}],[4,{"n":5,"e":7455}],[2,{"n":5,"e":7466,"s":1}],[1,{"n":5,"e":7491,"s":1}]],"fo":[[7279,[{"t":"Y"}]],[7325,[{"t":"Y"}]],[7357,[{"t":"Y"}]],[7398,[{"t":"Y"}]]]}],[4788,{"n":"Marchetti","f":"Federico","fp":"G","r":7,"c":117,"s":{"s":11.5,"n":3,"a":3.83,"d":1.26,"Os":11.5,"On":3,"Oa":3.83,"Od":1.26,"pg":3},"p":[[26,{"n":5,"e":7295}],[10,{"n":4,"e":7406}],[2,{"n":2.5,"e":7466}]],"fo":[[7406,[{"t":"I"}]]]}],[4799,{"n":"Cristián Zapata","f":"","fp":"DC","r":5,"c":117,"s":{"s":44.5,"n":9,"a":4.94,"d":0.63,"Os":85.5,"On":17,"Oa":5.03,"Od":0.76,"pd":17},"p":[[-38,{"n":6.5,"e":5451}],[-36,{"n":4,"e":5471}],[-35,{"n":5.5,"e":5484,"s":1}],[-34,{"n":5,"e":5491}],[-33,{"n":4,"e":5506}],[-32,{"n":6,"e":5511}],[-31,{"n":5.5,"e":5521}],[-28,{"n":4.5,"e":5548}],[24,{"n":4.5,"e":7307}],[15,{"n":4,"e":7373}],[10,{"n":5,"e":7406}],[9,{"n":4.5,"e":7414}],[6,{"n":5.5,"e":7439}],[5,{"n":5,"e":7444}],[4,{"n":5.5,"e":7455}],[3,{"n":4.5,"e":7457}],[1,{"n":6,"e":7491}]],"fo":[[7373,[{"t":"I"}]],[7406,[{"t":"I"}]],[7307,[{"t":"Y"}]]]}],[4808,{"n":"Criscito","f":"Domenico","fp":"DL","r":14,"c":117,"s":{"g":1,"s":94.5,"n":19,"a":4.97,"d":0.79,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.45,"Og":2,"Os":132,"On":27,"Oa":4.89,"Od":0.89,"pd":22,"pm":5,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5451}],[-37,{"n":4,"e":5464,"s":1}],[-36,{"n":3,"e":5471}],[-35,{"n":6.5,"e":5484,"g":1}],[-34,{"n":5.5,"e":5491}],[-33,{"n":5,"e":5506,"s":1}],[29,{"n":5,"e":7273}],[28,{"n":5,"e":7279}],[-27,{"n":3.5,"e":5561}],[27,{"n":4,"e":7286}],[26,{"n":5,"e":7295}],[-26,{"n":5,"e":5572}],[25,{"n":5,"e":7301}],[23,{"n":5,"e":7315}],[22,{"n":4.5,"e":7325}],[21,{"n":5.5,"e":7329}],[20,{"n":6,"e":7608}],[19,{"n":5.5,"e":7341}],[18,{"n":6,"e":7348}],[17,{"n":4.5,"e":7357}],[16,{"n":4,"e":7368}],[15,{"n":6,"e":7373}],[14,{"n":6,"e":7569,"g":1}],[13,{"n":5,"e":7565,"s":1}],[7,{"n":3,"e":7430}],[6,{"n":4.5,"e":7439}],[3,{"n":5,"e":7457,"s":1}]],"fo":[[7325,[{"t":"I"},{"t":"Y"}]],[7286,[{"t":"Y"}]],[7295,[{"t":"Y"}]],[7368,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":15,"n":10}}],[4818,{"n":"Masiello","f":"Andrea","fp":"DC","r":11,"c":117,"s":{"s":102,"n":21,"a":4.86,"d":1.05,"Ss":10,"Sn":2,"Sa":5,"Os":151,"On":32,"Oa":4.72,"Od":1.11,"pd":32},"p":[[-38,{"n":6,"e":5451}],[-37,{"n":2.5,"e":5464}],[-35,{"n":5.5,"e":5484}],[-34,{"n":5.5,"e":5491}],[-33,{"n":3.5,"e":5506}],[-32,{"n":5,"e":5511}],[-31,{"n":4,"e":5521}],[-30,{"n":4.5,"e":5537}],[-29,{"n":3,"e":5541}],[29,{"n":5,"e":7273}],[28,{"n":5,"e":7279}],[-27,{"n":3.5,"e":5561}],[26,{"n":4,"e":7295}],[-26,{"n":6,"e":5572}],[25,{"n":5.5,"e":7301}],[23,{"n":4.5,"e":7315}],[22,{"n":5.5,"e":7325}],[20,{"n":6.5,"e":7608}],[19,{"n":6,"e":7341}],[18,{"n":5,"e":7348}],[17,{"n":6,"e":7357}],[16,{"n":4,"e":7368}],[15,{"n":5.5,"e":7373}],[14,{"n":5.5,"e":7569}],[13,{"n":3,"e":7565}],[12,{"n":5,"e":7398}],[11,{"n":4.5,"e":7401}],[10,{"n":5.5,"e":7406}],[8,{"n":4.5,"e":7425}],[7,{"n":4,"e":7430}],[4,{"n":5.5,"e":7455}],[2,{"n":2,"e":7466}]],"fo":[[7295,[{"t":"Y"}]],[7368,[{"t":"Y"}]],[7425,[{"t":"Y"}]],[7565,[{"t":"Y"}]]]}],[4824,{"n":"Pandev","f":"Goran","fp":"A","r":9,"c":117,"s":{"g":4,"s":101.5,"n":21,"a":4.83,"d":1.03,"Og":7,"Os":165,"On":34,"Oa":4.85,"Od":1.11,"pm":2,"pa":32,"Smsn":6,"Omsn":6},"p":[[-38,{"n":6,"e":5451}],[-37,{"n":3,"e":5464}],[-36,{"n":4.5,"e":5471,"s":1}],[-35,{"n":6,"e":5484}],[-34,{"n":5.5,"e":5491}],[-33,{"n":2.5,"e":5506,"s":1}],[-32,{"n":6.5,"e":5511,"g":1}],[-31,{"n":4.5,"e":5521,"s":1}],[-30,{"n":6,"e":5537,"g":1,"s":1}],[-29,{"n":4.5,"e":5541,"s":1}],[-28,{"n":5,"e":5548,"s":1}],[-27,{"n":3.5,"e":5561}],[27,{"n":6,"e":7286,"g":1}],[-26,{"n":6,"e":5572,"g":1}],[25,{"n":4.5,"e":7301,"s":1}],[24,{"n":4.5,"e":7307,"s":1}],[23,{"n":4.5,"e":7315,"s":1}],[22,{"n":4,"e":7325}],[21,{"n":7.5,"e":7329,"g":2}],[20,{"n":5,"e":7608,"s":1}],[19,{"n":4.5,"e":7341,"s":1}],[18,{"n":4.5,"e":7348,"s":1}],[14,{"n":6,"e":7569}],[13,{"n":4.5,"e":7565,"s":1}],[11,{"n":4.5,"e":7401,"s":1}],[9,{"n":4.5,"e":7414,"s":1}],[8,{"n":4,"e":7425}],[7,{"n":4.5,"e":7430,"s":1}],[6,{"n":5.5,"e":7439}],[5,{"n":4.5,"e":7444}],[4,{"n":4.5,"e":7455}],[3,{"n":5,"e":7457,"s":1}],[2,{"n":2.5,"e":7466,"s":1}],[1,{"n":6.5,"e":7491,"g":1}]],"fo":[[7286,[{"t":"Y"}]],[7455,[{"t":"Y"}]],[7569,[{"t":"Y"}]]]}],[6290,{"n":"Cleonise","f":"Denilho","fp":"A","r":1,"c":117}],[6317,{"n":"Eboa Ebongue","f":"Steeve-Mike","fp":"MD","r":1,"c":117,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[17,{"n":5,"e":7357,"s":1}],[4,{"n":5,"e":7455,"s":1}]]}],[6443,{"n":"Czyborra","f":"Lennart","fp":"DL","r":9,"c":117,"s":{"g":1,"s":82.5,"n":17,"a":4.85,"d":0.84,"Og":1,"Os":87,"On":18,"Oa":4.83,"Od":0.82,"pd":4,"pm":14,"Smsn":7.5,"Omsn":7.5},"p":[[-33,{"n":4.5,"e":5498,"s":1}],[28,{"n":4,"e":7279}],[27,{"n":5.5,"e":7286}],[24,{"n":3.5,"e":7307}],[23,{"n":4.5,"e":7315}],[22,{"n":5,"e":7325}],[21,{"n":5,"e":7329}],[20,{"n":7.5,"e":7608,"g":1}],[19,{"n":5,"e":7341}],[18,{"n":5,"e":7348}],[16,{"n":4.5,"e":7368}],[15,{"n":5,"e":7373}],[14,{"n":4,"e":7569}],[13,{"n":5,"e":7565}],[12,{"n":4.5,"e":7398,"s":1}],[5,{"n":4.5,"e":7444}],[4,{"n":5,"e":7455}],[1,{"n":5,"e":7491,"s":1}]],"fo":[[7329,[{"t":"Y"}]],[7373,[{"t":"Y"}]]]}],[7237,{"n":"Zajc","f":"Miha","fp":"MD","r":10,"c":117,"s":{"g":1,"s":113.5,"n":23,"a":4.93,"d":0.9,"Ss":25,"Sn":5,"Sa":5,"Sd":0.61,"Og":1,"Os":113.5,"On":23,"Oa":4.93,"Od":0.9,"pm":23,"Smsn":7,"Omsn":7},"p":[[29,{"n":5,"e":7273,"s":1}],[28,{"n":5.5,"e":7279}],[27,{"n":5.5,"e":7286}],[26,{"n":5,"e":7295}],[25,{"n":4,"e":7301}],[23,{"n":3.5,"e":7315}],[22,{"n":5,"e":7325}],[21,{"n":6.5,"e":7329}],[20,{"n":6,"e":7608}],[19,{"n":5.5,"e":7341}],[18,{"n":4,"e":7348}],[17,{"n":7,"e":7357,"g":1}],[16,{"n":4,"e":7368}],[15,{"n":5.5,"e":7373,"s":1}],[14,{"n":4.5,"e":7569,"s":1}],[9,{"n":4.5,"e":7414,"s":1}],[8,{"n":4.5,"e":7425,"s":1}],[7,{"n":4.5,"e":7430}],[6,{"n":5,"e":7439}],[5,{"n":4.5,"e":7444,"s":1}],[3,{"n":4,"e":7457}],[2,{"n":4,"e":7466}],[1,{"n":6,"e":7491}]],"fo":[[7273,[{"t":"Y"}]],[7430,[{"t":"Y"}]],[7569,[{"t":"Y"}]]]}],[7275,{"n":"Agostino","f":"Giuseppe","fp":"G","r":1,"c":117}],[7292,{"n":"Melegoni","f":"Filippo","fp":"MO","r":7,"c":117,"s":{"s":48,"n":10,"a":4.8,"d":0.48,"Ss":5,"Sn":1,"Sa":5,"Os":48,"On":10,"Oa":4.8,"Od":0.48,"pm":10},"p":[[29,{"n":5,"e":7273,"s":1}],[26,{"n":5,"e":7295,"s":1}],[24,{"n":3.5,"e":7307}],[20,{"n":5,"e":7608,"s":1}],[19,{"n":5,"e":7341,"s":1}],[17,{"n":5,"e":7357,"s":1}],[12,{"n":5,"e":7398,"s":1}],[6,{"n":5,"e":7439,"s":1}],[5,{"n":4.5,"e":7444,"s":1}],[2,{"n":5,"e":7466,"s":1}]]}],[7335,{"n":"Scamacca","f":"Gianluca","fp":"A","r":9,"c":117,"s":{"g":4,"s":99,"n":20,"a":4.95,"d":1.01,"Sg":2,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.58,"Og":4,"Os":99,"On":20,"Oa":4.95,"Od":1.01,"pa":20,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":6,"e":7273}],[28,{"n":7.5,"e":7279,"g":2,"s":1}],[27,{"n":4.5,"e":7286,"s":1}],[26,{"n":4,"e":7295,"s":1}],[24,{"n":5,"e":7307}],[23,{"n":4.5,"e":7315,"s":1}],[21,{"n":4.5,"e":7329,"s":1}],[16,{"n":4,"e":7368}],[15,{"n":4.5,"e":7373,"s":1}],[14,{"n":4.5,"e":7569,"s":1}],[13,{"n":4.5,"e":7565,"s":1}],[12,{"n":4.5,"e":7398,"s":1}],[11,{"n":4,"e":7401}],[10,{"n":5,"e":7406}],[9,{"n":4,"e":7414}],[8,{"n":4,"e":7425}],[7,{"n":6,"e":7430}],[6,{"n":6.5,"e":7439,"g":1}],[4,{"n":5,"e":7455,"s":1}],[3,{"n":6.5,"e":7457,"g":1}]],"fo":[[7425,[{"t":"Y"}]]]}],[7379,{"n":"Shomurodov","f":"Eldor","fp":"A","r":10,"c":117,"s":{"g":3,"s":101,"n":22,"a":4.59,"d":0.81,"Sg":1,"Ss":36,"Sn":8,"Sa":4.5,"Sd":0.71,"Og":3,"Os":101,"On":22,"Oa":4.59,"Od":0.81,"pa":22,"Smsn":6,"Omsn":6},"p":[[29,{"n":4.5,"e":7273,"s":1}],[28,{"n":4,"e":7279}],[27,{"n":5,"e":7286}],[26,{"n":4,"e":7295,"s":1}],[25,{"n":4.5,"e":7301}],[24,{"n":4,"e":7307,"s":1}],[23,{"n":6,"e":7315,"g":1,"s":1}],[22,{"n":4,"e":7325,"s":1}],[20,{"n":4,"e":7608}],[19,{"n":4,"e":7341}],[18,{"n":4,"e":7348}],[17,{"n":5.5,"e":7357}],[16,{"n":6,"e":7368,"g":1}],[15,{"n":5.5,"e":7373,"s":1}],[13,{"n":4,"e":7565}],[12,{"n":5.5,"e":7398}],[11,{"n":5,"e":7401,"s":1}],[10,{"n":3.5,"e":7406}],[9,{"n":6,"e":7414,"g":1}],[8,{"n":4,"e":7425,"s":1}],[5,{"n":4,"e":7444,"s":1}],[4,{"n":4,"e":7455}]]}],[7383,{"n":"Paleari","f":"Alberto","fp":"G","r":3,"c":117,"s":{"s":10,"n":2,"a":5,"d":1.41,"Os":10,"On":2,"Oa":5,"Od":1.41,"pg":2},"p":[[10,{"n":6,"e":7406,"s":1}],[9,{"n":4,"e":7414}]]}],[7430,{"n":"Caso","f":"Giuseppe","fp":"A","r":1,"c":117,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pa":1},"p":[[11,{"n":5,"e":7401,"s":1}]]}],[7441,{"n":"Dumbravanu","f":"Daniel","fp":"DC","r":1,"c":117}],[7615,{"n":"Onguéné","f":"Jérôme","fp":"DC","r":3,"c":117,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":2},"p":[[24,{"n":4.5,"e":7307,"s":1}],[19,{"n":5,"e":7341,"s":1}]]}],[586,{"n":"Lukaku","f":"Romelu","fp":"A","r":53,"c":112,"s":{"g":20,"s":160.5,"n":27,"a":5.94,"d":1.27,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":26,"Os":221.5,"On":39,"Oa":5.68,"Od":1.26,"pa":39,"Smsn":5.5,"Omsn":5},"p":[[28,{"n":null,"e":7278,"d":1}],[27,{"n":5.5,"e":7290,"g":1}],[25,{"n":5,"e":7308}],[23,{"n":7.5,"e":7317,"g":1}],[22,{"n":8,"e":7321,"g":2}],[19,{"n":4.5,"e":7346}],[18,{"n":6,"e":7351}],[17,{"n":5,"e":7361}],[16,{"n":4.5,"e":7367,"s":1}],[14,{"n":4,"e":7383}],[12,{"n":5.5,"e":7397,"g":1}],[9,{"n":4.5,"e":7418,"s":1}],[4,{"n":6,"e":7450,"g":1}],[3,{"n":5,"e":7460}],[-26,{"n":3.5,"e":5569}],[-38,{"n":5,"e":5448}],[-37,{"n":5,"e":5460}],[-36,{"n":7.5,"e":5471,"g":2}],[-35,{"n":4,"e":5479}],[-34,{"n":5.5,"e":5496,"g":1,"s":1}],[-31,{"n":5,"e":5527}],[-30,{"n":6,"e":5530,"g":1}],[29,{"n":6,"e":7270,"g":1}],[-29,{"n":4.5,"e":5542,"s":1}],[-28,{"n":4,"e":5554}],[-27,{"n":6,"e":5562,"g":1}],[26,{"n":4.5,"e":7292}],[-25,{"n":5,"e":5583,"g":1}],[24,{"n":8,"e":7307,"g":1}],[21,{"n":5.5,"e":7328}],[20,{"n":8,"e":7609,"g":2}],[15,{"n":7,"e":7575,"g":1}],[13,{"n":5.5,"e":7566,"g":1}],[11,{"n":7,"e":7396,"g":1}],[10,{"n":6,"e":7407,"g":1}],[8,{"n":8,"e":7420,"g":2}],[7,{"n":4.5,"e":7427,"s":1}],[5,{"n":6,"e":7444,"g":1}],[2,{"n":6,"e":7465,"g":1}],[1,{"n":7.5,"e":7492,"g":2}]],"fo":[[7321,[{"t":"Y"}]],[7361,[{"t":"Y"}]],[7397,[{"t":"Y"}]]],"a":{"m":59,"a":80,"M":119,"n":13}}],[587,{"n":"Sánchez","f":"Alexis","fp":"A","r":13,"c":112,"s":{"g":5,"s":110,"n":21,"a":5.24,"d":1.23,"Sg":3,"Ss":57.5,"Sn":11,"Sa":5.23,"Sd":1.03,"Og":8,"Os":186.5,"On":35,"Oa":5.33,"Od":1.21,"pa":35,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5448,"s":1}],[-37,{"n":4.5,"e":5460}],[-36,{"n":6,"e":5471,"g":1,"s":1}],[-35,{"n":4,"e":5479}],[-34,{"n":5,"e":5496}],[-33,{"n":7,"e":5503,"g":1}],[-32,{"n":7.5,"e":5512}],[-31,{"n":5,"e":5527}],[-30,{"n":5,"e":5530,"s":1}],[-29,{"n":8,"e":5542,"g":1}],[29,{"n":5,"e":7270,"s":1}],[28,{"n":null,"e":7278,"d":1}],[-28,{"n":5,"e":5554,"s":1}],[27,{"n":6,"e":7290,"s":1}],[-27,{"n":5.5,"e":5562}],[-26,{"n":4.5,"e":5569,"s":1}],[26,{"n":4,"e":7292,"s":1}],[-25,{"n":5,"e":5583,"s":1}],[25,{"n":7,"e":7308,"g":2}],[24,{"n":6,"e":7307,"g":1,"s":1}],[23,{"n":4,"e":7317,"s":1}],[22,{"n":4,"e":7321,"s":1}],[21,{"n":6,"e":7328}],[20,{"n":6,"e":7609,"s":1}],[19,{"n":5,"e":7346,"s":1}],[18,{"n":4.5,"e":7351,"s":1}],[16,{"n":2.5,"e":7367}],[11,{"n":5.5,"e":7396}],[10,{"n":6,"e":7407}],[9,{"n":7,"e":7418,"g":1}],[8,{"n":7.5,"e":7420,"g":1}],[7,{"n":4,"e":7427}],[4,{"n":4.5,"e":7450,"s":1}],[3,{"n":4.5,"e":7460,"s":1}],[2,{"n":5,"e":7465,"s":1}],[1,{"n":6,"e":7492}]],"a":{"m":14,"a":17,"M":19,"n":5}}],[611,{"n":"Eriksen","f":"Christian","fp":"MO","r":12,"c":112,"s":{"s":89.5,"n":17,"a":5.26,"d":0.94,"Ss":39,"Sn":7,"Sa":5.57,"Sd":0.89,"Og":1,"Os":164,"On":31,"Oa":5.29,"Od":0.91,"pm":21,"pa":10,"Omsn":6.5},"p":[[-38,{"n":5,"e":5448,"s":1}],[-37,{"n":5,"e":5460,"s":1}],[-36,{"n":5,"e":5471}],[-35,{"n":6.5,"e":5479}],[-34,{"n":5,"e":5496,"s":1}],[-33,{"n":6.5,"e":5503}],[-32,{"n":5,"e":5512,"s":1}],[-31,{"n":5,"e":5527,"s":1}],[-30,{"n":4.5,"e":5530}],[-29,{"n":6.5,"e":5542,"g":1,"s":1}],[29,{"n":5.5,"e":7270}],[-28,{"n":5,"e":5554}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4.5,"e":5562}],[27,{"n":4.5,"e":7290,"s":1}],[26,{"n":5.5,"e":7292,"s":1}],[-26,{"n":4,"e":5569,"s":1}],[-25,{"n":7,"e":5583}],[25,{"n":5,"e":7308}],[24,{"n":6.5,"e":7307}],[23,{"n":7,"e":7317}],[22,{"n":5,"e":7321}],[20,{"n":7.5,"e":7609}],[16,{"n":5.5,"e":7367,"s":1}],[11,{"n":4,"e":7396}],[10,{"n":5,"e":7407,"s":1}],[9,{"n":5,"e":7418,"s":1}],[6,{"n":4.5,"e":7436}],[5,{"n":4.5,"e":7444}],[4,{"n":5,"e":7450,"s":1}],[2,{"n":4.5,"e":7465}],[1,{"n":5,"e":7492,"s":1}]]}],[631,{"n":"Kolarov","f":"Aleksandar","fp":"DL","r":5,"c":112,"s":{"s":35.5,"n":7,"a":5.07,"d":1.17,"Og":1,"Os":86.5,"On":16,"Oa":5.41,"Od":0.97,"pd":15,"pm":1,"Omsn":7},"p":[[-32,{"n":6.5,"e":5508}],[-37,{"n":5,"e":5465}],[-36,{"n":6,"e":5475}],[-35,{"n":7,"e":5483,"g":1}],[-34,{"n":5,"e":5496}],[-33,{"n":5.5,"e":5502}],[-31,{"n":5,"e":5524,"s":1}],[-29,{"n":5,"e":5544}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":6,"e":5564}],[17,{"n":5,"e":7361,"s":1}],[15,{"n":5,"e":7575,"s":1}],[6,{"n":7,"e":7436}],[5,{"n":5,"e":7444,"s":1}],[4,{"n":3,"e":7450}],[2,{"n":5,"e":7465}],[1,{"n":5.5,"e":7492}]]}],[797,{"n":"Darmian","f":"Matteo","fp":"DL","r":10,"c":112,"s":{"g":1,"s":112.5,"n":22,"a":5.11,"d":0.96,"Sg":1,"Ss":42,"Sn":8,"Sa":5.25,"Sd":0.93,"Og":2,"Os":175,"On":35,"Oa":5,"Od":0.97,"pd":26,"pm":9,"Smsn":7.5,"Omsn":7},"p":[[3,{"n":5,"e":7461,"s":1}],[1,{"n":4,"e":7472}],[-38,{"n":4.5,"e":5453}],[-37,{"n":4,"e":5462}],[-36,{"n":7,"e":5469,"g":1}],[-35,{"n":6,"e":5482}],[-33,{"n":4,"e":5501}],[-32,{"n":5.5,"e":5516}],[-31,{"n":3.5,"e":5524}],[-30,{"n":3.5,"e":5534}],[-29,{"n":5,"e":5547,"s":1}],[29,{"n":5,"e":7270,"s":1}],[-28,{"n":5,"e":5554,"s":1}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5,"e":5561,"s":1}],[27,{"n":5,"e":7290,"s":1}],[26,{"n":4.5,"e":7292,"s":1}],[-26,{"n":5,"e":5574}],[-25,{"n":4.5,"e":5586}],[25,{"n":5,"e":7308,"s":1}],[24,{"n":7.5,"e":7307,"g":1}],[23,{"n":5,"e":7317,"s":1}],[22,{"n":5,"e":7321,"s":1}],[21,{"n":5,"e":7328,"s":1}],[18,{"n":5,"e":7351,"s":1}],[17,{"n":5,"e":7361}],[15,{"n":6,"e":7575,"s":1}],[13,{"n":4.5,"e":7566,"s":1}],[12,{"n":7,"e":7397}],[11,{"n":4.5,"e":7396}],[10,{"n":5,"e":7407,"s":1}],[9,{"n":6.5,"e":7418}],[7,{"n":5,"e":7427}],[6,{"n":4.5,"e":7436}],[5,{"n":5.5,"e":7444}],[2,{"n":3,"e":7469}]],"fo":[[7361,[{"t":"I"}]],[7418,[{"t":"I"}]],[7308,[{"t":"Y"}]],[7396,[{"t":"Y"}]]]}],[947,{"n":"Young","f":"Ashley","fp":"DL","r":7,"c":112,"s":{"s":100,"n":20,"a":5,"d":0.56,"Ss":10,"Sn":2,"Sa":5,"Og":3,"Os":175.5,"On":34,"Oa":5.16,"Od":0.93,"pd":13,"pm":21,"Omsn":7},"p":[[-38,{"n":8,"e":5448,"g":1}],[-37,{"n":5,"e":5460,"s":1}],[-36,{"n":5,"e":5471,"s":1}],[-35,{"n":5.5,"e":5479}],[-34,{"n":4.5,"e":5496}],[-33,{"n":6,"e":5503,"s":1}],[-32,{"n":7,"e":5512,"g":1}],[-31,{"n":4.5,"e":5527}],[-30,{"n":4.5,"e":5530}],[-29,{"n":7.5,"e":5542,"g":1}],[29,{"n":5,"e":7270}],[28,{"n":null,"e":7278,"d":1}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":4,"e":5562,"s":1}],[27,{"n":5,"e":7290,"s":1}],[-26,{"n":4,"e":5569}],[-25,{"n":5,"e":5583}],[24,{"n":5,"e":7307,"s":1}],[23,{"n":5,"e":7317,"s":1}],[19,{"n":5,"e":7346}],[18,{"n":5,"e":7351}],[17,{"n":5,"e":7361,"s":1}],[16,{"n":4,"e":7367}],[15,{"n":5,"e":7575}],[14,{"n":5,"e":7383}],[13,{"n":6,"e":7566}],[12,{"n":5,"e":7397}],[11,{"n":5,"e":7396,"s":1}],[9,{"n":5,"e":7418,"s":1}],[8,{"n":4,"e":7420}],[7,{"n":6,"e":7427}],[6,{"n":5,"e":7436,"s":1}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":4,"e":7465}],[1,{"n":6,"e":7492}]],"fo":[[7351,[{"t":"Y"}]],[7420,[{"t":"Y"}]]]}],[974,{"n":"Ranocchia","f":"Andrea","fp":"DC","r":5,"c":112,"s":{"s":29,"n":5,"a":5.8,"d":1.04,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":57,"On":10,"Oa":5.7,"Od":0.82,"pd":10},"p":[[-36,{"n":6,"e":5471}],[-35,{"n":6,"e":5479,"s":1}],[-33,{"n":6,"e":5503}],[-29,{"n":5.5,"e":5542,"s":1}],[29,{"n":5.5,"e":7270}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4.5,"e":5562}],[20,{"n":6,"e":7609}],[8,{"n":5,"e":7420}],[6,{"n":5,"e":7436}],[5,{"n":7.5,"e":7444}]],"fo":[[7270,[{"t":"Y"}]],[7436,[{"t":"Y"}]]]}],[1980,{"n":"Hakimi","f":"Achraf","fp":"DL","r":25,"c":112,"s":{"g":6,"s":150,"n":27,"a":5.56,"d":1.08,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.48,"Og":6,"Os":150,"On":27,"Oa":5.56,"Od":1.08,"pd":6,"pm":21,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":4.5,"e":7270}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5.5,"e":7290}],[26,{"n":5,"e":7292}],[25,{"n":5.5,"e":7308}],[23,{"n":6,"e":7317}],[22,{"n":4.5,"e":7321}],[21,{"n":6.5,"e":7328}],[20,{"n":6.5,"e":7609}],[19,{"n":4,"e":7346}],[18,{"n":6.5,"e":7351}],[17,{"n":6.5,"e":7361,"g":1}],[16,{"n":5,"e":7367}],[15,{"n":7,"e":7575,"g":1}],[14,{"n":6,"e":7383}],[13,{"n":7,"e":7566,"g":1}],[12,{"n":4.5,"e":7397,"s":1}],[11,{"n":5,"e":7396,"s":1}],[10,{"n":8,"e":7407,"g":2}],[9,{"n":5,"e":7418,"s":1}],[8,{"n":5,"e":7420}],[7,{"n":5,"e":7427,"s":1}],[6,{"n":4,"e":7436}],[5,{"n":5,"e":7444,"s":1}],[4,{"n":4,"e":7450}],[3,{"n":5,"e":7460}],[2,{"n":6.5,"e":7465,"s":1}],[1,{"n":7,"e":7492,"g":1}]],"fo":[[7396,[{"t":"I"}]],[7317,[{"t":"Y"}]],[7321,[{"t":"Y"}]],[7367,[{"t":"Y"}]],[7407,[{"t":"Y"}]],[7450,[{"t":"Y"}]]],"a":{"m":32,"a":39,"M":48,"n":9}}],[2397,{"n":"Vidal","f":"Arturo","fp":"MD","r":12,"c":112,"s":{"g":1,"s":118.5,"n":23,"a":5.15,"d":0.87,"Og":3,"Os":184,"On":35,"Oa":5.26,"Od":0.9,"pm":34,"pa":1,"Smsn":7,"Omsn":5.5},"p":[[-37,{"n":4.5,"e":4319,"s":1}],[-36,{"n":7,"e":4335,"g":1}],[-35,{"n":5,"e":4339,"s":1}],[-34,{"n":6.5,"e":4357}],[-33,{"n":4,"e":4359}],[-32,{"n":5,"e":4370}],[-31,{"n":5.5,"e":4379}],[-30,{"n":4.5,"e":4396}],[-29,{"n":5.5,"e":4399,"s":1}],[-28,{"n":5.5,"e":4413,"g":1}],[-27,{"n":5.5,"e":4420,"s":1}],[-38,{"n":7,"e":4308}],[28,{"n":null,"e":7278,"d":1}],[26,{"n":5.5,"e":7292}],[25,{"n":5,"e":7308,"s":1}],[24,{"n":4.5,"e":7307,"s":1}],[23,{"n":4.5,"e":7317,"s":1}],[21,{"n":4,"e":7328}],[20,{"n":5,"e":7609,"s":1}],[19,{"n":5,"e":7346}],[18,{"n":7,"e":7351,"g":1}],[17,{"n":5.5,"e":7361}],[16,{"n":4.5,"e":7367,"s":1}],[15,{"n":3.5,"e":7575}],[14,{"n":5,"e":7383,"s":1}],[13,{"n":4.5,"e":7566,"s":1}],[10,{"n":5,"e":7407}],[9,{"n":7,"e":7418}],[8,{"n":4.5,"e":7420}],[7,{"n":5.5,"e":7427}],[6,{"n":5,"e":7436,"s":1}],[5,{"n":6.5,"e":7444}],[4,{"n":5.5,"e":7450}],[3,{"n":6,"e":7460}],[2,{"n":5.5,"e":7465,"s":1}],[1,{"n":4.5,"e":7492}]],"fo":[[7351,[{"t":"I"}]],[7361,[{"t":"I"}]],[7427,[{"t":"I"},{"t":"Y"}]],[7450,[{"t":"Y"}]]]}],[4357,{"n":"Pinamonti","f":"Andrea","fp":"A","r":5,"c":112,"s":{"s":21.5,"n":5,"a":4.3,"d":0.27,"Og":3,"Os":79.5,"On":18,"Oa":4.42,"Od":0.79,"pa":18,"Omsn":5},"p":[[-38,{"n":4.5,"e":5451,"s":1}],[-37,{"n":3,"e":5464}],[-36,{"n":3,"e":5471}],[-35,{"n":5,"e":5484}],[-34,{"n":4,"e":5491,"s":1}],[-33,{"n":4,"e":5506}],[-32,{"n":5.5,"e":5511}],[-31,{"n":4,"e":5521}],[-30,{"n":5,"e":5537,"g":1,"s":1}],[-29,{"n":6,"e":5541,"g":1}],[-28,{"n":5.5,"e":5548,"g":1}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4.5,"e":5561,"s":1}],[-26,{"n":4,"e":5572,"s":1}],[22,{"n":4.5,"e":7321,"s":1}],[21,{"n":4.5,"e":7328,"s":1}],[20,{"n":4.5,"e":7609,"s":1}],[6,{"n":4,"e":7436,"s":1}],[5,{"n":4,"e":7444,"s":1}]]}],[4361,{"n":"Bastoni","f":"Alessandro","fp":"DC","r":22,"c":112,"s":{"s":142.5,"n":25,"a":5.7,"d":0.82,"Ss":127,"Sn":22,"Sa":5.77,"Sd":0.81,"Og":1,"Os":204,"On":37,"Oa":5.51,"Od":0.85,"pd":37,"Omsn":6.5},"p":[[-38,{"n":5.5,"e":5448}],[-37,{"n":6,"e":5460}],[-35,{"n":4.5,"e":5479,"s":1}],[-34,{"n":4.5,"e":5496}],[-33,{"n":5,"e":5503}],[-32,{"n":5.5,"e":5512}],[-30,{"n":4,"e":5530}],[-29,{"n":6,"e":5542}],[29,{"n":6,"e":7270}],[-28,{"n":6.5,"e":5554,"g":1,"s":1}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":6,"e":7290}],[-27,{"n":4.5,"e":5562}],[-26,{"n":4,"e":5569}],[26,{"n":7,"e":7292}],[25,{"n":5.5,"e":7308}],[-25,{"n":5.5,"e":5583}],[24,{"n":6,"e":7307}],[23,{"n":6,"e":7317}],[22,{"n":5.5,"e":7321}],[21,{"n":6,"e":7328}],[20,{"n":6.5,"e":7609}],[19,{"n":5.5,"e":7346}],[18,{"n":7.5,"e":7351}],[17,{"n":4,"e":7361}],[16,{"n":5,"e":7367}],[15,{"n":7,"e":7575}],[14,{"n":6,"e":7383}],[13,{"n":4.5,"e":7566}],[12,{"n":6,"e":7397}],[11,{"n":5,"e":7396}],[10,{"n":5.5,"e":7407}],[9,{"n":6,"e":7418}],[8,{"n":5,"e":7420}],[7,{"n":5.5,"e":7427}],[5,{"n":6,"e":7444}],[3,{"n":4.5,"e":7460}],[2,{"n":5,"e":7465}]],"fo":[[7270,[{"t":"Y"}]],[7346,[{"t":"Y"}]],[7361,[{"t":"Y"}]],[7383,[{"t":"Y"}]],[7420,[{"t":"Y"}]]],"a":{"m":16,"a":22,"M":28,"n":9}}],[4364,{"n":"Radu","f":"Ionut","fp":"G","r":5,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[4378,{"n":"Lautaro Martínez","f":"","fp":"A","r":34,"c":112,"s":{"g":14,"s":157.5,"n":28,"a":5.63,"d":1.27,"Sg":14,"Ss":157.5,"Sn":28,"Sa":5.63,"Sd":1.27,"Og":17,"Os":227.5,"On":42,"Oa":5.42,"Od":1.24,"pa":42,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5448}],[-37,{"n":6.5,"e":5460,"g":1,"s":1}],[-36,{"n":4.5,"e":5471}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":4,"e":5496}],[-33,{"n":5,"e":5503}],[-32,{"n":7.5,"e":5512,"g":1}],[-31,{"n":4.5,"e":5527,"s":1}],[-30,{"n":3,"e":5530}],[-29,{"n":4.5,"e":5542}],[29,{"n":4.5,"e":7270}],[-28,{"n":5,"e":5554}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4.5,"e":5562,"s":1}],[27,{"n":7,"e":7290,"g":1}],[26,{"n":5,"e":7292}],[-26,{"n":5,"e":5569}],[-25,{"n":6,"e":5583,"g":1}],[25,{"n":4.5,"e":7308,"s":1}],[24,{"n":6,"e":7307}],[23,{"n":8,"e":7317,"g":2}],[22,{"n":7.5,"e":7321,"g":1}],[21,{"n":5,"e":7328,"s":1}],[20,{"n":7,"e":7609,"g":1}],[19,{"n":4,"e":7346}],[18,{"n":5,"e":7351}],[17,{"n":5,"e":7361}],[16,{"n":4,"e":7367}],[15,{"n":8.5,"e":7575,"g":3}],[14,{"n":7,"e":7383,"g":1}],[13,{"n":5,"e":7566}],[12,{"n":4,"e":7397}],[11,{"n":5,"e":7396,"s":1}],[10,{"n":4.5,"e":7407,"s":1}],[9,{"n":6,"e":7418}],[8,{"n":6,"e":7420,"g":1,"s":1}],[7,{"n":6,"e":7427,"g":1}],[6,{"n":4.5,"e":7436}],[5,{"n":4,"e":7444}],[4,{"n":5.5,"e":7450}],[3,{"n":6,"e":7460,"g":1}],[2,{"n":7,"e":7465,"g":1}],[1,{"n":6,"e":7492,"g":1,"s":1}]],"fo":[[7367,[{"t":"Y"}]],[7427,[{"t":"Y"}]],[7444,[{"t":"Y"}]]],"a":{"m":38,"a":53,"M":81,"n":14}}],[4465,{"n":"Barella","f":"Nicolò","fp":"MO","r":20,"c":112,"s":{"g":3,"s":152.5,"n":28,"a":5.45,"d":1.07,"Sg":3,"Ss":152.5,"Sn":28,"Sa":5.45,"Sd":1.07,"Og":3,"Os":194,"On":36,"Oa":5.39,"Od":1.02,"pm":34,"pa":2,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":6,"e":5448}],[-37,{"n":6,"e":5460}],[-35,{"n":6,"e":5479}],[-34,{"n":4.5,"e":5496}],[-29,{"n":5.5,"e":5542}],[29,{"n":4.5,"e":7270}],[-28,{"n":5,"e":5554}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7290}],[-26,{"n":3.5,"e":5569}],[26,{"n":5.5,"e":7292}],[-25,{"n":5,"e":5583}],[25,{"n":4.5,"e":7308}],[24,{"n":7,"e":7307}],[23,{"n":6,"e":7317}],[22,{"n":4,"e":7321}],[21,{"n":5.5,"e":7328,"g":1}],[20,{"n":5,"e":7609}],[19,{"n":5,"e":7346}],[18,{"n":8,"e":7351,"g":1}],[17,{"n":6,"e":7361}],[16,{"n":3,"e":7367}],[15,{"n":6,"e":7575}],[14,{"n":6,"e":7383}],[13,{"n":5,"e":7566}],[12,{"n":6,"e":7397}],[11,{"n":7,"e":7396,"g":1}],[10,{"n":5,"e":7407,"s":1}],[9,{"n":7,"e":7418}],[8,{"n":6,"e":7420}],[7,{"n":4.5,"e":7427}],[6,{"n":5.5,"e":7436}],[5,{"n":6,"e":7444,"s":1}],[4,{"n":4.5,"e":7450}],[3,{"n":5.5,"e":7460}],[2,{"n":5.5,"e":7465}],[1,{"n":4,"e":7492,"s":1}]],"fo":[[7317,[{"t":"I"}]],[7351,[{"t":"Y"}]],[7367,[{"t":"Y"}]]]}],[4467,{"n":"Gagliardini","f":"Roberto","fp":"MD","r":9,"c":112,"s":{"g":2,"s":113,"n":22,"a":5.14,"d":0.94,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.29,"Og":4,"Os":182,"On":35,"Oa":5.2,"Od":1.1,"pm":35,"Smsn":7,"Omsn":7},"p":[[-38,{"n":6,"e":5448}],[-36,{"n":5,"e":5471}],[-35,{"n":4,"e":5479}],[-34,{"n":4.5,"e":5496}],[-33,{"n":7.5,"e":5503,"g":1}],[-32,{"n":6.5,"e":5512}],[-31,{"n":5.5,"e":5527}],[-30,{"n":3,"e":5530}],[-29,{"n":7.5,"e":5542,"g":1}],[29,{"n":5,"e":7270,"s":1}],[-28,{"n":6,"e":5554}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4,"e":5562}],[27,{"n":5,"e":7290}],[26,{"n":4.5,"e":7292,"s":1}],[-26,{"n":4.5,"e":5569,"s":1}],[-25,{"n":5,"e":5583}],[24,{"n":4.5,"e":7307,"s":1}],[23,{"n":5,"e":7317,"s":1}],[22,{"n":4.5,"e":7321,"s":1}],[21,{"n":5.5,"e":7328,"s":1}],[20,{"n":6.5,"e":7609}],[18,{"n":5,"e":7351,"s":1}],[17,{"n":5,"e":7361,"s":1}],[16,{"n":4,"e":7367}],[15,{"n":4.5,"e":7575,"s":1}],[14,{"n":5,"e":7383,"s":1}],[13,{"n":4.5,"e":7566}],[12,{"n":5.5,"e":7397}],[10,{"n":5.5,"e":7407}],[9,{"n":7,"e":7418,"g":1}],[8,{"n":4.5,"e":7420}],[7,{"n":5,"e":7427,"s":1}],[6,{"n":4.5,"e":7436}],[3,{"n":4.5,"e":7460}],[1,{"n":8,"e":7492,"g":1}]],"fo":[[7270,[{"t":"Y"}]],[7290,[{"t":"Y"}]]]}],[4533,{"n":"Vecino","f":"Matías","fp":"MD","r":1,"c":112,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":22,"On":5,"Oa":4.4,"Od":0.65,"pm":5},"p":[[-31,{"n":4,"e":5527,"s":1}],[-30,{"n":4.5,"e":5530,"s":1}],[29,{"n":5,"e":7270,"s":1}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7290,"s":1}],[-26,{"n":3.5,"e":5569}]]}],[4539,{"n":"Sensi","f":"Stefano","fp":"MD","r":3,"c":112,"s":{"s":49.5,"n":10,"a":4.95,"d":0.72,"Os":49.5,"On":10,"Oa":4.95,"Od":0.72,"pm":10},"p":[[28,{"n":null,"e":7278,"d":1}],[20,{"n":4.5,"e":7609,"s":1}],[19,{"n":4.5,"e":7346,"s":1}],[15,{"n":5.5,"e":7575,"s":1}],[13,{"n":5.5,"e":7566,"s":1}],[12,{"n":5,"e":7397,"s":1}],[11,{"n":4.5,"e":7396,"s":1}],[9,{"n":5,"e":7418,"s":1}],[3,{"n":3.5,"e":7460,"s":1}],[2,{"n":5.5,"e":7465,"s":1}],[1,{"n":6,"e":7492}]],"fo":[[7346,[{"t":"Y"}]]]}],[4585,{"n":"Skriniar","f":"Milan","fp":"DC","r":23,"c":112,"s":{"g":3,"s":131.5,"n":24,"a":5.48,"d":0.89,"Sg":3,"Ss":123.5,"Sn":22,"Sa":5.61,"Sd":0.8,"Og":3,"Os":176,"On":33,"Oa":5.33,"Od":0.91,"pd":33,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":5,"e":5448,"s":1}],[-36,{"n":5.5,"e":5471}],[-34,{"n":4.5,"e":5496}],[-33,{"n":6.5,"e":5503}],[-32,{"n":5,"e":5512,"s":1}],[-31,{"n":4,"e":5527}],[29,{"n":6,"e":7270}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5,"e":5562}],[27,{"n":4.5,"e":7290}],[-26,{"n":3.5,"e":5569}],[26,{"n":7.5,"e":7292,"g":1}],[-25,{"n":5.5,"e":5583}],[25,{"n":4.5,"e":7308}],[24,{"n":6,"e":7307}],[23,{"n":6,"e":7317}],[22,{"n":6.5,"e":7321}],[21,{"n":6,"e":7328}],[20,{"n":6,"e":7609}],[19,{"n":5.5,"e":7346}],[18,{"n":5.5,"e":7351}],[17,{"n":5.5,"e":7361,"g":1}],[16,{"n":5.5,"e":7367}],[15,{"n":6,"e":7575}],[14,{"n":7,"e":7383,"g":1}],[13,{"n":5.5,"e":7566}],[12,{"n":5,"e":7397}],[11,{"n":4.5,"e":7396}],[10,{"n":5,"e":7407}],[9,{"n":6,"e":7418}],[8,{"n":5,"e":7420,"s":1}],[7,{"n":4.5,"e":7427}],[3,{"n":4,"e":7460}],[1,{"n":4,"e":7492}]],"fo":[[7397,[{"t":"Y"}]]]}],[4628,{"n":"Brozovic","f":"Marcelo","fp":"MD","r":21,"c":112,"s":{"g":1,"s":144,"n":25,"a":5.76,"d":0.79,"Ss":46,"Sn":8,"Sa":5.75,"Sd":0.65,"Og":1,"Os":198.5,"On":35,"Oa":5.67,"Od":0.9,"pm":34,"pa":1,"Smsn":6,"Omsn":6},"p":[[-38,{"n":7,"e":5448}],[-37,{"n":6,"e":5460}],[-36,{"n":7,"e":5471}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":5,"e":5496}],[-33,{"n":6,"e":5503}],[-32,{"n":6,"e":5512}],[-31,{"n":3.5,"e":5527}],[-30,{"n":4.5,"e":5530}],[29,{"n":5.5,"e":7270}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7290}],[-26,{"n":4.5,"e":5569}],[26,{"n":6,"e":7292}],[25,{"n":5,"e":7308}],[24,{"n":5.5,"e":7307}],[23,{"n":6,"e":7317}],[22,{"n":6,"e":7321}],[21,{"n":7,"e":7328}],[19,{"n":5.5,"e":7346}],[18,{"n":7,"e":7351}],[17,{"n":7,"e":7361}],[16,{"n":6,"e":7367}],[15,{"n":7,"e":7575}],[14,{"n":6,"e":7383}],[13,{"n":5,"e":7566}],[12,{"n":5.5,"e":7397}],[11,{"n":5.5,"e":7396}],[10,{"n":7,"e":7407}],[7,{"n":5.5,"e":7427}],[6,{"n":6,"e":7436,"g":1,"s":1}],[5,{"n":6,"e":7444}],[4,{"n":4.5,"e":7450}],[3,{"n":4.5,"e":7460,"s":1}],[2,{"n":5.5,"e":7465}],[1,{"n":4.5,"e":7492,"s":1}]],"fo":[[7397,[{"t":"I"},{"t":"Y"}]],[7270,[{"t":"Y"}]],[7383,[{"t":"Y"}]],[7450,[{"t":"Y"}]],[7566,[{"t":"Y"}]]]}],[4671,{"n":"de Vrij","f":"Stefan","fp":"DC","r":23,"c":112,"s":{"g":1,"s":136.5,"n":25,"a":5.46,"d":0.64,"Og":3,"Os":198,"On":37,"Oa":5.35,"Od":0.65,"pd":37,"Smsn":6,"Omsn":5.5},"p":[[-38,{"n":6,"e":5448}],[-37,{"n":5.5,"e":5460}],[-35,{"n":5,"e":5479}],[-34,{"n":6,"e":5496,"g":1}],[-32,{"n":5.5,"e":5512}],[-31,{"n":4.5,"e":5527}],[-30,{"n":4.5,"e":5530}],[-29,{"n":4.5,"e":5542}],[-28,{"n":5.5,"e":5554,"g":1}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5,"e":5562,"s":1}],[27,{"n":5.5,"e":7290}],[-26,{"n":4,"e":5569}],[26,{"n":6,"e":7292}],[25,{"n":6,"e":7308}],[-25,{"n":5.5,"e":5583}],[24,{"n":6,"e":7307}],[23,{"n":6,"e":7317}],[22,{"n":5.5,"e":7321}],[21,{"n":6,"e":7328}],[20,{"n":5,"e":7609,"s":1}],[19,{"n":5.5,"e":7346}],[18,{"n":6,"e":7351}],[17,{"n":4.5,"e":7361}],[16,{"n":6,"e":7367,"g":1}],[15,{"n":6,"e":7575}],[14,{"n":6,"e":7383}],[13,{"n":5,"e":7566}],[12,{"n":6,"e":7397}],[11,{"n":5.5,"e":7396}],[10,{"n":5.5,"e":7407}],[9,{"n":6,"e":7418}],[8,{"n":5,"e":7420,"s":1}],[7,{"n":4.5,"e":7427}],[6,{"n":5,"e":7436}],[4,{"n":3.5,"e":7450}],[3,{"n":5.5,"e":7460}],[1,{"n":5,"e":7492}]],"fo":[[7367,[{"t":"Y"}]],[7427,[{"t":"Y"}]]]}],[4764,{"n":"Perisic","f":"Ivan","fp":"MO","r":20,"c":112,"s":{"g":2,"s":133.5,"n":25,"a":5.34,"d":0.85,"Og":2,"Os":133.5,"On":25,"Oa":5.34,"Od":0.85,"pm":23,"pa":2,"Smsn":6.5,"Omsn":6.5},"p":[[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7290}],[26,{"n":6,"e":7292}],[25,{"n":5,"e":7308}],[24,{"n":6,"e":7307}],[23,{"n":7,"e":7317}],[22,{"n":5.5,"e":7321}],[21,{"n":7,"e":7328,"g":1}],[20,{"n":6,"e":7609}],[19,{"n":5,"e":7346,"s":1}],[17,{"n":5,"e":7361,"s":1}],[16,{"n":4,"e":7367,"s":1}],[15,{"n":5.5,"e":7575,"s":1}],[14,{"n":5,"e":7383}],[13,{"n":4.5,"e":7566,"s":1}],[11,{"n":4,"e":7396}],[10,{"n":6,"e":7407}],[9,{"n":6,"e":7418}],[8,{"n":5,"e":7420,"s":1}],[7,{"n":5,"e":7427,"s":1}],[6,{"n":6.5,"e":7436,"g":1}],[5,{"n":5,"e":7444}],[4,{"n":5,"e":7450}],[3,{"n":6,"e":7460}],[2,{"n":4,"e":7465}],[1,{"n":4.5,"e":7492,"s":1}]],"fo":[[7328,[{"t":"I"},{"t":"Y"}]],[7361,[{"t":"Y"}]],[7418,[{"t":"Y"}]]]}],[4777,{"n":"D'Ambrosio","f":"Danilo","fp":"DL","r":9,"c":112,"s":{"g":3,"s":71.5,"n":14,"a":5.11,"d":1,"Og":6,"Os":125.5,"On":24,"Oa":5.23,"Od":1.06,"pd":22,"pm":2,"Smsn":4.5,"Omsn":4.5},"p":[[-38,{"n":7,"e":5448,"g":1}],[-37,{"n":6.5,"e":5460,"g":1}],[-36,{"n":5,"e":5471,"s":1}],[-35,{"n":4.5,"e":5479}],[-34,{"n":5,"e":5496,"s":1}],[-33,{"n":5,"e":5503,"s":1}],[-32,{"n":4.5,"e":5512}],[-30,{"n":4,"e":5530}],[-29,{"n":7.5,"e":5542,"g":1}],[-28,{"n":5,"e":5554}],[28,{"n":null,"e":7278,"d":1}],[26,{"n":5,"e":7292,"s":1}],[24,{"n":5,"e":7307,"s":1}],[22,{"n":5,"e":7321,"s":1}],[16,{"n":5,"e":7367,"s":1}],[13,{"n":5,"e":7566,"s":1}],[12,{"n":5,"e":7397,"s":1}],[11,{"n":6.5,"e":7396,"g":1,"s":1}],[10,{"n":4.5,"e":7407,"s":1}],[8,{"n":5.5,"e":7420}],[7,{"n":5,"e":7427,"s":1}],[5,{"n":7.5,"e":7444,"g":1}],[4,{"n":3,"e":7450}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":4.5,"e":7465,"g":1}]],"fo":[[7397,[{"t":"Y"}]],[7420,[{"t":"Y"}]]]}],[4814,{"n":"Handanovic","f":"Samir","fp":"G","r":22,"c":112,"s":{"s":155,"n":28,"a":5.54,"d":1.04,"Ss":155,"Sn":28,"Sa":5.54,"Sd":1.04,"Os":226,"On":42,"Oa":5.38,"Od":1,"pg":42},"p":[[-38,{"n":6,"e":5448}],[-37,{"n":6,"e":5460}],[-36,{"n":6,"e":5471}],[-35,{"n":6,"e":5479}],[-34,{"n":4,"e":5496}],[-33,{"n":5,"e":5503}],[-32,{"n":4,"e":5512}],[-31,{"n":4,"e":5527}],[-30,{"n":6,"e":5530}],[-29,{"n":6,"e":5542}],[29,{"n":6,"e":7270}],[-28,{"n":5,"e":5554}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4,"e":5562}],[27,{"n":5,"e":7290}],[26,{"n":6.5,"e":7292}],[-26,{"n":4.5,"e":5569}],[-25,{"n":4.5,"e":5583}],[25,{"n":5,"e":7308}],[24,{"n":6,"e":7307}],[23,{"n":8,"e":7317}],[22,{"n":6.5,"e":7321}],[21,{"n":6,"e":7328}],[20,{"n":5.5,"e":7609}],[19,{"n":5.5,"e":7346}],[18,{"n":7,"e":7351}],[17,{"n":6,"e":7361}],[16,{"n":4.5,"e":7367}],[15,{"n":5,"e":7575}],[14,{"n":4,"e":7383}],[13,{"n":4.5,"e":7566}],[12,{"n":7,"e":7397}],[11,{"n":5.5,"e":7396}],[10,{"n":6.5,"e":7407}],[9,{"n":6.5,"e":7418}],[8,{"n":5.5,"e":7420}],[7,{"n":4.5,"e":7427}],[6,{"n":4,"e":7436}],[5,{"n":5,"e":7444}],[4,{"n":6,"e":7450}],[3,{"n":5.5,"e":7460}],[2,{"n":4,"e":7465}],[1,{"n":4,"e":7492}]],"fo":[[7397,[{"t":"Y"}]]]}],[4815,{"n":"Padelli","f":"Daniele","fp":"G","r":5,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[6518,{"n":"Stankovic","f":"Filip","fp":"G","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7425,{"n":"Carboni","f":"Franco Ezequiel","fp":"A","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7427,{"n":"Vezzoni","f":"Franco Orlando","fp":"MD","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7428,{"n":"Cortinovis","f":"Fabio","fp":"DC","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7429,{"n":"Sottini","f":"Edoardo","fp":"DC","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7431,{"n":"Lorenzo Moretti","f":"","fp":"DC","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7432,{"n":"Squizzato","f":"Niccolò","fp":"MD","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7434,{"n":"Satriano","f":"Martín","fp":"A","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7438,{"n":"Chio","f":"Riccardo Boscolo","fp":"MD","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7439,{"n":"Bonfanti","f":"Nicholas","fp":"A","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7440,{"n":"Oristanio","f":"Gaetano Pio","fp":"A","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7443,{"n":"Persyn","f":"Tibo","fp":"MO","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7514,{"n":"Wieser","f":"David","fp":"MD","r":1,"c":112,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[121,{"n":"Rabiot","f":"Adrien","fp":"MD","r":18,"c":115,"s":{"g":2,"s":129,"n":24,"a":5.38,"d":0.91,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.29,"Og":3,"Os":190.5,"On":35,"Oa":5.44,"Od":0.86,"pm":35,"Smsn":6,"Omsn":6},"p":[[29,{"n":5,"e":7276,"s":1}],[26,{"n":6.5,"e":7293,"g":1}],[25,{"n":5.5,"e":7647}],[24,{"n":5,"e":7312}],[22,{"n":6,"e":7323}],[21,{"n":7,"e":7330}],[20,{"n":5,"e":7339,"s":1}],[17,{"n":5.5,"e":7358,"s":1}],[16,{"n":6,"e":7366}],[10,{"n":4.5,"e":7408}],[7,{"n":6,"e":7431}],[6,{"n":6,"e":7519,"g":1,"s":1}],[5,{"n":6,"e":7445}],[2,{"n":2.5,"e":7468}],[-38,{"n":5.5,"e":5452}],[-36,{"n":6,"e":5472}],[-35,{"n":5.5,"e":5487}],[-34,{"n":6.5,"e":5492}],[-33,{"n":4.5,"e":5505,"s":1}],[-32,{"n":5,"e":5513}],[-31,{"n":6,"e":5523,"g":1}],[-30,{"n":7,"e":5531}],[-29,{"n":5.5,"e":5541}],[-28,{"n":5,"e":5550}],[28,{"n":5,"e":8248}],[-27,{"n":5,"e":5559}],[27,{"n":5.5,"e":7285}],[19,{"n":5.5,"e":7342,"s":1}],[18,{"n":4,"e":7351}],[12,{"n":5.5,"e":7392,"s":1}],[11,{"n":5,"e":7401}],[9,{"n":5.5,"e":7537}],[8,{"n":5,"e":7421}],[4,{"n":5,"e":7501,"s":1}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":6.5,"e":7474}]],"fo":[[7323,[{"t":"Y"}]],[7392,[{"t":"Y"}]],[7401,[{"t":"Y"}]],[7421,[{"t":"Y"}]],[7519,[{"t":"Y"}]]]}],[690,{"n":"Ramsey","f":"Aaron","fp":"MO","r":13,"c":115,"s":{"g":2,"s":105,"n":19,"a":5.53,"d":0.98,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":154,"On":29,"Oa":5.31,"Od":1.11,"pm":28,"pa":1,"Smsn":6,"Omsn":6},"p":[[15,{"n":6,"e":7374}],[-38,{"n":5.5,"e":5452,"s":1}],[-35,{"n":3.5,"e":5487}],[-34,{"n":4.5,"e":5492}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":4.5,"e":5513,"s":1}],[-31,{"n":3.5,"e":5523,"s":1}],[-29,{"n":4.5,"e":5541,"s":1}],[29,{"n":5,"e":7276,"s":1}],[-28,{"n":5.5,"e":5550,"s":1}],[-27,{"n":4.5,"e":5559,"s":1}],[-26,{"n":8,"e":5569,"g":1}],[26,{"n":6,"e":7293}],[25,{"n":5,"e":7647,"s":1}],[24,{"n":5,"e":7312}],[23,{"n":7,"e":7632}],[20,{"n":6,"e":7339,"g":1,"s":1}],[19,{"n":5,"e":7342,"s":1}],[18,{"n":4.5,"e":7351}],[17,{"n":7,"e":7358,"g":1,"s":1}],[16,{"n":5,"e":7366}],[14,{"n":4.5,"e":7378}],[13,{"n":7.5,"e":7388}],[10,{"n":4.5,"e":7408,"s":1}],[9,{"n":5.5,"e":7537}],[6,{"n":5,"e":7519,"s":1}],[5,{"n":4.5,"e":7445}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":7,"e":7474}]],"fo":[[7312,[{"t":"Y"}]],[7632,[{"t":"Y"}]]]}],[1277,{"n":"Morata","f":"Álvaro","fp":"A","r":25,"c":115,"s":{"g":7,"s":121.5,"n":23,"a":5.28,"d":1.17,"Sg":3,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.37,"Og":12,"Os":180,"On":35,"Oa":5.14,"Od":1.14,"pa":35,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":5.5,"e":4309}],[-37,{"n":4,"e":4322,"s":1}],[-36,{"n":3.5,"e":4329}],[-35,{"n":6,"e":4340,"g":1}],[-34,{"n":7,"e":4349,"g":2}],[-32,{"n":4,"e":4369}],[-31,{"n":4,"e":4382,"s":1}],[-30,{"n":4,"e":4389}],[-29,{"n":6,"e":4403,"g":1,"s":1}],[-28,{"n":4.5,"e":4408,"s":1}],[-27,{"n":5.5,"e":4419,"g":1}],[-33,{"n":4.5,"e":4359,"s":1}],[29,{"n":5.5,"e":7276}],[28,{"n":4,"e":8248}],[27,{"n":4.5,"e":7285}],[26,{"n":7.5,"e":7293,"g":2}],[25,{"n":6,"e":7647,"g":1,"s":1}],[23,{"n":4.5,"e":7632,"s":1}],[22,{"n":4.5,"e":7323}],[21,{"n":5.5,"e":7330}],[20,{"n":6,"e":7339}],[19,{"n":4.5,"e":7342,"s":1}],[18,{"n":4,"e":7351}],[17,{"n":4,"e":7358,"s":1}],[14,{"n":4.5,"e":7378}],[13,{"n":8,"e":7388,"g":1}],[12,{"n":4.5,"e":7392}],[11,{"n":6,"e":7401,"s":1}],[9,{"n":5.5,"e":7537,"g":1}],[8,{"n":5,"e":7421}],[7,{"n":5,"e":7431}],[6,{"n":7.5,"e":7519,"g":1}],[5,{"n":5,"e":7445}],[4,{"n":6,"e":7501,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4,"e":7468}]],"fo":[[7431,[{"t":"I"}]],[7537,[{"t":"R"}]],[7351,[{"t":"Y"}]],[7392,[{"t":"Y"}]]]}],[1292,{"n":"Danilo","f":"","fp":"DL","r":24,"c":115,"s":{"g":1,"s":146,"n":26,"a":5.62,"d":0.91,"Ss":27,"Sn":5,"Sa":5.4,"Sd":1.08,"Og":2,"Os":193.5,"On":36,"Oa":5.38,"Od":1.04,"pd":33,"pm":3,"Smsn":7,"Omsn":6},"p":[[-38,{"n":3.5,"e":5452}],[-36,{"n":5,"e":5472}],[-35,{"n":5,"e":5487}],[-34,{"n":5,"e":5492,"s":1}],[-33,{"n":6,"e":5505,"g":1}],[-32,{"n":4,"e":5513}],[-31,{"n":3.5,"e":5523}],[-30,{"n":7,"e":5531}],[-29,{"n":5,"e":5541}],[29,{"n":4.5,"e":7276}],[28,{"n":4,"e":8248}],[27,{"n":6,"e":7285}],[-27,{"n":3.5,"e":5559,"s":1}],[26,{"n":6,"e":7293}],[25,{"n":6.5,"e":7647}],[23,{"n":5.5,"e":7632}],[22,{"n":5.5,"e":7323}],[21,{"n":6,"e":7330}],[20,{"n":6,"e":7339}],[19,{"n":5.5,"e":7342}],[18,{"n":4,"e":7351}],[17,{"n":7,"e":7358,"g":1}],[16,{"n":5.5,"e":7366}],[15,{"n":7,"e":7374}],[14,{"n":4,"e":7378,"s":1}],[13,{"n":7,"e":7388}],[12,{"n":5,"e":7392}],[10,{"n":4.5,"e":7408}],[9,{"n":5.5,"e":7537}],[8,{"n":5,"e":7421}],[7,{"n":5.5,"e":7431}],[6,{"n":6,"e":7519}],[5,{"n":6,"e":7445}],[4,{"n":5.5,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7468}],[1,{"n":6,"e":7474}]],"fo":[[7366,[{"t":"Y"}]],[7378,[{"t":"Y"}]],[7388,[{"t":"Y"}]],[7421,[{"t":"Y"}]],[7632,[{"t":"Y"}]]]}],[1555,{"n":"Cristiano Ronaldo","f":"","fp":"A","r":57,"c":115,"s":{"g":24,"s":158,"n":25,"a":6.32,"d":1.33,"Sg":16,"Ss":121.5,"Sn":20,"Sa":6.08,"Sd":1.37,"Og":34,"Os":236.5,"On":37,"Oa":6.39,"Od":1.19,"pa":37,"Smsn":6,"Omsn":6},"p":[[-37,{"n":5.5,"e":5458}],[-36,{"n":7,"e":5472,"g":1}],[-35,{"n":5,"e":5487}],[-34,{"n":7.5,"e":5492,"g":2}],[-33,{"n":6,"e":5505}],[-32,{"n":6.5,"e":5513,"g":2}],[-31,{"n":6,"e":5523,"g":1}],[-30,{"n":8,"e":5531,"g":1}],[-29,{"n":7,"e":5541,"g":1}],[29,{"n":6,"e":7276,"g":1}],[28,{"n":5,"e":8248}],[-28,{"n":7,"e":5550,"g":1}],[-27,{"n":6,"e":5559,"g":1}],[27,{"n":8.5,"e":7285,"g":3}],[-26,{"n":7,"e":5569}],[26,{"n":4,"e":7293,"s":1}],[25,{"n":7.5,"e":7647,"g":1}],[24,{"n":6.5,"e":7312,"g":1}],[23,{"n":7.5,"e":7632,"g":2}],[22,{"n":5,"e":7323}],[21,{"n":6.5,"e":7330,"g":1}],[20,{"n":5,"e":7339}],[19,{"n":6,"e":7342}],[18,{"n":5,"e":7351}],[17,{"n":6.5,"e":7358,"g":1}],[16,{"n":6,"e":7366}],[15,{"n":8.5,"e":7374,"g":2}],[14,{"n":5.5,"e":7378}],[13,{"n":7.5,"e":7388,"g":2}],[12,{"n":3.5,"e":7392}],[11,{"n":6.5,"e":7401,"g":2}],[10,{"n":5,"e":7408}],[8,{"n":8,"e":7421,"g":2}],[7,{"n":7,"e":7431,"g":1}],[6,{"n":7,"e":7519,"g":2,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7468,"g":2}],[1,{"n":7.5,"e":7474,"g":1}]],"fo":[[7431,[{"t":"I"}]],[7285,[{"t":"Y"}]],[7330,[{"t":"Y"}]]]}],[2436,{"n":"Arthur","f":"","fp":"MD","r":11,"c":115,"s":{"g":1,"s":88,"n":16,"a":5.5,"d":0.88,"Og":1,"Os":114,"On":21,"Oa":5.43,"Od":0.83,"pm":21,"Smsn":7,"Omsn":7},"p":[[-32,{"n":4.5,"e":4370,"s":1}],[-31,{"n":4.5,"e":4379}],[-30,{"n":6,"e":4396,"s":1}],[-29,{"n":5.5,"e":4399}],[-28,{"n":5.5,"e":4413,"s":1}],[28,{"n":3.5,"e":8248}],[27,{"n":5,"e":7285,"s":1}],[26,{"n":5,"e":7293,"s":1}],[21,{"n":5,"e":7330}],[20,{"n":6.5,"e":7339}],[19,{"n":7,"e":7342,"g":1}],[17,{"n":6,"e":7358}],[16,{"n":5,"e":7366,"s":1}],[15,{"n":4.5,"e":7374,"s":1}],[12,{"n":6,"e":7392}],[9,{"n":5,"e":7537}],[8,{"n":6.5,"e":7421}],[6,{"n":5.5,"e":7519}],[5,{"n":6,"e":7445}],[4,{"n":6,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7468,"s":1}]],"fo":[[7392,[{"t":"I"}]],[7330,[{"t":"Y"}]],[7342,[{"t":"Y"}]],[7421,[{"t":"Y"}]]]}],[2661,{"n":"Buffon","f":"Gianluigi","fp":"G","r":7,"c":115,"s":{"s":28,"n":5,"a":5.6,"d":0.82,"Os":38.5,"On":7,"Oa":5.5,"Od":0.82,"pg":7},"p":[[-37,{"n":4.5,"e":5458}],[-30,{"n":6,"e":5531}],[23,{"n":6,"e":7632}],[13,{"n":6.5,"e":7388}],[8,{"n":5,"e":7421}],[6,{"n":4.5,"e":7519}],[4,{"n":6,"e":7501}],[3,{"n":null,"e":7462,"d":1}]]}],[4219,{"n":"Kulusevski","f":"Dejan","fp":"MO","r":14,"c":115,"s":{"g":3,"s":135.5,"n":26,"a":5.21,"d":0.75,"Ss":45.5,"Sn":9,"Sa":5.06,"Sd":0.58,"Og":8,"Os":214.5,"On":40,"Oa":5.36,"Od":0.96,"pm":25,"pa":15,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":5.5,"e":5453}],[-37,{"n":6,"e":5462,"g":1}],[-36,{"n":7.5,"e":5469,"g":1}],[-35,{"n":6.5,"e":5482,"g":1,"s":1}],[-34,{"n":5,"e":5495}],[-33,{"n":5,"e":5501}],[-32,{"n":6,"e":5516,"s":1}],[-31,{"n":4,"e":5524}],[-30,{"n":4,"e":5534}],[-29,{"n":7.5,"e":5547,"g":1}],[29,{"n":4.5,"e":7276}],[28,{"n":5.5,"e":8248}],[-28,{"n":5.5,"e":5554}],[27,{"n":5.5,"e":7285}],[-27,{"n":7.5,"e":5561,"g":1}],[26,{"n":5,"e":7293}],[-26,{"n":4.5,"e":5574}],[-25,{"n":4.5,"e":5586}],[25,{"n":6,"e":7647}],[24,{"n":4,"e":7312}],[23,{"n":5,"e":7632}],[22,{"n":5,"e":7323,"s":1}],[21,{"n":5,"e":7330,"s":1}],[19,{"n":4,"e":7342}],[18,{"n":5,"e":7351,"s":1}],[17,{"n":4.5,"e":7358,"s":1}],[16,{"n":6,"e":7366,"s":1}],[15,{"n":4.5,"e":7374,"s":1}],[14,{"n":4.5,"e":7378,"s":1}],[13,{"n":7,"e":7388,"g":1}],[11,{"n":5,"e":7401,"s":1}],[10,{"n":4.5,"e":7408}],[9,{"n":5.5,"e":7537,"s":1}],[8,{"n":5.5,"e":7421}],[7,{"n":5.5,"e":7431}],[6,{"n":5,"e":7519,"s":1}],[5,{"n":5.5,"e":7445,"g":1,"s":1}],[4,{"n":5.5,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7468}],[1,{"n":7,"e":7474,"g":1}]],"fo":[[7342,[{"t":"Y"}]],[7358,[{"t":"Y"}]],[7408,[{"t":"Y"}]],[7445,[{"t":"Y"}]],[7501,[{"t":"Y"}]]],"a":{"m":16,"a":20,"M":26,"n":5}}],[4231,{"n":"Demiral","f":"Merih","fp":"DC","r":11,"c":115,"s":{"s":76.5,"n":14,"a":5.46,"d":0.8,"Os":81.5,"On":15,"Oa":5.43,"Od":0.78,"pd":15},"p":[[-38,{"n":5,"e":5452,"s":1}],[26,{"n":5.5,"e":7293}],[25,{"n":5.5,"e":7647}],[24,{"n":4,"e":7312}],[23,{"n":6,"e":7632}],[21,{"n":5,"e":7330,"s":1}],[19,{"n":5,"e":7342,"s":1}],[17,{"n":6,"e":7358}],[16,{"n":5,"e":7366,"s":1}],[8,{"n":7.5,"e":7421}],[7,{"n":5.5,"e":7431}],[6,{"n":5.5,"e":7519}],[5,{"n":5,"e":7445}],[4,{"n":6,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":5,"e":7474,"s":1}]],"fo":[[7647,[{"t":"Y"}]]]}],[4296,{"n":"Peeters","f":"Daouda","fp":"MD","r":1,"c":115,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-37,{"n":5,"e":5458,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[4321,{"n":"Fagioli","f":"Nicolo","fp":"MO","r":3,"c":115,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pa":1},"p":[[23,{"n":5,"e":7632,"s":1}]]}],[4330,{"n":"Chiesa","f":"Federico","fp":"A","r":26,"c":115,"s":{"g":8,"s":153,"n":26,"a":5.88,"d":1.24,"Sg":3,"Ss":62,"Sn":10,"Sa":6.2,"Sd":1.18,"Og":12,"Os":219.5,"On":38,"Oa":5.78,"Od":1.37,"pm":27,"pa":11,"Smsn":5,"Omsn":5},"p":[[-38,{"n":7,"e":5456}],[-37,{"n":9,"e":5459,"g":3}],[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5479,"s":1}],[-34,{"n":5,"e":5490}],[-33,{"n":8,"e":5500,"g":1}],[-32,{"n":6,"e":5510,"s":1}],[-31,{"n":4,"e":5520}],[-30,{"n":5,"e":5534,"s":1}],[-29,{"n":4,"e":5540}],[29,{"n":7,"e":7276,"g":1}],[28,{"n":3.5,"e":8248}],[-27,{"n":4,"e":5560}],[27,{"n":6.5,"e":7285}],[-26,{"n":4.5,"e":5577}],[26,{"n":7,"e":7293}],[25,{"n":7,"e":7647,"g":1}],[24,{"n":5,"e":7312}],[23,{"n":7,"e":7632}],[22,{"n":6.5,"e":7323}],[21,{"n":5.5,"e":7330}],[20,{"n":7,"e":7339,"g":1}],[18,{"n":4.5,"e":7351}],[17,{"n":6,"e":7358}],[16,{"n":8,"e":7366,"g":2}],[15,{"n":8,"e":7374,"g":1}],[14,{"n":4,"e":7378}],[13,{"n":4.5,"e":7388,"s":1}],[12,{"n":7,"e":7392,"g":1}],[11,{"n":6,"e":7401}],[10,{"n":5,"e":7408}],[9,{"n":6,"e":7537}],[8,{"n":4.5,"e":7421,"s":1}],[6,{"n":7,"e":7519}],[4,{"n":5,"e":7501}],[3,{"n":4.5,"e":7456}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7465,"g":1}],[1,{"n":6,"e":7470}]],"fo":[[7366,[{"t":"I"}]],[7501,[{"t":"R"}]],[7374,[{"t":"Y"}]]],"a":{"m":28,"a":31,"M":32,"n":5}}],[4395,{"n":"Bentancur","f":"Rodrigo","fp":"MD","r":21,"c":115,"s":{"s":135.5,"n":24,"a":5.65,"d":1.19,"Ss":10,"Sn":2,"Sa":5,"Os":204,"On":36,"Oa":5.67,"Od":1.01,"pm":36},"p":[[-37,{"n":5.5,"e":5458}],[-36,{"n":5,"e":5472,"s":1}],[-35,{"n":4.5,"e":5487}],[-34,{"n":5.5,"e":5492}],[-33,{"n":6,"e":5505}],[-32,{"n":5.5,"e":5513}],[-31,{"n":6,"e":5523}],[-30,{"n":6,"e":5531}],[-29,{"n":6,"e":5541}],[29,{"n":5,"e":7276}],[28,{"n":5,"e":8248,"s":1}],[-28,{"n":6,"e":5550}],[-27,{"n":6,"e":5559}],[-26,{"n":6.5,"e":5569}],[25,{"n":7,"e":7647}],[24,{"n":6.5,"e":7312}],[23,{"n":6,"e":7632}],[22,{"n":4.5,"e":7323}],[20,{"n":6.5,"e":7339}],[19,{"n":7,"e":7342}],[18,{"n":4,"e":7351}],[17,{"n":4.5,"e":7358}],[16,{"n":5,"e":7366}],[15,{"n":7.5,"e":7374}],[14,{"n":3.5,"e":7378}],[13,{"n":8,"e":7388}],[12,{"n":6,"e":7392}],[11,{"n":5,"e":7401}],[10,{"n":7,"e":7408}],[9,{"n":5.5,"e":7537,"s":1}],[8,{"n":4.5,"e":7421,"s":1}],[7,{"n":5.5,"e":7431}],[6,{"n":4.5,"e":7519}],[4,{"n":7,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7468,"s":1}],[1,{"n":5,"e":7474,"s":1}]],"fo":[[7339,[{"t":"Y"}]],[7358,[{"t":"Y"}]],[7366,[{"t":"Y"}]],[7401,[{"t":"Y"}]],[7431,[{"t":"Y"}]],[8248,[{"t":"Y"}]]]}],[4537,{"n":"Bernardeschi","f":"Federico","fp":"A","r":12,"c":115,"s":{"s":115.5,"n":24,"a":4.81,"d":0.76,"Ss":81.5,"Sn":17,"Sa":4.79,"Sd":0.69,"Og":1,"Os":175.5,"On":36,"Oa":4.88,"Od":0.81,"pd":2,"pm":7,"pa":27,"Omsn":7},"p":[[-38,{"n":4,"e":5452}],[-37,{"n":5,"e":5458}],[-36,{"n":7,"e":5472,"g":1,"s":1}],[-35,{"n":4,"e":5487}],[-33,{"n":5.5,"e":5505}],[-32,{"n":4,"e":5513}],[-31,{"n":5,"e":5523}],[-30,{"n":4,"e":5531}],[-29,{"n":5,"e":5541}],[29,{"n":4.5,"e":7276,"s":1}],[28,{"n":3.5,"e":8248}],[-28,{"n":5.5,"e":5550}],[-27,{"n":6,"e":5559}],[27,{"n":5,"e":7285,"s":1}],[-26,{"n":5,"e":5569,"s":1}],[26,{"n":6,"e":7293}],[25,{"n":6,"e":7647,"s":1}],[24,{"n":5,"e":7312}],[23,{"n":5,"e":7632,"s":1}],[22,{"n":5,"e":7323}],[21,{"n":4,"e":7330,"s":1}],[20,{"n":4.5,"e":7339,"s":1}],[19,{"n":5.5,"e":7342}],[18,{"n":5,"e":7351,"s":1}],[17,{"n":4,"e":7358,"s":1}],[16,{"n":4.5,"e":7366,"s":1}],[15,{"n":4,"e":7374,"s":1}],[14,{"n":5,"e":7378,"s":1}],[13,{"n":5,"e":7388,"s":1}],[11,{"n":4.5,"e":7401,"s":1}],[10,{"n":4.5,"e":7408,"s":1}],[9,{"n":5,"e":7537,"s":1}],[8,{"n":7,"e":7421}],[7,{"n":4.5,"e":7431,"s":1}],[5,{"n":4.5,"e":7445}],[4,{"n":4,"e":7501,"s":1}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7276,[{"t":"Y"}]],[7339,[{"t":"Y"}]],[8248,[{"t":"Y"}]]]}],[4569,{"n":"Dybala","f":"Paulo","fp":"A","r":10,"c":115,"s":{"g":2,"s":58.5,"n":11,"a":5.32,"d":1.08,"Og":7,"Os":119.5,"On":21,"Oa":5.69,"Od":1.15,"pa":21,"Smsn":7,"Omsn":6},"p":[[-36,{"n":4.5,"e":5472}],[-35,{"n":5,"e":5487}],[-34,{"n":7,"e":5492}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":5,"e":5513}],[-30,{"n":7,"e":5531,"g":1}],[-29,{"n":7.5,"e":5541,"g":1}],[-28,{"n":7,"e":5550,"g":1}],[-27,{"n":6,"e":5559,"g":1}],[-26,{"n":7,"e":5569,"g":1,"s":1}],[17,{"n":4.5,"e":7358}],[16,{"n":6,"e":7366}],[15,{"n":7,"e":7374,"g":1}],[12,{"n":4.5,"e":7392,"s":1}],[11,{"n":7,"e":7401,"g":1}],[10,{"n":5.5,"e":7408}],[9,{"n":5,"e":7537}],[8,{"n":5,"e":7421,"s":1}],[7,{"n":4,"e":7431,"s":1}],[6,{"n":4,"e":7519}],[5,{"n":6,"e":7445}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7358,[{"t":"I"}]]],"a":{"m":25,"a":50,"M":62,"n":6}}],[4692,{"n":"Cuadrado","f":"Juan","fp":"DL","r":17,"c":115,"s":{"s":106,"n":20,"a":5.3,"d":1.03,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":167.5,"On":31,"Oa":5.4,"Od":1.13,"pd":24,"pm":6,"pa":1,"Omsn":8},"p":[[-37,{"n":4.5,"e":5458}],[-36,{"n":5,"e":5472}],[-35,{"n":4.5,"e":5487,"s":1}],[-34,{"n":5.5,"e":5492}],[-32,{"n":4,"e":5513}],[-31,{"n":4,"e":5523}],[-30,{"n":8,"e":5531,"g":1}],[-29,{"n":7,"e":5541}],[29,{"n":4.5,"e":7276}],[-28,{"n":6,"e":5550}],[-27,{"n":6.5,"e":5559}],[27,{"n":5.5,"e":7285}],[26,{"n":5,"e":7293}],[-26,{"n":6.5,"e":5569}],[22,{"n":4,"e":7323}],[21,{"n":5,"e":7330,"s":1}],[20,{"n":6.5,"e":7339}],[19,{"n":7.5,"e":7342}],[14,{"n":3,"e":7378}],[13,{"n":5,"e":7388,"s":1}],[12,{"n":5,"e":7392}],[11,{"n":5.5,"e":7401}],[10,{"n":7,"e":7408}],[9,{"n":4,"e":7537}],[8,{"n":6,"e":7421}],[7,{"n":6,"e":7431}],[6,{"n":5.5,"e":7519}],[5,{"n":5,"e":7445}],[4,{"n":5.5,"e":7501,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":5.5,"e":7474}]],"fo":[[7378,[{"t":"R"}]],[7276,[{"t":"Y"}]],[7285,[{"t":"Y"}]],[7323,[{"t":"Y"}]],[7408,[{"t":"Y"}]],[7431,[{"t":"Y"}]],[7537,[{"t":"Y"}]]],"a":{"m":19,"a":22,"M":26,"n":6}}],[4710,{"n":"Szczesny","f":"Wojciech","fp":"G","r":18,"c":115,"s":{"s":122,"n":23,"a":5.3,"d":0.95,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.2,"Os":180.5,"On":34,"Oa":5.31,"Od":0.91,"pg":34},"p":[[-38,{"n":5,"e":5452}],[-36,{"n":7,"e":5472}],[-35,{"n":4.5,"e":5487}],[-34,{"n":5,"e":5492}],[-33,{"n":6,"e":5505}],[-32,{"n":4,"e":5513}],[-31,{"n":5,"e":5523}],[-29,{"n":4.5,"e":5541}],[29,{"n":4,"e":7276}],[28,{"n":4,"e":8248}],[-28,{"n":6,"e":5550}],[-27,{"n":5.5,"e":5559}],[27,{"n":6,"e":7285}],[-26,{"n":6,"e":5569}],[26,{"n":5.5,"e":7293}],[25,{"n":7,"e":7647}],[24,{"n":6,"e":7312}],[22,{"n":4.5,"e":7323}],[21,{"n":6,"e":7330}],[20,{"n":5.5,"e":7339}],[19,{"n":6,"e":7342}],[18,{"n":4,"e":7351}],[17,{"n":5,"e":7358}],[16,{"n":7.5,"e":7366}],[15,{"n":5,"e":7374}],[14,{"n":4,"e":7378}],[12,{"n":6,"e":7392}],[11,{"n":4.5,"e":7401}],[10,{"n":5,"e":7408}],[9,{"n":5.5,"e":7537}],[7,{"n":5.5,"e":7431}],[5,{"n":4.5,"e":7445}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":6,"e":7474}]]}],[4712,{"n":"Pinsoglio","f":"Carlo","fp":"G","r":3,"c":115,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-38,{"n":5,"e":5452,"s":1}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7408,[{"t":"R"}]]]}],[4730,{"n":"Alex Sandro","f":"","fp":"DL","r":15,"c":115,"s":{"ao":1,"s":88.5,"n":16,"a":5.53,"d":0.72,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Oao":1,"Os":130.5,"On":24,"Oa":5.44,"Od":0.9,"pd":23,"pm":1,"Omsn":7},"p":[[-37,{"n":4,"e":5458}],[-36,{"n":6,"e":5472}],[-35,{"n":3.5,"e":5487}],[-34,{"n":5,"e":5492}],[-33,{"n":7,"e":5505,"g":1}],[-32,{"n":5.5,"e":5513,"s":1}],[-31,{"n":4.5,"e":5523,"s":1}],[29,{"n":5,"e":7276}],[27,{"n":5,"e":7285}],[-26,{"n":6.5,"e":5569}],[26,{"n":6.5,"e":7293}],[25,{"n":6,"e":7647}],[24,{"n":5.5,"e":7312}],[23,{"n":7,"e":7632}],[22,{"n":5,"e":7323,"s":1}],[21,{"n":5.5,"e":7330}],[20,{"n":5.5,"e":7339,"s":1}],[15,{"n":6,"e":7374}],[14,{"n":4,"e":7378,"a":1}],[13,{"n":6,"e":7388}],[12,{"n":5.5,"e":7392,"s":1}],[11,{"n":6,"e":7401}],[10,{"n":5,"e":7408,"s":1}],[8,{"n":5,"e":7421,"s":1}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7285,[{"t":"I"}]],[7330,[{"t":"I"}]]]}],[4796,{"n":"Bonucci","f":"Leonardo","fp":"DC","r":18,"c":115,"s":{"g":2,"s":113,"n":21,"a":5.38,"d":0.95,"Og":2,"Os":166,"On":32,"Oa":5.19,"Od":1.08,"pd":32,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4,"e":5452}],[-37,{"n":3,"e":5458}],[-36,{"n":5.5,"e":5472}],[-34,{"n":4.5,"e":5492}],[-32,{"n":4.5,"e":5513}],[-31,{"n":2.5,"e":5523}],[-30,{"n":5.5,"e":5531}],[-29,{"n":5,"e":5541}],[-28,{"n":6,"e":5550}],[28,{"n":5,"e":8248}],[-27,{"n":6,"e":5559}],[27,{"n":5,"e":7285,"s":1}],[-26,{"n":6.5,"e":5569}],[26,{"n":5,"e":7293,"s":1}],[21,{"n":6,"e":7330}],[20,{"n":5.5,"e":7339}],[19,{"n":6,"e":7342}],[18,{"n":4,"e":7351}],[17,{"n":6,"e":7358}],[16,{"n":6,"e":7366}],[15,{"n":6,"e":7374}],[14,{"n":3,"e":7378}],[13,{"n":6,"e":7388}],[12,{"n":5.5,"e":7392}],[11,{"n":6,"e":7401}],[10,{"n":6,"e":7408,"g":1}],[7,{"n":5.5,"e":7431}],[6,{"n":5,"e":7519}],[5,{"n":5,"e":7445}],[4,{"n":4,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":7.5,"e":7474,"g":1}]],"fo":[[7330,[{"t":"I"}]],[7445,[{"t":"I"}]],[7351,[{"t":"Y"}]],[7358,[{"t":"Y"}]],[7501,[{"t":"Y"}]]],"a":{"m":22,"a":26,"M":36,"n":7}}],[4817,{"n":"Chiellini","f":"Giorgio","fp":"DC","r":8,"c":115,"s":{"s":51.5,"n":10,"a":5.15,"d":0.75,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":56.5,"On":11,"Oa":5.14,"Od":0.71,"pd":11},"p":[[-33,{"n":5,"e":5505}],[29,{"n":5.5,"e":7276}],[27,{"n":5,"e":7285}],[22,{"n":4.5,"e":7323}],[21,{"n":5.5,"e":7330}],[20,{"n":6,"e":7339}],[19,{"n":5.5,"e":7342}],[18,{"n":3.5,"e":7351}],[15,{"n":5,"e":7374,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7468}],[1,{"n":6,"e":7474}]],"fo":[[7323,[{"t":"Y"}]],[7342,[{"t":"Y"}]]]}],[5313,{"n":"Di Pardo","f":"Alessandro","fp":"MO","r":7,"c":115,"s":{"s":20,"n":4,"a":5,"Os":20,"On":4,"Oa":5,"pm":4},"p":[[26,{"n":5,"e":7293,"s":1}],[25,{"n":5,"e":7647,"s":1}],[24,{"n":5,"e":7312,"s":1}],[23,{"n":5,"e":7632,"s":1}]]}],[5323,{"n":"de Ligt","f":"Matthijs","fp":"DC","r":10,"c":115,"s":{"s":89.5,"n":17,"a":5.26,"d":0.53,"Ss":16.5,"Sn":3,"Sa":5.5,"Og":2,"Os":147,"On":27,"Oa":5.44,"Od":0.73,"pd":27,"Omsn":6},"p":[[-36,{"n":5.5,"e":5472}],[-35,{"n":6,"e":5487,"g":1}],[-34,{"n":6,"e":5492}],[-33,{"n":4,"e":5505}],[-32,{"n":5,"e":5513}],[-30,{"n":5.5,"e":5531}],[-29,{"n":5.5,"e":5541}],[29,{"n":5.5,"e":7276}],[28,{"n":5.5,"e":8248}],[-28,{"n":7.5,"e":5550,"g":1}],[-27,{"n":6.5,"e":5559}],[27,{"n":5.5,"e":7285}],[-26,{"n":6,"e":5569}],[24,{"n":5,"e":7312}],[23,{"n":6,"e":7632}],[22,{"n":4.5,"e":7323}],[21,{"n":5,"e":7330,"s":1}],[19,{"n":4.5,"e":7342,"s":1}],[16,{"n":5.5,"e":7366}],[15,{"n":5.5,"e":7374}],[14,{"n":4,"e":7378}],[13,{"n":5.5,"e":7388}],[12,{"n":5.5,"e":7392}],[11,{"n":5.5,"e":7401}],[10,{"n":5,"e":7408}],[9,{"n":5.5,"e":7537}],[8,{"n":6,"e":7421}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7378,[{"t":"I"}]],[7312,[{"t":"Y"}]],[7374,[{"t":"Y"}]],[7408,[{"t":"Y"}]]]}],[6158,{"n":"Aké","f":"Marley","fp":"MO","r":3,"c":115,"s":{"Os":42,"On":9,"Oa":4.67,"Od":0.25,"pm":9},"p":[[8,{"n":5,"e":6131,"s":1}],[4,{"n":4.5,"e":6171,"s":1}],[19,{"n":4.5,"e":6019,"s":1}],[17,{"n":4.5,"e":6038,"s":1}],[15,{"n":4.5,"e":6067,"s":1}],[12,{"n":5,"e":6091,"s":1}],[7,{"n":4.5,"e":6141,"s":1}],[2,{"n":5,"e":6197,"s":1}],[1,{"n":4.5,"e":6198,"s":1}]]}],[6624,{"n":"Vrioni","f":"Giacomo","fp":"A","r":1,"c":115,"s":{"s":4.5,"n":1,"a":4.5,"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[-38,{"n":4.5,"e":5452,"s":1}],[5,{"n":4.5,"e":7445,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[6968,{"n":"Frabotta","f":"Gianluca","fp":"DL","r":7,"c":115,"s":{"s":75,"n":15,"a":5,"d":0.27,"Os":75,"On":15,"Oa":5,"Od":0.27,"pd":12,"pm":3},"p":[[27,{"n":5,"e":7285,"s":1}],[25,{"n":5,"e":7647}],[23,{"n":5,"e":7632,"s":1}],[18,{"n":4.5,"e":7351}],[17,{"n":5.5,"e":7358}],[16,{"n":5,"e":7366}],[15,{"n":5,"e":7374,"s":1}],[14,{"n":5,"e":7378,"s":1}],[9,{"n":5,"e":7537}],[7,{"n":5.5,"e":7431}],[6,{"n":5,"e":7519,"s":1}],[5,{"n":5,"e":7445,"s":1}],[4,{"n":5,"e":7501}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4.5,"e":7468,"s":1}],[1,{"n":5,"e":7474}]],"fo":[[7351,[{"t":"I"}]],[7358,[{"t":"Y"}]],[7632,[{"t":"Y"}]],[7647,[{"t":"Y"}]]]}],[7154,{"n":"Felix Correia","f":"","fp":"A","r":1,"c":115,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[7161,{"n":"McKennie","f":"Weston","fp":"MD","r":18,"c":115,"s":{"g":4,"s":132.5,"n":24,"a":5.52,"d":0.93,"Og":4,"Os":132.5,"On":24,"Oa":5.52,"Od":0.93,"pm":24,"Smsn":6,"Omsn":6},"p":[[28,{"n":5,"e":8248,"s":1}],[27,{"n":5,"e":7285,"s":1}],[26,{"n":5,"e":7293,"s":1}],[25,{"n":5,"e":7647}],[24,{"n":4.5,"e":7312,"s":1}],[23,{"n":7,"e":7632,"g":1}],[22,{"n":5,"e":7323,"s":1}],[21,{"n":5,"e":7330}],[20,{"n":6,"e":7339}],[19,{"n":7,"e":7342,"g":1}],[18,{"n":5,"e":7351,"s":1}],[17,{"n":4.5,"e":7358}],[16,{"n":7,"e":7366,"g":1,"s":1}],[15,{"n":5.5,"e":7374}],[14,{"n":4,"e":7378}],[13,{"n":7,"e":7388}],[12,{"n":6.5,"e":7392}],[11,{"n":6,"e":7401}],[10,{"n":6,"e":7408,"g":1,"s":1}],[8,{"n":4.5,"e":7421,"s":1}],[7,{"n":5.5,"e":7431,"s":1}],[6,{"n":5.5,"e":7519}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4.5,"e":7468}],[1,{"n":6.5,"e":7474}]],"fo":[[7374,[{"t":"Y"}]],[7392,[{"t":"Y"}]],[7401,[{"t":"Y"}]]]}],[7444,{"n":"Rafia","f":"Hamza","fp":"MO","r":1,"c":115}],[7513,{"n":"Dragusin","f":"Radu","fp":"DC","r":1,"c":115,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[11,{"n":4.5,"e":7401,"s":1}]]}],[7517,{"n":"Riccio","f":"Alessandro Pio","fp":"DC","r":1,"c":115}],[7520,{"n":"de Winter","f":"Koni","fp":"DC","r":1,"c":115}],[7551,{"n":"Garofani","f":"Giovanni Gabriele","fp":"G","r":1,"c":115}],[7552,{"n":"Da Graca","f":"Cosimo Marco","fp":"A","r":1,"c":115}],[7556,{"n":"Israel","f":"Franco","fp":"G","r":1,"c":115}],[7612,{"n":"Ranocchia","f":"Filippo","fp":"MD","r":1,"c":115}],[7613,{"n":"Capellini","f":"Riccardo","fp":"DC","r":1,"c":115}],[7745,{"n":"Marqués","f":"Alejandro","fp":"A","r":1,"c":115}],[7746,{"n":"De Marino","f":"Davide","fp":"DC","r":1,"c":115}],[949,{"n":"Lucas Leiva","f":"","fp":"MD","r":11,"c":121,"s":{"s":116.5,"n":23,"a":5.07,"d":0.96,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.65,"Os":128.5,"On":26,"Oa":4.94,"Od":0.97,"pm":26},"p":[[29,{"n":4.5,"e":8254}],[28,{"n":5.5,"e":7282}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5.5,"e":7316}],[19,{"n":4.5,"e":7343}],[18,{"n":6,"e":7352}],[17,{"n":6,"e":7360}],[11,{"n":5,"e":7402}],[9,{"n":5,"e":7415,"s":1}],[6,{"n":6,"e":7440,"s":1}],[4,{"n":3,"e":7451}],[-32,{"n":4,"e":5514,"s":1}],[-31,{"n":3.5,"e":5522}],[-30,{"n":4.5,"e":5532}],[27,{"n":5,"e":7700}],[26,{"n":4,"e":7293}],[24,{"n":4,"e":7305}],[22,{"n":4.5,"e":7321}],[21,{"n":5.5,"e":7331}],[20,{"n":7,"e":7334}],[15,{"n":5,"e":7373}],[10,{"n":4.5,"e":7544}],[8,{"n":7,"e":7531}],[5,{"n":4.5,"e":7446}],[3,{"n":5,"e":7460}],[2,{"n":5.5,"e":7464}],[1,{"n":4,"e":7476}]],"fo":[[7343,[{"t":"Y"}]],[7352,[{"t":"Y"}]],[7373,[{"t":"Y"}]],[7415,[{"t":"Y"}]],[7531,[{"t":"Y"}]]]}],[1302,{"n":"Hoedt","f":"Wesley","fp":"DC","r":10,"c":121,"s":{"s":71,"n":15,"a":4.73,"d":0.75,"Os":71,"On":15,"Oa":4.73,"Od":0.75,"pd":15},"p":[[14,{"n":5,"e":7379,"s":1}],[26,{"n":4.5,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4,"e":7305}],[22,{"n":3,"e":7321}],[18,{"n":5,"e":7352,"s":1}],[16,{"n":5,"e":7365}],[13,{"n":5.5,"e":7387}],[12,{"n":5,"e":7558}],[11,{"n":4,"e":7402,"s":1}],[10,{"n":5,"e":7544,"s":1}],[8,{"n":5.5,"e":7531,"s":1}],[7,{"n":5,"e":7431,"s":1}],[6,{"n":4,"e":7440}],[5,{"n":6,"e":7446}],[4,{"n":4.5,"e":7451}]],"fo":[[7305,[{"t":"Y"}]],[7321,[{"t":"Y"}]],[7365,[{"t":"Y"}]],[7387,[{"t":"Y"}]],[7440,[{"t":"Y"}]],[7446,[{"t":"Y"}]]]}],[1355,{"n":"Andreas Pereira","f":"","fp":"MO","r":9,"c":121,"s":{"g":1,"s":91.5,"n":19,"a":4.82,"d":0.45,"Ss":23,"Sn":5,"Sa":4.6,"Sd":0.42,"Og":1,"Os":101,"On":21,"Oa":4.81,"Od":0.43,"pm":20,"pa":1,"Smsn":4.5,"Omsn":4.5},"p":[[-32,{"n":5,"e":3991,"s":1}],[-31,{"n":4.5,"e":4002,"s":1}],[29,{"n":4,"e":8254}],[28,{"n":4.5,"e":7282,"s":1}],[27,{"n":4.5,"e":7700,"s":1}],[26,{"n":5,"e":7293,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5,"e":7305,"s":1}],[22,{"n":5,"e":7321,"s":1}],[20,{"n":6,"e":7334,"s":1}],[17,{"n":5,"e":7360,"s":1}],[15,{"n":4.5,"e":7373,"s":1}],[14,{"n":4.5,"e":7379,"s":1}],[13,{"n":5,"e":7387,"s":1}],[12,{"n":5.5,"e":7558,"s":1}],[11,{"n":5,"e":7402,"s":1}],[10,{"n":4.5,"e":7544}],[9,{"n":5,"e":7415,"s":1}],[8,{"n":5,"e":7531,"s":1}],[7,{"n":4.5,"e":7431,"s":1}],[6,{"n":4.5,"e":7440,"g":1}],[5,{"n":4.5,"e":7446,"s":1}]],"fo":[[7282,[{"t":"Y"}]],[7440,[{"t":"Y"}]],[8254,[{"t":"Y"}]]]}],[1793,{"n":"Correa","f":"Joaquín","fp":"A","r":16,"c":121,"s":{"g":3,"s":107,"n":21,"a":5.1,"d":0.78,"Sg":2,"Ss":52.5,"Sn":10,"Sa":5.25,"Sd":0.82,"Og":5,"Os":150,"On":29,"Oa":5.17,"Od":0.91,"pm":5,"pa":24,"Smsn":6,"Omsn":6},"p":[[-37,{"n":7.5,"e":5461,"g":1}],[-38,{"n":5,"e":5455}],[-36,{"n":7,"e":5477,"g":1}],[-35,{"n":5,"e":5480,"s":1}],[-30,{"n":4,"e":5532}],[-29,{"n":5,"e":5546,"s":1}],[29,{"n":5,"e":8254}],[-28,{"n":5,"e":5551,"s":1}],[28,{"n":5,"e":7282,"s":1}],[-27,{"n":4.5,"e":5558}],[27,{"n":4.5,"e":7700}],[26,{"n":6.5,"e":7293,"g":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5,"e":7305}],[23,{"n":5,"e":7316}],[22,{"n":4,"e":7321}],[21,{"n":5,"e":7331}],[20,{"n":6.5,"e":7334,"g":1}],[19,{"n":6,"e":7343}],[14,{"n":5,"e":7379}],[12,{"n":5,"e":7558}],[11,{"n":5,"e":7402,"s":1}],[9,{"n":4,"e":7415}],[8,{"n":6,"e":7531,"g":1}],[7,{"n":6,"e":7431}],[6,{"n":5.5,"e":7440}],[5,{"n":5,"e":7446}],[4,{"n":3.5,"e":7451}],[3,{"n":4.5,"e":7460}],[2,{"n":5,"e":7464}]],"fo":[[7379,[{"t":"I"}]],[7331,[{"t":"Y"}]],[8254,[{"t":"Y"},{"t":"O"}]]]}],[1847,{"n":"Escalante","f":"Gonzalo","fp":"MD","r":9,"c":121,"s":{"s":102.5,"n":20,"a":5.13,"d":0.6,"Os":126.5,"On":25,"Oa":5.06,"Od":0.63,"pm":25},"p":[[-31,{"n":6,"e":4380}],[-30,{"n":5,"e":4392}],[-29,{"n":4.5,"e":4400}],[-24,{"n":4,"e":4450}],[-27,{"n":4.5,"e":4421,"s":1}],[28,{"n":5,"e":7282,"s":1}],[27,{"n":6,"e":7700,"s":1}],[26,{"n":5.5,"e":7293,"s":1}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5,"e":7316,"s":1}],[22,{"n":4.5,"e":7321,"s":1}],[21,{"n":5,"e":7331,"s":1}],[20,{"n":5,"e":7334,"s":1}],[19,{"n":5,"e":7343,"s":1}],[18,{"n":5.5,"e":7352,"s":1}],[16,{"n":6,"e":7365}],[15,{"n":5,"e":7373,"s":1}],[14,{"n":4,"e":7379}],[13,{"n":6.5,"e":7387}],[12,{"n":5.5,"e":7558}],[11,{"n":5,"e":7402,"s":1}],[10,{"n":5,"e":7544,"s":1}],[5,{"n":4,"e":7446,"s":1}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":5,"e":7464,"s":1}],[1,{"n":5,"e":7476,"s":1}]],"fo":[[7316,[{"t":"Y"}]],[7365,[{"t":"Y"}]],[7373,[{"t":"Y"}]],[7379,[{"t":"Y"}]],[7387,[{"t":"Y"}]]]}],[4146,{"n":"Cerbara","f":"Alessandro","fp":"MO","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[4150,{"n":"Furlanetto","f":"Alessio","fp":"G","r":3,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[4175,{"n":"Alia","f":"Marco","fp":"G","r":5,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[4323,{"n":"Armini","f":"Nicolò","fp":"DC","r":1,"c":121,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-36,{"n":5,"e":5477,"s":1}],[25,{"n":null,"e":7304,"d":1}]]}],[4365,{"n":"Luiz Felipe","f":"","fp":"DC","r":5,"c":121,"s":{"s":52,"n":10,"a":5.2,"d":0.82,"Os":87,"On":17,"Oa":5.12,"Od":0.91,"pd":17},"p":[[-33,{"n":5,"e":5507}],[-38,{"n":3.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":5.5,"e":5477}],[-35,{"n":5.5,"e":5480}],[-34,{"n":3.5,"e":5492}],[-31,{"n":6,"e":5522,"s":1}],[25,{"n":null,"e":7304,"d":1}],[18,{"n":6.5,"e":7352}],[17,{"n":6,"e":7360}],[16,{"n":4.5,"e":7365}],[15,{"n":4.5,"e":7373,"s":1}],[14,{"n":4,"e":7379}],[13,{"n":6,"e":7387}],[12,{"n":4.5,"e":7558}],[10,{"n":5.5,"e":7544}],[7,{"n":5.5,"e":7431}],[6,{"n":5,"e":7440}]],"fo":[[7352,[{"t":"I"},{"t":"Y"}]],[7387,[{"t":"I"}]],[7365,[{"t":"Y"}]],[7558,[{"t":"Y"}]]]}],[4434,{"n":"Fares","f":"Mohamed","fp":"MO","r":8,"c":121,"s":{"s":53.5,"n":11,"a":4.86,"d":0.81,"Ss":5,"Sn":1,"Sa":5,"Os":85.5,"On":18,"Oa":4.75,"Od":0.77,"pd":2,"pm":16},"p":[[-38,{"n":4.5,"e":5456}],[-37,{"n":3,"e":5467}],[-36,{"n":4.5,"e":5476}],[-29,{"n":5,"e":5545,"s":1}],[29,{"n":5,"e":8254,"s":1}],[-28,{"n":5,"e":5553}],[-27,{"n":5,"e":5565,"s":1}],[27,{"n":4.5,"e":7700}],[26,{"n":4,"e":7293}],[-26,{"n":5,"e":5574}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5.5,"e":7316,"s":1}],[11,{"n":5,"e":7402,"s":1}],[9,{"n":3.5,"e":7415}],[8,{"n":5,"e":7531}],[7,{"n":4.5,"e":7431}],[6,{"n":4.5,"e":7440}],[5,{"n":6.5,"e":7446}],[4,{"n":5.5,"e":7451,"s":1}]],"fo":[[7402,[{"t":"Y"}]],[7415,[{"t":"Y"}]],[7531,[{"t":"Y"}]]]}],[4443,{"n":"Minala","f":"Joseph","fp":"MO","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[4444,{"n":"Milinkovic-Savic","f":"Sergej","fp":"MO","r":22,"c":121,"s":{"g":6,"s":131.5,"n":25,"a":5.26,"d":1.21,"Sg":4,"Ss":102.5,"Sn":19,"Sa":5.39,"Sd":1.2,"Og":9,"Os":196,"On":37,"Oa":5.3,"Od":1.22,"pm":37,"Smsn":4.5,"Omsn":4.5},"p":[[-38,{"n":4,"e":5455}],[-37,{"n":6.5,"e":5461}],[-36,{"n":8,"e":5477,"g":1}],[-35,{"n":6,"e":5480,"g":1}],[-34,{"n":5,"e":5492}],[-33,{"n":5,"e":5507}],[-32,{"n":3.5,"e":5514}],[-31,{"n":6,"e":5522,"s":1}],[-30,{"n":4,"e":5532}],[-29,{"n":6,"e":5546}],[29,{"n":5,"e":8254}],[-28,{"n":4.5,"e":5551}],[28,{"n":6.5,"e":7282}],[-27,{"n":6,"e":5558,"g":1}],[27,{"n":4.5,"e":7700,"g":1}],[26,{"n":3,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":3,"e":7305}],[23,{"n":7,"e":7316}],[22,{"n":6,"e":7321,"g":1}],[21,{"n":5.5,"e":7331}],[20,{"n":4.5,"e":7334}],[19,{"n":6,"e":7343,"g":1}],[18,{"n":5.5,"e":7352}],[17,{"n":7,"e":7360}],[16,{"n":5.5,"e":7365}],[15,{"n":5.5,"e":7373}],[14,{"n":5,"e":7379}],[13,{"n":6,"e":7387}],[12,{"n":6,"e":7558}],[11,{"n":4,"e":7402}],[10,{"n":7,"e":7544,"g":1}],[7,{"n":4.5,"e":7431}],[6,{"n":6,"e":7440,"g":1}],[4,{"n":3.5,"e":7451}],[3,{"n":6.5,"e":7460,"g":1}],[2,{"n":5,"e":7464}],[1,{"n":3.5,"e":7476}]],"fo":[[7352,[{"t":"Y"}]],[7373,[{"t":"Y"}]]]}],[4468,{"n":"Anderson","f":"Djavan","fp":"DL","r":1,"c":121,"s":{"s":13,"n":3,"a":4.33,"d":0.76,"Os":42.5,"On":9,"Oa":4.72,"Od":0.67,"pd":6,"pm":3},"p":[[-36,{"n":5.5,"e":5477}],[-34,{"n":4,"e":5492}],[-33,{"n":5,"e":5507,"s":1}],[-30,{"n":4.5,"e":5532,"s":1}],[-29,{"n":5.5,"e":5546,"s":1}],[-28,{"n":5,"e":5551,"s":1}],[25,{"n":null,"e":7304,"d":1}],[17,{"n":5,"e":7360,"s":1}],[4,{"n":3.5,"e":7451}],[1,{"n":4.5,"e":7476,"s":1}]]}],[4473,{"n":"Marusic","f":"Adam","fp":"DL","r":12,"c":121,"s":{"g":2,"s":139,"n":27,"a":5.15,"d":1.12,"Sg":2,"Ss":114,"Sn":22,"Sa":5.18,"Sd":1.02,"Og":2,"Os":164.5,"On":32,"Oa":5.14,"Od":1.04,"pd":5,"pm":27,"Smsn":7,"Omsn":7},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":4.5,"e":5461,"s":1}],[-36,{"n":6,"e":5477}],[-35,{"n":5,"e":5480,"s":1}],[29,{"n":5,"e":8254}],[28,{"n":7,"e":7282,"g":1}],[-28,{"n":5,"e":5551,"s":1}],[27,{"n":5.5,"e":7700}],[26,{"n":3.5,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4.5,"e":7305}],[23,{"n":4.5,"e":7316}],[22,{"n":4,"e":7321}],[21,{"n":5,"e":7331}],[20,{"n":7,"e":7334,"g":1}],[19,{"n":6,"e":7343}],[18,{"n":6,"e":7352}],[17,{"n":6,"e":7360}],[16,{"n":6.5,"e":7365}],[15,{"n":4.5,"e":7373}],[14,{"n":4.5,"e":7379}],[13,{"n":6.5,"e":7387}],[12,{"n":5.5,"e":7558}],[11,{"n":4,"e":7402}],[10,{"n":4.5,"e":7544}],[9,{"n":5,"e":7415,"s":1}],[8,{"n":5,"e":7531,"s":1}],[7,{"n":4,"e":7431}],[5,{"n":5,"e":7446}],[4,{"n":4.5,"e":7451,"s":1}],[3,{"n":5,"e":7460}],[2,{"n":7.5,"e":7464}],[1,{"n":3,"e":7476}]],"fo":[[7316,[{"t":"Y"}]],[7402,[{"t":"Y"}]]],"a":{"m":14,"a":20,"M":23,"n":7}}],[4508,{"n":"Lazzari","f":"Manuel","fp":"MD","r":10,"c":121,"s":{"g":2,"ao":1,"s":117.5,"n":23,"a":5.11,"d":0.99,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":2,"Oao":1,"Os":169.5,"On":34,"Oa":4.99,"Od":0.89,"pm":34,"Smsn":5,"Omsn":5},"p":[[-38,{"n":4.5,"e":5455}],[-37,{"n":5,"e":5461}],[-35,{"n":5,"e":5480}],[-34,{"n":5,"e":5492}],[-33,{"n":5.5,"e":5507}],[-32,{"n":4.5,"e":5514}],[-31,{"n":4.5,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":5.5,"e":5546}],[29,{"n":5,"e":8254,"g":1}],[-28,{"n":5,"e":5551}],[28,{"n":6,"e":7282}],[-27,{"n":3.5,"e":5558}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4.5,"e":7305}],[22,{"n":4.5,"e":7321}],[21,{"n":6,"e":7331}],[20,{"n":4.5,"e":7334}],[19,{"n":5,"e":7343}],[18,{"n":7,"e":7352}],[17,{"n":7,"e":7360}],[16,{"n":6,"e":7365}],[15,{"n":5,"e":7373}],[14,{"n":4,"e":7379}],[13,{"n":5.5,"e":7387}],[12,{"n":4,"e":7558}],[11,{"n":4.5,"e":7402,"a":1}],[10,{"n":5,"e":7544}],[9,{"n":4,"e":7415}],[8,{"n":5,"e":7531}],[7,{"n":5,"e":7431,"s":1}],[5,{"n":4.5,"e":7446,"s":1}],[3,{"n":5,"e":7460}],[2,{"n":7,"e":7464,"g":1}],[1,{"n":3.5,"e":7476}]],"fo":[[7305,[{"t":"I"}]],[8254,[{"t":"R"}]],[7387,[{"t":"Y"}]]],"a":{"m":12,"a":18,"M":23,"n":9}}],[4546,{"n":"Strakosha","f":"Thomas","fp":"G","r":7,"c":121,"s":{"s":27.5,"n":6,"a":4.58,"d":1.28,"Os":91,"On":18,"Oa":5.06,"Od":1.11,"pg":18},"p":[[-38,{"n":4.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":6,"e":5477}],[-35,{"n":6,"e":5480}],[-34,{"n":6,"e":5492}],[-33,{"n":7,"e":5507}],[-32,{"n":4,"e":5514}],[-31,{"n":4,"e":5522}],[-30,{"n":4.5,"e":5532}],[-29,{"n":5,"e":5546}],[-28,{"n":6,"e":5551}],[-27,{"n":4.5,"e":5558}],[25,{"n":null,"e":7304,"d":1}],[16,{"n":6,"e":7365}],[9,{"n":3.5,"e":7415}],[4,{"n":4,"e":7451}],[3,{"n":5,"e":7460}],[2,{"n":6,"e":7464}],[1,{"n":3,"e":7476}]]}],[4550,{"n":"Cataldi","f":"Danilo","fp":"MD","r":5,"c":121,"s":{"s":62.5,"n":13,"a":4.81,"d":0.33,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":98.5,"On":20,"Oa":4.93,"Od":0.37,"pm":20},"p":[[-35,{"n":5,"e":5480,"s":1}],[-34,{"n":4.5,"e":5492}],[-33,{"n":5,"e":5507,"s":1}],[-32,{"n":5.5,"e":5514,"s":1}],[-31,{"n":5.5,"e":5522,"s":1}],[-30,{"n":5.5,"e":5532,"s":1}],[29,{"n":4.5,"e":8254,"s":1}],[-27,{"n":5,"e":5558}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5.5,"e":7305,"s":1}],[17,{"n":4.5,"e":7360,"s":1}],[16,{"n":5,"e":7365,"s":1}],[14,{"n":5,"e":7379,"s":1}],[13,{"n":5,"e":7387,"s":1}],[12,{"n":5,"e":7558,"s":1}],[9,{"n":4.5,"e":7415}],[7,{"n":5,"e":7431}],[6,{"n":4.5,"e":7440,"s":1}],[4,{"n":4.5,"e":7451,"s":1}],[2,{"n":4.5,"e":7464,"s":1}],[1,{"n":5,"e":7476,"s":1}]],"fo":[[7431,[{"t":"Y"}]]]}],[4602,{"n":"Patric","f":"","fp":"DC","r":9,"c":121,"s":{"s":108.5,"n":23,"a":4.72,"d":0.89,"Os":150.5,"On":32,"Oa":4.7,"Od":0.92,"pd":31,"pm":1},"p":[[-38,{"n":4.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":5.5,"e":5477}],[-35,{"n":4.5,"e":5480}],[-31,{"n":3,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":6,"e":5546}],[-28,{"n":5,"e":5551}],[28,{"n":5.5,"e":7282}],[27,{"n":5.5,"e":7700}],[-27,{"n":3.5,"e":5558}],[26,{"n":4.5,"e":7293,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":3.5,"e":7305}],[23,{"n":5.5,"e":7316}],[22,{"n":4.5,"e":7321}],[20,{"n":5,"e":7334}],[19,{"n":4.5,"e":7343}],[18,{"n":5,"e":7352,"s":1}],[17,{"n":5,"e":7360,"s":1}],[16,{"n":5,"e":7365,"s":1}],[15,{"n":4.5,"e":7373}],[14,{"n":4,"e":7379}],[13,{"n":5,"e":7387,"s":1}],[12,{"n":5,"e":7558,"s":1}],[9,{"n":2.5,"e":7415}],[8,{"n":5.5,"e":7531}],[6,{"n":5.5,"e":7440}],[5,{"n":5.5,"e":7446}],[4,{"n":3.5,"e":7451}],[3,{"n":5,"e":7460}],[2,{"n":6,"e":7464}],[1,{"n":3,"e":7476}]],"fo":[[7334,[{"t":"I"},{"t":"Y"}]],[7282,[{"t":"Y"}]],[7305,[{"t":"Y"}]],[7316,[{"t":"Y"}]],[7343,[{"t":"Y"}]],[7373,[{"t":"Y"}]],[7558,[{"t":"Y"}]]]}],[4656,{"n":"Acerbi","f":"Francesco","fp":"DC","r":16,"c":121,"s":{"s":132.5,"n":25,"a":5.3,"d":0.88,"Ss":77,"Sn":14,"Sa":5.5,"Sd":0.83,"Os":194.5,"On":37,"Oa":5.26,"Od":0.82,"pd":37},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":6.5,"e":5477}],[-35,{"n":5.5,"e":5480}],[-34,{"n":5,"e":5492}],[-33,{"n":5,"e":5507}],[-32,{"n":4.5,"e":5514}],[-31,{"n":5,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":6,"e":5546}],[29,{"n":6,"e":8254}],[-28,{"n":5,"e":5551}],[28,{"n":5.5,"e":7282}],[-27,{"n":4.5,"e":5558}],[27,{"n":5.5,"e":7700}],[26,{"n":3,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5,"e":7305}],[23,{"n":6,"e":7316}],[22,{"n":5,"e":7321}],[21,{"n":5.5,"e":7331}],[20,{"n":6,"e":7334}],[19,{"n":6,"e":7343}],[18,{"n":6,"e":7352}],[17,{"n":5.5,"e":7360}],[16,{"n":6.5,"e":7365}],[15,{"n":5.5,"e":7373}],[11,{"n":5,"e":7402}],[10,{"n":5,"e":7544}],[9,{"n":4.5,"e":7415}],[8,{"n":7,"e":7531}],[7,{"n":5,"e":7431}],[6,{"n":4.5,"e":7440}],[5,{"n":5,"e":7446}],[4,{"n":4.5,"e":7451}],[3,{"n":6,"e":7460}],[2,{"n":5.5,"e":7464}],[1,{"n":3.5,"e":7476}]],"fo":[[7402,[{"t":"I"}]],[7293,[{"t":"Y"}]],[7352,[{"t":"Y"}]],[7446,[{"t":"Y"}]]],"a":{"m":19,"a":23,"M":28,"n":13}}],[4660,{"n":"Luis Alberto","f":"","fp":"MO","r":23,"c":121,"s":{"g":8,"s":130,"n":25,"a":5.2,"d":1.36,"Sg":2,"Ss":46,"Sn":9,"Sa":5.11,"Sd":1.27,"Og":10,"Os":189,"On":36,"Oa":5.25,"Od":1.33,"pm":35,"pa":1,"Smsn":5.5,"Omsn":5},"p":[[-38,{"n":5.5,"e":5455}],[-37,{"n":6,"e":5461}],[-36,{"n":6.5,"e":5477}],[-35,{"n":6.5,"e":5480}],[-33,{"n":5,"e":5507}],[-32,{"n":5,"e":5514,"g":1}],[-31,{"n":3,"e":5522}],[-30,{"n":3.5,"e":5532}],[-29,{"n":6.5,"e":5546}],[29,{"n":4.5,"e":8254,"s":1}],[-28,{"n":7,"e":5551,"g":1}],[28,{"n":5,"e":7282}],[-27,{"n":4.5,"e":5558}],[27,{"n":7.5,"e":7700,"g":1}],[26,{"n":6,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":3,"e":7305}],[23,{"n":6,"e":7316,"g":1}],[22,{"n":4.5,"e":7321}],[21,{"n":5,"e":7331}],[20,{"n":4.5,"e":7334}],[18,{"n":8,"e":7352,"g":2}],[17,{"n":7,"e":7360,"g":1}],[16,{"n":6,"e":7365}],[15,{"n":4.5,"e":7373}],[14,{"n":5.5,"e":7379,"g":1}],[13,{"n":7.5,"e":7387,"g":1}],[12,{"n":5.5,"e":7558}],[10,{"n":4.5,"e":7544}],[9,{"n":4,"e":7415}],[8,{"n":4,"e":7531}],[7,{"n":5,"e":7431}],[5,{"n":5.5,"e":7446,"g":1}],[4,{"n":3.5,"e":7451}],[3,{"n":5.5,"e":7460}],[2,{"n":5.5,"e":7464}],[1,{"n":2.5,"e":7476}]],"fo":[[7379,[{"t":"Y"}]],[7531,[{"t":"Y"}]]],"a":{"m":26,"a":36,"M":61,"n":5}}],[4714,{"n":"Immobile","f":"Ciro","fp":"A","r":50,"c":121,"s":{"g":14,"s":143,"n":26,"a":5.5,"d":1.32,"Sg":11,"Ss":118.5,"Sn":21,"Sa":5.64,"Sd":1.18,"Og":23,"Os":204.5,"On":37,"Oa":5.53,"Od":1.37,"pa":37,"Smsn":5,"Omsn":5},"p":[[-38,{"n":6,"e":5455,"g":1}],[-37,{"n":8,"e":5461,"g":1}],[-36,{"n":8,"e":5477,"g":3}],[-35,{"n":6.5,"e":5480,"g":1}],[-34,{"n":6,"e":5492,"g":1}],[-33,{"n":4.5,"e":5507}],[-32,{"n":4,"e":5514}],[-31,{"n":4,"e":5522}],[-29,{"n":6,"e":5546,"g":1}],[29,{"n":4.5,"e":8254}],[28,{"n":5,"e":7282}],[-28,{"n":5,"e":5551,"g":1}],[27,{"n":5.5,"e":7700}],[-27,{"n":3.5,"e":5558}],[26,{"n":5,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":2.5,"e":7305}],[23,{"n":4.5,"e":7316}],[22,{"n":4.5,"e":7321}],[21,{"n":7,"e":7331,"g":1}],[20,{"n":6.5,"e":7334}],[19,{"n":6.5,"e":7343,"g":1}],[18,{"n":7,"e":7352,"g":1}],[17,{"n":5.5,"e":7360}],[16,{"n":7,"e":7365,"g":1}],[15,{"n":5,"e":7373,"g":1}],[14,{"n":6,"e":7379,"g":1}],[13,{"n":7.5,"e":7387,"g":1}],[12,{"n":6,"e":7558,"g":1}],[11,{"n":4.5,"e":7402}],[10,{"n":6,"e":7544,"g":1}],[9,{"n":6,"e":7415,"g":1}],[8,{"n":6.5,"e":7531,"g":1}],[6,{"n":5.5,"e":7440,"g":1,"s":1}],[5,{"n":6,"e":7446,"g":1}],[3,{"n":3,"e":7460}],[2,{"n":7,"e":7464,"g":1}],[1,{"n":3,"e":7476}]],"fo":[[7387,[{"t":"Y"}]],[7440,[{"t":"Y"}]]]}],[4715,{"n":"Musacchio","f":"Mateo","fp":"DC","r":7,"c":121,"s":{"s":25.5,"n":5,"a":5.1,"d":0.42,"Os":25.5,"On":5,"Oa":5.1,"Od":0.42,"pd":5},"p":[[28,{"n":4.5,"e":7282,"s":1}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5.5,"e":7316}],[21,{"n":5.5,"e":7331}],[20,{"n":5,"e":7334,"s":1}],[19,{"n":5,"e":7344,"s":1}]],"fo":[[7282,[{"t":"Y"}]],[7334,[{"t":"Y"}]]]}],[4738,{"n":"Lulic","f":"Senad","fp":"MD","r":9,"c":121,"s":{"s":32,"n":7,"a":4.57,"d":0.45,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":32,"On":7,"Oa":4.57,"Od":0.45,"pm":7},"p":[[29,{"n":4.5,"e":8254}],[27,{"n":5,"e":7700,"s":1}],[26,{"n":4,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4,"e":7305,"s":1}],[23,{"n":4.5,"e":7316}],[21,{"n":5,"e":7331,"s":1}],[19,{"n":5,"e":7343,"s":1}]],"fo":[[7316,[{"t":"Y"}]]]}],[4742,{"n":"Parolo","f":"Marco","fp":"MD","r":5,"c":121,"s":{"s":57.5,"n":12,"a":4.79,"d":0.66,"Og":1,"Os":120.5,"On":24,"Oa":5.02,"Od":0.87,"pd":1,"pm":23,"Omsn":6.5},"p":[[-38,{"n":4,"e":5455}],[-37,{"n":6.5,"e":5461}],[-36,{"n":6.5,"e":5477}],[-35,{"n":5.5,"e":5480}],[-34,{"n":5.5,"e":5492}],[-33,{"n":5.5,"e":5507}],[-32,{"n":4,"e":5514}],[-31,{"n":4.5,"e":5522}],[-30,{"n":4,"e":5532}],[-29,{"n":6.5,"e":5546,"g":1}],[-28,{"n":6,"e":5551}],[-27,{"n":4.5,"e":5558,"s":1}],[25,{"n":null,"e":7304,"d":1}],[22,{"n":5,"e":7321,"s":1}],[21,{"n":5,"e":7331,"s":1}],[19,{"n":4.5,"e":7343,"s":1}],[11,{"n":4,"e":7402}],[10,{"n":5,"e":7544,"s":1}],[9,{"n":4.5,"e":7415}],[8,{"n":6,"e":7531}],[6,{"n":4.5,"e":7440}],[5,{"n":5,"e":7446,"s":1}],[4,{"n":3.5,"e":7451}],[3,{"n":5.5,"e":7460,"s":1}],[2,{"n":5,"e":7464,"s":1}]],"fo":[[7331,[{"t":"Y"}]],[7451,[{"t":"Y"}]],[7531,[{"t":"Y"}]]]}],[4770,{"n":"Caicedo","f":"Felipe","fp":"A","r":10,"c":121,"s":{"g":8,"s":109.5,"n":22,"a":4.98,"d":0.99,"Sg":1,"Ss":5,"Sn":1,"Sa":5,"Og":9,"Os":150.5,"On":31,"Oa":4.85,"Od":0.94,"pa":31,"Smsn":5,"Omsn":5},"p":[[-36,{"n":4.5,"e":5477,"s":1}],[-35,{"n":4.5,"e":5480}],[-34,{"n":4,"e":5492}],[-33,{"n":4,"e":5507}],[-32,{"n":3.5,"e":5514}],[-31,{"n":6,"e":5522,"g":1}],[-29,{"n":4.5,"e":5546}],[29,{"n":5,"e":8254,"g":1,"s":1}],[-28,{"n":5.5,"e":5551}],[-27,{"n":4.5,"e":5558,"s":1}],[27,{"n":6,"e":7700,"g":1,"s":1}],[26,{"n":4,"e":7293,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5,"e":7305,"s":1}],[23,{"n":4.5,"e":7316,"s":1}],[22,{"n":4,"e":7321,"s":1}],[19,{"n":4.5,"e":7343,"s":1}],[18,{"n":5,"e":7352}],[17,{"n":7,"e":7360,"g":1}],[16,{"n":6.5,"e":7365,"g":1}],[15,{"n":4.5,"e":7373}],[13,{"n":5,"e":7387}],[12,{"n":4.5,"e":7558,"s":1}],[11,{"n":6,"e":7402,"g":1}],[10,{"n":4,"e":7544,"s":1}],[9,{"n":4.5,"e":7415,"s":1}],[8,{"n":4.5,"e":7531,"s":1}],[7,{"n":6,"e":7431,"g":1,"s":1}],[6,{"n":6,"e":7440,"g":1,"s":1}],[4,{"n":3,"e":7451}],[2,{"n":4,"e":7464,"s":1}],[1,{"n":6,"e":7476,"g":1}]],"fo":[[7402,[{"t":"Y"}]],[7440,[{"t":"Y"}]],[7451,[{"t":"Y"}]]],"a":{"m":12,"a":19,"M":41,"n":12}}],[4798,{"n":"Radu","f":"Stefan","fp":"DC","r":10,"c":121,"s":{"s":113,"n":21,"a":5.38,"d":1.01,"Ss":19.5,"Sn":3,"Sa":6.5,"Sd":1,"Os":145,"On":28,"Oa":5.18,"Od":1.08,"pd":28},"p":[[-33,{"n":5.5,"e":5507}],[-32,{"n":4.5,"e":5514}],[-31,{"n":3.5,"e":5522}],[-30,{"n":3,"e":5532}],[-29,{"n":6,"e":5546}],[29,{"n":5.5,"e":8254}],[-28,{"n":5.5,"e":5551,"s":1}],[28,{"n":7.5,"e":7282}],[-27,{"n":4,"e":5558}],[27,{"n":6.5,"e":7700}],[25,{"n":null,"e":7304,"d":1}],[21,{"n":6,"e":7331}],[20,{"n":6,"e":7334}],[19,{"n":5.5,"e":7343}],[18,{"n":6,"e":7352}],[17,{"n":6,"e":7360}],[16,{"n":5,"e":7365,"s":1}],[15,{"n":6,"e":7373}],[14,{"n":4.5,"e":7379}],[13,{"n":6.5,"e":7387}],[12,{"n":5,"e":7558}],[11,{"n":3.5,"e":7402}],[10,{"n":5,"e":7544}],[9,{"n":3.5,"e":7415}],[8,{"n":5.5,"e":7531}],[7,{"n":4.5,"e":7431}],[3,{"n":5,"e":7460}],[2,{"n":6,"e":7464}],[1,{"n":4,"e":7476}]],"fo":[[7352,[{"t":"Y"}]]],"a":{"m":13,"a":15,"M":18,"n":6}}],[4830,{"n":"Pepe Reina","f":"","fp":"G","r":13,"c":121,"s":{"s":117.5,"n":22,"a":5.34,"d":0.93,"Ss":63,"Sn":12,"Sa":5.25,"Sd":0.81,"Os":152,"On":29,"Oa":5.24,"Od":1.07,"pg":29},"p":[[-38,{"n":4,"e":3937}],[-37,{"n":6,"e":3938}],[-36,{"n":4,"e":3952}],[-35,{"n":7.5,"e":3958}],[-34,{"n":5,"e":3969}],[-33,{"n":5,"e":3981}],[-29,{"n":3,"e":4022}],[29,{"n":5.5,"e":8254}],[28,{"n":6.5,"e":7282}],[27,{"n":4.5,"e":7700}],[26,{"n":4,"e":7293}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4.5,"e":7305}],[23,{"n":5.5,"e":7316}],[22,{"n":4.5,"e":7321}],[21,{"n":6,"e":7331}],[20,{"n":5.5,"e":7334}],[19,{"n":4.5,"e":7343}],[18,{"n":6,"e":7352}],[17,{"n":6,"e":7360}],[15,{"n":5,"e":7373}],[14,{"n":4,"e":7379}],[13,{"n":7.5,"e":7387}],[12,{"n":6,"e":7558}],[11,{"n":4.5,"e":7402}],[10,{"n":5.5,"e":7544}],[8,{"n":6,"e":7531}],[7,{"n":6,"e":7431}],[6,{"n":4,"e":7440}],[5,{"n":6,"e":7446}]],"fo":[[7402,[{"t":"Y"}]]]}],[6615,{"n":"Raul Moro","f":"","fp":"A","r":1,"c":121,"s":{"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[-34,{"n":4.5,"e":5492,"s":1}],[25,{"n":null,"e":7304,"d":1}]]}],[6983,{"n":"Mohamed","f":"Abukar","fp":"MD","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7198,{"n":"Akpa Akpro","f":"Jean-Daniel","fp":"DL","r":7,"c":121,"s":{"s":107.5,"n":22,"a":4.89,"d":0.46,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":107.5,"On":22,"Oa":4.89,"Od":0.46,"pm":22},"p":[[29,{"n":5,"e":8254,"s":1}],[28,{"n":4.5,"e":7282,"s":1}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5,"e":7316,"s":1}],[21,{"n":5,"e":7331,"s":1}],[20,{"n":4.5,"e":7334,"s":1}],[19,{"n":4.5,"e":7343}],[18,{"n":5.5,"e":7352,"s":1}],[17,{"n":4.5,"e":7360,"s":1}],[16,{"n":5.5,"e":7365,"s":1}],[15,{"n":5,"e":7373,"s":1}],[14,{"n":4.5,"e":7379,"s":1}],[13,{"n":5,"e":7387,"s":1}],[11,{"n":4.5,"e":7402}],[10,{"n":4.5,"e":7544,"s":1}],[9,{"n":4.5,"e":7415,"s":1}],[8,{"n":5.5,"e":7531,"s":1}],[7,{"n":5.5,"e":7431,"s":1}],[6,{"n":6,"e":7440,"s":1}],[5,{"n":4.5,"e":7446}],[3,{"n":5,"e":7460,"s":1}],[2,{"n":4.5,"e":7464,"s":1}],[1,{"n":4.5,"e":7476,"s":1}]],"fo":[[7360,[{"t":"Y"}]],[7379,[{"t":"Y"}]],[7402,[{"t":"Y"}]],[7415,[{"t":"Y"}]],[7431,[{"t":"Y"}]],[7446,[{"t":"Y"}]],[7544,[{"t":"Y"}]]]}],[7225,{"n":"Gabriel Pereira","f":"","fp":"G","r":3,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7236,{"n":"Muriqi","f":"Vedat","fp":"A","r":9,"c":121,"s":{"g":1,"s":80.5,"n":18,"a":4.47,"d":0.5,"Og":1,"Os":80.5,"On":18,"Oa":4.47,"Od":0.5,"pa":18,"Smsn":6,"Omsn":6},"p":[[28,{"n":4.5,"e":7282}],[27,{"n":4,"e":7700,"s":1}],[26,{"n":4.5,"e":7293,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4.5,"e":7305,"s":1}],[23,{"n":4.5,"e":7316,"s":1}],[22,{"n":5,"e":7321,"s":1}],[21,{"n":4.5,"e":7331,"s":1}],[20,{"n":6,"e":7334,"g":1,"s":1}],[19,{"n":5,"e":7343,"s":1}],[18,{"n":4.5,"e":7352,"s":1}],[16,{"n":4,"e":7365,"s":1}],[15,{"n":4,"e":7373,"s":1}],[14,{"n":4,"e":7379,"s":1}],[13,{"n":4.5,"e":7387,"s":1}],[7,{"n":4.5,"e":7431}],[6,{"n":4,"e":7440}],[5,{"n":4,"e":7446,"s":1}],[4,{"n":4.5,"e":7451,"s":1}]],"fo":[[7379,[{"t":"Y"}]]]}],[7421,{"n":"Czyz","f":"Szymon","fp":"MO","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7433,{"n":"Ndrecka","f":"Angelo","fp":"DL","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7442,{"n":"Novella","f":"Mattia","fp":"DL","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7509,{"n":"Pica","f":"Marzio","fp":"DC","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7510,{"n":"Franco","f":"Damiano","fp":"DC","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7511,{"n":"Bertini","f":"Marco","fp":"MD","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7518,{"n":"Gabriel Pereira Valadares","f":"","fp":"MD","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7541,{"n":"Adeagbo","f":"Enzo","fp":"DC","r":1,"c":121,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7742,{"n":"Shehu","f":"Florent","fp":"MO","r":1,"c":121}],[592,{"n":"Ibrahimovic","f":"Zlatan","fp":"A","r":41,"c":125,"s":{"g":15,"s":96,"n":16,"a":6,"d":1.54,"Sg":1,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.06,"Og":23,"Os":161.5,"On":27,"Oa":5.98,"Od":1.41,"pa":27,"Smsn":5,"Omsn":5},"p":[[29,{"n":5,"e":7274}],[24,{"n":5,"e":7302}],[22,{"n":4,"e":7623}],[17,{"n":4,"e":7359,"s":1}],[8,{"n":8,"e":7422,"g":2}],[7,{"n":5,"e":7432,"g":1}],[6,{"n":7.5,"e":7441,"g":1}],[5,{"n":6,"e":7447,"g":2}],[-38,{"n":6,"e":5454,"g":1}],[-37,{"n":8,"e":5463,"g":2}],[-36,{"n":5,"e":5473}],[-35,{"n":8,"e":5485,"g":2}],[-34,{"n":5,"e":5493}],[-33,{"n":6,"e":5501}],[-32,{"n":4,"e":5515}],[-31,{"n":7,"e":5523,"g":1}],[-30,{"n":5.5,"e":5532,"g":1}],[-29,{"n":5,"e":5545,"s":1}],[28,{"n":6.5,"e":7277,"g":1}],[-26,{"n":6,"e":5572,"g":1}],[23,{"n":5,"e":7317}],[21,{"n":7.5,"e":7615,"g":2}],[20,{"n":6,"e":7335}],[19,{"n":3.5,"e":7344}],[18,{"n":7.5,"e":7350,"g":2}],[4,{"n":8,"e":7450,"g":2}],[1,{"n":7.5,"e":7475,"g":2}]],"fo":[[7302,[{"t":"I"}]],[7422,[{"t":"I"}]],[7447,[{"t":"Y"}]],[7450,[{"t":"Y"}]]]}],[1021,{"n":"Díaz","f":"Brahim","fp":"MO","r":7,"c":125,"s":{"g":2,"s":97.5,"n":19,"a":5.13,"d":1.04,"Og":2,"Os":111,"On":22,"Oa":5.05,"Od":1,"pm":11,"pa":11,"Smsn":7,"Omsn":7},"p":[[27,{"n":4.5,"e":7287,"s":1}],[25,{"n":4.5,"e":7310}],[13,{"n":5,"e":7389}],[11,{"n":4.5,"e":7403}],[10,{"n":4.5,"e":7410}],[3,{"n":6,"e":7487}],[-38,{"n":5,"e":4312,"s":1}],[-35,{"n":4,"e":4345,"s":1}],[-31,{"n":4.5,"e":4384,"s":1}],[28,{"n":7,"e":7277,"g":1}],[24,{"n":4,"e":7302,"s":1}],[19,{"n":4.5,"e":7344,"s":1}],[18,{"n":5,"e":7350}],[17,{"n":7,"e":7359}],[16,{"n":4.5,"e":7366,"s":1}],[15,{"n":5.5,"e":7577}],[12,{"n":4.5,"e":7398,"s":1}],[9,{"n":5,"e":7416}],[7,{"n":5.5,"e":7432,"s":1}],[6,{"n":4.5,"e":7441,"s":1}],[2,{"n":7.5,"e":7490,"g":1}],[1,{"n":4,"e":7475,"s":1}]],"fo":[[7359,[{"t":"Y"}]]]}],[1163,{"n":"Tatarusanu","f":"Ciprian","fp":"G","r":7,"c":125,"s":{"s":3.5,"n":1,"a":3.5,"Os":3.5,"On":1,"Oa":3.5,"pg":1},"p":[[5,{"n":3.5,"e":7447}]]}],[1196,{"n":"Meité","f":"Soualiho","fp":"MD","r":10,"c":125,"s":{"g":1,"s":122,"n":24,"a":5.08,"d":0.87,"Og":1,"Os":184,"On":36,"Oa":5.11,"Od":0.85,"pm":36,"Smsn":6,"Omsn":6},"p":[[26,{"n":7,"e":7298}],[14,{"n":4.5,"e":7380,"s":1}],[12,{"n":6,"e":7395}],[11,{"n":4,"e":7405}],[9,{"n":6,"e":7419,"g":1}],[5,{"n":5,"e":7448}],[-37,{"n":4.5,"e":5465}],[-36,{"n":5.5,"e":5476}],[-35,{"n":5,"e":5486}],[-34,{"n":5,"e":5490}],[-33,{"n":6.5,"e":5506}],[-32,{"n":4.5,"e":5512}],[-31,{"n":6.5,"e":5526}],[-30,{"n":3.5,"e":5531}],[-29,{"n":5,"e":5546}],[-28,{"n":5,"e":5549}],[28,{"n":5,"e":7277,"s":1}],[27,{"n":5,"e":7287,"s":1}],[-27,{"n":5,"e":5566}],[-25,{"n":6,"e":5586}],[25,{"n":5.5,"e":7310,"s":1}],[24,{"n":5,"e":7302,"s":1}],[23,{"n":5.5,"e":7317,"s":1}],[22,{"n":4.5,"e":7623,"s":1}],[21,{"n":7.5,"e":7615}],[19,{"n":4,"e":7344}],[18,{"n":5,"e":7350,"s":1}],[13,{"n":4.5,"e":7390,"s":1}],[10,{"n":5.5,"e":7408}],[8,{"n":4.5,"e":7420}],[7,{"n":5,"e":7526}],[6,{"n":4,"e":7440}],[4,{"n":4.5,"e":7453}],[3,{"n":5,"e":7457,"s":1}],[2,{"n":4.5,"e":7463}],[1,{"n":5,"e":7470}]],"fo":[[7277,[{"t":"Y"}]]]}],[1386,{"n":"Tomori","f":"Fikayo","fp":"DC","r":10,"c":125,"s":{"s":42,"n":8,"a":5.25,"d":0.6,"Ss":20,"Sn":4,"Sa":5,"Sd":0.41,"Os":47,"On":9,"Oa":5.22,"Od":0.57,"pd":9},"p":[[2,{"n":5,"e":6914,"s":1}],[29,{"n":5,"e":7274}],[28,{"n":5,"e":7277}],[27,{"n":4.5,"e":7287}],[26,{"n":5.5,"e":7298}],[24,{"n":5.5,"e":7302}],[22,{"n":4.5,"e":7623,"s":1}],[21,{"n":6,"e":7615}],[20,{"n":6,"e":7335}]]}],[1604,{"n":"Kjaer","f":"Simon","fp":"DC","r":11,"c":125,"s":{"s":107.5,"n":20,"a":5.38,"d":0.96,"Ss":12,"Sn":2,"Sa":6,"Sd":1.41,"Os":166.5,"On":31,"Oa":5.37,"Od":0.84,"pd":31},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":4.5,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5485}],[-34,{"n":5,"e":5493}],[-33,{"n":6,"e":5501}],[-32,{"n":4.5,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":5.5,"e":5532}],[29,{"n":5,"e":7274}],[28,{"n":7,"e":7277}],[-28,{"n":6,"e":5552}],[-27,{"n":5.5,"e":5563}],[25,{"n":5.5,"e":7310}],[24,{"n":5,"e":7302}],[23,{"n":3.5,"e":7317}],[22,{"n":5.5,"e":7623}],[19,{"n":4.5,"e":7344}],[18,{"n":5,"e":7350}],[17,{"n":5.5,"e":7359}],[16,{"n":4,"e":7366}],[15,{"n":6.5,"e":7577}],[9,{"n":5.5,"e":7416}],[8,{"n":6.5,"e":7422}],[7,{"n":4,"e":7432}],[6,{"n":5.5,"e":7441}],[5,{"n":4.5,"e":7447}],[4,{"n":6,"e":7450}],[3,{"n":6.5,"e":7487}],[2,{"n":6.5,"e":7490}],[1,{"n":5.5,"e":7475}]],"fo":[[7317,[{"t":"Y"}]],[7450,[{"t":"Y"}]]]}],[1645,{"n":"Samu Castillejo","f":"","fp":"MO","r":11,"c":125,"s":{"g":1,"s":121.5,"n":24,"a":5.06,"d":0.52,"Ss":45.5,"Sn":9,"Sa":5.06,"Sd":0.39,"Og":3,"Os":160.5,"On":31,"Oa":5.18,"Od":0.79,"pm":31,"Smsn":6,"Omsn":6},"p":[[-38,{"n":8,"e":5454,"g":1}],[-37,{"n":5,"e":5463,"s":1}],[-36,{"n":4.5,"e":5473,"s":1}],[-29,{"n":5,"e":5545}],[29,{"n":5,"e":7274}],[28,{"n":5,"e":7277,"s":1}],[-28,{"n":4.5,"e":5552}],[-27,{"n":7,"e":5563,"g":1}],[27,{"n":4.5,"e":7287}],[-26,{"n":5,"e":5572}],[26,{"n":5.5,"e":7298}],[25,{"n":5,"e":7310}],[24,{"n":4.5,"e":7302,"s":1}],[23,{"n":5.5,"e":7317,"s":1}],[22,{"n":5,"e":7623,"s":1}],[21,{"n":5.5,"e":7615,"s":1}],[19,{"n":4.5,"e":7344}],[18,{"n":5.5,"e":7350}],[17,{"n":6,"e":7359}],[16,{"n":5,"e":7366}],[15,{"n":5.5,"e":7577,"s":1}],[14,{"n":4.5,"e":7379,"s":1}],[13,{"n":5,"e":7389,"s":1}],[12,{"n":5,"e":7398}],[11,{"n":4.5,"e":7403}],[10,{"n":6,"e":7410,"g":1,"s":1}],[8,{"n":5.5,"e":7422,"s":1}],[5,{"n":5,"e":7447,"s":1}],[4,{"n":5.5,"e":7450,"s":1}],[2,{"n":4.5,"e":7490,"s":1}],[1,{"n":4,"e":7475}]],"fo":[[7302,[{"t":"Y"}]],[7398,[{"t":"Y"}]],[7422,[{"t":"Y"}]]]}],[1829,{"n":"Hernández","f":"Theo","fp":"DL","r":27,"c":125,"s":{"g":4,"s":138.5,"n":25,"a":5.54,"d":1.22,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Og":5,"Os":206,"On":37,"Oa":5.57,"Od":1.16,"pd":37,"Smsn":6.5,"Omsn":6},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":6,"e":5463}],[-35,{"n":4,"e":5485}],[-34,{"n":7,"e":5493}],[-33,{"n":6,"e":5501}],[-32,{"n":6,"e":5515,"g":1}],[-31,{"n":5,"e":5523}],[-30,{"n":6.5,"e":5532}],[-29,{"n":4.5,"e":5545}],[29,{"n":4.5,"e":7274}],[-28,{"n":7,"e":5552}],[28,{"n":5,"e":7277}],[-27,{"n":5.5,"e":5563}],[27,{"n":4.5,"e":7287}],[-26,{"n":4,"e":5572}],[25,{"n":4.5,"e":7310}],[24,{"n":6,"e":7302}],[23,{"n":4.5,"e":7317}],[22,{"n":4.5,"e":7623}],[21,{"n":7,"e":7615}],[20,{"n":4,"e":7335}],[19,{"n":4.5,"e":7344}],[17,{"n":5.5,"e":7359}],[16,{"n":3,"e":7366}],[14,{"n":6.5,"e":7379,"g":1}],[13,{"n":6.5,"e":7389}],[11,{"n":7.5,"e":7403,"g":2}],[10,{"n":5.5,"e":7410}],[9,{"n":6,"e":7416}],[8,{"n":7,"e":7422}],[7,{"n":5,"e":7432}],[6,{"n":6.5,"e":7441}],[5,{"n":5,"e":7447}],[4,{"n":5,"e":7450}],[3,{"n":8,"e":7487,"g":1}],[2,{"n":5.5,"e":7490}],[1,{"n":7,"e":7475}]],"fo":[[7287,[{"t":"Y"}]],[7310,[{"t":"Y"}]],[7344,[{"t":"Y"}]],[7379,[{"t":"Y"}]],[7403,[{"t":"Y"}]],[7441,[{"t":"Y"}]],[7447,[{"t":"Y"}]]],"a":{"m":32,"a":40,"M":45,"n":9}}],[2541,{"n":"Diogo Dalot","f":"","fp":"DL","r":10,"c":125,"s":{"g":1,"s":58.5,"n":12,"a":4.88,"d":0.93,"Og":1,"Os":58.5,"On":12,"Oa":4.88,"Od":0.93,"pd":12,"Smsn":7,"Omsn":7},"p":[[28,{"n":4.5,"e":7277}],[27,{"n":4.5,"e":7287}],[26,{"n":7,"e":7298,"g":1}],[22,{"n":3.5,"e":7623}],[18,{"n":5.5,"e":7350}],[17,{"n":4.5,"e":7359,"s":1}],[16,{"n":4,"e":7366}],[15,{"n":6,"e":7577}],[14,{"n":5,"e":7379,"s":1}],[12,{"n":4.5,"e":7398}],[9,{"n":4.5,"e":7416,"s":1}],[6,{"n":5,"e":7441,"s":1}]],"fo":[[7277,[{"t":"Y"}]],[7359,[{"t":"Y"}]],[7577,[{"t":"Y"}]],[7623,[{"t":"Y"}]]]}],[2791,{"n":"Rafael Leão","f":"","fp":"A","r":14,"c":125,"s":{"g":5,"s":119,"n":22,"a":5.41,"d":1.05,"Og":9,"Os":179,"On":33,"Oa":5.42,"Od":1,"pm":12,"pa":21,"Smsn":6.5,"Omsn":6},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":6.5,"e":5463,"g":1,"s":1}],[-36,{"n":5,"e":5473,"s":1}],[-34,{"n":6,"e":5493,"s":1}],[-33,{"n":5.5,"e":5501}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":6,"e":5523,"g":1,"s":1}],[-29,{"n":6.5,"e":5545,"g":1,"s":1}],[-28,{"n":4,"e":5552,"s":1}],[-27,{"n":6,"e":5563,"g":1,"s":1}],[27,{"n":4.5,"e":7287}],[26,{"n":5,"e":7298}],[-26,{"n":4,"e":5572,"s":1}],[25,{"n":4,"e":7310}],[24,{"n":4.5,"e":7302,"s":1}],[23,{"n":4.5,"e":7317,"s":1}],[22,{"n":4,"e":7623}],[21,{"n":6,"e":7615}],[20,{"n":6,"e":7335}],[19,{"n":4,"e":7344}],[17,{"n":6.5,"e":7359,"g":1}],[16,{"n":6,"e":7366}],[15,{"n":7,"e":7577,"g":1}],[14,{"n":4.5,"e":7379}],[13,{"n":6.5,"e":7389,"g":1}],[12,{"n":5,"e":7398}],[11,{"n":5,"e":7403,"s":1}],[7,{"n":5,"e":7432}],[6,{"n":5.5,"e":7441}],[5,{"n":7,"e":7447}],[4,{"n":6,"e":7450}],[3,{"n":7.5,"e":7487,"g":2}],[2,{"n":5,"e":7490,"s":1}]],"fo":[[7432,[{"t":"I"}]],[7359,[{"t":"Y"}]],[7398,[{"t":"Y"}]],[7447,[{"t":"Y"}]],[7577,[{"t":"Y"}]]],"a":{"m":16,"a":23,"M":42,"n":5}}],[4244,{"n":"Tonali","f":"Sandro","fp":"MD","r":9,"c":125,"s":{"s":109.5,"n":22,"a":4.98,"d":0.63,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Os":168,"On":34,"Oa":4.94,"Od":0.74,"pm":34},"p":[[-38,{"n":5.5,"e":5450}],[-37,{"n":4.5,"e":5461}],[-36,{"n":4,"e":5469}],[-35,{"n":4.5,"e":5481}],[-34,{"n":5,"e":5488}],[-33,{"n":5,"e":5498,"s":1}],[-32,{"n":3.5,"e":5508}],[-31,{"n":4.5,"e":5526}],[-30,{"n":7,"e":5528}],[-29,{"n":4,"e":5542}],[29,{"n":5.5,"e":7274,"s":1}],[28,{"n":4.5,"e":7277}],[-28,{"n":5.5,"e":5548}],[-27,{"n":5.5,"e":5560}],[27,{"n":5,"e":7287}],[25,{"n":5.5,"e":7310}],[24,{"n":5.5,"e":7302}],[23,{"n":4,"e":7317}],[20,{"n":5.5,"e":7335}],[19,{"n":4.5,"e":7344}],[18,{"n":6,"e":7350}],[17,{"n":5,"e":7359}],[15,{"n":3.5,"e":7577}],[14,{"n":5,"e":7379}],[13,{"n":5,"e":7389}],[12,{"n":4.5,"e":7398}],[11,{"n":5,"e":7403,"s":1}],[10,{"n":5,"e":7410}],[9,{"n":6,"e":7416}],[6,{"n":5,"e":7441,"s":1}],[4,{"n":5,"e":7450,"s":1}],[3,{"n":4,"e":7487}],[2,{"n":5.5,"e":7490}],[1,{"n":5,"e":7475,"s":1}]],"fo":[[7310,[{"t":"I"}]],[7359,[{"t":"I"},{"t":"Y"}]],[7577,[{"t":"R"}]]]}],[4392,{"n":"Donnarumma","f":"Gianluigi","fp":"G","r":19,"c":125,"s":{"s":153.5,"n":28,"a":5.48,"d":1.16,"Ss":129.5,"Sn":24,"Sa":5.4,"Sd":1.22,"Os":221.5,"On":40,"Oa":5.54,"Od":1.11,"pg":40},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":7.5,"e":5463}],[-36,{"n":7,"e":5473}],[-35,{"n":6,"e":5485}],[-34,{"n":4.5,"e":5493}],[-33,{"n":5.5,"e":5501}],[-32,{"n":5,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":6.5,"e":5532}],[-29,{"n":4,"e":5545}],[29,{"n":6,"e":7274}],[-28,{"n":6,"e":5552}],[28,{"n":4,"e":7277}],[27,{"n":5.5,"e":7287}],[-27,{"n":5,"e":5563}],[26,{"n":6,"e":7298}],[25,{"n":3.5,"e":7310}],[24,{"n":7.5,"e":7302}],[23,{"n":4,"e":7317}],[22,{"n":4,"e":7623}],[21,{"n":6,"e":7615}],[20,{"n":6,"e":7335}],[19,{"n":4,"e":7344}],[18,{"n":6,"e":7350}],[17,{"n":6,"e":7359}],[16,{"n":4,"e":7366}],[15,{"n":7,"e":7577}],[14,{"n":7,"e":7379}],[13,{"n":6,"e":7389}],[12,{"n":5,"e":7398}],[11,{"n":4,"e":7403}],[10,{"n":5.5,"e":7410}],[9,{"n":6,"e":7416}],[8,{"n":7.5,"e":7422}],[7,{"n":4,"e":7432}],[6,{"n":5,"e":7441}],[4,{"n":6,"e":7450}],[3,{"n":6,"e":7487}],[2,{"n":5.5,"e":7490}],[1,{"n":6.5,"e":7475}]],"fo":[[7441,[{"t":"Y"}]]],"a":{"m":20,"a":27,"M":32,"n":7}}],[4456,{"n":"Kessié","f":"Franck","fp":"MD","r":35,"c":125,"s":{"g":9,"s":160,"n":28,"a":5.71,"d":1.21,"Sg":5,"Ss":81,"Sn":15,"Sa":5.4,"Sd":1.39,"Og":12,"Os":238.5,"On":41,"Oa":5.82,"Od":1.13,"pm":41,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5.5,"e":5454}],[-37,{"n":6,"e":5463}],[-36,{"n":4.5,"e":5473}],[-35,{"n":6.5,"e":5485}],[-34,{"n":6,"e":5493}],[-33,{"n":7.5,"e":5501,"g":1}],[-32,{"n":6.5,"e":5515,"g":1}],[-31,{"n":7,"e":5523,"g":1}],[-30,{"n":7,"e":5532}],[-29,{"n":5,"e":5545}],[29,{"n":4,"e":7274}],[-28,{"n":6,"e":5552}],[28,{"n":6.5,"e":7277}],[-27,{"n":6.5,"e":5563}],[27,{"n":4.5,"e":7287}],[26,{"n":7,"e":7298}],[-26,{"n":4.5,"e":5572}],[25,{"n":6,"e":7310,"g":1}],[24,{"n":7,"e":7302,"g":1}],[23,{"n":3.5,"e":7317}],[22,{"n":4,"e":7623}],[21,{"n":7.5,"e":7615}],[20,{"n":6,"e":7335,"g":1}],[19,{"n":3,"e":7344}],[18,{"n":5.5,"e":7350}],[17,{"n":6,"e":7359,"g":1}],[16,{"n":4.5,"e":7366}],[15,{"n":6,"e":7577,"g":1}],[13,{"n":5.5,"e":7389}],[12,{"n":5.5,"e":7398}],[11,{"n":5,"e":7403}],[10,{"n":6.5,"e":7410,"g":1}],[9,{"n":7.5,"e":7416,"g":1}],[8,{"n":5,"e":7422}],[7,{"n":6,"e":7432}],[6,{"n":7,"e":7441,"g":1}],[5,{"n":5,"e":7447}],[4,{"n":6,"e":7450}],[3,{"n":6.5,"e":7487,"s":1}],[2,{"n":7.5,"e":7490,"g":1}],[1,{"n":6,"e":7475}]],"fo":[[7450,[{"t":"I"},{"t":"Y"}]],[7310,[{"t":"Y"}]],[7344,[{"t":"Y"}]],[7389,[{"t":"Y"}]],[7410,[{"t":"Y"}]],[7416,[{"t":"Y"}]],[7422,[{"t":"Y"}]]],"a":{"m":41,"a":50,"M":60,"n":5}}],[4494,{"n":"Calabria","f":"Davide","fp":"DL","r":20,"c":125,"s":{"g":2,"ao":1,"s":134,"n":25,"a":5.36,"d":0.73,"Og":3,"Oao":1,"Os":186,"On":35,"Oa":5.31,"Od":0.75,"pd":34,"pm":1,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":5,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":6,"e":5485,"s":1}],[-34,{"n":6.5,"e":5493,"g":1}],[-33,{"n":5,"e":5501,"s":1}],[-31,{"n":5,"e":5523,"s":1}],[-30,{"n":5,"e":5532,"s":1}],[-29,{"n":3.5,"e":5545}],[26,{"n":6,"e":7298}],[-26,{"n":5,"e":5572,"s":1}],[25,{"n":5,"e":7310,"s":1}],[24,{"n":6.5,"e":7302}],[23,{"n":4.5,"e":7317}],[21,{"n":6.5,"e":7615}],[20,{"n":5,"e":7335}],[19,{"n":4,"e":7344}],[18,{"n":6,"e":7350}],[17,{"n":5,"e":7359}],[16,{"n":6,"e":7366,"g":1}],[15,{"n":5.5,"e":7577}],[14,{"n":4.5,"e":7379}],[13,{"n":5,"e":7389}],[12,{"n":5.5,"e":7398,"g":1}],[11,{"n":5,"e":7403}],[10,{"n":6,"e":7410}],[9,{"n":6,"e":7416}],[8,{"n":5,"e":7422}],[7,{"n":4,"e":7432,"a":1}],[6,{"n":5.5,"e":7441}],[5,{"n":4.5,"e":7447}],[4,{"n":5,"e":7450}],[3,{"n":6,"e":7487}],[2,{"n":6,"e":7490}],[1,{"n":6,"e":7475}]],"fo":[[7302,[{"t":"Y"}]],[7359,[{"t":"Y"}]],[7389,[{"t":"Y"}]],[7403,[{"t":"Y"}]],[7422,[{"t":"Y"}]],[7615,[{"t":"Y"}]]]}],[4511,{"n":"Krunic","f":"Rade","fp":"MO","r":9,"c":125,"s":{"g":1,"s":97.5,"n":19,"a":5.13,"d":0.83,"Sg":1,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.68,"Og":1,"Os":128,"On":25,"Oa":5.12,"Od":0.73,"pm":25,"Smsn":8,"Omsn":8},"p":[[-36,{"n":5,"e":5473,"s":1}],[-34,{"n":5,"e":5493,"s":1}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":5,"e":5515,"s":1}],[-31,{"n":5,"e":5523,"s":1}],[-30,{"n":5.5,"e":5532,"s":1}],[29,{"n":4.5,"e":7274}],[28,{"n":5,"e":7277,"s":1}],[27,{"n":4.5,"e":7287}],[26,{"n":8,"e":7298,"g":1}],[24,{"n":6,"e":7302,"s":1}],[21,{"n":4.5,"e":7615,"s":1}],[20,{"n":5,"e":7335,"s":1}],[15,{"n":5,"e":7577,"s":1}],[14,{"n":6,"e":7379}],[13,{"n":4.5,"e":7389,"s":1}],[10,{"n":5,"e":7410,"s":1}],[9,{"n":5,"e":7416,"s":1}],[8,{"n":5,"e":7422,"s":1}],[6,{"n":5,"e":7441,"s":1}],[5,{"n":5,"e":7447,"s":1}],[4,{"n":4.5,"e":7450,"s":1}],[3,{"n":5.5,"e":7487}],[2,{"n":5,"e":7490,"s":1}],[1,{"n":4.5,"e":7475,"s":1}]],"fo":[[7379,[{"t":"Y"}]]]}],[4553,{"n":"Romagnoli","f":"Alessio","fp":"DC","r":17,"c":125,"s":{"g":1,"s":106,"n":20,"a":5.3,"d":1.06,"Og":2,"Os":160,"On":30,"Oa":5.33,"Od":0.99,"pd":30,"Smsn":7.5,"Omsn":7},"p":[[-35,{"n":5.5,"e":5485}],[-34,{"n":5,"e":5493}],[-33,{"n":7,"e":5501,"g":1}],[-32,{"n":4.5,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":6,"e":5532}],[-29,{"n":5,"e":5545}],[-28,{"n":6,"e":5552}],[-27,{"n":6,"e":5563}],[-26,{"n":4,"e":5572}],[26,{"n":6,"e":7298}],[25,{"n":6,"e":7310}],[23,{"n":4,"e":7317}],[22,{"n":4,"e":7623}],[21,{"n":5.5,"e":7615}],[20,{"n":5.5,"e":7335}],[18,{"n":6,"e":7350}],[17,{"n":5.5,"e":7359}],[16,{"n":3,"e":7366}],[15,{"n":7,"e":7577}],[14,{"n":4.5,"e":7379}],[13,{"n":5.5,"e":7389}],[12,{"n":5,"e":7398}],[11,{"n":4.5,"e":7403}],[10,{"n":6,"e":7410}],[9,{"n":7.5,"e":7416,"g":1}],[8,{"n":6,"e":7422}],[6,{"n":5,"e":7441}],[5,{"n":4.5,"e":7447}],[4,{"n":5,"e":7450}]],"fo":[[7310,[{"t":"Y"}]],[7350,[{"t":"Y"}]],[7359,[{"t":"Y"}]],[7366,[{"t":"Y"}]],[7389,[{"t":"Y"}]],[7398,[{"t":"Y"}]],[7615,[{"t":"Y"}]]],"a":{"m":21,"a":22,"M":25,"n":6}}],[4587,{"n":"Calhanoglu","f":"Hakan","fp":"MO","r":21,"c":125,"s":{"g":2,"s":142,"n":24,"a":5.92,"d":0.97,"Sg":1,"Ss":17,"Sn":3,"Sa":5.67,"Sd":1.26,"Og":8,"Os":225.5,"On":37,"Oa":6.09,"Od":1.09,"pm":37,"Smsn":7,"Omsn":6.5},"p":[[-38,{"n":5.5,"e":5454}],[-37,{"n":7.5,"e":5463,"g":1}],[-36,{"n":7,"e":5473,"g":1}],[-35,{"n":7,"e":5485}],[-34,{"n":7,"e":5493,"g":1}],[-33,{"n":8,"e":5501,"g":1}],[-32,{"n":4,"e":5515}],[-31,{"n":5.5,"e":5523,"s":1}],[-30,{"n":6.5,"e":5532,"g":1}],[-29,{"n":6,"e":5545}],[29,{"n":5.5,"e":7274}],[28,{"n":7,"e":7277,"g":1}],[-28,{"n":7,"e":5552,"g":1}],[27,{"n":4.5,"e":7287}],[-27,{"n":8,"e":5563}],[-26,{"n":4.5,"e":5572}],[24,{"n":5,"e":7302}],[23,{"n":4,"e":7317}],[22,{"n":4.5,"e":7623}],[21,{"n":7,"e":7615,"s":1}],[17,{"n":5,"e":7359,"s":1}],[16,{"n":5.5,"e":7366}],[15,{"n":5.5,"e":7577}],[14,{"n":8,"e":7379,"g":1}],[13,{"n":7,"e":7389}],[12,{"n":6,"e":7398}],[11,{"n":7,"e":7403}],[10,{"n":5.5,"e":7410}],[9,{"n":6.5,"e":7416}],[8,{"n":6.5,"e":7422}],[7,{"n":6,"e":7432}],[6,{"n":6,"e":7441}],[5,{"n":7,"e":7447}],[4,{"n":6,"e":7450}],[3,{"n":6,"e":7487,"s":1}],[2,{"n":6,"e":7490}],[1,{"n":5,"e":7475}]],"fo":[[7277,[{"t":"Y"}]],[7577,[{"t":"Y"}]]]}],[4658,{"n":"Antonio Donnarumma","f":"","fp":"G","r":3,"c":125}],[4762,{"n":"Mandzukic","f":"Mario","fp":"A","r":6,"c":125,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Os":18.5,"On":4,"Oa":4.63,"Od":0.25,"pa":4},"p":[[22,{"n":4.5,"e":7623,"s":1}],[21,{"n":4.5,"e":7615,"s":1}],[20,{"n":4.5,"e":7335,"s":1}],[19,{"n":5,"e":7344,"s":1}]]}],[5305,{"n":"Mionic","f":"Antonio","fp":"MD","r":1,"c":125}],[5306,{"n":"Capone","f":"Andrea","fp":"A","r":1,"c":125}],[5307,{"n":"Maldini","f":"Daniel","fp":"MO","r":3,"c":125,"s":{"s":22.5,"n":5,"a":4.5,"d":0.35,"Os":26.5,"On":6,"Oa":4.42,"Od":0.38,"pa":6},"p":[[-38,{"n":4,"e":5454,"s":1}],[17,{"n":4.5,"e":7359,"s":1}],[16,{"n":5,"e":7366,"s":1}],[14,{"n":4.5,"e":7379,"s":1}],[13,{"n":4,"e":7389,"s":1}],[3,{"n":4.5,"e":7487,"s":1}]]}],[5321,{"n":"Gabbia","f":"Matteo","fp":"DC","r":3,"c":125,"s":{"s":38,"n":7,"a":5.43,"d":0.67,"Os":74.5,"On":14,"Oa":5.32,"Od":0.67,"pd":12,"pm":2},"p":[[-38,{"n":6,"e":5454}],[-37,{"n":6,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":5.5,"e":5485,"s":1}],[-29,{"n":5,"e":5545}],[-27,{"n":4,"e":5563,"s":1}],[27,{"n":4.5,"e":7287}],[-26,{"n":5,"e":5572}],[11,{"n":5,"e":7403}],[10,{"n":5.5,"e":7410}],[7,{"n":5,"e":7432}],[3,{"n":6.5,"e":7487}],[2,{"n":6,"e":7490}],[1,{"n":5.5,"e":7475}]],"fo":[[7403,[{"t":"I"}]]]}],[5960,{"n":"Bennacer","f":"Ismael","fp":"MD","r":7,"c":125,"s":{"s":67.5,"n":13,"a":5.19,"d":1.03,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.06,"Og":1,"Os":138.5,"On":25,"Oa":5.54,"Od":0.93,"pm":25,"Omsn":7.5},"p":[[-38,{"n":6.5,"e":5454}],[-37,{"n":6,"e":5463}],[-35,{"n":6,"e":5485}],[-34,{"n":7.5,"e":5493,"g":1}],[-33,{"n":5.5,"e":5501,"s":1}],[-32,{"n":5,"e":5515}],[-31,{"n":6,"e":5523}],[-30,{"n":6,"e":5532}],[-29,{"n":5,"e":5545}],[29,{"n":4,"e":7274}],[-28,{"n":6,"e":5552}],[28,{"n":5.5,"e":7277,"s":1}],[-27,{"n":6,"e":5563}],[-26,{"n":5.5,"e":5572}],[22,{"n":3.5,"e":7623}],[20,{"n":5,"e":7335,"s":1}],[11,{"n":4.5,"e":7403}],[8,{"n":7,"e":7422}],[7,{"n":4.5,"e":7432}],[6,{"n":5,"e":7441}],[5,{"n":5,"e":7447}],[4,{"n":6,"e":7450}],[3,{"n":5.5,"e":7487,"s":1}],[2,{"n":5,"e":7490,"s":1}],[1,{"n":7,"e":7475}]],"fo":[[7403,[{"t":"I"}]],[7274,[{"t":"Y"}]],[7432,[{"t":"Y"}]]]}],[6223,{"n":"Rebic","f":"Ante","fp":"A","r":20,"c":125,"s":{"g":5,"s":101,"n":19,"a":5.32,"d":1.41,"Ss":4,"Sn":1,"Sa":4,"Og":10,"Os":170,"On":31,"Oa":5.48,"Od":1.39,"pm":15,"pa":16,"Smsn":7,"Omsn":6.5},"p":[[-37,{"n":5,"e":5463}],[-36,{"n":5,"e":5473}],[-35,{"n":5,"e":5485}],[-34,{"n":8,"e":5493,"g":1}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":6,"e":5515}],[-31,{"n":7.5,"e":5523,"g":1}],[-30,{"n":7,"e":5532,"g":1,"s":1}],[-29,{"n":3.5,"e":5545}],[29,{"n":4,"e":7274,"s":1}],[-28,{"n":6.5,"e":5552,"g":1}],[-27,{"n":6.5,"e":5563,"g":1}],[27,{"n":2.5,"e":7287,"s":1}],[-26,{"n":4,"e":5572}],[25,{"n":4.5,"e":7310}],[24,{"n":7,"e":7302,"g":1}],[23,{"n":4,"e":7317}],[21,{"n":8,"e":7615,"g":2}],[20,{"n":7,"e":7335,"g":1}],[19,{"n":4,"e":7344,"s":1}],[15,{"n":6,"e":7577}],[14,{"n":7,"e":7379,"g":1}],[12,{"n":4,"e":7398}],[11,{"n":5,"e":7403}],[10,{"n":6,"e":7410}],[9,{"n":4.5,"e":7416}],[8,{"n":6.5,"e":7422}],[7,{"n":5,"e":7432,"s":1}],[6,{"n":4.5,"e":7441,"s":1}],[2,{"n":5.5,"e":7490}],[1,{"n":6,"e":7475}]],"fo":[[7302,[{"t":"I"}]],[7287,[{"t":"R"}]],[7310,[{"t":"Y"}]],[7335,[{"t":"Y"}]],[7416,[{"t":"Y"}]],[7422,[{"t":"Y"}]]]}],[6522,{"n":"Saelemaekers","f":"Alexis","fp":"DL","r":20,"c":125,"s":{"g":2,"s":124.5,"n":24,"a":5.19,"d":0.94,"Ss":52,"Sn":10,"Sa":5.2,"Sd":0.82,"Og":3,"Os":183,"On":35,"Oa":5.23,"Od":0.97,"pd":8,"pm":27,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5454,"s":1}],[-37,{"n":5.5,"e":5463}],[-36,{"n":4.5,"e":5473}],[-35,{"n":6,"e":5485}],[-34,{"n":6.5,"e":5493,"g":1}],[-32,{"n":3,"e":5515,"s":1}],[-31,{"n":4.5,"e":5523}],[-30,{"n":6.5,"e":5532}],[-29,{"n":6,"e":5545,"s":1}],[29,{"n":4,"e":7274}],[-28,{"n":6,"e":5552,"s":1}],[28,{"n":5,"e":7277}],[27,{"n":5,"e":7287,"s":1}],[-27,{"n":5.5,"e":5563,"s":1}],[26,{"n":6.5,"e":7298}],[25,{"n":5.5,"e":7310,"s":1}],[24,{"n":6,"e":7302}],[23,{"n":4,"e":7317}],[22,{"n":5,"e":7623}],[21,{"n":5,"e":7615}],[20,{"n":6,"e":7335}],[18,{"n":3.5,"e":7350,"s":1}],[14,{"n":4,"e":7379}],[13,{"n":7,"e":7389,"g":1}],[12,{"n":4,"e":7398,"s":1}],[10,{"n":5,"e":7410}],[9,{"n":6.5,"e":7416}],[8,{"n":5,"e":7422}],[7,{"n":4.5,"e":7432}],[6,{"n":5,"e":7441}],[5,{"n":6,"e":7447,"g":1}],[4,{"n":5.5,"e":7450}],[3,{"n":6.5,"e":7487}],[2,{"n":4.5,"e":7490}],[1,{"n":5.5,"e":7475,"s":1}]],"fo":[[7274,[{"t":"Y"}]],[7302,[{"t":"Y"}]],[7317,[{"t":"Y"}]],[7350,[{"t":"Y"},{"t":"O"}]],[7615,[{"t":"Y"}]]]}],[6564,{"n":"Kalulu","f":"Pierre","fp":"DL","r":7,"c":125,"s":{"g":1,"s":50.5,"n":10,"a":5.05,"d":0.5,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":50.5,"On":10,"Oa":5.05,"Od":0.5,"pd":10,"Smsn":5.5,"Omsn":5.5},"p":[[29,{"n":5,"e":7274,"s":1}],[25,{"n":5,"e":7310}],[19,{"n":4.5,"e":7344}],[18,{"n":5.5,"e":7350,"s":1}],[16,{"n":5,"e":7366,"s":1}],[15,{"n":5,"e":7577,"s":1}],[14,{"n":4.5,"e":7379}],[13,{"n":6,"e":7389}],[12,{"n":5.5,"e":7398,"g":1}],[11,{"n":4.5,"e":7403,"s":1}]],"fo":[[7344,[{"t":"I"}]],[7403,[{"t":"Y"}]]]}],[6609,{"n":"Olzer","f":"Giacomo","fp":"MO","r":1,"c":125}],[6610,{"n":"Stanga","f":"Luca","fp":"DL","r":1,"c":125}],[7184,{"n":"Roback","f":"Emil","fp":"A","r":1,"c":125}],[7185,{"n":"Jungdal","f":"Andreas","fp":"G","r":1,"c":125}],[7187,{"n":"Michelis","f":"Nikolaos","fp":"MD","r":1,"c":125}],[7193,{"n":"Tonin","f":"Riccardo","fp":"A","r":1,"c":125}],[7271,{"n":"Brambilla","f":"Alessio","fp":"MD","r":1,"c":125}],[7272,{"n":"Frigerio","f":"Marco","fp":"MD","r":1,"c":125}],[7273,{"n":"Oddi","f":"Riccardo","fp":"DL","r":1,"c":125}],[7274,{"n":"Moleri","f":"Leonardo","fp":"G","r":1,"c":125}],[7375,{"n":"Hauge","f":"Jens Petter","fp":"MO","r":9,"c":125,"s":{"g":2,"s":86,"n":17,"a":5.06,"d":0.73,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":86,"On":17,"Oa":5.06,"Od":0.73,"pm":17,"Smsn":6,"Omsn":6},"p":[[29,{"n":6,"e":7274,"g":1,"s":1}],[27,{"n":5,"e":7287,"s":1}],[26,{"n":5,"e":7298,"s":1}],[25,{"n":4.5,"e":7310,"s":1}],[22,{"n":5,"e":7623,"s":1}],[21,{"n":5,"e":7615,"s":1}],[18,{"n":5.5,"e":7350}],[17,{"n":5.5,"e":7359}],[16,{"n":3.5,"e":7366}],[14,{"n":5,"e":7379,"s":1}],[13,{"n":5,"e":7389,"s":1}],[12,{"n":4.5,"e":7398,"s":1}],[11,{"n":5,"e":7403,"s":1}],[10,{"n":5,"e":7410,"s":1}],[9,{"n":5,"e":7416,"s":1}],[8,{"n":7,"e":7422,"g":1,"s":1}],[7,{"n":4.5,"e":7432,"s":1}]]}],[7420,{"n":"Paloschi","f":"Mattia","fp":"G","r":1,"c":125}],[7606,{"n":"Di Gesù","f":"Enrico","fp":"MD","r":1,"c":125}],[95,{"n":"Bakayoko","f":"Tiemoué","fp":"MD","r":13,"c":111,"s":{"g":1,"s":128.5,"n":24,"a":5.35,"d":0.97,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":135,"On":25,"Oa":5.4,"Od":0.98,"pm":25,"Smsn":7.5,"Omsn":7.5},"p":[[28,{"n":5,"e":7280,"s":1}],[25,{"n":4.5,"e":7309,"s":1}],[20,{"n":5,"e":7337,"s":1}],[17,{"n":7.5,"e":7362,"g":1}],[11,{"n":5,"e":7404,"s":1}],[6,{"n":5.5,"e":7437}],[29,{"n":5,"e":8255}],[-28,{"n":6.5,"e":3653}],[27,{"n":4.5,"e":7287,"s":1}],[24,{"n":6,"e":7639}],[23,{"n":4,"e":7313}],[22,{"n":6,"e":7323}],[21,{"n":5,"e":7329,"s":1}],[19,{"n":4.5,"e":7347}],[18,{"n":7.5,"e":7353}],[16,{"n":5.5,"e":7583}],[15,{"n":6,"e":7371}],[14,{"n":5,"e":7380}],[13,{"n":4.5,"e":7387}],[12,{"n":4.5,"e":7397}],[10,{"n":7,"e":7546}],[8,{"n":4,"e":7422}],[7,{"n":5.5,"e":7428}],[5,{"n":5.5,"e":7507}],[4,{"n":6,"e":7449}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7507,[{"t":"I"}]],[7323,[{"t":"Y"}]],[7380,[{"t":"Y"}]],[7397,[{"t":"Y"}]],[7422,[{"t":"Y"},{"t":"O"}]]]}],[946,{"n":"Ospina","f":"David","fp":"G","r":11,"c":111,"s":{"s":79,"n":15,"a":5.27,"d":1.18,"Os":111.5,"On":21,"Oa":5.31,"Od":1.09,"pg":21},"p":[[-38,{"n":5,"e":5455}],[-36,{"n":6,"e":5474}],[-34,{"n":5,"e":5494}],[-32,{"n":4.5,"e":5515}],[-29,{"n":5,"e":5538}],[28,{"n":7,"e":7280}],[-27,{"n":7,"e":5567}],[27,{"n":7,"e":7287}],[26,{"n":5.5,"e":7294}],[21,{"n":4,"e":7329}],[20,{"n":5.5,"e":7337}],[18,{"n":6,"e":7353}],[16,{"n":4,"e":7583}],[15,{"n":4.5,"e":7371}],[13,{"n":3.5,"e":7387}],[12,{"n":4,"e":7397}],[10,{"n":6,"e":7546}],[7,{"n":6.5,"e":7428}],[6,{"n":4,"e":7437}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":6,"e":7472}]],"fo":[[7397,[{"t":"Y"}]],[7437,[{"t":"Y"}]]]}],[1851,{"n":"Lobotka","f":"Stanislav","fp":"MD","r":7,"c":111,"s":{"s":68.5,"n":14,"a":4.89,"d":0.29,"Os":122.5,"On":24,"Oa":5.1,"Od":0.44,"pm":24},"p":[[9,{"n":4,"e":7417,"s":1}],[-38,{"n":5.5,"e":5455}],[-36,{"n":6,"e":5474}],[-35,{"n":5,"e":5482,"s":1}],[-34,{"n":5.5,"e":5494}],[-32,{"n":5,"e":5515}],[-31,{"n":6,"e":5521}],[-30,{"n":5,"e":5533,"s":1}],[-29,{"n":5,"e":5538,"s":1}],[-28,{"n":6,"e":5553}],[-27,{"n":5,"e":5567,"s":1}],[25,{"n":5,"e":7309,"s":1}],[23,{"n":5,"e":7313,"s":1}],[22,{"n":5,"e":7323,"s":1}],[19,{"n":4.5,"e":7347,"s":1}],[16,{"n":5,"e":7583,"s":1}],[15,{"n":5,"e":7371,"s":1}],[13,{"n":5,"e":7387,"s":1}],[11,{"n":5,"e":7404,"s":1}],[10,{"n":5,"e":7546,"s":1}],[5,{"n":5,"e":7507,"s":1}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7466,"s":1}],[1,{"n":5,"e":7472,"s":1}]],"fo":[[7387,[{"t":"Y"}]],[7546,[{"t":"Y"}]]]}],[1854,{"n":"Ruiz","f":"Fabián","fp":"MD","r":16,"c":111,"s":{"g":1,"s":128,"n":23,"a":5.57,"d":1.06,"Ss":45.5,"Sn":8,"Sa":5.69,"Sd":0.65,"Og":2,"Os":193,"On":34,"Oa":5.68,"Od":1.07,"pm":34,"Smsn":8,"Omsn":7},"p":[[-38,{"n":7,"e":5455,"g":1}],[-36,{"n":5.5,"e":5474}],[-35,{"n":5,"e":5482}],[-34,{"n":6.5,"e":5494}],[-33,{"n":4.5,"e":5499,"s":1}],[-32,{"n":5,"e":5515}],[-31,{"n":7,"e":5521}],[-30,{"n":6,"e":5533}],[-29,{"n":5,"e":5538}],[29,{"n":6,"e":8255}],[-28,{"n":8,"e":5553}],[28,{"n":6,"e":7280}],[-27,{"n":5.5,"e":5567,"s":1}],[27,{"n":6.5,"e":7287}],[26,{"n":6,"e":7294}],[25,{"n":5,"e":7309}],[24,{"n":6,"e":7639}],[23,{"n":4.5,"e":7313}],[22,{"n":5.5,"e":7323,"s":1}],[17,{"n":5,"e":7362}],[16,{"n":3.5,"e":7583}],[15,{"n":7,"e":7371}],[14,{"n":5.5,"e":7380,"s":1}],[13,{"n":4.5,"e":7387}],[12,{"n":5,"e":7397,"s":1}],[11,{"n":5,"e":7404}],[9,{"n":8,"e":7417,"g":1}],[8,{"n":5,"e":7422}],[7,{"n":5.5,"e":7428}],[6,{"n":5,"e":7437}],[5,{"n":4,"e":7507}],[4,{"n":7,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":5.5,"e":7472}]],"a":{"m":21,"a":21,"M":22,"n":5}}],[4181,{"n":"Zedadka","f":"Karim","fp":"MD","r":1,"c":111}],[4182,{"n":"Daniele","f":"Antonio Pio","fp":"G","r":1,"c":111,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[4466,{"n":"Meret","f":"Alex","fp":"G","r":11,"c":111,"s":{"s":68.5,"n":13,"a":5.27,"d":1.35,"Ss":4,"Sn":1,"Sa":4,"Os":102.5,"On":20,"Oa":5.13,"Od":1.15,"pg":20},"p":[[-37,{"n":5.5,"e":5460}],[-35,{"n":5,"e":5482}],[-33,{"n":4,"e":5499}],[-31,{"n":5.5,"e":5521}],[-30,{"n":5,"e":5533}],[-29,{"n":4,"e":5538,"s":1}],[29,{"n":4,"e":8255}],[-28,{"n":5,"e":5553}],[25,{"n":5.5,"e":7309}],[24,{"n":6,"e":7639}],[23,{"n":3,"e":7313}],[22,{"n":8,"e":7323}],[19,{"n":4,"e":7347}],[17,{"n":7,"e":7362}],[14,{"n":5.5,"e":7380}],[11,{"n":5.5,"e":7404}],[9,{"n":6,"e":7417}],[8,{"n":4,"e":7422}],[5,{"n":5,"e":7507}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7466}]]}],[4484,{"n":"Rrahmani","f":"Amir","fp":"DC","r":10,"c":111,"s":{"s":45,"n":9,"a":5,"d":1.09,"Os":100.5,"On":21,"Oa":4.79,"Od":1.01,"pd":21},"p":[[-38,{"n":3,"e":5451}],[-36,{"n":3,"e":5477}],[-35,{"n":5.5,"e":5486}],[-34,{"n":5.5,"e":5497}],[-32,{"n":5.5,"e":5510}],[-31,{"n":4,"e":5527}],[-30,{"n":4.5,"e":5528}],[-29,{"n":5,"e":5547}],[-28,{"n":4.5,"e":5556}],[-27,{"n":4.5,"e":5567}],[-26,{"n":4.5,"e":5575}],[26,{"n":5.5,"e":7294}],[-25,{"n":6,"e":5587}],[25,{"n":5,"e":7309}],[24,{"n":5.5,"e":7639}],[23,{"n":3,"e":7313}],[22,{"n":7,"e":7323}],[21,{"n":5,"e":7329,"s":1}],[18,{"n":5,"e":7353,"s":1}],[17,{"n":4,"e":7362}],[15,{"n":5,"e":7371,"s":1}],[3,{"n":null,"e":7462,"d":1}]]}],[4518,{"n":"Politano","f":"Matteo","fp":"MO","r":21,"c":111,"s":{"g":8,"s":146.5,"n":27,"a":5.43,"d":1.01,"Sg":5,"Ss":70,"Sn":12,"Sa":5.83,"Sd":0.89,"Og":10,"Os":198,"On":37,"Oa":5.35,"Od":0.98,"pm":15,"pa":22,"Smsn":6,"Omsn":6},"p":[[-38,{"n":6.5,"e":5455,"g":1,"s":1}],[-37,{"n":5,"e":5460}],[-36,{"n":4.5,"e":5474,"s":1}],[-35,{"n":4,"e":5482}],[-34,{"n":6,"e":5494,"g":1,"s":1}],[-33,{"n":6,"e":5499}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":5,"e":5521}],[-29,{"n":4,"e":5538}],[29,{"n":5.5,"e":8255}],[28,{"n":7,"e":7280}],[27,{"n":6.5,"e":7287,"g":1}],[-27,{"n":6,"e":5567}],[26,{"n":6,"e":7294}],[25,{"n":5,"e":7309}],[24,{"n":7,"e":7639,"g":1}],[23,{"n":5.5,"e":7313}],[22,{"n":5,"e":7323}],[21,{"n":6.5,"e":7329,"g":1}],[20,{"n":6,"e":7337,"g":1,"s":1}],[19,{"n":4,"e":7347,"s":1}],[18,{"n":6,"e":7353,"g":1,"s":1}],[16,{"n":4,"e":7583}],[15,{"n":5.5,"e":7371,"s":1}],[14,{"n":5,"e":7380}],[13,{"n":3.5,"e":7387}],[12,{"n":5.5,"e":7397,"s":1}],[11,{"n":4,"e":7404}],[10,{"n":4,"e":7546,"s":1}],[9,{"n":6.5,"e":7417,"g":1,"s":1}],[8,{"n":5,"e":7422}],[7,{"n":4.5,"e":7428,"s":1}],[6,{"n":5,"e":7437}],[5,{"n":6,"e":7507,"s":1}],[4,{"n":7,"e":7449,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":6,"e":7466,"g":1,"s":1}],[1,{"n":5,"e":7472,"s":1}]],"fo":[[7287,[{"t":"I"}]],[7507,[{"t":"Y"}]],[7546,[{"t":"Y"}]]],"a":{"m":26,"a":27,"M":34,"n":8}}],[4535,{"n":"Petagna","f":"Andrea","fp":"A","r":8,"c":111,"s":{"g":4,"s":106,"n":21,"a":5.05,"d":1.08,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":163.5,"On":33,"Oa":4.95,"Od":0.98,"pa":33,"Smsn":6,"Omsn":5.5},"p":[[-37,{"n":4.5,"e":5467}],[-36,{"n":5,"e":5476}],[-35,{"n":4.5,"e":5483,"s":1}],[-34,{"n":4.5,"e":5488}],[-33,{"n":3.5,"e":5503}],[-32,{"n":4,"e":5511}],[-31,{"n":4,"e":5525}],[-30,{"n":6,"e":5535,"s":1}],[-29,{"n":5,"e":5545}],[29,{"n":4.5,"e":8255,"s":1}],[-28,{"n":6,"e":5553,"g":1}],[-27,{"n":5,"e":5565}],[-26,{"n":5.5,"e":5574,"g":1}],[22,{"n":4,"e":7323,"s":1}],[21,{"n":4,"e":7329}],[20,{"n":4,"e":7337}],[19,{"n":4,"e":7347}],[18,{"n":7,"e":7353}],[17,{"n":5,"e":7362}],[16,{"n":7,"e":7583,"g":1,"s":1}],[15,{"n":7,"e":7371}],[14,{"n":4,"e":7380}],[13,{"n":5,"e":7387}],[12,{"n":5,"e":7397,"s":1}],[11,{"n":6,"e":7404,"g":1,"s":1}],[10,{"n":6.5,"e":7546,"g":1}],[9,{"n":4.5,"e":7417,"s":1}],[8,{"n":4.5,"e":7422,"s":1}],[7,{"n":4,"e":7428,"s":1}],[6,{"n":4.5,"e":7437,"s":1}],[5,{"n":6,"e":7507,"g":1,"s":1}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":4.5,"e":7472,"s":1}]],"fo":[[7353,[{"t":"I"}]]],"a":{"m":15,"a":17,"M":23,"n":9}}],[4557,{"n":"Zielinski","f":"Piotr","fp":"MO","r":22,"c":111,"s":{"g":6,"s":154.5,"n":26,"a":5.94,"d":0.97,"Sg":5,"Ss":141,"Sn":24,"Sa":5.88,"Sd":0.91,"Og":6,"Os":216,"On":37,"Oa":5.84,"Od":0.9,"pm":37,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5.5,"e":5455}],[-37,{"n":5,"e":5460}],[-36,{"n":7,"e":5474}],[-35,{"n":5,"e":5482,"s":1}],[-34,{"n":5.5,"e":5494}],[-33,{"n":5,"e":5499}],[-32,{"n":5.5,"e":5515}],[-31,{"n":5,"e":5521,"s":1}],[-30,{"n":6.5,"e":5533}],[-29,{"n":5.5,"e":5538}],[29,{"n":5,"e":8255,"s":1}],[28,{"n":6,"e":7280}],[-27,{"n":6,"e":5567}],[27,{"n":6.5,"e":7287}],[26,{"n":7,"e":7294}],[25,{"n":7,"e":7309,"g":1}],[24,{"n":6,"e":7639}],[23,{"n":6,"e":7313,"g":1}],[22,{"n":5.5,"e":7323}],[21,{"n":5.5,"e":7329}],[20,{"n":5.5,"e":7337}],[19,{"n":4,"e":7347}],[18,{"n":7,"e":7353,"g":1}],[17,{"n":6,"e":7362}],[16,{"n":6,"e":7583}],[15,{"n":8,"e":7371,"g":2}],[14,{"n":6,"e":7380}],[13,{"n":5,"e":7387}],[12,{"n":5,"e":7397}],[11,{"n":5,"e":7404}],[10,{"n":6.5,"e":7546}],[9,{"n":7,"e":7417}],[8,{"n":5.5,"e":7422,"s":1}],[7,{"n":5,"e":7428,"s":1}],[6,{"n":5,"e":7437,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":8,"e":7466,"g":1}],[1,{"n":5.5,"e":7472}]],"fo":[[7309,[{"t":"I"}]],[7280,[{"t":"Y"}]],[7371,[{"t":"Y"}]]],"a":{"m":20,"a":23,"M":26,"n":12}}],[4599,{"n":"Hysaj","f":"Elseid","fp":"DL","r":8,"c":111,"s":{"s":79.5,"n":15,"a":5.3,"d":0.86,"Og":1,"Os":116.5,"On":22,"Oa":5.3,"Od":0.97,"pd":22,"Omsn":8},"p":[[-37,{"n":4.5,"e":5460}],[-36,{"n":8,"e":5474,"g":1}],[-34,{"n":5,"e":5494}],[-33,{"n":4.5,"e":5499}],[-31,{"n":4.5,"e":5521}],[-28,{"n":5,"e":5553}],[28,{"n":6,"e":7280}],[27,{"n":6,"e":7287}],[-27,{"n":5.5,"e":5567}],[26,{"n":5.5,"e":7294,"s":1}],[25,{"n":4,"e":7309}],[24,{"n":5,"e":7639,"s":1}],[20,{"n":5,"e":7337,"s":1}],[19,{"n":3.5,"e":7347}],[18,{"n":6,"e":7353}],[17,{"n":5,"e":7362}],[14,{"n":5,"e":7380}],[7,{"n":6,"e":7428}],[6,{"n":5,"e":7437}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":5,"e":7472}]]}],[4617,{"n":"Mário Rui","f":"","fp":"DL","r":10,"c":111,"s":{"s":107.5,"n":21,"a":5.12,"d":0.93,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.96,"Os":154,"On":30,"Oa":5.13,"Od":0.92,"pd":30},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":5,"e":5460}],[-35,{"n":3.5,"e":5482}],[-34,{"n":6,"e":5494}],[-32,{"n":5,"e":5515}],[-31,{"n":5,"e":5521}],[-30,{"n":7,"e":5533}],[-29,{"n":5,"e":5538}],[29,{"n":4.5,"e":8255}],[28,{"n":6.5,"e":7280}],[-28,{"n":5,"e":5553}],[27,{"n":5.5,"e":7287,"s":1}],[26,{"n":4.5,"e":7294,"s":1}],[23,{"n":3,"e":7313}],[22,{"n":5,"e":7323}],[21,{"n":4.5,"e":7329}],[20,{"n":5,"e":7337}],[18,{"n":6,"e":7353}],[17,{"n":6.5,"e":7362,"s":1}],[16,{"n":5,"e":7583}],[15,{"n":6,"e":7371}],[14,{"n":5,"e":7380,"s":1}],[13,{"n":3.5,"e":7387}],[12,{"n":5.5,"e":7397}],[11,{"n":5,"e":7404,"s":1}],[10,{"n":5.5,"e":7546}],[9,{"n":6.5,"e":7417}],[8,{"n":4,"e":7422}],[6,{"n":5,"e":7437,"s":1}],[5,{"n":5.5,"e":7507}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7294,[{"t":"Y"}]],[7329,[{"t":"Y"}]],[7404,[{"t":"Y"}]],[7422,[{"t":"Y"}]]]}],[4630,{"n":"Di Lorenzo","f":"Giovanni","fp":"DL","r":17,"c":111,"s":{"g":2,"s":138.5,"n":26,"a":5.33,"d":1.09,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":3,"Os":180,"On":34,"Oa":5.29,"Od":1.03,"pd":34,"Smsn":7,"Omsn":7},"p":[[-38,{"n":5,"e":5455}],[-36,{"n":5,"e":5474}],[-35,{"n":5.5,"e":5482}],[-33,{"n":5,"e":5499}],[-32,{"n":7,"e":5515,"g":1}],[-30,{"n":4.5,"e":5533}],[-29,{"n":4,"e":5538}],[29,{"n":7,"e":8255,"g":1}],[27,{"n":5.5,"e":7287}],[-27,{"n":5.5,"e":5567}],[26,{"n":5,"e":7294}],[25,{"n":7,"e":7309,"g":1}],[24,{"n":5,"e":7639}],[23,{"n":3,"e":7313}],[22,{"n":5.5,"e":7323}],[21,{"n":4.5,"e":7329}],[20,{"n":6,"e":7337}],[19,{"n":4.5,"e":7347}],[17,{"n":5,"e":7362}],[16,{"n":6,"e":7583}],[15,{"n":7,"e":7371}],[14,{"n":5,"e":7380}],[13,{"n":4,"e":7387}],[12,{"n":5,"e":7397}],[11,{"n":5,"e":7404}],[10,{"n":5.5,"e":7546}],[9,{"n":5.5,"e":7417}],[8,{"n":3.5,"e":7422}],[7,{"n":6,"e":7428}],[6,{"n":4,"e":7437}],[5,{"n":4.5,"e":7507}],[4,{"n":6.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":6,"e":7472}]],"fo":[[7287,[{"t":"Y"}]],[7313,[{"t":"Y"}]],[7323,[{"t":"Y"}]],[7347,[{"t":"Y"}]],[7362,[{"t":"Y"}]],[7380,[{"t":"Y"}]],[7404,[{"t":"Y"}]],[7417,[{"t":"Y"}]],[7583,[{"t":"Y"}]],[7639,[{"t":"Y"}]]]}],[4643,{"n":"Ghoulam","f":"Faouzi","fp":"DL","r":5,"c":111,"s":{"s":56,"n":11,"a":5.09,"d":0.66,"Os":77,"On":15,"Oa":5.13,"Od":0.61,"pd":15},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":5,"e":5460,"s":1}],[-28,{"n":5,"e":5553,"s":1}],[-27,{"n":6,"e":5567,"s":1}],[26,{"n":5,"e":7294}],[25,{"n":5,"e":7309,"s":1}],[24,{"n":7,"e":7639}],[23,{"n":5,"e":7313,"s":1}],[15,{"n":5,"e":7371,"s":1}],[13,{"n":5,"e":7387,"s":1}],[12,{"n":5,"e":7397,"s":1}],[11,{"n":5,"e":7404}],[5,{"n":5,"e":7507,"s":1}],[4,{"n":4.5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":4.5,"e":7466,"s":1}]],"fo":[[7294,[{"t":"I"}]],[7309,[{"t":"Y"}]]]}],[4648,{"n":"Nikola Maksimovic","f":"","fp":"DC","r":9,"c":111,"s":{"ao":1,"s":83.5,"n":17,"a":4.91,"d":0.67,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.04,"Oao":1,"Os":134.5,"On":27,"Oa":4.98,"Od":0.78,"pd":27},"p":[[-37,{"n":4,"e":5460}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":6,"e":5482}],[-33,{"n":5.5,"e":5499}],[-32,{"n":4,"e":5515}],[-31,{"n":6,"e":5521}],[-30,{"n":6,"e":5533,"s":1}],[-29,{"n":3.5,"e":5538}],[29,{"n":4,"e":8255}],[-28,{"n":5,"e":5553}],[28,{"n":6,"e":7280}],[-27,{"n":6,"e":5567}],[27,{"n":5.5,"e":7287}],[25,{"n":4.5,"e":7309,"a":1}],[24,{"n":5,"e":7639,"s":1}],[23,{"n":3.5,"e":7313}],[22,{"n":5.5,"e":7323}],[21,{"n":4,"e":7329}],[20,{"n":5,"e":7337,"s":1}],[19,{"n":4.5,"e":7347}],[17,{"n":5.5,"e":7362,"s":1}],[16,{"n":5,"e":7583}],[15,{"n":5,"e":7371}],[14,{"n":5.5,"e":7380}],[13,{"n":4.5,"e":7387}],[10,{"n":5,"e":7546,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7466,"s":1}]],"fo":[[7280,[{"t":"I"}]],[7287,[{"t":"Y"}]]]}],[4650,{"n":"Koulibaly","f":"Kalidou","fp":"DC","r":10,"c":111,"s":{"s":107.5,"n":20,"a":5.38,"d":1.01,"Os":158,"On":30,"Oa":5.27,"Od":0.94,"pd":30},"p":[[-38,{"n":5,"e":5455}],[-37,{"n":4,"e":5460}],[-36,{"n":6,"e":5474}],[-35,{"n":4,"e":5482}],[-34,{"n":5.5,"e":5494}],[-32,{"n":5.5,"e":5515}],[-30,{"n":5.5,"e":5533}],[-29,{"n":4,"e":5538}],[28,{"n":5.5,"e":7280}],[-28,{"n":5,"e":5553}],[-27,{"n":6,"e":5567}],[27,{"n":6,"e":7287}],[26,{"n":6,"e":7294}],[24,{"n":5.5,"e":7639}],[23,{"n":4.5,"e":7313,"s":1}],[20,{"n":5.5,"e":7337}],[19,{"n":3.5,"e":7347}],[18,{"n":7,"e":7353}],[13,{"n":4,"e":7387}],[12,{"n":5.5,"e":7397}],[11,{"n":5.5,"e":7404}],[10,{"n":6,"e":7546}],[9,{"n":6,"e":7417}],[8,{"n":3,"e":7422}],[7,{"n":6,"e":7428}],[6,{"n":5,"e":7437}],[5,{"n":5,"e":7507}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7,"e":7466}],[1,{"n":5.5,"e":7472}]],"fo":[[7280,[{"t":"Y"}]],[7294,[{"t":"Y"}]],[7347,[{"t":"Y"}]],[7387,[{"t":"Y"}]],[7546,[{"t":"Y"}]],[7639,[{"t":"Y"},{"t":"O"}]]],"a":{"m":12,"a":13,"M":13,"n":7}}],[4679,{"n":"Insigne","f":"Lorenzo","fp":"A","r":41,"c":111,"s":{"g":14,"s":160.5,"n":25,"a":6.42,"d":1.28,"Sg":10,"Ss":106,"Sn":16,"Sa":6.63,"Sd":1.23,"Og":17,"Os":228,"On":37,"Oa":6.16,"Od":1.2,"pm":20,"pa":17,"Smsn":7,"Omsn":5},"p":[[-38,{"n":6,"e":5455,"g":1}],[-37,{"n":5.5,"e":5460}],[-36,{"n":6,"e":5474}],[-35,{"n":5,"e":5482,"g":1}],[-34,{"n":6,"e":5494}],[-33,{"n":4.5,"e":5499,"s":1}],[-32,{"n":6,"e":5515}],[-31,{"n":6,"e":5521}],[-30,{"n":7,"e":5533,"g":1}],[-29,{"n":4,"e":5538}],[29,{"n":7.5,"e":8255,"g":1}],[-28,{"n":5.5,"e":5553}],[28,{"n":6,"e":7280}],[-27,{"n":6,"e":5567}],[27,{"n":7,"e":7287}],[26,{"n":8,"e":7294,"g":2}],[25,{"n":8,"e":7309,"g":1}],[24,{"n":6,"e":7639}],[23,{"n":4.5,"e":7313,"s":1}],[22,{"n":7,"e":7323,"g":1}],[21,{"n":5,"e":7329,"s":1}],[20,{"n":6,"e":7337}],[19,{"n":5,"e":7347}],[18,{"n":8.5,"e":7353,"g":2}],[17,{"n":7,"e":7362,"g":1}],[16,{"n":5.5,"e":7583}],[15,{"n":8,"e":7371,"g":1}],[14,{"n":7,"e":7380,"g":1}],[12,{"n":4.5,"e":7397}],[11,{"n":5,"e":7404}],[10,{"n":8,"e":7546,"g":1}],[9,{"n":7.5,"e":7417,"g":1}],[8,{"n":4.5,"e":7422}],[7,{"n":6,"e":7428}],[5,{"n":7,"e":7507,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5,"e":7466}],[1,{"n":7,"e":7472,"g":1}]],"fo":[[7397,[{"t":"R"}]],[7353,[{"t":"Y"}]],[7404,[{"t":"Y"}]]],"a":{"m":37,"a":53,"M":68,"n":7}}],[4691,{"n":"Manolas","f":"Kostas","fp":"DC","r":10,"c":111,"s":{"s":113,"n":22,"a":5.14,"d":0.71,"Ss":9,"Sn":2,"Sa":4.5,"Sd":0.71,"Og":1,"Os":152,"On":29,"Oa":5.24,"Od":0.75,"pd":29,"Omsn":7},"p":[[-38,{"n":4.5,"e":5455}],[-36,{"n":6,"e":5474}],[-34,{"n":6,"e":5494}],[-33,{"n":7,"e":5499,"g":1}],[-31,{"n":5.5,"e":5521}],[-30,{"n":5,"e":5533}],[29,{"n":4,"e":8255}],[28,{"n":5,"e":7280,"s":1}],[-28,{"n":5,"e":5553,"s":1}],[25,{"n":4,"e":7309,"s":1}],[21,{"n":4.5,"e":7329}],[20,{"n":5.5,"e":7337}],[18,{"n":6,"e":7353}],[17,{"n":5,"e":7362}],[16,{"n":4.5,"e":7583}],[15,{"n":5.5,"e":7371}],[14,{"n":5.5,"e":7380}],[13,{"n":5,"e":7387,"s":1}],[12,{"n":5,"e":7397}],[11,{"n":6,"e":7404}],[10,{"n":5.5,"e":7546}],[9,{"n":6,"e":7417}],[8,{"n":4,"e":7422}],[7,{"n":6,"e":7428}],[6,{"n":4,"e":7437}],[5,{"n":5,"e":7507}],[4,{"n":5.5,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":5.5,"e":7466}],[1,{"n":6,"e":7472}]],"fo":[[7329,[{"t":"I"}]],[7362,[{"t":"I"}]],[7437,[{"t":"Y"}]],[7583,[{"t":"Y"}]]],"a":{"m":25,"a":25,"M":25,"n":6}}],[4729,{"n":"Mertens","f":"Dries","fp":"A","r":20,"c":111,"s":{"g":8,"s":111,"n":19,"a":5.84,"d":1.38,"Sg":4,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":1.67,"Og":11,"Os":166,"On":29,"Oa":5.72,"Od":1.31,"pm":6,"pa":23,"Smsn":6.5,"Omsn":6},"p":[[-38,{"n":7.5,"e":5455}],[-36,{"n":5.5,"e":5474,"s":1}],[-34,{"n":4.5,"e":5494}],[-33,{"n":4.5,"e":5499,"s":1}],[-32,{"n":7,"e":5515,"g":1}],[-31,{"n":6.5,"e":5521,"g":1}],[-30,{"n":5,"e":5533,"s":1}],[-29,{"n":4,"e":5538}],[29,{"n":6.5,"e":8255,"g":1}],[-28,{"n":6,"e":5553,"g":1}],[28,{"n":8,"e":7280,"g":2}],[-27,{"n":4.5,"e":5567,"s":1}],[27,{"n":4,"e":7287}],[26,{"n":4,"e":7294}],[25,{"n":5,"e":7309}],[24,{"n":7,"e":7639,"g":1}],[19,{"n":4,"e":7347,"s":1}],[18,{"n":4.5,"e":7353,"s":1}],[12,{"n":4.5,"e":7397}],[11,{"n":6,"e":7404}],[10,{"n":6.5,"e":7546,"s":1}],[9,{"n":7.5,"e":7417,"g":1}],[8,{"n":6.5,"e":7422,"g":1}],[7,{"n":5.5,"e":7428}],[6,{"n":5,"e":7437}],[5,{"n":5,"e":7507}],[4,{"n":6,"e":7449}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":8.5,"e":7466,"g":1}],[1,{"n":7,"e":7472,"g":1}]],"fo":[[7397,[{"t":"I"}]]],"a":{"m":27,"a":32,"M":43,"n":6}}],[5309,{"n":"Idasiak","f":"Hubert Dawid","fp":"G","r":1,"c":111,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[5319,{"n":"Elmas","f":"Eljif","fp":"MO","r":10,"c":111,"s":{"g":2,"s":128.5,"n":25,"a":5.14,"d":0.73,"Sg":1,"Ss":91,"Sn":18,"Sa":5.06,"Sd":0.62,"Og":2,"Os":181.5,"On":35,"Oa":5.19,"Od":0.7,"pm":35,"Smsn":7,"Omsn":7},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":5,"e":5460}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":5.5,"e":5482,"s":1}],[-34,{"n":5,"e":5494,"s":1}],[-33,{"n":5,"e":5499}],[-32,{"n":5,"e":5515,"s":1}],[-31,{"n":5.5,"e":5521}],[-30,{"n":5,"e":5533,"s":1}],[29,{"n":6,"e":8255,"s":1}],[28,{"n":5,"e":7280,"s":1}],[-28,{"n":7,"e":5553}],[27,{"n":5,"e":7287,"s":1}],[26,{"n":5,"e":7294,"s":1}],[25,{"n":5,"e":7309,"s":1}],[24,{"n":4.5,"e":7639,"s":1}],[23,{"n":4.5,"e":7313}],[22,{"n":4.5,"e":7323,"s":1}],[21,{"n":5,"e":7329}],[20,{"n":7,"e":7337,"g":1}],[19,{"n":5,"e":7347,"s":1}],[18,{"n":4.5,"e":7353,"s":1}],[17,{"n":5,"e":7362,"s":1}],[16,{"n":4.5,"e":7583,"s":1}],[15,{"n":5,"e":7371,"s":1}],[14,{"n":5,"e":7380,"s":1}],[13,{"n":5.5,"e":7387,"s":1}],[12,{"n":5,"e":7397,"s":1}],[10,{"n":5,"e":7546,"s":1}],[9,{"n":5.5,"e":7417,"s":1}],[8,{"n":5,"e":7422,"s":1}],[7,{"n":5,"e":7428,"s":1}],[6,{"n":4.5,"e":7437,"s":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":7.5,"e":7466,"g":1,"s":1}],[1,{"n":5,"e":7472,"s":1}]],"fo":[[7329,[{"t":"Y"}]],[7337,[{"t":"Y"}]],[7380,[{"t":"Y"}]]]}],[6018,{"n":"Osimhen","f":"Victor","fp":"A","r":15,"c":111,"s":{"g":4,"s":72.5,"n":14,"a":5.18,"d":1.27,"Sg":2,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":1.25,"Og":4,"Os":77.5,"On":15,"Oa":5.17,"Od":1.22,"pa":15,"Smsn":5.5,"Omsn":5.5},"p":[[-28,{"n":5,"e":3650}],[29,{"n":7,"e":8255,"g":1}],[28,{"n":4,"e":7280,"s":1}],[27,{"n":5,"e":7287,"s":1}],[26,{"n":5.5,"e":7294,"g":1,"s":1}],[23,{"n":4,"e":7313}],[22,{"n":4.5,"e":7323}],[21,{"n":4.5,"e":7329,"s":1}],[19,{"n":4,"e":7347,"s":1}],[7,{"n":6.5,"e":7428,"g":1}],[6,{"n":4.5,"e":7437}],[5,{"n":4,"e":7507}],[4,{"n":8,"e":7449,"g":1}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":6,"e":7466}],[1,{"n":5,"e":7472,"s":1}]],"fo":[[7280,[{"t":"Y"}]]]}],[6206,{"n":"Lozano","f":"Hirving","fp":"A","r":25,"c":111,"s":{"g":9,"s":137,"n":23,"a":5.96,"d":1.19,"Ss":9,"Sn":2,"Sa":4.5,"Og":11,"Os":188,"On":33,"Oa":5.7,"Od":1.12,"pm":14,"pa":19,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5455,"s":1}],[-37,{"n":4.5,"e":5460,"s":1}],[-35,{"n":5,"e":5482}],[-33,{"n":5,"e":5499}],[-32,{"n":4.5,"e":5515,"s":1}],[-31,{"n":6.5,"e":5521,"g":1,"s":1}],[-30,{"n":4.5,"e":5533,"s":1}],[-29,{"n":5,"e":5538,"s":1}],[29,{"n":4.5,"e":8255,"s":1}],[-28,{"n":5.5,"e":5553,"s":1}],[28,{"n":4.5,"e":7280,"s":1}],[-27,{"n":6,"e":5567,"g":1,"s":1}],[22,{"n":6,"e":7323}],[21,{"n":6,"e":7329}],[20,{"n":5.5,"e":7337}],[19,{"n":6,"e":7347,"g":1}],[18,{"n":6,"e":7353,"g":1}],[17,{"n":7,"e":7362}],[16,{"n":5,"e":7583}],[15,{"n":7,"e":7371,"g":1}],[14,{"n":4.5,"e":7380,"s":1}],[13,{"n":5,"e":7387}],[12,{"n":5.5,"e":7397}],[11,{"n":7.5,"e":7404,"g":1,"s":1}],[10,{"n":7.5,"e":7546,"g":1}],[9,{"n":6,"e":7417}],[8,{"n":5,"e":7422}],[7,{"n":7,"e":7428}],[6,{"n":4,"e":7437}],[5,{"n":5,"e":7507}],[4,{"n":8,"e":7449,"g":2}],[3,{"n":null,"e":7462,"d":1}],[2,{"n":8,"e":7466,"g":2}],[1,{"n":6.5,"e":7472}]],"fo":[[7387,[{"t":"I"},{"t":"Y"}]],[7329,[{"t":"Y"}]],[7397,[{"t":"Y"}]],[7449,[{"t":"Y"}]]],"a":{"m":42,"a":44,"M":47,"n":5}}],[6407,{"n":"Demme","f":"Diego","fp":"MD","r":11,"c":111,"s":{"g":2,"s":93,"n":17,"a":5.47,"d":1.01,"Og":2,"Os":137.5,"On":26,"Oa":5.29,"Od":0.91,"pm":26,"Smsn":7.5,"Omsn":7.5},"p":[[-38,{"n":5,"e":5455,"s":1}],[-37,{"n":4.5,"e":5460}],[-35,{"n":5,"e":5482}],[-34,{"n":4.5,"e":5494,"s":1}],[-33,{"n":5.5,"e":5499}],[-32,{"n":5,"e":5515,"s":1}],[-30,{"n":5,"e":5533}],[-29,{"n":4,"e":5538}],[28,{"n":6,"e":7280}],[27,{"n":5.5,"e":7287}],[-27,{"n":6,"e":5567}],[26,{"n":5,"e":7294}],[25,{"n":5.5,"e":7309}],[21,{"n":4.5,"e":7329}],[20,{"n":5,"e":7337}],[19,{"n":4.5,"e":7347}],[18,{"n":7.5,"e":7353,"g":1}],[17,{"n":5,"e":7362,"s":1}],[14,{"n":5,"e":7380}],[12,{"n":5.5,"e":7397}],[11,{"n":4.5,"e":7404}],[10,{"n":8,"e":7546,"g":1}],[9,{"n":6.5,"e":7417}],[5,{"n":5,"e":7507,"s":1}],[4,{"n":5,"e":7449,"s":1}],[3,{"n":null,"e":7462,"d":1}],[1,{"n":5,"e":7472}]],"fo":[[7380,[{"t":"I"}]],[7309,[{"t":"Y"}]],[7337,[{"t":"Y"}]],[7347,[{"t":"Y"}]]]}],[7168,{"n":"Contini","f":"Nikita","fp":"G","r":3,"c":111,"s":{},"p":[[3,{"n":null,"e":7462,"d":1}]]}],[7611,{"n":"Cioffi","f":"Antonio","fp":"A","r":1,"c":111}],[7728,{"n":"Costanzo","f":"Davide","fp":"DC","r":1,"c":111}],[7744,{"n":"D'Agostino","f":"Giuseppe","fp":"MO","r":1,"c":111}],[7747,{"n":"Labriola","f":"Valerio","fp":"MO","r":1,"c":111}],[11,{"n":"Cyprien","f":"Wylan","fp":"MO","r":5,"c":114,"s":{"s":61.5,"n":13,"a":4.73,"d":0.44,"Os":61.5,"On":13,"Oa":4.73,"Od":0.44,"pm":13},"p":[[23,{"n":5,"e":7318,"s":1}],[18,{"n":4.5,"e":7355,"s":1}],[15,{"n":4.5,"e":7375,"s":1}],[8,{"n":4,"e":7423}],[5,{"n":5,"e":7509,"s":1}],[4,{"n":5,"e":7454,"s":1}],[21,{"n":4.5,"e":7332,"s":1}],[20,{"n":5,"e":7337,"s":1}],[16,{"n":4,"e":7363}],[14,{"n":4.5,"e":7568,"s":1}],[13,{"n":5.5,"e":7388,"s":1}],[11,{"n":5,"e":7403,"s":1}],[6,{"n":5,"e":7436,"s":1}]],"fo":[[7363,[{"t":"Y"}]],[7568,[{"t":"Y"}]]]}],[116,{"n":"Karamoh","f":"Yann","fp":"A","r":11,"c":114,"s":{"g":2,"s":109.5,"n":23,"a":4.76,"d":0.8,"Og":2,"Os":150,"On":32,"Oa":4.69,"Od":0.74,"pm":5,"pa":27,"Smsn":6,"Omsn":6},"p":[[27,{"n":4.5,"e":7288,"s":1}],[24,{"n":7,"e":7637,"g":1}],[22,{"n":5.5,"e":7326}],[19,{"n":4,"e":7345,"s":1}],[-37,{"n":4.5,"e":5462,"s":1}],[-35,{"n":5.5,"e":5482}],[-34,{"n":5,"e":5495,"s":1}],[-33,{"n":4,"e":5501,"s":1}],[-32,{"n":4.5,"e":5516,"s":1}],[-31,{"n":4.5,"e":5524,"s":1}],[-30,{"n":3.5,"e":5534}],[-29,{"n":4.5,"e":5547,"s":1}],[28,{"n":4,"e":7279}],[26,{"n":4,"e":7291}],[-26,{"n":4.5,"e":5574,"s":1}],[25,{"n":5,"e":7308}],[23,{"n":4.5,"e":7318}],[16,{"n":5,"e":7363}],[15,{"n":4.5,"e":7375}],[14,{"n":4.5,"e":7568}],[13,{"n":4.5,"e":7388,"s":1}],[12,{"n":5,"e":7399}],[11,{"n":4,"e":7403}],[10,{"n":3.5,"e":7545}],[9,{"n":4.5,"e":7414}],[8,{"n":5,"e":7423,"s":1}],[7,{"n":5,"e":7433,"s":1}],[5,{"n":5,"e":7509,"s":1}],[4,{"n":6,"e":7454,"g":1}],[3,{"n":6,"e":7461}],[2,{"n":4,"e":7469}],[1,{"n":4.5,"e":7472,"s":1}]],"fo":[[7363,[{"t":"I"}]],[7288,[{"t":"Y"}]],[7414,[{"t":"Y"}]]]}],[2863,{"n":"Cornelius","f":"Andreas","fp":"A","r":8,"c":114,"s":{"g":1,"s":90,"n":20,"a":4.5,"d":0.97,"Ss":6,"Sn":1,"Sa":6,"Og":5,"Os":135.5,"On":29,"Oa":4.67,"Od":1.21,"pa":29,"Smsn":7,"Omsn":6},"p":[[-38,{"n":6,"e":5453,"g":1}],[-33,{"n":4.5,"e":5501}],[-31,{"n":5,"e":5524}],[-30,{"n":4,"e":5534,"s":1}],[-29,{"n":4,"e":5547}],[29,{"n":6,"e":8253,"s":1}],[-28,{"n":4,"e":5554}],[-27,{"n":9,"e":5561,"g":3}],[-26,{"n":4,"e":5574}],[-25,{"n":5,"e":5586}],[23,{"n":7,"e":7318,"g":1}],[22,{"n":4,"e":7326}],[21,{"n":4,"e":7332}],[20,{"n":4,"e":7337}],[19,{"n":2.5,"e":7345}],[18,{"n":4.5,"e":7355}],[17,{"n":4.5,"e":7360}],[16,{"n":4,"e":7363,"s":1}],[15,{"n":3.5,"e":7375}],[14,{"n":4.5,"e":7568,"s":1}],[13,{"n":4,"e":7388}],[12,{"n":4,"e":7399,"s":1}],[11,{"n":4.5,"e":7403}],[10,{"n":5,"e":7545}],[9,{"n":5,"e":7414}],[6,{"n":4,"e":7436}],[5,{"n":6,"e":7509}],[3,{"n":4.5,"e":7461,"s":1}],[1,{"n":4.5,"e":7472}]],"fo":[[7326,[{"t":"I"},{"t":"Y"}]],[7318,[{"t":"Y"}]],[7399,[{"t":"Y"}]]]}],[4179,{"n":"Camara","f":"Drissa","fp":"MO","r":1,"c":114}],[4234,{"n":"Nicolussi Caviglia","f":"Hans","fp":"MO","r":1,"c":114}],[4366,{"n":"Pezzella","f":"Giuseppe","fp":"DL","r":12,"c":114,"s":{"s":93.5,"n":19,"a":4.92,"d":0.92,"Os":130.5,"On":27,"Oa":4.83,"Od":0.88,"pd":26,"pm":1},"p":[[-37,{"n":5,"e":5462,"s":1}],[-36,{"n":5.5,"e":5469,"s":1}],[-35,{"n":5,"e":5482}],[-34,{"n":3,"e":5495}],[-32,{"n":5,"e":5516,"s":1}],[-31,{"n":4.5,"e":5524}],[-30,{"n":5,"e":5534,"s":1}],[28,{"n":3.5,"e":7279}],[-28,{"n":4,"e":5554,"s":1}],[27,{"n":6,"e":7288}],[26,{"n":4,"e":7291}],[25,{"n":6,"e":7308,"s":1}],[24,{"n":5,"e":7637}],[23,{"n":6,"e":7318}],[22,{"n":5.5,"e":7326,"s":1}],[20,{"n":4.5,"e":7337}],[19,{"n":4,"e":7345}],[18,{"n":6,"e":7355}],[16,{"n":5,"e":7363,"s":1}],[12,{"n":5,"e":7399}],[8,{"n":4,"e":7423}],[7,{"n":5,"e":7433}],[6,{"n":6,"e":7436}],[5,{"n":4.5,"e":7509}],[4,{"n":4,"e":7454}],[3,{"n":6,"e":7461}],[1,{"n":3.5,"e":7472}]],"fo":[[7337,[{"t":"I"},{"t":"Y"}]],[7355,[{"t":"I"}]],[7399,[{"t":"I"}]],[7423,[{"t":"I"}]],[7279,[{"t":"Y"}]],[7291,[{"t":"Y"}]],[7433,[{"t":"Y"}]]]}],[4418,{"n":"Grassi","f":"Alberto","fp":"MD","r":7,"c":114,"s":{"ao":1,"s":77,"n":16,"a":4.81,"d":0.66,"Oao":1,"Os":104.5,"On":21,"Oa":4.98,"Od":0.66,"pd":3,"pm":18},"p":[[-35,{"n":5.5,"e":5482}],[-33,{"n":5.5,"e":5501}],[-32,{"n":5.5,"e":5516,"s":1}],[-30,{"n":5,"e":5534,"s":1}],[27,{"n":5,"e":7288,"s":1}],[-26,{"n":6,"e":5574}],[24,{"n":5,"e":7637,"s":1}],[23,{"n":5,"e":7318,"s":1}],[22,{"n":3.5,"e":7326,"a":1}],[20,{"n":4,"e":7337}],[19,{"n":4,"e":7345}],[18,{"n":6,"e":7355}],[9,{"n":5,"e":7414,"s":1}],[8,{"n":4.5,"e":7423}],[7,{"n":5,"e":7433}],[6,{"n":6,"e":7436}],[5,{"n":4.5,"e":7509}],[4,{"n":5,"e":7454,"s":1}],[3,{"n":4.5,"e":7461,"s":1}],[2,{"n":5,"e":7469,"s":1}],[1,{"n":5,"e":7472}]],"fo":[[7509,[{"t":"Y"}]]]}],[4424,{"n":"Conti","f":"Andrea","fp":"DL","r":7,"c":114,"s":{"s":53.5,"n":12,"a":4.46,"d":0.66,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":0.58,"Os":95,"On":20,"Oa":4.75,"Od":0.9,"pd":19,"pm":1},"p":[[-35,{"n":5,"e":5485}],[-33,{"n":4,"e":5501}],[-32,{"n":4,"e":5515}],[-31,{"n":5,"e":5523}],[-30,{"n":6,"e":5532}],[29,{"n":4.5,"e":8253,"s":1}],[28,{"n":4.5,"e":7279}],[-28,{"n":6,"e":5552}],[-27,{"n":7,"e":5563}],[27,{"n":5.5,"e":7288}],[-26,{"n":4.5,"e":5572}],[24,{"n":4.5,"e":7637}],[23,{"n":4.5,"e":7318}],[22,{"n":4,"e":7326}],[21,{"n":3,"e":7332}],[20,{"n":4,"e":7337}],[19,{"n":4,"e":7345}],[18,{"n":5,"e":7350,"s":1}],[16,{"n":5,"e":7366,"s":1}],[15,{"n":5,"e":7577,"s":1}]],"fo":[[7318,[{"t":"Y"}]],[7332,[{"t":"Y"}]],[7337,[{"t":"Y"}]]]}],[4521,{"n":"Gagliolo","f":"Riccardo","fp":"DL","r":11,"c":114,"s":{"g":1,"s":107.5,"n":24,"a":4.48,"d":0.74,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":2,"Os":162,"On":35,"Oa":4.63,"Od":0.8,"pd":34,"pm":1,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":4.5,"e":5453}],[-37,{"n":4.5,"e":5462}],[-34,{"n":4.5,"e":5495}],[-33,{"n":4,"e":5501}],[-32,{"n":6,"e":5516}],[-30,{"n":4,"e":5534}],[-29,{"n":6,"e":5547,"g":1}],[29,{"n":4.5,"e":8253}],[28,{"n":5,"e":7279,"s":1}],[-28,{"n":4.5,"e":5554}],[-27,{"n":6.5,"e":5561}],[26,{"n":5,"e":7291,"s":1}],[-26,{"n":5,"e":5574}],[-25,{"n":5,"e":5586}],[25,{"n":4.5,"e":7308}],[24,{"n":5,"e":7637}],[23,{"n":4.5,"e":7318}],[22,{"n":4,"e":7326}],[21,{"n":3,"e":7332}],[20,{"n":4,"e":7337}],[19,{"n":4.5,"e":7345}],[16,{"n":5,"e":7363}],[15,{"n":3,"e":7375}],[14,{"n":5,"e":7568}],[13,{"n":3.5,"e":7388}],[12,{"n":5,"e":7399,"s":1}],[11,{"n":4,"e":7403}],[10,{"n":5,"e":7545,"s":1}],[9,{"n":5,"e":7414}],[8,{"n":3,"e":7423}],[7,{"n":5,"e":7433}],[6,{"n":4.5,"e":7436}],[5,{"n":5.5,"e":7509,"g":1}],[4,{"n":4.5,"e":7454}],[3,{"n":5.5,"e":7461,"s":1}]],"fo":[[7363,[{"t":"I"}]],[7414,[{"t":"I"}]],[7332,[{"t":"Y"}]],[7337,[{"t":"Y"}]],[7375,[{"t":"Y"}]],[7637,[{"t":"Y"}]]]}],[4524,{"n":"Bani","f":"Mattia","fp":"DC","r":10,"c":114,"s":{"s":85.5,"n":19,"a":4.5,"d":0.76,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.57,"Os":109,"On":24,"Oa":4.54,"Od":0.74,"pd":24},"p":[[-32,{"n":4,"e":5516}],[-31,{"n":4,"e":5519}],[-30,{"n":5,"e":5530,"s":1}],[-29,{"n":5,"e":5539}],[29,{"n":4.5,"e":8253}],[28,{"n":4,"e":7279}],[-28,{"n":5.5,"e":5555}],[27,{"n":5.5,"e":7288}],[26,{"n":4.5,"e":7291}],[25,{"n":5,"e":7308}],[23,{"n":4,"e":7318}],[22,{"n":4.5,"e":7326}],[21,{"n":4,"e":7332}],[17,{"n":6,"e":7357}],[13,{"n":4.5,"e":7565}],[12,{"n":4.5,"e":7398}],[11,{"n":4.5,"e":7401}],[10,{"n":5,"e":7406}],[9,{"n":3,"e":7414}],[8,{"n":5,"e":7425}],[7,{"n":3,"e":7430}],[5,{"n":4,"e":7444}],[4,{"n":5.5,"e":7455}],[3,{"n":4.5,"e":7457,"s":1}]],"fo":[[7279,[{"t":"I"},{"t":"Y"}]],[7291,[{"t":"I"},{"t":"Y"}]],[7455,[{"t":"I"}]],[7318,[{"t":"Y"}]],[7401,[{"t":"Y"}]],[7414,[{"t":"Y"}]],[7444,[{"t":"Y"}]],[7565,[{"t":"Y"}]],[8253,[{"t":"Y"}]]]}],[4531,{"n":"Sprocati","f":"Mattia","fp":"MO","r":1,"c":114,"s":{"s":5,"n":1,"a":5,"Os":24,"On":5,"Oa":4.8,"Od":0.27,"pm":4,"pa":1},"p":[[-36,{"n":4.5,"e":5469,"s":1}],[-32,{"n":4.5,"e":5516}],[-31,{"n":5,"e":5524,"s":1}],[-30,{"n":5,"e":5534,"s":1}],[2,{"n":5,"e":7469,"s":1}]]}],[4632,{"n":"Kurtic","f":"Jasmin","fp":"MO","r":17,"c":114,"s":{"g":4,"s":136.5,"n":26,"a":5.25,"d":0.93,"Sg":2,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":0.76,"Og":6,"Os":214,"On":40,"Oa":5.35,"Od":0.89,"pm":40,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5.5,"e":5453}],[-37,{"n":4.5,"e":5462}],[-36,{"n":6,"e":5469}],[-35,{"n":5.5,"e":5482}],[-34,{"n":4,"e":5495}],[-33,{"n":7,"e":5501,"g":1}],[-32,{"n":6,"e":5516,"g":1}],[-31,{"n":5,"e":5524,"s":1}],[-30,{"n":5.5,"e":5534}],[-29,{"n":5,"e":5547,"s":1}],[29,{"n":6,"e":8253,"g":1,"s":1}],[28,{"n":5,"e":7279}],[-28,{"n":5.5,"e":5554}],[-27,{"n":7,"e":5561}],[27,{"n":6,"e":7288}],[26,{"n":7,"e":7291,"g":1}],[-26,{"n":5.5,"e":5574}],[-25,{"n":5.5,"e":5586}],[25,{"n":5.5,"e":7308}],[24,{"n":5,"e":7637}],[22,{"n":5.5,"e":7326}],[21,{"n":3.5,"e":7332}],[20,{"n":5,"e":7337}],[19,{"n":5,"e":7345}],[18,{"n":5.5,"e":7355}],[17,{"n":5.5,"e":7360}],[16,{"n":4,"e":7363}],[15,{"n":4,"e":7375}],[14,{"n":4.5,"e":7568}],[13,{"n":4.5,"e":7388}],[12,{"n":6,"e":7399}],[11,{"n":6.5,"e":7403,"g":1}],[10,{"n":6,"e":7545}],[9,{"n":5.5,"e":7414}],[8,{"n":5,"e":7423,"s":1}],[7,{"n":4.5,"e":7433}],[6,{"n":5.5,"e":7436}],[5,{"n":5.5,"e":7509}],[4,{"n":3.5,"e":7454}],[3,{"n":7,"e":7461,"g":1}]],"fo":[[7545,[{"t":"Y"}]],[7568,[{"t":"Y"}]],[7637,[{"t":"Y"}]]],"a":{"m":17,"a":29,"M":31,"n":8}}],[4653,{"n":"Laurini","f":"Vincent","fp":"DL","r":6,"c":114,"s":{"s":35,"n":8,"a":4.38,"d":0.74,"Ss":4,"Sn":1,"Sa":4,"Os":75.5,"On":16,"Oa":4.72,"Od":0.95,"pd":16},"p":[[-38,{"n":4.5,"e":5453}],[-36,{"n":6,"e":5469}],[-34,{"n":3.5,"e":5495}],[-32,{"n":5,"e":5516}],[-29,{"n":4.5,"e":5547}],[29,{"n":4,"e":8253}],[-28,{"n":5,"e":5554}],[-27,{"n":7,"e":5561}],[27,{"n":5,"e":7288,"s":1}],[26,{"n":4,"e":7291}],[-25,{"n":5,"e":5586,"s":1}],[23,{"n":5,"e":7318,"s":1}],[9,{"n":5,"e":7414,"s":1}],[4,{"n":4,"e":7454}],[3,{"n":5,"e":7461}],[2,{"n":3,"e":7469}]]}],[4661,{"n":"Inglese","f":"Roberto","fp":"A","r":7,"c":114,"s":{"s":60,"n":14,"a":4.29,"d":0.85,"Og":2,"Os":90.5,"On":20,"Oa":4.53,"Od":0.88,"pa":20,"Omsn":6},"p":[[-38,{"n":6,"e":5453,"g":1,"s":1}],[-36,{"n":4.5,"e":5469,"s":1}],[-35,{"n":4.5,"e":5482,"s":1}],[-34,{"n":4.5,"e":5495,"s":1}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":6,"e":5516,"g":1,"s":1}],[26,{"n":6,"e":7291,"s":1}],[25,{"n":4.5,"e":7308,"s":1}],[17,{"n":4,"e":7360,"s":1}],[16,{"n":3,"e":7363}],[15,{"n":5,"e":7375,"s":1}],[14,{"n":4,"e":7568}],[13,{"n":5,"e":7388,"s":1}],[12,{"n":4,"e":7399}],[11,{"n":4,"e":7403,"s":1}],[10,{"n":4.5,"e":7545,"s":1}],[8,{"n":3.5,"e":7423}],[7,{"n":3.5,"e":7433}],[6,{"n":5.5,"e":7436,"s":1}],[1,{"n":3.5,"e":7472}]],"fo":[[7403,[{"t":"Y"}]],[7568,[{"t":"Y"}]]]}],[4685,{"n":"Kucka","f":"Juraj","fp":"MD","r":24,"c":114,"s":{"g":6,"s":132.5,"n":24,"a":5.52,"d":1.13,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.06,"Og":9,"Os":178.5,"On":32,"Oa":5.58,"Od":1.12,"pm":27,"pa":5,"Smsn":5,"Omsn":5},"p":[[-37,{"n":6,"e":5462}],[-36,{"n":4.5,"e":5469}],[-32,{"n":4,"e":5516}],[-31,{"n":6,"e":5524,"g":1}],[-30,{"n":7,"e":5534,"g":1}],[29,{"n":5,"e":8253}],[-28,{"n":6.5,"e":5554}],[28,{"n":6.5,"e":7279}],[-27,{"n":5,"e":5561,"s":1}],[26,{"n":6.5,"e":7291,"g":1}],[-25,{"n":7,"e":5586,"g":1}],[25,{"n":4.5,"e":7308}],[24,{"n":5,"e":7637}],[23,{"n":7.5,"e":7318,"g":1}],[22,{"n":7,"e":7326,"g":1}],[21,{"n":5,"e":7332}],[20,{"n":6,"e":7337}],[19,{"n":5,"e":7345}],[18,{"n":7,"e":7355,"g":1}],[15,{"n":4.5,"e":7375}],[14,{"n":5,"e":7568,"g":1}],[13,{"n":4.5,"e":7388}],[12,{"n":5.5,"e":7399}],[9,{"n":7.5,"e":7414}],[8,{"n":4,"e":7423}],[7,{"n":5,"e":7433}],[6,{"n":5.5,"e":7436}],[5,{"n":7,"e":7509,"g":1}],[4,{"n":5,"e":7454}],[3,{"n":6,"e":7461}],[2,{"n":3.5,"e":7469}],[1,{"n":4.5,"e":7472}]],"fo":[[7279,[{"t":"Y"}]],[7291,[{"t":"Y"}]],[7345,[{"t":"Y"}]],[7568,[{"t":"Y"}]]],"a":{"m":21,"a":25,"M":27,"n":10}}],[4713,{"n":"Sepe","f":"Luigi","fp":"G","r":11,"c":114,"s":{"s":138.5,"n":29,"a":4.78,"d":1.11,"Ss":138.5,"Sn":29,"Sa":4.78,"Sd":1.11,"Os":207,"On":42,"Oa":4.93,"Od":1.18,"pg":42},"p":[[-38,{"n":4.5,"e":5453}],[-37,{"n":4,"e":5462}],[-36,{"n":5,"e":5469}],[-35,{"n":6,"e":5482}],[-34,{"n":3.5,"e":5495}],[-33,{"n":4.5,"e":5501}],[-32,{"n":5,"e":5516}],[-31,{"n":6,"e":5524}],[-30,{"n":6,"e":5534}],[-29,{"n":4,"e":5547}],[29,{"n":4.5,"e":8253}],[-28,{"n":5,"e":5554}],[28,{"n":4,"e":7279}],[-27,{"n":7,"e":5561}],[27,{"n":7,"e":7288}],[26,{"n":2.5,"e":7291}],[-25,{"n":8,"e":5586}],[25,{"n":5,"e":7308}],[24,{"n":5,"e":7637}],[23,{"n":4,"e":7318}],[22,{"n":5,"e":7326}],[21,{"n":3.5,"e":7332}],[20,{"n":4.5,"e":7337}],[19,{"n":4,"e":7345}],[18,{"n":5.5,"e":7355}],[17,{"n":4.5,"e":7360}],[16,{"n":4,"e":7363}],[15,{"n":4,"e":7375}],[14,{"n":5,"e":7568}],[13,{"n":3.5,"e":7388}],[12,{"n":6.5,"e":7399}],[11,{"n":5.5,"e":7403}],[10,{"n":6,"e":7545}],[9,{"n":6,"e":7414}],[8,{"n":4,"e":7423}],[7,{"n":6.5,"e":7433}],[6,{"n":6,"e":7436}],[5,{"n":5.5,"e":7509}],[4,{"n":4,"e":7454}],[3,{"n":6,"e":7461}],[2,{"n":3.5,"e":7469}],[1,{"n":3.5,"e":7472}]]}],[4749,{"n":"Colombi","f":"Simone","fp":"G","r":7,"c":114,"s":{"Os":5.5,"On":1,"Oa":5.5,"pg":1},"p":[[-26,{"n":5.5,"e":5574}]]}],[4766,{"n":"Gervinho","f":"","fp":"A","r":11,"c":114,"s":{"g":4,"s":97,"n":20,"a":4.85,"d":1.22,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":157,"On":33,"Oa":4.76,"Od":1.06,"pm":1,"pa":32,"Smsn":7.5,"Omsn":6},"p":[[-38,{"n":4.5,"e":5453,"s":1}],[-37,{"n":4,"e":5462}],[-36,{"n":4,"e":5469}],[-35,{"n":4.5,"e":5482,"s":1}],[-34,{"n":6,"e":5495,"g":1}],[-33,{"n":3.5,"e":5501}],[-31,{"n":4.5,"e":5524}],[-30,{"n":4,"e":5534}],[-29,{"n":4,"e":5547,"s":1}],[29,{"n":4.5,"e":8253}],[-28,{"n":6,"e":5554,"g":1}],[-27,{"n":5.5,"e":5561}],[26,{"n":5,"e":7291}],[-26,{"n":4.5,"e":5574}],[-25,{"n":5,"e":5586}],[22,{"n":4.5,"e":7326}],[21,{"n":4,"e":7332}],[20,{"n":4.5,"e":7337}],[19,{"n":4.5,"e":7345}],[18,{"n":5.5,"e":7355}],[17,{"n":5,"e":7360}],[13,{"n":3.5,"e":7388}],[12,{"n":5,"e":7399}],[11,{"n":6,"e":7403}],[10,{"n":5,"e":7545}],[9,{"n":8,"e":7414,"g":2}],[8,{"n":3.5,"e":7423}],[7,{"n":4,"e":7433}],[6,{"n":7.5,"e":7436,"g":2}],[5,{"n":4.5,"e":7509}],[4,{"n":4.5,"e":7454}],[3,{"n":5,"e":7461}],[2,{"n":3,"e":7469}]]}],[4791,{"n":"Iacoponi","f":"Simone","fp":"DC","r":7,"c":114,"s":{"ao":2,"s":70,"n":16,"a":4.38,"d":0.96,"Oao":2,"Os":125,"On":28,"Oa":4.46,"Od":0.82,"pd":28},"p":[[-37,{"n":4.5,"e":5462,"s":1}],[-36,{"n":5,"e":5469}],[-35,{"n":5,"e":5482,"s":1}],[-34,{"n":3.5,"e":5495}],[-33,{"n":4,"e":5501}],[-32,{"n":4.5,"e":5516}],[-31,{"n":5,"e":5524}],[-30,{"n":5.5,"e":5534}],[-29,{"n":4,"e":5547}],[-27,{"n":5,"e":5561}],[-26,{"n":5,"e":5574}],[26,{"n":3,"e":7291,"a":1}],[-25,{"n":4,"e":5586}],[19,{"n":4,"e":7345}],[18,{"n":6,"e":7355}],[15,{"n":3,"e":7375}],[14,{"n":5,"e":7568,"s":1}],[13,{"n":4.5,"e":7388}],[12,{"n":5,"e":7399}],[11,{"n":4.5,"e":7403}],[10,{"n":5,"e":7545}],[9,{"n":5,"e":7414,"s":1}],[8,{"n":5,"e":7423,"s":1}],[6,{"n":5.5,"e":7436}],[5,{"n":4,"e":7509}],[4,{"n":3,"e":7454,"a":1}],[2,{"n":3,"e":7469}],[1,{"n":4.5,"e":7472}]],"fo":[[7403,[{"t":"Y"}]],[7454,[{"t":"Y"}]],[7568,[{"t":"Y"}]]]}],[4800,{"n":"Bruno Alves","f":"","fp":"DC","r":5,"c":114,"s":{"s":72,"n":16,"a":4.5,"d":1,"Os":130,"On":29,"Oa":4.48,"Od":0.95,"pd":29},"p":[[-38,{"n":3,"e":5453}],[-37,{"n":4.5,"e":5462}],[-36,{"n":5,"e":5469,"s":1}],[-35,{"n":6,"e":5482}],[-33,{"n":4.5,"e":5501}],[-32,{"n":3,"e":5516}],[-31,{"n":4.5,"e":5524}],[-30,{"n":5.5,"e":5534}],[-29,{"n":3.5,"e":5547}],[-28,{"n":4,"e":5554}],[-27,{"n":5.5,"e":5561}],[-26,{"n":4.5,"e":5574}],[-25,{"n":4.5,"e":5586}],[23,{"n":4.5,"e":7318,"s":1}],[21,{"n":3.5,"e":7332}],[17,{"n":4,"e":7360}],[16,{"n":4.5,"e":7363}],[15,{"n":3,"e":7375}],[14,{"n":4.5,"e":7568}],[13,{"n":4,"e":7388}],[12,{"n":5.5,"e":7399}],[11,{"n":5,"e":7403}],[10,{"n":6,"e":7545}],[9,{"n":5.5,"e":7414}],[8,{"n":3.5,"e":7423}],[7,{"n":6,"e":7433}],[3,{"n":5.5,"e":7461}],[2,{"n":3,"e":7469}],[1,{"n":4,"e":7472}]],"fo":[[7375,[{"t":"Y"}]]]}],[5965,{"n":"Brugman","f":"Gastón","fp":"MD","r":10,"c":114,"s":{"s":104,"n":20,"a":5.2,"d":0.88,"Ss":28,"Sn":5,"Sa":5.6,"Sd":1.52,"Os":152.5,"On":29,"Oa":5.26,"Od":0.85,"pm":29},"p":[[-35,{"n":6.5,"e":5482}],[-34,{"n":6,"e":5495}],[-33,{"n":4.5,"e":5501}],[-30,{"n":4.5,"e":5534}],[-29,{"n":5.5,"e":5547}],[29,{"n":4,"e":8253}],[28,{"n":5,"e":7279}],[-28,{"n":5,"e":5554,"s":1}],[-27,{"n":6.5,"e":5561}],[27,{"n":8,"e":7288}],[26,{"n":5,"e":7291}],[-26,{"n":5.5,"e":5574}],[-25,{"n":4.5,"e":5586,"s":1}],[25,{"n":6,"e":7308}],[23,{"n":5.5,"e":7318}],[21,{"n":4.5,"e":7332}],[20,{"n":4.5,"e":7337}],[19,{"n":4.5,"e":7345,"s":1}],[18,{"n":6,"e":7355}],[17,{"n":5,"e":7360}],[13,{"n":5,"e":7388,"s":1}],[11,{"n":5,"e":7403}],[10,{"n":4.5,"e":7545,"s":1}],[6,{"n":4.5,"e":7436,"s":1}],[5,{"n":5,"e":7509}],[4,{"n":5,"e":7454}],[3,{"n":6,"e":7461}],[2,{"n":6,"e":7469}],[1,{"n":5,"e":7472}]],"fo":[[7279,[{"t":"Y"}]],[7318,[{"t":"Y"}]],[7337,[{"t":"Y"}]],[7355,[{"t":"Y"}]],[7360,[{"t":"Y"}]],[7454,[{"t":"Y"}]]]}],[6113,{"n":"Hernani","f":"","fp":"MD","r":16,"c":114,"s":{"g":6,"s":137,"n":26,"a":5.27,"d":1.02,"Sg":3,"Ss":39,"Sn":7,"Sa":5.57,"Sd":1.3,"Og":6,"Os":182,"On":35,"Oa":5.2,"Od":0.94,"pm":35,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":6,"e":5453}],[-34,{"n":4.5,"e":5495}],[-33,{"n":5,"e":5501,"s":1}],[-32,{"n":4.5,"e":5516}],[-31,{"n":5.5,"e":5524}],[-29,{"n":4.5,"e":5547}],[29,{"n":5,"e":8253}],[-28,{"n":4.5,"e":5554,"s":1}],[28,{"n":5,"e":7279,"s":1}],[-27,{"n":6,"e":5561}],[27,{"n":7,"e":7288,"g":1}],[26,{"n":3.5,"e":7291}],[-25,{"n":4.5,"e":5586,"s":1}],[25,{"n":7,"e":7308,"g":1}],[24,{"n":6.5,"e":7637,"g":1}],[23,{"n":5,"e":7318}],[21,{"n":5,"e":7332,"s":1}],[20,{"n":5,"e":7337,"s":1}],[19,{"n":4,"e":7345}],[17,{"n":5.5,"e":7360}],[16,{"n":4,"e":7363}],[15,{"n":4.5,"e":7375}],[14,{"n":5,"e":7568}],[13,{"n":4.5,"e":7388}],[12,{"n":5.5,"e":7399,"s":1}],[11,{"n":7,"e":7403,"g":1}],[10,{"n":5.5,"e":7545}],[9,{"n":5.5,"e":7414,"s":1}],[7,{"n":4.5,"e":7433}],[6,{"n":6.5,"e":7436}],[5,{"n":4.5,"e":7509}],[4,{"n":7,"e":7454,"g":1}],[3,{"n":5,"e":7461}],[2,{"n":5.5,"e":7469,"g":1}],[1,{"n":4,"e":7472}]],"fo":[[7568,[{"t":"I"},{"t":"Y"}]],[7288,[{"t":"Y"}]],[7318,[{"t":"Y"}]],[7360,[{"t":"Y"}]],[7436,[{"t":"Y"}]],[7509,[{"t":"Y"}]],[7545,[{"t":"Y"}]],[7637,[{"t":"Y"}]]],"a":{"m":12,"a":22,"M":29,"n":8}}],[6310,{"n":"Artistico","f":"Gabriele","fp":"A","r":1,"c":114}],[6322,{"n":"Balogh","f":"Botond","fp":"DC","r":1,"c":114,"s":{"s":8,"n":2,"a":4,"Os":8,"On":2,"Oa":4,"pd":2},"p":[[17,{"n":4,"e":7360,"s":1}],[6,{"n":4,"e":7436}]],"fo":[[7360,[{"t":"Y"}]]]}],[6613,{"n":"Kosznovszky","f":"Márk","fp":"MD","r":1,"c":114}],[6649,{"n":"Reinaldo Radu","f":"","fp":"DL","r":1,"c":114}],[7282,{"n":"Rinaldi","f":"Filippo","fp":"G","r":1,"c":114}],[7348,{"n":"Valenti","f":"Lautaro","fp":"DC","r":5,"c":114,"s":{"s":23.5,"n":5,"a":4.7,"d":0.67,"Os":23.5,"On":5,"Oa":4.7,"Od":0.67,"pd":5},"p":[[25,{"n":4,"e":7308}],[24,{"n":5,"e":7637,"s":1}],[17,{"n":5.5,"e":7360}],[16,{"n":4,"e":7363}],[14,{"n":5,"e":7568,"s":1}]],"fo":[[7360,[{"t":"I"}]]]}],[7369,{"n":"Busi","f":"Maxime","fp":"DL","r":7,"c":114,"s":{"s":69.5,"n":15,"a":4.63,"d":0.58,"Ss":10,"Sn":2,"Sa":5,"Sd":0.71,"Os":69.5,"On":15,"Oa":4.63,"Od":0.58,"pd":15},"p":[[29,{"n":4.5,"e":8253,"s":1}],[28,{"n":5.5,"e":7279,"s":1}],[25,{"n":5.5,"e":7308,"s":1}],[24,{"n":5,"e":7637,"s":1}],[20,{"n":5,"e":7337,"s":1}],[18,{"n":4,"e":7355}],[17,{"n":4,"e":7360}],[16,{"n":4,"e":7363}],[15,{"n":4,"e":7375,"s":1}],[14,{"n":4,"e":7568}],[13,{"n":5,"e":7388,"s":1}],[11,{"n":5,"e":7403,"s":1}],[10,{"n":5,"e":7545}],[9,{"n":4,"e":7414}],[8,{"n":5,"e":7423,"s":1}]],"fo":[[7355,[{"t":"Y"}]],[7360,[{"t":"Y"}]],[7414,[{"t":"Y"}]]]}],[7370,{"n":"Sohm","f":"Simon","fp":"MO","r":6,"c":114,"s":{"s":63,"n":14,"a":4.5,"d":0.68,"Os":63,"On":14,"Oa":4.5,"Od":0.68,"pm":13,"pa":1},"p":[[22,{"n":4.5,"e":7326,"s":1}],[18,{"n":5,"e":7355,"s":1}],[17,{"n":3.5,"e":7360}],[16,{"n":4.5,"e":7363}],[15,{"n":4.5,"e":7375,"s":1}],[14,{"n":4,"e":7568}],[13,{"n":3,"e":7388}],[12,{"n":5,"e":7399,"s":1}],[11,{"n":5,"e":7403,"s":1}],[8,{"n":4,"e":7423}],[7,{"n":5.5,"e":7433,"s":1}],[6,{"n":5,"e":7436,"s":1}],[5,{"n":4.5,"e":7509,"s":1}],[4,{"n":5,"e":7454,"s":1}]],"fo":[[7509,[{"t":"Y"}]]]}],[7372,{"n":"Mihaila","f":"Mihai Valentin","fp":"A","r":10,"c":114,"s":{"g":2,"s":63.5,"n":13,"a":4.88,"d":1.04,"Sg":2,"Ss":46.5,"Sn":9,"Sa":5.17,"Sd":1.03,"Og":2,"Os":63.5,"On":13,"Oa":4.88,"Od":1.04,"pa":13,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":4.5,"e":8253,"s":1}],[28,{"n":4.5,"e":7279,"s":1}],[27,{"n":7,"e":7288,"g":1}],[26,{"n":6.5,"e":7291,"g":1,"s":1}],[25,{"n":4,"e":7308,"s":1}],[24,{"n":5.5,"e":7637}],[23,{"n":5.5,"e":7318}],[22,{"n":4.5,"e":7326,"s":1}],[21,{"n":4.5,"e":7332,"s":1}],[19,{"n":4.5,"e":7345,"s":1}],[17,{"n":5,"e":7360,"s":1}],[16,{"n":3,"e":7363,"s":1}],[15,{"n":4.5,"e":7375,"s":1}]],"fo":[[7318,[{"t":"Y"}]],[7326,[{"t":"Y"}]]]}],[7374,{"n":"Brunetta","f":"Juan","fp":"MO","r":7,"c":114,"s":{"s":40,"n":8,"a":5,"d":0.46,"Os":40,"On":8,"Oa":5,"Od":0.46,"pm":7,"pa":1},"p":[[26,{"n":5,"e":7291,"s":1}],[24,{"n":5,"e":7637}],[15,{"n":4.5,"e":7375}],[14,{"n":6,"e":7568,"s":1}],[12,{"n":5,"e":7399,"s":1}],[10,{"n":5,"e":7545,"s":1}],[8,{"n":4.5,"e":7423,"s":1}],[7,{"n":5,"e":7433,"s":1}]],"fo":[[7545,[{"t":"Y"}]],[7637,[{"t":"Y"}]]]}],[7380,{"n":"Osorio","f":"Yordan","fp":"DC","r":10,"c":114,"s":{"s":82,"n":18,"a":4.56,"d":1.01,"Ss":15,"Sn":3,"Sa":5,"Sd":1,"Os":82,"On":18,"Oa":4.56,"Od":1.01,"pd":18},"p":[[29,{"n":5,"e":8253}],[28,{"n":4,"e":7279}],[27,{"n":6,"e":7288}],[25,{"n":5.5,"e":7308}],[24,{"n":3.5,"e":7637}],[22,{"n":4,"e":7326}],[21,{"n":3.5,"e":7332}],[20,{"n":5,"e":7337}],[17,{"n":4.5,"e":7360}],[15,{"n":4,"e":7375}],[14,{"n":4,"e":7568}],[13,{"n":2.5,"e":7388}],[12,{"n":6,"e":7399}],[11,{"n":5,"e":7403}],[10,{"n":6,"e":7545}],[9,{"n":5.5,"e":7414}],[8,{"n":3.5,"e":7423}],[7,{"n":4.5,"e":7433}]],"fo":[[7326,[{"t":"I"}]],[7288,[{"t":"Y"}]],[7403,[{"t":"Y"}]]]}],[7459,{"n":"Bane","f":"Abdoul Hate","fp":"DC","r":1,"c":114}],[7508,{"n":"Turk","f":"Martin","fp":"G","r":1,"c":114}],[7604,{"n":"Traorè","f":"Chaka","fp":"A","r":1,"c":114}],[7609,{"n":"Dierckx","f":"Daan","fp":"DC","r":1,"c":114}],[7670,{"n":"André Silva","f":"","fp":"A","r":1,"c":114}],[7671,{"n":"Zagaritis","f":"Vasilios","fp":"DC","r":1,"c":114}],[7673,{"n":"Zirkzee","f":"Joshua","fp":"A","r":3,"c":114,"s":{"s":18.5,"n":4,"a":4.63,"d":0.25,"Os":18.5,"On":4,"Oa":4.63,"Od":0.25,"pa":4},"p":[[28,{"n":4.5,"e":7279,"s":1}],[27,{"n":4.5,"e":7288,"s":1}],[22,{"n":4.5,"e":7326,"s":1}],[21,{"n":5,"e":7332,"s":1}]]}],[7675,{"n":"Man","f":"Dennis","fp":"A","r":9,"c":114,"s":{"g":1,"s":42.5,"n":9,"a":4.72,"d":1.06,"Sg":1,"Ss":42.5,"Sn":9,"Sa":4.72,"Sd":1.06,"Og":1,"Os":42.5,"On":9,"Oa":4.72,"Od":1.06,"pa":9,"Smsn":7,"Omsn":7},"p":[[29,{"n":7,"e":8253,"g":1}],[28,{"n":4,"e":7279}],[27,{"n":6,"e":7288}],[26,{"n":4,"e":7291,"s":1}],[25,{"n":4.5,"e":7308}],[24,{"n":4,"e":7637,"s":1}],[23,{"n":4.5,"e":7318,"s":1}],[22,{"n":4.5,"e":7326,"s":1}],[21,{"n":4,"e":7332,"s":1}]],"fo":[[7308,[{"t":"I"}]],[7318,[{"t":"Y"}]]]}],[7730,{"n":"Pellè","f":"Graziano","fp":"A","r":3,"c":114,"s":{"g":1,"s":22,"n":4,"a":5.5,"d":0.91,"Sg":1,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":0.76,"Og":1,"Os":22,"On":4,"Oa":5.5,"Od":0.91,"pa":4,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":5,"e":8253}],[28,{"n":6.5,"e":7279,"g":1}],[27,{"n":6,"e":7288}],[25,{"n":4.5,"e":7308,"s":1}]],"fo":[[7288,[{"t":"I"}]],[7279,[{"t":"Y"}]]]}],[68,{"n":"Veretout","f":"Jordan","fp":"MD","r":25,"c":116,"s":{"g":10,"s":135.5,"n":25,"a":5.42,"d":1.14,"Ss":5,"Sn":1,"Sa":5,"Og":14,"Os":187.5,"On":34,"Oa":5.51,"Od":1.12,"pm":34,"Smsn":5,"Omsn":5},"p":[[29,{"n":5,"e":7275,"s":1}],[22,{"n":7,"e":7322,"g":2}],[20,{"n":5,"e":7338}],[19,{"n":4.5,"e":7605}],[15,{"n":4.5,"e":7376}],[3,{"n":5.5,"e":7458}],[-37,{"n":5,"e":5465,"s":1}],[-36,{"n":7.5,"e":5475,"g":2}],[-34,{"n":5.5,"e":5496}],[-33,{"n":6.5,"e":5502,"g":1}],[-32,{"n":6,"e":5508}],[-31,{"n":7,"e":5524,"g":1}],[-30,{"n":4.5,"e":5533}],[-28,{"n":4.5,"e":5552}],[-27,{"n":5.5,"e":5564}],[25,{"n":5,"e":7300}],[24,{"n":6,"e":7302,"g":1}],[23,{"n":4,"e":7631}],[21,{"n":4,"e":7330}],[18,{"n":4,"e":7352}],[17,{"n":5.5,"e":7361}],[16,{"n":4.5,"e":7582,"s":1}],[14,{"n":6,"e":7381,"g":1}],[13,{"n":3.5,"e":7384}],[12,{"n":6.5,"e":7395,"g":1}],[11,{"n":8,"e":7393,"g":1}],[9,{"n":4.5,"e":7417}],[8,{"n":5.5,"e":7423}],[7,{"n":6,"e":7430}],[6,{"n":6.5,"e":7438}],[5,{"n":6,"e":7447,"g":1}],[4,{"n":5,"e":7503,"g":1}],[2,{"n":7.5,"e":7468,"g":2}],[1,{"n":6,"e":7471}]],"fo":[[7300,[{"t":"I"}]],[7417,[{"t":"I"}]],[7322,[{"t":"Y"}]],[7393,[{"t":"Y"}]],[7438,[{"t":"Y"}]],[7503,[{"t":"Y"}]]],"a":{"m":25,"a":40,"M":53,"n":8}}],[254,{"n":"Pastore","f":"Javier","fp":"MO","r":2,"c":116,"s":{"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[-28,{"n":4.5,"e":5552,"s":1}],[-27,{"n":5.5,"e":5564}]]}],[607,{"n":"Pedro","f":"","fp":"A","r":14,"c":116,"s":{"g":4,"s":108.5,"n":21,"a":5.17,"d":1.25,"Og":5,"Os":125.5,"On":24,"Oa":5.23,"Od":1.27,"pm":1,"pa":23,"Smsn":6,"Omsn":6},"p":[[10,{"n":3.5,"e":7409}],[-38,{"n":4.5,"e":3930,"s":1}],[-31,{"n":5,"e":3999,"s":1}],[-29,{"n":7.5,"e":4020,"g":1}],[28,{"n":4,"e":7280}],[27,{"n":4.5,"e":7288}],[26,{"n":5.5,"e":7295}],[25,{"n":5.5,"e":7300,"s":1}],[24,{"n":4,"e":7302,"s":1}],[23,{"n":4.5,"e":7631,"s":1}],[22,{"n":6,"e":7322,"g":1,"s":1}],[18,{"n":4,"e":7352,"s":1}],[14,{"n":5.5,"e":7381}],[13,{"n":3.5,"e":7384}],[12,{"n":4.5,"e":7395,"s":1}],[9,{"n":3,"e":7417}],[8,{"n":5.5,"e":7423}],[7,{"n":7,"e":7430}],[6,{"n":7,"e":7438,"g":1}],[5,{"n":6,"e":7447}],[4,{"n":7,"e":7503,"g":1}],[3,{"n":7,"e":7458,"g":1}],[2,{"n":5.5,"e":7468}],[1,{"n":5.5,"e":7471}]],"fo":[[7352,[{"t":"Y"}]],[7409,[{"t":"Y"},{"t":"O"}]],[7447,[{"t":"Y"}]]]}],[676,{"n":"Mkhitaryan","f":"Henrikh","fp":"MO","r":41,"c":116,"s":{"g":9,"s":151,"n":25,"a":6.04,"d":1.46,"Og":12,"Os":203.5,"On":34,"Oa":5.99,"Od":1.36,"pm":6,"pa":28,"Smsn":6.5,"Omsn":6.5},"p":[[-37,{"n":6,"e":5465}],[-36,{"n":4.5,"e":5475}],[-34,{"n":7,"e":5496,"g":1}],[-33,{"n":5.5,"e":5502}],[-31,{"n":7.5,"e":5524,"g":1}],[-30,{"n":7,"e":5533,"g":1}],[-29,{"n":5,"e":5544,"s":1}],[-28,{"n":4.5,"e":5552}],[-27,{"n":5.5,"e":5564}],[26,{"n":5.5,"e":7295,"s":1}],[25,{"n":5,"e":7300}],[24,{"n":5,"e":7302}],[23,{"n":6,"e":7631}],[22,{"n":6.5,"e":7322}],[21,{"n":5,"e":7330}],[20,{"n":7.5,"e":7338,"g":1}],[18,{"n":3,"e":7352}],[17,{"n":5.5,"e":7361}],[16,{"n":7.5,"e":7582,"g":1}],[15,{"n":6.5,"e":7376}],[14,{"n":5,"e":7381}],[13,{"n":5,"e":7384}],[12,{"n":6.5,"e":7395,"g":1}],[11,{"n":8.5,"e":7393,"g":1}],[10,{"n":5.5,"e":7409}],[9,{"n":3.5,"e":7417}],[8,{"n":8,"e":7423,"g":2}],[7,{"n":9,"e":7430,"g":3}],[6,{"n":7,"e":7438}],[5,{"n":6,"e":7447}],[4,{"n":7.5,"e":7503}],[3,{"n":6,"e":7458}],[2,{"n":6,"e":7468}],[1,{"n":4.5,"e":7471}]],"fo":[[7302,[{"t":"Y"}]],[7352,[{"t":"Y"}]]],"a":{"m":49,"a":68,"M":82,"n":10}}],[749,{"n":"Smalling","f":"Chris","fp":"DC","r":11,"c":116,"s":{"s":71.5,"n":14,"a":5.11,"d":1.02,"Og":1,"Os":121,"On":23,"Oa":5.26,"Od":1.01,"pd":23,"Omsn":7},"p":[[-38,{"n":6,"e":5452}],[-37,{"n":7,"e":5465,"g":1}],[-36,{"n":5.5,"e":5475}],[-35,{"n":7,"e":5483}],[-34,{"n":5,"e":5496,"s":1}],[-30,{"n":4.5,"e":5533}],[-29,{"n":4.5,"e":5544}],[-28,{"n":4.5,"e":5552}],[-27,{"n":5.5,"e":5564}],[26,{"n":6.5,"e":7295}],[25,{"n":5,"e":7300,"s":1}],[20,{"n":5,"e":7338}],[19,{"n":4,"e":7605}],[18,{"n":3,"e":7352}],[17,{"n":5,"e":7361}],[16,{"n":5.5,"e":7582}],[15,{"n":6,"e":7376}],[14,{"n":6,"e":7381,"s":1}],[13,{"n":3.5,"e":7384}],[12,{"n":5,"e":7395}],[11,{"n":5,"e":7393,"s":1}],[7,{"n":6,"e":7430}],[6,{"n":6,"e":7438}]],"fo":[[7338,[{"t":"I"}]],[7352,[{"t":"Y"}]],[7361,[{"t":"Y"}]],[7376,[{"t":"Y"}]]]}],[1889,{"n":"Mayoral","f":"Borja","fp":"A","r":18,"c":116,"s":{"g":6,"s":112.5,"n":23,"a":4.89,"d":1.13,"Sg":5,"Ss":79.5,"Sn":16,"Sa":4.97,"Sd":1.24,"Og":9,"Os":179.5,"On":36,"Oa":4.99,"Od":1.07,"pa":36,"Smsn":6.5,"Omsn":6},"p":[[4,{"n":4,"e":7179,"s":1}],[3,{"n":4,"e":7188,"s":1}],[-38,{"n":5,"e":4313,"s":1}],[-37,{"n":6.5,"e":4320,"g":1}],[-36,{"n":6,"e":4333}],[-35,{"n":5,"e":4343,"s":1}],[-34,{"n":4.5,"e":4353}],[-33,{"n":5,"e":4366}],[-32,{"n":7,"e":4374,"g":1}],[-30,{"n":6,"e":4391,"g":1}],[-29,{"n":5,"e":4402}],[-28,{"n":5,"e":4417,"s":1}],[-31,{"n":4,"e":4382,"s":1}],[29,{"n":4,"e":7275}],[28,{"n":4.5,"e":7280,"s":1}],[27,{"n":4.5,"e":7288,"s":1}],[26,{"n":5,"e":7295}],[25,{"n":5,"e":7300}],[24,{"n":4,"e":7302}],[23,{"n":4.5,"e":7631}],[22,{"n":5,"e":7322}],[21,{"n":4,"e":7330}],[20,{"n":7,"e":7338,"g":1}],[19,{"n":7,"e":7605,"g":2}],[18,{"n":4.5,"e":7352,"s":1}],[17,{"n":4.5,"e":7361,"s":1}],[16,{"n":8,"e":7582,"g":2}],[15,{"n":4,"e":7376,"s":1}],[14,{"n":4,"e":7381,"s":1}],[12,{"n":5,"e":7395,"s":1}],[11,{"n":4.5,"e":7393,"s":1}],[10,{"n":4,"e":7409,"s":1}],[9,{"n":4.5,"e":7417,"s":1}],[8,{"n":6.5,"e":7423,"g":1}],[7,{"n":4.5,"e":7430}],[4,{"n":4,"e":7503,"s":1}]],"fo":[[7605,[{"t":"Y"}]]],"a":{"m":15,"a":22,"M":36,"n":7}}],[2451,{"n":"López","f":"Pau","fp":"G","r":15,"c":116,"s":{"s":97.5,"n":19,"a":5.13,"d":1.01,"Ss":80.5,"Sn":16,"Sa":5.03,"Sd":1.01,"Os":131,"On":26,"Oa":5.04,"Od":1.03,"pg":26},"p":[[-37,{"n":3.5,"e":5465}],[-36,{"n":4,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":4.5,"e":5496}],[-33,{"n":4.5,"e":5502}],[-31,{"n":5,"e":5524}],[-30,{"n":7,"e":5533}],[29,{"n":6,"e":7275}],[28,{"n":4,"e":7280}],[27,{"n":4,"e":7288}],[26,{"n":6,"e":7295}],[25,{"n":6,"e":7300}],[24,{"n":5.5,"e":7302}],[23,{"n":6,"e":7631}],[22,{"n":5.5,"e":7322}],[21,{"n":4,"e":7330}],[20,{"n":4.5,"e":7338}],[19,{"n":3,"e":7605}],[18,{"n":4,"e":7352}],[17,{"n":5.5,"e":7361}],[16,{"n":6,"e":7582}],[15,{"n":6,"e":7376}],[14,{"n":4.5,"e":7381,"s":1}],[12,{"n":6.5,"e":7395}],[11,{"n":4.5,"e":7393}],[7,{"n":6,"e":7430}]]}],[2452,{"n":"Pérez","f":"Carles","fp":"MO","r":6,"c":116,"s":{"g":1,"s":75.5,"n":16,"a":4.72,"d":0.68,"Ss":20,"Sn":4,"Sa":5,"Sd":0.82,"Og":2,"Os":123.5,"On":25,"Oa":4.94,"Od":0.89,"pm":2,"pa":23,"Smsn":6.5,"Omsn":6.5},"p":[[-37,{"n":5.5,"e":5465}],[-36,{"n":5,"e":5475,"s":1}],[-35,{"n":7,"e":5483,"g":1}],[-34,{"n":4,"e":5496,"s":1}],[-32,{"n":7,"e":5508}],[-31,{"n":4.5,"e":5524,"s":1}],[-29,{"n":5.5,"e":5544}],[29,{"n":6,"e":7275}],[28,{"n":4,"e":7280,"s":1}],[-28,{"n":4,"e":5552,"s":1}],[-27,{"n":5.5,"e":5564}],[27,{"n":5,"e":7288,"s":1}],[26,{"n":5,"e":7295,"s":1}],[21,{"n":5,"e":7330,"s":1}],[20,{"n":4.5,"e":7338,"s":1}],[19,{"n":4,"e":7605}],[16,{"n":4.5,"e":7582}],[15,{"n":4,"e":7376,"s":1}],[13,{"n":4.5,"e":7384,"s":1}],[11,{"n":4.5,"e":7393,"s":1}],[9,{"n":4.5,"e":7417,"s":1}],[8,{"n":4.5,"e":7423,"s":1}],[6,{"n":4.5,"e":7438,"s":1}],[4,{"n":6.5,"e":7503,"g":1,"s":1}],[3,{"n":4.5,"e":7458,"s":1}]]}],[4242,{"n":"Kumbulla","f":"Marash","fp":"DC","r":6,"c":116,"s":{"g":1,"s":79,"n":16,"a":4.94,"d":0.6,"Og":1,"Os":111.5,"On":23,"Oa":4.85,"Od":0.65,"pd":23,"Smsn":6,"Omsn":6},"p":[[-33,{"n":5,"e":5502}],[-32,{"n":5,"e":5510}],[-31,{"n":4.5,"e":5527}],[-30,{"n":4,"e":5528}],[-28,{"n":4,"e":5556}],[28,{"n":5,"e":7280,"s":1}],[-27,{"n":4,"e":5567}],[27,{"n":4.5,"e":7288}],[25,{"n":4.5,"e":7300}],[-25,{"n":6,"e":5587}],[21,{"n":4,"e":7330}],[20,{"n":5,"e":7338,"s":1}],[19,{"n":4,"e":7605}],[16,{"n":4.5,"e":7582,"s":1}],[14,{"n":5,"e":7381}],[12,{"n":5.5,"e":7395,"s":1}],[11,{"n":5.5,"e":7393}],[10,{"n":5,"e":7409}],[6,{"n":5,"e":7438,"s":1}],[5,{"n":6,"e":7447,"g":1}],[4,{"n":5,"e":7503,"s":1}],[3,{"n":6,"e":7458}],[2,{"n":4.5,"e":7468}]],"fo":[[7300,[{"t":"I"},{"t":"Y"}]],[7393,[{"t":"I"}]],[7330,[{"t":"Y"}]],[7338,[{"t":"Y"}]],[7381,[{"t":"Y"}]]]}],[4252,{"n":"Ibañez","f":"","fp":"DC","r":11,"c":116,"s":{"ao":1,"s":119,"n":24,"a":4.96,"d":1.32,"Oao":1,"Os":165,"On":33,"Oa":5,"Od":1.18,"pd":33},"p":[[-38,{"n":4.5,"e":5452}],[-37,{"n":5,"e":5465,"s":1}],[-34,{"n":6,"e":5496}],[-33,{"n":6,"e":5502}],[-32,{"n":5,"e":5508}],[-31,{"n":6,"e":5524}],[-30,{"n":4.5,"e":5533}],[-29,{"n":4,"e":5544,"s":1}],[28,{"n":3,"e":7280}],[27,{"n":4,"e":7288}],[-27,{"n":5,"e":5564}],[22,{"n":7,"e":7322}],[21,{"n":3.5,"e":7330,"a":1}],[20,{"n":6,"e":7338}],[19,{"n":4.5,"e":7605}],[18,{"n":2,"e":7352}],[17,{"n":4,"e":7361}],[16,{"n":6,"e":7582}],[15,{"n":6,"e":7376}],[14,{"n":5,"e":7381,"s":1}],[13,{"n":3.5,"e":7384}],[12,{"n":5,"e":7395}],[11,{"n":6,"e":7393}],[10,{"n":6,"e":7409}],[9,{"n":3,"e":7417}],[8,{"n":5.5,"e":7423}],[7,{"n":6,"e":7430}],[6,{"n":6,"e":7438}],[5,{"n":4.5,"e":7447}],[4,{"n":4.5,"e":7503}],[3,{"n":7,"e":7458}],[2,{"n":5.5,"e":7468}],[1,{"n":5.5,"e":7471}]],"fo":[[7423,[{"t":"I"}]],[7280,[{"t":"Y"}]],[7393,[{"t":"Y"}]],[7417,[{"t":"Y"}]],[7503,[{"t":"Y"}]],[7582,[{"t":"Y"}]]]}],[4287,{"n":"Zaniolo","f":"Nicolò","fp":"MO","r":1,"c":116,"s":{"Og":2,"Os":44.5,"On":8,"Oa":5.56,"Od":0.78,"pm":7,"pa":1,"Omsn":6},"p":[[-38,{"n":6,"e":5452}],[-37,{"n":5,"e":5465,"s":1}],[-36,{"n":5.5,"e":5475,"s":1}],[-35,{"n":6,"e":5483,"g":1,"s":1}],[-33,{"n":4.5,"e":5502,"s":1}],[-32,{"n":7,"e":5508,"g":1,"s":1}],[-31,{"n":5.5,"e":5524,"s":1}],[-30,{"n":5,"e":5533,"s":1}]]}],[4301,{"n":"Daniel Fuzato","f":"","fp":"G","r":3,"c":116,"s":{"Os":5.5,"On":1,"Oa":5.5,"pg":1},"p":[[-38,{"n":5.5,"e":5452}]]}],[4375,{"n":"Diawara","f":"Amadou","fp":"MD","r":10,"c":116,"s":{"g":1,"s":78,"n":15,"a":5.2,"d":0.68,"Sg":1,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":0.97,"Og":2,"Os":131.5,"On":25,"Oa":5.26,"Od":0.75,"pm":25,"Smsn":7,"Omsn":6.5},"p":[[-37,{"n":6.5,"e":5465,"g":1}],[-36,{"n":6,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":5.5,"e":5496}],[-33,{"n":5,"e":5502}],[-32,{"n":6.5,"e":5508}],[-31,{"n":5.5,"e":5524}],[-29,{"n":5,"e":5544}],[29,{"n":6,"e":7275}],[-28,{"n":5,"e":5552,"s":1}],[28,{"n":4.5,"e":7280}],[-27,{"n":3.5,"e":5564}],[27,{"n":4.5,"e":7288,"s":1}],[26,{"n":5,"e":7295}],[25,{"n":7,"e":7300,"g":1}],[24,{"n":5.5,"e":7302,"s":1}],[22,{"n":5,"e":7322,"s":1}],[21,{"n":5,"e":7330,"s":1}],[20,{"n":5,"e":7338,"s":1}],[19,{"n":4.5,"e":7605,"s":1}],[11,{"n":5,"e":7393,"s":1}],[10,{"n":5,"e":7409,"s":1}],[8,{"n":5,"e":7423,"s":1}],[2,{"n":5,"e":7468,"s":1}],[1,{"n":6,"e":7471}]],"fo":[[7275,[{"t":"Y"}]],[7280,[{"t":"Y"}]]]}],[4404,{"n":"Mancini","f":"Gianluca","fp":"DC","r":24,"c":116,"s":{"g":4,"s":138,"n":26,"a":5.31,"d":1.18,"Sg":2,"Ss":56.5,"Sn":10,"Sa":5.65,"Sd":1.36,"Og":4,"Os":182.5,"On":35,"Oa":5.21,"Od":1.11,"pd":35,"Smsn":6,"Omsn":6},"p":[[-37,{"n":4.5,"e":5465}],[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":4.5,"e":5496}],[-33,{"n":4.5,"e":5502}],[-32,{"n":5.5,"e":5508}],[-31,{"n":7,"e":5524}],[-30,{"n":4,"e":5533}],[29,{"n":4.5,"e":7275}],[28,{"n":3.5,"e":7280}],[-28,{"n":4.5,"e":5552}],[27,{"n":5.5,"e":7288}],[26,{"n":7,"e":7295,"g":1}],[25,{"n":6,"e":7300}],[24,{"n":5.5,"e":7302}],[23,{"n":5,"e":7631}],[22,{"n":7.5,"e":7322}],[21,{"n":4.5,"e":7330}],[20,{"n":7.5,"e":7338,"g":1}],[18,{"n":3.5,"e":7352}],[17,{"n":6,"e":7361,"g":1}],[16,{"n":5,"e":7582}],[15,{"n":7,"e":7376}],[14,{"n":6,"e":7381,"g":1}],[13,{"n":3,"e":7384}],[12,{"n":4.5,"e":7395}],[9,{"n":5,"e":7417}],[8,{"n":6,"e":7423}],[7,{"n":6,"e":7430}],[6,{"n":5.5,"e":7438}],[5,{"n":4,"e":7447}],[4,{"n":5,"e":7503}],[3,{"n":5.5,"e":7458}],[2,{"n":4.5,"e":7468}],[1,{"n":5,"e":7471}]],"fo":[[7417,[{"t":"I"}]],[7280,[{"t":"Y"}]],[7295,[{"t":"Y"}]],[7300,[{"t":"Y"}]],[7330,[{"t":"Y"}]],[7352,[{"t":"Y"}]],[7361,[{"t":"Y"}]],[7381,[{"t":"Y"}]],[7384,[{"t":"Y"}]],[7395,[{"t":"Y"}]]]}],[4428,{"n":"Karsdorp","f":"Rick","fp":"DC","r":16,"c":116,"s":{"g":1,"s":124,"n":25,"a":4.96,"d":1.06,"Ss":8,"Sn":2,"Sa":4,"Sd":0.71,"Og":1,"Os":124,"On":25,"Oa":4.96,"Od":1.06,"pd":3,"pm":22,"Smsn":5.5,"Omsn":5.5},"p":[[29,{"n":4.5,"e":7275}],[28,{"n":3.5,"e":7280}],[26,{"n":5,"e":7295}],[25,{"n":6,"e":7300,"s":1}],[24,{"n":5,"e":7302}],[23,{"n":4.5,"e":7631}],[22,{"n":6,"e":7322}],[21,{"n":4,"e":7330}],[20,{"n":5,"e":7338}],[19,{"n":5.5,"e":7605,"g":1}],[18,{"n":4,"e":7352}],[17,{"n":5,"e":7361}],[16,{"n":5,"e":7582}],[15,{"n":6.5,"e":7376}],[14,{"n":5.5,"e":7381}],[13,{"n":3,"e":7384}],[12,{"n":5,"e":7395,"s":1}],[11,{"n":7,"e":7393}],[10,{"n":5,"e":7409}],[9,{"n":3,"e":7417}],[8,{"n":6.5,"e":7423}],[7,{"n":5,"e":7430}],[6,{"n":6,"e":7438}],[5,{"n":3.5,"e":7447}],[1,{"n":5,"e":7471}]],"fo":[[7409,[{"t":"Y"}]]]}],[4436,{"n":"Lorenzo Pellegrini","f":"","fp":"MO","r":25,"c":116,"s":{"g":5,"s":159.5,"n":28,"a":5.7,"d":1.25,"Sg":1,"Ss":42.5,"Sn":8,"Sa":5.31,"Sd":1,"Og":5,"Os":207.5,"On":37,"Oa":5.61,"Od":1.12,"pm":19,"pa":18,"Smsn":6,"Omsn":6},"p":[[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":5.5,"e":5496}],[-33,{"n":5.5,"e":5502}],[-32,{"n":6,"e":5508}],[-31,{"n":5.5,"e":5524}],[-30,{"n":4.5,"e":5533}],[29,{"n":6,"e":7275,"g":1}],[-28,{"n":5,"e":5552}],[28,{"n":4.5,"e":7280}],[27,{"n":4,"e":7288}],[-27,{"n":6,"e":5564,"s":1}],[26,{"n":7,"e":7295}],[25,{"n":6,"e":7300}],[24,{"n":5,"e":7302}],[23,{"n":5.5,"e":7631}],[22,{"n":4.5,"e":7322}],[20,{"n":6.5,"e":7338}],[19,{"n":7.5,"e":7605,"g":1}],[18,{"n":4,"e":7352}],[17,{"n":7,"e":7361,"g":1}],[16,{"n":4.5,"e":7582,"s":1}],[15,{"n":6.5,"e":7376}],[14,{"n":5,"e":7381,"s":1}],[13,{"n":4,"e":7384}],[12,{"n":7,"e":7395,"g":1}],[11,{"n":8.5,"e":7393,"g":1}],[10,{"n":7,"e":7409}],[9,{"n":3.5,"e":7417}],[8,{"n":5,"e":7423,"s":1}],[7,{"n":6,"e":7430}],[6,{"n":6,"e":7438}],[5,{"n":7,"e":7447}],[4,{"n":6,"e":7503}],[3,{"n":5.5,"e":7458}],[2,{"n":4.5,"e":7468}],[1,{"n":6,"e":7471}]],"fo":[[7409,[{"t":"I"}]],[7275,[{"t":"Y"}]],[7288,[{"t":"Y"}]],[7302,[{"t":"Y"}]],[7322,[{"t":"Y"}]],[7338,[{"t":"Y"}]],[7384,[{"t":"Y"}]],[7582,[{"t":"Y"}]],[7605,[{"t":"Y"}]]],"a":{"m":25,"a":28,"M":31,"n":7}}],[4595,{"n":"Cristante","f":"Bryan","fp":"MD","r":15,"c":116,"s":{"ao":1,"s":129.5,"n":26,"a":4.98,"d":0.82,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":0.8,"Oao":1,"Os":184.5,"On":37,"Oa":4.99,"Od":0.72,"pd":13,"pm":23,"pa":1},"p":[[-38,{"n":5,"e":5452}],[-37,{"n":4.5,"e":5465}],[-36,{"n":5,"e":5475,"s":1}],[-35,{"n":5.5,"e":5483}],[-34,{"n":5,"e":5496,"s":1}],[-33,{"n":5,"e":5502,"s":1}],[-31,{"n":4.5,"e":5524}],[-30,{"n":5,"e":5533,"s":1}],[29,{"n":4,"e":7275}],[-29,{"n":4.5,"e":5544}],[-28,{"n":5,"e":5552}],[28,{"n":4,"e":7280}],[27,{"n":5,"e":7288,"s":1}],[-27,{"n":6,"e":5564,"s":1}],[26,{"n":6,"e":7295}],[25,{"n":5,"e":7300}],[24,{"n":5.5,"e":7302}],[22,{"n":6,"e":7322}],[21,{"n":4,"e":7330}],[20,{"n":4.5,"e":7338,"s":1}],[19,{"n":5,"e":7605,"s":1}],[18,{"n":4.5,"e":7352,"s":1}],[17,{"n":5,"e":7361,"s":1}],[16,{"n":5.5,"e":7582}],[15,{"n":4.5,"e":7376,"s":1}],[14,{"n":5.5,"e":7381}],[13,{"n":5,"e":7384,"s":1}],[11,{"n":5,"e":7393,"a":1}],[10,{"n":5.5,"e":7409}],[9,{"n":3,"e":7417}],[8,{"n":7,"e":7423}],[7,{"n":5,"e":7430,"s":1}],[6,{"n":5,"e":7438,"s":1}],[5,{"n":5,"e":7447,"s":1}],[4,{"n":6,"e":7503}],[3,{"n":5,"e":7458,"s":1}],[1,{"n":4,"e":7471}]],"fo":[[7275,[{"t":"Y"}]],[7381,[{"t":"Y"}]],[7417,[{"t":"Y"}]],[7438,[{"t":"Y"}]],[7447,[{"t":"Y"}]]]}],[4634,{"n":"Juan Jesus","f":"","fp":"DC","r":3,"c":116,"s":{"s":18.5,"n":4,"a":4.63,"d":0.75,"Os":23,"On":5,"Oa":4.6,"Od":0.65,"pd":5},"p":[[-38,{"n":4.5,"e":5452,"s":1}],[23,{"n":5,"e":7631,"s":1}],[10,{"n":5,"e":7409,"s":1}],[9,{"n":3.5,"e":7417,"s":1}],[8,{"n":5,"e":7423,"s":1}]]}],[4657,{"n":"Spinazzola","f":"Leonardo","fp":"DL","r":15,"c":116,"s":{"g":2,"ao":1,"s":136,"n":26,"a":5.23,"d":1.12,"Sg":1,"Sao":1,"Ss":65.5,"Sn":13,"Sa":5.04,"Sd":0.88,"Og":3,"Oao":1,"Os":182,"On":35,"Oa":5.2,"Od":1.02,"pd":7,"pm":28,"Smsn":6,"Omsn":5},"p":[[-37,{"n":5,"e":5465}],[-36,{"n":5,"e":5475}],[-35,{"n":5,"e":5483}],[-34,{"n":5,"e":5496,"g":1}],[-33,{"n":6.5,"e":5502}],[-32,{"n":5.5,"e":5508,"s":1}],[-31,{"n":5.5,"e":5524}],[-30,{"n":4.5,"e":5533}],[29,{"n":4,"e":7275}],[28,{"n":4.5,"e":7280}],[-28,{"n":4,"e":5552}],[27,{"n":6,"e":7288}],[26,{"n":5,"e":7295,"s":1}],[25,{"n":6,"e":7300,"g":1,"a":1}],[24,{"n":6,"e":7302}],[23,{"n":5.5,"e":7631}],[22,{"n":6,"e":7322}],[21,{"n":4.5,"e":7330}],[20,{"n":5,"e":7338}],[19,{"n":5.5,"e":7605}],[18,{"n":3.5,"e":7352}],[17,{"n":4,"e":7361}],[13,{"n":4.5,"e":7384}],[12,{"n":6,"e":7395}],[11,{"n":7,"e":7393}],[10,{"n":6,"e":7409}],[9,{"n":3,"e":7417}],[8,{"n":6,"e":7423}],[7,{"n":5,"e":7430}],[6,{"n":8,"e":7438,"g":1}],[5,{"n":3.5,"e":7447}],[4,{"n":5,"e":7503}],[3,{"n":5.5,"e":7458}],[2,{"n":5,"e":7468}],[1,{"n":6,"e":7471}]],"fo":[[7384,[{"t":"I"}]],[7430,[{"t":"I"}]]]}],[4726,{"n":"Santon","f":"Davide","fp":"DL","r":3,"c":116,"s":{"s":20.5,"n":4,"a":5.13,"d":0.63,"Os":25,"On":5,"Oa":5,"Od":0.61,"pd":3,"pm":2},"p":[[-38,{"n":4.5,"e":5452,"s":1}],[4,{"n":4.5,"e":7503}],[3,{"n":6,"e":7458}],[2,{"n":5,"e":7468}],[1,{"n":5,"e":7471,"s":1}]],"fo":[[7503,[{"t":"Y"}]]]}],[4768,{"n":"Dzeko","f":"Edin","fp":"A","r":17,"c":116,"s":{"g":7,"s":107.5,"n":21,"a":5.12,"d":1.07,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":11,"Os":163.5,"On":31,"Oa":5.27,"Od":1.2,"pa":31,"Smsn":5.5,"Omsn":5.5},"p":[[-37,{"n":7,"e":5465,"g":1}],[-36,{"n":6.5,"e":5475}],[-34,{"n":6.5,"e":5496}],[-33,{"n":6,"e":5502,"g":1}],[-32,{"n":4,"e":5508,"s":1}],[-31,{"n":5,"e":5524}],[-30,{"n":5,"e":5533}],[-29,{"n":4.5,"e":5544,"s":1}],[29,{"n":4.5,"e":7275,"s":1}],[28,{"n":4,"e":7280}],[-28,{"n":3.5,"e":5552}],[-27,{"n":8,"e":5564,"g":2}],[27,{"n":5,"e":7288}],[23,{"n":5,"e":7631,"s":1}],[22,{"n":5,"e":7322,"s":1}],[21,{"n":4.5,"e":7330,"s":1}],[18,{"n":4,"e":7352}],[17,{"n":4.5,"e":7361}],[16,{"n":4.5,"e":7582,"s":1}],[15,{"n":6,"e":7376,"g":1}],[14,{"n":6,"e":7381,"g":1}],[13,{"n":5.5,"e":7384,"g":1}],[12,{"n":5,"e":7395}],[11,{"n":7,"e":7393,"g":1}],[10,{"n":5,"e":7409}],[9,{"n":3,"e":7417}],[6,{"n":5.5,"e":7438}],[5,{"n":6.5,"e":7447,"g":1}],[4,{"n":7.5,"e":7503,"g":2}],[3,{"n":4,"e":7458}],[2,{"n":5.5,"e":7468}]],"fo":[[7288,[{"t":"Y"}]],[7438,[{"t":"Y"}]]]}],[4771,{"n":"Fazio","f":"Federico","fp":"DC","r":6,"c":116,"s":{"s":13.5,"n":3,"a":4.5,"d":0.87,"Og":1,"Os":35,"On":7,"Oa":5,"Od":1.29,"pd":7,"Omsn":7.5},"p":[[-38,{"n":5.5,"e":5452}],[-32,{"n":7.5,"e":5508,"g":1}],[-30,{"n":4,"e":5533,"s":1}],[-29,{"n":4.5,"e":5544}],[26,{"n":5,"e":7295,"s":1}],[24,{"n":3.5,"e":7302}],[23,{"n":5,"e":7631}]],"fo":[[7302,[{"t":"Y"}]],[7631,[{"t":"Y"}]]]}],[4828,{"n":"Mirante","f":"Antonio","fp":"G","r":7,"c":116,"s":{"s":57.5,"n":11,"a":5.23,"d":1.57,"Os":82,"On":15,"Oa":5.47,"Od":1.51,"pg":15},"p":[[-32,{"n":6.5,"e":5508}],[-29,{"n":4.5,"e":5544}],[-28,{"n":6,"e":5552}],[-27,{"n":7.5,"e":5564}],[14,{"n":5,"e":7381}],[13,{"n":2.5,"e":7384}],[10,{"n":6,"e":7409}],[9,{"n":2.5,"e":7417}],[8,{"n":5.5,"e":7423}],[6,{"n":6,"e":7438}],[5,{"n":6,"e":7447}],[4,{"n":6.5,"e":7503}],[3,{"n":7,"e":7458}],[2,{"n":4,"e":7468}],[1,{"n":6.5,"e":7471}]],"fo":[[7381,[{"t":"I"}]],[7384,[{"t":"Y"}]],[7409,[{"t":"Y"}]]]}],[6296,{"n":"Darboe","f":"Ebrima","fp":"MD","r":1,"c":116}],[6297,{"n":"Calafiori","f":"Riccardo","fp":"DL","r":1,"c":116,"s":{"s":9,"n":2,"a":4.5,"d":0.71,"Os":14,"On":3,"Oa":4.67,"Od":0.58,"pd":2,"pm":1},"p":[[-38,{"n":5,"e":5452}],[12,{"n":4,"e":7395,"s":1}],[11,{"n":5,"e":7393,"s":1}]],"fo":[[7395,[{"t":"Y"}]]]}],[6355,{"n":"Bruno Peres","f":"","fp":"DL","r":13,"c":116,"s":{"g":1,"s":120.5,"n":23,"a":5.24,"d":0.72,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":3,"Os":176.5,"On":33,"Oa":5.35,"Od":0.96,"pd":17,"pm":16,"Smsn":7,"Omsn":7},"p":[[-38,{"n":5.5,"e":5452,"s":1}],[-37,{"n":3.5,"e":5465}],[-36,{"n":6,"e":5475}],[-35,{"n":8,"e":5483,"g":2}],[-34,{"n":5,"e":5496}],[-33,{"n":5,"e":5502}],[-32,{"n":7,"e":5508}],[-31,{"n":7,"e":5524}],[-29,{"n":4.5,"e":5544}],[29,{"n":7,"e":7275,"g":1}],[27,{"n":4.5,"e":7288}],[-27,{"n":4.5,"e":5564}],[26,{"n":5.5,"e":7295}],[25,{"n":5.5,"e":7300}],[24,{"n":5.5,"e":7302,"s":1}],[23,{"n":6,"e":7631}],[22,{"n":5,"e":7322,"s":1}],[21,{"n":5,"e":7330,"s":1}],[20,{"n":5,"e":7338,"s":1}],[19,{"n":6,"e":7605,"s":1}],[18,{"n":5,"e":7352,"s":1}],[17,{"n":5,"e":7361,"s":1}],[16,{"n":4.5,"e":7582}],[15,{"n":5,"e":7376}],[14,{"n":5,"e":7381}],[13,{"n":4,"e":7384,"s":1}],[12,{"n":4.5,"e":7395}],[8,{"n":5,"e":7423,"s":1}],[7,{"n":7,"e":7430,"s":1}],[6,{"n":5.5,"e":7438,"s":1}],[5,{"n":5,"e":7447,"s":1}],[4,{"n":5,"e":7503,"s":1}],[2,{"n":5,"e":7468,"s":1}]],"fo":[[7288,[{"t":"Y"}]],[7376,[{"t":"Y"}]],[7395,[{"t":"Y"}]],[7582,[{"t":"Y"}]],[7605,[{"t":"Y"}]]]}],[6453,{"n":"Galeazzi","f":"Felipe Estrella","fp":"A","r":1,"c":116}],[6520,{"n":"Villar","f":"Gonzalo","fp":"MD","r":10,"c":116,"s":{"s":127.5,"n":25,"a":5.1,"d":0.88,"Os":157.5,"On":31,"Oa":5.08,"Od":0.85,"pm":31},"p":[[-38,{"n":6.5,"e":5452}],[-35,{"n":5,"e":5483,"s":1}],[-33,{"n":4.5,"e":5502,"s":1}],[-32,{"n":5,"e":5508,"s":1}],[-31,{"n":4.5,"e":5524,"s":1}],[-29,{"n":4.5,"e":5544,"s":1}],[28,{"n":5,"e":7280,"s":1}],[27,{"n":3.5,"e":7288}],[26,{"n":5,"e":7295,"s":1}],[24,{"n":4.5,"e":7302}],[23,{"n":6,"e":7631}],[22,{"n":5.5,"e":7322}],[21,{"n":4.5,"e":7330}],[20,{"n":4,"e":7338}],[19,{"n":4.5,"e":7605}],[18,{"n":4.5,"e":7352}],[17,{"n":6,"e":7361}],[16,{"n":6,"e":7582}],[15,{"n":6.5,"e":7376}],[14,{"n":5,"e":7381}],[13,{"n":4.5,"e":7384,"s":1}],[12,{"n":5,"e":7395}],[11,{"n":7,"e":7393}],[10,{"n":5,"e":7409}],[9,{"n":4.5,"e":7417,"s":1}],[8,{"n":7,"e":7423}],[7,{"n":5,"e":7430,"s":1}],[5,{"n":5,"e":7447,"s":1}],[4,{"n":5,"e":7503,"s":1}],[3,{"n":4.5,"e":7458,"s":1}],[1,{"n":4.5,"e":7471,"s":1}]],"fo":[[7280,[{"t":"Y"}]],[7361,[{"t":"Y"}]],[7376,[{"t":"Y"}]],[7395,[{"t":"Y"}]],[7409,[{"t":"Y"}]]]}],[7226,{"n":"Berti","f":"Filippo","fp":"G","r":1,"c":116}],[7228,{"n":"Feratovic","f":"Amir","fp":"DC","r":1,"c":116}],[7230,{"n":"Boer","f":"Pietro","fp":"G","r":1,"c":116}],[7276,{"n":"Vicario","f":"Javier","fp":"DC","r":1,"c":116}],[7277,{"n":"Tall","f":"Lamine","fp":"A","r":1,"c":116}],[7278,{"n":"Ciervo","f":"Riccardo","fp":"MO","r":1,"c":116}],[7285,{"n":"Zalewski","f":"Nicola","fp":"MO","r":1,"c":116}],[7287,{"n":"Providence","f":"Ruben","fp":"MO","r":1,"c":116}],[7436,{"n":"Bove","f":"Edoardo","fp":"MD","r":1,"c":116}],[7462,{"n":"Farelli","f":"Simone","fp":"G","r":3,"c":116}],[7507,{"n":"Podgoreanu","f":"Suf","fp":"MO","r":1,"c":116}],[7515,{"n":"Tripi","f":"Filippo","fp":"DC","r":1,"c":116}],[7516,{"n":"Milanese","f":"Tommaso","fp":"MO","r":1,"c":116}],[7555,{"n":"Bamba","f":"Mory","fp":"A","r":1,"c":116}],[7668,{"n":"Satriano","f":"Antonio","fp":"A","r":1,"c":116}],[7677,{"n":"Reynolds","f":"Bryan","fp":"DC","r":1,"c":116,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pd":1},"p":[[27,{"n":4.5,"e":7288,"s":1}]]}],[7679,{"n":"El Shaarawy","f":"Stephan","fp":"MO","r":9,"c":116,"s":{"s":34,"n":7,"a":4.86,"d":0.63,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.63,"Os":34,"On":7,"Oa":4.86,"Od":0.63,"pm":1,"pa":6},"p":[[29,{"n":6,"e":7275}],[28,{"n":5,"e":7280}],[27,{"n":4,"e":7288}],[26,{"n":5,"e":7295}],[25,{"n":4.5,"e":7300,"s":1}],[24,{"n":5,"e":7302,"s":1}],[23,{"n":4.5,"e":7631,"s":1}]],"fo":[[7280,[{"t":"Y"}]]]}],[696,{"n":"Gabbiadini","f":"Manolo","fp":"A","r":9,"c":120,"s":{"g":1,"s":40,"n":8,"a":5,"d":0.65,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":6,"Os":108.5,"On":21,"Oa":5.17,"Od":0.89,"pa":21,"Smsn":6,"Omsn":6},"p":[[28,{"n":6,"e":7281}],[-38,{"n":5,"e":5450}],[-37,{"n":5,"e":5463,"s":1}],[-36,{"n":4,"e":5472,"s":1}],[-35,{"n":6,"e":5484,"g":1}],[-34,{"n":4.5,"e":5495,"s":1}],[-33,{"n":7,"e":5504,"g":1}],[-32,{"n":6.5,"e":5517,"g":1,"s":1}],[-31,{"n":5,"e":5518}],[-30,{"n":6.5,"e":5535,"g":1}],[-29,{"n":4.5,"e":5543,"s":1}],[29,{"n":4.5,"e":7274}],[-28,{"n":4,"e":5555}],[-27,{"n":6,"e":5564,"g":1}],[27,{"n":4.5,"e":7284,"s":1}],[-26,{"n":4.5,"e":5575}],[26,{"n":6,"e":7296,"g":1,"s":1}],[25,{"n":5,"e":7301,"s":1}],[10,{"n":5,"e":7410}],[9,{"n":4.5,"e":7419,"s":1}],[2,{"n":4.5,"e":7488,"s":1}]],"fo":[[7410,[{"t":"I"}]],[7296,[{"t":"Y"}]]]}],[818,{"n":"Ramírez","f":"Gastón","fp":"MO","r":10,"c":120,"s":{"s":116.5,"n":23,"a":5.07,"d":0.61,"Og":2,"Os":172.5,"On":34,"Oa":5.07,"Od":0.69,"pm":19,"pa":15,"Omsn":7},"p":[[18,{"n":4.5,"e":7354,"s":1}],[17,{"n":5.5,"e":7595,"s":1}],[14,{"n":5.5,"e":7382}],[-37,{"n":4,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5495}],[-32,{"n":5,"e":5517}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":6,"e":5535}],[-29,{"n":7,"e":5543,"g":2}],[-28,{"n":5,"e":5555,"s":1}],[-27,{"n":5.5,"e":5564,"s":1}],[27,{"n":5,"e":7284,"s":1}],[26,{"n":6,"e":7296,"s":1}],[25,{"n":5,"e":7301,"s":1}],[-25,{"n":4,"e":5583}],[24,{"n":5,"e":7303,"s":1}],[23,{"n":4,"e":7316}],[22,{"n":6,"e":7324}],[20,{"n":5,"e":7339,"s":1}],[19,{"n":6.5,"e":7345}],[13,{"n":5,"e":7564,"s":1}],[12,{"n":5.5,"e":7400,"s":1}],[11,{"n":5,"e":7404,"s":1}],[9,{"n":5,"e":7419,"s":1}],[8,{"n":4.5,"e":7424,"s":1}],[7,{"n":5,"e":7429}],[6,{"n":4.5,"e":7439}],[5,{"n":5,"e":7442}],[4,{"n":4,"e":7451}],[3,{"n":5,"e":7456}],[2,{"n":4.5,"e":7488,"s":1}],[1,{"n":5.5,"e":7474,"s":1}]],"fo":[[7284,[{"t":"Y"}]],[7404,[{"t":"Y"}]],[7424,[{"t":"Y"}]],[7451,[{"t":"Y"}]]]}],[879,{"n":"Yoshida","f":"Maya","fp":"DC","r":12,"c":120,"s":{"g":1,"s":128,"n":25,"a":5.12,"d":0.79,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.63,"Og":1,"Os":202,"On":39,"Oa":5.18,"Od":0.88,"pd":39,"Smsn":7.5,"Omsn":7.5},"p":[[-38,{"n":6,"e":5450}],[-37,{"n":3,"e":5463}],[-36,{"n":6,"e":5472}],[-35,{"n":4.5,"e":5484}],[-34,{"n":5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":6.5,"e":5517}],[-31,{"n":3.5,"e":5518}],[-30,{"n":6.5,"e":5535}],[-29,{"n":6,"e":5543}],[29,{"n":5,"e":7274,"s":1}],[28,{"n":5.5,"e":7281,"s":1}],[-28,{"n":5,"e":5555,"s":1}],[27,{"n":4,"e":7284}],[-27,{"n":5,"e":5564}],[-26,{"n":5.5,"e":5575}],[26,{"n":5,"e":7296,"s":1}],[-25,{"n":5.5,"e":5583}],[24,{"n":5,"e":7303}],[23,{"n":4,"e":7316}],[22,{"n":6.5,"e":7324}],[21,{"n":5.5,"e":7617,"s":1}],[20,{"n":5,"e":7339}],[19,{"n":7.5,"e":7345,"g":1}],[18,{"n":5.5,"e":7354}],[17,{"n":5,"e":7595}],[16,{"n":5,"e":7367}],[15,{"n":4.5,"e":7376}],[14,{"n":4.5,"e":7382}],[13,{"n":5,"e":7564,"s":1}],[11,{"n":5,"e":7404}],[9,{"n":4.5,"e":7419}],[8,{"n":4.5,"e":7424}],[7,{"n":5,"e":7429}],[6,{"n":5,"e":7439}],[5,{"n":6,"e":7442}],[4,{"n":6,"e":7451}],[3,{"n":5.5,"e":7456}],[1,{"n":4,"e":7474,"s":1}]],"fo":[[7296,[{"t":"Y"}]],[7376,[{"t":"Y"}]],[7442,[{"t":"Y"}]],[7595,[{"t":"Y"}]]]}],[2034,{"n":"Keita Baldé","f":"","fp":"A","r":14,"c":120,"s":{"g":5,"s":76.5,"n":16,"a":4.78,"d":1.14,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Og":5,"Os":76.5,"On":16,"Oa":4.78,"Od":1.14,"pa":16,"Smsn":4,"Omsn":4},"p":[[29,{"n":4,"e":7274,"s":1}],[28,{"n":4.5,"e":7281,"s":1}],[26,{"n":4,"e":7296}],[25,{"n":3.5,"e":7301}],[24,{"n":4,"e":7303,"s":1}],[23,{"n":3.5,"e":7316}],[22,{"n":6.5,"e":7324,"g":1}],[21,{"n":7,"e":7617,"g":1}],[20,{"n":4,"e":7339}],[19,{"n":6,"e":7345,"g":1}],[18,{"n":5,"e":7354,"s":1}],[17,{"n":4,"e":7595}],[16,{"n":6.5,"e":7367,"g":1}],[14,{"n":4,"e":7382,"g":1,"s":1}],[6,{"n":5,"e":7439,"s":1}],[5,{"n":5,"e":7442,"s":1}]],"fo":[[7382,[{"t":"R"}]],[7345,[{"t":"Y"}]],[7367,[{"t":"Y"}]],[7442,[{"t":"Y"}]]]}],[2198,{"n":"Adrien Silva","f":"","fp":"MD","r":13,"c":120,"s":{"s":97.5,"n":19,"a":5.13,"d":0.7,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":97.5,"On":19,"Oa":5.13,"Od":0.7,"pm":19},"p":[[29,{"n":3.5,"e":7274}],[26,{"n":5,"e":7296}],[25,{"n":4.5,"e":7301}],[23,{"n":6,"e":7316}],[22,{"n":5,"e":7324}],[21,{"n":5,"e":7617}],[20,{"n":5,"e":7339}],[19,{"n":6,"e":7345}],[18,{"n":6,"e":7354}],[16,{"n":6,"e":7367}],[14,{"n":5,"e":7382,"s":1}],[13,{"n":5.5,"e":7564}],[12,{"n":6,"e":7400}],[10,{"n":4,"e":7410}],[9,{"n":5,"e":7419,"s":1}],[8,{"n":5,"e":7424}],[7,{"n":4.5,"e":7429,"s":1}],[6,{"n":5,"e":7439,"s":1}],[4,{"n":5.5,"e":7451,"s":1}]],"fo":[[7367,[{"t":"I"}]],[7274,[{"t":"Y"},{"t":"O"}]],[7316,[{"t":"Y"}]],[7400,[{"t":"Y"}]],[7410,[{"t":"Y"}]],[7429,[{"t":"Y"}]],[7617,[{"t":"Y"}]]]}],[4250,{"n":"Augello","f":"Tommaso","fp":"DL","r":12,"c":120,"s":{"g":1,"s":140.5,"n":28,"a":5.02,"d":0.94,"Ss":105.5,"Sn":21,"Sa":5.02,"Sd":0.75,"Og":1,"Os":204.5,"On":40,"Oa":5.11,"Od":0.92,"pd":39,"pm":1,"Smsn":8,"Omsn":8},"p":[[-38,{"n":7,"e":5450}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":5,"e":5484}],[-33,{"n":5.5,"e":5504}],[-32,{"n":5,"e":5517}],[-31,{"n":5,"e":5518,"s":1}],[-30,{"n":5.5,"e":5535}],[29,{"n":6,"e":7274}],[-29,{"n":5.5,"e":5543}],[-28,{"n":6.5,"e":5555,"s":1}],[28,{"n":6,"e":7281}],[-27,{"n":5,"e":5564}],[27,{"n":4.5,"e":7284}],[26,{"n":4.5,"e":7296}],[-26,{"n":5.5,"e":5575}],[25,{"n":5.5,"e":7301}],[24,{"n":4,"e":7303}],[23,{"n":5,"e":7316}],[22,{"n":5.5,"e":7324}],[21,{"n":5,"e":7617}],[20,{"n":5,"e":7339}],[19,{"n":6,"e":7345}],[18,{"n":6.5,"e":7354}],[17,{"n":4.5,"e":7595}],[16,{"n":5,"e":7367}],[15,{"n":4.5,"e":7376}],[14,{"n":4,"e":7382}],[13,{"n":6,"e":7564}],[12,{"n":5,"e":7400}],[11,{"n":4,"e":7404}],[10,{"n":4.5,"e":7410}],[9,{"n":4.5,"e":7419}],[7,{"n":4,"e":7429}],[6,{"n":4.5,"e":7439}],[5,{"n":5.5,"e":7442}],[4,{"n":8,"e":7451,"g":1}],[3,{"n":5,"e":7456}],[2,{"n":4,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[7429,[{"t":"R"}]],[7376,[{"t":"Y"}]]]}],[4414,{"n":"Jankto","f":"Jakub","fp":"MO","r":14,"c":120,"s":{"g":4,"s":138.5,"n":26,"a":5.33,"d":1.15,"Og":4,"Os":203.5,"On":38,"Oa":5.36,"Od":1.18,"pm":38,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5,"e":5450,"s":1}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":4.5,"e":5484}],[-34,{"n":4.5,"e":5495}],[-33,{"n":8,"e":5504}],[-31,{"n":5,"e":5518}],[-30,{"n":7,"e":5535}],[-29,{"n":6.5,"e":5543}],[28,{"n":6,"e":7281}],[-27,{"n":6,"e":5564}],[27,{"n":3.5,"e":7284}],[-26,{"n":6,"e":5575}],[26,{"n":5.5,"e":7296}],[25,{"n":4.5,"e":7301,"s":1}],[-25,{"n":4,"e":5583}],[24,{"n":4.5,"e":7303}],[23,{"n":4.5,"e":7316,"s":1}],[22,{"n":5,"e":7324}],[21,{"n":5.5,"e":7617}],[20,{"n":5,"e":7339,"s":1}],[19,{"n":5.5,"e":7345,"s":1}],[17,{"n":5.5,"e":7595}],[16,{"n":5.5,"e":7367}],[15,{"n":5.5,"e":7376}],[14,{"n":5.5,"e":7382}],[13,{"n":8,"e":7564,"g":1}],[12,{"n":5.5,"e":7400}],[11,{"n":7,"e":7404,"g":1}],[10,{"n":3.5,"e":7410}],[9,{"n":4.5,"e":7419}],[8,{"n":5,"e":7424,"s":1}],[7,{"n":5,"e":7429}],[6,{"n":6.5,"e":7439,"g":1}],[5,{"n":8,"e":7442,"g":1}],[4,{"n":6,"e":7451}],[2,{"n":4,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[7339,[{"t":"Y"}]],[7376,[{"t":"Y"}]],[7410,[{"t":"Y"}]],[7439,[{"t":"Y"}]],[7442,[{"t":"Y"}]],[7595,[{"t":"Y"}]]],"a":{"m":22,"a":30,"M":32,"n":9}}],[4422,{"n":"Audero","f":"Emil","fp":"G","r":17,"c":120,"s":{"s":159,"n":29,"a":5.48,"d":0.95,"Ss":159,"Sn":29,"Sa":5.48,"Sd":0.95,"Oao":1,"Os":226.5,"On":41,"Oa":5.52,"Od":0.96,"pg":41},"p":[[-36,{"n":5.5,"e":5472}],[-35,{"n":5,"e":5484}],[-34,{"n":5.5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":5.5,"e":5517}],[-31,{"n":6,"e":5518}],[-30,{"n":7,"e":5535}],[29,{"n":5,"e":7274}],[-29,{"n":7,"e":5543}],[-28,{"n":4.5,"e":5555}],[28,{"n":6,"e":7281}],[27,{"n":4,"e":7284}],[-27,{"n":7,"e":5564}],[26,{"n":5,"e":7296}],[-26,{"n":4,"e":5575,"a":1}],[25,{"n":4,"e":7301}],[-25,{"n":4.5,"e":5583}],[24,{"n":5.5,"e":7303}],[23,{"n":6,"e":7316}],[22,{"n":6,"e":7324}],[21,{"n":5,"e":7617}],[20,{"n":4,"e":7339}],[19,{"n":7.5,"e":7345}],[18,{"n":6,"e":7354}],[17,{"n":5,"e":7595}],[16,{"n":8,"e":7367}],[15,{"n":6,"e":7376}],[14,{"n":5,"e":7382}],[13,{"n":5.5,"e":7564}],[12,{"n":6,"e":7400}],[11,{"n":6,"e":7404}],[10,{"n":5.5,"e":7410}],[9,{"n":6,"e":7419}],[8,{"n":4.5,"e":7424}],[7,{"n":5,"e":7429}],[6,{"n":5.5,"e":7439}],[5,{"n":6,"e":7442}],[4,{"n":5.5,"e":7451}],[3,{"n":6.5,"e":7456}],[2,{"n":4,"e":7488}],[1,{"n":5,"e":7474}]],"a":{"m":19,"a":24,"M":27,"n":10}}],[4447,{"n":"Thorsby","f":"Morten","fp":"MD","r":11,"c":120,"s":{"g":2,"s":129.5,"n":26,"a":4.98,"d":0.74,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.85,"Og":3,"Os":184.5,"On":37,"Oa":4.99,"Od":0.78,"pm":37,"Smsn":6,"Omsn":5},"p":[[-38,{"n":5,"e":5450,"s":1}],[-36,{"n":4,"e":5472}],[-35,{"n":4.5,"e":5484}],[-34,{"n":6.5,"e":5495}],[-33,{"n":6,"e":5504}],[-32,{"n":6,"e":5517}],[-31,{"n":4.5,"e":5518}],[-29,{"n":3.5,"e":5543}],[29,{"n":5,"e":7274}],[28,{"n":6,"e":7281}],[-27,{"n":5,"e":5564}],[27,{"n":4,"e":7284}],[-26,{"n":5,"e":5575,"s":1}],[26,{"n":4.5,"e":7296,"s":1}],[-25,{"n":5,"e":5583,"g":1}],[24,{"n":4.5,"e":7303}],[22,{"n":5,"e":7324}],[21,{"n":5,"e":7617}],[20,{"n":5,"e":7339}],[19,{"n":6,"e":7345}],[18,{"n":5,"e":7354,"s":1}],[17,{"n":3.5,"e":7595}],[16,{"n":4.5,"e":7367}],[15,{"n":4.5,"e":7376}],[14,{"n":5.5,"e":7382}],[13,{"n":6,"e":7564,"s":1}],[11,{"n":4.5,"e":7404}],[10,{"n":5,"e":7410}],[9,{"n":4.5,"e":7419}],[8,{"n":6,"e":7424,"g":1}],[7,{"n":4.5,"e":7429}],[6,{"n":5,"e":7439}],[5,{"n":6,"e":7442,"g":1}],[4,{"n":6.5,"e":7451}],[3,{"n":5,"e":7456}],[2,{"n":4.5,"e":7488,"s":1}],[1,{"n":4,"e":7474}]],"fo":[[7382,[{"t":"I"}]],[7274,[{"t":"Y"}]],[7296,[{"t":"Y"}]],[7339,[{"t":"Y"}]],[7367,[{"t":"Y"}]],[7404,[{"t":"Y"}]],[7424,[{"t":"Y"}]],[7439,[{"t":"Y"}]],[7451,[{"t":"Y"}]]]}],[4496,{"n":"Ferrari","f":"Alex","fp":"DC","r":9,"c":120,"s":{"s":47.5,"n":10,"a":4.75,"d":0.75,"Os":47.5,"On":10,"Oa":4.75,"Od":0.75,"pd":10},"p":[[28,{"n":5,"e":7281,"s":1}],[27,{"n":3.5,"e":7284}],[26,{"n":4,"e":7296}],[24,{"n":5,"e":7303}],[23,{"n":4,"e":7316}],[13,{"n":5,"e":7564}],[12,{"n":6,"e":7400}],[11,{"n":5,"e":7404}],[10,{"n":5.5,"e":7410}],[9,{"n":4.5,"e":7419}]],"fo":[[7564,[{"t":"I"}]],[7284,[{"t":"Y"}]],[7419,[{"t":"Y"}]]]}],[4509,{"n":"Colley","f":"Omar","fp":"DC","r":11,"c":120,"s":{"g":1,"s":108,"n":21,"a":5.14,"d":0.81,"Ss":13,"Sn":2,"Sa":6.5,"Sd":0.71,"Og":1,"Os":160.5,"On":31,"Oa":5.18,"Od":0.98,"pd":31,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":6,"e":5450,"s":1}],[-37,{"n":2.5,"e":5463}],[-35,{"n":4,"e":5484}],[-33,{"n":6,"e":5504}],[-32,{"n":5.5,"e":5517}],[-31,{"n":5,"e":5518}],[-30,{"n":7.5,"e":5535}],[-29,{"n":5.5,"e":5543}],[29,{"n":7,"e":7274}],[-28,{"n":5.5,"e":5555}],[28,{"n":6,"e":7281}],[26,{"n":4,"e":7296}],[25,{"n":5.5,"e":7301}],[-25,{"n":5,"e":5583}],[23,{"n":4.5,"e":7316}],[22,{"n":5,"e":7324}],[21,{"n":5.5,"e":7617}],[20,{"n":4.5,"e":7339}],[19,{"n":6,"e":7345}],[18,{"n":6,"e":7354}],[17,{"n":5,"e":7595}],[16,{"n":5.5,"e":7367}],[15,{"n":4.5,"e":7376}],[14,{"n":4,"e":7382}],[13,{"n":6,"e":7564}],[12,{"n":5.5,"e":7400}],[11,{"n":4.5,"e":7404}],[10,{"n":5,"e":7410,"s":1}],[8,{"n":4.5,"e":7424}],[2,{"n":5.5,"e":7488,"g":1}],[1,{"n":4,"e":7474}]],"fo":[[7274,[{"t":"Y"}]],[7296,[{"t":"Y"}]],[7316,[{"t":"Y"}]],[7382,[{"t":"Y"}]],[7404,[{"t":"Y"}]],[7564,[{"t":"Y"}]]],"a":{"m":13,"a":14,"M":19,"n":7}}],[4609,{"n":"Torregrossa","f":"Ernesto","fp":"A","r":6,"c":120,"s":{"s":17,"n":4,"a":4.25,"d":0.29,"Og":3,"Os":81.5,"On":17,"Oa":4.79,"Od":1.02,"pm":1,"pa":16,"Omsn":6},"p":[[-26,{"n":4,"e":5576,"s":1}],[-38,{"n":6,"e":5450,"g":1}],[-37,{"n":5,"e":5461}],[-36,{"n":5.5,"e":5469}],[-35,{"n":4,"e":5481}],[-34,{"n":5,"e":5488}],[-33,{"n":6,"e":5498,"g":1}],[-32,{"n":3,"e":5508}],[-31,{"n":6,"e":5526,"g":1}],[-30,{"n":7,"e":5528}],[-29,{"n":4.5,"e":5542,"s":1}],[-28,{"n":4,"e":5548}],[-27,{"n":4.5,"e":5560,"s":1}],[23,{"n":4.5,"e":7316,"s":1}],[21,{"n":4,"e":7617}],[20,{"n":4,"e":7339,"s":1}],[19,{"n":4.5,"e":7345,"s":1}]]}],[4654,{"n":"Bereszynski","f":"Bartosz","fp":"DL","r":12,"c":120,"s":{"g":1,"s":120.5,"n":24,"a":5.02,"d":0.89,"Sg":1,"Ss":72,"Sn":14,"Sa":5.14,"Sd":0.79,"Og":1,"Oao":1,"Os":176.5,"On":36,"Oa":4.9,"Od":0.94,"pd":36,"Smsn":6.5,"Omsn":6.5},"p":[[-37,{"n":3,"e":5463}],[-35,{"n":4,"e":5484}],[-34,{"n":3.5,"e":5495,"a":1}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5517}],[-31,{"n":4,"e":5518}],[-30,{"n":6,"e":5535}],[-29,{"n":6.5,"e":5543}],[29,{"n":6.5,"e":7274}],[-28,{"n":4,"e":5555}],[28,{"n":5.5,"e":7281}],[27,{"n":4.5,"e":7284}],[-27,{"n":5,"e":5564}],[-26,{"n":5,"e":5575}],[26,{"n":6.5,"e":7296,"g":1}],[25,{"n":5,"e":7301}],[-25,{"n":4.5,"e":5583}],[24,{"n":4,"e":7303}],[23,{"n":5,"e":7316,"s":1}],[22,{"n":5.5,"e":7324}],[21,{"n":4.5,"e":7617}],[20,{"n":4,"e":7339}],[19,{"n":6,"e":7345}],[18,{"n":5,"e":7354}],[17,{"n":5,"e":7595}],[16,{"n":5,"e":7367,"s":1}],[10,{"n":5,"e":7410}],[9,{"n":4.5,"e":7419}],[8,{"n":4.5,"e":7424}],[7,{"n":5,"e":7429}],[6,{"n":5,"e":7439}],[5,{"n":6,"e":7442}],[4,{"n":6,"e":7451}],[3,{"n":6,"e":7456}],[2,{"n":3,"e":7488}],[1,{"n":3.5,"e":7474}]],"fo":[[7410,[{"t":"I"}]],[7439,[{"t":"Y"}]],[7595,[{"t":"Y"}]]]}],[4747,{"n":"Ekdal","f":"Albin","fp":"MD","r":15,"c":120,"s":{"g":2,"s":144,"n":27,"a":5.33,"d":0.67,"Og":2,"Os":199.5,"On":37,"Oa":5.39,"Od":0.67,"pm":37,"Smsn":6,"Omsn":6},"p":[[-35,{"n":5,"e":5484}],[-34,{"n":6,"e":5495}],[-33,{"n":6.5,"e":5504}],[-32,{"n":5.5,"e":5517}],[-31,{"n":4.5,"e":5518}],[-30,{"n":6.5,"e":5535}],[-29,{"n":5.5,"e":5543}],[28,{"n":6,"e":7281}],[-28,{"n":5,"e":5555}],[-27,{"n":5,"e":5564}],[27,{"n":5,"e":7284}],[26,{"n":4.5,"e":7296}],[-26,{"n":6,"e":5575}],[25,{"n":5,"e":7301}],[24,{"n":5,"e":7303}],[23,{"n":5.5,"e":7316}],[22,{"n":5,"e":7324,"s":1}],[21,{"n":5,"e":7617,"s":1}],[20,{"n":5.5,"e":7339}],[19,{"n":5.5,"e":7345,"s":1}],[18,{"n":5.5,"e":7354}],[17,{"n":5,"e":7595}],[15,{"n":5,"e":7376}],[14,{"n":5,"e":7382}],[13,{"n":6,"e":7564}],[12,{"n":7.5,"e":7400,"g":1}],[11,{"n":5.5,"e":7404}],[10,{"n":6,"e":7410,"g":1,"s":1}],[9,{"n":5,"e":7419}],[8,{"n":5,"e":7424}],[7,{"n":5,"e":7429}],[6,{"n":5,"e":7439}],[5,{"n":6.5,"e":7442}],[4,{"n":5.5,"e":7451}],[3,{"n":5.5,"e":7456}],[2,{"n":5,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[7303,[{"t":"Y"}]],[7316,[{"t":"Y"}]],[7339,[{"t":"Y"}]],[7376,[{"t":"Y"}]],[7404,[{"t":"Y"}]],[7439,[{"t":"Y"}]],[7564,[{"t":"Y"}]]]}],[4752,{"n":"Regini","f":"Vasco","fp":"DC","r":3,"c":120,"s":{"ao":1,"s":8.5,"n":2,"a":4.25,"d":1.06,"Oao":1,"Os":18,"On":4,"Oa":4.5,"Od":0.71,"pd":4},"p":[[-38,{"n":5,"e":5453,"s":1}],[-28,{"n":4.5,"e":5554,"s":1}],[8,{"n":3.5,"e":7424,"a":1}],[3,{"n":5,"e":7456,"s":1}]]}],[4763,{"n":"Candreva","f":"Antonio","fp":"MO","r":22,"c":120,"s":{"g":5,"s":153,"n":26,"a":5.88,"d":0.85,"Sg":4,"Ss":100,"Sn":17,"Sa":5.88,"Sd":0.82,"Og":8,"Os":222,"On":39,"Oa":5.69,"Od":0.97,"pm":38,"pa":1,"Smsn":6,"Omsn":6},"p":[[-37,{"n":5,"e":5460}],[-36,{"n":4.5,"e":5471,"s":1}],[-35,{"n":5,"e":5479}],[-34,{"n":4,"e":5496}],[-33,{"n":7.5,"e":5503,"g":1}],[-32,{"n":4.5,"e":5512,"s":1}],[-31,{"n":7,"e":5527,"g":1}],[-30,{"n":4.5,"e":5530}],[-29,{"n":6,"e":5542,"g":1,"s":1}],[29,{"n":6.5,"e":7274}],[-28,{"n":5,"e":5554}],[28,{"n":6.5,"e":7281,"g":1}],[-27,{"n":6,"e":5562,"s":1}],[27,{"n":6.5,"e":7284}],[26,{"n":5.5,"e":7296}],[-26,{"n":4,"e":5569}],[-25,{"n":6,"e":5583}],[25,{"n":6,"e":7301}],[24,{"n":5,"e":7303,"s":1}],[23,{"n":5,"e":7316}],[22,{"n":6,"e":7324,"s":1}],[21,{"n":5,"e":7617}],[20,{"n":5,"e":7339}],[19,{"n":5.5,"e":7345}],[18,{"n":7.5,"e":7354,"g":1}],[17,{"n":6,"e":7595,"g":1}],[16,{"n":7.5,"e":7367,"g":1}],[15,{"n":5.5,"e":7376}],[14,{"n":6,"e":7382,"s":1}],[13,{"n":5,"e":7564,"s":1}],[11,{"n":4.5,"e":7404}],[10,{"n":5.5,"e":7410}],[9,{"n":7.5,"e":7419,"g":1}],[8,{"n":6.5,"e":7424}],[7,{"n":5.5,"e":7429}],[6,{"n":5,"e":7439,"s":1}],[4,{"n":6,"e":7451}],[3,{"n":7,"e":7456}],[2,{"n":5.5,"e":7488}]],"fo":[[7274,[{"t":"Y"}]]],"a":{"m":25,"a":33,"M":56,"n":11}}],[4769,{"n":"Tonelli","f":"Lorenzo","fp":"DC","r":8,"c":120,"s":{"g":1,"s":88,"n":18,"a":4.89,"d":0.88,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Og":1,"Os":111.5,"On":23,"Oa":4.85,"Od":0.82,"pd":23,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5450}],[-36,{"n":4,"e":5472}],[29,{"n":5,"e":7274}],[-28,{"n":4.5,"e":5555}],[28,{"n":5.5,"e":7281}],[-27,{"n":4.5,"e":5564}],[-26,{"n":5.5,"e":5575}],[25,{"n":6,"e":7301,"g":1}],[21,{"n":4.5,"e":7617}],[16,{"n":5.5,"e":7367}],[15,{"n":4,"e":7376}],[14,{"n":3.5,"e":7382}],[13,{"n":6,"e":7564}],[12,{"n":5.5,"e":7400}],[10,{"n":5.5,"e":7410}],[9,{"n":4.5,"e":7419,"s":1}],[7,{"n":3.5,"e":7429}],[6,{"n":5,"e":7439}],[5,{"n":5.5,"e":7442}],[4,{"n":6,"e":7451}],[3,{"n":5,"e":7456}],[2,{"n":3.5,"e":7488}],[1,{"n":4,"e":7474}]],"fo":[[7281,[{"t":"I"}]],[7376,[{"t":"Y"}]],[7382,[{"t":"Y"}]],[7400,[{"t":"Y"}]],[7419,[{"t":"Y"}]],[7429,[{"t":"Y"}]],[7442,[{"t":"Y"}]],[7617,[{"t":"Y"}]]]}],[4829,{"n":"Quagliarella","f":"Fabio","fp":"A","r":20,"c":120,"s":{"g":10,"s":138.5,"n":27,"a":5.13,"d":1.11,"Sg":3,"Ss":66,"Sn":13,"Sa":5.08,"Sd":1.04,"Og":14,"Os":181.5,"On":35,"Oa":5.19,"Od":1.28,"pa":35,"Smsn":6,"Omsn":6},"p":[[-38,{"n":3.5,"e":5450}],[-37,{"n":3.5,"e":5463}],[-36,{"n":5,"e":5472}],[-35,{"n":4.5,"e":5484,"s":1}],[-34,{"n":8,"e":5495,"g":1}],[-33,{"n":4,"e":5504,"s":1}],[-32,{"n":7,"e":5517,"g":1}],[29,{"n":7,"e":7274,"g":1}],[28,{"n":4.5,"e":7281}],[27,{"n":6.5,"e":7284,"g":1}],[-26,{"n":7.5,"e":5575,"g":2}],[26,{"n":6,"e":7296}],[25,{"n":4,"e":7301}],[24,{"n":4,"e":7303,"s":1}],[23,{"n":4.5,"e":7316}],[22,{"n":6.5,"e":7324,"g":1,"s":1}],[21,{"n":4.5,"e":7617,"s":1}],[20,{"n":4.5,"e":7339}],[19,{"n":5,"e":7345}],[18,{"n":4.5,"e":7354}],[17,{"n":4.5,"e":7595,"s":1}],[15,{"n":4,"e":7376}],[14,{"n":6.5,"e":7382,"g":1}],[13,{"n":6,"e":7564,"g":1,"s":1}],[11,{"n":4.5,"e":7404}],[10,{"n":4,"e":7410}],[9,{"n":6,"e":7419,"g":1}],[8,{"n":3.5,"e":7424}],[7,{"n":4,"e":7429}],[6,{"n":4,"e":7439}],[5,{"n":6,"e":7442,"g":1}],[4,{"n":7,"e":7451,"g":1}],[3,{"n":6.5,"e":7456,"g":1}],[2,{"n":6,"e":7488,"g":1}],[1,{"n":4.5,"e":7474,"s":1}]],"fo":[[7439,[{"t":"Y"}]]],"a":{"m":22,"a":25,"M":35,"n":11}}],[5335,{"n":"Verre","f":"Valerio","fp":"MO","r":7,"c":120,"s":{"g":2,"s":98.5,"n":20,"a":4.93,"d":0.92,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":146.5,"On":30,"Oa":4.88,"Od":0.88,"pm":17,"pa":13,"Smsn":6.5,"Omsn":6.5},"p":[[-35,{"n":4,"e":5486}],[-33,{"n":4,"e":5502}],[-32,{"n":5.5,"e":5510,"s":1}],[-31,{"n":5,"e":5527,"s":1}],[-30,{"n":4,"e":5528,"s":1}],[-29,{"n":6,"e":5547}],[29,{"n":5,"e":7274,"s":1}],[-28,{"n":5,"e":5556,"s":1}],[-27,{"n":4,"e":5567}],[-26,{"n":4.5,"e":5575}],[-25,{"n":6,"e":5587}],[25,{"n":5,"e":7301}],[24,{"n":3.5,"e":7303}],[21,{"n":5,"e":7617,"s":1}],[19,{"n":5,"e":7345,"s":1}],[18,{"n":4.5,"e":7354}],[17,{"n":5,"e":7595,"s":1}],[15,{"n":3.5,"e":7376}],[14,{"n":5,"e":7382,"s":1}],[13,{"n":5,"e":7564}],[12,{"n":6.5,"e":7400,"g":1}],[11,{"n":5.5,"e":7404}],[9,{"n":3,"e":7419}],[7,{"n":5,"e":7429,"s":1}],[6,{"n":4.5,"e":7439,"s":1}],[5,{"n":5,"e":7442,"s":1}],[4,{"n":6.5,"e":7451,"s":1}],[3,{"n":6.5,"e":7456,"g":1,"s":1}],[2,{"n":4.5,"e":7488}],[1,{"n":5,"e":7474,"s":1}]],"fo":[[7400,[{"t":"Y"}]]]}],[6133,{"n":"Léris","f":"Mehdi","fp":"MO","r":5,"c":120,"s":{"s":76.5,"n":15,"a":5.1,"d":0.28,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":118,"On":23,"Oa":5.13,"Od":0.41,"pm":23,"Omsn":6.5},"p":[[-38,{"n":6.5,"e":5450,"g":1}],[-37,{"n":5,"e":5463,"s":1}],[-36,{"n":5.5,"e":5472,"s":1}],[-30,{"n":5,"e":5535,"s":1}],[-29,{"n":5,"e":5543,"s":1}],[29,{"n":5,"e":7274,"s":1}],[-28,{"n":5,"e":5555,"s":1}],[27,{"n":5.5,"e":7284,"s":1}],[-27,{"n":5,"e":5564,"s":1}],[-25,{"n":4.5,"e":5583,"s":1}],[22,{"n":5,"e":7324,"s":1}],[17,{"n":5,"e":7595,"s":1}],[16,{"n":5,"e":7367,"s":1}],[15,{"n":5,"e":7376,"s":1}],[14,{"n":5,"e":7382,"s":1}],[12,{"n":5,"e":7400,"s":1}],[10,{"n":5,"e":7410,"s":1}],[7,{"n":5.5,"e":7429,"s":1}],[6,{"n":5,"e":7439,"s":1}],[5,{"n":5.5,"e":7442,"s":1}],[4,{"n":5.5,"e":7451,"s":1}],[3,{"n":5,"e":7456,"s":1}],[1,{"n":4.5,"e":7474}]]}],[6179,{"n":"Letica","f":"Karlo","fp":"G","r":5,"c":120,"s":{"Os":44,"On":10,"Oa":4.4,"Od":1.54,"pg":10},"p":[[-37,{"n":4,"e":5467}],[-35,{"n":2,"e":5483}],[-34,{"n":4,"e":5488}],[-33,{"n":3.5,"e":5503}],[-32,{"n":7,"e":5511}],[-31,{"n":3,"e":5525}],[-30,{"n":4,"e":5535}],[-29,{"n":6.5,"e":5545}],[-28,{"n":4.5,"e":5553}],[-27,{"n":5.5,"e":5565}]]}],[6204,{"n":"Avogadri","f":"Lorenzo","fp":"G","r":1,"c":120}],[6218,{"n":"Kaique Rocha","f":"","fp":"DL","r":1,"c":120}],[6521,{"n":"Askildsen","f":"Kristoffer","fp":"MD","r":3,"c":120,"s":{"s":20,"n":4,"a":5,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":39,"On":8,"Oa":4.88,"Od":0.88,"pm":8,"Omsn":6},"p":[[-38,{"n":3,"e":5450,"s":1}],[-37,{"n":6,"e":5463,"g":1,"s":1}],[-30,{"n":5.5,"e":5535,"s":1}],[29,{"n":5,"e":7274,"s":1}],[-25,{"n":4.5,"e":5583,"s":1}],[18,{"n":5,"e":7354,"s":1}],[16,{"n":5,"e":7367,"s":1}],[3,{"n":5,"e":7456,"s":1}]],"fo":[[7354,[{"t":"Y"}]],[7367,[{"t":"Y"}]]]}],[6523,{"n":"La Gumina","f":"Antonino","fp":"A","r":5,"c":120,"s":{"s":32.5,"n":7,"a":4.64,"d":0.8,"Os":49.5,"On":11,"Oa":4.5,"Od":0.71,"pa":11},"p":[[-31,{"n":4,"e":5518,"s":1}],[-30,{"n":5,"e":5535,"s":1}],[-28,{"n":4,"e":5555}],[-25,{"n":4,"e":5583}],[24,{"n":4,"e":7303}],[16,{"n":4.5,"e":7367,"s":1}],[15,{"n":4.5,"e":7376,"s":1}],[13,{"n":6,"e":7564}],[12,{"n":5.5,"e":7400}],[10,{"n":4,"e":7410,"s":1}],[7,{"n":4,"e":7429,"s":1}]]}],[7155,{"n":"Damsgaard","f":"Mikkel","fp":"MO","r":11,"c":120,"s":{"g":2,"s":142,"n":27,"a":5.26,"d":0.87,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.87,"Og":2,"Os":142,"On":27,"Oa":5.26,"Od":0.87,"pm":24,"pa":3,"Smsn":7,"Omsn":7},"p":[[29,{"n":6.5,"e":7274}],[28,{"n":5,"e":7281,"s":1}],[27,{"n":4.5,"e":7284}],[26,{"n":5,"e":7296,"s":1}],[24,{"n":4.5,"e":7303}],[23,{"n":5,"e":7316,"s":1}],[22,{"n":6,"e":7324}],[21,{"n":6.5,"e":7617,"s":1}],[20,{"n":4.5,"e":7339,"s":1}],[19,{"n":5,"e":7345,"s":1}],[18,{"n":5,"e":7354}],[17,{"n":3.5,"e":7595}],[16,{"n":6,"e":7367}],[15,{"n":5.5,"e":7376,"s":1}],[14,{"n":4,"e":7382}],[13,{"n":7,"e":7564,"g":1}],[12,{"n":5,"e":7400}],[11,{"n":5,"e":7404,"s":1}],[10,{"n":5.5,"e":7410,"s":1}],[9,{"n":5,"e":7419,"s":1}],[8,{"n":5,"e":7424}],[7,{"n":5,"e":7429,"s":1}],[6,{"n":4.5,"e":7439}],[5,{"n":6.5,"e":7442}],[4,{"n":7,"e":7451,"g":1,"s":1}],[3,{"n":5,"e":7456}],[1,{"n":5,"e":7474,"s":1}]],"fo":[[7324,[{"t":"Y"}]],[7339,[{"t":"Y"}]],[7400,[{"t":"Y"}]]]}],[7191,{"n":"Prelec","f":"Nik","fp":"A","r":1,"c":120}],[7200,{"n":"Ravaglia","f":"Nicola","fp":"G","r":5,"c":120}],[99,{"n":"Lopez","f":"Maxime","fp":"MO","r":11,"c":123,"s":{"g":1,"s":103,"n":20,"a":5.15,"d":1.15,"Ss":7,"Sn":1,"Sa":7,"Og":1,"Os":125.5,"On":25,"Oa":5.02,"Od":1.09,"pm":23,"pa":2,"Smsn":8,"Omsn":8},"p":[[27,{"n":5,"e":7289,"s":1}],[26,{"n":4,"e":7297}],[7,{"n":6,"e":7434}],[6,{"n":5,"e":6157,"s":1}],[5,{"n":5,"e":6163,"s":1}],[29,{"n":7,"e":7275}],[-28,{"n":5,"e":3651,"s":1}],[28,{"n":null,"e":7278,"d":1}],[25,{"n":5.5,"e":7309}],[23,{"n":6.5,"e":7319}],[22,{"n":5,"e":7624}],[20,{"n":5,"e":7336,"s":1}],[19,{"n":5,"e":7343,"s":1}],[18,{"n":4,"e":7355}],[17,{"n":5,"e":7358,"s":1}],[15,{"n":3.5,"e":7370}],[13,{"n":4.5,"e":7389}],[11,{"n":5.5,"e":7551}],[10,{"n":4,"e":7409}],[9,{"n":4,"e":7418}],[8,{"n":6,"e":7426}],[6,{"n":8,"e":7437,"g":1}],[5,{"n":4,"e":7448}],[4,{"n":5.5,"e":7452,"s":1}],[3,{"n":4,"e":6187}],[1,{"n":3.5,"e":6198}]],"fo":[[7336,[{"t":"Y"}]],[7355,[{"t":"Y"}]],[7409,[{"t":"Y"}]],[7418,[{"t":"Y"}]],[7426,[{"t":"Y"}]]]}],[907,{"n":"Obiang","f":"Pedro","fp":"MD","r":9,"c":123,"s":{"s":121,"n":24,"a":5.04,"d":0.49,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.29,"Os":141,"On":28,"Oa":5.04,"Od":0.47,"pm":28},"p":[[24,{"n":5.5,"e":7306}],[21,{"n":6,"e":7616}],[-37,{"n":5,"e":5464,"s":1}],[29,{"n":5.5,"e":7275}],[28,{"n":null,"e":7278,"d":1}],[-28,{"n":5.5,"e":5556,"s":1}],[-27,{"n":4.5,"e":5562}],[27,{"n":5.5,"e":7289}],[26,{"n":5,"e":7297,"s":1}],[25,{"n":5,"e":7309,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[22,{"n":5,"e":7624,"s":1}],[20,{"n":5.5,"e":7336}],[19,{"n":4,"e":7343}],[17,{"n":4,"e":7358}],[16,{"n":5.5,"e":7368,"s":1}],[15,{"n":4.5,"e":7370,"s":1}],[14,{"n":5,"e":7382,"s":1}],[13,{"n":5,"e":7389,"s":1}],[12,{"n":5,"e":7391}],[10,{"n":5.5,"e":7409}],[9,{"n":5.5,"e":7418,"s":1}],[8,{"n":5,"e":7426,"s":1}],[7,{"n":4.5,"e":7434,"s":1}],[6,{"n":5,"e":7437,"s":1}],[4,{"n":5,"e":7452,"s":1}],[3,{"n":5,"e":7485,"s":1}],[2,{"n":4.5,"e":7489}],[1,{"n":5,"e":7473}]],"fo":[[7358,[{"t":"R"}]],[7336,[{"t":"Y"}]],[7343,[{"t":"Y"}]],[7409,[{"t":"Y"}]]]}],[1382,{"n":"Boga","f":"Jeremie","fp":"MO","r":18,"c":123,"s":{"g":3,"s":95,"n":18,"a":5.28,"d":1.23,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":7,"Os":157,"On":29,"Oa":5.41,"Od":1.3,"pm":17,"pa":12,"Smsn":7,"Omsn":7},"p":[[-35,{"n":5,"e":5485,"s":1}],[-34,{"n":5,"e":5489}],[-33,{"n":5,"e":5505}],[-32,{"n":5.5,"e":5514}],[-31,{"n":4,"e":5519,"s":1}],[-30,{"n":7,"e":5536,"g":1}],[-29,{"n":6,"e":5540}],[29,{"n":4.5,"e":7275}],[-28,{"n":8,"e":5556,"g":2,"s":1}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4,"e":5562}],[-26,{"n":8,"e":5576,"g":1}],[-25,{"n":4.5,"e":5578}],[24,{"n":4,"e":7306,"s":1}],[21,{"n":5,"e":7616}],[20,{"n":7,"e":7336,"g":1}],[19,{"n":4.5,"e":7343,"s":1}],[17,{"n":4.5,"e":7358,"s":1}],[16,{"n":8,"e":7368,"g":1}],[15,{"n":3.5,"e":7370}],[14,{"n":6,"e":7382}],[13,{"n":5,"e":7389,"s":1}],[12,{"n":6,"e":7391}],[11,{"n":4.5,"e":7551,"s":1}],[10,{"n":5.5,"e":7409}],[9,{"n":5,"e":7418}],[8,{"n":7.5,"e":7426,"g":1}],[7,{"n":5,"e":7434}],[6,{"n":5.5,"e":7437}],[5,{"n":4,"e":7448,"s":1}]],"fo":[[7616,[{"t":"I"}]]],"a":{"m":23,"a":32,"M":41,"n":8}}],[1547,{"n":"Marlon Santos","f":"","fp":"DC","r":10,"c":123,"s":{"s":81,"n":17,"a":4.76,"d":0.69,"Ss":44,"Sn":10,"Sa":4.4,"Sd":0.52,"Os":124.5,"On":26,"Oa":4.79,"Od":0.78,"pd":26},"p":[[-37,{"n":6,"e":5464}],[-36,{"n":4,"e":5474}],[-35,{"n":4,"e":5485}],[-34,{"n":5.5,"e":5489}],[-33,{"n":5.5,"e":5505,"s":1}],[-32,{"n":5.5,"e":5514}],[-30,{"n":5,"e":5536}],[29,{"n":4,"e":7275}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7289,"s":1}],[-26,{"n":5,"e":5576,"s":1}],[26,{"n":4,"e":7297}],[25,{"n":4,"e":7309}],[-25,{"n":3,"e":5578}],[24,{"n":3.5,"e":7306}],[23,{"n":5,"e":7319}],[22,{"n":4.5,"e":7624}],[21,{"n":4.5,"e":7616}],[20,{"n":5,"e":7336}],[19,{"n":4.5,"e":7343}],[13,{"n":5,"e":7389}],[11,{"n":6,"e":7551}],[10,{"n":5.5,"e":7409}],[9,{"n":4.5,"e":7418,"s":1}],[8,{"n":5,"e":7426,"s":1}],[7,{"n":6,"e":7434}],[6,{"n":5,"e":7437,"s":1}]],"fo":[[7309,[{"t":"Y"}]],[7343,[{"t":"Y"}]],[7426,[{"t":"Y"}]]]}],[4214,{"n":"Raspadori","f":"Giacomo","fp":"A","r":8,"c":123,"s":{"g":2,"s":90,"n":19,"a":4.74,"d":0.92,"Sg":1,"Ss":7,"Sn":1,"Sa":7,"Og":4,"Os":125.5,"On":26,"Oa":4.83,"Od":0.97,"pm":2,"pa":24,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5457,"s":1}],[-37,{"n":6,"e":5464,"g":1,"s":1}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":3.5,"e":5485}],[-34,{"n":4.5,"e":5489,"s":1}],[-33,{"n":4.5,"e":5505,"s":1}],[-32,{"n":7,"e":5514,"g":1}],[29,{"n":7,"e":7275,"g":1}],[28,{"n":null,"e":7278,"d":1}],[26,{"n":3.5,"e":7297}],[23,{"n":4.5,"e":7319,"s":1}],[21,{"n":4.5,"e":7616,"s":1}],[20,{"n":4.5,"e":7336,"s":1}],[19,{"n":4.5,"e":7343,"s":1}],[18,{"n":4,"e":7355,"s":1}],[16,{"n":6,"e":7368,"g":1,"s":1}],[15,{"n":4.5,"e":7370,"s":1}],[14,{"n":4.5,"e":7382,"s":1}],[12,{"n":4.5,"e":7391}],[11,{"n":4,"e":7551,"s":1}],[10,{"n":4.5,"e":7409,"s":1}],[9,{"n":3.5,"e":7418}],[8,{"n":4.5,"e":7426}],[7,{"n":4.5,"e":7434,"s":1}],[6,{"n":6.5,"e":7437}],[5,{"n":5,"e":7448}],[4,{"n":5.5,"e":7452,"s":1}]],"fo":[[7409,[{"t":"Y"}]]]}],[4241,{"n":"Turati","f":"Stefano","fp":"G","r":3,"c":123,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]],"fo":[[7275,[{"t":"Y"}]]]}],[4266,{"n":"Traore","f":"Hamed Junior","fp":"MO","r":12,"c":123,"s":{"g":4,"s":136,"n":26,"a":5.23,"d":1.02,"Sg":4,"Ss":91,"Sn":17,"Sa":5.35,"Sd":1.25,"Og":5,"Os":190.5,"On":37,"Oa":5.15,"Od":0.99,"pm":33,"pa":4,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":7.5,"e":5464,"g":1}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5,"e":5485,"s":1}],[-34,{"n":5,"e":5489}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":4.5,"e":5514}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":4,"e":5536}],[29,{"n":7,"e":7275,"g":1}],[-29,{"n":4,"e":5540}],[28,{"n":null,"e":7278,"d":1}],[-28,{"n":5,"e":5556,"s":1}],[27,{"n":6,"e":7289,"g":1,"s":1}],[26,{"n":3,"e":7297}],[25,{"n":4.5,"e":7309,"s":1}],[24,{"n":5.5,"e":7306,"s":1}],[23,{"n":5,"e":7319,"s":1}],[22,{"n":5.5,"e":7624,"s":1}],[21,{"n":5,"e":7616}],[20,{"n":6,"e":7336}],[19,{"n":4,"e":7343}],[18,{"n":5,"e":7355}],[17,{"n":7,"e":7358}],[16,{"n":5.5,"e":7368,"s":1}],[15,{"n":3.5,"e":7370}],[14,{"n":7.5,"e":7382,"g":1}],[13,{"n":4.5,"e":7389}],[12,{"n":6.5,"e":7391,"g":1}],[10,{"n":5,"e":7409,"s":1}],[9,{"n":5,"e":7418,"s":1}],[8,{"n":5,"e":7426,"s":1}],[7,{"n":4.5,"e":7434}],[6,{"n":5,"e":7437}],[5,{"n":5,"e":7448,"s":1}],[4,{"n":5.5,"e":7452}],[3,{"n":5,"e":7485,"s":1}],[2,{"n":5,"e":7489,"s":1}]],"fo":[[7289,[{"t":"Y"}]],[7319,[{"t":"Y"}]],[7391,[{"t":"Y"}]],[7434,[{"t":"Y"}]]]}],[4349,{"n":"Rogerio","f":"","fp":"DL","r":10,"c":123,"s":{"s":96,"n":20,"a":4.8,"d":0.77,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":152.5,"On":31,"Oa":4.92,"Od":0.72,"pd":29,"pm":2,"Omsn":5.5},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":6,"e":5464}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5,"e":5485}],[-34,{"n":4.5,"e":5489}],[-32,{"n":5.5,"e":5514,"s":1}],[-31,{"n":5.5,"e":5519}],[-29,{"n":5,"e":5540}],[29,{"n":5,"e":7275}],[-28,{"n":5.5,"e":5556,"g":1,"s":1}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4,"e":5562}],[-26,{"n":5.5,"e":5576}],[25,{"n":4.5,"e":7309}],[24,{"n":3.5,"e":7306}],[23,{"n":5,"e":7319}],[22,{"n":5,"e":7624}],[21,{"n":4,"e":7616}],[20,{"n":5,"e":7336}],[19,{"n":4.5,"e":7343}],[18,{"n":5,"e":7355,"s":1}],[16,{"n":6,"e":7368}],[13,{"n":3.5,"e":7389}],[12,{"n":5.5,"e":7391}],[11,{"n":5,"e":7551,"s":1}],[10,{"n":5,"e":7409}],[9,{"n":3.5,"e":7418}],[8,{"n":5,"e":7426}],[7,{"n":5,"e":7434}],[6,{"n":6.5,"e":7437}],[5,{"n":4.5,"e":7448,"s":1}],[1,{"n":5,"e":7473}]],"fo":[[7275,[{"t":"Y"}]],[7336,[{"t":"Y"}]],[7355,[{"t":"Y"}]],[7418,[{"t":"Y"}]]]}],[4463,{"n":"Romagna","f":"Filippo","fp":"DC","r":1,"c":123,"s":{"Os":6,"On":1,"Oa":6,"pd":1},"p":[[28,{"n":null,"e":7278,"d":1}],[-26,{"n":6,"e":5576}]]}],[4464,{"n":"Locatelli","f":"Manuel","fp":"MD","r":24,"c":123,"s":{"g":3,"s":142,"n":25,"a":5.68,"d":0.92,"Og":3,"Os":221,"On":39,"Oa":5.67,"Od":0.98,"pm":39,"Smsn":6,"Omsn":6},"p":[[-38,{"n":4.5,"e":5457}],[-37,{"n":6.5,"e":5464}],[-36,{"n":5,"e":5474}],[-35,{"n":5.5,"e":5485}],[-34,{"n":7,"e":5489}],[-33,{"n":5.5,"e":5505}],[-32,{"n":5.5,"e":5514}],[-31,{"n":6,"e":5519}],[-30,{"n":7,"e":5536}],[-29,{"n":6,"e":5540}],[-28,{"n":5.5,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":6,"e":7289,"g":1}],[-27,{"n":5,"e":5562,"s":1}],[26,{"n":5,"e":7297}],[-26,{"n":7,"e":5576}],[-25,{"n":3,"e":5578}],[25,{"n":5.5,"e":7309}],[24,{"n":4.5,"e":7306,"s":1}],[23,{"n":7,"e":7319}],[22,{"n":7.5,"e":7624}],[21,{"n":4,"e":7616}],[20,{"n":5.5,"e":7336}],[19,{"n":5,"e":7343}],[17,{"n":6,"e":7358}],[16,{"n":7,"e":7368}],[15,{"n":4.5,"e":7370}],[14,{"n":5.5,"e":7382}],[12,{"n":5,"e":7391}],[11,{"n":6,"e":7551}],[10,{"n":4.5,"e":7409}],[9,{"n":5,"e":7418}],[8,{"n":6.5,"e":7426}],[7,{"n":6,"e":7434}],[6,{"n":7,"e":7437,"g":1}],[5,{"n":5.5,"e":7448}],[4,{"n":5.5,"e":7452}],[3,{"n":7,"e":7485,"g":1}],[2,{"n":5.5,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[7289,[{"t":"Y"}]],[7382,[{"t":"Y"}]],[7391,[{"t":"Y"}]],[7418,[{"t":"Y"}]],[7426,[{"t":"Y"}]],[7437,[{"t":"Y"}]],[7452,[{"t":"Y"}]],[7616,[{"t":"Y"}]]]}],[4499,{"n":"Toljan","f":"Jeremy","fp":"DL","r":9,"c":123,"s":{"s":82,"n":17,"a":4.82,"d":0.56,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.48,"Os":116,"On":24,"Oa":4.83,"Od":0.65,"pd":22,"pm":2},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":6.5,"e":5464}],[-36,{"n":4.5,"e":5474,"s":1}],[-32,{"n":4.5,"e":5514}],[-30,{"n":5,"e":5536,"s":1}],[29,{"n":5,"e":7275}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7289}],[-26,{"n":5,"e":5576}],[26,{"n":4,"e":7297}],[-25,{"n":3.5,"e":5578}],[25,{"n":5,"e":7309,"s":1}],[24,{"n":4.5,"e":7306}],[23,{"n":5.5,"e":7319,"s":1}],[22,{"n":5,"e":7624,"s":1}],[18,{"n":4.5,"e":7355}],[17,{"n":4,"e":7358,"s":1}],[13,{"n":4,"e":7389}],[12,{"n":5.5,"e":7391}],[11,{"n":5,"e":7551}],[9,{"n":4,"e":7418}],[8,{"n":5,"e":7426}],[3,{"n":5.5,"e":7485}],[2,{"n":5,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[7306,[{"t":"Y"}]],[7391,[{"t":"Y"}]]]}],[4512,{"n":"Ferrari","f":"Gian Marco","fp":"DC","r":10,"c":123,"s":{"s":122.5,"n":25,"a":4.9,"d":1.28,"Os":181,"On":36,"Oa":5.03,"Od":1.18,"pd":36},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":6,"e":5464}],[-36,{"n":4,"e":5474}],[-34,{"n":5,"e":5489}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":7,"e":5514}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":6,"e":5536}],[-29,{"n":5.5,"e":5540}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":4,"e":5562}],[27,{"n":7,"e":7289}],[26,{"n":3,"e":7297}],[-26,{"n":6,"e":5576}],[25,{"n":4.5,"e":7309}],[24,{"n":3.5,"e":7306}],[23,{"n":5,"e":7319}],[21,{"n":3,"e":7616}],[20,{"n":5.5,"e":7336}],[19,{"n":3.5,"e":7343}],[18,{"n":6,"e":7355}],[17,{"n":4,"e":7358}],[16,{"n":5.5,"e":7368}],[15,{"n":2.5,"e":7370}],[14,{"n":5,"e":7382}],[13,{"n":4.5,"e":7389}],[11,{"n":6,"e":7551}],[10,{"n":5.5,"e":7409}],[9,{"n":3.5,"e":7418}],[8,{"n":5,"e":7426}],[7,{"n":5.5,"e":7434}],[6,{"n":6,"e":7437}],[5,{"n":4,"e":7448}],[4,{"n":5,"e":7452}],[3,{"n":7,"e":7485}],[2,{"n":7,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[7343,[{"t":"Y"}]],[7358,[{"t":"Y"}]],[7434,[{"t":"Y"}]],[7448,[{"t":"Y"}]],[7616,[{"t":"Y"}]]]}],[4577,{"n":"Berardi","f":"Domenico","fp":"A","r":35,"c":123,"s":{"g":11,"s":136.5,"n":22,"a":6.2,"d":1.29,"Og":16,"Os":211,"On":34,"Oa":6.21,"Od":1.29,"pm":31,"pa":3,"Smsn":7,"Omsn":7},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":8.5,"e":5464,"g":1}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5.5,"e":5485}],[-33,{"n":8,"e":5505,"g":1}],[-31,{"n":7.5,"e":5519,"g":1}],[-30,{"n":7,"e":5536,"g":1}],[-29,{"n":5,"e":5540,"s":1}],[-28,{"n":6,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":6.5,"e":7289}],[-27,{"n":7,"e":5562,"g":1}],[26,{"n":6,"e":7297}],[-26,{"n":5,"e":5576}],[-25,{"n":5,"e":5578}],[25,{"n":7,"e":7309,"g":1}],[24,{"n":7,"e":7306,"g":2}],[23,{"n":6,"e":7319}],[22,{"n":7,"e":7624,"g":1}],[21,{"n":4.5,"e":7616,"s":1}],[16,{"n":5.5,"e":7368}],[15,{"n":3,"e":7370}],[14,{"n":7,"e":7382,"g":1}],[13,{"n":7,"e":7389,"g":1}],[12,{"n":7,"e":7391}],[11,{"n":7,"e":7551,"g":1}],[10,{"n":5.5,"e":7409}],[9,{"n":3.5,"e":7418}],[8,{"n":7.5,"e":7426,"g":1}],[7,{"n":5,"e":7434}],[5,{"n":6,"e":7448}],[4,{"n":7.5,"e":7452,"g":1}],[3,{"n":8,"e":7485,"g":1}],[2,{"n":7,"e":7489,"g":1}],[1,{"n":6,"e":7473}]],"fo":[[7368,[{"t":"I"}]],[7389,[{"t":"Y"}]],[7391,[{"t":"Y"}]],[7448,[{"t":"Y"}]],[7551,[{"t":"Y"}]]]}],[4624,{"n":"Defrel","f":"Gregoire","fp":"A","r":8,"c":123,"s":{"g":2,"s":99.5,"n":20,"a":4.97,"d":0.82,"Og":4,"Os":132,"On":26,"Oa":5.08,"Od":0.89,"pm":10,"pa":16,"Smsn":6,"Omsn":6},"p":[[-31,{"n":6,"e":5519}],[-29,{"n":7,"e":5540,"g":2}],[28,{"n":null,"e":7278,"d":1}],[-28,{"n":5,"e":5556}],[-27,{"n":4,"e":5562,"s":1}],[27,{"n":5.5,"e":7289}],[-26,{"n":6,"e":5576,"s":1}],[26,{"n":4.5,"e":7297,"s":1}],[-25,{"n":4.5,"e":5578}],[25,{"n":4.5,"e":7309}],[24,{"n":5,"e":7306}],[23,{"n":5,"e":7319,"s":1}],[22,{"n":4.5,"e":7624,"s":1}],[21,{"n":4,"e":7616,"s":1}],[20,{"n":4,"e":7336,"s":1}],[19,{"n":5,"e":7343}],[18,{"n":5.5,"e":7355}],[17,{"n":7,"e":7358,"g":1}],[16,{"n":5,"e":7368,"s":1}],[15,{"n":5.5,"e":7370,"s":1}],[13,{"n":3.5,"e":7389}],[12,{"n":4.5,"e":7391,"s":1}],[7,{"n":4.5,"e":7434,"s":1}],[6,{"n":4.5,"e":7437,"s":1}],[3,{"n":6,"e":7485}],[2,{"n":6,"e":7489,"g":1}],[1,{"n":5.5,"e":7473,"s":1}]],"fo":[[7306,[{"t":"Y"}]]]}],[4670,{"n":"Bourabia","f":"Mehdi","fp":"MD","r":5,"c":123,"s":{"g":1,"s":61.5,"n":12,"a":5.13,"d":0.57,"Og":2,"Oao":1,"Os":122,"On":23,"Oa":5.3,"Od":1,"pm":23,"Smsn":6,"Omsn":5},"p":[[-38,{"n":6,"e":5457}],[-37,{"n":7.5,"e":5464}],[-35,{"n":3.5,"e":5485}],[-33,{"n":5,"e":5505,"s":1}],[-32,{"n":5.5,"e":5514}],[-31,{"n":5,"e":5519,"s":1}],[-30,{"n":5.5,"e":5536}],[-29,{"n":5.5,"e":5540,"s":1}],[-28,{"n":4,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[-26,{"n":8,"e":5576}],[-25,{"n":5,"e":5578,"g":1,"a":1}],[16,{"n":5,"e":7368,"s":1}],[15,{"n":5,"e":7370,"s":1}],[13,{"n":5.5,"e":7389}],[12,{"n":5,"e":7391,"s":1}],[11,{"n":6,"e":7551}],[10,{"n":5,"e":7409,"s":1}],[6,{"n":5,"e":7437,"s":1}],[5,{"n":5,"e":7448,"s":1}],[4,{"n":5.5,"e":7452}],[3,{"n":4,"e":7485}],[2,{"n":4.5,"e":7489,"s":1}],[1,{"n":6,"e":7473,"g":1,"s":1}]],"fo":[[7368,[{"t":"Y"}]],[7437,[{"t":"Y"}]]]}],[4693,{"n":"Djuricic","f":"Filip","fp":"MO","r":21,"c":123,"s":{"g":5,"s":132.5,"n":24,"a":5.52,"d":0.91,"Sg":2,"Ss":70.5,"Sn":13,"Sa":5.42,"Sd":0.7,"Og":6,"Os":203.5,"On":36,"Oa":5.65,"Od":0.97,"pm":34,"pa":2,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":5,"e":5457}],[-37,{"n":7,"e":5464}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5,"e":5485,"s":1}],[-34,{"n":5.5,"e":5489}],[-33,{"n":6.5,"e":5505,"g":1}],[-32,{"n":5.5,"e":5514}],[-30,{"n":5,"e":5536,"s":1}],[-29,{"n":8,"e":5540}],[29,{"n":6,"e":7275}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":6.5,"e":7289,"g":1}],[-27,{"n":6.5,"e":5562}],[-26,{"n":7,"e":5576}],[26,{"n":5.5,"e":7297,"s":1}],[25,{"n":5.5,"e":7309}],[-25,{"n":5.5,"e":5578,"s":1}],[24,{"n":4.5,"e":7306}],[23,{"n":6,"e":7319}],[22,{"n":5.5,"e":7624}],[21,{"n":4.5,"e":7616}],[20,{"n":4.5,"e":7336}],[19,{"n":6,"e":7343}],[18,{"n":5.5,"e":7355,"g":1,"s":1}],[17,{"n":6,"e":7358}],[16,{"n":4.5,"e":7368}],[13,{"n":4.5,"e":7389}],[12,{"n":5,"e":7391,"s":1}],[11,{"n":5,"e":7551}],[10,{"n":4.5,"e":7409}],[9,{"n":4.5,"e":7418}],[8,{"n":5,"e":7426}],[5,{"n":7,"e":7448,"g":1}],[4,{"n":7,"e":7452,"g":1}],[3,{"n":5.5,"e":7485}],[2,{"n":7.5,"e":7489,"g":1}],[1,{"n":6.5,"e":7473}]],"fo":[[7275,[{"t":"Y"}]],[7289,[{"t":"Y"}]],[7309,[{"t":"Y"}]]],"a":{"m":24,"a":30,"M":41,"n":6}}],[4694,{"n":"Chiriches","f":"Vlad","fp":"DC","r":6,"c":123,"s":{"g":2,"ao":1,"s":79,"n":15,"a":5.27,"d":0.92,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":2,"Oao":1,"Os":105.5,"On":20,"Oa":5.28,"Od":0.83,"pd":20,"Smsn":4.5,"Omsn":4.5},"p":[[-33,{"n":4.5,"e":5505}],[-31,{"n":6,"e":5519}],[-29,{"n":5,"e":5540}],[29,{"n":5,"e":7275}],[-28,{"n":5.5,"e":5556,"s":1}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5.5,"e":5562}],[27,{"n":4.5,"e":7289}],[18,{"n":5.5,"e":7355}],[17,{"n":4.5,"e":7358}],[15,{"n":4.5,"e":7370,"g":1}],[14,{"n":5,"e":7382}],[12,{"n":6,"e":7391}],[9,{"n":3.5,"e":7418,"a":1}],[8,{"n":7.5,"e":7426}],[6,{"n":6,"e":7437}],[5,{"n":6,"e":7448,"g":1}],[4,{"n":5,"e":7452}],[3,{"n":5,"e":7485}],[2,{"n":5.5,"e":7489}],[1,{"n":5.5,"e":7473}]],"fo":[[7418,[{"t":"I"}]],[7437,[{"t":"I"}]],[7355,[{"t":"Y"}]],[7370,[{"t":"Y"}]],[7382,[{"t":"Y"}]]]}],[4746,{"n":"Caputo","f":"Francesco","fp":"A","r":32,"c":123,"s":{"g":11,"s":120.5,"n":22,"a":5.48,"d":1.31,"Og":21,"Os":205.5,"On":36,"Oa":5.71,"Od":1.33,"pa":36,"Smsn":6,"Omsn":5.5},"p":[[-38,{"n":4.5,"e":5457}],[-37,{"n":8,"e":5464,"g":2}],[-36,{"n":4.5,"e":5474}],[-35,{"n":5.5,"e":5485,"g":1}],[-34,{"n":6,"e":5489,"g":1}],[-33,{"n":8,"e":5505,"g":1}],[-32,{"n":7,"e":5514,"g":1,"s":1}],[-31,{"n":5,"e":5519}],[-30,{"n":6.5,"e":5536,"g":1}],[-29,{"n":4.5,"e":5540,"s":1}],[28,{"n":null,"e":7278,"d":1}],[-28,{"n":6,"e":5556}],[-27,{"n":6.5,"e":5562,"g":1}],[27,{"n":5,"e":7289}],[-26,{"n":8,"e":5576,"g":2}],[26,{"n":4,"e":7297,"s":1}],[25,{"n":7,"e":7309,"g":1}],[-25,{"n":5,"e":5578}],[24,{"n":6,"e":7306}],[23,{"n":6.5,"e":7319,"g":1}],[22,{"n":6,"e":7624,"g":1}],[21,{"n":6,"e":7616,"g":1}],[20,{"n":4.5,"e":7336}],[19,{"n":6,"e":7343,"g":1}],[18,{"n":4,"e":7355}],[17,{"n":5,"e":7358}],[16,{"n":4,"e":7368}],[15,{"n":4,"e":7370}],[14,{"n":7,"e":7382,"g":1}],[13,{"n":4,"e":7389,"s":1}],[12,{"n":4.5,"e":7391,"s":1}],[7,{"n":4,"e":7434}],[5,{"n":6,"e":7448,"g":1}],[4,{"n":7.5,"e":7452,"g":1}],[3,{"n":7,"e":7485,"g":2}],[2,{"n":8,"e":7489,"g":1}],[1,{"n":4.5,"e":7473}]],"fo":[[7382,[{"t":"Y"}]]]}],[4789,{"n":"Peluso","f":"Federico","fp":"DL","r":5,"c":123,"s":{"s":34,"n":7,"a":4.86,"d":0.38,"Ss":5,"Sn":1,"Sa":5,"Os":64.5,"On":14,"Oa":4.61,"Od":0.66,"pd":14},"p":[[-38,{"n":4.5,"e":5457}],[-35,{"n":4.5,"e":5485}],[-33,{"n":4,"e":5505}],[-31,{"n":5.5,"e":5519}],[-30,{"n":5,"e":5536,"s":1}],[29,{"n":5,"e":7275,"s":1}],[-28,{"n":4,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[-25,{"n":3,"e":5578}],[24,{"n":4,"e":7306,"s":1}],[22,{"n":5,"e":7624}],[14,{"n":5,"e":7382,"s":1}],[12,{"n":5,"e":7391}],[4,{"n":5,"e":7452,"s":1}],[3,{"n":5,"e":7485,"s":1}]],"fo":[[7624,[{"t":"Y"}]]]}],[4813,{"n":"Consigli","f":"Andrea","fp":"G","r":14,"c":123,"s":{"s":147,"n":27,"a":5.44,"d":1.15,"Ss":95,"Sn":18,"Sa":5.28,"Sd":1.17,"Os":205.5,"On":39,"Oa":5.27,"Od":1.2,"pg":39},"p":[[-38,{"n":4,"e":5457}],[-37,{"n":6,"e":5464}],[-36,{"n":5.5,"e":5474}],[-35,{"n":6,"e":5485}],[-33,{"n":3.5,"e":5505}],[-32,{"n":4.5,"e":5514}],[-31,{"n":4.5,"e":5519}],[-30,{"n":5,"e":5536}],[29,{"n":6.5,"e":7275}],[-28,{"n":3,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[27,{"n":5.5,"e":7289}],[-27,{"n":6,"e":5562}],[-26,{"n":7,"e":5576}],[26,{"n":5,"e":7297}],[25,{"n":4.5,"e":7309}],[-25,{"n":3.5,"e":5578}],[24,{"n":6.5,"e":7306}],[23,{"n":4.5,"e":7319}],[22,{"n":6,"e":7624}],[21,{"n":4.5,"e":7616}],[20,{"n":5.5,"e":7336}],[19,{"n":5,"e":7343}],[18,{"n":5,"e":7355}],[17,{"n":6,"e":7358}],[16,{"n":5,"e":7368}],[15,{"n":2,"e":7370}],[14,{"n":6,"e":7382}],[13,{"n":4.5,"e":7389}],[12,{"n":5.5,"e":7391}],[11,{"n":7.5,"e":7551}],[9,{"n":3.5,"e":7418}],[8,{"n":6.5,"e":7426}],[7,{"n":5.5,"e":7434}],[6,{"n":7.5,"e":7437}],[5,{"n":6.5,"e":7448}],[4,{"n":5.5,"e":7452}],[3,{"n":6,"e":7485}],[2,{"n":6,"e":7489}],[1,{"n":5,"e":7473}]]}],[4825,{"n":"Magnanelli","f":"Francesco","fp":"MD","r":7,"c":123,"s":{"s":39.5,"n":8,"a":4.94,"d":0.56,"Os":77,"On":15,"Oa":5.13,"Od":0.55,"pm":15},"p":[[-36,{"n":5,"e":5474}],[-35,{"n":5,"e":5485,"s":1}],[-33,{"n":5,"e":5505}],[-31,{"n":6,"e":5519}],[-30,{"n":5,"e":5536,"s":1}],[-29,{"n":6,"e":5540}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5.5,"e":5562}],[24,{"n":5.5,"e":7306}],[23,{"n":4.5,"e":7319}],[22,{"n":6,"e":7624}],[21,{"n":4.5,"e":7616,"s":1}],[18,{"n":4.5,"e":7355}],[16,{"n":5,"e":7368}],[14,{"n":4.5,"e":7382}],[12,{"n":5,"e":7391,"s":1}]],"fo":[[7382,[{"t":"Y"}]]]}],[4831,{"n":"Pegolo","f":"Gianluca","fp":"G","r":7,"c":123,"s":{"s":6,"n":1,"a":6,"Os":16,"On":3,"Oa":5.33,"Od":1.15,"pg":3},"p":[[-34,{"n":4,"e":5489}],[-29,{"n":6,"e":5540}],[28,{"n":null,"e":7278,"d":1}],[10,{"n":6,"e":7409}]]}],[6180,{"n":"Müldür","f":"Mert","fp":"DL","r":10,"c":123,"s":{"s":101,"n":22,"a":4.59,"d":0.68,"Og":2,"Os":167.5,"On":35,"Oa":4.79,"Od":0.8,"pd":34,"pm":1,"Omsn":6.5},"p":[[-38,{"n":5,"e":5457,"s":1}],[-36,{"n":4.5,"e":5474}],[-35,{"n":3.5,"e":5485}],[-34,{"n":4.5,"e":5489}],[-33,{"n":4.5,"e":5505}],[-32,{"n":5,"e":5514,"s":1}],[-31,{"n":6,"e":5519}],[-30,{"n":6.5,"e":5536,"g":1}],[-29,{"n":6.5,"e":5540,"g":1}],[-28,{"n":4.5,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":6,"e":5562}],[-26,{"n":5,"e":5576,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[25,{"n":4,"e":7309}],[23,{"n":5,"e":7319}],[22,{"n":4.5,"e":7624}],[21,{"n":4.5,"e":7616}],[20,{"n":5,"e":7336}],[19,{"n":4,"e":7343}],[18,{"n":5,"e":7355,"s":1}],[17,{"n":5,"e":7358}],[16,{"n":5,"e":7368}],[15,{"n":2.5,"e":7370}],[14,{"n":4.5,"e":7382}],[13,{"n":5.5,"e":7389,"s":1}],[11,{"n":5,"e":7551,"s":1}],[9,{"n":5,"e":7418,"s":1}],[8,{"n":4,"e":7426,"s":1}],[7,{"n":4.5,"e":7434,"s":1}],[6,{"n":5,"e":7437}],[5,{"n":4.5,"e":7448,"s":1}],[4,{"n":3.5,"e":7452}],[3,{"n":5,"e":7485}],[2,{"n":5.5,"e":7489,"s":1}],[1,{"n":4.5,"e":7473,"s":1}]],"fo":[[7368,[{"t":"Y"}]]]}],[6222,{"n":"Kyriakopoulos","f":"Georgios","fp":"DL","r":8,"c":123,"s":{"s":70,"n":15,"a":4.67,"d":0.41,"Os":120,"On":26,"Oa":4.62,"Od":0.59,"pd":24,"pm":2},"p":[[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":4.5,"e":5485,"s":1}],[-34,{"n":5,"e":5489,"s":1}],[-33,{"n":3,"e":5505}],[-32,{"n":5,"e":5514}],[-30,{"n":5,"e":5536}],[-29,{"n":5,"e":5540,"s":1}],[-28,{"n":4.5,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5,"e":5562,"s":1}],[27,{"n":4.5,"e":7289}],[26,{"n":4.5,"e":7297}],[-25,{"n":3,"e":5578}],[18,{"n":5,"e":7355}],[17,{"n":4.5,"e":7358}],[15,{"n":3.5,"e":7370}],[14,{"n":4.5,"e":7382}],[13,{"n":5,"e":7389,"s":1}],[11,{"n":5,"e":7551}],[10,{"n":5,"e":7409,"s":1}],[6,{"n":5,"e":7437,"s":1}],[5,{"n":4.5,"e":7448}],[4,{"n":4.5,"e":7452}],[3,{"n":5,"e":7485,"s":1}],[2,{"n":4.5,"e":7489}],[1,{"n":5,"e":7473,"s":1}]],"fo":[[7551,[{"t":"I"}]]]}],[6295,{"n":"Piccinini","f":"Stefano","fp":"DC","r":1,"c":123,"s":{"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-38,{"n":5,"e":5457,"s":1}],[28,{"n":null,"e":7278,"d":1}]]}],[6315,{"n":"Oddei","f":"Brian","fp":"A","r":3,"c":123,"s":{"s":21.5,"n":4,"a":5.38,"d":0.75,"Ss":6,"Sn":1,"Sa":6,"Os":21.5,"On":4,"Oa":5.38,"Od":0.75,"pa":4},"p":[[29,{"n":6,"e":7275,"s":1}],[28,{"n":null,"e":7278,"d":1}],[25,{"n":4.5,"e":7309,"s":1}],[20,{"n":6,"e":7336,"s":1}],[17,{"n":5,"e":7358,"s":1}]]}],[6524,{"n":"Haraslin","f":"Lukas","fp":"A","r":5,"c":123,"s":{"s":46,"n":10,"a":4.6,"d":0.46,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":95.5,"On":20,"Oa":4.78,"Od":0.73,"pm":11,"pa":9,"Omsn":7},"p":[[-38,{"n":5.5,"e":5457,"s":1}],[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":5,"e":5474,"s":1}],[-35,{"n":3.5,"e":5485}],[-34,{"n":4.5,"e":5489}],[-32,{"n":5,"e":5514,"s":1}],[-31,{"n":7,"e":5519,"g":1}],[29,{"n":4.5,"e":7275,"s":1}],[-28,{"n":4,"e":5556}],[28,{"n":null,"e":7278,"d":1}],[-27,{"n":5,"e":5562,"s":1}],[25,{"n":5,"e":7309,"s":1}],[-25,{"n":5,"e":5578,"s":1}],[21,{"n":4,"e":7616,"s":1}],[19,{"n":4.5,"e":7343,"s":1}],[18,{"n":5,"e":7355,"s":1}],[15,{"n":4.5,"e":7370,"s":1}],[14,{"n":4.5,"e":7382,"s":1}],[11,{"n":4,"e":7551}],[10,{"n":4.5,"e":7409,"s":1}],[1,{"n":5.5,"e":7473}]],"fo":[[7551,[{"t":"R"}]],[7275,[{"t":"Y"}]]]}],[6600,{"n":"Mercati","f":"Alessandro","fp":"MD","r":1,"c":123,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7171,{"n":"Ayhan","f":"Kaan","fp":"DC","r":8,"c":123,"s":{"s":85.5,"n":17,"a":5.03,"d":0.45,"Os":85.5,"On":17,"Oa":5.03,"Od":0.45,"pd":17},"p":[[28,{"n":null,"e":7278,"d":1}],[27,{"n":5,"e":7289,"s":1}],[26,{"n":4.5,"e":7297}],[22,{"n":5,"e":7624,"s":1}],[18,{"n":4,"e":7355}],[17,{"n":5,"e":7358,"s":1}],[16,{"n":5,"e":7368}],[14,{"n":5,"e":7382,"s":1}],[11,{"n":5,"e":7551,"s":1}],[10,{"n":5,"e":7409}],[8,{"n":5,"e":7426,"s":1}],[7,{"n":5.5,"e":7434}],[6,{"n":6,"e":7437}],[5,{"n":4.5,"e":7448}],[4,{"n":5.5,"e":7452,"s":1}],[3,{"n":5.5,"e":7485,"s":1}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":5,"e":7473,"s":1}]],"fo":[[7368,[{"t":"Y"}]],[7551,[{"t":"Y"}]]]}],[7281,{"n":"Vitale","f":"Samuele","fp":"G","r":1,"c":123,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7376,{"n":"Schiappacasse","f":"Nicolás","fp":"A","r":1,"c":123,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[28,{"n":null,"e":7278,"d":1}],[9,{"n":4.5,"e":7418,"s":1}]]}],[7549,{"n":"Zacchi","f":"Gioele","fp":"G","r":1,"c":123,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7607,{"n":"Saccani","f":"Matteo","fp":"DC","r":1,"c":123,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[7608,{"n":"Karamoko","f":"Isaac","fp":"A","r":1,"c":123,"s":{},"p":[[28,{"n":null,"e":7278,"d":1}]]}],[2746,{"n":"Verde","f":"Daniele","fp":"A","r":9,"c":141,"s":{"g":4,"s":73.5,"n":14,"a":5.25,"d":0.89,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":4,"Os":73.5,"On":14,"Oa":5.25,"Od":0.89,"pa":14,"Smsn":6,"Omsn":6},"p":[[29,{"n":6,"e":8254,"g":1,"s":1}],[27,{"n":5.5,"e":7701}],[26,{"n":6.5,"e":7651,"g":1}],[25,{"n":5,"e":7647,"s":1}],[24,{"n":6,"e":7637,"s":1}],[23,{"n":5,"e":7630,"s":1}],[21,{"n":5,"e":7616}],[19,{"n":6,"e":7605,"g":1,"s":1}],[11,{"n":5,"e":7552,"s":1}],[6,{"n":3.5,"e":7519}],[5,{"n":4.5,"e":7509,"s":1}],[4,{"n":6.5,"e":7502,"g":1}],[3,{"n":4,"e":7487}],[1,{"n":5,"e":7493}]],"fo":[[7596,[{"t":"Y"}]]]}],[4178,{"n":"Agoume","f":"Lucien","fp":"MD","r":7,"c":141,"s":{"s":58,"n":11,"a":5.27,"d":0.52,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":68.5,"On":13,"Oa":5.27,"Od":0.48,"pm":13},"p":[[20,{"n":6,"e":7610}],[-29,{"n":5.5,"e":5542,"s":1}],[29,{"n":5.5,"e":8254,"s":1}],[-27,{"n":5,"e":5562,"s":1}],[25,{"n":4.5,"e":7647,"s":1}],[19,{"n":4.5,"e":7605}],[18,{"n":5,"e":7596}],[17,{"n":5.5,"e":7595}],[16,{"n":6,"e":7583}],[15,{"n":5.5,"e":7576}],[12,{"n":5,"e":7559}],[7,{"n":5,"e":7525,"s":1}],[5,{"n":5.5,"e":7509}]],"fo":[[7559,[{"t":"Y"}]],[7576,[{"t":"Y"}]]]}],[4257,{"n":"Chabot","f":"Julian","fp":"DC","r":6,"c":141,"s":{"g":1,"s":105,"n":22,"a":4.77,"d":0.91,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":117,"On":24,"Oa":4.88,"Od":0.98,"pd":24,"Smsn":6.5,"Omsn":6.5},"p":[[-36,{"n":5,"e":5472}],[-34,{"n":7,"e":5495,"g":1}],[29,{"n":5,"e":8254}],[27,{"n":5,"e":7701,"s":1}],[23,{"n":4.5,"e":7630}],[21,{"n":5,"e":7616,"s":1}],[20,{"n":3.5,"e":7610}],[19,{"n":3.5,"e":7605}],[18,{"n":5.5,"e":7596}],[17,{"n":6,"e":7595}],[15,{"n":4.5,"e":7576}],[14,{"n":4,"e":7569}],[12,{"n":4.5,"e":7559}],[11,{"n":3,"e":7552}],[10,{"n":5,"e":7544}],[9,{"n":5,"e":7539,"s":1}],[8,{"n":5.5,"e":7532,"s":1}],[7,{"n":5.5,"e":7525}],[6,{"n":4,"e":7519}],[5,{"n":6.5,"e":7509,"g":1}],[4,{"n":5,"e":7502}],[3,{"n":3.5,"e":7487}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":6,"e":7493}]],"fo":[[7525,[{"t":"I"}]],[7502,[{"t":"Y"}]],[7519,[{"t":"Y"}]],[7539,[{"t":"Y"}]],[7552,[{"t":"Y"}]],[7559,[{"t":"Y"}]],[7569,[{"t":"Y"}]],[7576,[{"t":"Y"},{"t":"O"}]],[7605,[{"t":"Y"}]],[8254,[{"t":"Y"}]]]}],[4322,{"n":"Piccoli","f":"Roberto","fp":"A","r":5,"c":141,"s":{"g":4,"s":76.5,"n":16,"a":4.78,"d":0.93,"Sg":2,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.44,"Og":4,"Os":81,"On":17,"Oa":4.76,"Od":0.9,"pa":17,"Smsn":6,"Omsn":6},"p":[[-33,{"n":4.5,"e":5498,"s":1}],[29,{"n":3.5,"e":8254}],[28,{"n":6,"e":8247,"g":1}],[27,{"n":6,"e":7701,"g":1,"s":1}],[23,{"n":4.5,"e":7630,"s":1}],[19,{"n":6,"e":7605,"g":1}],[18,{"n":5.5,"e":7596}],[17,{"n":5,"e":7595,"s":1}],[15,{"n":4,"e":7576,"s":1}],[14,{"n":4.5,"e":7569,"s":1}],[13,{"n":6,"e":7566,"g":1,"s":1}],[11,{"n":3.5,"e":7552}],[10,{"n":4.5,"e":7544,"s":1}],[9,{"n":5.5,"e":7539,"s":1}],[5,{"n":4,"e":7509,"s":1}],[4,{"n":4,"e":7502}],[3,{"n":4,"e":7487,"s":1}]],"fo":[[7605,[{"t":"I"}]]]}],[4372,{"n":"Dell'Orco","f":"Cristian","fp":"DL","r":3,"c":141,"s":{"s":32,"n":7,"a":4.57,"d":0.93,"Os":55.5,"On":12,"Oa":4.63,"Od":0.93,"pd":12},"p":[[-38,{"n":3,"e":5453}],[-37,{"n":5.5,"e":5466,"s":1}],[-36,{"n":4.5,"e":5468}],[-34,{"n":5,"e":5491}],[-33,{"n":5.5,"e":5500,"s":1}],[24,{"n":5,"e":7637,"s":1}],[19,{"n":3,"e":7605}],[7,{"n":5.5,"e":7525,"s":1}],[6,{"n":5,"e":7519,"s":1}],[5,{"n":5,"e":7509,"s":1}],[4,{"n":5,"e":7502,"s":1}],[2,{"n":3.5,"e":7489}]]}],[4393,{"n":"Erlic","f":"Martin","fp":"DC","r":10,"c":141,"s":{"g":1,"s":99,"n":21,"a":4.71,"d":0.85,"Ss":26.5,"Sn":6,"Sa":4.42,"Sd":0.86,"Og":1,"Os":99,"On":21,"Oa":4.71,"Od":0.85,"pd":21,"Smsn":6,"Omsn":6},"p":[[29,{"n":5,"e":8254}],[28,{"n":5.5,"e":8247}],[27,{"n":3.5,"e":7701}],[26,{"n":5,"e":7651,"s":1}],[25,{"n":3.5,"e":7647}],[24,{"n":4,"e":7637}],[22,{"n":5,"e":7623}],[21,{"n":6,"e":7616,"g":1}],[20,{"n":5.5,"e":7610}],[19,{"n":5,"e":7605,"s":1}],[18,{"n":5,"e":7596,"s":1}],[17,{"n":5,"e":7595,"s":1}],[16,{"n":5,"e":7583,"s":1}],[15,{"n":5,"e":7576}],[14,{"n":4.5,"e":7569}],[12,{"n":3.5,"e":7559}],[9,{"n":4,"e":7539}],[8,{"n":6.5,"e":7532}],[3,{"n":4,"e":7487}],[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493,"s":1}]],"fo":[[7559,[{"t":"Y"}]],[7569,[{"t":"Y"}]],[7576,[{"t":"Y"}]],[7616,[{"t":"Y"}]],[7623,[{"t":"Y"}]],[7651,[{"t":"Y"}]]]}],[4399,{"n":"Marchizza","f":"Riccardo","fp":"DC","r":9,"c":141,"s":{"s":83,"n":18,"a":4.61,"d":0.68,"Ss":22.5,"Sn":5,"Sa":4.5,"Sd":0.71,"Os":83,"On":18,"Oa":4.61,"Od":0.68,"pd":18},"p":[[29,{"n":4,"e":8254,"s":1}],[28,{"n":5,"e":8247}],[27,{"n":4,"e":7701}],[26,{"n":5.5,"e":7651,"s":1}],[25,{"n":4,"e":7647}],[23,{"n":5,"e":7630}],[19,{"n":3,"e":7605}],[18,{"n":5,"e":7596}],[17,{"n":5,"e":7595}],[16,{"n":5,"e":7583}],[15,{"n":5,"e":7576}],[14,{"n":5,"e":7569}],[12,{"n":4,"e":7559}],[11,{"n":5,"e":7552,"s":1}],[10,{"n":5,"e":7544,"s":1}],[8,{"n":5,"e":7532,"s":1}],[7,{"n":5,"e":7525,"s":1}],[3,{"n":3.5,"e":7487}]],"fo":[[7630,[{"t":"I"}]],[7559,[{"t":"Y"}]],[7595,[{"t":"Y"}]],[7596,[{"t":"Y"}]]]}],[4543,{"n":"Mattiello","f":"Federico","fp":"DL","r":3,"c":141,"s":{"s":5,"n":1,"a":5,"Os":73,"On":14,"Oa":5.21,"Od":0.78,"pd":5,"pm":9},"p":[[-38,{"n":4.5,"e":5454}],[-37,{"n":7,"e":5458}],[-36,{"n":5,"e":5470,"s":1}],[-35,{"n":4.5,"e":5480}],[-34,{"n":5,"e":5489}],[-33,{"n":5.5,"e":5504,"s":1}],[-32,{"n":5,"e":5509}],[-31,{"n":5.5,"e":5520}],[-30,{"n":5.5,"e":5529,"s":1}],[-29,{"n":5,"e":5539}],[-28,{"n":4,"e":5549}],[-27,{"n":6.5,"e":5565}],[-25,{"n":5,"e":5587,"s":1}],[8,{"n":5,"e":7532,"s":1}]]}],[4662,{"n":"Sala","f":"Jacopo","fp":"DL","r":3,"c":141,"s":{"s":24,"n":6,"a":4,"d":0.55,"Os":58.5,"On":14,"Oa":4.18,"Od":0.67,"pd":13,"pm":1},"p":[[-35,{"n":5,"e":5483}],[-33,{"n":3.5,"e":5503}],[-32,{"n":4.5,"e":5511,"s":1}],[-31,{"n":4,"e":5525}],[-30,{"n":3,"e":5535}],[-29,{"n":5,"e":5545}],[-27,{"n":5,"e":5565}],[-26,{"n":4.5,"e":5574,"s":1}],[11,{"n":4,"e":7552,"s":1}],[9,{"n":4.5,"e":7539,"s":1}],[5,{"n":4,"e":7509}],[4,{"n":4.5,"e":7502}],[3,{"n":4,"e":7487}],[2,{"n":3,"e":7489}]]}],[4717,{"n":"Saponara","f":"Riccardo","fp":"MO","r":6,"c":141,"s":{"s":33.5,"n":7,"a":4.79,"d":1.11,"Og":1,"Os":90.5,"On":17,"Oa":5.32,"Od":1.09,"pm":12,"pa":5,"Omsn":7.5},"p":[[-38,{"n":6.5,"e":5453}],[-37,{"n":5,"e":5466,"s":1}],[-36,{"n":5.5,"e":5468}],[-35,{"n":7.5,"e":5481,"g":1}],[-34,{"n":5.5,"e":5491}],[-33,{"n":5,"e":5500,"s":1}],[-32,{"n":6,"e":5509}],[-31,{"n":6,"e":5522}],[-29,{"n":6,"e":5543}],[-27,{"n":4,"e":5563}],[24,{"n":4,"e":7637}],[23,{"n":4.5,"e":7630}],[22,{"n":7,"e":7623}],[20,{"n":3.5,"e":7610,"s":1}],[16,{"n":5,"e":7583,"s":1}],[8,{"n":4.5,"e":7533,"s":1}],[3,{"n":5,"e":7456,"s":1}]],"fo":[[7610,[{"t":"Y"},{"t":"O"}]]]}],[4725,{"n":"Farias","f":"Diego","fp":"A","r":10,"c":141,"s":{"g":3,"s":106.5,"n":22,"a":4.84,"d":0.85,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":0.57,"Og":3,"Os":135.5,"On":28,"Oa":4.84,"Od":0.82,"pm":2,"pa":26,"Smsn":6,"Omsn":6},"p":[[-34,{"n":5.5,"e":5491}],[-33,{"n":3.5,"e":5500}],[-32,{"n":5.5,"e":5509,"s":1}],[-31,{"n":5,"e":5522,"s":1}],[-30,{"n":4.5,"e":5536}],[-29,{"n":5,"e":5543,"s":1}],[29,{"n":4.5,"e":8254}],[28,{"n":5.5,"e":8247}],[27,{"n":5,"e":7701,"s":1}],[26,{"n":4.5,"e":7651,"s":1}],[25,{"n":4,"e":7647}],[21,{"n":4.5,"e":7616,"s":1}],[20,{"n":5,"e":7610}],[19,{"n":7,"e":7605,"g":1}],[18,{"n":5,"e":7596}],[17,{"n":5,"e":7595}],[16,{"n":5,"e":7583}],[15,{"n":4.5,"e":7576,"s":1}],[14,{"n":4,"e":7569}],[13,{"n":4.5,"e":7566,"s":1}],[12,{"n":4.5,"e":7559,"s":1}],[11,{"n":6,"e":7552,"g":1}],[10,{"n":4.5,"e":7544}],[9,{"n":4,"e":7539}],[8,{"n":5.5,"e":7532}],[6,{"n":3.5,"e":7519}],[4,{"n":6.5,"e":7502,"g":1,"s":1}],[1,{"n":4,"e":7493,"s":1}]],"fo":[[7595,[{"t":"Y"}]],[8247,[{"t":"Y"}]]]}],[6115,{"n":"Rafael","f":"","fp":"G","r":3,"c":141,"s":{"s":10,"n":2,"a":5,"d":2.12,"Os":10,"On":2,"Oa":5,"Od":2.12,"pg":2},"p":[[3,{"n":3.5,"e":7487}],[1,{"n":6.5,"e":7493,"s":1}]],"a":{"m":7,"a":7,"M":7,"n":5}}],[6132,{"n":"Agudelo","f":"Kevin","fp":"MO","r":9,"c":141,"s":{"g":1,"s":100,"n":20,"a":5,"d":0.83,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":109.5,"On":22,"Oa":4.98,"Od":0.79,"pm":11,"pa":11,"Smsn":7,"Omsn":7},"p":[[-38,{"n":4.5,"e":5456}],[-33,{"n":5,"e":5500,"s":1}],[29,{"n":5,"e":8254,"s":1}],[24,{"n":4.5,"e":7637}],[23,{"n":4,"e":7630}],[22,{"n":6,"e":7623}],[21,{"n":5.5,"e":7616}],[20,{"n":5.5,"e":7610,"s":1}],[17,{"n":4.5,"e":7595,"s":1}],[16,{"n":5,"e":7583}],[15,{"n":4.5,"e":7576}],[13,{"n":5,"e":7566,"s":1}],[12,{"n":5.5,"e":7559}],[11,{"n":4,"e":7552}],[10,{"n":5,"e":7544,"s":1}],[9,{"n":5,"e":7539,"s":1}],[7,{"n":5.5,"e":7525}],[6,{"n":5,"e":7519,"s":1}],[5,{"n":7,"e":7509,"g":1}],[4,{"n":5.5,"e":7502,"s":1}],[3,{"n":5,"e":7487,"s":1}],[2,{"n":3,"e":7489}]],"fo":[[7525,[{"t":"Y"}]],[7595,[{"t":"Y"}]],[8254,[{"t":"Y"}]]]}],[6951,{"n":"Ferrer","f":"Salvador","fp":"DL","r":7,"c":141,"s":{"s":69,"n":14,"a":4.93,"d":0.94,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":69,"On":14,"Oa":4.93,"Od":0.94,"pd":14},"p":[[29,{"n":4.5,"e":8254}],[28,{"n":5,"e":8247}],[26,{"n":5,"e":7651}],[17,{"n":5,"e":7595,"s":1}],[12,{"n":4,"e":7559}],[11,{"n":3.5,"e":7552}],[10,{"n":4,"e":7544}],[9,{"n":4.5,"e":7539}],[7,{"n":7,"e":7525}],[6,{"n":4.5,"e":7519}],[5,{"n":5,"e":7509,"s":1}],[4,{"n":5.5,"e":7502,"s":1}],[2,{"n":5,"e":7489,"s":1}],[1,{"n":6.5,"e":7493}]],"fo":[[7509,[{"t":"Y"}]],[7539,[{"t":"Y"}]],[7552,[{"t":"Y"}]]]}],[6976,{"n":"Maggiore","f":"Giulio","fp":"MD","r":14,"c":141,"s":{"g":2,"s":125,"n":24,"a":5.21,"d":1.07,"Sg":2,"Ss":115.5,"Sn":22,"Sa":5.25,"Sd":1.04,"Og":2,"Os":125,"On":24,"Oa":5.21,"Od":1.07,"pm":24,"Smsn":7,"Omsn":7},"p":[[29,{"n":4,"e":8254}],[28,{"n":7.5,"e":8247,"g":1}],[27,{"n":5.5,"e":7701}],[26,{"n":5,"e":7651,"s":1}],[25,{"n":3.5,"e":7647}],[24,{"n":6.5,"e":7637}],[23,{"n":5,"e":7630}],[22,{"n":7,"e":7623,"g":1}],[21,{"n":5,"e":7616}],[20,{"n":6,"e":7610}],[19,{"n":4.5,"e":7605}],[18,{"n":6.5,"e":7596}],[17,{"n":5,"e":7595,"s":1}],[16,{"n":5.5,"e":7583}],[15,{"n":5,"e":7576,"s":1}],[14,{"n":4,"e":7569}],[13,{"n":5,"e":7566,"s":1}],[12,{"n":6,"e":7559}],[11,{"n":5,"e":7552,"s":1}],[10,{"n":3.5,"e":7544}],[9,{"n":5,"e":7539}],[8,{"n":5.5,"e":7532,"s":1}],[3,{"n":3.5,"e":7487}],[1,{"n":6,"e":7493}]],"fo":[[7552,[{"t":"Y"}]],[7583,[{"t":"Y"}]]]}],[6978,{"n":"Krapikas","f":"Titas","fp":"G","r":3,"c":141}],[6987,{"n":"Nzola","f":"M'Bala","fp":"A","r":17,"c":141,"s":{"g":9,"s":94.5,"n":19,"a":4.97,"d":1.48,"Ss":22.5,"Sn":6,"Sa":3.75,"Sd":0.27,"Og":9,"Os":94.5,"On":19,"Oa":4.97,"Od":1.48,"pa":19,"Smsn":6,"Omsn":6},"p":[[29,{"n":4,"e":8254,"s":1}],[28,{"n":4,"e":8247,"s":1}],[27,{"n":3.5,"e":7701}],[26,{"n":3.5,"e":7651}],[25,{"n":3.5,"e":7647}],[24,{"n":4,"e":7637,"s":1}],[17,{"n":6,"e":7595,"g":1}],[16,{"n":6.5,"e":7583,"g":1}],[15,{"n":3,"e":7576}],[14,{"n":6,"e":7569,"g":1}],[13,{"n":3.5,"e":7566}],[12,{"n":7.5,"e":7559,"g":2}],[10,{"n":6,"e":7544,"g":1}],[9,{"n":6,"e":7539,"g":1}],[8,{"n":4.5,"e":7532}],[7,{"n":8,"e":7525,"g":2}],[6,{"n":4.5,"e":7519}],[5,{"n":6,"e":7509}],[4,{"n":4.5,"e":7502,"s":1}]],"fo":[[7566,[{"t":"Y"}]],[7637,[{"t":"Y"}]],[8254,[{"t":"Y"}]]]}],[6990,{"n":"Vignali","f":"Luca","fp":"DL","r":10,"c":141,"s":{"s":63,"n":14,"a":4.5,"d":0.78,"Os":63,"On":14,"Oa":4.5,"Od":0.78,"pd":14},"p":[[27,{"n":4.5,"e":7701}],[25,{"n":4,"e":7647}],[24,{"n":4.5,"e":7637}],[23,{"n":3,"e":7630}],[22,{"n":6,"e":7623}],[21,{"n":4,"e":7616}],[20,{"n":4,"e":7610}],[18,{"n":3.5,"e":7596}],[17,{"n":5,"e":7595}],[16,{"n":5.5,"e":7583}],[15,{"n":5,"e":7576}],[14,{"n":5,"e":7569}],[13,{"n":4.5,"e":7566}],[8,{"n":4.5,"e":7532}]],"fo":[[7596,[{"t":"R"}]],[7610,[{"t":"Y"}]],[7616,[{"t":"Y"}]],[7623,[{"t":"Y"}]]]}],[6996,{"n":"Ramos","f":"Juan","fp":"DL","r":3,"c":141,"s":{"s":21.5,"n":5,"a":4.3,"d":0.97,"Os":21.5,"On":5,"Oa":4.3,"Od":0.97,"pd":5},"p":[[23,{"n":3,"e":7630,"s":1}],[18,{"n":5,"e":7596,"s":1}],[16,{"n":5,"e":7583,"s":1}],[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493}]]}],[6999,{"n":"Acampora","f":"Gennaro","fp":"MD","r":7,"c":141,"s":{"s":56,"n":11,"a":5.09,"d":0.2,"Os":56,"On":11,"Oa":5.09,"Od":0.2,"pm":10,"pa":1},"p":[[28,{"n":5,"e":8247,"s":1}],[27,{"n":5,"e":7701,"s":1}],[25,{"n":5.5,"e":7647,"s":1}],[24,{"n":5.5,"e":7637,"s":1}],[22,{"n":5,"e":7623,"s":1}],[21,{"n":5,"e":7616,"s":1}],[20,{"n":5,"e":7610,"s":1}],[19,{"n":5,"e":7605,"s":1}],[13,{"n":5,"e":7566}],[4,{"n":5,"e":7502}],[3,{"n":5,"e":7487,"s":1}]],"fo":[[7610,[{"t":"Y"}]],[7637,[{"t":"Y"}]]]}],[7002,{"n":"Bastoni","f":"Simone","fp":"DL","r":10,"c":141,"s":{"g":1,"s":87,"n":18,"a":4.83,"d":1.21,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.06,"Og":1,"Os":87,"On":18,"Oa":4.83,"Od":1.21,"pd":18,"Smsn":7,"Omsn":7},"p":[[29,{"n":5,"e":8254}],[28,{"n":6.5,"e":8247,"s":1}],[26,{"n":4,"e":7651}],[25,{"n":5,"e":7647,"s":1}],[24,{"n":3.5,"e":7637}],[22,{"n":7,"e":7623,"g":1}],[21,{"n":7,"e":7616}],[20,{"n":5,"e":7610}],[19,{"n":4.5,"e":7605,"s":1}],[13,{"n":5,"e":7566}],[11,{"n":3,"e":7552}],[10,{"n":3.5,"e":7544}],[9,{"n":6,"e":7539}],[8,{"n":5,"e":7532}],[7,{"n":5,"e":7525}],[6,{"n":3.5,"e":7519}],[5,{"n":5,"e":7509}],[4,{"n":3.5,"e":7502}]],"fo":[[7525,[{"t":"Y"}]],[7544,[{"t":"Y"}]],[7610,[{"t":"Y"}]],[7616,[{"t":"Y"}]],[7623,[{"t":"Y"}]],[7651,[{"t":"Y"}]]]}],[7008,{"n":"Capradossi","f":"Elio","fp":"DC","r":1,"c":141}],[7009,{"n":"Gyasi","f":"Emmanuel","fp":"A","r":16,"c":141,"s":{"g":4,"s":148,"n":29,"a":5.1,"d":1.18,"Sg":4,"Ss":148,"Sn":29,"Sa":5.1,"Sd":1.18,"Og":4,"Os":148,"On":29,"Oa":5.1,"Od":1.18,"pa":29,"Smsn":7,"Omsn":7},"p":[[29,{"n":5.5,"e":8254}],[28,{"n":6,"e":8247}],[27,{"n":4,"e":7701}],[26,{"n":5,"e":7651}],[25,{"n":5.5,"e":7647}],[24,{"n":7.5,"e":7637,"g":2}],[23,{"n":4,"e":7630}],[22,{"n":6,"e":7623}],[21,{"n":7,"e":7616,"g":1}],[20,{"n":4.5,"e":7610}],[19,{"n":4,"e":7605}],[18,{"n":6,"e":7596}],[17,{"n":5,"e":7595}],[16,{"n":5,"e":7583,"s":1}],[15,{"n":4,"e":7576}],[14,{"n":6,"e":7569}],[13,{"n":4,"e":7566}],[12,{"n":5,"e":7559}],[11,{"n":4.5,"e":7552,"s":1}],[10,{"n":4,"e":7544}],[9,{"n":7,"e":7539,"g":1}],[8,{"n":5.5,"e":7532}],[7,{"n":7,"e":7525}],[6,{"n":4.5,"e":7519,"s":1}],[5,{"n":5,"e":7509}],[4,{"n":4.5,"e":7502}],[3,{"n":2.5,"e":7487}],[2,{"n":3.5,"e":7489}],[1,{"n":6,"e":7493}]],"fo":[[7559,[{"t":"Y"}]],[7595,[{"t":"Y"}]],[7596,[{"t":"Y"}]]]}],[7012,{"n":"Ricci","f":"Matteo","fp":"MD","r":14,"c":141,"s":{"s":116,"n":22,"a":5.27,"d":0.87,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":0.75,"Os":116,"On":22,"Oa":5.27,"Od":0.87,"pm":22},"p":[[29,{"n":4.5,"e":8254}],[28,{"n":6,"e":8247}],[27,{"n":6,"e":7701}],[26,{"n":6,"e":7651}],[24,{"n":4,"e":7637}],[23,{"n":4,"e":7630}],[22,{"n":5.5,"e":7623}],[21,{"n":6,"e":7616}],[20,{"n":4.5,"e":7610,"s":1}],[14,{"n":5.5,"e":7569}],[13,{"n":5.5,"e":7566}],[12,{"n":4.5,"e":7559,"s":1}],[11,{"n":3.5,"e":7552}],[10,{"n":6,"e":7544}],[9,{"n":5.5,"e":7539}],[8,{"n":6.5,"e":7532}],[7,{"n":6,"e":7525}],[6,{"n":4.5,"e":7519}],[4,{"n":5.5,"e":7502}],[3,{"n":4.5,"e":7487}],[2,{"n":6.5,"e":7489}],[1,{"n":5.5,"e":7493}]],"fo":[[7532,[{"t":"Y"}]],[7544,[{"t":"Y"}]],[7637,[{"t":"Y"}]]]}],[7024,{"n":"Galabinov","f":"Andrej","fp":"A","r":8,"c":141,"s":{"g":3,"s":42.5,"n":9,"a":4.72,"d":1.25,"Og":3,"Os":42.5,"On":9,"Oa":4.72,"Od":1.25,"pa":9,"Smsn":5.5,"Omsn":5.5},"p":[[26,{"n":4.5,"e":7651,"s":1}],[25,{"n":3,"e":7647,"s":1}],[23,{"n":4.5,"e":7630,"s":1}],[20,{"n":4,"e":7610}],[19,{"n":5,"e":7605,"s":1}],[18,{"n":4.5,"e":7596,"s":1}],[3,{"n":4,"e":7487}],[2,{"n":5.5,"e":7489,"g":1}],[1,{"n":7.5,"e":7493,"g":2}]]}],[7040,{"n":"Terzi","f":"Claudio","fp":"DC","r":10,"c":141,"s":{"g":1,"s":89.5,"n":19,"a":4.71,"d":1.08,"Og":1,"Os":89.5,"On":19,"Oa":4.71,"Od":1.08,"pd":19,"Smsn":7,"Omsn":7},"p":[[28,{"n":5,"e":8247,"s":1}],[26,{"n":4.5,"e":7651}],[25,{"n":4.5,"e":7647}],[21,{"n":5,"e":7616}],[19,{"n":3,"e":7605}],[18,{"n":6,"e":7596}],[17,{"n":7,"e":7595,"g":1}],[16,{"n":6,"e":7583}],[14,{"n":3.5,"e":7569,"s":1}],[13,{"n":4.5,"e":7566}],[11,{"n":3,"e":7552}],[10,{"n":4,"e":7544}],[9,{"n":4,"e":7539}],[8,{"n":5,"e":7532}],[7,{"n":6,"e":7525}],[6,{"n":3.5,"e":7519}],[5,{"n":4.5,"e":7509}],[4,{"n":5.5,"e":7502}],[1,{"n":5,"e":7493}]],"fo":[[7616,[{"t":"I"}]],[7532,[{"t":"Y"}]],[7539,[{"t":"Y"}]],[7544,[{"t":"Y"}]],[7566,[{"t":"Y"}]],[7569,[{"t":"Y"}]],[7583,[{"t":"Y"}]]]}],[7188,{"n":"Pobega","f":"Tommaso","fp":"MD","r":6,"c":141,"s":{"g":3,"s":76.5,"n":15,"a":5.1,"d":1.21,"Og":3,"Os":76.5,"On":15,"Oa":5.1,"Od":1.21,"pm":15,"Smsn":5.5,"Omsn":5.5},"p":[[28,{"n":5.5,"e":8247}],[20,{"n":4.5,"e":7610}],[18,{"n":6,"e":7596}],[17,{"n":6.5,"e":7595}],[16,{"n":7.5,"e":7583,"g":1,"s":1}],[15,{"n":4.5,"e":7576}],[12,{"n":4,"e":7559,"s":1}],[11,{"n":4.5,"e":7552}],[8,{"n":4.5,"e":7532}],[7,{"n":7,"e":7525,"g":1}],[6,{"n":5.5,"e":7519,"g":1}],[5,{"n":4.5,"e":7509}],[3,{"n":3.5,"e":7487}],[2,{"n":3.5,"e":7489}],[1,{"n":5,"e":7493,"s":1}]],"fo":[[7509,[{"t":"Y"}]],[7576,[{"t":"Y"}]],[7583,[{"t":"Y"}]],[7596,[{"t":"Y"}]],[7610,[{"t":"Y"}]]]}],[7239,{"n":"Zoet","f":"Jeroen","fp":"G","r":7,"c":141,"s":{"s":28,"n":6,"a":4.67,"d":1.37,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.04,"Os":28,"On":6,"Oa":4.67,"Od":1.37,"pg":6},"p":[[29,{"n":5.5,"e":8254}],[28,{"n":6.5,"e":8247}],[27,{"n":4,"e":7701}],[26,{"n":5,"e":7651}],[2,{"n":2.5,"e":7489}],[1,{"n":4.5,"e":7493}]]}],[7289,{"n":"Ismajli","f":"Ardian","fp":"DC","r":10,"c":141,"s":{"s":55,"n":11,"a":5,"d":1,"Os":55,"On":11,"Oa":5,"Od":1,"pd":11},"p":[[28,{"n":5.5,"e":8247}],[27,{"n":4,"e":7701}],[26,{"n":5.5,"e":7651}],[24,{"n":4,"e":7637}],[23,{"n":3,"e":7630}],[22,{"n":5.5,"e":7623}],[21,{"n":6.5,"e":7616,"s":1}],[16,{"n":5,"e":7583}],[15,{"n":5,"e":7576,"s":1}],[13,{"n":6,"e":7566}],[6,{"n":5,"e":7519,"s":1}]],"fo":[[7583,[{"t":"Y"},{"t":"O"}]]]}],[7334,{"n":"Estévez","f":"Nahuel","fp":"MD","r":10,"c":141,"s":{"s":102.5,"n":20,"a":5.13,"d":0.83,"Os":102.5,"On":20,"Oa":5.13,"Od":0.83,"pm":20},"p":[[27,{"n":5.5,"e":7701,"s":1}],[26,{"n":5,"e":7651}],[25,{"n":4.5,"e":7647}],[24,{"n":4.5,"e":7637}],[23,{"n":3.5,"e":7630}],[22,{"n":7,"e":7623}],[20,{"n":5,"e":7610,"s":1}],[19,{"n":5,"e":7605}],[18,{"n":5.5,"e":7596,"s":1}],[17,{"n":5.5,"e":7595}],[15,{"n":5,"e":7576}],[14,{"n":4.5,"e":7569}],[12,{"n":5.5,"e":7559}],[11,{"n":4,"e":7552}],[10,{"n":5,"e":7544}],[9,{"n":5,"e":7539}],[8,{"n":5,"e":7532}],[7,{"n":7,"e":7525}],[6,{"n":5,"e":7519,"s":1}],[5,{"n":5.5,"e":7509,"s":1}]],"fo":[[7519,[{"t":"Y"}]],[7525,[{"t":"Y"}]],[7532,[{"t":"Y"}]],[7539,[{"t":"Y"}]],[7576,[{"t":"Y"}]]]}],[7381,{"n":"Léo Sena","f":"","fp":"MD","r":11,"c":141,"s":{"s":51.5,"n":9,"a":5.72,"d":0.62,"Ss":40.5,"Sn":7,"Sa":5.79,"Sd":0.64,"Os":51.5,"On":9,"Oa":5.72,"Od":0.62,"pm":9},"p":[[29,{"n":5,"e":8254}],[28,{"n":5.5,"e":8247,"s":1}],[27,{"n":6,"e":7701}],[26,{"n":7,"e":7651}],[25,{"n":6,"e":7647}],[24,{"n":5.5,"e":7637,"s":1}],[23,{"n":5.5,"e":7630,"s":1}],[21,{"n":6,"e":7616}],[7,{"n":5,"e":7525,"s":1}]],"a":{"m":12,"a":13,"M":14,"n":5}}],[7384,{"n":"Provedel","f":"Ivan","fp":"G","r":13,"c":141,"s":{"s":114,"n":22,"a":5.18,"d":1.14,"Os":114,"On":22,"Oa":5.18,"Od":1.14,"pg":22},"p":[[25,{"n":4.5,"e":7647}],[24,{"n":5,"e":7637}],[23,{"n":3.5,"e":7630}],[22,{"n":5.5,"e":7623}],[21,{"n":6,"e":7616}],[20,{"n":5,"e":7610}],[19,{"n":4,"e":7605}],[18,{"n":6,"e":7596}],[17,{"n":5.5,"e":7595}],[16,{"n":7,"e":7583}],[15,{"n":5.5,"e":7576}],[14,{"n":5,"e":7569}],[13,{"n":5,"e":7566}],[12,{"n":6.5,"e":7559}],[11,{"n":3.5,"e":7552}],[10,{"n":4,"e":7544}],[9,{"n":5,"e":7539}],[8,{"n":7.5,"e":7532}],[7,{"n":6,"e":7525}],[6,{"n":3,"e":7519}],[5,{"n":6,"e":7509}],[4,{"n":5,"e":7502}]],"fo":[[7559,[{"t":"Y"}]]]}],[7422,{"n":"Afi","f":"Ayoub","fp":"A","r":1,"c":141}],[7550,{"n":"Vannucchi","f":"Stefano","fp":"G","r":1,"c":141}],[1584,{"n":"Zaza","f":"Simone","fp":"A","r":10,"c":122,"s":{"g":5,"s":89,"n":19,"a":4.68,"d":1.13,"Sg":4,"Ss":58,"Sn":12,"Sa":4.83,"Sd":1.3,"Og":8,"Os":135,"On":28,"Oa":4.82,"Od":1.18,"pa":28,"Smsn":6,"Omsn":6},"p":[[-38,{"n":6,"e":5449,"g":1}],[-37,{"n":5.5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":6.5,"e":5486,"g":1}],[-34,{"n":3,"e":5490}],[-33,{"n":4,"e":5506}],[-31,{"n":7,"e":5526,"g":1}],[29,{"n":4.5,"e":7276,"s":1}],[28,{"n":5,"e":7281,"s":1}],[-27,{"n":4,"e":5566}],[27,{"n":5.5,"e":7290,"s":1}],[26,{"n":3,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":5,"e":5586}],[24,{"n":7.5,"e":7306,"g":2,"s":1}],[23,{"n":4,"e":7314}],[22,{"n":3.5,"e":7325}],[21,{"n":4.5,"e":7327}],[20,{"n":4.5,"e":7340}],[19,{"n":7,"e":7604,"g":2}],[18,{"n":4.5,"e":7596,"s":1}],[17,{"n":4.5,"e":7359,"s":1}],[14,{"n":4.5,"e":7380,"s":1}],[11,{"n":4,"e":7405}],[10,{"n":4,"e":7408}],[9,{"n":4.5,"e":7419}],[8,{"n":6,"e":7420,"g":1}],[2,{"n":3.5,"e":7463}],[1,{"n":4.5,"e":7470}]],"fo":[[7327,[{"t":"Y"}]],[7604,[{"t":"Y"}]]]}],[1877,{"n":"Sanabria","f":"Antonio","fp":"A","r":9,"c":122,"s":{"g":4,"s":29.5,"n":5,"a":5.9,"d":1.47,"Sg":4,"Ss":29.5,"Sn":5,"Sa":5.9,"Sd":1.47,"Og":10,"Os":149.5,"On":30,"Oa":4.98,"Od":1.21,"pa":30,"Smsn":6,"Omsn":6},"p":[[20,{"n":4.5,"e":7068,"s":1}],[18,{"n":6.5,"e":7588,"g":1,"s":1}],[16,{"n":5,"e":7094,"s":1}],[15,{"n":5,"e":7563}],[14,{"n":4,"e":7107}],[13,{"n":4.5,"e":7113,"s":1}],[11,{"n":3,"e":7128}],[10,{"n":4,"e":7134}],[9,{"n":6,"e":7140,"g":1}],[8,{"n":6,"e":7516,"g":1}],[7,{"n":4,"e":7154}],[6,{"n":4.5,"e":7166,"s":1}],[5,{"n":5.5,"e":7175}],[4,{"n":3,"e":7177}],[2,{"n":4.5,"e":7196,"s":1}],[-38,{"n":7.5,"e":5451,"g":2}],[-34,{"n":6,"e":5491,"g":1}],[-33,{"n":4,"e":5506}],[-32,{"n":5,"e":5511,"s":1}],[-31,{"n":3.5,"e":5521}],[-30,{"n":4,"e":5537}],[-29,{"n":5,"e":5541,"s":1}],[29,{"n":7.5,"e":7276,"g":2}],[28,{"n":3.5,"e":7281}],[-28,{"n":5,"e":5548,"s":1}],[27,{"n":6.5,"e":7290,"g":1}],[-26,{"n":6,"e":5572}],[26,{"n":6,"e":7652,"g":1,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":6,"e":7306}],[3,{"n":4,"e":7188}]],"fo":[[7276,[{"t":"Y"}]],[7306,[{"t":"Y"}]],[7516,[{"t":"Y"}]],[7563,[{"t":"Y"}]]]}],[1999,{"n":"Lukic","f":"Sasa","fp":"MD","r":12,"c":122,"s":{"g":3,"s":127,"n":25,"a":5.08,"d":0.76,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":4,"Os":186.5,"On":37,"Oa":5.04,"Od":0.76,"pm":36,"pa":1,"Smsn":6,"Omsn":6},"p":[[-38,{"n":6,"e":5449}],[-37,{"n":5,"e":5465}],[-36,{"n":4.5,"e":5476,"s":1}],[-34,{"n":4,"e":5490}],[-33,{"n":6.5,"e":5506,"g":1,"s":1}],[-32,{"n":5,"e":5512,"s":1}],[-31,{"n":5,"e":5526,"s":1}],[-30,{"n":3.5,"e":5531}],[-29,{"n":5,"e":5546}],[29,{"n":5.5,"e":7276,"s":1}],[-28,{"n":5,"e":5549,"s":1}],[-27,{"n":5,"e":5566,"s":1}],[27,{"n":5,"e":7290}],[26,{"n":4.5,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":5,"e":5586,"s":1}],[24,{"n":4.5,"e":7306}],[23,{"n":5.5,"e":7314}],[22,{"n":5,"e":7325}],[21,{"n":4,"e":7327}],[20,{"n":6,"e":7340}],[19,{"n":5,"e":7604}],[18,{"n":5,"e":7596}],[17,{"n":4,"e":7359}],[16,{"n":5,"e":7369}],[15,{"n":5.5,"e":7375}],[14,{"n":4,"e":7380}],[13,{"n":5,"e":7390}],[12,{"n":5.5,"e":7395}],[11,{"n":4,"e":7405,"s":1}],[10,{"n":4.5,"e":7408,"s":1}],[7,{"n":5,"e":7526}],[6,{"n":6,"e":7440,"g":1}],[5,{"n":6,"e":7448,"g":1}],[4,{"n":6,"e":7453}],[3,{"n":7,"e":7457,"g":1}],[2,{"n":4.5,"e":7463,"s":1}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[7314,[{"t":"Y"}]],[7405,[{"t":"Y"}]],[7408,[{"t":"Y"}]],[7457,[{"t":"Y"}]]],"a":{"m":13,"a":17,"M":18,"n":8}}],[4159,{"n":"Singo","f":"Wilfried Stephane","fp":"DC","r":14,"c":122,"s":{"g":1,"s":109,"n":21,"a":5.19,"d":1.11,"Og":2,"Os":130.5,"On":25,"Oa":5.22,"Od":1.03,"pd":9,"pm":16,"Smsn":7.5,"Omsn":6},"p":[[-37,{"n":6,"e":5465,"g":1}],[-33,{"n":5,"e":5506,"s":1}],[-32,{"n":5.5,"e":5512,"s":1}],[-28,{"n":5,"e":5549,"s":1}],[28,{"n":5,"e":7281,"s":1}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5.5,"e":7314}],[22,{"n":5,"e":7325}],[21,{"n":3.5,"e":7327}],[20,{"n":6,"e":7340}],[19,{"n":7,"e":7604}],[18,{"n":6,"e":7596}],[17,{"n":5,"e":7359}],[16,{"n":5,"e":7369}],[15,{"n":7.5,"e":7375,"g":1}],[14,{"n":5,"e":7380}],[12,{"n":3,"e":7395}],[11,{"n":3,"e":7405}],[10,{"n":5,"e":7408}],[9,{"n":6,"e":7419}],[8,{"n":5.5,"e":7420}],[7,{"n":5,"e":7526,"s":1}],[6,{"n":5,"e":7440,"s":1}],[5,{"n":4.5,"e":7448,"s":1}],[4,{"n":5.5,"e":7453,"s":1}],[3,{"n":6,"e":7457}]],"fo":[[7457,[{"t":"I"},{"t":"Y"}]],[7395,[{"t":"Y"},{"t":"O"}]],[7420,[{"t":"Y"}]]]}],[4209,{"n":"Ferigra","f":"Erick","fp":"DC","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[4259,{"n":"Bremer","f":"","fp":"DC","r":17,"c":122,"s":{"g":4,"s":117,"n":23,"a":5.09,"d":0.97,"Ss":15,"Sn":3,"Sa":5,"Sd":0.5,"Og":6,"Os":186,"On":36,"Oa":5.17,"Od":1,"pd":36,"Smsn":6,"Omsn":5.5},"p":[[-38,{"n":6.5,"e":5449}],[-37,{"n":5.5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":4.5,"e":5490}],[-33,{"n":7.5,"e":5506,"g":1}],[-32,{"n":4.5,"e":5512}],[-31,{"n":5.5,"e":5526}],[-30,{"n":3.5,"e":5531}],[-29,{"n":4,"e":5546}],[29,{"n":5,"e":7276}],[28,{"n":4.5,"e":7281}],[-28,{"n":5.5,"e":5549,"g":1}],[27,{"n":5.5,"e":7290}],[-27,{"n":6,"e":5566}],[-25,{"n":5,"e":5586}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4,"e":7306}],[23,{"n":7.5,"e":7314,"g":1}],[22,{"n":5,"e":7325}],[21,{"n":6.5,"e":7327,"g":1}],[20,{"n":4.5,"e":7340}],[18,{"n":5.5,"e":7596}],[17,{"n":5,"e":7359}],[16,{"n":6,"e":7369,"g":1}],[15,{"n":6,"e":7375}],[14,{"n":5,"e":7380}],[13,{"n":5.5,"e":7390}],[12,{"n":4.5,"e":7395}],[9,{"n":4,"e":7419}],[8,{"n":4,"e":7420}],[7,{"n":5.5,"e":7526}],[6,{"n":6,"e":7440,"g":1}],[5,{"n":3.5,"e":7448}],[3,{"n":5,"e":7457}],[2,{"n":3.5,"e":7463}],[1,{"n":5.5,"e":7470}]],"fo":[[7325,[{"t":"Y"}]]]}],[4284,{"n":"Buongiorno","f":"Alessandro","fp":"DC","r":3,"c":122,"s":{"s":28.5,"n":6,"a":4.75,"d":0.42,"Ss":5,"Sn":1,"Sa":5,"Os":28.5,"On":6,"Oa":4.75,"Od":0.42,"pd":6},"p":[[29,{"n":5,"e":7276}],[25,{"n":null,"e":7304,"d":1}],[20,{"n":5,"e":7340}],[19,{"n":4.5,"e":7604,"s":1}],[18,{"n":4,"e":7596}],[14,{"n":5,"e":7380}],[12,{"n":5,"e":7395}]],"fo":[[7380,[{"t":"Y"}]],[7596,[{"t":"Y"}]]]}],[4373,{"n":"Lyanco","f":"","fp":"DC","r":9,"c":122,"s":{"s":105.5,"n":21,"a":5.02,"d":0.75,"Oao":1,"Os":136.5,"On":28,"Oa":4.88,"Od":0.9,"pd":28},"p":[[-37,{"n":3,"e":5465}],[-35,{"n":5.5,"e":5486}],[-34,{"n":3.5,"e":5490,"a":1}],[-33,{"n":5.5,"e":5506}],[-31,{"n":5.5,"e":5526}],[-30,{"n":3,"e":5531}],[-29,{"n":5,"e":5546}],[28,{"n":5,"e":7281}],[27,{"n":5,"e":7290}],[26,{"n":4,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":6,"e":7306}],[20,{"n":5,"e":7340}],[19,{"n":6,"e":7604}],[18,{"n":5.5,"e":7596,"s":1}],[17,{"n":4.5,"e":7359}],[16,{"n":5.5,"e":7369}],[15,{"n":6,"e":7375}],[13,{"n":5.5,"e":7390}],[12,{"n":5.5,"e":7395}],[11,{"n":4,"e":7405}],[10,{"n":4.5,"e":7408}],[9,{"n":5,"e":7419}],[8,{"n":3.5,"e":7420}],[7,{"n":6,"e":7526}],[6,{"n":4,"e":7440}],[5,{"n":5,"e":7448}],[4,{"n":4.5,"e":7453}],[3,{"n":5.5,"e":7457}]],"fo":[[7281,[{"t":"Y"}]],[7340,[{"t":"Y"}]],[7390,[{"t":"Y"}]],[7395,[{"t":"Y"}]],[7405,[{"t":"Y"}]],[7408,[{"t":"Y"}]],[7419,[{"t":"Y"}]],[7596,[{"t":"Y"}]]]}],[4442,{"n":"Mandragora","f":"Rolando","fp":"MD","r":14,"c":122,"s":{"g":2,"s":92.5,"n":18,"a":5.14,"d":0.76,"Sg":2,"Ss":74,"Sn":14,"Sa":5.29,"Sd":0.78,"Og":2,"Os":103.5,"On":20,"Oa":5.18,"Od":0.8,"pm":20,"Smsn":5.5,"Omsn":5.5},"p":[[29,{"n":5,"e":7276}],[28,{"n":5,"e":7281}],[-27,{"n":4.5,"e":5566}],[27,{"n":4.5,"e":7290}],[26,{"n":5.5,"e":7652,"g":1}],[-26,{"n":6.5,"e":5577}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":6,"e":7306,"g":1}],[23,{"n":6,"e":7314}],[22,{"n":6.5,"e":7325}],[21,{"n":6,"e":7327}],[20,{"n":5,"e":7610,"s":1}],[19,{"n":5.5,"e":7346,"s":1}],[18,{"n":4,"e":7354}],[17,{"n":4,"e":7362}],[16,{"n":6,"e":7364,"s":1}],[15,{"n":5,"e":7374,"s":1}],[13,{"n":5,"e":7385,"s":1}],[11,{"n":5,"e":7405,"s":1}],[10,{"n":4,"e":7411}],[8,{"n":4.5,"e":7425,"s":1}]]}],[4491,{"n":"Bonazzoli","f":"Federico","fp":"A","r":10,"c":122,"s":{"g":2,"s":86,"n":18,"a":4.78,"d":0.91,"Og":7,"Os":136.5,"On":27,"Oa":5.06,"Od":1.15,"pa":27,"Smsn":6.5,"Omsn":6},"p":[[-35,{"n":5,"e":5484}],[-34,{"n":7,"e":5495,"g":1,"s":1}],[-33,{"n":8,"e":5504,"g":2}],[-32,{"n":7,"e":5517,"g":1,"s":1}],[-29,{"n":4,"e":5543}],[-28,{"n":6,"e":5555,"g":1,"s":1}],[28,{"n":4.5,"e":7281,"s":1}],[-27,{"n":4.5,"e":5564,"s":1}],[26,{"n":4,"e":7652}],[-26,{"n":4.5,"e":5575,"s":1}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":4.5,"e":5583,"s":1}],[24,{"n":4.5,"e":7306,"s":1}],[23,{"n":5,"e":7314,"s":1}],[21,{"n":6.5,"e":7327,"g":1,"s":1}],[17,{"n":4.5,"e":7359,"s":1}],[16,{"n":4.5,"e":7369,"s":1}],[13,{"n":5,"e":7390}],[12,{"n":4.5,"e":7395,"s":1}],[11,{"n":7,"e":7405,"g":1,"s":1}],[10,{"n":4,"e":7408,"s":1}],[8,{"n":4,"e":7420,"s":1}],[7,{"n":5,"e":7526,"s":1}],[6,{"n":4.5,"e":7440,"s":1}],[4,{"n":6,"e":7453}],[3,{"n":4,"e":7457,"s":1}],[2,{"n":5,"e":7488}],[1,{"n":3.5,"e":7474}]],"fo":[[7390,[{"t":"I"}]],[7408,[{"t":"Y"}]],[7453,[{"t":"Y"}]]]}],[4547,{"n":"Linetty","f":"Karol","fp":"MD","r":7,"c":122,"s":{"g":1,"s":109,"n":22,"a":4.95,"d":0.65,"Og":3,"Os":172,"On":34,"Oa":5.06,"Od":0.85,"pm":34,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":5450,"s":1}],[-37,{"n":4,"e":5463}],[-36,{"n":5.5,"e":5472}],[-35,{"n":5,"e":5484}],[-33,{"n":6.5,"e":5504}],[-32,{"n":6,"e":5517}],[-31,{"n":5,"e":5518}],[-30,{"n":8,"e":5535,"g":2}],[-28,{"n":4,"e":5555}],[-27,{"n":4.5,"e":5564}],[27,{"n":5,"e":7290,"s":1}],[-26,{"n":4.5,"e":5575,"s":1}],[-25,{"n":5,"e":5583}],[25,{"n":null,"e":7304,"d":1}],[22,{"n":4.5,"e":7325,"s":1}],[20,{"n":5,"e":7340}],[19,{"n":5,"e":7604}],[18,{"n":4.5,"e":7596}],[17,{"n":5,"e":7359,"s":1}],[16,{"n":4.5,"e":7369}],[15,{"n":6,"e":7375}],[14,{"n":5,"e":7380}],[13,{"n":4.5,"e":7390}],[12,{"n":6,"e":7395}],[11,{"n":4,"e":7405}],[10,{"n":5,"e":7408}],[9,{"n":5,"e":7419}],[8,{"n":4.5,"e":7420}],[7,{"n":5.5,"e":7526}],[6,{"n":4,"e":7440}],[5,{"n":6,"e":7448,"g":1}],[4,{"n":4.5,"e":7453}],[3,{"n":6,"e":7457}],[2,{"n":4,"e":7463}],[1,{"n":5.5,"e":7470}]],"fo":[[7380,[{"t":"Y"}]],[7596,[{"t":"Y"}]],[7604,[{"t":"Y"}]]]}],[4589,{"n":"Belotti","f":"Andrea","fp":"A","r":36,"c":122,"s":{"g":11,"s":153,"n":26,"a":5.88,"d":1.21,"Ss":13.5,"Sn":3,"Sa":4.5,"Og":18,"Os":224,"On":39,"Oa":5.74,"Od":1.23,"pa":39,"Smsn":6,"Omsn":5},"p":[[-38,{"n":5.5,"e":5449}],[-37,{"n":4,"e":5465,"s":1}],[-36,{"n":4.5,"e":5476}],[-35,{"n":4.5,"e":5486}],[-34,{"n":4,"e":5490}],[-33,{"n":8,"e":5506,"g":1}],[-32,{"n":6,"e":5512,"g":1}],[-31,{"n":7,"e":5526,"g":1}],[-30,{"n":5,"e":5531,"g":1}],[-29,{"n":5,"e":5546,"g":1}],[29,{"n":4.5,"e":7276}],[-28,{"n":6,"e":5549,"g":1}],[28,{"n":4.5,"e":7281}],[-27,{"n":7,"e":5566,"g":1}],[27,{"n":4.5,"e":7290,"s":1}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":4.5,"e":5586}],[24,{"n":6,"e":7306}],[23,{"n":5,"e":7314}],[22,{"n":5,"e":7325}],[21,{"n":6.5,"e":7327,"g":1}],[20,{"n":6,"e":7340,"g":1}],[19,{"n":7,"e":7604}],[18,{"n":5,"e":7596}],[17,{"n":4.5,"e":7359}],[16,{"n":5,"e":7369}],[15,{"n":8,"e":7375}],[14,{"n":5,"e":7380}],[13,{"n":6,"e":7390}],[12,{"n":8,"e":7395,"g":1}],[11,{"n":7.5,"e":7405,"g":1}],[10,{"n":5,"e":7408}],[9,{"n":6.5,"e":7419,"g":1}],[7,{"n":5,"e":7526}],[6,{"n":6,"e":7440,"g":1}],[5,{"n":8,"e":7448,"g":1}],[4,{"n":7,"e":7453,"g":2}],[3,{"n":5,"e":7457}],[2,{"n":7.5,"e":7463,"g":2}],[1,{"n":5,"e":7470}]],"fo":[[7440,[{"t":"I"}]],[7314,[{"t":"Y"}]],[7340,[{"t":"Y"}]],[7369,[{"t":"Y"}]],[7526,[{"t":"Y"}]]],"a":{"m":37,"a":55,"M":83,"n":15}}],[4606,{"n":"Izzo","f":"Armando","fp":"DC","r":11,"c":122,"s":{"g":2,"s":79.5,"n":17,"a":4.68,"d":1.09,"Ss":34,"Sn":8,"Sa":4.25,"Sd":0.89,"Og":2,"Os":117,"On":25,"Oa":4.68,"Od":1.05,"pd":25,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5.5,"e":5449}],[-36,{"n":5.5,"e":5476}],[-33,{"n":5,"e":5506,"s":1}],[-32,{"n":3.5,"e":5512}],[-30,{"n":3,"e":5531}],[29,{"n":3.5,"e":7276}],[-28,{"n":4.5,"e":5549}],[28,{"n":4.5,"e":7281}],[-27,{"n":6,"e":5566}],[27,{"n":3.5,"e":7290}],[26,{"n":3,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":4.5,"e":5586}],[24,{"n":5,"e":7306}],[23,{"n":5.5,"e":7314}],[22,{"n":5,"e":7325}],[21,{"n":4,"e":7327}],[19,{"n":4.5,"e":7604}],[18,{"n":4,"e":7596}],[17,{"n":4,"e":7359}],[16,{"n":5.5,"e":7369}],[15,{"n":7.5,"e":7375,"g":1}],[14,{"n":6,"e":7380,"g":1}],[13,{"n":5,"e":7390}],[11,{"n":4,"e":7405,"s":1}],[1,{"n":5,"e":7470}]],"fo":[[7325,[{"t":"Y"}]],[7375,[{"t":"Y"}]],[7380,[{"t":"Y"}]]]}],[4607,{"n":"Murru","f":"Nicola","fp":"DL","r":6,"c":122,"s":{"s":67.5,"n":14,"a":4.82,"d":0.61,"Os":94.5,"On":20,"Oa":4.72,"Od":0.57,"pd":14,"pm":6},"p":[[-34,{"n":4.5,"e":5495}],[-31,{"n":4.5,"e":5518}],[-29,{"n":5,"e":5543,"s":1}],[-28,{"n":4,"e":5555}],[28,{"n":5,"e":7281,"s":1}],[-27,{"n":5,"e":5564,"s":1}],[27,{"n":5,"e":7290}],[-25,{"n":4,"e":5583}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":4.5,"e":7306}],[22,{"n":5.5,"e":7325,"s":1}],[21,{"n":4.5,"e":7327}],[20,{"n":5.5,"e":7340,"s":1}],[18,{"n":4.5,"e":7596}],[17,{"n":5,"e":7359,"s":1}],[16,{"n":5,"e":7369}],[9,{"n":5,"e":7419,"s":1}],[7,{"n":5,"e":7526,"s":1}],[4,{"n":5,"e":7453,"s":1}],[3,{"n":5,"e":7457}],[2,{"n":3,"e":7463}]]}],[4615,{"n":"Baselli","f":"Daniele","fp":"MD","r":5,"c":122,"s":{"s":35,"n":7,"a":5,"d":0.29,"Ss":5,"Sn":1,"Sa":5,"Os":35,"On":7,"Oa":5,"Od":0.29,"pm":7},"p":[[29,{"n":5,"e":7276,"s":1}],[27,{"n":4.5,"e":7290}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":5,"e":7314,"s":1}],[22,{"n":5,"e":7325,"s":1}],[21,{"n":5,"e":7327,"s":1}],[20,{"n":5,"e":7340,"s":1}],[19,{"n":5.5,"e":7604,"s":1}]],"fo":[[7290,[{"t":"I"}]],[7604,[{"t":"Y"}]]]}],[4669,{"n":"Verdi","f":"Simone","fp":"A","r":9,"c":122,"s":{"g":1,"s":120,"n":24,"a":5,"d":0.75,"Ss":25,"Sn":5,"Sa":5,"Sd":0.35,"Og":2,"Os":183,"On":35,"Oa":5.23,"Od":0.99,"pm":1,"pa":34,"Smsn":7,"Omsn":7},"p":[[-38,{"n":6.5,"e":5449}],[-37,{"n":4.5,"e":5465}],[-36,{"n":7,"e":5476,"g":1}],[-35,{"n":7,"e":5486}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":7,"e":5506}],[-32,{"n":5,"e":5512}],[-31,{"n":7,"e":5526}],[-30,{"n":4.5,"e":5531}],[29,{"n":5.5,"e":7276}],[-29,{"n":3.5,"e":5546}],[-28,{"n":6,"e":5549,"s":1}],[28,{"n":4.5,"e":7281,"s":1}],[27,{"n":5,"e":7290}],[26,{"n":5,"e":7652,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5,"e":7306,"s":1}],[22,{"n":4.5,"e":7325,"s":1}],[21,{"n":6,"e":7327,"s":1}],[20,{"n":6,"e":7340,"s":1}],[19,{"n":4.5,"e":7604,"s":1}],[18,{"n":4.5,"e":7596}],[17,{"n":5,"e":7359}],[16,{"n":5.5,"e":7369,"s":1}],[15,{"n":4,"e":7375}],[14,{"n":5.5,"e":7380}],[13,{"n":7,"e":7390,"g":1,"s":1}],[9,{"n":6,"e":7419,"s":1}],[8,{"n":4.5,"e":7420}],[7,{"n":4.5,"e":7526}],[6,{"n":4.5,"e":7440}],[5,{"n":5.5,"e":7448}],[4,{"n":4.5,"e":7453,"s":1}],[3,{"n":4,"e":7457}],[2,{"n":5,"e":7463,"s":1}],[1,{"n":4,"e":7470,"s":1}]],"fo":[[7420,[{"t":"I"},{"t":"Y"}]],[7375,[{"t":"Y"}]],[7526,[{"t":"Y"}]]]}],[4684,{"n":"Rodríguez","f":"Ricardo","fp":"DL","r":7,"c":122,"s":{"s":64,"n":14,"a":4.57,"d":0.68,"Os":64,"On":14,"Oa":4.57,"Od":0.68,"pd":11,"pm":3},"p":[[26,{"n":3.5,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[19,{"n":4.5,"e":7604}],[17,{"n":5,"e":7359}],[15,{"n":5.5,"e":7375}],[14,{"n":5,"e":7380}],[13,{"n":5,"e":7390}],[11,{"n":4,"e":7405}],[10,{"n":5,"e":7408}],[9,{"n":4.5,"e":7419}],[7,{"n":5.5,"e":7526}],[6,{"n":3.5,"e":7440}],[5,{"n":4,"e":7448}],[4,{"n":4,"e":7453}],[3,{"n":5,"e":7457,"s":1}]],"fo":[[7526,[{"t":"Y"}]]]}],[4736,{"n":"Nkoulou","f":"Nicolas","fp":"DC","r":10,"c":122,"s":{"g":1,"s":51.5,"n":11,"a":4.68,"d":1.1,"Og":2,"Os":112,"On":23,"Oa":4.87,"Od":1.05,"pd":23,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5,"e":5449,"s":1}],[-37,{"n":5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":4.5,"e":5486}],[-34,{"n":5,"e":5490}],[-33,{"n":6,"e":5506}],[-32,{"n":4,"e":5512}],[-31,{"n":5,"e":5526}],[-29,{"n":5,"e":5546}],[-28,{"n":3,"e":5549}],[-27,{"n":6,"e":5566}],[-25,{"n":7,"e":5586,"g":1}],[25,{"n":null,"e":7304,"d":1}],[23,{"n":6,"e":7314}],[22,{"n":6,"e":7325}],[21,{"n":4.5,"e":7327}],[11,{"n":4.5,"e":7405}],[10,{"n":6.5,"e":7408,"g":1}],[8,{"n":3.5,"e":7420}],[6,{"n":4,"e":7440,"s":1}],[5,{"n":4.5,"e":7448,"s":1}],[4,{"n":4,"e":7453}],[2,{"n":3,"e":7463}],[1,{"n":5,"e":7470}]],"fo":[[7327,[{"t":"Y"}]],[7440,[{"t":"Y"}]]]}],[4744,{"n":"Ansaldi","f":"Cristian","fp":"DL","r":13,"c":122,"s":{"g":1,"s":106.5,"n":21,"a":5.07,"d":0.58,"Ss":59,"Sn":11,"Sa":5.36,"Sd":0.6,"Og":1,"Os":161.5,"On":32,"Oa":5.05,"Od":0.57,"pd":14,"pm":17,"pa":1,"Smsn":5.5,"Omsn":5.5},"p":[[-38,{"n":4.5,"e":5449}],[-37,{"n":5,"e":5465}],[-36,{"n":5,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":6,"e":5506}],[-32,{"n":4.5,"e":5512}],[-31,{"n":4.5,"e":5526}],[-30,{"n":4.5,"e":5531,"s":1}],[29,{"n":5,"e":7276}],[-29,{"n":4.5,"e":5546,"s":1}],[-28,{"n":5.5,"e":5549,"s":1}],[28,{"n":5,"e":7281}],[27,{"n":5,"e":7290,"s":1}],[26,{"n":4.5,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":6.5,"e":7306}],[23,{"n":5.5,"e":7314}],[22,{"n":6,"e":7325}],[21,{"n":5,"e":7327,"s":1}],[20,{"n":5,"e":7340}],[19,{"n":5.5,"e":7604}],[18,{"n":6,"e":7596,"s":1}],[16,{"n":5,"e":7369,"s":1}],[12,{"n":4.5,"e":7395,"s":1}],[10,{"n":4.5,"e":7408}],[9,{"n":5,"e":7419}],[8,{"n":5.5,"e":7420,"g":1}],[7,{"n":5,"e":7526,"s":1}],[5,{"n":4.5,"e":7448,"s":1}],[4,{"n":4.5,"e":7453,"s":1}],[3,{"n":4.5,"e":7457,"s":1}],[1,{"n":4.5,"e":7470}]],"fo":[[7395,[{"t":"I"}]],[7276,[{"t":"Y"}]]]}],[4745,{"n":"Rincón","f":"Tomás","fp":"MD","r":13,"c":122,"s":{"s":132.5,"n":26,"a":5.1,"d":0.62,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Os":188,"On":37,"Oa":5.08,"Od":0.63,"pm":37},"p":[[-38,{"n":5.5,"e":5449}],[-36,{"n":5.5,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":5.5,"e":5506}],[-32,{"n":4,"e":5512}],[-31,{"n":4.5,"e":5526}],[29,{"n":4.5,"e":7276}],[-29,{"n":4.5,"e":5546}],[-28,{"n":4.5,"e":5549}],[28,{"n":4,"e":7281}],[-27,{"n":6,"e":5566}],[26,{"n":5,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":4.5,"e":5586}],[24,{"n":4.5,"e":7306}],[23,{"n":5,"e":7314}],[22,{"n":5,"e":7325}],[21,{"n":5,"e":7327}],[20,{"n":4.5,"e":7340}],[19,{"n":4.5,"e":7604}],[17,{"n":4.5,"e":7359}],[16,{"n":5.5,"e":7369}],[15,{"n":6.5,"e":7375}],[14,{"n":5.5,"e":7380}],[13,{"n":6,"e":7390}],[12,{"n":5.5,"e":7395,"s":1}],[11,{"n":5,"e":7405}],[10,{"n":5.5,"e":7408}],[9,{"n":6.5,"e":7419}],[8,{"n":5,"e":7420}],[7,{"n":5,"e":7526}],[6,{"n":4.5,"e":7440}],[5,{"n":5,"e":7448}],[4,{"n":5,"e":7453}],[3,{"n":5.5,"e":7457}],[2,{"n":5.5,"e":7463}],[1,{"n":4.5,"e":7470}]],"fo":[[7281,[{"t":"I"}]],[7276,[{"t":"Y"}]],[7359,[{"t":"Y"}]],[7440,[{"t":"Y"}]],[7448,[{"t":"Y"}]],[7453,[{"t":"Y"}]],[7457,[{"t":"Y"}]],[7652,[{"t":"Y"},{"t":"O"}]]]}],[4803,{"n":"Sirigu","f":"Salvatore","fp":"G","r":12,"c":122,"s":{"s":121.5,"n":26,"a":4.67,"d":1.14,"Ss":75.5,"Sn":15,"Sa":5.03,"Sd":1.03,"Os":179.5,"On":37,"Oa":4.85,"Od":1.14,"pg":37},"p":[[-36,{"n":4,"e":5476}],[-35,{"n":6,"e":5486}],[-34,{"n":5,"e":5490}],[-33,{"n":7,"e":5506}],[-32,{"n":6,"e":5512}],[-31,{"n":5.5,"e":5526}],[-30,{"n":4,"e":5531}],[29,{"n":6,"e":7276}],[-29,{"n":5,"e":5546}],[-28,{"n":3.5,"e":5549}],[28,{"n":4.5,"e":7281}],[-27,{"n":6,"e":5566}],[27,{"n":4.5,"e":7290}],[26,{"n":4,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[-25,{"n":6,"e":5586}],[24,{"n":4.5,"e":7306}],[23,{"n":6,"e":7314}],[22,{"n":6,"e":7325}],[21,{"n":4,"e":7327}],[20,{"n":4,"e":7340}],[19,{"n":4,"e":7604}],[18,{"n":6,"e":7596}],[17,{"n":4,"e":7359}],[16,{"n":5,"e":7369}],[15,{"n":7,"e":7375}],[14,{"n":6,"e":7380}],[11,{"n":3.5,"e":7405}],[10,{"n":5,"e":7408}],[9,{"n":4,"e":7419}],[8,{"n":3,"e":7420}],[7,{"n":6,"e":7526}],[6,{"n":3,"e":7440}],[5,{"n":4,"e":7448}],[4,{"n":3,"e":7453}],[3,{"n":5,"e":7457}],[2,{"n":3.5,"e":7463}],[1,{"n":6,"e":7470}]]}],[6227,{"n":"Ujkani","f":"Samir","fp":"G","r":3,"c":122,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-37,{"n":5,"e":5465}],[25,{"n":null,"e":7304,"d":1}]]}],[6292,{"n":"Kryeziu","f":"Altin","fp":"MD","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[6293,{"n":"Portanova","f":"Denis","fp":"DC","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[6608,{"n":"Celesia","f":"Christian","fp":"DC","r":1,"c":122,"s":{"Os":5.5,"On":1,"Oa":5.5,"pd":1},"p":[[-38,{"n":5.5,"e":5449,"s":1}],[25,{"n":null,"e":7304,"d":1}]]}],[6612,{"n":"Horváth","f":"Krisztofer","fp":"MO","r":1,"c":122,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[-38,{"n":4.5,"e":5456,"s":1}],[-37,{"n":5,"e":5467,"s":1}],[-36,{"n":4.5,"e":5476,"s":1}],[25,{"n":null,"e":7304,"d":1}]]}],[6620,{"n":"Jean Greco","f":"","fp":"MD","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[6666,{"n":"Milinkovic-Savic","f":"Vanja","fp":"G","r":7,"c":122,"s":{"s":10,"n":2,"a":5,"d":0.71,"Os":10,"On":2,"Oa":5,"Od":0.71,"pg":2},"p":[[25,{"n":null,"e":7304,"d":1}],[13,{"n":5.5,"e":7390}],[12,{"n":4.5,"e":7395}]],"fo":[[7453,[{"t":"R"}]]]}],[7197,{"n":"Vojvoda","f":"Mergim","fp":"DL","r":8,"c":122,"s":{"s":87,"n":18,"a":4.83,"d":0.64,"Ss":28.5,"Sn":6,"Sa":4.75,"Sd":0.52,"Os":87,"On":18,"Oa":4.83,"Od":0.64,"pd":12,"pm":6},"p":[[29,{"n":4.5,"e":7276}],[28,{"n":4,"e":7281}],[27,{"n":4.5,"e":7290}],[26,{"n":5,"e":7652}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5.5,"e":7306,"s":1}],[23,{"n":5,"e":7314,"s":1}],[16,{"n":5,"e":7369,"s":1}],[14,{"n":5,"e":7380,"s":1}],[13,{"n":5,"e":7390,"s":1}],[12,{"n":5,"e":7395}],[11,{"n":4.5,"e":7405}],[7,{"n":5,"e":7526}],[6,{"n":5,"e":7440}],[5,{"n":6.5,"e":7448}],[4,{"n":3.5,"e":7453}],[3,{"n":5,"e":7457,"s":1}],[2,{"n":4,"e":7463}],[1,{"n":5,"e":7470,"s":1}]],"fo":[[7405,[{"t":"Y"}]],[7448,[{"t":"Y"}]]]}],[7382,{"n":"Gojak","f":"Amer","fp":"MO","r":7,"c":122,"s":{"g":1,"s":73.5,"n":15,"a":4.9,"d":0.71,"Og":1,"Os":73.5,"On":15,"Oa":4.9,"Od":0.71,"pm":14,"pa":1,"Smsn":7,"Omsn":7},"p":[[28,{"n":5,"e":7281}],[27,{"n":5,"e":7290,"s":1}],[26,{"n":4.5,"e":7652,"s":1}],[25,{"n":null,"e":7304,"d":1}],[24,{"n":5.5,"e":7306,"s":1}],[21,{"n":4.5,"e":7327,"s":1}],[19,{"n":4.5,"e":7604,"s":1}],[18,{"n":5,"e":7596,"s":1}],[17,{"n":4,"e":7359}],[16,{"n":4.5,"e":7369}],[15,{"n":7,"e":7375,"g":1,"s":1}],[13,{"n":5.5,"e":7390}],[12,{"n":4.5,"e":7395}],[11,{"n":5,"e":7405,"s":1}],[7,{"n":4.5,"e":7526,"s":1}],[3,{"n":4.5,"e":7457}]],"fo":[[7457,[{"t":"Y"}]]]}],[7424,{"n":"Aceto","f":"Giovanni","fp":"DC","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7426,{"n":"Cancello","f":"Rosario","fp":"A","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7437,{"n":"Spina","f":"Raffaele","fp":"DC","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[7461,{"n":"Vianni","f":"Samuele","fp":"A","r":1,"c":122,"s":{},"p":[[25,{"n":null,"e":7304,"d":1}]]}],[449,{"n":"Makengo","f":"Jean-Victor","fp":"MD","r":9,"c":124,"s":{"s":61,"n":13,"a":4.69,"d":0.33,"Os":65,"On":14,"Oa":4.64,"Od":0.36,"pm":14},"p":[[21,{"n":5,"e":7333,"s":1}],[-28,{"n":4,"e":3649}],[28,{"n":4.5,"e":7282}],[27,{"n":5,"e":7286,"s":1}],[26,{"n":5,"e":7297,"s":1}],[25,{"n":4,"e":7310}],[24,{"n":4.5,"e":7311}],[23,{"n":4.5,"e":7318,"s":1}],[22,{"n":4.5,"e":7322,"s":1}],[15,{"n":4.5,"e":7374,"s":1}],[11,{"n":5,"e":7405,"s":1}],[8,{"n":5,"e":7425,"s":1}],[6,{"n":5,"e":7441,"s":1}],[4,{"n":4.5,"e":7454,"s":1}]],"fo":[[7454,[{"t":"Y"}]]]}],[627,{"n":"Llorente","f":"Fernando","fp":"A","r":12,"c":124,"s":{"g":1,"s":58.5,"n":13,"a":4.5,"d":0.82,"Sg":1,"Ss":45.5,"Sn":10,"Sa":4.55,"Sd":0.9,"Og":1,"Os":58.5,"On":13,"Oa":4.5,"Od":0.82,"pa":13,"Smsn":7,"Omsn":7},"p":[[29,{"n":4.5,"e":7271,"s":1}],[28,{"n":4,"e":7282}],[27,{"n":4,"e":7286}],[26,{"n":7,"e":7297,"g":1}],[25,{"n":4.5,"e":7310,"s":1}],[24,{"n":4,"e":7311}],[23,{"n":4.5,"e":7318}],[22,{"n":4,"e":7322}],[21,{"n":4.5,"e":7333}],[20,{"n":4.5,"e":7610,"s":1}],[17,{"n":4,"e":7362,"s":1}],[16,{"n":4,"e":7583,"s":1}],[14,{"n":5,"e":7380,"s":1}],[3,{"n":null,"e":7462,"d":1}]],"fo":[[7311,[{"t":"Y"}]],[7333,[{"t":"Y"}]]]}],[739,{"n":"Pereyra","f":"Roberto","fp":"MO","r":16,"c":124,"s":{"g":4,"s":132,"n":25,"a":5.28,"d":0.98,"Sg":2,"Ss":30,"Sn":5,"Sa":6,"Sd":1,"Og":4,"Os":160,"On":31,"Oa":5.16,"Od":0.94,"pm":21,"pa":10,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5,"e":3928}],[-37,{"n":4,"e":3946}],[-33,{"n":5,"e":3979,"s":1}],[-32,{"n":4,"e":3996}],[-30,{"n":5.5,"e":4016}],[-29,{"n":4.5,"e":4021}],[29,{"n":6,"e":7271,"g":1}],[28,{"n":5,"e":7282}],[27,{"n":7,"e":7286}],[26,{"n":7,"e":7297,"g":1}],[25,{"n":5,"e":7310}],[23,{"n":5,"e":7318}],[21,{"n":5,"e":7333}],[20,{"n":5,"e":7610}],[19,{"n":5,"e":7346}],[18,{"n":4.5,"e":7354}],[17,{"n":4,"e":7362}],[16,{"n":6,"e":7364,"g":1}],[15,{"n":3.5,"e":7374}],[14,{"n":4,"e":7570}],[13,{"n":4.5,"e":7385}],[12,{"n":4,"e":7557}],[11,{"n":6,"e":7405}],[10,{"n":6.5,"e":7411,"g":1}],[9,{"n":6.5,"e":7415}],[8,{"n":6,"e":7425}],[7,{"n":5.5,"e":7434}],[6,{"n":6,"e":7441}],[5,{"n":4.5,"e":7443}],[4,{"n":6,"e":7454}],[3,{"n":4.5,"e":7458}]],"fo":[[7310,[{"t":"I"}]],[7405,[{"t":"I"},{"t":"Y"}]],[7271,[{"t":"Y"}]],[7318,[{"t":"Y"}]],[7385,[{"t":"Y"}]],[7411,[{"t":"Y"}]],[7415,[{"t":"Y"}]]]}],[812,{"n":"Prödl","f":"Sebastian","fp":"DC","r":1,"c":124}],[845,{"n":"Okaka","f":"Stefano","fp":"A","r":7,"c":124,"s":{"g":3,"s":61,"n":13,"a":4.69,"d":1.03,"Ss":8,"Sn":2,"Sa":4,"Og":6,"Os":119,"On":25,"Oa":4.76,"Od":1.04,"pa":25,"Smsn":6,"Omsn":6},"p":[[-38,{"n":7,"e":5457,"g":1}],[-37,{"n":3.5,"e":5466}],[-36,{"n":6.5,"e":5470,"g":1}],[-35,{"n":5,"e":5487}],[-33,{"n":4,"e":5507}],[-32,{"n":4.5,"e":5517,"s":1}],[-31,{"n":6,"e":5525,"g":1}],[-30,{"n":4.5,"e":5537,"s":1}],[-29,{"n":4,"e":5544}],[29,{"n":4,"e":7271}],[-28,{"n":4.5,"e":5557,"s":1}],[28,{"n":4,"e":7282,"s":1}],[-27,{"n":4,"e":5566}],[-26,{"n":4.5,"e":5577}],[23,{"n":6,"e":7318,"g":1,"s":1}],[22,{"n":5,"e":7322,"s":1}],[21,{"n":4.5,"e":7333,"s":1}],[8,{"n":4.5,"e":7425}],[7,{"n":4.5,"e":7434}],[6,{"n":4,"e":7441}],[5,{"n":7.5,"e":7443,"g":2}],[4,{"n":5,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":4,"e":7467}],[1,{"n":4,"e":7493}]]}],[1724,{"n":"Deulofeu","f":"Gerard","fp":"A","r":9,"c":124,"s":{"g":1,"s":62,"n":13,"a":4.77,"d":1.09,"Og":1,"Os":62,"On":13,"Oa":4.77,"Od":1.09,"pa":13,"Smsn":7.5,"Omsn":7.5},"p":[[22,{"n":3.5,"e":7322}],[21,{"n":7.5,"e":7333,"g":1}],[20,{"n":5.5,"e":7610}],[19,{"n":5,"e":7346}],[14,{"n":5,"e":7570,"s":1}],[13,{"n":4,"e":7385}],[12,{"n":4.5,"e":7557,"s":1}],[11,{"n":6,"e":7405}],[10,{"n":4.5,"e":7411,"s":1}],[7,{"n":4.5,"e":7434,"s":1}],[6,{"n":3.5,"e":7441}],[5,{"n":4.5,"e":7443,"s":1}],[4,{"n":4,"e":7454,"s":1}]],"fo":[[7570,[{"t":"I"}]]]}],[2023,{"n":"Zeegelaar","f":"Marvin","fp":"DL","r":10,"c":124,"s":{"g":1,"s":97.5,"n":21,"a":4.64,"d":0.67,"Ss":4,"Sn":1,"Sa":4,"Og":1,"Os":146.5,"On":31,"Oa":4.73,"Od":0.64,"pd":6,"pm":25,"Smsn":4,"Omsn":4},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":5,"e":5466,"s":1}],[-36,{"n":5.5,"e":5470}],[-35,{"n":5,"e":5487}],[-34,{"n":4.5,"e":5494}],[-31,{"n":5,"e":5525}],[-30,{"n":3.5,"e":5537,"s":1}],[-29,{"n":5,"e":5544}],[29,{"n":4,"e":7271}],[-28,{"n":5,"e":5557,"s":1}],[-26,{"n":5,"e":5577,"s":1}],[25,{"n":4.5,"e":7310}],[23,{"n":4,"e":7318}],[22,{"n":4,"e":7322}],[21,{"n":6,"e":7333}],[20,{"n":5.5,"e":7610}],[19,{"n":5,"e":7346}],[18,{"n":4.5,"e":7354}],[17,{"n":5,"e":7362,"s":1}],[16,{"n":4,"e":7364}],[15,{"n":4,"e":7374,"g":1}],[14,{"n":4.5,"e":7570}],[13,{"n":5.5,"e":7385}],[12,{"n":5,"e":7557}],[11,{"n":4,"e":7405}],[10,{"n":4,"e":7411}],[9,{"n":5,"e":7415}],[8,{"n":6,"e":7425}],[7,{"n":4.5,"e":7434}],[2,{"n":4,"e":7467}],[1,{"n":4.5,"e":7493}]],"fo":[[7310,[{"t":"Y"}]],[7318,[{"t":"Y"}]],[7346,[{"t":"Y"}]],[7354,[{"t":"Y"}]],[7362,[{"t":"Y"}]],[7411,[{"t":"Y"}]]]}],[4155,{"n":"Battistella","f":"Thomas","fp":"MD","r":1,"c":124}],[4228,{"n":"Gasparini","f":"Manuel","fp":"G","r":3,"c":124}],[4238,{"n":"Micin","f":"Petar","fp":"MO","r":1,"c":124}],[4346,{"n":"Rodrigo Becão","f":"","fp":"DC","r":10,"c":124,"s":{"g":1,"s":124.5,"n":26,"a":4.79,"d":0.99,"Sg":1,"Ss":33.5,"Sn":7,"Sa":4.79,"Sd":1.32,"Og":1,"Os":176.5,"On":36,"Oa":4.9,"Od":0.96,"pd":36,"Smsn":7,"Omsn":7},"p":[[-37,{"n":4,"e":5466}],[-36,{"n":5.5,"e":5470}],[-35,{"n":6,"e":5487}],[-34,{"n":4,"e":5494}],[-33,{"n":6,"e":5507}],[-31,{"n":5.5,"e":5525}],[29,{"n":3.5,"e":7271}],[-29,{"n":6,"e":5544}],[-28,{"n":4,"e":5557,"s":1}],[28,{"n":4,"e":7282}],[-27,{"n":5.5,"e":5566,"s":1}],[27,{"n":4.5,"e":7286}],[26,{"n":5,"e":7297,"s":1}],[-26,{"n":5.5,"e":5577}],[25,{"n":7,"e":7310,"g":1}],[24,{"n":6,"e":7311}],[23,{"n":3.5,"e":7318}],[20,{"n":6,"e":7610}],[19,{"n":5.5,"e":7346}],[18,{"n":5.5,"e":7354}],[17,{"n":5,"e":7362}],[16,{"n":4.5,"e":7364}],[14,{"n":3,"e":7570}],[13,{"n":5,"e":7385}],[12,{"n":5.5,"e":7557}],[11,{"n":4.5,"e":7405,"s":1}],[10,{"n":5,"e":7411}],[9,{"n":6,"e":7415}],[8,{"n":6,"e":7425}],[7,{"n":5.5,"e":7434}],[6,{"n":4,"e":7441}],[5,{"n":3.5,"e":7443}],[4,{"n":4,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":4.5,"e":7467}],[1,{"n":4,"e":7493}]],"fo":[[7405,[{"t":"Y"}]],[7441,[{"t":"Y"}]],[7443,[{"t":"Y"}]],[7454,[{"t":"Y"}]],[7570,[{"t":"Y"}]]]}],[4453,{"n":"Bonifazi","f":"Kevin","fp":"DC","r":15,"c":124,"s":{"s":105,"n":21,"a":5,"d":0.89,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.06,"Os":144.5,"On":30,"Oa":4.82,"Od":0.96,"pd":30},"p":[[-38,{"n":3.5,"e":5456}],[-37,{"n":4,"e":5467}],[-33,{"n":3.5,"e":5503}],[-32,{"n":4,"e":5511}],[-31,{"n":4,"e":5525}],[-30,{"n":3.5,"e":5535}],[29,{"n":4,"e":7271}],[-29,{"n":6,"e":5545}],[28,{"n":5.5,"e":7282}],[-27,{"n":5,"e":5565}],[26,{"n":6,"e":7297}],[-26,{"n":6,"e":5574}],[25,{"n":6,"e":7310}],[24,{"n":6,"e":7311}],[23,{"n":4,"e":7318}],[22,{"n":4.5,"e":7322}],[21,{"n":6,"e":7333}],[20,{"n":5,"e":7610}],[19,{"n":5.5,"e":7346}],[18,{"n":5,"e":7354}],[17,{"n":4,"e":7362}],[16,{"n":5,"e":7364}],[15,{"n":2.5,"e":7374}],[14,{"n":4.5,"e":7570}],[13,{"n":5.5,"e":7385}],[12,{"n":6,"e":7557}],[11,{"n":4.5,"e":7405}],[10,{"n":5.5,"e":7411}],[6,{"n":5,"e":7441,"s":1}],[5,{"n":5,"e":7443,"s":1}]],"fo":[[7411,[{"t":"Y"}]],[7610,[{"t":"Y"}]]]}],[4476,{"n":"Pussetto","f":"Ignacio","fp":"A","r":5,"c":124,"s":{"g":3,"s":57.5,"n":11,"a":5.23,"d":1.35,"Og":3,"Os":67,"On":13,"Oa":5.15,"Od":1.25,"pm":2,"pa":11,"Smsn":7,"Omsn":7},"p":[[-32,{"n":4.5,"e":3996,"s":1}],[-29,{"n":5,"e":4021,"s":1}],[15,{"n":3.5,"e":7374}],[14,{"n":4,"e":7570}],[13,{"n":5.5,"e":7385}],[12,{"n":5,"e":7557}],[11,{"n":7,"e":7405,"g":1}],[9,{"n":7,"e":7415,"g":1}],[8,{"n":4,"e":7425}],[7,{"n":4,"e":7434}],[6,{"n":6,"e":7441}],[5,{"n":4.5,"e":7443,"s":1}],[4,{"n":7,"e":7454,"g":1,"s":1}]],"fo":[[7434,[{"t":"Y"}]],[7443,[{"t":"Y"}]]]}],[4487,{"n":"Samir","f":"","fp":"DC","r":8,"c":124,"s":{"g":1,"s":109,"n":23,"a":4.74,"d":0.99,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":2,"Os":163.5,"On":34,"Oa":4.81,"Od":0.96,"pd":34,"Smsn":6,"Omsn":6},"p":[[-38,{"n":5.5,"e":5457}],[-37,{"n":6.5,"e":5466,"g":1}],[-36,{"n":6,"e":5470,"s":1}],[-35,{"n":5,"e":5487,"s":1}],[-33,{"n":5,"e":5507,"s":1}],[-32,{"n":3,"e":5517}],[-31,{"n":5,"e":5525,"s":1}],[-30,{"n":5,"e":5537}],[-29,{"n":5,"e":5544,"s":1}],[29,{"n":4.5,"e":7271,"s":1}],[-28,{"n":4,"e":5557}],[-27,{"n":4.5,"e":5566}],[25,{"n":5,"e":7310,"s":1}],[22,{"n":4.5,"e":7322}],[21,{"n":6.5,"e":7333}],[19,{"n":5,"e":7346}],[18,{"n":4.5,"e":7354}],[17,{"n":4,"e":7362}],[16,{"n":4,"e":7364}],[15,{"n":3.5,"e":7374}],[14,{"n":4.5,"e":7570}],[13,{"n":5.5,"e":7385}],[12,{"n":4.5,"e":7557}],[11,{"n":3,"e":7405}],[10,{"n":5.5,"e":7411}],[9,{"n":6.5,"e":7415}],[8,{"n":6,"e":7425}],[7,{"n":5.5,"e":7434}],[6,{"n":4,"e":7441}],[5,{"n":3,"e":7443}],[4,{"n":6,"e":7454,"g":1}],[3,{"n":5,"e":7458}],[2,{"n":4.5,"e":7467}],[1,{"n":4,"e":7493}]],"fo":[[7271,[{"t":"Y"}]],[7346,[{"t":"Y"}]],[7362,[{"t":"Y"}]],[7364,[{"t":"Y"}]],[7415,[{"t":"Y"}]],[7557,[{"t":"Y"}]]]}],[4526,{"n":"Scuffet","f":"Simone","fp":"G","r":7,"c":124}],[4565,{"n":"Musso","f":"Juan","fp":"G","r":19,"c":124,"s":{"s":142.5,"n":27,"a":5.28,"d":1,"Ss":129,"Sn":24,"Sa":5.38,"Sd":0.99,"Os":222.5,"On":40,"Oa":5.56,"Od":1.06,"pg":40},"p":[[-38,{"n":8,"e":5457}],[-37,{"n":6,"e":5466}],[-36,{"n":7,"e":5470}],[-35,{"n":6,"e":5487}],[-34,{"n":6,"e":5494}],[-33,{"n":6,"e":5507}],[-32,{"n":4,"e":5517}],[-31,{"n":6,"e":5525}],[-30,{"n":6,"e":5537}],[-29,{"n":6.5,"e":5544}],[29,{"n":5,"e":7271}],[-28,{"n":6.5,"e":5557}],[28,{"n":6,"e":7282}],[-27,{"n":5,"e":5566}],[27,{"n":4.5,"e":7286}],[26,{"n":6.5,"e":7297}],[-26,{"n":7,"e":5577}],[25,{"n":6.5,"e":7310}],[24,{"n":6,"e":7311}],[23,{"n":5,"e":7318}],[22,{"n":3,"e":7322}],[21,{"n":5.5,"e":7333}],[20,{"n":7,"e":7610}],[19,{"n":6.5,"e":7346}],[18,{"n":5.5,"e":7354}],[17,{"n":6,"e":7362}],[16,{"n":5,"e":7364}],[15,{"n":4,"e":7374}],[14,{"n":4,"e":7570}],[13,{"n":5,"e":7385}],[12,{"n":6,"e":7557}],[11,{"n":4.5,"e":7405}],[10,{"n":6,"e":7411}],[9,{"n":6,"e":7415}],[8,{"n":6,"e":7425}],[7,{"n":5.5,"e":7434}],[6,{"n":4,"e":7441}],[3,{"n":5,"e":7458}],[2,{"n":5,"e":7467}],[1,{"n":3.5,"e":7493}]],"fo":[[7318,[{"t":"Y"}]],[7405,[{"t":"Y"}]],[7415,[{"t":"Y"}]],[7425,[{"t":"Y"}]]]}],[4574,{"n":"de Paul","f":"Rodrigo","fp":"MO","r":34,"c":124,"s":{"g":6,"s":160,"n":28,"a":5.71,"d":1.18,"Sg":1,"Ss":46,"Sn":8,"Sa":5.75,"Sd":1.44,"Og":8,"Os":235.5,"On":40,"Oa":5.89,"Od":1.2,"pm":40,"Smsn":6,"Omsn":6},"p":[[-38,{"n":7,"e":5457}],[-37,{"n":6,"e":5466}],[-36,{"n":6.5,"e":5470}],[-35,{"n":7,"e":5487}],[-34,{"n":6,"e":5494,"g":1}],[-33,{"n":7,"e":5507}],[-32,{"n":5,"e":5517}],[-31,{"n":8,"e":5525,"g":1}],[-30,{"n":5.5,"e":5537}],[29,{"n":3.5,"e":7271}],[-29,{"n":8,"e":5544}],[28,{"n":6.5,"e":7282}],[-27,{"n":4,"e":5566}],[27,{"n":6.5,"e":7286,"g":1}],[26,{"n":7,"e":7297}],[-26,{"n":5.5,"e":5577}],[25,{"n":6,"e":7310}],[24,{"n":7,"e":7311}],[23,{"n":6,"e":7318}],[22,{"n":3.5,"e":7322}],[20,{"n":6.5,"e":7610,"g":1}],[19,{"n":5,"e":7346}],[18,{"n":6,"e":7354,"g":1}],[17,{"n":5,"e":7362}],[16,{"n":5.5,"e":7364}],[15,{"n":2.5,"e":7374}],[14,{"n":5,"e":7570}],[13,{"n":6,"e":7385}],[12,{"n":5.5,"e":7557}],[11,{"n":6.5,"e":7405,"g":1}],[10,{"n":5.5,"e":7411}],[9,{"n":7,"e":7415}],[8,{"n":7.5,"e":7425,"g":1}],[7,{"n":5,"e":7434}],[6,{"n":7,"e":7441,"g":1}],[5,{"n":5.5,"e":7443}],[4,{"n":7,"e":7454}],[3,{"n":5,"e":7458}],[2,{"n":6,"e":7467}],[1,{"n":5,"e":7493}]],"fo":[[7297,[{"t":"Y"}]],[7318,[{"t":"Y"}]],[7610,[{"t":"Y"},{"t":"O"}]]],"a":{"m":35,"a":37,"M":44,"n":8}}],[4674,{"n":"Nuytinck","f":"Bram","fp":"DC","r":14,"c":124,"s":{"g":1,"s":81,"n":15,"a":5.4,"d":0.71,"Sg":1,"Ss":58.5,"Sn":11,"Sa":5.32,"Sd":0.78,"Og":1,"Os":136,"On":26,"Oa":5.23,"Od":0.87,"pd":26,"Smsn":6,"Omsn":6},"p":[[-36,{"n":5,"e":5470}],[-35,{"n":5.5,"e":5487}],[-34,{"n":4.5,"e":5494}],[-33,{"n":5,"e":5507}],[-32,{"n":3,"e":5517}],[-31,{"n":7,"e":5525}],[-30,{"n":4.5,"e":5537}],[-29,{"n":5.5,"e":5544}],[29,{"n":4,"e":7271}],[-28,{"n":4,"e":5557}],[28,{"n":5,"e":7282}],[-27,{"n":5,"e":5566}],[27,{"n":5.5,"e":7286}],[-26,{"n":6,"e":5577}],[26,{"n":5.5,"e":7297}],[25,{"n":5.5,"e":7310}],[24,{"n":5,"e":7311}],[23,{"n":6,"e":7318,"g":1}],[22,{"n":4.5,"e":7322}],[21,{"n":7,"e":7333}],[20,{"n":5.5,"e":7610}],[19,{"n":5,"e":7346,"s":1}],[11,{"n":5.5,"e":7405}],[9,{"n":6,"e":7415}],[8,{"n":6,"e":7425}],[7,{"n":5,"e":7434}]],"fo":[[7405,[{"t":"I"}]],[7434,[{"t":"Y"}]]]}],[4688,{"n":"Stryger Larsen","f":"Jens","fp":"DL","r":15,"c":124,"s":{"g":1,"s":121.5,"n":24,"a":5.06,"d":0.84,"Sg":1,"Ss":121.5,"Sn":24,"Sa":5.06,"Sd":0.84,"Og":1,"Os":183,"On":36,"Oa":5.08,"Od":0.82,"pd":6,"pm":30,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5.5,"e":5457}],[-36,{"n":6,"e":5470}],[-35,{"n":5,"e":5487,"s":1}],[-34,{"n":4.5,"e":5494}],[-33,{"n":5.5,"e":5507}],[-32,{"n":4,"e":5517}],[-31,{"n":6,"e":5525}],[-30,{"n":4.5,"e":5537}],[-29,{"n":6,"e":5544}],[29,{"n":6.5,"e":7271,"g":1,"s":1}],[-28,{"n":4,"e":5557}],[28,{"n":5,"e":7282}],[-27,{"n":4.5,"e":5566}],[27,{"n":5,"e":7286}],[26,{"n":7,"e":7297}],[-26,{"n":6,"e":5577}],[25,{"n":4,"e":7310,"s":1}],[24,{"n":6,"e":7311}],[23,{"n":5,"e":7318}],[22,{"n":4.5,"e":7322}],[21,{"n":6,"e":7333}],[20,{"n":5.5,"e":7610}],[19,{"n":5,"e":7346}],[18,{"n":4.5,"e":7354}],[17,{"n":5,"e":7362}],[16,{"n":4,"e":7364}],[15,{"n":3.5,"e":7374}],[14,{"n":4.5,"e":7570}],[13,{"n":5,"e":7385}],[12,{"n":5,"e":7557,"s":1}],[11,{"n":4.5,"e":7405}],[10,{"n":5,"e":7411}],[9,{"n":5,"e":7415}],[8,{"n":6.5,"e":7425}],[7,{"n":5,"e":7434}],[6,{"n":4.5,"e":7441}]]}],[4720,{"n":"Jajalo","f":"Mato","fp":"MD","r":3,"c":124,"s":{"s":5,"n":1,"a":5,"Os":38.5,"On":8,"Oa":4.81,"Od":0.37,"pm":8},"p":[[-33,{"n":5,"e":5507}],[-32,{"n":4,"e":5517}],[-30,{"n":5,"e":5537}],[-29,{"n":5,"e":5544}],[-28,{"n":4.5,"e":5557}],[-27,{"n":5,"e":5566,"s":1}],[-26,{"n":5,"e":5577}],[9,{"n":5,"e":7415,"s":1}]]}],[4779,{"n":"De Maio","f":"Sebastien","fp":"DC","r":8,"c":124,"s":{"s":68.5,"n":14,"a":4.89,"d":0.79,"Os":112.5,"On":22,"Oa":5.11,"Od":0.77,"pd":22},"p":[[-38,{"n":6,"e":5457}],[-36,{"n":5.5,"e":5470}],[-35,{"n":5,"e":5487,"s":1}],[-34,{"n":5,"e":5494}],[-33,{"n":6,"e":5507}],[-31,{"n":6,"e":5525}],[-29,{"n":6,"e":5544}],[-27,{"n":4.5,"e":5566}],[27,{"n":4.5,"e":7286}],[26,{"n":6.5,"e":7297}],[24,{"n":5,"e":7311,"s":1}],[20,{"n":4.5,"e":7610,"s":1}],[19,{"n":5,"e":7346,"s":1}],[15,{"n":4,"e":7374}],[13,{"n":5,"e":7385,"s":1}],[10,{"n":5,"e":7411,"s":1}],[6,{"n":4,"e":7441}],[5,{"n":5,"e":7443}],[4,{"n":5.5,"e":7454}],[3,{"n":5,"e":7458}],[2,{"n":6,"e":7467}],[1,{"n":3.5,"e":7493}]],"fo":[[7610,[{"t":"Y"}]]]}],[5338,{"n":"Nestorovski","f":"Ilija","fp":"A","r":11,"c":124,"s":{"g":2,"s":87.5,"n":19,"a":4.61,"d":0.76,"Og":4,"Os":143,"On":31,"Oa":4.61,"Od":0.94,"pa":31,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":5,"e":5457,"s":1}],[-37,{"n":3.5,"e":5466}],[-36,{"n":4.5,"e":5470,"s":1}],[-35,{"n":7,"e":5487,"g":1}],[-34,{"n":3.5,"e":5494}],[-32,{"n":3.5,"e":5517}],[-31,{"n":4.5,"e":5525,"s":1}],[-30,{"n":4,"e":5537}],[-29,{"n":7,"e":5544,"g":1,"s":1}],[28,{"n":3.5,"e":7282,"s":1}],[-28,{"n":4.5,"e":5557,"s":1}],[-27,{"n":4.5,"e":5566}],[27,{"n":4,"e":7286,"s":1}],[-26,{"n":4,"e":5577}],[26,{"n":4.5,"e":7297,"s":1}],[25,{"n":4.5,"e":7310}],[24,{"n":6.5,"e":7311,"g":1}],[23,{"n":4.5,"e":7318,"s":1}],[22,{"n":4,"e":7322,"s":1}],[21,{"n":4.5,"e":7333,"s":1}],[18,{"n":4.5,"e":7354,"s":1}],[17,{"n":4.5,"e":7362,"s":1}],[16,{"n":5,"e":7364,"s":1}],[15,{"n":4.5,"e":7374,"s":1}],[14,{"n":4,"e":7570,"s":1}],[13,{"n":4.5,"e":7385,"s":1}],[12,{"n":4.5,"e":7557}],[11,{"n":6.5,"e":7405,"g":1,"s":1}],[3,{"n":4.5,"e":7458,"s":1}],[2,{"n":4,"e":7467,"s":1}],[1,{"n":5,"e":7493,"s":1}]],"fo":[[7286,[{"t":"Y"}]]]}],[6137,{"n":"Walace","f":"","fp":"MD","r":12,"c":124,"s":{"s":110,"n":21,"a":5.24,"d":0.74,"Ss":90.5,"Sn":17,"Sa":5.32,"Sd":0.75,"Os":162.5,"On":31,"Oa":5.24,"Od":0.76,"pm":31},"p":[[-38,{"n":6,"e":5457}],[-37,{"n":3.5,"e":5466}],[-36,{"n":6,"e":5470}],[-34,{"n":5.5,"e":5494}],[-33,{"n":5.5,"e":5507,"s":1}],[-32,{"n":5,"e":5517}],[-31,{"n":6.5,"e":5525}],[-30,{"n":5,"e":5537,"s":1}],[-29,{"n":4.5,"e":5544}],[29,{"n":5.5,"e":7271}],[28,{"n":5,"e":7282}],[-28,{"n":5,"e":5557}],[27,{"n":5.5,"e":7286}],[26,{"n":7,"e":7297}],[25,{"n":5,"e":7310,"s":1}],[24,{"n":6,"e":7311}],[23,{"n":5,"e":7318}],[22,{"n":4.5,"e":7322}],[21,{"n":6.5,"e":7333}],[20,{"n":6,"e":7610}],[19,{"n":5.5,"e":7346,"s":1}],[18,{"n":5.5,"e":7354}],[17,{"n":4.5,"e":7362,"s":1}],[16,{"n":4.5,"e":7364}],[15,{"n":4.5,"e":7374}],[14,{"n":4.5,"e":7570,"s":1}],[13,{"n":5.5,"e":7385}],[11,{"n":5.5,"e":7405}],[10,{"n":4,"e":7411,"s":1}],[9,{"n":5,"e":7415,"s":1}],[5,{"n":5,"e":7443,"s":1}]],"fo":[[7364,[{"t":"Y"}]]]}],[6611,{"n":"Palumbo","f":"Martin","fp":"MD","r":1,"c":124,"s":{"s":4,"n":1,"a":4,"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pm":1,"pa":1},"p":[[-38,{"n":4.5,"e":5457,"s":1}],[1,{"n":4,"e":7493}]]}],[7195,{"n":"Ouwejan","f":"Thomas","fp":"DL","r":5,"c":124,"s":{"s":47.5,"n":10,"a":4.75,"d":0.92,"Os":47.5,"On":10,"Oa":4.75,"Od":0.92,"pd":5,"pm":5},"p":[[23,{"n":6,"e":7318,"s":1}],[22,{"n":5,"e":7322,"s":1}],[18,{"n":5,"e":7354,"s":1}],[16,{"n":5,"e":7364,"s":1}],[6,{"n":4,"e":7441,"s":1}],[5,{"n":3,"e":7443}],[4,{"n":6,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":5,"e":7467,"s":1}],[1,{"n":4.5,"e":7493,"s":1}]]}],[7238,{"n":"Arslan","f":"Tolgay","fp":"MD","r":15,"c":124,"s":{"g":2,"s":124.5,"n":24,"a":5.19,"d":0.76,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":124.5,"On":24,"Oa":5.19,"Od":0.76,"pm":24,"Smsn":6,"Omsn":6},"p":[[29,{"n":5,"e":7271,"s":1}],[27,{"n":5,"e":7286}],[26,{"n":5.5,"e":7297}],[25,{"n":6.5,"e":7310}],[24,{"n":5.5,"e":7311,"s":1}],[23,{"n":5,"e":7318}],[22,{"n":4,"e":7322}],[21,{"n":5,"e":7333}],[20,{"n":6,"e":7610}],[19,{"n":4,"e":7346}],[18,{"n":5,"e":7354,"s":1}],[17,{"n":6,"e":7362}],[16,{"n":7,"e":7364,"g":1,"s":1}],[14,{"n":5,"e":7570}],[12,{"n":5.5,"e":7557}],[10,{"n":4.5,"e":7411}],[9,{"n":6,"e":7415,"g":1}],[8,{"n":5,"e":7425}],[7,{"n":5.5,"e":7434}],[6,{"n":4.5,"e":7441}],[5,{"n":4.5,"e":7443}],[4,{"n":5.5,"e":7454}],[3,{"n":4,"e":7458}],[2,{"n":5,"e":7467}]],"fo":[[7333,[{"t":"Y"}]],[7346,[{"t":"Y"}]],[7362,[{"t":"Y"}]],[7415,[{"t":"Y"}]],[7425,[{"t":"Y"}]],[7441,[{"t":"Y"}]],[7443,[{"t":"Y"}]],[7454,[{"t":"Y"}]]]}],[7240,{"n":"Forestieri","f":"Fernando","fp":"A","r":3,"c":124,"s":{"g":1,"s":53,"n":11,"a":4.82,"d":0.75,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":53,"On":11,"Oa":4.82,"Od":0.75,"pa":11,"Smsn":6.5,"Omsn":6.5},"p":[[29,{"n":5,"e":7271,"s":1}],[28,{"n":5,"e":7282,"s":1}],[16,{"n":3.5,"e":7364}],[15,{"n":4.5,"e":7374,"s":1}],[9,{"n":6.5,"e":7415,"g":1}],[6,{"n":4.5,"e":7441,"s":1}],[5,{"n":5.5,"e":7443,"s":1}],[4,{"n":4.5,"e":7454,"s":1}],[3,{"n":4.5,"e":7458,"s":1}],[2,{"n":4.5,"e":7467,"s":1}],[1,{"n":5,"e":7493,"s":1}]]}],[7290,{"n":"Molina","f":"Nahuel","fp":"DL","r":11,"c":124,"s":{"s":104,"n":20,"a":5.2,"d":0.68,"Ss":79.5,"Sn":15,"Sa":5.3,"Sd":0.7,"Os":104,"On":20,"Oa":5.2,"Od":0.68,"pd":11,"pm":9},"p":[[29,{"n":6.5,"e":7271}],[28,{"n":5,"e":7282}],[27,{"n":5,"e":7286}],[26,{"n":7,"e":7297}],[25,{"n":5,"e":7310}],[24,{"n":5,"e":7311}],[23,{"n":6,"e":7318,"s":1}],[22,{"n":4.5,"e":7322,"s":1}],[21,{"n":5.5,"e":7333,"s":1}],[20,{"n":5,"e":7610,"s":1}],[19,{"n":5,"e":7346,"s":1}],[18,{"n":5,"e":7354,"s":1}],[17,{"n":5,"e":7362}],[16,{"n":5.5,"e":7364,"s":1}],[15,{"n":4.5,"e":7374,"s":1}],[12,{"n":5,"e":7557}],[10,{"n":5,"e":7411,"s":1}],[9,{"n":5,"e":7415,"s":1}],[5,{"n":4,"e":7443}],[3,{"n":5.5,"e":7458,"s":1}]],"fo":[[7282,[{"t":"Y"}]]]}],[7542,{"n":"Rigo","f":"Alessandro","fp":"MD","r":1,"c":124}],[7543,{"n":"Carnelos","f":"Matteo","fp":"G","r":1,"c":124}],[7672,{"n":"Braaf","f":"Jayden","fp":"A","r":3,"c":124,"s":{"s":8,"n":2,"a":4,"d":0.71,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":8,"On":2,"Oa":4,"Od":0.71,"pa":2},"p":[[29,{"n":3.5,"e":7271}],[24,{"n":4.5,"e":7311,"s":1}]]}],[1204,{"n":"Tameze","f":"Adrien","fp":"MD","r":15,"c":126,"s":{"g":1,"s":143.5,"n":27,"a":5.31,"d":0.91,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.1,"Og":1,"Os":170,"On":32,"Oa":5.31,"Od":0.85,"pm":29,"pa":3,"Smsn":7,"Omsn":7},"p":[[-37,{"n":5,"e":5462,"s":1}],[-33,{"n":5.5,"e":5498}],[-32,{"n":5,"e":5513,"s":1}],[-30,{"n":6,"e":5529}],[-29,{"n":5,"e":5538,"s":1}],[29,{"n":5,"e":7272}],[28,{"n":4,"e":7283}],[27,{"n":4,"e":7289}],[26,{"n":4,"e":7298}],[25,{"n":6.5,"e":7646}],[23,{"n":5.5,"e":7315}],[22,{"n":6,"e":7326}],[21,{"n":5,"e":7333}],[20,{"n":5,"e":7338}],[19,{"n":6.5,"e":7347}],[17,{"n":6.5,"e":7594}],[16,{"n":5.5,"e":7369}],[15,{"n":6,"e":7576}],[14,{"n":4.5,"e":7383}],[13,{"n":4.5,"e":7386}],[12,{"n":4.5,"e":7400,"s":1}],[11,{"n":7,"e":7402,"g":1}],[10,{"n":5,"e":7412}],[9,{"n":6.5,"e":7413}],[8,{"n":5,"e":7426}],[7,{"n":5,"e":7432,"s":1}],[6,{"n":6.5,"e":7520}],[5,{"n":4.5,"e":7445}],[4,{"n":5.5,"e":7455}],[3,{"n":4,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":5.5,"e":7471}]],"fo":[[7315,[{"t":"I"}]],[7646,[{"t":"I"}]],[7333,[{"t":"Y"}]],[7432,[{"t":"Y"}]],[7455,[{"t":"Y"}]]]}],[2749,{"n":"Kalinic","f":"Nikola","fp":"A","r":6,"c":126,"s":{"g":1,"s":51.5,"n":12,"a":4.29,"d":0.69,"Og":4,"Os":85,"On":18,"Oa":4.72,"Od":1.07,"pa":18,"Smsn":6,"Omsn":6},"p":[[-38,{"n":7,"e":5452,"g":1}],[-35,{"n":6.5,"e":5483,"g":1}],[-32,{"n":6.5,"e":5508,"g":1}],[-29,{"n":5,"e":5544}],[-28,{"n":4,"e":5552,"s":1}],[-27,{"n":4.5,"e":5564,"s":1}],[21,{"n":4,"e":7333}],[20,{"n":3.5,"e":7338}],[19,{"n":4.5,"e":7347}],[18,{"n":3.5,"e":7349}],[17,{"n":6,"e":7594,"g":1}],[16,{"n":4,"e":7369}],[15,{"n":4,"e":7576}],[8,{"n":4,"e":7426}],[7,{"n":4,"e":7432}],[6,{"n":5,"e":7520}],[5,{"n":4.5,"e":7445}],[4,{"n":4.5,"e":7455,"s":1}]],"fo":[[7426,[{"t":"I"}]]],"a":{"m":7,"a":9,"M":12,"n":5}}],[4256,{"n":"Eddie Salcedo","f":"","fp":"A","r":7,"c":126,"s":{"s":60,"n":13,"a":4.62,"d":0.62,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":94,"On":21,"Oa":4.48,"Od":0.56,"pm":1,"pa":20},"p":[[-38,{"n":4.5,"e":5451,"s":1}],[-37,{"n":4.5,"e":5467,"s":1}],[-36,{"n":4,"e":5477,"s":1}],[-35,{"n":3.5,"e":5486}],[-34,{"n":4.5,"e":5497}],[-33,{"n":4.5,"e":5502,"s":1}],[29,{"n":4.5,"e":7272,"s":1}],[-27,{"n":4.5,"e":5567,"s":1}],[27,{"n":4.5,"e":7289,"s":1}],[-26,{"n":4,"e":5575,"s":1}],[26,{"n":4.5,"e":7298,"s":1}],[15,{"n":4.5,"e":7576,"s":1}],[14,{"n":3,"e":7383}],[13,{"n":5,"e":7386}],[12,{"n":5,"e":7400}],[11,{"n":5.5,"e":7402}],[10,{"n":5,"e":7412,"s":1}],[9,{"n":4.5,"e":7413,"s":1}],[8,{"n":5,"e":7426,"s":1}],[4,{"n":5,"e":7455,"s":1}],[3,{"n":4,"e":7461,"s":1}]],"fo":[[7400,[{"t":"Y"}]],[7402,[{"t":"Y"}]],[7412,[{"t":"Y"}]]]}],[4343,{"n":"Vieira","f":"Ronaldo","fp":"MD","r":3,"c":126,"s":{"s":20.5,"n":4,"a":5.13,"d":0.25,"Os":53.5,"On":11,"Oa":4.86,"Od":0.55,"pm":11},"p":[[-38,{"n":5.5,"e":5450}],[-37,{"n":3.5,"e":5463}],[-35,{"n":4.5,"e":5484,"s":1}],[-29,{"n":5,"e":5543,"s":1}],[-28,{"n":5,"e":5555}],[-26,{"n":5,"e":5575}],[-25,{"n":4.5,"e":5583,"s":1}],[24,{"n":5,"e":7312,"s":1}],[23,{"n":5,"e":7315,"s":1}],[5,{"n":5,"e":7445}],[4,{"n":5.5,"e":7455}]],"fo":[[7445,[{"t":"Y"}]]]}],[4347,{"n":"Barak","f":"Antonin","fp":"MO","r":25,"c":126,"s":{"g":7,"s":146.5,"n":26,"a":5.63,"d":1.12,"Sg":4,"Ss":86,"Sn":15,"Sa":5.73,"Sd":1.03,"Og":8,"Os":203,"On":37,"Oa":5.49,"Od":1.06,"pm":17,"pa":20,"Smsn":6,"Omsn":4.5},"p":[[-38,{"n":4.5,"e":5453,"g":1}],[-37,{"n":6,"e":5466}],[-36,{"n":5,"e":5468}],[-35,{"n":5.5,"e":5481}],[-34,{"n":5.5,"e":5491}],[-33,{"n":5,"e":5500}],[-32,{"n":6,"e":5509}],[-31,{"n":6.5,"e":5522}],[-30,{"n":3.5,"e":5536}],[29,{"n":7,"e":7272,"g":1}],[-29,{"n":4.5,"e":5543}],[-28,{"n":4.5,"e":5550,"s":1}],[28,{"n":4.5,"e":7283}],[27,{"n":5,"e":7289}],[26,{"n":3.5,"e":7298}],[25,{"n":6,"e":7646}],[24,{"n":6,"e":7312,"g":1}],[23,{"n":6,"e":7315}],[22,{"n":7,"e":7326,"g":1}],[21,{"n":5.5,"e":7333}],[20,{"n":5,"e":7338}],[19,{"n":7.5,"e":7347,"g":1}],[18,{"n":6,"e":7349}],[17,{"n":6,"e":7594}],[16,{"n":5,"e":7369}],[15,{"n":6,"e":7576}],[12,{"n":4,"e":7400}],[11,{"n":5.5,"e":7402}],[10,{"n":5,"e":7412}],[9,{"n":6,"e":7413}],[8,{"n":5,"e":7426}],[7,{"n":7,"e":7432,"g":1}],[6,{"n":8,"e":7520,"g":2}],[5,{"n":5,"e":7445,"s":1}],[3,{"n":4,"e":7461}],[2,{"n":6.5,"e":7467}],[1,{"n":4.5,"e":7471,"s":1}]],"fo":[[7400,[{"t":"R"}]],[7312,[{"t":"Y"}]],[7369,[{"t":"Y"}]]],"a":{"m":18,"a":29,"M":42,"n":13}}],[4398,{"n":"Favilli","f":"Andrea","fp":"A","r":7,"c":126,"s":{"g":2,"s":44.5,"n":10,"a":4.45,"d":0.86,"Og":2,"Os":76,"On":18,"Oa":4.22,"Od":0.88,"pa":18,"Smsn":6,"Omsn":6},"p":[[-37,{"n":5,"e":5464,"s":1}],[-36,{"n":2.5,"e":5471}],[-35,{"n":4.5,"e":5484,"s":1}],[-34,{"n":4.5,"e":5491,"s":1}],[-31,{"n":4.5,"e":5521,"s":1}],[-30,{"n":4,"e":5537,"s":1}],[-29,{"n":3.5,"e":5541}],[28,{"n":4,"e":7283,"s":1}],[-27,{"n":3,"e":5561}],[26,{"n":4,"e":7298,"s":1}],[25,{"n":4.5,"e":7646,"s":1}],[11,{"n":4,"e":7402,"s":1}],[10,{"n":4,"e":7412,"s":1}],[9,{"n":4,"e":7413,"s":1}],[5,{"n":6,"e":7445,"g":1,"s":1}],[4,{"n":4.5,"e":7455}],[3,{"n":3.5,"e":7461}],[2,{"n":6,"e":7467,"g":1,"s":1}]],"fo":[[7445,[{"t":"I"}]]]}],[4425,{"n":"Lasagna","f":"Kevin","fp":"A","r":13,"c":126,"s":{"g":4,"s":122,"n":27,"a":4.52,"d":0.97,"Sg":4,"Ss":79.5,"Sn":17,"Sa":4.68,"Sd":1.16,"Og":10,"Os":188.5,"On":39,"Oa":4.83,"Od":1.11,"pa":39,"Smsn":6,"Omsn":6},"p":[[-38,{"n":6,"e":5457}],[-37,{"n":5,"e":5466,"s":1}],[-36,{"n":4,"e":5470}],[-34,{"n":4.5,"e":5494}],[-33,{"n":5,"e":5507}],[-32,{"n":6.5,"e":5517,"g":1}],[-31,{"n":6.5,"e":5525,"g":1}],[-30,{"n":6.5,"e":5537,"g":1}],[-29,{"n":6,"e":5544,"g":1}],[29,{"n":7,"e":7272,"g":1}],[28,{"n":3.5,"e":7283}],[-28,{"n":7.5,"e":5557,"g":2}],[27,{"n":4,"e":7289}],[-27,{"n":4,"e":5566,"s":1}],[-26,{"n":5,"e":5577,"s":1}],[26,{"n":4,"e":7298}],[25,{"n":6.5,"e":7646,"g":1}],[24,{"n":5,"e":7312}],[23,{"n":3.5,"e":7315}],[22,{"n":5,"e":7326}],[21,{"n":4,"e":7333}],[20,{"n":4,"e":7338,"s":1}],[19,{"n":5,"e":7346}],[18,{"n":4,"e":7354}],[17,{"n":6.5,"e":7362,"g":1}],[16,{"n":4,"e":7364}],[15,{"n":3.5,"e":7374}],[14,{"n":4,"e":7570}],[13,{"n":6,"e":7385,"g":1,"s":1}],[11,{"n":4,"e":7405,"s":1}],[10,{"n":4.5,"e":7411}],[8,{"n":4.5,"e":7425,"s":1}],[7,{"n":4.5,"e":7434,"s":1}],[6,{"n":4,"e":7441,"s":1}],[5,{"n":4.5,"e":7443}],[4,{"n":5,"e":7454}],[3,{"n":3.5,"e":7458}],[2,{"n":4,"e":7467}],[1,{"n":4,"e":7493}]],"fo":[[7443,[{"t":"I"}]],[7364,[{"t":"Y"}]]]}],[4493,{"n":"Dimarco","f":"Federico","fp":"DL","r":17,"c":126,"s":{"g":4,"s":141.5,"n":26,"a":5.44,"d":1.05,"Sg":1,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":1.55,"Og":4,"Oao":1,"Os":202.5,"On":38,"Oa":5.33,"Od":1.04,"pd":20,"pm":18,"Smsn":5,"Omsn":5},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":8,"e":5467}],[-36,{"n":5,"e":5477,"s":1}],[-35,{"n":5,"e":5486,"s":1}],[-34,{"n":5,"e":5497,"s":1}],[-33,{"n":5.5,"e":5502,"s":1}],[-32,{"n":5,"e":5510}],[-31,{"n":4,"e":5527,"a":1}],[-30,{"n":5,"e":5528,"s":1}],[-29,{"n":4.5,"e":5547}],[29,{"n":6,"e":7272}],[28,{"n":3,"e":7283}],[-27,{"n":5,"e":5567,"s":1}],[27,{"n":5,"e":7289,"g":1,"s":1}],[26,{"n":6.5,"e":7298,"s":1}],[-25,{"n":5,"e":5587,"s":1}],[24,{"n":5,"e":7312}],[22,{"n":7,"e":7326}],[21,{"n":3.5,"e":7333}],[20,{"n":5,"e":7338,"s":1}],[19,{"n":5.5,"e":7347,"g":1}],[18,{"n":5,"e":7349}],[17,{"n":7,"e":7594,"g":1}],[16,{"n":6.5,"e":7369,"g":1}],[15,{"n":6,"e":7576}],[14,{"n":4.5,"e":7383}],[13,{"n":6,"e":7386}],[12,{"n":4.5,"e":7400}],[11,{"n":5,"e":7402}],[10,{"n":7,"e":7412}],[9,{"n":5.5,"e":7413}],[8,{"n":4.5,"e":7426}],[7,{"n":4.5,"e":7432}],[6,{"n":7,"e":7520}],[4,{"n":5.5,"e":7455,"s":1}],[3,{"n":5.5,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":5,"e":7471}]],"fo":[[7326,[{"t":"Y"}]],[7383,[{"t":"Y"}]],[7386,[{"t":"Y"}]],[7426,[{"t":"Y"}]]]}],[4495,{"n":"Magnani","f":"Giangiacomo","fp":"DC","r":10,"c":126,"s":{"ao":1,"s":97,"n":20,"a":4.85,"d":0.86,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Oao":1,"Os":127,"On":26,"Oa":4.88,"Od":0.8,"pd":26,"Omsn":6},"p":[[-34,{"n":5,"e":5489,"s":1}],[-32,{"n":5,"e":5514,"s":1}],[-31,{"n":5,"e":5519,"s":1}],[29,{"n":5,"e":7272,"s":1}],[-28,{"n":4,"e":5556}],[-27,{"n":6,"e":5562,"g":1,"s":1}],[27,{"n":3.5,"e":7289}],[26,{"n":3.5,"e":7298}],[25,{"n":6,"e":7646}],[-25,{"n":5,"e":5578,"s":1}],[24,{"n":5.5,"e":7312}],[23,{"n":4.5,"e":7315}],[22,{"n":5,"e":7326,"s":1}],[21,{"n":4,"e":7333,"s":1}],[19,{"n":5,"e":7347,"s":1}],[18,{"n":5,"e":7349}],[17,{"n":4.5,"e":7594}],[16,{"n":5,"e":7369,"s":1}],[15,{"n":7,"e":7576}],[14,{"n":4,"e":7383}],[13,{"n":5,"e":7386,"s":1}],[11,{"n":6,"e":7402}],[8,{"n":4.5,"e":7426}],[7,{"n":4,"e":7432,"a":1}],[6,{"n":5,"e":7520,"s":1}],[5,{"n":5,"e":7445,"s":1}]],"fo":[[7289,[{"t":"Y"}]],[7298,[{"t":"Y"}]],[7347,[{"t":"Y"}]],[7383,[{"t":"Y"}]],[7402,[{"t":"Y"}]],[7594,[{"t":"Y"}]]]}],[4505,{"n":"Zaccagni","f":"Mattia","fp":"MO","r":23,"c":126,"s":{"g":5,"s":161.5,"n":28,"a":5.77,"d":1.17,"Ss":37.5,"Sn":7,"Sa":5.36,"Sd":1.14,"Og":6,"Os":223.5,"On":40,"Oa":5.59,"Od":1.12,"pm":9,"pa":31,"Smsn":6.5,"Omsn":6.5},"p":[[-37,{"n":4.5,"e":5467,"s":1}],[-36,{"n":5,"e":5477}],[-35,{"n":5,"e":5486,"s":1}],[-34,{"n":4,"e":5497}],[-33,{"n":5.5,"e":5502}],[-32,{"n":5,"e":5510,"s":1}],[-30,{"n":4.5,"e":5528}],[-29,{"n":7,"e":5547,"g":1,"s":1}],[29,{"n":5.5,"e":7272}],[28,{"n":3.5,"e":7283}],[-28,{"n":6,"e":5556}],[27,{"n":5,"e":7289}],[-27,{"n":4,"e":5567}],[-26,{"n":6,"e":5575}],[26,{"n":4.5,"e":7298}],[-25,{"n":5.5,"e":5587,"s":1}],[25,{"n":7,"e":7646}],[24,{"n":6,"e":7312}],[23,{"n":6,"e":7315}],[21,{"n":5,"e":7333}],[20,{"n":4.5,"e":7338}],[19,{"n":8,"e":7347,"g":1}],[18,{"n":4.5,"e":7349}],[17,{"n":6,"e":7594}],[16,{"n":6,"e":7369}],[15,{"n":7,"e":7576,"g":1}],[14,{"n":4.5,"e":7383}],[13,{"n":5,"e":7386}],[12,{"n":6.5,"e":7400,"g":1}],[11,{"n":6,"e":7402}],[10,{"n":6.5,"e":7412,"g":1}],[9,{"n":8,"e":7413,"g":1}],[8,{"n":6,"e":7426}],[7,{"n":6,"e":7432}],[6,{"n":8,"e":7520}],[5,{"n":6.5,"e":7445}],[4,{"n":5,"e":7455,"s":1}],[3,{"n":4,"e":7461}],[2,{"n":5.5,"e":7467}],[1,{"n":5.5,"e":7471,"s":1}]],"fo":[[7333,[{"t":"Y"}]],[7347,[{"t":"Y"}]],[7349,[{"t":"Y"}]],[7383,[{"t":"Y"}]]],"a":{"m":24,"a":32,"M":41,"n":8}}],[4530,{"n":"Bessa","f":"Daniel","fp":"MO","r":8,"c":126,"s":{"s":52.5,"n":10,"a":5.25,"d":0.75,"Ss":7,"Sn":1,"Sa":7,"Os":52.5,"On":10,"Oa":5.25,"Od":0.75,"pm":10},"p":[[29,{"n":7,"e":7272,"s":1}],[27,{"n":5,"e":7289,"s":1}],[26,{"n":5.5,"e":7298,"s":1}],[25,{"n":5,"e":7646,"s":1}],[24,{"n":5,"e":7312,"s":1}],[23,{"n":4.5,"e":7315,"s":1}],[22,{"n":5,"e":7326,"s":1}],[21,{"n":4.5,"e":7333,"s":1}],[20,{"n":6,"e":7338,"s":1}],[19,{"n":5,"e":7347,"s":1}]],"fo":[[7298,[{"t":"Y"}]]]}],[4540,{"n":"Dawidowicz","f":"Pawel","fp":"DC","r":8,"c":126,"s":{"s":108,"n":21,"a":5.14,"d":0.71,"Os":115,"On":23,"Oa":5,"Od":0.84,"pd":22,"pm":1},"p":[[-29,{"n":4,"e":5547}],[28,{"n":4.5,"e":7283}],[27,{"n":6,"e":7289,"s":1}],[-26,{"n":3,"e":5575}],[25,{"n":5,"e":7646,"s":1}],[24,{"n":5,"e":7312,"s":1}],[21,{"n":4.5,"e":7333}],[20,{"n":3.5,"e":7338}],[19,{"n":6,"e":7347}],[18,{"n":6,"e":7349}],[17,{"n":5,"e":7594,"s":1}],[16,{"n":4.5,"e":7369}],[15,{"n":6,"e":7576}],[14,{"n":5,"e":7383}],[13,{"n":5.5,"e":7386}],[12,{"n":4.5,"e":7400}],[11,{"n":5.5,"e":7402}],[10,{"n":5.5,"e":7412}],[9,{"n":6.5,"e":7413}],[8,{"n":4.5,"e":7426}],[7,{"n":5,"e":7432}],[6,{"n":5,"e":7520,"s":1}],[2,{"n":5,"e":7467,"s":1}]],"fo":[[7333,[{"t":"I"},{"t":"Y"}]],[7383,[{"t":"I"},{"t":"Y"}]],[7432,[{"t":"I"}]],[7283,[{"t":"Y"}]],[7312,[{"t":"Y"}]],[7413,[{"t":"Y"}]]]}],[4563,{"n":"Benassi","f":"Marco","fp":"MO","r":1,"c":126,"s":{"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[-30,{"n":5,"e":5534}],[-29,{"n":4.5,"e":5540,"s":1}]]}],[4576,{"n":"Günter","f":"Koray","fp":"DC","r":12,"c":126,"s":{"s":98,"n":19,"a":5.16,"d":0.97,"Os":147.5,"On":30,"Oa":4.92,"Od":0.93,"pd":30},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":5.5,"e":5467}],[-36,{"n":4,"e":5477}],[-35,{"n":4.5,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":5.5,"e":5502}],[-32,{"n":5,"e":5510}],[-31,{"n":4,"e":5527}],[-29,{"n":4.5,"e":5547}],[-28,{"n":3.5,"e":5556}],[27,{"n":3.5,"e":7289}],[-26,{"n":4.5,"e":5575}],[26,{"n":4,"e":7298}],[25,{"n":7,"e":7646}],[24,{"n":6,"e":7312}],[23,{"n":5,"e":7315}],[22,{"n":5.5,"e":7326}],[21,{"n":4.5,"e":7333}],[20,{"n":4.5,"e":7338}],[19,{"n":5,"e":7347}],[18,{"n":5,"e":7349}],[17,{"n":5,"e":7594,"s":1}],[16,{"n":7,"e":7369}],[14,{"n":5,"e":7383,"s":1}],[13,{"n":3.5,"e":7386}],[12,{"n":5,"e":7400,"s":1}],[6,{"n":5,"e":7520,"s":1}],[3,{"n":6,"e":7461}],[2,{"n":5.5,"e":7467}],[1,{"n":6,"e":7471}]],"fo":[[7326,[{"t":"Y"}]]]}],[4627,{"n":"Sturaro","f":"Stefano","fp":"MD","r":5,"c":126,"s":{"g":1,"s":54,"n":12,"a":4.5,"d":0.74,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":1,"Os":81,"On":18,"Oa":4.5,"Od":0.73,"pm":18,"Smsn":6,"Omsn":6},"p":[[-34,{"n":5,"e":5491}],[-30,{"n":5,"e":5537}],[-29,{"n":3.5,"e":5541}],[29,{"n":5,"e":7272,"s":1}],[-28,{"n":5,"e":5548}],[28,{"n":4,"e":7283,"s":1}],[-27,{"n":3.5,"e":5561}],[27,{"n":4.5,"e":7289,"s":1}],[-26,{"n":5,"e":5572,"s":1}],[25,{"n":5,"e":7646,"s":1}],[24,{"n":4,"e":7312}],[23,{"n":4.5,"e":7315,"s":1}],[13,{"n":4,"e":7565}],[12,{"n":4,"e":7398}],[11,{"n":6,"e":7401,"g":1}],[10,{"n":5.5,"e":7406}],[9,{"n":4,"e":7414}],[8,{"n":3.5,"e":7425}]],"fo":[[7272,[{"t":"Y"}]],[7283,[{"t":"Y"}]],[7406,[{"t":"Y"}]],[7646,[{"t":"Y"}]]]}],[4629,{"n":"Berardi","f":"Alessandro","fp":"G","r":7,"c":126}],[4638,{"n":"Ceccherini","f":"Federico","fp":"DC","r":9,"c":126,"s":{"ao":1,"s":101.5,"n":22,"a":4.61,"d":1.01,"Ss":22,"Sn":5,"Sa":4.4,"Sd":1.29,"Oao":1,"Os":142.5,"On":30,"Oa":4.75,"Od":0.92,"pd":30},"p":[[-38,{"n":5.5,"e":5456}],[-34,{"n":5,"e":5490,"s":1}],[-33,{"n":5,"e":5500,"s":1}],[-31,{"n":6,"e":5520}],[-30,{"n":5,"e":5534,"s":1}],[-29,{"n":4.5,"e":5540}],[29,{"n":6,"e":7272}],[-28,{"n":5,"e":5551}],[28,{"n":4,"e":7283}],[27,{"n":3.5,"e":7289}],[-27,{"n":5,"e":5560}],[26,{"n":3,"e":7298}],[25,{"n":5.5,"e":7646}],[20,{"n":2.5,"e":7338}],[17,{"n":5,"e":7594}],[16,{"n":5,"e":7369}],[15,{"n":5,"e":7576,"s":1}],[14,{"n":4,"e":7383}],[13,{"n":5,"e":7386}],[12,{"n":4.5,"e":7400}],[10,{"n":5,"e":7412}],[9,{"n":6,"e":7413}],[8,{"n":4,"e":7426}],[7,{"n":4.5,"e":7432}],[6,{"n":5,"e":7520}],[5,{"n":5.5,"e":7445}],[4,{"n":6,"e":7455}],[3,{"n":4,"e":7456}],[2,{"n":3,"e":7465,"a":1}],[1,{"n":5.5,"e":7470}]],"fo":[[7413,[{"t":"I"},{"t":"Y"}]],[7283,[{"t":"Y"}]],[7369,[{"t":"Y"}]],[7386,[{"t":"Y"}]],[7412,[{"t":"Y"}]],[7432,[{"t":"Y"}]],[7594,[{"t":"Y"}]]]}],[4721,{"n":"Silvestri","f":"Marco","fp":"G","r":16,"c":126,"s":{"ao":1,"s":157.5,"n":29,"a":5.43,"d":1.19,"Sao":1,"Ss":157.5,"Sn":29,"Sa":5.43,"Sd":1.19,"Oao":1,"Os":217.5,"On":40,"Oa":5.44,"Od":1.07,"pg":40},"p":[[-35,{"n":5,"e":5486}],[-34,{"n":6.5,"e":5497}],[-33,{"n":5.5,"e":5502}],[-32,{"n":4.5,"e":5510}],[-31,{"n":6,"e":5527}],[-30,{"n":4,"e":5528}],[-29,{"n":5.5,"e":5547}],[29,{"n":7.5,"e":7272}],[-28,{"n":5.5,"e":5556}],[28,{"n":4.5,"e":7283}],[-27,{"n":6,"e":5567}],[27,{"n":4,"e":7289}],[26,{"n":4,"e":7298}],[-26,{"n":6,"e":5575}],[-25,{"n":5.5,"e":5587}],[25,{"n":6,"e":7646}],[24,{"n":6,"e":7312}],[23,{"n":4,"e":7315}],[22,{"n":4,"e":7326}],[21,{"n":4.5,"e":7333,"a":1}],[20,{"n":4,"e":7338}],[19,{"n":5.5,"e":7347}],[18,{"n":5.5,"e":7349}],[17,{"n":5,"e":7594}],[16,{"n":5,"e":7369}],[15,{"n":6,"e":7576}],[14,{"n":5,"e":7383}],[13,{"n":4.5,"e":7386}],[12,{"n":4,"e":7400}],[11,{"n":6.5,"e":7402}],[10,{"n":5,"e":7412}],[9,{"n":8,"e":7413}],[8,{"n":4,"e":7426}],[7,{"n":7,"e":7432}],[6,{"n":6.5,"e":7520}],[5,{"n":6.5,"e":7445}],[4,{"n":6,"e":7455}],[3,{"n":5.5,"e":7461}],[2,{"n":7,"e":7467}],[1,{"n":6.5,"e":7471}]],"fo":[[7326,[{"t":"Y"}]]]}],[4758,{"n":"Faraoni","f":"Marco","fp":"DL","r":16,"c":126,"s":{"g":2,"s":132,"n":25,"a":5.28,"d":1.16,"Sg":2,"Ss":39.5,"Sn":7,"Sa":5.64,"Sd":1.41,"Og":4,"Os":192,"On":37,"Oa":5.19,"Od":1.04,"pd":3,"pm":34,"Smsn":7,"Omsn":6},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":6,"e":5467,"g":1}],[-36,{"n":4.5,"e":5477}],[-35,{"n":5.5,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":5,"e":5502}],[-32,{"n":6,"e":5510,"g":1}],[-31,{"n":4.5,"e":5527}],[-30,{"n":5,"e":5528}],[29,{"n":6,"e":7272}],[-29,{"n":4.5,"e":5547}],[28,{"n":4.5,"e":7283}],[-27,{"n":4,"e":5567}],[27,{"n":5,"e":7289}],[26,{"n":4.5,"e":7298}],[-25,{"n":6,"e":5587}],[25,{"n":8,"e":7646,"g":1}],[24,{"n":4.5,"e":7312}],[23,{"n":7,"e":7315,"g":1}],[21,{"n":4.5,"e":7333}],[20,{"n":3,"e":7338}],[19,{"n":6,"e":7347}],[18,{"n":5,"e":7349}],[17,{"n":4.5,"e":7594}],[16,{"n":4.5,"e":7369}],[15,{"n":7,"e":7576}],[14,{"n":5,"e":7383}],[13,{"n":5,"e":7386}],[12,{"n":3.5,"e":7400}],[11,{"n":5.5,"e":7402}],[10,{"n":7,"e":7412}],[9,{"n":5.5,"e":7413}],[5,{"n":5,"e":7445}],[4,{"n":5.5,"e":7455}],[3,{"n":4,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":6,"e":7471}]],"fo":[[7315,[{"t":"I"}]],[7289,[{"t":"Y"}]],[7333,[{"t":"Y"}]],[7338,[{"t":"Y"}]],[7369,[{"t":"Y"}]],[7400,[{"t":"Y"}]],[7445,[{"t":"Y"}]]],"a":{"m":11,"a":15,"M":18,"n":9}}],[4811,{"n":"Miguel Veloso","f":"","fp":"MD","r":10,"c":126,"s":{"g":2,"s":101,"n":19,"a":5.32,"d":1.06,"Ss":40,"Sn":8,"Sa":5,"Sd":1,"Og":3,"Os":171,"On":32,"Oa":5.34,"Od":1,"pd":1,"pm":31,"Smsn":6.5,"Omsn":6.5},"p":[[-38,{"n":4,"e":5451}],[-37,{"n":6,"e":5467}],[-36,{"n":4,"e":5477}],[-35,{"n":5,"e":5486}],[-34,{"n":5.5,"e":5497}],[-33,{"n":5,"e":5502}],[-32,{"n":6,"e":5510}],[-31,{"n":7.5,"e":5527,"g":1}],[-30,{"n":5.5,"e":5528}],[-29,{"n":6,"e":5547}],[29,{"n":6,"e":7272}],[-28,{"n":5.5,"e":5556}],[28,{"n":4,"e":7283}],[-27,{"n":4.5,"e":5567}],[27,{"n":4.5,"e":7289}],[26,{"n":3.5,"e":7298}],[-25,{"n":5.5,"e":5587,"s":1}],[25,{"n":5.5,"e":7646}],[24,{"n":6.5,"e":7312,"s":1}],[23,{"n":5,"e":7315,"s":1}],[22,{"n":5,"e":7326,"s":1}],[16,{"n":4.5,"e":7369}],[15,{"n":6,"e":7576}],[14,{"n":5,"e":7383}],[13,{"n":6.5,"e":7386,"g":1}],[12,{"n":5,"e":7400}],[11,{"n":6,"e":7402}],[10,{"n":4.5,"e":7412}],[9,{"n":8,"e":7413,"g":1,"s":1}],[8,{"n":5,"e":7426,"s":1}],[2,{"n":6,"e":7467}],[1,{"n":4.5,"e":7471}]],"fo":[[7369,[{"t":"I"}]],[7413,[{"t":"Y"}]]]}],[5954,{"n":"Colley","f":"Ebrima","fp":"MO","r":7,"c":126,"s":{"g":1,"s":88.5,"n":19,"a":4.66,"d":0.85,"Og":1,"Os":109,"On":23,"Oa":4.74,"Od":0.82,"pm":6,"pa":17,"Smsn":6.5,"Omsn":6.5},"p":[[-36,{"n":5,"e":5473,"s":1}],[-35,{"n":5,"e":5478,"s":1}],[-33,{"n":6,"e":5498,"s":1}],[-25,{"n":4.5,"e":5578,"s":1}],[22,{"n":5.5,"e":7326}],[21,{"n":4.5,"e":7333,"s":1}],[20,{"n":6.5,"e":7338,"g":1,"s":1}],[18,{"n":4,"e":7349,"s":1}],[17,{"n":5,"e":7594,"s":1}],[15,{"n":4.5,"e":7576,"s":1}],[14,{"n":3.5,"e":7383}],[13,{"n":5,"e":7386,"s":1}],[12,{"n":4,"e":7400,"s":1}],[11,{"n":4,"e":7402,"s":1}],[10,{"n":4,"e":7412,"s":1}],[9,{"n":4,"e":7413,"s":1}],[8,{"n":4,"e":7426,"s":1}],[7,{"n":4,"e":7432,"s":1}],[6,{"n":4.5,"e":7520,"s":1}],[5,{"n":4.5,"e":7445}],[4,{"n":6.5,"e":7455}],[3,{"n":5.5,"e":7461,"s":1}],[2,{"n":5,"e":7467,"s":1}]],"fo":[[7326,[{"t":"I"}]],[7402,[{"t":"Y"}]]]}],[5967,{"n":"Lazovic","f":"Darko","fp":"MO","r":11,"c":126,"s":{"g":2,"s":118.5,"n":23,"a":5.15,"d":0.92,"Sg":1,"Ss":63,"Sn":12,"Sa":5.25,"Sd":1.14,"Og":4,"Os":190.5,"On":37,"Oa":5.15,"Od":1.02,"pm":34,"pa":3,"Smsn":6.5,"Omsn":6},"p":[[-38,{"n":3.5,"e":5451}],[-37,{"n":7,"e":5467}],[-36,{"n":3,"e":5477}],[-35,{"n":5,"e":5486}],[-34,{"n":5,"e":5497}],[-33,{"n":5,"e":5502}],[-32,{"n":4,"e":5510}],[-31,{"n":7,"e":5527,"g":1}],[-30,{"n":4.5,"e":5528}],[-29,{"n":5,"e":5547,"s":1}],[29,{"n":5.5,"e":7272}],[28,{"n":4.5,"e":7283,"s":1}],[-28,{"n":6,"e":5556,"g":1}],[-27,{"n":5,"e":5567}],[27,{"n":6.5,"e":7289,"g":1}],[-26,{"n":5.5,"e":5575}],[26,{"n":3.5,"e":7298}],[-25,{"n":6.5,"e":5587}],[25,{"n":7,"e":7646}],[24,{"n":6.5,"e":7312,"s":1}],[23,{"n":4.5,"e":7315}],[22,{"n":5.5,"e":7326}],[21,{"n":4,"e":7333}],[20,{"n":4,"e":7338}],[19,{"n":6,"e":7347}],[18,{"n":5.5,"e":7349}],[15,{"n":5.5,"e":7576}],[14,{"n":5,"e":7383,"s":1}],[13,{"n":5.5,"e":7386}],[12,{"n":4,"e":7400}],[11,{"n":5,"e":7402,"s":1}],[10,{"n":4.5,"e":7412}],[7,{"n":4.5,"e":7432}],[6,{"n":6.5,"e":7520,"g":1}],[5,{"n":5,"e":7445}],[4,{"n":5,"e":7455}],[3,{"n":5,"e":7461,"s":1}]],"fo":[[7272,[{"t":"Y"}]],[7445,[{"t":"Y"}]]]}],[6172,{"n":"Çetin","f":"Yildirim Mert","fp":"DC","r":5,"c":126,"s":{"s":30,"n":6,"a":5,"d":0.89,"Os":35.5,"On":7,"Oa":5.07,"Od":0.84,"pd":7},"p":[[-35,{"n":5.5,"e":5483,"s":1}],[23,{"n":3.5,"e":7315,"s":1}],[22,{"n":5.5,"e":7326}],[7,{"n":5,"e":7432,"s":1}],[3,{"n":4.5,"e":7461}],[2,{"n":6,"e":7467}],[1,{"n":5.5,"e":7471}]],"fo":[[7315,[{"t":"Y"}]]]}],[6444,{"n":"Jocic","f":"Bogdan","fp":"MO","r":1,"c":126}],[6603,{"n":"Terracciano","f":"Filippo","fp":"MD","r":1,"c":126}],[6604,{"n":"Calabrese","f":"Bernardo","fp":"DC","r":1,"c":126}],[6647,{"n":"Pierobon","f":"Christian","fp":"MD","r":1,"c":126}],[6648,{"n":"Bracelli","f":"Eugenio","fp":"DC","r":1,"c":126}],[6652,{"n":"Lovato","f":"Matteo","fp":"DC","r":9,"c":126,"s":{"s":106.5,"n":22,"a":4.84,"d":0.56,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":111.5,"On":23,"Oa":4.85,"Od":0.55,"pd":22,"pm":1},"p":[[-34,{"n":5,"e":5497,"s":1}],[29,{"n":5.5,"e":7272}],[28,{"n":5,"e":7283}],[25,{"n":5,"e":7646,"s":1}],[24,{"n":5,"e":7312}],[23,{"n":4,"e":7315}],[22,{"n":5,"e":7326}],[21,{"n":4,"e":7333,"s":1}],[19,{"n":5.5,"e":7347,"s":1}],[17,{"n":4.5,"e":7594}],[16,{"n":5,"e":7369,"s":1}],[14,{"n":5,"e":7383,"s":1}],[12,{"n":4,"e":7400,"s":1}],[11,{"n":5.5,"e":7402}],[10,{"n":5,"e":7412,"s":1}],[9,{"n":5,"e":7413}],[7,{"n":3.5,"e":7432}],[6,{"n":4.5,"e":7520}],[5,{"n":5.5,"e":7445}],[4,{"n":5.5,"e":7455}],[3,{"n":4.5,"e":7461}],[2,{"n":5,"e":7467}],[1,{"n":5,"e":7471,"s":1}]],"fo":[[7383,[{"t":"I"}]],[7413,[{"t":"I"}]],[7272,[{"t":"Y"}]],[7326,[{"t":"Y"}]],[7432,[{"t":"Y"}]],[7594,[{"t":"Y"}]]]}],[6932,{"n":"Yeboah Ankrah","f":"Philip","fp":"A","r":1,"c":126,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[13,{"n":4.5,"e":7386,"s":1}]]}],[7152,{"n":"Pandur","f":"Ivor","fp":"G","r":3,"c":126}],[7166,{"n":"Rüegg","f":"Kevin","fp":"DL","r":3,"c":126,"s":{"s":26,"n":5,"a":5.2,"d":0.57,"Os":26,"On":5,"Oa":5.2,"Od":0.57,"pm":5},"p":[[16,{"n":5,"e":7369,"s":1}],[14,{"n":4.5,"e":7383,"s":1}],[13,{"n":5,"e":7386,"s":1}],[12,{"n":6,"e":7400,"s":1}],[1,{"n":5.5,"e":7471,"s":1}]]}],[7233,{"n":"Ilic","f":"Ivan","fp":"MD","r":13,"c":126,"s":{"g":2,"s":110.5,"n":21,"a":5.26,"d":0.72,"Og":2,"Os":110.5,"On":21,"Oa":5.26,"Od":0.72,"pm":21,"Smsn":5.5,"Omsn":5.5},"p":[[28,{"n":5,"e":7283,"s":1}],[26,{"n":5,"e":7298,"s":1}],[24,{"n":4.5,"e":7312}],[23,{"n":7,"e":7315,"g":1}],[22,{"n":6,"e":7326}],[21,{"n":5,"e":7333,"s":1}],[20,{"n":5,"e":7338}],[19,{"n":6.5,"e":7347}],[18,{"n":5,"e":7349}],[17,{"n":5,"e":7594}],[16,{"n":5.5,"e":7369,"s":1}],[14,{"n":5.5,"e":7383,"g":1,"s":1}],[13,{"n":4.5,"e":7386,"s":1}],[9,{"n":6,"e":7413}],[8,{"n":4,"e":7426}],[7,{"n":4.5,"e":7432}],[6,{"n":6,"e":7520}],[5,{"n":5,"e":7445,"s":1}],[4,{"n":5.5,"e":7455}],[3,{"n":5,"e":7461}],[1,{"n":5,"e":7471,"s":1}]]}],[7280,{"n":"Ilie","f":"Matei","fp":"DC","r":1,"c":126}],[7284,{"n":"Destiny Udogie","f":"Iyenoma","fp":"DL","r":3,"c":126,"s":{"s":19,"n":4,"a":4.75,"d":0.29,"Os":19,"On":4,"Oa":4.75,"Od":0.29,"pd":4},"p":[[28,{"n":5,"e":7283,"s":1}],[20,{"n":4.5,"e":7338,"s":1}],[8,{"n":5,"e":7426,"s":1}],[7,{"n":4.5,"e":7432,"s":1}]]}],[7288,{"n":"Borghetto","f":"Nicola","fp":"G","r":1,"c":126}],[7368,{"n":"Amione","f":"Bruno","fp":"DC","r":1,"c":126}],[7435,{"n":"Cancellieri","f":"Matteo","fp":"A","r":1,"c":126}],[7512,{"n":"Bertini","f":"Lorenzo","fp":"A","r":1,"c":126}],[7547,{"n":"Gresele","f":"Andrea","fp":"DC","r":1,"c":126}]],"np":709,"c":[[119,{"n":"Atalanta","rn":"Atalanta Bergame","cn":"Atalanta","crn":"Atalanta-Bergame","a":"ATA","el":1042,"s":{"w":18,"l":6,"d":7,"pl":31,"GA":33,"GS":71,"GT":38,"p":61},"nm":[[7262,0.644],[7255,0.356]],"pM":[null,7476,7463,7459,7449,7442,7518,7427,7532,7413,7411,7394,7392,7384,7377,7370,7363,7593,7348,7344,7334,7327,7320,7313,7303,7645,7292,7701,7283,7271,5529,5518,5513,5498,5497,5478,5473,5462,5448],"DMI":[7394,5513,7392]}],[140,{"n":"Benevento","rn":"Bénévent Calcio","cn":"Benevento","crn":"Benevent-Calcio","a":"BEN","el":1000,"s":{"w":8,"l":13,"d":9,"pl":30,"GA":-23,"GS":31,"GT":54,"p":33},"nm":[[8258,0.537],[8267,0.263]],"pM":[null,7492,7488,7486,7503,7507,7520,7525,7533,7537,7545,7551,7558,7565,7570,7577,7581,7593,7597,7604,7609,7617,7622,7631,7639,7646,7651,7702,8248,8253],"DMI":[7551,7558]}],[127,{"n":"Bologna","rn":"Bologna FC","cn":"Bologna","crn":"Bologna-FC","a":"BOL","el":988,"s":{"w":9,"l":13,"d":8,"pl":30,"GA":-6,"GS":39,"GT":45,"p":35},"nm":[[7266,0.33],[8266,0.483]],"pM":[null,7475,7469,7486,7452,7446,7435,7428,7424,7538,7407,7393,7559,7390,7377,7372,7364,7357,7349,7342,7335,7332,7622,7319,7305,7299,7294,5559,8246,7270,5530,5519,5516,5499,5493,5478,5468,5459,5449],"DMI":[7393,7559]}],[108,{"n":"Cagliari","rn":"Cagliari Calcio","cn":"Cagliari","crn":"Cagliari-Calcio","a":"CAG","el":1089,"s":{"w":5,"l":17,"d":7,"pl":29,"GA":-19,"GS":31,"GT":50,"p":22},"nm":[[7263,0.424],[7256,0.563]],"pM":[null,7473,7464,7459,7453,7508,7435,7429,7421,7539,7412,7396,7399,7385,7381,7371,7581,7356,7350,7341,7336,7331,7320,7314,7638,7299,7296,7285,8247,7272,5529,5520,5509,5504,5489,5480,5470,5458,5454],"DMI":[7396,7399]}],[139,{"n":"Crotone","rn":"Crotone","cn":"Crotone","crn":"Crotone","a":"CRO","el":1000,"s":{"w":4,"l":22,"d":3,"pl":29,"GA":-39,"GS":35,"GT":74,"p":15},"nm":[[8259,0.5],[8265,0.657]],"pM":[null,7491,7490,7485,7501,7508,7518,7526,7531,7538,7546,7552,7557,7564,7568,7575,7582,7594,7597,7606,7608,7615,7624,7632,7638,7645,7652,7700,8246,8255],"DMI":[7552,7557]}],[110,{"n":"Fiorentina","rn":"AC Fiorentina","cn":"Fiorentina","crn":"AC-Fiorentina","a":"FIO","el":939,"s":{"w":9,"l":19,"d":13,"pl":41,"GA":-18,"GS":47,"GT":65,"p":40},"nm":[[7262,0.356],[7260,0.45]],"pM":[null,7470,7465,7456,7502,7443,7438,7433,7533,7416,7406,7394,7391,7386,7378,7372,7365,7356,7353,7606,7340,7328,7324,7630,7311,7300,7291,5560,7277,7273,5534,5520,5510,5500,5490,5479,5475,5459,5456],"DMI":[7394,5540,7391]}],[117,{"n":"Genoa","rn":"Genoa CFC","cn":"Genoa","crn":"Genoa-CFC","a":"GEN","el":822,"s":{"w":7,"l":11,"d":11,"pl":29,"GA":-10,"GS":31,"GT":41,"p":32},"nm":[[7264,0.135],[7257,0.22]],"pM":[null,7491,7466,7457,7455,7444,7439,7430,7425,7414,7406,7401,7398,7565,7569,7373,7368,7357,7348,7341,7608,7329,7325,7315,7307,7301,7295,7286,7279,7273,5537,5521,5511,5506,5491,5484,5471,5464,5451],"DMI":[5541,7401,5572,7398]}],[112,{"n":"Inter","rn":"Internazionale Milan","cn":"Inter","crn":"Internazionale-Milan","a":"INT","el":1142,"s":{"w":22,"l":2,"d":6,"pl":30,"GA":41,"GS":70,"GT":29,"p":72},"nm":[[7263,0.576],[7278,0.725]],"pM":[null,7492,7465,7460,7450,7444,7436,7427,7420,7418,7407,7396,7397,7566,7383,7575,7367,7361,7351,7346,7609,7328,7321,7317,7307,7308,5569,7290,7278,5542,5530,5527,5512,5503,5496,5479,5471,5460,5448],"DMI":[5562,7418,7396]}],[115,{"n":"Juventus","rn":"Juventus FC Turin","cn":"Juventus","crn":"Juventus-FC-Turin","a":"JUV","el":1145,"s":{"w":17,"l":4,"d":10,"pl":31,"GA":34,"GS":59,"GT":25,"p":61},"nm":[[7255,0.644],[7264,0.865],[7462,0.768]],"pM":[null,7474,7468,7462,7501,7445,7519,7431,7421,7537,7408,7401,7392,7388,7378,7374,7366,7358,7351,7342,7339,7330,7323,7632,7312,7647,7293,7285,5550,7276,5531,5523,5513,5505,5492,5487,5472,5458,5452],"DMI":[7323,5541,7401,5513,7392]}],[121,{"n":"Lazio","rn":"SS Lazio Roma","cn":"Lazio","crn":"SS-Lazio-Roma","a":"LAZ","el":1179,"s":{"w":17,"l":8,"d":5,"pl":30,"GA":8,"GS":47,"GT":39,"p":56},"nm":[[8267,0.737],[7269,0.745]],"pM":[null,7476,7464,7460,7451,7446,7440,7431,7531,7415,7544,7402,7558,7387,7379,7373,7365,7360,7352,7343,7334,7331,7321,7316,7305,7304,7293,7700,7282,8254,5532,5522,5514,5507,5492,5480,5477,5461,5455],"DMI":[5477,7402,7558]}],[125,{"n":"Milan","rn":"AC Milan","cn":"Milan","crn":"AC-Milan","a":"ACM","el":1042,"s":{"w":19,"l":5,"d":6,"pl":30,"GA":22,"GS":56,"GT":34,"p":63},"nm":[[7257,0.78],[7265,0.496]],"pM":[null,7475,7490,7487,7450,7447,7441,7432,7422,7416,7410,7403,7398,7389,7379,7577,7366,7359,7350,7344,7335,7615,7623,7317,7302,7310,7298,7287,5552,7274,5532,5523,5515,5501,5493,5485,5473,5463,5454],"DMI":[5501,7403,5572,7398]}],[111,{"n":"Napoli","rn":"SSC Naples","cn":"Napoli","crn":"SSC-Naples","a":"NAP","el":937,"s":{"w":18,"l":8,"d":4,"pl":30,"GA":30,"GS":62,"GT":32,"p":58},"nm":[[7462,0.232],[7267,0.497]],"pM":[null,7472,7466,7462,7449,7507,7437,7428,7422,7417,7546,7404,7397,7387,7380,7371,7583,7362,7353,7347,7337,7329,7323,7313,7639,7309,7294,7287,7280,8255,5533,5521,5515,5499,5494,5482,5474,5460,5455],"DMI":[7323,7404]}],[114,{"n":"Parma","rn":"Parme Calcio 1913","cn":"Parma","crn":"Parme-Calcio-1913","a":"PMA","el":1045,"s":{"w":3,"l":15,"d":12,"pl":30,"GA":-28,"GS":28,"GT":56,"p":21},"nm":[[7256,0.437],[7265,0.504]],"pM":[null,7472,7469,7461,7454,7509,7436,7433,7423,7414,7545,7403,7399,7388,7568,7375,7363,7360,7355,7345,7337,7332,7326,7318,7637,7308,7291,7288,7279,8253,5534,5524,5516,5501,5495,5482,5469,5462,5453],"DMI":[5501,7403,7399]}],[116,{"n":"Roma","rn":"AS Roma","cn":"Roma","crn":"AS-Roma","a":"RMA","el":1111,"s":{"w":16,"l":7,"d":7,"pl":30,"GA":14,"GS":55,"GT":41,"p":55},"nm":[[7266,0.67],[7261,0.643]],"pM":[null,7471,7468,7458,7503,7447,7438,7430,7423,7417,7409,7393,7395,7384,7381,7376,7582,7361,7352,7605,7338,7330,7322,7631,7302,7300,7295,7288,7280,7275,5533,5524,5508,5502,5496,5483,5475,5465,5452],"DMI":[7393,5465,7395]}],[120,{"n":"Sampdoria","rn":"UC Sampdoria","cn":"Sampdoria","crn":"UC-Sampdoria","a":"SAM","el":939,"s":{"w":10,"l":14,"d":6,"pl":30,"GA":-7,"GS":39,"GT":46,"p":36},"nm":[[7267,0.503],[7259,0.423]],"pM":[null,7474,7488,7456,7451,7442,7439,7429,7424,7419,7410,7404,7400,7564,7382,7376,7367,7595,7354,7345,7339,7617,7324,7316,7303,7301,7296,7284,7281,7274,5535,5518,5517,5504,5495,5484,5472,5463,5450],"DMI":[7404,5575,7400]}],[123,{"n":"Sassuolo","rn":"US Sassuolo","cn":"Sassuolo","crn":"US-Sassuolo","a":"SASS","el":974,"s":{"w":10,"l":8,"d":11,"pl":29,"GA":1,"GS":47,"GT":46,"p":41},"nm":[[8258,0.463],[7260,0.55],[7278,0.275]],"pM":[null,7473,7489,7485,7452,7448,7437,7434,7426,7418,7409,7551,7391,7389,7382,7370,7368,7358,7355,7343,7336,7616,7624,7319,7306,7309,7297,7289,7278,7275,5536,5519,5514,5505,5489,5485,5474,5464,5457],"DMI":[5562,7418,7551,5540,7391]}],[141,{"n":"Spezia","rn":"Spezia Calcio","cn":"Spezia","crn":"Spezia-Calcio","a":"SPE","el":1000,"s":{"w":7,"l":14,"d":9,"pl":30,"GA":-16,"GS":39,"GT":55,"p":30},"nm":[[8266,0.517],[8259,0.5]],"pM":[null,7493,7489,7487,7502,7509,7519,7525,7532,7539,7544,7552,7559,7566,7569,7576,7583,7595,7596,7605,7610,7616,7623,7630,7637,7647,7651,7701,8247,8254],"DMI":[7552,7559]}],[122,{"n":"Torino","rn":"Torino FC","cn":"Torino","crn":"Torino-FC","a":"TNO","el":1009,"s":{"w":4,"l":13,"d":13,"pl":30,"GA":-12,"GS":41,"GT":53,"p":25},"nm":[[7261,0.357],[7268,0.669]],"pM":[null,7470,7463,7457,7453,7448,7440,7526,7420,7419,7408,7405,7395,7390,7380,7375,7369,7359,7596,7604,7340,7327,7325,7314,7306,7304,7652,7290,7281,7276,5531,5526,5512,5506,5490,5486,5476,5465,5449],"DMI":[5566,7405,5465,7395]}],[124,{"n":"Udinese","rn":"Udinese Calcio","cn":"Udinese","crn":"Udinese-Calcio","a":"UDI","el":887,"s":{"w":8,"l":13,"d":9,"pl":30,"GA":-8,"GS":34,"GT":42,"p":33},"nm":[[8265,0.343],[7268,0.331]],"pM":[null,7493,7467,7458,7454,7443,7441,7434,7425,7415,7411,7405,7557,7385,7570,7374,7364,7362,7354,7346,7610,7333,7322,7318,7311,7310,7297,7286,7282,5544,5537,5525,5517,5507,5494,5487,5470,5466,5457],"DMI":[5566,7405,7557]}],[126,{"n":"Verona","rn":"Hellas Verone","cn":"Verona","crn":"Hellas-Verone","a":"VRN","el":993,"s":{"w":11,"l":10,"d":10,"pl":31,"GA":3,"GS":38,"GT":35,"p":43},"nm":[[7269,0.255],[7259,0.577]],"pM":[null,7471,7467,7461,7455,7445,7520,7432,7426,7413,7412,7402,7400,7386,7383,7576,7369,7594,7349,7347,7338,7333,7326,7315,7312,5587,7298,7289,5556,7272,5528,5527,5510,5502,5497,5486,5477,5467,5451],"DMI":[5477,7402,5575,7400]}]],"nc":20,"op":[[109,{"n":"Brescia"}],[118,{"n":"Spal"}],[113,{"n":"Lecce"}],[19,{"n":"Nice"}],[13,{"n":"Monaco"}],[12,{"n":"Lille"}],[6,{"n":"Lorient"}],[18,{"n":"Lyon"}],[104,{"n":"Lens"}],[9,{"n":"Marseille"}],[42,{"n":"Amiens"}],[7,{"n":"Dijon"}],[20,{"n":"Rennes"}],[88,{"n":"Ajaccio"}],[5,{"n":"Caen"}],[48,{"n":"Alavés"}],[59,{"n":"Barcelona"}],[60,{"n":"Betis"}],[74,{"n":"Valladolid"}],[86,{"n":"Granada"}],[51,{"n":"Celta"}],[52,{"n":"Real Sociedad"}],[15,{"n":"Montpellier"}],[16,{"n":"Angers"}],[67,{"n":"Nîmes"}],[8,{"n":"Nantes"}],[41,{"n":"Strasbourg"}],[3,{"n":"Bordeaux"}],[2,{"n":"Paris"}],[75,{"n":"Brest"}],[4,{"n":"Saint-Étienne"}],[85,{"n":"Osasuna"}],[56,{"n":"Espanyol"}],[64,{"n":"Villarreal"}],[54,{"n":"Atlético"}],[57,{"n":"Bilbao"}],[55,{"n":"Sevilla"}],[47,{"n":"Leganés"}],[87,{"n":"Mallorca"}],[58,{"n":"Getafe"}],[63,{"n":"Levante"}],[45,{"n":"Brighton"}],[31,{"n":"Man. United"}],[77,{"n":"Sheffield"}],[66,{"n":"Eibar"}],[49,{"n":"Valencia"}],[28,{"n":"West Ham"}],[78,{"n":"Aston Villa"}],[39,{"n":"Arsenal"}],[22,{"n":"Everton"}],[26,{"n":"Crystal Palace"}],[21,{"n":"Liverpool"}],[29,{"n":"Leicester"}],[62,{"n":"Real Madrid"}],[25,{"n":"Chelsea"}],[69,{"n":"Wolverhampton"}],[40,{"n":"Man. City"}],[11,{"n":"Metz"}],[135,{"n":"Elche"}],[134,{"n":"Cadix"}],[73,{"n":"Huesca"}],[10,{"n":"Toulouse"}],[33,{"n":"Watford"}],[35,{"n":"Southampton"}]],"Ne":[[7262,{"d":30,"dB":1618166700,"t1":110,"t2":119,"o":{"h":4.75,"d":3.92,"a":1.68}}],[7255,{"d":31,"dB":1618750800,"t1":119,"t2":115}],[8258,{"d":30,"dB":1618253100,"t1":140,"t2":123,"o":{"h":3.42,"d":3.58,"a":1.97}}],[8267,{"d":31,"dB":1618750800,"t1":121,"t2":140}],[7266,{"d":30,"dB":1618156800,"t1":116,"t2":127,"o":{"h":1.68,"d":4.05,"a":4.55}}],[8266,{"d":31,"dB":1618750800,"t1":127,"t2":141}],[7263,{"d":30,"dB":1618137000,"t1":112,"t2":108,"o":{"h":1.25,"d":6,"a":10.8}}],[7256,{"d":31,"dB":1618685100,"t1":108,"t2":114}],[8259,{"d":30,"dB":1618059600,"t1":141,"t2":139,"o":{"h":1.83,"d":3.75,"a":4.05}}],[8265,{"d":31,"dB":1618664400,"t1":139,"t2":124}],[7260,{"d":31,"dB":1618675200,"t1":123,"t2":110}],[7264,{"d":30,"dB":1618146000,"t1":115,"t2":117,"o":{"h":1.23,"d":6.05,"a":11.8}}],[7257,{"d":31,"dB":1618741800,"t1":125,"t2":117}],[7278,{"d":28,"dB":1617813900,"dl":1,"t1":112,"t2":123,"o":{"h":1.32,"d":5.65,"a":8.35}}],[7269,{"d":30,"dB":1618146000,"t1":126,"t2":121,"o":{"h":3.45,"d":3.32,"a":2.14}}],[7265,{"d":30,"dB":1618070400,"t1":114,"t2":125,"o":{"h":5.1,"d":3.8,"a":1.66}}],[7462,{"d":3,"dB":1617813900,"dl":1,"t1":115,"t2":111,"o":{"h":1.93,"d":3.65,"a":3.85}}],[7267,{"d":30,"dB":1618146000,"t1":120,"t2":111,"o":{"h":4.55,"d":3.95,"a":1.7}}],[7261,{"d":31,"dB":1618761600,"t1":122,"t2":116}],[7259,{"d":31,"dB":1618664400,"t1":120,"t2":126}],[7268,{"d":30,"dB":1618080300,"t1":124,"t2":122,"o":{"h":2.25,"d":3.18,"a":3.3}}]],"e":[[5448,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":119,"t2":112}],[5462,{"d":37,"dB":1595957400,"t1s":1,"t2s":2,"t1":114,"t2":119}],[5473,{"d":36,"dB":1595619900,"t1s":1,"t2s":1,"t1":125,"t2":119}],[5478,{"d":35,"dB":1595352600,"t1s":1,"t2s":0,"t1":119,"t2":127}],[5497,{"d":34,"dB":1595085300,"t1s":1,"t2s":1,"t1":126,"t2":119}],[5498,{"d":33,"dB":1594755900,"t1s":6,"t2s":2,"t1":119,"t2":109}],[5513,{"d":32,"dB":1594496700,"t1s":2,"t2s":2,"t1":115,"t2":119}],[5518,{"d":31,"dB":1594237500,"t1s":2,"t2s":0,"t1":119,"t2":120}],[5529,{"d":30,"dB":1593970200,"t1s":0,"t2s":1,"t1":108,"t2":119}],[5538,{"d":29,"dB":1593711000,"t1s":2,"t2s":0,"t1":119,"t2":111}],[5557,{"d":28,"dB":1593365400,"t1s":2,"t2s":3,"t1":124,"t2":119}],[5558,{"d":27,"dB":1593027900,"t1s":3,"t2s":2,"t1":119,"t2":121}],[5578,{"d":25,"dB":1592760600,"t1s":4,"t2s":1,"t1":119,"t2":123}],[7271,{"d":29,"dB":1617454800,"t1s":3,"t2s":2,"t1":119,"t2":124}],[7283,{"d":28,"dB":1616326200,"t1s":0,"t2s":2,"t1":126,"t2":119}],[7292,{"d":26,"dB":1615232700,"t1s":1,"t2s":0,"t1":112,"t2":119}],[7303,{"d":24,"dB":1614511800,"t1s":0,"t2s":2,"t1":120,"t2":119}],[7313,{"d":23,"dB":1613926800,"t1s":4,"t2s":2,"t1":119,"t2":111}],[7320,{"d":22,"dB":1613311200,"t1s":0,"t2s":1,"t1":108,"t2":119}],[7327,{"d":21,"dB":1612620000,"t1s":3,"t2s":3,"t1":119,"t2":122}],[7334,{"d":20,"dB":1612101600,"t1s":1,"t2s":3,"t1":119,"t2":121}],[7344,{"d":19,"dB":1611421200,"t1s":0,"t2s":3,"t1":125,"t2":119}],[7348,{"d":18,"dB":1610902800,"t1s":0,"t2s":0,"t1":119,"t2":117}],[7363,{"d":16,"dB":1609941600,"t1s":3,"t2s":0,"t1":119,"t2":114}],[7370,{"d":15,"dB":1609682400,"t1s":5,"t2s":1,"t1":119,"t2":123}],[7377,{"d":14,"dB":1608752700,"t1s":2,"t2s":2,"t1":127,"t2":119}],[7384,{"d":13,"dB":1608483600,"t1s":4,"t2s":1,"t1":119,"t2":116}],[7392,{"d":12,"dB":1608139800,"t1s":1,"t2s":1,"t1":115,"t2":119}],[7394,{"d":11,"dB":1607868000,"t1s":3,"t2s":0,"t1":119,"t2":110}],[7411,{"d":10,"dB":1611151200,"t1s":1,"t2s":1,"t1":124,"t2":119}],[7413,{"d":9,"dB":1606592700,"t1s":0,"t2s":2,"t1":119,"t2":126}],[7442,{"d":5,"dB":1603544400,"t1s":1,"t2s":3,"t1":119,"t2":120}],[7449,{"d":4,"dB":1602939600,"t1s":4,"t2s":1,"t1":111,"t2":119}],[7459,{"d":3,"dB":1601807400,"t1s":5,"t2s":2,"t1":119,"t2":108}],[7463,{"d":2,"dB":1601125200,"t1s":2,"t2s":4,"t1":122,"t2":119}],[7476,{"d":1,"dB":1601491500,"t1s":1,"t2s":4,"t1":121,"t2":119}],[7532,{"d":8,"dB":1605978000,"t1s":0,"t2s":0,"t1":141,"t2":119}],[7593,{"d":17,"dB":1610200800,"t1s":1,"t2s":4,"t1":140,"t2":119}],[7701,{"d":27,"dB":1615578300,"t1s":3,"t2s":1,"t1":119,"t2":141}],[7427,{"d":7,"dB":1604844000,"t1s":1,"t2s":1,"t1":119,"t2":112}],[7518,{"d":6,"dB":1604152800,"t1s":1,"t2s":2,"t1":139,"t2":119}],[7645,{"d":25,"dB":1614800700,"t1s":5,"t2s":1,"t1":119,"t2":139}],[5451,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":117,"t2":126}],[5467,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":126,"t2":118}],[5477,{"d":36,"dB":1595784600,"t1s":1,"t2s":5,"t1":126,"t2":121}],[5486,{"d":35,"dB":1595447100,"t1s":1,"t2s":1,"t1":122,"t2":126}],[5502,{"d":33,"dB":1594842300,"t1s":2,"t2s":1,"t1":116,"t2":126}],[5510,{"d":32,"dB":1594575000,"t1s":1,"t2s":1,"t1":110,"t2":126}],[5527,{"d":31,"dB":1594323900,"t1s":2,"t2s":2,"t1":126,"t2":112}],[5547,{"d":29,"dB":1593632700,"t1s":3,"t2s":2,"t1":126,"t2":114}],[5556,{"d":28,"dB":1593365400,"t1s":3,"t2s":3,"t1":123,"t2":126}],[5567,{"d":27,"dB":1592933400,"t1s":0,"t2s":2,"t1":126,"t2":111}],[5575,{"d":26,"dB":1583676000,"t1s":2,"t2s":1,"t1":120,"t2":126}],[5464,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":123,"t2":117}],[5471,{"d":36,"dB":1595698200,"t1s":0,"t2s":3,"t1":117,"t2":112}],[5484,{"d":35,"dB":1595447100,"t1s":1,"t2s":2,"t1":120,"t2":117}],[5491,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":117,"t2":113}],[5537,{"d":30,"dB":1593970200,"t1s":2,"t2s":2,"t1":124,"t2":117}],[5541,{"d":29,"dB":1593546300,"t1s":1,"t2s":3,"t1":117,"t2":115}],[5548,{"d":28,"dB":1593270900,"t1s":2,"t2s":2,"t1":109,"t2":117}],[5561,{"d":27,"dB":1592941500,"t1s":1,"t2s":4,"t1":117,"t2":114}],[5572,{"d":26,"dB":1583676000,"t1s":1,"t2s":2,"t1":125,"t2":117}],[3653,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":19,"t2":13}],[7486,{"d":3,"dB":1601816400,"t1s":1,"t2s":0,"t1":140,"t2":127}],[7488,{"d":2,"dB":1601136000,"t1s":2,"t2s":3,"t1":120,"t2":140}],[7492,{"d":1,"dB":1601481600,"t1s":2,"t2s":5,"t1":140,"t2":112}],[7503,{"d":4,"dB":1603046700,"t1s":5,"t2s":2,"t1":116,"t2":140}],[7507,{"d":5,"dB":1603634400,"t1s":1,"t2s":2,"t1":140,"t2":111}],[7520,{"d":6,"dB":1604346300,"t1s":3,"t2s":1,"t1":126,"t2":140}],[7525,{"d":7,"dB":1604768400,"t1s":0,"t2s":3,"t1":140,"t2":141}],[7533,{"d":8,"dB":1606044600,"t1s":0,"t2s":1,"t1":110,"t2":140}],[7537,{"d":9,"dB":1606582800,"t1s":1,"t2s":1,"t1":140,"t2":115}],[7545,{"d":10,"dB":1607263200,"t1s":0,"t2s":0,"t1":114,"t2":140}],[7551,{"d":11,"dB":1607715900,"t1s":1,"t2s":0,"t1":123,"t2":140}],[7558,{"d":12,"dB":1608061500,"t1s":1,"t2s":1,"t1":140,"t2":121}],[7565,{"d":13,"dB":1608472800,"t1s":2,"t2s":0,"t1":140,"t2":117}],[7570,{"d":14,"dB":1608752700,"t1s":0,"t2s":2,"t1":124,"t2":140}],[7577,{"d":15,"dB":1609693200,"t1s":0,"t2s":2,"t1":140,"t2":125}],[7581,{"d":16,"dB":1609932600,"t1s":1,"t2s":2,"t1":108,"t2":140}],[7597,{"d":18,"dB":1610892000,"t1s":4,"t2s":1,"t1":139,"t2":140}],[7604,{"d":19,"dB":1611344700,"t1s":2,"t2s":2,"t1":140,"t2":122}],[7609,{"d":20,"dB":1612035900,"t1s":4,"t2s":0,"t1":112,"t2":140}],[7617,{"d":21,"dB":1612697400,"t1s":1,"t2s":1,"t1":140,"t2":120}],[7622,{"d":22,"dB":1613159100,"t1s":1,"t2s":1,"t1":127,"t2":140}],[7631,{"d":23,"dB":1613936700,"t1s":0,"t2s":0,"t1":140,"t2":116}],[7646,{"d":25,"dB":1614800700,"t1s":0,"t2s":3,"t1":140,"t2":126}],[7651,{"d":26,"dB":1615039200,"t1s":1,"t2s":1,"t1":141,"t2":140}],[7702,{"d":27,"dB":1615654800,"t1s":1,"t2s":4,"t1":140,"t2":110}],[8253,{"d":29,"dB":1617454800,"t1s":2,"t2s":2,"t1":140,"t2":114}],[5456,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":118,"t2":110}],[5476,{"d":36,"dB":1595784600,"t1s":1,"t2s":1,"t1":118,"t2":122}],[5483,{"d":35,"dB":1595447100,"t1s":1,"t2s":6,"t1":118,"t2":116}],[5488,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":109,"t2":118}],[5503,{"d":33,"dB":1594928700,"t1s":0,"t2s":4,"t1":118,"t2":112}],[5511,{"d":32,"dB":1594566900,"t1s":2,"t2s":0,"t1":117,"t2":118}],[5525,{"d":31,"dB":1594315800,"t1s":0,"t2s":3,"t1":118,"t2":124}],[5535,{"d":30,"dB":1593970200,"t1s":3,"t2s":0,"t1":120,"t2":118}],[5545,{"d":29,"dB":1593632700,"t1s":2,"t2s":2,"t1":118,"t2":125}],[5553,{"d":28,"dB":1593365400,"t1s":3,"t2s":1,"t1":111,"t2":118}],[5565,{"d":27,"dB":1592933400,"t1s":0,"t2s":1,"t1":118,"t2":108}],[8248,{"d":28,"dB":1616335200,"t1s":0,"t2s":1,"t1":115,"t2":140}],[7639,{"d":24,"dB":1614531600,"t1s":2,"t2s":0,"t1":111,"t2":140}],[5450,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":109,"t2":120}],[5463,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":120,"t2":125}],[5472,{"d":36,"dB":1595792700,"t1s":2,"t2s":0,"t1":115,"t2":120}],[5495,{"d":34,"dB":1595171700,"t1s":2,"t2s":3,"t1":114,"t2":120}],[5504,{"d":33,"dB":1594834200,"t1s":3,"t2s":0,"t1":120,"t2":108}],[5517,{"d":32,"dB":1594575000,"t1s":1,"t2s":3,"t1":124,"t2":120}],[5543,{"d":29,"dB":1593632700,"t1s":1,"t2s":2,"t1":113,"t2":120}],[5555,{"d":28,"dB":1593365400,"t1s":1,"t2s":2,"t1":120,"t2":127}],[5564,{"d":27,"dB":1593027900,"t1s":2,"t2s":1,"t1":116,"t2":120}],[5583,{"d":25,"dB":1592768700,"t1s":2,"t2s":1,"t1":112,"t2":120}],[7474,{"d":1,"dB":1600627500,"t1s":3,"t2s":0,"t1":115,"t2":120}],[5453,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":113,"t2":114}],[5469,{"d":36,"dB":1595690100,"t1s":1,"t2s":2,"t1":109,"t2":114}],[5482,{"d":35,"dB":1595439000,"t1s":2,"t2s":1,"t1":114,"t2":111}],[5501,{"d":33,"dB":1594834200,"t1s":3,"t2s":1,"t1":125,"t2":114}],[5524,{"d":31,"dB":1594237500,"t1s":2,"t2s":1,"t1":116,"t2":114}],[5574,{"d":26,"dB":1583667000,"t1s":0,"t2s":1,"t1":114,"t2":118}],[5586,{"d":25,"dB":1592674200,"t1s":1,"t2s":1,"t1":122,"t2":114}],[5466,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":124,"t2":113}],[5468,{"d":36,"dB":1595776500,"t1s":3,"t2s":2,"t1":127,"t2":113}],[5481,{"d":35,"dB":1595447100,"t1s":3,"t2s":1,"t1":113,"t2":109}],[5563,{"d":27,"dB":1592847000,"t1s":1,"t2s":4,"t1":113,"t2":125}],[5454,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":125,"t2":108}],[5458,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":108,"t2":115}],[5470,{"d":36,"dB":1595784600,"t1s":0,"t2s":1,"t1":108,"t2":124}],[5480,{"d":35,"dB":1595533500,"t1s":2,"t2s":1,"t1":121,"t2":108}],[5509,{"d":32,"dB":1594575000,"t1s":0,"t2s":0,"t1":108,"t2":113}],[5520,{"d":31,"dB":1594229400,"t1s":0,"t2s":0,"t1":110,"t2":108}],[5539,{"d":29,"dB":1593624600,"t1s":1,"t2s":1,"t1":127,"t2":108}],[5549,{"d":28,"dB":1593279000,"t1s":4,"t2s":2,"t1":108,"t2":122}],[5587,{"d":25,"dB":1592682300,"t1s":2,"t2s":1,"t1":126,"t2":108}],[5506,{"d":33,"dB":1594920600,"t1s":3,"t2s":0,"t1":122,"t2":117}],[5521,{"d":31,"dB":1594229400,"t1s":1,"t2s":2,"t1":117,"t2":111}],[6101,{"d":11,"dB":1606075200,"t1s":4,"t2s":0,"t1":12,"t2":6}],[6120,{"d":9,"dB":1604260800,"t1s":1,"t2s":1,"t1":12,"t2":18}],[6140,{"d":7,"dB":1603047600,"t1s":4,"t2s":0,"t1":12,"t2":104}],[7270,{"d":29,"dB":1617475500,"t1s":0,"t2s":1,"t1":127,"t2":112}],[7284,{"d":27,"dB":1615721400,"t1s":3,"t2s":1,"t1":127,"t2":120}],[7294,{"d":26,"dB":1615146300,"t1s":3,"t2s":1,"t1":111,"t2":127}],[7299,{"d":25,"dB":1614800700,"t1s":1,"t2s":0,"t1":108,"t2":127}],[7305,{"d":24,"dB":1614445200,"t1s":2,"t2s":0,"t1":127,"t2":121}],[7319,{"d":23,"dB":1613850300,"t1s":1,"t2s":1,"t1":123,"t2":127}],[7332,{"d":21,"dB":1612717200,"t1s":0,"t2s":3,"t1":114,"t2":127}],[7335,{"d":20,"dB":1612015200,"t1s":1,"t2s":2,"t1":127,"t2":125}],[7342,{"d":19,"dB":1611487800,"t1s":2,"t2s":0,"t1":115,"t2":127}],[8246,{"d":28,"dB":1616248800,"t1s":2,"t2s":3,"t1":139,"t2":127}],[5449,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":127,"t2":122}],[5459,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":110,"t2":127}],[5493,{"d":34,"dB":1595101500,"t1s":5,"t2s":1,"t1":125,"t2":127}],[5499,{"d":33,"dB":1594834200,"t1s":1,"t2s":1,"t1":127,"t2":111}],[5516,{"d":32,"dB":1594575000,"t1s":2,"t2s":2,"t1":114,"t2":127}],[5530,{"d":30,"dB":1593962100,"t1s":1,"t2s":2,"t1":112,"t2":127}],[5559,{"d":27,"dB":1592855100,"t1s":0,"t2s":2,"t1":127,"t2":115}],[7349,{"d":18,"dB":1610805600,"t1s":1,"t2s":0,"t1":127,"t2":126}],[7357,{"d":17,"dB":1610211600,"t1s":2,"t2s":0,"t1":117,"t2":127}],[7364,{"d":16,"dB":1609941600,"t1s":2,"t2s":2,"t1":127,"t2":124}],[7372,{"d":15,"dB":1609682400,"t1s":0,"t2s":0,"t1":110,"t2":127}],[7390,{"d":13,"dB":1608463800,"t1s":1,"t2s":1,"t1":122,"t2":127}],[7393,{"d":11,"dB":1607868000,"t1s":1,"t2s":5,"t1":127,"t2":116}],[7407,{"d":10,"dB":1607197500,"t1s":3,"t2s":1,"t1":112,"t2":127}],[7424,{"d":8,"dB":1606053600,"t1s":1,"t2s":2,"t1":120,"t2":127}],[7428,{"d":7,"dB":1604854800,"t1s":0,"t2s":1,"t1":127,"t2":111}],[7435,{"d":6,"dB":1604173500,"t1s":3,"t2s":2,"t1":127,"t2":108}],[7446,{"d":5,"dB":1603565100,"t1s":2,"t2s":1,"t1":121,"t2":127}],[7452,{"d":4,"dB":1603017000,"t1s":3,"t2s":4,"t1":127,"t2":123}],[7469,{"d":2,"dB":1601318700,"t1s":4,"t2s":1,"t1":127,"t2":114}],[7475,{"d":1,"dB":1600713900,"t1s":2,"t2s":0,"t1":125,"t2":127}],[7538,{"d":9,"dB":1606658400,"t1s":1,"t2s":0,"t1":127,"t2":139}],[7559,{"d":12,"dB":1608147900,"t1s":2,"t2s":2,"t1":141,"t2":127}],[5519,{"d":31,"dB":1594237500,"t1s":1,"t2s":2,"t1":127,"t2":123}],[5489,{"d":34,"dB":1595093400,"t1s":1,"t2s":1,"t1":108,"t2":123}],[7396,{"d":11,"dB":1607859000,"t1s":1,"t2s":3,"t1":108,"t2":112}],[7412,{"d":10,"dB":1607254200,"t1s":1,"t2s":1,"t1":126,"t2":108}],[7464,{"d":2,"dB":1601136000,"t1s":0,"t2s":2,"t1":108,"t2":121}],[7473,{"d":1,"dB":1600617600,"t1s":1,"t2s":1,"t1":123,"t2":108}],[7508,{"d":5,"dB":1603625400,"t1s":4,"t2s":2,"t1":108,"t2":139}],[7539,{"d":9,"dB":1606669200,"t1s":2,"t2s":2,"t1":108,"t2":141}],[5490,{"d":34,"dB":1595179800,"t1s":2,"t2s":0,"t1":110,"t2":122}],[5512,{"d":32,"dB":1594669500,"t1s":3,"t2s":1,"t1":112,"t2":122}],[5526,{"d":31,"dB":1594237500,"t1s":3,"t2s":1,"t1":122,"t2":109}],[5531,{"d":30,"dB":1593875700,"t1s":4,"t2s":1,"t1":115,"t2":122}],[5546,{"d":29,"dB":1593538200,"t1s":1,"t2s":2,"t1":122,"t2":121}],[5566,{"d":27,"dB":1592941500,"t1s":1,"t2s":0,"t1":122,"t2":124}],[7272,{"d":29,"dB":1617454800,"t1s":0,"t2s":2,"t1":108,"t2":126}],[7285,{"d":27,"dB":1615741200,"t1s":1,"t2s":3,"t1":108,"t2":115}],[7399,{"d":12,"dB":1608147900,"t1s":0,"t2s":0,"t1":114,"t2":108}],[7421,{"d":8,"dB":1605987900,"t1s":2,"t2s":0,"t1":115,"t2":108}],[7453,{"d":4,"dB":1603026000,"t1s":2,"t2s":3,"t1":122,"t2":108}],[8247,{"d":28,"dB":1616259600,"t1s":2,"t2s":1,"t1":141,"t2":108}],[5460,{"d":37,"dB":1595965500,"t1s":null,"t2s":null,"t1":112,"t2":111}],[5479,{"d":35,"dB":1595447100,"t1s":0,"t2s":0,"t1":112,"t2":110}],[5554,{"d":28,"dB":1593373500,"t1s":1,"t2s":2,"t1":114,"t2":112}],[7296,{"d":26,"dB":1615136400,"t1s":2,"t2s":2,"t1":120,"t2":108}],[7314,{"d":23,"dB":1613763900,"t1s":0,"t2s":1,"t1":108,"t2":122}],[7331,{"d":21,"dB":1612727100,"t1s":1,"t2s":0,"t1":121,"t2":108}],[7336,{"d":20,"dB":1612101600,"t1s":1,"t2s":1,"t1":108,"t2":123}],[7341,{"d":19,"dB":1611496800,"t1s":1,"t2s":0,"t1":117,"t2":108}],[7350,{"d":18,"dB":1610999100,"t1s":0,"t2s":2,"t1":108,"t2":125}],[7356,{"d":17,"dB":1610298000,"t1s":1,"t2s":0,"t1":110,"t2":108}],[7381,{"d":14,"dB":1608752700,"t1s":3,"t2s":2,"t1":116,"t2":108}],[7385,{"d":13,"dB":1608472800,"t1s":1,"t2s":1,"t1":108,"t2":124}],[7429,{"d":7,"dB":1604757600,"t1s":2,"t2s":0,"t1":108,"t2":120}],[7638,{"d":24,"dB":1614520800,"t1s":0,"t2s":2,"t1":139,"t2":108}],[7371,{"d":15,"dB":1609682400,"t1s":1,"t2s":4,"t1":108,"t2":111}],[5534,{"d":30,"dB":1593970200,"t1s":1,"t2s":2,"t1":114,"t2":110}],[5540,{"d":29,"dB":1593632700,"t1s":1,"t2s":3,"t1":110,"t2":123}],[5551,{"d":28,"dB":1593287100,"t1s":2,"t2s":1,"t1":121,"t2":110}],[5560,{"d":27,"dB":1592847000,"t1s":1,"t2s":1,"t1":110,"t2":109}],[5522,{"d":31,"dB":1594143000,"t1s":2,"t2s":1,"t1":113,"t2":121}],[7489,{"d":2,"dB":1601202600,"t1s":1,"t2s":4,"t1":141,"t2":123}],[7493,{"d":1,"dB":1601481600,"t1s":0,"t2s":2,"t1":124,"t2":141}],[7502,{"d":4,"dB":1603026000,"t1s":2,"t2s":2,"t1":141,"t2":110}],[7544,{"d":10,"dB":1607176800,"t1s":1,"t2s":2,"t1":141,"t2":121}],[7566,{"d":13,"dB":1608472800,"t1s":2,"t2s":1,"t1":112,"t2":141}],[7569,{"d":14,"dB":1608752700,"t1s":1,"t2s":2,"t1":141,"t2":117}],[7576,{"d":15,"dB":1609682400,"t1s":0,"t2s":1,"t1":141,"t2":126}],[7583,{"d":16,"dB":1609952400,"t1s":1,"t2s":2,"t1":111,"t2":141}],[7596,{"d":18,"dB":1610816400,"t1s":0,"t2s":0,"t1":122,"t2":141}],[3651,{"d":28,"dB":1583524800,"t1s":2,"t2s":2,"t1":9,"t2":42}],[5452,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":115,"t2":116}],[5487,{"d":35,"dB":1595525400,"t1s":2,"t2s":1,"t1":124,"t2":115}],[5492,{"d":34,"dB":1595274300,"t1s":2,"t2s":1,"t1":115,"t2":121}],[5505,{"d":33,"dB":1594842300,"t1s":3,"t2s":3,"t1":123,"t2":115}],[5523,{"d":31,"dB":1594151100,"t1s":4,"t2s":2,"t1":125,"t2":115}],[6139,{"d":7,"dB":1602867600,"t1s":1,"t2s":1,"t1":7,"t2":20}],[5475,{"d":36,"dB":1595784600,"t1s":2,"t2s":1,"t1":116,"t2":110}],[5500,{"d":33,"dB":1594842300,"t1s":1,"t2s":3,"t1":113,"t2":110}],[5577,{"d":26,"dB":1583686800,"t1s":0,"t2s":0,"t1":124,"t2":110}],[7438,{"d":6,"dB":1604250000,"t1s":2,"t2s":0,"t1":116,"t2":110}],[7456,{"d":3,"dB":1601664300,"t1s":1,"t2s":2,"t1":110,"t2":120}],[7470,{"d":1,"dB":1600531200,"t1s":1,"t2s":0,"t1":110,"t2":122}],[7420,{"d":8,"dB":1606053600,"t1s":4,"t2s":2,"t1":112,"t2":122}],[7436,{"d":6,"dB":1604163600,"t1s":2,"t2s":2,"t1":112,"t2":114}],[7444,{"d":5,"dB":1603555200,"t1s":0,"t2s":2,"t1":117,"t2":112}],[7465,{"d":2,"dB":1601145900,"t1s":4,"t2s":3,"t1":112,"t2":110}],[4788,{"d":28,"dB":1583589600,"t1s":1,"t2s":0,"t1":88,"t2":6}],[6568,{"d":2,"dB":1598706000,"t1s":1,"t2s":0,"t1":5,"t2":88}],[7615,{"d":21,"dB":1612706400,"t1s":4,"t2s":0,"t1":125,"t2":139}],[7624,{"d":22,"dB":1613322000,"t1s":1,"t2s":2,"t1":139,"t2":123}],[7632,{"d":23,"dB":1614023100,"t1s":3,"t2s":0,"t1":115,"t2":139}],[7652,{"d":26,"dB":1615125600,"t1s":4,"t2s":2,"t1":139,"t2":122}],[7700,{"d":27,"dB":1615557600,"t1s":3,"t2s":2,"t1":121,"t2":139}],[8255,{"d":29,"dB":1617454800,"t1s":4,"t2s":3,"t1":111,"t2":139}],[5465,{"d":37,"dB":1596051900,"t1s":null,"t2s":null,"t1":122,"t2":116}],[7564,{"d":13,"dB":1608397200,"t1s":3,"t2s":1,"t1":120,"t2":139}],[7575,{"d":15,"dB":1609673400,"t1s":6,"t2s":2,"t1":112,"t2":139}],[7594,{"d":17,"dB":1610287200,"t1s":2,"t2s":1,"t1":126,"t2":139}],[7606,{"d":19,"dB":1611431100,"t1s":2,"t2s":1,"t1":110,"t2":139}],[7608,{"d":20,"dB":1612101600,"t1s":0,"t2s":3,"t1":139,"t2":117}],[7491,{"d":1,"dB":1600606800,"t1s":4,"t2s":1,"t1":117,"t2":139}],[7531,{"d":8,"dB":1605967200,"t1s":0,"t2s":2,"t1":139,"t2":121}],[7552,{"d":11,"dB":1607781600,"t1s":4,"t2s":1,"t1":139,"t2":141}],[7557,{"d":12,"dB":1608053400,"t1s":0,"t2s":0,"t1":124,"t2":139}],[7568,{"d":14,"dB":1608658200,"t1s":2,"t2s":1,"t1":139,"t2":114}],[7582,{"d":16,"dB":1609941600,"t1s":1,"t2s":3,"t1":139,"t2":116}],[7485,{"d":3,"dB":1601730000,"t1s":4,"t2s":1,"t1":123,"t2":139}],[7490,{"d":2,"dB":1601222400,"t1s":0,"t2s":2,"t1":139,"t2":125}],[7501,{"d":4,"dB":1602960300,"t1s":1,"t2s":1,"t1":139,"t2":115}],[7526,{"d":7,"dB":1604844000,"t1s":0,"t2s":0,"t1":122,"t2":139}],[7546,{"d":10,"dB":1607274000,"t1s":0,"t2s":4,"t1":139,"t2":111}],[5536,{"d":30,"dB":1593883800,"t1s":4,"t2s":2,"t1":123,"t2":113}],[5550,{"d":28,"dB":1593200700,"t1s":4,"t2s":0,"t1":115,"t2":113}],[5528,{"d":30,"dB":1593970200,"t1s":2,"t2s":0,"t1":109,"t2":126}],[7347,{"d":19,"dB":1611496800,"t1s":3,"t2s":1,"t1":126,"t2":111}],[7369,{"d":16,"dB":1609941600,"t1s":1,"t2s":1,"t1":122,"t2":126}],[7400,{"d":12,"dB":1608147900,"t1s":1,"t2s":2,"t1":126,"t2":120}],[7426,{"d":8,"dB":1606053600,"t1s":0,"t2s":2,"t1":126,"t2":123}],[7467,{"d":2,"dB":1601211600,"t1s":1,"t2s":0,"t1":126,"t2":124}],[7471,{"d":1,"dB":1600541100,"t1s":0,"t2s":0,"t1":126,"t2":116}],[4308,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":48,"t2":59}],[4324,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":60,"t2":48}],[4355,{"d":34,"dB":1593883800,"t1s":1,"t2s":0,"t1":74,"t2":48}],[4358,{"d":33,"dB":1593624600,"t1s":0,"t2s":2,"t1":48,"t2":86}],[4390,{"d":30,"dB":1592740800,"t1s":6,"t2s":0,"t1":51,"t2":48}],[4398,{"d":29,"dB":1592501400,"t1s":2,"t2s":0,"t1":48,"t2":52}],[7291,{"d":26,"dB":1615125600,"t1s":3,"t2s":3,"t1":110,"t2":114}],[7311,{"d":24,"dB":1614520800,"t1s":1,"t2s":0,"t1":124,"t2":110}],[7324,{"d":22,"dB":1613311200,"t1s":2,"t2s":1,"t1":120,"t2":110}],[7328,{"d":21,"dB":1612554300,"t1s":0,"t2s":2,"t1":110,"t2":112}],[7387,{"d":13,"dB":1608493500,"t1s":2,"t2s":0,"t1":121,"t2":111}],[7462,{"d":3,"dB":1617813900,"dl":1,"t1s":null,"t2s":null,"t1":115,"t2":111}],[7273,{"d":29,"dB":1617454800,"t1s":1,"t2s":1,"t1":117,"t2":110}],[7277,{"d":28,"dB":1616346000,"t1s":2,"t2s":3,"t1":110,"t2":125}],[7340,{"d":20,"dB":1611949500,"t1s":1,"t2s":1,"t1":122,"t2":110}],[7365,{"d":16,"dB":1609941600,"t1s":2,"t2s":1,"t1":121,"t2":110}],[7406,{"d":10,"dB":1607370300,"t1s":1,"t2s":1,"t1":110,"t2":117}],[7630,{"d":23,"dB":1613755800,"t1s":3,"t2s":0,"t1":110,"t2":141}],[7386,{"d":13,"dB":1608386400,"t1s":1,"t2s":1,"t1":110,"t2":126}],[7353,{"d":18,"dB":1610883000,"t1s":6,"t2s":0,"t1":111,"t2":110}],[7378,{"d":14,"dB":1608666300,"t1s":0,"t2s":3,"t1":115,"t2":110}],[7391,{"d":12,"dB":1608147900,"t1s":1,"t2s":1,"t1":110,"t2":123}],[7416,{"d":9,"dB":1606658400,"t1s":2,"t2s":0,"t1":125,"t2":110}],[7433,{"d":7,"dB":1604778300,"t1s":0,"t2s":0,"t1":114,"t2":110}],[7443,{"d":5,"dB":1603645200,"t1s":3,"t2s":2,"t1":110,"t2":124}],[7300,{"d":25,"dB":1614800700,"t1s":1,"t2s":2,"t1":110,"t2":116}],[5496,{"d":34,"dB":1595187900,"t1s":2,"t2s":2,"t1":116,"t2":112}],[5562,{"d":27,"dB":1593019800,"t1s":3,"t2s":3,"t1":112,"t2":123}],[5455,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":111,"t2":121}],[5474,{"d":36,"dB":1595706300,"t1s":2,"t2s":0,"t1":111,"t2":123}],[5494,{"d":34,"dB":1595179800,"t1s":2,"t2s":1,"t1":111,"t2":124}],[5515,{"d":32,"dB":1594583100,"t1s":2,"t2s":2,"t1":111,"t2":125}],[5533,{"d":30,"dB":1593978300,"t1s":2,"t2s":1,"t1":111,"t2":116}],[5485,{"d":35,"dB":1595360700,"t1s":1,"t2s":2,"t1":123,"t2":125}],[5532,{"d":30,"dB":1593891900,"t1s":0,"t2s":3,"t1":121,"t2":125}],[5552,{"d":28,"dB":1593357300,"t1s":2,"t2s":0,"t1":125,"t2":116}],[5542,{"d":29,"dB":1593624600,"t1s":6,"t2s":0,"t1":112,"t2":109}],[7279,{"d":28,"dB":1616183100,"t1s":1,"t2s":2,"t1":114,"t2":117}],[7286,{"d":27,"dB":1615664700,"t1s":1,"t2s":1,"t1":117,"t2":124}],[7307,{"d":24,"dB":1614520800,"t1s":3,"t2s":0,"t1":112,"t2":117}],[7329,{"d":21,"dB":1612640700,"t1s":2,"t2s":1,"t1":117,"t2":111}],[7373,{"d":15,"dB":1609682400,"t1s":1,"t2s":1,"t1":117,"t2":121}],[7398,{"d":12,"dB":1608147900,"t1s":2,"t2s":2,"t1":117,"t2":125}],[7401,{"d":11,"dB":1607878800,"t1s":1,"t2s":3,"t1":117,"t2":115}],[7439,{"d":6,"dB":1604259900,"t1s":1,"t2s":1,"t1":120,"t2":117}],[7455,{"d":4,"dB":1603133100,"t1s":0,"t2s":0,"t1":126,"t2":117}],[7466,{"d":2,"dB":1601211600,"t1s":6,"t2s":0,"t1":111,"t2":117}],[5544,{"d":29,"dB":1593719100,"t1s":0,"t2s":2,"t1":116,"t2":124}],[7295,{"d":26,"dB":1615116600,"t1s":1,"t2s":0,"t1":116,"t2":117}],[7301,{"d":25,"dB":1614800700,"t1s":1,"t2s":1,"t1":117,"t2":120}],[7315,{"d":23,"dB":1613840400,"t1s":2,"t2s":2,"t1":117,"t2":126}],[7325,{"d":22,"dB":1613224800,"t1s":0,"t2s":0,"t1":122,"t2":117}],[7368,{"d":16,"dB":1609941600,"t1s":2,"t2s":1,"t1":123,"t2":117}],[6019,{"d":19,"dB":1610222400,"t1s":0,"t2s":0,"t1":7,"t2":9}],[6032,{"d":18,"dB":1609963200,"t1s":3,"t2s":1,"t1":9,"t2":15}],[6038,{"d":17,"dB":1608753600,"t1s":2,"t2s":1,"t1":16,"t2":9}],[6067,{"d":15,"dB":1608148800,"t1s":2,"t2s":1,"t1":20,"t2":9}],[6085,{"d":13,"dB":1607112000,"t1s":0,"t2s":2,"t1":67,"t2":9}],[6091,{"d":12,"dB":1606579200,"t1s":3,"t2s":1,"t1":9,"t2":8}],[6116,{"d":10,"dB":1604692800,"t1s":0,"t2s":1,"t1":41,"t2":9}],[6141,{"d":7,"dB":1602961200,"t1s":3,"t2s":1,"t1":9,"t2":3}],[6187,{"d":3,"dB":1600023600,"t1s":0,"t2s":1,"t1":2,"t2":9}],[6197,{"d":2,"dB":1598814000,"t1s":2,"t2s":3,"t1":75,"t2":9}],[6198,{"d":1,"dB":1600369200,"t1s":0,"t2s":2,"t1":9,"t2":4}],[7430,{"d":7,"dB":1604844000,"t1s":1,"t2s":3,"t1":117,"t2":116}],[7457,{"d":3,"dB":1604505600,"t1s":1,"t2s":2,"t1":117,"t2":122}],[7388,{"d":13,"dB":1608407100,"t1s":0,"t2s":4,"t1":114,"t2":115}],[7414,{"d":9,"dB":1606765500,"t1s":1,"t2s":2,"t1":117,"t2":114}],[7425,{"d":8,"dB":1606064400,"t1s":1,"t2s":0,"t1":124,"t2":117}],[5569,{"d":26,"dB":1583696700,"t1s":2,"t2s":0,"t1":115,"t2":112}],[7278,{"d":28,"dB":1617813900,"dl":1,"t1s":null,"t2s":null,"t1":112,"t2":123}],[7290,{"d":27,"dB":1615730400,"t1s":1,"t2s":2,"t1":122,"t2":112}],[7308,{"d":25,"dB":1614887100,"t1s":1,"t2s":2,"t1":114,"t2":112}],[7317,{"d":23,"dB":1613916000,"t1s":0,"t2s":3,"t1":125,"t2":112}],[7321,{"d":22,"dB":1613331900,"t1s":3,"t2s":1,"t1":112,"t2":121}],[7346,{"d":19,"dB":1611421200,"t1s":0,"t2s":0,"t1":124,"t2":112}],[7351,{"d":18,"dB":1610912700,"t1s":2,"t2s":0,"t1":112,"t2":115}],[7361,{"d":17,"dB":1610278200,"t1s":2,"t2s":2,"t1":116,"t2":112}],[7367,{"d":16,"dB":1609941600,"t1s":2,"t2s":1,"t1":120,"t2":112}],[7383,{"d":14,"dB":1608744600,"t1s":1,"t2s":2,"t1":126,"t2":112}],[7397,{"d":12,"dB":1608147900,"t1s":1,"t2s":0,"t1":112,"t2":111}],[7418,{"d":9,"dB":1606572000,"t1s":0,"t2s":3,"t1":123,"t2":112}],[7450,{"d":4,"dB":1602950400,"t1s":1,"t2s":2,"t1":112,"t2":125}],[7460,{"d":3,"dB":1601816400,"t1s":1,"t2s":1,"t1":121,"t2":112}],[5508,{"d":32,"dB":1594488600,"t1s":0,"t2s":3,"t1":109,"t2":116}],[7461,{"d":3,"dB":1601816400,"t1s":1,"t2s":0,"t1":114,"t2":126}],[7472,{"d":1,"dB":1600597800,"t1s":0,"t2s":2,"t1":114,"t2":111}],[4319,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":59,"t2":85}],[4335,{"d":36,"dB":1594488600,"t1s":0,"t2s":1,"t1":74,"t2":59}],[4339,{"d":35,"dB":1594238400,"t1s":1,"t2s":0,"t1":59,"t2":56}],[4357,{"d":34,"dB":1593979200,"t1s":1,"t2s":4,"t1":64,"t2":59}],[4359,{"d":33,"dB":1593547200,"t1s":2,"t2s":2,"t1":59,"t2":54}],[4370,{"d":32,"dB":1593270000,"t1s":2,"t2s":2,"t1":51,"t2":59}],[4379,{"d":31,"dB":1592942400,"t1s":1,"t2s":0,"t1":59,"t2":57}],[4396,{"d":30,"dB":1592596800,"t1s":0,"t2s":0,"t1":55,"t2":59}],[4399,{"d":29,"dB":1592337600,"t1s":2,"t2s":0,"t1":59,"t2":47}],[4413,{"d":28,"dB":1592078400,"t1s":0,"t2s":4,"t1":87,"t2":59}],[4420,{"d":27,"dB":1583602200,"t1s":1,"t2s":0,"t1":59,"t2":52}],[7276,{"d":29,"dB":1617465600,"t1s":2,"t2s":2,"t1":122,"t2":115}],[7293,{"d":26,"dB":1615059900,"t1s":3,"t2s":1,"t1":115,"t2":121}],[7312,{"d":24,"dB":1614455100,"t1s":1,"t2s":1,"t1":126,"t2":115}],[7323,{"d":22,"dB":1613235600,"t1s":1,"t2s":0,"t1":111,"t2":115}],[7330,{"d":21,"dB":1612630800,"t1s":2,"t2s":0,"t1":115,"t2":116}],[7339,{"d":20,"dB":1612026000,"t1s":0,"t2s":2,"t1":120,"t2":115}],[7358,{"d":17,"dB":1610307900,"t1s":3,"t2s":1,"t1":115,"t2":123}],[7366,{"d":16,"dB":1609962300,"t1s":1,"t2s":3,"t1":125,"t2":115}],[7408,{"d":10,"dB":1607187600,"t1s":2,"t2s":1,"t1":115,"t2":122}],[7431,{"d":7,"dB":1604835000,"t1s":1,"t2s":1,"t1":121,"t2":115}],[7445,{"d":5,"dB":1603655100,"t1s":1,"t2s":1,"t1":115,"t2":126}],[7468,{"d":2,"dB":1601232300,"t1s":2,"t2s":2,"t1":116,"t2":115}],[7519,{"d":6,"dB":1604239200,"t1s":1,"t2s":4,"t1":141,"t2":115}],[7647,{"d":25,"dB":1614714300,"t1s":3,"t2s":0,"t1":115,"t2":141}],[7374,{"d":15,"dB":1609703100,"t1s":4,"t2s":1,"t1":115,"t2":124}],[4309,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":54,"t2":52}],[4322,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":58,"t2":54}],[4329,{"d":36,"dB":1594497600,"t1s":1,"t2s":0,"t1":54,"t2":60}],[4340,{"d":35,"dB":1594152000,"t1s":1,"t2s":1,"t1":51,"t2":54}],[4349,{"d":34,"dB":1593806400,"t1s":3,"t2s":0,"t1":54,"t2":87}],[4369,{"d":32,"dB":1593288000,"t1s":2,"t2s":1,"t1":54,"t2":48}],[4382,{"d":31,"dB":1592933400,"t1s":0,"t2s":1,"t1":63,"t2":54}],[4389,{"d":30,"dB":1592683200,"t1s":1,"t2s":0,"t1":54,"t2":74}],[4403,{"d":29,"dB":1592424000,"t1s":0,"t2s":5,"t1":85,"t2":54}],[4408,{"d":28,"dB":1592136000,"t1s":1,"t2s":1,"t1":57,"t2":54}],[4419,{"d":27,"dB":1583593200,"t1s":2,"t2s":2,"t1":54,"t2":55}],[6131,{"d":8,"dB":1603551600,"t1s":0,"t2s":1,"t1":6,"t2":9}],[6171,{"d":4,"dB":1600628400,"t1s":1,"t2s":1,"t1":9,"t2":12}],[5514,{"d":32,"dB":1594480500,"t1s":1,"t2s":2,"t1":121,"t2":123}],[7282,{"d":28,"dB":1616335200,"t1s":0,"t2s":1,"t1":124,"t2":121}],[7304,{"d":25,"dB":1614706200,"dl":1,"t1s":null,"t2s":null,"t1":121,"t2":122}],[7316,{"d":23,"dB":1613829600,"t1s":1,"t2s":0,"t1":121,"t2":120}],[7343,{"d":19,"dB":1611507600,"t1s":2,"t2s":1,"t1":121,"t2":123}],[7352,{"d":18,"dB":1610739900,"t1s":3,"t2s":0,"t1":121,"t2":116}],[7360,{"d":17,"dB":1610287200,"t1s":0,"t2s":2,"t1":114,"t2":121}],[7402,{"d":11,"dB":1607802300,"t1s":1,"t2s":2,"t1":121,"t2":126}],[7415,{"d":9,"dB":1606649400,"t1s":1,"t2s":3,"t1":121,"t2":124}],[7440,{"d":6,"dB":1604239200,"t1s":3,"t2s":4,"t1":122,"t2":121}],[7451,{"d":4,"dB":1602950400,"t1s":3,"t2s":0,"t1":120,"t2":121}],[8254,{"d":29,"dB":1617454800,"t1s":2,"t2s":1,"t1":121,"t2":141}],[7379,{"d":14,"dB":1608752700,"t1s":3,"t2s":2,"t1":125,"t2":121}],[3991,{"d":32,"dB":1593544500,"t1s":0,"t2s":3,"t1":45,"t2":31}],[4002,{"d":31,"dB":1593018000,"t1s":3,"t2s":0,"t1":31,"t2":77}],[5461,{"d":37,"dB":1596043800,"t1s":null,"t2s":null,"t1":121,"t2":109}],[4380,{"d":31,"dB":1593106200,"t1s":1,"t2s":0,"t1":66,"t2":49}],[4392,{"d":30,"dB":1592674200,"t1s":1,"t2s":1,"t1":58,"t2":66}],[4400,{"d":29,"dB":1592415000,"t1s":2,"t2s":2,"t1":66,"t2":57}],[4421,{"d":27,"dB":1583582400,"t1s":1,"t2s":2,"t1":66,"t2":87}],[4450,{"d":24,"dB":1583866800,"t1s":1,"t2s":2,"t1":66,"t2":52}],[5507,{"d":33,"dB":1594842300,"t1s":0,"t2s":0,"t1":124,"t2":121}],[3937,{"d":38,"dB":1595775600,"t1s":1,"t2s":1,"t1":28,"t2":78}],[3938,{"d":37,"dB":1595358900,"t1s":1,"t2s":0,"t1":78,"t2":39}],[3952,{"d":36,"dB":1594918800,"t1s":1,"t2s":1,"t1":22,"t2":78}],[3958,{"d":35,"dB":1594559700,"t1s":2,"t2s":0,"t1":78,"t2":26}],[3969,{"d":34,"dB":1594322100,"t1s":0,"t2s":3,"t1":78,"t2":31}],[3981,{"d":33,"dB":1593963000,"t1s":2,"t2s":0,"t1":21,"t2":78}],[4022,{"d":29,"dB":1583784000,"t1s":4,"t2s":0,"t1":29,"t2":78}],[7274,{"d":29,"dB":1617445800,"t1s":1,"t2s":1,"t1":125,"t2":120}],[7302,{"d":24,"dB":1614541500,"t1s":1,"t2s":2,"t1":116,"t2":125}],[7359,{"d":17,"dB":1610221500,"t1s":2,"t2s":0,"t1":125,"t2":122}],[7422,{"d":8,"dB":1606074300,"t1s":1,"t2s":3,"t1":111,"t2":125}],[7432,{"d":7,"dB":1604864700,"t1s":2,"t2s":2,"t1":125,"t2":126}],[7441,{"d":6,"dB":1604230200,"t1s":1,"t2s":2,"t1":124,"t2":125}],[7447,{"d":5,"dB":1603741500,"t1s":3,"t2s":3,"t1":125,"t2":116}],[7623,{"d":22,"dB":1613245500,"t1s":2,"t2s":0,"t1":141,"t2":125}],[4312,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":47,"t2":62}],[4345,{"d":35,"dB":1594411200,"t1s":2,"t2s":0,"t1":62,"t2":48}],[4384,{"d":31,"dB":1593028800,"t1s":2,"t2s":0,"t1":62,"t2":87}],[7287,{"d":27,"dB":1615751100,"t1s":0,"t2s":1,"t1":125,"t2":111}],[7310,{"d":25,"dB":1614800700,"t1s":1,"t2s":1,"t1":125,"t2":124}],[7389,{"d":13,"dB":1608472800,"t1s":1,"t2s":2,"t1":123,"t2":125}],[7403,{"d":11,"dB":1607888700,"t1s":2,"t2s":2,"t1":125,"t2":114}],[7410,{"d":10,"dB":1607283900,"t1s":1,"t2s":2,"t1":120,"t2":125}],[7487,{"d":3,"dB":1601827200,"t1s":3,"t2s":0,"t1":125,"t2":141}],[7298,{"d":26,"dB":1615125600,"t1s":0,"t2s":2,"t1":126,"t2":125}],[7380,{"d":14,"dB":1608752700,"t1s":1,"t2s":1,"t1":111,"t2":122}],[7395,{"d":12,"dB":1608234300,"t1s":3,"t2s":1,"t1":116,"t2":122}],[7405,{"d":11,"dB":1607792400,"t1s":2,"t2s":3,"t1":122,"t2":124}],[7419,{"d":9,"dB":1606757400,"t1s":2,"t2s":2,"t1":122,"t2":120}],[7448,{"d":5,"dB":1603478700,"t1s":3,"t2s":3,"t1":123,"t2":122}],[6914,{"d":2,"dB":1600615800,"t1s":0,"t2s":2,"t1":25,"t2":21}],[7280,{"d":28,"dB":1616355900,"t1s":0,"t2s":2,"t1":116,"t2":111}],[7309,{"d":25,"dB":1614792600,"t1s":3,"t2s":3,"t1":123,"t2":111}],[7337,{"d":20,"dB":1612112400,"t1s":2,"t2s":0,"t1":111,"t2":114}],[7362,{"d":17,"dB":1610287200,"t1s":1,"t2s":2,"t1":124,"t2":111}],[7404,{"d":11,"dB":1607868000,"t1s":2,"t2s":1,"t1":111,"t2":120}],[7437,{"d":6,"dB":1604250000,"t1s":0,"t2s":2,"t1":111,"t2":123}],[7417,{"d":9,"dB":1606679100,"t1s":4,"t2s":0,"t1":111,"t2":116}],[3650,{"d":28,"dB":1583697600,"t1s":1,"t2s":0,"t1":12,"t2":18}],[7318,{"d":23,"dB":1613907000,"t1s":2,"t2s":2,"t1":114,"t2":124}],[7355,{"d":18,"dB":1610892000,"t1s":1,"t2s":1,"t1":123,"t2":114}],[7375,{"d":15,"dB":1609682400,"t1s":0,"t2s":3,"t1":114,"t2":122}],[7423,{"d":8,"dB":1606053600,"t1s":3,"t2s":0,"t1":116,"t2":114}],[7454,{"d":4,"dB":1603036800,"t1s":3,"t2s":2,"t1":124,"t2":114}],[7509,{"d":5,"dB":1603634400,"t1s":2,"t2s":2,"t1":114,"t2":141}],[7288,{"d":27,"dB":1615730400,"t1s":2,"t2s":0,"t1":114,"t2":116}],[7326,{"d":22,"dB":1613418300,"t1s":2,"t2s":1,"t1":126,"t2":114}],[7345,{"d":19,"dB":1611517500,"t1s":0,"t2s":2,"t1":114,"t2":120}],[7637,{"d":24,"dB":1614434400,"t1s":2,"t2s":2,"t1":141,"t2":114}],[7275,{"d":29,"dB":1617454800,"t1s":2,"t2s":2,"t1":123,"t2":116}],[7322,{"d":22,"dB":1613302200,"t1s":3,"t2s":0,"t1":116,"t2":124}],[7338,{"d":20,"dB":1612122300,"t1s":3,"t2s":1,"t1":116,"t2":126}],[7376,{"d":15,"dB":1609682400,"t1s":1,"t2s":0,"t1":116,"t2":120}],[7458,{"d":3,"dB":1601750700,"t1s":0,"t2s":1,"t1":124,"t2":116}],[7605,{"d":19,"dB":1611410400,"t1s":4,"t2s":3,"t1":116,"t2":141}],[3930,{"d":38,"dB":1595775600,"t1s":2,"t2s":0,"t1":25,"t2":69}],[3999,{"d":31,"dB":1593112500,"t1s":2,"t2s":1,"t1":25,"t2":40}],[4020,{"d":29,"dB":1583676000,"t1s":4,"t2s":0,"t1":25,"t2":22}],[7409,{"d":10,"dB":1607263200,"t1s":0,"t2s":0,"t1":116,"t2":123}],[4313,{"d":38,"dB":1595185200,"t1s":null,"t2s":null,"t1":63,"t2":58}],[4320,{"d":37,"dB":1594926000,"t1s":null,"t2s":null,"t1":51,"t2":63}],[4333,{"d":36,"dB":1594566000,"t1s":1,"t2s":2,"t1":63,"t2":57}],[4343,{"d":35,"dB":1594315800,"t1s":2,"t2s":0,"t1":87,"t2":63}],[4353,{"d":34,"dB":1594056600,"t1s":1,"t2s":1,"t1":63,"t2":52}],[4366,{"d":33,"dB":1593633600,"t1s":0,"t2s":0,"t1":74,"t2":63}],[4374,{"d":32,"dB":1593345600,"t1s":4,"t2s":2,"t1":63,"t2":60}],[4391,{"d":30,"dB":1592654400,"t1s":1,"t2s":3,"t1":56,"t2":63}],[4402,{"d":29,"dB":1592242200,"t1s":1,"t2s":1,"t1":63,"t2":55}],[4417,{"d":28,"dB":1591992000,"t1s":1,"t2s":1,"t1":49,"t2":63}],[7179,{"d":4,"dB":1601494200,"t1s":1,"t2s":0,"t1":62,"t2":74}],[7188,{"d":3,"dB":1601146800,"t1s":2,"t2s":3,"t1":60,"t2":62}],[7281,{"d":28,"dB":1616335200,"t1s":1,"t2s":0,"t1":120,"t2":122}],[7354,{"d":18,"dB":1610826300,"t1s":2,"t2s":1,"t1":120,"t2":124}],[7382,{"d":14,"dB":1608752700,"t1s":2,"t2s":3,"t1":120,"t2":123}],[7595,{"d":17,"dB":1610394300,"t1s":2,"t2s":1,"t1":141,"t2":120}],[5576,{"d":26,"dB":1583775000,"t1s":3,"t2s":0,"t1":123,"t2":109}],[6157,{"d":6,"dB":1601838000,"t1s":1,"t2s":1,"t1":18,"t2":9}],[6163,{"d":5,"dB":1601146800,"t1s":1,"t2s":1,"t1":9,"t2":11}],[7289,{"d":27,"dB":1615644000,"t1s":3,"t2s":2,"t1":123,"t2":126}],[7297,{"d":26,"dB":1615050000,"t1s":2,"t2s":0,"t1":124,"t2":123}],[7434,{"d":7,"dB":1604691900,"t1s":0,"t2s":0,"t1":123,"t2":124}],[7306,{"d":24,"dB":1615989600,"t1s":3,"t2s":2,"t1":122,"t2":123}],[7616,{"d":21,"dB":1612620000,"t1s":1,"t2s":2,"t1":123,"t2":141}],[5457,{"d":38,"dB":1596397500,"t1s":null,"t2s":null,"t1":123,"t2":124}],[7610,{"d":20,"dB":1612092600,"t1s":0,"t2s":1,"t1":141,"t2":124}],[7068,{"d":20,"dB":1611423000,"t1s":2,"t2s":2,"t1":52,"t2":60}],[7094,{"d":16,"dB":1609273800,"t1s":4,"t2s":3,"t1":63,"t2":60}],[7107,{"d":14,"dB":1608477300,"t1s":2,"t2s":0,"t1":86,"t2":60}],[7113,{"d":13,"dB":1607872500,"t1s":1,"t2s":1,"t1":60,"t2":64}],[7128,{"d":11,"dB":1606766400,"t1s":0,"t2s":2,"t1":60,"t2":66}],[7134,{"d":10,"dB":1606161600,"t1s":4,"t2s":0,"t1":57,"t2":60}],[7140,{"d":9,"dB":1604762100,"t1s":5,"t2s":2,"t1":59,"t2":60}],[7154,{"d":7,"dB":1603566000,"t1s":2,"t2s":0,"t1":54,"t2":60}],[7166,{"d":6,"dB":1603047600,"t1s":0,"t2s":3,"t1":60,"t2":52}],[7175,{"d":5,"dB":1601751600,"t1s":0,"t2s":2,"t1":49,"t2":60}],[7177,{"d":4,"dB":1601407800,"t1s":3,"t2s":0,"t1":58,"t2":60}],[7196,{"d":2,"dB":1600619400,"t1s":2,"t2s":0,"t1":60,"t2":74}],[7516,{"d":8,"dB":1604235600,"t1s":3,"t2s":1,"t1":60,"t2":135}],[7563,{"d":15,"dB":1608757200,"t1s":1,"t2s":0,"t1":60,"t2":134}],[7588,{"d":18,"dB":1610395200,"t1s":0,"t2s":2,"t1":73,"t2":60}],[3649,{"d":28,"dB":1583607600,"t1s":2,"t2s":1,"t1":7,"t2":10}],[7333,{"d":21,"dB":1612706400,"t1s":2,"t2s":0,"t1":124,"t2":126}],[3928,{"d":38,"dB":1595775600,"t1s":3,"t2s":2,"t1":39,"t2":33}],[3946,{"d":37,"dB":1595350800,"t1s":0,"t2s":4,"t1":33,"t2":40}],[3979,{"d":33,"dB":1593889200,"t1s":3,"t2s":0,"t1":25,"t2":33}],[3996,{"d":32,"dB":1593358200,"t1s":1,"t2s":3,"t1":33,"t2":35}],[4016,{"d":30,"dB":1592652600,"t1s":1,"t2s":1,"t1":33,"t2":29}],[4021,{"d":29,"dB":1583593200,"t1s":1,"t2s":0,"t1":26,"t2":33}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json index 2944702..ddb2289 100644 --- a/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json +++ b/src/test/resources/__files/mpg.coach.MLEFEX6G.20210804-Request.json @@ -2,52 +2,44 @@ "composition": "343", "playersOnPitch": { "1": "mpg_championship_player_220359", - "2": "mpg_championship_player_209171", - "3": "mpg_championship_player_245485", - "4": "mpg_championship_player_235708", + "2": "mpg_championship_player_509285", + "3": "mpg_championship_player_512711", + "4": "mpg_championship_player_454964", "5": "mpg_championship_player_167454", "6": "mpg_championship_player_92353", "7": "mpg_championship_player_204405", "8": "mpg_championship_player_177449", "9": "mpg_championship_player_228313", "10": "mpg_championship_player_511596", - "11": "mpg_championship_player_423064", - "12": "mpg_championship_player_512711", - "13": "mpg_championship_player_509285", - "14": "mpg_championship_player_454964", - "15": "mpg_championship_player_437503", - "16": "mpg_championship_player_173242", - "17": "mpg_championship_player_149035", + "11": "mpg_championship_player_149035", + "12": "mpg_championship_player_209171", + "13": "mpg_championship_player_245485", + "14": "mpg_championship_player_437503", + "15": "mpg_championship_player_489486", + "16": "mpg_championship_player_533003", + "17": null, "18": "mpg_championship_player_102724" }, "tacticalSubs": [ { - "rating": 4, - "starterId": "mpg_championship_player_511596", - "subId": "mpg_championship_player_149035" + "rating": 5, + "subId": "mpg_championship_player_209171", + "starterId": "mpg_championship_player_454964" }, { - "rating": 5.5, - "subId": "mpg_championship_player_512711", - "starterId": "mpg_championship_player_209171" - }, - { - "rating": 5.5, - "subId": "mpg_championship_player_509285", - "starterId": "mpg_championship_player_245485" + "rating": 5, + "subId": "mpg_championship_player_437503", + "starterId": "mpg_championship_player_177449" }, { - "rating": 5.5, - "subId": "mpg_championship_player_437503", - "starterId": "mpg_championship_player_167454" + "rating": 5, + "subId": "mpg_championship_player_489486", + "starterId": "mpg_championship_player_204405" }, { - "rating": 5.5, - "subId": "mpg_championship_player_454964", - "starterId": "mpg_championship_player_235708" + "rating": 6, + "subId": "mpg_championship_player_533003", + "starterId": "mpg_championship_player_149035" } - ], - "selectedBonus": { - "name": "boostAllPlayers" - } + ] } diff --git a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-waitMercatoNextTurn.json b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-waitMercatoNextTurn.json new file mode 100644 index 0000000..aff5c1e --- /dev/null +++ b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-waitMercatoNextTurn.json @@ -0,0 +1,43 @@ +{ + "leaguesDivisionsItems": [ + { + "leagueId": "mpg_league_MLAX7HMK", + "name": "Du Tyran 🐐", + "adminId": "user_953561", + "status": 3, + "season": 3, + "mode": 1, + "createdAt": "2020-08-22T08:22:40Z", + "mercatoState": { + "nextMercatoTurn": "2021-08-13T12:00:00Z", + "teamsStatuses": { + "mpg_team_MLAX7HMK_3_1_0": 2, + "mpg_team_MLAX7HMK_3_1_1": 2, + "mpg_team_MLAX7HMK_3_1_2": 2, + "mpg_team_MLAX7HMK_3_1_3": 2, + "mpg_team_MLAX7HMK_3_1_4": 2, + "mpg_team_MLAX7HMK_3_1_5": 2, + "mpg_team_MLAX7HMK_3_1_6": 2, + "mpg_team_MLAX7HMK_3_1_7": 2, + "mpg_team_MLAX7HMK_3_1_8": 2, + "mpg_team_MLAX7HMK_3_1_9": 1 + }, + "turn": 1 + }, + "championshipId": 1, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/162a6145-03c5-4895-8456-6855a9bd4c15.jpg", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "mercatoStartDate": "2021-08-11T12:00:00Z", + "mercatoStartIn": -631, + "divisionNumber": 1, + "divisionStatus": 3, + "divisionId": "mpg_division_MLAX7HMK_3_1", + "divisionTotalUsers": 10, + "currentTeamStatus": 2 + } + ], + "defaultOrder": true +} diff --git a/src/test/resources/__files/mpg.trading.buy.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.division.available.players.MLEFEX6G.20210804.json similarity index 100% rename from src/test/resources/__files/mpg.trading.buy.MLEFEX6G.20210804.json rename to src/test/resources/__files/mpg.division.available.players.MLEFEX6G.20210804.json diff --git a/src/test/resources/__files/mpgstats.leagues.20181114.json b/src/test/resources/__files/mpgstats.leagues.20181114.json deleted file mode 100644 index 2622b65..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20181114.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2018-11-12T14:25:18Z","2":"2018-11-12T14:25:27Z","3":"2018-11-12T14:25:37Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.leagues.20181212.json b/src/test/resources/__files/mpgstats.leagues.20181212.json deleted file mode 100644 index d16dd55..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20181212.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "1": "2018-12-12T18:06:00Z", - "2": "2018-12-12T18:06:00Z", - "3": "2018-12-12T18:06:00Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20181220.json b/src/test/resources/__files/mpgstats.leagues.20181220.json deleted file mode 100644 index bd7062c..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20181220.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "1": "2018-12-13T08:28:34Z", - "2": "2018-12-13T08:28:47Z", - "3": "2018-12-13T08:29:01Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190123.json b/src/test/resources/__files/mpgstats.leagues.20190123.json deleted file mode 100644 index 80d844b..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190123.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "1": "2019-01-22T07:49:46Z", - "2": "2019-01-22T07:50:01Z", - "3": "2019-01-22T07:50:20Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190202.json b/src/test/resources/__files/mpgstats.leagues.20190202.json deleted file mode 100644 index 5ec33f4..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190202.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "1": "2019-01-31T07:28:41Z", - "2": "2019-01-31T07:28:58Z", - "3": "2019-01-31T07:29:22Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190211.json b/src/test/resources/__files/mpgstats.leagues.20190211.json deleted file mode 100644 index 9caca21..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190211.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2019-02-11T14:58:49Z","2":"2019-02-11T14:59:06Z","3":"2019-02-11T14:59:27Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.leagues.20190217.json b/src/test/resources/__files/mpgstats.leagues.20190217.json deleted file mode 100644 index 5c8c3dd..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190217.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "1": "2019-02-12T07:23:55Z", - "2": "2019-02-12T07:24:12Z", - "3": "2019-02-12T07:24:34Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190718.json b/src/test/resources/__files/mpgstats.leagues.20190718.json deleted file mode 100644 index e43dacb..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190718.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "1": "2019-07-17T11:35:15Z", - "2": "2019-07-17T11:35:29Z", - "3": "2019-07-17T11:35:44Z", - "4": "2019-07-17T11:35:58Z", - "5": "2019-07-17T11:35:59Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190724.json b/src/test/resources/__files/mpgstats.leagues.20190724.json deleted file mode 100644 index 15df309..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190724.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "1": "2019-07-19T13:42:42Z", - "2": "2019-07-19T13:42:55Z", - "3": "2019-07-19T13:43:10Z", - "4": "2019-07-19T13:43:26Z", - "5": "2019-07-19T13:43:28Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190805.json b/src/test/resources/__files/mpgstats.leagues.20190805.json deleted file mode 100644 index 5129c62..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190805.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "1": "2019-07-31T19:41:24Z", - "2": "2019-07-31T19:41:34Z", - "3": "2019-07-31T19:41:46Z", - "4": "2019-08-05T07:29:31Z", - "5": "2019-07-31T19:42:04Z" -} diff --git a/src/test/resources/__files/mpgstats.leagues.20190806.json b/src/test/resources/__files/mpgstats.leagues.20190806.json deleted file mode 100644 index 1449d69..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190806.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2019-08-05T11:24:37Z","2":"2019-07-31T19:41:34Z","3":"2019-07-31T19:41:46Z","4":"2019-08-06T07:54:58Z","5":"2019-07-31T19:42:04Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.leagues.20190818.json b/src/test/resources/__files/mpgstats.leagues.20190818.json deleted file mode 100644 index 56106be..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20190818.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2019-08-14T16:38:48Z","2":"2019-08-14T16:29:25Z","3":"2019-08-14T16:29:52Z","4":"2019-08-14T16:34:27Z","5":"2019-08-14T16:30:30Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.leagues.20191212.json b/src/test/resources/__files/mpgstats.leagues.20191212.json deleted file mode 100644 index 10fa2ea..0000000 --- a/src/test/resources/__files/mpgstats.leagues.20191212.json +++ /dev/null @@ -1 +0,0 @@ -{"1":"2019-12-11T18:11:06Z","2":"2019-12-11T18:11:15Z","3":"2019-12-11T18:11:25Z","4":"2019-12-11T18:11:35Z","5":"2019-12-11T18:11:42Z"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20181114.json b/src/test/resources/__files/mpgstats.ligue-1.20181114.json deleted file mode 100644 index 8617800..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20181114.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2018-11-12T14:25:18Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38,"cD":{"cN":"CurrentDay","d":13,"lD":13}},"lS":{"cN":"Ligue-1-2017-2018","i":3,"n":"Ligue 1 2017-2018","mD":38}},"mxD":13,"np":637,"le":{"1":"Ligue-1"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":38,"s":{"g":"8","s":"50","n":"8","a":"6.31","d":"1.17","Sg":"3","Ss":"8","Sn":"1","Sa":"8.5","Og":"21","Os":"166","On":"28","Oa":"5.95","Od":"1.44","Ap":"26","p":{"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":7.5,"g":2},"9":{"n":5},"10":{"n":5},"13":{"n":8.5,"g":3}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":22,"s":{"s":"60","n":"10","a":"6","d":"0.45","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Og":"1","Os":"152","On":"26","Oa":"5.85","Od":"0.77","Dp":"25","p":{"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":5},"5":{"n":6},"7":{"n":6},"8":{"n":6},"9":{"n":6},"12":{"n":7},"13":{"n":6}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":34,"s":{"g":"3","s":"77","n":"13","a":"5.92","d":"1.05","Sg":"3","Ss":"77","Sn":"13","Sa":"5.92","Sd":"1.05","Og":"13","Os":"203","On":"34","Oa":"5.97","Od":"1.17","Mp":"7","Ap":"25","p":{"25":{"n":6},"1":{"n":6},"2":{"n":7},"3":{"n":6},"4":{"n":6.5,"g":1},"5":{"n":7,"g":1},"6":{"n":6.5,"g":1},"7":{"n":4,"s":1},"8":{"n":5},"9":{"n":7},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":4,"s":1}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":20,"s":{"g":"3","s":"64","n":"11","a":"5.82","d":"0.98","Sg":"2","Ss":"32","Sn":"5","Sa":"6.4","Sd":"0.86","Og":"5","Os":"170","On":"30","Oa":"5.67","Od":"0.99","Mp":"20","Ap":"3","p":{"25":{"n":5,"s":1},"1":{"n":5.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":7.5,"g":1},"11":{"n":6.5,"g":1},"12":{"n":7},"13":{"n":6}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":21,"s":{"s":"48","n":"8","a":"6.06","d":"0.98","Os":"125","On":"21","Oa":"5.98","Od":"0.94","Mp":"19","p":{"25":{"n":6,"s":1},"5":{"n":7},"6":{"n":5.5},"7":{"n":6},"8":{"n":5.5,"s":1},"9":{"n":7},"10":{"n":4},"11":{"n":6.5},"12":{"n":7}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":44,"s":{"g":"11","s":"64","n":"9","a":"7.11","d":"0.77","Sg":"7","Ss":"42","Sn":"6","Sa":"7.08","Sd":"0.93","Og":"20","Os":"172","On":"28","Oa":"6.14","Od":"1.69","Mp":"3","Ap":"22","p":{"25":{"n":6},"2":{"n":7.5,"g":2,"s":1},"3":{"n":7,"g":1},"4":{"n":7,"g":1},"8":{"n":7},"9":{"n":9,"g":4},"10":{"n":7,"g":1},"11":{"n":6.5,"g":1,"s":1},"12":{"n":7,"g":1},"13":{"n":6}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":25,"s":{"g":"1","s":"67","n":"11","a":"6.09","d":"0.95","Og":"1","Os":"158","On":"28","Oa":"5.64","Od":"0.87","Mp":"4","Dp":"23","p":{"25":{"n":6},"1":{"n":6},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":6},"9":{"n":8},"10":{"n":7,"g":1},"11":{"n":7},"12":{"n":5}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":24,"s":{"g":"2","s":"56","n":"9","a":"6.22","d":"0.82","Og":"3","Os":"152","On":"26","Oa":"5.85","Od":"0.87","Mp":"3","Dp":"16","p":{"2":{"n":5},"3":{"n":6.5},"4":{"n":6},"5":{"n":6},"6":{"n":7.5,"g":1},"7":{"n":7,"g":1,"s":1},"9":{"n":7},"11":{"n":6},"12":{"n":5}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"66","On":"13","Oa":"5.08","Od":"1","Dp":"12"},"c":2},{"i":100,"n":"Areola","f":"Alphonse","p":"G","r":18,"s":{"s":"41","n":"7","a":"5.93","d":"0.32","Ss":"6","Sn":"1","Sa":"6","Os":"159","On":"28","Oa":"5.7","Od":"1.07","Gp":"28","p":{"25":{"n":6},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":6},"8":{"n":5.5},"10":{"n":6},"11":{"n":6},"13":{"n":6}}},"c":2},{"i":121,"n":"Rabiot","f":"Adrien","p":"M","r":23,"s":{"g":"2","ao":"1","s":"73","n":"12","a":"6.08","d":"1.04","Sg":"1","Ss":"24","Sn":"4","Sa":"6.13","Sd":"1.14","Og":"2","Oao":"1","Os":"188","On":"32","Oa":"5.88","Od":"0.96","Mp":"26","Ap":"1","p":{"25":{"n":4},"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":7.5},"4":{"n":5},"5":{"n":6},"6":{"n":4.5,"a":1},"7":{"n":6},"8":{"n":7},"10":{"n":7.5,"g":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":7}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":10,"s":{"n":0,"Os":"23","On":"4","Oa":"5.75","Od":"0.43","Gp":"4"},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":14,"s":{"s":"39","n":"7","a":"5.57","d":"1.02","Ss":"6","Sn":"1","Sa":"6","Os":"145","On":"26","Oa":"5.58","Od":"1","Dp":"26","p":{"25":{"n":6},"3":{"n":6},"4":{"n":7},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":3.5},"13":{"n":6}}},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":13,"s":{"g":"1","s":"55","n":"10","a":"5.55","d":"0.76","Ss":"6","Sn":"1","Sa":"6","Og":"5","Os":"144","On":"27","Oa":"5.35","Od":"0.89","Mp":"11","Dp":"1","Ap":"5","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6.5,"g":1},"10":{"n":6},"13":{"n":6}}},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":52,"s":{"g":"10","s":"73","n":"11","a":"6.68","d":"1.07","Sg":"2","Ss":"18","Sn":"3","Sa":"6.17","Sd":"1.55","Og":"22","Os":"159","On":"22","Oa":"7.25","Od":"1.27","Mp":"3","Ap":"19","p":{"25":{"n":7},"1":{"n":6,"g":1},"2":{"n":7.5,"g":1},"3":{"n":6,"g":1},"4":{"n":7,"g":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7.5,"g":2},"9":{"n":8,"g":1},"11":{"n":4},"12":{"n":7,"g":1},"13":{"n":7.5,"g":1}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"91","On":"16","Oa":"5.69","Od":"0.98","Dp":"15","p":{"25":{"n":6}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":9,"s":{"g":"1","s":"19","n":"4","a":"4.88","d":"0.74","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"104","On":"21","Oa":"4.98","Od":"1.24","Mp":"10","Ap":"8","p":{"6":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"11":{"n":4},"13":{"n":4.5,"s":1}}},"c":2},{"i":1325,"n":"Jes\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"24","On":"6","Oa":"4","Od":"0.58","Ap":"1"},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":6,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":2},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":2},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":12,"s":{"s":"36","n":"7","a":"5.21","d":"0.45","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"36","On":"7","Oa":"5.21","Od":"0.45","Mp":"3","Dp":"4","p":{"1":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5.5},"11":{"n":6},"12":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Os":"69","On":"13","Oa":"5.35","Od":"0.72","Mp":"11","p":{"25":{"n":5},"1":{"n":5},"5":{"n":4},"10":{"n":5.5,"s":1}}},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":4,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":2},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":6,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"0.94","Ap":"3","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":4}}},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"7":{"n":5}}},"c":2},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":2},{"i":2661,"n":"Buffon","f":"Gianluigi","p":"G","r":18,"s":{"s":"34","n":"6","a":"5.67","d":"0.75","Os":"34","On":"6","Oa":"5.67","Od":"0.75","Gp":"6","p":{"1":{"n":6},"2":{"n":5},"6":{"n":6},"7":{"n":5},"9":{"n":7},"12":{"n":5}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":14,"s":{"g":"2","s":"50","n":"9","a":"5.56","d":"1.17","Ss":"12","Sn":"2","Sa":"6.25","Sd":"1.75","Og":"2","Os":"50","On":"9","Oa":"5.56","Od":"1.17","Mp":"3","Ap":"6","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":7,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":8}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":1,"s":{"n":0},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":13,"s":{"s":"54","n":"10","a":"5.45","d":"0.91","Ss":"36","Sn":"6","Sa":"6","Sd":"0.58","Os":"54","On":"10","Oa":"5.45","Od":"0.91","Dp":"10","p":{"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":6,"s":1},"10":{"n":6.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":14,"s":{"s":"37","n":"7","a":"5.36","d":"0.64","Os":"37","On":"7","Oa":"5.36","Od":"0.64","Mp":"2","Dp":"5","p":{"5":{"n":6},"6":{"n":5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5}}},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":13,"s":{"s":"41","n":"8","a":"5.13","d":"0.7","Os":"128","On":"25","Oa":"5.12","Od":"0.62","Mp":"18","p":{"16":{"n":5,"s":1},"35":{"n":6},"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":6}}},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":20,"s":{"s":"72","n":"13","a":"5.58","d":"0.9","Ss":"72","Sn":"13","Sa":"5.58","Sd":"0.9","Os":"196","On":"36","Oa":"5.46","Od":"1.08","Gp":"36","p":{"16":{"n":4},"35":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":8},"8":{"n":5.5},"9":{"n":6},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":11,"s":{"g":"2","s":"49","n":"11","a":"4.45","d":"1.01","Ss":"29","Sn":"7","Sa":"4.14","Sd":"0.69","Og":"10","Os":"168","On":"35","Oa":"4.8","Od":"1.27","Mp":"5","Ap":"30","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":7,"g":2},"7":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":5,"s":1},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4}}},"c":3},{"i":63,"n":"Prior","f":"Jerome","p":"G","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5","Gp":"2"},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":23,"s":{"g":"7","s":"71","n":"13","a":"5.5","d":"1.36","Sg":"7","Ss":"71","Sn":"13","Sa":"5.5","Sd":"1.36","Og":"13","Os":"176","On":"35","Oa":"5.04","Od":"1.33","Mp":"5","Ap":"20","p":{"16":{"n":4,"s":1},"35":{"n":7,"g":1},"1":{"n":5},"2":{"n":5,"g":1},"3":{"n":7.5,"g":2},"4":{"n":4.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"9":{"n":8,"g":2},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":3.5}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":16,"s":{"s":"55","n":"11","a":"5.05","d":"0.72","Og":"3","Os":"138","On":"27","Oa":"5.13","Od":"0.78","Mp":"18","Ap":"1","p":{"35":{"n":6,"g":1},"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":6,"s":1},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":4},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":9,"s":{"s":"26","n":"5","a":"5.2","d":"0.68","Os":"154","On":"29","Oa":"5.31","Od":"0.98","Dp":"29","p":{"16":{"n":4},"35":{"n":7},"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":4.5}}},"c":3},{"i":116,"n":"Karamoh","f":"Yann","p":"A","r":12,"s":{"g":"2","s":"37","n":"7","a":"5.36","d":"0.95","Og":"2","Os":"37","On":"7","Oa":"5.36","Od":"0.95","Ap":"7","p":{"6":{"n":6.5,"g":1,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":5.5}}},"c":3},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":5,"s":{"s":"10","n":"2","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"63","On":"13","Oa":"4.85","Od":"0.77","Mp":"8","p":{"16":{"n":4},"35":{"n":5,"s":1},"2":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":8,"s":{"s":"7","n":"1","a":"7.5","Os":"30","On":"6","Oa":"5.08","Od":"1.43","Dp":"6","p":{"16":{"n":3},"9":{"n":7.5}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":8,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"26","On":"6","Oa":"4.33","Od":"0.37","Dp":"4","p":{"35":{"n":5,"s":1},"1":{"n":4},"2":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4}}},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":7,"s":{"g":"1","s":"36","n":"8","a":"4.56","d":"0.81","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"4","Os":"130","On":"28","Oa":"4.66","Od":"0.95","Mp":"2","Ap":"19","p":{"16":{"n":5,"s":1},"2":{"n":3},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"18","On":"4","Oa":"4.63","Od":"0.96","Dp":"4","p":{"16":{"n":4},"1":{"n":3.5}}},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":11,"s":{"s":"43","n":"9","a":"4.78","d":"0.79","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"144","On":"28","Oa":"5.14","Od":"0.91","Dp":"28","p":{"35":{"n":5},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":6},"8":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6}}},"c":3},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":5,"s":{"n":0,"Og":"2","Os":"19","On":"4","Oa":"4.75","Od":"1.92","Ap":"3","p":{"16":{"n":4}}},"c":3},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":5,"s":{"n":0,"Os":"31","On":"7","Oa":"4.43","Od":"0.49","Dp":"4"},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":8,"s":{"n":0,"Og":"1","Os":"31","On":"7","Oa":"4.43","Od":"1.05","Mp":"3","p":{"16":{"n":6,"g":1}}},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":13,"s":{"s":"46","n":"8","a":"5.81","d":"0.83","Ss":"46","Sn":"8","Sa":"5.81","Sd":"0.83","Os":"110","On":"20","Oa":"5.53","Od":"0.75","Mp":"18","p":{"16":{"n":6},"6":{"n":5.5},"7":{"n":7},"8":{"n":6},"9":{"n":7},"10":{"n":5},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5}}},"c":3},{"i":1203,"n":"Lerager","f":"Lukas","p":"M","r":15,"s":{"s":"60","n":"12","a":"5.04","d":"0.69","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"189","On":"37","Oa":"5.12","Od":"0.86","Mp":"37","p":{"16":{"n":5},"35":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":5},"13":{"n":5}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0},"c":3},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":5,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Os":"41","On":"9","Oa":"4.56","Od":"0.5","Mp":"2","Ap":"2","p":{"1":{"n":4},"8":{"n":5},"9":{"n":5,"s":1}}},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0,"Os":"3","On":"1","Oa":"3","Dp":"1"},"c":3},{"i":2149,"n":"Kound\u00e9","f":"Jules","p":"D","r":15,"s":{"s":"65","n":"13","a":"5","d":"0.88","Ss":"65","Sn":"13","Sa":"5","Sd":"0.88","Og":"2","Os":"162","On":"31","Oa":"5.23","Od":"0.83","Dp":"30","p":{"35":{"n":6},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":6}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":17,"s":{"s":"54","n":"10","a":"5.45","d":"0.88","Ss":"22","Sn":"4","Sa":"5.63","Sd":"0.41","Os":"140","On":"25","Oa":"5.62","Od":"0.92","Dp":"25","p":{"35":{"n":7},"1":{"n":4},"3":{"n":6},"4":{"n":4},"6":{"n":5.5},"7":{"n":7},"8":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":9,"s":{"s":"30","n":"6","a":"5","d":"0.58","Ss":"4","Sn":"1","Sa":"4.5","Os":"30","On":"6","Oa":"5","Od":"0.58","Mp":"6","p":{"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"13":{"n":4.5}}},"c":3},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":13,"s":{"s":"56","n":"11","a":"5.09","d":"0.79","Ss":"26","Sn":"5","Sa":"5.3","Sd":"0.81","Os":"56","On":"11","Oa":"5.09","Od":"0.79","Dp":"11","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":5.5},"9":{"n":6.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5}}},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassin","p":"M","r":1,"s":{"n":0},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":15,"s":{"g":"1","s":"52","n":"10","a":"5.2","d":"0.51","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"52","On":"10","Oa":"5.2","Od":"0.51","Mp":"4","Ap":"6","p":{"2":{"n":5.5},"3":{"n":5},"4":{"n":5},"5":{"n":6.5,"g":1},"6":{"n":5},"7":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5},"13":{"n":4.5}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.47","Os":"15","On":"3","Oa":"5.17","Od":"0.47","Mp":"3","p":{"1":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"10":{"n":5.5,"s":1}}},"c":3},{"i":2863,"n":"Cornelius","f":"Andreas","p":"A","r":13,"s":{"g":"1","s":"40","n":"8","a":"5","d":"0.75","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.85","Og":"1","Os":"40","On":"8","Oa":"5","Od":"0.75","Ap":"8","p":{"5":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":6.5,"g":1,"s":1},"13":{"n":4.5,"s":1}}},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":13,"s":{"g":"1","s":"41","n":"8","a":"5.19","d":"0.75","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"5","Os":"140","On":"27","Oa":"5.2","Od":"1.05","Mp":"16","Ap":"5","p":{"27":{"n":5,"s":1},"1":{"n":5.5},"2":{"n":5},"5":{"n":5,"s":1},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"12":{"n":7,"g":1,"s":1},"13":{"n":4.5}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":21,"s":{"s":"72","n":"13","a":"5.54","d":"1.13","Ss":"72","Sn":"13","Sa":"5.54","Sd":"1.13","Os":"190","On":"35","Oa":"5.43","Od":"1.02","Gp":"35","p":{"27":{"n":5},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6},"8":{"n":7.5},"9":{"n":3},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":6}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":30,"s":{"g":"3","s":"64","n":"11","a":"5.86","d":"1.11","Sg":"3","Ss":"48","Sn":"8","Sa":"6","Sd":"1.09","Og":"9","Os":"172","On":"31","Oa":"5.56","Od":"1.32","Mp":"27","Ap":"3","p":{"27":{"n":6},"2":{"n":7},"3":{"n":4.5},"4":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":6,"g":1},"10":{"n":3.5},"11":{"n":7,"g":1},"12":{"n":7},"13":{"n":5.5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":14,"s":{"s":"61","n":"12","a":"5.13","d":"1.02","Ss":"31","Sn":"6","Sa":"5.17","Sd":"0.99","Os":"163","On":"31","Oa":"5.27","Od":"0.94","Dp":"31","p":{"27":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":3},"6":{"n":5.5},"8":{"n":6.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":6},"13":{"n":5.5}}},"c":4},{"i":69,"n":"Salibur","f":"Yannis","p":"M","r":11,"s":{"g":"1","s":"55","n":"11","a":"5","d":"0.83","Sg":"1","Ss":"50","Sn":"10","Sa":"5.05","Sd":"0.85","Og":"3","Os":"134","On":"26","Oa":"5.15","Od":"1.12","Mp":"17","Ap":"6","p":{"2":{"n":4.5,"e":2745,"c":14,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6.5,"g":1,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":6},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":8,"s":{"s":"50","n":"11","a":"4.59","d":"0.51","Ss":"13","Sn":"3","Sa":"4.5","Og":"2","Os":"148","On":"33","Oa":"4.5","Od":"0.75","Mp":"21","Ap":"7","p":{"27":{"n":5},"1":{"n":5},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":4.5,"s":1},"5":{"n":4},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":15,"s":{"s":"68","n":"12","a":"5.67","d":"0.92","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.85","Os":"168","On":"30","Oa":"5.6","Od":"0.87","Mp":"27","p":{"27":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":7,"s":1},"8":{"n":7.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":7}}},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":15,"s":{"g":"3","s":"66","n":"13","a":"5.12","d":"1.11","Sg":"3","Ss":"66","Sn":"13","Sa":"5.12","Sd":"1.11","Og":"3","Os":"89","On":"19","Oa":"4.71","Od":"1.16","Mp":"3","Ap":"15","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":5}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":6,"s":{"s":"16","n":"4","a":"4","d":"0.35","Og":"7","Os":"91","On":"19","Oa":"4.79","Od":"1.16","Ap":"16","p":{"27":{"n":4},"3":{"n":4,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"10":{"n":3.5}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":9,"s":{"n":0,"Os":"22","On":"4","Oa":"5.5","Od":"1.66","Gp":"3"},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0,"Os":"32","On":"7","Oa":"4.57","Od":"0.73","Mp":"2"},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":5,"s":{"n":0,"Os":"20","On":"5","Oa":"4","Od":"0.89","Dp":"4"},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":3,"s":{"n":0},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":11,"s":{"s":"44","n":"9","a":"4.89","d":"0.46","Os":"44","On":"9","Oa":"4.89","Od":"0.46","Mp":"9","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":4}}},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":28,"s":{"g":"6","s":"68","n":"12","a":"5.67","d":"1.45","Sg":"4","Ss":"36","Sn":"6","Sa":"6.08","Sd":"1.64","Og":"13","Os":"166","On":"30","Oa":"5.53","Od":"1.39","Mp":"8","Ap":"21","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"8":{"n":8,"g":2},"9":{"n":4.5},"10":{"n":7,"g":1},"11":{"n":4},"12":{"n":5},"13":{"n":8,"g":1}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":19,"s":{"g":"2","s":"45","n":"8","a":"5.69","d":"0.93","Sg":"2","Ss":"24","Sn":"4","Sa":"6","Sd":"1.06","Og":"6","Oao":"1","Os":"129","On":"23","Oa":"5.63","Od":"1.08","Dp":"23","p":{"27":{"n":6,"g":1},"2":{"n":6.5},"3":{"n":5},"4":{"n":5},"6":{"n":5},"10":{"n":4.5},"11":{"n":6},"12":{"n":6,"g":1},"13":{"n":7.5,"g":1}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":8,"s":{"s":"26","n":"5","a":"5.2","d":"0.4","Og":"1","Os":"113","On":"23","Oa":"4.91","Od":"0.83","Mp":"14","Dp":"1","p":{"27":{"n":5,"s":1},"1":{"n":4.5,"s":1},"5":{"n":5.5,"s":1},"7":{"n":5.5},"10":{"n":5.5},"11":{"n":5,"s":1}}},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":8,"s":{"s":"46","n":"9","a":"5.11","d":"0.74","Ss":"5","Sn":"1","Sa":"5.5","Os":"136","On":"27","Oa":"5.04","Od":"0.92","Mp":"1","Dp":"26","p":{"27":{"n":5},"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":6},"13":{"n":5.5,"s":1}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":16,"s":{"s":"69","n":"13","a":"5.31","d":"0.82","Ss":"69","Sn":"13","Sa":"5.31","Sd":"0.82","Os":"149","On":"27","Oa":"5.52","Od":"0.74","Mp":"27","p":{"27":{"n":6},"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":7},"9":{"n":4},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":13,"s":{"s":"59","n":"12","a":"4.92","d":"1.02","Ss":"49","Sn":"10","Sa":"4.9","Sd":"0.89","Og":"2","Os":"141","On":"27","Oa":"5.22","Od":"1.09","Dp":"27","p":{"27":{"n":4},"1":{"n":6.5},"2":{"n":3.5},"4":{"n":5},"5":{"n":4},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5}}},"c":4},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":1,"s":{"n":0},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":14,"s":{"g":"1","s":"68","n":"13","a":"5.23","d":"0.89","Sg":"1","Ss":"68","Sn":"13","Sa":"5.23","Sd":"0.89","Og":"1","Os":"68","On":"13","Oa":"5.23","Od":"0.89","Dp":"13","p":{"1":{"n":6.5},"2":{"n":6,"s":1},"3":{"n":5.5},"4":{"n":6},"5":{"n":4},"6":{"n":6.5,"g":1},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5}}},"c":4},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":1,"s":{"g":"1","s":"6","n":"1","a":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"2":{"n":6,"g":1,"s":1}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":5,"s":{"s":"12","n":"3","a":"4","d":"0.41","Os":"12","On":"3","Oa":"4","Od":"0.41","Dp":"3","p":{"7":{"n":4.5},"9":{"n":4},"10":{"n":3.5,"s":1}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":1,"s":{"n":0},"c":4},{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":12,"s":{"g":"3","s":"52","n":"11","a":"4.73","d":"0.94","Sg":"1","Ss":"26","Sn":"6","Sa":"4.33","Sd":"0.8","Og":"5","Os":"124","On":"28","Oa":"4.43","Od":"0.85","Mp":"1","Ap":"23","p":{"36":{"n":4},"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1},"4":{"n":6.5,"g":1},"5":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":4}}},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":12,"s":{"g":"1","s":"67","n":"13","a":"5.19","d":"0.82","Sg":"1","Ss":"67","Sn":"13","Sa":"5.19","Sd":"0.82","Og":"2","Os":"132","On":"27","Oa":"4.91","Od":"1.02","Mp":"27","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":5}}},"c":5},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":12,"s":{"s":"54","n":"11","a":"4.95","d":"0.75","Os":"117","On":"24","Oa":"4.9","Od":"0.65","Dp":"21","p":{"1":{"n":4,"e":2733,"c":3,"s":1},"2":{"n":5.5},"3":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":6},"9":{"n":4.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":4.5}}},"c":5},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":9,"s":{"g":"1","s":"59","n":"13","a":"4.58","d":"1.05","Sg":"1","Ss":"59","Sn":"13","Sa":"4.58","Sd":"1.05","Og":"2","Os":"131","On":"30","Oa":"4.38","Od":"0.86","Mp":"6","Ap":"14","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":3.5},"7":{"n":4,"s":1},"8":{"n":7,"g":1},"9":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":5,"s":1}}},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":11,"s":{"g":"2","s":"44","n":"9","a":"4.94","d":"0.6","Og":"5","Os":"108","On":"23","Oa":"4.72","Od":"0.96","Mp":"12","Ap":"6","p":{"2":{"n":6,"g":1},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":6,"g":1,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":5}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":3,"s":{"s":"19","n":"4","a":"4.88","d":"0.54","Os":"93","On":"20","Oa":"4.68","Od":"0.6","Dp":"19","p":{"36":{"n":4,"s":1},"1":{"n":4},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5}}},"c":5},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":12,"s":{"s":"58","n":"11","a":"5.32","d":"0.91","Ss":"33","Sn":"6","Sa":"5.5","Sd":"0.76","Os":"163","On":"33","Oa":"4.95","Od":"0.87","Dp":"33","p":{"36":{"n":5},"1":{"n":3.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5.5}}},"c":5},{"i":344,"n":"Guilbert","f":"Frederic","p":"D","r":11,"s":{"s":"61","n":"12","a":"5.08","d":"0.95","Ss":"61","Sn":"12","Sa":"5.08","Sd":"0.95","Og":"1","Os":"176","On":"36","Oa":"4.89","Od":"1.05","Mp":"8","Dp":"27","Ap":"1","p":{"36":{"n":4},"2":{"n":5},"3":{"n":5.5},"4":{"n":7},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":20,"s":{"s":"73","n":"13","a":"5.62","d":"0.96","Ss":"73","Sn":"13","Sa":"5.62","Sd":"0.96","Os":"96","On":"17","Oa":"5.65","Od":"0.94","Gp":"16","p":{"1":{"n":3},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":7},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6},"13":{"n":7}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":6,"s":{"s":"29","n":"6","a":"4.92","d":"0.45","Os":"29","On":"6","Oa":"4.92","Od":"0.45","Dp":"6","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"11":{"n":5}}},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":6,"s":{"s":"25","n":"5","a":"5","d":"0.32","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"124","On":"25","Oa":"4.96","Od":"0.55","Mp":"16","Dp":"1","p":{"36":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Os":"52","On":"11","Oa":"4.73","Od":"1.14","Mp":"2","Dp":"6","p":{"6":{"n":5,"s":1}}},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":2,"s":{"n":0},"c":5},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":9,"s":{"g":"1","s":"32","n":"7","a":"4.64","d":"0.64","Ss":"17","Sn":"4","Sa":"4.25","Sd":"0.25","Og":"3","Os":"127","On":"27","Oa":"4.72","Od":"0.92","Mp":"20","Ap":"1","p":{"5":{"n":4.5},"7":{"n":6,"g":1},"8":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":4.5}}},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"s":"33","n":"7","a":"4.79","d":"0.52","Os":"97","On":"21","Oa":"4.64","Od":"0.91","Mp":"18","p":{"36":{"n":4,"s":1},"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5,"s":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":5.5}}},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"37","On":"8","Oa":"4.63","Od":"0.7","Mp":"3","Ap":"1"},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":10,"s":{"s":"38","n":"8","a":"4.81","d":"0.75","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"76","On":"16","Oa":"4.78","Od":"0.87","Mp":"1","Dp":"15","p":{"1":{"n":3.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":5},"6":{"n":4},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5.5}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":7,"s":{"n":0,"Os":"90","On":"17","Oa":"5.29","Od":"0.89","Gp":"17"},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":5,"s":{"n":0,"Os":"30","On":"7","Oa":"4.29","Od":"0.7","Mp":"3","Ap":"1"},"c":5},{"i":1621,"n":"Beauvue","f":"Claudio","p":"A","r":9,"s":{"g":"2","s":"47","n":"10","a":"4.75","d":"1.05","Sg":"2","Ss":"47","Sn":"10","Sa":"4.75","Sd":"1.05","Og":"2","Os":"117","On":"28","Oa":"4.2","Od":"0.88","Mp":"6","Ap":"15","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":7,"g":1},"6":{"n":4},"7":{"n":4},"8":{"n":5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4},"12":{"n":4},"13":{"n":5.5}}},"c":5},{"i":1706,"n":"Fajr","f":"Faycal","p":"M","r":17,"s":{"g":"1","s":"66","n":"12","a":"5.5","d":"0.79","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Og":"1","Os":"167","On":"32","Oa":"5.22","Od":"0.83","Mp":"29","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6.5},"6":{"n":6,"g":1},"7":{"n":6},"8":{"n":7},"9":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":5}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":8,"s":{"s":"33","n":"7","a":"4.71","d":"0.8","Og":"1","Os":"86","On":"18","Oa":"4.78","Od":"0.82","Mp":"9","Ap":"2","p":{"36":{"n":5},"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":6},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":3.5}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":9,"s":{"s":"39","n":"8","a":"4.94","d":"0.85","Ss":"11","Sn":"2","Sa":"5.5","Sd":"1","Os":"53","On":"11","Oa":"4.86","Od":"0.77","Mp":"1","Dp":"8","p":{"1":{"n":4},"2":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":4},"10":{"n":5,"s":1},"12":{"n":6.5,"s":1},"13":{"n":4.5,"s":1}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":8,"s":{"s":"4","n":"1","a":"4","Os":"45","On":"10","Oa":"4.5","Od":"0.5","Mp":"2","Ap":"2","p":{"1":{"n":4,"s":1}}},"c":5},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":1,"s":{"n":0},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":9,"s":{"s":"48","n":"11","a":"4.36","d":"0.57","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.47","Os":"48","On":"11","Oa":"4.36","Od":"0.57","Mp":"1","Ap":"10","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":5},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":3,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"5","Sn":"1","Sa":"5","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"10":{"n":4.5},"13":{"n":5}}},"c":5},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":10,"s":{"s":"39","n":"8","a":"4.88","d":"0.33","Og":"1","Os":"85","On":"17","Oa":"5","Od":"0.59","Mp":"12","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1}}},"c":7},{"i":104,"n":"Tavares","f":"J\u00falio","p":"A","r":14,"s":{"g":"3","s":"50","n":"11","a":"4.59","d":"1.35","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Og":"11","Os":"146","On":"30","Oa":"4.88","Od":"1.35","Ap":"29","p":{"16":{"n":5},"1":{"n":6,"g":1},"2":{"n":8,"g":2},"3":{"n":5},"4":{"n":3.5},"5":{"n":3.5},"6":{"n":4},"7":{"n":4},"8":{"n":3},"11":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":4}}},"c":7},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":15,"s":{"g":"2","s":"53","n":"10","a":"5.35","d":"0.74","Og":"2","Os":"130","On":"26","Oa":"5.02","Od":"0.96","Mp":"23","Dp":"1","p":{"16":{"n":5,"s":1},"1":{"n":4.5,"s":1},"2":{"n":6},"3":{"n":6.5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":4},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":6,"g":1}}},"c":7},{"i":165,"n":"Said","f":"Wesley","p":"A","r":10,"s":{"g":"1","s":"44","n":"10","a":"4.4","d":"0.58","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Og":"9","Os":"144","On":"29","Oa":"4.97","Od":"1.34","Mp":"3","Ap":"21","p":{"16":{"n":7,"g":1},"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5.5,"g":1},"6":{"n":4.5},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":3.5}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":7,"s":{"s":"22","n":"5","a":"4.5","d":"0.71","Os":"88","On":"19","Oa":"4.66","Od":"0.96","Mp":"13","p":{"16":{"n":4,"s":1},"35":{"n":5},"3":{"n":5,"s":1},"6":{"n":5.5},"8":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":3.5}}},"c":7},{"i":187,"n":"Sammaritano","f":"Frederic","p":"M","r":5,"s":{"s":"21","n":"4","a":"5.25","d":"1.15","Os":"95","On":"19","Oa":"5","Od":"0.93","Mp":"12","Ap":"4","p":{"2":{"n":6.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5,"s":1}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":6,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"4","Sn":"1","Sa":"4","Os":"75","On":"16","Oa":"4.69","Od":"1.1","Mp":"5","Dp":"9","p":{"16":{"n":5},"35":{"n":4},"6":{"n":5},"13":{"n":4}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":9,"s":{"s":"44","n":"10","a":"4.45","d":"0.65","Os":"143","On":"30","Oa":"4.78","Od":"0.91","Mp":"28","Ap":"1","p":{"16":{"n":6},"35":{"n":4},"1":{"n":4.5},"3":{"n":6},"4":{"n":4},"5":{"n":4.5},"6":{"n":5},"7":{"n":3.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":4.5}}},"c":7},{"i":312,"n":"Sliti","f":"Naim","p":"M","r":12,"s":{"s":"63","n":"13","a":"4.88","d":"0.9","Ss":"63","Sn":"13","Sa":"4.88","Sd":"0.9","Og":"5","Os":"177","On":"34","Oa":"5.22","Od":"0.94","Mp":"18","Ap":"11","p":{"35":{"n":6,"g":1},"1":{"n":7},"2":{"n":5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":4.5},"10":{"n":5.5,"s":1},"11":{"n":5},"12":{"n":3},"13":{"n":5.5}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":8,"s":{"s":"16","n":"4","a":"4.13","d":"0.82","Ss":"16","Sn":"4","Sa":"4.13","Sd":"0.82","Og":"1","Os":"83","On":"17","Oa":"4.91","Od":"1.13","Mp":"12","p":{"10":{"n":3.5},"11":{"n":5.5},"12":{"n":3.5},"13":{"n":4}}},"c":7},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":8,"s":{"s":"38","n":"8","a":"4.75","d":"0.43","Og":"1","Os":"108","On":"24","Oa":"4.5","Od":"0.76","Mp":"6","Ap":"8","p":{"16":{"n":6,"g":1},"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":4},"7":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":9,"s":{"s":"52","n":"12","a":"4.33","d":"1.03","Ss":"31","Sn":"8","Sa":"3.94","Sd":"0.77","Os":"96","On":"21","Oa":"4.57","Od":"1.05","Mp":"4","Dp":"15","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":3.5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":3},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":4.5}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":9,"s":{"g":"1","s":"53","n":"11","a":"4.82","d":"1.32","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"154","On":"33","Oa":"4.67","Od":"1.29","Mp":"4","Dp":"26","p":{"16":{"n":6},"35":{"n":4},"1":{"n":5},"2":{"n":7},"3":{"n":7.5,"g":1},"4":{"n":3},"5":{"n":4},"6":{"n":5.5},"7":{"n":4},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":4.5},"13":{"n":4.5,"s":1}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":4,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"0.8","Dp":"2"},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":4,"s":{"n":0},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":10,"s":{"s":"59","n":"13","a":"4.58","d":"1.43","Ss":"59","Sn":"13","Sa":"4.58","Sd":"1.43","Oao":"2","Os":"168","On":"37","Oa":"4.55","Od":"1.42","Mp":"7","Dp":"27","p":{"16":{"n":5,"s":1},"35":{"n":3,"a":1},"1":{"n":4.5},"2":{"n":7.5},"3":{"n":7},"4":{"n":3},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":2.5},"13":{"n":4}}},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":6,"s":{"n":0,"Og":"8","Os":"120","On":"23","Oa":"5.22","Od":"1.21","Mp":"9","Ap":"7","p":{"16":{"n":6},"35":{"n":3}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":10,"s":{"s":"40","n":"9","a":"4.44","d":"1.14","Og":"2","Os":"138","On":"31","Oa":"4.45","Od":"1.36","Dp":"30","p":{"16":{"n":7,"g":1},"35":{"n":4},"1":{"n":5},"2":{"n":7},"4":{"n":4},"5":{"n":3.5},"7":{"n":3},"8":{"n":4},"9":{"n":5},"11":{"n":5,"s":1},"12":{"n":3.5}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":10,"s":{"g":"1","s":"14","n":"3","a":"4.67","d":"1.25","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"1.25","Dp":"3","p":{"9":{"n":5,"s":1},"11":{"n":6,"g":1},"12":{"n":3}}},"c":7},{"i":2633,"n":"Ntumba","f":"Levi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":6,"s":{"g":"1","s":"25","n":"5","a":"5","d":"0.77","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"25","On":"5","Oa":"5","Od":"0.77","Dp":"5","p":{"1":{"n":6.5,"g":1},"6":{"n":4.5},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5}}},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":9,"s":{"s":"48","n":"10","a":"4.85","d":"1.1","Ss":"5","Sn":"1","Sa":"5","Os":"48","On":"10","Oa":"4.85","Od":"1.1","Mp":"10","p":{"1":{"n":5},"2":{"n":6},"3":{"n":7.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":4.5},"13":{"n":5}}},"c":7},{"i":2687,"n":"Jules Keita","f":"","p":"A","r":8,"s":{"g":"2","s":"54","n":"12","a":"4.5","d":"1.1","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Og":"2","Os":"54","On":"12","Oa":"4.5","Od":"1.1","Mp":"1","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":8,"g":2,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4},"6":{"n":4,"s":1},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1}}},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":5,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"0.75","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Dp":"2","p":{"3":{"n":6.5,"g":1},"13":{"n":5}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":12,"s":{"s":"63","n":"13","a":"4.85","d":"1.15","Ss":"63","Sn":"13","Sa":"4.85","Sd":"1.15","Os":"63","On":"13","Oa":"4.85","Od":"1.15","Gp":"13","p":{"1":{"n":6},"2":{"n":6},"3":{"n":6.5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":4},"8":{"n":2.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":5}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":9,"s":{"s":"29","n":"7","a":"4.14","d":"0.99","Ss":"17","Sn":"4","Sa":"4.25","Sd":"0.9","Os":"29","On":"7","Oa":"4.14","Od":"0.99","Dp":"7","p":{"5":{"n":3},"6":{"n":5.5},"7":{"n":3.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":4,"s":1}}},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":8,"s":{"s":"59","n":"13","a":"4.58","d":"0.47","Ss":"59","Sn":"13","Sa":"4.58","Sd":"0.47","Os":"59","On":"13","Oa":"4.58","Od":"0.47","Mp":"3","Ap":"10","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":7,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Oao":"1","Os":"113","On":"22","Oa":"5.16","Od":"0.92","Dp":"22","p":{"18":{"n":6},"37":{"n":7},"12":{"n":5.5},"13":{"n":5}}},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":30,"s":{"g":"11","s":"68","n":"12","a":"5.71","d":"1.57","Sg":"7","Ss":"32","Sn":"5","Sa":"6.4","Sd":"1.85","Og":"20","Os":"173","On":"36","Oa":"4.82","Od":"1.56","Ap":"36","p":{"18":{"n":6,"g":1},"37":{"n":4},"1":{"n":6.5,"g":1,"s":1},"2":{"n":3.5},"3":{"n":6,"g":1,"s":1},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":4},"7":{"n":6,"g":1},"9":{"n":3},"10":{"n":8.5,"g":3},"11":{"n":6.5,"g":1},"12":{"n":7.5,"g":2},"13":{"n":6.5,"g":1}}},"c":8},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":19,"s":{"g":"3","s":"67","n":"12","a":"5.58","d":"1.22","Sg":"3","Ss":"67","Sn":"12","Sa":"5.58","Sd":"1.22","Og":"3","Os":"77","On":"14","Oa":"5.5","Od":"1.15","Mp":"6","Ap":"7","p":{"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":3.5},"10":{"n":8,"g":1},"11":{"n":7,"g":1},"12":{"n":6.5},"13":{"n":5}}},"c":8},{"i":220,"n":"Diego Carlos","f":"","p":"D","r":14,"s":{"s":"54","n":"11","a":"4.95","d":"1.05","Ss":"27","Sn":"5","Sa":"5.5","Sd":"0.89","Os":"146","On":"29","Oa":"5.05","Od":"0.91","Dp":"28","p":{"18":{"n":6},"1":{"n":3.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":4},"9":{"n":4},"10":{"n":6.5},"11":{"n":6},"12":{"n":6},"13":{"n":5}}},"c":8},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":15,"s":{"g":"1","s":"66","n":"13","a":"5.12","d":"0.92","Sg":"1","Ss":"66","Sn":"13","Sa":"5.12","Sd":"0.92","Og":"2","Os":"195","On":"38","Oa":"5.14","Od":"0.9","Mp":"34","Ap":"1","p":{"18":{"n":5,"s":1},"37":{"n":6},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":6.5},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5}}},"c":8},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":6,"s":{"n":0},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":6,"s":{"n":0,"Os":"35","On":"7","Oa":"5","Od":"0.53","Mp":"1","p":{"37":{"n":5,"s":1}}},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":16,"s":{"s":"63","n":"13","a":"4.88","d":"1.02","Ss":"63","Sn":"13","Sa":"4.88","Sd":"1.02","Og":"2","Os":"180","On":"35","Oa":"5.16","Od":"1.01","Mp":"3","Dp":"29","p":{"18":{"n":5},"37":{"n":7,"g":1},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":3},"8":{"n":5},"9":{"n":4.5},"10":{"n":7},"11":{"n":6.5},"12":{"n":5},"13":{"n":5}}},"c":8},{"i":404,"n":"Djidji","f":"Koffi","p":"D","r":12,"s":{"s":"3","n":"1","a":"3","Os":"90","On":"18","Oa":"5","Od":"0.88","Dp":"17","p":{"37":{"n":6},"1":{"n":3}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":8},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":13,"s":{"s":"58","n":"12","a":"4.83","d":"1.2","Ss":"23","Sn":"4","Sa":"5.75","Sd":"1.25","Os":"58","On":"12","Oa":"4.83","Od":"1.2","Dp":"12","p":{"1":{"n":3},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":3.5},"8":{"n":5,"s":1},"10":{"n":7.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4}}},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0,"Os":"8","On":"2","Oa":"4","p":{"37":{"n":4,"s":1}}},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":16,"s":{"g":"1","s":"51","n":"9","a":"5.67","d":"1.27","Sg":"1","Ss":"38","Sn":"6","Sa":"6.42","Sd":"0.79","Og":"1","Os":"171","On":"32","Oa":"5.34","Od":"0.86","Mp":"27","p":{"18":{"n":5},"37":{"n":6},"1":{"n":4.5},"2":{"n":3.5},"4":{"n":4.5,"s":1},"8":{"n":6},"9":{"n":5.5,"s":1},"10":{"n":7.5},"11":{"n":7},"12":{"n":7,"g":1},"13":{"n":5.5}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":1,"s":{"n":0},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":8},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":1,"s":{"n":0},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":9,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Ss":"5","Sn":"1","Sa":"5","Os":"19","On":"4","Oa":"4.88","Od":"0.22","Dp":"4","p":{"8":{"n":5},"9":{"n":4.5},"11":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":8},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":23,"s":{"s":"75","n":"13","a":"5.81","d":"0.84","Ss":"75","Sn":"13","Sa":"5.81","Sd":"0.84","Os":"206","On":"38","Oa":"5.43","Od":"0.74","Gp":"38","p":{"18":{"n":5},"37":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":5.5},"8":{"n":8},"9":{"n":5},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":7}}},"c":8},{"i":1171,"n":"Coulibaly","f":"Kalifa","p":"A","r":9,"s":{"g":"1","s":"47","n":"11","a":"4.32","d":"0.61","Og":"2","Os":"66","On":"15","Oa":"4.43","Od":"0.87","Ap":"13","p":{"37":{"n":7,"g":1},"1":{"n":3.5},"2":{"n":4,"s":1},"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":12,"s":{"g":"1","s":"24","n":"4","a":"6.13","d":"1.52","Sg":"1","Ss":"24","Sn":"4","Sa":"6.13","Sd":"1.52","Og":"1","Os":"118","On":"22","Oa":"5.39","Od":"0.93","Mp":"16","p":{"18":{"n":5},"10":{"n":7},"11":{"n":5.5},"12":{"n":8,"g":1},"13":{"n":4}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0,"Os":"59","On":"12","Oa":"4.92","Od":"0.49","Mp":"4"},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Mp":"1"},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":9,"s":{"s":"40","n":"9","a":"4.44","d":"0.5","Os":"65","On":"14","Oa":"4.64","Od":"0.61","Mp":"13","p":{"37":{"n":6},"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5,"s":1}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":6,"s":{"n":0,"Os":"109","On":"23","Oa":"4.74","Od":"1.07","Dp":"22"},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":9,"s":{"s":"47","n":"9","a":"5.22","d":"0.53","Og":"1","Os":"114","On":"22","Oa":"5.18","Od":"0.61","Mp":"21","p":{"37":{"n":6},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4.5},"12":{"n":5,"s":1}}},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":1,"s":{"n":0},"c":8},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"53","On":"12","Oa":"4.42","Od":"0.64","Mp":"2","Ap":"2","p":{"18":{"n":5}}},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":5,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":3.5},"3":{"n":4.5}}},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":1,"s":{"n":0},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":8,"s":{"g":"1","s":"45","n":"9","a":"5","d":"1","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"45","On":"9","Oa":"5","Od":"1","Mp":"6","Ap":"3","p":{"1":{"n":4},"2":{"n":3.5},"3":{"n":5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6},"13":{"n":5,"s":1}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2795,"n":"Miazga","f":"Matt","p":"D","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"1","Os":"36","On":"8","Oa":"4.5","Od":"1","Dp":"8","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":2.5}}},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":12,"s":{"s":"52","n":"10","a":"5.2","d":"0.56","Ss":"52","Sn":"10","Sa":"5.2","Sd":"0.56","Os":"52","On":"10","Oa":"5.2","Od":"0.56","Mp":"8","Ap":"2","p":{"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6.5},"11":{"n":5},"12":{"n":6},"13":{"n":5,"s":1}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":12,"s":{"s":"22","n":"4","a":"5.5","d":"0.35","Os":"22","On":"4","Oa":"5.5","Od":"0.35","Dp":"4","p":{"7":{"n":5},"8":{"n":5.5},"10":{"n":6},"11":{"n":5.5}}},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":25,"s":{"g":"4","s":"73","n":"13","a":"5.62","d":"1.27","Sg":"4","Ss":"73","Sn":"13","Sa":"5.62","Sd":"1.27","Og":"9","Os":"214","On":"36","Oa":"5.94","Od":"1.29","Mp":"28","Ap":"5","p":{"1":{"n":8,"g":2},"2":{"n":4},"3":{"n":4.5},"4":{"n":7},"5":{"n":8,"g":1},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":5.5}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":13,"s":{"g":"3","s":"62","n":"13","a":"4.81","d":"1.19","Sg":"3","Ss":"62","Sn":"13","Sa":"4.81","Sd":"1.19","Og":"12","Os":"181","On":"36","Oa":"5.04","Od":"1.4","Mp":"1","Ap":"32","p":{"38":{"n":5,"s":1},"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":6.5,"g":1,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":6.5,"g":1},"8":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5,"s":1}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":38,"s":{"g":"7","s":"64","n":"12","a":"5.38","d":"1.5","Ss":"11","Sn":"3","Sa":"3.83","Sd":"0.94","Og":"24","Os":"202","On":"34","Oa":"5.96","Od":"1.47","Mp":"30","Ap":"4","p":{"38":{"n":6},"1":{"n":6,"g":1,"s":1},"2":{"n":5.5,"g":1},"3":{"n":4.5},"4":{"n":7,"g":1,"s":1},"5":{"n":7.5,"g":2},"6":{"n":5.5,"g":1},"7":{"n":5},"8":{"n":4},"9":{"n":8,"g":1},"11":{"n":4.5},"12":{"n":2.5},"13":{"n":4.5}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":21,"s":{"g":"2","s":"58","n":"11","a":"5.32","d":"1.4","Sg":"1","Ss":"19","Sn":"4","Sa":"4.75","Sd":"1.09","Og":"6","Os":"178","On":"33","Oa":"5.41","Od":"1.22","Mp":"28","p":{"38":{"n":7,"g":1},"1":{"n":8},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":3},"7":{"n":6,"g":1},"10":{"n":6.5,"g":1},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":4.5,"s":1}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":8,"s":{"g":"1","s":"19","n":"4","a":"4.88","d":"0.65","Og":"3","Os":"81","On":"18","Oa":"4.53","Od":"1.05","Mp":"2","Ap":"5","p":{"1":{"n":4.5},"3":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1}}},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":11,"s":{"s":"41","n":"8","a":"5.19","d":"0.56","Ss":"5","Sn":"1","Sa":"5.5","Os":"134","On":"25","Oa":"5.38","Od":"0.72","Mp":"19","p":{"38":{"n":7},"1":{"n":6},"3":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6},"13":{"n":5.5}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":11,"s":{"s":"28","n":"6","a":"4.75","d":"0.99","Os":"73","On":"15","Oa":"4.9","Od":"0.9","Gp":"12","p":{"1":{"n":6},"2":{"n":4.5,"s":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":3.5}}},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":14,"s":{"s":"46","n":"9","a":"5.17","d":"1.13","Ss":"6","Sn":"1","Sa":"6","Os":"153","On":"30","Oa":"5.12","Od":"0.95","Dp":"27","p":{"38":{"n":5},"1":{"n":6.5},"2":{"n":3.5},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":6},"13":{"n":6}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":15,"s":{"s":"56","n":"11","a":"5.14","d":"1.15","Ss":"36","Sn":"7","Sa":"5.21","Sd":"1.36","Os":"172","On":"32","Oa":"5.39","Od":"0.92","Mp":"3","Dp":"25","p":{"38":{"n":6},"1":{"n":5.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5},"4":{"n":5.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":7.5},"11":{"n":4.5},"12":{"n":3},"13":{"n":6.5}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":6,"s":{"n":0,"Og":"1","Oao":"1","Os":"98","On":"19","Oa":"5.16","Od":"0.87","Dp":"17","p":{"38":{"n":5}}},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":8,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Os":"30","On":"6","Oa":"5.08","Od":"0.73","Mp":"3","Dp":"1","p":{"1":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47"},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":9},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":17,"s":{"s":"42","n":"8","a":"5.31","d":"0.86","Ss":"37","Sn":"7","Sa":"5.36","Sd":"0.91","Os":"138","On":"27","Oa":"5.13","Od":"0.85","Gp":"27","p":{"38":{"n":5},"2":{"n":5},"7":{"n":5},"8":{"n":4},"9":{"n":6.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":15,"s":{"s":"57","n":"12","a":"4.79","d":"1.01","Ss":"14","Sn":"3","Sa":"4.83","Sd":"1.03","Og":"2","Os":"200","On":"36","Oa":"5.57","Od":"1.18","Mp":"25","Dp":"11","p":{"38":{"n":6},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":3},"7":{"n":4.5},"8":{"n":3.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":3.5},"13":{"n":6}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":9,"s":{"g":"1","s":"45","n":"9","a":"5.06","d":"1.28","Sg":"1","Ss":"27","Sn":"5","Sa":"5.4","Sd":"1.46","Og":"2","Oao":"1","Os":"154","On":"30","Oa":"5.15","Od":"1.03","Dp":"30","p":{"2":{"n":4},"3":{"n":4},"4":{"n":4.5},"5":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":4},"13":{"n":8,"g":1}}},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":10,"s":{"s":"46","n":"10","a":"4.6","d":"1.24","Os":"145","On":"28","Oa":"5.18","Od":"1.21","Dp":"25","p":{"38":{"n":5,"s":1},"1":{"n":7},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":3},"7":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":3}}},"c":9},{"i":1197,"n":"Ocampos","f":"Lucas","p":"M","r":14,"s":{"g":"2","s":"59","n":"12","a":"4.96","d":"1.13","Sg":"1","Ss":"18","Sn":"3","Sa":"6","Sd":"1.08","Og":"7","Os":"177","On":"34","Oa":"5.22","Od":"1.13","Mp":"26","Ap":"1","p":{"38":{"n":7},"1":{"n":6},"2":{"n":4},"3":{"n":6,"g":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":11,"s":{"s":"54","n":"11","a":"4.91","d":"0.85","Ss":"39","Sn":"8","Sa":"4.88","Sd":"0.86","Os":"81","On":"16","Oa":"5.06","Od":"0.93","Mp":"1","Dp":"15","p":{"38":{"n":7},"1":{"n":6},"3":{"n":4},"4":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":3},"13":{"n":5,"s":1}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":14,"s":{"g":"3","s":"48","n":"10","a":"4.85","d":"0.84","Ss":"3","Sn":"1","Sa":"3.5","Og":"10","Os":"120","On":"24","Oa":"5.02","Od":"1.1","Ap":"14","p":{"38":{"n":6,"g":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":3.5}}},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0,"Os":"28","On":"5","Oa":"5.6","Od":"0.8","Dp":"4"},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":1,"s":{"n":0},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":1,"s":{"n":0},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":8,"s":{"s":"17","n":"4","a":"4.25","d":"1.03","Os":"17","On":"4","Oa":"4.25","Od":"1.03","Dp":"4","p":{"2":{"n":3.5},"6":{"n":3},"10":{"n":5.5,"s":1},"12":{"n":5,"s":1}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"A","r":1,"s":{"n":0},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":17,"s":{"s":"51","n":"10","a":"5.15","d":"1","Ss":"51","Sn":"10","Sa":"5.15","Sd":"1","Os":"51","On":"10","Oa":"5.15","Od":"1","Mp":"10","p":{"4":{"n":5},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":3.5},"13":{"n":6}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":8,"s":{"s":"21","n":"5","a":"4.3","d":"0.4","Os":"21","On":"5","Oa":"4.3","Od":"0.4","Mp":"1","Ap":"4","p":{"5":{"n":4.5,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1}}},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0,"Os":"48","On":"12","Oa":"4","Ap":"2"},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":11,"s":{"s":"64","n":"13","a":"4.96","d":"1.37","Ss":"64","Sn":"13","Sa":"4.96","Sd":"1.37","Og":"1","Os":"155","On":"31","Oa":"5.02","Od":"1.1","Dp":"31","p":{"1":{"n":3.5},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":3},"8":{"n":6},"9":{"n":5.5},"10":{"n":2},"11":{"n":3.5},"12":{"n":6},"13":{"n":6}}},"c":10},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":9,"s":{"s":"30","n":"6","a":"5","d":"0.5","Ss":"24","Sn":"5","Sa":"4.9","Sd":"0.49","Os":"109","On":"21","Oa":"5.19","Od":"0.65","Mp":"20","p":{"25":{"n":5},"4":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":5}}},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":16,"s":{"ao":"1","s":"69","n":"13","a":"5.31","d":"1.22","Sao":"1","Ss":"69","Sn":"13","Sa":"5.31","Sd":"1.22","Oao":"1","Os":"208","On":"38","Oa":"5.47","Od":"1.26","Gp":"38","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":5},"6":{"n":6.5},"7":{"n":3.5},"8":{"n":8},"9":{"n":4.5},"10":{"n":4},"11":{"n":4,"a":1},"12":{"n":5},"13":{"n":5}}},"c":10},{"i":144,"n":"Sylla","f":"Issiaga","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Og":"1","Os":"100","On":"21","Oa":"4.79","Od":"0.98","Mp":"3","Dp":"13","Ap":"1","p":{"25":{"n":4},"4":{"n":6},"9":{"n":5,"s":1},"11":{"n":3.5}}},"c":10},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":4,"s":{"n":0,"Oao":"1","Os":"75","On":"16","Oa":"4.69","Od":"0.85","Dp":"13","p":{"25":{"n":4}}},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":9,"s":{"s":"55","n":"12","a":"4.63","d":"0.98","Ss":"39","Sn":"9","Sa":"4.39","Sd":"0.87","Os":"102","On":"22","Oa":"4.66","Od":"0.99","Dp":"21","p":{"1":{"n":4},"2":{"n":6},"3":{"n":6},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":5},"9":{"n":4.5},"10":{"n":2.5},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5}}},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"16","On":"4","Oa":"4.13","Od":"0.22","Mp":"2","p":{"10":{"n":4.5,"s":1}}},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":10,"s":{"g":"1","s":"57","n":"12","a":"4.75","d":"0.72","Sg":"1","Ss":"57","Sn":"12","Sa":"4.75","Sd":"0.72","Og":"1","Os":"116","On":"24","Oa":"4.83","Od":"0.69","Mp":"15","Ap":"2","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":6.5,"g":1,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":5}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":9,"s":{"s":"26","n":"6","a":"4.42","d":"0.34","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"107","On":"24","Oa":"4.48","Od":"0.9","Ap":"12","p":{"25":{"n":4,"s":1},"6":{"n":4,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4,"s":1},"13":{"n":4.5,"s":1}}},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0,"Os":"69","On":"14","Oa":"4.93","Od":"0.59","Mp":"9","Ap":"3"},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":6,"s":{"s":"33","n":"8","a":"4.13","d":"0.54","Og":"1","Os":"130","On":"29","Oa":"4.48","Od":"0.89","Mp":"6","Ap":"12","p":{"25":{"n":4},"1":{"n":4,"s":1},"2":{"n":5,"s":1},"3":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":3},"11":{"n":4,"s":1},"12":{"n":4,"s":1}}},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":4,"s":{"n":0},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":3,"s":{"s":"11","n":"3","a":"3.67","d":"0.85","Ss":"4","Sn":"1","Sa":"4","Os":"11","On":"3","Oa":"3.67","Od":"0.85","Dp":"3","p":{"9":{"n":4.5},"10":{"n":2.5},"13":{"n":4}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":10,"s":{"g":"2","s":"43","n":"10","a":"4.35","d":"1.34","Ss":"8","Sn":"2","Sa":"4","Og":"2","Os":"43","On":"10","Oa":"4.35","Od":"1.34","Ap":"10","p":{"1":{"n":2.5},"2":{"n":6.5,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6.5,"g":1,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":2.5},"12":{"n":4},"13":{"n":4}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":9,"s":{"s":"52","n":"11","a":"4.73","d":"1.12","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.94","Og":"1","Os":"161","On":"34","Oa":"4.74","Od":"0.94","Mp":"1","Dp":"32","p":{"25":{"n":5},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":3},"8":{"n":6},"11":{"n":3},"12":{"n":5},"13":{"n":5}}},"c":10},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"20","On":"4","Oa":"5","Od":"0.71","Dp":"3","p":{"1":{"n":4}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Sangar\u00e9","f":"Ibrahim","p":"M","r":8,"s":{"g":"1","s":"53","n":"9","a":"5.89","d":"0.7","Og":"2","Os":"145","On":"27","Oa":"5.37","Od":"0.9","Mp":"25","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":6}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":7,"s":{"s":"17","n":"4","a":"4.25","d":"0.43","Og":"6","Os":"112","On":"24","Oa":"4.67","Od":"1.43","Ap":"20","p":{"25":{"n":4},"1":{"n":4,"s":1},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4}}},"c":10},{"i":1025,"n":"Gradel","f":"Max","p":"A","r":19,"s":{"g":"4","s":"71","n":"13","a":"5.46","d":"1.42","Sg":"4","Ss":"71","Sn":"13","Sa":"5.46","Sd":"1.42","Og":"11","Os":"189","On":"36","Oa":"5.25","Od":"1.47","Mp":"22","Ap":"13","p":{"25":{"n":5},"1":{"n":4},"2":{"n":6},"3":{"n":7,"g":1},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":6,"g":1},"8":{"n":6},"9":{"n":3.5},"10":{"n":3},"11":{"n":4},"12":{"n":7.5,"g":1},"13":{"n":5}}},"c":10},{"i":1208,"n":"Fortes","f":"Steven","p":"D","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"24","On":"5","Oa":"4.9","Od":"0.49","Dp":"4","p":{"2":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":3,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"0.49","Mp":"1"},"c":10},{"i":1528,"n":"Dossevi","f":"Mathieu","p":"M","r":14,"s":{"g":"2","s":"65","n":"13","a":"5","d":"1.07","Sg":"2","Ss":"65","Sn":"13","Sa":"5","Sd":"1.07","Og":"3","Os":"175","On":"34","Oa":"5.15","Od":"1.34","Mp":"32","Ap":"2","p":{"1":{"n":3.5},"2":{"n":7,"g":1},"3":{"n":5},"4":{"n":6},"5":{"n":4},"6":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":5.5,"s":1}}},"c":10},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":9,"s":{"s":"43","n":"9","a":"4.83","d":"0.75","Os":"43","On":"9","Oa":"4.83","Od":"0.75","Mp":"9","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1}}},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":12,"s":{"s":"61","n":"13","a":"4.73","d":"1.1","Ss":"61","Sn":"13","Sa":"4.73","Sd":"1.1","Os":"61","On":"13","Oa":"4.73","Od":"1.1","Mp":"13","p":{"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":7},"5":{"n":4.5},"6":{"n":5.5,"s":1},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4}}},"c":10},{"i":2767,"n":"Todibo","f":"Jean-Clair","p":"M","r":9,"s":{"g":"1","s":"49","n":"10","a":"4.9","d":"1.37","Og":"1","Os":"49","On":"10","Oa":"4.9","Od":"1.37","Dp":"10","p":{"2":{"n":5},"3":{"n":7},"4":{"n":3.5},"6":{"n":6},"7":{"n":3.5},"8":{"n":6,"g":1},"9":{"n":5.5},"10":{"n":2.5},"11":{"n":4},"12":{"n":6}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":1,"s":{"n":0},"c":10},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":6,"s":{"s":"7","n":"2","a":"3.75","d":"0.25","Os":"7","On":"2","Oa":"3.75","Od":"0.25","Mp":"2","p":{"10":{"n":3.5},"11":{"n":4}}},"c":10},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":19,"s":{"s":"70","n":"12","a":"5.83","d":"0.69","Ss":"30","Sn":"5","Sa":"6.1","Sd":"0.73","Os":"136","On":"26","Oa":"5.23","Od":"1.01","Dp":"26","p":{"19":{"n":5},"28":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"9":{"n":6.5},"10":{"n":7},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":13,"s":{"s":"13","n":"2","a":"6.5","d":"0.5","Og":"1","Os":"123","On":"23","Oa":"5.35","Od":"1","Mp":"20","Ap":"2","p":{"19":{"n":4},"28":{"n":6},"1":{"n":7},"2":{"n":6}}},"c":12},{"i":193,"n":"El Ghazi","f":"Anwar","p":"A","r":9,"s":{"n":0,"Og":"3","Os":"65","On":"14","Oa":"4.64","Od":"1.04","Mp":"4","Ap":"2","p":{"19":{"n":6,"g":1}}},"c":12},{"i":211,"n":"Pepe","f":"Nicolas","p":"A","r":36,"s":{"g":"8","s":"80","n":"13","a":"6.19","d":"1.43","Sg":"8","Ss":"80","Sn":"13","Sa":"6.19","Sd":"1.43","Og":"18","Os":"203","On":"38","Oa":"5.36","Od":"1.63","Mp":"25","Ap":"8","p":{"19":{"n":4,"s":1},"28":{"n":5},"1":{"n":8,"g":1},"2":{"n":4.5},"3":{"n":8},"4":{"n":5.5},"5":{"n":8.5,"g":3},"6":{"n":4.5},"7":{"n":5},"8":{"n":7,"g":1},"9":{"n":7,"g":1},"10":{"n":5.5,"g":1},"11":{"n":7},"12":{"n":6,"g":1},"13":{"n":4}}},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":25,"s":{"s":"78","n":"13","a":"6.04","d":"0.69","Ss":"78","Sn":"13","Sa":"6.04","Sd":"0.69","Os":"186","On":"35","Oa":"5.33","Od":"1.25","Gp":"35","p":{"19":{"n":4},"28":{"n":5},"1":{"n":5},"2":{"n":7},"3":{"n":7},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":6},"7":{"n":5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":7},"11":{"n":6},"12":{"n":5.5},"13":{"n":6}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":12,"s":{"g":"1","s":"64","n":"12","a":"5.38","d":"0.92","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.24","Og":"2","Os":"108","On":"21","Oa":"5.17","Od":"1.2","Mp":"20","p":{"1":{"n":6},"2":{"n":6},"3":{"n":7.5,"g":1},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":5,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.49"},"c":12},{"i":455,"n":"Jonathan Ikone","f":"","p":"M","r":14,"s":{"g":"1","s":"65","n":"13","a":"5.04","d":"0.54","Sg":"1","Ss":"65","Sn":"13","Sa":"5.04","Sd":"0.54","Og":"2","Os":"134","On":"28","Oa":"4.8","Od":"0.77","Mp":"15","Ap":"8","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5},"5":{"n":6},"6":{"n":6,"g":1},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4.5}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":27,"s":{"g":"7","s":"72","n":"13","a":"5.54","d":"1.55","Sg":"7","Ss":"72","Sn":"13","Sa":"5.54","Sd":"1.55","Og":"9","Os":"186","On":"36","Oa":"5.17","Od":"1.38","Mp":"23","Ap":"7","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":8,"g":2},"4":{"n":4.5},"5":{"n":5},"6":{"n":3.5},"7":{"n":3.5},"8":{"n":7,"g":2},"9":{"n":8.5,"g":2},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4.5}}},"c":12},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":7,"s":{"n":0,"Os":"50","On":"11","Oa":"4.55","Od":"0.99","Mp":"1","Dp":"8","p":{"19":{"n":5}}},"c":12},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":2,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"4":{"n":5,"s":1}}},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":15,"s":{"g":"1","s":"66","n":"12","a":"5.54","d":"0.88","Sg":"1","Ss":"66","Sn":"12","Sa":"5.54","Sd":"0.88","Og":"1","Os":"66","On":"12","Oa":"5.54","Od":"0.88","Dp":"12","p":{"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":7.5,"g":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":6}}},"c":12},{"i":954,"n":"Remy","f":"Lo\u00efc","p":"A","r":8,"s":{"s":"35","n":"8","a":"4.38","d":"0.78","Og":"4","Os":"108","On":"24","Oa":"4.5","Od":"0.98","Mp":"5","Ap":"14","p":{"3":{"n":4.5,"s":1},"4":{"n":2.5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":4}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Dp":"3","p":{"11":{"n":5,"s":1}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":12,"s":{"s":"41","n":"8","a":"5.13","d":"0.54","Os":"151","On":"30","Oa":"5.03","Od":"0.64","Mp":"28","p":{"19":{"n":5},"28":{"n":5},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6.5}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":2,"s":{"n":0},"c":12},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":19,"s":{"s":"72","n":"12","a":"6","d":"0.61","Ss":"54","Sn":"9","Sa":"6","Sd":"0.53","Og":"1","Os":"186","On":"35","Oa":"5.31","Od":"1.07","Mp":"31","p":{"19":{"n":5},"28":{"n":5,"s":1},"1":{"n":5},"2":{"n":6},"3":{"n":7},"5":{"n":6},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":7}}},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Araujo","f":"","p":"A","r":10,"s":{"g":"1","s":"33","n":"7","a":"4.71","d":"0.52","Ss":"9","Sn":"2","Sa":"4.5","Og":"5","Os":"134","On":"28","Oa":"4.79","Od":"0.95","Mp":"12","Ap":"7","p":{"19":{"n":4},"28":{"n":5,"g":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"10":{"n":6,"g":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":8,"s":{"s":"32","n":"6","a":"5.33","d":"0.55","Os":"86","On":"18","Oa":"4.78","Od":"0.73","Dp":"16","p":{"1":{"n":5},"4":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":5.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1}}},"c":12},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":7,"s":{"s":"20","n":"4","a":"5.13","d":"0.22","Og":"1","Os":"122","On":"27","Oa":"4.54","Od":"0.93","Dp":"27","p":{"19":{"n":5},"28":{"n":4},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1}}},"c":12},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":17,"s":{"s":"67","n":"13","a":"5.19","d":"0.84","Ss":"67","Sn":"13","Sa":"5.19","Sd":"0.84","Oao":"1","Os":"131","On":"29","Oa":"4.53","Od":"1.01","Dp":"28","p":{"28":{"n":4},"1":{"n":5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":6},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":6},"12":{"n":4},"13":{"n":3.5}}},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":5,"s":{"n":0,"Os":"21","On":"4","Oa":"5.25","Od":"0.43","Dp":"1","p":{"28":{"n":5,"s":1}}},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":6,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Gp":"3"},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumare","f":"Boubakary","p":"M","r":8,"s":{"s":"19","n":"4","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"76","On":"16","Oa":"4.75","Od":"0.4","Mp":"7","p":{"19":{"n":5},"28":{"n":4,"s":1},"5":{"n":4.5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1}}},"c":12},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":1,"s":{"n":0},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":9,"s":{"s":"25","n":"6","a":"4.25","d":"0.48","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.24","Os":"25","On":"6","Oa":"4.25","Od":"0.48","Ap":"6","p":{"5":{"n":5},"6":{"n":4.5},"7":{"n":3.5},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4}}},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":13,"s":{"s":"65","n":"13","a":"5.04","d":"0.6","Ss":"65","Sn":"13","Sa":"5.04","Sd":"0.6","Os":"65","On":"13","Oa":"5.04","Od":"0.6","Dp":"13","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4},"13":{"n":5}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2791,"n":"Rafael Le\u00e3o","f":"","p":"A","r":8,"s":{"g":"1","s":"19","n":"4","a":"4.75","d":"0.9","Sg":"1","Ss":"14","Sn":"3","Sa":"4.83","Sd":"1.03","Og":"1","Os":"19","On":"4","Oa":"4.75","Od":"0.9","Ap":"4","p":{"8":{"n":4.5,"s":1},"11":{"n":6,"g":1},"12":{"n":3.5},"13":{"n":5,"s":1}}},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":20,"s":{"g":"4","s":"51","n":"11","a":"4.68","d":"1.59","Ss":"6","Sn":"2","Sa":"3","Sd":"0.5","Og":"9","Oao":"1","Os":"129","On":"27","Oa":"4.8","Od":"1.38","Ap":"26","p":{"1":{"n":7.5,"g":1,"s":1},"2":{"n":3},"3":{"n":4},"4":{"n":6.5,"g":1},"6":{"n":6.5,"g":1},"7":{"n":3.5},"8":{"n":4},"9":{"n":6,"g":1},"10":{"n":4.5},"12":{"n":3.5,"s":1},"13":{"n":2.5}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":11,"s":{"s":"3","n":"1","a":"3.5","Os":"123","On":"24","Oa":"5.15","Od":"1.2","Gp":"24","p":{"36":{"n":6},"9":{"n":3.5}}},"c":13},{"i":24,"n":"Sidibe","f":"Djibril","p":"D","r":10,"s":{"s":"34","n":"8","a":"4.31","d":"0.7","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"145","On":"28","Oa":"5.2","Od":"1.3","Mp":"2","Dp":"24","p":{"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":3.5},"13":{"n":3}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":14,"s":{"g":"1","s":"57","n":"12","a":"4.79","d":"0.66","Og":"2","Os":"180","On":"35","Oa":"5.16","Od":"0.91","Dp":"35","p":{"36":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":11,"s":{"s":"49","n":"10","a":"4.9","d":"0.8","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.47","Os":"157","On":"31","Oa":"5.06","Od":"0.94","Dp":"31","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"7":{"n":6},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5}}},"c":13},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":10,"s":{"s":"37","n":"7","a":"5.36","d":"0.91","Ss":"18","Sn":"4","Sa":"4.63","Sd":"0.22","Os":"131","On":"26","Oa":"5.06","Od":"0.91","Mp":"24","p":{"36":{"n":6,"e":1116,"c":5},"4":{"n":6},"5":{"n":6},"6":{"n":7},"10":{"n":4.5,"s":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4.5}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Og":"1","Os":"87","On":"18","Oa":"4.86","Od":"0.57","Dp":"13","p":{"36":{"n":5},"2":{"n":5},"3":{"n":4.5},"10":{"n":5},"12":{"n":4}}},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":7,"s":{"s":"13","n":"3","a":"4.33","d":"0.62","Og":"1","Os":"90","On":"19","Oa":"4.74","Od":"0.98","Dp":"17","p":{"36":{"n":5},"6":{"n":5},"8":{"n":4.5},"9":{"n":3.5}}},"c":13},{"i":284,"n":"Rony Lopes","f":"","p":"M","r":18,"s":{"g":"1","s":"22","n":"4","a":"5.5","d":"1.41","Og":"14","Os":"158","On":"29","Oa":"5.45","Od":"1.18","Mp":"22","Ap":"1","p":{"36":{"n":6},"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":3.5}}},"c":13},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"53","On":"11","Oa":"4.82","Od":"0.94","Mp":"2","Dp":"9"},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Os":"30","On":"7","Oa":"4.29","Od":"0.88","Dp":"4","p":{"1":{"n":5}}},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":8,"s":{"s":"13","n":"3","a":"4.33","d":"0.94","Os":"70","On":"14","Oa":"5","Od":"0.65","Mp":"6","Dp":"4","p":{"36":{"n":6},"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":3}}},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":2,"s":{"s":"4","n":"1","a":"4","Os":"22","On":"4","Oa":"5.5","Od":"1.12","Gp":"3","p":{"10":{"n":4}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":8,"s":{"s":"30","n":"7","a":"4.36","d":"0.64","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"45","On":"10","Oa":"4.55","Od":"0.61","Mp":"7","p":{"5":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4},"12":{"n":3.5},"13":{"n":5}}},"c":13},{"i":884,"n":"Adama Traor\u00e9","f":"","p":"M","r":9,"s":{"s":"23","n":"5","a":"4.6","d":"0.49","Os":"23","On":"5","Oa":"4.6","Od":"0.49","Mp":"4","Ap":"1","p":{"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":4.5},"8":{"n":4.5},"11":{"n":5.5,"s":1}}},"c":13},{"i":1160,"n":"Tielemans","f":"Youri","p":"M","r":13,"s":{"g":"3","s":"55","n":"11","a":"5.05","d":"0.92","Og":"3","Os":"142","On":"27","Oa":"5.28","Od":"0.95","Mp":"23","p":{"36":{"n":6},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4.5},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":3.5}}},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":6,"s":{"s":"31","n":"7","a":"4.43","d":"0.49","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"45","On":"10","Oa":"4.5","Od":"0.67","Mp":"3","Ap":"4","p":{"36":{"n":4,"s":1},"1":{"n":5.5},"2":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"13":{"n":4,"s":1}}},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"47","On":"11","Oa":"4.27","Od":"0.62","Ap":"5"},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":14,"s":{"s":"58","n":"11","a":"5.27","d":"0.78","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.47","Os":"58","On":"11","Oa":"5.27","Od":"0.78","Gp":"11","p":{"1":{"n":5.5},"2":{"n":6.5},"3":{"n":6.5},"4":{"n":4},"5":{"n":6},"6":{"n":5},"7":{"n":5},"8":{"n":5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"s":"28","n":"7","a":"4","d":"0.6","Og":"2","Os":"53","On":"12","Oa":"4.42","Od":"1.06","Mp":"1","Ap":"9","p":{"36":{"n":7,"g":2},"5":{"n":4},"6":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5,"s":1},"11":{"n":4},"12":{"n":3}}},"c":13},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":9,"s":{"s":"47","n":"10","a":"4.7","d":"0.51","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Og":"1","Os":"147","On":"33","Oa":"4.45","Od":"0.93","Mp":"28","p":{"1":{"n":5.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4.5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"10":{"n":4,"s":1},"12":{"n":5,"s":1},"13":{"n":4}}},"c":13},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":11,"s":{"s":"44","n":"9","a":"4.89","d":"0.7","Og":"4","Os":"162","On":"31","Oa":"5.23","Od":"0.9","Mp":"31","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":6},"7":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":4}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":8,"s":{"g":"1","s":"21","n":"4","a":"5.25","d":"1.03","Og":"7","Os":"75","On":"13","Oa":"5.77","Od":"1.23","Mp":"2","Ap":"6","p":{"1":{"n":7,"g":1},"2":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":4.5}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":14,"s":{"n":0,"Og":"5","Os":"86","On":"16","Oa":"5.38","Od":"1.22","Mp":"9","Ap":"5"},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"28","On":"5","Oa":"5.6","Od":"0.49","Dp":"4","p":{"36":{"n":6},"1":{"n":5,"s":1}}},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":1,"s":{"n":0},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":8,"s":{"g":"1","s":"15","n":"3","a":"5","d":"1.08","Og":"1","Os":"27","On":"6","Oa":"4.5","Od":"0.91","Ap":"3","p":{"36":{"n":4,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":7,"s":{"s":"17","n":"4","a":"4.38","d":"0.41","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.47","Os":"17","On":"4","Oa":"4.38","Od":"0.41","Mp":"4","p":{"8":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":4}}},"c":13},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":8,"s":{"s":"41","n":"9","a":"4.56","d":"0.5","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.71","Os":"41","On":"9","Oa":"4.56","Od":"0.5","Mp":"8","Ap":"1","p":{"1":{"n":5},"2":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":4},"11":{"n":5},"12":{"n":3.5},"13":{"n":5}}},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":10,"s":{"s":"31","n":"7","a":"4.43","d":"0.49","Os":"31","On":"7","Oa":"4.43","Od":"0.49","Mp":"5","Ap":"2","p":{"6":{"n":4.5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5}}},"c":13},{"i":2721,"n":"Barreca","f":"Antonio","p":"D","r":11,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Os":"33","On":"7","Oa":"4.71","Od":"0.52","Dp":"7","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4},"6":{"n":5},"8":{"n":4},"11":{"n":5.5}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":12,"s":{"g":"1","s":"41","n":"9","a":"4.61","d":"0.81","Sg":"1","Ss":"33","Sn":"7","Sa":"4.71","Sd":"0.59","Og":"1","Os":"41","On":"9","Oa":"4.61","Od":"0.81","Mp":"2","Dp":"7","p":{"4":{"n":3},"5":{"n":5.5},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4.5},"13":{"n":4}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"13":{"n":5,"s":1}}},"c":13},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":7,"s":{"s":"22","n":"5","a":"4.5","d":"0.32","Og":"2","Os":"141","On":"29","Oa":"4.88","Od":"1.06","Mp":"11","Ap":"17","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"10":{"n":4,"s":1},"11":{"n":5}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":11,"s":{"s":"50","n":"11","a":"4.55","d":"1.05","Ss":"45","Sn":"10","Sa":"4.55","Sd":"1.11","Os":"146","On":"30","Oa":"4.87","Od":"0.98","Dp":"30","p":{"2":{"n":4.5,"s":1},"4":{"n":4},"5":{"n":3.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":3}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":7,"s":{"g":"1","s":"33","n":"8","a":"4.19","d":"0.79","Og":"13","Os":"151","On":"30","Oa":"5.05","Od":"1.44","Mp":"15","Ap":"13","p":{"1":{"n":4.5},"2":{"n":6,"g":1},"3":{"n":3.5},"4":{"n":4},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":11,"s":{"s":"47","n":"11","a":"4.32","d":"1.21","Ss":"10","Sn":"3","Sa":"3.33","Sd":"0.62","Og":"1","Os":"170","On":"35","Oa":"4.87","Od":"1.22","Dp":"35","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"5":{"n":3.5},"6":{"n":3},"7":{"n":6},"8":{"n":6},"9":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":2.5}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":18,"s":{"s":"67","n":"13","a":"5.19","d":"1.08","Ss":"67","Sn":"13","Sa":"5.19","Sd":"1.08","Os":"200","On":"38","Oa":"5.28","Od":"1.16","Gp":"38","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":4},"7":{"n":6},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":4},"13":{"n":3.5}}},"c":14},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":11,"s":{"s":"27","n":"6","a":"4.5","d":"0.96","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"97","On":"20","Oa":"4.85","Od":"1.15","Mp":"20","p":{"3":{"n":3.5},"4":{"n":4},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":6},"13":{"n":4.5}}},"c":14},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":8,"s":{"s":"48","n":"11","a":"4.36","d":"0.64","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.85","Og":"2","Os":"135","On":"30","Oa":"4.5","Od":"0.99","Mp":"21","Ap":"3","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5,"s":1},"5":{"n":3.5,"s":1},"6":{"n":4},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5}}},"c":14},{"i":231,"n":"Petric","f":"Denis","p":"G","r":6,"s":{"n":0},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":17,"s":{"g":"3","s":"65","n":"13","a":"5","d":"1.36","Sg":"3","Ss":"65","Sn":"13","Sa":"5","Sd":"1.36","Og":"6","Os":"176","On":"35","Oa":"5.03","Od":"1.4","Mp":"25","Ap":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":7.5,"g":1},"9":{"n":7,"g":1},"10":{"n":4},"11":{"n":6,"g":1},"12":{"n":2.5},"13":{"n":5}}},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":11,"s":{"s":"60","n":"13","a":"4.65","d":"0.97","Ss":"60","Sn":"13","Sa":"4.65","Sd":"0.97","Og":"1","Os":"126","On":"26","Oa":"4.87","Od":"1.04","Mp":"25","p":{"1":{"n":4.5,"s":1},"2":{"n":5.5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":3},"13":{"n":3.5}}},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":10,"s":{"s":"46","n":"11","a":"4.23","d":"0.99","Ss":"27","Sn":"6","Sa":"4.5","Sd":"1.12","Os":"140","On":"30","Oa":"4.68","Od":"0.99","Mp":"1","Dp":"27","p":{"1":{"n":4},"2":{"n":3.5},"3":{"n":5,"s":1},"5":{"n":3},"6":{"n":4},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":3}}},"c":14},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":10,"s":{"s":"56","n":"12","a":"4.67","d":"0.99","Ss":"31","Sn":"7","Sa":"4.5","Sd":"1.16","Og":"2","Os":"163","On":"33","Oa":"4.94","Od":"1","Mp":"23","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"s":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":3.5},"11":{"n":6},"12":{"n":2.5},"13":{"n":4}}},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":8,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"51","On":"12","Oa":"4.29","Od":"1.01","Dp":"9","p":{"10":{"n":5},"11":{"n":4.5}}},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":13,"s":{"g":"5","s":"44","n":"9","a":"4.94","d":"1.72","Sg":"2","Ss":"7","Sn":"1","Sa":"7","Og":"6","Os":"133","On":"29","Oa":"4.6","Od":"1.22","Mp":"9","Ap":"12","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":4},"4":{"n":5.5,"g":1},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":3},"9":{"n":2},"13":{"n":7,"g":2}}},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Os":"86","On":"18","Oa":"4.81","Od":"0.6","Mp":"9","p":{"1":{"n":4.5},"5":{"n":4},"6":{"n":5},"10":{"n":5,"s":1}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":11,"s":{"s":"40","n":"9","a":"4.5","d":"1.13","Og":"1","Os":"110","On":"23","Oa":"4.8","Od":"1.08","Mp":"1","Dp":"19","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":3.5},"4":{"n":5},"5":{"n":3},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"12":{"n":3}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":13,"s":{"s":"53","n":"11","a":"4.82","d":"0.75","Ss":"3","Sn":"1","Sa":"3.5","Os":"127","On":"25","Oa":"5.08","Od":"0.95","Mp":"1","Dp":"23","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":6},"13":{"n":3.5}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Mp":"1","Ap":"1"},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":1,"s":{"n":0},"c":14},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":9,"s":{"s":"47","n":"11","a":"4.27","d":"0.78","Ss":"26","Sn":"6","Sa":"4.33","Sd":"0.85","Os":"114","On":"25","Oa":"4.56","Od":"0.65","Mp":"16","p":{"1":{"n":4,"e":2735,"c":42},"2":{"n":4.5,"e":2742,"c":42},"3":{"n":5,"e":2752,"c":42,"s":1},"5":{"n":3},"6":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":2.5},"13":{"n":4.5,"s":1}}},"c":14},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":7,"s":{"s":"22","n":"5","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"98","On":"21","Oa":"4.69","Od":"0.79","Mp":"4","Ap":"5","p":{"1":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":9,"s":{"s":"32","n":"7","a":"4.57","d":"0.32","Ss":"27","Sn":"6","Sa":"4.58","Sd":"0.34","Os":"32","On":"7","Oa":"4.57","Od":"0.32","Ap":"7","p":{"6":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1}}},"c":14},{"i":2722,"n":"Traor\u00e9","f":"Cheick","p":"D","r":6,"s":{"s":"19","n":"5","a":"3.9","d":"1.2","Os":"19","On":"5","Oa":"3.9","Od":"1.2","Dp":"5","p":{"1":{"n":5,"s":1},"3":{"n":3},"4":{"n":4.5},"7":{"n":5},"12":{"n":2}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"10":{"n":5},"11":{"n":5.5,"s":1}}},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":2,"s":{"n":0},"c":14},{"i":40,"n":"Delort","f":"Andy","p":"A","r":20,"s":{"g":"5","s":"71","n":"13","a":"5.5","d":"0.9","Sg":"5","Ss":"71","Sn":"13","Sa":"5.5","Sd":"0.9","Og":"8","Os":"158","On":"32","Oa":"4.95","Od":"1.09","Mp":"5","Ap":"21","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":4},"7":{"n":6.5,"g":1},"8":{"n":6,"g":1},"9":{"n":6.5,"g":1},"10":{"n":6,"g":1},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":4}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Og":"8","Os":"123","On":"25","Oa":"4.92","Od":"1.49","Ap":"16","p":{"38":{"n":6},"1":{"n":4}}},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":22,"s":{"g":"1","s":"74","n":"13","a":"5.69","d":"0.72","Sg":"1","Ss":"74","Sn":"13","Sa":"5.69","Sd":"0.72","Og":"5","Os":"219","On":"38","Oa":"5.76","Od":"0.81","Mp":"38","p":{"38":{"n":6},"1":{"n":4.5},"2":{"n":7,"g":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":7},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":19,"s":{"s":"59","n":"11","a":"5.41","d":"0.67","Ss":"22","Sn":"4","Sa":"5.63","Sd":"0.65","Os":"155","On":"29","Oa":"5.36","Od":"0.81","Dp":"29","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":4.5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":20,"s":{"g":"1","s":"62","n":"11","a":"5.68","d":"0.53","Og":"1","Os":"173","On":"33","Oa":"5.26","Od":"0.97","Dp":"31","p":{"38":{"n":5},"1":{"n":6,"g":1},"2":{"n":6},"3":{"n":5.5},"4":{"n":7},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":21,"s":{"s":"71","n":"13","a":"5.5","d":"0.81","Ss":"71","Sn":"13","Sa":"5.5","Sd":"0.81","Os":"178","On":"34","Oa":"5.25","Od":"0.8","Mp":"1","Dp":"31","p":{"38":{"n":5},"1":{"n":4},"2":{"n":6},"3":{"n":5},"4":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":5.5},"13":{"n":5}}},"c":15},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":16,"s":{"g":"1","s":"70","n":"13","a":"5.38","d":"0.88","Sg":"1","Ss":"70","Sn":"13","Sa":"5.38","Sd":"0.88","Og":"2","Os":"195","On":"37","Oa":"5.27","Od":"0.9","Mp":"34","p":{"38":{"n":5,"s":1},"1":{"n":5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":8,"g":1},"13":{"n":5}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":5,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Os":"72","On":"17","Oa":"4.26","Od":"0.42","Ap":"5","p":{"1":{"n":5,"s":1},"2":{"n":4,"s":1},"5":{"n":4.5,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":24,"s":{"g":"6","s":"70","n":"13","a":"5.38","d":"1.36","Sg":"6","Ss":"70","Sn":"13","Sa":"5.38","Sd":"1.36","Og":"9","Os":"139","On":"28","Oa":"4.96","Od":"1.31","Ap":"23","p":{"1":{"n":3.5,"e":2733,"c":3},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":4,"s":1},"8":{"n":6.5,"g":1},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":7,"g":1},"12":{"n":8,"g":2},"13":{"n":4}}},"c":15},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":26,"s":{"s":"75","n":"13","a":"5.81","d":"0.84","Ss":"75","Sn":"13","Sa":"5.81","Sd":"0.84","Os":"210","On":"38","Oa":"5.54","Od":"0.87","Gp":"38","p":{"38":{"n":5},"1":{"n":6},"2":{"n":5.5},"3":{"n":6},"4":{"n":7},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":7},"9":{"n":5},"10":{"n":6},"11":{"n":7},"12":{"n":6},"13":{"n":5}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":21,"s":{"g":"1","s":"53","n":"9","a":"5.89","d":"1.2","Ss":"18","Sn":"3","Sa":"6.17","Sd":"0.85","Og":"8","Os":"151","On":"28","Oa":"5.39","Od":"1.26","Mp":"17","Ap":"8","p":{"2":{"n":6,"g":1},"3":{"n":6},"4":{"n":5.5},"7":{"n":5.5},"8":{"n":8},"9":{"n":3.5},"11":{"n":7},"12":{"n":6.5},"13":{"n":5}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":3,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":6,"s":{"s":"12","n":"3","a":"4.17","d":"0.47","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"0.83","Mp":"7","Ap":"4","p":{"38":{"n":4},"1":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":4.5}}},"c":15},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":1,"s":{"n":0},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1","p":{"38":{"n":5}}},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"2","p":{"1":{"n":4.5}}},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"4","Sn":"1","Sa":"4.5","Os":"65","On":"13","Oa":"5.04","Od":"0.31","Mp":"8","p":{"38":{"n":5},"5":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":4.5,"s":1}}},"c":15},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":24,"s":{"s":"66","n":"12","a":"5.5","d":"1.08","Ss":"47","Sn":"8","Sa":"5.88","Sd":"0.86","Os":"182","On":"33","Oa":"5.52","Od":"1","Mp":"22","Dp":"9","p":{"38":{"n":5,"s":1},"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":6.5},"12":{"n":7},"13":{"n":4.5}}},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":1,"s":{"n":0},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":11,"s":{"s":"25","n":"5","a":"5.1","d":"0.92","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Og":"1","Os":"61","On":"13","Oa":"4.73","Od":"1.09","Mp":"4","Dp":"8","p":{"38":{"n":4},"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"12":{"n":6},"13":{"n":4}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":13,"s":{"s":"61","n":"12","a":"5.08","d":"0.28","Ss":"20","Sn":"4","Sa":"5.13","Sd":"0.22","Og":"1","Os":"163","On":"32","Oa":"5.09","Od":"0.68","Mp":"21","Ap":"4","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":15},{"i":2268,"n":"Ambroise Oyongo","f":"","p":"D","r":16,"s":{"g":"2","s":"50","n":"9","a":"5.61","d":"0.94","Og":"2","Os":"65","On":"12","Oa":"5.46","Od":"0.85","Mp":"11","Dp":"1","p":{"38":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":4.5},"6":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":4},"11":{"n":6},"12":{"n":5.5,"s":1}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"10":{"n":5,"s":1}}},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":9,"s":{"s":"37","n":"8","a":"4.63","d":"0.22","Ss":"4","Sn":"1","Sa":"4.5","Os":"37","On":"8","Oa":"4.63","Od":"0.22","Ap":"8","p":{"3":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":23,"s":{"g":"2","s":"74","n":"13","a":"5.69","d":"1.17","Sg":"2","Ss":"74","Sn":"13","Sa":"5.69","Sd":"1.17","Og":"2","Os":"74","On":"13","Oa":"5.69","Od":"1.17","Mp":"8","Dp":"5","p":{"1":{"n":3.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1,"s":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7},"9":{"n":5},"10":{"n":7},"11":{"n":7},"12":{"n":5.5},"13":{"n":4.5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":1,"s":{"n":0},"c":15},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":5,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5","Gp":"1"},"c":16},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":12,"s":{"g":"1","s":"43","n":"9","a":"4.83","d":"1","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"147","On":"31","Oa":"4.76","Od":"1.01","Mp":"30","p":{"37":{"n":4},"1":{"n":4.5},"2":{"n":5},"3":{"n":7,"g":1},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":4.5,"s":1},"9":{"n":3.5},"13":{"n":5,"s":1}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":11,"s":{"g":"1","s":"66","n":"13","a":"5.08","d":"0.87","Sg":"1","Ss":"66","Sn":"13","Sa":"5.08","Sd":"0.87","Og":"1","Os":"171","On":"34","Oa":"5.03","Od":"0.84","Mp":"34","p":{"37":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":12,"s":{"g":"2","ao":"1","s":"40","n":"8","a":"5.06","d":"1.67","Sg":"2","Ss":"38","Sn":"7","Sa":"5.5","Sd":"1.28","Og":"4","Oao":"2","Os":"107","On":"23","Oa":"4.67","Od":"1.5","Mp":"2","Dp":"21","p":{"18":{"n":3},"1":{"n":2,"a":1},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":3.5},"13":{"n":7.5,"g":1}}},"c":16},{"i":159,"n":"Ismael Traor\u00e9","f":"","p":"D","r":15,"s":{"g":"3","s":"60","n":"11","a":"5.45","d":"1.1","Og":"5","Os":"179","On":"34","Oa":"5.26","Od":"1.02","Dp":"34","p":{"18":{"n":5},"37":{"n":4},"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":6},"7":{"n":5.5,"s":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":7,"g":1},"11":{"n":3.5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":9,"s":{"s":"24","n":"5","a":"4.9","d":"0.37","Og":"1","Os":"83","On":"17","Oa":"4.91","Od":"0.57","Mp":"13","p":{"1":{"n":5},"2":{"n":5},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":5.5,"s":1}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":13,"s":{"g":"2","s":"68","n":"13","a":"5.23","d":"1.03","Sg":"2","Ss":"68","Sn":"13","Sa":"5.23","Sd":"1.03","Og":"4","Oao":"1","Os":"161","On":"31","Oa":"5.19","Od":"1.08","Mp":"26","Dp":"3","p":{"18":{"n":6},"37":{"n":5},"1":{"n":6,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":7,"g":1},"10":{"n":5},"11":{"n":4},"12":{"n":4},"13":{"n":7.5}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":11,"s":{"ao":"1","s":"63","n":"13","a":"4.85","d":"0.89","Sao":"1","Ss":"63","Sn":"13","Sa":"4.85","Sd":"0.89","Oao":"1","Os":"168","On":"35","Oa":"4.8","Od":"0.72","Mp":"1","Dp":"34","p":{"37":{"n":4},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":11,"s":{"g":"1","s":"48","n":"9","a":"5.33","d":"0.97","Sg":"1","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.25","Og":"2","Os":"131","On":"25","Oa":"5.24","Od":"1.04","Dp":"24","p":{"18":{"n":5},"37":{"n":4},"2":{"n":4.5},"3":{"n":4},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":7}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":7,"s":{"s":"4","n":"1","a":"4.5","Os":"65","On":"13","Oa":"5.04","Od":"0.93","Dp":"13","p":{"18":{"n":6},"12":{"n":4.5,"s":1}}},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":10,"s":{"s":"55","n":"11","a":"5","d":"0.93","Ss":"52","Sn":"10","Sa":"5.2","Sd":"0.71","Os":"128","On":"27","Oa":"4.74","Od":"0.83","Dp":"26","p":{"18":{"n":5},"37":{"n":4},"1":{"n":3},"4":{"n":6},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":5,"s":{"n":0,"Os":"39","On":"8","Oa":"4.88","Od":"0.6","p":{"18":{"n":5,"s":1}}},"c":16},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":18,"s":{"g":"2","s":"67","n":"12","a":"5.58","d":"1.11","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Og":"6","Os":"185","On":"33","Oa":"5.61","Od":"1.04","Mp":"28","Ap":"4","p":{"18":{"n":5},"37":{"n":5},"1":{"n":5},"2":{"n":4},"3":{"n":6},"4":{"n":5},"5":{"n":8,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"s":1},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5}}},"c":16},{"i":371,"n":"Thomas Tour\u00e9","f":"","p":"A","r":3,"s":{"n":0,"Os":"31","On":"7","Oa":"4.43","Od":"0.73","Mp":"1"},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":2,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0,"Os":"50","On":"12","Oa":"4.17","Od":"0.55","Mp":"5","p":{"18":{"n":4,"s":1}}},"c":16},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":12,"s":{"s":"60","n":"12","a":"5.04","d":"0.66","Ss":"31","Sn":"6","Sa":"5.17","Sd":"0.47","Os":"110","On":"22","Oa":"5.02","Od":"0.57","Mp":"13","Ap":"6","p":{"37":{"n":4,"s":1},"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5}}},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":10,"s":{"g":"1","s":"38","n":"8","a":"4.75","d":"0.97","Og":"2","Os":"119","On":"25","Oa":"4.76","Od":"1.03","Mp":"13","Ap":"2","p":{"18":{"n":5},"1":{"n":7,"g":1},"2":{"n":4},"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1}}},"c":16},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Mp":"1"},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":8,"s":{"s":"31","n":"7","a":"4.5","d":"0.38","Os":"63","On":"15","Oa":"4.23","Od":"0.36","Ap":"8","p":{"37":{"n":4,"s":1},"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":16,"s":{"g":"3","s":"51","n":"10","a":"5.15","d":"1","Sg":"1","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.74","Og":"9","Os":"151","On":"32","Oa":"4.73","Od":"1.17","Ap":"28","p":{"1":{"n":6},"4":{"n":4},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":6,"g":1},"8":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":6,"g":1},"13":{"n":4}}},"c":16},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":6,"s":{"s":"22","n":"5","a":"4.4","d":"0.2","Og":"2","Os":"143","On":"29","Oa":"4.93","Od":"0.85","Mp":"10","Ap":"5","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":18,"s":{"s":"71","n":"13","a":"5.5","d":"1.07","Ss":"71","Sn":"13","Sa":"5.5","Sd":"1.07","Oao":"1","Os":"169","On":"32","Oa":"5.3","Od":"1.01","Gp":"32","p":{"37":{"n":4},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":8},"5":{"n":6},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":5.5},"13":{"n":6.5}}},"c":16},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":1,"s":{"n":0},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"s":1}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"n":0},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":12,"s":{"s":"54","n":"11","a":"4.95","d":"0.66","Ss":"54","Sn":"11","Sa":"4.95","Sd":"0.66","Os":"54","On":"11","Oa":"4.95","Od":"0.66","Mp":"11","p":{"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":3.5},"13":{"n":5}}},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"4","Sn":"1","Sa":"4","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"10":{"n":5,"s":1},"13":{"n":4,"s":1}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":9,"s":{"g":"1","s":"23","n":"5","a":"4.7","d":"0.68","Sg":"1","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.68","Og":"1","Os":"23","On":"5","Oa":"4.7","Od":"0.68","Ap":"5","p":{"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1}}},"c":16},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":7,"s":{"n":0},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":15,"n":"Fekir","f":"Nabil","p":"A","r":22,"s":{"g":"2","s":"37","n":"7","a":"5.36","d":"1.19","Og":"9","Os":"145","On":"26","Oa":"5.6","Od":"1.42","Mp":"20","Ap":"4","p":{"27":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":6,"g":1},"6":{"n":7.5,"g":1},"8":{"n":3.5},"9":{"n":5},"12":{"n":6}}},"c":18},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":25,"s":{"g":"5","s":"74","n":"13","a":"5.69","d":"1.42","Sg":"5","Ss":"74","Sn":"13","Sa":"5.69","Sd":"1.42","Og":"18","Os":"214","On":"37","Oa":"5.78","Od":"1.67","Mp":"11","Ap":"20","p":{"27":{"n":5},"1":{"n":7.5,"g":1},"2":{"n":5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":7,"g":1},"11":{"n":7,"g":1,"s":1},"12":{"n":4.5},"13":{"n":8.5,"g":2}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":8,"s":{"g":"1","s":"32","n":"7","a":"4.57","d":"0.68","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"5","Os":"131","On":"27","Oa":"4.85","Od":"1.1","Mp":"7","Ap":"11","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"13":{"n":6,"g":1,"s":1}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":8,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Os":"66","On":"12","Oa":"5.5","Od":"0.5","Dp":"10","p":{"8":{"n":5},"10":{"n":6},"11":{"n":5}}},"c":18},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"106","On":"21","Oa":"5.07","Od":"0.62","Mp":"7","p":{"7":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":5,"s":1}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":11,"s":{"s":"29","n":"6","a":"4.92","d":"0.67","Og":"2","Os":"158","On":"29","Oa":"5.47","Od":"1.06","Mp":"2","Dp":"27","p":{"1":{"n":5},"2":{"n":4},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5,"s":1}}},"c":18},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":9,"s":{"s":"35","n":"7","a":"5","d":"1.28","Ss":"3","Sn":"1","Sa":"3.5","Os":"150","On":"29","Oa":"5.17","Od":"1.04","Dp":"29","p":{"27":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"7":{"n":7},"8":{"n":5},"9":{"n":3},"13":{"n":3.5}}},"c":18},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":8,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"31","On":"6","Oa":"5.17","Od":"1.07","Gp":"6","p":{"27":{"n":5},"1":{"n":6},"2":{"n":5}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":15,"s":{"s":"52","n":"10","a":"5.2","d":"0.51","Ss":"15","Sn":"3","Sa":"5","Og":"1","Os":"150","On":"29","Oa":"5.17","Od":"0.85","Dp":"27","p":{"27":{"n":5},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5,"s":1}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":14,"s":{"g":"2","s":"57","n":"11","a":"5.23","d":"0.78","Ss":"20","Sn":"4","Sa":"5","Og":"3","Os":"134","On":"27","Oa":"4.98","Od":"1.02","Mp":"13","Ap":"11","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7,"g":1},"4":{"n":4},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":15,"s":{"s":"58","n":"11","a":"5.32","d":"0.83","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Os":"190","On":"35","Oa":"5.44","Od":"1.01","Mp":"35","p":{"27":{"n":5},"1":{"n":7},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5,"s":1},"7":{"n":5.5},"9":{"n":4},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":6}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":25,"s":{"g":"5","s":"72","n":"13","a":"5.58","d":"1.14","Sg":"5","Ss":"72","Sn":"13","Sa":"5.58","Sd":"1.14","Og":"10","Os":"217","On":"37","Oa":"5.88","Od":"0.98","Mp":"32","Ap":"2","p":{"27":{"n":5,"s":1},"1":{"n":5},"2":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":7},"8":{"n":6.5,"g":1},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":7,"g":1},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":12,"s":{"s":"47","n":"9","a":"5.28","d":"0.71","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.87","Os":"47","On":"9","Oa":"5.28","Od":"0.71","Dp":"9","p":{"4":{"n":5},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"9":{"n":3.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5.5}}},"c":18},{"i":1161,"n":"Traor\u00e9","f":"Bertrand","p":"A","r":20,"s":{"g":"4","s":"62","n":"12","a":"5.21","d":"1.44","Og":"14","Os":"169","On":"30","Oa":"5.65","Od":"1.5","Mp":"11","Ap":"16","p":{"27":{"n":4},"1":{"n":6.5,"g":1},"2":{"n":4},"3":{"n":7.5,"g":1},"4":{"n":4},"5":{"n":4.5},"6":{"n":8,"g":2},"7":{"n":5},"8":{"n":6},"9":{"n":3.5},"10":{"n":5.5,"s":1},"11":{"n":4},"12":{"n":4,"s":1}}},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":6,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"67","On":"13","Oa":"5.19","Od":"0.77","Mp":"1","Dp":"8","p":{"27":{"n":5,"s":1},"13":{"n":5.5}}},"c":18},{"i":1190,"n":"Mendy","f":"Ferland","p":"D","r":13,"s":{"g":"1","s":"51","n":"10","a":"5.15","d":"0.9","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"157","On":"30","Oa":"5.25","Od":"1.13","Mp":"1","Dp":"27","p":{"27":{"n":6},"1":{"n":6},"2":{"n":5},"3":{"n":7},"4":{"n":5.5},"5":{"n":4.5,"g":1},"6":{"n":5},"9":{"n":3.5},"10":{"n":5.5},"12":{"n":4.5},"13":{"n":5}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":4,"s":{"n":0,"Os":"25","On":"6","Oa":"4.17","Od":"0.37"},"c":18},{"i":1414,"n":"NDombele","f":"Tanguy","p":"M","r":15,"s":{"s":"63","n":"13","a":"4.85","d":"0.86","Ss":"63","Sn":"13","Sa":"4.85","Sd":"0.86","Os":"204","On":"37","Oa":"5.51","Od":"1.08","Mp":"35","p":{"27":{"n":6},"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":3.5}}},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":20,"s":{"s":"59","n":"11","a":"5.36","d":"0.93","Ss":"59","Sn":"11","Sa":"5.36","Sd":"0.93","Os":"176","On":"32","Oa":"5.5","Od":"0.98","Gp":"32","p":{"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":7},"8":{"n":5.5},"9":{"n":4},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":5}}},"c":18},{"i":1527,"n":"Pape Cheikh","f":"","p":"M","r":10,"s":{"s":"38","n":"8","a":"4.75","d":"0.43","Os":"43","On":"9","Oa":"4.78","Od":"0.42","Mp":"8","p":{"1":{"n":5,"s":1},"3":{"n":5},"4":{"n":5,"s":1},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5,"s":1},"10":{"n":5}}},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":18,"s":{"s":"62","n":"11","a":"5.68","d":"0.86","Ss":"25","Sn":"4","Sa":"6.38","Sd":"0.96","Og":"3","Os":"190","On":"34","Oa":"5.6","Od":"1.16","Dp":"34","p":{"27":{"n":7},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"8":{"n":5.5},"10":{"n":8},"11":{"n":6},"12":{"n":5.5},"13":{"n":6}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"n":0},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":1,"s":{"n":0},"c":18},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":1,"s":{"n":0},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":19,"s":{"g":"3","s":"43","n":"8","a":"5.44","d":"1.01","Sg":"1","Ss":"21","Sn":"4","Sa":"5.38","Sd":"0.82","Og":"3","Os":"43","On":"8","Oa":"5.44","Od":"1.01","Ap":"8","p":{"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":7.5,"g":2},"8":{"n":5},"10":{"n":6,"g":1},"11":{"n":6},"12":{"n":4},"13":{"n":5.5}}},"c":18},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"10":{"n":4.5,"s":1}}},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":15,"s":{"g":"1","s":"57","n":"11","a":"5.18","d":"1.13","Sg":"1","Ss":"23","Sn":"4","Sa":"5.88","Sd":"1.24","Og":"3","Os":"146","On":"27","Oa":"5.41","Od":"1.11","Mp":"21","p":{"28":{"n":7,"g":1},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4},"4":{"n":6},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":3.5,"s":1},"10":{"n":4},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":7}}},"c":19},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":17,"s":{"g":"2","s":"60","n":"12","a":"5","d":"1.08","Og":"5","Os":"171","On":"33","Oa":"5.18","Od":"1.03","Mp":"1","Ap":"30","p":{"19":{"n":4},"28":{"n":6},"1":{"n":4.5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":3.5},"7":{"n":6},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":4}}},"c":19},{"i":34,"n":"Balotelli","f":"Mario","p":"A","r":16,"s":{"s":"30","n":"7","a":"4.29","d":"0.45","Ss":"17","Sn":"4","Sa":"4.38","Sd":"0.41","Og":"12","Os":"145","On":"27","Oa":"5.37","Od":"1.25","Ap":"26","p":{"28":{"n":7,"g":1},"4":{"n":4.5},"6":{"n":3.5},"8":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":4},"13":{"n":4}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":19,"s":{"s":"68","n":"13","a":"5.27","d":"0.87","Ss":"68","Sn":"13","Sa":"5.27","Sd":"0.87","Og":"1","Os":"177","On":"34","Oa":"5.22","Od":"1.13","Dp":"34","p":{"19":{"n":5},"28":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":3},"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"8":{"n":4},"9":{"n":6},"10":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":14,"s":{"g":"1","s":"46","n":"9","a":"5.17","d":"0.94","Og":"4","Os":"159","On":"30","Oa":"5.32","Od":"1.17","Mp":"27","Ap":"2","p":{"19":{"n":4},"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":6.5,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4.5}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":8,"s":{"s":"20","n":"4","a":"5","Ss":"15","Sn":"3","Sa":"5","Os":"84","On":"17","Oa":"4.94","Od":"0.87","Mp":"17","p":{"9":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":9,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Os":"14","On":"3","Oa":"4.83","Od":"1.03","Gp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":3.5}}},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":13,"s":{"ao":"1","s":"57","n":"11","a":"5.18","d":"0.81","Sao":"1","Ss":"52","Sn":"10","Sa":"5.2","Sd":"0.84","Oao":"1","Os":"142","On":"28","Oa":"5.07","Od":"0.79","Dp":"21","p":{"2":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"a":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":5},"13":{"n":6}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":21,"s":{"s":"62","n":"10","a":"6.2","d":"1.63","Ss":"62","Sn":"10","Sa":"6.2","Sd":"1.63","Os":"191","On":"35","Oa":"5.46","Od":"1.31","Gp":"35","p":{"19":{"n":4},"28":{"n":5},"4":{"n":9},"5":{"n":6.5},"6":{"n":4},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":8},"12":{"n":7.5},"13":{"n":7.5}}},"c":19},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":12,"s":{"n":0,"Os":"89","On":"17","Oa":"5.24","Od":"0.73","Mp":"1","Dp":"14","p":{"19":{"n":5},"28":{"n":6,"s":1}}},"c":19},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":10,"s":{"g":"1","s":"32","n":"6","a":"5.42","d":"0.45","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Og":"1","Os":"51","On":"10","Oa":"5.15","Od":"0.84","Mp":"4","Dp":"5","p":{"4":{"n":6},"5":{"n":5},"7":{"n":6,"g":1},"11":{"n":5.5},"12":{"n":5},"13":{"n":5}}},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":5,"s":{"s":"10","n":"2","a":"5","Os":"71","On":"14","Oa":"5.07","Od":"0.88","Mp":"1","Dp":"10","p":{"19":{"n":5,"s":1},"28":{"n":5},"2":{"n":5},"11":{"n":5}}},"c":19},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":7,"s":{"g":"1","s":"33","n":"7","a":"4.79","d":"0.59","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"51","On":"11","Oa":"4.68","Od":"0.57","Mp":"6","Ap":"3","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":6,"g":1},"8":{"n":5},"13":{"n":4.5,"s":1}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":11,"s":{"g":"1","s":"33","n":"7","a":"4.79","d":"0.96","Og":"3","Os":"136","On":"27","Oa":"5.06","Od":"0.76","Mp":"4","Ap":"10","p":{"19":{"n":7,"g":1},"1":{"n":4.5},"3":{"n":3},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":6.5,"g":1},"10":{"n":4.5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":9,"s":{"s":"40","n":"8","a":"5","d":"1.09","Os":"40","On":"8","Oa":"5","Od":"1.09","Mp":"2","Dp":"6","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":4.5},"10":{"n":4.5},"11":{"n":5,"s":1}}},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":1,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":1,"s":{"n":0},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":19},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":4,"s":{"s":"4","n":"1","a":"4","Os":"32","On":"8","Oa":"4","Ap":"1","p":{"3":{"n":4,"s":1}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":15,"s":{"s":"69","n":"13","a":"5.35","d":"0.74","Ss":"69","Sn":"13","Sa":"5.35","Sd":"0.74","Os":"172","On":"32","Oa":"5.39","Od":"0.83","Mp":"28","Dp":"1","p":{"19":{"n":5,"s":1},"28":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":11,"s":{"s":"50","n":"11","a":"4.59","d":"0.73","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"82","On":"18","Oa":"4.58","Od":"0.73","Ap":"13","p":{"2":{"n":4.5},"3":{"n":3},"4":{"n":4,"s":1},"5":{"n":6},"6":{"n":4,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":4.5}}},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":6,"s":{"g":"1","s":"20","n":"4","a":"5","d":"0.61","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"32","On":"7","Oa":"4.57","Od":"0.68","Ap":"4","p":{"2":{"n":6,"g":1,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":13,"s":{"s":"61","n":"12","a":"5.08","d":"0.89","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Os":"160","On":"33","Oa":"4.85","Od":"0.87","Dp":"33","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":4},"9":{"n":6},"10":{"n":5},"12":{"n":5.5},"13":{"n":7}}},"c":19},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Os":"75","On":"16","Oa":"4.72","Od":"0.83","Mp":"6","Ap":"3","p":{"28":{"n":5,"s":1},"1":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":4.5,"s":1},"12":{"n":4,"s":1}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":8,"s":{"s":"29","n":"6","a":"4.83","d":"0.24","Os":"62","On":"13","Oa":"4.77","Od":"0.67","Mp":"5","Dp":"8","p":{"28":{"n":5},"4":{"n":5,"s":1},"5":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":1,"s":{"n":0},"c":19},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":4,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":1,"s":{"n":0},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":10,"s":{"g":"1","s":"47","n":"9","a":"5.28","d":"0.95","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"1.25","Og":"1","Os":"47","On":"9","Oa":"5.28","Od":"0.95","Mp":"5","Dp":"4","p":{"1":{"n":4.5},"5":{"n":5.5,"s":1},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":9,"s":{"s":"30","n":"7","a":"4.29","d":"0.92","Ss":"16","Sn":"4","Sa":"4.13","Sd":"0.96","Os":"30","On":"7","Oa":"4.29","Od":"0.92","Mp":"6","Ap":"1","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":4.5},"13":{"n":2.5}}},"c":19},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":15,"s":{"g":"1","s":"68","n":"13","a":"5.27","d":"1.14","Sg":"1","Ss":"68","Sn":"13","Sa":"5.27","Sd":"1.14","Og":"4","Os":"186","On":"35","Oa":"5.33","Od":"1.17","Mp":"35","p":{"38":{"n":4},"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":8,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5}}},"c":20},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":4,"s":{"s":"4","n":"1","a":"4","Os":"31","On":"6","Oa":"5.17","Od":"0.9","Dp":"5","p":{"1":{"n":4}}},"c":20},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":4,"s":{"n":0,"Os":"55","On":"11","Oa":"5","Od":"0.6","Mp":"1","Dp":"8","p":{"38":{"n":5,"s":1}}},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":14,"s":{"g":"1","s":"35","n":"7","a":"5","d":"1.31","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"35","On":"7","Oa":"5","Od":"1.31","Mp":"4","Ap":"3","p":{"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":8,"g":1},"10":{"n":4.5},"11":{"n":3.5},"13":{"n":4.5,"s":1}}},"c":20},{"i":168,"n":"Mexer","f":"","p":"D","r":12,"s":{"s":"50","n":"10","a":"5","d":"0.77","Os":"114","On":"23","Oa":"4.96","Od":"0.91","Dp":"19","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4.5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4},"8":{"n":5.5},"9":{"n":5.5},"12":{"n":5.5}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":14,"s":{"g":"1","s":"57","n":"11","a":"5.23","d":"0.81","Sg":"1","Ss":"47","Sn":"9","Sa":"5.28","Sd":"0.89","Og":"4","Oao":"3","Os":"154","On":"31","Oa":"4.98","Od":"0.96","Dp":"31","p":{"2":{"n":5,"s":1},"3":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":7,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5}}},"c":20},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":24,"s":{"g":"4","s":"70","n":"13","a":"5.42","d":"0.87","Sg":"4","Ss":"70","Sn":"13","Sa":"5.42","Sd":"0.87","Og":"8","Os":"155","On":"30","Oa":"5.18","Od":"1.08","Mp":"19","Ap":"9","p":{"1":{"n":4},"2":{"n":6.5,"g":1},"3":{"n":7,"g":1},"4":{"n":5.5},"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":6.5,"g":1},"13":{"n":6}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":12,"s":{"g":"1","ao":"1","s":"53","n":"11","a":"4.86","d":"0.88","Ss":"5","Sn":"1","Sa":"5","Og":"1","Oao":"1","Os":"151","On":"30","Oa":"5.05","Od":"0.93","Dp":"27","p":{"38":{"n":5},"2":{"n":5},"3":{"n":4,"a":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4.5},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"13":{"n":5}}},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":10,"s":{"g":"1","s":"11","n":"2","a":"5.5","d":"1.5","Sg":"1","Ss":"11","Sn":"2","Sa":"5.5","Sd":"1.5","Og":"5","Os":"107","On":"22","Oa":"4.86","Od":"1.22","Mp":"9","Ap":"7","p":{"38":{"n":6,"g":1},"12":{"n":7,"g":1},"13":{"n":4}}},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":9,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Ss":"10","Sn":"2","Sa":"5","Os":"105","On":"21","Oa":"5","Od":"0.64","Mp":"4","Dp":"12","Ap":"2","p":{"38":{"n":4},"4":{"n":5,"s":1},"5":{"n":3.5},"7":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":5}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"12":{"n":5,"s":1}}},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":8,"s":{"s":"40","n":"8","a":"5","d":"0.61","Og":"3","Os":"147","On":"29","Oa":"5.07","Od":"0.89","Mp":"23","p":{"38":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5.5,"s":1},"5":{"n":4},"6":{"n":5},"8":{"n":6},"11":{"n":4.5,"s":1}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":8,"s":{"s":"8","n":"2","a":"4","d":"0.5","Og":"3","Os":"84","On":"20","Oa":"4.2","Od":"0.89","Ap":"9","p":{"38":{"n":4,"s":1},"1":{"n":3.5},"2":{"n":4.5}}},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":13,"s":{"g":"1","s":"39","n":"8","a":"4.88","d":"0.54","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"39","On":"8","Oa":"4.88","Od":"0.54","Mp":"1","Ap":"7","p":{"5":{"n":4,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1}}},"c":20},{"i":1182,"n":"Traor\u00e9","f":"Hamari","p":"D","r":13,"s":{"s":"57","n":"12","a":"4.75","d":"0.92","Ss":"37","Sn":"8","Sa":"4.69","Sd":"0.5","Os":"146","On":"29","Oa":"5.03","Od":"0.96","Dp":"29","p":{"38":{"n":5},"1":{"n":3},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"6":{"n":4},"7":{"n":4.5},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5},"13":{"n":4}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":15,"s":{"g":"1","s":"57","n":"12","a":"4.79","d":"0.92","Og":"7","Os":"193","On":"37","Oa":"5.23","Od":"1.11","Mp":"30","Ap":"5","p":{"38":{"n":5},"1":{"n":5},"2":{"n":3.5},"3":{"n":6,"g":1},"4":{"n":6.5},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5,"s":1}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":18,"s":{"g":"2","s":"66","n":"13","a":"5.08","d":"1.07","Sg":"2","Ss":"66","Sn":"13","Sa":"5.08","Sd":"1.07","Og":"7","Os":"144","On":"28","Oa":"5.14","Od":"1.3","Mp":"27","p":{"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"5":{"n":4},"6":{"n":6},"7":{"n":6,"g":1,"s":1},"8":{"n":6},"9":{"n":6},"10":{"n":4.5},"11":{"n":4},"12":{"n":5.5},"13":{"n":3}}},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":10,"s":{"s":"20","n":"4","a":"5.13","d":"0.22","Os":"20","On":"4","Oa":"5.13","Od":"0.22","Gp":"4","p":{"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":5}}},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":12,"s":{"s":"60","n":"12","a":"5","d":"0.91","Ss":"31","Sn":"6","Sa":"5.17","Sd":"1.18","Os":"60","On":"12","Oa":"5","Od":"0.91","Mp":"12","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":3.5},"12":{"n":7.5},"13":{"n":5}}},"c":20},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":12,"s":{"s":"48","n":"10","a":"4.85","d":"0.59","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"182","On":"35","Oa":"5.21","Od":"0.88","Gp":"35","p":{"38":{"n":5},"1":{"n":4},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":5.5},"13":{"n":5}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":1,"s":{"n":0},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":8,"s":{"s":"37","n":"8","a":"4.63","d":"0.96","Os":"166","On":"33","Oa":"5.03","Od":"0.83","Mp":"7","Dp":"25","p":{"38":{"n":5},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4,"s":1},"7":{"n":4},"10":{"n":5},"11":{"n":4}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":9,"s":{"g":"1","s":"23","n":"4","a":"5.75","d":"0.56","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Og":"1","Os":"23","On":"4","Oa":"5.75","Od":"0.56","Mp":"4","p":{"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"12":{"n":6},"13":{"n":6.5,"g":1}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":3,"s":{"n":0},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":4,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":8,"s":{"s":"37","n":"8","a":"4.69","d":"0.24","Ss":"9","Sn":"2","Sa":"4.5","Os":"37","On":"8","Oa":"4.69","Od":"0.24","Ap":"8","p":{"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":3,"s":{"n":0},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":14,"s":{"g":"1","s":"56","n":"11","a":"5.09","d":"0.79","Sg":"1","Ss":"37","Sn":"7","Sa":"5.36","Sd":"0.74","Og":"4","Os":"176","On":"34","Oa":"5.18","Od":"0.86","Mp":"27","Ap":"3","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":4},"4":{"n":5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5,"s":1}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":11,"s":{"g":"1","s":"45","n":"9","a":"5.06","d":"0.5","Ss":"20","Sn":"4","Sa":"5","Sd":"0.35","Og":"1","Os":"100","On":"20","Oa":"5.03","Od":"0.78","Mp":"14","Ap":"3","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5}}},"c":41},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":12,"s":{"s":"63","n":"12","a":"5.29","d":"0.72","Ss":"52","Sn":"10","Sa":"5.2","Sd":"0.68","Os":"144","On":"30","Oa":"4.82","Od":"0.99","Dp":"30","p":{"1":{"n":6.5},"2":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"115","On":"23","Oa":"5","Od":"1.44","Gp":"23"},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":12,"s":{"s":"36","n":"7","a":"5.21","d":"0.59","Ss":"27","Sn":"5","Sa":"5.4","Sd":"0.58","Os":"36","On":"7","Oa":"5.21","Od":"0.59","Dp":"7","p":{"3":{"n":4.5},"4":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5}}},"c":41},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":18,"s":{"g":"1","s":"67","n":"12","a":"5.63","d":"0.84","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.47","Og":"4","Os":"178","On":"35","Oa":"5.1","Od":"1.11","Mp":"34","Ap":"1","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":8,"g":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":6}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Og":"3","Os":"77","On":"18","Oa":"4.28","Od":"0.8","Ap":"4","p":{"7":{"n":4,"s":1}}},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":12,"s":{"s":"41","n":"8","a":"5.13","d":"0.89","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Og":"3","Os":"163","On":"30","Oa":"5.43","Od":"1.08","Mp":"28","Dp":"2","p":{"1":{"n":7},"2":{"n":4.5},"4":{"n":4},"6":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":6}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":4,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"1.02","Dp":"3"},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.4","Os":"97","On":"20","Oa":"4.88","Od":"0.44","Mp":"12","p":{"1":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4},"9":{"n":5,"s":1}}},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":8,"s":{"n":0,"Os":"30","On":"6","Oa":"5","Gp":"6"},"c":41},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":7,"s":{"g":"1","s":"20","n":"4","a":"5.13","d":"0.89","Og":"1","Os":"104","On":"22","Oa":"4.75","Od":"0.6","Mp":"15","Dp":"1","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1},"3":{"n":4},"10":{"n":5}}},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":17,"s":{"g":"4","s":"68","n":"13","a":"5.27","d":"1.12","Sg":"4","Ss":"68","Sn":"13","Sa":"5.27","Sd":"1.12","Og":"6","Os":"140","On":"28","Oa":"5.02","Od":"1.14","Mp":"5","Ap":"20","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6.5,"g":1,"s":1},"8":{"n":7,"g":1},"9":{"n":6},"10":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":4,"s":1}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":7,"s":{"s":"40","n":"8","a":"5.06","d":"0.81","Os":"40","On":"8","Oa":"5.06","Od":"0.81","Dp":"8","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":4},"8":{"n":6},"9":{"n":4}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":20,"s":{"g":"2","s":"63","n":"12","a":"5.29","d":"1.48","Og":"4","Os":"150","On":"31","Oa":"4.85","Od":"1.35","Mp":"8","Dp":"22","p":{"1":{"n":6.5},"2":{"n":4},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5.5},"9":{"n":3},"10":{"n":8},"11":{"n":5},"12":{"n":6}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":12,"s":{"g":"1","s":"49","n":"10","a":"4.95","d":"0.69","Sg":"1","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.94","Og":"1","Os":"53","On":"11","Oa":"4.86","Od":"0.71","Mp":"9","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"11":{"n":6.5,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":12,"s":{"s":"49","n":"10","a":"4.9","d":"0.44","Os":"61","On":"13","Oa":"4.69","Od":"0.67","Mp":"7","Dp":"6","p":{"3":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Ismael","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"13":{"n":5}}},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":5,"s":1},"11":{"n":4.5,"s":1}}},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":25,"s":{"g":"7","s":"69","n":"13","a":"5.35","d":"1.12","Sg":"7","Ss":"69","Sn":"13","Sa":"5.35","Sd":"1.12","Og":"11","Os":"120","On":"24","Oa":"5.02","Od":"1.22","Ap":"24","p":{"1":{"n":7,"e":2734,"c":12,"g":1},"2":{"n":4,"e":2746,"c":12},"3":{"n":4.5,"e":2754,"c":12},"4":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":7.5,"g":2},"10":{"n":6,"g":1,"s":1},"11":{"n":4},"12":{"n":6,"g":1},"13":{"n":4}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":18,"s":{"s":"74","n":"13","a":"5.73","d":"0.99","Ss":"74","Sn":"13","Sa":"5.73","Sd":"0.99","Os":"74","On":"13","Oa":"5.73","Od":"0.99","Gp":"13","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":4.5},"13":{"n":8}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":12,"s":{"g":"1","s":"66","n":"12","a":"5.5","d":"0.71","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.63","Og":"1","Os":"66","On":"12","Oa":"5.5","Od":"0.71","Mp":"12","p":{"1":{"n":6,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"6":{"n":6.5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":8,"s":{"g":"1","s":"19","n":"4","a":"4.75","d":"0.75","Og":"1","Os":"19","On":"4","Oa":"4.75","Od":"0.75","Ap":"4","p":{"1":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":4}}},"c":41},{"i":2726,"n":"Mitrovic","f":"Stefan","p":"D","r":11,"s":{"ao":"1","s":"64","n":"13","a":"4.96","d":"0.82","Sao":"1","Ss":"64","Sn":"13","Sa":"4.96","Sd":"0.82","Oao":"1","Os":"64","On":"13","Oa":"4.96","Od":"0.82","Dp":"13","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":3.5,"a":1},"5":{"n":5.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":6,"s":{"s":"15","n":"3","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"15","On":"3","Oa":"5","Mp":"3","p":{"3":{"n":5,"s":1},"8":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":1,"s":{"n":0},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":12,"s":{"g":"1","s":"58","n":"12","a":"4.83","d":"0.59","Og":"2","Os":"107","On":"22","Oa":"4.86","Od":"0.57","Mp":"4","Dp":"7","Ap":"1","p":{"38":{"n":5,"s":1},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"8":{"n":4,"s":1},"9":{"n":5},"10":{"n":4,"s":1},"11":{"n":6,"g":1},"12":{"n":4.5}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":7,"s":{"g":"1","s":"21","n":"4","a":"5.25","d":"0.75","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Og":"1","Os":"90","On":"19","Oa":"4.74","Od":"0.77","Mp":"16","p":{"5":{"n":5},"10":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":6.5,"g":1}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":3,"s":{"n":0},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":9,"s":{"s":"58","n":"12","a":"4.88","d":"0.92","Ss":"34","Sn":"7","Sa":"4.93","Sd":"0.9","Og":"1","Os":"159","On":"33","Oa":"4.83","Od":"1.12","Dp":"33","p":{"38":{"n":4},"1":{"n":4.5},"2":{"n":4},"3":{"n":5},"4":{"n":6.5},"5":{"n":4},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":3},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":17,"s":{"s":"71","n":"13","a":"5.46","d":"1.08","Ss":"71","Sn":"13","Sa":"5.46","Sd":"1.08","Os":"207","On":"37","Oa":"5.59","Od":"1","Gp":"37","p":{"38":{"n":7},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":6.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":8}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":14,"s":{"s":"46","n":"9","a":"5.11","d":"1.02","Ss":"41","Sn":"8","Sa":"5.13","Sd":"1.08","Og":"1","Os":"176","On":"33","Oa":"5.33","Od":"1.07","Mp":"33","p":{"38":{"n":5},"4":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":5.5},"9":{"n":6},"10":{"n":3},"11":{"n":6.5},"12":{"n":5},"13":{"n":6}}},"c":42},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":7,"s":{"s":"30","n":"7","a":"4.29","d":"0.59","Ss":"5","Sn":"1","Sa":"5","Os":"102","On":"23","Oa":"4.43","Od":"0.85","Mp":"1","Dp":"20","p":{"1":{"n":4.5},"2":{"n":4},"4":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":5,"s":1}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":8,"s":{"g":"3","s":"55","n":"11","a":"5","d":"1.26","Og":"13","Os":"160","On":"33","Oa":"4.85","Od":"1.37","Ap":"31","p":{"38":{"n":6,"g":1},"1":{"n":4},"2":{"n":6,"g":1},"3":{"n":8.5,"g":2},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":5}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":9,"s":{"ao":"1","s":"53","n":"12","a":"4.46","d":"1.05","Ss":"27","Sn":"6","Sa":"4.58","Sd":"1.13","Oao":"1","Os":"166","On":"34","Oa":"4.9","Od":"0.99","Dp":"32","p":{"38":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":3,"a":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":3},"11":{"n":3},"12":{"n":5.5},"13":{"n":5.5}}},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0,"Os":"24","On":"5","Oa":"4.8","Od":"0.75","Mp":"2"},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4"},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":10,"s":{"g":"1","ao":"1","s":"40","n":"9","a":"4.5","d":"1.25","Sao":"1","Ss":"22","Sn":"5","Sa":"4.5","Sd":"1.26","Og":"1","Oao":"1","Os":"157","On":"32","Oa":"4.92","Od":"1","Dp":"32","p":{"38":{"n":5},"2":{"n":4.5},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":6.5,"g":1},"9":{"n":6},"10":{"n":3},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":6,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Og":"1","Os":"63","On":"13","Oa":"4.85","Od":"1.01","Mp":"7","Ap":"2","p":{"38":{"n":4,"s":1},"1":{"n":4,"s":1},"2":{"n":4},"6":{"n":4.5},"7":{"n":4.5}}},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":2,"s":{"n":0},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":5,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Og":"1","Os":"103","On":"20","Oa":"5.18","Od":"0.76","Mp":"20","p":{"38":{"n":4},"3":{"n":6.5},"4":{"n":5}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":8,"s":{"s":"45","n":"9","a":"5.06","d":"0.76","Ss":"45","Sn":"9","Sa":"5.06","Sd":"0.76","Os":"55","On":"11","Oa":"5.05","Od":"0.69","Mp":"9","Ap":"2","p":{"5":{"n":6,"s":1},"6":{"n":4},"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":3.5},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5.5}}},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":5,"s":{"s":"26","n":"5","a":"5.3","d":"0.93","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"78","On":"15","Oa":"5.23","Od":"0.96","Mp":"11","Ap":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":7},"4":{"n":4.5},"13":{"n":5.5,"s":1}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":8,"s":{"s":"41","n":"8","a":"5.13","d":"1.08","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Os":"41","On":"8","Oa":"5.13","Od":"1.08","Mp":"2","Dp":"6","p":{"1":{"n":4},"3":{"n":6},"4":{"n":6.5},"6":{"n":3.5},"7":{"n":5},"8":{"n":6},"12":{"n":4},"13":{"n":6}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":10,"s":{"s":"54","n":"12","a":"4.54","d":"0.75","Ss":"31","Sn":"7","Sa":"4.5","Sd":"0.89","Os":"54","On":"12","Oa":"4.54","Od":"0.75","Mp":"5","Ap":"7","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":5},"13":{"n":4.5,"s":1}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":12,"s":{"g":"2","s":"65","n":"12","a":"5.46","d":"0.99","Ss":"18","Sn":"4","Sa":"4.63","Sd":"0.89","Og":"2","Os":"65","On":"12","Oa":"5.46","Od":"0.99","Mp":"11","Ap":"1","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":7,"g":1},"4":{"n":6},"5":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":5},"10":{"n":3.5},"11":{"n":4},"12":{"n":5.5,"s":1},"13":{"n":5.5}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":5,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5},"5":{"n":5.5,"s":1},"9":{"n":5,"s":1}}},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":1,"s":{"n":0},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2789,"n":"Timite","f":"Cheick","p":"M","r":7,"s":{"s":"22","n":"5","a":"4.5","d":"0.32","Os":"22","On":"5","Oa":"4.5","Od":"0.32","Mp":"5","p":{"1":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1}}},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":10,"s":{"g":"1","s":"31","n":"7","a":"4.5","d":"0.93","Og":"1","Os":"31","On":"7","Oa":"4.5","Od":"0.93","Mp":"2","Ap":"5","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6.5,"g":1,"s":1},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":3.5},"11":{"n":4.5,"s":1}}},"c":42},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":10,"s":{"g":"1","s":"57","n":"12","a":"4.75","d":"0.69","Sg":"1","Ss":"57","Sn":"12","Sa":"4.75","Sd":"0.69","Og":"1","Os":"57","On":"12","Oa":"4.75","Od":"0.69","Mp":"2","Dp":"10","p":{"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":5},"5":{"n":4.5},"6":{"n":5,"g":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":4.5},"13":{"n":5}}},"c":42},{"i":2832,"n":"Ghoddos","f":"Saman","p":"A","r":14,"s":{"g":"2","s":"51","n":"10","a":"5.1","d":"1.26","Sg":"2","Ss":"51","Sn":"10","Sa":"5.1","Sd":"1.26","Og":"2","Os":"51","On":"10","Oa":"5.1","Od":"1.26","Mp":"4","Ap":"6","p":{"4":{"n":4.5,"s":1},"5":{"n":6.5,"g":1},"6":{"n":4},"7":{"n":7},"8":{"n":4},"9":{"n":7,"g":1},"10":{"n":3.5},"11":{"n":4},"12":{"n":5},"13":{"n":5.5}}},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":7,"s":{"s":"32","n":"7","a":"4.57","d":"1.02","Og":"1","Os":"110","On":"22","Oa":"5","Od":"1.27","Mp":"17","p":{"1":{"n":4},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":3}}},"c":67},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":11,"s":{"s":"33","n":"7","a":"4.79","d":"0.7","Ss":"28","Sn":"6","Sa":"4.75","Sd":"0.75","Os":"66","On":"14","Oa":"4.75","Od":"0.7","Mp":"2","Dp":"6","p":{"5":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":6},"13":{"n":4}}},"c":67},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":18,"s":{"s":"75","n":"13","a":"5.81","d":"1.25","Ss":"75","Sn":"13","Sa":"5.81","Sd":"1.25","Os":"75","On":"13","Oa":"5.81","Od":"1.25","Gp":"13","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":7.5},"4":{"n":3.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":5.5},"12":{"n":8},"13":{"n":7.5}}},"c":67},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":12,"s":{"g":"1","s":"51","n":"11","a":"4.68","d":"0.81","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Og":"1","Os":"81","On":"18","Oa":"4.53","Od":"0.79","Mp":"1","Ap":"12","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":5},"11":{"n":4},"12":{"n":5},"13":{"n":4.5}}},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":12,"s":{"s":"53","n":"11","a":"4.86","d":"0.98","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.03","Os":"53","On":"11","Oa":"4.86","Od":"0.98","Dp":"11","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4},"4":{"n":3},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":4}}},"c":67},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.6","Ss":"5","Sn":"1","Sa":"5","Os":"23","On":"5","Oa":"4.7","Od":"0.6","Dp":"5","p":{"5":{"n":4},"6":{"n":5},"7":{"n":5.5},"8":{"n":4},"13":{"n":5,"s":1}}},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":5,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":5,"s":{"n":0},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"10":{"n":4}}},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":1,"s":{"n":0},"c":67},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":13,"s":{"g":"1","s":"60","n":"13","a":"4.65","d":"1.15","Sg":"1","Ss":"60","Sn":"13","Sa":"4.65","Sd":"1.15","Og":"1","Os":"60","On":"13","Oa":"4.65","Od":"1.15","Ap":"13","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":2.5},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6.5},"12":{"n":5},"13":{"n":3}}},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":10,"s":{"s":"46","n":"10","a":"4.65","d":"0.32","Os":"46","On":"10","Oa":"4.65","Od":"0.32","Dp":"10","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":4},"9":{"n":5},"10":{"n":4.5},"11":{"n":5}}},"c":67},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":13,"s":{"g":"2","s":"69","n":"13","a":"5.35","d":"1.28","Sg":"2","Ss":"69","Sn":"13","Sa":"5.35","Sd":"1.28","Og":"2","Os":"69","On":"13","Oa":"5.35","Od":"1.28","Mp":"10","Ap":"3","p":{"1":{"n":8,"g":1},"2":{"n":7,"g":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":9,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.81","Og":"1","Os":"52","On":"11","Oa":"4.73","Od":"0.81","Ap":"11","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1}}},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":9,"s":{"s":"17","n":"4","a":"4.38","d":"0.96","Os":"17","On":"4","Oa":"4.38","Od":"0.96","Dp":"4","p":{"1":{"n":3},"3":{"n":5},"5":{"n":4},"7":{"n":5.5}}},"c":67},{"i":2702,"n":"Bobichon","f":"Antonin","p":"A","r":13,"s":{"g":"2","s":"42","n":"8","a":"5.25","d":"1.12","Og":"2","Os":"42","On":"8","Oa":"5.25","Od":"1.12","Mp":"6","Ap":"2","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":6,"g":1},"6":{"n":7},"7":{"n":5},"8":{"n":3},"9":{"n":5.5},"10":{"n":5},"12":{"n":4.5,"s":1}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":14,"s":{"s":"67","n":"13","a":"5.15","d":"0.53","Ss":"67","Sn":"13","Sa":"5.15","Sd":"0.53","Os":"67","On":"13","Oa":"5.15","Od":"0.53","Mp":"13","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":18,"s":{"g":"2","s":"64","n":"12","a":"5.33","d":"1.31","Sg":"1","Ss":"32","Sn":"6","Sa":"5.33","Sd":"1.4","Og":"2","Os":"64","On":"12","Oa":"5.33","Od":"1.31","Dp":"12","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"8":{"n":3},"9":{"n":5.5},"10":{"n":4},"11":{"n":6.5},"12":{"n":7,"g":1},"13":{"n":6}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":9,"s":{"s":"28","n":"6","a":"4.67","d":"0.8","Ss":"4","Sn":"1","Sa":"4.5","Os":"28","On":"6","Oa":"4.67","Od":"0.8","Dp":"6","p":{"1":{"n":5,"s":1},"2":{"n":5},"4":{"n":3},"6":{"n":5},"7":{"n":5.5},"13":{"n":4.5,"s":1}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":17,"s":{"g":"2","s":"69","n":"13","a":"5.35","d":"0.97","Sg":"2","Ss":"69","Sn":"13","Sa":"5.35","Sd":"0.97","Og":"2","Os":"69","On":"13","Oa":"5.35","Od":"0.97","Mp":"5","Dp":"2","Ap":"6","p":{"1":{"n":6.5,"g":1},"2":{"n":7,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5.5},"12":{"n":7},"13":{"n":5.5}}},"c":67},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":6,"s":{"n":0},"c":67},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":9,"s":{"g":"1","s":"29","n":"6","a":"4.83","d":"0.62","Sg":"1","Ss":"29","Sn":"6","Sa":"4.83","Sd":"0.62","Og":"1","Os":"29","On":"6","Oa":"4.83","Od":"0.62","Ap":"6","p":{"8":{"n":5,"s":1},"9":{"n":4,"s":1},"10":{"n":5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":67},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":1,"s":{"n":0},"c":67},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":17,"s":{"g":"2","s":"48","n":"8","a":"6.06","d":"1.04","Sg":"1","Ss":"26","Sn":"4","Sa":"6.63","Sd":"1.08","Og":"2","Os":"48","On":"8","Oa":"6.06","Od":"1.04","Mp":"8","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6,"g":1},"10":{"n":7},"11":{"n":5},"12":{"n":8,"g":1},"13":{"n":6.5}}},"c":67},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":13,"s":{"g":"3","s":"48","n":"10","a":"4.8","d":"1.33","Sg":"2","Ss":"32","Sn":"7","Sa":"4.64","Sd":"1.51","Og":"3","Os":"48","On":"10","Oa":"4.8","Od":"1.33","Mp":"9","Ap":"1","p":{"1":{"n":5},"2":{"n":6,"g":1},"3":{"n":4.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":8,"g":2},"13":{"n":3.5}}},"c":67},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":19,"s":{"s":"69","n":"13","a":"5.35","d":"1.01","Ss":"69","Sn":"13","Sa":"5.35","Sd":"1.01","Os":"69","On":"13","Oa":"5.35","Od":"1.01","Dp":"13","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":6.5},"12":{"n":6},"13":{"n":4}}},"c":68},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":11,"s":{"s":"38","n":"8","a":"4.81","d":"0.56","Os":"38","On":"8","Oa":"4.81","Od":"0.56","Mp":"8","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4},"6":{"n":4.5},"8":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":6},"12":{"n":5}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":14,"s":{"g":"2","s":"60","n":"12","a":"5","d":"0.89","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.25","Og":"2","Os":"60","On":"12","Oa":"5","Od":"0.89","Mp":"12","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":7,"g":1},"13":{"n":4}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":9,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Ss":"5","Sn":"1","Sa":"5","Os":"33","On":"7","Oa":"4.71","Od":"0.52","Mp":"7","p":{"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":6,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"4","Sn":"1","Sa":"4","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Mp":"3","p":{"11":{"n":5,"s":1},"13":{"n":4}}},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":8,"s":{"s":"39","n":"9","a":"4.33","d":"0.62","Ss":"4","Sn":"1","Sa":"4","Og":"4","Os":"127","On":"29","Oa":"4.38","Od":"0.84","Ap":"19","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":4,"s":1}}},"c":68},{"i":2608,"n":"Chavarria","f":"Pablo","p":"A","r":14,"s":{"g":"2","s":"61","n":"13","a":"4.69","d":"0.72","Sg":"2","Ss":"61","Sn":"13","Sa":"4.69","Sd":"0.72","Og":"2","Os":"61","On":"13","Oa":"4.69","Od":"0.72","Mp":"1","Ap":"12","p":{"1":{"n":5},"2":{"n":6.5,"g":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":5.5,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"s":"19","n":"4","a":"4.88","d":"0.96","Os":"19","On":"4","Oa":"4.88","Od":"0.96","Dp":"4","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"7":{"n":4.5}}},"c":68},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":8,"s":{"s":"26","n":"5","a":"5.2","d":"0.51","Os":"26","On":"5","Oa":"5.2","Od":"0.51","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"12":{"n":5,"s":1}}},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":4,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":14,"s":{"s":"64","n":"12","a":"5.38","d":"0.74","Os":"64","On":"12","Oa":"5.38","Od":"0.74","Mp":"12","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":14,"s":{"s":"65","n":"13","a":"5","d":"1.04","Ss":"65","Sn":"13","Sa":"5","Sd":"1.04","Os":"65","On":"13","Oa":"5","Od":"1.04","Dp":"13","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":3},"8":{"n":5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4}}},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":15,"s":{"g":"2","s":"65","n":"13","a":"5","d":"1.02","Sg":"2","Ss":"65","Sn":"13","Sa":"5","Sd":"1.02","Og":"2","Os":"65","On":"13","Oa":"5","Od":"1.02","Mp":"12","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":4},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":8,"g":2},"12":{"n":6},"13":{"n":5}}},"c":68},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":23,"s":{"s":"77","n":"13","a":"5.96","d":"1.15","Ss":"77","Sn":"13","Sa":"5.96","Sd":"1.15","Os":"77","On":"13","Oa":"5.96","Od":"1.15","Gp":"13","p":{"1":{"n":6},"2":{"n":7.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":7},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":6},"9":{"n":7},"10":{"n":7},"11":{"n":7},"12":{"n":6.5},"13":{"n":5}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"3":{"n":3.5,"s":1}}},"c":68},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":8,"s":{"s":"27","n":"6","a":"4.58","d":"0.73","Os":"27","On":"6","Oa":"4.58","Od":"0.73","Mp":"6","p":{"1":{"n":5,"s":1},"5":{"n":5,"s":1},"7":{"n":3},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1}}},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":11,"s":{"g":"1","s":"46","n":"9","a":"5.17","d":"0.91","Og":"1","Os":"46","On":"9","Oa":"5.17","Od":"0.91","Mp":"8","Ap":"1","p":{"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5.5,"s":1}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":5,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Ss":"4","Sn":"1","Sa":"4","Os":"18","On":"4","Oa":"4.63","Od":"0.41","Mp":"3","Dp":"1","p":{"2":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5,"s":1},"13":{"n":4}}},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":7,"s":{"s":"15","n":"3","a":"5.17","d":"0.47","Os":"15","On":"3","Oa":"5.17","Od":"0.47","Mp":"3","p":{"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":4.5}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":15,"s":{"g":"1","s":"63","n":"12","a":"5.29","d":"0.66","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.85","Og":"1","Os":"63","On":"12","Oa":"5.29","Od":"0.66","Mp":"12","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2823,"n":"Engels","f":"Bj\u00f6rn","p":"D","r":14,"s":{"s":"48","n":"9","a":"5.33","d":"0.82","Ss":"48","Sn":"9","Sa":"5.33","Sd":"0.82","Os":"48","On":"9","Oa":"5.33","Od":"0.82","Dp":"9","p":{"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7},"12":{"n":6},"13":{"n":4.5}}},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":11,"s":{"s":"41","n":"8","a":"5.13","d":"0.54","Ss":"30","Sn":"6","Sa":"5","Sd":"0.58","Os":"41","On":"8","Oa":"5.13","Od":"0.54","Dp":"8","p":{"5":{"n":5.5},"6":{"n":5.5},"8":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":4}}},"c":68}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1406,"s":{"p":39},"nM":2869,"nMWC":"0.9394","pM":{"3":2760,"4":2767,"5":2780,"6":2789,"7":2800,"9":2820,"10":2828,"13":2857,"1":2740,"2":2745,"8":2807,"12":2848,"25":1014,"11":2837},"DMI":[1014]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":1049,"s":{"p":16},"nM":2864,"nMWC":"0.7129","pM":{"16":916,"35":1106,"1":2733,"2":2751,"3":2753,"4":2769,"5":2773,"10":2825,"11":2834,"12":2844,"6":2783,"7":2793,"8":2808,"9":2814,"13":2853},"DMI":[916,1106]},"4":{"n":"Saint Etienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1147,"s":{"p":23},"nM":2865,"nMWC":"0.4384","pM":{"5":2780,"27":1029,"1":2741,"2":2750,"6":2790,"7":2801,"9":2816,"12":2850,"13":2860,"3":2757,"4":2770,"8":2810,"10":2830,"11":2839},"DMI":[1029]},"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":1,"el":950,"s":{"p":12},"nM":2863,"nMWC":"0.4584","pM":{"1":2740,"13":2853,"6":2790,"36":1116,"2":2743,"3":2758,"4":2763,"5":2774,"8":2803,"9":2817,"10":2822,"11":2836,"12":2842,"7":2794},"DMI":[1116]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":891,"s":{"p":11},"nM":2864,"nMWC":"0.2871","pM":{"16":916,"35":1106,"4":2763,"1":2737,"2":2744,"5":2775,"7":2795,"8":2811,"9":2812,"10":2823,"3":2759,"6":2788,"11":2838,"12":2843,"13":2856},"DMI":[916,1106]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1059,"s":{"p":16},"nM":2867,"nMWC":"0.5431","pM":{"9":2814,"3":2758,"2":2744,"1":2738,"4":2771,"5":2778,"6":2784,"7":2798,"8":2805,"10":2826,"11":2832,"12":2846,"13":2859,"18":939,"37":1126},"DMI":[939,1126]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1163,"s":{"p":22},"nM":2862,"nMWC":"0.6961","pM":{"11":2837,"9":2817,"13":2856,"1":2736,"2":2747,"3":2756,"4":2766,"5":2776,"6":2785,"7":2796,"8":2804,"10":2827,"12":2845,"38":1138},"DMI":[1138]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":930,"s":{"p":14},"nM":2869,"nMWC":"0.0606","pM":{"25":1014,"2":2751,"7":2801,"10":2826,"1":2736,"3":2761,"4":2764,"5":2781,"6":2782,"8":2809,"9":2821,"11":2841,"12":2851,"13":2861},"DMI":[1014]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1132,"s":{"p":26},"nM":2868,"nMWC":"0.5431","pM":{"12":2848,"7":2793,"9":2816,"11":2836,"10":2823,"6":2784,"8":2804,"19":949,"28":1042,"1":2734,"2":2746,"3":2754,"4":2762,"5":2772,"13":2855},"DMI":[949,1042]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":979,"s":{"p":7},"nM":2863,"nMWC":"0.5416","pM":{"13":2857,"3":2753,"8":2810,"36":1116,"11":2838,"1":2738,"4":2766,"5":2781,"2":2746,"6":2786,"7":2797,"9":2818,"10":2831,"12":2849},"DMI":[1116]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":1,"el":941,"s":{"p":7},"nM":2870,"nMWC":"0.3599","pM":{"2":2745,"6":2783,"1":2741,"10":2822,"12":2846,"5":2776,"4":2764,"3":2754,"11":2835,"7":2799,"8":2802,"9":2815,"13":2854},"DMI":[]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1120,"s":{"p":25},"nM":2866,"nMWC":"0.5743","pM":{"10":2825,"3":2757,"7":2794,"1":2737,"12":2845,"11":2841,"9":2815,"2":2742,"4":2768,"5":2777,"6":2787,"8":2806,"13":2852,"38":1141},"DMI":[1141]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1029,"s":{"p":15},"nM":2867,"nMWC":"0.4569","pM":{"3":2760,"12":2850,"5":2775,"18":939,"37":1126,"6":2782,"4":2762,"7":2797,"8":2802,"13":2852,"1":2732,"2":2749,"9":2813,"10":2829,"11":2833},"DMI":[939,1126]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1190,"s":{"p":24},"nM":2865,"nMWC":"0.5616","pM":{"9":2820,"12":2844,"27":1029,"5":2774,"7":2795,"8":2805,"6":2785,"13":2854,"1":2735,"11":2833,"3":2755,"4":2765,"2":2748,"10":2824},"DMI":[1029]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1102,"s":{"p":20},"nM":2868,"nMWC":"0.4569","pM":{"8":2807,"11":2834,"2":2743,"3":2759,"7":2798,"10":2827,"9":2821,"19":949,"28":1042,"6":2787,"4":2765,"1":2739,"5":2779,"12":2847,"13":2858},"DMI":[949,1042]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1068,"s":{"p":16},"nM":2866,"nMWC":"0.4257","pM":{"6":2789,"4":2769,"10":2830,"12":2842,"13":2859,"3":2756,"8":2809,"1":2734,"9":2818,"38":1141,"2":2749,"5":2779,"7":2792,"11":2840},"DMI":[1141]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1043,"s":{"p":18},"nM":2871,"nMWC":"0.5658","pM":{"1":2733,"2":2750,"8":2811,"4":2771,"7":2796,"12":2851,"13":2855,"10":2831,"11":2835,"5":2777,"9":2813,"3":2755,"6":2791},"DMI":[]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":1019,"s":{"p":13},"nM":2862,"nMWC":"0.3039","pM":{"10":2828,"4":2770,"8":2803,"9":2812,"11":2832,"38":1138,"13":2861,"5":2772,"1":2735,"2":2742,"3":2752,"12":2847,"7":2792,"6":2791},"DMI":[1138]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":997,"s":{"p":14},"nM":2871,"nMWC":"0.4342","pM":{"4":2767,"5":2773,"11":2839,"12":2843,"2":2747,"3":2761,"6":2786,"7":2799,"8":2806,"1":2732,"10":2824,"13":2858,"9":2819},"DMI":[]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1041,"s":{"p":17},"nM":2870,"nMWC":"0.6401","pM":{"7":2800,"8":2808,"13":2860,"6":2788,"5":2778,"12":2849,"3":2752,"4":2768,"10":2829,"2":2748,"1":2739,"11":2840,"9":2819},"DMI":[]}},"e":{"2760":{"d":3,"dB":"2018-08-25T17:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":16},"2767":{"d":4,"dB":"2018-09-01T15:00:00Z","t1s":2,"t2s":4,"t1":67,"t2":2},"2780":{"d":5,"dB":"2018-09-14T18:45:00Z","t1s":4,"t2s":0,"t1":2,"t2":4},"2789":{"d":6,"dB":"2018-09-23T13:00:00Z","t1s":1,"t2s":3,"t1":20,"t2":2},"2800":{"d":7,"dB":"2018-09-26T19:00:00Z","t1s":4,"t2s":1,"t1":2,"t2":68},"2820":{"d":9,"dB":"2018-10-07T19:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":18},"2828":{"d":10,"dB":"2018-10-20T15:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":42},"2857":{"d":13,"dB":"2018-11-11T20:00:00Z","t1s":0,"t2s":4,"t1":13,"t2":2},"2740":{"d":1,"dB":"2018-08-12T21:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":5},"2745":{"d":2,"dB":"2018-08-18T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":2},"2807":{"d":8,"dB":"2018-09-29T15:15:00Z","t1s":0,"t2s":3,"t1":19,"t2":2},"2848":{"d":12,"dB":"2018-11-02T19:45:00Z","t1s":2,"t2s":1,"t1":2,"t2":12},"1014":{"d":25,"dB":"2018-02-10T16:00:00Z","t1s":0,"t2s":1,"t1":10,"t2":2},"2837":{"d":11,"dB":"2018-10-28T20:00:00Z","t1s":0,"t2s":2,"t1":9,"t2":2},"916":{"d":16,"dB":"2017-12-01T19:45:00Z","t1s":3,"t2s":2,"t1":7,"t2":3},"1106":{"d":35,"dB":"2018-04-28T18:00:00Z","t1s":3,"t2s":1,"t1":3,"t2":7},"2733":{"d":1,"dB":"2018-08-12T17:00:00Z","t1s":0,"t2s":2,"t1":3,"t2":41},"2751":{"d":2,"dB":"2018-08-19T15:00:00Z","t1s":2,"t2s":1,"t1":10,"t2":3},"2753":{"d":3,"dB":"2018-08-26T15:00:00Z","t1s":2,"t2s":1,"t1":3,"t2":13},"2769":{"d":4,"dB":"2018-09-02T15:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":3},"2773":{"d":5,"dB":"2018-09-16T15:00:00Z","t1s":3,"t2s":3,"t1":3,"t2":67},"2825":{"d":10,"dB":"2018-10-21T13:00:00Z","t1s":2,"t2s":0,"t1":15,"t2":3},"2834":{"d":11,"dB":"2018-10-28T16:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":19},"2844":{"d":12,"dB":"2018-11-03T16:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":3},"2783":{"d":6,"dB":"2018-09-23T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":3},"2793":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":1,"t2s":0,"t1":3,"t2":12},"2808":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":3},"2814":{"d":9,"dB":"2018-10-07T13:00:00Z","t1s":3,"t2s":0,"t1":3,"t2":8},"2853":{"d":13,"dB":"2018-11-11T14:00:00Z","t1s":0,"t2s":0,"t1":3,"t2":5},"1029":{"d":27,"dB":"2018-02-25T16:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":4},"2741":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":14},"2750":{"d":2,"dB":"2018-08-19T13:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":4},"2790":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":5},"2801":{"d":7,"dB":"2018-09-25T19:00:00Z","t1s":2,"t2s":3,"t1":10,"t2":4},"2816":{"d":9,"dB":"2018-10-06T15:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":4},"2850":{"d":12,"dB":"2018-11-04T16:00:00Z","t1s":4,"t2s":3,"t1":4,"t2":16},"2860":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":68},"2757":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":0,"t1":15,"t2":4},"2770":{"d":4,"dB":"2018-09-02T13:00:00Z","t1s":0,"t2s":0,"t1":4,"t2":42},"2810":{"d":8,"dB":"2018-09-28T18:45:00Z","t1s":2,"t2s":0,"t1":4,"t2":13},"2830":{"d":10,"dB":"2018-10-21T15:00:00Z","t1s":1,"t2s":1,"t1":4,"t2":20},"2839":{"d":11,"dB":"2018-10-26T18:45:00Z","t1s":1,"t2s":1,"t1":67,"t2":4},"1116":{"d":36,"dB":"2018-05-06T15:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":13},"2743":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":1,"t1":5,"t2":19},"2758":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":5},"2763":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":2,"t1":7,"t2":5},"2774":{"d":5,"dB":"2018-09-15T15:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":18},"2803":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":42},"2817":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":5},"2822":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":0,"t2s":0,"t1":5,"t2":14},"2836":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":5},"2842":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":20},"2794":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":15},"2737":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":1,"t2s":2,"t1":15,"t2":7},"2744":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":2,"t2s":0,"t1":7,"t2":8},"2775":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":3,"t1":7,"t2":16},"2795":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":3,"t1":7,"t2":18},"2811":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":3,"t2s":0,"t1":41,"t2":7},"2812":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":7},"2823":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":12},"2759":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":4,"t1":19,"t2":7},"2788":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":7},"2838":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":2,"t2s":2,"t1":13,"t2":7},"2843":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":0,"t2s":4,"t1":7,"t2":67},"2856":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":7},"2738":{"d":1,"dB":"2018-08-11T17:00:00Z","t1s":1,"t2s":3,"t1":8,"t2":13},"2771":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":2,"t2s":3,"t1":41,"t2":8},"2778":{"d":5,"dB":"2018-09-16T13:00:00Z","t1s":0,"t2s":0,"t1":8,"t2":68},"2784":{"d":6,"dB":"2018-09-22T15:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":8},"2798":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":1,"t2s":2,"t1":8,"t2":19},"2805":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":8},"2826":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":4,"t2s":0,"t1":8,"t2":10},"2832":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":8},"2846":{"d":12,"dB":"2018-11-04T14:00:00Z","t1s":5,"t2s":0,"t1":8,"t2":14},"2859":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":8},"939":{"d":18,"dB":"2017-12-17T14:00:00Z","t1s":1,"t2s":0,"t1":8,"t2":16},"1126":{"d":37,"dB":"2018-05-12T19:00:00Z","t1s":0,"t2s":2,"t1":16,"t2":8},"2736":{"d":1,"dB":"2018-08-10T20:45:00Z","t1s":4,"t2s":0,"t1":9,"t2":10},"2747":{"d":2,"dB":"2018-08-19T19:00:00Z","t1s":3,"t2s":1,"t1":67,"t2":9},"2756":{"d":3,"dB":"2018-08-26T19:00:00Z","t1s":2,"t2s":2,"t1":9,"t2":20},"2766":{"d":4,"dB":"2018-09-02T19:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":9},"2776":{"d":5,"dB":"2018-09-16T19:00:00Z","t1s":4,"t2s":0,"t1":9,"t2":14},"2785":{"d":6,"dB":"2018-09-23T19:00:00Z","t1s":4,"t2s":2,"t1":18,"t2":9},"2796":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":3,"t2s":2,"t1":9,"t2":41},"2804":{"d":8,"dB":"2018-09-30T19:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":9},"2827":{"d":10,"dB":"2018-10-21T19:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":9},"2845":{"d":12,"dB":"2018-11-04T20:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":9},"1138":{"d":38,"dB":"2018-05-19T19:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":42},"2761":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":67},"2764":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":10},"2781":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":10,"t2":13},"2782":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":16,"t2":10},"2809":{"d":8,"dB":"2018-09-30T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":10},"2821":{"d":9,"dB":"2018-10-05T18:45:00Z","t1s":1,"t2s":1,"t1":10,"t2":19},"2841":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":0,"t2s":3,"t1":10,"t2":15},"2851":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":10},"2861":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":10,"t2":42},"949":{"d":19,"dB":"2017-12-20T19:50:00Z","t1s":1,"t2s":1,"t1":12,"t2":19},"1042":{"d":28,"dB":"2018-03-02T18:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":12},"2734":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":20},"2746":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":12},"2754":{"d":3,"dB":"2018-08-26T13:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":14},"2762":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":12},"2772":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":2,"t2s":3,"t1":42,"t2":12},"2855":{"d":13,"dB":"2018-11-09T19:45:00Z","t1s":0,"t2s":0,"t1":12,"t2":41},"2786":{"d":6,"dB":"2018-09-21T18:45:00Z","t1s":1,"t2s":1,"t1":13,"t2":67},"2797":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":0,"t2s":1,"t1":13,"t2":16},"2818":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":20},"2831":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":2,"t2s":1,"t1":41,"t2":13},"2849":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":68,"t2":13},"2835":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":41},"2799":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":14},"2802":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":1,"t1":16,"t2":14},"2815":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":15},"2854":{"d":13,"dB":"2018-11-10T16:00:00Z","t1s":2,"t2s":4,"t1":14,"t2":18},"2735":{"d":1,"dB":"2018-08-12T15:00:00Z","t1s":2,"t2s":0,"t1":18,"t2":42},"2742":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":15},"2752":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":4,"t2s":1,"t1":42,"t2":68},"2768":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":15},"2777":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":41},"2787":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":1,"t2s":0,"t1":15,"t2":19},"2806":{"d":8,"dB":"2018-09-30T15:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":67},"2852":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":15},"1141":{"d":38,"dB":"2018-05-19T19:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":15},"2732":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":4,"t1":16,"t2":67},"2749":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":0,"t1":20,"t2":16},"2813":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":2,"t2s":2,"t1":16,"t2":41},"2829":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":16},"2833":{"d":11,"dB":"2018-10-27T15:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":18},"2755":{"d":3,"dB":"2018-08-24T20:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":41},"2765":{"d":4,"dB":"2018-08-31T18:45:00Z","t1s":0,"t2s":1,"t1":18,"t2":19},"2748":{"d":2,"dB":"2018-08-17T18:45:00Z","t1s":1,"t2s":0,"t1":68,"t2":18},"2824":{"d":10,"dB":"2018-10-19T18:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":67},"2739":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":68},"2779":{"d":5,"dB":"2018-09-14T17:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":20},"2847":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":42},"2858":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":67,"t2":19},"2792":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":1,"t1":42,"t2":20},"2840":{"d":11,"dB":"2018-10-28T14:00:00Z","t1s":0,"t2s":2,"t1":20,"t2":68},"2791":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":3,"t2s":1,"t1":41,"t2":42},"2819":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":68}},"Ne":{"2869":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":2,"t2":10},"2864":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":7,"t2":3},"2865":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":18,"t2":4},"2863":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":5,"t2":13},"2867":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":8,"t2":16},"2862":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":42,"t2":9},"2868":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":19,"t2":12},"2870":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":68,"t2":14},"2866":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":15,"t2":20},"2871":{"d":14,"dB":"2018-11-24T21:00:00Z","t1":41,"t2":67}},"k":"7b2515"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20181212.json b/src/test/resources/__files/mpgstats.ligue-1.20181212.json deleted file mode 100644 index 3d4ca29..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20181212.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2018-12-12T18:06:00Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38,"cD":{"cN":"CurrentDay","d":17,"lD":17}},"lS":{"cN":"Ligue-1-2017-2018","i":3,"n":"Ligue 1 2017-2018","mD":38}},"mxD":17,"np":637,"le":{"1":"Ligue-1"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":38,"s":{"g":"10","s":"61","n":"10","a":"6.15","d":"1.12","Og":"21","Os":"154","On":"26","Oa":"5.94","Od":"1.44","Ap":"25","p":{"21":{"n":8,"g":1},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":7.5,"g":2},"9":{"n":5},"10":{"n":5},"13":{"n":8.5,"g":3},"14":{"n":6,"g":1},"16":{"n":5,"g":1}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":22,"s":{"s":"71","n":"12","a":"5.96","d":"0.43","Og":"1","Os":"151","On":"26","Oa":"5.83","Od":"0.77","Dp":"25","p":{"21":{"n":6},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":5},"5":{"n":6},"7":{"n":6},"8":{"n":6},"9":{"n":6},"12":{"n":7},"13":{"n":6},"14":{"n":6},"15":{"n":5.5}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":34,"s":{"g":"3","s":"86","n":"15","a":"5.73","d":"1.09","Og":"12","Os":"190","On":"32","Oa":"5.94","Od":"1.18","Mp":"7","Ap":"24","p":{"21":{"n":8,"g":2},"1":{"n":6},"2":{"n":7},"3":{"n":6},"4":{"n":6.5,"g":1},"5":{"n":7,"g":1},"6":{"n":6.5,"g":1},"7":{"n":4,"s":1},"8":{"n":5},"9":{"n":7},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":4,"s":1},"14":{"n":4.5},"15":{"n":4.5}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":20,"s":{"g":"3","s":"79","n":"14","a":"5.68","d":"0.99","Og":"5","Os":"170","On":"30","Oa":"5.68","Od":"0.99","Mp":"20","Ap":"4","p":{"21":{"n":7},"1":{"n":5.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":7.5,"g":1},"11":{"n":6.5,"g":1},"12":{"n":7},"13":{"n":6},"14":{"n":4},"15":{"n":6},"16":{"n":5.5}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":21,"s":{"s":"62","n":"11","a":"5.68","d":"1.05","Os":"117","On":"20","Oa":"5.88","Od":"1.05","Mp":"19","p":{"21":{"n":6},"5":{"n":7},"6":{"n":5.5},"7":{"n":6},"8":{"n":5.5,"s":1},"9":{"n":7},"10":{"n":4},"11":{"n":6.5},"12":{"n":7},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4.5}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":44,"s":{"g":"12","s":"75","n":"11","a":"6.86","d":"0.88","Og":"19","Os":"160","On":"26","Oa":"6.17","Od":"1.6","Mp":"3","Ap":"21","p":{"21":{"n":6,"g":1,"s":1},"2":{"n":7.5,"g":2,"s":1},"3":{"n":7,"g":1},"4":{"n":7,"g":1},"8":{"n":7},"9":{"n":9,"g":4},"10":{"n":7,"g":1},"11":{"n":6.5,"g":1,"s":1},"12":{"n":7,"g":1},"13":{"n":6},"15":{"n":6,"g":1},"16":{"n":5.5,"s":1}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":25,"s":{"g":"1","s":"78","n":"13","a":"6","d":"0.9","Og":"1","Os":"155","On":"27","Oa":"5.74","Od":"0.81","Mp":"5","Dp":"21","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":6},"9":{"n":8},"10":{"n":7,"g":1},"11":{"n":7},"12":{"n":5},"14":{"n":5.5},"15":{"n":5.5}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":24,"s":{"g":"2","s":"67","n":"11","a":"6.09","d":"0.82","Og":"3","Os":"157","On":"27","Oa":"5.81","Od":"0.87","Mp":"5","Dp":"15","p":{"21":{"n":6},"2":{"n":5},"3":{"n":6.5},"4":{"n":6},"5":{"n":6},"6":{"n":7.5,"g":1},"7":{"n":7,"g":1,"s":1},"9":{"n":7},"11":{"n":6},"12":{"n":5},"14":{"n":6},"16":{"n":5}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"55","On":"11","Oa":"5","Od":"1.04","Dp":"10"},"c":2},{"i":100,"n":"Areola","f":"Alphonse","p":"G","r":18,"s":{"s":"52","n":"9","a":"5.78","d":"0.42","Os":"156","On":"27","Oa":"5.78","Od":"1.03","Gp":"27","p":{"21":{"n":6},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":6},"8":{"n":5.5},"10":{"n":6},"11":{"n":6},"13":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":2},{"i":121,"n":"Rabiot","f":"Adrien","p":"M","r":23,"s":{"g":"2","ao":"1","s":"87","n":"14","a":"6.21","d":"1.01","Og":"2","Oao":"1","Os":"178","On":"30","Oa":"5.93","Od":"1","Mp":"25","Ap":"1","p":{"21":{"n":5,"s":1},"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":7.5},"4":{"n":5},"5":{"n":6},"6":{"n":4.5,"a":1},"7":{"n":6},"8":{"n":7},"10":{"n":7.5,"g":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":7},"14":{"n":7},"16":{"n":7}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":10,"s":{"n":0,"Os":"17","On":"3","Oa":"5.67","Od":"0.47","Gp":"3"},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":14,"s":{"s":"49","n":"9","a":"5.5","d":"0.91","Os":"138","On":"25","Oa":"5.54","Od":"1.01","Dp":"25","p":{"21":{"n":7},"3":{"n":6},"4":{"n":7},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":3.5},"13":{"n":6},"14":{"n":5},"16":{"n":5.5}}},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":13,"s":{"g":"1","s":"70","n":"13","a":"5.38","d":"0.74","Og":"5","Os":"149","On":"28","Oa":"5.32","Od":"0.89","Mp":"14","Dp":"1","Ap":"5","p":{"21":{"n":5,"s":1},"1":{"n":7},"2":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6.5,"g":1},"10":{"n":6},"13":{"n":6},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":52,"s":{"g":"11","s":"79","n":"12","a":"6.63","d":"1.04","Og":"21","Os":"142","On":"20","Oa":"7.13","Od":"1.25","Mp":"3","Ap":"17","p":{"21":{"n":10,"g":4},"1":{"n":6,"g":1},"2":{"n":7.5,"g":1},"3":{"n":6,"g":1},"4":{"n":7,"g":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7.5,"g":2},"9":{"n":8,"g":1},"11":{"n":4},"12":{"n":7,"g":1},"13":{"n":7.5,"g":1},"15":{"n":6,"g":1}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":7,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Og":"1","Os":"92","On":"16","Oa":"5.78","Od":"0.88","Mp":"1","Dp":"14","p":{"14":{"n":5.5,"s":1},"15":{"n":5},"16":{"n":5,"s":1}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":9,"s":{"g":"1","s":"34","n":"7","a":"4.86","d":"0.58","Og":"3","Os":"109","On":"21","Oa":"5.19","Od":"1.04","Mp":"10","Ap":"8","p":{"6":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"11":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5}}},"c":2},{"i":1325,"n":"Jes\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"16","On":"4","Oa":"4","Od":"0.71","Ap":"1"},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":6,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":2},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":2},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":12,"s":{"s":"45","n":"9","a":"5.06","d":"0.55","Os":"45","On":"9","Oa":"5.06","Od":"0.55","Mp":"3","Dp":"6","p":{"1":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5.5},"11":{"n":6},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5},"16":{"n":4}}},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Os":"69","On":"13","Oa":"5.35","Od":"0.72","Mp":"11","p":{"1":{"n":5},"5":{"n":4},"10":{"n":5.5,"s":1}}},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":4,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":2},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":6,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"0.94","Ap":"3","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":4}}},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"7":{"n":5}}},"c":2},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":2},{"i":2661,"n":"Buffon","f":"Gianluigi","p":"G","r":18,"s":{"s":"40","n":"7","a":"5.71","d":"0.7","Os":"40","On":"7","Oa":"5.71","Od":"0.7","Gp":"7","p":{"1":{"n":6},"2":{"n":5},"6":{"n":6},"7":{"n":5},"9":{"n":7},"12":{"n":5},"14":{"n":6}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":14,"s":{"g":"2","s":"60","n":"11","a":"5.45","d":"1.08","Og":"2","Os":"60","On":"11","Oa":"5.45","Od":"1.08","Mp":"5","Ap":"6","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":7,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":8},"14":{"n":5},"16":{"n":5}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":1,"s":{"n":0},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":13,"s":{"s":"63","n":"12","a":"5.29","d":"0.92","Os":"63","On":"12","Oa":"5.29","Od":"0.92","Dp":"12","p":{"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":6,"s":1},"10":{"n":6.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5},"15":{"n":4},"16":{"n":5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":14,"s":{"s":"42","n":"8","a":"5.31","d":"0.61","Os":"42","On":"8","Oa":"5.31","Od":"0.61","Mp":"3","Dp":"5","p":{"5":{"n":6},"6":{"n":5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"15":{"n":5}}},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":13,"s":{"s":"52","n":"10","a":"5.2","d":"0.64","Os":"119","On":"23","Oa":"5.17","Od":"0.65","Mp":"20","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":6},"14":{"n":5.5},"15":{"n":5.5}}},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":20,"s":{"s":"88","n":"16","a":"5.5","d":"0.94","Os":"192","On":"35","Oa":"5.49","Od":"1.05","Gp":"35","p":{"26":{"n":6},"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":8},"8":{"n":5.5},"9":{"n":6},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6.5},"15":{"n":4},"16":{"n":5}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":11,"s":{"g":"4","s":"66","n":"14","a":"4.71","d":"1.18","Og":"10","Os":"162","On":"34","Oa":"4.76","Od":"1.22","Mp":"4","Ap":"30","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":7,"g":2},"7":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":5,"s":1},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":6,"g":1},"16":{"n":7,"g":1}}},"c":3},{"i":63,"n":"Prior","f":"Jerome","p":"G","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5","Gp":"2"},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":23,"s":{"g":"8","s":"88","n":"16","a":"5.53","d":"1.28","Og":"14","Os":"181","On":"35","Oa":"5.19","Od":"1.33","Mp":"7","Ap":"20","p":{"26":{"n":4,"s":1},"1":{"n":5},"2":{"n":5,"g":1},"3":{"n":7.5,"g":2},"4":{"n":4.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"9":{"n":8,"g":2},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":6.5,"g":1}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":16,"s":{"s":"70","n":"14","a":"5","d":"0.65","Og":"3","Os":"145","On":"28","Oa":"5.18","Od":"0.71","Mp":"20","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":6,"s":1},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":4},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5,"s":1}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":9,"s":{"s":"41","n":"8","a":"5.13","d":"0.6","Os":"150","On":"28","Oa":"5.36","Od":"0.85","Dp":"28","p":{"26":{"n":4},"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5}}},"c":3},{"i":116,"n":"Karamoh","f":"Yann","p":"A","r":12,"s":{"g":"2","s":"52","n":"10","a":"5.25","d":"0.81","Og":"2","Os":"52","On":"10","Oa":"5.25","Od":"0.81","Mp":"2","Ap":"8","p":{"6":{"n":6.5,"g":1,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":5.5},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":3},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":5,"s":{"s":"10","n":"2","a":"5","Og":"1","Os":"50","On":"10","Oa":"5","Od":"0.45","Mp":"5","p":{"2":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":8,"s":{"s":"7","n":"1","a":"7.5","Os":"12","On":"2","Oa":"6.25","Od":"1.25","Dp":"2","p":{"9":{"n":7.5}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":8,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"26","On":"6","Oa":"4.33","Od":"0.37","Dp":"4","p":{"1":{"n":4},"2":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4}}},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":7,"s":{"g":"1","s":"42","n":"9","a":"4.72","d":"0.89","Og":"4","Os":"123","On":"26","Oa":"4.75","Od":"1","Mp":"1","Ap":"19","p":{"26":{"n":4},"2":{"n":3},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"16":{"n":6,"s":1}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Dp":"2","p":{"1":{"n":3.5}}},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":11,"s":{"s":"58","n":"12","a":"4.88","d":"0.77","Os":"159","On":"31","Oa":"5.15","Od":"0.89","Dp":"31","p":{"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":6},"8":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":6,"s":1},"16":{"n":4.5}}},"c":3},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":5,"s":{"n":0},"c":3},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":5,"s":{"n":0,"Os":"26","On":"6","Oa":"4.33","Od":"0.47","Dp":"3","p":{"26":{"n":4}}},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":8,"s":{"n":0,"Os":"12","On":"3","Oa":"4"},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":13,"s":{"s":"63","n":"11","a":"5.73","d":"0.72","Os":"105","On":"19","Oa":"5.53","Od":"0.73","Mp":"17","p":{"26":{"n":5},"6":{"n":5.5},"7":{"n":7},"8":{"n":6},"9":{"n":7},"10":{"n":5},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5.5}}},"c":3},{"i":1203,"n":"Lerager","f":"Lukas","p":"M","r":15,"s":{"s":"70","n":"14","a":"5","d":"0.65","Og":"2","Os":"180","On":"35","Oa":"5.14","Od":"0.8","Mp":"35","p":{"26":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":5},"13":{"n":5},"14":{"n":4.5,"s":1},"16":{"n":5}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0},"c":3},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":5,"s":{"s":"19","n":"4","a":"4.75","d":"0.43","Os":"41","On":"9","Oa":"4.56","Od":"0.5","Mp":"3","Ap":"2","p":{"1":{"n":4},"8":{"n":5},"9":{"n":5,"s":1},"16":{"n":5}}},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0},"c":3},{"i":2149,"n":"Kound\u00e9","f":"Jules","p":"D","r":15,"s":{"s":"81","n":"16","a":"5.06","d":"0.83","Og":"2","Os":"178","On":"34","Oa":"5.24","Od":"0.81","Dp":"33","p":{"26":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":5},"16":{"n":5}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":17,"s":{"g":"1","s":"73","n":"13","a":"5.65","d":"1.04","Og":"1","Os":"159","On":"28","Oa":"5.7","Od":"0.99","Dp":"28","p":{"26":{"n":5},"1":{"n":4},"3":{"n":6},"4":{"n":4},"6":{"n":5.5},"7":{"n":7},"8":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":5},"16":{"n":8,"g":1}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":9,"s":{"s":"30","n":"6","a":"5","d":"0.58","Os":"30","On":"6","Oa":"5","Od":"0.58","Mp":"6","p":{"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"13":{"n":4.5}}},"c":3},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":13,"s":{"s":"60","n":"12","a":"5","d":"0.82","Os":"60","On":"12","Oa":"5","Od":"0.82","Dp":"12","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":5.5},"9":{"n":6.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5},"15":{"n":4}}},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassin","p":"M","r":1,"s":{"n":0},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":15,"s":{"g":"1","s":"61","n":"12","a":"5.08","d":"0.53","Og":"1","Os":"61","On":"12","Oa":"5.08","Od":"0.53","Mp":"4","Ap":"8","p":{"2":{"n":5.5},"3":{"n":5},"4":{"n":5},"5":{"n":6.5,"g":1},"6":{"n":5},"7":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5},"13":{"n":4.5},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.47","Os":"15","On":"3","Oa":"5.17","Od":"0.47","Mp":"3","p":{"1":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"10":{"n":5.5,"s":1}}},"c":3},{"i":2863,"n":"Cornelius","f":"Andreas","p":"A","r":13,"s":{"g":"2","s":"55","n":"11","a":"5","d":"0.85","Og":"2","Os":"55","On":"11","Oa":"5","Od":"0.85","Ap":"11","p":{"5":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":6.5,"g":1,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":13,"s":{"g":"1","s":"51","n":"10","a":"5.15","d":"0.67","Og":"5","Os":"150","On":"29","Oa":"5.19","Od":"1.01","Mp":"18","Ap":"5","p":{"22":{"n":4,"s":1},"1":{"n":5.5},"2":{"n":5},"5":{"n":5,"s":1},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"12":{"n":7,"g":1,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":5}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":21,"s":{"s":"86","n":"16","a":"5.41","d":"1.15","Os":"184","On":"34","Oa":"5.43","Od":"1.05","Gp":"34","p":{"22":{"n":5},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6},"8":{"n":7.5},"9":{"n":3},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":3.5}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":30,"s":{"g":"3","s":"81","n":"14","a":"5.82","d":"0.99","Og":"9","Os":"184","On":"33","Oa":"5.59","Od":"1.28","Mp":"29","Ap":"4","p":{"22":{"n":4},"2":{"n":7},"3":{"n":4.5},"4":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":6,"g":1},"10":{"n":3.5},"11":{"n":7,"g":1},"12":{"n":7},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5.5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":14,"s":{"s":"61","n":"12","a":"5.13","d":"1.02","Os":"149","On":"28","Oa":"5.34","Od":"0.95","Dp":"28","p":{"22":{"n":4},"1":{"n":6},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":3},"6":{"n":5.5},"8":{"n":6.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":6},"13":{"n":5.5}}},"c":4},{"i":69,"n":"Salibur","f":"Yannis","p":"M","r":11,"s":{"g":"1","s":"72","n":"14","a":"5.14","d":"0.89","Og":"2","Os":"128","On":"25","Oa":"5.12","Od":"1.02","Mp":"16","Ap":"7","p":{"2":{"n":4.5,"e":2745,"c":14,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6.5,"g":1,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":6},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":7,"s":1},"16":{"n":5}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":8,"s":{"s":"64","n":"14","a":"4.61","d":"0.47","Og":"1","Os":"148","On":"33","Oa":"4.5","Od":"0.7","Mp":"21","Ap":"7","p":{"22":{"n":4},"1":{"n":5},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":4.5,"s":1},"5":{"n":4},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":15,"s":{"s":"85","n":"15","a":"5.7","d":"0.91","Os":"176","On":"31","Oa":"5.69","Od":"0.84","Mp":"28","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":7,"s":1},"8":{"n":7.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":7},"14":{"n":5},"15":{"n":7},"16":{"n":5.5}}},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":15,"s":{"g":"4","s":"81","n":"16","a":"5.06","d":"1.07","Og":"4","Os":"88","On":"18","Oa":"4.89","Od":"1.14","Mp":"5","Ap":"13","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":5},"14":{"n":4},"15":{"n":4.5},"16":{"n":6,"g":1}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":6,"s":{"g":"1","s":"31","n":"7","a":"4.43","d":"0.73","Og":"8","Os":"106","On":"22","Oa":"4.82","Od":"1.11","Ap":"19","p":{"22":{"n":4},"3":{"n":4,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"10":{"n":3.5},"14":{"n":4.5,"s":1},"15":{"n":6,"g":1,"s":1},"16":{"n":4.5,"s":1}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":9,"s":{"n":0,"Os":"22","On":"4","Oa":"5.5","Od":"1.66","Gp":"3"},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0,"Os":"24","On":"5","Oa":"4.8","Od":"0.75","Mp":"1"},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":5,"s":{"n":0,"Os":"10","On":"3","Oa":"3.33","Od":"0.47","Dp":"3"},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"16":{"n":5}}},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":11,"s":{"s":"44","n":"9","a":"4.89","d":"0.46","Os":"44","On":"9","Oa":"4.89","Od":"0.46","Mp":"9","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":4}}},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":28,"s":{"g":"8","s":"86","n":"15","a":"5.73","d":"1.35","Og":"12","Os":"165","On":"30","Oa":"5.5","Od":"1.29","Mp":"8","Ap":"21","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"8":{"n":8,"g":2},"9":{"n":4.5},"10":{"n":7,"g":1},"11":{"n":4},"12":{"n":5},"13":{"n":8,"g":1},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":6,"g":1}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":19,"s":{"g":"2","s":"62","n":"11","a":"5.64","d":"0.88","Og":"6","Oao":"1","Os":"146","On":"26","Oa":"5.62","Od":"1.04","Dp":"26","p":{"2":{"n":6.5},"3":{"n":5},"4":{"n":5},"6":{"n":5},"10":{"n":4.5},"11":{"n":6},"12":{"n":6,"g":1},"13":{"n":7.5,"g":1},"14":{"n":5},"15":{"n":6.5},"16":{"n":5}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":8,"s":{"s":"26","n":"5","a":"5.2","d":"0.4","Og":"1","Os":"105","On":"21","Oa":"5","Od":"0.76","Mp":"12","Dp":"1","p":{"22":{"n":4},"1":{"n":4.5,"s":1},"5":{"n":5.5,"s":1},"7":{"n":5.5},"10":{"n":5.5},"11":{"n":5,"s":1}}},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":8,"s":{"s":"57","n":"11","a":"5.23","d":"0.78","Os":"147","On":"29","Oa":"5.09","Od":"0.93","Mp":"2","Dp":"27","p":{"22":{"n":5},"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":6},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":6.5}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":16,"s":{"s":"86","n":"16","a":"5.38","d":"0.93","Os":"166","On":"30","Oa":"5.53","Od":"0.81","Mp":"30","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":7},"9":{"n":4},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":7},"16":{"n":4}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":13,"s":{"s":"75","n":"15","a":"5.03","d":"0.96","Og":"2","Os":"157","On":"30","Oa":"5.25","Od":"1.05","Dp":"30","p":{"1":{"n":6.5},"2":{"n":3.5},"4":{"n":5},"5":{"n":4},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5}}},"c":4},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":1,"s":{"n":0},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":14,"s":{"g":"2","s":"83","n":"16","a":"5.19","d":"1.01","Og":"2","Os":"83","On":"16","Oa":"5.19","Od":"1.01","Dp":"16","p":{"1":{"n":6.5},"2":{"n":6,"s":1},"3":{"n":5.5},"4":{"n":6},"5":{"n":4},"6":{"n":6.5,"g":1},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":4}}},"c":4},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":1,"s":{"g":"1","s":"6","n":"1","a":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"2":{"n":6,"g":1,"s":1}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":5,"s":{"s":"16","n":"4","a":"4","d":"0.35","Os":"16","On":"4","Oa":"4","Od":"0.35","Dp":"4","p":{"7":{"n":4.5},"9":{"n":4},"10":{"n":3.5,"s":1},"16":{"n":4,"s":1}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":1,"s":{"n":0},"c":4},{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":12,"s":{"g":"3","s":"60","n":"13","a":"4.62","d":"0.9","Og":"5","Os":"121","On":"27","Oa":"4.48","Od":"0.82","Ap":"24","p":{"33":{"n":4,"s":1},"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1},"4":{"n":6.5,"g":1},"5":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":4},"15":{"n":4},"16":{"n":4}}},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":12,"s":{"g":"2","s":"89","n":"17","a":"5.26","d":"0.79","Sg":"2","Ss":"89","Sn":"17","Sa":"5.26","Sd":"0.79","Og":"3","Os":"154","On":"31","Oa":"4.98","Od":"1","Mp":"31","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":6,"g":1},"17":{"n":5.5}}},"c":5},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":12,"s":{"s":"72","n":"15","a":"4.83","d":"0.7","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.35","Os":"110","On":"23","Oa":"4.8","Od":"0.62","Dp":"21","p":{"1":{"n":4,"e":2733,"c":3,"s":1},"2":{"n":5.5},"3":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":6},"9":{"n":4.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":4}}},"c":5},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":9,"s":{"g":"1","s":"63","n":"14","a":"4.5","d":"1.05","Og":"1","Os":"121","On":"28","Oa":"4.32","Od":"0.85","Mp":"7","Ap":"11","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":3.5},"7":{"n":4,"s":1},"8":{"n":7,"g":1},"9":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":3.5}}},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":11,"s":{"g":"2","s":"58","n":"12","a":"4.83","d":"0.55","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"105","On":"23","Oa":"4.57","Od":"0.88","Mp":"10","Ap":"8","p":{"2":{"n":6,"g":1},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":6,"g":1,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"17":{"n":4.5}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":3,"s":{"s":"19","n":"4","a":"4.88","d":"0.54","Os":"80","On":"17","Oa":"4.74","Od":"0.6","Dp":"16","p":{"1":{"n":4},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5}}},"c":5},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":12,"s":{"s":"74","n":"14","a":"5.29","d":"0.9","Os":"159","On":"32","Oa":"4.97","Od":"0.89","Dp":"32","p":{"33":{"n":5},"1":{"n":3.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":4}}},"c":5},{"i":344,"n":"Guilbert","f":"Frederic","p":"D","r":11,"s":{"s":"75","n":"15","a":"5.03","d":"0.9","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Og":"1","Os":"169","On":"35","Oa":"4.84","Od":"1.01","Mp":"8","Dp":"26","Ap":"1","p":{"33":{"n":4},"2":{"n":5},"3":{"n":5.5},"4":{"n":7},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"15":{"n":5.5},"16":{"n":4},"17":{"n":5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":20,"s":{"s":"94","n":"17","a":"5.56","d":"0.87","Ss":"94","Sn":"17","Sa":"5.56","Sd":"0.87","Os":"117","On":"21","Oa":"5.6","Od":"0.87","Gp":"20","p":{"1":{"n":3},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":7},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"14":{"n":5},"15":{"n":5.5},"16":{"n":6},"17":{"n":5}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":6,"s":{"s":"29","n":"6","a":"4.92","d":"0.45","Os":"29","On":"6","Oa":"4.92","Od":"0.45","Dp":"6","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"11":{"n":5}}},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":6,"s":{"s":"30","n":"6","a":"5","d":"0.29","Os":"115","On":"23","Oa":"5","Od":"0.53","Mp":"15","Dp":"1","p":{"33":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5},"15":{"n":5,"s":1}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":5,"s":{"s":"20","n":"4","a":"5.13","d":"0.89","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.03","Os":"62","On":"13","Oa":"4.81","Od":"1.17","Mp":"5","Dp":"6","p":{"33":{"n":5},"6":{"n":5,"s":1},"15":{"n":6.5},"16":{"n":4},"17":{"n":5}}},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":2,"s":{"n":0},"c":5},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":9,"s":{"g":"2","s":"48","n":"10","a":"4.8","d":"0.68","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"3","Os":"123","On":"26","Oa":"4.73","Od":"0.79","Mp":"19","Ap":"1","p":{"5":{"n":4.5},"7":{"n":6,"g":1},"8":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1,"s":1}}},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"s":"33","n":"7","a":"4.79","d":"0.52","Os":"92","On":"20","Oa":"4.63","Od":"0.93","Mp":"18","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5,"s":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":5.5}}},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"23","On":"5","Oa":"4.6","Od":"0.8","Mp":"2"},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":10,"s":{"s":"43","n":"9","a":"4.78","d":"0.71","Os":"65","On":"14","Oa":"4.64","Od":"0.77","Mp":"2","Dp":"12","p":{"1":{"n":3.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":5},"6":{"n":4},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5.5},"16":{"n":4.5}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":7,"s":{"n":0,"Os":"90","On":"17","Oa":"5.29","Od":"0.89","Gp":"17"},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":5,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.49","Mp":"2","Ap":"1"},"c":5},{"i":1621,"n":"Beauvue","f":"Claudio","p":"A","r":9,"s":{"g":"3","s":"67","n":"14","a":"4.82","d":"1.06","Sg":"3","Ss":"67","Sn":"14","Sa":"4.82","Sd":"1.06","Og":"3","Os":"121","On":"28","Oa":"4.34","Od":"0.96","Mp":"7","Ap":"14","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":7,"g":1},"6":{"n":4},"7":{"n":4},"8":{"n":5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4},"12":{"n":4},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":6.5,"g":1},"16":{"n":5},"17":{"n":5}}},"c":5},{"i":1706,"n":"Fajr","f":"Faycal","p":"M","r":17,"s":{"g":"2","s":"87","n":"16","a":"5.47","d":"0.74","Sg":"1","Ss":"36","Sn":"7","Sa":"5.21","Sd":"0.52","Og":"2","Os":"173","On":"33","Oa":"5.26","Od":"0.8","Mp":"31","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6.5},"6":{"n":6,"g":1},"7":{"n":6},"8":{"n":7},"9":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":5.5,"g":1}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":8,"s":{"s":"38","n":"8","a":"4.75","d":"0.75","Og":"1","Os":"91","On":"19","Oa":"4.79","Od":"0.8","Mp":"10","Ap":"2","p":{"33":{"n":5},"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":6},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":3.5},"14":{"n":5}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":9,"s":{"s":"55","n":"11","a":"5","d":"0.74","Ss":"5","Sn":"1","Sa":"5","Os":"59","On":"12","Oa":"4.92","Od":"0.76","Mp":"1","Dp":"11","p":{"1":{"n":4},"2":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":4},"10":{"n":5,"s":1},"12":{"n":6.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":5},"17":{"n":5}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":8,"s":{"s":"4","n":"1","a":"4","Os":"45","On":"10","Oa":"4.5","Od":"0.5","Mp":"2","Ap":"2","p":{"33":{"n":4},"1":{"n":4,"s":1}}},"c":5},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":1,"s":{"n":0},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":9,"s":{"s":"65","n":"15","a":"4.37","d":"0.56","Ss":"30","Sn":"7","Sa":"4.29","Sd":"0.52","Os":"65","On":"15","Oa":"4.37","Od":"0.56","Mp":"1","Ap":"14","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":3.5}}},"c":5},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":3,"s":{"s":"27","n":"6","a":"4.58","d":"0.93","Ss":"23","Sn":"5","Sa":"4.6","Sd":"1.02","Os":"27","On":"6","Oa":"4.58","Od":"0.93","Mp":"1","Dp":"5","p":{"10":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":6},"16":{"n":3},"17":{"n":4}}},"c":5},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":10,"s":{"s":"39","n":"8","a":"4.88","d":"0.33","Og":"1","Os":"75","On":"15","Oa":"5","Od":"0.52","Mp":"10","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1}}},"c":7},{"i":104,"n":"Tavares","f":"J\u00falio","p":"A","r":14,"s":{"g":"3","s":"69","n":"15","a":"4.6","d":"1.17","Ss":"32","Sn":"7","Sa":"4.57","Sd":"0.42","Og":"11","Os":"147","On":"30","Oa":"4.9","Od":"1.29","Ap":"29","p":{"1":{"n":6,"g":1},"2":{"n":8,"g":2},"3":{"n":5},"4":{"n":3.5},"5":{"n":3.5},"6":{"n":4},"7":{"n":4},"8":{"n":3},"11":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":5},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":7},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":15,"s":{"g":"3","s":"75","n":"14","a":"5.36","d":"0.69","Sg":"1","Ss":"21","Sn":"4","Sa":"5.38","Sd":"0.54","Og":"3","Os":"135","On":"26","Oa":"5.19","Od":"0.87","Mp":"25","Dp":"1","p":{"21":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":6},"3":{"n":6.5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":4},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":6,"g":1},"14":{"n":5.5},"15":{"n":6,"g":1},"16":{"n":5.5},"17":{"n":4.5}}},"c":7},{"i":165,"n":"Said","f":"Wesley","p":"A","r":10,"s":{"g":"1","s":"63","n":"14","a":"4.5","d":"0.53","Ss":"27","Sn":"6","Sa":"4.58","Sd":"0.53","Og":"7","Os":"140","On":"29","Oa":"4.83","Od":"1.21","Mp":"4","Ap":"21","p":{"21":{"n":3},"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5.5,"g":1},"6":{"n":4.5},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":7,"s":{"s":"32","n":"7","a":"4.57","d":"0.62","Os":"94","On":"20","Oa":"4.7","Od":"0.93","Mp":"15","p":{"21":{"n":2},"3":{"n":5,"s":1},"6":{"n":5.5},"8":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":3.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":7},{"i":187,"n":"Sammaritano","f":"Frederic","p":"M","r":5,"s":{"s":"40","n":"8","a":"5","d":"0.87","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.25","Os":"98","On":"20","Oa":"4.9","Od":"0.77","Mp":"14","Ap":"3","p":{"2":{"n":6.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5},"17":{"n":5,"s":1}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":6,"s":{"s":"13","n":"3","a":"4.33","d":"0.47","Ss":"4","Sn":"1","Sa":"4","Os":"66","On":"14","Oa":"4.71","Od":"1.1","Mp":"6","Dp":"6","p":{"21":{"n":2},"6":{"n":5},"13":{"n":4},"17":{"n":4}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":9,"s":{"s":"62","n":"14","a":"4.46","d":"0.64","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.61","Os":"141","On":"30","Oa":"4.72","Od":"0.82","Mp":"28","Ap":"2","p":{"1":{"n":4.5},"3":{"n":6},"4":{"n":4},"5":{"n":4.5},"6":{"n":5},"7":{"n":3.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"14":{"n":5.5},"15":{"n":4},"16":{"n":4.5},"17":{"n":4}}},"c":7},{"i":312,"n":"Sliti","f":"Naim","p":"M","r":12,"s":{"s":"85","n":"17","a":"5.03","d":"0.93","Ss":"85","Sn":"17","Sa":"5.03","Sd":"0.93","Og":"5","Os":"194","On":"37","Oa":"5.26","Od":"0.95","Mp":"22","Ap":"11","p":{"1":{"n":7},"2":{"n":5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":4.5},"10":{"n":5.5,"s":1},"11":{"n":5},"12":{"n":3},"13":{"n":5.5},"14":{"n":5},"15":{"n":7},"16":{"n":5},"17":{"n":5,"s":1}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":8,"s":{"s":"22","n":"5","a":"4.5","d":"1.05","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"80","On":"16","Oa":"5.03","Od":"1.17","Mp":"12","p":{"21":{"n":4,"s":1},"10":{"n":3.5},"11":{"n":5.5},"12":{"n":3.5},"13":{"n":4},"17":{"n":6}}},"c":7},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":8,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.78","Sg":"1","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.31","Og":"1","Os":"108","On":"24","Oa":"4.5","Od":"0.83","Mp":"6","Ap":"10","p":{"21":{"n":3},"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":4},"7":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"15":{"n":4},"16":{"n":6.5,"g":1},"17":{"n":3.5}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":9,"s":{"s":"67","n":"15","a":"4.47","d":"1.01","Os":"111","On":"24","Oa":"4.63","Od":"1.02","Mp":"6","Dp":"16","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":3.5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":3},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":9,"s":{"g":"2","s":"74","n":"15","a":"4.93","d":"1.36","Sg":"1","Ss":"25","Sn":"5","Sa":"5.1","Sd":"1.32","Og":"3","Os":"155","On":"33","Oa":"4.7","Od":"1.37","Mp":"4","Dp":"26","p":{"21":{"n":3,"s":1},"1":{"n":5},"2":{"n":7},"3":{"n":7.5,"g":1},"4":{"n":3},"5":{"n":4},"6":{"n":5.5},"7":{"n":4},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":7.5,"g":1},"17":{"n":4}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":4,"s":{"n":0,"Os":"20","On":"4","Oa":"5","Dp":"2"},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":4,"s":{"s":"13","n":"2","a":"6.75","d":"0.25","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.25","Os":"13","On":"2","Oa":"6.75","Od":"0.25","Gp":"2","p":{"16":{"n":7},"17":{"n":6.5}}},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":10,"s":{"s":"78","n":"17","a":"4.59","d":"1.3","Ss":"78","Sn":"17","Sa":"4.59","Sd":"1.3","Oao":"2","Os":"173","On":"38","Oa":"4.55","Od":"1.41","Mp":"8","Dp":"29","p":{"21":{"n":1},"1":{"n":4.5},"2":{"n":7.5},"3":{"n":7},"4":{"n":3},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":2.5},"13":{"n":4},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":3.5}}},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":6,"s":{"n":0,"Og":"6","Os":"96","On":"19","Oa":"5.05","Od":"1.23","Mp":"6","Ap":"6","p":{"21":{"n":3}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":10,"s":{"s":"60","n":"13","a":"4.65","d":"1.06","Ss":"20","Sn":"4","Sa":"5.13","Sd":"0.65","Og":"1","Os":"139","On":"31","Oa":"4.5","Od":"1.29","Dp":"30","p":{"21":{"n":1},"1":{"n":5},"2":{"n":7},"4":{"n":4},"5":{"n":3.5},"7":{"n":3},"8":{"n":4},"9":{"n":5},"11":{"n":5,"s":1},"12":{"n":3.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":10,"s":{"g":"1","s":"14","n":"3","a":"4.67","d":"1.25","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"1.25","Dp":"3","p":{"9":{"n":5,"s":1},"11":{"n":6,"g":1},"12":{"n":3}}},"c":7},{"i":2633,"n":"Ntumba","f":"Levi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":6,"s":{"g":"1","s":"25","n":"5","a":"5","d":"0.77","Og":"1","Os":"25","On":"5","Oa":"5","Od":"0.77","Dp":"5","p":{"1":{"n":6.5,"g":1},"6":{"n":4.5},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5}}},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":9,"s":{"s":"53","n":"11","a":"4.86","d":"1.05","Os":"53","On":"11","Oa":"4.86","Od":"1.05","Mp":"11","p":{"1":{"n":5},"2":{"n":6},"3":{"n":7.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":4.5},"13":{"n":5},"14":{"n":5,"s":1}}},"c":7},{"i":2687,"n":"Jules Keita","f":"","p":"A","r":8,"s":{"g":"2","s":"54","n":"12","a":"4.5","d":"1.1","Og":"2","Os":"54","On":"12","Oa":"4.5","Od":"1.1","Mp":"1","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":8,"g":2,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4},"6":{"n":4,"s":1},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1}}},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":5,"s":{"g":"2","s":"23","n":"4","a":"5.88","d":"0.65","Og":"2","Os":"23","On":"4","Oa":"5.88","Od":"0.65","Dp":"4","p":{"3":{"n":6.5,"g":1},"13":{"n":5},"14":{"n":6.5},"15":{"n":5.5,"g":1}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":12,"s":{"s":"73","n":"15","a":"4.87","d":"1.09","Os":"73","On":"15","Oa":"4.87","Od":"1.09","Gp":"15","p":{"1":{"n":6},"2":{"n":6},"3":{"n":6.5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":4},"8":{"n":2.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":5},"14":{"n":5.5},"15":{"n":4.5}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":9,"s":{"s":"38","n":"9","a":"4.22","d":"0.92","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"38","On":"9","Oa":"4.22","Od":"0.92","Dp":"9","p":{"5":{"n":3},"6":{"n":5.5},"7":{"n":3.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":4,"s":1},"16":{"n":5,"s":1},"17":{"n":4}}},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":8,"s":{"g":"1","s":"69","n":"15","a":"4.6","d":"0.64","Og":"1","Os":"69","On":"15","Oa":"4.6","Od":"0.64","Mp":"4","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":6,"g":1,"s":1},"15":{"n":3.5}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":7,"s":{"s":"23","n":"5","a":"4.6","d":"0.97","Oao":"1","Os":"117","On":"23","Oa":"5.09","Od":"1.01","Dp":"23","p":{"36":{"n":4},"12":{"n":5.5},"13":{"n":5},"14":{"n":4},"15":{"n":3},"16":{"n":5.5}}},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":30,"s":{"g":"12","s":"83","n":"15","a":"5.57","d":"1.58","Og":"19","Os":"168","On":"35","Oa":"4.81","Od":"1.62","Ap":"35","p":{"36":{"n":2},"1":{"n":6.5,"g":1,"s":1},"2":{"n":3.5},"3":{"n":6,"g":1,"s":1},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":4},"7":{"n":6,"g":1},"9":{"n":3},"10":{"n":8.5,"g":3},"11":{"n":6.5,"g":1},"12":{"n":7.5,"g":2},"13":{"n":6.5,"g":1},"14":{"n":5.5},"15":{"n":3},"16":{"n":6.5,"g":1}}},"c":8},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":19,"s":{"g":"4","s":"82","n":"15","a":"5.5","d":"1.2","Og":"4","Os":"92","On":"17","Oa":"5.44","Od":"1.14","Mp":"6","Ap":"10","p":{"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":3.5},"10":{"n":8,"g":1},"11":{"n":7,"g":1},"12":{"n":6.5},"13":{"n":5},"14":{"n":5},"15":{"n":4,"s":1},"16":{"n":6.5,"g":1}}},"c":8},{"i":220,"n":"Diego Carlos","f":"","p":"D","r":14,"s":{"s":"68","n":"14","a":"4.89","d":"0.97","Os":"141","On":"28","Oa":"5.05","Od":"0.89","Dp":"27","p":{"1":{"n":3.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":4},"9":{"n":4},"10":{"n":6.5},"11":{"n":6},"12":{"n":6},"13":{"n":5},"14":{"n":5},"15":{"n":4},"16":{"n":5}}},"c":8},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":15,"s":{"g":"1","s":"71","n":"14","a":"5.11","d":"0.89","Og":"2","Os":"178","On":"35","Oa":"5.1","Od":"0.91","Mp":"31","Ap":"1","p":{"36":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":6.5},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5},"16":{"n":5}}},"c":8},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":6,"s":{"s":"8","n":"2","a":"4","d":"1","Os":"8","On":"2","Oa":"4","Od":"1","Gp":"2","p":{"15":{"n":3,"s":1},"16":{"n":5}}},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":6,"s":{"n":0,"Os":"35","On":"7","Oa":"5","Od":"0.53","Mp":"1","p":{"36":{"n":5,"s":1}}},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":16,"s":{"s":"79","n":"16","a":"4.94","d":"1.17","Og":"1","Os":"179","On":"35","Oa":"5.11","Od":"1.1","Mp":"3","Dp":"30","Ap":"1","p":{"36":{"n":4},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":3},"8":{"n":5},"9":{"n":4.5},"10":{"n":7},"11":{"n":6.5},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":3},"16":{"n":7}}},"c":8},{"i":404,"n":"Djidji","f":"Koffi","p":"D","r":12,"s":{"s":"3","n":"1","a":"3","Os":"71","On":"14","Oa":"5.07","Od":"0.88","Dp":"14","p":{"36":{"n":4},"1":{"n":3}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":8},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":13,"s":{"s":"67","n":"14","a":"4.79","d":"1.13","Os":"67","On":"14","Oa":"4.79","Od":"1.13","Dp":"14","p":{"1":{"n":3},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":3.5},"8":{"n":5,"s":1},"10":{"n":7.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"15":{"n":4},"16":{"n":5}}},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0,"Os":"8","On":"2","Oa":"4"},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":16,"s":{"g":"2","s":"67","n":"12","a":"5.63","d":"1.32","Og":"2","Os":"165","On":"31","Oa":"5.34","Od":"0.97","Mp":"26","p":{"36":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"4":{"n":4.5,"s":1},"8":{"n":6},"9":{"n":5.5,"s":1},"10":{"n":7.5},"11":{"n":7},"12":{"n":7,"g":1},"13":{"n":5.5},"14":{"n":5},"15":{"n":4},"16":{"n":7.5,"g":1}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":1,"s":{"n":0},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":8},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":1,"s":{"n":0},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":9,"s":{"s":"34","n":"7","a":"4.86","d":"0.44","Os":"34","On":"7","Oa":"4.86","Od":"0.44","Mp":"1","Dp":"6","p":{"8":{"n":5},"9":{"n":4.5},"11":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":5}}},"c":8},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":23,"s":{"s":"85","n":"15","a":"5.67","d":"0.87","Os":"195","On":"36","Oa":"5.42","Od":"0.76","Gp":"36","p":{"36":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":5.5},"8":{"n":8},"9":{"n":5},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":7},"14":{"n":4.5},"15":{"n":5}}},"c":8},{"i":1171,"n":"Coulibaly","f":"Kalifa","p":"A","r":9,"s":{"g":"1","s":"56","n":"13","a":"4.35","d":"0.57","Og":"2","Os":"75","On":"17","Oa":"4.44","Od":"0.82","Ap":"15","p":{"36":{"n":4,"s":1},"1":{"n":3.5},"2":{"n":4,"s":1},"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":12,"s":{"g":"1","s":"35","n":"6","a":"5.92","d":"1.27","Og":"1","Os":"109","On":"20","Oa":"5.48","Od":"0.95","Mp":"18","p":{"10":{"n":7},"11":{"n":5.5},"12":{"n":8,"g":1},"13":{"n":4},"14":{"n":5.5},"16":{"n":5.5}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0,"Os":"43","On":"9","Oa":"4.78","Od":"0.42","Mp":"2"},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Mp":"1"},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":9,"s":{"s":"55","n":"12","a":"4.58","d":"0.64","Os":"80","On":"17","Oa":"4.71","Od":"0.67","Mp":"16","p":{"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5,"s":1},"14":{"n":6},"15":{"n":4},"16":{"n":5,"s":1}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":6,"s":{"n":0,"Os":"89","On":"19","Oa":"4.68","Od":"1.13","Dp":"18"},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":9,"s":{"s":"47","n":"9","a":"5.22","d":"0.53","Og":"1","Os":"114","On":"22","Oa":"5.18","Od":"0.61","Mp":"21","p":{"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4.5},"12":{"n":5,"s":1}}},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"15":{"n":4,"s":1}}},"c":8},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"44","On":"10","Oa":"4.4","Od":"0.66","Mp":"1","Ap":"2"},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":5,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":3.5},"3":{"n":4.5}}},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":1,"s":{"n":0},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":8,"s":{"g":"1","s":"53","n":"11","a":"4.86","d":"1","Og":"1","Os":"53","On":"11","Oa":"4.86","Od":"1","Mp":"8","Ap":"3","p":{"1":{"n":4},"2":{"n":3.5},"3":{"n":5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":3.5}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2795,"n":"Miazga","f":"Matt","p":"D","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"1","Os":"36","On":"8","Oa":"4.5","Od":"1","Dp":"8","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":2.5}}},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":12,"s":{"s":"62","n":"12","a":"5.17","d":"0.51","Os":"62","On":"12","Oa":"5.17","Od":"0.51","Mp":"9","Ap":"3","p":{"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6.5},"11":{"n":5},"12":{"n":6},"13":{"n":5,"s":1},"14":{"n":5},"16":{"n":5,"s":1}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":12,"s":{"s":"22","n":"4","a":"5.5","d":"0.35","Os":"22","On":"4","Oa":"5.5","Od":"0.35","Dp":"4","p":{"7":{"n":5},"8":{"n":5.5},"10":{"n":6},"11":{"n":5.5}}},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":25,"s":{"g":"4","s":"88","n":"16","a":"5.53","d":"1.17","Og":"9","Os":"206","On":"35","Oa":"5.9","Od":"1.28","Mp":"26","Ap":"6","p":{"26":{"n":6},"1":{"n":8,"g":2},"2":{"n":4},"3":{"n":4.5},"4":{"n":7},"5":{"n":8,"g":1},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5,"s":1}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":13,"s":{"g":"3","s":"76","n":"16","a":"4.78","d":"1.09","Og":"10","Os":"179","On":"36","Oa":"4.99","Od":"1.3","Mp":"1","Ap":"33","p":{"26":{"n":4},"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":6.5,"g":1,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":6.5,"g":1},"8":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":4}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":38,"s":{"g":"11","s":"82","n":"15","a":"5.5","d":"1.6","Og":"25","Os":"193","On":"33","Oa":"5.86","Od":"1.52","Mp":"27","Ap":"6","p":{"26":{"n":6,"g":1},"1":{"n":6,"g":1,"s":1},"2":{"n":5.5,"g":1},"3":{"n":4.5},"4":{"n":7,"g":1,"s":1},"5":{"n":7.5,"g":2},"6":{"n":5.5,"g":1},"7":{"n":5},"8":{"n":4},"9":{"n":8,"g":1},"11":{"n":4.5},"12":{"n":2.5},"13":{"n":4.5},"14":{"n":8.5,"g":3},"15":{"n":4},"16":{"n":5.5,"g":1}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":21,"s":{"g":"3","s":"75","n":"14","a":"5.39","d":"1.27","Og":"7","Os":"179","On":"33","Oa":"5.44","Od":"1.2","Mp":"28","p":{"26":{"n":5},"1":{"n":8},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":3},"7":{"n":6,"g":1},"10":{"n":6.5,"g":1},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":6},"15":{"n":5,"s":1},"16":{"n":6,"g":1}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":8,"s":{"g":"1","s":"24","n":"5","a":"4.9","d":"0.58","Og":"3","Os":"83","On":"18","Oa":"4.64","Od":"0.98","Mp":"2","Ap":"6","p":{"26":{"n":4,"s":1},"1":{"n":4.5},"3":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5}}},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":11,"s":{"s":"52","n":"10","a":"5.25","d":"0.56","Os":"128","On":"24","Oa":"5.35","Od":"0.73","Mp":"19","p":{"26":{"n":5,"s":1},"1":{"n":6},"3":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6},"13":{"n":5.5},"14":{"n":6},"15":{"n":5}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":11,"s":{"s":"28","n":"6","a":"4.75","d":"0.99","Os":"73","On":"15","Oa":"4.9","Od":"0.9","Gp":"12","p":{"26":{"n":6},"1":{"n":6},"2":{"n":4.5,"s":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":3.5}}},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":14,"s":{"s":"56","n":"11","a":"5.14","d":"1.02","Os":"146","On":"29","Oa":"5.05","Od":"0.9","Dp":"27","p":{"26":{"n":6},"1":{"n":6.5},"2":{"n":3.5},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":5}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":15,"s":{"s":"70","n":"14","a":"5.04","d":"1.19","Os":"169","On":"32","Oa":"5.3","Od":"1","Mp":"4","Dp":"25","p":{"1":{"n":5.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5},"4":{"n":5.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":7.5},"11":{"n":4.5},"12":{"n":3},"13":{"n":6.5},"14":{"n":5},"15":{"n":6},"16":{"n":3}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":6,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Og":"1","Oao":"1","Os":"101","On":"20","Oa":"5.08","Od":"0.93","Dp":"19","p":{"26":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":3.5}}},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":8,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Os":"30","On":"6","Oa":"5.08","Od":"0.73","Mp":"3","Dp":"1","p":{"1":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47"},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":9},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":17,"s":{"s":"57","n":"11","a":"5.23","d":"0.86","Os":"131","On":"26","Oa":"5.06","Od":"0.82","Gp":"26","p":{"2":{"n":5},"7":{"n":5},"8":{"n":4},"9":{"n":6.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":4}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":15,"s":{"s":"67","n":"14","a":"4.82","d":"0.94","Og":"1","Os":"183","On":"34","Oa":"5.4","Od":"1.13","Mp":"23","Dp":"11","p":{"26":{"n":7},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":3},"7":{"n":4.5},"8":{"n":3.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":3.5},"13":{"n":6},"15":{"n":5},"16":{"n":5}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":9,"s":{"g":"1","s":"60","n":"12","a":"5.04","d":"1.23","Og":"2","Oao":"1","Os":"145","On":"29","Oa":"5.02","Od":"1.02","Dp":"29","p":{"26":{"n":6},"2":{"n":4},"3":{"n":4},"4":{"n":4.5},"5":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":4},"13":{"n":8,"g":1},"14":{"n":5.5},"15":{"n":6},"16":{"n":3.5}}},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":10,"s":{"s":"51","n":"11","a":"4.64","d":"1.19","Os":"125","On":"25","Oa":"5","Od":"1.15","Dp":"22","p":{"26":{"n":6},"1":{"n":7},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":3},"7":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":3},"16":{"n":5,"s":1}}},"c":9},{"i":1197,"n":"Ocampos","f":"Lucas","p":"M","r":14,"s":{"g":"2","s":"76","n":"15","a":"5.1","d":"1.07","Og":"5","Os":"172","On":"33","Oa":"5.23","Od":"1.09","Mp":"27","Ap":"2","p":{"26":{"n":4,"s":1},"1":{"n":6},"2":{"n":4},"3":{"n":6,"g":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1},"14":{"n":6},"15":{"n":6},"16":{"n":5}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":11,"s":{"s":"63","n":"13","a":"4.88","d":"0.79","Os":"90","On":"18","Oa":"5.03","Od":"0.89","Mp":"1","Dp":"17","p":{"1":{"n":6},"3":{"n":4},"4":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":3},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":4.5}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":14,"s":{"g":"3","s":"57","n":"12","a":"4.75","d":"0.8","Og":"10","Os":"115","On":"23","Oa":"5","Od":"1.09","Ap":"14","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":3.5},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1}}},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0,"Os":"12","On":"2","Oa":"6","Od":"1","Dp":"1"},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":1,"s":{"n":0},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":1,"s":{"n":0},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":8,"s":{"s":"17","n":"4","a":"4.25","d":"1.03","Os":"17","On":"4","Oa":"4.25","Od":"1.03","Dp":"4","p":{"2":{"n":3.5},"6":{"n":3},"10":{"n":5.5,"s":1},"12":{"n":5,"s":1}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"A","r":1,"s":{"n":0},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":17,"s":{"s":"60","n":"12","a":"5.04","d":"0.97","Os":"60","On":"12","Oa":"5.04","Od":"0.97","Mp":"12","p":{"4":{"n":5},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":3.5},"13":{"n":6},"15":{"n":5,"s":1},"16":{"n":4}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":8,"s":{"s":"21","n":"5","a":"4.3","d":"0.4","Os":"21","On":"5","Oa":"4.3","Od":"0.4","Mp":"1","Ap":"4","p":{"5":{"n":4.5,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1}}},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0,"Os":"40","On":"10","Oa":"4","p":{"33":{"n":4,"s":1}}},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":11,"s":{"s":"73","n":"15","a":"4.9","d":"1.29","Og":"1","Os":"142","On":"29","Oa":"4.91","Od":"1.05","Dp":"29","p":{"33":{"n":6},"1":{"n":3.5},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":3},"8":{"n":6},"9":{"n":5.5},"10":{"n":2},"11":{"n":3.5},"12":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":4}}},"c":10},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":9,"s":{"s":"41","n":"8","a":"5.13","d":"0.54","Os":"110","On":"21","Oa":"5.24","Od":"0.67","Mp":"21","p":{"33":{"n":5},"4":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":5},"15":{"n":6},"16":{"n":5,"s":1}}},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":16,"s":{"ao":"1","s":"77","n":"15","a":"5.13","d":"1.27","Oao":"1","Os":"195","On":"36","Oa":"5.42","Od":"1.3","Gp":"36","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":5},"6":{"n":6.5},"7":{"n":3.5},"8":{"n":8},"9":{"n":4.5},"10":{"n":4},"11":{"n":4,"a":1},"12":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":3}}},"c":10},{"i":144,"n":"Sylla","f":"Issiaga","p":"D","r":7,"s":{"g":"1","s":"26","n":"5","a":"5.3","d":"1.17","Og":"2","Os":"102","On":"21","Oa":"4.88","Od":"1.09","Mp":"3","Dp":"14","Ap":"1","p":{"33":{"n":5,"s":1},"4":{"n":6},"9":{"n":5,"s":1},"11":{"n":3.5},"14":{"n":5},"16":{"n":7,"g":1}}},"c":10},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":4,"s":{"n":0,"Oao":"1","Os":"55","On":"12","Oa":"4.58","Od":"0.86","Dp":"10"},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":9,"s":{"s":"71","n":"15","a":"4.77","d":"0.93","Os":"114","On":"24","Oa":"4.77","Od":"0.97","Dp":"23","p":{"33":{"n":5},"1":{"n":4},"2":{"n":6},"3":{"n":6},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":5},"9":{"n":4.5},"10":{"n":2.5},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":5.5}}},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"1","p":{"10":{"n":4.5,"s":1}}},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":10,"s":{"g":"1","s":"73","n":"15","a":"4.87","d":"0.74","Og":"1","Os":"124","On":"25","Oa":"4.96","Od":"0.62","Mp":"17","Ap":"2","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":6.5,"g":1,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":6,"s":1},"16":{"n":5.5}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":9,"s":{"s":"36","n":"8","a":"4.56","d":"0.39","Og":"2","Os":"106","On":"24","Oa":"4.44","Od":"0.74","Ap":"14","p":{"6":{"n":4,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5}}},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0,"Os":"64","On":"13","Oa":"4.92","Od":"0.62","Mp":"8","Ap":"3","p":{"33":{"n":4,"s":1}}},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":6,"s":{"s":"38","n":"9","a":"4.28","d":"0.67","Og":"1","Os":"116","On":"26","Oa":"4.48","Od":"0.94","Mp":"4","Ap":"12","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1},"3":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":3},"11":{"n":4,"s":1},"12":{"n":4,"s":1},"16":{"n":5.5}}},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":4,"s":{"s":"14","n":"2","a":"7","d":"1","Os":"14","On":"2","Oa":"7","Od":"1","Gp":"2","p":{"15":{"n":6,"s":1},"16":{"n":8}}},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":3,"s":{"s":"21","n":"5","a":"4.2","d":"0.93","Os":"21","On":"5","Oa":"4.2","Od":"0.93","Dp":"5","p":{"9":{"n":4.5},"10":{"n":2.5},"13":{"n":4},"14":{"n":5},"15":{"n":5}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":10,"s":{"g":"3","s":"57","n":"13","a":"4.38","d":"1.29","Og":"3","Os":"57","On":"13","Oa":"4.38","Od":"1.29","Ap":"13","p":{"1":{"n":2.5},"2":{"n":6.5,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6.5,"g":1,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":2.5},"12":{"n":4},"13":{"n":4},"14":{"n":4},"15":{"n":6,"g":1,"s":1},"16":{"n":3.5}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":9,"s":{"s":"69","n":"14","a":"4.93","d":"1.07","Og":"1","Os":"165","On":"34","Oa":"4.85","Od":"0.9","Mp":"1","Dp":"32","p":{"33":{"n":5},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":3},"8":{"n":6},"11":{"n":3},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":6}}},"c":10},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"15","On":"3","Oa":"5","Od":"0.82","Dp":"2","p":{"1":{"n":4}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Sangar\u00e9","f":"Ibrahim","p":"M","r":8,"s":{"g":"1","s":"53","n":"9","a":"5.89","d":"0.7","Og":"2","Os":"140","On":"26","Oa":"5.38","Od":"0.91","Mp":"25","p":{"33":{"n":5},"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":6}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":7,"s":{"s":"17","n":"4","a":"4.25","d":"0.43","Og":"6","Os":"105","On":"22","Oa":"4.77","Od":"1.44","Ap":"19","p":{"33":{"n":4},"1":{"n":4,"s":1},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4}}},"c":10},{"i":1025,"n":"Gradel","f":"Max","p":"A","r":19,"s":{"g":"5","s":"89","n":"16","a":"5.59","d":"1.37","Og":"11","Os":"188","On":"35","Oa":"5.39","Od":"1.44","Mp":"22","Ap":"13","p":{"33":{"n":4},"1":{"n":4},"2":{"n":6},"3":{"n":7,"g":1},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":6,"g":1},"8":{"n":6},"9":{"n":3.5},"10":{"n":3},"11":{"n":4},"12":{"n":7.5,"g":1},"13":{"n":5},"14":{"n":5.5},"15":{"n":7.5,"g":1},"16":{"n":5.5}}},"c":10},{"i":1208,"n":"Fortes","f":"Steven","p":"D","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"24","On":"5","Oa":"4.9","Od":"0.49","Dp":"4","p":{"2":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":3,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5"},"c":10},{"i":1528,"n":"Dossevi","f":"Mathieu","p":"M","r":14,"s":{"g":"2","s":"80","n":"16","a":"5.03","d":"1.01","Og":"3","Os":"177","On":"34","Oa":"5.22","Od":"1.32","Mp":"32","Ap":"2","p":{"1":{"n":3.5},"2":{"n":7,"g":1},"3":{"n":5},"4":{"n":6},"5":{"n":4},"6":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":4.5},"15":{"n":6},"16":{"n":5,"s":1}}},"c":10},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":9,"s":{"s":"48","n":"10","a":"4.85","d":"0.71","Os":"48","On":"10","Oa":"4.85","Od":"0.71","Mp":"10","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1}}},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":12,"s":{"s":"76","n":"16","a":"4.75","d":"1.03","Os":"76","On":"16","Oa":"4.75","Od":"1.03","Mp":"16","p":{"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":7},"5":{"n":4.5},"6":{"n":5.5,"s":1},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":5.5},"16":{"n":5,"s":1}}},"c":10},{"i":2767,"n":"Todibo","f":"Jean-Clair","p":"M","r":9,"s":{"g":"1","s":"49","n":"10","a":"4.9","d":"1.37","Og":"1","Os":"49","On":"10","Oa":"4.9","Od":"1.37","Dp":"10","p":{"2":{"n":5},"3":{"n":7},"4":{"n":3.5},"6":{"n":6},"7":{"n":3.5},"8":{"n":6,"g":1},"9":{"n":5.5},"10":{"n":2.5},"11":{"n":4},"12":{"n":6}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":1,"s":{"n":0},"c":10},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":6,"s":{"s":"13","n":"3","a":"4.5","d":"1.08","Os":"13","On":"3","Oa":"4.5","Od":"1.08","Mp":"2","Dp":"1","p":{"10":{"n":3.5},"11":{"n":4},"16":{"n":6}}},"c":10},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":19,"s":{"s":"70","n":"12","a":"5.83","d":"0.69","Os":"117","On":"22","Oa":"5.32","Od":"0.92","Dp":"22","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"9":{"n":6.5},"10":{"n":7},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":13,"s":{"s":"13","n":"2","a":"6.5","d":"0.5","Og":"1","Os":"105","On":"19","Oa":"5.53","Od":"0.88","Mp":"17","Ap":"1","p":{"1":{"n":7},"2":{"n":6}}},"c":12},{"i":193,"n":"El Ghazi","f":"Anwar","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"54","On":"12","Oa":"4.5","Od":"1.04","Mp":"3","Ap":"2"},"c":12},{"i":211,"n":"Pepe","f":"Nicolas","p":"A","r":36,"s":{"g":"11","s":"102","n":"17","a":"6.03","d":"1.42","Sg":"11","Ss":"102","Sn":"17","Sa":"6.03","Sd":"1.42","Og":"20","Os":"207","On":"38","Oa":"5.46","Od":"1.57","Mp":"28","Ap":"6","p":{"1":{"n":8,"g":1},"2":{"n":4.5},"3":{"n":8},"4":{"n":5.5},"5":{"n":8.5,"g":3},"6":{"n":4.5},"7":{"n":5},"8":{"n":7,"g":1},"9":{"n":7,"g":1},"10":{"n":5.5,"g":1},"11":{"n":7},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":3.5},"15":{"n":6.5,"g":1},"16":{"n":5.5,"g":1},"17":{"n":6.5,"g":1}}},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":25,"s":{"s":"100","n":"17","a":"5.88","d":"0.81","Ss":"100","Sn":"17","Sa":"5.88","Sd":"0.81","Os":"186","On":"35","Oa":"5.31","Od":"1.16","Gp":"35","p":{"1":{"n":5},"2":{"n":7},"3":{"n":7},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":6},"7":{"n":5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":7},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":4.5},"15":{"n":5},"16":{"n":7},"17":{"n":5}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":12,"s":{"g":"1","s":"82","n":"16","a":"5.13","d":"0.94","Ss":"33","Sn":"7","Sa":"4.79","Sd":"0.65","Og":"1","Os":"107","On":"22","Oa":"4.86","Od":"1.07","Mp":"21","p":{"1":{"n":6},"2":{"n":6},"3":{"n":7.5,"g":1},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4.5}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":5,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47"},"c":12},{"i":455,"n":"Jonathan Ikone","f":"","p":"M","r":14,"s":{"g":"1","s":"83","n":"17","a":"4.91","d":"0.6","Sg":"1","Ss":"83","Sn":"17","Sa":"4.91","Sd":"0.6","Og":"2","Os":"152","On":"32","Oa":"4.77","Od":"0.76","Mp":"19","Ap":"8","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5},"5":{"n":6},"6":{"n":6,"g":1},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":4},"16":{"n":5.5},"17":{"n":4}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":27,"s":{"g":"7","s":"91","n":"17","a":"5.35","d":"1.44","Sg":"7","Ss":"91","Sn":"17","Sa":"5.35","Sd":"1.44","Og":"9","Os":"190","On":"36","Oa":"5.28","Od":"1.32","Mp":"26","Ap":"4","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":8,"g":2},"4":{"n":4.5},"5":{"n":5},"6":{"n":3.5},"7":{"n":3.5},"8":{"n":7,"g":2},"9":{"n":8.5,"g":2},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":5},"16":{"n":5,"s":1},"17":{"n":5.5,"s":1}}},"c":12},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":7,"s":{"n":0,"Os":"50","On":"11","Oa":"4.55","Od":"0.99","Mp":"1","Dp":"8"},"c":12},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":2,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"4":{"n":5,"s":1},"14":{"n":5}}},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":15,"s":{"g":"1","s":"86","n":"16","a":"5.38","d":"0.98","Sg":"1","Ss":"86","Sn":"16","Sa":"5.38","Sd":"0.98","Og":"1","Os":"86","On":"16","Oa":"5.38","Od":"0.98","Dp":"16","p":{"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":7.5,"g":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":3.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5}}},"c":12},{"i":954,"n":"Remy","f":"Lo\u00efc","p":"A","r":8,"s":{"g":"1","s":"51","n":"11","a":"4.64","d":"1","Og":"4","Os":"105","On":"23","Oa":"4.57","Od":"1.02","Mp":"3","Ap":"15","p":{"3":{"n":4.5,"s":1},"4":{"n":2.5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":7,"g":1},"16":{"n":4.5}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"11":{"n":5,"s":1}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":12,"s":{"s":"49","n":"10","a":"4.95","d":"0.69","Os":"141","On":"28","Oa":"5.05","Od":"0.67","Mp":"26","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6.5},"14":{"n":3.5},"15":{"n":5,"s":1}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":2,"s":{"n":0},"c":12},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":19,"s":{"s":"90","n":"15","a":"6","d":"0.73","Ss":"18","Sn":"3","Sa":"6","Sd":"1.08","Os":"187","On":"35","Oa":"5.34","Od":"1.07","Mp":"31","p":{"1":{"n":5},"2":{"n":6},"3":{"n":7},"5":{"n":6},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"15":{"n":5.5},"16":{"n":7.5},"17":{"n":5}}},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Araujo","f":"","p":"A","r":10,"s":{"g":"1","s":"47","n":"10","a":"4.7","d":"0.46","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"5","Os":"136","On":"28","Oa":"4.86","Od":"0.91","Mp":"13","Ap":"8","p":{"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"10":{"n":6,"g":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":5},"17":{"n":4.5}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":8,"s":{"s":"53","n":"10","a":"5.3","d":"0.64","Ss":"21","Sn":"4","Sa":"5.25","Sd":"0.75","Os":"107","On":"22","Oa":"4.86","Od":"0.76","Dp":"20","p":{"1":{"n":5},"4":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":5.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":5}}},"c":12},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":7,"s":{"s":"25","n":"5","a":"5.1","d":"0.2","Og":"1","Os":"110","On":"24","Oa":"4.6","Od":"0.92","Dp":"24","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":12},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":17,"s":{"s":"84","n":"16","a":"5.25","d":"0.79","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Oao":"1","Os":"141","On":"30","Oa":"4.7","Od":"0.99","Dp":"29","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":6},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":6},"12":{"n":4},"13":{"n":3.5},"15":{"n":5},"16":{"n":6},"17":{"n":5.5}}},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":5,"s":{"n":0,"Os":"21","On":"4","Oa":"5.25","Od":"0.43","Dp":"1"},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":6,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Gp":"3"},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumare","f":"Boubakary","p":"M","r":8,"s":{"s":"28","n":"6","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"80","On":"17","Oa":"4.74","Od":"0.39","Mp":"9","p":{"5":{"n":4.5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":12},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":1,"s":{"n":0},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":9,"s":{"s":"39","n":"9","a":"4.39","d":"0.46","Ss":"9","Sn":"2","Sa":"4.5","Os":"39","On":"9","Oa":"4.39","Od":"0.46","Ap":"9","p":{"5":{"n":5},"6":{"n":4.5},"7":{"n":3.5},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":13,"s":{"s":"85","n":"17","a":"5","d":"0.57","Ss":"85","Sn":"17","Sa":"5","Sd":"0.57","Os":"85","On":"17","Oa":"5","Od":"0.57","Dp":"17","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5.5},"17":{"n":5}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2791,"n":"Rafael Le\u00e3o","f":"","p":"A","r":8,"s":{"g":"1","s":"31","n":"7","a":"4.5","d":"0.76","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"31","On":"7","Oa":"4.5","Od":"0.76","Ap":"7","p":{"8":{"n":4.5,"s":1},"11":{"n":6,"g":1},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1},"17":{"n":4}}},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":20,"s":{"g":"7","s":"69","n":"14","a":"4.93","d":"1.6","Og":"11","Oao":"1","Os":"129","On":"26","Oa":"4.96","Od":"1.47","Ap":"25","p":{"24":{"n":5,"g":1},"1":{"n":7.5,"g":1,"s":1},"2":{"n":3},"3":{"n":4},"4":{"n":6.5,"g":1},"6":{"n":6.5,"g":1},"7":{"n":3.5},"8":{"n":4},"9":{"n":6,"g":1},"10":{"n":4.5},"12":{"n":3.5,"s":1},"13":{"n":2.5},"14":{"n":6.5,"g":1},"15":{"n":4},"16":{"n":7,"g":2}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":11,"s":{"s":"3","n":"1","a":"3.5","Os":"105","On":"20","Oa":"5.28","Od":"1.09","Gp":"20","p":{"24":{"n":4},"9":{"n":3.5}}},"c":13},{"i":24,"n":"Sidibe","f":"Djibril","p":"D","r":10,"s":{"s":"34","n":"8","a":"4.31","d":"0.7","Og":"1","Os":"122","On":"24","Oa":"5.1","Od":"1.35","Mp":"2","Dp":"21","p":{"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":3.5},"13":{"n":3}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":14,"s":{"g":"1","s":"64","n":"13","a":"4.92","d":"0.78","Og":"2","Os":"165","On":"32","Oa":"5.16","Od":"0.89","Dp":"32","p":{"24":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4},"16":{"n":6.5}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":11,"s":{"s":"59","n":"12","a":"4.96","d":"0.8","Os":"146","On":"29","Oa":"5.05","Od":"0.98","Dp":"29","p":{"24":{"n":5},"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"7":{"n":6},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5}}},"c":13},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":10,"s":{"s":"55","n":"10","a":"5.5","d":"0.97","Os":"128","On":"25","Oa":"5.12","Od":"0.97","Mp":"24","p":{"4":{"n":6},"5":{"n":6},"6":{"n":7},"10":{"n":4.5,"s":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":7},"15":{"n":4.5},"16":{"n":6}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Og":"1","Os":"78","On":"16","Oa":"4.91","Od":"0.57","Dp":"12","p":{"24":{"n":6},"2":{"n":5},"3":{"n":4.5},"10":{"n":5},"12":{"n":4}}},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":7,"s":{"s":"24","n":"5","a":"4.8","d":"0.81","Og":"1","Os":"97","On":"20","Oa":"4.85","Od":"0.98","Dp":"18","p":{"24":{"n":4},"6":{"n":5},"8":{"n":4.5},"9":{"n":3.5},"15":{"n":5},"16":{"n":6}}},"c":13},{"i":284,"n":"Rony Lopes","f":"","p":"M","r":18,"s":{"g":"1","s":"22","n":"4","a":"5.5","d":"1.41","Og":"14","Os":"140","On":"25","Oa":"5.6","Od":"1.15","Mp":"21","p":{"24":{"n":7,"g":1},"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":3.5}}},"c":13},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"38","On":"8","Oa":"4.75","Od":"1.09","Mp":"1","Dp":"7"},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":6,"s":{"s":"21","n":"4","a":"5.38","d":"0.41","Os":"34","On":"7","Oa":"4.93","Od":"0.86","Dp":"5","p":{"1":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":8,"s":{"s":"13","n":"3","a":"4.33","d":"0.94","Os":"60","On":"12","Oa":"5","Od":"0.71","Mp":"4","Dp":"4","p":{"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":3}}},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":2,"s":{"s":"4","n":"1","a":"4","Os":"22","On":"4","Oa":"5.5","Od":"1.12","Gp":"3","p":{"24":{"n":5,"s":1},"10":{"n":4}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":8,"s":{"s":"44","n":"10","a":"4.45","d":"0.57","Os":"59","On":"13","Oa":"4.58","Od":"0.55","Mp":"10","p":{"5":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4},"12":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5}}},"c":13},{"i":884,"n":"Adama Traor\u00e9","f":"","p":"M","r":9,"s":{"s":"23","n":"5","a":"4.6","d":"0.49","Os":"23","On":"5","Oa":"4.6","Od":"0.49","Mp":"4","Ap":"1","p":{"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":4.5},"8":{"n":4.5},"11":{"n":5.5,"s":1}}},"c":13},{"i":1160,"n":"Tielemans","f":"Youri","p":"M","r":13,"s":{"g":"4","s":"74","n":"14","a":"5.32","d":"0.99","Og":"4","Os":"155","On":"29","Oa":"5.36","Od":"0.97","Mp":"25","p":{"24":{"n":6},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4.5},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":3.5},"14":{"n":7},"15":{"n":6,"g":1},"16":{"n":6}}},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":6,"s":{"s":"31","n":"7","a":"4.43","d":"0.49","Og":"1","Os":"45","On":"10","Oa":"4.5","Od":"0.67","Mp":"3","Ap":"4","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"13":{"n":4,"s":1}}},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"33","On":"8","Oa":"4.13","Od":"0.33","Ap":"4"},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":14,"s":{"s":"75","n":"14","a":"5.36","d":"0.81","Os":"75","On":"14","Oa":"5.36","Od":"0.81","Gp":"14","p":{"1":{"n":5.5},"2":{"n":6.5},"3":{"n":6.5},"4":{"n":4},"5":{"n":6},"6":{"n":5},"7":{"n":5},"8":{"n":5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6.5}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"s":"36","n":"9","a":"4.06","d":"0.55","Og":"2","Os":"61","On":"14","Oa":"4.39","Od":"0.99","Mp":"1","Ap":"11","p":{"5":{"n":4},"6":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5,"s":1},"11":{"n":4},"12":{"n":3},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1}}},"c":13},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":9,"s":{"s":"52","n":"11","a":"4.73","d":"0.49","Og":"1","Os":"138","On":"31","Oa":"4.45","Od":"0.81","Mp":"26","p":{"1":{"n":5.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4.5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"10":{"n":4,"s":1},"12":{"n":5,"s":1},"13":{"n":4},"14":{"n":5,"s":1}}},"c":13},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":11,"s":{"s":"44","n":"9","a":"4.89","d":"0.7","Og":"3","Os":"138","On":"27","Oa":"5.11","Od":"0.91","Mp":"27","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":6},"7":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":4}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":8,"s":{"g":"1","s":"21","n":"4","a":"5.25","d":"1.03","Og":"7","Os":"75","On":"13","Oa":"5.77","Od":"1.23","Mp":"2","Ap":"6","p":{"24":{"n":6,"s":1},"1":{"n":7,"g":1},"2":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":4.5}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":14,"s":{"n":0,"Og":"5","Os":"68","On":"12","Oa":"5.67","Od":"1.25","Mp":"8","Ap":"3","p":{"24":{"n":5,"g":1}}},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"28","On":"5","Oa":"5.6","Od":"0.49","Dp":"4","p":{"1":{"n":5,"s":1}}},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":1,"s":{"n":0},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":8,"s":{"g":"1","s":"15","n":"3","a":"5","d":"1.08","Og":"1","Os":"27","On":"6","Oa":"4.5","Od":"0.91","Ap":"3","p":{"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":7,"s":{"s":"32","n":"7","a":"4.64","d":"0.52","Os":"32","On":"7","Oa":"4.64","Od":"0.52","Mp":"7","p":{"8":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":4},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5.5}}},"c":13},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":8,"s":{"s":"49","n":"11","a":"4.5","d":"0.48","Os":"49","On":"11","Oa":"4.5","Od":"0.48","Mp":"10","Ap":"1","p":{"1":{"n":5},"2":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":4},"11":{"n":5},"12":{"n":3.5},"13":{"n":5},"14":{"n":4},"15":{"n":4.5,"s":1}}},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":10,"s":{"s":"41","n":"9","a":"4.56","d":"0.5","Os":"41","On":"9","Oa":"4.56","Od":"0.5","Mp":"6","Ap":"3","p":{"6":{"n":4.5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5},"14":{"n":5},"15":{"n":5}}},"c":13},{"i":2721,"n":"Barreca","f":"Antonio","p":"D","r":11,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Os":"33","On":"7","Oa":"4.71","Od":"0.52","Dp":"7","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4},"6":{"n":5},"8":{"n":4},"11":{"n":5.5}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":12,"s":{"g":"1","s":"58","n":"12","a":"4.83","d":"0.82","Og":"1","Os":"58","On":"12","Oa":"4.83","Od":"0.82","Mp":"4","Dp":"8","p":{"4":{"n":3},"5":{"n":5.5},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4.5},"13":{"n":4},"14":{"n":5},"15":{"n":5.5},"16":{"n":6}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"13":{"n":5,"s":1}}},"c":13},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":7,"s":{"s":"36","n":"8","a":"4.5","d":"0.25","Ss":"13","Sn":"3","Sa":"4.5","Og":"2","Os":"135","On":"28","Oa":"4.82","Od":"0.9","Mp":"14","Ap":"13","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"10":{"n":4,"s":1},"11":{"n":5},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":11,"s":{"s":"67","n":"15","a":"4.5","d":"0.98","Ss":"63","Sn":"14","Sa":"4.5","Sd":"1.02","Os":"139","On":"30","Oa":"4.65","Od":"0.89","Dp":"30","p":{"2":{"n":4.5,"s":1},"4":{"n":4},"5":{"n":3.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":3},"14":{"n":3.5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":7,"s":{"g":"1","s":"33","n":"8","a":"4.19","d":"0.79","Og":"12","Os":"137","On":"27","Oa":"5.09","Od":"1.48","Mp":"15","Ap":"11","p":{"1":{"n":4.5},"2":{"n":6,"g":1},"3":{"n":3.5},"4":{"n":4},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":11,"s":{"s":"65","n":"15","a":"4.33","d":"1.11","Ss":"27","Sn":"7","Sa":"3.93","Sd":"0.86","Os":"164","On":"35","Oa":"4.69","Od":"1.15","Dp":"35","p":{"24":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"5":{"n":3.5},"6":{"n":3},"7":{"n":6},"8":{"n":6},"9":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":2.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3.5},"17":{"n":4}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":18,"s":{"s":"85","n":"17","a":"5","d":"1.1","Ss":"85","Sn":"17","Sa":"5","Sd":"1.1","Os":"194","On":"38","Oa":"5.11","Od":"1.19","Gp":"38","p":{"24":{"n":7},"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":4},"7":{"n":6},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":4},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3},"17":{"n":4.5}}},"c":14},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":11,"s":{"s":"27","n":"6","a":"4.5","d":"0.96","Og":"2","Os":"79","On":"17","Oa":"4.65","Od":"1.13","Mp":"17","p":{"3":{"n":3.5},"4":{"n":4},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":6},"13":{"n":4.5}}},"c":14},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":8,"s":{"g":"1","s":"69","n":"15","a":"4.6","d":"0.82","Sg":"1","Ss":"33","Sn":"7","Sa":"4.79","Sd":"1.03","Og":"2","Os":"140","On":"31","Oa":"4.52","Od":"0.85","Mp":"23","Ap":"4","p":{"24":{"n":4},"1":{"n":5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5,"s":1},"5":{"n":3.5,"s":1},"6":{"n":4},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":6.5,"g":1},"17":{"n":4}}},"c":14},{"i":231,"n":"Petric","f":"Denis","p":"G","r":6,"s":{"n":0},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":17,"s":{"g":"3","s":"78","n":"16","a":"4.91","d":"1.25","Og":"6","Os":"173","On":"35","Oa":"4.96","Od":"1.36","Mp":"25","Ap":"4","p":{"24":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":7.5,"g":1},"9":{"n":7,"g":1},"10":{"n":4},"11":{"n":6,"g":1},"12":{"n":2.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4}}},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":11,"s":{"g":"1","s":"81","n":"17","a":"4.79","d":"1.02","Sg":"1","Ss":"81","Sn":"17","Sa":"4.79","Sd":"1.02","Og":"2","Os":"143","On":"29","Oa":"4.95","Od":"1.05","Mp":"28","p":{"24":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":5.5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":3},"13":{"n":3.5},"14":{"n":4},"15":{"n":6},"16":{"n":4.5},"17":{"n":6.5,"g":1}}},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":10,"s":{"s":"54","n":"13","a":"4.19","d":"0.93","Ss":"4","Sn":"1","Sa":"4.5","Os":"137","On":"30","Oa":"4.58","Od":"0.98","Mp":"1","Dp":"28","p":{"24":{"n":6},"1":{"n":4},"2":{"n":3.5},"3":{"n":5,"s":1},"5":{"n":3},"6":{"n":4},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":3},"14":{"n":3.5},"17":{"n":4.5}}},"c":14},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":10,"s":{"s":"71","n":"15","a":"4.73","d":"0.95","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Og":"2","Os":"164","On":"33","Oa":"4.97","Od":"1.01","Mp":"24","Ap":"1","p":{"24":{"n":7},"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"s":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":3.5},"11":{"n":6},"12":{"n":2.5},"13":{"n":4},"15":{"n":6},"16":{"n":4.5},"17":{"n":4.5}}},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":8,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"37","On":"9","Oa":"4.17","Od":"1.11","Dp":"8","p":{"10":{"n":5},"11":{"n":4.5}}},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":13,"s":{"g":"6","s":"63","n":"13","a":"4.88","d":"1.47","Sg":"3","Ss":"26","Sn":"5","Sa":"5.2","Sd":"1.03","Og":"7","Os":"139","On":"30","Oa":"4.65","Od":"1.21","Mp":"11","Ap":"12","p":{"24":{"n":4,"s":1},"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":4},"4":{"n":5.5,"g":1},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":3},"9":{"n":2},"13":{"n":7,"g":2},"14":{"n":5,"g":1},"15":{"n":4.5},"16":{"n":5.5},"17":{"n":4}}},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":7,"s":{"s":"24","n":"5","a":"4.9","d":"0.66","Os":"81","On":"17","Oa":"4.79","Od":"0.62","Mp":"9","p":{"24":{"n":6},"1":{"n":4.5},"5":{"n":4},"6":{"n":5},"10":{"n":5,"s":1},"14":{"n":6}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":11,"s":{"s":"50","n":"11","a":"4.55","d":"1.03","Og":"1","Os":"110","On":"23","Oa":"4.78","Od":"1.08","Dp":"21","p":{"24":{"n":6},"1":{"n":4.5},"2":{"n":4},"3":{"n":3.5},"4":{"n":5},"5":{"n":3},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"12":{"n":3},"15":{"n":5},"16":{"n":4.5}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":13,"s":{"s":"72","n":"15","a":"4.8","d":"0.7","Ss":"22","Sn":"5","Sa":"4.5","Sd":"0.71","Os":"132","On":"27","Oa":"4.89","Od":"0.76","Mp":"1","Dp":"25","p":{"24":{"n":6},"1":{"n":4.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":6},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":4}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":1,"s":{"n":0},"c":14},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":9,"s":{"s":"47","n":"11","a":"4.27","d":"0.78","Os":"114","On":"25","Oa":"4.56","Od":"0.65","Mp":"16","p":{"1":{"n":4,"e":2735,"c":42},"2":{"n":4.5,"e":2742,"c":42},"3":{"n":5,"e":2752,"c":42,"s":1},"5":{"n":3},"6":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":2.5},"13":{"n":4.5,"s":1}}},"c":14},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":7,"s":{"s":"41","n":"9","a":"4.61","d":"0.39","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.51","Og":"3","Os":"117","On":"25","Oa":"4.7","Od":"0.76","Mp":"6","Ap":"7","p":{"24":{"n":6,"g":1,"s":1},"1":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"15":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":9,"s":{"s":"45","n":"10","a":"4.5","d":"0.32","Ss":"4","Sn":"1","Sa":"4.5","Os":"45","On":"10","Oa":"4.5","Od":"0.32","Ap":"10","p":{"6":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":14},{"i":2722,"n":"Traor\u00e9","f":"Cheick","p":"D","r":6,"s":{"s":"30","n":"7","a":"4.29","d":"1.19","Os":"30","On":"7","Oa":"4.29","Od":"1.19","Dp":"7","p":{"1":{"n":5,"s":1},"3":{"n":3},"4":{"n":4.5},"7":{"n":5},"12":{"n":2},"15":{"n":5.5,"s":1},"16":{"n":5,"s":1}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"10":{"n":5},"11":{"n":5.5,"s":1}}},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":2,"s":{"n":0},"c":14},{"i":40,"n":"Delort","f":"Andy","p":"A","r":20,"s":{"g":"7","s":"89","n":"16","a":"5.59","d":"1.05","Og":"8","Os":"157","On":"31","Oa":"5.08","Od":"1.14","Mp":"5","Ap":"21","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":4},"7":{"n":6.5,"g":1},"8":{"n":6,"g":1},"9":{"n":6.5,"g":1},"10":{"n":6,"g":1},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":4},"14":{"n":7.5,"g":2},"15":{"n":6.5},"16":{"n":4}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Og":"6","Os":"105","On":"22","Oa":"4.77","Od":"1.41","Ap":"13","p":{"36":{"n":4},"1":{"n":4}}},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":22,"s":{"g":"1","s":"89","n":"16","a":"5.56","d":"0.73","Og":"5","Os":"211","On":"37","Oa":"5.7","Od":"0.84","Mp":"37","p":{"36":{"n":6},"1":{"n":4.5},"2":{"n":7,"g":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":7},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5.5}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":19,"s":{"s":"75","n":"14","a":"5.36","d":"0.61","Os":"155","On":"29","Oa":"5.34","Od":"0.76","Dp":"29","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":20,"s":{"g":"1","s":"74","n":"13","a":"5.69","d":"0.5","Og":"1","Os":"163","On":"31","Oa":"5.26","Od":"0.99","Dp":"29","p":{"36":{"n":6},"1":{"n":6,"g":1},"2":{"n":6},"3":{"n":5.5},"4":{"n":7},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"14":{"n":5.5},"15":{"n":6}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":21,"s":{"s":"86","n":"16","a":"5.41","d":"0.75","Os":"183","On":"35","Oa":"5.24","Od":"0.79","Mp":"1","Dp":"33","p":{"36":{"n":6},"1":{"n":4},"2":{"n":6},"3":{"n":5},"4":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":5.5},"13":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":15},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":16,"s":{"g":"1","s":"74","n":"14","a":"5.29","d":"0.92","Og":"2","Os":"178","On":"34","Oa":"5.24","Od":"0.89","Mp":"31","p":{"36":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":8,"g":1},"13":{"n":5},"14":{"n":4,"s":1}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":5,"s":{"s":"18","n":"4","a":"4.5","d":"0.35","Os":"64","On":"15","Oa":"4.27","Od":"0.4","Ap":"6","p":{"1":{"n":5,"s":1},"2":{"n":4,"s":1},"5":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":24,"s":{"g":"7","s":"86","n":"16","a":"5.38","d":"1.38","Og":"10","Os":"155","On":"31","Oa":"5","Od":"1.33","Mp":"1","Ap":"25","p":{"1":{"n":3.5,"e":2733,"c":3},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":4,"s":1},"8":{"n":6.5,"g":1},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":7,"g":1},"12":{"n":8,"g":2},"13":{"n":4},"14":{"n":5.5},"15":{"n":7,"g":1},"16":{"n":3.5}}},"c":15},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":26,"s":{"s":"92","n":"16","a":"5.75","d":"0.83","Os":"205","On":"37","Oa":"5.54","Od":"0.89","Gp":"37","p":{"36":{"n":7},"1":{"n":6},"2":{"n":5.5},"3":{"n":6},"4":{"n":7},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":7},"9":{"n":5},"10":{"n":6},"11":{"n":7},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":21,"s":{"g":"1","s":"69","n":"12","a":"5.79","d":"1.07","Og":"7","Os":"150","On":"28","Oa":"5.38","Od":"1.23","Mp":"17","Ap":"10","p":{"2":{"n":6,"g":1},"3":{"n":6},"4":{"n":5.5},"7":{"n":5.5},"8":{"n":8},"9":{"n":3.5},"11":{"n":7},"12":{"n":6.5},"13":{"n":5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":3,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":6,"s":{"s":"12","n":"3","a":"4.17","d":"0.47","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"0.83","Mp":"7","Ap":"4","p":{"36":{"n":7,"g":1},"1":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":4.5}}},"c":15},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":1,"s":{"n":0},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"2","p":{"36":{"n":5,"s":1},"1":{"n":4.5}}},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"60","On":"12","Oa":"5.04","Od":"0.32","Mp":"9","p":{"36":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":5,"s":1}}},"c":15},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":24,"s":{"s":"81","n":"15","a":"5.4","d":"1","Os":"175","On":"32","Oa":"5.47","Od":"0.99","Mp":"23","Dp":"7","p":{"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":6.5},"12":{"n":7},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5}}},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":1,"s":{"n":0},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":11,"s":{"s":"30","n":"6","a":"5.08","d":"0.84","Og":"1","Os":"61","On":"13","Oa":"4.73","Od":"1.09","Mp":"4","Dp":"9","p":{"36":{"n":4},"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"12":{"n":6},"13":{"n":4},"16":{"n":5}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":13,"s":{"s":"75","n":"15","a":"5","d":"0.32","Og":"1","Os":"163","On":"32","Oa":"5.09","Od":"0.67","Mp":"22","Ap":"4","p":{"36":{"n":6},"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5}}},"c":15},{"i":2268,"n":"Ambroise Oyongo","f":"","p":"D","r":16,"s":{"g":"2","s":"59","n":"11","a":"5.36","d":"1","Og":"2","Os":"74","On":"14","Oa":"5.29","Od":"0.9","Mp":"13","Dp":"1","p":{"36":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":4.5},"6":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":4},"11":{"n":6},"12":{"n":5.5,"s":1},"14":{"n":4.5},"15":{"n":4}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"10":{"n":5,"s":1}}},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":9,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.62","Og":"1","Os":"52","On":"11","Oa":"4.73","Od":"0.62","Ap":"11","p":{"3":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":23,"s":{"g":"2","s":"89","n":"16","a":"5.59","d":"1.08","Og":"2","Os":"89","On":"16","Oa":"5.59","Od":"1.08","Mp":"11","Dp":"5","p":{"1":{"n":3.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1,"s":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7},"9":{"n":5},"10":{"n":7},"11":{"n":7},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":5},"16":{"n":5.5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":1,"s":{"n":0},"c":15},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":16},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":12,"s":{"g":"1","s":"58","n":"12","a":"4.83","d":"0.87","Og":"1","Os":"146","On":"30","Oa":"4.87","Od":"0.95","Mp":"30","p":{"23":{"n":4},"1":{"n":4.5},"2":{"n":5},"3":{"n":7,"g":1},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":4.5,"s":1},"9":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":11,"s":{"g":"1","s":"80","n":"16","a":"5.03","d":"0.84","Og":"1","Os":"176","On":"35","Oa":"5.04","Od":"0.83","Mp":"35","p":{"23":{"n":6},"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":4},"16":{"n":5.5}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":12,"s":{"g":"2","ao":"1","s":"56","n":"11","a":"5.09","d":"1.49","Og":"4","Oao":"1","Os":"106","On":"22","Oa":"4.82","Od":"1.43","Mp":"1","Dp":"21","p":{"1":{"n":2,"a":1},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":3.5},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":6}}},"c":16},{"i":159,"n":"Ismael Traor\u00e9","f":"","p":"D","r":15,"s":{"g":"3","s":"76","n":"14","a":"5.43","d":"0.98","Og":"5","Os":"183","On":"34","Oa":"5.38","Od":"0.94","Dp":"34","p":{"23":{"n":5},"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":6},"7":{"n":5.5,"s":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":7,"g":1},"11":{"n":3.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":9,"s":{"s":"24","n":"5","a":"4.9","d":"0.37","Os":"64","On":"13","Oa":"4.96","Od":"0.46","Mp":"9","p":{"1":{"n":5},"2":{"n":5},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":5.5,"s":1}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":13,"s":{"g":"3","s":"84","n":"16","a":"5.25","d":"0.97","Og":"5","Oao":"1","Os":"162","On":"31","Oa":"5.23","Od":"1.07","Mp":"27","Dp":"3","p":{"23":{"n":7,"g":1},"1":{"n":6,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":7,"g":1},"10":{"n":5},"11":{"n":4},"12":{"n":4},"13":{"n":7.5},"14":{"n":4.5},"15":{"n":6,"g":1},"16":{"n":5.5}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":11,"s":{"ao":"1","s":"63","n":"13","a":"4.85","d":"0.89","Oao":"1","Os":"149","On":"31","Oa":"4.81","Od":"0.75","Mp":"1","Dp":"30","p":{"23":{"n":5},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":11,"s":{"g":"1","s":"64","n":"12","a":"5.38","d":"0.87","Og":"2","Os":"137","On":"26","Oa":"5.29","Od":"0.99","Dp":"25","p":{"23":{"n":6},"2":{"n":4.5},"3":{"n":4},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":7},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":7,"s":{"s":"4","n":"1","a":"4.5","Os":"51","On":"10","Oa":"5.15","Od":"1","Dp":"10","p":{"23":{"n":5},"12":{"n":4.5,"s":1}}},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":10,"s":{"s":"71","n":"14","a":"5.07","d":"0.86","Os":"140","On":"29","Oa":"4.83","Od":"0.82","Mp":"3","Dp":"25","p":{"1":{"n":3},"4":{"n":6},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":5,"s":{"n":0,"Os":"34","On":"7","Oa":"4.86","Od":"0.64","p":{"23":{"n":4,"s":1}}},"c":16},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":18,"s":{"g":"2","s":"82","n":"15","a":"5.47","d":"1.13","Og":"6","Os":"191","On":"34","Oa":"5.62","Od":"1.05","Mp":"29","Ap":"4","p":{"23":{"n":5},"1":{"n":5},"2":{"n":4},"3":{"n":6},"4":{"n":5},"5":{"n":8,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"s":1},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5},"14":{"n":6.5},"15":{"n":4},"16":{"n":4.5}}},"c":16},{"i":371,"n":"Thomas Tour\u00e9","f":"","p":"A","r":3,"s":{"n":0,"Os":"31","On":"7","Oa":"4.43","Od":"0.73","Mp":"1","p":{"23":{"n":4,"s":1}}},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":2,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0,"Os":"34","On":"8","Oa":"4.25","Od":"0.66","Mp":"2","p":{"23":{"n":6}}},"c":16},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":12,"s":{"s":"73","n":"15","a":"4.9","d":"0.66","Os":"123","On":"25","Oa":"4.94","Od":"0.59","Mp":"13","Ap":"9","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4},"16":{"n":4.5}}},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":10,"s":{"g":"1","s":"47","n":"10","a":"4.75","d":"0.87","Og":"2","Os":"111","On":"23","Oa":"4.85","Od":"0.8","Mp":"14","Ap":"2","p":{"1":{"n":7,"g":1},"2":{"n":4},"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":16},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":5,"s":{"n":0},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"0.35","Os":"68","On":"16","Oa":"4.25","Od":"0.35","Ap":"9","p":{"23":{"n":4,"s":1},"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"15":{"n":4.5,"s":1}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":16,"s":{"g":"4","s":"66","n":"13","a":"5.08","d":"0.98","Og":"8","Os":"149","On":"32","Oa":"4.66","Od":"1.1","Ap":"29","p":{"1":{"n":6},"4":{"n":4},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":6,"g":1},"8":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":4},"16":{"n":4.5}}},"c":16},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":6,"s":{"s":"22","n":"5","a":"4.4","d":"0.2","Og":"2","Os":"124","On":"25","Oa":"4.96","Od":"0.89","Mp":"8","Ap":"5","p":{"23":{"n":4,"e":985,"c":42,"s":1},"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":18,"s":{"s":"88","n":"16","a":"5.5","d":"1.08","Oao":"1","Os":"186","On":"35","Oa":"5.31","Od":"1.01","Gp":"35","p":{"23":{"n":6},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":8},"5":{"n":6},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":5.5},"13":{"n":6.5},"14":{"n":7},"15":{"n":5},"16":{"n":4.5}}},"c":16},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":1,"s":{"n":0},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"s":1}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"n":0},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":12,"s":{"s":"69","n":"14","a":"4.93","d":"0.59","Os":"69","On":"14","Oa":"4.93","Od":"0.59","Mp":"14","p":{"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":3.5},"13":{"n":5},"14":{"n":5},"15":{"n":4.5},"16":{"n":5}}},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"10":{"n":5,"s":1},"13":{"n":4,"s":1}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":9,"s":{"g":"1","s":"37","n":"8","a":"4.63","d":"0.6","Og":"1","Os":"37","On":"8","Oa":"4.63","Od":"0.6","Ap":"8","p":{"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4,"s":1}}},"c":16},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":7,"s":{"n":0},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":15,"n":"Fekir","f":"Nabil","p":"A","r":22,"s":{"g":"2","s":"50","n":"10","a":"5.05","d":"1.15","Og":"9","Os":"147","On":"26","Oa":"5.67","Od":"1.34","Mp":"17","Ap":"7","p":{"24":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":6,"g":1},"6":{"n":7.5,"g":1},"8":{"n":3.5},"9":{"n":5},"12":{"n":6},"14":{"n":3.5},"15":{"n":4.5,"s":1},"16":{"n":5}}},"c":18},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":25,"s":{"g":"5","s":"88","n":"16","a":"5.5","d":"1.41","Og":"16","Os":"207","On":"36","Oa":"5.75","Od":"1.62","Mp":"8","Ap":"22","p":{"24":{"n":5},"1":{"n":7.5,"g":1},"2":{"n":5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":7,"g":1},"11":{"n":7,"g":1,"s":1},"12":{"n":4.5},"13":{"n":8.5,"g":2},"14":{"n":6},"15":{"n":4.5},"16":{"n":3.5}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":8,"s":{"g":"1","s":"40","n":"9","a":"4.5","d":"0.62","Og":"3","Os":"115","On":"25","Oa":"4.62","Od":"0.87","Mp":"5","Ap":"12","p":{"24":{"n":4,"s":1},"1":{"n":4,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"13":{"n":6,"g":1,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":8,"s":{"s":"27","n":"5","a":"5.4","d":"0.49","Os":"55","On":"10","Oa":"5.5","Od":"0.5","Dp":"9","p":{"8":{"n":5},"10":{"n":6},"11":{"n":5},"14":{"n":6},"15":{"n":5}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":11,"s":{"s":"29","n":"6","a":"4.92","d":"0.67","Og":"2","Os":"135","On":"25","Oa":"5.42","Od":"1.05","Mp":"2","Dp":"23","p":{"1":{"n":5},"2":{"n":4},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5,"s":1}}},"c":18},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":9,"s":{"s":"39","n":"8","a":"4.88","d":"1.24","Os":"149","On":"29","Oa":"5.14","Od":"1.07","Dp":"29","p":{"24":{"n":4},"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"7":{"n":7},"8":{"n":5},"9":{"n":3},"13":{"n":3.5},"16":{"n":4}}},"c":18},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":8,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"31","On":"6","Oa":"5.17","Od":"1.07","Gp":"6","p":{"1":{"n":6},"2":{"n":5}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":15,"s":{"s":"56","n":"11","a":"5.14","d":"0.53","Og":"1","Os":"145","On":"28","Oa":"5.2","Od":"0.85","Mp":"1","Dp":"26","p":{"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5,"s":1},"14":{"n":4.5}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":14,"s":{"g":"2","s":"62","n":"12","a":"5.21","d":"0.75","Og":"2","Os":"116","On":"24","Oa":"4.85","Od":"0.84","Mp":"12","Ap":"9","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7,"g":1},"4":{"n":4},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":15,"s":{"s":"69","n":"13","a":"5.31","d":"0.77","Os":"182","On":"33","Oa":"5.52","Od":"0.87","Mp":"33","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5,"s":1},"7":{"n":5.5},"9":{"n":4},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5,"s":1},"16":{"n":5.5,"s":1}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":25,"s":{"g":"5","s":"87","n":"16","a":"5.47","d":"1.11","Og":"8","Os":"205","On":"36","Oa":"5.71","Od":"0.93","Mp":"31","Ap":"2","p":{"24":{"n":5},"1":{"n":5},"2":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":7},"8":{"n":6.5,"g":1},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":7,"g":1},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":6},"16":{"n":4}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":12,"s":{"g":"1","s":"63","n":"12","a":"5.29","d":"0.88","Og":"1","Os":"63","On":"12","Oa":"5.29","Od":"0.88","Dp":"12","p":{"4":{"n":5},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"9":{"n":3.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":4}}},"c":18},{"i":1161,"n":"Traor\u00e9","f":"Bertrand","p":"A","r":20,"s":{"g":"5","s":"77","n":"15","a":"5.17","d":"1.4","Og":"15","Os":"184","On":"33","Oa":"5.59","Od":"1.49","Mp":"12","Ap":"18","p":{"24":{"n":6,"g":1},"1":{"n":6.5,"g":1},"2":{"n":4},"3":{"n":7.5,"g":1},"4":{"n":4},"5":{"n":4.5},"6":{"n":8,"g":2},"7":{"n":5},"8":{"n":6},"9":{"n":3.5},"10":{"n":5.5,"s":1},"11":{"n":4},"12":{"n":4,"s":1},"14":{"n":5,"s":1},"15":{"n":6.5,"g":1},"16":{"n":3.5}}},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":6,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Os":"58","On":"12","Oa":"4.88","Od":"0.58","Mp":"3","Dp":"5","p":{"24":{"n":4},"13":{"n":5.5},"15":{"n":5},"16":{"n":4}}},"c":18},{"i":1190,"n":"Mendy","f":"Ferland","p":"D","r":13,"s":{"g":"1","s":"65","n":"13","a":"5.04","d":"1.01","Og":"1","Os":"167","On":"32","Oa":"5.23","Od":"1.15","Mp":"4","Dp":"26","p":{"24":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":7},"4":{"n":5.5},"5":{"n":4.5,"g":1},"6":{"n":5},"9":{"n":3.5},"10":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":3}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":4,"s":{"n":0,"Os":"21","On":"5","Oa":"4.2","Od":"0.4"},"c":18},{"i":1414,"n":"NDombele","f":"Tanguy","p":"M","r":15,"s":{"s":"79","n":"16","a":"4.94","d":"0.81","Os":"199","On":"37","Oa":"5.38","Od":"0.96","Mp":"36","p":{"24":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":3.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5}}},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":20,"s":{"s":"76","n":"14","a":"5.43","d":"0.96","Os":"171","On":"31","Oa":"5.52","Od":"1","Gp":"31","p":{"24":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":7},"8":{"n":5.5},"9":{"n":4},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":5},"14":{"n":7},"15":{"n":5.5},"16":{"n":4.5}}},"c":18},{"i":1527,"n":"Pape Cheikh","f":"","p":"M","r":10,"s":{"s":"42","n":"9","a":"4.67","d":"0.47","Os":"47","On":"10","Oa":"4.7","Od":"0.46","Mp":"9","p":{"1":{"n":5,"s":1},"3":{"n":5},"4":{"n":5,"s":1},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5,"s":1},"10":{"n":5},"16":{"n":4,"s":1}}},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":18,"s":{"s":"77","n":"14","a":"5.5","d":"0.93","Og":"3","Os":"184","On":"33","Oa":"5.58","Od":"1.19","Dp":"33","p":{"24":{"n":2},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"8":{"n":5.5},"10":{"n":8},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":4}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"n":0},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":1,"s":{"n":0},"c":18},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":1,"s":{"n":0},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":19,"s":{"g":"4","s":"58","n":"11","a":"5.32","d":"1.05","Og":"4","Os":"58","On":"11","Oa":"5.32","Od":"1.05","Ap":"11","p":{"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":7.5,"g":2},"8":{"n":5},"10":{"n":6,"g":1},"11":{"n":6},"12":{"n":4},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":18},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"10":{"n":4.5,"s":1}}},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":15,"s":{"g":"2","s":"75","n":"14","a":"5.39","d":"1.15","Og":"4","Os":"164","On":"30","Oa":"5.48","Od":"1.11","Mp":"24","p":{"22":{"n":8,"g":1},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4},"4":{"n":6},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":3.5,"s":1},"10":{"n":4},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":7},"14":{"n":6.5,"g":1},"15":{"n":5},"16":{"n":7}}},"c":19},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":17,"s":{"g":"3","s":"76","n":"15","a":"5.1","d":"1.19","Og":"5","Os":"170","On":"33","Oa":"5.17","Od":"1.11","Mp":"1","Ap":"31","p":{"22":{"n":4},"1":{"n":4.5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":3.5},"7":{"n":6},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":4},"14":{"n":7.5,"g":1},"15":{"n":4},"16":{"n":5}}},"c":19},{"i":34,"n":"Balotelli","f":"Mario","p":"A","r":16,"s":{"s":"44","n":"10","a":"4.4","d":"0.66","Og":"9","Os":"135","On":"26","Oa":"5.19","Od":"1.21","Ap":"25","p":{"22":{"n":4},"4":{"n":4.5},"6":{"n":3.5},"8":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":4},"13":{"n":4},"14":{"n":6},"15":{"n":4},"16":{"n":4}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":19,"s":{"s":"86","n":"16","a":"5.41","d":"0.83","Og":"1","Os":"188","On":"35","Oa":"5.39","Od":"1.04","Dp":"35","p":{"22":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":3},"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"8":{"n":4},"9":{"n":6},"10":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":14,"s":{"g":"1","s":"64","n":"12","a":"5.38","d":"0.92","Og":"4","Os":"158","On":"29","Oa":"5.47","Od":"1.15","Mp":"27","Ap":"2","p":{"22":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":6.5,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":6.5}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":8,"s":{"s":"25","n":"5","a":"5","Os":"84","On":"17","Oa":"4.94","Od":"0.87","Mp":"17","p":{"9":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":9,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Os":"14","On":"3","Oa":"4.83","Od":"1.03","Gp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":3.5}}},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":13,"s":{"ao":"1","s":"74","n":"14","a":"5.32","d":"0.77","Oao":"1","Os":"150","On":"29","Oa":"5.19","Od":"0.78","Dp":"23","p":{"22":{"n":6},"2":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"a":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":21,"s":{"s":"81","n":"13","a":"6.23","d":"1.45","Os":"192","On":"34","Oa":"5.65","Od":"1.2","Gp":"34","p":{"22":{"n":6},"4":{"n":9},"5":{"n":6.5},"6":{"n":4},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":8},"12":{"n":7.5},"13":{"n":7.5},"14":{"n":7},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":12,"s":{"n":0,"Os":"69","On":"13","Oa":"5.31","Od":"0.72","Dp":"11"},"c":19},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":10,"s":{"g":"1","s":"39","n":"7","a":"5.57","d":"0.56","Og":"1","Os":"44","On":"8","Oa":"5.5","Od":"0.56","Mp":"4","Dp":"3","p":{"4":{"n":6},"5":{"n":5},"7":{"n":6,"g":1},"11":{"n":5.5},"12":{"n":5},"13":{"n":5},"14":{"n":6.5}}},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":5,"s":{"s":"10","n":"2","a":"5","Os":"71","On":"14","Oa":"5.07","Od":"0.88","Mp":"1","Dp":"10","p":{"22":{"n":7},"2":{"n":5},"11":{"n":5}}},"c":19},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":7,"s":{"g":"1","s":"47","n":"10","a":"4.75","d":"0.51","Og":"1","Os":"65","On":"14","Oa":"4.68","Od":"0.52","Mp":"8","Ap":"4","p":{"22":{"n":4,"s":1},"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":6,"g":1},"8":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":11,"s":{"g":"1","s":"43","n":"9","a":"4.78","d":"0.85","Og":"2","Os":"125","On":"25","Oa":"5","Od":"0.77","Mp":"6","Ap":"10","p":{"22":{"n":5},"1":{"n":4.5},"3":{"n":3},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":6.5,"g":1},"10":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":9,"s":{"s":"49","n":"10","a":"4.95","d":"0.99","Os":"49","On":"10","Oa":"4.95","Od":"0.99","Mp":"3","Dp":"7","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":4.5},"10":{"n":4.5},"11":{"n":5,"s":1},"15":{"n":4.5},"16":{"n":5,"s":1}}},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":1,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":1,"s":{"n":0},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","p":{"22":{"n":5,"s":1}}},"c":19},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":4,"s":{"s":"4","n":"1","a":"4","Os":"32","On":"8","Oa":"4","Ap":"1","p":{"3":{"n":4,"s":1}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":15,"s":{"s":"85","n":"16","a":"5.31","d":"0.73","Os":"167","On":"31","Oa":"5.39","Od":"0.68","Mp":"27","Dp":"1","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":5}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":11,"s":{"s":"50","n":"11","a":"4.59","d":"0.73","Os":"72","On":"16","Oa":"4.53","Od":"0.67","Ap":"13","p":{"2":{"n":4.5},"3":{"n":3},"4":{"n":4,"s":1},"5":{"n":6},"6":{"n":4,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":4.5}}},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":6,"s":{"g":"1","s":"34","n":"7","a":"4.86","d":"0.52","Og":"1","Os":"46","On":"10","Oa":"4.6","Od":"0.58","Ap":"7","p":{"22":{"n":4,"s":1},"2":{"n":6,"g":1,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":13,"s":{"s":"79","n":"15","a":"5.3","d":"0.91","Os":"158","On":"32","Oa":"4.95","Od":"0.93","Dp":"32","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":4},"9":{"n":6},"10":{"n":5},"12":{"n":5.5},"13":{"n":7},"14":{"n":6.5},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Os":"65","On":"14","Oa":"4.68","Od":"0.88","Mp":"6","Ap":"3","p":{"1":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":4.5,"s":1},"12":{"n":4,"s":1}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":8,"s":{"s":"29","n":"6","a":"4.83","d":"0.24","Os":"62","On":"13","Oa":"4.77","Od":"0.67","Mp":"5","Dp":"8","p":{"22":{"n":6},"4":{"n":5,"s":1},"5":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":1,"s":{"n":0},"c":19},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":4,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":1,"s":{"n":0},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":10,"s":{"g":"1","s":"62","n":"12","a":"5.21","d":"0.85","Og":"1","Os":"62","On":"12","Oa":"5.21","Od":"0.85","Mp":"8","Dp":"4","p":{"1":{"n":4.5},"5":{"n":5.5,"s":1},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":9,"s":{"s":"30","n":"7","a":"4.29","d":"0.92","Os":"30","On":"7","Oa":"4.29","Od":"0.92","Mp":"6","Ap":"1","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":4.5},"13":{"n":2.5}}},"c":19},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":15,"s":{"g":"1","s":"90","n":"17","a":"5.29","d":"1.11","Sg":"1","Ss":"90","Sn":"17","Sa":"5.29","Sd":"1.11","Og":"2","Os":"181","On":"35","Oa":"5.17","Od":"1.05","Mp":"35","p":{"24":{"n":5},"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":8,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5,"s":1},"16":{"n":7},"17":{"n":4.5}}},"c":20},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":4,"s":{"s":"4","n":"1","a":"4","Os":"31","On":"6","Oa":"5.17","Od":"0.9","Dp":"5","p":{"24":{"n":6},"1":{"n":4}}},"c":20},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":4,"s":{"n":0,"Os":"50","On":"10","Oa":"5","Od":"0.63","Mp":"1","Dp":"8"},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":14,"s":{"g":"4","s":"54","n":"10","a":"5.45","d":"1.31","Sg":"2","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.25","Og":"4","Os":"54","On":"10","Oa":"5.45","Od":"1.31","Mp":"5","Ap":"5","p":{"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":8,"g":1},"10":{"n":4.5},"11":{"n":3.5},"13":{"n":4.5,"s":1},"14":{"n":6,"g":1},"16":{"n":7,"g":1},"17":{"n":6.5,"g":1}}},"c":20},{"i":168,"n":"Mexer","f":"","p":"D","r":12,"s":{"s":"65","n":"13","a":"5","d":"1.13","Os":"106","On":"22","Oa":"4.82","Od":"1.08","Dp":"18","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4.5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4},"8":{"n":5.5},"9":{"n":5.5},"12":{"n":5.5},"14":{"n":4.5},"15":{"n":3},"16":{"n":7.5}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":14,"s":{"g":"1","s":"76","n":"15","a":"5.1","d":"1.23","Sg":"1","Ss":"66","Sn":"13","Sa":"5.12","Sd":"1.32","Og":"4","Oao":"2","Os":"164","On":"33","Oa":"4.98","Od":"1.14","Dp":"33","p":{"2":{"n":5,"s":1},"3":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":7,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":4},"15":{"n":2},"16":{"n":7},"17":{"n":6}}},"c":20},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":24,"s":{"g":"5","s":"93","n":"17","a":"5.5","d":"0.89","Sg":"5","Ss":"93","Sn":"17","Sa":"5.5","Sd":"0.89","Og":"9","Os":"178","On":"34","Oa":"5.25","Od":"1.08","Mp":"21","Ap":"11","p":{"24":{"n":4},"1":{"n":4},"2":{"n":6.5,"g":1},"3":{"n":7,"g":1},"4":{"n":5.5},"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":6.5,"g":1},"13":{"n":6},"14":{"n":5.5},"15":{"n":4.5,"g":1},"16":{"n":7},"17":{"n":6}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":12,"s":{"g":"1","ao":"1","s":"68","n":"14","a":"4.86","d":"0.97","Og":"1","Oao":"1","Os":"166","On":"33","Oa":"5.03","Od":"0.96","Dp":"30","p":{"24":{"n":5,"s":1},"2":{"n":5},"3":{"n":4,"a":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4.5},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":3.5},"16":{"n":6.5}}},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":10,"s":{"g":"1","s":"18","n":"4","a":"4.63","d":"1.47","Og":"4","Os":"94","On":"20","Oa":"4.73","Od":"1.26","Mp":"6","Ap":"8","p":{"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":3}}},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":9,"s":{"s":"44","n":"9","a":"4.89","d":"0.61","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"94","On":"19","Oa":"4.95","Od":"0.63","Mp":"4","Dp":"10","Ap":"2","p":{"4":{"n":5,"s":1},"5":{"n":3.5},"7":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":5},"16":{"n":5,"s":1},"17":{"n":6}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"12":{"n":5,"s":1}}},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":8,"s":{"s":"55","n":"11","a":"5","d":"0.56","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"141","On":"28","Oa":"5.04","Od":"0.9","Mp":"22","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5.5,"s":1},"5":{"n":4},"6":{"n":5},"8":{"n":6},"11":{"n":4.5,"s":1},"14":{"n":5.5,"s":1},"15":{"n":5,"s":1},"17":{"n":4.5}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":8,"s":{"s":"8","n":"2","a":"4","d":"0.5","Og":"3","Os":"69","On":"16","Oa":"4.31","Od":"0.93","Ap":"9","p":{"24":{"n":3},"1":{"n":3.5},"2":{"n":4.5}}},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":13,"s":{"g":"1","s":"48","n":"10","a":"4.85","d":"0.5","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"48","On":"10","Oa":"4.85","Od":"0.5","Mp":"1","Ap":"9","p":{"5":{"n":4,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":20},{"i":1182,"n":"Traor\u00e9","f":"Hamari","p":"D","r":13,"s":{"s":"79","n":"16","a":"4.94","d":"0.95","Ss":"59","Sn":"12","Sa":"4.96","Sd":"0.72","Os":"145","On":"29","Oa":"5","Od":"0.94","Mp":"1","Dp":"28","p":{"24":{"n":4},"1":{"n":3},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"6":{"n":4},"7":{"n":4.5},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":6},"17":{"n":6.5}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":15,"s":{"g":"3","s":"78","n":"16","a":"4.88","d":"1.02","Sg":"2","Ss":"20","Sn":"4","Sa":"5.13","Sd":"1.24","Og":"9","Os":"191","On":"37","Oa":"5.16","Od":"1.14","Mp":"29","Ap":"6","p":{"24":{"n":4},"1":{"n":5},"2":{"n":3.5},"3":{"n":6,"g":1},"4":{"n":6.5},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5,"s":1},"14":{"n":6,"g":1},"15":{"n":3},"16":{"n":5.5},"17":{"n":6,"g":1,"s":1}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":18,"s":{"g":"2","s":"87","n":"17","a":"5.15","d":"1.09","Sg":"2","Ss":"87","Sn":"17","Sa":"5.15","Sd":"1.09","Og":"7","Os":"165","On":"32","Oa":"5.17","Od":"1.28","Mp":"31","p":{"24":{"n":5,"e":1002,"c":14,"s":1},"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"5":{"n":4},"6":{"n":6},"7":{"n":6,"g":1,"s":1},"8":{"n":6},"9":{"n":6},"10":{"n":4.5},"11":{"n":4},"12":{"n":5.5},"13":{"n":3},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":6.5},"17":{"n":6}}},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":10,"s":{"s":"35","n":"6","a":"5.83","d":"1.11","Ss":"14","Sn":"2","Sa":"7.25","Sd":"0.75","Os":"35","On":"6","Oa":"5.83","Od":"1.11","Gp":"6","p":{"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":5},"16":{"n":8},"17":{"n":6.5}}},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":12,"s":{"s":"72","n":"15","a":"4.8","d":"0.98","Os":"72","On":"15","Oa":"4.8","Od":"0.98","Mp":"14","Dp":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":3.5},"12":{"n":7.5},"13":{"n":5},"14":{"n":4},"15":{"n":3},"16":{"n":5,"s":1}}},"c":20},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":12,"s":{"s":"57","n":"12","a":"4.75","d":"0.66","Os":"168","On":"33","Oa":"5.09","Od":"0.92","Gp":"33","p":{"24":{"n":5},"1":{"n":4},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":3.5},"15":{"n":5}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":1,"s":{"n":0},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":8,"s":{"s":"42","n":"9","a":"4.72","d":"0.95","Ss":"5","Sn":"1","Sa":"5.5","Os":"150","On":"30","Oa":"5.02","Od":"0.85","Mp":"7","Dp":"22","p":{"24":{"n":5},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4,"s":1},"7":{"n":4},"10":{"n":5},"11":{"n":4},"17":{"n":5.5}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":9,"s":{"g":"1","s":"36","n":"7","a":"5.21","d":"0.8","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"36","On":"7","Oa":"5.21","Od":"0.8","Mp":"7","p":{"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"12":{"n":6},"13":{"n":6.5,"g":1},"14":{"n":5,"s":1},"15":{"n":4},"17":{"n":4.5,"s":1}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":3,"s":{"n":0},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":4,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":8,"s":{"g":"1","s":"52","n":"11","a":"4.77","d":"0.45","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Og":"1","Os":"52","On":"11","Oa":"4.77","Od":"0.45","Ap":"11","p":{"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":6,"g":1},"17":{"n":4.5,"s":1}}},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":3,"s":{"n":0},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":14,"s":{"g":"2","s":"78","n":"15","a":"5.23","d":"0.91","Sg":"2","Ss":"60","Sn":"11","Sa":"5.45","Sd":"0.89","Og":"5","Os":"177","On":"34","Oa":"5.22","Od":"0.93","Mp":"25","Ap":"5","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":4},"4":{"n":5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":5.5,"s":1},"17":{"n":6}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":11,"s":{"g":"1","s":"60","n":"12","a":"5","d":"0.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"115","On":"23","Oa":"5","Od":"0.75","Mp":"15","Ap":"5","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5.5},"17":{"n":4.5}}},"c":41},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":12,"s":{"g":"2","s":"87","n":"16","a":"5.44","d":"0.86","Sg":"2","Ss":"75","Sn":"14","Sa":"5.39","Sd":"0.87","Og":"2","Os":"168","On":"34","Oa":"4.94","Od":"1.06","Dp":"34","p":{"1":{"n":6.5},"2":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":4.5},"15":{"n":7.5,"g":1},"16":{"n":5.5},"17":{"n":6,"g":1}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"101","On":"20","Oa":"5.05","Od":"1.53","Gp":"20"},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":12,"s":{"s":"58","n":"11","a":"5.32","d":"0.81","Ss":"49","Sn":"9","Sa":"5.44","Sd":"0.83","Os":"58","On":"11","Oa":"5.32","Od":"0.81","Dp":"11","p":{"3":{"n":4.5},"4":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":7},"16":{"n":5.5},"17":{"n":4}}},"c":41},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":18,"s":{"g":"3","s":"91","n":"16","a":"5.72","d":"1.03","Sg":"2","Ss":"41","Sn":"7","Sa":"5.86","Sd":"1.12","Og":"5","Os":"185","On":"36","Oa":"5.15","Od":"1.18","Mp":"35","Ap":"1","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":8,"g":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":8,"g":2},"16":{"n":6},"17":{"n":4}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Og":"3","Os":"65","On":"15","Oa":"4.33","Od":"0.87","Ap":"4","p":{"7":{"n":4,"s":1}}},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":12,"s":{"s":"61","n":"12","a":"5.13","d":"0.79","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.56","Og":"2","Os":"158","On":"30","Oa":"5.28","Od":"0.94","Mp":"28","Dp":"2","p":{"1":{"n":7},"2":{"n":4.5},"4":{"n":4},"6":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":4,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"1.02","Dp":"3"},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.4","Os":"82","On":"17","Oa":"4.85","Od":"0.33","Mp":"10","p":{"1":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4},"9":{"n":5,"s":1}}},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":8,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Gp":"3"},"c":41},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":7,"s":{"g":"1","s":"20","n":"4","a":"5.13","d":"0.89","Og":"1","Os":"99","On":"21","Oa":"4.74","Od":"0.61","Mp":"14","Dp":"1","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1},"3":{"n":4},"10":{"n":5}}},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":17,"s":{"g":"4","s":"81","n":"16","a":"5.09","d":"1.08","Ss":"9","Sn":"2","Sa":"4.5","Og":"5","Os":"130","On":"27","Oa":"4.83","Od":"1.02","Mp":"3","Ap":"21","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6.5,"g":1,"s":1},"8":{"n":7,"g":1},"9":{"n":6},"10":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":4,"s":1},"14":{"n":4},"16":{"n":4.5},"17":{"n":4.5,"s":1}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":7,"s":{"s":"55","n":"11","a":"5.05","d":"0.78","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"55","On":"11","Oa":"5.05","Od":"0.78","Mp":"1","Dp":"10","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":4},"8":{"n":6},"9":{"n":4},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":4}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":20,"s":{"g":"3","s":"78","n":"15","a":"5.23","d":"1.41","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"1.08","Og":"5","Os":"143","On":"30","Oa":"4.78","Od":"1.38","Mp":"10","Dp":"19","p":{"1":{"n":6.5},"2":{"n":4},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5.5},"9":{"n":3},"10":{"n":8},"11":{"n":5},"12":{"n":6},"15":{"n":6},"16":{"n":5.5,"g":1},"17":{"n":3.5}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":12,"s":{"g":"1","s":"63","n":"13","a":"4.85","d":"0.72","Og":"1","Os":"67","On":"14","Oa":"4.79","Od":"0.72","Mp":"11","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"11":{"n":6.5,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":5,"s":1},"16":{"n":5}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":12,"s":{"s":"60","n":"12","a":"5","d":"0.46","Os":"64","On":"13","Oa":"4.92","Od":"0.51","Mp":"7","Dp":"6","p":{"3":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"15":{"n":5.5,"s":1},"16":{"n":5.5}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Ismael","p":"D","r":1,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"1","Dp":"1","p":{"13":{"n":5},"14":{"n":5}}},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":5,"s":1},"11":{"n":4.5,"s":1}}},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":25,"s":{"g":"8","s":"90","n":"17","a":"5.29","d":"1.03","Sg":"8","Ss":"90","Sn":"17","Sa":"5.29","Sd":"1.03","Og":"12","Os":"141","On":"28","Oa":"5.04","Od":"1.16","Ap":"28","p":{"1":{"n":7,"e":2734,"c":12,"g":1},"2":{"n":4,"e":2746,"c":12},"3":{"n":4.5,"e":2754,"c":12},"4":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":7.5,"g":2},"10":{"n":6,"g":1,"s":1},"11":{"n":4},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":5.5},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":18,"s":{"s":"95","n":"17","a":"5.62","d":"0.96","Ss":"95","Sn":"17","Sa":"5.62","Sd":"0.96","Os":"95","On":"17","Oa":"5.62","Od":"0.96","Gp":"17","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":4.5},"13":{"n":8},"14":{"n":5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":12,"s":{"g":"1","s":"86","n":"16","a":"5.38","d":"0.76","Ss":"51","Sn":"10","Sa":"5.15","Sd":"0.71","Og":"1","Os":"86","On":"16","Oa":"5.38","Od":"0.76","Mp":"16","p":{"1":{"n":6,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"6":{"n":6.5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5,"s":1},"17":{"n":4}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":8,"s":{"g":"1","s":"28","n":"6","a":"4.67","d":"0.62","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"28","On":"6","Oa":"4.67","Od":"0.62","Ap":"6","p":{"1":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":4},"15":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":41},{"i":2726,"n":"Mitrovic","f":"Stefan","p":"D","r":11,"s":{"ao":"1","s":"74","n":"15","a":"4.93","d":"0.77","Ss":"4","Sn":"1","Sa":"4.5","Oao":"1","Os":"74","On":"15","Oa":"4.93","Od":"0.77","Dp":"15","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":3.5,"a":1},"5":{"n":5.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"17":{"n":4.5}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":6,"s":{"s":"25","n":"5","a":"5","Os":"25","On":"5","Oa":"5","Mp":"5","p":{"3":{"n":5,"s":1},"8":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":5}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":1,"s":{"n":0},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":12,"s":{"g":"1","s":"76","n":"16","a":"4.75","d":"0.59","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.5","Og":"2","Os":"125","On":"26","Oa":"4.81","Od":"0.57","Mp":"4","Dp":"10","Ap":"2","p":{"23":{"n":4,"s":1},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"8":{"n":4,"s":1},"9":{"n":5},"10":{"n":4,"s":1},"11":{"n":6,"g":1},"12":{"n":4.5},"14":{"n":4,"s":1},"15":{"n":4},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":7,"s":{"g":"1","s":"39","n":"8","a":"4.88","d":"0.7","Sg":"1","Ss":"29","Sn":"6","Sa":"4.92","Sd":"0.79","Og":"1","Os":"89","On":"19","Oa":"4.68","Od":"0.69","Mp":"16","p":{"5":{"n":5},"10":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":4},"16":{"n":4.5},"17":{"n":4.5}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":3,"s":{"n":0},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":9,"s":{"g":"1","s":"77","n":"16","a":"4.81","d":"0.86","Sg":"1","Ss":"53","Sn":"11","Sa":"4.82","Sd":"0.83","Og":"2","Os":"160","On":"34","Oa":"4.71","Od":"1.04","Dp":"34","p":{"23":{"n":5},"1":{"n":4.5},"2":{"n":4},"3":{"n":5},"4":{"n":6.5},"5":{"n":4},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":3},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5,"g":1},"15":{"n":3.5},"16":{"n":5},"17":{"n":5}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":17,"s":{"s":"92","n":"17","a":"5.44","d":"0.97","Ss":"92","Sn":"17","Sa":"5.44","Sd":"0.97","Os":"206","On":"37","Oa":"5.58","Od":"0.94","Gp":"37","p":{"23":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":6.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":8},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":5}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":14,"s":{"s":"64","n":"13","a":"4.96","d":"0.91","Ss":"59","Sn":"12","Sa":"4.96","Sd":"0.95","Og":"1","Os":"175","On":"33","Oa":"5.32","Od":"1.08","Mp":"33","p":{"23":{"n":5},"4":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":5.5},"9":{"n":6},"10":{"n":3},"11":{"n":6.5},"12":{"n":5},"13":{"n":6},"14":{"n":4.5},"15":{"n":4},"16":{"n":5},"17":{"n":5}}},"c":42},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":7,"s":{"s":"38","n":"9","a":"4.22","d":"0.71","Ss":"5","Sn":"1","Sa":"5","Os":"101","On":"23","Oa":"4.39","Od":"0.9","Mp":"2","Dp":"19","p":{"1":{"n":4.5},"2":{"n":4},"4":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":5,"s":1},"15":{"n":3},"17":{"n":5,"s":1}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":8,"s":{"g":"3","s":"55","n":"11","a":"5","d":"1.26","Og":"12","Os":"146","On":"30","Oa":"4.87","Od":"1.4","Ap":"28","p":{"23":{"n":4},"1":{"n":4},"2":{"n":6,"g":1},"3":{"n":8.5,"g":2},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":5}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":9,"s":{"ao":"1","s":"68","n":"15","a":"4.57","d":"0.98","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Oao":"1","Os":"166","On":"34","Oa":"4.9","Od":"0.97","Dp":"33","p":{"23":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":3,"a":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":3},"11":{"n":3},"12":{"n":5.5},"13":{"n":5.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":5.5}}},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Od":"0.82","Mp":"2"},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4"},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":10,"s":{"g":"1","ao":"1","s":"58","n":"13","a":"4.46","d":"1.15","Sao":"1","Ss":"40","Sn":"9","Sa":"4.44","Sd":"1.12","Og":"1","Oao":"1","Os":"153","On":"32","Oa":"4.78","Od":"1.02","Dp":"32","p":{"23":{"n":5},"2":{"n":4.5},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":6.5,"g":1},"9":{"n":6},"10":{"n":3},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":6,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"47","On":"10","Oa":"4.7","Od":"0.87","Mp":"5","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":4},"6":{"n":4.5},"7":{"n":4.5}}},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":2,"s":{"n":0},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":5,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Os":"81","On":"16","Oa":"5.09","Od":"0.71","Mp":"16","p":{"23":{"n":4},"3":{"n":6.5},"4":{"n":5}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":8,"s":{"s":"59","n":"12","a":"4.96","d":"0.69","Os":"64","On":"13","Oa":"4.96","Od":"0.66","Mp":"11","Ap":"2","p":{"5":{"n":6,"s":1},"6":{"n":4},"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":3.5},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":5,"s":{"g":"1","s":"45","n":"9","a":"5","d":"1","Sg":"1","Ss":"24","Sn":"5","Sa":"4.8","Sd":"0.93","Og":"3","Os":"97","On":"19","Oa":"5.11","Od":"0.99","Mp":"12","Ap":"6","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":7},"4":{"n":4.5},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":3.5},"16":{"n":4},"17":{"n":6,"g":1}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":8,"s":{"s":"53","n":"11","a":"4.86","d":"1.15","Ss":"5","Sn":"1","Sa":"5.5","Os":"53","On":"11","Oa":"4.86","Od":"1.15","Mp":"3","Dp":"8","p":{"1":{"n":4},"3":{"n":6},"4":{"n":6.5},"6":{"n":3.5},"7":{"n":5},"8":{"n":6},"12":{"n":4},"13":{"n":6},"14":{"n":3},"15":{"n":4},"17":{"n":5.5,"s":1}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":10,"s":{"s":"68","n":"15","a":"4.57","d":"0.79","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Os":"68","On":"15","Oa":"4.57","Od":"0.79","Mp":"5","Ap":"10","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4},"16":{"n":4},"17":{"n":6}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":12,"s":{"g":"3","s":"84","n":"16","a":"5.25","d":"1.12","Sg":"1","Ss":"37","Sn":"8","Sa":"4.63","Sd":"1.08","Og":"3","Os":"84","On":"16","Oa":"5.25","Od":"1.12","Mp":"15","Ap":"1","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":7,"g":1},"4":{"n":6},"5":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":5},"10":{"n":3.5},"11":{"n":4},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":3.5,"s":1},"16":{"n":5},"17":{"n":6.5,"g":1}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":5,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5},"5":{"n":5.5,"s":1},"9":{"n":5,"s":1}}},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":1,"s":{"n":0},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2789,"n":"Timite","f":"Cheick","p":"M","r":7,"s":{"s":"26","n":"6","a":"4.42","d":"0.34","Os":"26","On":"6","Oa":"4.42","Od":"0.34","Mp":"6","p":{"1":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"15":{"n":4,"s":1}}},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":10,"s":{"g":"1","s":"31","n":"7","a":"4.5","d":"0.93","Og":"1","Os":"31","On":"7","Oa":"4.5","Od":"0.93","Mp":"2","Ap":"5","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6.5,"g":1,"s":1},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":3.5},"11":{"n":4.5,"s":1}}},"c":42},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":10,"s":{"g":"1","s":"69","n":"15","a":"4.63","d":"0.69","Ss":"9","Sn":"2","Sa":"4.5","Og":"1","Os":"69","On":"15","Oa":"4.63","Od":"0.69","Mp":"2","Dp":"13","p":{"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":5},"5":{"n":4.5},"6":{"n":5,"g":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":4.5},"13":{"n":5},"14":{"n":3.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":42},{"i":2832,"n":"Ghoddos","f":"Saman","p":"A","r":14,"s":{"g":"2","s":"68","n":"14","a":"4.86","d":"1.14","Sg":"2","Ss":"68","Sn":"14","Sa":"4.86","Sd":"1.14","Og":"2","Os":"68","On":"14","Oa":"4.86","Od":"1.14","Mp":"4","Ap":"10","p":{"4":{"n":4.5,"s":1},"5":{"n":6.5,"g":1},"6":{"n":4},"7":{"n":7},"8":{"n":4},"9":{"n":7,"g":1},"10":{"n":3.5},"11":{"n":4},"12":{"n":5},"13":{"n":5.5},"14":{"n":4},"15":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":4.5}}},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":7,"s":{"s":"32","n":"7","a":"4.57","d":"1.02","Og":"1","Os":"99","On":"20","Oa":"4.95","Od":"1.31","Mp":"15","p":{"1":{"n":4},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":3}}},"c":67},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":7,"s":{"s":"35","n":"7","a":"5.07","d":"0.62","Os":"112","On":"22","Oa":"5.11","Od":"0.69","Mp":"10","p":{"7":{"n":5,"e":2795,"c":18,"s":1},"10":{"n":5,"e":2824,"c":18,"s":1},"11":{"n":4.5,"e":2833,"c":18},"12":{"n":5,"e":2844,"c":18,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":6.5}}},"c":67},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":11,"s":{"s":"39","n":"8","a":"4.94","d":"0.77","Os":"57","On":"12","Oa":"4.79","Od":"0.72","Mp":"1","Dp":"7","p":{"5":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"15":{"n":6}}},"c":67},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":18,"s":{"s":"94","n":"16","a":"5.88","d":"1.17","Os":"94","On":"16","Oa":"5.88","Od":"1.17","Gp":"16","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":7.5},"4":{"n":3.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":5.5},"12":{"n":8},"13":{"n":7.5},"14":{"n":7},"15":{"n":6},"16":{"n":5.5}}},"c":67},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":12,"s":{"g":"1","s":"56","n":"12","a":"4.67","d":"0.77","Og":"1","Os":"76","On":"17","Oa":"4.47","Od":"0.72","Mp":"1","Ap":"12","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":5},"11":{"n":4},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5}}},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":12,"s":{"g":"1","s":"59","n":"12","a":"4.96","d":"0.99","Og":"1","Os":"59","On":"12","Oa":"4.96","Od":"0.99","Dp":"12","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4},"4":{"n":3},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":4},"16":{"n":6,"g":1,"s":1}}},"c":67},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":7,"s":{"g":"1","s":"37","n":"7","a":"5.29","d":"1.06","Og":"1","Os":"37","On":"7","Oa":"5.29","Od":"1.06","Dp":"7","p":{"5":{"n":4},"6":{"n":5},"7":{"n":5.5},"8":{"n":4},"13":{"n":5,"s":1},"14":{"n":7,"g":1},"15":{"n":6.5}}},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":5,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":5,"s":{"n":0},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Os":"9","On":"2","Oa":"4.75","Od":"0.75","Dp":"2","p":{"10":{"n":4},"16":{"n":5.5}}},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":1,"s":{"n":0},"c":67},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":13,"s":{"g":"2","s":"73","n":"15","a":"4.87","d":"1.23","Og":"2","Os":"73","On":"15","Oa":"4.87","Od":"1.23","Ap":"15","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":2.5},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6.5},"12":{"n":5},"13":{"n":3},"15":{"n":5.5,"s":1},"16":{"n":7,"g":1}}},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":10,"s":{"s":"51","n":"11","a":"4.68","d":"0.32","Os":"51","On":"11","Oa":"4.68","Od":"0.32","Dp":"11","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":4},"9":{"n":5},"10":{"n":4.5},"11":{"n":5},"16":{"n":5}}},"c":67},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":13,"s":{"g":"2","s":"84","n":"16","a":"5.28","d":"1.2","Og":"2","Os":"84","On":"16","Oa":"5.28","Od":"1.2","Mp":"10","Ap":"6","p":{"1":{"n":8,"g":1},"2":{"n":7,"g":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":4.5,"s":1}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":9,"s":{"g":"1","s":"61","n":"13","a":"4.69","d":"0.75","Og":"1","Os":"61","On":"13","Oa":"4.69","Od":"0.75","Ap":"13","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5}}},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":9,"s":{"s":"17","n":"4","a":"4.38","d":"0.96","Os":"17","On":"4","Oa":"4.38","Od":"0.96","Dp":"4","p":{"1":{"n":3},"3":{"n":5},"5":{"n":4},"7":{"n":5.5}}},"c":67},{"i":2702,"n":"Bobichon","f":"Antonin","p":"M","r":13,"s":{"g":"2","s":"56","n":"11","a":"5.14","d":"0.98","Og":"2","Os":"56","On":"11","Oa":"5.14","Od":"0.98","Mp":"8","Ap":"3","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":6,"g":1},"6":{"n":7},"7":{"n":5},"8":{"n":3},"9":{"n":5.5},"10":{"n":5},"12":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":5}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":14,"s":{"s":"77","n":"15","a":"5.17","d":"0.51","Os":"77","On":"15","Oa":"5.17","Od":"0.51","Mp":"15","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":18,"s":{"g":"2","s":"82","n":"15","a":"5.5","d":"1.24","Og":"2","Os":"82","On":"15","Oa":"5.5","Od":"1.24","Dp":"15","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"8":{"n":3},"9":{"n":5.5},"10":{"n":4},"11":{"n":6.5},"12":{"n":7,"g":1},"13":{"n":6},"14":{"n":6.5},"15":{"n":6.5},"16":{"n":5.5}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":9,"s":{"s":"38","n":"8","a":"4.81","d":"0.75","Os":"38","On":"8","Oa":"4.81","Od":"0.75","Dp":"8","p":{"1":{"n":5,"s":1},"2":{"n":5},"4":{"n":3},"6":{"n":5},"7":{"n":5.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"16":{"n":5}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":17,"s":{"g":"2","s":"85","n":"16","a":"5.31","d":"0.92","Og":"2","Os":"85","On":"16","Oa":"5.31","Od":"0.92","Mp":"5","Dp":"4","Ap":"7","p":{"1":{"n":6.5,"g":1},"2":{"n":7,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5.5},"12":{"n":7},"13":{"n":5.5},"14":{"n":6},"15":{"n":5},"16":{"n":4.5,"s":1}}},"c":67},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":6,"s":{"n":0},"c":67},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":9,"s":{"g":"3","s":"45","n":"9","a":"5.06","d":"0.86","Og":"3","Os":"45","On":"9","Oa":"5.06","Od":"0.86","Ap":"9","p":{"8":{"n":5,"s":1},"9":{"n":4,"s":1},"10":{"n":5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":7,"g":2,"s":1},"16":{"n":5}}},"c":67},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":1,"s":{"n":0},"c":67},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":17,"s":{"g":"2","s":"67","n":"11","a":"6.14","d":"0.93","Og":"2","Os":"67","On":"11","Oa":"6.14","Od":"0.93","Mp":"11","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6,"g":1},"10":{"n":7},"11":{"n":5},"12":{"n":8,"g":1},"13":{"n":6.5},"14":{"n":7},"15":{"n":6},"16":{"n":6}}},"c":67},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":13,"s":{"g":"4","s":"65","n":"13","a":"5.04","d":"1.31","Og":"4","Os":"65","On":"13","Oa":"5.04","Od":"1.31","Mp":"9","Ap":"4","p":{"1":{"n":5},"2":{"n":6,"g":1},"3":{"n":4.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":8,"g":2},"13":{"n":3.5},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":5.5}}},"c":67},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":19,"s":{"s":"92","n":"17","a":"5.41","d":"0.96","Ss":"92","Sn":"17","Sa":"5.41","Sd":"0.96","Os":"92","On":"17","Oa":"5.41","Od":"0.96","Dp":"17","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":6.5},"12":{"n":6},"13":{"n":4},"14":{"n":6.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":5.5}}},"c":68},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":11,"s":{"s":"38","n":"8","a":"4.81","d":"0.56","Os":"38","On":"8","Oa":"4.81","Od":"0.56","Mp":"8","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4},"6":{"n":4.5},"8":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":6},"12":{"n":5}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":14,"s":{"g":"2","s":"74","n":"15","a":"4.93","d":"0.81","Og":"2","Os":"74","On":"15","Oa":"4.93","Od":"0.81","Mp":"15","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":4.5}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":9,"s":{"s":"38","n":"8","a":"4.75","d":"0.5","Os":"38","On":"8","Oa":"4.75","Od":"0.5","Mp":"7","Ap":"1","p":{"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5}}},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":6,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Mp":"3","p":{"11":{"n":5,"s":1},"13":{"n":4},"17":{"n":5,"s":1}}},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":8,"s":{"s":"52","n":"12","a":"4.33","d":"0.55","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Og":"1","Os":"118","On":"28","Oa":"4.21","Od":"0.59","Ap":"19","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5}}},"c":68},{"i":2608,"n":"Chavarria","f":"Pablo","p":"A","r":14,"s":{"g":"2","s":"79","n":"17","a":"4.65","d":"0.74","Sg":"2","Ss":"79","Sn":"17","Sa":"4.65","Sd":"0.74","Og":"2","Os":"79","On":"17","Oa":"4.65","Od":"0.74","Mp":"1","Ap":"16","p":{"1":{"n":5},"2":{"n":6.5,"g":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":5.5,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5.5},"15":{"n":4},"16":{"n":3.5},"17":{"n":5}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"s":"23","n":"5","a":"4.6","d":"1.02","Ss":"3","Sn":"1","Sa":"3.5","Os":"23","On":"5","Oa":"4.6","Od":"1.02","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"7":{"n":4.5},"17":{"n":3.5,"s":1}}},"c":68},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":8,"s":{"s":"26","n":"5","a":"5.2","d":"0.51","Os":"26","On":"5","Oa":"5.2","Od":"0.51","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"12":{"n":5,"s":1}}},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":4,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":14,"s":{"s":"87","n":"16","a":"5.44","d":"0.7","Ss":"22","Sn":"4","Sa":"5.63","Sd":"0.54","Os":"87","On":"16","Oa":"5.44","Od":"0.7","Mp":"16","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":6.5}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":14,"s":{"s":"87","n":"17","a":"5.15","d":"1.01","Ss":"87","Sn":"17","Sa":"5.15","Sd":"1.01","Os":"87","On":"17","Oa":"5.15","Od":"1.01","Dp":"17","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":3},"8":{"n":5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":6.5}}},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":15,"s":{"g":"3","s":"78","n":"16","a":"4.91","d":"1","Sg":"1","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1","Og":"3","Os":"78","On":"16","Oa":"4.91","Od":"1","Mp":"15","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":4},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":8,"g":2},"12":{"n":6},"13":{"n":5},"14":{"n":4.5},"16":{"n":3.5},"17":{"n":5.5,"g":1,"s":1}}},"c":68},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":23,"s":{"s":"102","n":"17","a":"6","d":"1.08","Ss":"102","Sn":"17","Sa":"6","Sd":"1.08","Os":"102","On":"17","Oa":"6","Od":"1.08","Gp":"17","p":{"1":{"n":6},"2":{"n":7.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":7},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":6},"9":{"n":7},"10":{"n":7},"11":{"n":7},"12":{"n":6.5},"13":{"n":5},"14":{"n":6},"15":{"n":7.5},"16":{"n":5.5},"17":{"n":5.5}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"3":{"n":3.5,"s":1}}},"c":68},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":8,"s":{"s":"47","n":"10","a":"4.7","d":"0.6","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.22","Os":"47","On":"10","Oa":"4.7","Od":"0.6","Mp":"10","p":{"1":{"n":5,"s":1},"5":{"n":5,"s":1},"7":{"n":3},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":11,"s":{"g":"1","s":"66","n":"13","a":"5.08","d":"0.8","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.41","Og":"1","Os":"66","On":"13","Oa":"5.08","Od":"0.8","Mp":"10","Ap":"3","p":{"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":5,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Os":"18","On":"4","Oa":"4.63","Od":"0.41","Mp":"3","Dp":"1","p":{"2":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5,"s":1},"13":{"n":4}}},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":7,"s":{"s":"20","n":"4","a":"5","d":"0.5","Os":"20","On":"4","Oa":"5","Od":"0.5","Mp":"4","p":{"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":4.5},"16":{"n":4.5,"s":1}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":15,"s":{"g":"2","s":"86","n":"16","a":"5.38","d":"0.63","Sg":"1","Ss":"38","Sn":"7","Sa":"5.43","Sd":"0.68","Og":"2","Os":"86","On":"16","Oa":"5.38","Od":"0.63","Mp":"16","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":6},"16":{"n":5},"17":{"n":5.5}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2823,"n":"Engels","f":"Bj\u00f6rn","p":"D","r":14,"s":{"s":"70","n":"13","a":"5.42","d":"0.73","Ss":"70","Sn":"13","Sa":"5.42","Sd":"0.73","Os":"70","On":"13","Oa":"5.42","Od":"0.73","Dp":"13","p":{"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7},"12":{"n":6},"13":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":6}}},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":11,"s":{"s":"61","n":"12","a":"5.08","d":"0.61","Ss":"50","Sn":"10","Sa":"5","Sd":"0.63","Os":"61","On":"12","Oa":"5.08","Od":"0.61","Dp":"12","p":{"5":{"n":5.5},"6":{"n":5.5},"8":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":4},"14":{"n":6},"15":{"n":5},"16":{"n":5},"17":{"n":4}}},"c":68}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1370,"s":{"p":44},"nM":2904,"nMWC":"0.9280","pM":{"21":973,"3":2760,"4":2767,"5":2780,"6":2789,"7":2800,"9":2820,"10":2828,"13":2857,"14":2869,"16":2891,"1":2740,"2":2745,"8":2807,"12":2848,"15":2873,"11":2837},"DMI":[973]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":1089,"s":{"p":21},"nM":2907,"nMWC":"0.4328","pM":{"15":2873,"1":2733,"2":2751,"3":2753,"4":2769,"5":2773,"10":2825,"11":2834,"12":2844,"14":2864,"26":1019,"6":2783,"7":2793,"8":2808,"9":2814,"13":2853,"16":2883},"DMI":[1019]},"4":{"n":"Saint Etienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1116,"s":{"p":26},"nM":2909,"nMWC":"0.5101","pM":{"5":2780,"16":2883,"22":981,"1":2741,"2":2750,"6":2790,"7":2801,"9":2816,"12":2850,"13":2860,"14":2865,"15":2880,"3":2757,"4":2770,"8":2810,"10":2830,"11":2839},"DMI":[981]},"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":1,"el":915,"s":{"p":14},"nM":2903,"nMWC":"0.4159","pM":{"1":2740,"13":2853,"6":2790,"33":1086,"2":2743,"3":2758,"4":2763,"5":2774,"8":2803,"9":2817,"10":2822,"11":2836,"12":2842,"15":2872,"16":2884,"7":2794,"14":2863,"17":2900},"DMI":[1086]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":926,"s":{"p":16},"nM":2904,"nMWC":"0.0720","pM":{"21":973,"14":2864,"4":2763,"1":2737,"2":2744,"5":2775,"7":2795,"8":2811,"9":2812,"10":2823,"3":2759,"6":2788,"11":2838,"12":2843,"13":2856,"15":2881,"16":2885,"17":2898},"DMI":[973]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1071,"s":{"p":20},"nM":2908,"nMWC":"0.4512","pM":{"9":2814,"15":2880,"3":2758,"2":2744,"1":2738,"4":2771,"5":2778,"6":2784,"7":2798,"8":2805,"10":2826,"11":2832,"12":2846,"13":2859,"14":2867,"36":1121,"16":2888},"DMI":[1121]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1136,"s":{"p":26},"nM":2907,"nMWC":"0.5672","pM":{"11":2837,"26":1019,"9":2817,"13":2856,"16":2888,"1":2736,"2":2747,"3":2756,"4":2766,"5":2776,"6":2785,"7":2796,"8":2804,"10":2827,"12":2845,"14":2862,"15":2876},"DMI":[1019]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":974,"s":{"p":18},"nM":2903,"nMWC":"0.5841","pM":{"14":2869,"2":2751,"7":2801,"33":1086,"15":2881,"10":2826,"1":2736,"3":2761,"4":2764,"5":2781,"6":2782,"8":2809,"9":2821,"11":2841,"12":2851,"13":2861,"16":2890},"DMI":[1086]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1129,"s":{"p":31},"nM":2910,"nMWC":"0.5785","pM":{"12":2848,"7":2793,"9":2816,"11":2836,"10":2823,"6":2784,"8":2804,"1":2734,"2":2746,"3":2754,"4":2762,"5":2772,"13":2855,"14":2868,"15":2875,"16":2887,"17":2894},"DMI":[]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":1027,"s":{"p":13},"nM":2906,"nMWC":"0.3075","pM":{"13":2857,"3":2753,"8":2810,"14":2863,"11":2838,"1":2738,"4":2766,"5":2781,"2":2746,"24":999,"6":2786,"7":2797,"9":2818,"10":2831,"12":2849,"15":2877,"16":2882},"DMI":[999]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":1,"el":861,"s":{"p":8},"nM":2905,"nMWC":"0.2111","pM":{"2":2745,"6":2783,"1":2741,"10":2822,"16":2885,"12":2846,"5":2776,"4":2764,"3":2754,"11":2835,"15":2874,"17":2893,"7":2799,"8":2802,"9":2815,"13":2854,"14":2870,"24":1002},"DMI":[1002]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1105,"s":{"p":29},"nM":2908,"nMWC":"0.5488","pM":{"10":2825,"3":2757,"7":2794,"1":2737,"36":1121,"12":2845,"11":2841,"16":2887,"15":2877,"9":2815,"2":2742,"4":2768,"5":2777,"6":2787,"8":2806,"13":2852,"14":2866},"DMI":[1121]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1027,"s":{"p":18},"nM":2902,"nMWC":"0.5771","pM":{"3":2760,"12":2850,"15":2872,"5":2775,"14":2867,"6":2782,"4":2762,"7":2797,"8":2802,"13":2852,"23":985,"1":2732,"2":2749,"9":2813,"16":2889,"10":2829,"11":2833},"DMI":[985]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1168,"s":{"p":28},"nM":2906,"nMWC":"0.6925","pM":{"9":2820,"12":2844,"14":2865,"5":2774,"7":2795,"8":2805,"6":2785,"15":2875,"24":999,"13":2854,"1":2735,"11":2833,"3":2755,"4":2765,"16":2886,"2":2748,"10":2824},"DMI":[999]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1109,"s":{"p":25},"nM":2909,"nMWC":"0.4899","pM":{"8":2807,"11":2834,"22":981,"2":2743,"3":2759,"7":2798,"10":2827,"9":2821,"14":2868,"15":2874,"6":2787,"16":2889,"4":2765,"1":2739,"5":2779,"12":2847,"13":2858},"DMI":[981]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1090,"s":{"p":23},"nM":2905,"nMWC":"0.7889","pM":{"6":2789,"4":2769,"10":2830,"12":2842,"17":2898,"13":2859,"3":2756,"8":2809,"1":2734,"9":2818,"24":1002,"14":2866,"2":2749,"16":2886,"5":2779,"7":2792,"11":2840,"15":2879},"DMI":[1002]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1048,"s":{"p":23},"nM":2911,"nMWC":"0.5173","pM":{"16":2891,"1":2733,"2":2750,"17":2900,"8":2811,"4":2771,"7":2796,"12":2851,"13":2855,"10":2831,"11":2835,"5":2777,"9":2813,"3":2755,"15":2879,"14":2871,"6":2791},"DMI":[]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":973,"s":{"p":16},"nM":2902,"nMWC":"0.4229","pM":{"10":2828,"4":2770,"8":2803,"9":2812,"11":2832,"14":2862,"13":2861,"5":2772,"16":2882,"17":2893,"1":2735,"2":2742,"3":2752,"23":985,"12":2847,"7":2792,"6":2791,"15":2878},"DMI":[985]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":1074,"s":{"p":23},"nM":2910,"nMWC":"0.4215","pM":{"4":2767,"5":2773,"11":2839,"16":2884,"12":2843,"2":2747,"3":2761,"6":2786,"7":2799,"8":2806,"1":2732,"10":2824,"13":2858,"14":2871,"15":2878,"9":2819},"DMI":[]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1036,"s":{"p":22},"nM":2911,"nMWC":"0.4827","pM":{"7":2800,"8":2808,"13":2860,"6":2788,"5":2778,"15":2876,"16":2890,"17":2894,"12":2849,"14":2870,"3":2752,"4":2768,"10":2829,"2":2748,"1":2739,"11":2840,"9":2819},"DMI":[]}},"e":{"973":{"d":21,"dB":"2018-01-17T20:00:00Z","t1s":8,"t2s":0,"t1":2,"t2":7},"2760":{"d":3,"dB":"2018-08-25T17:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":16},"2767":{"d":4,"dB":"2018-09-01T15:00:00Z","t1s":2,"t2s":4,"t1":67,"t2":2},"2780":{"d":5,"dB":"2018-09-14T18:45:00Z","t1s":4,"t2s":0,"t1":2,"t2":4},"2789":{"d":6,"dB":"2018-09-23T13:00:00Z","t1s":1,"t2s":3,"t1":20,"t2":2},"2800":{"d":7,"dB":"2018-09-26T19:00:00Z","t1s":4,"t2s":1,"t1":2,"t2":68},"2820":{"d":9,"dB":"2018-10-07T19:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":18},"2828":{"d":10,"dB":"2018-10-20T15:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":42},"2857":{"d":13,"dB":"2018-11-11T20:00:00Z","t1s":0,"t2s":4,"t1":13,"t2":2},"2869":{"d":14,"dB":"2018-11-24T16:00:00Z","t1s":1,"t2s":0,"t1":2,"t2":10},"2891":{"d":16,"dB":"2018-12-05T20:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":2},"2740":{"d":1,"dB":"2018-08-12T21:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":5},"2745":{"d":2,"dB":"2018-08-18T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":2},"2807":{"d":8,"dB":"2018-09-29T15:15:00Z","t1s":0,"t2s":3,"t1":19,"t2":2},"2848":{"d":12,"dB":"2018-11-02T19:45:00Z","t1s":2,"t2s":1,"t1":2,"t2":12},"2873":{"d":15,"dB":"2018-12-02T20:00:00Z","t1s":2,"t2s":2,"t1":3,"t2":2},"2837":{"d":11,"dB":"2018-10-28T20:00:00Z","t1s":0,"t2s":2,"t1":9,"t2":2},"2733":{"d":1,"dB":"2018-08-12T17:00:00Z","t1s":0,"t2s":2,"t1":3,"t2":41},"2751":{"d":2,"dB":"2018-08-19T15:00:00Z","t1s":2,"t2s":1,"t1":10,"t2":3},"2753":{"d":3,"dB":"2018-08-26T15:00:00Z","t1s":2,"t2s":1,"t1":3,"t2":13},"2769":{"d":4,"dB":"2018-09-02T15:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":3},"2773":{"d":5,"dB":"2018-09-16T15:00:00Z","t1s":3,"t2s":3,"t1":3,"t2":67},"2825":{"d":10,"dB":"2018-10-21T13:00:00Z","t1s":2,"t2s":0,"t1":15,"t2":3},"2834":{"d":11,"dB":"2018-10-28T16:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":19},"2844":{"d":12,"dB":"2018-11-03T16:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":3},"2864":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":3},"1019":{"d":26,"dB":"2018-02-18T20:00:00Z","t1s":1,"t2s":0,"t1":9,"t2":3},"2783":{"d":6,"dB":"2018-09-23T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":3},"2793":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":1,"t2s":0,"t1":3,"t2":12},"2808":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":3},"2814":{"d":9,"dB":"2018-10-07T13:00:00Z","t1s":3,"t2s":0,"t1":3,"t2":8},"2853":{"d":13,"dB":"2018-11-11T14:00:00Z","t1s":0,"t2s":0,"t1":3,"t2":5},"2883":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":3,"t2s":2,"t1":3,"t2":4},"981":{"d":22,"dB":"2018-01-21T14:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":4},"2741":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":14},"2750":{"d":2,"dB":"2018-08-19T13:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":4},"2790":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":5},"2801":{"d":7,"dB":"2018-09-25T19:00:00Z","t1s":2,"t2s":3,"t1":10,"t2":4},"2816":{"d":9,"dB":"2018-10-06T15:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":4},"2850":{"d":12,"dB":"2018-11-04T16:00:00Z","t1s":4,"t2s":3,"t1":4,"t2":16},"2860":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":68},"2865":{"d":14,"dB":"2018-11-23T20:00:00Z","t1s":1,"t2s":0,"t1":18,"t2":4},"2880":{"d":15,"dB":"2018-11-30T19:45:00Z","t1s":3,"t2s":0,"t1":4,"t2":8},"2757":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":0,"t1":15,"t2":4},"2770":{"d":4,"dB":"2018-09-02T13:00:00Z","t1s":0,"t2s":0,"t1":4,"t2":42},"2810":{"d":8,"dB":"2018-09-28T18:45:00Z","t1s":2,"t2s":0,"t1":4,"t2":13},"2830":{"d":10,"dB":"2018-10-21T15:00:00Z","t1s":1,"t2s":1,"t1":4,"t2":20},"2839":{"d":11,"dB":"2018-10-26T18:45:00Z","t1s":1,"t2s":1,"t1":67,"t2":4},"1086":{"d":33,"dB":"2018-04-25T16:45:00Z","t1s":0,"t2s":0,"t1":5,"t2":10},"2743":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":1,"t1":5,"t2":19},"2758":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":5},"2763":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":2,"t1":7,"t2":5},"2774":{"d":5,"dB":"2018-09-15T15:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":18},"2803":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":42},"2817":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":5},"2822":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":0,"t2s":0,"t1":5,"t2":14},"2836":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":5},"2842":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":20},"2872":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":5},"2884":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":67},"2794":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":15},"2863":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":13},"2900":{"d":17,"dB":"2018-12-09T14:00:00Z","t1s":2,"t2s":2,"t1":41,"t2":5},"2737":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":1,"t2s":2,"t1":15,"t2":7},"2744":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":2,"t2s":0,"t1":7,"t2":8},"2775":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":3,"t1":7,"t2":16},"2795":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":3,"t1":7,"t2":18},"2811":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":3,"t2s":0,"t1":41,"t2":7},"2812":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":7},"2823":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":12},"2759":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":4,"t1":19,"t2":7},"2788":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":7},"2838":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":2,"t2s":2,"t1":13,"t2":7},"2843":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":0,"t2s":4,"t1":7,"t2":67},"2856":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":7},"2881":{"d":15,"dB":"2018-12-02T14:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":7},"2885":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":14},"2898":{"d":17,"dB":"2018-12-08T19:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":7},"2738":{"d":1,"dB":"2018-08-11T17:00:00Z","t1s":1,"t2s":3,"t1":8,"t2":13},"2771":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":2,"t2s":3,"t1":41,"t2":8},"2778":{"d":5,"dB":"2018-09-16T13:00:00Z","t1s":0,"t2s":0,"t1":8,"t2":68},"2784":{"d":6,"dB":"2018-09-22T15:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":8},"2798":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":1,"t2s":2,"t1":8,"t2":19},"2805":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":8},"2826":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":4,"t2s":0,"t1":8,"t2":10},"2832":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":8},"2846":{"d":12,"dB":"2018-11-04T14:00:00Z","t1s":5,"t2s":0,"t1":8,"t2":14},"2859":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":8},"2867":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":16},"1121":{"d":36,"dB":"2018-05-06T15:00:00Z","t1s":0,"t2s":2,"t1":8,"t2":15},"2888":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":9},"2736":{"d":1,"dB":"2018-08-10T20:45:00Z","t1s":4,"t2s":0,"t1":9,"t2":10},"2747":{"d":2,"dB":"2018-08-19T19:00:00Z","t1s":3,"t2s":1,"t1":67,"t2":9},"2756":{"d":3,"dB":"2018-08-26T19:00:00Z","t1s":2,"t2s":2,"t1":9,"t2":20},"2766":{"d":4,"dB":"2018-09-02T19:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":9},"2776":{"d":5,"dB":"2018-09-16T19:00:00Z","t1s":4,"t2s":0,"t1":9,"t2":14},"2785":{"d":6,"dB":"2018-09-23T19:00:00Z","t1s":4,"t2s":2,"t1":18,"t2":9},"2796":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":3,"t2s":2,"t1":9,"t2":41},"2804":{"d":8,"dB":"2018-09-30T19:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":9},"2827":{"d":10,"dB":"2018-10-21T19:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":9},"2845":{"d":12,"dB":"2018-11-04T20:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":9},"2862":{"d":14,"dB":"2018-11-25T20:00:00Z","t1s":1,"t2s":3,"t1":42,"t2":9},"2876":{"d":15,"dB":"2018-12-02T16:00:00Z","t1s":0,"t2s":0,"t1":9,"t2":68},"2761":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":67},"2764":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":10},"2781":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":10,"t2":13},"2782":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":16,"t2":10},"2809":{"d":8,"dB":"2018-09-30T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":10},"2821":{"d":9,"dB":"2018-10-05T18:45:00Z","t1s":1,"t2s":1,"t1":10,"t2":19},"2841":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":0,"t2s":3,"t1":10,"t2":15},"2851":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":10},"2861":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":10,"t2":42},"2890":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":10},"2734":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":20},"2746":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":12},"2754":{"d":3,"dB":"2018-08-26T13:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":14},"2762":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":12},"2772":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":2,"t2s":3,"t1":42,"t2":12},"2855":{"d":13,"dB":"2018-11-09T19:45:00Z","t1s":0,"t2s":0,"t1":12,"t2":41},"2868":{"d":14,"dB":"2018-11-25T16:00:00Z","t1s":2,"t2s":0,"t1":19,"t2":12},"2875":{"d":15,"dB":"2018-12-01T16:00:00Z","t1s":2,"t2s":2,"t1":12,"t2":18},"2887":{"d":16,"dB":"2018-12-04T20:00:00Z","t1s":0,"t2s":1,"t1":15,"t2":12},"2894":{"d":17,"dB":"2018-12-09T16:00:00Z","t1s":1,"t2s":1,"t1":12,"t2":68},"999":{"d":24,"dB":"2018-02-04T20:00:00Z","t1s":3,"t2s":2,"t1":13,"t2":18},"2786":{"d":6,"dB":"2018-09-21T18:45:00Z","t1s":1,"t2s":1,"t1":13,"t2":67},"2797":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":0,"t2s":1,"t1":13,"t2":16},"2818":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":20},"2831":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":2,"t2s":1,"t1":41,"t2":13},"2849":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":68,"t2":13},"2877":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":15},"2882":{"d":16,"dB":"2018-12-04T18:00:00Z","t1s":0,"t2s":2,"t1":42,"t2":13},"2835":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":41},"2874":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":19},"2893":{"d":17,"dB":"2018-12-08T19:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":42},"2799":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":14},"2802":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":1,"t1":16,"t2":14},"2815":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":15},"2854":{"d":13,"dB":"2018-11-10T16:00:00Z","t1s":2,"t2s":4,"t1":14,"t2":18},"2870":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":2,"t2s":1,"t1":68,"t2":14},"1002":{"d":24,"dB":"2018-02-04T14:00:00Z","t1s":0,"t2s":1,"t1":20,"t2":14},"2735":{"d":1,"dB":"2018-08-12T15:00:00Z","t1s":2,"t2s":0,"t1":18,"t2":42},"2742":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":15},"2752":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":4,"t2s":1,"t1":42,"t2":68},"2768":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":15},"2777":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":41},"2787":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":1,"t2s":0,"t1":15,"t2":19},"2806":{"d":8,"dB":"2018-09-30T15:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":67},"2852":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":15},"2866":{"d":14,"dB":"2018-11-25T14:00:00Z","t1s":2,"t2s":2,"t1":15,"t2":20},"985":{"d":23,"dB":"2018-01-27T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":42},"2732":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":4,"t1":16,"t2":67},"2749":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":0,"t1":20,"t2":16},"2813":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":2,"t2s":2,"t1":16,"t2":41},"2889":{"d":16,"dB":"2018-12-04T18:00:00Z","t1s":0,"t2s":0,"t1":19,"t2":16},"2829":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":16},"2833":{"d":11,"dB":"2018-10-27T15:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":18},"2755":{"d":3,"dB":"2018-08-24T20:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":41},"2765":{"d":4,"dB":"2018-08-31T18:45:00Z","t1s":0,"t2s":1,"t1":18,"t2":19},"2886":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":0,"t2s":2,"t1":18,"t2":20},"2748":{"d":2,"dB":"2018-08-17T18:45:00Z","t1s":1,"t2s":0,"t1":68,"t2":18},"2824":{"d":10,"dB":"2018-10-19T18:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":67},"2739":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":68},"2779":{"d":5,"dB":"2018-09-14T17:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":20},"2847":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":42},"2858":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":67,"t2":19},"2792":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":1,"t1":42,"t2":20},"2840":{"d":11,"dB":"2018-10-28T14:00:00Z","t1s":0,"t2s":2,"t1":20,"t2":68},"2879":{"d":15,"dB":"2018-12-02T16:00:00Z","t1s":1,"t2s":4,"t1":20,"t2":41},"2871":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":1,"t1":41,"t2":67},"2791":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":3,"t2s":1,"t1":41,"t2":42},"2878":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":3,"t2s":0,"t1":67,"t2":42},"2819":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":68}},"Ne":{"2904":{"d":18,"dB":"2018-12-15T16:00:00Z","t1":7,"t2":2},"2907":{"d":18,"dB":"2018-12-16T20:00:00Z","t1":9,"t2":3},"2909":{"d":18,"dB":"2018-12-14T19:45:00Z","t1":19,"t2":4},"2903":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":5,"t2":10},"2908":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":8,"t2":15},"2910":{"d":18,"dB":"2018-12-16T14:00:00Z","t1":67,"t2":12},"2906":{"d":18,"dB":"2018-12-16T12:00:00Z","t1":18,"t2":13},"2905":{"d":18,"dB":"2018-12-16T16:00:00Z","t1":14,"t2":20},"2902":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":42,"t2":16},"2911":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":68,"t2":41}},"k":"d48781"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20181220.json b/src/test/resources/__files/mpgstats.ligue-1.20181220.json deleted file mode 100644 index d7c5816..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20181220.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2018-12-13T08:28:34Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38,"cD":{"cN":"CurrentDay","d":17,"lD":17}},"lS":{"cN":"Ligue-1-2017-2018","i":3,"n":"Ligue 1 2017-2018","mD":38}},"mxD":17,"np":666,"le":{"1":"Ligue-1"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":40,"s":{"g":"10","s":"61","n":"10","a":"6.15","d":"1.12","Og":"21","Os":"154","On":"26","Oa":"5.94","Od":"1.44","Ap":"25","p":{"21":{"n":8,"g":1},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":7.5,"g":2},"9":{"n":5},"10":{"n":5},"13":{"n":8.5,"g":3},"14":{"n":6,"g":1},"16":{"n":5,"g":1}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":22,"s":{"s":"71","n":"12","a":"5.96","d":"0.43","Og":"1","Os":"151","On":"26","Oa":"5.83","Od":"0.77","Dp":"25","p":{"21":{"n":6},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":5},"5":{"n":6},"7":{"n":6},"8":{"n":6},"9":{"n":6},"12":{"n":7},"13":{"n":6},"14":{"n":6},"15":{"n":5.5}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":31,"s":{"g":"3","s":"86","n":"15","a":"5.73","d":"1.09","Og":"12","Os":"190","On":"32","Oa":"5.94","Od":"1.18","Mp":"7","Ap":"24","p":{"21":{"n":8,"g":2},"1":{"n":6},"2":{"n":7},"3":{"n":6},"4":{"n":6.5,"g":1},"5":{"n":7,"g":1},"6":{"n":6.5,"g":1},"7":{"n":4,"s":1},"8":{"n":5},"9":{"n":7},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":4,"s":1},"14":{"n":4.5},"15":{"n":4.5}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":18,"s":{"g":"3","s":"79","n":"14","a":"5.68","d":"0.99","Og":"5","Os":"170","On":"30","Oa":"5.68","Od":"0.99","Mp":"20","Ap":"4","p":{"21":{"n":7},"1":{"n":5.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":7.5,"g":1},"11":{"n":6.5,"g":1},"12":{"n":7},"13":{"n":6},"14":{"n":4},"15":{"n":6},"16":{"n":5.5}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":18,"s":{"s":"62","n":"11","a":"5.68","d":"1.05","Os":"117","On":"20","Oa":"5.88","Od":"1.05","Mp":"19","p":{"21":{"n":6},"5":{"n":7},"6":{"n":5.5},"7":{"n":6},"8":{"n":5.5,"s":1},"9":{"n":7},"10":{"n":4},"11":{"n":6.5},"12":{"n":7},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4.5}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":44,"s":{"g":"12","s":"75","n":"11","a":"6.86","d":"0.88","Og":"19","Os":"160","On":"26","Oa":"6.17","Od":"1.6","Mp":"3","Ap":"21","p":{"21":{"n":6,"g":1,"s":1},"2":{"n":7.5,"g":2,"s":1},"3":{"n":7,"g":1},"4":{"n":7,"g":1},"8":{"n":7},"9":{"n":9,"g":4},"10":{"n":7,"g":1},"11":{"n":6.5,"g":1,"s":1},"12":{"n":7,"g":1},"13":{"n":6},"15":{"n":6,"g":1},"16":{"n":5.5,"s":1}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":24,"s":{"g":"1","s":"78","n":"13","a":"6","d":"0.9","Og":"1","Os":"155","On":"27","Oa":"5.74","Od":"0.81","Mp":"5","Dp":"21","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":6},"9":{"n":8},"10":{"n":7,"g":1},"11":{"n":7},"12":{"n":5},"14":{"n":5.5},"15":{"n":5.5}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":24,"s":{"g":"2","s":"67","n":"11","a":"6.09","d":"0.82","Og":"3","Os":"157","On":"27","Oa":"5.81","Od":"0.87","Mp":"5","Dp":"15","p":{"21":{"n":6},"2":{"n":5},"3":{"n":6.5},"4":{"n":6},"5":{"n":6},"6":{"n":7.5,"g":1},"7":{"n":7,"g":1,"s":1},"9":{"n":7},"11":{"n":6},"12":{"n":5},"14":{"n":6},"16":{"n":5}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"55","On":"11","Oa":"5","Od":"1.04","Dp":"10"},"c":2},{"i":100,"n":"Areola","f":"Alphonse","p":"G","r":18,"s":{"s":"52","n":"9","a":"5.78","d":"0.42","Os":"156","On":"27","Oa":"5.78","Od":"1.03","Gp":"27","p":{"21":{"n":6},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":6},"8":{"n":5.5},"10":{"n":6},"11":{"n":6},"13":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":2},{"i":121,"n":"Rabiot","f":"Adrien","p":"M","r":25,"s":{"g":"2","ao":"1","s":"87","n":"14","a":"6.21","d":"1.01","Og":"2","Oao":"1","Os":"178","On":"30","Oa":"5.93","Od":"1","Mp":"25","Ap":"1","p":{"21":{"n":5,"s":1},"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":7.5},"4":{"n":5},"5":{"n":6},"6":{"n":4.5,"a":1},"7":{"n":6},"8":{"n":7},"10":{"n":7.5,"g":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":7},"14":{"n":7},"16":{"n":7}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":10,"s":{"n":0,"Os":"17","On":"3","Oa":"5.67","Od":"0.47","Gp":"3"},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":14,"s":{"s":"49","n":"9","a":"5.5","d":"0.91","Os":"138","On":"25","Oa":"5.54","Od":"1.01","Dp":"25","p":{"21":{"n":7},"3":{"n":6},"4":{"n":7},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":3.5},"13":{"n":6},"14":{"n":5},"16":{"n":5.5}}},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":12,"s":{"g":"1","s":"70","n":"13","a":"5.38","d":"0.74","Og":"5","Os":"149","On":"28","Oa":"5.32","Od":"0.89","Mp":"14","Dp":"1","Ap":"5","p":{"21":{"n":5,"s":1},"1":{"n":7},"2":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6.5,"g":1},"10":{"n":6},"13":{"n":6},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":52,"s":{"g":"11","s":"79","n":"12","a":"6.63","d":"1.04","Og":"21","Os":"142","On":"20","Oa":"7.13","Od":"1.25","Mp":"3","Ap":"17","p":{"21":{"n":10,"g":4},"1":{"n":6,"g":1},"2":{"n":7.5,"g":1},"3":{"n":6,"g":1},"4":{"n":7,"g":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7.5,"g":2},"9":{"n":8,"g":1},"11":{"n":4},"12":{"n":7,"g":1},"13":{"n":7.5,"g":1},"15":{"n":6,"g":1}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":13,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Og":"1","Os":"92","On":"16","Oa":"5.78","Od":"0.88","Mp":"1","Dp":"14","p":{"14":{"n":5.5,"s":1},"15":{"n":5},"16":{"n":5,"s":1}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":11,"s":{"g":"1","s":"34","n":"7","a":"4.86","d":"0.58","Og":"3","Os":"109","On":"21","Oa":"5.19","Od":"1.04","Mp":"10","Ap":"8","p":{"6":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"11":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5}}},"c":2},{"i":1325,"n":"Jes\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"16","On":"4","Oa":"4","Od":"0.71","Ap":"1"},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":6,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":2},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":2},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":11,"s":{"s":"45","n":"9","a":"5.06","d":"0.55","Os":"45","On":"9","Oa":"5.06","Od":"0.55","Mp":"3","Dp":"6","p":{"1":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5.5},"11":{"n":6},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5},"16":{"n":4}}},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Os":"69","On":"13","Oa":"5.35","Od":"0.72","Mp":"11","p":{"1":{"n":5},"5":{"n":4},"10":{"n":5.5,"s":1}}},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":4,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":2},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":6,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"0.94","Ap":"3","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":4}}},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":6,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"7":{"n":5}}},"c":2},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":2},{"i":2661,"n":"Buffon","f":"Gianluigi","p":"G","r":17,"s":{"s":"40","n":"7","a":"5.71","d":"0.7","Os":"40","On":"7","Oa":"5.71","Od":"0.7","Gp":"7","p":{"1":{"n":6},"2":{"n":5},"6":{"n":6},"7":{"n":5},"9":{"n":7},"12":{"n":5},"14":{"n":6}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":13,"s":{"g":"2","s":"60","n":"11","a":"5.45","d":"1.08","Og":"2","Os":"60","On":"11","Oa":"5.45","Od":"1.08","Mp":"5","Ap":"6","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":7,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":8},"14":{"n":5},"16":{"n":5}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":1,"s":{"n":0},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":12,"s":{"s":"63","n":"12","a":"5.29","d":"0.92","Os":"63","On":"12","Oa":"5.29","Od":"0.92","Dp":"12","p":{"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":6,"s":1},"10":{"n":6.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5},"15":{"n":4},"16":{"n":5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":13,"s":{"s":"42","n":"8","a":"5.31","d":"0.61","Os":"42","On":"8","Oa":"5.31","Od":"0.61","Mp":"3","Dp":"5","p":{"5":{"n":6},"6":{"n":5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"15":{"n":5}}},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":13,"s":{"s":"52","n":"10","a":"5.2","d":"0.64","Os":"119","On":"23","Oa":"5.17","Od":"0.65","Mp":"20","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":6},"14":{"n":5.5},"15":{"n":5.5}}},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":19,"s":{"s":"88","n":"16","a":"5.5","d":"0.94","Os":"192","On":"35","Oa":"5.49","Od":"1.05","Gp":"35","p":{"26":{"n":6},"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":8},"8":{"n":5.5},"9":{"n":6},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6.5},"15":{"n":4},"16":{"n":5}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":16,"s":{"g":"4","s":"66","n":"14","a":"4.71","d":"1.18","Og":"10","Os":"162","On":"34","Oa":"4.76","Od":"1.22","Mp":"4","Ap":"30","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":7,"g":2},"7":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":5,"s":1},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":6,"g":1},"16":{"n":7,"g":1}}},"c":3},{"i":63,"n":"Prior","f":"Jerome","p":"G","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5","Gp":"2"},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":24,"s":{"g":"8","s":"88","n":"16","a":"5.53","d":"1.28","Og":"14","Os":"181","On":"35","Oa":"5.19","Od":"1.33","Mp":"7","Ap":"20","p":{"26":{"n":4,"s":1},"1":{"n":5},"2":{"n":5,"g":1},"3":{"n":7.5,"g":2},"4":{"n":4.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"9":{"n":8,"g":2},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":6.5,"g":1}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":16,"s":{"s":"70","n":"14","a":"5","d":"0.65","Og":"3","Os":"145","On":"28","Oa":"5.18","Od":"0.71","Mp":"20","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":6,"s":1},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":4},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5,"s":1}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":9,"s":{"s":"41","n":"8","a":"5.13","d":"0.6","Os":"150","On":"28","Oa":"5.36","Od":"0.85","Dp":"28","p":{"26":{"n":4},"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5}}},"c":3},{"i":116,"n":"Karamoh","f":"Yann","p":"A","r":12,"s":{"g":"2","s":"52","n":"10","a":"5.25","d":"0.81","Og":"2","Os":"52","On":"10","Oa":"5.25","Od":"0.81","Mp":"2","Ap":"8","p":{"6":{"n":6.5,"g":1,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":5.5},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":3},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":5,"s":{"s":"10","n":"2","a":"5","Og":"1","Os":"50","On":"10","Oa":"5","Od":"0.45","Mp":"5","p":{"2":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":8,"s":{"s":"7","n":"1","a":"7.5","Os":"12","On":"2","Oa":"6.25","Od":"1.25","Dp":"2","p":{"9":{"n":7.5}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":8,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"26","On":"6","Oa":"4.33","Od":"0.37","Dp":"4","p":{"1":{"n":4},"2":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4}}},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":7,"s":{"g":"1","s":"42","n":"9","a":"4.72","d":"0.89","Og":"4","Os":"123","On":"26","Oa":"4.75","Od":"1","Mp":"1","Ap":"19","p":{"26":{"n":4},"2":{"n":3},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"16":{"n":6,"s":1}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Dp":"2","p":{"1":{"n":3.5}}},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":12,"s":{"s":"58","n":"12","a":"4.88","d":"0.77","Os":"159","On":"31","Oa":"5.15","Od":"0.89","Dp":"31","p":{"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":6},"8":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":6,"s":1},"16":{"n":4.5}}},"c":3},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":5,"s":{"n":0},"c":3},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":5,"s":{"n":0,"Os":"26","On":"6","Oa":"4.33","Od":"0.47","Dp":"3","p":{"26":{"n":4}}},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":8,"s":{"n":0,"Os":"12","On":"3","Oa":"4"},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":13,"s":{"s":"63","n":"11","a":"5.73","d":"0.72","Os":"105","On":"19","Oa":"5.53","Od":"0.73","Mp":"17","p":{"26":{"n":5},"6":{"n":5.5},"7":{"n":7},"8":{"n":6},"9":{"n":7},"10":{"n":5},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5.5}}},"c":3},{"i":1203,"n":"Lerager","f":"Lukas","p":"M","r":14,"s":{"s":"70","n":"14","a":"5","d":"0.65","Og":"2","Os":"180","On":"35","Oa":"5.14","Od":"0.8","Mp":"35","p":{"26":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":5},"13":{"n":5},"14":{"n":4.5,"s":1},"16":{"n":5}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0},"c":3},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":5,"s":{"s":"19","n":"4","a":"4.75","d":"0.43","Os":"41","On":"9","Oa":"4.56","Od":"0.5","Mp":"3","Ap":"2","p":{"1":{"n":4},"8":{"n":5},"9":{"n":5,"s":1},"16":{"n":5}}},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0},"c":3},{"i":2149,"n":"Kound\u00e9","f":"Jules","p":"D","r":17,"s":{"s":"81","n":"16","a":"5.06","d":"0.83","Og":"2","Os":"178","On":"34","Oa":"5.24","Od":"0.81","Dp":"33","p":{"26":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":5},"16":{"n":5}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":20,"s":{"g":"1","s":"73","n":"13","a":"5.65","d":"1.04","Og":"1","Os":"159","On":"28","Oa":"5.7","Od":"0.99","Dp":"28","p":{"26":{"n":5},"1":{"n":4},"3":{"n":6},"4":{"n":4},"6":{"n":5.5},"7":{"n":7},"8":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":5},"16":{"n":8,"g":1}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":9,"s":{"s":"30","n":"6","a":"5","d":"0.58","Os":"30","On":"6","Oa":"5","Od":"0.58","Mp":"6","p":{"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"13":{"n":4.5}}},"c":3},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":11,"s":{"s":"60","n":"12","a":"5","d":"0.82","Os":"60","On":"12","Oa":"5","Od":"0.82","Dp":"12","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":5.5},"9":{"n":6.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5},"15":{"n":4}}},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassin","p":"M","r":1,"s":{"n":0},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":14,"s":{"g":"1","s":"61","n":"12","a":"5.08","d":"0.53","Og":"1","Os":"61","On":"12","Oa":"5.08","Od":"0.53","Mp":"4","Ap":"8","p":{"2":{"n":5.5},"3":{"n":5},"4":{"n":5},"5":{"n":6.5,"g":1},"6":{"n":5},"7":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5},"13":{"n":4.5},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.47","Os":"15","On":"3","Oa":"5.17","Od":"0.47","Mp":"3","p":{"1":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"10":{"n":5.5,"s":1}}},"c":3},{"i":2863,"n":"Cornelius","f":"Andreas","p":"A","r":14,"s":{"g":"2","s":"55","n":"11","a":"5","d":"0.85","Og":"2","Os":"55","On":"11","Oa":"5","Od":"0.85","Ap":"11","p":{"5":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":6.5,"g":1,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":13,"s":{"g":"1","s":"51","n":"10","a":"5.15","d":"0.67","Og":"5","Os":"150","On":"29","Oa":"5.19","Od":"1.01","Mp":"18","Ap":"5","p":{"22":{"n":4,"s":1},"1":{"n":5.5},"2":{"n":5},"5":{"n":5,"s":1},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"12":{"n":7,"g":1,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":5}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":19,"s":{"s":"86","n":"16","a":"5.41","d":"1.15","Os":"184","On":"34","Oa":"5.43","Od":"1.05","Gp":"34","p":{"22":{"n":5},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6},"8":{"n":7.5},"9":{"n":3},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":3.5}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":30,"s":{"g":"3","s":"81","n":"14","a":"5.82","d":"0.99","Og":"9","Os":"184","On":"33","Oa":"5.59","Od":"1.28","Mp":"29","Ap":"4","p":{"22":{"n":4},"2":{"n":7},"3":{"n":4.5},"4":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":6,"g":1},"10":{"n":3.5},"11":{"n":7,"g":1},"12":{"n":7},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5.5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":11,"s":{"s":"61","n":"12","a":"5.13","d":"1.02","Os":"149","On":"28","Oa":"5.34","Od":"0.95","Dp":"28","p":{"22":{"n":4},"1":{"n":6},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":3},"6":{"n":5.5},"8":{"n":6.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":6},"13":{"n":5.5}}},"c":4},{"i":69,"n":"Salibur","f":"Yannis","p":"M","r":14,"s":{"g":"1","s":"72","n":"14","a":"5.14","d":"0.89","Og":"2","Os":"128","On":"25","Oa":"5.12","Od":"1.02","Mp":"16","Ap":"7","p":{"2":{"n":4.5,"e":2745,"c":14,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6.5,"g":1,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":6},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":7,"s":1},"16":{"n":5}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":10,"s":{"s":"64","n":"14","a":"4.61","d":"0.47","Og":"1","Os":"148","On":"33","Oa":"4.5","Od":"0.7","Mp":"21","Ap":"7","p":{"22":{"n":4},"1":{"n":5},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":4.5,"s":1},"5":{"n":4},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":17,"s":{"s":"85","n":"15","a":"5.7","d":"0.91","Os":"176","On":"31","Oa":"5.69","Od":"0.84","Mp":"28","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":7,"s":1},"8":{"n":7.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":7},"14":{"n":5},"15":{"n":7},"16":{"n":5.5}}},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":15,"s":{"g":"4","s":"81","n":"16","a":"5.06","d":"1.07","Og":"4","Os":"88","On":"18","Oa":"4.89","Od":"1.14","Mp":"5","Ap":"13","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":5},"14":{"n":4},"15":{"n":4.5},"16":{"n":6,"g":1}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":9,"s":{"g":"1","s":"31","n":"7","a":"4.43","d":"0.73","Og":"8","Os":"106","On":"22","Oa":"4.82","Od":"1.11","Ap":"19","p":{"22":{"n":4},"3":{"n":4,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"10":{"n":3.5},"14":{"n":4.5,"s":1},"15":{"n":6,"g":1,"s":1},"16":{"n":4.5,"s":1}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":9,"s":{"n":0,"Os":"22","On":"4","Oa":"5.5","Od":"1.66","Gp":"3"},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0,"Os":"24","On":"5","Oa":"4.8","Od":"0.75","Mp":"1"},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":5,"s":{"n":0,"Os":"10","On":"3","Oa":"3.33","Od":"0.47","Dp":"3"},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"16":{"n":5}}},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":8,"s":{"s":"44","n":"9","a":"4.89","d":"0.46","Os":"44","On":"9","Oa":"4.89","Od":"0.46","Mp":"9","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":4}}},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":34,"s":{"g":"8","s":"86","n":"15","a":"5.73","d":"1.35","Og":"12","Os":"165","On":"30","Oa":"5.5","Od":"1.29","Mp":"8","Ap":"21","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"8":{"n":8,"g":2},"9":{"n":4.5},"10":{"n":7,"g":1},"11":{"n":4},"12":{"n":5},"13":{"n":8,"g":1},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":6,"g":1}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":14,"s":{"g":"2","s":"62","n":"11","a":"5.64","d":"0.88","Og":"6","Oao":"1","Os":"146","On":"26","Oa":"5.62","Od":"1.04","Dp":"26","p":{"2":{"n":6.5},"3":{"n":5},"4":{"n":5},"6":{"n":5},"10":{"n":4.5},"11":{"n":6},"12":{"n":6,"g":1},"13":{"n":7.5,"g":1},"14":{"n":5},"15":{"n":6.5},"16":{"n":5}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":8,"s":{"s":"26","n":"5","a":"5.2","d":"0.4","Og":"1","Os":"105","On":"21","Oa":"5","Od":"0.76","Mp":"12","Dp":"1","p":{"22":{"n":4},"1":{"n":4.5,"s":1},"5":{"n":5.5,"s":1},"7":{"n":5.5},"10":{"n":5.5},"11":{"n":5,"s":1}}},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":12,"s":{"s":"57","n":"11","a":"5.23","d":"0.78","Os":"147","On":"29","Oa":"5.09","Od":"0.93","Mp":"2","Dp":"27","p":{"22":{"n":5},"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":6},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":6.5}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":18,"s":{"s":"86","n":"16","a":"5.38","d":"0.93","Os":"166","On":"30","Oa":"5.53","Od":"0.81","Mp":"30","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":7},"9":{"n":4},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":7},"16":{"n":4}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":7,"s":{"s":"75","n":"15","a":"5.03","d":"0.96","Og":"2","Os":"157","On":"30","Oa":"5.25","Od":"1.05","Dp":"30","p":{"1":{"n":6.5},"2":{"n":3.5},"4":{"n":5},"5":{"n":4},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5}}},"c":4},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":1,"s":{"n":0},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":17,"s":{"g":"2","s":"83","n":"16","a":"5.19","d":"1.01","Og":"2","Os":"83","On":"16","Oa":"5.19","Od":"1.01","Dp":"16","p":{"1":{"n":6.5},"2":{"n":6,"s":1},"3":{"n":5.5},"4":{"n":6},"5":{"n":4},"6":{"n":6.5,"g":1},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":4}}},"c":4},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":1,"s":{"g":"1","s":"6","n":"1","a":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"2":{"n":6,"g":1,"s":1}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":5,"s":{"s":"16","n":"4","a":"4","d":"0.35","Os":"16","On":"4","Oa":"4","Od":"0.35","Dp":"4","p":{"7":{"n":4.5},"9":{"n":4},"10":{"n":3.5,"s":1},"16":{"n":4,"s":1}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":1,"s":{"n":0},"c":4},{"i":2963,"n":"Honorat","f":"Franck","p":"A","r":2,"s":{"n":0},"c":4},{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":10,"s":{"g":"3","s":"60","n":"13","a":"4.62","d":"0.9","Og":"5","Os":"121","On":"27","Oa":"4.48","Od":"0.82","Ap":"24","p":{"33":{"n":4,"s":1},"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1},"4":{"n":6.5,"g":1},"5":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":4},"15":{"n":4},"16":{"n":4}}},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":14,"s":{"g":"2","s":"89","n":"17","a":"5.26","d":"0.79","Sg":"2","Ss":"89","Sn":"17","Sa":"5.26","Sd":"0.79","Og":"3","Os":"154","On":"31","Oa":"4.98","Od":"1","Mp":"31","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":6,"g":1},"17":{"n":5.5}}},"c":5},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":11,"s":{"s":"72","n":"15","a":"4.83","d":"0.7","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.35","Os":"110","On":"23","Oa":"4.8","Od":"0.62","Dp":"21","p":{"1":{"n":4,"e":2733,"c":3,"s":1},"2":{"n":5.5},"3":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":6},"9":{"n":4.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":4}}},"c":5},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":8,"s":{"g":"1","s":"63","n":"14","a":"4.5","d":"1.05","Og":"1","Os":"121","On":"28","Oa":"4.32","Od":"0.85","Mp":"7","Ap":"11","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":3.5},"7":{"n":4,"s":1},"8":{"n":7,"g":1},"9":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":3.5}}},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":9,"s":{"g":"2","s":"58","n":"12","a":"4.83","d":"0.55","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"105","On":"23","Oa":"4.57","Od":"0.88","Mp":"10","Ap":"8","p":{"2":{"n":6,"g":1},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":6,"g":1,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"17":{"n":4.5}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":3,"s":{"s":"19","n":"4","a":"4.88","d":"0.54","Os":"80","On":"17","Oa":"4.74","Od":"0.6","Dp":"16","p":{"1":{"n":4},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5}}},"c":5},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":12,"s":{"s":"74","n":"14","a":"5.29","d":"0.9","Os":"159","On":"32","Oa":"4.97","Od":"0.89","Dp":"32","p":{"33":{"n":5},"1":{"n":3.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":4}}},"c":5},{"i":344,"n":"Guilbert","f":"Frederic","p":"D","r":10,"s":{"s":"75","n":"15","a":"5.03","d":"0.9","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Og":"1","Os":"169","On":"35","Oa":"4.84","Od":"1.01","Mp":"8","Dp":"26","Ap":"1","p":{"33":{"n":4},"2":{"n":5},"3":{"n":5.5},"4":{"n":7},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"15":{"n":5.5},"16":{"n":4},"17":{"n":5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":19,"s":{"s":"94","n":"17","a":"5.56","d":"0.87","Ss":"94","Sn":"17","Sa":"5.56","Sd":"0.87","Os":"117","On":"21","Oa":"5.6","Od":"0.87","Gp":"20","p":{"1":{"n":3},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":7},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"14":{"n":5},"15":{"n":5.5},"16":{"n":6},"17":{"n":5}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":6,"s":{"s":"29","n":"6","a":"4.92","d":"0.45","Os":"29","On":"6","Oa":"4.92","Od":"0.45","Dp":"6","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"11":{"n":5}}},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":6,"s":{"s":"30","n":"6","a":"5","d":"0.29","Os":"115","On":"23","Oa":"5","Od":"0.53","Mp":"15","Dp":"1","p":{"33":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5},"15":{"n":5,"s":1}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":8,"s":{"s":"20","n":"4","a":"5.13","d":"0.89","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.03","Os":"62","On":"13","Oa":"4.81","Od":"1.17","Mp":"5","Dp":"6","p":{"33":{"n":5},"6":{"n":5,"s":1},"15":{"n":6.5},"16":{"n":4},"17":{"n":5}}},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":2,"s":{"n":0},"c":5},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":12,"s":{"g":"2","s":"48","n":"10","a":"4.8","d":"0.68","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"3","Os":"123","On":"26","Oa":"4.73","Od":"0.79","Mp":"19","Ap":"1","p":{"5":{"n":4.5},"7":{"n":6,"g":1},"8":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1,"s":1}}},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"s":"33","n":"7","a":"4.79","d":"0.52","Os":"92","On":"20","Oa":"4.63","Od":"0.93","Mp":"18","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5,"s":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":5.5}}},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"23","On":"5","Oa":"4.6","Od":"0.8","Mp":"2"},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":9,"s":{"s":"43","n":"9","a":"4.78","d":"0.71","Os":"65","On":"14","Oa":"4.64","Od":"0.77","Mp":"2","Dp":"12","p":{"1":{"n":3.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":5},"6":{"n":4},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5.5},"16":{"n":4.5}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":7,"s":{"n":0,"Os":"90","On":"17","Oa":"5.29","Od":"0.89","Gp":"17"},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":5,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.49","Mp":"2","Ap":"1"},"c":5},{"i":1621,"n":"Beauvue","f":"Claudio","p":"A","r":11,"s":{"g":"3","s":"67","n":"14","a":"4.82","d":"1.06","Sg":"3","Ss":"67","Sn":"14","Sa":"4.82","Sd":"1.06","Og":"3","Os":"121","On":"28","Oa":"4.34","Od":"0.96","Mp":"7","Ap":"14","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":7,"g":1},"6":{"n":4},"7":{"n":4},"8":{"n":5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4},"12":{"n":4},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":6.5,"g":1},"16":{"n":5},"17":{"n":5}}},"c":5},{"i":1706,"n":"Fajr","f":"Faycal","p":"M","r":18,"s":{"g":"2","s":"87","n":"16","a":"5.47","d":"0.74","Sg":"1","Ss":"36","Sn":"7","Sa":"5.21","Sd":"0.52","Og":"2","Os":"173","On":"33","Oa":"5.26","Od":"0.8","Mp":"31","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6.5},"6":{"n":6,"g":1},"7":{"n":6},"8":{"n":7},"9":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":5.5,"g":1}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":8,"s":{"s":"38","n":"8","a":"4.75","d":"0.75","Og":"1","Os":"91","On":"19","Oa":"4.79","Od":"0.8","Mp":"10","Ap":"2","p":{"33":{"n":5},"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":6},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":3.5},"14":{"n":5}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":9,"s":{"s":"55","n":"11","a":"5","d":"0.74","Ss":"5","Sn":"1","Sa":"5","Os":"59","On":"12","Oa":"4.92","Od":"0.76","Mp":"1","Dp":"11","p":{"1":{"n":4},"2":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":4},"10":{"n":5,"s":1},"12":{"n":6.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":5},"17":{"n":5}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":8,"s":{"s":"4","n":"1","a":"4","Os":"45","On":"10","Oa":"4.5","Od":"0.5","Mp":"2","Ap":"2","p":{"33":{"n":4},"1":{"n":4,"s":1}}},"c":5},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":1,"s":{"n":0},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":9,"s":{"s":"65","n":"15","a":"4.37","d":"0.56","Ss":"30","Sn":"7","Sa":"4.29","Sd":"0.52","Os":"65","On":"15","Oa":"4.37","Od":"0.56","Mp":"1","Ap":"14","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":3.5}}},"c":5},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":7,"s":{"s":"27","n":"6","a":"4.58","d":"0.93","Ss":"23","Sn":"5","Sa":"4.6","Sd":"1.02","Os":"27","On":"6","Oa":"4.58","Od":"0.93","Mp":"1","Dp":"5","p":{"10":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":6},"16":{"n":3},"17":{"n":4}}},"c":5},{"i":2935,"n":"Zahary","f":"Younn","p":"D","r":1,"s":{"n":0},"c":5},{"i":2940,"n":"Joseph","f":"Evens","p":"M","r":1,"s":{"n":0},"c":5},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":7,"s":{"s":"39","n":"8","a":"4.88","d":"0.33","Og":"1","Os":"75","On":"15","Oa":"5","Od":"0.52","Mp":"10","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1}}},"c":7},{"i":104,"n":"J\u00falio Tavares","f":"","p":"A","r":13,"s":{"g":"3","s":"69","n":"15","a":"4.6","d":"1.17","Ss":"32","Sn":"7","Sa":"4.57","Sd":"0.42","Og":"11","Os":"147","On":"30","Oa":"4.9","Od":"1.29","Ap":"29","p":{"1":{"n":6,"g":1},"2":{"n":8,"g":2},"3":{"n":5},"4":{"n":3.5},"5":{"n":3.5},"6":{"n":4},"7":{"n":4},"8":{"n":3},"11":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":5},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":7},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":16,"s":{"g":"3","s":"75","n":"14","a":"5.36","d":"0.69","Sg":"1","Ss":"21","Sn":"4","Sa":"5.38","Sd":"0.54","Og":"3","Os":"135","On":"26","Oa":"5.19","Od":"0.87","Mp":"25","Dp":"1","p":{"21":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":6},"3":{"n":6.5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":4},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":6,"g":1},"14":{"n":5.5},"15":{"n":6,"g":1},"16":{"n":5.5},"17":{"n":4.5}}},"c":7},{"i":165,"n":"Said","f":"Wesley","p":"A","r":10,"s":{"g":"1","s":"63","n":"14","a":"4.5","d":"0.53","Ss":"27","Sn":"6","Sa":"4.58","Sd":"0.53","Og":"7","Os":"140","On":"29","Oa":"4.83","Od":"1.21","Mp":"4","Ap":"21","p":{"21":{"n":3},"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5.5,"g":1},"6":{"n":4.5},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":8,"s":{"s":"32","n":"7","a":"4.57","d":"0.62","Os":"94","On":"20","Oa":"4.7","Od":"0.93","Mp":"15","p":{"21":{"n":2},"3":{"n":5,"s":1},"6":{"n":5.5},"8":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":3.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":7},{"i":187,"n":"Sammaritano","f":"Frederic","p":"M","r":9,"s":{"s":"40","n":"8","a":"5","d":"0.87","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.25","Os":"98","On":"20","Oa":"4.9","Od":"0.77","Mp":"14","Ap":"3","p":{"2":{"n":6.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5},"17":{"n":5,"s":1}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":6,"s":{"s":"13","n":"3","a":"4.33","d":"0.47","Ss":"4","Sn":"1","Sa":"4","Os":"66","On":"14","Oa":"4.71","Od":"1.1","Mp":"6","Dp":"6","p":{"21":{"n":2},"6":{"n":5},"13":{"n":4},"17":{"n":4}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":10,"s":{"s":"62","n":"14","a":"4.46","d":"0.64","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.61","Os":"141","On":"30","Oa":"4.72","Od":"0.82","Mp":"28","Ap":"2","p":{"1":{"n":4.5},"3":{"n":6},"4":{"n":4},"5":{"n":4.5},"6":{"n":5},"7":{"n":3.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"14":{"n":5.5},"15":{"n":4},"16":{"n":4.5},"17":{"n":4}}},"c":7},{"i":312,"n":"Sliti","f":"Naim","p":"M","r":15,"s":{"s":"85","n":"17","a":"5.03","d":"0.93","Ss":"85","Sn":"17","Sa":"5.03","Sd":"0.93","Og":"5","Os":"194","On":"37","Oa":"5.26","Od":"0.95","Mp":"22","Ap":"11","p":{"1":{"n":7},"2":{"n":5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":4.5},"10":{"n":5.5,"s":1},"11":{"n":5},"12":{"n":3},"13":{"n":5.5},"14":{"n":5},"15":{"n":7},"16":{"n":5},"17":{"n":5,"s":1}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":9,"s":{"s":"22","n":"5","a":"4.5","d":"1.05","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"80","On":"16","Oa":"5.03","Od":"1.17","Mp":"12","p":{"21":{"n":4,"s":1},"10":{"n":3.5},"11":{"n":5.5},"12":{"n":3.5},"13":{"n":4},"17":{"n":6}}},"c":7},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":10,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.78","Sg":"1","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.31","Og":"1","Os":"108","On":"24","Oa":"4.5","Od":"0.83","Mp":"6","Ap":"10","p":{"21":{"n":3},"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":4},"7":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"15":{"n":4},"16":{"n":6.5,"g":1},"17":{"n":3.5}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":10,"s":{"s":"67","n":"15","a":"4.47","d":"1.01","Os":"111","On":"24","Oa":"4.63","Od":"1.02","Mp":"6","Dp":"16","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":3.5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":3},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":13,"s":{"g":"2","s":"74","n":"15","a":"4.93","d":"1.36","Sg":"1","Ss":"25","Sn":"5","Sa":"5.1","Sd":"1.32","Og":"3","Os":"155","On":"33","Oa":"4.7","Od":"1.37","Mp":"4","Dp":"26","p":{"21":{"n":3,"s":1},"1":{"n":5},"2":{"n":7},"3":{"n":7.5,"g":1},"4":{"n":3},"5":{"n":4},"6":{"n":5.5},"7":{"n":4},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":7.5,"g":1},"17":{"n":4}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":4,"s":{"n":0,"Os":"20","On":"4","Oa":"5","Dp":"2"},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":11,"s":{"s":"13","n":"2","a":"6.75","d":"0.25","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.25","Os":"13","On":"2","Oa":"6.75","Od":"0.25","Gp":"2","p":{"16":{"n":7},"17":{"n":6.5}}},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":10,"s":{"s":"78","n":"17","a":"4.59","d":"1.3","Ss":"78","Sn":"17","Sa":"4.59","Sd":"1.3","Oao":"2","Os":"173","On":"38","Oa":"4.55","Od":"1.41","Mp":"8","Dp":"29","p":{"21":{"n":1},"1":{"n":4.5},"2":{"n":7.5},"3":{"n":7},"4":{"n":3},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":2.5},"13":{"n":4},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":3.5}}},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":6,"s":{"n":0,"Og":"6","Os":"96","On":"19","Oa":"5.05","Od":"1.23","Mp":"6","Ap":"6","p":{"21":{"n":3}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":11,"s":{"s":"60","n":"13","a":"4.65","d":"1.06","Ss":"20","Sn":"4","Sa":"5.13","Sd":"0.65","Og":"1","Os":"139","On":"31","Oa":"4.5","Od":"1.29","Dp":"30","p":{"21":{"n":1},"1":{"n":5},"2":{"n":7},"4":{"n":4},"5":{"n":3.5},"7":{"n":3},"8":{"n":4},"9":{"n":5},"11":{"n":5,"s":1},"12":{"n":3.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":7,"s":{"g":"1","s":"14","n":"3","a":"4.67","d":"1.25","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"1.25","Dp":"3","p":{"9":{"n":5,"s":1},"11":{"n":6,"g":1},"12":{"n":3}}},"c":7},{"i":2633,"n":"Ntumba","f":"Levi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":6,"s":{"g":"1","s":"25","n":"5","a":"5","d":"0.77","Og":"1","Os":"25","On":"5","Oa":"5","Od":"0.77","Dp":"5","p":{"1":{"n":6.5,"g":1},"6":{"n":4.5},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5}}},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":9,"s":{"s":"53","n":"11","a":"4.86","d":"1.05","Os":"53","On":"11","Oa":"4.86","Od":"1.05","Mp":"11","p":{"1":{"n":5},"2":{"n":6},"3":{"n":7.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":4.5},"13":{"n":5},"14":{"n":5,"s":1}}},"c":7},{"i":2687,"n":"Jules Keita","f":"","p":"A","r":8,"s":{"g":"2","s":"54","n":"12","a":"4.5","d":"1.1","Og":"2","Os":"54","On":"12","Oa":"4.5","Od":"1.1","Mp":"1","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":8,"g":2,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4},"6":{"n":4,"s":1},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1}}},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":8,"s":{"g":"2","s":"23","n":"4","a":"5.88","d":"0.65","Og":"2","Os":"23","On":"4","Oa":"5.88","Od":"0.65","Dp":"4","p":{"3":{"n":6.5,"g":1},"13":{"n":5},"14":{"n":6.5},"15":{"n":5.5,"g":1}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":9,"s":{"s":"73","n":"15","a":"4.87","d":"1.09","Os":"73","On":"15","Oa":"4.87","Od":"1.09","Gp":"15","p":{"1":{"n":6},"2":{"n":6},"3":{"n":6.5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":4},"8":{"n":2.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":5},"14":{"n":5.5},"15":{"n":4.5}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":10,"s":{"s":"38","n":"9","a":"4.22","d":"0.92","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"38","On":"9","Oa":"4.22","Od":"0.92","Dp":"9","p":{"5":{"n":3},"6":{"n":5.5},"7":{"n":3.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":4,"s":1},"16":{"n":5,"s":1},"17":{"n":4}}},"c":7},{"i":2941,"n":"Doumbouya","f":"Sory","p":"A","r":1,"s":{"n":0},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":10,"s":{"g":"1","s":"69","n":"15","a":"4.6","d":"0.64","Og":"1","Os":"69","On":"15","Oa":"4.6","Od":"0.64","Mp":"4","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":6,"g":1,"s":1},"15":{"n":3.5}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":9,"s":{"s":"23","n":"5","a":"4.6","d":"0.97","Oao":"1","Os":"117","On":"23","Oa":"5.09","Od":"1.01","Dp":"23","p":{"36":{"n":4},"12":{"n":5.5},"13":{"n":5},"14":{"n":4},"15":{"n":3},"16":{"n":5.5}}},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":30,"s":{"g":"12","s":"83","n":"15","a":"5.57","d":"1.58","Og":"19","Os":"168","On":"35","Oa":"4.81","Od":"1.62","Ap":"35","p":{"36":{"n":2},"1":{"n":6.5,"g":1,"s":1},"2":{"n":3.5},"3":{"n":6,"g":1,"s":1},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":4},"7":{"n":6,"g":1},"9":{"n":3},"10":{"n":8.5,"g":3},"11":{"n":6.5,"g":1},"12":{"n":7.5,"g":2},"13":{"n":6.5,"g":1},"14":{"n":5.5},"15":{"n":3},"16":{"n":6.5,"g":1}}},"c":8},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":17,"s":{"g":"4","s":"82","n":"15","a":"5.5","d":"1.2","Og":"4","Os":"92","On":"17","Oa":"5.44","Od":"1.14","Mp":"6","Ap":"10","p":{"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":3.5},"10":{"n":8,"g":1},"11":{"n":7,"g":1},"12":{"n":6.5},"13":{"n":5},"14":{"n":5},"15":{"n":4,"s":1},"16":{"n":6.5,"g":1}}},"c":8},{"i":220,"n":"Diego Carlos","f":"","p":"D","r":12,"s":{"s":"68","n":"14","a":"4.89","d":"0.97","Os":"141","On":"28","Oa":"5.05","Od":"0.89","Dp":"27","p":{"1":{"n":3.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":4},"9":{"n":4},"10":{"n":6.5},"11":{"n":6},"12":{"n":6},"13":{"n":5},"14":{"n":5},"15":{"n":4},"16":{"n":5}}},"c":8},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":13,"s":{"g":"1","s":"71","n":"14","a":"5.11","d":"0.89","Og":"2","Os":"178","On":"35","Oa":"5.1","Od":"0.91","Mp":"31","Ap":"1","p":{"36":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":6.5},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5},"16":{"n":5}}},"c":8},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":9,"s":{"s":"8","n":"2","a":"4","d":"1","Os":"8","On":"2","Oa":"4","Od":"1","Gp":"2","p":{"15":{"n":3,"s":1},"16":{"n":5}}},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":6,"s":{"n":0,"Os":"35","On":"7","Oa":"5","Od":"0.53","Mp":"1","p":{"36":{"n":5,"s":1}}},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":16,"s":{"s":"79","n":"16","a":"4.94","d":"1.17","Og":"1","Os":"179","On":"35","Oa":"5.11","Od":"1.1","Mp":"3","Dp":"30","Ap":"1","p":{"36":{"n":4},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":3},"8":{"n":5},"9":{"n":4.5},"10":{"n":7},"11":{"n":6.5},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":3},"16":{"n":7}}},"c":8},{"i":404,"n":"Djidji","f":"Koffi","p":"D","r":12,"s":{"s":"3","n":"1","a":"3","Os":"71","On":"14","Oa":"5.07","Od":"0.88","Dp":"14","p":{"36":{"n":4},"1":{"n":3}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":8},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":12,"s":{"s":"67","n":"14","a":"4.79","d":"1.13","Os":"67","On":"14","Oa":"4.79","Od":"1.13","Dp":"14","p":{"1":{"n":3},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":3.5},"8":{"n":5,"s":1},"10":{"n":7.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"15":{"n":4},"16":{"n":5}}},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0,"Os":"8","On":"2","Oa":"4"},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":15,"s":{"g":"2","s":"67","n":"12","a":"5.63","d":"1.32","Og":"2","Os":"165","On":"31","Oa":"5.34","Od":"0.97","Mp":"26","p":{"36":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"4":{"n":4.5,"s":1},"8":{"n":6},"9":{"n":5.5,"s":1},"10":{"n":7.5},"11":{"n":7},"12":{"n":7,"g":1},"13":{"n":5.5},"14":{"n":5},"15":{"n":4},"16":{"n":7.5,"g":1}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":1,"s":{"n":0},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":8},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":1,"s":{"n":0},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":9,"s":{"s":"34","n":"7","a":"4.86","d":"0.44","Os":"34","On":"7","Oa":"4.86","Od":"0.44","Mp":"1","Dp":"6","p":{"8":{"n":5},"9":{"n":4.5},"11":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":5}}},"c":8},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":18,"s":{"s":"85","n":"15","a":"5.67","d":"0.87","Os":"195","On":"36","Oa":"5.42","Od":"0.76","Gp":"36","p":{"36":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":5.5},"8":{"n":8},"9":{"n":5},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":7},"14":{"n":4.5},"15":{"n":5}}},"c":8},{"i":1171,"n":"Kalifa Coulibaly","f":"","p":"A","r":11,"s":{"g":"1","s":"56","n":"13","a":"4.35","d":"0.57","Og":"2","Os":"75","On":"17","Oa":"4.44","Od":"0.82","Ap":"15","p":{"36":{"n":4,"s":1},"1":{"n":3.5},"2":{"n":4,"s":1},"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":12,"s":{"g":"1","s":"35","n":"6","a":"5.92","d":"1.27","Og":"1","Os":"109","On":"20","Oa":"5.48","Od":"0.95","Mp":"18","p":{"10":{"n":7},"11":{"n":5.5},"12":{"n":8,"g":1},"13":{"n":4},"14":{"n":5.5},"16":{"n":5.5}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0,"Os":"43","On":"9","Oa":"4.78","Od":"0.42","Mp":"2"},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Mp":"1"},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":9,"s":{"s":"55","n":"12","a":"4.58","d":"0.64","Os":"80","On":"17","Oa":"4.71","Od":"0.67","Mp":"16","p":{"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5,"s":1},"14":{"n":6},"15":{"n":4},"16":{"n":5,"s":1}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":6,"s":{"n":0,"Os":"89","On":"19","Oa":"4.68","Od":"1.13","Dp":"18"},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":9,"s":{"s":"47","n":"9","a":"5.22","d":"0.53","Og":"1","Os":"114","On":"22","Oa":"5.18","Od":"0.61","Mp":"21","p":{"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4.5},"12":{"n":5,"s":1}}},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"15":{"n":4,"s":1}}},"c":8},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"44","On":"10","Oa":"4.4","Od":"0.66","Mp":"1","Ap":"2"},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":5,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":3.5},"3":{"n":4.5}}},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":1,"s":{"n":0},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":8,"s":{"g":"1","s":"53","n":"11","a":"4.86","d":"1","Og":"1","Os":"53","On":"11","Oa":"4.86","Od":"1","Mp":"8","Ap":"3","p":{"1":{"n":4},"2":{"n":3.5},"3":{"n":5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":3.5}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2795,"n":"Miazga","f":"Matt","p":"D","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"1","Os":"36","On":"8","Oa":"4.5","Od":"1","Dp":"8","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":2.5}}},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":11,"s":{"s":"62","n":"12","a":"5.17","d":"0.51","Os":"62","On":"12","Oa":"5.17","Od":"0.51","Mp":"9","Ap":"3","p":{"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6.5},"11":{"n":5},"12":{"n":6},"13":{"n":5,"s":1},"14":{"n":5},"16":{"n":5,"s":1}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":8,"s":{"s":"22","n":"4","a":"5.5","d":"0.35","Os":"22","On":"4","Oa":"5.5","Od":"0.35","Dp":"4","p":{"7":{"n":5},"8":{"n":5.5},"10":{"n":6},"11":{"n":5.5}}},"c":8},{"i":2938,"n":"Louza","f":"Imran","p":"M","r":1,"s":{"n":0},"c":8},{"i":2947,"n":"Youan","f":"Thody Elie","p":"A","r":1,"s":{"n":0},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":23,"s":{"g":"4","s":"88","n":"16","a":"5.53","d":"1.17","Og":"9","Os":"206","On":"35","Oa":"5.9","Od":"1.28","Mp":"26","Ap":"6","p":{"26":{"n":6},"1":{"n":8,"g":2},"2":{"n":4},"3":{"n":4.5},"4":{"n":7},"5":{"n":8,"g":1},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5,"s":1}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":12,"s":{"g":"3","s":"76","n":"16","a":"4.78","d":"1.09","Og":"10","Os":"179","On":"36","Oa":"4.99","Od":"1.3","Mp":"1","Ap":"33","p":{"26":{"n":4},"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":6.5,"g":1,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":6.5,"g":1},"8":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":4}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":41,"s":{"g":"11","s":"82","n":"15","a":"5.5","d":"1.6","Og":"25","Os":"193","On":"33","Oa":"5.86","Od":"1.52","Mp":"27","Ap":"6","p":{"26":{"n":6,"g":1},"1":{"n":6,"g":1,"s":1},"2":{"n":5.5,"g":1},"3":{"n":4.5},"4":{"n":7,"g":1,"s":1},"5":{"n":7.5,"g":2},"6":{"n":5.5,"g":1},"7":{"n":5},"8":{"n":4},"9":{"n":8,"g":1},"11":{"n":4.5},"12":{"n":2.5},"13":{"n":4.5},"14":{"n":8.5,"g":3},"15":{"n":4},"16":{"n":5.5,"g":1}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":22,"s":{"g":"3","s":"75","n":"14","a":"5.39","d":"1.27","Og":"7","Os":"179","On":"33","Oa":"5.44","Od":"1.2","Mp":"28","p":{"26":{"n":5},"1":{"n":8},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":3},"7":{"n":6,"g":1},"10":{"n":6.5,"g":1},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":6},"15":{"n":5,"s":1},"16":{"n":6,"g":1}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":9,"s":{"g":"1","s":"24","n":"5","a":"4.9","d":"0.58","Og":"3","Os":"83","On":"18","Oa":"4.64","Od":"0.98","Mp":"2","Ap":"6","p":{"26":{"n":4,"s":1},"1":{"n":4.5},"3":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5}}},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":11,"s":{"s":"52","n":"10","a":"5.25","d":"0.56","Os":"128","On":"24","Oa":"5.35","Od":"0.73","Mp":"19","p":{"26":{"n":5,"s":1},"1":{"n":6},"3":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6},"13":{"n":5.5},"14":{"n":6},"15":{"n":5}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":11,"s":{"s":"28","n":"6","a":"4.75","d":"0.99","Os":"73","On":"15","Oa":"4.9","Od":"0.9","Gp":"12","p":{"26":{"n":6},"1":{"n":6},"2":{"n":4.5,"s":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":3.5}}},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":13,"s":{"s":"56","n":"11","a":"5.14","d":"1.02","Os":"146","On":"29","Oa":"5.05","Od":"0.9","Dp":"27","p":{"26":{"n":6},"1":{"n":6.5},"2":{"n":3.5},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":5}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":14,"s":{"s":"70","n":"14","a":"5.04","d":"1.19","Os":"169","On":"32","Oa":"5.3","Od":"1","Mp":"4","Dp":"25","p":{"1":{"n":5.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5},"4":{"n":5.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":7.5},"11":{"n":4.5},"12":{"n":3},"13":{"n":6.5},"14":{"n":5},"15":{"n":6},"16":{"n":3}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":9,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Og":"1","Oao":"1","Os":"101","On":"20","Oa":"5.08","Od":"0.93","Dp":"19","p":{"26":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":3.5}}},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":8,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Os":"30","On":"6","Oa":"5.08","Od":"0.73","Mp":"3","Dp":"1","p":{"1":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47"},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":9},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":16,"s":{"s":"57","n":"11","a":"5.23","d":"0.86","Os":"131","On":"26","Oa":"5.06","Od":"0.82","Gp":"26","p":{"2":{"n":5},"7":{"n":5},"8":{"n":4},"9":{"n":6.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":4}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":15,"s":{"s":"67","n":"14","a":"4.82","d":"0.94","Og":"1","Os":"183","On":"34","Oa":"5.4","Od":"1.13","Mp":"23","Dp":"11","p":{"26":{"n":7},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":3},"7":{"n":4.5},"8":{"n":3.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":3.5},"13":{"n":6},"15":{"n":5},"16":{"n":5}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":11,"s":{"g":"1","s":"60","n":"12","a":"5.04","d":"1.23","Og":"2","Oao":"1","Os":"145","On":"29","Oa":"5.02","Od":"1.02","Dp":"29","p":{"26":{"n":6},"2":{"n":4},"3":{"n":4},"4":{"n":4.5},"5":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":4},"13":{"n":8,"g":1},"14":{"n":5.5},"15":{"n":6},"16":{"n":3.5}}},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":10,"s":{"s":"51","n":"11","a":"4.64","d":"1.19","Os":"125","On":"25","Oa":"5","Od":"1.15","Dp":"22","p":{"26":{"n":6},"1":{"n":7},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":3},"7":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":3},"16":{"n":5,"s":1}}},"c":9},{"i":1197,"n":"Ocampos","f":"Lucas","p":"M","r":16,"s":{"g":"2","s":"76","n":"15","a":"5.1","d":"1.07","Og":"5","Os":"172","On":"33","Oa":"5.23","Od":"1.09","Mp":"27","Ap":"2","p":{"26":{"n":4,"s":1},"1":{"n":6},"2":{"n":4},"3":{"n":6,"g":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1},"14":{"n":6},"15":{"n":6},"16":{"n":5}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":11,"s":{"s":"63","n":"13","a":"4.88","d":"0.79","Os":"90","On":"18","Oa":"5.03","Od":"0.89","Mp":"1","Dp":"17","p":{"1":{"n":6},"3":{"n":4},"4":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":3},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":4.5}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":11,"s":{"g":"3","s":"57","n":"12","a":"4.75","d":"0.8","Og":"10","Os":"115","On":"23","Oa":"5","Od":"1.09","Ap":"14","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":3.5},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1}}},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0,"Os":"12","On":"2","Oa":"6","Od":"1","Dp":"1"},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":1,"s":{"n":0},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":1,"s":{"n":0},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":6,"s":{"s":"17","n":"4","a":"4.25","d":"1.03","Os":"17","On":"4","Oa":"4.25","Od":"1.03","Dp":"4","p":{"2":{"n":3.5},"6":{"n":3},"10":{"n":5.5,"s":1},"12":{"n":5,"s":1}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"A","r":1,"s":{"n":0},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":14,"s":{"s":"60","n":"12","a":"5.04","d":"0.97","Os":"60","On":"12","Oa":"5.04","Od":"0.97","Mp":"12","p":{"4":{"n":5},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":3.5},"13":{"n":6},"15":{"n":5,"s":1},"16":{"n":4}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":8,"s":{"s":"21","n":"5","a":"4.3","d":"0.4","Os":"21","On":"5","Oa":"4.3","Od":"0.4","Mp":"1","Ap":"4","p":{"5":{"n":4.5,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1}}},"c":9},{"i":2939,"n":"Philiponeau","f":"Alexandre","p":"M","r":1,"s":{"n":0},"c":9},{"i":2953,"n":"Ali Mohamed","f":"Abdallah","p":"D","r":1,"s":{"n":0},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0,"Os":"40","On":"10","Oa":"4","p":{"33":{"n":4,"s":1}}},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":10,"s":{"s":"73","n":"15","a":"4.9","d":"1.29","Og":"1","Os":"142","On":"29","Oa":"4.91","Od":"1.05","Dp":"29","p":{"33":{"n":6},"1":{"n":3.5},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":3},"8":{"n":6},"9":{"n":5.5},"10":{"n":2},"11":{"n":3.5},"12":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":4}}},"c":10},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":10,"s":{"s":"41","n":"8","a":"5.13","d":"0.54","Os":"110","On":"21","Oa":"5.24","Od":"0.67","Mp":"21","p":{"33":{"n":5},"4":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":5},"15":{"n":6},"16":{"n":5,"s":1}}},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":14,"s":{"ao":"1","s":"77","n":"15","a":"5.13","d":"1.27","Oao":"1","Os":"195","On":"36","Oa":"5.42","Od":"1.3","Gp":"36","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":5},"6":{"n":6.5},"7":{"n":3.5},"8":{"n":8},"9":{"n":4.5},"10":{"n":4},"11":{"n":4,"a":1},"12":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":3}}},"c":10},{"i":144,"n":"Sylla","f":"Issiaga","p":"D","r":10,"s":{"g":"1","s":"26","n":"5","a":"5.3","d":"1.17","Og":"2","Os":"102","On":"21","Oa":"4.88","Od":"1.09","Mp":"3","Dp":"14","Ap":"1","p":{"33":{"n":5,"s":1},"4":{"n":6},"9":{"n":5,"s":1},"11":{"n":3.5},"14":{"n":5},"16":{"n":7,"g":1}}},"c":10},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":4,"s":{"n":0,"Oao":"1","Os":"55","On":"12","Oa":"4.58","Od":"0.86","Dp":"10"},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":11,"s":{"s":"71","n":"15","a":"4.77","d":"0.93","Os":"114","On":"24","Oa":"4.77","Od":"0.97","Dp":"23","p":{"33":{"n":5},"1":{"n":4},"2":{"n":6},"3":{"n":6},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":5},"9":{"n":4.5},"10":{"n":2.5},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":5.5}}},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"1","p":{"10":{"n":4.5,"s":1}}},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":12,"s":{"g":"1","s":"73","n":"15","a":"4.87","d":"0.74","Og":"1","Os":"124","On":"25","Oa":"4.96","Od":"0.62","Mp":"17","Ap":"2","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":6.5,"g":1,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":6,"s":1},"16":{"n":5.5}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":11,"s":{"s":"36","n":"8","a":"4.56","d":"0.39","Og":"2","Os":"106","On":"24","Oa":"4.44","Od":"0.74","Ap":"14","p":{"6":{"n":4,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5}}},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0,"Os":"64","On":"13","Oa":"4.92","Od":"0.62","Mp":"8","Ap":"3","p":{"33":{"n":4,"s":1}}},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":7,"s":{"s":"38","n":"9","a":"4.28","d":"0.67","Og":"1","Os":"116","On":"26","Oa":"4.48","Od":"0.94","Mp":"4","Ap":"12","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1},"3":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":3},"11":{"n":4,"s":1},"12":{"n":4,"s":1},"16":{"n":5.5}}},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":9,"s":{"s":"14","n":"2","a":"7","d":"1","Os":"14","On":"2","Oa":"7","Od":"1","Gp":"2","p":{"15":{"n":6,"s":1},"16":{"n":8}}},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":8,"s":{"s":"21","n":"5","a":"4.2","d":"0.93","Os":"21","On":"5","Oa":"4.2","Od":"0.93","Dp":"5","p":{"9":{"n":4.5},"10":{"n":2.5},"13":{"n":4},"14":{"n":5},"15":{"n":5}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":11,"s":{"g":"3","s":"57","n":"13","a":"4.38","d":"1.29","Og":"3","Os":"57","On":"13","Oa":"4.38","Od":"1.29","Ap":"13","p":{"1":{"n":2.5},"2":{"n":6.5,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6.5,"g":1,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":2.5},"12":{"n":4},"13":{"n":4},"14":{"n":4},"15":{"n":6,"g":1,"s":1},"16":{"n":3.5}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":12,"s":{"s":"69","n":"14","a":"4.93","d":"1.07","Og":"1","Os":"165","On":"34","Oa":"4.85","Od":"0.9","Mp":"1","Dp":"32","p":{"33":{"n":5},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":3},"8":{"n":6},"11":{"n":3},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":6}}},"c":10},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"15","On":"3","Oa":"5","Od":"0.82","Dp":"2","p":{"1":{"n":4}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Sangar\u00e9","f":"Ibrahim","p":"M","r":8,"s":{"g":"1","s":"53","n":"9","a":"5.89","d":"0.7","Og":"2","Os":"140","On":"26","Oa":"5.38","Od":"0.91","Mp":"25","p":{"33":{"n":5},"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":6}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":7,"s":{"s":"17","n":"4","a":"4.25","d":"0.43","Og":"6","Os":"105","On":"22","Oa":"4.77","Od":"1.44","Ap":"19","p":{"33":{"n":4},"1":{"n":4,"s":1},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4}}},"c":10},{"i":1025,"n":"Gradel","f":"Max-Alain","p":"A","r":22,"s":{"g":"5","s":"89","n":"16","a":"5.59","d":"1.37","Og":"11","Os":"188","On":"35","Oa":"5.39","Od":"1.44","Mp":"22","Ap":"13","p":{"33":{"n":4},"1":{"n":4},"2":{"n":6},"3":{"n":7,"g":1},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":6,"g":1},"8":{"n":6},"9":{"n":3.5},"10":{"n":3},"11":{"n":4},"12":{"n":7.5,"g":1},"13":{"n":5},"14":{"n":5.5},"15":{"n":7.5,"g":1},"16":{"n":5.5}}},"c":10},{"i":1208,"n":"Steven Fortes","f":"","p":"D","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"24","On":"5","Oa":"4.9","Od":"0.49","Dp":"4","p":{"2":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":3,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5"},"c":10},{"i":1528,"n":"Dossevi","f":"Mathieu","p":"M","r":14,"s":{"g":"2","s":"80","n":"16","a":"5.03","d":"1.01","Og":"3","Os":"177","On":"34","Oa":"5.22","Od":"1.32","Mp":"32","Ap":"2","p":{"1":{"n":3.5},"2":{"n":7,"g":1},"3":{"n":5},"4":{"n":6},"5":{"n":4},"6":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":4.5},"15":{"n":6},"16":{"n":5,"s":1}}},"c":10},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":9,"s":{"s":"48","n":"10","a":"4.85","d":"0.71","Os":"48","On":"10","Oa":"4.85","Od":"0.71","Mp":"10","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1}}},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":12,"s":{"s":"76","n":"16","a":"4.75","d":"1.03","Os":"76","On":"16","Oa":"4.75","Od":"1.03","Mp":"16","p":{"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":7},"5":{"n":4.5},"6":{"n":5.5,"s":1},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":5.5},"16":{"n":5,"s":1}}},"c":10},{"i":2767,"n":"Todibo","f":"Jean-Clair","p":"M","r":8,"s":{"g":"1","s":"49","n":"10","a":"4.9","d":"1.37","Og":"1","Os":"49","On":"10","Oa":"4.9","Od":"1.37","Dp":"10","p":{"2":{"n":5},"3":{"n":7},"4":{"n":3.5},"6":{"n":6},"7":{"n":3.5},"8":{"n":6,"g":1},"9":{"n":5.5},"10":{"n":2.5},"11":{"n":4},"12":{"n":6}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":1,"s":{"n":0},"c":10},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":7,"s":{"s":"13","n":"3","a":"4.5","d":"1.08","Os":"13","On":"3","Oa":"4.5","Od":"1.08","Mp":"2","Dp":"1","p":{"10":{"n":3.5},"11":{"n":4},"16":{"n":6}}},"c":10},{"i":2936,"n":"Carvalho","f":"Matis","p":"G","r":1,"s":{"n":0},"c":10},{"i":2942,"n":"N'Goumou Minpol","f":"Nathan","p":"M","r":1,"s":{"n":0},"c":10},{"i":2950,"n":"Sidibe","f":"Kalidou","p":"M","r":1,"s":{"n":0},"c":10},{"i":2960,"n":"Diakite","f":"Bafode","p":"D","r":1,"s":{"n":0},"c":10},{"i":2962,"n":"Bessile","f":"Loic","p":"D","r":1,"s":{"n":0},"c":10},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":15,"s":{"s":"70","n":"12","a":"5.83","d":"0.69","Os":"117","On":"22","Oa":"5.32","Od":"0.92","Dp":"22","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"9":{"n":6.5},"10":{"n":7},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":13,"s":{"s":"13","n":"2","a":"6.5","d":"0.5","Og":"1","Os":"105","On":"19","Oa":"5.53","Od":"0.88","Mp":"17","Ap":"1","p":{"1":{"n":7},"2":{"n":6}}},"c":12},{"i":193,"n":"El Ghazi","f":"Anwar","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"54","On":"12","Oa":"4.5","Od":"1.04","Mp":"3","Ap":"2"},"c":12},{"i":211,"n":"Pepe","f":"Nicolas","p":"A","r":38,"s":{"g":"11","s":"102","n":"17","a":"6.03","d":"1.42","Sg":"11","Ss":"102","Sn":"17","Sa":"6.03","Sd":"1.42","Og":"20","Os":"207","On":"38","Oa":"5.46","Od":"1.57","Mp":"28","Ap":"6","p":{"1":{"n":8,"g":1},"2":{"n":4.5},"3":{"n":8},"4":{"n":5.5},"5":{"n":8.5,"g":3},"6":{"n":4.5},"7":{"n":5},"8":{"n":7,"g":1},"9":{"n":7,"g":1},"10":{"n":5.5,"g":1},"11":{"n":7},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":3.5},"15":{"n":6.5,"g":1},"16":{"n":5.5,"g":1},"17":{"n":6.5,"g":1}}},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":24,"s":{"s":"100","n":"17","a":"5.88","d":"0.81","Ss":"100","Sn":"17","Sa":"5.88","Sd":"0.81","Os":"186","On":"35","Oa":"5.31","Od":"1.16","Gp":"35","p":{"1":{"n":5},"2":{"n":7},"3":{"n":7},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":6},"7":{"n":5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":7},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":4.5},"15":{"n":5},"16":{"n":7},"17":{"n":5}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":10,"s":{"g":"1","s":"82","n":"16","a":"5.13","d":"0.94","Ss":"33","Sn":"7","Sa":"4.79","Sd":"0.65","Og":"1","Os":"107","On":"22","Oa":"4.86","Od":"1.07","Mp":"21","p":{"1":{"n":6},"2":{"n":6},"3":{"n":7.5,"g":1},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4.5}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":5,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47"},"c":12},{"i":455,"n":"Jonathan Ikone","f":"","p":"M","r":12,"s":{"g":"1","s":"83","n":"17","a":"4.91","d":"0.6","Sg":"1","Ss":"83","Sn":"17","Sa":"4.91","Sd":"0.6","Og":"2","Os":"152","On":"32","Oa":"4.77","Od":"0.76","Mp":"19","Ap":"8","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5},"5":{"n":6},"6":{"n":6,"g":1},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":4},"16":{"n":5.5},"17":{"n":4}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":21,"s":{"g":"7","s":"91","n":"17","a":"5.35","d":"1.44","Sg":"7","Ss":"91","Sn":"17","Sa":"5.35","Sd":"1.44","Og":"9","Os":"190","On":"36","Oa":"5.28","Od":"1.32","Mp":"26","Ap":"4","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":8,"g":2},"4":{"n":4.5},"5":{"n":5},"6":{"n":3.5},"7":{"n":3.5},"8":{"n":7,"g":2},"9":{"n":8.5,"g":2},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":5},"16":{"n":5,"s":1},"17":{"n":5.5,"s":1}}},"c":12},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":7,"s":{"n":0,"Os":"50","On":"11","Oa":"4.55","Od":"0.99","Mp":"1","Dp":"8"},"c":12},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":2,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"4":{"n":5,"s":1},"14":{"n":5}}},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":14,"s":{"g":"1","s":"86","n":"16","a":"5.38","d":"0.98","Sg":"1","Ss":"86","Sn":"16","Sa":"5.38","Sd":"0.98","Og":"1","Os":"86","On":"16","Oa":"5.38","Od":"0.98","Dp":"16","p":{"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":7.5,"g":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":3.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5}}},"c":12},{"i":954,"n":"Remy","f":"Lo\u00efc","p":"A","r":10,"s":{"g":"1","s":"51","n":"11","a":"4.64","d":"1","Og":"4","Os":"105","On":"23","Oa":"4.57","Od":"1.02","Mp":"3","Ap":"15","p":{"3":{"n":4.5,"s":1},"4":{"n":2.5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":7,"g":1},"16":{"n":4.5}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"11":{"n":5,"s":1}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":11,"s":{"s":"49","n":"10","a":"4.95","d":"0.69","Os":"141","On":"28","Oa":"5.05","Od":"0.67","Mp":"26","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6.5},"14":{"n":3.5},"15":{"n":5,"s":1}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":2,"s":{"n":0},"c":12},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":21,"s":{"s":"90","n":"15","a":"6","d":"0.73","Ss":"18","Sn":"3","Sa":"6","Sd":"1.08","Os":"187","On":"35","Oa":"5.34","Od":"1.07","Mp":"31","p":{"1":{"n":5},"2":{"n":6},"3":{"n":7},"5":{"n":6},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"15":{"n":5.5},"16":{"n":7.5},"17":{"n":5}}},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Araujo","f":"","p":"A","r":10,"s":{"g":"1","s":"47","n":"10","a":"4.7","d":"0.46","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"5","Os":"136","On":"28","Oa":"4.86","Od":"0.91","Mp":"13","Ap":"8","p":{"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"10":{"n":6,"g":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":5},"17":{"n":4.5}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":10,"s":{"s":"53","n":"10","a":"5.3","d":"0.64","Ss":"21","Sn":"4","Sa":"5.25","Sd":"0.75","Os":"107","On":"22","Oa":"4.86","Od":"0.76","Dp":"20","p":{"1":{"n":5},"4":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":5.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":5}}},"c":12},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":7,"s":{"s":"25","n":"5","a":"5.1","d":"0.2","Og":"1","Os":"110","On":"24","Oa":"4.6","Od":"0.92","Dp":"24","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":12},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":17,"s":{"s":"84","n":"16","a":"5.25","d":"0.79","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Oao":"1","Os":"141","On":"30","Oa":"4.7","Od":"0.99","Dp":"29","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":6},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":6},"12":{"n":4},"13":{"n":3.5},"15":{"n":5},"16":{"n":6},"17":{"n":5.5}}},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":5,"s":{"n":0,"Os":"21","On":"4","Oa":"5.25","Od":"0.43","Dp":"1"},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":6,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Gp":"3"},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumare","f":"Boubakary","p":"M","r":9,"s":{"s":"28","n":"6","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"80","On":"17","Oa":"4.74","Od":"0.39","Mp":"9","p":{"5":{"n":4.5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":12},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":1,"s":{"n":0},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":9,"s":{"s":"39","n":"9","a":"4.39","d":"0.46","Ss":"9","Sn":"2","Sa":"4.5","Os":"39","On":"9","Oa":"4.39","Od":"0.46","Ap":"9","p":{"5":{"n":5},"6":{"n":4.5},"7":{"n":3.5},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":13,"s":{"s":"85","n":"17","a":"5","d":"0.57","Ss":"85","Sn":"17","Sa":"5","Sd":"0.57","Os":"85","On":"17","Oa":"5","Od":"0.57","Dp":"17","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5.5},"17":{"n":5}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2791,"n":"Rafael Le\u00e3o","f":"","p":"A","r":9,"s":{"g":"1","s":"31","n":"7","a":"4.5","d":"0.76","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"31","On":"7","Oa":"4.5","Od":"0.76","Ap":"7","p":{"8":{"n":4.5,"s":1},"11":{"n":6,"g":1},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1},"17":{"n":4}}},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":25,"s":{"g":"7","s":"69","n":"14","a":"4.93","d":"1.6","Og":"11","Oao":"1","Os":"129","On":"26","Oa":"4.96","Od":"1.47","Ap":"25","p":{"24":{"n":5,"g":1},"1":{"n":7.5,"g":1,"s":1},"2":{"n":3},"3":{"n":4},"4":{"n":6.5,"g":1},"6":{"n":6.5,"g":1},"7":{"n":3.5},"8":{"n":4},"9":{"n":6,"g":1},"10":{"n":4.5},"12":{"n":3.5,"s":1},"13":{"n":2.5},"14":{"n":6.5,"g":1},"15":{"n":4},"16":{"n":7,"g":2}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":8,"s":{"s":"3","n":"1","a":"3.5","Os":"105","On":"20","Oa":"5.28","Od":"1.09","Gp":"20","p":{"24":{"n":4},"9":{"n":3.5}}},"c":13},{"i":24,"n":"Sidibe","f":"Djibril","p":"D","r":8,"s":{"s":"34","n":"8","a":"4.31","d":"0.7","Og":"1","Os":"122","On":"24","Oa":"5.1","Od":"1.35","Mp":"2","Dp":"21","p":{"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":3.5},"13":{"n":3}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":14,"s":{"g":"1","s":"64","n":"13","a":"4.92","d":"0.78","Og":"2","Os":"165","On":"32","Oa":"5.16","Od":"0.89","Dp":"32","p":{"24":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4},"16":{"n":6.5}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":11,"s":{"s":"59","n":"12","a":"4.96","d":"0.8","Os":"146","On":"29","Oa":"5.05","Od":"0.98","Dp":"29","p":{"24":{"n":5},"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"7":{"n":6},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5}}},"c":13},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":14,"s":{"s":"55","n":"10","a":"5.5","d":"0.97","Os":"128","On":"25","Oa":"5.12","Od":"0.97","Mp":"24","p":{"4":{"n":6},"5":{"n":6},"6":{"n":7},"10":{"n":4.5,"s":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":7},"15":{"n":4.5},"16":{"n":6}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Og":"1","Os":"78","On":"16","Oa":"4.91","Od":"0.57","Dp":"12","p":{"24":{"n":6},"2":{"n":5},"3":{"n":4.5},"10":{"n":5},"12":{"n":4}}},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":9,"s":{"s":"24","n":"5","a":"4.8","d":"0.81","Og":"1","Os":"97","On":"20","Oa":"4.85","Od":"0.98","Dp":"18","p":{"24":{"n":4},"6":{"n":5},"8":{"n":4.5},"9":{"n":3.5},"15":{"n":5},"16":{"n":6}}},"c":13},{"i":284,"n":"Rony Lopes","f":"","p":"M","r":13,"s":{"g":"1","s":"22","n":"4","a":"5.5","d":"1.41","Og":"14","Os":"140","On":"25","Oa":"5.6","Od":"1.15","Mp":"21","p":{"24":{"n":7,"g":1},"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":3.5}}},"c":13},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"38","On":"8","Oa":"4.75","Od":"1.09","Mp":"1","Dp":"7"},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":9,"s":{"s":"21","n":"4","a":"5.38","d":"0.41","Os":"34","On":"7","Oa":"4.93","Od":"0.86","Dp":"5","p":{"1":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":8,"s":{"s":"13","n":"3","a":"4.33","d":"0.94","Os":"60","On":"12","Oa":"5","Od":"0.71","Mp":"4","Dp":"4","p":{"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":3}}},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":2,"s":{"s":"4","n":"1","a":"4","Os":"22","On":"4","Oa":"5.5","Od":"1.12","Gp":"3","p":{"24":{"n":5,"s":1},"10":{"n":4}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":9,"s":{"s":"44","n":"10","a":"4.45","d":"0.57","Os":"59","On":"13","Oa":"4.58","Od":"0.55","Mp":"10","p":{"5":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4},"12":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5}}},"c":13},{"i":884,"n":"Adama Traor\u00e9","f":"","p":"M","r":9,"s":{"s":"23","n":"5","a":"4.6","d":"0.49","Os":"23","On":"5","Oa":"4.6","Od":"0.49","Mp":"4","Ap":"1","p":{"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":4.5},"8":{"n":4.5},"11":{"n":5.5,"s":1}}},"c":13},{"i":1160,"n":"Tielemans","f":"Youri","p":"M","r":17,"s":{"g":"4","s":"74","n":"14","a":"5.32","d":"0.99","Og":"4","Os":"155","On":"29","Oa":"5.36","Od":"0.97","Mp":"25","p":{"24":{"n":6},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4.5},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":3.5},"14":{"n":7},"15":{"n":6,"g":1},"16":{"n":6}}},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":6,"s":{"s":"31","n":"7","a":"4.43","d":"0.49","Og":"1","Os":"45","On":"10","Oa":"4.5","Od":"0.67","Mp":"3","Ap":"4","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"13":{"n":4,"s":1}}},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"33","On":"8","Oa":"4.13","Od":"0.33","Ap":"4"},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":15,"s":{"s":"75","n":"14","a":"5.36","d":"0.81","Os":"75","On":"14","Oa":"5.36","Od":"0.81","Gp":"14","p":{"1":{"n":5.5},"2":{"n":6.5},"3":{"n":6.5},"4":{"n":4},"5":{"n":6},"6":{"n":5},"7":{"n":5},"8":{"n":5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6.5}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"s":"36","n":"9","a":"4.06","d":"0.55","Og":"2","Os":"61","On":"14","Oa":"4.39","Od":"0.99","Mp":"1","Ap":"11","p":{"5":{"n":4},"6":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5,"s":1},"11":{"n":4},"12":{"n":3},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1}}},"c":13},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":8,"s":{"s":"52","n":"11","a":"4.73","d":"0.49","Og":"1","Os":"138","On":"31","Oa":"4.45","Od":"0.81","Mp":"26","p":{"1":{"n":5.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4.5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"10":{"n":4,"s":1},"12":{"n":5,"s":1},"13":{"n":4},"14":{"n":5,"s":1}}},"c":13},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":9,"s":{"s":"44","n":"9","a":"4.89","d":"0.7","Og":"3","Os":"138","On":"27","Oa":"5.11","Od":"0.91","Mp":"27","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":6},"7":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":4}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":8,"s":{"g":"1","s":"21","n":"4","a":"5.25","d":"1.03","Og":"7","Os":"75","On":"13","Oa":"5.77","Od":"1.23","Mp":"2","Ap":"6","p":{"24":{"n":6,"s":1},"1":{"n":7,"g":1},"2":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":4.5}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":14,"s":{"n":0,"Og":"5","Os":"68","On":"12","Oa":"5.67","Od":"1.25","Mp":"8","Ap":"3","p":{"24":{"n":5,"g":1}}},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"28","On":"5","Oa":"5.6","Od":"0.49","Dp":"4","p":{"1":{"n":5,"s":1}}},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":1,"s":{"n":0},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":7,"s":{"g":"1","s":"15","n":"3","a":"5","d":"1.08","Og":"1","Os":"27","On":"6","Oa":"4.5","Od":"0.91","Ap":"3","p":{"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":9,"s":{"s":"32","n":"7","a":"4.64","d":"0.52","Os":"32","On":"7","Oa":"4.64","Od":"0.52","Mp":"7","p":{"8":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":4},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5.5}}},"c":13},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":8,"s":{"s":"49","n":"11","a":"4.5","d":"0.48","Os":"49","On":"11","Oa":"4.5","Od":"0.48","Mp":"10","Ap":"1","p":{"1":{"n":5},"2":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":4},"11":{"n":5},"12":{"n":3.5},"13":{"n":5},"14":{"n":4},"15":{"n":4.5,"s":1}}},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":10,"s":{"s":"41","n":"9","a":"4.56","d":"0.5","Os":"41","On":"9","Oa":"4.56","Od":"0.5","Mp":"6","Ap":"3","p":{"6":{"n":4.5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5},"14":{"n":5},"15":{"n":5}}},"c":13},{"i":2721,"n":"Barreca","f":"Antonio","p":"D","r":8,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Os":"33","On":"7","Oa":"4.71","Od":"0.52","Dp":"7","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4},"6":{"n":5},"8":{"n":4},"11":{"n":5.5}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":14,"s":{"g":"1","s":"58","n":"12","a":"4.83","d":"0.82","Og":"1","Os":"58","On":"12","Oa":"4.83","Od":"0.82","Mp":"4","Dp":"8","p":{"4":{"n":3},"5":{"n":5.5},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4.5},"13":{"n":4},"14":{"n":5},"15":{"n":5.5},"16":{"n":6}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"13":{"n":5,"s":1}}},"c":13},{"i":2954,"n":"Massengo","f":"Han-Noah","p":"M","r":7,"s":{"n":0},"c":13},{"i":2955,"n":"Gouano","f":"Gobe","p":"A","r":1,"s":{"n":0},"c":13},{"i":2956,"n":"Biancone","f":"Giulian","p":"D","r":1,"s":{"n":0},"c":13},{"i":2958,"n":"Henin","f":"Yanis","p":"G","r":1,"s":{"n":0},"c":13},{"i":2959,"n":"Kephren Thuram","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2961,"n":"Badiashile Mukinayi","f":"Benoit","p":"D","r":7,"s":{"n":0},"c":13},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":7,"s":{"s":"36","n":"8","a":"4.5","d":"0.25","Ss":"13","Sn":"3","Sa":"4.5","Og":"2","Os":"135","On":"28","Oa":"4.82","Od":"0.9","Mp":"14","Ap":"13","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"10":{"n":4,"s":1},"11":{"n":5},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":10,"s":{"s":"67","n":"15","a":"4.5","d":"0.98","Ss":"63","Sn":"14","Sa":"4.5","Sd":"1.02","Os":"139","On":"30","Oa":"4.65","Od":"0.89","Dp":"30","p":{"2":{"n":4.5,"s":1},"4":{"n":4},"5":{"n":3.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":3},"14":{"n":3.5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":7,"s":{"g":"1","s":"33","n":"8","a":"4.19","d":"0.79","Og":"12","Os":"137","On":"27","Oa":"5.09","Od":"1.48","Mp":"15","Ap":"11","p":{"1":{"n":4.5},"2":{"n":6,"g":1},"3":{"n":3.5},"4":{"n":4},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":10,"s":{"s":"65","n":"15","a":"4.33","d":"1.11","Ss":"27","Sn":"7","Sa":"3.93","Sd":"0.86","Os":"164","On":"35","Oa":"4.69","Od":"1.15","Dp":"35","p":{"24":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"5":{"n":3.5},"6":{"n":3},"7":{"n":6},"8":{"n":6},"9":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":2.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3.5},"17":{"n":4}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":13,"s":{"s":"85","n":"17","a":"5","d":"1.1","Ss":"85","Sn":"17","Sa":"5","Sd":"1.1","Os":"194","On":"38","Oa":"5.11","Od":"1.19","Gp":"38","p":{"24":{"n":7},"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":4},"7":{"n":6},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":4},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3},"17":{"n":4.5}}},"c":14},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":7,"s":{"s":"27","n":"6","a":"4.5","d":"0.96","Og":"2","Os":"79","On":"17","Oa":"4.65","Od":"1.13","Mp":"17","p":{"3":{"n":3.5},"4":{"n":4},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":6},"13":{"n":4.5}}},"c":14},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":11,"s":{"g":"1","s":"69","n":"15","a":"4.6","d":"0.82","Sg":"1","Ss":"33","Sn":"7","Sa":"4.79","Sd":"1.03","Og":"2","Os":"140","On":"31","Oa":"4.52","Od":"0.85","Mp":"23","Ap":"4","p":{"24":{"n":4},"1":{"n":5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5,"s":1},"5":{"n":3.5,"s":1},"6":{"n":4},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":6.5,"g":1},"17":{"n":4}}},"c":14},{"i":231,"n":"Petric","f":"Denis","p":"G","r":6,"s":{"n":0},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":15,"s":{"g":"3","s":"78","n":"16","a":"4.91","d":"1.25","Og":"6","Os":"173","On":"35","Oa":"4.96","Od":"1.36","Mp":"25","Ap":"4","p":{"24":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":7.5,"g":1},"9":{"n":7,"g":1},"10":{"n":4},"11":{"n":6,"g":1},"12":{"n":2.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4}}},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":13,"s":{"g":"1","s":"81","n":"17","a":"4.79","d":"1.02","Sg":"1","Ss":"81","Sn":"17","Sa":"4.79","Sd":"1.02","Og":"2","Os":"143","On":"29","Oa":"4.95","Od":"1.05","Mp":"28","p":{"24":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":5.5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":3},"13":{"n":3.5},"14":{"n":4},"15":{"n":6},"16":{"n":4.5},"17":{"n":6.5,"g":1}}},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":9,"s":{"s":"54","n":"13","a":"4.19","d":"0.93","Ss":"4","Sn":"1","Sa":"4.5","Os":"137","On":"30","Oa":"4.58","Od":"0.98","Mp":"1","Dp":"28","p":{"24":{"n":6},"1":{"n":4},"2":{"n":3.5},"3":{"n":5,"s":1},"5":{"n":3},"6":{"n":4},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":3},"14":{"n":3.5},"17":{"n":4.5}}},"c":14},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":10,"s":{"s":"71","n":"15","a":"4.73","d":"0.95","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Og":"2","Os":"164","On":"33","Oa":"4.97","Od":"1.01","Mp":"24","Ap":"1","p":{"24":{"n":7},"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"s":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":3.5},"11":{"n":6},"12":{"n":2.5},"13":{"n":4},"15":{"n":6},"16":{"n":4.5},"17":{"n":4.5}}},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":8,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"37","On":"9","Oa":"4.17","Od":"1.11","Dp":"8","p":{"10":{"n":5},"11":{"n":4.5}}},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":11,"s":{"g":"6","s":"63","n":"13","a":"4.88","d":"1.47","Sg":"3","Ss":"26","Sn":"5","Sa":"5.2","Sd":"1.03","Og":"7","Os":"139","On":"30","Oa":"4.65","Od":"1.21","Mp":"11","Ap":"12","p":{"24":{"n":4,"s":1},"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":4},"4":{"n":5.5,"g":1},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":3},"9":{"n":2},"13":{"n":7,"g":2},"14":{"n":5,"g":1},"15":{"n":4.5},"16":{"n":5.5},"17":{"n":4}}},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":8,"s":{"s":"24","n":"5","a":"4.9","d":"0.66","Os":"81","On":"17","Oa":"4.79","Od":"0.62","Mp":"9","p":{"24":{"n":6},"1":{"n":4.5},"5":{"n":4},"6":{"n":5},"10":{"n":5,"s":1},"14":{"n":6}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":11,"s":{"s":"50","n":"11","a":"4.55","d":"1.03","Og":"1","Os":"110","On":"23","Oa":"4.78","Od":"1.08","Dp":"21","p":{"24":{"n":6},"1":{"n":4.5},"2":{"n":4},"3":{"n":3.5},"4":{"n":5},"5":{"n":3},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"12":{"n":3},"15":{"n":5},"16":{"n":4.5}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":11,"s":{"s":"72","n":"15","a":"4.8","d":"0.7","Ss":"22","Sn":"5","Sa":"4.5","Sd":"0.71","Os":"132","On":"27","Oa":"4.89","Od":"0.76","Mp":"1","Dp":"25","p":{"24":{"n":6},"1":{"n":4.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":6},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":4}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":1,"s":{"n":0},"c":14},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":7,"s":{"s":"47","n":"11","a":"4.27","d":"0.78","Os":"114","On":"25","Oa":"4.56","Od":"0.65","Mp":"16","p":{"1":{"n":4,"e":2735,"c":42},"2":{"n":4.5,"e":2742,"c":42},"3":{"n":5,"e":2752,"c":42,"s":1},"5":{"n":3},"6":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":2.5},"13":{"n":4.5,"s":1}}},"c":14},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":7,"s":{"s":"41","n":"9","a":"4.61","d":"0.39","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.51","Og":"3","Os":"117","On":"25","Oa":"4.7","Od":"0.76","Mp":"6","Ap":"7","p":{"24":{"n":6,"g":1,"s":1},"1":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"15":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":9,"s":{"s":"45","n":"10","a":"4.5","d":"0.32","Ss":"4","Sn":"1","Sa":"4.5","Os":"45","On":"10","Oa":"4.5","Od":"0.32","Ap":"10","p":{"6":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":14},{"i":2722,"n":"Traor\u00e9","f":"Cheick","p":"D","r":7,"s":{"s":"30","n":"7","a":"4.29","d":"1.19","Os":"30","On":"7","Oa":"4.29","Od":"1.19","Dp":"7","p":{"1":{"n":5,"s":1},"3":{"n":3},"4":{"n":4.5},"7":{"n":5},"12":{"n":2},"15":{"n":5.5,"s":1},"16":{"n":5,"s":1}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"10":{"n":5},"11":{"n":5.5,"s":1}}},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":2,"s":{"n":0},"c":14},{"i":2943,"n":"Ako","f":"Steven","p":"D","r":1,"s":{"n":0},"c":14},{"i":2948,"n":"Boudjemaa","f":"Mehdi","p":"M","r":1,"s":{"n":0},"c":14},{"i":2949,"n":"Phaeton","f":"Matthias","p":"M","r":1,"s":{"n":0},"c":14},{"i":40,"n":"Delort","f":"Andy","p":"A","r":23,"s":{"g":"7","s":"89","n":"16","a":"5.59","d":"1.05","Og":"8","Os":"157","On":"31","Oa":"5.08","Od":"1.14","Mp":"5","Ap":"21","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":4},"7":{"n":6.5,"g":1},"8":{"n":6,"g":1},"9":{"n":6.5,"g":1},"10":{"n":6,"g":1},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":4},"14":{"n":7.5,"g":2},"15":{"n":6.5},"16":{"n":4}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Og":"6","Os":"105","On":"22","Oa":"4.77","Od":"1.41","Ap":"13","p":{"36":{"n":4},"1":{"n":4}}},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":20,"s":{"g":"1","s":"89","n":"16","a":"5.56","d":"0.73","Og":"5","Os":"211","On":"37","Oa":"5.7","Od":"0.84","Mp":"37","p":{"36":{"n":6},"1":{"n":4.5},"2":{"n":7,"g":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":7},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5.5}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":18,"s":{"s":"75","n":"14","a":"5.36","d":"0.61","Os":"155","On":"29","Oa":"5.34","Od":"0.76","Dp":"29","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":20,"s":{"g":"1","s":"74","n":"13","a":"5.69","d":"0.5","Og":"1","Os":"163","On":"31","Oa":"5.26","Od":"0.99","Dp":"29","p":{"36":{"n":6},"1":{"n":6,"g":1},"2":{"n":6},"3":{"n":5.5},"4":{"n":7},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"14":{"n":5.5},"15":{"n":6}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":19,"s":{"s":"86","n":"16","a":"5.41","d":"0.75","Os":"183","On":"35","Oa":"5.24","Od":"0.79","Mp":"1","Dp":"33","p":{"36":{"n":6},"1":{"n":4},"2":{"n":6},"3":{"n":5},"4":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":5.5},"13":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":15},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":12,"s":{"g":"1","s":"74","n":"14","a":"5.29","d":"0.92","Og":"2","Os":"178","On":"34","Oa":"5.24","Od":"0.89","Mp":"31","p":{"36":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":8,"g":1},"13":{"n":5},"14":{"n":4,"s":1}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":5,"s":{"s":"18","n":"4","a":"4.5","d":"0.35","Os":"64","On":"15","Oa":"4.27","Od":"0.4","Ap":"6","p":{"1":{"n":5,"s":1},"2":{"n":4,"s":1},"5":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":22,"s":{"g":"7","s":"86","n":"16","a":"5.38","d":"1.38","Og":"10","Os":"155","On":"31","Oa":"5","Od":"1.33","Mp":"1","Ap":"25","p":{"1":{"n":3.5,"e":2733,"c":3},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":4,"s":1},"8":{"n":6.5,"g":1},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":7,"g":1},"12":{"n":8,"g":2},"13":{"n":4},"14":{"n":5.5},"15":{"n":7,"g":1},"16":{"n":3.5}}},"c":15},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":25,"s":{"s":"92","n":"16","a":"5.75","d":"0.83","Os":"205","On":"37","Oa":"5.54","Od":"0.89","Gp":"37","p":{"36":{"n":7},"1":{"n":6},"2":{"n":5.5},"3":{"n":6},"4":{"n":7},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":7},"9":{"n":5},"10":{"n":6},"11":{"n":7},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":21,"s":{"g":"1","s":"69","n":"12","a":"5.79","d":"1.07","Og":"7","Os":"150","On":"28","Oa":"5.38","Od":"1.23","Mp":"17","Ap":"10","p":{"2":{"n":6,"g":1},"3":{"n":6},"4":{"n":5.5},"7":{"n":5.5},"8":{"n":8},"9":{"n":3.5},"11":{"n":7},"12":{"n":6.5},"13":{"n":5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":3,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":6,"s":{"s":"12","n":"3","a":"4.17","d":"0.47","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"0.83","Mp":"7","Ap":"4","p":{"36":{"n":7,"g":1},"1":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":4.5}}},"c":15},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":1,"s":{"n":0},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"2","p":{"36":{"n":5,"s":1},"1":{"n":4.5}}},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"60","On":"12","Oa":"5.04","Od":"0.32","Mp":"9","p":{"36":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":5,"s":1}}},"c":15},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":23,"s":{"s":"81","n":"15","a":"5.4","d":"1","Os":"175","On":"32","Oa":"5.47","Od":"0.99","Mp":"23","Dp":"7","p":{"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":6.5},"12":{"n":7},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5}}},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":1,"s":{"n":0},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":10,"s":{"s":"30","n":"6","a":"5.08","d":"0.84","Og":"1","Os":"61","On":"13","Oa":"4.73","Od":"1.09","Mp":"4","Dp":"9","p":{"36":{"n":4},"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"12":{"n":6},"13":{"n":4},"16":{"n":5}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":12,"s":{"s":"75","n":"15","a":"5","d":"0.32","Og":"1","Os":"163","On":"32","Oa":"5.09","Od":"0.67","Mp":"22","Ap":"4","p":{"36":{"n":6},"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5}}},"c":15},{"i":2268,"n":"Oyongo","f":"Ambroise","p":"D","r":14,"s":{"g":"2","s":"59","n":"11","a":"5.36","d":"1","Og":"2","Os":"74","On":"14","Oa":"5.29","Od":"0.9","Mp":"13","Dp":"1","p":{"36":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":4.5},"6":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":4},"11":{"n":6},"12":{"n":5.5,"s":1},"14":{"n":4.5},"15":{"n":4}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"10":{"n":5,"s":1}}},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":10,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.62","Og":"1","Os":"52","On":"11","Oa":"4.73","Od":"0.62","Ap":"11","p":{"3":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":22,"s":{"g":"2","s":"89","n":"16","a":"5.59","d":"1.08","Og":"2","Os":"89","On":"16","Oa":"5.59","Od":"1.08","Mp":"11","Dp":"5","p":{"1":{"n":3.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1,"s":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7},"9":{"n":5},"10":{"n":7},"11":{"n":7},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":5},"16":{"n":5.5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":1,"s":{"n":0},"c":15},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":16},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":12,"s":{"g":"1","s":"58","n":"12","a":"4.83","d":"0.87","Og":"1","Os":"146","On":"30","Oa":"4.87","Od":"0.95","Mp":"30","p":{"23":{"n":4},"1":{"n":4.5},"2":{"n":5},"3":{"n":7,"g":1},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":4.5,"s":1},"9":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":11,"s":{"g":"1","s":"80","n":"16","a":"5.03","d":"0.84","Og":"1","Os":"176","On":"35","Oa":"5.04","Od":"0.83","Mp":"35","p":{"23":{"n":6},"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":4},"16":{"n":5.5}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":13,"s":{"g":"2","ao":"1","s":"56","n":"11","a":"5.09","d":"1.49","Og":"4","Oao":"1","Os":"106","On":"22","Oa":"4.82","Od":"1.43","Mp":"1","Dp":"21","p":{"1":{"n":2,"a":1},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":3.5},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":6}}},"c":16},{"i":159,"n":"Traor\u00e9","f":"Ismael","p":"D","r":17,"s":{"g":"3","s":"76","n":"14","a":"5.43","d":"0.98","Og":"5","Os":"183","On":"34","Oa":"5.38","Od":"0.94","Dp":"34","p":{"23":{"n":5},"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":6},"7":{"n":5.5,"s":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":7,"g":1},"11":{"n":3.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":9,"s":{"s":"24","n":"5","a":"4.9","d":"0.37","Os":"64","On":"13","Oa":"4.96","Od":"0.46","Mp":"9","p":{"1":{"n":5},"2":{"n":5},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":5.5,"s":1}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":14,"s":{"g":"3","s":"84","n":"16","a":"5.25","d":"0.97","Og":"5","Oao":"1","Os":"162","On":"31","Oa":"5.23","Od":"1.07","Mp":"27","Dp":"3","p":{"23":{"n":7,"g":1},"1":{"n":6,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":7,"g":1},"10":{"n":5},"11":{"n":4},"12":{"n":4},"13":{"n":7.5},"14":{"n":4.5},"15":{"n":6,"g":1},"16":{"n":5.5}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":8,"s":{"ao":"1","s":"63","n":"13","a":"4.85","d":"0.89","Oao":"1","Os":"149","On":"31","Oa":"4.81","Od":"0.75","Mp":"1","Dp":"30","p":{"23":{"n":5},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":12,"s":{"g":"1","s":"64","n":"12","a":"5.38","d":"0.87","Og":"2","Os":"137","On":"26","Oa":"5.29","Od":"0.99","Dp":"25","p":{"23":{"n":6},"2":{"n":4.5},"3":{"n":4},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":7},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":7,"s":{"s":"4","n":"1","a":"4.5","Os":"51","On":"10","Oa":"5.15","Od":"1","Dp":"10","p":{"23":{"n":5},"12":{"n":4.5,"s":1}}},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":12,"s":{"s":"71","n":"14","a":"5.07","d":"0.86","Os":"140","On":"29","Oa":"4.83","Od":"0.82","Mp":"3","Dp":"25","p":{"1":{"n":3},"4":{"n":6},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":5,"s":{"n":0,"Os":"34","On":"7","Oa":"4.86","Od":"0.64","p":{"23":{"n":4,"s":1}}},"c":16},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":17,"s":{"g":"2","s":"82","n":"15","a":"5.47","d":"1.13","Og":"6","Os":"191","On":"34","Oa":"5.62","Od":"1.05","Mp":"29","Ap":"4","p":{"23":{"n":5},"1":{"n":5},"2":{"n":4},"3":{"n":6},"4":{"n":5},"5":{"n":8,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"s":1},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5},"14":{"n":6.5},"15":{"n":4},"16":{"n":4.5}}},"c":16},{"i":371,"n":"Thomas Tour\u00e9","f":"","p":"A","r":3,"s":{"n":0,"Os":"31","On":"7","Oa":"4.43","Od":"0.73","Mp":"1","p":{"23":{"n":4,"s":1}}},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":2,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0,"Os":"34","On":"8","Oa":"4.25","Od":"0.66","Mp":"2","p":{"23":{"n":6}}},"c":16},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":10,"s":{"s":"73","n":"15","a":"4.9","d":"0.66","Os":"123","On":"25","Oa":"4.94","Od":"0.59","Mp":"13","Ap":"9","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4},"16":{"n":4.5}}},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":10,"s":{"g":"1","s":"47","n":"10","a":"4.75","d":"0.87","Og":"2","Os":"111","On":"23","Oa":"4.85","Od":"0.8","Mp":"14","Ap":"2","p":{"1":{"n":7,"g":1},"2":{"n":4},"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":16},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":5,"s":{"n":0},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"0.35","Os":"68","On":"16","Oa":"4.25","Od":"0.35","Ap":"9","p":{"23":{"n":4,"s":1},"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"15":{"n":4.5,"s":1}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":16,"s":{"g":"4","s":"66","n":"13","a":"5.08","d":"0.98","Og":"8","Os":"149","On":"32","Oa":"4.66","Od":"1.1","Ap":"29","p":{"1":{"n":6},"4":{"n":4},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":6,"g":1},"8":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":4},"16":{"n":4.5}}},"c":16},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":6,"s":{"s":"22","n":"5","a":"4.4","d":"0.2","Og":"2","Os":"124","On":"25","Oa":"4.96","Od":"0.89","Mp":"8","Ap":"5","p":{"23":{"n":4,"e":985,"c":42,"s":1},"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":18,"s":{"s":"88","n":"16","a":"5.5","d":"1.08","Oao":"1","Os":"186","On":"35","Oa":"5.31","Od":"1.01","Gp":"35","p":{"23":{"n":6},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":8},"5":{"n":6},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":5.5},"13":{"n":6.5},"14":{"n":7},"15":{"n":5},"16":{"n":4.5}}},"c":16},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":1,"s":{"n":0},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"s":1}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"n":0},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":12,"s":{"s":"69","n":"14","a":"4.93","d":"0.59","Os":"69","On":"14","Oa":"4.93","Od":"0.59","Mp":"14","p":{"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":3.5},"13":{"n":5},"14":{"n":5},"15":{"n":4.5},"16":{"n":5}}},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"10":{"n":5,"s":1},"13":{"n":4,"s":1}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":9,"s":{"g":"1","s":"37","n":"8","a":"4.63","d":"0.6","Og":"1","Os":"37","On":"8","Oa":"4.63","Od":"0.6","Ap":"8","p":{"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4,"s":1}}},"c":16},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":7,"s":{"n":0},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":2944,"n":"Mouanga","f":"Kevin","p":"D","r":1,"s":{"n":0},"c":16},{"i":15,"n":"Fekir","f":"Nabil","p":"A","r":19,"s":{"g":"2","s":"50","n":"10","a":"5.05","d":"1.15","Og":"9","Os":"147","On":"26","Oa":"5.67","Od":"1.34","Mp":"17","Ap":"7","p":{"24":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":6,"g":1},"6":{"n":7.5,"g":1},"8":{"n":3.5},"9":{"n":5},"12":{"n":6},"14":{"n":3.5},"15":{"n":4.5,"s":1},"16":{"n":5}}},"c":18},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":22,"s":{"g":"5","s":"88","n":"16","a":"5.5","d":"1.41","Og":"16","Os":"207","On":"36","Oa":"5.75","Od":"1.62","Mp":"8","Ap":"22","p":{"24":{"n":5},"1":{"n":7.5,"g":1},"2":{"n":5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":7,"g":1},"11":{"n":7,"g":1,"s":1},"12":{"n":4.5},"13":{"n":8.5,"g":2},"14":{"n":6},"15":{"n":4.5},"16":{"n":3.5}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":8,"s":{"g":"1","s":"40","n":"9","a":"4.5","d":"0.62","Og":"3","Os":"115","On":"25","Oa":"4.62","Od":"0.87","Mp":"5","Ap":"12","p":{"24":{"n":4,"s":1},"1":{"n":4,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"13":{"n":6,"g":1,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":9,"s":{"s":"27","n":"5","a":"5.4","d":"0.49","Os":"55","On":"10","Oa":"5.5","Od":"0.5","Dp":"9","p":{"8":{"n":5},"10":{"n":6},"11":{"n":5},"14":{"n":6},"15":{"n":5}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":8,"s":{"s":"29","n":"6","a":"4.92","d":"0.67","Og":"2","Os":"135","On":"25","Oa":"5.42","Od":"1.05","Mp":"2","Dp":"23","p":{"1":{"n":5},"2":{"n":4},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5,"s":1}}},"c":18},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":9,"s":{"s":"39","n":"8","a":"4.88","d":"1.24","Os":"149","On":"29","Oa":"5.14","Od":"1.07","Dp":"29","p":{"24":{"n":4},"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"7":{"n":7},"8":{"n":5},"9":{"n":3},"13":{"n":3.5},"16":{"n":4}}},"c":18},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":8,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"31","On":"6","Oa":"5.17","Od":"1.07","Gp":"6","p":{"1":{"n":6},"2":{"n":5}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":14,"s":{"s":"56","n":"11","a":"5.14","d":"0.53","Og":"1","Os":"145","On":"28","Oa":"5.2","Od":"0.85","Mp":"1","Dp":"26","p":{"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5,"s":1},"14":{"n":4.5}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":13,"s":{"g":"2","s":"62","n":"12","a":"5.21","d":"0.75","Og":"2","Os":"116","On":"24","Oa":"4.85","Od":"0.84","Mp":"12","Ap":"9","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7,"g":1},"4":{"n":4},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":15,"s":{"s":"69","n":"13","a":"5.31","d":"0.77","Os":"182","On":"33","Oa":"5.52","Od":"0.87","Mp":"33","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5,"s":1},"7":{"n":5.5},"9":{"n":4},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5,"s":1},"16":{"n":5.5,"s":1}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":23,"s":{"g":"5","s":"87","n":"16","a":"5.47","d":"1.11","Og":"8","Os":"205","On":"36","Oa":"5.71","Od":"0.93","Mp":"31","Ap":"2","p":{"24":{"n":5},"1":{"n":5},"2":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":7},"8":{"n":6.5,"g":1},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":7,"g":1},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":6},"16":{"n":4}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":15,"s":{"g":"1","s":"63","n":"12","a":"5.29","d":"0.88","Og":"1","Os":"63","On":"12","Oa":"5.29","Od":"0.88","Dp":"12","p":{"4":{"n":5},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"9":{"n":3.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":4}}},"c":18},{"i":1161,"n":"Traor\u00e9","f":"Bertrand","p":"A","r":20,"s":{"g":"5","s":"77","n":"15","a":"5.17","d":"1.4","Og":"15","Os":"184","On":"33","Oa":"5.59","Od":"1.49","Mp":"12","Ap":"18","p":{"24":{"n":6,"g":1},"1":{"n":6.5,"g":1},"2":{"n":4},"3":{"n":7.5,"g":1},"4":{"n":4},"5":{"n":4.5},"6":{"n":8,"g":2},"7":{"n":5},"8":{"n":6},"9":{"n":3.5},"10":{"n":5.5,"s":1},"11":{"n":4},"12":{"n":4,"s":1},"14":{"n":5,"s":1},"15":{"n":6.5,"g":1},"16":{"n":3.5}}},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Os":"58","On":"12","Oa":"4.88","Od":"0.58","Mp":"3","Dp":"5","p":{"24":{"n":4},"13":{"n":5.5},"15":{"n":5},"16":{"n":4}}},"c":18},{"i":1190,"n":"Mendy","f":"Ferland","p":"D","r":12,"s":{"g":"1","s":"65","n":"13","a":"5.04","d":"1.01","Og":"1","Os":"167","On":"32","Oa":"5.23","Od":"1.15","Mp":"4","Dp":"26","p":{"24":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":7},"4":{"n":5.5},"5":{"n":4.5,"g":1},"6":{"n":5},"9":{"n":3.5},"10":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":3}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":4,"s":{"n":0,"Os":"21","On":"5","Oa":"4.2","Od":"0.4"},"c":18},{"i":1414,"n":"NDombele","f":"Tanguy","p":"M","r":16,"s":{"s":"79","n":"16","a":"4.94","d":"0.81","Os":"199","On":"37","Oa":"5.38","Od":"0.96","Mp":"36","p":{"24":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":3.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5}}},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":20,"s":{"s":"76","n":"14","a":"5.43","d":"0.96","Os":"171","On":"31","Oa":"5.52","Od":"1","Gp":"31","p":{"24":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":7},"8":{"n":5.5},"9":{"n":4},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":5},"14":{"n":7},"15":{"n":5.5},"16":{"n":4.5}}},"c":18},{"i":1527,"n":"Pape Cheikh","f":"","p":"M","r":9,"s":{"s":"42","n":"9","a":"4.67","d":"0.47","Os":"47","On":"10","Oa":"4.7","Od":"0.46","Mp":"9","p":{"1":{"n":5,"s":1},"3":{"n":5},"4":{"n":5,"s":1},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5,"s":1},"10":{"n":5},"16":{"n":4,"s":1}}},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":16,"s":{"s":"77","n":"14","a":"5.5","d":"0.93","Og":"3","Os":"184","On":"33","Oa":"5.58","Od":"1.19","Dp":"33","p":{"24":{"n":2},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"8":{"n":5.5},"10":{"n":8},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":4}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"n":0},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":1,"s":{"n":0},"c":18},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":1,"s":{"n":0},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":19,"s":{"g":"4","s":"58","n":"11","a":"5.32","d":"1.05","Og":"4","Os":"58","On":"11","Oa":"5.32","Od":"1.05","Ap":"11","p":{"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":7.5,"g":2},"8":{"n":5},"10":{"n":6,"g":1},"11":{"n":6},"12":{"n":4},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":18},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"10":{"n":4.5,"s":1}}},"c":18},{"i":2952,"n":"Ndiaye","f":"Ousseynou","p":"M","r":1,"s":{"n":0},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":18,"s":{"g":"2","s":"75","n":"14","a":"5.39","d":"1.15","Og":"4","Os":"164","On":"30","Oa":"5.48","Od":"1.11","Mp":"24","p":{"22":{"n":8,"g":1},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4},"4":{"n":6},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":3.5,"s":1},"10":{"n":4},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":7},"14":{"n":6.5,"g":1},"15":{"n":5},"16":{"n":7}}},"c":19},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":18,"s":{"g":"3","s":"76","n":"15","a":"5.1","d":"1.19","Og":"5","Os":"170","On":"33","Oa":"5.17","Od":"1.11","Mp":"1","Ap":"31","p":{"22":{"n":4},"1":{"n":4.5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":3.5},"7":{"n":6},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":4},"14":{"n":7.5,"g":1},"15":{"n":4},"16":{"n":5}}},"c":19},{"i":34,"n":"Balotelli","f":"Mario","p":"A","r":15,"s":{"s":"44","n":"10","a":"4.4","d":"0.66","Og":"9","Os":"135","On":"26","Oa":"5.19","Od":"1.21","Ap":"25","p":{"22":{"n":4},"4":{"n":4.5},"6":{"n":3.5},"8":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":4},"13":{"n":4},"14":{"n":6},"15":{"n":4},"16":{"n":4}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":22,"s":{"s":"86","n":"16","a":"5.41","d":"0.83","Og":"1","Os":"188","On":"35","Oa":"5.39","Od":"1.04","Dp":"35","p":{"22":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":3},"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"8":{"n":4},"9":{"n":6},"10":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":16,"s":{"g":"1","s":"64","n":"12","a":"5.38","d":"0.92","Og":"4","Os":"158","On":"29","Oa":"5.47","Od":"1.15","Mp":"27","Ap":"2","p":{"22":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":6.5,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":6.5}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":8,"s":{"s":"25","n":"5","a":"5","Os":"84","On":"17","Oa":"4.94","Od":"0.87","Mp":"17","p":{"9":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":9,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Os":"14","On":"3","Oa":"4.83","Od":"1.03","Gp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":3.5}}},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":15,"s":{"ao":"1","s":"74","n":"14","a":"5.32","d":"0.77","Oao":"1","Os":"150","On":"29","Oa":"5.19","Od":"0.78","Dp":"23","p":{"22":{"n":6},"2":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"a":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":24,"s":{"s":"81","n":"13","a":"6.23","d":"1.45","Os":"192","On":"34","Oa":"5.65","Od":"1.2","Gp":"34","p":{"22":{"n":6},"4":{"n":9},"5":{"n":6.5},"6":{"n":4},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":8},"12":{"n":7.5},"13":{"n":7.5},"14":{"n":7},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":12,"s":{"n":0,"Os":"69","On":"13","Oa":"5.31","Od":"0.72","Dp":"11"},"c":19},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":10,"s":{"g":"1","s":"39","n":"7","a":"5.57","d":"0.56","Og":"1","Os":"44","On":"8","Oa":"5.5","Od":"0.56","Mp":"4","Dp":"3","p":{"4":{"n":6},"5":{"n":5},"7":{"n":6,"g":1},"11":{"n":5.5},"12":{"n":5},"13":{"n":5},"14":{"n":6.5}}},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":5,"s":{"s":"10","n":"2","a":"5","Os":"71","On":"14","Oa":"5.07","Od":"0.88","Mp":"1","Dp":"10","p":{"22":{"n":7},"2":{"n":5},"11":{"n":5}}},"c":19},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":8,"s":{"g":"1","s":"47","n":"10","a":"4.75","d":"0.51","Og":"1","Os":"65","On":"14","Oa":"4.68","Od":"0.52","Mp":"8","Ap":"4","p":{"22":{"n":4,"s":1},"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":6,"g":1},"8":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":11,"s":{"g":"1","s":"43","n":"9","a":"4.78","d":"0.85","Og":"2","Os":"125","On":"25","Oa":"5","Od":"0.77","Mp":"6","Ap":"10","p":{"22":{"n":5},"1":{"n":4.5},"3":{"n":3},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":6.5,"g":1},"10":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":10,"s":{"s":"49","n":"10","a":"4.95","d":"0.99","Os":"49","On":"10","Oa":"4.95","Od":"0.99","Mp":"3","Dp":"7","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":4.5},"10":{"n":4.5},"11":{"n":5,"s":1},"15":{"n":4.5},"16":{"n":5,"s":1}}},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":1,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":1,"s":{"n":0},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","p":{"22":{"n":5,"s":1}}},"c":19},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":4,"s":{"s":"4","n":"1","a":"4","Os":"32","On":"8","Oa":"4","Ap":"1","p":{"3":{"n":4,"s":1}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":15,"s":{"s":"85","n":"16","a":"5.31","d":"0.73","Os":"167","On":"31","Oa":"5.39","Od":"0.68","Mp":"27","Dp":"1","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":5}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":7,"s":{"s":"50","n":"11","a":"4.59","d":"0.73","Os":"72","On":"16","Oa":"4.53","Od":"0.67","Ap":"13","p":{"2":{"n":4.5},"3":{"n":3},"4":{"n":4,"s":1},"5":{"n":6},"6":{"n":4,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":4.5}}},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":8,"s":{"g":"1","s":"34","n":"7","a":"4.86","d":"0.52","Og":"1","Os":"46","On":"10","Oa":"4.6","Od":"0.58","Ap":"7","p":{"22":{"n":4,"s":1},"2":{"n":6,"g":1,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":16,"s":{"s":"79","n":"15","a":"5.3","d":"0.91","Os":"158","On":"32","Oa":"4.95","Od":"0.93","Dp":"32","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":4},"9":{"n":6},"10":{"n":5},"12":{"n":5.5},"13":{"n":7},"14":{"n":6.5},"15":{"n":6},"16":{"n":6}}},"c":19},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Os":"65","On":"14","Oa":"4.68","Od":"0.88","Mp":"6","Ap":"3","p":{"1":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":4.5,"s":1},"12":{"n":4,"s":1}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":7,"s":{"s":"29","n":"6","a":"4.83","d":"0.24","Os":"62","On":"13","Oa":"4.77","Od":"0.67","Mp":"5","Dp":"8","p":{"22":{"n":6},"4":{"n":5,"s":1},"5":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":1,"s":{"n":0},"c":19},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":4,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":1,"s":{"n":0},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":10,"s":{"g":"1","s":"62","n":"12","a":"5.21","d":"0.85","Og":"1","Os":"62","On":"12","Oa":"5.21","Od":"0.85","Mp":"8","Dp":"4","p":{"1":{"n":4.5},"5":{"n":5.5,"s":1},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":8,"s":{"s":"30","n":"7","a":"4.29","d":"0.92","Os":"30","On":"7","Oa":"4.29","Od":"0.92","Mp":"6","Ap":"1","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":4.5},"13":{"n":2.5}}},"c":19},{"i":2945,"n":"Hamache","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":19},{"i":2946,"n":"Sylvestre","f":"Eddy","p":"M","r":1,"s":{"n":0},"c":19},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":16,"s":{"g":"1","s":"90","n":"17","a":"5.29","d":"1.11","Sg":"1","Ss":"90","Sn":"17","Sa":"5.29","Sd":"1.11","Og":"2","Os":"181","On":"35","Oa":"5.17","Od":"1.05","Mp":"35","p":{"24":{"n":5},"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":8,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5,"s":1},"16":{"n":7},"17":{"n":4.5}}},"c":20},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":4,"s":{"s":"4","n":"1","a":"4","Os":"31","On":"6","Oa":"5.17","Od":"0.9","Dp":"5","p":{"24":{"n":6},"1":{"n":4}}},"c":20},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":4,"s":{"n":0,"Os":"50","On":"10","Oa":"5","Od":"0.63","Mp":"1","Dp":"8"},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":20,"s":{"g":"4","s":"54","n":"10","a":"5.45","d":"1.31","Sg":"2","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.25","Og":"4","Os":"54","On":"10","Oa":"5.45","Od":"1.31","Mp":"5","Ap":"5","p":{"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":8,"g":1},"10":{"n":4.5},"11":{"n":3.5},"13":{"n":4.5,"s":1},"14":{"n":6,"g":1},"16":{"n":7,"g":1},"17":{"n":6.5,"g":1}}},"c":20},{"i":168,"n":"Mexer","f":"","p":"D","r":12,"s":{"s":"65","n":"13","a":"5","d":"1.13","Os":"106","On":"22","Oa":"4.82","Od":"1.08","Dp":"18","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4.5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4},"8":{"n":5.5},"9":{"n":5.5},"12":{"n":5.5},"14":{"n":4.5},"15":{"n":3},"16":{"n":7.5}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":14,"s":{"g":"1","s":"76","n":"15","a":"5.1","d":"1.23","Sg":"1","Ss":"66","Sn":"13","Sa":"5.12","Sd":"1.32","Og":"4","Oao":"2","Os":"164","On":"33","Oa":"4.98","Od":"1.14","Dp":"33","p":{"2":{"n":5,"s":1},"3":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":7,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":4},"15":{"n":2},"16":{"n":7},"17":{"n":6}}},"c":20},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":25,"s":{"g":"5","s":"93","n":"17","a":"5.5","d":"0.89","Sg":"5","Ss":"93","Sn":"17","Sa":"5.5","Sd":"0.89","Og":"9","Os":"178","On":"34","Oa":"5.25","Od":"1.08","Mp":"21","Ap":"11","p":{"24":{"n":4},"1":{"n":4},"2":{"n":6.5,"g":1},"3":{"n":7,"g":1},"4":{"n":5.5},"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":6.5,"g":1},"13":{"n":6},"14":{"n":5.5},"15":{"n":4.5,"g":1},"16":{"n":7},"17":{"n":6}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":12,"s":{"g":"1","ao":"1","s":"68","n":"14","a":"4.86","d":"0.97","Og":"1","Oao":"1","Os":"166","On":"33","Oa":"5.03","Od":"0.96","Dp":"30","p":{"24":{"n":5,"s":1},"2":{"n":5},"3":{"n":4,"a":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4.5},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":3.5},"16":{"n":6.5}}},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":8,"s":{"g":"1","s":"18","n":"4","a":"4.63","d":"1.47","Og":"4","Os":"94","On":"20","Oa":"4.73","Od":"1.26","Mp":"6","Ap":"8","p":{"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":3}}},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":10,"s":{"s":"44","n":"9","a":"4.89","d":"0.61","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"94","On":"19","Oa":"4.95","Od":"0.63","Mp":"4","Dp":"10","Ap":"2","p":{"4":{"n":5,"s":1},"5":{"n":3.5},"7":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":5},"16":{"n":5,"s":1},"17":{"n":6}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"12":{"n":5,"s":1}}},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":8,"s":{"s":"55","n":"11","a":"5","d":"0.56","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"141","On":"28","Oa":"5.04","Od":"0.9","Mp":"22","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5.5,"s":1},"5":{"n":4},"6":{"n":5},"8":{"n":6},"11":{"n":4.5,"s":1},"14":{"n":5.5,"s":1},"15":{"n":5,"s":1},"17":{"n":4.5}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":8,"s":{"s":"8","n":"2","a":"4","d":"0.5","Og":"3","Os":"69","On":"16","Oa":"4.31","Od":"0.93","Ap":"9","p":{"24":{"n":3},"1":{"n":3.5},"2":{"n":4.5}}},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":11,"s":{"g":"1","s":"48","n":"10","a":"4.85","d":"0.5","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"48","On":"10","Oa":"4.85","Od":"0.5","Mp":"1","Ap":"9","p":{"5":{"n":4,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":20},{"i":1182,"n":"Hamari Traor\u00e9","f":"","p":"D","r":15,"s":{"s":"79","n":"16","a":"4.94","d":"0.95","Ss":"59","Sn":"12","Sa":"4.96","Sd":"0.72","Os":"145","On":"29","Oa":"5","Od":"0.94","Mp":"1","Dp":"28","p":{"24":{"n":4},"1":{"n":3},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"6":{"n":4},"7":{"n":4.5},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":6},"17":{"n":6.5}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":17,"s":{"g":"3","s":"78","n":"16","a":"4.88","d":"1.02","Sg":"2","Ss":"20","Sn":"4","Sa":"5.13","Sd":"1.24","Og":"9","Os":"191","On":"37","Oa":"5.16","Od":"1.14","Mp":"29","Ap":"6","p":{"24":{"n":4},"1":{"n":5},"2":{"n":3.5},"3":{"n":6,"g":1},"4":{"n":6.5},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5,"s":1},"14":{"n":6,"g":1},"15":{"n":3},"16":{"n":5.5},"17":{"n":6,"g":1,"s":1}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":19,"s":{"g":"2","s":"87","n":"17","a":"5.15","d":"1.09","Sg":"2","Ss":"87","Sn":"17","Sa":"5.15","Sd":"1.09","Og":"7","Os":"165","On":"32","Oa":"5.17","Od":"1.28","Mp":"31","p":{"24":{"n":5,"e":1002,"c":14,"s":1},"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"5":{"n":4},"6":{"n":6},"7":{"n":6,"g":1,"s":1},"8":{"n":6},"9":{"n":6},"10":{"n":4.5},"11":{"n":4},"12":{"n":5.5},"13":{"n":3},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":6.5},"17":{"n":6}}},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":12,"s":{"s":"35","n":"6","a":"5.83","d":"1.11","Ss":"14","Sn":"2","Sa":"7.25","Sd":"0.75","Os":"35","On":"6","Oa":"5.83","Od":"1.11","Gp":"6","p":{"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":5},"16":{"n":8},"17":{"n":6.5}}},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":9,"s":{"s":"72","n":"15","a":"4.8","d":"0.98","Os":"72","On":"15","Oa":"4.8","Od":"0.98","Mp":"14","Dp":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":3.5},"12":{"n":7.5},"13":{"n":5},"14":{"n":4},"15":{"n":3},"16":{"n":5,"s":1}}},"c":20},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":10,"s":{"s":"57","n":"12","a":"4.75","d":"0.66","Os":"168","On":"33","Oa":"5.09","Od":"0.92","Gp":"33","p":{"24":{"n":5},"1":{"n":4},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":3.5},"15":{"n":5}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":1,"s":{"n":0},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":8,"s":{"s":"42","n":"9","a":"4.72","d":"0.95","Ss":"5","Sn":"1","Sa":"5.5","Os":"150","On":"30","Oa":"5.02","Od":"0.85","Mp":"7","Dp":"22","p":{"24":{"n":5},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4,"s":1},"7":{"n":4},"10":{"n":5},"11":{"n":4},"17":{"n":5.5}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":9,"s":{"g":"1","s":"36","n":"7","a":"5.21","d":"0.8","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"36","On":"7","Oa":"5.21","Od":"0.8","Mp":"7","p":{"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"12":{"n":6},"13":{"n":6.5,"g":1},"14":{"n":5,"s":1},"15":{"n":4},"17":{"n":4.5,"s":1}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":3,"s":{"n":0},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":4,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":10,"s":{"g":"1","s":"52","n":"11","a":"4.77","d":"0.45","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Og":"1","Os":"52","On":"11","Oa":"4.77","Od":"0.45","Ap":"11","p":{"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":6,"g":1},"17":{"n":4.5,"s":1}}},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":3,"s":{"n":0},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":16,"s":{"g":"2","s":"78","n":"15","a":"5.23","d":"0.91","Sg":"2","Ss":"60","Sn":"11","Sa":"5.45","Sd":"0.89","Og":"5","Os":"177","On":"34","Oa":"5.22","Od":"0.93","Mp":"25","Ap":"5","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":4},"4":{"n":5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":5.5,"s":1},"17":{"n":6}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":11,"s":{"g":"1","s":"60","n":"12","a":"5","d":"0.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"115","On":"23","Oa":"5","Od":"0.75","Mp":"15","Ap":"5","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5.5},"17":{"n":4.5}}},"c":41},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":19,"s":{"g":"2","s":"87","n":"16","a":"5.44","d":"0.86","Sg":"2","Ss":"75","Sn":"14","Sa":"5.39","Sd":"0.87","Og":"2","Os":"168","On":"34","Oa":"4.94","Od":"1.06","Dp":"34","p":{"1":{"n":6.5},"2":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":4.5},"15":{"n":7.5,"g":1},"16":{"n":5.5},"17":{"n":6,"g":1}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"101","On":"20","Oa":"5.05","Od":"1.53","Gp":"20"},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":13,"s":{"s":"58","n":"11","a":"5.32","d":"0.81","Ss":"49","Sn":"9","Sa":"5.44","Sd":"0.83","Os":"58","On":"11","Oa":"5.32","Od":"0.81","Dp":"11","p":{"3":{"n":4.5},"4":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":7},"16":{"n":5.5},"17":{"n":4}}},"c":41},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":22,"s":{"g":"3","s":"91","n":"16","a":"5.72","d":"1.03","Sg":"2","Ss":"41","Sn":"7","Sa":"5.86","Sd":"1.12","Og":"5","Os":"185","On":"36","Oa":"5.15","Od":"1.18","Mp":"35","Ap":"1","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":8,"g":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":8,"g":2},"16":{"n":6},"17":{"n":4}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Og":"3","Os":"65","On":"15","Oa":"4.33","Od":"0.87","Ap":"4","p":{"7":{"n":4,"s":1}}},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":13,"s":{"s":"61","n":"12","a":"5.13","d":"0.79","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.56","Og":"2","Os":"158","On":"30","Oa":"5.28","Od":"0.94","Mp":"28","Dp":"2","p":{"1":{"n":7},"2":{"n":4.5},"4":{"n":4},"6":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":4,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"1.02","Dp":"3"},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.4","Os":"82","On":"17","Oa":"4.85","Od":"0.33","Mp":"10","p":{"1":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4},"9":{"n":5,"s":1}}},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":8,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Gp":"3"},"c":41},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":7,"s":{"g":"1","s":"20","n":"4","a":"5.13","d":"0.89","Og":"1","Os":"99","On":"21","Oa":"4.74","Od":"0.61","Mp":"14","Dp":"1","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1},"3":{"n":4},"10":{"n":5}}},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":14,"s":{"g":"4","s":"81","n":"16","a":"5.09","d":"1.08","Ss":"9","Sn":"2","Sa":"4.5","Og":"5","Os":"130","On":"27","Oa":"4.83","Od":"1.02","Mp":"3","Ap":"21","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6.5,"g":1,"s":1},"8":{"n":7,"g":1},"9":{"n":6},"10":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":4,"s":1},"14":{"n":4},"16":{"n":4.5},"17":{"n":4.5,"s":1}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":7,"s":{"s":"55","n":"11","a":"5.05","d":"0.78","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"55","On":"11","Oa":"5.05","Od":"0.78","Mp":"1","Dp":"10","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":4},"8":{"n":6},"9":{"n":4},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":4}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":20,"s":{"g":"3","s":"78","n":"15","a":"5.23","d":"1.41","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"1.08","Og":"5","Os":"143","On":"30","Oa":"4.78","Od":"1.38","Mp":"10","Dp":"19","p":{"1":{"n":6.5},"2":{"n":4},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5.5},"9":{"n":3},"10":{"n":8},"11":{"n":5},"12":{"n":6},"15":{"n":6},"16":{"n":5.5,"g":1},"17":{"n":3.5}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":11,"s":{"g":"1","s":"63","n":"13","a":"4.85","d":"0.72","Og":"1","Os":"67","On":"14","Oa":"4.79","Od":"0.72","Mp":"11","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"11":{"n":6.5,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":5,"s":1},"16":{"n":5}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":12,"s":{"s":"60","n":"12","a":"5","d":"0.46","Os":"64","On":"13","Oa":"4.92","Od":"0.51","Mp":"7","Dp":"6","p":{"3":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"15":{"n":5.5,"s":1},"16":{"n":5.5}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Ismael","p":"D","r":1,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"1","Dp":"1","p":{"13":{"n":5},"14":{"n":5}}},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":5,"s":1},"11":{"n":4.5,"s":1}}},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":24,"s":{"g":"8","s":"90","n":"17","a":"5.29","d":"1.03","Sg":"8","Ss":"90","Sn":"17","Sa":"5.29","Sd":"1.03","Og":"12","Os":"141","On":"28","Oa":"5.04","Od":"1.16","Ap":"28","p":{"1":{"n":7,"e":2734,"c":12,"g":1},"2":{"n":4,"e":2746,"c":12},"3":{"n":4.5,"e":2754,"c":12},"4":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":7.5,"g":2},"10":{"n":6,"g":1,"s":1},"11":{"n":4},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":5.5},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":17,"s":{"s":"95","n":"17","a":"5.62","d":"0.96","Ss":"95","Sn":"17","Sa":"5.62","Sd":"0.96","Os":"95","On":"17","Oa":"5.62","Od":"0.96","Gp":"17","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":4.5},"13":{"n":8},"14":{"n":5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":12,"s":{"g":"1","s":"86","n":"16","a":"5.38","d":"0.76","Ss":"51","Sn":"10","Sa":"5.15","Sd":"0.71","Og":"1","Os":"86","On":"16","Oa":"5.38","Od":"0.76","Mp":"16","p":{"1":{"n":6,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"6":{"n":6.5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5,"s":1},"17":{"n":4}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":8,"s":{"g":"1","s":"28","n":"6","a":"4.67","d":"0.62","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"28","On":"6","Oa":"4.67","Od":"0.62","Ap":"6","p":{"1":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":4},"15":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":41},{"i":2726,"n":"Mitrovic","f":"Stefan","p":"D","r":11,"s":{"ao":"1","s":"74","n":"15","a":"4.93","d":"0.77","Ss":"4","Sn":"1","Sa":"4.5","Oao":"1","Os":"74","On":"15","Oa":"4.93","Od":"0.77","Dp":"15","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":3.5,"a":1},"5":{"n":5.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"17":{"n":4.5}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":6,"s":{"s":"25","n":"5","a":"5","Os":"25","On":"5","Oa":"5","Mp":"5","p":{"3":{"n":5,"s":1},"8":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":5}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":1,"s":{"n":0},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":9,"s":{"g":"1","s":"76","n":"16","a":"4.75","d":"0.59","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.5","Og":"2","Os":"125","On":"26","Oa":"4.81","Od":"0.57","Mp":"4","Dp":"10","Ap":"2","p":{"23":{"n":4,"s":1},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"8":{"n":4,"s":1},"9":{"n":5},"10":{"n":4,"s":1},"11":{"n":6,"g":1},"12":{"n":4.5},"14":{"n":4,"s":1},"15":{"n":4},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":10,"s":{"g":"1","s":"39","n":"8","a":"4.88","d":"0.7","Sg":"1","Ss":"29","Sn":"6","Sa":"4.92","Sd":"0.79","Og":"1","Os":"89","On":"19","Oa":"4.68","Od":"0.69","Mp":"16","p":{"5":{"n":5},"10":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":4},"16":{"n":4.5},"17":{"n":4.5}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":3,"s":{"n":0},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":11,"s":{"g":"1","s":"77","n":"16","a":"4.81","d":"0.86","Sg":"1","Ss":"53","Sn":"11","Sa":"4.82","Sd":"0.83","Og":"2","Os":"160","On":"34","Oa":"4.71","Od":"1.04","Dp":"34","p":{"23":{"n":5},"1":{"n":4.5},"2":{"n":4},"3":{"n":5},"4":{"n":6.5},"5":{"n":4},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":3},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5,"g":1},"15":{"n":3.5},"16":{"n":5},"17":{"n":5}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":19,"s":{"s":"92","n":"17","a":"5.44","d":"0.97","Ss":"92","Sn":"17","Sa":"5.44","Sd":"0.97","Os":"206","On":"37","Oa":"5.58","Od":"0.94","Gp":"37","p":{"23":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":6.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":8},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":5}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":13,"s":{"s":"64","n":"13","a":"4.96","d":"0.91","Ss":"59","Sn":"12","Sa":"4.96","Sd":"0.95","Og":"1","Os":"175","On":"33","Oa":"5.32","Od":"1.08","Mp":"33","p":{"23":{"n":5},"4":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":5.5},"9":{"n":6},"10":{"n":3},"11":{"n":6.5},"12":{"n":5},"13":{"n":6},"14":{"n":4.5},"15":{"n":4},"16":{"n":5},"17":{"n":5}}},"c":42},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":5,"s":{"s":"38","n":"9","a":"4.22","d":"0.71","Ss":"5","Sn":"1","Sa":"5","Os":"101","On":"23","Oa":"4.39","Od":"0.9","Mp":"2","Dp":"19","p":{"1":{"n":4.5},"2":{"n":4},"4":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":5,"s":1},"15":{"n":3},"17":{"n":5,"s":1}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":8,"s":{"g":"3","s":"55","n":"11","a":"5","d":"1.26","Og":"12","Os":"146","On":"30","Oa":"4.87","Od":"1.4","Ap":"28","p":{"23":{"n":4},"1":{"n":4},"2":{"n":6,"g":1},"3":{"n":8.5,"g":2},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":5}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":11,"s":{"ao":"1","s":"68","n":"15","a":"4.57","d":"0.98","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Oao":"1","Os":"166","On":"34","Oa":"4.9","Od":"0.97","Dp":"33","p":{"23":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":3,"a":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":3},"11":{"n":3},"12":{"n":5.5},"13":{"n":5.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":5.5}}},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Od":"0.82","Mp":"2"},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4"},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":11,"s":{"g":"1","ao":"1","s":"58","n":"13","a":"4.46","d":"1.15","Sao":"1","Ss":"40","Sn":"9","Sa":"4.44","Sd":"1.12","Og":"1","Oao":"1","Os":"153","On":"32","Oa":"4.78","Od":"1.02","Dp":"32","p":{"23":{"n":5},"2":{"n":4.5},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":6.5,"g":1},"9":{"n":6},"10":{"n":3},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":1,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"47","On":"10","Oa":"4.7","Od":"0.87","Mp":"5","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":4},"6":{"n":4.5},"7":{"n":4.5}}},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":2,"s":{"n":0},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":1,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Os":"81","On":"16","Oa":"5.09","Od":"0.71","Mp":"16","p":{"23":{"n":4},"3":{"n":6.5},"4":{"n":5}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":7,"s":{"s":"59","n":"12","a":"4.96","d":"0.69","Os":"64","On":"13","Oa":"4.96","Od":"0.66","Mp":"11","Ap":"2","p":{"5":{"n":6,"s":1},"6":{"n":4},"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":3.5},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":10,"s":{"g":"1","s":"45","n":"9","a":"5","d":"1","Sg":"1","Ss":"24","Sn":"5","Sa":"4.8","Sd":"0.93","Og":"3","Os":"97","On":"19","Oa":"5.11","Od":"0.99","Mp":"12","Ap":"6","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":7},"4":{"n":4.5},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":3.5},"16":{"n":4},"17":{"n":6,"g":1}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":8,"s":{"s":"53","n":"11","a":"4.86","d":"1.15","Ss":"5","Sn":"1","Sa":"5.5","Os":"53","On":"11","Oa":"4.86","Od":"1.15","Mp":"3","Dp":"8","p":{"1":{"n":4},"3":{"n":6},"4":{"n":6.5},"6":{"n":3.5},"7":{"n":5},"8":{"n":6},"12":{"n":4},"13":{"n":6},"14":{"n":3},"15":{"n":4},"17":{"n":5.5,"s":1}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":10,"s":{"s":"68","n":"15","a":"4.57","d":"0.79","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Os":"68","On":"15","Oa":"4.57","Od":"0.79","Mp":"5","Ap":"10","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4},"16":{"n":4},"17":{"n":6}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":13,"s":{"g":"3","s":"84","n":"16","a":"5.25","d":"1.12","Sg":"1","Ss":"37","Sn":"8","Sa":"4.63","Sd":"1.08","Og":"3","Os":"84","On":"16","Oa":"5.25","Od":"1.12","Mp":"15","Ap":"1","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":7,"g":1},"4":{"n":6},"5":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":5},"10":{"n":3.5},"11":{"n":4},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":3.5,"s":1},"16":{"n":5},"17":{"n":6.5,"g":1}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":1,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5},"5":{"n":5.5,"s":1},"9":{"n":5,"s":1}}},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":1,"s":{"n":0},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2789,"n":"Timite","f":"Cheick","p":"M","r":6,"s":{"s":"26","n":"6","a":"4.42","d":"0.34","Os":"26","On":"6","Oa":"4.42","Od":"0.34","Mp":"6","p":{"1":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"15":{"n":4,"s":1}}},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":5,"s":{"g":"1","s":"31","n":"7","a":"4.5","d":"0.93","Og":"1","Os":"31","On":"7","Oa":"4.5","Od":"0.93","Mp":"2","Ap":"5","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6.5,"g":1,"s":1},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":3.5},"11":{"n":4.5,"s":1}}},"c":42},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":10,"s":{"g":"1","s":"69","n":"15","a":"4.63","d":"0.69","Ss":"9","Sn":"2","Sa":"4.5","Og":"1","Os":"69","On":"15","Oa":"4.63","Od":"0.69","Mp":"2","Dp":"13","p":{"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":5},"5":{"n":4.5},"6":{"n":5,"g":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":4.5},"13":{"n":5},"14":{"n":3.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":42},{"i":2832,"n":"Ghoddos","f":"Saman","p":"A","r":12,"s":{"g":"2","s":"68","n":"14","a":"4.86","d":"1.14","Sg":"2","Ss":"68","Sn":"14","Sa":"4.86","Sd":"1.14","Og":"2","Os":"68","On":"14","Oa":"4.86","Od":"1.14","Mp":"4","Ap":"10","p":{"4":{"n":4.5,"s":1},"5":{"n":6.5,"g":1},"6":{"n":4},"7":{"n":7},"8":{"n":4},"9":{"n":7,"g":1},"10":{"n":3.5},"11":{"n":4},"12":{"n":5},"13":{"n":5.5},"14":{"n":4},"15":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":4.5}}},"c":42},{"i":2937,"n":"Segarel","f":"Stanley","p":"A","r":1,"s":{"n":0},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":7,"s":{"s":"32","n":"7","a":"4.57","d":"1.02","Og":"1","Os":"99","On":"20","Oa":"4.95","Od":"1.31","Mp":"15","p":{"1":{"n":4},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":3}}},"c":67},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":10,"s":{"s":"35","n":"7","a":"5.07","d":"0.62","Os":"112","On":"22","Oa":"5.11","Od":"0.69","Mp":"10","p":{"7":{"n":5,"e":2795,"c":18,"s":1},"10":{"n":5,"e":2824,"c":18,"s":1},"11":{"n":4.5,"e":2833,"c":18},"12":{"n":5,"e":2844,"c":18,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":6.5}}},"c":67},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":12,"s":{"s":"39","n":"8","a":"4.94","d":"0.77","Os":"57","On":"12","Oa":"4.79","Od":"0.72","Mp":"1","Dp":"7","p":{"5":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"15":{"n":6}}},"c":67},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":19,"s":{"s":"94","n":"16","a":"5.88","d":"1.17","Os":"94","On":"16","Oa":"5.88","Od":"1.17","Gp":"16","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":7.5},"4":{"n":3.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":5.5},"12":{"n":8},"13":{"n":7.5},"14":{"n":7},"15":{"n":6},"16":{"n":5.5}}},"c":67},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":12,"s":{"g":"1","s":"56","n":"12","a":"4.67","d":"0.77","Og":"1","Os":"76","On":"17","Oa":"4.47","Od":"0.72","Mp":"1","Ap":"12","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":5},"11":{"n":4},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5}}},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":13,"s":{"g":"1","s":"59","n":"12","a":"4.96","d":"0.99","Og":"1","Os":"59","On":"12","Oa":"4.96","Od":"0.99","Dp":"12","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4},"4":{"n":3},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":4},"16":{"n":6,"g":1,"s":1}}},"c":67},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":11,"s":{"g":"1","s":"37","n":"7","a":"5.29","d":"1.06","Og":"1","Os":"37","On":"7","Oa":"5.29","Od":"1.06","Dp":"7","p":{"5":{"n":4},"6":{"n":5},"7":{"n":5.5},"8":{"n":4},"13":{"n":5,"s":1},"14":{"n":7,"g":1},"15":{"n":6.5}}},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":5,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":5,"s":{"n":0},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":6,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Os":"9","On":"2","Oa":"4.75","Od":"0.75","Dp":"2","p":{"10":{"n":4},"16":{"n":5.5}}},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":1,"s":{"n":0},"c":67},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":15,"s":{"g":"2","s":"73","n":"15","a":"4.87","d":"1.23","Og":"2","Os":"73","On":"15","Oa":"4.87","Od":"1.23","Ap":"15","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":2.5},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6.5},"12":{"n":5},"13":{"n":3},"15":{"n":5.5,"s":1},"16":{"n":7,"g":1}}},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":10,"s":{"s":"51","n":"11","a":"4.68","d":"0.32","Os":"51","On":"11","Oa":"4.68","Od":"0.32","Dp":"11","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":4},"9":{"n":5},"10":{"n":4.5},"11":{"n":5},"16":{"n":5}}},"c":67},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":13,"s":{"g":"2","s":"84","n":"16","a":"5.28","d":"1.2","Og":"2","Os":"84","On":"16","Oa":"5.28","Od":"1.2","Mp":"10","Ap":"6","p":{"1":{"n":8,"g":1},"2":{"n":7,"g":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":4.5,"s":1}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":11,"s":{"g":"1","s":"61","n":"13","a":"4.69","d":"0.75","Og":"1","Os":"61","On":"13","Oa":"4.69","Od":"0.75","Ap":"13","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5}}},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":9,"s":{"s":"17","n":"4","a":"4.38","d":"0.96","Os":"17","On":"4","Oa":"4.38","Od":"0.96","Dp":"4","p":{"1":{"n":3},"3":{"n":5},"5":{"n":4},"7":{"n":5.5}}},"c":67},{"i":2702,"n":"Bobichon","f":"Antonin","p":"M","r":13,"s":{"g":"2","s":"56","n":"11","a":"5.14","d":"0.98","Og":"2","Os":"56","On":"11","Oa":"5.14","Od":"0.98","Mp":"8","Ap":"3","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":6,"g":1},"6":{"n":7},"7":{"n":5},"8":{"n":3},"9":{"n":5.5},"10":{"n":5},"12":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":5}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":14,"s":{"s":"77","n":"15","a":"5.17","d":"0.51","Os":"77","On":"15","Oa":"5.17","Od":"0.51","Mp":"15","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":22,"s":{"g":"2","s":"82","n":"15","a":"5.5","d":"1.24","Og":"2","Os":"82","On":"15","Oa":"5.5","Od":"1.24","Dp":"15","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"8":{"n":3},"9":{"n":5.5},"10":{"n":4},"11":{"n":6.5},"12":{"n":7,"g":1},"13":{"n":6},"14":{"n":6.5},"15":{"n":6.5},"16":{"n":5.5}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":10,"s":{"s":"38","n":"8","a":"4.81","d":"0.75","Os":"38","On":"8","Oa":"4.81","Od":"0.75","Dp":"8","p":{"1":{"n":5,"s":1},"2":{"n":5},"4":{"n":3},"6":{"n":5},"7":{"n":5.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"16":{"n":5}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":17,"s":{"g":"2","s":"85","n":"16","a":"5.31","d":"0.92","Og":"2","Os":"85","On":"16","Oa":"5.31","Od":"0.92","Mp":"5","Dp":"4","Ap":"7","p":{"1":{"n":6.5,"g":1},"2":{"n":7,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5.5},"12":{"n":7},"13":{"n":5.5},"14":{"n":6},"15":{"n":5},"16":{"n":4.5,"s":1}}},"c":67},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":6,"s":{"n":0},"c":67},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":14,"s":{"g":"3","s":"45","n":"9","a":"5.06","d":"0.86","Og":"3","Os":"45","On":"9","Oa":"5.06","Od":"0.86","Ap":"9","p":{"8":{"n":5,"s":1},"9":{"n":4,"s":1},"10":{"n":5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":7,"g":2,"s":1},"16":{"n":5}}},"c":67},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":1,"s":{"n":0},"c":67},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":20,"s":{"g":"2","s":"67","n":"11","a":"6.14","d":"0.93","Og":"2","Os":"67","On":"11","Oa":"6.14","Od":"0.93","Mp":"11","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6,"g":1},"10":{"n":7},"11":{"n":5},"12":{"n":8,"g":1},"13":{"n":6.5},"14":{"n":7},"15":{"n":6},"16":{"n":6}}},"c":67},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":16,"s":{"g":"4","s":"65","n":"13","a":"5.04","d":"1.31","Og":"4","Os":"65","On":"13","Oa":"5.04","Od":"1.31","Mp":"9","Ap":"4","p":{"1":{"n":5},"2":{"n":6,"g":1},"3":{"n":4.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":8,"g":2},"13":{"n":3.5},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":5.5}}},"c":67},{"i":2957,"n":"Lionel Dias","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":67},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":22,"s":{"s":"92","n":"17","a":"5.41","d":"0.96","Ss":"92","Sn":"17","Sa":"5.41","Sd":"0.96","Os":"92","On":"17","Oa":"5.41","Od":"0.96","Dp":"17","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":6.5},"12":{"n":6},"13":{"n":4},"14":{"n":6.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":5.5}}},"c":68},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":11,"s":{"s":"38","n":"8","a":"4.81","d":"0.56","Os":"38","On":"8","Oa":"4.81","Od":"0.56","Mp":"8","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4},"6":{"n":4.5},"8":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":6},"12":{"n":5}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":13,"s":{"g":"2","s":"74","n":"15","a":"4.93","d":"0.81","Og":"2","Os":"74","On":"15","Oa":"4.93","Od":"0.81","Mp":"15","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":4.5}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":9,"s":{"s":"38","n":"8","a":"4.75","d":"0.5","Os":"38","On":"8","Oa":"4.75","Od":"0.5","Mp":"7","Ap":"1","p":{"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5}}},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":6,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Mp":"3","p":{"11":{"n":5,"s":1},"13":{"n":4},"17":{"n":5,"s":1}}},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":9,"s":{"s":"52","n":"12","a":"4.33","d":"0.55","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Og":"1","Os":"118","On":"28","Oa":"4.21","Od":"0.59","Ap":"19","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5}}},"c":68},{"i":2608,"n":"Chavarria","f":"Pablo","p":"A","r":13,"s":{"g":"2","s":"79","n":"17","a":"4.65","d":"0.74","Sg":"2","Ss":"79","Sn":"17","Sa":"4.65","Sd":"0.74","Og":"2","Os":"79","On":"17","Oa":"4.65","Od":"0.74","Mp":"1","Ap":"16","p":{"1":{"n":5},"2":{"n":6.5,"g":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":5.5,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5.5},"15":{"n":4},"16":{"n":3.5},"17":{"n":5}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"s":"23","n":"5","a":"4.6","d":"1.02","Ss":"3","Sn":"1","Sa":"3.5","Os":"23","On":"5","Oa":"4.6","Od":"1.02","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"7":{"n":4.5},"17":{"n":3.5,"s":1}}},"c":68},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":8,"s":{"s":"26","n":"5","a":"5.2","d":"0.51","Os":"26","On":"5","Oa":"5.2","Od":"0.51","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"12":{"n":5,"s":1}}},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":4,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":16,"s":{"s":"87","n":"16","a":"5.44","d":"0.7","Ss":"22","Sn":"4","Sa":"5.63","Sd":"0.54","Os":"87","On":"16","Oa":"5.44","Od":"0.7","Mp":"16","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":6.5}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":16,"s":{"s":"87","n":"17","a":"5.15","d":"1.01","Ss":"87","Sn":"17","Sa":"5.15","Sd":"1.01","Os":"87","On":"17","Oa":"5.15","Od":"1.01","Dp":"17","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":3},"8":{"n":5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":6.5}}},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":12,"s":{"g":"3","s":"78","n":"16","a":"4.91","d":"1","Sg":"1","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1","Og":"3","Os":"78","On":"16","Oa":"4.91","Od":"1","Mp":"15","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":4},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":8,"g":2},"12":{"n":6},"13":{"n":5},"14":{"n":4.5},"16":{"n":3.5},"17":{"n":5.5,"g":1,"s":1}}},"c":68},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":26,"s":{"s":"102","n":"17","a":"6","d":"1.08","Ss":"102","Sn":"17","Sa":"6","Sd":"1.08","Os":"102","On":"17","Oa":"6","Od":"1.08","Gp":"17","p":{"1":{"n":6},"2":{"n":7.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":7},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":6},"9":{"n":7},"10":{"n":7},"11":{"n":7},"12":{"n":6.5},"13":{"n":5},"14":{"n":6},"15":{"n":7.5},"16":{"n":5.5},"17":{"n":5.5}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"3":{"n":3.5,"s":1}}},"c":68},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":10,"s":{"s":"47","n":"10","a":"4.7","d":"0.6","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.22","Os":"47","On":"10","Oa":"4.7","Od":"0.6","Mp":"10","p":{"1":{"n":5,"s":1},"5":{"n":5,"s":1},"7":{"n":3},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":11,"s":{"g":"1","s":"66","n":"13","a":"5.08","d":"0.8","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.41","Og":"1","Os":"66","On":"13","Oa":"5.08","Od":"0.8","Mp":"10","Ap":"3","p":{"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":5,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Os":"18","On":"4","Oa":"4.63","Od":"0.41","Mp":"3","Dp":"1","p":{"2":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5,"s":1},"13":{"n":4}}},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":7,"s":{"s":"20","n":"4","a":"5","d":"0.5","Os":"20","On":"4","Oa":"5","Od":"0.5","Mp":"4","p":{"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":4.5},"16":{"n":4.5,"s":1}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":18,"s":{"g":"2","s":"86","n":"16","a":"5.38","d":"0.63","Sg":"1","Ss":"38","Sn":"7","Sa":"5.43","Sd":"0.68","Og":"2","Os":"86","On":"16","Oa":"5.38","Od":"0.63","Mp":"16","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":6},"16":{"n":5},"17":{"n":5.5}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2823,"n":"Engels","f":"Bj\u00f6rn","p":"D","r":15,"s":{"s":"70","n":"13","a":"5.42","d":"0.73","Ss":"70","Sn":"13","Sa":"5.42","Sd":"0.73","Os":"70","On":"13","Oa":"5.42","Od":"0.73","Dp":"13","p":{"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7},"12":{"n":6},"13":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":6}}},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":11,"s":{"s":"61","n":"12","a":"5.08","d":"0.61","Ss":"50","Sn":"10","Sa":"5","Sd":"0.63","Os":"61","On":"12","Oa":"5.08","Od":"0.61","Dp":"12","p":{"5":{"n":5.5},"6":{"n":5.5},"8":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":4},"14":{"n":6},"15":{"n":5},"16":{"n":5},"17":{"n":4}}},"c":68},{"i":2951,"n":"Dia","f":"Boulaye","p":"M","r":1,"s":{"n":0},"c":68}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1370,"s":{"p":44},"nM":2904,"nMWC":"0.9280","pM":{"21":973,"3":2760,"4":2767,"5":2780,"6":2789,"7":2800,"9":2820,"10":2828,"13":2857,"14":2869,"16":2891,"1":2740,"2":2745,"8":2807,"12":2848,"15":2873,"11":2837},"DMI":[973]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":1089,"s":{"p":21},"nM":2907,"nMWC":"0.4328","pM":{"15":2873,"1":2733,"2":2751,"3":2753,"4":2769,"5":2773,"10":2825,"11":2834,"12":2844,"14":2864,"26":1019,"6":2783,"7":2793,"8":2808,"9":2814,"13":2853,"16":2883},"DMI":[1019]},"4":{"n":"Saint Etienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1116,"s":{"p":26},"nM":2909,"nMWC":"0.5101","pM":{"5":2780,"16":2883,"22":981,"1":2741,"2":2750,"6":2790,"7":2801,"9":2816,"12":2850,"13":2860,"14":2865,"15":2880,"3":2757,"4":2770,"8":2810,"10":2830,"11":2839},"DMI":[981]},"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":1,"el":915,"s":{"p":14},"nM":2903,"nMWC":"0.4159","pM":{"1":2740,"13":2853,"6":2790,"33":1086,"2":2743,"3":2758,"4":2763,"5":2774,"8":2803,"9":2817,"10":2822,"11":2836,"12":2842,"15":2872,"16":2884,"7":2794,"14":2863,"17":2900},"DMI":[1086]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":926,"s":{"p":16},"nM":2904,"nMWC":"0.0720","pM":{"21":973,"14":2864,"4":2763,"1":2737,"2":2744,"5":2775,"7":2795,"8":2811,"9":2812,"10":2823,"3":2759,"6":2788,"11":2838,"12":2843,"13":2856,"15":2881,"16":2885,"17":2898},"DMI":[973]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1071,"s":{"p":20},"nM":2908,"nMWC":"0.4512","pM":{"9":2814,"15":2880,"3":2758,"2":2744,"1":2738,"4":2771,"5":2778,"6":2784,"7":2798,"8":2805,"10":2826,"11":2832,"12":2846,"13":2859,"14":2867,"36":1121,"16":2888},"DMI":[1121]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1136,"s":{"p":26},"nM":2907,"nMWC":"0.5672","pM":{"11":2837,"26":1019,"9":2817,"13":2856,"16":2888,"1":2736,"2":2747,"3":2756,"4":2766,"5":2776,"6":2785,"7":2796,"8":2804,"10":2827,"12":2845,"14":2862,"15":2876},"DMI":[1019]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":974,"s":{"p":18},"nM":2903,"nMWC":"0.5841","pM":{"14":2869,"2":2751,"7":2801,"33":1086,"15":2881,"10":2826,"1":2736,"3":2761,"4":2764,"5":2781,"6":2782,"8":2809,"9":2821,"11":2841,"12":2851,"13":2861,"16":2890},"DMI":[1086]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1129,"s":{"p":31},"nM":2910,"nMWC":"0.5785","pM":{"12":2848,"7":2793,"9":2816,"11":2836,"10":2823,"6":2784,"8":2804,"1":2734,"2":2746,"3":2754,"4":2762,"5":2772,"13":2855,"14":2868,"15":2875,"16":2887,"17":2894},"DMI":[]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":1027,"s":{"p":13},"nM":2906,"nMWC":"0.3075","pM":{"13":2857,"3":2753,"8":2810,"14":2863,"11":2838,"1":2738,"4":2766,"5":2781,"2":2746,"24":999,"6":2786,"7":2797,"9":2818,"10":2831,"12":2849,"15":2877,"16":2882},"DMI":[999]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":1,"el":861,"s":{"p":8},"nM":2905,"nMWC":"0.2111","pM":{"2":2745,"6":2783,"1":2741,"10":2822,"16":2885,"12":2846,"5":2776,"4":2764,"3":2754,"11":2835,"15":2874,"17":2893,"7":2799,"8":2802,"9":2815,"13":2854,"14":2870,"24":1002},"DMI":[1002]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1105,"s":{"p":29},"nM":2908,"nMWC":"0.5488","pM":{"10":2825,"3":2757,"7":2794,"1":2737,"36":1121,"12":2845,"11":2841,"16":2887,"15":2877,"9":2815,"2":2742,"4":2768,"5":2777,"6":2787,"8":2806,"13":2852,"14":2866},"DMI":[1121]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1027,"s":{"p":18},"nM":2902,"nMWC":"0.5771","pM":{"3":2760,"12":2850,"15":2872,"5":2775,"14":2867,"6":2782,"4":2762,"7":2797,"8":2802,"13":2852,"23":985,"1":2732,"2":2749,"9":2813,"16":2889,"10":2829,"11":2833},"DMI":[985]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1168,"s":{"p":28},"nM":2906,"nMWC":"0.6925","pM":{"9":2820,"12":2844,"14":2865,"5":2774,"7":2795,"8":2805,"6":2785,"15":2875,"24":999,"13":2854,"1":2735,"11":2833,"3":2755,"4":2765,"16":2886,"2":2748,"10":2824},"DMI":[999]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1109,"s":{"p":25},"nM":2909,"nMWC":"0.4899","pM":{"8":2807,"11":2834,"22":981,"2":2743,"3":2759,"7":2798,"10":2827,"9":2821,"14":2868,"15":2874,"6":2787,"16":2889,"4":2765,"1":2739,"5":2779,"12":2847,"13":2858},"DMI":[981]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1090,"s":{"p":23},"nM":2905,"nMWC":"0.7889","pM":{"6":2789,"4":2769,"10":2830,"12":2842,"17":2898,"13":2859,"3":2756,"8":2809,"1":2734,"9":2818,"24":1002,"14":2866,"2":2749,"16":2886,"5":2779,"7":2792,"11":2840,"15":2879},"DMI":[1002]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1048,"s":{"p":23},"nM":2911,"nMWC":"0.5173","pM":{"16":2891,"1":2733,"2":2750,"17":2900,"8":2811,"4":2771,"7":2796,"12":2851,"13":2855,"10":2831,"11":2835,"5":2777,"9":2813,"3":2755,"15":2879,"14":2871,"6":2791},"DMI":[]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":973,"s":{"p":16},"nM":2902,"nMWC":"0.4229","pM":{"10":2828,"4":2770,"8":2803,"9":2812,"11":2832,"14":2862,"13":2861,"5":2772,"16":2882,"17":2893,"1":2735,"2":2742,"3":2752,"23":985,"12":2847,"7":2792,"6":2791,"15":2878},"DMI":[985]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":1074,"s":{"p":23},"nM":2910,"nMWC":"0.4215","pM":{"4":2767,"5":2773,"11":2839,"16":2884,"12":2843,"2":2747,"3":2761,"6":2786,"7":2799,"8":2806,"1":2732,"10":2824,"13":2858,"14":2871,"15":2878,"9":2819},"DMI":[]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1036,"s":{"p":22},"nM":2911,"nMWC":"0.4827","pM":{"7":2800,"8":2808,"13":2860,"6":2788,"5":2778,"15":2876,"16":2890,"17":2894,"12":2849,"14":2870,"3":2752,"4":2768,"10":2829,"2":2748,"1":2739,"11":2840,"9":2819},"DMI":[]}},"e":{"973":{"d":21,"dB":"2018-01-17T20:00:00Z","t1s":8,"t2s":0,"t1":2,"t2":7},"2760":{"d":3,"dB":"2018-08-25T17:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":16},"2767":{"d":4,"dB":"2018-09-01T15:00:00Z","t1s":2,"t2s":4,"t1":67,"t2":2},"2780":{"d":5,"dB":"2018-09-14T18:45:00Z","t1s":4,"t2s":0,"t1":2,"t2":4},"2789":{"d":6,"dB":"2018-09-23T13:00:00Z","t1s":1,"t2s":3,"t1":20,"t2":2},"2800":{"d":7,"dB":"2018-09-26T19:00:00Z","t1s":4,"t2s":1,"t1":2,"t2":68},"2820":{"d":9,"dB":"2018-10-07T19:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":18},"2828":{"d":10,"dB":"2018-10-20T15:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":42},"2857":{"d":13,"dB":"2018-11-11T20:00:00Z","t1s":0,"t2s":4,"t1":13,"t2":2},"2869":{"d":14,"dB":"2018-11-24T16:00:00Z","t1s":1,"t2s":0,"t1":2,"t2":10},"2891":{"d":16,"dB":"2018-12-05T20:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":2},"2740":{"d":1,"dB":"2018-08-12T21:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":5},"2745":{"d":2,"dB":"2018-08-18T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":2},"2807":{"d":8,"dB":"2018-09-29T15:15:00Z","t1s":0,"t2s":3,"t1":19,"t2":2},"2848":{"d":12,"dB":"2018-11-02T19:45:00Z","t1s":2,"t2s":1,"t1":2,"t2":12},"2873":{"d":15,"dB":"2018-12-02T20:00:00Z","t1s":2,"t2s":2,"t1":3,"t2":2},"2837":{"d":11,"dB":"2018-10-28T20:00:00Z","t1s":0,"t2s":2,"t1":9,"t2":2},"2733":{"d":1,"dB":"2018-08-12T17:00:00Z","t1s":0,"t2s":2,"t1":3,"t2":41},"2751":{"d":2,"dB":"2018-08-19T15:00:00Z","t1s":2,"t2s":1,"t1":10,"t2":3},"2753":{"d":3,"dB":"2018-08-26T15:00:00Z","t1s":2,"t2s":1,"t1":3,"t2":13},"2769":{"d":4,"dB":"2018-09-02T15:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":3},"2773":{"d":5,"dB":"2018-09-16T15:00:00Z","t1s":3,"t2s":3,"t1":3,"t2":67},"2825":{"d":10,"dB":"2018-10-21T13:00:00Z","t1s":2,"t2s":0,"t1":15,"t2":3},"2834":{"d":11,"dB":"2018-10-28T16:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":19},"2844":{"d":12,"dB":"2018-11-03T16:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":3},"2864":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":3},"1019":{"d":26,"dB":"2018-02-18T20:00:00Z","t1s":1,"t2s":0,"t1":9,"t2":3},"2783":{"d":6,"dB":"2018-09-23T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":3},"2793":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":1,"t2s":0,"t1":3,"t2":12},"2808":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":3},"2814":{"d":9,"dB":"2018-10-07T13:00:00Z","t1s":3,"t2s":0,"t1":3,"t2":8},"2853":{"d":13,"dB":"2018-11-11T14:00:00Z","t1s":0,"t2s":0,"t1":3,"t2":5},"2883":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":3,"t2s":2,"t1":3,"t2":4},"981":{"d":22,"dB":"2018-01-21T14:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":4},"2741":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":14},"2750":{"d":2,"dB":"2018-08-19T13:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":4},"2790":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":5},"2801":{"d":7,"dB":"2018-09-25T19:00:00Z","t1s":2,"t2s":3,"t1":10,"t2":4},"2816":{"d":9,"dB":"2018-10-06T15:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":4},"2850":{"d":12,"dB":"2018-11-04T16:00:00Z","t1s":4,"t2s":3,"t1":4,"t2":16},"2860":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":68},"2865":{"d":14,"dB":"2018-11-23T20:00:00Z","t1s":1,"t2s":0,"t1":18,"t2":4},"2880":{"d":15,"dB":"2018-11-30T19:45:00Z","t1s":3,"t2s":0,"t1":4,"t2":8},"2757":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":0,"t1":15,"t2":4},"2770":{"d":4,"dB":"2018-09-02T13:00:00Z","t1s":0,"t2s":0,"t1":4,"t2":42},"2810":{"d":8,"dB":"2018-09-28T18:45:00Z","t1s":2,"t2s":0,"t1":4,"t2":13},"2830":{"d":10,"dB":"2018-10-21T15:00:00Z","t1s":1,"t2s":1,"t1":4,"t2":20},"2839":{"d":11,"dB":"2018-10-26T18:45:00Z","t1s":1,"t2s":1,"t1":67,"t2":4},"1086":{"d":33,"dB":"2018-04-25T16:45:00Z","t1s":0,"t2s":0,"t1":5,"t2":10},"2743":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":1,"t1":5,"t2":19},"2758":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":5},"2763":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":2,"t1":7,"t2":5},"2774":{"d":5,"dB":"2018-09-15T15:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":18},"2803":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":42},"2817":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":5},"2822":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":0,"t2s":0,"t1":5,"t2":14},"2836":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":5},"2842":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":20},"2872":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":5},"2884":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":67},"2794":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":15},"2863":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":13},"2900":{"d":17,"dB":"2018-12-09T14:00:00Z","t1s":2,"t2s":2,"t1":41,"t2":5},"2737":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":1,"t2s":2,"t1":15,"t2":7},"2744":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":2,"t2s":0,"t1":7,"t2":8},"2775":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":3,"t1":7,"t2":16},"2795":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":3,"t1":7,"t2":18},"2811":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":3,"t2s":0,"t1":41,"t2":7},"2812":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":7},"2823":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":12},"2759":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":4,"t1":19,"t2":7},"2788":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":7},"2838":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":2,"t2s":2,"t1":13,"t2":7},"2843":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":0,"t2s":4,"t1":7,"t2":67},"2856":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":7},"2881":{"d":15,"dB":"2018-12-02T14:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":7},"2885":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":14},"2898":{"d":17,"dB":"2018-12-08T19:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":7},"2738":{"d":1,"dB":"2018-08-11T17:00:00Z","t1s":1,"t2s":3,"t1":8,"t2":13},"2771":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":2,"t2s":3,"t1":41,"t2":8},"2778":{"d":5,"dB":"2018-09-16T13:00:00Z","t1s":0,"t2s":0,"t1":8,"t2":68},"2784":{"d":6,"dB":"2018-09-22T15:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":8},"2798":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":1,"t2s":2,"t1":8,"t2":19},"2805":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":8},"2826":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":4,"t2s":0,"t1":8,"t2":10},"2832":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":8},"2846":{"d":12,"dB":"2018-11-04T14:00:00Z","t1s":5,"t2s":0,"t1":8,"t2":14},"2859":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":8},"2867":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":16},"1121":{"d":36,"dB":"2018-05-06T15:00:00Z","t1s":0,"t2s":2,"t1":8,"t2":15},"2888":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":9},"2736":{"d":1,"dB":"2018-08-10T20:45:00Z","t1s":4,"t2s":0,"t1":9,"t2":10},"2747":{"d":2,"dB":"2018-08-19T19:00:00Z","t1s":3,"t2s":1,"t1":67,"t2":9},"2756":{"d":3,"dB":"2018-08-26T19:00:00Z","t1s":2,"t2s":2,"t1":9,"t2":20},"2766":{"d":4,"dB":"2018-09-02T19:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":9},"2776":{"d":5,"dB":"2018-09-16T19:00:00Z","t1s":4,"t2s":0,"t1":9,"t2":14},"2785":{"d":6,"dB":"2018-09-23T19:00:00Z","t1s":4,"t2s":2,"t1":18,"t2":9},"2796":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":3,"t2s":2,"t1":9,"t2":41},"2804":{"d":8,"dB":"2018-09-30T19:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":9},"2827":{"d":10,"dB":"2018-10-21T19:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":9},"2845":{"d":12,"dB":"2018-11-04T20:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":9},"2862":{"d":14,"dB":"2018-11-25T20:00:00Z","t1s":1,"t2s":3,"t1":42,"t2":9},"2876":{"d":15,"dB":"2018-12-02T16:00:00Z","t1s":0,"t2s":0,"t1":9,"t2":68},"2761":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":67},"2764":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":10},"2781":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":10,"t2":13},"2782":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":16,"t2":10},"2809":{"d":8,"dB":"2018-09-30T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":10},"2821":{"d":9,"dB":"2018-10-05T18:45:00Z","t1s":1,"t2s":1,"t1":10,"t2":19},"2841":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":0,"t2s":3,"t1":10,"t2":15},"2851":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":10},"2861":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":10,"t2":42},"2890":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":10},"2734":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":20},"2746":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":12},"2754":{"d":3,"dB":"2018-08-26T13:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":14},"2762":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":12},"2772":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":2,"t2s":3,"t1":42,"t2":12},"2855":{"d":13,"dB":"2018-11-09T19:45:00Z","t1s":0,"t2s":0,"t1":12,"t2":41},"2868":{"d":14,"dB":"2018-11-25T16:00:00Z","t1s":2,"t2s":0,"t1":19,"t2":12},"2875":{"d":15,"dB":"2018-12-01T16:00:00Z","t1s":2,"t2s":2,"t1":12,"t2":18},"2887":{"d":16,"dB":"2018-12-04T20:00:00Z","t1s":0,"t2s":1,"t1":15,"t2":12},"2894":{"d":17,"dB":"2018-12-09T16:00:00Z","t1s":1,"t2s":1,"t1":12,"t2":68},"999":{"d":24,"dB":"2018-02-04T20:00:00Z","t1s":3,"t2s":2,"t1":13,"t2":18},"2786":{"d":6,"dB":"2018-09-21T18:45:00Z","t1s":1,"t2s":1,"t1":13,"t2":67},"2797":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":0,"t2s":1,"t1":13,"t2":16},"2818":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":20},"2831":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":2,"t2s":1,"t1":41,"t2":13},"2849":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":68,"t2":13},"2877":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":15},"2882":{"d":16,"dB":"2018-12-04T18:00:00Z","t1s":0,"t2s":2,"t1":42,"t2":13},"2835":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":41},"2874":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":19},"2893":{"d":17,"dB":"2018-12-08T19:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":42},"2799":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":14},"2802":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":1,"t1":16,"t2":14},"2815":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":15},"2854":{"d":13,"dB":"2018-11-10T16:00:00Z","t1s":2,"t2s":4,"t1":14,"t2":18},"2870":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":2,"t2s":1,"t1":68,"t2":14},"1002":{"d":24,"dB":"2018-02-04T14:00:00Z","t1s":0,"t2s":1,"t1":20,"t2":14},"2735":{"d":1,"dB":"2018-08-12T15:00:00Z","t1s":2,"t2s":0,"t1":18,"t2":42},"2742":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":15},"2752":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":4,"t2s":1,"t1":42,"t2":68},"2768":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":15},"2777":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":41},"2787":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":1,"t2s":0,"t1":15,"t2":19},"2806":{"d":8,"dB":"2018-09-30T15:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":67},"2852":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":15},"2866":{"d":14,"dB":"2018-11-25T14:00:00Z","t1s":2,"t2s":2,"t1":15,"t2":20},"985":{"d":23,"dB":"2018-01-27T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":42},"2732":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":4,"t1":16,"t2":67},"2749":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":0,"t1":20,"t2":16},"2813":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":2,"t2s":2,"t1":16,"t2":41},"2889":{"d":16,"dB":"2018-12-04T18:00:00Z","t1s":0,"t2s":0,"t1":19,"t2":16},"2829":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":16},"2833":{"d":11,"dB":"2018-10-27T15:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":18},"2755":{"d":3,"dB":"2018-08-24T20:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":41},"2765":{"d":4,"dB":"2018-08-31T18:45:00Z","t1s":0,"t2s":1,"t1":18,"t2":19},"2886":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":0,"t2s":2,"t1":18,"t2":20},"2748":{"d":2,"dB":"2018-08-17T18:45:00Z","t1s":1,"t2s":0,"t1":68,"t2":18},"2824":{"d":10,"dB":"2018-10-19T18:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":67},"2739":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":68},"2779":{"d":5,"dB":"2018-09-14T17:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":20},"2847":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":42},"2858":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":67,"t2":19},"2792":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":1,"t1":42,"t2":20},"2840":{"d":11,"dB":"2018-10-28T14:00:00Z","t1s":0,"t2s":2,"t1":20,"t2":68},"2879":{"d":15,"dB":"2018-12-02T16:00:00Z","t1s":1,"t2s":4,"t1":20,"t2":41},"2871":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":1,"t1":41,"t2":67},"2791":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":3,"t2s":1,"t1":41,"t2":42},"2878":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":3,"t2s":0,"t1":67,"t2":42},"2819":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":68}},"Ne":{"2904":{"d":18,"dB":"2018-12-15T16:00:00Z","t1":7,"t2":2},"2907":{"d":18,"dB":"2018-12-16T20:00:00Z","t1":9,"t2":3},"2909":{"d":18,"dB":"2018-12-14T19:45:00Z","t1":19,"t2":4},"2903":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":5,"t2":10},"2908":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":8,"t2":15},"2910":{"d":18,"dB":"2018-12-16T14:00:00Z","t1":67,"t2":12},"2906":{"d":18,"dB":"2018-12-16T12:00:00Z","t1":18,"t2":13},"2905":{"d":18,"dB":"2018-12-16T16:00:00Z","t1":14,"t2":20},"2902":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":42,"t2":16},"2911":{"d":18,"dB":"2018-12-15T19:00:00Z","t1":68,"t2":41}},"k":"6484af"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20190123.json b/src/test/resources/__files/mpgstats.ligue-1.20190123.json deleted file mode 100644 index b972c2b..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20190123.json +++ /dev/null @@ -1,36193 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-01-22T07:49:46Z", - "mL": { - "i": 1, - "n": "Ligue 1", - "cN": "Ligue-1", - "u": "\/league\/Ligue-1", - "aS": { - "cN": "Ligue-1-2018-2019", - "i": 6, - "n": "Ligue 1 2018-2019", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 21, - "lD": 21 - } - }, - "lS": { - "cN": "Ligue-1-2017-2018", - "i": 3, - "n": "Ligue 1 2017-2018", - "mD": 38 - } - }, - "mxD": 21, - "np": 690, - "le": { - "1": "Ligue-1", - "2": "Premier-League" - }, - "p": [ - { - "i": 1, - "n": "Cavani", - "f": "Edinson", - "p": "A", - "r": 41, - "s": { - "g": "14", - "s": "82", - "n": "13", - "a": "6.31", - "d": "1.35", - "Sg": "4", - "Ss": "20", - "Sn": "3", - "Sa": "6.83", - "Sd": "1.84", - "Og": "22", - "Os": "149", - "On": "25", - "Oa": "5.96", - "Od": "1.5", - "Ap": "24", - "p": { - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7.5, - "g": 2 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "13": { - "n": 8.5, - "g": 3 - }, - "14": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 9, - "g": 3 - } - } - }, - "c": 2 - }, - { - "i": 4, - "n": "Thiago Silva", - "f": "", - "p": "D", - "r": 24, - "s": { - "s": "90", - "n": "15", - "a": "6", - "d": "0.41", - "Ss": "18", - "Sn": "3", - "Sa": "6.17", - "Sd": "0.24", - "Og": "1", - "Os": "159", - "On": "27", - "Oa": "5.89", - "Od": "0.75", - "Dp": "26", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "12": { - "n": 7 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 7, - "n": "Di Mar\u00eda", - "f": "\u00c1ngel", - "p": "M", - "r": 28, - "s": { - "g": "3", - "s": "102", - "n": "18", - "a": "5.69", - "d": "1.04", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.71", - "Og": "9", - "Os": "191", - "On": "33", - "Oa": "5.8", - "Od": "1.11", - "Mp": "10", - "Ap": "22", - "p": { - "37": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 7 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 7 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 2 - }, - { - "i": 12, - "n": "Draxler", - "f": "Julian", - "p": "M", - "r": 20, - "s": { - "g": "3", - "s": "99", - "n": "17", - "a": "5.85", - "d": "1.11", - "Ss": "20", - "Sn": "3", - "Sa": "6.67", - "Sd": "1.25", - "Og": "5", - "Os": "172", - "On": "30", - "Oa": "5.75", - "Od": "1.07", - "Mp": "21", - "Ap": "4", - "p": { - "37": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 7.5, - "g": 1 - }, - "11": { - "n": 6.5, - "g": 1 - }, - "12": { - "n": 7 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 8 - }, - "21": { - "n": 7, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 17, - "n": "Verratti", - "f": "Marco", - "p": "M", - "r": 18, - "s": { - "s": "78", - "n": "14", - "a": "5.57", - "d": "0.96", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.24", - "Os": "116", - "On": "20", - "Oa": "5.8", - "Od": "1.07", - "Mp": "19", - "p": { - "5": { - "n": 7 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 7 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 28, - "n": "Mbapp\u00e9", - "f": "Kylian", - "p": "A", - "r": 46, - "s": { - "g": "17", - "s": "97", - "n": "14", - "a": "6.96", - "d": "0.99", - "Sg": "5", - "Ss": "22", - "Sn": "3", - "Sa": "7.33", - "Sd": "1.25", - "Og": "21", - "Os": "154", - "On": "25", - "Oa": "6.18", - "Od": "1.59", - "Mp": "3", - "Ap": "21", - "p": { - "37": { - "n": 4 - }, - "2": { - "n": 7.5, - "g": 2, - "s": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 9, - "g": 4 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 9, - "g": 3 - } - } - }, - "c": 2 - }, - { - "i": 44, - "n": "Marquinhos", - "f": "", - "p": "D", - "r": 26, - "s": { - "g": "2", - "s": "97", - "n": "16", - "a": "6.09", - "d": "0.85", - "Sg": "1", - "Ss": "19", - "Sn": "3", - "Sa": "6.5", - "Sd": "0.41", - "Og": "2", - "Os": "156", - "On": "27", - "Oa": "5.8", - "Od": "0.85", - "Mp": "6", - "Dp": "20", - "p": { - "37": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 8 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 46, - "n": "Meunier", - "f": "Thomas", - "p": "D", - "r": 24, - "s": { - "g": "3", - "s": "85", - "n": "14", - "a": "6.07", - "d": "0.75", - "Sg": "1", - "Ss": "18", - "Sn": "3", - "Sa": "6", - "Sd": "0.41", - "Og": "4", - "Os": "158", - "On": "27", - "Oa": "5.85", - "Od": "0.87", - "Mp": "5", - "Dp": "16", - "p": { - "37": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "7": { - "n": 7, - "g": 1, - "s": 1 - }, - "9": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "14": { - "n": 6 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 49, - "n": "Kurzawa", - "f": "Layvin", - "p": "D", - "r": 8, - "s": { - "s": "10", - "n": "2", - "a": "5", - "d": "0.5", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "0.5", - "Og": "1", - "Os": "61", - "On": "12", - "Oa": "5.08", - "Od": "0.98", - "Dp": "11", - "p": { - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 100, - "n": "Areola", - "f": "Alphonse", - "p": "G", - "r": 18, - "s": { - "s": "58", - "n": "10", - "a": "5.8", - "d": "0.4", - "Os": "144", - "On": "25", - "Oa": "5.76", - "Od": "1.03", - "Gp": "25", - "p": { - "3": { - "n": 6.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "20": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 121, - "n": "Rabiot", - "f": "Adrien", - "p": "M", - "r": 10, - "s": { - "g": "2", - "ao": "1", - "s": "87", - "n": "14", - "a": "6.21", - "d": "1.01", - "Og": "2", - "Oao": "1", - "Os": "167", - "On": "28", - "Oa": "5.96", - "Od": "1.02", - "Mp": "24", - "Ap": "1", - "p": { - "37": { - "n": 5, - "s": 1 - }, - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5, - "a": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7 - }, - "10": { - "n": 7.5, - "g": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7 - }, - "14": { - "n": 7 - }, - "16": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 152, - "n": "Trapp", - "f": "Kevin", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Gp": "2", - "p": { - "37": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 180, - "n": "Kimpembe", - "f": "Presnel", - "p": "D", - "r": 14, - "s": { - "s": "56", - "n": "10", - "a": "5.65", - "d": "0.98", - "Os": "127", - "On": "23", - "Oa": "5.54", - "Od": "0.95", - "Dp": "23", - "p": { - "37": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "19": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 458, - "n": "Nkunku", - "f": "Christopher", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "70", - "n": "13", - "a": "5.38", - "d": "0.74", - "Og": "5", - "Os": "134", - "On": "25", - "Oa": "5.36", - "Od": "0.93", - "Mp": "14", - "Dp": "1", - "Ap": "5", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 7 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 494, - "n": "Georgen", - "f": "Alec", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 1155, - "n": "Neymar", - "f": "", - "p": "A", - "r": 45, - "s": { - "g": "13", - "s": "88", - "n": "13", - "a": "6.77", - "d": "1.12", - "Sg": "2", - "Ss": "8", - "Sn": "1", - "Sa": "8.5", - "Og": "17", - "Os": "125", - "On": "18", - "Oa": "6.94", - "Od": "1.08", - "Mp": "4", - "Ap": "14", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 7.5, - "g": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7.5, - "g": 2 - }, - "9": { - "n": 8, - "g": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "15": { - "n": 6, - "g": 1 - }, - "21": { - "n": 8.5, - "g": 2 - } - } - }, - "c": 2 - }, - { - "i": 1157, - "n": "Dani Alves", - "f": "", - "p": "D", - "r": 15, - "s": { - "s": "35", - "n": "6", - "a": "5.83", - "d": "1.11", - "Ss": "19", - "Sn": "3", - "Sa": "6.5", - "Sd": "1.22", - "Og": "1", - "Os": "99", - "On": "17", - "Oa": "5.82", - "Od": "1", - "Mp": "3", - "Dp": "13", - "p": { - "14": { - "n": 5.5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 8 - } - } - }, - "c": 2 - }, - { - "i": 1322, - "n": "Choupo-Moting", - "f": "Eric Maxim", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "43", - "n": "9", - "a": "4.78", - "d": "0.53", - "Og": "2", - "Os": "85", - "On": "17", - "Oa": "5", - "Od": "0.87", - "Mp": "7", - "Ap": "9", - "p": { - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 1325, - "n": "Jes\u00e9", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "16", - "On": "4", - "Oa": "4", - "Od": "0.71", - "Ap": "1" - }, - "c": 2 - }, - { - "i": 2079, - "n": "Bernede", - "f": "Antoine", - "p": "M", - "r": 6, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Mp": "2", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2142, - "n": "Adli", - "f": "Yacine", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 2 - }, - { - "i": 2151, - "n": "N'Soki", - "f": "Stanley", - "p": "M", - "r": 7, - "s": { - "s": "45", - "n": "9", - "a": "5.06", - "d": "0.55", - "Os": "45", - "On": "9", - "Oa": "5.06", - "Od": "0.55", - "Mp": "3", - "Dp": "6", - "p": { - "1": { - "n": 5.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2267, - "n": "Lass Diarra", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.62", - "Os": "69", - "On": "13", - "Oa": "5.35", - "Od": "0.72", - "Mp": "11", - "p": { - "37": { - "n": 5 - }, - "1": { - "n": 5 - }, - "5": { - "n": 4 - }, - "10": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2311, - "n": "Cibois", - "f": "Sebastien", - "p": "G", - "r": 4, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2327, - "n": "Rimane", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Dp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2328, - "n": "Weah", - "f": "Timothy", - "p": "A", - "r": 6, - "s": { - "g": "1", - "s": "10", - "n": "2", - "a": "5", - "d": "1", - "Og": "1", - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.94", - "Ap": "3", - "p": { - "1": { - "n": 6, - "g": 1, - "s": 1 - }, - "2": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2626, - "n": "Fressange", - "f": "Alexandre", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2627, - "n": "Dagba", - "f": "Colin", - "p": "D", - "r": 6, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.24", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.24", - "Dp": "3", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "7": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2652, - "n": "Postolachi", - "f": "Virgiliu", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2661, - "n": "Buffon", - "f": "Gianluigi", - "p": "G", - "r": 17, - "s": { - "s": "50", - "n": "9", - "a": "5.61", - "d": "0.66", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "50", - "On": "9", - "Oa": "5.61", - "Od": "0.66", - "Gp": "9", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "9": { - "n": 7 - }, - "12": { - "n": 5 - }, - "14": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2668, - "n": "Diaby", - "f": "Moussa", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "65", - "n": "12", - "a": "5.42", - "d": "1.04", - "Og": "2", - "Os": "65", - "On": "12", - "Oa": "5.42", - "Od": "1.04", - "Mp": "5", - "Ap": "7", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 7, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 8 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2670, - "n": "Mbe Soh", - "f": "Lo\u00efc", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2821, - "n": "Kehrer", - "f": "Thilo", - "p": "D", - "r": 12, - "s": { - "s": "74", - "n": "14", - "a": "5.32", - "d": "0.88", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "74", - "On": "14", - "Oa": "5.32", - "Od": "0.88", - "Dp": "14", - "p": { - "3": { - "n": 3.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 6, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 2864, - "n": "Bernat", - "f": "Juan", - "p": "D", - "r": 14, - "s": { - "s": "60", - "n": "11", - "a": "5.45", - "d": "0.72", - "Ss": "17", - "Sn": "3", - "Sa": "5.83", - "Sd": "0.85", - "Os": "60", - "On": "11", - "Oa": "5.45", - "Od": "0.72", - "Mp": "3", - "Dp": "8", - "p": { - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 36, - "n": "Plasil", - "f": "Jaroslav", - "p": "M", - "r": 11, - "s": { - "s": "67", - "n": "13", - "a": "5.15", - "d": "0.57", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "0.64", - "Mp": "22", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 38, - "n": "Costil", - "f": "Benoit", - "p": "G", - "r": 21, - "s": { - "s": "114", - "n": "20", - "a": "5.7", - "d": "1", - "Ss": "18", - "Sn": "3", - "Sa": "6", - "Os": "205", - "On": "37", - "Oa": "5.54", - "Od": "1.03", - "Gp": "37", - "p": { - "24": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 8 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 8 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 56, - "n": "Briand", - "f": "Jimmy", - "p": "A", - "r": 14, - "s": { - "g": "4", - "s": "86", - "n": "18", - "a": "4.78", - "d": "1.06", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.24", - "Og": "9", - "Os": "163", - "On": "34", - "Oa": "4.79", - "Od": "1.14", - "Mp": "4", - "Ap": "30", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4 - }, - "5": { - "n": 7, - "g": 2 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "17": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 63, - "n": "Prior", - "f": "Jerome", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 86, - "n": "Kamano", - "f": "Fran\u00e7ois", - "p": "A", - "r": 20, - "s": { - "g": "8", - "s": "102", - "n": "19", - "a": "5.37", - "d": "1.24", - "Ss": "13", - "Sn": "3", - "Sa": "4.5", - "Sd": "0.41", - "Og": "14", - "Os": "183", - "On": "35", - "Oa": "5.23", - "Od": "1.3", - "Mp": "7", - "Ap": "21", - "p": { - "24": { - "n": 4, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5, - "g": 1 - }, - "3": { - "n": 7.5, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 8, - "g": 2 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 103, - "n": "Sankhar\u00e9", - "f": "Younousse", - "p": "M", - "r": 15, - "s": { - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.64", - "Og": "3", - "Os": "134", - "On": "26", - "Oa": "5.17", - "Od": "0.72", - "Mp": "21", - "p": { - "24": { - "n": 6, - "g": 1 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 105, - "n": "Sabaly", - "f": "Youssouf", - "p": "D", - "r": 9, - "s": { - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.57", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "144", - "On": "27", - "Oa": "5.35", - "Od": "0.88", - "Dp": "27", - "p": { - "24": { - "n": 5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 116, - "n": "Karamoh", - "f": "Yann", - "p": "A", - "r": 11, - "s": { - "g": "3", - "s": "71", - "n": "14", - "a": "5.11", - "d": "0.91", - "Ss": "12", - "Sn": "3", - "Sa": "4.17", - "Sd": "0.24", - "Og": "3", - "Os": "71", - "On": "14", - "Oa": "5.11", - "Od": "0.91", - "Mp": "3", - "Ap": "11", - "p": { - "6": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 126, - "n": "Vada", - "f": "Valent\u00edn", - "p": "M", - "r": 5, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Og": "1", - "Os": "46", - "On": "9", - "Oa": "5.11", - "Od": "0.31", - "Mp": "4", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 189, - "n": "Jovanovic", - "f": "Vukasin", - "p": "D", - "r": 8, - "s": { - "s": "24", - "n": "4", - "a": "6", - "d": "1.06", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.75", - "Os": "24", - "On": "4", - "Oa": "6", - "Od": "1.06", - "Dp": "4", - "p": { - "9": { - "n": 7.5 - }, - "17": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 229, - "n": "Lewczuk", - "f": "Igor", - "p": "D", - "r": 9, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "0.73", - "Os": "32", - "On": "7", - "Oa": "4.57", - "Od": "0.68", - "Dp": "5", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "19": { - "n": 6, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 268, - "n": "de Preville", - "f": "Nicolas", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.84", - "Og": "4", - "Os": "112", - "On": "23", - "Oa": "4.89", - "Od": "1.01", - "Mp": "2", - "Ap": "16", - "p": { - "24": { - "n": 6 - }, - "2": { - "n": 3 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "16": { - "n": 6, - "s": 1 - }, - "17": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 305, - "n": "Gajic", - "f": "Milan", - "p": "D", - "r": 4, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 3 - }, - { - "i": 362, - "n": "Poundj\u00e9", - "f": "Maxime", - "p": "D", - "r": 12, - "s": { - "s": "80", - "n": "16", - "a": "5", - "d": "0.79", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Os": "161", - "On": "31", - "Oa": "5.19", - "Od": "0.86", - "Dp": "31", - "p": { - "24": { - "n": 6 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 378, - "n": "Pellenard", - "f": "Th\u00e9o", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Dp": "1" - }, - "c": 3 - }, - { - "i": 1168, - "n": "Jonathan Caf\u00fa", - "f": "", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4" - }, - "c": 3 - }, - { - "i": 1175, - "n": "Ot\u00e1vio", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "85", - "n": "15", - "a": "5.67", - "d": "0.65", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.24", - "Os": "115", - "On": "21", - "Oa": "5.48", - "Od": "0.7", - "Mp": "19", - "p": { - "6": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 1203, - "n": "Lerager", - "f": "Lukas", - "p": "M", - "r": 12, - "s": { - "s": "86", - "n": "17", - "a": "5.06", - "d": "0.66", - "Og": "2", - "Os": "177", - "On": "34", - "Oa": "5.21", - "Od": "0.77", - "Mp": "34", - "p": { - "24": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 1261, - "n": "Mandanda", - "f": "Over", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1271, - "n": "Poussin", - "f": "Gaetan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1549, - "n": "Youssouf", - "f": "Zaydou", - "p": "M", - "r": 5, - "s": { - "s": "19", - "n": "4", - "a": "4.75", - "d": "0.43", - "Os": "33", - "On": "7", - "Oa": "4.71", - "Od": "0.45", - "Mp": "3", - "Ap": "2", - "p": { - "1": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 2080, - "n": "Carrique", - "f": "Thomas", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2149, - "n": "Kound\u00e9", - "f": "Jules", - "p": "D", - "r": 14, - "s": { - "s": "102", - "n": "20", - "a": "5.1", - "d": "0.78", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.62", - "Og": "2", - "Os": "188", - "On": "36", - "Oa": "5.22", - "Od": "0.79", - "Dp": "35", - "p": { - "24": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2152, - "n": "Pablo", - "f": "", - "p": "D", - "r": 17, - "s": { - "g": "1", - "s": "78", - "n": "14", - "a": "5.61", - "d": "1.02", - "Og": "1", - "Os": "164", - "On": "29", - "Oa": "5.67", - "Od": "0.98", - "Dp": "29", - "p": { - "24": { - "n": 5 - }, - "1": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 8, - "g": 1 - }, - "19": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 2238, - "n": "Tchouameni", - "f": "Aurelien", - "p": "M", - "r": 9, - "s": { - "s": "30", - "n": "6", - "a": "5", - "d": "0.58", - "Os": "30", - "On": "6", - "Oa": "5", - "Od": "0.58", - "Mp": "6", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "13": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 2434, - "n": "Palencia", - "f": "Sergi", - "p": "D", - "r": 10, - "s": { - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.78", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "75", - "On": "15", - "Oa": "5.03", - "Od": "0.78", - "Dp": "15", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 2629, - "n": "Nilor", - "f": "Michael", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2630, - "n": "Diarra", - "f": "Ibrahim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2695, - "n": "Benrahou", - "f": "Yassin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2788, - "n": "Kalu", - "f": "Samuel", - "p": "A", - "r": 16, - "s": { - "g": "3", - "s": "84", - "n": "16", - "a": "5.28", - "d": "0.73", - "Sg": "1", - "Ss": "17", - "Sn": "3", - "Sa": "5.83", - "Sd": "1.03", - "Og": "3", - "Os": "84", - "On": "16", - "Oa": "5.28", - "Od": "0.73", - "Mp": "6", - "Ap": "10", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2792, - "n": "Basic", - "f": "Toma", - "p": "M", - "r": 6, - "s": { - "s": "30", - "n": "6", - "a": "5", - "d": "0.41", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "30", - "On": "6", - "Oa": "5", - "Od": "0.41", - "Mp": "6", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 2863, - "n": "Cornelius", - "f": "Andreas", - "p": "A", - "r": 13, - "s": { - "g": "3", - "s": "74", - "n": "15", - "a": "4.93", - "d": "0.83", - "Sg": "1", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.85", - "Og": "3", - "Os": "74", - "On": "15", - "Oa": "4.93", - "Od": "0.83", - "Ap": "15", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 13, - "n": "Hamouma", - "f": "Romain", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "67", - "n": "13", - "a": "5.15", - "d": "0.66", - "Sg": "1", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Og": "6", - "Os": "157", - "On": "30", - "Oa": "5.23", - "Od": "0.92", - "Mp": "19", - "Ap": "5", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "12": { - "n": 7, - "g": 1, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1 - } - } - }, - "c": 4 - }, - { - "i": 47, - "n": "Ruffier", - "f": "St\u00e9phane", - "p": "G", - "r": 23, - "s": { - "s": "119", - "n": "21", - "a": "5.67", - "d": "1.13", - "Ss": "119", - "Sn": "21", - "Sa": "5.67", - "Sd": "1.13", - "Os": "213", - "On": "38", - "Oa": "5.61", - "Od": "1.04", - "Gp": "38", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7.5 - }, - "9": { - "n": 3 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 7 - } - } - }, - "c": 4 - }, - { - "i": 51, - "n": "Cabella", - "f": "R\u00e9my", - "p": "M", - "r": 30, - "s": { - "g": "3", - "s": "101", - "n": "18", - "a": "5.61", - "d": "1.07", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "1.03", - "Og": "9", - "Os": "186", - "On": "33", - "Oa": "5.64", - "Od": "1.23", - "Mp": "27", - "Ap": "6", - "p": { - "31": { - "n": 8, - "g": 2 - }, - "2": { - "n": 7 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 64, - "n": "Perrin", - "f": "Loic", - "p": "D", - "r": 17, - "s": { - "s": "90", - "n": "17", - "a": "5.32", - "d": "1.06", - "Ss": "29", - "Sn": "5", - "Sa": "5.8", - "Sd": "0.98", - "Os": "167", - "On": "31", - "Oa": "5.4", - "Od": "1", - "Dp": "31", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 69, - "n": "Salibur", - "f": "Yannis", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "85", - "n": "17", - "a": "5.03", - "d": "0.85", - "Og": "1", - "Os": "118", - "On": "24", - "Oa": "4.94", - "Od": "0.96", - "Mp": "12", - "Ap": "10", - "p": { - "2": { - "n": 4.5, - "e": 2745, - "c": 14, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 7, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 98, - "n": "Monnet-Paquet", - "f": "K\u00e9vin", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "88", - "n": "19", - "a": "4.63", - "d": "0.82", - "Sg": "1", - "Ss": "51", - "Sn": "11", - "Sa": "4.64", - "Sd": "0.96", - "Og": "2", - "Os": "161", - "On": "35", - "Oa": "4.6", - "Od": "0.81", - "Mp": "25", - "Ap": "7", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 3 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 4 - }, - { - "i": 137, - "n": "Selnaes", - "f": "Ole", - "p": "M", - "r": 19, - "s": { - "s": "114", - "n": "20", - "a": "5.7", - "d": "0.89", - "Ss": "63", - "Sn": "11", - "Sa": "5.77", - "Sd": "0.84", - "Os": "200", - "On": "35", - "Oa": "5.71", - "Od": "0.84", - "Mp": "33", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 7, - "s": 1 - }, - "8": { - "n": 7.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 4 - }, - { - "i": 138, - "n": "Diony", - "f": "Lois", - "p": "A", - "r": 16, - "s": { - "g": "5", - "s": "106", - "n": "21", - "a": "5.07", - "d": "1.06", - "Sg": "5", - "Ss": "106", - "Sn": "21", - "Sa": "5.07", - "Sd": "1.06", - "Og": "5", - "Os": "106", - "On": "21", - "Oa": "5.07", - "Od": "1.06", - "Mp": "5", - "Ap": "16", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 155, - "n": "Beric", - "f": "Robert", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "41", - "n": "9", - "a": "4.56", - "d": "0.83", - "Og": "8", - "Os": "107", - "On": "22", - "Oa": "4.86", - "Od": "1.06", - "Ap": "20", - "p": { - "3": { - "n": 4, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6, - "g": 1, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 195, - "n": "Moulin", - "f": "Jessy", - "p": "G", - "r": 9, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 209, - "n": "Tannane", - "f": "Oussama", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.94" - }, - "c": 4 - }, - { - "i": 317, - "n": "M'Bengue", - "f": "Cheikh", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 400, - "n": "Polomat", - "f": "Pierre-Yves", - "p": "D", - "r": 9, - "s": { - "s": "30", - "n": "6", - "a": "5", - "Ss": "30", - "Sn": "6", - "Sa": "5", - "Os": "30", - "On": "6", - "Oa": "5", - "Mp": "2", - "Dp": "4", - "p": { - "16": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 411, - "n": "Nordin", - "f": "Arnaud", - "p": "M", - "r": 8, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "0.43", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "0.43", - "Mp": "11", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 522, - "n": "Rocha Santos", - "f": "Kenny", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 887, - "n": "Khazri", - "f": "Wahbi", - "p": "M", - "r": 41, - "s": { - "g": "12", - "s": "112", - "n": "19", - "a": "5.89", - "d": "1.34", - "Sg": "2", - "Ss": "18", - "Sn": "3", - "Sa": "6", - "Sd": "0.82", - "Og": "15", - "Os": "179", - "On": "31", - "Oa": "5.77", - "Od": "1.24", - "Mp": "8", - "Ap": "23", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6, - "g": 1 - }, - "8": { - "n": 8, - "g": 2 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 8, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 8, - "g": 2 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1031, - "n": "Debuchy", - "f": "Mathieu", - "p": "D", - "r": 9, - "s": { - "g": "2", - "s": "62", - "n": "11", - "a": "5.64", - "d": "0.88", - "Og": "6", - "Oao": "1", - "Os": "146", - "On": "26", - "Oa": "5.62", - "Od": "1.04", - "Dp": "26", - "p": { - "31": { - "n": 8, - "g": 1 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1170, - "n": "Diouss\u00e9", - "f": "Assane", - "p": "M", - "r": 8, - "s": { - "s": "35", - "n": "7", - "a": "5.07", - "d": "0.42", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "94", - "On": "19", - "Oa": "4.97", - "Od": "0.47", - "Mp": "12", - "Dp": "1", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 1192, - "n": "Gabriel Silva", - "f": "", - "p": "D", - "r": 12, - "s": { - "s": "73", - "n": "14", - "a": "5.25", - "d": "0.73", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Os": "150", - "On": "29", - "Oa": "5.19", - "Od": "0.81", - "Mp": "5", - "Dp": "24", - "p": { - "31": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 4 - }, - { - "i": 2046, - "n": "Panos", - "f": "Mickael", - "p": "D", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "8": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2143, - "n": "Camara", - "f": "Mahdi", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2233, - "n": "M'Vila", - "f": "Yann", - "p": "M", - "r": 20, - "s": { - "s": "113", - "n": "21", - "a": "5.38", - "d": "0.89", - "Ss": "113", - "Sn": "21", - "Sa": "5.38", - "Sd": "0.89", - "Os": "193", - "On": "35", - "Oa": "5.51", - "Od": "0.8", - "Mp": "35", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 7 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 7 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2266, - "n": "Subotic", - "f": "Neven", - "p": "D", - "r": 8, - "s": { - "s": "86", - "n": "17", - "a": "5.06", - "d": "0.91", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "2", - "Os": "168", - "On": "32", - "Oa": "5.25", - "Od": "1.02", - "Dp": "32", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 2271, - "n": "Chambost", - "f": "Dylan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2616, - "n": "Kolodziejczak", - "f": "Timoth\u00e9e", - "p": "D", - "r": 18, - "s": { - "g": "2", - "s": "110", - "n": "21", - "a": "5.24", - "d": "0.89", - "Sg": "2", - "Ss": "110", - "Sn": "21", - "Sa": "5.24", - "Sd": "0.89", - "Og": "2", - "Os": "110", - "On": "21", - "Oa": "5.24", - "Od": "0.89", - "Dp": "21", - "p": { - "1": { - "n": 6.5 - }, - "2": { - "n": 6, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2765, - "n": "Gueye", - "f": "Makhtar", - "p": "A", - "r": 2, - "s": { - "g": "1", - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Og": "1", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Ap": "2", - "p": { - "2": { - "n": 6, - "g": 1, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2766, - "n": "Saliba", - "f": "William", - "p": "D", - "r": 9, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "1.12", - "Os": "34", - "On": "7", - "Oa": "4.86", - "Od": "1.12", - "Dp": "7", - "p": { - "7": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 3.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2891, - "n": "Vermot", - "f": "Th\u00e9o", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2893, - "n": "Bajic", - "f": "Stefan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2963, - "n": "Honorat", - "f": "Franck", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2990, - "n": "Tshibuabua", - "f": "Marvin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2991, - "n": "Abi", - "f": "Charles Nathan", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2992, - "n": "Benkhedim", - "f": "Bilal", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 52, - "n": "Crivelli", - "f": "Enzo", - "p": "A", - "r": 11, - "s": { - "g": "4", - "s": "79", - "n": "17", - "a": "4.65", - "d": "0.89", - "Sg": "1", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.83", - "Og": "6", - "Os": "127", - "On": "28", - "Oa": "4.54", - "Od": "0.85", - "Ap": "26", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 78, - "n": "Oniangu\u00e9", - "f": "Prince", - "p": "M", - "r": 12, - "s": { - "g": "2", - "s": "94", - "n": "18", - "a": "5.22", - "d": "0.79", - "Og": "3", - "Os": "153", - "On": "31", - "Oa": "4.94", - "Od": "0.98", - "Mp": "31", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 139, - "n": "Baysse", - "f": "Paul", - "p": "D", - "r": 9, - "s": { - "s": "90", - "n": "19", - "a": "4.76", - "d": "0.7", - "Ss": "36", - "Sn": "8", - "Sa": "4.5", - "Sd": "0.5", - "Os": "119", - "On": "25", - "Oa": "4.78", - "Od": "0.63", - "Dp": "23", - "p": { - "1": { - "n": 4, - "e": 2733, - "c": 3, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 141, - "n": "Casimir Ninga", - "f": "", - "p": "A", - "r": 14, - "s": { - "g": "3", - "s": "78", - "n": "17", - "a": "4.62", - "d": "1.05", - "Sg": "2", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.85", - "Og": "3", - "Os": "136", - "On": "31", - "Oa": "4.4", - "Od": "0.88", - "Mp": "10", - "Ap": "11", - "p": { - "31": { - "n": 4, - "e": 1065, - "c": 15, - "s": 1 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 3.5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 5.5, - "g": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 172, - "n": "Bammou", - "f": "Yacine", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "67", - "n": "14", - "a": "4.82", - "d": "0.52", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Og": "4", - "Os": "107", - "On": "23", - "Oa": "4.67", - "Od": "0.8", - "Mp": "9", - "Ap": "9", - "p": { - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 315, - "n": "Dabo", - "f": "Mouhamadou", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 318, - "n": "Genevois", - "f": "Romain", - "p": "D", - "r": 3, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.54", - "Os": "80", - "On": "17", - "Oa": "4.74", - "Od": "0.6", - "Dp": "16", - "p": { - "31": { - "n": 4 - }, - "1": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 332, - "n": "Djiku", - "f": "Alexander", - "p": "D", - "r": 10, - "s": { - "s": "87", - "n": "17", - "a": "5.15", - "d": "1.01", - "Ss": "7", - "Sn": "2", - "Sa": "3.75", - "Sd": "0.75", - "Os": "158", - "On": "32", - "Oa": "4.95", - "Od": "0.96", - "Dp": "32", - "p": { - "31": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "18": { - "n": 6 - }, - "20": { - "n": 3 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 344, - "n": "Guilbert", - "f": "Frederic", - "p": "D", - "r": 11, - "s": { - "s": "94", - "n": "19", - "a": "4.97", - "d": "0.99", - "Ss": "33", - "Sn": "7", - "Sa": "4.79", - "Sd": "1.03", - "Og": "1", - "Os": "167", - "On": "35", - "Oa": "4.79", - "Od": "1.07", - "Mp": "7", - "Dp": "27", - "Ap": "1", - "p": { - "31": { - "n": 4 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3 - } - } - }, - "c": 5 - }, - { - "i": 345, - "n": "Samba", - "f": "Brice", - "p": "G", - "r": 19, - "s": { - "s": "116", - "n": "21", - "a": "5.55", - "d": "0.89", - "Ss": "116", - "Sn": "21", - "Sa": "5.55", - "Sd": "0.89", - "Os": "127", - "On": "23", - "Oa": "5.54", - "Od": "0.86", - "Gp": "23", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 7 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 363, - "n": "Louis", - "f": "Jeff", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 366, - "n": "Imorou", - "f": "Emmanuel", - "p": "D", - "r": 6, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "0.42", - "Dp": "7", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "11": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 382, - "n": "Sankoh", - "f": "Baissama", - "p": "M", - "r": 8, - "s": { - "s": "45", - "n": "9", - "a": "5.06", - "d": "0.44", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "120", - "On": "24", - "Oa": "5.02", - "Od": "0.49", - "Mp": "17", - "p": { - "31": { - "n": 5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 6, - "s": 1 - }, - "19": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 413, - "n": "Diomande", - "f": "Ismael", - "p": "M", - "r": 10, - "s": { - "s": "41", - "n": "8", - "a": "5.13", - "d": "0.74", - "Ss": "36", - "Sn": "7", - "Sa": "5.14", - "Sd": "0.79", - "Os": "79", - "On": "16", - "Oa": "4.94", - "Od": "1.07", - "Mp": "8", - "Dp": "6", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 421, - "n": "Reulet", - "f": "Paul", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 462, - "n": "Alhadhur", - "f": "Chaker", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 480, - "n": "Khaoui", - "f": "Saif-Eddine", - "p": "M", - "r": 15, - "s": { - "g": "3", - "s": "62", - "n": "13", - "a": "4.81", - "d": "0.72", - "Og": "3", - "Os": "118", - "On": "25", - "Oa": "4.74", - "Od": "0.74", - "Mp": "19", - "p": { - "5": { - "n": 4.5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1, - "s": 1 - }, - "18": { - "n": 6, - "g": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 1195, - "n": "Peeters", - "f": "Stef", - "p": "M", - "r": 8, - "s": { - "s": "33", - "n": "7", - "a": "4.79", - "d": "0.52", - "Os": "88", - "On": "19", - "Oa": "4.66", - "Od": "0.95", - "Mp": "17", - "p": { - "31": { - "n": 3 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 1222, - "n": "Kouakou", - "f": "Christian", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Mp": "1" - }, - "c": 5 - }, - { - "i": 1223, - "n": "Mbengue", - "f": "Adama", - "p": "D", - "r": 9, - "s": { - "s": "43", - "n": "9", - "a": "4.78", - "d": "0.71", - "Os": "51", - "On": "11", - "Oa": "4.64", - "Od": "0.83", - "Mp": "1", - "Dp": "10", - "p": { - "1": { - "n": 3.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5.5 - }, - "16": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 1451, - "n": "Zelazny", - "f": "Erwin", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "90", - "On": "17", - "Oa": "5.29", - "Od": "0.89", - "Gp": "17" - }, - "c": 5 - }, - { - "i": 1537, - "n": "Repas", - "f": "Jan", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.5", - "Od": "0.5", - "Mp": "1", - "Ap": "1" - }, - "c": 5 - }, - { - "i": 1621, - "n": "Beauvue", - "f": "Claudio", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "76", - "n": "16", - "a": "4.78", - "d": "1.06", - "Og": "3", - "Os": "117", - "On": "27", - "Oa": "4.35", - "Od": "1.01", - "Mp": "9", - "Ap": "12", - "p": { - "4": { - "n": 6, - "g": 1, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 1706, - "n": "Fajr", - "f": "Faycal", - "p": "M", - "r": 20, - "s": { - "g": "3", - "s": "109", - "n": "20", - "a": "5.48", - "d": "0.84", - "Sg": "2", - "Ss": "58", - "Sn": "11", - "Sa": "5.32", - "Sd": "0.83", - "Og": "3", - "Os": "185", - "On": "35", - "Oa": "5.3", - "Od": "0.87", - "Mp": "34", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 2045, - "n": "Deminguet", - "f": "Jessy", - "p": "M", - "r": 8, - "s": { - "s": "40", - "n": "9", - "a": "4.5", - "d": "1", - "Og": "1", - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.93", - "Mp": "11", - "Ap": "2", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "19": { - "n": 2.5 - } - } - }, - "c": 5 - }, - { - "i": 2078, - "n": "Armougom", - "f": "Yoel", - "p": "D", - "r": 9, - "s": { - "s": "73", - "n": "15", - "a": "4.87", - "d": "0.81", - "Ss": "23", - "Sn": "5", - "Sa": "4.6", - "Sd": "0.8", - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "0.81", - "Mp": "1", - "Dp": "15", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 6.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3 - }, - "21": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 2156, - "n": "Stavitski", - "f": "Timo", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "40", - "On": "9", - "Oa": "4.44", - "Od": "0.5", - "Mp": "2", - "Ap": "1", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2631, - "n": "Marega", - "f": "Issa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2632, - "n": "Callens", - "f": "Thomas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2682, - "n": "Tchokounte", - "f": "Malik", - "p": "A", - "r": 9, - "s": { - "s": "83", - "n": "19", - "a": "4.37", - "d": "0.51", - "Ss": "47", - "Sn": "11", - "Sa": "4.32", - "Sd": "0.44", - "Os": "83", - "On": "19", - "Oa": "4.37", - "Od": "0.51", - "Mp": "2", - "Ap": "17", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 3.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 2689, - "n": "Ndom", - "f": "Aly", - "p": "M", - "r": 9, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.58", - "Os": "52", - "On": "11", - "Oa": "4.73", - "Od": "0.58", - "Mp": "11", - "p": { - "1": { - "n": 5, - "e": 2739, - "c": 68, - "s": 1 - }, - "5": { - "n": 5, - "e": 2778, - "c": 68, - "s": 1 - }, - "7": { - "n": 3, - "e": 2800, - "c": 68 - }, - "9": { - "n": 5, - "e": 2819, - "c": 68, - "s": 1 - }, - "10": { - "n": 5, - "e": 2829, - "c": 68 - }, - "11": { - "n": 4.5, - "e": 2840, - "c": 68, - "s": 1 - }, - "14": { - "n": 5, - "e": 2870, - "c": 68, - "s": 1 - }, - "15": { - "n": 5, - "e": 2876, - "c": 68, - "s": 1 - }, - "16": { - "n": 5, - "e": 2890, - "c": 68, - "s": 1 - }, - "17": { - "n": 4.5, - "e": 2894, - "c": 68 - }, - "18": { - "n": 5, - "e": 2911, - "c": 68, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2710, - "n": "Gradit", - "f": "Jonathan", - "p": "D", - "r": 7, - "s": { - "s": "32", - "n": "7", - "a": "4.64", - "d": "0.87", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "32", - "On": "7", - "Oa": "4.64", - "Od": "0.87", - "Mp": "1", - "Dp": "6", - "p": { - "10": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3 - }, - "17": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2935, - "n": "Zahary", - "f": "Younn", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2940, - "n": "Joseph", - "f": "Evens", - "p": "M", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.22", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.22", - "Mp": "4", - "p": { - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 45, - "n": "Gourcuff", - "f": "Yoann", - "p": "M", - "r": 7, - "s": { - "s": "39", - "n": "8", - "a": "4.88", - "d": "0.33", - "Og": "1", - "Os": "70", - "On": "14", - "Oa": "5", - "Od": "0.53", - "Mp": "10", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 104, - "n": "J\u00falio Tavares", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "3", - "s": "81", - "n": "18", - "a": "4.53", - "d": "1.14", - "Ss": "12", - "Sn": "3", - "Sa": "4.17", - "Sd": "0.85", - "Og": "10", - "Os": "152", - "On": "32", - "Oa": "4.77", - "Od": "1.23", - "Ap": "31", - "p": { - "26": { - "n": 4 - }, - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 8, - "g": 2 - }, - "3": { - "n": 5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 3 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 112, - "n": "Abeid", - "f": "Mehdi", - "p": "M", - "r": 13, - "s": { - "g": "3", - "s": "88", - "n": "17", - "a": "5.21", - "d": "0.73", - "Ss": "13", - "Sn": "3", - "Sa": "4.5", - "Sd": "0.41", - "Og": "3", - "Os": "124", - "On": "25", - "Oa": "4.98", - "Od": "0.79", - "Mp": "24", - "Dp": "1", - "p": { - "26": { - "n": 3 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 165, - "n": "Said", - "f": "Wesley", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "79", - "n": "17", - "a": "4.65", - "d": "0.7", - "Sg": "1", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.94", - "Og": "6", - "Os": "137", - "On": "28", - "Oa": "4.89", - "Od": "1.06", - "Mp": "4", - "Ap": "21", - "p": { - "26": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 167, - "n": "Mari\u00e9", - "f": "Jordan", - "p": "M", - "r": 8, - "s": { - "s": "46", - "n": "10", - "a": "4.6", - "d": "0.58", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.47", - "Os": "96", - "On": "20", - "Oa": "4.8", - "Od": "0.71", - "Mp": "17", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 187, - "n": "Sammaritano", - "f": "Frederic", - "p": "M", - "r": 8, - "s": { - "s": "40", - "n": "8", - "a": "5", - "d": "0.87", - "Os": "81", - "On": "17", - "Oa": "4.76", - "Od": "0.73", - "Mp": "11", - "Ap": "3", - "p": { - "2": { - "n": 6.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 252, - "n": "Chafik", - "f": "Fouad", - "p": "D", - "r": 7, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "0.49", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Os": "67", - "On": "14", - "Oa": "4.79", - "Od": "0.56", - "Mp": "6", - "Dp": "6", - "p": { - "6": { - "n": 5 - }, - "13": { - "n": 4 - }, - "17": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 278, - "n": "Amalfitano", - "f": "Romain", - "p": "M", - "r": 9, - "s": { - "s": "74", - "n": "17", - "a": "4.38", - "d": "0.68", - "Ss": "12", - "Sn": "3", - "Sa": "4", - "Sd": "0.71", - "Os": "148", - "On": "32", - "Oa": "4.64", - "Od": "0.85", - "Mp": "30", - "Ap": "2", - "p": { - "26": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 312, - "n": "Sliti", - "f": "Naim", - "p": "M", - "r": 12, - "s": { - "s": "98", - "n": "20", - "a": "4.93", - "d": "0.93", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.62", - "Og": "4", - "Os": "190", - "On": "37", - "Oa": "5.15", - "Od": "0.95", - "Mp": "22", - "Ap": "12", - "p": { - "26": { - "n": 4 - }, - "1": { - "n": 7 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 321, - "n": "Balmont", - "f": "Florent", - "p": "M", - "r": 9, - "s": { - "s": "32", - "n": "7", - "a": "4.57", - "d": "0.9", - "Og": "1", - "Os": "76", - "On": "15", - "Oa": "5.07", - "Od": "1.18", - "Mp": "13", - "p": { - "26": { - "n": 3 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4 - }, - "17": { - "n": 6 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 322, - "n": "Jeannot", - "f": "Benjamin", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.77", - "Og": "1", - "Os": "94", - "On": "21", - "Oa": "4.48", - "Od": "0.75", - "Mp": "5", - "Ap": "8", - "p": { - "26": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 3.5 - }, - "19": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 330, - "n": "Lautoa", - "f": "Wesley", - "p": "D", - "r": 10, - "s": { - "s": "82", - "n": "18", - "a": "4.56", - "d": "0.96", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Os": "126", - "On": "27", - "Oa": "4.67", - "Od": "0.98", - "Mp": "6", - "Dp": "19", - "p": { - "26": { - "n": 4, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 7 - }, - { - "i": 380, - "n": "Haddadi", - "f": "Oussama", - "p": "D", - "r": 11, - "s": { - "g": "2", - "s": "88", - "n": "18", - "a": "4.92", - "d": "1.25", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.24", - "Og": "3", - "Os": "162", - "On": "34", - "Oa": "4.78", - "Od": "1.31", - "Mp": "4", - "Dp": "28", - "p": { - "26": { - "n": 3 - }, - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 3 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7.5, - "g": 1 - }, - "17": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 437, - "n": "Bouka Moutou", - "f": "Arnold", - "p": "D", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "d": "0.5", - "Ss": "9", - "Sn": "2", - "Sa": "4.5", - "Sd": "0.5", - "Os": "24", - "On": "5", - "Oa": "4.8", - "Od": "0.4", - "Dp": "3", - "p": { - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 530, - "n": "Allain", - "f": "Bobby", - "p": "G", - "r": 12, - "s": { - "s": "30", - "n": "5", - "a": "6.1", - "d": "0.86", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "0.85", - "Os": "30", - "On": "5", - "Oa": "6.1", - "Od": "0.86", - "Gp": "5", - "p": { - "16": { - "n": 7 - }, - "17": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 7 - }, - { - "i": 533, - "n": "Rosier", - "f": "Valentin", - "p": "D", - "r": 9, - "s": { - "s": "78", - "n": "17", - "a": "4.59", - "d": "1.3", - "Oao": "2", - "Os": "156", - "On": "34", - "Oa": "4.59", - "Od": "1.34", - "Mp": "8", - "Dp": "25", - "p": { - "26": { - "n": 3 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 7.5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 3 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 545, - "n": "Kwon Chang-Hoon", - "f": "", - "p": "M", - "r": 8, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.62", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.62", - "Og": "6", - "Os": "90", - "On": "18", - "Oa": "5", - "Od": "1.17", - "Mp": "6", - "Ap": "7", - "p": { - "26": { - "n": 4 - }, - "19": { - "n": 3.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 1217, - "n": "Yamb\u00e9r\u00e9", - "f": "C\u00e9dric", - "p": "D", - "r": 10, - "s": { - "s": "74", - "n": "16", - "a": "4.66", - "d": "0.96", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.24", - "Og": "1", - "Os": "142", - "On": "31", - "Oa": "4.6", - "Od": "1.09", - "Dp": "30", - "p": { - "26": { - "n": 3 - }, - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 3.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 2605, - "n": "Alphonse", - "f": "Micka\u00ebl", - "p": "D", - "r": 7, - "s": { - "g": "1", - "s": "22", - "n": "5", - "a": "4.5", - "d": "1.1", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "22", - "On": "5", - "Oa": "4.5", - "Od": "1.1", - "Dp": "5", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 3 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2633, - "n": "Ntumba", - "f": "Levi", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2639, - "n": "Coulibaly", - "f": "Senou", - "p": "D", - "r": 6, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5", - "d": "0.77", - "Og": "1", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "0.77", - "Dp": "5", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 2640, - "n": "Barbet", - "f": "Theo", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2641, - "n": "Sahibeddine", - "f": "Adrian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2643, - "n": "Loiodice", - "f": "Enzo", - "p": "M", - "r": 8, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "1.05", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "1.05", - "Mp": "11", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2687, - "n": "Jules Keita", - "f": "", - "p": "A", - "r": 8, - "s": { - "g": "2", - "s": "54", - "n": "12", - "a": "4.5", - "d": "1.1", - "Og": "2", - "Os": "54", - "On": "12", - "Oa": "4.5", - "Od": "1.1", - "Mp": "1", - "Ap": "11", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 8, - "g": 2, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2692, - "n": "Aguerd", - "f": "Nayef", - "p": "D", - "r": 8, - "s": { - "g": "2", - "s": "23", - "n": "4", - "a": "5.88", - "d": "0.65", - "Og": "2", - "Os": "23", - "On": "4", - "Oa": "5.88", - "Od": "0.65", - "Dp": "4", - "p": { - "3": { - "n": 6.5, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 7 - }, - { - "i": 2725, - "n": "R\u00fanarsson", - "f": "R\u00fanar Alex", - "p": "G", - "r": 9, - "s": { - "s": "73", - "n": "15", - "a": "4.87", - "d": "1.09", - "Os": "73", - "On": "15", - "Oa": "4.87", - "Od": "1.09", - "Gp": "15", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "8": { - "n": 2.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 2867, - "n": "Ciman", - "f": "Laurent", - "p": "D", - "r": 10, - "s": { - "s": "38", - "n": "9", - "a": "4.22", - "d": "0.92", - "Os": "38", - "On": "9", - "Oa": "4.22", - "Od": "0.92", - "Dp": "9", - "p": { - "5": { - "n": 3 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 4, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 2941, - "n": "Doumbouya", - "f": "Sory", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2989, - "n": "Godard", - "f": "Theo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 23, - "n": "Majeed Waris", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "93", - "n": "20", - "a": "4.68", - "d": "0.71", - "Sg": "1", - "Ss": "24", - "Sn": "5", - "Sa": "4.9", - "Sd": "0.86", - "Og": "2", - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.71", - "Mp": "4", - "Ap": "16", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6, - "g": 1, - "s": 1 - }, - "15": { - "n": 3.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 73, - "n": "Pallois", - "f": "Nicolas", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "48", - "n": "10", - "a": "4.85", - "d": "1.14", - "Sg": "1", - "Ss": "48", - "Sn": "10", - "Sa": "4.85", - "Sd": "1.14", - "Og": "1", - "Oao": "1", - "Os": "118", - "On": "24", - "Oa": "4.94", - "Od": "1.06", - "Dp": "24", - "p": { - "31": { - "n": 3 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 140, - "n": "Boschilia", - "f": "Gabriel", - "p": "M", - "r": 15, - "s": { - "g": "4", - "s": "100", - "n": "19", - "a": "5.29", - "d": "1.15", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.24", - "Og": "4", - "Os": "110", - "On": "21", - "Oa": "5.26", - "Od": "1.1", - "Mp": "6", - "Ap": "14", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 8, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4, - "s": 1 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4, - "s": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 220, - "n": "Diego Carlos", - "f": "", - "p": "D", - "r": 15, - "s": { - "s": "95", - "n": "19", - "a": "5.03", - "d": "0.98", - "Ss": "68", - "Sn": "13", - "Sa": "5.27", - "Sd": "0.89", - "Os": "152", - "On": "30", - "Oa": "5.08", - "Od": "0.93", - "Dp": "29", - "p": { - "31": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 242, - "n": "Rongier", - "f": "Valentin", - "p": "M", - "r": 15, - "s": { - "g": "1", - "s": "98", - "n": "19", - "a": "5.18", - "d": "0.88", - "Ss": "32", - "Sn": "6", - "Sa": "5.33", - "Sd": "0.75", - "Og": "2", - "Os": "184", - "On": "36", - "Oa": "5.13", - "Od": "0.88", - "Mp": "35", - "p": { - "31": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 246, - "n": "Dup\u00e9", - "f": "Maxime", - "p": "G", - "r": 9, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "1", - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "1", - "Gp": "2", - "p": { - "15": { - "n": 3, - "s": 1 - }, - "16": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 308, - "n": "Kacaniklic", - "f": "Alexander", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "30", - "On": "6", - "Oa": "5", - "Od": "0.58", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 313, - "n": "Lucas Lima", - "f": "", - "p": "D", - "r": 14, - "s": { - "s": "101", - "n": "21", - "a": "4.81", - "d": "1.06", - "Ss": "101", - "Sn": "21", - "Sa": "4.81", - "Sd": "1.06", - "Og": "1", - "Os": "178", - "On": "36", - "Oa": "4.94", - "Od": "1.06", - "Mp": "5", - "Dp": "28", - "Ap": "2", - "p": { - "31": { - "n": 3 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 7 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 404, - "n": "Djidji", - "f": "Koffi", - "p": "D", - "r": 12, - "s": { - "s": "3", - "n": "1", - "a": "3", - "Os": "65", - "On": "13", - "Oa": "5", - "Od": "0.88", - "Dp": "13", - "p": { - "1": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 427, - "n": "Moimb\u00e9", - "f": "Wilfried", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 431, - "n": "Alexis Alegue", - "f": "", - "p": "M", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 445, - "n": "Kwateng", - "f": "Enock", - "p": "D", - "r": 12, - "s": { - "s": "87", - "n": "18", - "a": "4.86", - "d": "1.04", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "87", - "On": "18", - "Oa": "4.86", - "Od": "1.04", - "Mp": "2", - "Dp": "16", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 465, - "n": "Sigthorsson", - "f": "Kolbeinn", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4" - }, - "c": 8 - }, - { - "i": 476, - "n": "Tour\u00e9", - "f": "Abdoulaye", - "p": "M", - "r": 15, - "s": { - "g": "2", - "s": "93", - "n": "17", - "a": "5.5", - "d": "1.15", - "Sg": "2", - "Ss": "81", - "Sn": "14", - "Sa": "5.79", - "Sd": "1.05", - "Og": "2", - "Os": "170", - "On": "32", - "Oa": "5.33", - "Od": "0.96", - "Mp": "27", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7.5, - "g": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 499, - "n": "Olliero", - "f": "Alexandre", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 506, - "n": "Walongwa", - "f": "Anthony", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 582, - "n": "Braat", - "f": "Quentin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 941, - "n": "Fabio", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "43", - "n": "9", - "a": "4.83", - "d": "0.41", - "Os": "43", - "On": "9", - "Oa": "4.83", - "Od": "0.41", - "Mp": "1", - "Dp": "8", - "p": { - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 1163, - "n": "Tatarusanu", - "f": "Ciprian", - "p": "G", - "r": 17, - "s": { - "s": "111", - "n": "20", - "a": "5.55", - "d": "0.82", - "Ss": "26", - "Sn": "5", - "Sa": "5.2", - "Sd": "0.51", - "Os": "199", - "On": "37", - "Oa": "5.38", - "Od": "0.72", - "Gp": "37", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 1171, - "n": "Kalifa Coulibaly", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "68", - "n": "16", - "a": "4.25", - "d": "0.68", - "Og": "2", - "Os": "87", - "On": "20", - "Oa": "4.35", - "Od": "0.87", - "Ap": "18", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 2.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 1174, - "n": "Andrei Girotto", - "f": "", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "55", - "n": "10", - "a": "5.5", - "d": "1.16", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.54", - "Og": "1", - "Os": "108", - "On": "20", - "Oa": "5.4", - "Od": "0.99", - "Mp": "19", - "p": { - "10": { - "n": 7 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 1177, - "n": "El Ghanassy", - "f": "Yassine", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "43", - "On": "9", - "Oa": "4.78", - "Od": "0.42", - "Mp": "2", - "p": { - "31": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 1228, - "n": "Kayembe", - "f": "Joris", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 1255, - "n": "Moutoussamy", - "f": "Samuel", - "p": "M", - "r": 9, - "s": { - "s": "69", - "n": "15", - "a": "4.63", - "d": "0.59", - "Os": "94", - "On": "20", - "Oa": "4.73", - "Od": "0.62", - "Mp": "18", - "Ap": "1", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 4 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5, - "s": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 1444, - "n": "Charles Traor\u00e9", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "76", - "On": "16", - "Oa": "4.75", - "Od": "1.2", - "Dp": "15", - "p": { - "21": { - "n": 6 - } - } - }, - "c": 8 - }, - { - "i": 1539, - "n": "Krhin", - "f": "Rene", - "p": "M", - "r": 8, - "s": { - "s": "57", - "n": "11", - "a": "5.23", - "d": "0.49", - "Os": "113", - "On": "22", - "Oa": "5.16", - "Od": "0.59", - "Mp": "22", - "p": { - "31": { - "n": 4 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - } - } - }, - "c": 8 - }, - { - "i": 1552, - "n": "Kolo Muani", - "f": "Randal", - "p": "M", - "r": 1, - "s": { - "s": "7", - "n": "2", - "a": "3.5", - "d": "0.5", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "7", - "On": "2", - "Oa": "3.5", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "15": { - "n": 4, - "s": 1 - }, - "21": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 2086, - "n": "Ngom", - "f": "Santy", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "31", - "On": "7", - "Oa": "4.43", - "Od": "0.73", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 2669, - "n": "Dabo", - "f": "Abdoulaye", - "p": "M", - "r": 5, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - }, - "3": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 2686, - "n": "Mendy", - "f": "Batista", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2696, - "n": "Basila", - "f": "Thomas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2707, - "n": "Menig", - "f": "Queensy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2719, - "n": "Lucas Evangelista", - "f": "", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "53", - "n": "11", - "a": "4.86", - "d": "1", - "Og": "1", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "1", - "Mp": "8", - "Ap": "3", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 3.5 - } - } - }, - "c": 8 - }, - { - "i": 2782, - "n": "Ruiz", - "f": "Percy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2795, - "n": "Miazga", - "f": "Matt", - "p": "D", - "r": 8, - "s": { - "s": "36", - "n": "8", - "a": "4.5", - "d": "1", - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1", - "Dp": "8", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 2.5 - } - } - }, - "c": 8 - }, - { - "i": 2834, - "n": "Limbombe", - "f": "Anthony", - "p": "M", - "r": 11, - "s": { - "s": "81", - "n": "16", - "a": "5.09", - "d": "0.47", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "81", - "On": "16", - "Oa": "5.09", - "Od": "0.47", - "Mp": "12", - "Ap": "4", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2865, - "n": "Kara Mbodji", - "f": "Serigne Modou", - "p": "D", - "r": 8, - "s": { - "s": "32", - "n": "6", - "a": "5.33", - "d": "0.37", - "Os": "32", - "On": "6", - "Oa": "5.33", - "Od": "0.37", - "Dp": "6", - "p": { - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 2938, - "n": "Louza", - "f": "Imran", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2947, - "n": "Youan", - "f": "Thody Elie", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2993, - "n": "Bamba", - "f": "Kader", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 6, - "n": "Payet", - "f": "Dimitri", - "p": "M", - "r": 19, - "s": { - "g": "4", - "s": "102", - "n": "19", - "a": "5.37", - "d": "1.18", - "Ss": "13", - "Sn": "3", - "Sa": "4.5", - "Sd": "0.82", - "Og": "7", - "Os": "195", - "On": "34", - "Oa": "5.74", - "Od": "1.34", - "Mp": "26", - "Ap": "6", - "p": { - "34": { - "n": 7 - }, - "1": { - "n": 8, - "g": 2 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 8, - "g": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 10, - "n": "Germain", - "f": "Val\u00e8re", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "90", - "n": "19", - "a": "4.76", - "d": "1", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Og": "8", - "Os": "172", - "On": "35", - "Oa": "4.93", - "Od": "1.17", - "Mp": "1", - "Ap": "32", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 3 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 22, - "n": "Thauvin", - "f": "Florian", - "p": "M", - "r": 37, - "s": { - "g": "11", - "s": "104", - "n": "19", - "a": "5.47", - "d": "1.46", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.62", - "Og": "24", - "Os": "192", - "On": "33", - "Oa": "5.82", - "Od": "1.46", - "Mp": "26", - "Ap": "7", - "p": { - "34": { - "n": 8, - "g": 2 - }, - "1": { - "n": 6, - "g": 1, - "s": 1 - }, - "2": { - "n": 5.5, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7, - "g": 1, - "s": 1 - }, - "5": { - "n": 7.5, - "g": 2 - }, - "6": { - "n": 5.5, - "g": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 8, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 8.5, - "g": 3 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 41, - "n": "Sanson", - "f": "Morgan", - "p": "M", - "r": 22, - "s": { - "g": "4", - "s": "98", - "n": "18", - "a": "5.44", - "d": "1.14", - "Sg": "1", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.41", - "Og": "7", - "Os": "177", - "On": "33", - "Oa": "5.36", - "Od": "1.08", - "Mp": "29", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "1": { - "n": 8 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 6, - "g": 1 - }, - "10": { - "n": 6.5, - "g": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 74, - "n": "N'Jie", - "f": "Clinton", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "33", - "n": "7", - "a": "4.71", - "d": "0.59", - "Og": "2", - "Os": "81", - "On": "18", - "Oa": "4.5", - "Od": "0.8", - "Mp": "2", - "Ap": "8", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "17": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 99, - "n": "Lopez", - "f": "Maxime", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "74", - "n": "14", - "a": "5.32", - "d": "0.75", - "Sg": "1", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "1.18", - "Og": "1", - "Os": "137", - "On": "26", - "Oa": "5.29", - "Od": "0.74", - "Mp": "22", - "p": { - "34": { - "n": 6 - }, - "1": { - "n": 6 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 9 - }, - { - "i": 102, - "n": "Pel\u00e9", - "f": "Yohann", - "p": "G", - "r": 11, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.99", - "Os": "73", - "On": "15", - "Oa": "4.9", - "Od": "0.9", - "Gp": "12", - "p": { - "34": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 210, - "n": "Sakai", - "f": "Hiroki", - "p": "D", - "r": 12, - "s": { - "s": "60", - "n": "12", - "a": "5", - "d": "1.08", - "Os": "129", - "On": "26", - "Oa": "4.96", - "Od": "0.94", - "Dp": "25", - "p": { - "34": { - "n": 5 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 216, - "n": "Sarr", - "f": "Bouna", - "p": "M", - "r": 16, - "s": { - "g": "1", - "s": "92", - "n": "18", - "a": "5.14", - "d": "1.1", - "Sg": "1", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "0.62", - "Og": "1", - "Os": "173", - "On": "33", - "Oa": "5.26", - "Od": "0.99", - "Mp": "4", - "Dp": "26", - "p": { - "34": { - "n": 7 - }, - "1": { - "n": 5.5, - "s": 1 - }, - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 221, - "n": "Rolando", - "f": "", - "p": "D", - "r": 10, - "s": { - "s": "35", - "n": "7", - "a": "5.07", - "d": "0.73", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.24", - "Og": "1", - "Oao": "1", - "Os": "105", - "On": "21", - "Oa": "5.02", - "Od": "0.75", - "Dp": "20", - "p": { - "34": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 253, - "n": "Sertic", - "f": "Gr\u00e9gory", - "p": "M", - "r": 8, - "s": { - "s": "13", - "n": "3", - "a": "4.5", - "d": "0.41", - "Os": "30", - "On": "6", - "Oa": "5.08", - "Od": "0.73", - "Mp": "3", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 314, - "n": "Bedimo", - "f": "Henri", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4" - }, - "c": 9 - }, - { - "i": 325, - "n": "Hubocan", - "f": "Tomas", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 516, - "n": "Cagnon", - "f": "Romain", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 578, - "n": "Escales", - "f": "Florian", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 800, - "n": "Mandanda", - "f": "Steve", - "p": "G", - "r": 16, - "s": { - "s": "80", - "n": "15", - "a": "5.33", - "d": "0.83", - "Ss": "17", - "Sn": "3", - "Sa": "5.83", - "Sd": "0.62", - "Os": "133", - "On": "26", - "Oa": "5.12", - "Od": "0.82", - "Gp": "26", - "p": { - "2": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 9 - }, - { - "i": 1158, - "n": "Luiz Gustavo", - "f": "", - "p": "M", - "r": 15, - "s": { - "s": "83", - "n": "17", - "a": "4.91", - "d": "0.88", - "Os": "172", - "On": "33", - "Oa": "5.23", - "Od": "0.96", - "Mp": "20", - "Dp": "13", - "p": { - "34": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 3 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 1162, - "n": "Rami", - "f": "Adil", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "66", - "n": "13", - "a": "5.08", - "d": "1.19", - "Og": "2", - "Oao": "1", - "Os": "130", - "On": "26", - "Oa": "5", - "Od": "1.03", - "Dp": "26", - "p": { - "34": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 8, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3.5 - }, - "19": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 1181, - "n": "Amavi", - "f": "Jordan", - "p": "D", - "r": 11, - "s": { - "s": "72", - "n": "15", - "a": "4.8", - "d": "1.09", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.62", - "Os": "136", - "On": "27", - "Oa": "5.04", - "Od": "1.1", - "Dp": "24", - "p": { - "34": { - "n": 6, - "s": 1 - }, - "1": { - "n": 7 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 1197, - "n": "Ocampos", - "f": "Lucas", - "p": "M", - "r": 15, - "s": { - "g": "2", - "s": "95", - "n": "19", - "a": "5.03", - "d": "0.99", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Og": "5", - "Os": "170", - "On": "33", - "Oa": "5.17", - "Od": "1.11", - "Mp": "26", - "Ap": "4", - "p": { - "34": { - "n": 8, - "g": 1 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 1250, - "n": "Kamara", - "f": "Boubacar", - "p": "D", - "r": 8, - "s": { - "s": "74", - "n": "15", - "a": "4.97", - "d": "0.76", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "101", - "On": "20", - "Oa": "5.08", - "Od": "0.86", - "Mp": "1", - "Dp": "19", - "p": { - "1": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 1522, - "n": "Mitroglou", - "f": "Kostas", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "60", - "n": "13", - "a": "4.65", - "d": "0.84", - "Og": "10", - "Os": "114", - "On": "23", - "Oa": "4.98", - "Od": "1.12", - "Ap": "15", - "p": { - "34": { - "n": 8, - "g": 2 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 3.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 1525, - "n": "Abdennour", - "f": "Aymen", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 9 - }, - { - "i": 1553, - "n": "Sari", - "f": "Yusuf", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2155, - "n": "Rocchia", - "f": "Christopher", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2634, - "n": "Perrin", - "f": "Lucas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2635, - "n": "Marasovic", - "f": "Sacha", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2712, - "n": "Caleta-Car", - "f": "Duje", - "p": "D", - "r": 6, - "s": { - "s": "22", - "n": "5", - "a": "4.4", - "d": "0.97", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "0.97", - "Dp": "5", - "p": { - "2": { - "n": 3.5 - }, - "6": { - "n": 3 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 2779, - "n": "Chabrolle", - "f": "Florian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2835, - "n": "Strootman", - "f": "Kevin", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "77", - "n": "15", - "a": "5.13", - "d": "0.9", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Og": "1", - "Os": "77", - "On": "15", - "Oa": "5.13", - "Od": "0.9", - "Mp": "15", - "p": { - "4": { - "n": 5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 2860, - "n": "Radonjic", - "f": "Nemanja", - "p": "M", - "r": 8, - "s": { - "s": "30", - "n": "7", - "a": "4.36", - "d": "0.35", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "30", - "On": "7", - "Oa": "4.36", - "Od": "0.35", - "Mp": "1", - "Ap": "6", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 2939, - "n": "Philiponeau", - "f": "Alexandre", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2953, - "n": "Ali Mohamed", - "f": "Abdallah", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 55, - "n": "Toivonen", - "f": "Ola", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "32", - "On": "8", - "Oa": "4", - "p": { - "34": { - "n": 4, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 59, - "n": "Jullien", - "f": "Christopher", - "p": "D", - "r": 10, - "s": { - "s": "94", - "n": "19", - "a": "4.95", - "d": "1.22", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.94", - "Og": "1", - "Os": "144", - "On": "29", - "Oa": "4.97", - "Od": "1.09", - "Dp": "29", - "p": { - "34": { - "n": 6 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 2 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 81, - "n": "Cahuzac", - "f": "Yannick", - "p": "M", - "r": 10, - "s": { - "s": "61", - "n": "12", - "a": "5.13", - "d": "0.51", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "125", - "On": "24", - "Oa": "5.23", - "Od": "0.65", - "Mp": "22", - "Dp": "1", - "Ap": "1", - "p": { - "34": { - "n": 6 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 122, - "n": "Reynet", - "f": "Baptiste", - "p": "G", - "r": 15, - "s": { - "ao": "1", - "s": "106", - "n": "20", - "a": "5.3", - "d": "1.36", - "Ss": "29", - "Sn": "5", - "Sa": "5.8", - "Sd": "1.5", - "Oao": "1", - "Os": "201", - "On": "37", - "Oa": "5.43", - "Od": "1.19", - "Gp": "37", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4, - "a": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 144, - "n": "Sylla", - "f": "Issiaga", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "45", - "n": "9", - "a": "5.06", - "d": "0.96", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.43", - "Og": "2", - "Os": "109", - "On": "22", - "Oa": "4.98", - "Od": "0.98", - "Mp": "5", - "Dp": "13", - "Ap": "1", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "16": { - "n": 7, - "g": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 182, - "n": "Yago", - "f": "Steeve", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Oao": "1", - "Os": "46", - "On": "10", - "Oa": "4.6", - "Od": "0.92", - "Dp": "8" - }, - "c": 10 - }, - { - "i": 191, - "n": "Moubandje", - "f": "Fran\u00e7ois", - "p": "D", - "r": 10, - "s": { - "s": "90", - "n": "19", - "a": "4.74", - "d": "0.85", - "Os": "133", - "On": "28", - "Oa": "4.75", - "Od": "0.91", - "Mp": "1", - "Dp": "26", - "p": { - "34": { - "n": 7 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 2.5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 234, - "n": "Bodiger", - "f": "Yann", - "p": "M", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "8", - "On": "2", - "Oa": "4.25", - "Od": "0.25", - "Mp": "1", - "p": { - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 251, - "n": "Durmaz", - "f": "Jimmy", - "p": "M", - "r": 11, - "s": { - "g": "3", - "s": "91", - "n": "19", - "a": "4.82", - "d": "0.95", - "Og": "3", - "Os": "132", - "On": "27", - "Oa": "4.91", - "Od": "0.83", - "Mp": "19", - "Ap": "3", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 7, - "g": 2 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3 - }, - "20": { - "n": 4, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 260, - "n": "Mubele", - "f": "Firmin Ndombe", - "p": "A", - "r": 10, - "s": { - "s": "43", - "n": "10", - "a": "4.35", - "d": "0.59", - "Og": "1", - "Os": "99", - "On": "23", - "Oa": "4.33", - "Od": "0.73", - "Ap": "15", - "p": { - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3 - } - } - }, - "c": 10 - }, - { - "i": 261, - "n": "Som\u00e1lia", - "f": "", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "43", - "On": "9", - "Oa": "4.78", - "Od": "0.42", - "Mp": "6", - "Ap": "1", - "p": { - "34": { - "n": 5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 302, - "n": "Jean", - "f": "Corentin", - "p": "A", - "r": 8, - "s": { - "s": "57", - "n": "13", - "a": "4.42", - "d": "0.73", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "117", - "On": "26", - "Oa": "4.52", - "Od": "0.97", - "Mp": "5", - "Ap": "14", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 6 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 328, - "n": "Goicoechea", - "f": "Mauro", - "p": "G", - "r": 9, - "s": { - "s": "14", - "n": "2", - "a": "7", - "d": "1", - "Os": "14", - "On": "2", - "Oa": "7", - "Od": "1", - "Gp": "2", - "p": { - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 355, - "n": "Moreira", - "f": "Steven", - "p": "D", - "r": 8, - "s": { - "s": "28", - "n": "7", - "a": "4", - "d": "0.89", - "Os": "28", - "On": "7", - "Oa": "4", - "Od": "0.89", - "Mp": "2", - "Dp": "5", - "p": { - "9": { - "n": 4.5 - }, - "10": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 3 - }, - "20": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 359, - "n": "Leya Iseka", - "f": "Aaron", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "70", - "n": "16", - "a": "4.38", - "d": "1.17", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.25", - "Og": "3", - "Os": "70", - "On": "16", - "Oa": "4.38", - "Od": "1.17", - "Ap": "16", - "p": { - "1": { - "n": 2.5 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 2.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6, - "g": 1, - "s": 1 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 394, - "n": "Amian", - "f": "Kelvin", - "p": "D", - "r": 9, - "s": { - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.24", - "Ss": "54", - "Sn": "11", - "Sa": "4.91", - "Sd": "1.31", - "Og": "1", - "Os": "171", - "On": "35", - "Oa": "4.89", - "Od": "1.06", - "Mp": "1", - "Dp": "33", - "p": { - "34": { - "n": 5 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 6 - }, - "11": { - "n": 3 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 481, - "n": "Michelin", - "f": "Clement", - "p": "D", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Dp": "2", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 517, - "n": "Vidal", - "f": "Marc", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 556, - "n": "Sangar\u00e9", - "f": "Ibrahim", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "69", - "n": "12", - "a": "5.75", - "d": "0.69", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Og": "2", - "Os": "142", - "On": "26", - "Oa": "5.46", - "Od": "0.88", - "Mp": "26", - "p": { - "34": { - "n": 7 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 1024, - "n": "Sanogo", - "f": "Yaya", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "33", - "n": "7", - "a": "4.79", - "d": "0.99", - "Sg": "2", - "Ss": "12", - "Sn": "2", - "Sa": "6", - "Sd": "1", - "Og": "8", - "Os": "109", - "On": "22", - "Oa": "4.98", - "Od": "1.48", - "Ap": "22", - "p": { - "34": { - "n": 7, - "g": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "g": 1 - }, - "21": { - "n": 7, - "g": 1 - } - } - }, - "c": 10 - }, - { - "i": 1025, - "n": "Gradel", - "f": "Max-Alain", - "p": "A", - "r": 25, - "s": { - "g": "8", - "s": "113", - "n": "20", - "a": "5.68", - "d": "1.27", - "Sg": "3", - "Ss": "24", - "Sn": "4", - "Sa": "6", - "Sd": "0.61", - "Og": "11", - "Os": "187", - "On": "35", - "Oa": "5.36", - "Od": "1.43", - "Mp": "22", - "Ap": "13", - "p": { - "34": { - "n": 8, - "g": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 7.5, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7.5, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 5.5, - "g": 1 - }, - "19": { - "n": 7, - "g": 2 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 1208, - "n": "Steven Fortes", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "15", - "n": "3", - "a": "5.17", - "d": "0.24", - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "0.49", - "Dp": "4", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 1273, - "n": "Boisgard", - "f": "Quentin", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 1528, - "n": "Dossevi", - "f": "Mathieu", - "p": "M", - "r": 12, - "s": { - "g": "2", - "s": "106", - "n": "21", - "a": "5.05", - "d": "0.96", - "Sg": "2", - "Ss": "106", - "Sn": "21", - "Sa": "5.05", - "Sd": "0.96", - "Og": "2", - "Os": "179", - "On": "35", - "Oa": "5.11", - "Od": "1.12", - "Mp": "30", - "Ap": "5", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 10 - }, - { - "i": 2041, - "n": "Khalid", - "f": "Driss", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2621, - "n": "Bostock", - "f": "John", - "p": "M", - "r": 9, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.78", - "Os": "52", - "On": "11", - "Oa": "4.73", - "Od": "0.78", - "Mp": "11", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "20": { - "n": 3.5 - } - } - }, - "c": 10 - }, - { - "i": 2739, - "n": "Manu Garc\u00eda", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "85", - "n": "18", - "a": "4.75", - "d": "0.98", - "Os": "85", - "On": "18", - "Oa": "4.75", - "Od": "0.98", - "Mp": "18", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - } - } - }, - "c": 10 - }, - { - "i": 2767, - "n": "Todibo", - "f": "Jean-Clair", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "49", - "n": "10", - "a": "4.9", - "d": "1.37", - "Og": "1", - "Os": "49", - "On": "10", - "Oa": "4.9", - "Od": "1.37", - "Dp": "10", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 6, - "g": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 2.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 2780, - "n": "El Mokkedem", - "f": "Hakim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2781, - "n": "Goncalves", - "f": "Mathieu", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2783, - "n": "Osei Yaw", - "f": "Derick", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2786, - "n": "Taoui", - "f": "Adil", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2824, - "n": "Mbia", - "f": "St\u00e9phane", - "p": "M", - "r": 9, - "s": { - "s": "23", - "n": "5", - "a": "4.7", - "d": "1.08", - "Os": "23", - "On": "5", - "Oa": "4.7", - "Od": "1.08", - "Mp": "2", - "Dp": "3", - "p": { - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 2936, - "n": "Carvalho", - "f": "Matis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2942, - "n": "N'Goumou Minpol", - "f": "Nathan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2950, - "n": "Sidibe", - "f": "Kalidou", - "p": "M", - "r": 4, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.41", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.41", - "Mp": "4", - "p": { - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 10 - }, - { - "i": 2960, - "n": "Diakite", - "f": "Bafode", - "p": "D", - "r": 1, - "s": { - "s": "19", - "n": "4", - "a": "4.75", - "d": "0.75", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "19", - "On": "4", - "Oa": "4.75", - "Od": "0.75", - "Mp": "2", - "Dp": "2", - "p": { - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 2962, - "n": "Bessile", - "f": "Loic", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2996, - "n": "Shoji", - "f": "Gen", - "p": "D", - "r": 7, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "21": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 181, - "n": "Soumaoro", - "f": "Adama", - "p": "D", - "r": 13, - "s": { - "s": "81", - "n": "14", - "a": "5.79", - "d": "0.65", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Os": "113", - "On": "21", - "Oa": "5.38", - "Od": "0.89", - "Dp": "21", - "p": { - "34": { - "n": 3 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 192, - "n": "Benzia", - "f": "Yassine", - "p": "A", - "r": 13, - "s": { - "s": "13", - "n": "2", - "a": "6.5", - "d": "0.5", - "Og": "1", - "Os": "84", - "On": "15", - "Oa": "5.6", - "Od": "0.71", - "Mp": "14", - "p": { - "34": { - "n": 5, - "g": 1 - }, - "1": { - "n": 7 - }, - "2": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 193, - "n": "El Ghazi", - "f": "Anwar", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "40", - "On": "9", - "Oa": "4.44", - "Od": "1.07", - "Mp": "2", - "Ap": "1" - }, - "c": 12 - }, - { - "i": 211, - "n": "Pepe", - "f": "Nicolas", - "p": "A", - "r": 42, - "s": { - "g": "13", - "s": "126", - "n": "21", - "a": "6", - "d": "1.53", - "Sg": "13", - "Ss": "126", - "Sn": "21", - "Sa": "6", - "Sd": "1.53", - "Og": "21", - "Os": "213", - "On": "38", - "Oa": "5.61", - "Od": "1.62", - "Mp": "30", - "Ap": "5", - "p": { - "34": { - "n": 4, - "s": 1 - }, - "1": { - "n": 8, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 8 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 8.5, - "g": 3 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 5.5, - "g": 1 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 8, - "g": 1 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 12 - }, - { - "i": 316, - "n": "Maignan", - "f": "Mike", - "p": "G", - "r": 24, - "s": { - "s": "121", - "n": "21", - "a": "5.76", - "d": "0.81", - "Ss": "121", - "Sn": "21", - "Sa": "5.76", - "Sd": "0.81", - "Os": "185", - "On": "35", - "Oa": "5.29", - "Od": "1.06", - "Gp": "35", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 7 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 7 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 425, - "n": "Xeka", - "f": "", - "p": "M", - "r": 10, - "s": { - "g": "2", - "s": "94", - "n": "18", - "a": "5.22", - "d": "0.93", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "2", - "Os": "113", - "On": "22", - "Oa": "5.14", - "Od": "0.88", - "Mp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 6 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 430, - "n": "Bahlouli", - "f": "Fares", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.47" - }, - "c": 12 - }, - { - "i": 455, - "n": "Jonathan Ikone", - "f": "", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "101", - "n": "21", - "a": "4.81", - "d": "0.61", - "Sg": "1", - "Ss": "101", - "Sn": "21", - "Sa": "4.81", - "Sd": "0.61", - "Og": "1", - "Os": "151", - "On": "32", - "Oa": "4.72", - "Od": "0.64", - "Mp": "22", - "Ap": "7", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 482, - "n": "Bamba", - "f": "Jonathan", - "p": "M", - "r": 23, - "s": { - "g": "8", - "s": "112", - "n": "21", - "a": "5.36", - "d": "1.46", - "Sg": "8", - "Ss": "112", - "Sn": "21", - "Sa": "5.36", - "Sd": "1.46", - "Og": "10", - "Os": "202", - "On": "38", - "Oa": "5.33", - "Od": "1.36", - "Mp": "29", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 8, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 7, - "g": 2 - }, - "9": { - "n": 8.5, - "g": 2 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 496, - "n": "Mendyl", - "f": "Hamza", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1.12", - "Mp": "1", - "Dp": "6", - "p": { - "34": { - "n": 2 - } - } - }, - "c": 12 - }, - { - "i": 527, - "n": "Kone", - "f": "Youssouf", - "p": "D", - "r": 3, - "s": { - "s": "21", - "n": "4", - "a": "5.38", - "d": "0.41", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "0.25", - "Os": "21", - "On": "4", - "Oa": "5.38", - "Od": "0.41", - "Dp": "4", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 819, - "n": "Jos\u00e9 Fonte", - "f": "", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "101", - "n": "19", - "a": "5.34", - "d": "0.96", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "0.25", - "Og": "1", - "Os": "101", - "On": "19", - "Oa": "5.34", - "Od": "0.96", - "Dp": "19", - "p": { - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 954, - "n": "Remy", - "f": "Lo\u00efc", - "p": "A", - "r": 10, - "s": { - "g": "1", - "s": "55", - "n": "12", - "a": "4.63", - "d": "0.96", - "Og": "4", - "Os": "105", - "On": "23", - "Oa": "4.59", - "Od": "1.02", - "Mp": "2", - "Ap": "16", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 2.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1020, - "n": "Pied", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.74", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.75", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.74", - "Dp": "4", - "p": { - "11": { - "n": 5, - "s": 1 - }, - "18": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 1167, - "n": "Thiago Maia", - "f": "", - "p": "M", - "r": 16, - "s": { - "s": "72", - "n": "14", - "a": "5.18", - "d": "0.88", - "Ss": "23", - "Sn": "4", - "Sa": "5.75", - "Sd": "1.03", - "Os": "150", - "On": "29", - "Oa": "5.19", - "Od": "0.77", - "Mp": "27", - "p": { - "34": { - "n": 4 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 1184, - "n": "Jakubech", - "f": "Adam", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1191, - "n": "Thiago Mendes", - "f": "", - "p": "M", - "r": 26, - "s": { - "s": "116", - "n": "19", - "a": "6.13", - "d": "0.89", - "Ss": "44", - "Sn": "7", - "Sa": "6.36", - "Sd": "1.19", - "Os": "194", - "On": "35", - "Oa": "5.56", - "Od": "1.15", - "Mp": "31", - "p": { - "34": { - "n": 4 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 7 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 7.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 8 - }, - "21": { - "n": 5 - } - } - }, - "c": 12 - }, - { - "i": 1202, - "n": "Boukholda", - "f": "Chahreddine", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1215, - "n": "Luiz Araujo", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "61", - "n": "13", - "a": "4.73", - "d": "0.58", - "Sg": "1", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.85", - "Og": "6", - "Os": "138", - "On": "28", - "Oa": "4.95", - "Od": "0.91", - "Mp": "12", - "Ap": "11", - "p": { - "34": { - "n": 4 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6, - "g": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6, - "g": 1, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1226, - "n": "Dabila", - "f": "Kouadio", - "p": "D", - "r": 10, - "s": { - "s": "62", - "n": "12", - "a": "5.21", - "d": "0.69", - "Os": "116", - "On": "24", - "Oa": "4.85", - "Od": "0.76", - "Dp": "22", - "p": { - "1": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 1234, - "n": "Edgar I\u00e9", - "f": "", - "p": "D", - "r": 8, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Og": "1", - "Os": "101", - "On": "22", - "Oa": "4.61", - "Od": "0.85", - "Dp": "22", - "p": { - "34": { - "n": 3 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 1267, - "n": "Sadzoute", - "f": "Scotty", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1276, - "n": "Faraj", - "f": "Imad", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "21", - "On": "4", - "Oa": "5.25", - "Od": "0.43", - "Dp": "1" - }, - "c": 12 - }, - { - "i": 1541, - "n": "Koffi", - "f": "Kouakou", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Gp": "3", - "p": { - "34": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 2037, - "n": "Verite", - "f": "Benjamin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2039, - "n": "Soumare", - "f": "Boubakary", - "p": "M", - "r": 9, - "s": { - "s": "42", - "n": "9", - "a": "4.72", - "d": "0.25", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.24", - "Os": "75", - "On": "16", - "Oa": "4.72", - "Od": "0.35", - "Mp": "10", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2082, - "n": "Flips", - "f": "Alexis", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2512, - "n": "Rui Fonte", - "f": "", - "p": "A", - "r": 9, - "s": { - "s": "39", - "n": "9", - "a": "4.39", - "d": "0.46", - "Os": "39", - "On": "9", - "Oa": "4.39", - "Od": "0.46", - "Ap": "9", - "p": { - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2714, - "n": "Zeki \u00c7elik", - "f": "Mehmet", - "p": "D", - "r": 14, - "s": { - "s": "101", - "n": "20", - "a": "5.05", - "d": "0.57", - "Os": "101", - "On": "20", - "Oa": "5.05", - "Od": "0.57", - "Dp": "20", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - } - } - }, - "c": 12 - }, - { - "i": 2738, - "n": "Gabriel", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "8": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2771, - "n": "Zekaj", - "f": "Arton", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2784, - "n": "Ouro-Sama", - "f": "Hakim", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2791, - "n": "Rafael Le\u00e3o", - "f": "", - "p": "A", - "r": 18, - "s": { - "g": "5", - "s": "56", - "n": "11", - "a": "5.09", - "d": "1.02", - "Sg": "4", - "Ss": "28", - "Sn": "5", - "Sa": "5.7", - "Sd": "0.93", - "Og": "5", - "Os": "56", - "On": "11", - "Oa": "5.09", - "Od": "1.02", - "Ap": "11", - "p": { - "8": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6, - "g": 1 - }, - "19": { - "n": 5.5, - "g": 1 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 12 - }, - { - "i": 2859, - "n": "Fernando Costanza", - "f": "", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3122, - "n": "Niasse", - "f": "Cheikh", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3123, - "n": "Okou", - "f": "Teddy", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3, - "n": "Falcao", - "f": "Radamel", - "p": "A", - "r": 20, - "s": { - "g": "8", - "s": "87", - "n": "18", - "a": "4.83", - "d": "1.45", - "Sg": "1", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "10", - "Oao": "1", - "Os": "129", - "On": "27", - "Oa": "4.78", - "Od": "1.42", - "Ap": "26", - "p": { - "1": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 3 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "12": { - "n": 3.5, - "s": 1 - }, - "13": { - "n": 2.5 - }, - "14": { - "n": 6.5, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7, - "g": 2 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 13 - }, - { - "i": 19, - "n": "Subasic", - "f": "Danijel", - "p": "G", - "r": 8, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "81", - "On": "16", - "Oa": "5.09", - "Od": "1.09", - "Gp": "16", - "p": { - "26": { - "n": 6 - }, - "9": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 24, - "n": "Sidibe", - "f": "Djibril", - "p": "D", - "r": 8, - "s": { - "s": "43", - "n": "10", - "a": "4.3", - "d": "0.64", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "114", - "On": "23", - "Oa": "4.96", - "Od": "1.3", - "Mp": "2", - "Dp": "20", - "p": { - "26": { - "n": 8 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "13": { - "n": 3 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 50, - "n": "Glik", - "f": "Kamil", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "85", - "n": "18", - "a": "4.72", - "d": "0.92", - "Ss": "27", - "Sn": "6", - "Sa": "4.58", - "Sd": "1.27", - "Og": "2", - "Os": "164", - "On": "33", - "Oa": "4.97", - "Od": "0.93", - "Dp": "33", - "p": { - "26": { - "n": 7, - "g": 1 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "g": 1 - }, - "12": { - "n": 4 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 3 - }, - "20": { - "n": 6 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 60, - "n": "Vainqueur", - "f": "William", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 94, - "n": "Jemerson", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "68", - "n": "14", - "a": "4.89", - "d": "0.85", - "Os": "138", - "On": "28", - "Oa": "4.95", - "Od": "1", - "Dp": "28", - "p": { - "26": { - "n": 6 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "7": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 208, - "n": "A\u00eft Bennasser", - "f": "Youssef", - "p": "M", - "r": 16, - "s": { - "s": "73", - "n": "13", - "a": "5.62", - "d": "0.88", - "Os": "126", - "On": "24", - "Oa": "5.25", - "Od": "0.99", - "Mp": "23", - "p": { - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 7 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - } - } - }, - "c": 13 - }, - { - "i": 274, - "n": "Almamy Tour\u00e9", - "f": "", - "p": "D", - "r": 7, - "s": { - "s": "18", - "n": "4", - "a": "4.63", - "d": "0.41", - "Og": "1", - "Os": "68", - "On": "14", - "Oa": "4.89", - "Od": "0.6", - "Dp": "11", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 275, - "n": "Raggi", - "f": "Andrea", - "p": "D", - "r": 9, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.75", - "Og": "1", - "Os": "92", - "On": "19", - "Oa": "4.87", - "Od": "0.98", - "Mp": "1", - "Dp": "17", - "p": { - "26": { - "n": 6 - }, - "6": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 284, - "n": "Rony Lopes", - "f": "", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "36", - "n": "7", - "a": "5.14", - "d": "1.33", - "Ss": "8", - "Sn": "2", - "Sa": "4", - "Sd": "0.5", - "Og": "14", - "Os": "134", - "On": "24", - "Oa": "5.58", - "Od": "1.21", - "Mp": "18", - "Ap": "3", - "p": { - "26": { - "n": 6, - "g": 1, - "s": 1 - }, - "1": { - "n": 7.5, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 324, - "n": "Badiashile", - "f": "Loic", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 336, - "n": "Jorge", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "1.2", - "Mp": "1", - "Dp": "4" - }, - "c": 13 - }, - { - "i": 368, - "n": "Pierre Gabriel", - "f": "Ronael", - "p": "D", - "r": 9, - "s": { - "s": "21", - "n": "4", - "a": "5.38", - "d": "0.41", - "Os": "31", - "On": "6", - "Oa": "5.25", - "Od": "0.38", - "Dp": "4", - "p": { - "1": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 405, - "n": "Gaspar", - "f": "Jordy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 408, - "n": "N'Doram", - "f": "Kevin", - "p": "D", - "r": 8, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.94", - "Os": "50", - "On": "10", - "Oa": "5", - "Od": "0.77", - "Mp": "2", - "Dp": "4", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 3 - } - } - }, - "c": 13 - }, - { - "i": 573, - "n": "Sy", - "f": "Seydou", - "p": "G", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "22", - "On": "4", - "Oa": "5.5", - "Od": "1.12", - "Gp": "3", - "p": { - "10": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 646, - "n": "F\u00e0bregas", - "f": "Cesc", - "p": "M", - "r": 17, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "0.35", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "0.5", - "Og": "1", - "Os": "99", - "On": "19", - "Oa": "5.21", - "Od": "0.95", - "Mp": "16", - "p": { - "20": { - "n": 5.5 - }, - "10": { - "n": 5, - "e": 3265, - "c": 25, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 3276, - "c": 25, - "s": 1 - }, - "12": { - "n": 5, - "e": 3285, - "c": 25, - "s": 1 - }, - "15": { - "n": 4.5, - "e": 3314, - "c": 25 - }, - "18": { - "n": 5, - "e": 3341, - "c": 25, - "s": 1 - }, - "21": { - "n": 4.5, - "e": 3371, - "c": 25, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 698, - "n": "Chadli", - "f": "Nacer", - "p": "M", - "r": 9, - "s": { - "s": "49", - "n": "11", - "a": "4.45", - "d": "0.54", - "Os": "59", - "On": "13", - "Oa": "4.54", - "Od": "0.54", - "Mp": "11", - "p": { - "5": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 884, - "n": "Adama Traor\u00e9", - "f": "", - "p": "M", - "r": 8, - "s": { - "s": "28", - "n": "6", - "a": "4.67", - "d": "0.47", - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.47", - "Mp": "5", - "Ap": "1", - "p": { - "3": { - "n": 4 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1160, - "n": "Tielemans", - "f": "Youri", - "p": "M", - "r": 18, - "s": { - "g": "5", - "s": "100", - "n": "19", - "a": "5.26", - "d": "1", - "Sg": "2", - "Ss": "44", - "Sn": "8", - "Sa": "5.56", - "Sd": "1.04", - "Og": "5", - "Os": "181", - "On": "34", - "Oa": "5.32", - "Od": "0.98", - "Mp": "30", - "p": { - "26": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 1201, - "n": "Mboula", - "f": "Jordi", - "p": "A", - "r": 6, - "s": { - "s": "31", - "n": "7", - "a": "4.43", - "d": "0.49", - "Og": "1", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.67", - "Mp": "3", - "Ap": "4", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1216, - "n": "Lacina Traor\u00e9", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "29", - "On": "7", - "Oa": "4.14", - "Od": "0.35", - "Ap": "4" - }, - "c": 13 - }, - { - "i": 1254, - "n": "Benaglio", - "f": "Diego", - "p": "G", - "r": 14, - "s": { - "s": "98", - "n": "19", - "a": "5.18", - "d": "0.96", - "Ss": "55", - "Sn": "11", - "Sa": "5", - "Sd": "1.02", - "Os": "98", - "On": "19", - "Oa": "5.18", - "Od": "0.96", - "Gp": "19", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 3 - } - } - }, - "c": 13 - }, - { - "i": 1256, - "n": "Ballo-Toure", - "f": "Fode", - "p": "D", - "r": 17, - "s": { - "s": "102", - "n": "20", - "a": "5.13", - "d": "0.82", - "Ss": "35", - "Sn": "7", - "Sa": "5", - "Sd": "0.76", - "Os": "152", - "On": "32", - "Oa": "4.77", - "Od": "0.94", - "Mp": "2", - "Dp": "29", - "p": { - "1": { - "n": 5, - "e": 2734, - "c": 12 - }, - "2": { - "n": 5, - "e": 2746, - "c": 12 - }, - "3": { - "n": 5, - "e": 2754, - "c": 12 - }, - "4": { - "n": 5, - "e": 2762, - "c": 12 - }, - "5": { - "n": 5, - "e": 2772, - "c": 12 - }, - "6": { - "n": 5, - "e": 2784, - "c": 12 - }, - "7": { - "n": 6, - "e": 2793, - "c": 12 - }, - "8": { - "n": 6.5, - "e": 2804, - "c": 12 - }, - "9": { - "n": 5, - "e": 2816, - "c": 12 - }, - "10": { - "n": 6.5, - "e": 2823, - "c": 12 - }, - "11": { - "n": 6, - "e": 2836, - "c": 12 - }, - "12": { - "n": 4, - "e": 2848, - "c": 12 - }, - "13": { - "n": 3.5, - "e": 2855, - "c": 12 - }, - "15": { - "n": 5, - "e": 2875, - "c": 12 - }, - "16": { - "n": 6, - "e": 2887, - "c": 12 - }, - "17": { - "n": 5.5, - "e": 2894, - "c": 12 - }, - "18": { - "n": 4.5, - "e": 2910, - "c": 12 - }, - "19": { - "n": 5, - "e": 2914, - "c": 12 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 1275, - "n": "Sylla", - "f": "Moussa", - "p": "A", - "r": 8, - "s": { - "s": "58", - "n": "14", - "a": "4.18", - "d": "0.52", - "Ss": "22", - "Sn": "5", - "Sa": "4.4", - "Sd": "0.37", - "Og": "2", - "Os": "83", - "On": "19", - "Oa": "4.39", - "Od": "0.87", - "Mp": "1", - "Ap": "16", - "p": { - "5": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1417, - "n": "Grandsir", - "f": "Samuel", - "p": "A", - "r": 8, - "s": { - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.51", - "Og": "1", - "Os": "125", - "On": "28", - "Oa": "4.46", - "Od": "0.83", - "Mp": "25", - "p": { - "1": { - "n": 5.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1433, - "n": "Aholou", - "f": "Jean Eudes", - "p": "M", - "r": 8, - "s": { - "s": "44", - "n": "9", - "a": "4.89", - "d": "0.7", - "Og": "3", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "0.89", - "Mp": "24", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6 - }, - "7": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 1523, - "n": "Jovetic", - "f": "Stevan", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5.1", - "d": "0.97", - "Og": "7", - "Os": "69", - "On": "12", - "Oa": "5.79", - "Od": "1.23", - "Mp": "2", - "Ap": "7", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2034, - "n": "Keita", - "f": "", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "43", - "On": "8", - "Oa": "5.38", - "Od": "1.11", - "Mp": "5", - "Ap": "2", - "p": { - "26": { - "n": 7, - "g": 1 - } - } - }, - "c": 13 - }, - { - "i": 2038, - "n": "Geubbels", - "f": "Willem", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2040, - "n": "Serrano", - "f": "Julien", - "p": "D", - "r": 1, - "s": { - "s": "15", - "n": "3", - "a": "5", - "Os": "38", - "On": "7", - "Oa": "5.43", - "Od": "0.49", - "Mp": "1", - "Dp": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2145, - "n": "Faivre", - "f": "Romain", - "p": "M", - "r": 3, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "19": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2275, - "n": "Pellegri", - "f": "Pietro", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "15", - "n": "3", - "a": "5", - "d": "1.08", - "Og": "1", - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "0.91", - "Ap": "3", - "p": { - "26": { - "n": 4, - "s": 1 - }, - "3": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2614, - "n": "Pel\u00e9", - "f": "", - "p": "M", - "r": 9, - "s": { - "s": "36", - "n": "8", - "a": "4.56", - "d": "0.53", - "Os": "36", - "On": "8", - "Oa": "4.56", - "Od": "0.53", - "Mp": "8", - "p": { - "8": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2622, - "n": "Diop", - "f": "Sofiane", - "p": "M", - "r": 9, - "s": { - "s": "57", - "n": "13", - "a": "4.42", - "d": "0.51", - "Os": "57", - "On": "13", - "Oa": "4.42", - "Od": "0.51", - "Mp": "12", - "Ap": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2623, - "n": "Robert Navarro", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2671, - "n": "Diallo", - "f": "Ibrahima", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2672, - "n": "Mbae", - "f": "Safwan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2691, - "n": "Mexique", - "f": "Jonathan", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2693, - "n": "Panzo", - "f": "Jonathan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2720, - "n": "Golovin", - "f": "Aleksandr", - "p": "M", - "r": 9, - "s": { - "s": "57", - "n": "13", - "a": "4.38", - "d": "0.71", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.25", - "Os": "57", - "On": "13", - "Oa": "4.38", - "Od": "0.71", - "Mp": "6", - "Ap": "7", - "p": { - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 2.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 2721, - "n": "Barreca", - "f": "Antonio", - "p": "D", - "r": 8, - "s": { - "s": "33", - "n": "7", - "a": "4.71", - "d": "0.52", - "Os": "33", - "On": "7", - "Oa": "4.71", - "Od": "0.52", - "Dp": "7", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4 - }, - "6": { - "n": 5 - }, - "8": { - "n": 4 - }, - "11": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 2797, - "n": "Echi\u00e9jil\u00e9", - "f": "Elderson", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2833, - "n": "Henrichs", - "f": "Benjamin", - "p": "D", - "r": 11, - "s": { - "g": "1", - "s": "79", - "n": "17", - "a": "4.65", - "d": "0.76", - "Sg": "1", - "Ss": "70", - "Sn": "15", - "Sa": "4.7", - "Sd": "0.65", - "Og": "1", - "Os": "79", - "On": "17", - "Oa": "4.65", - "Od": "0.76", - "Mp": "8", - "Dp": "9", - "p": { - "4": { - "n": 3 - }, - "5": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "g": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 2892, - "n": "Isidor", - "f": "Wilson", - "p": "A", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "13": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2954, - "n": "Massengo", - "f": "Han-Noah", - "p": "M", - "r": 7, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2955, - "n": "Gouano", - "f": "Gobe", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2956, - "n": "Biancone", - "f": "Giulian", - "p": "D", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "19": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2958, - "n": "Henin", - "f": "Yanis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2959, - "n": "Kephren Thuram", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2961, - "n": "Badiashile Mukinayi", - "f": "Benoit", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "22", - "n": "5", - "a": "4.4", - "d": "1.07", - "Sg": "1", - "Ss": "22", - "Sn": "5", - "Sa": "4.4", - "Sd": "1.07", - "Og": "1", - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "1.07", - "Dp": "5", - "p": { - "17": { - "n": 5, - "g": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 13 - }, - { - "i": 84, - "n": "Rodelin", - "f": "Ronny", - "p": "A", - "r": 8, - "s": { - "s": "54", - "n": "12", - "a": "4.54", - "d": "0.25", - "Ss": "32", - "Sn": "7", - "Sa": "4.57", - "Sd": "0.17", - "Og": "1", - "Os": "133", - "On": "28", - "Oa": "4.77", - "Od": "0.77", - "Mp": "14", - "Ap": "13", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 110, - "n": "Sorbon", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 9, - "s": { - "s": "72", - "n": "16", - "a": "4.53", - "d": "0.96", - "Os": "123", - "On": "27", - "Oa": "4.57", - "Od": "0.85", - "Dp": "27", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 115, - "n": "Roux", - "f": "Nolan", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "49", - "n": "11", - "a": "4.45", - "d": "0.96", - "Og": "10", - "Os": "128", - "On": "26", - "Oa": "4.92", - "Od": "1.35", - "Mp": "12", - "Ap": "14", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 142, - "n": "Kerbrat", - "f": "Christophe", - "p": "D", - "r": 10, - "s": { - "s": "83", - "n": "19", - "a": "4.39", - "d": "1.15", - "Ss": "46", - "Sn": "11", - "Sa": "4.18", - "Sd": "1.09", - "Os": "160", - "On": "35", - "Oa": "4.59", - "Od": "1.19", - "Dp": "35", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 2.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 158, - "n": "Johnsson", - "f": "Karl-Johan", - "p": "G", - "r": 8, - "s": { - "s": "85", - "n": "17", - "a": "5", - "d": "1.1", - "Os": "170", - "On": "34", - "Oa": "5", - "Od": "1.19", - "Gp": "34", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 4 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 3 - }, - "17": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 163, - "n": "Deaux", - "f": "Lucas", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "38", - "n": "8", - "a": "4.75", - "d": "1.06", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "3", - "Os": "74", - "On": "16", - "Oa": "4.63", - "Od": "1.21", - "Mp": "16", - "p": { - "3": { - "n": 3.5 - }, - "4": { - "n": 4 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "18": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 200, - "n": "Coco", - "f": "Marcus", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "84", - "n": "18", - "a": "4.69", - "d": "0.78", - "Og": "2", - "Os": "139", - "On": "31", - "Oa": "4.5", - "Od": "0.78", - "Mp": "23", - "Ap": "4", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 3.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 231, - "n": "Petric", - "f": "Denis", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 236, - "n": "Benezet", - "f": "Nicolas", - "p": "M", - "r": 10, - "s": { - "g": "3", - "s": "78", - "n": "16", - "a": "4.91", - "d": "1.25", - "Og": "4", - "Os": "152", - "On": "31", - "Oa": "4.92", - "Od": "1.3", - "Mp": "22", - "Ap": "4", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 7.5, - "g": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 241, - "n": "Didot", - "f": "\u00c9tienne", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "93", - "n": "20", - "a": "4.68", - "d": "1.09", - "Ss": "12", - "Sn": "3", - "Sa": "4", - "Sd": "1.22", - "Og": "2", - "Os": "155", - "On": "32", - "Oa": "4.86", - "Od": "1.11", - "Mp": "31", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 289, - "n": "Ikoko", - "f": "Jordan", - "p": "D", - "r": 9, - "s": { - "s": "62", - "n": "15", - "a": "4.17", - "d": "0.94", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "134", - "On": "30", - "Oa": "4.48", - "Od": "0.98", - "Mp": "1", - "Dp": "29", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3 - }, - "6": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3 - }, - "14": { - "n": 3.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 376, - "n": "Mendy", - "f": "Alexandre", - "p": "A", - "r": 5, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.47", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.47", - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Ap": "3", - "p": { - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 398, - "n": "Blas", - "f": "Ludovic", - "p": "M", - "r": 12, - "s": { - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.03", - "Ss": "37", - "Sn": "7", - "Sa": "5.29", - "Sd": "0.99", - "Og": "2", - "Os": "166", - "On": "33", - "Oa": "5.03", - "Od": "1.07", - "Mp": "26", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 790, - "n": "Djilobodji", - "f": "Papy", - "p": "D", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "69", - "On": "15", - "Oa": "4.6", - "Od": "1.14", - "Dp": "15", - "p": { - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 905, - "n": "Ndong", - "f": "Didier", - "p": "M", - "r": 10, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1178, - "n": "Tabanou", - "f": "Franck", - "p": "D", - "r": 8, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "22", - "On": "6", - "Oa": "3.75", - "Od": "0.99", - "Dp": "6", - "p": { - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 1200, - "n": "Thuram", - "f": "Marcus", - "p": "A", - "r": 11, - "s": { - "g": "7", - "s": "83", - "n": "17", - "a": "4.88", - "d": "1.52", - "Sg": "4", - "Ss": "45", - "Sn": "9", - "Sa": "5.06", - "Sd": "1.36", - "Og": "8", - "Os": "147", - "On": "31", - "Oa": "4.74", - "Od": "1.31", - "Mp": "15", - "Ap": "11", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 3 - }, - "9": { - "n": 2 - }, - "13": { - "n": 7, - "g": 2 - }, - "14": { - "n": 5, - "g": 1 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 1209, - "n": "Phiri", - "f": "Lebogang", - "p": "M", - "r": 9, - "s": { - "s": "39", - "n": "8", - "a": "4.94", - "d": "1.01", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "87", - "On": "18", - "Oa": "4.86", - "Od": "0.81", - "Mp": "12", - "p": { - "1": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "14": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 1236, - "n": "Eboa Eboa", - "f": "F\u00e9lix", - "p": "D", - "r": 15, - "s": { - "g": "1", - "s": "72", - "n": "15", - "a": "4.8", - "d": "1.53", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.5", - "Sd": "2.26", - "Og": "2", - "Os": "121", - "On": "25", - "Oa": "4.84", - "Od": "1.38", - "Dp": "24", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 3 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "12": { - "n": 3 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 7.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2 - } - } - }, - "c": 14 - }, - { - "i": 1257, - "n": "Pedro Rebocho", - "f": "", - "p": "D", - "r": 11, - "s": { - "s": "92", - "n": "19", - "a": "4.87", - "d": "1.04", - "Ss": "43", - "Sn": "9", - "Sa": "4.78", - "Sd": "1.34", - "Os": "141", - "On": "29", - "Oa": "4.88", - "Od": "0.97", - "Mp": "1", - "Dp": "27", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 6 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 1258, - "n": "Abdoul Camara", - "f": "", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 1264, - "n": "Caillard", - "f": "Marc-Aur\u00e8le", - "p": "G", - "r": 13, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "1.47", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "1.47", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "1.47", - "Gp": "4", - "p": { - "18": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 1422, - "n": "Fofana", - "f": "Guessouma", - "p": "M", - "r": 7, - "s": { - "s": "52", - "n": "12", - "a": "4.33", - "d": "0.77", - "Os": "104", - "On": "23", - "Oa": "4.52", - "Od": "0.67", - "Mp": "16", - "p": { - "1": { - "n": 4, - "e": 2735, - "c": 42 - }, - "2": { - "n": 4.5, - "e": 2742, - "c": 42 - }, - "3": { - "n": 5, - "e": 2752, - "c": 42, - "s": 1 - }, - "5": { - "n": 3 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1548, - "n": "Ahlinvi", - "f": "Matteo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2138, - "n": "N'Gbakoto", - "f": "Yeni", - "p": "A", - "r": 9, - "s": { - "s": "53", - "n": "12", - "a": "4.46", - "d": "0.56", - "Ss": "7", - "Sn": "2", - "Sa": "3.75", - "Sd": "0.75", - "Og": "3", - "Os": "124", - "On": "27", - "Oa": "4.61", - "Od": "0.8", - "Mp": "7", - "Ap": "9", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 2312, - "n": "Julan", - "f": "Natha\u00ebl", - "p": "A", - "r": 9, - "s": { - "s": "45", - "n": "10", - "a": "4.5", - "d": "0.32", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.32", - "Ap": "10", - "p": { - "6": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2722, - "n": "Traor\u00e9", - "f": "Cheick", - "p": "D", - "r": 7, - "s": { - "s": "35", - "n": "8", - "a": "4.38", - "d": "1.14", - "Os": "35", - "On": "8", - "Oa": "4.38", - "Od": "1.14", - "Dp": "8", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 3 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "12": { - "n": 2 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 2772, - "n": "Koita", - "f": "Djegui", - "p": "D", - "r": 6, - "s": { - "s": "10", - "n": "2", - "a": "5.25", - "d": "0.25", - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2", - "p": { - "10": { - "n": 5 - }, - "11": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2857, - "n": "Bilingi", - "f": "Yohan", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2943, - "n": "Ako", - "f": "Steven", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2948, - "n": "Boudjemaa", - "f": "Mehdi", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2949, - "n": "Phaeton", - "f": "Matthias", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2997, - "n": "Johan Larsson", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "20": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 3124, - "n": "Merghem", - "f": "Mehdi", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 40, - "n": "Delort", - "f": "Andy", - "p": "A", - "r": 21, - "s": { - "g": "7", - "s": "109", - "n": "20", - "a": "5.48", - "d": "1.02", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "0.71", - "Og": "8", - "Os": "165", - "On": "32", - "Oa": "5.17", - "Od": "1.07", - "Mp": "5", - "Ap": "22", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 6, - "g": 1 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 7.5, - "g": 2 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 43, - "n": "Sio", - "f": "Giovanni", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Og": "6", - "Os": "87", - "On": "18", - "Oa": "4.83", - "Od": "1.5", - "Ap": "12", - "p": { - "31": { - "n": 8, - "g": 2 - }, - "1": { - "n": 4 - } - } - }, - "c": 15 - }, - { - "i": 114, - "n": "Skhiri", - "f": "Ellyes", - "p": "M", - "r": 19, - "s": { - "g": "1", - "s": "110", - "n": "20", - "a": "5.53", - "d": "0.7", - "Ss": "21", - "Sn": "4", - "Sa": "5.38", - "Sd": "0.54", - "Og": "4", - "Os": "209", - "On": "37", - "Oa": "5.66", - "Od": "0.82", - "Mp": "37", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 150, - "n": "Hilton", - "f": "", - "p": "D", - "r": 17, - "s": { - "s": "95", - "n": "18", - "a": "5.31", - "d": "0.58", - "Ss": "20", - "Sn": "4", - "Sa": "5.13", - "Sd": "0.41", - "Os": "159", - "On": "30", - "Oa": "5.32", - "Od": "0.7", - "Dp": "30", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 153, - "n": "Pedro Mendes", - "f": "", - "p": "D", - "r": 16, - "s": { - "g": "1", - "s": "91", - "n": "17", - "a": "5.35", - "d": "0.78", - "Ss": "17", - "Sn": "4", - "Sa": "4.25", - "Sd": "0.43", - "Og": "1", - "Os": "166", - "On": "32", - "Oa": "5.19", - "Od": "0.96", - "Dp": "30", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 197, - "n": "Congr\u00e9", - "f": "Daniel", - "p": "D", - "r": 18, - "s": { - "s": "106", - "n": "20", - "a": "5.33", - "d": "0.71", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "0.35", - "Os": "191", - "On": "37", - "Oa": "5.18", - "Od": "0.76", - "Mp": "1", - "Dp": "35", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 227, - "n": "Lasne", - "f": "Paul", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "93", - "n": "18", - "a": "5.19", - "d": "0.84", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.22", - "Og": "2", - "Os": "178", - "On": "34", - "Oa": "5.25", - "Od": "0.88", - "Mp": "33", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 232, - "n": "Camara", - "f": "Souleymane", - "p": "A", - "r": 5, - "s": { - "s": "22", - "n": "5", - "a": "4.5", - "d": "0.32", - "Os": "60", - "On": "14", - "Oa": "4.32", - "Od": "0.41", - "Ap": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 243, - "n": "Laborde", - "f": "Gaetan", - "p": "A", - "r": 18, - "s": { - "g": "7", - "s": "97", - "n": "19", - "a": "5.11", - "d": "1.48", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "9", - "Os": "154", - "On": "32", - "Oa": "4.81", - "Od": "1.36", - "Mp": "1", - "Ap": "26", - "p": { - "1": { - "n": 3.5, - "e": 2733, - "c": 3 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 8, - "g": 2 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 3.5 - }, - "18": { - "n": 2 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 250, - "n": "Lecomte", - "f": "Benjamin", - "p": "G", - "r": 25, - "s": { - "s": "109", - "n": "19", - "a": "5.74", - "d": "0.8", - "Os": "200", - "On": "36", - "Oa": "5.56", - "Od": "0.84", - "Gp": "36", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - } - } - }, - "c": 15 - }, - { - "i": 320, - "n": "Mollet", - "f": "Florent", - "p": "M", - "r": 18, - "s": { - "g": "1", - "s": "88", - "n": "16", - "a": "5.53", - "d": "1.04", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.25", - "Og": "6", - "Os": "157", - "On": "30", - "Oa": "5.25", - "Od": "1.17", - "Mp": "16", - "Ap": "13", - "p": { - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 410, - "n": "Ligali", - "f": "Jonathan", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 440, - "n": "Dolly", - "f": "Keagan", - "p": "M", - "r": 6, - "s": { - "s": "12", - "n": "3", - "a": "4.17", - "d": "0.47", - "Og": "1", - "Os": "67", - "On": "14", - "Oa": "4.82", - "Od": "0.86", - "Mp": "6", - "Ap": "4", - "p": { - "1": { - "n": 3.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 446, - "n": "Passi", - "f": "Bryan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 535, - "n": "Porsan-Clemente", - "f": "J\u00e9r\u00e9mie", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 15 - }, - { - "i": 541, - "n": "Sanson", - "f": "Killian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 579, - "n": "Poaty", - "f": "Morgan", - "p": "D", - "r": 3, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.24", - "Mp": "2", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 1186, - "n": "P\u00edriz", - "f": "Facundo", - "p": "M", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.15", - "Mp": "7", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 1227, - "n": "Aguilar", - "f": "Ruben", - "p": "D", - "r": 24, - "s": { - "g": "1", - "s": "103", - "n": "19", - "a": "5.42", - "d": "0.99", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.5", - "Sd": "0.94", - "Og": "1", - "Os": "177", - "On": "32", - "Oa": "5.53", - "Od": "0.93", - "Mp": "26", - "Dp": "4", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 1242, - "n": "Bertaud", - "f": "Dimitry", - "p": "G", - "r": 1, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "21": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 1244, - "n": "Cozza", - "f": "Nicolas", - "p": "D", - "r": 7, - "s": { - "s": "30", - "n": "6", - "a": "5.08", - "d": "0.84", - "Og": "1", - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "1.09", - "Mp": "4", - "Dp": "9", - "p": { - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "16": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 1532, - "n": "Junior Sambia", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "93", - "n": "19", - "a": "4.92", - "d": "0.33", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "0.22", - "Og": "1", - "Os": "165", - "On": "33", - "Oa": "5.02", - "Od": "0.66", - "Mp": "24", - "Ap": "4", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2268, - "n": "Oyongo", - "f": "Ambroise", - "p": "D", - "r": 14, - "s": { - "g": "2", - "s": "73", - "n": "14", - "a": "5.21", - "d": "0.94", - "Og": "2", - "Os": "88", - "On": "17", - "Oa": "5.18", - "Od": "0.86", - "Mp": "16", - "Dp": "1", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 4 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 2326, - "n": "Ammour", - "f": "Yannis", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2613, - "n": "Skuletic", - "f": "Petar", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "69", - "n": "15", - "a": "4.63", - "d": "0.72", - "Ss": "17", - "Sn": "4", - "Sa": "4.38", - "Sd": "0.89", - "Og": "1", - "Os": "69", - "On": "15", - "Oa": "4.63", - "Od": "0.72", - "Ap": "15", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 3, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2617, - "n": "Le Tallec", - "f": "Damien", - "p": "D", - "r": 25, - "s": { - "g": "3", - "s": "110", - "n": "20", - "a": "5.53", - "d": "1.1", - "Sg": "1", - "Ss": "21", - "Sn": "4", - "Sa": "5.25", - "Sd": "1.15", - "Og": "3", - "Os": "110", - "On": "20", - "Oa": "5.53", - "Od": "1.1", - "Mp": "15", - "Dp": "5", - "p": { - "1": { - "n": 3.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 2636, - "n": "Adouyev", - "f": "Amir", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2637, - "n": "Kaiboue", - "f": "Kylian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2638, - "n": "Vidal", - "f": "Clement", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2995, - "n": "Su\u00e1rez", - "f": "Math\u00edas", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 3126, - "n": "Ristic", - "f": "Mihailo", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 107, - "n": "Michel", - "f": "Mathieu", - "p": "G", - "r": 5, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 16 - }, - { - "i": 108, - "n": "Mangani", - "f": "Thomas", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "78", - "n": "16", - "a": "4.88", - "d": "0.78", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "149", - "On": "31", - "Oa": "4.81", - "Od": "0.86", - "Mp": "31", - "p": { - "34": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 113, - "n": "Santamar\u00eda", - "f": "Baptiste", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "102", - "n": "20", - "a": "5.1", - "d": "0.78", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "1", - "Os": "187", - "On": "37", - "Oa": "5.05", - "Od": "0.81", - "Mp": "37", - "p": { - "34": { - "n": 4 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 143, - "n": "Thomas", - "f": "Romain", - "p": "D", - "r": 15, - "s": { - "g": "2", - "ao": "1", - "s": "79", - "n": "15", - "a": "5.27", - "d": "1.33", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "2", - "Oao": "1", - "Os": "107", - "On": "22", - "Oa": "4.86", - "Od": "1.32", - "Dp": "22", - "p": { - "34": { - "n": 3 - }, - "1": { - "n": 2, - "a": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 159, - "n": "Traor\u00e9", - "f": "Ismael", - "p": "D", - "r": 16, - "s": { - "g": "3", - "s": "85", - "n": "16", - "a": "5.31", - "d": "0.98", - "Og": "5", - "Os": "171", - "On": "32", - "Oa": "5.34", - "Od": "0.99", - "Dp": "32", - "p": { - "34": { - "n": 5 - }, - "1": { - "n": 4.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 176, - "n": "Pajot", - "f": "Vincent", - "p": "M", - "r": 9, - "s": { - "s": "24", - "n": "5", - "a": "4.9", - "d": "0.37", - "Os": "50", - "On": "10", - "Oa": "5.05", - "Od": "0.42", - "Mp": "6", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 202, - "n": "Capelle", - "f": "Pierrick", - "p": "M", - "r": 15, - "s": { - "g": "3", - "s": "95", - "n": "18", - "a": "5.28", - "d": "0.93", - "Og": "4", - "Oao": "1", - "Os": "151", - "On": "29", - "Oa": "5.21", - "Od": "1.03", - "Mp": "23", - "Dp": "5", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 214, - "n": "Manceau", - "f": "Vincent", - "p": "D", - "r": 8, - "s": { - "ao": "1", - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.99", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Oao": "1", - "Os": "146", - "On": "30", - "Oa": "4.88", - "Od": "0.86", - "Mp": "1", - "Dp": "29", - "p": { - "34": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3, - "a": 1 - }, - "13": { - "n": 5.5 - }, - "18": { - "n": 5.5 - }, - "21": { - "n": 7 - } - } - }, - "c": 16 - }, - { - "i": 235, - "n": "Pavlovic", - "f": "Mateo", - "p": "D", - "r": 12, - "s": { - "g": "2", - "s": "82", - "n": "15", - "a": "5.47", - "d": "0.81", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "3", - "Os": "150", - "On": "28", - "Oa": "5.36", - "Od": "0.97", - "Dp": "27", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "18": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 262, - "n": "Andreu", - "f": "Yoann", - "p": "D", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "40", - "On": "8", - "Oa": "5.06", - "Od": "1.07", - "Dp": "8", - "p": { - "12": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 287, - "n": "Bamba", - "f": "Abdoulaye", - "p": "D", - "r": 13, - "s": { - "s": "92", - "n": "18", - "a": "5.11", - "d": "0.81", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "146", - "On": "30", - "Oa": "4.87", - "Od": "0.85", - "Mp": "3", - "Dp": "26", - "p": { - "34": { - "n": 4 - }, - "1": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 343, - "n": "Puyo", - "f": "Lo\u00efc", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.47" - }, - "c": 16 - }, - { - "i": 370, - "n": "Tait", - "f": "Flavien", - "p": "M", - "r": 16, - "s": { - "g": "2", - "s": "104", - "n": "19", - "a": "5.47", - "d": "1.12", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "6", - "Os": "198", - "On": "35", - "Oa": "5.66", - "Od": "1.08", - "Mp": "29", - "Ap": "6", - "p": { - "34": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 8, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 7 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 371, - "n": "Thomas Tour\u00e9", - "f": "", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "31", - "On": "7", - "Oa": "4.43", - "Od": "0.73", - "Mp": "1", - "p": { - "34": { - "n": 4, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 390, - "n": "Mandrea", - "f": "Anthony", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 454, - "n": "Dor\u00e9", - "f": "F\u00e9r\u00e9bory", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 477, - "n": "Ketkeophomphone", - "f": "Billy", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "0.8", - "Mp": "2" - }, - "c": 16 - }, - { - "i": 1069, - "n": "Reine-Ad\u00e9la\u00efde", - "f": "Jeff", - "p": "M", - "r": 10, - "s": { - "s": "90", - "n": "19", - "a": "4.74", - "d": "0.75", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "140", - "On": "29", - "Oa": "4.83", - "Od": "0.67", - "Mp": "14", - "Ap": "12", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 3 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 1179, - "n": "Fulgini", - "f": "Angelo", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "69", - "n": "14", - "a": "4.93", - "d": "0.92", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Og": "3", - "Os": "113", - "On": "23", - "Oa": "4.91", - "Od": "0.86", - "Mp": "13", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 1189, - "n": "Ciss", - "f": "Saliou", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 1235, - "n": "Kanga", - "f": "Wilfried", - "p": "A", - "r": 8, - "s": { - "s": "40", - "n": "9", - "a": "4.5", - "d": "0.33", - "Os": "72", - "On": "17", - "Oa": "4.26", - "Od": "0.35", - "Ap": "10", - "p": { - "34": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 1401, - "n": "Bahoken", - "f": "St\u00e9phane", - "p": "A", - "r": 16, - "s": { - "g": "5", - "s": "84", - "n": "17", - "a": "4.97", - "d": "1.02", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "9", - "Os": "152", - "On": "32", - "Oa": "4.77", - "Od": "1.1", - "Ap": "30", - "p": { - "1": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 1412, - "n": "Manzala", - "f": "Harrison", - "p": "A", - "r": 7, - "s": { - "s": "36", - "n": "8", - "a": "4.5", - "d": "0.25", - "Og": "2", - "Os": "118", - "On": "24", - "Oa": "4.92", - "Od": "0.92", - "Mp": "6", - "Ap": "8", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2136, - "n": "Butelle", - "f": "Ludovic", - "p": "G", - "r": 18, - "s": { - "s": "106", - "n": "19", - "a": "5.61", - "d": "1.12", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Oao": "1", - "Os": "194", - "On": "36", - "Oa": "5.4", - "Od": "1.08", - "Gp": "36", - "p": { - "34": { - "n": 6 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 8 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7 - }, - "21": { - "n": 7 - } - } - }, - "c": 16 - }, - { - "i": 2628, - "n": "Bertrand", - "f": "Dorian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2646, - "n": "Ait Nouri", - "f": "Rayan", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "3": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2793, - "n": "Cisse", - "f": "Ibrahim", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2822, - "n": "N'Doye", - "f": "Cheikh", - "p": "M", - "r": 11, - "s": { - "s": "81", - "n": "17", - "a": "4.76", - "d": "0.67", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "81", - "On": "17", - "Oa": "4.76", - "Od": "0.67", - "Mp": "17", - "p": { - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 2831, - "n": "El Melali", - "f": "Farid", - "p": "M", - "r": 5, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.62", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.62", - "Mp": "3", - "p": { - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "21": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2866, - "n": "Cristian", - "f": "", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "46", - "n": "10", - "a": "4.6", - "d": "0.58", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "1", - "Os": "46", - "On": "10", - "Oa": "4.6", - "Od": "0.58", - "Ap": "10", - "p": { - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2869, - "n": "Boucher", - "f": "Zacharie", - "p": "G", - "r": 7, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "19": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 2890, - "n": "Mancini", - "f": "Anthony", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2944, - "n": "Mouanga", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 3189, - "n": "Elhadji Diaw", - "f": "", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 15, - "n": "Fekir", - "f": "Nabil", - "p": "A", - "r": 23, - "s": { - "g": "6", - "s": "82", - "n": "15", - "a": "5.5", - "d": "1.43", - "Sg": "4", - "Ss": "45", - "Sn": "8", - "Sa": "5.63", - "Sd": "1.6", - "Og": "9", - "Os": "151", - "On": "27", - "Oa": "5.61", - "Od": "1.38", - "Mp": "15", - "Ap": "10", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "12": { - "n": 6 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 18 - }, - { - "i": 72, - "n": "Depay", - "f": "Memphis", - "p": "A", - "r": 19, - "s": { - "g": "5", - "s": "114", - "n": "21", - "a": "5.45", - "d": "1.26", - "Sg": "5", - "Ss": "114", - "Sn": "21", - "Sa": "5.45", - "Sd": "1.26", - "Og": "16", - "Os": "220", - "On": "38", - "Oa": "5.8", - "Od": "1.54", - "Mp": "7", - "Ap": "26", - "p": { - "33": { - "n": 8, - "g": 1 - }, - "1": { - "n": 7.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 8.5, - "g": 2 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 130, - "n": "Cornet", - "f": "Maxwel", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "55", - "n": "12", - "a": "4.58", - "d": "0.57", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Og": "3", - "Os": "113", - "On": "25", - "Oa": "4.52", - "Od": "0.78", - "Mp": "3", - "Ap": "14", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "13": { - "n": 6, - "g": 1, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 146, - "n": "Yanga-Mbiwa", - "f": "Mapou", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 204, - "n": "Mar\u00e7al", - "f": "", - "p": "D", - "r": 11, - "s": { - "s": "43", - "n": "8", - "a": "5.44", - "d": "0.46", - "Os": "54", - "On": "10", - "Oa": "5.45", - "Od": "0.47", - "Dp": "9", - "p": { - "8": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 244, - "n": "Dubois", - "f": "L\u00e9o", - "p": "D", - "r": 8, - "s": { - "s": "41", - "n": "8", - "a": "5.13", - "d": "0.93", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "1.25", - "Og": "2", - "Os": "130", - "On": "24", - "Oa": "5.42", - "Od": "1.11", - "Mp": "2", - "Dp": "22", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 7, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 248, - "n": "Morel", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 9, - "s": { - "s": "43", - "n": "9", - "a": "4.83", - "d": "1.18", - "Os": "130", - "On": "26", - "Oa": "5.02", - "Od": "1.01", - "Dp": "26", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3 - }, - "13": { - "n": 3.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 255, - "n": "Gorgelin", - "f": "Mathieu", - "p": "G", - "r": 8, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Os": "31", - "On": "6", - "Oa": "5.17", - "Od": "1.07", - "Gp": "6", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 256, - "n": "Rafael", - "f": "", - "p": "D", - "r": 10, - "s": { - "s": "56", - "n": "11", - "a": "5.14", - "d": "0.53", - "Os": "128", - "On": "25", - "Oa": "5.14", - "Od": "0.87", - "Mp": "1", - "Dp": "24", - "p": { - "33": { - "n": 7 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "7": { - "n": 6.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 409, - "n": "Terrier", - "f": "Martin", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "82", - "n": "16", - "a": "5.13", - "d": "0.67", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.22", - "Og": "2", - "Os": "129", - "On": "26", - "Oa": "4.96", - "Od": "0.69", - "Mp": "15", - "Ap": "9", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 423, - "n": "Tousart", - "f": "Lucas", - "p": "M", - "r": 15, - "s": { - "s": "85", - "n": "16", - "a": "5.31", - "d": "0.83", - "Os": "173", - "On": "32", - "Oa": "5.41", - "Od": "0.89", - "Mp": "32", - "p": { - "33": { - "n": 7 - }, - "1": { - "n": 7 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 537, - "n": "Aouar", - "f": "Houssem", - "p": "M", - "r": 22, - "s": { - "g": "6", - "s": "112", - "n": "21", - "a": "5.33", - "d": "1.15", - "Sg": "6", - "Ss": "112", - "Sn": "21", - "Sa": "5.33", - "Sd": "1.15", - "Og": "8", - "Os": "207", - "On": "37", - "Oa": "5.59", - "Od": "1.04", - "Mp": "32", - "Ap": "2", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 7 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 1052, - "n": "Denayer", - "f": "Jason", - "p": "D", - "r": 17, - "s": { - "g": "1", - "s": "91", - "n": "17", - "a": "5.35", - "d": "0.78", - "Sg": "1", - "Ss": "69", - "Sn": "13", - "Sa": "5.35", - "Sd": "0.86", - "Og": "1", - "Os": "91", - "On": "17", - "Oa": "5.35", - "Od": "0.78", - "Dp": "17", - "p": { - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 7, - "g": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 1161, - "n": "Traor\u00e9", - "f": "Bertrand", - "p": "A", - "r": 22, - "s": { - "g": "6", - "s": "103", - "n": "20", - "a": "5.18", - "d": "1.27", - "Sg": "2", - "Ss": "41", - "Sn": "8", - "Sa": "5.13", - "Sd": "0.96", - "Og": "16", - "Os": "205", - "On": "37", - "Oa": "5.55", - "Od": "1.44", - "Mp": "13", - "Ap": "22", - "p": { - "33": { - "n": 8, - "g": 1 - }, - "1": { - "n": 6.5, - "g": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 8, - "g": 2 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 18 - }, - { - "i": 1176, - "n": "Tete", - "f": "Kenny", - "p": "D", - "r": 10, - "s": { - "s": "36", - "n": "7", - "a": "5.21", - "d": "1.28", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "69", - "On": "14", - "Oa": "4.96", - "Od": "0.99", - "Mp": "6", - "Dp": "4", - "p": { - "13": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 8 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 4 - } - } - }, - "c": 18 - }, - { - "i": 1190, - "n": "Mendy", - "f": "Ferland", - "p": "D", - "r": 16, - "s": { - "g": "2", - "s": "92", - "n": "18", - "a": "5.14", - "d": "1.04", - "Sg": "1", - "Ss": "50", - "Sn": "10", - "Sa": "5.05", - "Sd": "1.08", - "Og": "2", - "Os": "181", - "On": "35", - "Oa": "5.19", - "Od": "1.08", - "Mp": "8", - "Dp": "26", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5, - "g": 1 - }, - "6": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 1210, - "n": "Gouiri", - "f": "Amine", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Os": "12", - "On": "3", - "Oa": "4" - }, - "c": 18 - }, - { - "i": 1414, - "n": "NDombele", - "f": "Tanguy", - "p": "M", - "r": 14, - "s": { - "s": "95", - "n": "19", - "a": "5", - "d": "0.79", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.75", - "Os": "193", - "On": "36", - "Oa": "5.36", - "Od": "0.98", - "Mp": "36", - "p": { - "33": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 1524, - "n": "Anthony Lopes", - "f": "", - "p": "G", - "r": 21, - "s": { - "s": "105", - "n": "19", - "a": "5.55", - "d": "1.01", - "Ss": "105", - "Sn": "19", - "Sa": "5.55", - "Sd": "1.01", - "Os": "176", - "On": "32", - "Oa": "5.52", - "Od": "1.04", - "Gp": "32", - "p": { - "33": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 8 - } - } - }, - "c": 18 - }, - { - "i": 1527, - "n": "Pape Cheikh", - "f": "", - "p": "M", - "r": 10, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.45", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.43", - "Mp": "11", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 1545, - "n": "Martins Pereira", - "f": "Christopher", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2032, - "n": "Marcelo", - "f": "", - "p": "D", - "r": 19, - "s": { - "s": "100", - "n": "18", - "a": "5.56", - "d": "0.83", - "Ss": "23", - "Sn": "4", - "Sa": "5.75", - "Sd": "0.25", - "Og": "3", - "Os": "183", - "On": "33", - "Oa": "5.55", - "Od": "1.18", - "Dp": "33", - "p": { - "33": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 8 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 2277, - "n": "Solet", - "f": "Oumar", - "p": "D", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "17": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 2624, - "n": "Fekir", - "f": "Yassin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2665, - "n": "Racioppi", - "f": "Anthony", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2681, - "n": "Griffiths", - "f": "Reo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2685, - "n": "Caqueret", - "f": "Maxence", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2718, - "n": "Kemen", - "f": "Olivier", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2861, - "n": "Dembele", - "f": "Moussa", - "p": "A", - "r": 19, - "s": { - "g": "6", - "s": "86", - "n": "16", - "a": "5.41", - "d": "1.02", - "Sg": "4", - "Ss": "64", - "Sn": "12", - "Sa": "5.38", - "Sd": "0.96", - "Og": "6", - "Os": "86", - "On": "16", - "Oa": "5.41", - "Od": "1.02", - "Ap": "16", - "p": { - "5": { - "n": 5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 7.5, - "g": 2 - }, - "8": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6, - "s": 1 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 2868, - "n": "Pintor", - "f": "Lenny", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 2952, - "n": "Ndiaye", - "f": "Ousseynou", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 11, - "n": "Cyprien", - "f": "Wylan", - "p": "M", - "r": 20, - "s": { - "g": "3", - "s": "103", - "n": "19", - "a": "5.42", - "d": "1.19", - "Sg": "3", - "Ss": "69", - "Sn": "12", - "Sa": "5.79", - "Sd": "1.22", - "Og": "5", - "Os": "182", - "On": "33", - "Oa": "5.52", - "Od": "1.16", - "Mp": "28", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 3.5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6.5, - "g": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 7 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 30, - "n": "Saint-Maximin", - "f": "Allan", - "p": "M", - "r": 20, - "s": { - "g": "5", - "s": "98", - "n": "19", - "a": "5.18", - "d": "1.1", - "Sg": "1", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "0.75", - "Og": "7", - "Os": "170", - "On": "33", - "Oa": "5.17", - "Od": "1.08", - "Mp": "1", - "Ap": "31", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4 - }, - "14": { - "n": 7.5, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5, - "g": 1 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 34, - "n": "Balotelli", - "f": "Mario", - "p": "A", - "r": 8, - "s": { - "s": "44", - "n": "10", - "a": "4.4", - "d": "0.66", - "Og": "6", - "Os": "116", - "On": "23", - "Oa": "5.04", - "Od": "1.12", - "Ap": "23", - "p": { - "4": { - "n": 4.5 - }, - "6": { - "n": 3.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4 - } - } - }, - "c": 19 - }, - { - "i": 70, - "n": "Dante", - "f": "", - "p": "D", - "r": 21, - "s": { - "s": "112", - "n": "21", - "a": "5.33", - "d": "0.81", - "Ss": "112", - "Sn": "21", - "Sa": "5.33", - "Sd": "0.81", - "Og": "1", - "Os": "198", - "On": "37", - "Oa": "5.35", - "Od": "1.03", - "Dp": "37", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 71, - "n": "Lees-Melou", - "f": "Pierre", - "p": "M", - "r": 15, - "s": { - "g": "1", - "s": "74", - "n": "14", - "a": "5.32", - "d": "1.03", - "Og": "3", - "Os": "145", - "On": "27", - "Oa": "5.39", - "Od": "1.16", - "Mp": "25", - "Ap": "2", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 19 - }, - { - "i": 96, - "n": "Walter", - "f": "Remi", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "52", - "n": "10", - "a": "5.25", - "d": "0.56", - "Sg": "1", - "Ss": "27", - "Sn": "5", - "Sa": "5.5", - "Sd": "0.71", - "Og": "1", - "Os": "111", - "On": "22", - "Oa": "5.07", - "Od": "0.87", - "Mp": "22", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 129, - "n": "Cardinale", - "f": "Yoan", - "p": "G", - "r": 9, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "1.03", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "1.03", - "Gp": "3", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - } - } - }, - "c": 19 - }, - { - "i": 217, - "n": "Sarr", - "f": "Malang", - "p": "D", - "r": 12, - "s": { - "ao": "1", - "s": "97", - "n": "19", - "a": "5.11", - "d": "0.79", - "Sao": "1", - "Ss": "92", - "Sn": "18", - "Sa": "5.11", - "Sd": "0.81", - "Oao": "1", - "Os": "156", - "On": "31", - "Oa": "5.03", - "Od": "0.78", - "Dp": "26", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5, - "a": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4 - } - } - }, - "c": 19 - }, - { - "i": 239, - "n": "Ben\u00edtez", - "f": "Walter", - "p": "G", - "r": 25, - "s": { - "s": "109", - "n": "18", - "a": "6.08", - "d": "1.29", - "Ss": "109", - "Sn": "18", - "Sa": "6.08", - "Sd": "1.29", - "Os": "200", - "On": "35", - "Oa": "5.73", - "Od": "1.13", - "Gp": "35", - "p": { - "4": { - "n": 9 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 8 - }, - "12": { - "n": 7.5 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 270, - "n": "Souquet", - "f": "Arnaud", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "58", - "On": "11", - "Oa": "5.27", - "Od": "0.75", - "Dp": "9" - }, - "c": 19 - }, - { - "i": 367, - "n": "Jallet", - "f": "Christophe", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "53", - "n": "10", - "a": "5.3", - "d": "0.68", - "Og": "1", - "Os": "53", - "On": "10", - "Oa": "5.3", - "Od": "0.68", - "Mp": "4", - "Dp": "6", - "p": { - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "7": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 447, - "n": "Burner", - "f": "Patrick", - "p": "D", - "r": 5, - "s": { - "s": "24", - "n": "5", - "a": "4.8", - "d": "0.81", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "64", - "On": "13", - "Oa": "4.92", - "Od": "0.85", - "Mp": "3", - "Dp": "9", - "p": { - "2": { - "n": 5 - }, - "11": { - "n": 5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 449, - "n": "Makengo", - "f": "Jean-Victor", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "62", - "n": "13", - "a": "4.77", - "d": "0.46", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Og": "1", - "Os": "80", - "On": "17", - "Oa": "4.71", - "Od": "0.49", - "Mp": "10", - "Ap": "5", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 452, - "n": "Srarfi", - "f": "Bassem", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "59", - "n": "12", - "a": "4.92", - "d": "0.79", - "Og": "1", - "Os": "123", - "On": "25", - "Oa": "4.92", - "Od": "0.64", - "Mp": "9", - "Ap": "8", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 466, - "n": "Boscagli", - "f": "Olivier", - "p": "D", - "r": 8, - "s": { - "s": "49", - "n": "10", - "a": "4.95", - "d": "0.99", - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.99", - "Mp": "3", - "Dp": "7", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 474, - "n": "Marcel", - "f": "Vincent", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 495, - "n": "Lloris", - "f": "Gautier", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 540, - "n": "Mahou", - "f": "Hicham", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 552, - "n": "Perraud", - "f": "Romain", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 19 - }, - { - "i": 561, - "n": "Le Bihan", - "f": "Mickael", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "32", - "On": "8", - "Oa": "4", - "Ap": "1", - "p": { - "3": { - "n": 4, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 1070, - "n": "Hassen", - "f": "Mouez", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 1204, - "n": "Tameze", - "f": "Adrien", - "p": "M", - "r": 16, - "s": { - "s": "111", - "n": "21", - "a": "5.29", - "d": "0.89", - "Ss": "111", - "Sn": "21", - "Sa": "5.29", - "Sd": "0.89", - "Os": "176", - "On": "33", - "Oa": "5.33", - "Od": "0.81", - "Mp": "30", - "Dp": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 1229, - "n": "Maolida", - "f": "Myziane", - "p": "A", - "r": 7, - "s": { - "s": "50", - "n": "11", - "a": "4.59", - "d": "0.73", - "Os": "68", - "On": "15", - "Oa": "4.57", - "Od": "0.68", - "Ap": "12", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 3 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 1272, - "n": "Ganago", - "f": "Ignatius", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.51", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "59", - "On": "13", - "Oa": "4.58", - "Od": "0.55", - "Ap": "10", - "p": { - "2": { - "n": 6, - "g": 1, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 1426, - "n": "Herelle", - "f": "Christophe", - "p": "D", - "r": 12, - "s": { - "s": "93", - "n": "18", - "a": "5.19", - "d": "0.9", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "0.5", - "Os": "163", - "On": "33", - "Oa": "4.95", - "Od": "0.92", - "Dp": "33", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 1439, - "n": "Sacko", - "f": "Ihsan", - "p": "M", - "r": 8, - "s": { - "s": "31", - "n": "7", - "a": "4.43", - "d": "0.86", - "Os": "71", - "On": "15", - "Oa": "4.73", - "Od": "0.91", - "Mp": "5", - "Ap": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "17": { - "n": 2.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 1540, - "n": "Coly", - "f": "Racine", - "p": "D", - "r": 7, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "0.23", - "Os": "67", - "On": "14", - "Oa": "4.79", - "Od": "0.65", - "Mp": "5", - "Dp": "9", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2081, - "n": "Clementia", - "f": "Yannis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2144, - "n": "Diaby", - "f": "Mohamed Lamine", - "p": "A", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2276, - "n": "Pelmard", - "f": "Andy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2659, - "n": "Atal", - "f": "Youcef", - "p": "D", - "r": 14, - "s": { - "g": "1", - "s": "88", - "n": "17", - "a": "5.21", - "d": "1.06", - "Sg": "1", - "Ss": "53", - "Sn": "10", - "Sa": "5.35", - "Sd": "1.27", - "Og": "1", - "Os": "88", - "On": "17", - "Oa": "5.21", - "Od": "1.06", - "Mp": "10", - "Dp": "6", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 19 - }, - { - "i": 2740, - "n": "Danilo", - "f": "", - "p": "M", - "r": 8, - "s": { - "s": "40", - "n": "9", - "a": "4.5", - "d": "0.91", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "40", - "On": "9", - "Oa": "4.5", - "Od": "0.91", - "Mp": "7", - "Ap": "2", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 2.5 - }, - "17": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 2945, - "n": "Hamache", - "f": "Yanis", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2946, - "n": "Sylvestre", - "f": "Eddy", - "p": "M", - "r": 5, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.24", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.24", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.24", - "Mp": "2", - "Ap": "1", - "p": { - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2988, - "n": "Drame", - "f": "Jawad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 101, - "n": "Andr\u00e9", - "f": "Benjamin", - "p": "M", - "r": 18, - "s": { - "g": "2", - "s": "113", - "n": "21", - "a": "5.38", - "d": "1.13", - "Sg": "2", - "Ss": "113", - "Sn": "21", - "Sa": "5.38", - "Sd": "1.13", - "Og": "2", - "Os": "190", - "On": "36", - "Oa": "5.28", - "Od": "0.99", - "Mp": "36", - "p": { - "37": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 8, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 7 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 7.5, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 20 - }, - { - "i": 106, - "n": "Baal", - "f": "Ludovic", - "p": "D", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "31", - "On": "6", - "Oa": "5.17", - "Od": "0.9", - "Dp": "5", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 117, - "n": "Danz\u00e9", - "f": "Romain", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "46", - "On": "9", - "Oa": "5.11", - "Od": "0.57", - "Dp": "8" - }, - "c": 20 - }, - { - "i": 156, - "n": "Ben Arfa", - "f": "Hatem", - "p": "M", - "r": 21, - "s": { - "g": "4", - "s": "76", - "n": "14", - "a": "5.46", - "d": "1.27", - "Sg": "2", - "Ss": "35", - "Sn": "6", - "Sa": "5.92", - "Sd": "1.13", - "Og": "4", - "Os": "76", - "On": "14", - "Oa": "5.46", - "Od": "1.27", - "Mp": "8", - "Ap": "6", - "p": { - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 8, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 3.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6, - "g": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 20 - }, - { - "i": 168, - "n": "Mexer", - "f": "", - "p": "D", - "r": 14, - "s": { - "s": "88", - "n": "17", - "a": "5.18", - "d": "1.12", - "Ss": "23", - "Sn": "4", - "Sa": "5.75", - "Sd": "0.9", - "Os": "114", - "On": "22", - "Oa": "5.18", - "Od": "1.01", - "Dp": "18", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 7.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 188, - "n": "Da Silva", - "f": "Damien", - "p": "D", - "r": 19, - "s": { - "g": "2", - "s": "100", - "n": "19", - "a": "5.26", - "d": "1.33", - "Sg": "2", - "Ss": "90", - "Sn": "17", - "Sa": "5.29", - "Sd": "1.4", - "Og": "5", - "Oao": "2", - "Os": "167", - "On": "33", - "Oa": "5.06", - "Od": "1.25", - "Dp": "33", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 2 - }, - "16": { - "n": 7 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 8, - "g": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 230, - "n": "Sarr", - "f": "Ismaila", - "p": "A", - "r": 25, - "s": { - "g": "5", - "s": "114", - "n": "21", - "a": "5.43", - "d": "0.89", - "Sg": "5", - "Ss": "114", - "Sn": "21", - "Sa": "5.43", - "Sd": "0.89", - "Og": "9", - "Os": "191", - "On": "36", - "Oa": "5.31", - "Od": "1.02", - "Mp": "23", - "Ap": "11", - "p": { - "37": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6.5, - "g": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5, - "g": 1 - }, - "16": { - "n": 7 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 272, - "n": "Bensebaini", - "f": "Ramy", - "p": "D", - "r": 14, - "s": { - "g": "1", - "ao": "1", - "s": "85", - "n": "17", - "a": "5", - "d": "1", - "Og": "1", - "Oao": "1", - "Os": "172", - "On": "33", - "Oa": "5.21", - "Od": "0.86", - "Dp": "31", - "p": { - "37": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4, - "a": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 6.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 333, - "n": "Hunou", - "f": "Adrien", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "18", - "n": "4", - "a": "4.63", - "d": "1.47", - "Og": "4", - "Os": "80", - "On": "16", - "Oa": "5.03", - "Od": "1.15", - "Mp": "4", - "Ap": "7", - "p": { - "37": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 3 - } - } - }, - "c": 20 - }, - { - "i": 381, - "n": "Chant\u00f4me", - "f": "Cl\u00e9ment", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 420, - "n": "Gertmonas", - "f": "Edvinas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 438, - "n": "Zeffane", - "f": "Mehdi", - "p": "D", - "r": 9, - "s": { - "s": "48", - "n": "10", - "a": "4.85", - "d": "0.59", - "Os": "84", - "On": "17", - "Oa": "4.97", - "Od": "0.63", - "Mp": "4", - "Dp": "9", - "Ap": "2", - "p": { - "37": { - "n": 6 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 491, - "n": "Janvier", - "f": "Nicolas", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "12": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 528, - "n": "Lea Siliki", - "f": "James", - "p": "M", - "r": 8, - "s": { - "s": "75", - "n": "15", - "a": "5", - "d": "0.68", - "Ss": "24", - "Sn": "5", - "Sa": "4.9", - "Sd": "0.86", - "Og": "2", - "Os": "143", - "On": "28", - "Oa": "5.11", - "Od": "0.7", - "Mp": "22", - "Dp": "1", - "p": { - "37": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "8": { - "n": 6 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - } - } - }, - "c": 20 - }, - { - "i": 532, - "n": "Diallo", - "f": "Namakoro", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 874, - "n": "Sakho", - "f": "Diafra", - "p": "A", - "r": 8, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Og": "2", - "Os": "63", - "On": "15", - "Oa": "4.2", - "Od": "0.85", - "Ap": "9", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 922, - "n": "Niang", - "f": "M'Baye", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "63", - "n": "13", - "a": "4.85", - "d": "0.72", - "Ss": "8", - "Sn": "2", - "Sa": "4", - "Og": "2", - "Os": "63", - "On": "13", - "Oa": "4.85", - "Od": "0.72", - "Mp": "2", - "Ap": "11", - "p": { - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6, - "g": 1, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 1182, - "n": "Hamari Traor\u00e9", - "f": "", - "p": "D", - "r": 17, - "s": { - "s": "99", - "n": "20", - "a": "4.98", - "d": "0.9", - "Ss": "80", - "Sn": "16", - "Sa": "5", - "Sd": "0.71", - "Os": "147", - "On": "29", - "Oa": "5.09", - "Od": "0.85", - "Mp": "1", - "Dp": "28", - "p": { - "37": { - "n": 6 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 1187, - "n": "Bourigeaud", - "f": "Benjamin", - "p": "M", - "r": 21, - "s": { - "g": "4", - "s": "96", - "n": "19", - "a": "5.08", - "d": "1.17", - "Sg": "1", - "Ss": "18", - "Sn": "3", - "Sa": "6.17", - "Sd": "1.31", - "Og": "10", - "Os": "191", - "On": "36", - "Oa": "5.32", - "Od": "1.16", - "Mp": "28", - "Ap": "6", - "p": { - "37": { - "n": 7, - "g": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6, - "g": 1, - "s": 1 - }, - "19": { - "n": 8, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 1194, - "n": "Grenier", - "f": "Cl\u00e9ment", - "p": "M", - "r": 21, - "s": { - "g": "2", - "s": "104", - "n": "20", - "a": "5.23", - "d": "1.09", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "0.94", - "Og": "7", - "Os": "182", - "On": "35", - "Oa": "5.21", - "Od": "1.27", - "Mp": "34", - "p": { - "1": { - "n": 4.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 3 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 1213, - "n": "Diallo", - "f": "Abdoulaye", - "p": "G", - "r": 9, - "s": { - "s": "35", - "n": "6", - "a": "5.83", - "d": "1.11", - "Os": "35", - "On": "6", - "Oa": "5.83", - "Od": "1.11", - "Gp": "6", - "p": { - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "16": { - "n": 8 - }, - "17": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 1239, - "n": "Del Castillo", - "f": "Romain", - "p": "M", - "r": 10, - "s": { - "s": "82", - "n": "17", - "a": "4.82", - "d": "0.92", - "Os": "82", - "On": "17", - "Oa": "4.82", - "Od": "0.92", - "Mp": "16", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 7.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 1252, - "n": "Toufiqui", - "f": "Sabri", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1268, - "n": "Salles-Lamonge", - "f": "Sebastien", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1526, - "n": "Koubek", - "f": "Tomas", - "p": "G", - "r": 13, - "s": { - "s": "80", - "n": "16", - "a": "5", - "d": "0.88", - "Ss": "23", - "Sn": "4", - "Sa": "5.75", - "Sd": "1.03", - "Os": "172", - "On": "33", - "Oa": "5.21", - "Od": "0.98", - "Gp": "33", - "p": { - "37": { - "n": 7 - }, - "1": { - "n": 4 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 2035, - "n": "Nyamsi", - "f": "Gerzino", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2084, - "n": "Gelin", - "f": "Jeremy", - "p": "D", - "r": 8, - "s": { - "s": "42", - "n": "9", - "a": "4.72", - "d": "0.95", - "Os": "132", - "On": "26", - "Oa": "5.1", - "Od": "0.87", - "Mp": "5", - "Dp": "21", - "p": { - "37": { - "n": 7 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4 - }, - "17": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 2618, - "n": "Johansson", - "f": "Jakob", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.72", - "Og": "1", - "Os": "50", - "On": "10", - "Oa": "5.05", - "Od": "0.72", - "Mp": "10", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2677, - "n": "Guitane", - "f": "Rafik", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2690, - "n": "Poha", - "f": "Denis", - "p": "M", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2697, - "n": "Jordan Siebatcheu", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "3", - "s": "68", - "n": "14", - "a": "4.89", - "d": "1", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "3", - "Os": "68", - "On": "14", - "Oa": "4.89", - "Od": "1", - "Ap": "14", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 8, - "g": 2 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2787, - "n": "Gboho", - "f": "Yann", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2819, - "n": "Rutter", - "f": "Georginio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3125, - "n": "Doumbia", - "f": "Souleyman", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3186, - "n": "Camavinga", - "f": "Eduardo", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 357, - "n": "Thomasson", - "f": "Adrien", - "p": "M", - "r": 21, - "s": { - "g": "5", - "s": "104", - "n": "19", - "a": "5.47", - "d": "0.98", - "Sg": "5", - "Ss": "85", - "Sn": "15", - "Sa": "5.7", - "Sd": "0.93", - "Og": "8", - "Os": "182", - "On": "34", - "Oa": "5.35", - "Od": "1.02", - "Mp": "26", - "Ap": "6", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5.5, - "g": 1 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 7, - "g": 1 - } - } - }, - "c": 41 - }, - { - "i": 442, - "n": "Corgnet", - "f": "Benjamin", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "70", - "n": "14", - "a": "5.04", - "d": "0.48", - "Og": "1", - "Os": "125", - "On": "25", - "Oa": "5.02", - "Od": "0.73", - "Mp": "17", - "Ap": "5", - "p": { - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 460, - "n": "Martinez", - "f": "Pablo", - "p": "D", - "r": 21, - "s": { - "g": "2", - "s": "109", - "n": "20", - "a": "5.48", - "d": "0.83", - "Sg": "2", - "Ss": "98", - "Sn": "18", - "Sa": "5.44", - "Sd": "0.83", - "Og": "2", - "Os": "183", - "On": "36", - "Oa": "5.1", - "Od": "1", - "Dp": "36", - "p": { - "24": { - "n": 4 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 7.5, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 486, - "n": "Kawashima", - "f": "Eiji", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "76", - "On": "16", - "Oa": "4.75", - "Od": "1.52", - "Gp": "16" - }, - "c": 41 - }, - { - "i": 747, - "n": "Kon\u00e9", - "f": "Lamine", - "p": "D", - "r": 15, - "s": { - "g": "1", - "s": "81", - "n": "15", - "a": "5.4", - "d": "0.9", - "Sg": "1", - "Ss": "71", - "Sn": "13", - "Sa": "5.5", - "Sd": "0.92", - "Og": "1", - "Os": "81", - "On": "15", - "Oa": "5.4", - "Od": "0.9", - "Dp": "15", - "p": { - "3": { - "n": 4.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1400, - "n": "Martin", - "f": "Jonas", - "p": "M", - "r": 22, - "s": { - "g": "3", - "s": "115", - "n": "20", - "a": "5.78", - "d": "0.98", - "Sg": "2", - "Ss": "65", - "Sn": "11", - "Sa": "5.91", - "Sd": "1", - "Og": "4", - "Os": "193", - "On": "36", - "Oa": "5.38", - "Od": "1.08", - "Mp": "35", - "Ap": "1", - "p": { - "24": { - "n": 4 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 8, - "g": 1 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 8, - "g": 2 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 1405, - "n": "Saadi", - "f": "Idriss", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Og": "3", - "Os": "53", - "On": "12", - "Oa": "4.42", - "Od": "0.95", - "Ap": "4", - "p": { - "24": { - "n": 3 - }, - "7": { - "n": 4, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1409, - "n": "Lienard", - "f": "Dimitri", - "p": "M", - "r": 13, - "s": { - "s": "72", - "n": "14", - "a": "5.18", - "d": "0.77", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Og": "2", - "Os": "157", - "On": "30", - "Oa": "5.25", - "Od": "0.89", - "Mp": "28", - "Dp": "2", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1413, - "n": "Ndour", - "f": "Abdallah", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "1.02", - "Dp": "3" - }, - "c": 41 - }, - { - "i": 1420, - "n": "Grimm", - "f": "Jeremy", - "p": "M", - "r": 7, - "s": { - "s": "23", - "n": "5", - "a": "4.7", - "d": "0.4", - "Os": "72", - "On": "15", - "Oa": "4.83", - "Od": "0.35", - "Mp": "9", - "p": { - "24": { - "n": 4 - }, - "1": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "9": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1428, - "n": "Kamara", - "f": "Bingourou", - "p": "G", - "r": 8, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Gp": "3", - "p": { - "24": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 1431, - "n": "Gon\u00e7alves", - "f": "Anthony", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5.1", - "d": "0.8", - "Og": "1", - "Os": "85", - "On": "18", - "Oa": "4.75", - "Od": "0.63", - "Mp": "12", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 4 - }, - "10": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1458, - "n": "Nuno da Costa", - "f": "", - "p": "A", - "r": 9, - "s": { - "g": "4", - "s": "96", - "n": "19", - "a": "5.05", - "d": "1.05", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "1", - "Og": "5", - "Os": "128", - "On": "26", - "Oa": "4.92", - "Od": "1", - "Mp": "1", - "Ap": "22", - "p": { - "24": { - "n": 4 - }, - "1": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 6, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1461, - "n": "Caci", - "f": "Anthony", - "p": "M", - "r": 8, - "s": { - "s": "77", - "n": "15", - "a": "5.13", - "d": "0.9", - "Ss": "36", - "Sn": "7", - "Sa": "5.21", - "Sd": "0.99", - "Os": "77", - "On": "15", - "Oa": "5.13", - "Od": "0.9", - "Mp": "4", - "Dp": "11", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6.5 - } - } - }, - "c": 41 - }, - { - "i": 1462, - "n": "Lala", - "f": "Kenny", - "p": "D", - "r": 19, - "s": { - "g": "3", - "s": "100", - "n": "19", - "a": "5.29", - "d": "1.39", - "Sg": "1", - "Ss": "37", - "Sn": "7", - "Sa": "5.29", - "Sd": "1.22", - "Og": "5", - "Os": "149", - "On": "30", - "Oa": "4.98", - "Od": "1.42", - "Mp": "13", - "Dp": "16", - "p": { - "24": { - "n": 4 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 3 - }, - "10": { - "n": 8 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 3.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 7.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1463, - "n": "Zohi", - "f": "K\u00e9vin", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "72", - "n": "15", - "a": "4.83", - "d": "0.67", - "Og": "1", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.68", - "Mp": "13", - "Ap": "2", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "11": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1871, - "n": "Carole", - "f": "Lionel", - "p": "D", - "r": 9, - "s": { - "s": "65", - "n": "13", - "a": "5", - "d": "0.44", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "65", - "On": "13", - "Oa": "5", - "Od": "0.44", - "Mp": "7", - "Dp": "6", - "p": { - "3": { - "n": 5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2043, - "n": "Bangou", - "f": "Duplexe Tchamba", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2077, - "n": "Aaneba", - "f": "Ismael", - "p": "D", - "r": 1, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "1", - "Dp": "1", - "p": { - "13": { - "n": 5 - }, - "14": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2289, - "n": "Zemzemi", - "f": "Moataz", - "p": "M", - "r": 5, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2309, - "n": "Mothiba", - "f": "Lebo", - "p": "A", - "r": 22, - "s": { - "g": "8", - "s": "98", - "n": "19", - "a": "5.18", - "d": "1.05", - "Og": "12", - "Os": "149", - "On": "30", - "Oa": "4.98", - "Od": "1.15", - "Ap": "30", - "p": { - "1": { - "n": 7, - "e": 2734, - "c": 12, - "g": 1 - }, - "2": { - "n": 4, - "e": 2746, - "c": 12 - }, - "3": { - "n": 4.5, - "e": 2754, - "c": 12 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "g": 1, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6, - "g": 1, - "s": 1 - }, - "9": { - "n": 7.5, - "g": 2 - }, - "10": { - "n": 6, - "g": 1, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2609, - "n": "Sels", - "f": "Matz", - "p": "G", - "r": 19, - "s": { - "s": "120", - "n": "21", - "a": "5.74", - "d": "1.02", - "Ss": "120", - "Sn": "21", - "Sa": "5.74", - "Sd": "1.02", - "Os": "120", - "On": "21", - "Oa": "5.74", - "Od": "1.02", - "Gp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 8 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 8 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 2679, - "n": "Sissoko", - "f": "Ibrahima", - "p": "M", - "r": 14, - "s": { - "g": "3", - "s": "111", - "n": "20", - "a": "5.55", - "d": "1.01", - "Sg": "2", - "Ss": "76", - "Sn": "14", - "Sa": "5.46", - "Sd": "1.11", - "Og": "3", - "Os": "111", - "On": "20", - "Oa": "5.55", - "Od": "1.01", - "Mp": "20", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 8, - "g": 1 - } - } - }, - "c": 41 - }, - { - "i": 2717, - "n": "Ajorque", - "f": "Ludovic", - "p": "A", - "r": 12, - "s": { - "g": "4", - "s": "52", - "n": "10", - "a": "5.25", - "d": "1.19", - "Sg": "3", - "Ss": "29", - "Sn": "5", - "Sa": "5.8", - "Sd": "1.33", - "Og": "4", - "Os": "52", - "On": "10", - "Oa": "5.25", - "Od": "1.19", - "Ap": "10", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 8, - "g": 2 - } - } - }, - "c": 41 - }, - { - "i": 2726, - "n": "Mitrovic", - "f": "Stefan", - "p": "D", - "r": 13, - "s": { - "ao": "1", - "s": "96", - "n": "19", - "a": "5.05", - "d": "0.76", - "Ss": "26", - "Sn": "5", - "Sa": "5.3", - "Sd": "0.6", - "Oao": "1", - "Os": "96", - "On": "19", - "Oa": "5.05", - "Od": "0.76", - "Dp": "19", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5, - "a": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2768, - "n": "Fofana", - "f": "Youssouf", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "38", - "n": "7", - "a": "5.5", - "d": "1.04", - "Sg": "1", - "Ss": "13", - "Sn": "2", - "Sa": "6.75", - "Sd": "1.25", - "Og": "1", - "Os": "38", - "On": "7", - "Oa": "5.5", - "Od": "1.04", - "Mp": "7", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 8, - "g": 1 - } - } - }, - "c": 41 - }, - { - "i": 2769, - "n": "Simakan", - "f": "Mohamed", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2820, - "n": "Pelletier", - "f": "Louis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3187, - "n": "Valentin", - "f": "Leon", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3188, - "n": "Karamoko", - "f": "Mamoudoou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 170, - "n": "Bodmer", - "f": "Mathieu", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "92", - "n": "20", - "a": "4.63", - "d": "0.61", - "Ss": "34", - "Sn": "8", - "Sa": "4.31", - "Sd": "0.5", - "Og": "2", - "Os": "131", - "On": "28", - "Oa": "4.7", - "Od": "0.62", - "Mp": "6", - "Dp": "12", - "Ap": "2", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 4, - "s": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 238, - "n": "Blin", - "f": "Alexis", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.81", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.94", - "Og": "1", - "Os": "90", - "On": "19", - "Oa": "4.74", - "Od": "0.68", - "Mp": "16", - "p": { - "5": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3 - }, - "21": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 309, - "n": "Dreyer", - "f": "Matthieu", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1397, - "n": "Dibassy", - "f": "Bakaye", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "96", - "n": "20", - "a": "4.8", - "d": "0.86", - "Sg": "1", - "Ss": "72", - "Sn": "15", - "Sa": "4.8", - "Sd": "0.83", - "Og": "2", - "Os": "170", - "On": "36", - "Oa": "4.72", - "Od": "1.04", - "Dp": "36", - "p": { - "33": { - "n": 2 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5, - "g": 1 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 42 - }, - { - "i": 1403, - "n": "Gurtner", - "f": "R\u00e9gis", - "p": "G", - "r": 19, - "s": { - "s": "114", - "n": "21", - "a": "5.45", - "d": "0.91", - "Ss": "114", - "Sn": "21", - "Sa": "5.45", - "Sd": "0.91", - "Os": "210", - "On": "38", - "Oa": "5.54", - "Od": "0.94", - "Gp": "38", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 8 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 1404, - "n": "Monconduit", - "f": "Thomas", - "p": "M", - "r": 11, - "s": { - "s": "82", - "n": "17", - "a": "4.85", - "d": "0.87", - "Ss": "77", - "Sn": "16", - "Sa": "4.84", - "Sd": "0.9", - "Og": "1", - "Os": "178", - "On": "34", - "Oa": "5.25", - "Od": "1.09", - "Mp": "34", - "p": { - "33": { - "n": 4 - }, - "4": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1408, - "n": "El Hajjam", - "f": "Oualid", - "p": "D", - "r": 6, - "s": { - "s": "38", - "n": "9", - "a": "4.22", - "d": "0.71", - "Os": "82", - "On": "19", - "Oa": "4.32", - "Od": "0.89", - "Mp": "2", - "Dp": "15", - "p": { - "33": { - "n": 3 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 3 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1416, - "n": "Konat\u00e9", - "f": "Moussa", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "55", - "n": "11", - "a": "5", - "d": "1.26", - "Og": "11", - "Os": "129", - "On": "26", - "Oa": "4.96", - "Od": "1.34", - "Ap": "24", - "p": { - "33": { - "n": 3 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 8.5, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1419, - "n": "Ad\u00e9non", - "f": "Khaled", - "p": "D", - "r": 12, - "s": { - "ao": "1", - "s": "83", - "n": "18", - "a": "4.64", - "d": "0.97", - "Oao": "1", - "Os": "166", - "On": "34", - "Oa": "4.9", - "Od": "1", - "Dp": "33", - "p": { - "33": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 3, - "a": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 1425, - "n": "Ielsch", - "f": "Julien", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Mp": "2" - }, - "c": 42 - }, - { - "i": 1437, - "n": "Koita", - "f": "Bachibou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1449, - "n": "Prince", - "f": "", - "p": "D", - "r": 13, - "s": { - "g": "1", - "ao": "1", - "s": "78", - "n": "17", - "a": "4.59", - "d": "1.14", - "Sao": "1", - "Ss": "60", - "Sn": "13", - "Sa": "4.62", - "Sd": "1.11", - "Og": "1", - "Oao": "1", - "Os": "154", - "On": "32", - "Oa": "4.81", - "Od": "1.04", - "Dp": "32", - "p": { - "33": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3, - "a": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 1453, - "n": "Cornette", - "f": "Quentin", - "p": "A", - "r": 1, - "s": { - "s": "17", - "n": "4", - "a": "4.25", - "d": "0.25", - "Os": "47", - "On": "10", - "Oa": "4.7", - "Od": "0.87", - "Mp": "5", - "Ap": "2", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 1454, - "n": "Talal", - "f": "Madih", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1460, - "n": "Banaziak", - "f": "Gauthier", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1538, - "n": "Zungu", - "f": "Bongani", - "p": "M", - "r": 1, - "s": { - "s": "11", - "n": "2", - "a": "5.75", - "d": "0.75", - "Os": "66", - "On": "13", - "Oa": "5.12", - "Od": "0.79", - "Mp": "13", - "p": { - "33": { - "n": 4 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1701, - "n": "Ganso", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "59", - "n": "12", - "a": "4.96", - "d": "0.69", - "Os": "59", - "On": "12", - "Oa": "4.96", - "Od": "0.69", - "Mp": "10", - "Ap": "2", - "p": { - "5": { - "n": 6, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 2235, - "n": "Mendoza", - "f": "John Stiven", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "62", - "n": "13", - "a": "4.81", - "d": "1.03", - "Sg": "1", - "Ss": "41", - "Sn": "9", - "Sa": "4.61", - "Sd": "0.97", - "Og": "3", - "Os": "114", - "On": "23", - "Oa": "4.98", - "Od": "1.03", - "Mp": "15", - "Ap": "7", - "p": { - "33": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 4.5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 2675, - "n": "Lefort", - "f": "Jordan", - "p": "D", - "r": 9, - "s": { - "s": "61", - "n": "13", - "a": "4.69", - "d": "1.14", - "Ss": "7", - "Sn": "2", - "Sa": "3.75", - "Sd": "0.25", - "Os": "61", - "On": "13", - "Oa": "4.69", - "Od": "1.14", - "Mp": "4", - "Dp": "9", - "p": { - "1": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6 - }, - "14": { - "n": 3 - }, - "15": { - "n": 4 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 2706, - "n": "Otero", - "f": "Juan Ferney", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "89", - "n": "19", - "a": "4.71", - "d": "0.85", - "Sg": "1", - "Ss": "31", - "Sn": "6", - "Sa": "5.17", - "Sd": "0.9", - "Og": "1", - "Os": "89", - "On": "19", - "Oa": "4.71", - "Od": "0.85", - "Mp": "7", - "Ap": "12", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 6, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4 - }, - "16": { - "n": 4 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 42 - }, - { - "i": 2728, - "n": "Gnahore", - "f": "Eddy", - "p": "M", - "r": 17, - "s": { - "g": "4", - "s": "104", - "n": "20", - "a": "5.23", - "d": "1.08", - "Sg": "2", - "Ss": "57", - "Sn": "12", - "Sa": "4.79", - "Sd": "1.05", - "Og": "4", - "Os": "104", - "On": "20", - "Oa": "5.23", - "Od": "1.08", - "Mp": "19", - "Ap": "1", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 3.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6, - "g": 1, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 2773, - "n": "Gauducheau", - "f": "Antonin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2774, - "n": "Gneba", - "f": "Martin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2775, - "n": "Traore", - "f": "Gaoussou", - "p": "M", - "r": 1, - "s": { - "s": "15", - "n": "3", - "a": "5.17", - "d": "0.24", - "Os": "15", - "On": "3", - "Oa": "5.17", - "Od": "0.24", - "Mp": "3", - "p": { - "1": { - "n": 5 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2776, - "n": "Ngando", - "f": "Jean-Claude", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2777, - "n": "Sy", - "f": "Sanasi", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2778, - "n": "Gendrey", - "f": "Valentin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2785, - "n": "Rabei", - "f": "Reda", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2789, - "n": "Timite", - "f": "Cheick", - "p": "M", - "r": 8, - "s": { - "s": "45", - "n": "10", - "a": "4.55", - "d": "0.42", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.43", - "Os": "45", - "On": "10", - "Oa": "4.55", - "Od": "0.42", - "Mp": "6", - "Ap": "4", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 2794, - "n": "Kurzawa", - "f": "Rafal", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "49", - "n": "11", - "a": "4.5", - "d": "0.74", - "Ss": "18", - "Sn": "4", - "Sa": "4.5", - "Og": "1", - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.74", - "Mp": "2", - "Ap": "9", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2796, - "n": "Krafth", - "f": "Emil", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "87", - "n": "19", - "a": "4.61", - "d": "0.66", - "Ss": "27", - "Sn": "6", - "Sa": "4.5", - "Sd": "0.41", - "Og": "1", - "Os": "87", - "On": "19", - "Oa": "4.61", - "Od": "0.66", - "Mp": "2", - "Dp": "17", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5, - "g": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 3.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 2832, - "n": "Saman Ghoddos", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "72", - "n": "15", - "a": "4.83", - "d": "1.11", - "Og": "2", - "Os": "72", - "On": "15", - "Oa": "4.83", - "Od": "1.11", - "Mp": "4", - "Ap": "11", - "p": { - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 7 - }, - "8": { - "n": 4 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2937, - "n": "Segarel", - "f": "Stanley", - "p": "A", - "r": 1, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "18": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2994, - "n": "Mathurin Sakho", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 87, - "n": "Diallo", - "f": "Moustapha", - "p": "M", - "r": 7, - "s": { - "s": "32", - "n": "7", - "a": "4.57", - "d": "1.02", - "Og": "1", - "Os": "76", - "On": "16", - "Oa": "4.75", - "Od": "1.13", - "Mp": "11", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 3 - } - } - }, - "c": 67 - }, - { - "i": 212, - "n": "Ferri", - "f": "Jordan", - "p": "M", - "r": 9, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "0.86", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "114", - "On": "23", - "Oa": "4.98", - "Od": "0.81", - "Mp": "14", - "p": { - "7": { - "n": 5, - "e": 2795, - "c": 18, - "s": 1 - }, - "10": { - "n": 5, - "e": 2824, - "c": 18, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 2833, - "c": 18 - }, - "12": { - "n": 5, - "e": 2844, - "c": 18, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 439, - "n": "Faitout Maouassa", - "f": "", - "p": "M", - "r": 12, - "s": { - "s": "52", - "n": "11", - "a": "4.77", - "d": "0.75", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "70", - "On": "15", - "Oa": "4.7", - "Od": "0.7", - "Mp": "1", - "Dp": "10", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "15": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 514, - "n": "Bernardoni", - "f": "Paul", - "p": "G", - "r": 16, - "s": { - "s": "112", - "n": "20", - "a": "5.63", - "d": "1.32", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "112", - "On": "20", - "Oa": "5.63", - "Od": "1.32", - "Gp": "20", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 8 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 2.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 1169, - "n": "Guillaume", - "f": "Baptiste", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.77", - "Og": "1", - "Os": "76", - "On": "17", - "Oa": "4.47", - "Od": "0.72", - "Mp": "1", - "Ap": "12", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2604, - "n": "Hsissane", - "f": "Abdelmalik", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2606, - "n": "Landre", - "f": "Lo\u00efck", - "p": "D", - "r": 8, - "s": { - "g": "1", - "s": "69", - "n": "14", - "a": "4.96", - "d": "0.92", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "69", - "On": "14", - "Oa": "4.96", - "Od": "0.92", - "Dp": "14", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 3 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 4 - }, - "16": { - "n": 6, - "g": 1, - "s": 1 - }, - "17": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 2607, - "n": "Lybohy", - "f": "Herve", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "43", - "n": "9", - "a": "4.83", - "d": "1.27", - "Og": "1", - "Os": "43", - "On": "9", - "Oa": "4.83", - "Od": "1.27", - "Dp": "9", - "p": { - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 7, - "g": 1 - }, - "15": { - "n": 6.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 3 - } - } - }, - "c": 67 - }, - { - "i": 2611, - "n": "Vlachodimos", - "f": "Panagiotis", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2612, - "n": "Cadamuro", - "f": "Liassine", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2619, - "n": "Valdivia", - "f": "Pierrick", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2649, - "n": "Harek", - "f": "Fethi", - "p": "D", - "r": 6, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.75", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.75", - "Dp": "2", - "p": { - "10": { - "n": 4 - }, - "16": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2651, - "n": "Guessoum", - "f": "Kelyan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2654, - "n": "Buades", - "f": "Lucas", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2663, - "n": "Ben Amar", - "f": "Sami", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2666, - "n": "Bozok", - "f": "Umut", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "86", - "n": "18", - "a": "4.78", - "d": "1.15", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "86", - "On": "18", - "Oa": "4.78", - "Od": "1.15", - "Ap": "18", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 2.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 3 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2674, - "n": "Marillat", - "f": "Yan", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2680, - "n": "Alakouch", - "f": "Sofiane", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "68", - "n": "14", - "a": "4.89", - "d": "0.83", - "Og": "1", - "Os": "68", - "On": "14", - "Oa": "4.89", - "Od": "0.83", - "Dp": "14", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 7.5, - "g": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2698, - "n": "Thioub", - "f": "Sada", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "101", - "n": "20", - "a": "5.08", - "d": "1.16", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "2", - "Os": "101", - "On": "20", - "Oa": "5.08", - "Od": "1.16", - "Mp": "11", - "Ap": "9", - "p": { - "1": { - "n": 8, - "g": 1 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2699, - "n": "Depres", - "f": "Clement", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "76", - "n": "16", - "a": "4.75", - "d": "0.83", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "76", - "On": "16", - "Oa": "4.75", - "Od": "0.83", - "Ap": "16", - "p": { - "1": { - "n": 7, - "g": 1, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2700, - "n": "Miguel", - "f": "Florian", - "p": "D", - "r": 9, - "s": { - "s": "17", - "n": "4", - "a": "4.38", - "d": "0.96", - "Os": "17", - "On": "4", - "Oa": "4.38", - "Od": "0.96", - "Dp": "4", - "p": { - "1": { - "n": 3 - }, - "3": { - "n": 5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2702, - "n": "Bobichon", - "f": "Antonin", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "65", - "n": "13", - "a": "5", - "d": "0.96", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "2", - "Os": "65", - "On": "13", - "Oa": "5", - "Od": "0.96", - "Mp": "8", - "Ap": "5", - "p": { - "4": { - "n": 6, - "g": 1, - "s": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 7 - }, - "7": { - "n": 5 - }, - "8": { - "n": 3 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "19": { - "n": 4, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2704, - "n": "Valls", - "f": "Theo", - "p": "M", - "r": 11, - "s": { - "s": "91", - "n": "18", - "a": "5.06", - "d": "0.55", - "Os": "91", - "On": "18", - "Oa": "5.06", - "Od": "0.55", - "Mp": "18", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2709, - "n": "Briancon", - "f": "Anthony", - "p": "D", - "r": 18, - "s": { - "g": "2", - "s": "98", - "n": "19", - "a": "5.18", - "d": "1.36", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "2", - "Os": "98", - "On": "19", - "Oa": "5.18", - "Od": "1.36", - "Dp": "19", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "8": { - "n": 3 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 2.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2716, - "n": "Paquiez", - "f": "Gaetan", - "p": "D", - "r": 10, - "s": { - "s": "46", - "n": "10", - "a": "4.65", - "d": "0.87", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "46", - "On": "10", - "Oa": "4.65", - "Od": "0.87", - "Dp": "10", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - }, - "4": { - "n": 3 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "19": { - "n": 3 - }, - "21": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 2723, - "n": "Ripart", - "f": "Renaud", - "p": "A", - "r": 15, - "s": { - "g": "2", - "s": "102", - "n": "20", - "a": "5.13", - "d": "1.02", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "102", - "On": "20", - "Oa": "5.13", - "Od": "1.02", - "Mp": "6", - "Dp": "5", - "Ap": "9", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 7 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3 - }, - "21": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2729, - "n": "Valette", - "f": "Baptiste", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2731, - "n": "Alioui", - "f": "Rachid", - "p": "A", - "r": 14, - "s": { - "g": "4", - "s": "67", - "n": "13", - "a": "5.15", - "d": "0.91", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "4", - "Os": "67", - "On": "13", - "Oa": "5.15", - "Od": "0.91", - "Ap": "13", - "p": { - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 7, - "g": 2, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "19": { - "n": 4 - }, - "21": { - "n": 6 - } - } - }, - "c": 67 - }, - { - "i": 2732, - "n": "Sourzac", - "f": "Martin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2733, - "n": "Savanier", - "f": "T\u00e9ji", - "p": "M", - "r": 17, - "s": { - "g": "2", - "s": "89", - "n": "15", - "a": "5.93", - "d": "1.05", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "2", - "Os": "89", - "On": "15", - "Oa": "5.93", - "Od": "1.05", - "Mp": "15", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 6, - "g": 1 - }, - "10": { - "n": 7 - }, - "11": { - "n": 5 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2790, - "n": "Bouanga", - "f": "Denis", - "p": "M", - "r": 15, - "s": { - "g": "4", - "s": "83", - "n": "17", - "a": "4.91", - "d": "1.19", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "4", - "Os": "83", - "On": "17", - "Oa": "4.91", - "Od": "1.19", - "Mp": "11", - "Ap": "6", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 8, - "g": 2 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2957, - "n": "Lionel Dias", - "f": "Lucas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 346, - "n": "Abdelhamid", - "f": "Yunis", - "p": "D", - "r": 23, - "s": { - "s": "115", - "n": "21", - "a": "5.5", - "d": "0.89", - "Ss": "115", - "Sn": "21", - "Sa": "5.5", - "Sd": "0.89", - "Os": "115", - "On": "21", - "Oa": "5.5", - "Od": "0.89", - "Dp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 350, - "n": "Martin", - "f": "Marvin", - "p": "M", - "r": 11, - "s": { - "s": "48", - "n": "10", - "a": "4.8", - "d": "0.51", - "Os": "48", - "On": "10", - "Oa": "4.8", - "Od": "0.51", - "Mp": "10", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 563, - "n": "Cafaro", - "f": "Mathieu", - "p": "M", - "r": 14, - "s": { - "g": "3", - "s": "96", - "n": "19", - "a": "5.05", - "d": "0.9", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.5", - "Sd": "1.06", - "Og": "3", - "Os": "96", - "On": "19", - "Oa": "5.05", - "Od": "0.9", - "Mp": "18", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 7, - "g": 1, - "s": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 1144, - "n": "Sheyi Ojo", - "f": "", - "p": "M", - "r": 9, - "s": { - "s": "57", - "n": "12", - "a": "4.75", - "d": "0.43", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.25", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.43", - "Mp": "11", - "Ap": "1", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 1410, - "n": "Dingome", - "f": "Tristan", - "p": "M", - "r": 7, - "s": { - "s": "24", - "n": "5", - "a": "4.9", - "d": "0.49", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.25", - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "0.49", - "Mp": "5", - "p": { - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 1543, - "n": "Suk Hyun-Jun", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "62", - "n": "14", - "a": "4.46", - "d": "0.77", - "Og": "2", - "Os": "111", - "On": "26", - "Oa": "4.29", - "Od": "0.74", - "Ap": "18", - "p": { - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "13": { - "n": 4, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 2608, - "n": "Chavarria", - "f": "Pablo", - "p": "A", - "r": 14, - "s": { - "g": "3", - "s": "89", - "n": "19", - "a": "4.71", - "d": "0.77", - "Sg": "1", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.75", - "Og": "3", - "Os": "89", - "On": "19", - "Oa": "4.71", - "Od": "0.77", - "Mp": "1", - "Ap": "18", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5.5, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 68 - }, - { - "i": 2610, - "n": "M\u00e9tanire", - "f": "Romain", - "p": "D", - "r": 6, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "1.02", - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "1.02", - "Dp": "5", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - }, - "7": { - "n": 4.5 - }, - "17": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2615, - "n": "Fontaine", - "f": "Thomas", - "p": "D", - "r": 8, - "s": { - "s": "26", - "n": "5", - "a": "5.2", - "d": "0.51", - "Os": "26", - "On": "5", - "Oa": "5.2", - "Od": "0.51", - "Dp": "5", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "12": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2620, - "n": "Ngamukol", - "f": "Anatole", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2647, - "n": "Costa", - "f": "Logan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2648, - "n": "Carrasso", - "f": "Johann", - "p": "G", - "r": 4, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2650, - "n": "Kyei", - "f": "Scott", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2656, - "n": "Bana", - "f": "Moussa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2660, - "n": "Piechocki", - "f": "Virgile", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2662, - "n": "Romao", - "f": "Jacques-Alaixys", - "p": "M", - "r": 18, - "s": { - "s": "110", - "n": "20", - "a": "5.53", - "d": "0.77", - "Ss": "46", - "Sn": "8", - "Sa": "5.75", - "Sd": "0.75", - "Os": "110", - "On": "20", - "Oa": "5.53", - "Od": "0.77", - "Mp": "20", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 7 - } - } - }, - "c": 68 - }, - { - "i": 2667, - "n": "Konan", - "f": "Ghislain", - "p": "D", - "r": 17, - "s": { - "s": "103", - "n": "20", - "a": "5.18", - "d": "0.97", - "Os": "103", - "On": "20", - "Oa": "5.18", - "Od": "0.97", - "Dp": "20", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2673, - "n": "Oudin", - "f": "Remi", - "p": "M", - "r": 12, - "s": { - "g": "4", - "s": "99", - "n": "20", - "a": "4.95", - "d": "1.05", - "Sg": "2", - "Ss": "29", - "Sn": "6", - "Sa": "4.92", - "Sd": "1.17", - "Og": "4", - "Os": "99", - "On": "20", - "Oa": "4.95", - "Od": "1.05", - "Mp": "18", - "Ap": "2", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 8, - "g": 2 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 2676, - "n": "Mendy", - "f": "Edouard", - "p": "G", - "r": 23, - "s": { - "s": "122", - "n": "21", - "a": "5.83", - "d": "1.11", - "Ss": "122", - "Sn": "21", - "Sa": "5.83", - "Sd": "1.11", - "Os": "122", - "On": "21", - "Oa": "5.83", - "Od": "1.11", - "Gp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 7.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 7 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 7 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 7.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2683, - "n": "Disasi", - "f": "Axel", - "p": "D", - "r": 4, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "3": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2694, - "n": "Lemaitre", - "f": "Nicolas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2703, - "n": "Kyei", - "f": "Grejohn", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2705, - "n": "Doumbia", - "f": "Moussa", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "77", - "n": "15", - "a": "5.17", - "d": "1.01", - "Og": "2", - "Os": "77", - "On": "15", - "Oa": "5.17", - "Od": "1.01", - "Mp": "12", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2708, - "n": "Mbemba", - "f": "Nolan", - "p": "M", - "r": 6, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.38", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Os": "28", - "On": "6", - "Oa": "4.75", - "Od": "0.38", - "Mp": "5", - "Dp": "1", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2715, - "n": "Kamara", - "f": "Hassane", - "p": "M", - "r": 7, - "s": { - "s": "29", - "n": "6", - "a": "4.92", - "d": "0.45", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "29", - "On": "6", - "Oa": "4.92", - "Od": "0.45", - "Mp": "5", - "Dp": "1", - "p": { - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 68 - }, - { - "i": 2724, - "n": "Chavalerin", - "f": "Xavier", - "p": "M", - "r": 20, - "s": { - "g": "2", - "s": "109", - "n": "20", - "a": "5.48", - "d": "0.64", - "Sg": "1", - "Ss": "61", - "Sn": "11", - "Sa": "5.59", - "Sd": "0.67", - "Og": "2", - "Os": "109", - "On": "20", - "Oa": "5.48", - "Od": "0.64", - "Mp": "20", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "g": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 2730, - "n": "Cakin", - "f": "Hendrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2770, - "n": "Bahanack", - "f": "Patrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2823, - "n": "Engels", - "f": "Bj\u00f6rn", - "p": "D", - "r": 19, - "s": { - "g": "1", - "s": "92", - "n": "17", - "a": "5.44", - "d": "0.66", - "Sg": "1", - "Ss": "92", - "Sn": "17", - "Sa": "5.44", - "Sd": "0.66", - "Og": "1", - "Os": "92", - "On": "17", - "Oa": "5.44", - "Od": "0.66", - "Dp": "17", - "p": { - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2858, - "n": "Pinson", - "f": "Virgile", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2862, - "n": "Foket", - "f": "Thomas", - "p": "D", - "r": 11, - "s": { - "s": "80", - "n": "16", - "a": "5.03", - "d": "0.54", - "Ss": "69", - "Sn": "14", - "Sa": "4.96", - "Sd": "0.55", - "Os": "80", - "On": "16", - "Oa": "5.03", - "Od": "0.54", - "Dp": "16", - "p": { - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 2951, - "n": "Dia", - "f": "Boulaye", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - } - ], - "c": { - "2": { - "n": "Paris", - "rn": "Paris Saint-Germain", - "cn": "Paris-Saint-Germain", - "a": "PAR", - "l": 1, - "el": 1332, - "s": { - "p": 53 - }, - "nM": 2949, - "nMWC": "0.8110", - "pM": { - "3": 2760, - "4": 2767, - "5": 2780, - "6": 2789, - "7": 2800, - "9": 2820, - "10": 2828, - "13": 2857, - "14": 2869, - "16": 2891, - "19": 2917, - "20": 2922, - "21": 2938, - "1": 2740, - "2": 2745, - "8": 2807, - "12": 2848, - "15": 2873, - "37": 1133, - "11": 2837 - }, - "DMI": [ - 2789, - 1133 - ] - }, - "3": { - "n": "Bordeaux", - "rn": "Girondins de Bordeaux", - "cn": "Girondins-de-Bordeaux", - "a": "BOD", - "l": 1, - "el": 1087, - "s": { - "p": 28 - }, - "nM": 2950, - "nMWC": "0.4942", - "pM": { - "15": 2873, - "1": 2733, - "2": 2751, - "3": 2753, - "4": 2769, - "5": 2773, - "10": 2825, - "11": 2834, - "12": 2844, - "14": 2864, - "17": 2892, - "20": 2929, - "21": 2933, - "24": 1003, - "6": 2783, - "7": 2793, - "8": 2808, - "9": 2814, - "13": 2853, - "16": 2883, - "19": 2913 - }, - "DMI": [ - 2733, - 1003 - ] - }, - "4": { - "n": "Saint Etienne", - "rn": "AS Saint-Etienne", - "cn": "AS-Saint-Etienne", - "a": "STE", - "l": 1, - "el": 1094, - "s": { - "p": 36 - }, - "nM": 2947, - "nMWC": "0.5701", - "pM": { - "5": 2780, - "16": 2883, - "31": 1070, - "1": 2741, - "2": 2750, - "6": 2790, - "7": 2801, - "9": 2816, - "12": 2850, - "13": 2860, - "14": 2865, - "15": 2880, - "17": 2899, - "20": 2925, - "21": 2941, - "3": 2757, - "4": 2770, - "8": 2810, - "10": 2830, - "11": 2839, - "18": 2909, - "19": 2920 - }, - "DMI": [ - 1070, - 2880 - ] - }, - "5": { - "n": "Caen", - "rn": "SM Caen", - "cn": "SM-Caen", - "a": "CAE", - "l": 1, - "el": 927, - "s": { - "p": 18 - }, - "nM": 2946, - "nMWC": "0.2477", - "pM": { - "1": 2740, - "13": 2853, - "6": 2790, - "2": 2743, - "3": 2758, - "4": 2763, - "5": 2774, - "8": 2803, - "9": 2817, - "10": 2822, - "11": 2836, - "12": 2842, - "15": 2872, - "16": 2884, - "18": 2903, - "19": 2918, - "20": 2923, - "21": 2934, - "7": 2794, - "14": 2863, - "17": 2900, - "31": 1065 - }, - "DMI": [ - 2794, - 1065 - ] - }, - "7": { - "n": "Dijon", - "rn": "Dijon FCO", - "cn": "Dijon-FCO", - "a": "DIJ", - "l": 1, - "el": 959, - "s": { - "p": 17 - }, - "nM": 2943, - "nMWC": "0.4285", - "pM": { - "14": 2864, - "21": 2933, - "19": 2920, - "4": 2763, - "1": 2737, - "2": 2744, - "5": 2775, - "7": 2795, - "8": 2811, - "9": 2812, - "10": 2823, - "26": 1020, - "3": 2759, - "6": 2788, - "11": 2838, - "12": 2843, - "13": 2856, - "15": 2881, - "16": 2885, - "17": 2898, - "20": 2924 - }, - "DMI": [ - 1020, - 2838 - ] - }, - "8": { - "n": "Nantes", - "rn": "FC Nantes", - "cn": "FC-Nantes", - "a": "NTE", - "l": 1, - "el": 1045, - "s": { - "p": 23 - }, - "nM": 2947, - "nMWC": "0.4299", - "pM": { - "19": 2917, - "9": 2814, - "31": 1070, - "15": 2880, - "3": 2758, - "5": 2778, - "2": 2744, - "1": 2738, - "4": 2771, - "6": 2784, - "7": 2798, - "8": 2805, - "10": 2826, - "11": 2832, - "12": 2846, - "13": 2859, - "14": 2867, - "17": 2896, - "18": 2908, - "20": 2928, - "21": 2932, - "16": 2888 - }, - "DMI": [ - 1070, - 2880 - ] - }, - "9": { - "n": "Marseille", - "rn": "Olympique de Marseille", - "cn": "Olympique-de-Marseille", - "a": "MRS", - "l": 1, - "el": 1130, - "s": { - "p": 31 - }, - "nM": 2945, - "nMWC": "0.4856", - "pM": { - "11": 2837, - "17": 2899, - "9": 2817, - "21": 2934, - "15": 2876, - "13": 2856, - "16": 2888, - "34": 1099, - "1": 2736, - "2": 2747, - "3": 2756, - "4": 2766, - "5": 2776, - "6": 2785, - "7": 2796, - "8": 2804, - "10": 2827, - "12": 2845, - "14": 2862, - "19": 2912, - "20": 2927 - }, - "DMI": [ - 1099, - 2804 - ] - }, - "10": { - "n": "Toulouse", - "rn": "Toulouse FC", - "cn": "Toulouse-FC", - "a": "TLS", - "l": 1, - "el": 1039, - "s": { - "p": 25 - }, - "nM": 2951, - "nMWC": "0.5086", - "pM": { - "14": 2869, - "2": 2751, - "7": 2801, - "18": 2903, - "16": 2890, - "15": 2881, - "10": 2826, - "1": 2736, - "34": 1104, - "3": 2761, - "4": 2764, - "5": 2781, - "6": 2782, - "8": 2809, - "9": 2821, - "11": 2841, - "12": 2851, - "13": 2861, - "17": 2901, - "19": 2914, - "20": 2931, - "21": 2937 - }, - "DMI": [ - 1104, - 2782 - ] - }, - "12": { - "n": "Lille", - "rn": "LOSC", - "cn": "LOSC", - "a": "LIL", - "l": 1, - "el": 1140, - "s": { - "p": 40 - }, - "nM": 2945, - "nMWC": "0.5144", - "pM": { - "12": 2848, - "7": 2793, - "9": 2816, - "11": 2836, - "20": 2923, - "17": 2894, - "10": 2823, - "6": 2784, - "34": 1099, - "8": 2804, - "19": 2914, - "1": 2734, - "2": 2746, - "3": 2754, - "4": 2762, - "5": 2772, - "13": 2855, - "21": 2935, - "14": 2868, - "15": 2875, - "16": 2887, - "18": 2910 - }, - "DMI": [ - 1099, - 2804 - ] - }, - "13": { - "n": "Monaco", - "rn": "AS Monaco", - "cn": "AS-Monaco", - "a": "MON", - "l": 1, - "el": 1009, - "s": { - "p": 15 - }, - "nM": 2943, - "nMWC": "0.5715", - "pM": { - "13": 2857, - "3": 2753, - "8": 2810, - "14": 2863, - "26": 1020, - "11": 2838, - "1": 2738, - "4": 2766, - "20": 2927, - "5": 2781, - "2": 2746, - "6": 2786, - "7": 2797, - "9": 2818, - "10": 2831, - "12": 2849, - "15": 2877, - "16": 2882, - "17": 2895, - "18": 2906, - "19": 2915, - "21": 2936 - }, - "DMI": [ - 1020, - 2838 - ] - }, - "14": { - "n": "Guingamp", - "rn": "EA Guingamp", - "cn": "EA-Guingamp", - "a": "GIN", - "l": 1, - "el": 878, - "s": { - "p": 14 - }, - "nM": 2944, - "nMWC": "0.2564", - "pM": { - "21": 2938, - "2": 2745, - "6": 2783, - "1": 2741, - "20": 2925, - "10": 2822, - "14": 2870, - "16": 2885, - "12": 2846, - "5": 2776, - "4": 2764, - "3": 2754, - "19": 2915, - "11": 2835, - "15": 2874, - "17": 2893, - "18": 2905, - "7": 2799, - "8": 2802, - "9": 2815, - "13": 2854 - }, - "DMI": [ - 2870 - ] - }, - "15": { - "n": "Montpellier", - "rn": "Montpellier H\u00e9rault SC", - "cn": "Montpellier-Herault-SC", - "a": "MTP", - "l": 1, - "el": 1120, - "s": { - "p": 32 - }, - "nM": 2946, - "nMWC": "0.7523", - "pM": { - "10": 2825, - "3": 2757, - "7": 2794, - "31": 1065, - "1": 2737, - "20": 2924, - "18": 2908, - "12": 2845, - "11": 2841, - "16": 2887, - "15": 2877, - "9": 2815, - "2": 2742, - "4": 2768, - "5": 2777, - "6": 2787, - "8": 2806, - "13": 2852, - "14": 2866, - "19": 2916, - "21": 2940 - }, - "DMI": [ - 2794, - 1065 - ] - }, - "16": { - "n": "Angers", - "rn": "Angers SCO", - "cn": "Angers-SCO", - "a": "ANG", - "l": 1, - "el": 1033, - "s": { - "p": 23 - }, - "nM": 2951, - "nMWC": "0.4914", - "pM": { - "3": 2760, - "17": 2892, - "12": 2850, - "15": 2872, - "10": 2829, - "5": 2775, - "14": 2867, - "21": 2932, - "19": 2912, - "34": 1104, - "6": 2782, - "4": 2762, - "7": 2797, - "8": 2802, - "13": 2852, - "1": 2732, - "2": 2749, - "9": 2813, - "16": 2889, - "18": 2902, - "11": 2833 - }, - "DMI": [ - 1104, - 2782 - ] - }, - "18": { - "n": "Lyon", - "rn": "Olympique Lyonnais", - "cn": "Olympique-Lyonnais", - "a": "LYO", - "l": 1, - "el": 1176, - "s": { - "p": 37 - }, - "nM": 2942, - "nMWC": "0.7889", - "pM": { - "9": 2820, - "12": 2844, - "14": 2865, - "21": 2941, - "5": 2774, - "7": 2795, - "8": 2805, - "6": 2785, - "17": 2901, - "15": 2875, - "18": 2906, - "13": 2854, - "1": 2735, - "19": 2916, - "11": 2833, - "33": 1088, - "3": 2755, - "4": 2765, - "16": 2886, - "20": 2926, - "2": 2748, - "10": 2824 - }, - "DMI": [ - 2735, - 1088 - ] - }, - "19": { - "n": "Nice", - "rn": "OGC Nice", - "cn": "OGC-Nice", - "a": "NCE", - "l": 1, - "el": 1100, - "s": { - "p": 31 - }, - "nM": 2948, - "nMWC": "0.5445", - "pM": { - "8": 2807, - "11": 2834, - "20": 2929, - "18": 2909, - "2": 2743, - "1": 2739, - "3": 2759, - "7": 2798, - "10": 2827, - "9": 2821, - "14": 2868, - "17": 2895, - "15": 2874, - "6": 2787, - "16": 2889, - "4": 2765, - "5": 2779, - "12": 2847, - "13": 2858, - "19": 2921, - "21": 2939 - }, - "DMI": [ - 2858 - ] - }, - "20": { - "n": "Rennes", - "rn": "Stade Rennais FC", - "cn": "Stade-Rennais-FC", - "a": "REN", - "l": 1, - "el": 1079, - "s": { - "p": 30 - }, - "nM": 2949, - "nMWC": "0.1890", - "pM": { - "6": 2789, - "37": 1133, - "4": 2769, - "10": 2830, - "12": 2842, - "11": 2840, - "17": 2898, - "13": 2859, - "20": 2928, - "3": 2756, - "8": 2809, - "1": 2734, - "9": 2818, - "18": 2905, - "14": 2866, - "21": 2940, - "2": 2749, - "16": 2886, - "5": 2779, - "7": 2792, - "15": 2879, - "19": 2919 - }, - "DMI": [ - 2789, - 1133 - ] - }, - "41": { - "n": "Strasbourg", - "rn": "RC Strasbourg Alsace", - "cn": "RC-Strasbourg-Alsace", - "a": "STB", - "l": 1, - "el": 1091, - "s": { - "p": 32 - }, - "nM": 2950, - "nMWC": "0.5058", - "pM": { - "16": 2891, - "1": 2733, - "24": 1003, - "2": 2750, - "17": 2900, - "18": 2911, - "8": 2811, - "4": 2771, - "7": 2796, - "12": 2851, - "20": 2931, - "13": 2855, - "10": 2831, - "21": 2936, - "11": 2835, - "5": 2777, - "9": 2813, - "3": 2755, - "19": 2921, - "15": 2879, - "14": 2871, - "6": 2791 - }, - "DMI": [ - 2733, - 1003 - ] - }, - "42": { - "n": "Amiens", - "rn": "Amiens SC", - "cn": "Amiens-SC", - "a": "AMI", - "l": 1, - "el": 947, - "s": { - "p": 18 - }, - "nM": 2942, - "nMWC": "0.2111", - "pM": { - "10": 2828, - "20": 2922, - "19": 2913, - "4": 2770, - "8": 2803, - "9": 2812, - "11": 2832, - "14": 2862, - "13": 2861, - "5": 2772, - "21": 2935, - "16": 2882, - "17": 2893, - "1": 2735, - "2": 2742, - "3": 2752, - "18": 2902, - "33": 1088, - "12": 2847, - "7": 2792, - "6": 2791, - "15": 2878 - }, - "DMI": [ - 2735, - 1088 - ] - }, - "67": { - "n": "N\u00eemes", - "rn": "N\u00eemes Olympique", - "cn": "Nimes-Olympique", - "a": "NIM", - "l": 1, - "el": 1069, - "s": { - "p": 26 - }, - "nM": 2948, - "nMWC": "0.4555", - "pM": { - "4": 2767, - "5": 2773, - "11": 2839, - "16": 2884, - "9": 2819, - "12": 2843, - "17": 2896, - "2": 2747, - "3": 2761, - "21": 2937, - "18": 2910, - "6": 2786, - "7": 2799, - "8": 2806, - "1": 2732, - "10": 2824, - "13": 2858, - "19": 2919, - "14": 2871, - "15": 2878 - }, - "DMI": [ - 2858 - ] - }, - "68": { - "n": "Reims", - "rn": "Stade de Reims", - "cn": "Stade-de-Reims", - "a": "REI", - "l": 1, - "el": 1063, - "s": { - "p": 28 - }, - "nM": 2944, - "nMWC": "0.7436", - "pM": { - "7": 2800, - "8": 2808, - "13": 2860, - "19": 2918, - "1": 2739, - "5": 2778, - "9": 2819, - "10": 2829, - "11": 2840, - "14": 2870, - "15": 2876, - "16": 2890, - "17": 2894, - "18": 2911, - "6": 2788, - "12": 2849, - "3": 2752, - "4": 2768, - "20": 2926, - "2": 2748, - "21": 2939 - }, - "DMI": [ - 2870 - ] - } - }, - "op": { - "23": { - "n": "Burnley", - "l": 2, - "el": 988 - }, - "25": { - "n": "Chelsea", - "l": 2, - "el": 1139 - }, - "26": { - "n": "Crystal Palace", - "l": 2, - "el": 1015 - }, - "22": { - "n": "Everton", - "l": 2, - "el": 1014 - }, - "69": { - "n": "Wolverhampton", - "l": 2, - "el": 1063 - }, - "29": { - "n": "Leicester", - "l": 2, - "el": 1020 - }, - "35": { - "n": "Southampton", - "l": 2, - "el": 1043 - } - }, - "e": { - "2760": { - "d": 3, - "dB": "2018-08-25T17:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 2, - "t2": 16 - }, - "2767": { - "d": 4, - "dB": "2018-09-01T15:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 67, - "t2": 2 - }, - "2780": { - "d": 5, - "dB": "2018-09-14T18:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 2, - "t2": 4 - }, - "2789": { - "d": 6, - "dB": "2018-09-23T13:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 20, - "t2": 2 - }, - "2800": { - "d": 7, - "dB": "2018-09-26T19:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 2, - "t2": 68 - }, - "2820": { - "d": 9, - "dB": "2018-10-07T19:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 2, - "t2": 18 - }, - "2828": { - "d": 10, - "dB": "2018-10-20T15:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 2, - "t2": 42 - }, - "2857": { - "d": 13, - "dB": "2018-11-11T20:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 13, - "t2": 2 - }, - "2869": { - "d": 14, - "dB": "2018-11-24T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 10 - }, - "2891": { - "d": 16, - "dB": "2018-12-05T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 2 - }, - "2917": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 8 - }, - "2922": { - "d": 20, - "dB": "2019-01-12T16:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 42, - "t2": 2 - }, - "2938": { - "d": 21, - "dB": "2019-01-19T16:00:00Z", - "t1s": 9, - "t2s": 0, - "t1": 2, - "t2": 14 - }, - "2740": { - "d": 1, - "dB": "2018-08-12T21:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 2, - "t2": 5 - }, - "2745": { - "d": 2, - "dB": "2018-08-18T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 2 - }, - "2807": { - "d": 8, - "dB": "2018-09-29T15:15:00Z", - "t1s": 0, - "t2s": 3, - "t1": 19, - "t2": 2 - }, - "2848": { - "d": 12, - "dB": "2018-11-02T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 2, - "t2": 12 - }, - "2873": { - "d": 15, - "dB": "2018-12-02T20:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 3, - "t2": 2 - }, - "1133": { - "d": 37, - "dB": "2018-05-12T19:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 2, - "t2": 20 - }, - "2837": { - "d": 11, - "dB": "2018-10-28T20:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 9, - "t2": 2 - }, - "2733": { - "d": 1, - "dB": "2018-08-12T17:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 3, - "t2": 41 - }, - "2751": { - "d": 2, - "dB": "2018-08-19T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 10, - "t2": 3 - }, - "2753": { - "d": 3, - "dB": "2018-08-26T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 3, - "t2": 13 - }, - "2769": { - "d": 4, - "dB": "2018-09-02T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 20, - "t2": 3 - }, - "2773": { - "d": 5, - "dB": "2018-09-16T15:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 3, - "t2": 67 - }, - "2825": { - "d": 10, - "dB": "2018-10-21T13:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 15, - "t2": 3 - }, - "2834": { - "d": 11, - "dB": "2018-10-28T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 19 - }, - "2844": { - "d": 12, - "dB": "2018-11-03T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 3 - }, - "2864": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 7, - "t2": 3 - }, - "2892": { - "d": 17, - "dB": "2019-01-15T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 3 - }, - "2929": { - "d": 20, - "dB": "2019-01-12T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 3 - }, - "2933": { - "d": 21, - "dB": "2019-01-20T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 3, - "t2": 7 - }, - "1003": { - "d": 24, - "dB": "2018-02-03T19:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 41, - "t2": 3 - }, - "2783": { - "d": 6, - "dB": "2018-09-23T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 3 - }, - "2793": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 3, - "t2": 12 - }, - "2808": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 68, - "t2": 3 - }, - "2814": { - "d": 9, - "dB": "2018-10-07T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 3, - "t2": 8 - }, - "2853": { - "d": 13, - "dB": "2018-11-11T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 3, - "t2": 5 - }, - "2883": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 3, - "t2": 4 - }, - "2913": { - "d": 19, - "dB": "2018-12-23T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 3, - "t2": 42 - }, - "1070": { - "d": 31, - "dB": "2018-04-01T15:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 8, - "t2": 4 - }, - "2741": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 14 - }, - "2750": { - "d": 2, - "dB": "2018-08-19T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 4 - }, - "2790": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 5 - }, - "2801": { - "d": 7, - "dB": "2018-09-25T19:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 10, - "t2": 4 - }, - "2816": { - "d": 9, - "dB": "2018-10-06T15:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 12, - "t2": 4 - }, - "2850": { - "d": 12, - "dB": "2018-11-04T16:00:00Z", - "t1s": 4, - "t2s": 3, - "t1": 4, - "t2": 16 - }, - "2860": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 68 - }, - "2865": { - "d": 14, - "dB": "2018-11-23T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 18, - "t2": 4 - }, - "2880": { - "d": 15, - "dB": "2018-11-30T19:45:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 8 - }, - "2899": { - "d": 17, - "dB": "2019-01-16T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 9 - }, - "2925": { - "d": 20, - "dB": "2019-01-12T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 14, - "t2": 4 - }, - "2941": { - "d": 21, - "dB": "2019-01-20T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 4, - "t2": 18 - }, - "2757": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 15, - "t2": 4 - }, - "2770": { - "d": 4, - "dB": "2018-09-02T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 4, - "t2": 42 - }, - "2810": { - "d": 8, - "dB": "2018-09-28T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 13 - }, - "2830": { - "d": 10, - "dB": "2018-10-21T15:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 4, - "t2": 20 - }, - "2839": { - "d": 11, - "dB": "2018-10-26T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 67, - "t2": 4 - }, - "2909": { - "d": 18, - "dB": "2018-12-16T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 4 - }, - "2920": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 7 - }, - "2743": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 5, - "t2": 19 - }, - "2758": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 5 - }, - "2763": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 7, - "t2": 5 - }, - "2774": { - "d": 5, - "dB": "2018-09-15T15:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 5, - "t2": 18 - }, - "2803": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 42 - }, - "2817": { - "d": 9, - "dB": "2018-10-07T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 5 - }, - "2822": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 5, - "t2": 14 - }, - "2836": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 12, - "t2": 5 - }, - "2842": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 20 - }, - "2872": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 5 - }, - "2884": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 67 - }, - "2903": { - "d": 18, - "dB": "2018-12-18T18:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 5, - "t2": 10 - }, - "2918": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 68, - "t2": 5 - }, - "2923": { - "d": 20, - "dB": "2019-01-11T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 5, - "t2": 12 - }, - "2934": { - "d": 21, - "dB": "2019-01-20T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 9 - }, - "2794": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 5, - "t2": 15 - }, - "2863": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 13 - }, - "2900": { - "d": 17, - "dB": "2018-12-09T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 41, - "t2": 5 - }, - "1065": { - "d": 31, - "dB": "2018-04-01T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 5, - "t2": 15 - }, - "2739": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 68 - }, - "2778": { - "d": 5, - "dB": "2018-09-16T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 8, - "t2": 68 - }, - "2819": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 67, - "t2": 68 - }, - "2829": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 16 - }, - "2840": { - "d": 11, - "dB": "2018-10-28T14:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 20, - "t2": 68 - }, - "2870": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 14 - }, - "2876": { - "d": 15, - "dB": "2018-12-02T16:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 9, - "t2": 68 - }, - "2890": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 68, - "t2": 10 - }, - "2894": { - "d": 17, - "dB": "2018-12-09T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 12, - "t2": 68 - }, - "2911": { - "d": 18, - "dB": "2018-12-15T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 41 - }, - "2737": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 15, - "t2": 7 - }, - "2744": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 7, - "t2": 8 - }, - "2775": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 7, - "t2": 16 - }, - "2795": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 7, - "t2": 18 - }, - "2811": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 41, - "t2": 7 - }, - "2812": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 42, - "t2": 7 - }, - "2823": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 7, - "t2": 12 - }, - "1020": { - "d": 26, - "dB": "2018-02-16T19:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 13, - "t2": 7 - }, - "2759": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 19, - "t2": 7 - }, - "2788": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 68, - "t2": 7 - }, - "2838": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 13, - "t2": 7 - }, - "2843": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 7, - "t2": 67 - }, - "2856": { - "d": 13, - "dB": "2018-11-11T16:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 7 - }, - "2881": { - "d": 15, - "dB": "2018-12-02T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 7 - }, - "2885": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 14 - }, - "2898": { - "d": 17, - "dB": "2018-12-08T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 20, - "t2": 7 - }, - "2924": { - "d": 20, - "dB": "2019-01-13T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 7, - "t2": 15 - }, - "2738": { - "d": 1, - "dB": "2018-08-11T17:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 8, - "t2": 13 - }, - "2771": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 41, - "t2": 8 - }, - "2784": { - "d": 6, - "dB": "2018-09-22T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 8 - }, - "2798": { - "d": 7, - "dB": "2018-09-25T17:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 8, - "t2": 19 - }, - "2805": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 8 - }, - "2826": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 8, - "t2": 10 - }, - "2832": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 42, - "t2": 8 - }, - "2846": { - "d": 12, - "dB": "2018-11-04T14:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 8, - "t2": 14 - }, - "2859": { - "d": 13, - "dB": "2018-11-11T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 8 - }, - "2867": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 16 - }, - "2896": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 67, - "t2": 8 - }, - "2908": { - "d": 18, - "dB": "2019-01-08T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 8, - "t2": 15 - }, - "2928": { - "d": 20, - "dB": "2019-01-13T14:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 8, - "t2": 20 - }, - "2932": { - "d": 21, - "dB": "2019-01-20T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 8 - }, - "2888": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 9 - }, - "1099": { - "d": 34, - "dB": "2018-04-21T15:00:00Z", - "t1s": 5, - "t2s": 1, - "t1": 9, - "t2": 12 - }, - "2736": { - "d": 1, - "dB": "2018-08-10T20:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 9, - "t2": 10 - }, - "2747": { - "d": 2, - "dB": "2018-08-19T19:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 67, - "t2": 9 - }, - "2756": { - "d": 3, - "dB": "2018-08-26T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 9, - "t2": 20 - }, - "2766": { - "d": 4, - "dB": "2018-09-02T19:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 13, - "t2": 9 - }, - "2776": { - "d": 5, - "dB": "2018-09-16T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 9, - "t2": 14 - }, - "2785": { - "d": 6, - "dB": "2018-09-23T19:00:00Z", - "t1s": 4, - "t2s": 2, - "t1": 18, - "t2": 9 - }, - "2796": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 9, - "t2": 41 - }, - "2804": { - "d": 8, - "dB": "2018-09-30T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 12, - "t2": 9 - }, - "2827": { - "d": 10, - "dB": "2018-10-21T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 9 - }, - "2845": { - "d": 12, - "dB": "2018-11-04T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 15, - "t2": 9 - }, - "2862": { - "d": 14, - "dB": "2018-11-25T20:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 42, - "t2": 9 - }, - "2912": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 9 - }, - "2927": { - "d": 20, - "dB": "2019-01-13T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 9, - "t2": 13 - }, - "1104": { - "d": 34, - "dB": "2018-04-21T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 10, - "t2": 16 - }, - "2761": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 10, - "t2": 67 - }, - "2764": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 14, - "t2": 10 - }, - "2781": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 13 - }, - "2782": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 16, - "t2": 10 - }, - "2809": { - "d": 8, - "dB": "2018-09-30T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 10 - }, - "2821": { - "d": 9, - "dB": "2018-10-05T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 19 - }, - "2841": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 10, - "t2": 15 - }, - "2851": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 10 - }, - "2861": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 10, - "t2": 42 - }, - "2901": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 18 - }, - "2914": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 12, - "t2": 10 - }, - "2931": { - "d": 20, - "dB": "2019-01-13T16:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 10, - "t2": 41 - }, - "2937": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 67, - "t2": 10 - }, - "2734": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 12, - "t2": 20 - }, - "2746": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 13, - "t2": 12 - }, - "2754": { - "d": 3, - "dB": "2018-08-26T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 12, - "t2": 14 - }, - "2762": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 12 - }, - "2772": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 42, - "t2": 12 - }, - "2855": { - "d": 13, - "dB": "2018-11-09T19:45:00Z", - "t1s": 0, - "t2s": 0, - "t1": 12, - "t2": 41 - }, - "2935": { - "d": 21, - "dB": "2019-01-18T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 42 - }, - "2868": { - "d": 14, - "dB": "2018-11-25T16:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 12 - }, - "2875": { - "d": 15, - "dB": "2018-12-01T16:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 12, - "t2": 18 - }, - "2887": { - "d": 16, - "dB": "2018-12-04T20:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 15, - "t2": 12 - }, - "2910": { - "d": 18, - "dB": "2018-12-16T14:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 12 - }, - "2786": { - "d": 6, - "dB": "2018-09-21T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 67 - }, - "2797": { - "d": 7, - "dB": "2018-09-25T17:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 13, - "t2": 16 - }, - "2818": { - "d": 9, - "dB": "2018-10-07T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 13, - "t2": 20 - }, - "2831": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 41, - "t2": 13 - }, - "2849": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 13 - }, - "2877": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 13, - "t2": 15 - }, - "2882": { - "d": 16, - "dB": "2018-12-04T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 42, - "t2": 13 - }, - "2895": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 19 - }, - "2906": { - "d": 18, - "dB": "2018-12-16T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 18, - "t2": 13 - }, - "2915": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 13, - "t2": 14 - }, - "2936": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 1, - "t2s": 5, - "t1": 13, - "t2": 41 - }, - "3265": { - "d": 10, - "dB": "2018-10-28T13:30:00Z", - "t1s": 0, - "t2s": 4, - "t1": 23, - "t2": 25 - }, - "3276": { - "d": 11, - "dB": "2018-11-04T16:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 25, - "t2": 26 - }, - "3285": { - "d": 12, - "dB": "2018-11-11T14:15:00Z", - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 22 - }, - "3314": { - "d": 15, - "dB": "2018-12-05T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 69, - "t2": 25 - }, - "3341": { - "d": 18, - "dB": "2018-12-22T15:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 25, - "t2": 29 - }, - "3371": { - "d": 21, - "dB": "2019-01-02T19:45:00Z", - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 35 - }, - "2835": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 41 - }, - "2874": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 19 - }, - "2893": { - "d": 17, - "dB": "2018-12-08T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 14, - "t2": 42 - }, - "2905": { - "d": 18, - "dB": "2019-01-16T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 14, - "t2": 20 - }, - "2799": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 67, - "t2": 14 - }, - "2802": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 16, - "t2": 14 - }, - "2815": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 15 - }, - "2854": { - "d": 13, - "dB": "2018-11-10T16:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 14, - "t2": 18 - }, - "2735": { - "d": 1, - "dB": "2018-08-12T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 42 - }, - "2742": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 42, - "t2": 15 - }, - "2752": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 42, - "t2": 68 - }, - "2768": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 68, - "t2": 15 - }, - "2777": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 41 - }, - "2787": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 15, - "t2": 19 - }, - "2806": { - "d": 8, - "dB": "2018-09-30T15:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 15, - "t2": 67 - }, - "2852": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 15 - }, - "2866": { - "d": 14, - "dB": "2018-11-25T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 15, - "t2": 20 - }, - "2916": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 18 - }, - "2940": { - "d": 21, - "dB": "2019-01-20T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 20, - "t2": 15 - }, - "2732": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 3, - "t2s": 4, - "t1": 16, - "t2": 67 - }, - "2749": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 20, - "t2": 16 - }, - "2813": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 16, - "t2": 41 - }, - "2889": { - "d": 16, - "dB": "2018-12-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 19, - "t2": 16 - }, - "2902": { - "d": 18, - "dB": "2019-01-08T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 16 - }, - "2833": { - "d": 11, - "dB": "2018-10-27T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 18 - }, - "1088": { - "d": 33, - "dB": "2018-04-14T15:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 18, - "t2": 42 - }, - "2755": { - "d": 3, - "dB": "2018-08-24T20:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 41 - }, - "2765": { - "d": 4, - "dB": "2018-08-31T18:45:00Z", - "t1s": 0, - "t2s": 1, - "t1": 18, - "t2": 19 - }, - "2886": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 18, - "t2": 20 - }, - "2926": { - "d": 20, - "dB": "2019-01-11T19:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 68 - }, - "2748": { - "d": 2, - "dB": "2018-08-17T18:45:00Z", - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 18 - }, - "2824": { - "d": 10, - "dB": "2018-10-19T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 67 - }, - "2779": { - "d": 5, - "dB": "2018-09-14T17:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 19, - "t2": 20 - }, - "2847": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 42 - }, - "2858": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 67, - "t2": 19 - }, - "2921": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 41, - "t2": 19 - }, - "2939": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 19 - }, - "2792": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 20 - }, - "2879": { - "d": 15, - "dB": "2018-12-02T16:00:00Z", - "t1s": 1, - "t2s": 4, - "t1": 20, - "t2": 41 - }, - "2919": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 20, - "t2": 67 - }, - "2871": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 41, - "t2": 67 - }, - "2791": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 41, - "t2": 42 - }, - "2878": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 67, - "t2": 42 - } - }, - "Ne": { - "2949": { - "d": 22, - "dB": "2019-01-27T20:00:00Z", - "t1": 2, - "t2": 20 - }, - "2950": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1": 41, - "t2": 3 - }, - "2947": { - "d": 22, - "dB": "2019-01-26T16:00:00Z", - "t1": 8, - "t2": 4 - }, - "2946": { - "d": 22, - "dB": "2019-01-27T14:00:00Z", - "t1": 15, - "t2": 5 - }, - "2943": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1": 7, - "t2": 13 - }, - "2945": { - "d": 22, - "dB": "2019-01-25T19:45:00Z", - "t1": 9, - "t2": 12 - }, - "2951": { - "d": 22, - "dB": "2019-01-27T16:00:00Z", - "t1": 10, - "t2": 16 - }, - "2944": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1": 14, - "t2": 68 - }, - "2942": { - "d": 22, - "dB": "2019-01-27T16:00:00Z", - "t1": 42, - "t2": 18 - }, - "2948": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1": 19, - "t2": 67 - } - }, - "k": "d3a284" -} diff --git a/src/test/resources/__files/mpgstats.ligue-1.20190202.json b/src/test/resources/__files/mpgstats.ligue-1.20190202.json deleted file mode 100644 index 213ff07..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20190202.json +++ /dev/null @@ -1,37379 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-01-31T07:28:41Z", - "mL": { - "i": 1, - "n": "Ligue 1", - "cN": "Ligue-1", - "u": "\/league\/Ligue-1", - "aS": { - "cN": "Ligue-1-2018-2019", - "i": 6, - "n": "Ligue 1 2018-2019", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 22, - "lD": 22 - } - }, - "lS": { - "cN": "Ligue-1-2017-2018", - "i": 3, - "n": "Ligue 1 2017-2018", - "mD": 38 - } - }, - "mxD": 22, - "np": 694, - "le": { - "1": "Ligue-1", - "2": "Premier-League" - }, - "p": [ - { - "i": 1, - "n": "Cavani", - "f": "Edinson", - "p": "A", - "r": 41, - "s": { - "g": "16", - "s": "89", - "n": "14", - "a": "6.39", - "d": "1.34", - "Sg": "6", - "Ss": "28", - "Sn": "4", - "Sa": "7", - "Sd": "1.62", - "Og": "24", - "Os": "152", - "On": "25", - "Oa": "6.1", - "Od": "1.47", - "Ap": "24", - "p": { - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7.5, - "g": 2 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "13": { - "n": 8.5, - "g": 3 - }, - "14": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 9, - "g": 3 - }, - "22": { - "n": 7.5, - "g": 2 - } - } - }, - "c": 2 - }, - { - "i": 4, - "n": "Thiago Silva", - "f": "", - "p": "D", - "r": 24, - "s": { - "s": "97", - "n": "16", - "a": "6.06", - "d": "0.46", - "Ss": "25", - "Sn": "4", - "Sa": "6.38", - "Sd": "0.41", - "Og": "1", - "Os": "161", - "On": "27", - "Oa": "5.96", - "Od": "0.76", - "Dp": "26", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "12": { - "n": 7 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 7, - "n": "Di Mar\u00eda", - "f": "\u00c1ngel", - "p": "M", - "r": 28, - "s": { - "g": "4", - "s": "109", - "n": "19", - "a": "5.76", - "d": "1.06", - "Sg": "1", - "Ss": "23", - "Sn": "4", - "Sa": "5.88", - "Sd": "0.89", - "Og": "10", - "Os": "194", - "On": "33", - "Oa": "5.89", - "Od": "1.09", - "Mp": "11", - "Ap": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 7 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 7 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 12, - "n": "Draxler", - "f": "Julian", - "p": "M", - "r": 20, - "s": { - "g": "3", - "s": "106", - "n": "18", - "a": "5.89", - "d": "1.09", - "Ss": "26", - "Sn": "4", - "Sa": "6.63", - "Sd": "1.08", - "Og": "5", - "Os": "175", - "On": "30", - "Oa": "5.83", - "Od": "1.03", - "Mp": "22", - "Ap": "4", - "p": { - "1": { - "n": 5.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 7.5, - "g": 1 - }, - "11": { - "n": 6.5, - "g": 1 - }, - "12": { - "n": 7 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 8 - }, - "21": { - "n": 7, - "s": 1 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 2 - }, - { - "i": 17, - "n": "Verratti", - "f": "Marco", - "p": "M", - "r": 18, - "s": { - "s": "78", - "n": "14", - "a": "5.57", - "d": "0.96", - "Os": "111", - "On": "19", - "Oa": "5.84", - "Od": "1.08", - "Mp": "18", - "p": { - "5": { - "n": 7 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 7 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 28, - "n": "Mbapp\u00e9", - "f": "Kylian", - "p": "A", - "r": 46, - "s": { - "g": "18", - "s": "105", - "n": "15", - "a": "7.03", - "d": "0.99", - "Sg": "6", - "Ss": "30", - "Sn": "4", - "Sa": "7.5", - "Sd": "1.12", - "Og": "22", - "Os": "158", - "On": "25", - "Oa": "6.34", - "Od": "1.56", - "Mp": "3", - "Ap": "21", - "p": { - "2": { - "n": 7.5, - "g": 2, - "s": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 9, - "g": 4 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 9, - "g": 3 - }, - "22": { - "n": 8, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 44, - "n": "Marquinhos", - "f": "", - "p": "D", - "r": 26, - "s": { - "g": "2", - "s": "103", - "n": "17", - "a": "6.09", - "d": "0.83", - "Sg": "1", - "Ss": "25", - "Sn": "4", - "Sa": "6.38", - "Sd": "0.41", - "Og": "2", - "Os": "158", - "On": "27", - "Oa": "5.87", - "Od": "0.78", - "Mp": "7", - "Dp": "19", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 8 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 46, - "n": "Meunier", - "f": "Thomas", - "p": "D", - "r": 24, - "s": { - "g": "3", - "s": "90", - "n": "15", - "a": "6.03", - "d": "0.74", - "Sg": "1", - "Ss": "23", - "Sn": "4", - "Sa": "5.88", - "Sd": "0.41", - "Og": "4", - "Os": "158", - "On": "27", - "Oa": "5.87", - "Od": "0.86", - "Mp": "5", - "Dp": "17", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "7": { - "n": 7, - "g": 1, - "s": 1 - }, - "9": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "14": { - "n": 6 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 49, - "n": "Kurzawa", - "f": "Layvin", - "p": "D", - "r": 8, - "s": { - "s": "15", - "n": "3", - "a": "5", - "d": "0.41", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Os": "61", - "On": "12", - "Oa": "5.08", - "Od": "0.98", - "Dp": "11", - "p": { - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 100, - "n": "Areola", - "f": "Alphonse", - "p": "G", - "r": 18, - "s": { - "s": "58", - "n": "10", - "a": "5.8", - "d": "0.4", - "Os": "140", - "On": "24", - "Oa": "5.83", - "Od": "0.99", - "Gp": "24", - "p": { - "3": { - "n": 6.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "20": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 121, - "n": "Rabiot", - "f": "Adrien", - "p": "M", - "r": 10, - "s": { - "g": "2", - "ao": "1", - "s": "87", - "n": "14", - "a": "6.21", - "d": "1.01", - "Og": "2", - "Oao": "1", - "Os": "162", - "On": "27", - "Oa": "6", - "Od": "1.02", - "Mp": "23", - "Ap": "1", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5, - "a": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7 - }, - "10": { - "n": 7.5, - "g": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7 - }, - "14": { - "n": 7 - }, - "16": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 152, - "n": "Trapp", - "f": "Kevin", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Gp": "2" - }, - "c": 2 - }, - { - "i": 180, - "n": "Kimpembe", - "f": "Presnel", - "p": "D", - "r": 14, - "s": { - "s": "62", - "n": "11", - "a": "5.64", - "d": "0.93", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "133", - "On": "24", - "Oa": "5.54", - "Od": "0.93", - "Dp": "24", - "p": { - "3": { - "n": 6 - }, - "4": { - "n": 7 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 458, - "n": "Nkunku", - "f": "Christopher", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "70", - "n": "13", - "a": "5.38", - "d": "0.74", - "Og": "5", - "Os": "134", - "On": "25", - "Oa": "5.36", - "Od": "0.93", - "Mp": "14", - "Dp": "1", - "Ap": "5", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 494, - "n": "Georgen", - "f": "Alec", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 1155, - "n": "Neymar", - "f": "", - "p": "A", - "r": 45, - "s": { - "g": "13", - "s": "88", - "n": "13", - "a": "6.77", - "d": "1.12", - "Og": "17", - "Os": "125", - "On": "18", - "Oa": "6.94", - "Od": "1.08", - "Mp": "4", - "Ap": "14", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 7.5, - "g": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7.5, - "g": 2 - }, - "9": { - "n": 8, - "g": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "15": { - "n": 6, - "g": 1 - }, - "21": { - "n": 8.5, - "g": 2 - } - } - }, - "c": 2 - }, - { - "i": 1157, - "n": "Dani Alves", - "f": "", - "p": "D", - "r": 15, - "s": { - "s": "41", - "n": "7", - "a": "5.86", - "d": "1.03", - "Ss": "25", - "Sn": "4", - "Sa": "6.38", - "Sd": "1.08", - "Og": "1", - "Os": "100", - "On": "17", - "Oa": "5.88", - "Od": "0.98", - "Mp": "4", - "Dp": "12", - "p": { - "14": { - "n": 5.5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 8 - }, - "22": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 1322, - "n": "Choupo-Moting", - "f": "Eric Maxim", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.51", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "2", - "Os": "82", - "On": "17", - "Oa": "4.85", - "Od": "0.72", - "Mp": "6", - "Ap": "10", - "p": { - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 1325, - "n": "Jes\u00e9", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "16", - "On": "4", - "Oa": "4", - "Od": "0.71", - "Ap": "1" - }, - "c": 2 - }, - { - "i": 2079, - "n": "Bernede", - "f": "Antoine", - "p": "M", - "r": 6, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Mp": "2", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2142, - "n": "Adli", - "f": "Yacine", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 2 - }, - { - "i": 2151, - "n": "N'Soki", - "f": "Stanley", - "p": "M", - "r": 7, - "s": { - "s": "45", - "n": "9", - "a": "5.06", - "d": "0.55", - "Os": "45", - "On": "9", - "Oa": "5.06", - "Od": "0.55", - "Mp": "3", - "Dp": "6", - "p": { - "1": { - "n": 5.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2267, - "n": "Lass Diarra", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.62", - "Os": "69", - "On": "13", - "Oa": "5.35", - "Od": "0.72", - "Mp": "11", - "p": { - "1": { - "n": 5 - }, - "5": { - "n": 4 - }, - "10": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2311, - "n": "Cibois", - "f": "Sebastien", - "p": "G", - "r": 4, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2327, - "n": "Rimane", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Dp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2328, - "n": "Weah", - "f": "Timothy", - "p": "A", - "r": 6, - "s": { - "g": "1", - "s": "10", - "n": "2", - "a": "5", - "d": "1", - "Og": "1", - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.94", - "Ap": "3", - "p": { - "1": { - "n": 6, - "g": 1, - "s": 1 - }, - "2": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2626, - "n": "Fressange", - "f": "Alexandre", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2627, - "n": "Dagba", - "f": "Colin", - "p": "D", - "r": 6, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.24", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.24", - "Dp": "3", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "7": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2652, - "n": "Postolachi", - "f": "Virgiliu", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2661, - "n": "Buffon", - "f": "Gianluigi", - "p": "G", - "r": 17, - "s": { - "s": "55", - "n": "10", - "a": "5.55", - "d": "0.65", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Os": "55", - "On": "10", - "Oa": "5.55", - "Od": "0.65", - "Gp": "10", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "9": { - "n": 7 - }, - "12": { - "n": 5 - }, - "14": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2668, - "n": "Diaby", - "f": "Moussa", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "65", - "n": "12", - "a": "5.42", - "d": "1.04", - "Og": "2", - "Os": "65", - "On": "12", - "Oa": "5.42", - "Od": "1.04", - "Mp": "5", - "Ap": "7", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 7, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 8 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2670, - "n": "Mbe Soh", - "f": "Lo\u00efc", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2821, - "n": "Kehrer", - "f": "Thilo", - "p": "D", - "r": 12, - "s": { - "s": "79", - "n": "15", - "a": "5.3", - "d": "0.85", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Os": "79", - "On": "15", - "Oa": "5.3", - "Od": "0.85", - "Dp": "15", - "p": { - "3": { - "n": 3.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 6, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2864, - "n": "Bernat", - "f": "Juan", - "p": "D", - "r": 14, - "s": { - "s": "64", - "n": "12", - "a": "5.33", - "d": "0.8", - "Ss": "21", - "Sn": "4", - "Sa": "5.38", - "Sd": "1.08", - "Os": "64", - "On": "12", - "Oa": "5.33", - "Od": "0.8", - "Mp": "3", - "Dp": "9", - "p": { - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 36, - "n": "Plasil", - "f": "Jaroslav", - "p": "M", - "r": 11, - "s": { - "s": "67", - "n": "13", - "a": "5.15", - "d": "0.57", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "0.64", - "Mp": "22", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 38, - "n": "Costil", - "f": "Benoit", - "p": "G", - "r": 21, - "s": { - "s": "119", - "n": "21", - "a": "5.69", - "d": "0.98", - "Ss": "23", - "Sn": "4", - "Sa": "5.88", - "Sd": "0.22", - "Os": "203", - "On": "37", - "Oa": "5.5", - "Od": "1", - "Gp": "37", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 8 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 8 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 56, - "n": "Briand", - "f": "Jimmy", - "p": "A", - "r": 14, - "s": { - "g": "4", - "s": "90", - "n": "19", - "a": "4.74", - "d": "1.04", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "0.41", - "Og": "9", - "Os": "164", - "On": "34", - "Oa": "4.82", - "Od": "1.11", - "Mp": "4", - "Ap": "30", - "p": { - "31": { - "n": 6, - "e": 1067, - "c": 14 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4 - }, - "5": { - "n": 7, - "g": 2 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "17": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 63, - "n": "Prior", - "f": "Jerome", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 86, - "n": "Kamano", - "f": "Fran\u00e7ois", - "p": "A", - "r": 20, - "s": { - "g": "8", - "s": "107", - "n": "20", - "a": "5.35", - "d": "1.22", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "0.41", - "Og": "14", - "Os": "184", - "On": "35", - "Oa": "5.26", - "Od": "1.28", - "Mp": "7", - "Ap": "22", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5, - "g": 1 - }, - "3": { - "n": 7.5, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 8, - "g": 2 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 103, - "n": "Sankhar\u00e9", - "f": "Younousse", - "p": "M", - "r": 15, - "s": { - "s": "80", - "n": "16", - "a": "5.03", - "d": "0.62", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "3", - "Os": "139", - "On": "27", - "Oa": "5.17", - "Od": "0.71", - "Mp": "22", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 105, - "n": "Sabaly", - "f": "Youssouf", - "p": "D", - "r": 9, - "s": { - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.57", - "Os": "137", - "On": "26", - "Oa": "5.29", - "Od": "0.83", - "Dp": "26", - "p": { - "31": { - "n": 5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 116, - "n": "Karamoh", - "f": "Yann", - "p": "A", - "r": 11, - "s": { - "g": "3", - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.92", - "Ss": "16", - "Sn": "4", - "Sa": "4.13", - "Sd": "0.22", - "Og": "3", - "Os": "75", - "On": "15", - "Oa": "5.03", - "Od": "0.92", - "Mp": "3", - "Ap": "12", - "p": { - "6": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 126, - "n": "Vada", - "f": "Valent\u00edn", - "p": "M", - "r": 5, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Og": "1", - "Os": "41", - "On": "8", - "Oa": "5.13", - "Od": "0.33", - "Mp": "4", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 189, - "n": "Jovanovic", - "f": "Vukasin", - "p": "D", - "r": 8, - "s": { - "s": "28", - "n": "5", - "a": "5.7", - "d": "1.12", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.71", - "Os": "28", - "On": "5", - "Oa": "5.7", - "Od": "1.12", - "Dp": "5", - "p": { - "9": { - "n": 7.5 - }, - "17": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 229, - "n": "Lewczuk", - "f": "Igor", - "p": "D", - "r": 9, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "0.73", - "Os": "32", - "On": "7", - "Oa": "4.57", - "Od": "0.68", - "Dp": "5", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "19": { - "n": 6, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 268, - "n": "de Preville", - "f": "Nicolas", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.84", - "Og": "3", - "Os": "106", - "On": "22", - "Oa": "4.84", - "Od": "1", - "Mp": "1", - "Ap": "16", - "p": { - "31": { - "n": 4 - }, - "2": { - "n": 3 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "16": { - "n": 6, - "s": 1 - }, - "17": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 305, - "n": "Gajic", - "f": "Milan", - "p": "D", - "r": 4, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 3 - }, - { - "i": 362, - "n": "Poundj\u00e9", - "f": "Maxime", - "p": "D", - "r": 12, - "s": { - "s": "85", - "n": "17", - "a": "5", - "d": "0.77", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "0.35", - "Os": "160", - "On": "31", - "Oa": "5.16", - "Od": "0.85", - "Dp": "31", - "p": { - "31": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 378, - "n": "Pellenard", - "f": "Th\u00e9o", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Dp": "1" - }, - "c": 3 - }, - { - "i": 1168, - "n": "Jonathan Caf\u00fa", - "f": "", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4" - }, - "c": 3 - }, - { - "i": 1175, - "n": "Ot\u00e1vio", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "90", - "n": "16", - "a": "5.63", - "d": "0.65", - "Ss": "21", - "Sn": "4", - "Sa": "5.25", - "Sd": "0.25", - "Os": "115", - "On": "21", - "Oa": "5.48", - "Od": "0.7", - "Mp": "20", - "p": { - "31": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 1203, - "n": "Lerager", - "f": "Lukas", - "p": "M", - "r": 12, - "s": { - "s": "91", - "n": "18", - "a": "5.06", - "d": "0.64", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "2", - "Os": "177", - "On": "34", - "Oa": "5.21", - "Od": "0.77", - "Mp": "34", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 1261, - "n": "Mandanda", - "f": "Over", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1271, - "n": "Poussin", - "f": "Gaetan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1549, - "n": "Youssouf", - "f": "Zaydou", - "p": "M", - "r": 5, - "s": { - "s": "19", - "n": "4", - "a": "4.75", - "d": "0.43", - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.47", - "Mp": "2", - "Ap": "2", - "p": { - "1": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 2080, - "n": "Carrique", - "f": "Thomas", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2149, - "n": "Kound\u00e9", - "f": "Jules", - "p": "D", - "r": 14, - "s": { - "s": "106", - "n": "21", - "a": "5.07", - "d": "0.78", - "Ss": "20", - "Sn": "4", - "Sa": "5.13", - "Sd": "0.65", - "Og": "2", - "Os": "186", - "On": "36", - "Oa": "5.18", - "Od": "0.79", - "Dp": "35", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 2152, - "n": "Pablo", - "f": "", - "p": "D", - "r": 17, - "s": { - "g": "1", - "s": "78", - "n": "14", - "a": "5.61", - "d": "1.02", - "Og": "1", - "Os": "157", - "On": "28", - "Oa": "5.63", - "Od": "0.96", - "Dp": "28", - "p": { - "1": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 8, - "g": 1 - }, - "19": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 2238, - "n": "Tchouameni", - "f": "Aurelien", - "p": "M", - "r": 9, - "s": { - "s": "30", - "n": "6", - "a": "5", - "d": "0.58", - "Os": "30", - "On": "6", - "Oa": "5", - "Od": "0.58", - "Mp": "6", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "13": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 2434, - "n": "Palencia", - "f": "Sergi", - "p": "D", - "r": 10, - "s": { - "s": "80", - "n": "16", - "a": "5", - "d": "0.77", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "80", - "On": "16", - "Oa": "5", - "Od": "0.77", - "Dp": "16", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 2629, - "n": "Nilor", - "f": "Michael", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2630, - "n": "Diarra", - "f": "Ibrahim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2695, - "n": "Benrahou", - "f": "Yassin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2788, - "n": "Kalu", - "f": "Samuel", - "p": "A", - "r": 16, - "s": { - "g": "3", - "s": "84", - "n": "16", - "a": "5.28", - "d": "0.73", - "Og": "3", - "Os": "84", - "On": "16", - "Oa": "5.28", - "Od": "0.73", - "Mp": "6", - "Ap": "10", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2792, - "n": "Basic", - "f": "Toma", - "p": "M", - "r": 6, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.24", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "0.42", - "Mp": "7", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 2863, - "n": "Cornelius", - "f": "Andreas", - "p": "A", - "r": 13, - "s": { - "g": "3", - "s": "78", - "n": "16", - "a": "4.88", - "d": "0.84", - "Sg": "1", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "0.82", - "Og": "3", - "Os": "78", - "On": "16", - "Oa": "4.88", - "Od": "0.84", - "Ap": "16", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 13, - "n": "Hamouma", - "f": "Romain", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "72", - "n": "14", - "a": "5.14", - "d": "0.64", - "Sg": "1", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.47", - "Og": "6", - "Os": "158", - "On": "30", - "Oa": "5.27", - "Od": "0.89", - "Mp": "19", - "Ap": "6", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "12": { - "n": 7, - "g": 1, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 47, - "n": "Ruffier", - "f": "St\u00e9phane", - "p": "G", - "r": 23, - "s": { - "s": "124", - "n": "22", - "a": "5.64", - "d": "1.11", - "Ss": "124", - "Sn": "22", - "Sa": "5.64", - "Sd": "1.11", - "Os": "213", - "On": "38", - "Oa": "5.61", - "Od": "1.04", - "Gp": "38", - "p": { - "33": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7.5 - }, - "9": { - "n": 3 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 51, - "n": "Cabella", - "f": "R\u00e9my", - "p": "M", - "r": 30, - "s": { - "g": "4", - "s": "107", - "n": "19", - "a": "5.63", - "d": "1.05", - "Sg": "1", - "Ss": "21", - "Sn": "4", - "Sa": "5.38", - "Sd": "0.96", - "Og": "10", - "Os": "188", - "On": "33", - "Oa": "5.7", - "Od": "1.2", - "Mp": "27", - "Ap": "6", - "p": { - "33": { - "n": 4 - }, - "2": { - "n": 7 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6, - "g": 1 - } - } - }, - "c": 4 - }, - { - "i": 64, - "n": "Perrin", - "f": "Loic", - "p": "D", - "r": 17, - "s": { - "s": "96", - "n": "18", - "a": "5.33", - "d": "1.03", - "Ss": "34", - "Sn": "6", - "Sa": "5.75", - "Sd": "0.9", - "Os": "169", - "On": "31", - "Oa": "5.45", - "Od": "0.96", - "Dp": "31", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 69, - "n": "Salibur", - "f": "Yannis", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "89", - "n": "18", - "a": "4.97", - "d": "0.86", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "1", - "Os": "119", - "On": "24", - "Oa": "4.98", - "Od": "0.9", - "Mp": "11", - "Ap": "11", - "p": { - "2": { - "n": 4.5, - "e": 2745, - "c": 14, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 7, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 98, - "n": "Monnet-Paquet", - "f": "K\u00e9vin", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "93", - "n": "20", - "a": "4.68", - "d": "0.83", - "Sg": "1", - "Ss": "56", - "Sn": "12", - "Sa": "4.71", - "Sd": "0.95", - "Og": "2", - "Os": "162", - "On": "35", - "Oa": "4.64", - "Od": "0.82", - "Mp": "25", - "Ap": "7", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 3 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 137, - "n": "Selnaes", - "f": "Ole", - "p": "M", - "r": 19, - "s": { - "s": "114", - "n": "20", - "a": "5.7", - "d": "0.89", - "Os": "200", - "On": "35", - "Oa": "5.71", - "Od": "0.84", - "Mp": "33", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 7, - "s": 1 - }, - "8": { - "n": 7.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 4 - }, - { - "i": 138, - "n": "Diony", - "f": "Lois", - "p": "A", - "r": 16, - "s": { - "g": "5", - "s": "111", - "n": "22", - "a": "5.05", - "d": "1.04", - "Sg": "5", - "Ss": "111", - "Sn": "22", - "Sa": "5.05", - "Sd": "1.04", - "Og": "5", - "Os": "111", - "On": "22", - "Oa": "5.05", - "Od": "1.04", - "Mp": "5", - "Ap": "17", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 4 - }, - { - "i": 155, - "n": "Beric", - "f": "Robert", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "41", - "n": "9", - "a": "4.56", - "d": "0.83", - "Og": "8", - "Os": "103", - "On": "21", - "Oa": "4.9", - "Od": "1.06", - "Ap": "19", - "p": { - "33": { - "n": 4 - }, - "3": { - "n": 4, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6, - "g": 1, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 195, - "n": "Moulin", - "f": "Jessy", - "p": "G", - "r": 9, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 209, - "n": "Tannane", - "f": "Oussama", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.94" - }, - "c": 4 - }, - { - "i": 317, - "n": "M'Bengue", - "f": "Cheikh", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 400, - "n": "Polomat", - "f": "Pierre-Yves", - "p": "D", - "r": 9, - "s": { - "s": "30", - "n": "6", - "a": "5", - "Os": "30", - "On": "6", - "Oa": "5", - "Mp": "2", - "Dp": "4", - "p": { - "16": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 411, - "n": "Nordin", - "f": "Arnaud", - "p": "M", - "r": 8, - "s": { - "s": "58", - "n": "12", - "a": "4.88", - "d": "0.41", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "58", - "On": "12", - "Oa": "4.88", - "Od": "0.41", - "Mp": "12", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 522, - "n": "Rocha Santos", - "f": "Kenny", - "p": "M", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 887, - "n": "Khazri", - "f": "Wahbi", - "p": "M", - "r": 41, - "s": { - "g": "12", - "s": "117", - "n": "20", - "a": "5.85", - "d": "1.32", - "Sg": "2", - "Ss": "23", - "Sn": "4", - "Sa": "5.75", - "Sd": "0.83", - "Og": "15", - "Os": "184", - "On": "32", - "Oa": "5.75", - "Od": "1.23", - "Mp": "8", - "Ap": "24", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6, - "g": 1 - }, - "8": { - "n": 8, - "g": 2 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 8, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 8, - "g": 2 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1031, - "n": "Debuchy", - "f": "Mathieu", - "p": "D", - "r": 9, - "s": { - "g": "2", - "s": "62", - "n": "11", - "a": "5.64", - "d": "0.88", - "Og": "6", - "Oao": "1", - "Os": "146", - "On": "26", - "Oa": "5.62", - "Od": "1.04", - "Dp": "26", - "p": { - "33": { - "n": 7, - "g": 1 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1170, - "n": "Diouss\u00e9", - "f": "Assane", - "p": "M", - "r": 8, - "s": { - "s": "35", - "n": "7", - "a": "5.07", - "d": "0.42", - "Os": "90", - "On": "18", - "Oa": "5.03", - "Od": "0.42", - "Mp": "11", - "Dp": "1", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 1192, - "n": "Gabriel Silva", - "f": "", - "p": "D", - "r": 12, - "s": { - "s": "78", - "n": "15", - "a": "5.23", - "d": "0.7", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.47", - "Os": "150", - "On": "29", - "Oa": "5.19", - "Od": "0.81", - "Mp": "6", - "Dp": "23", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 2046, - "n": "Panos", - "f": "Mickael", - "p": "D", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "8": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2143, - "n": "Camara", - "f": "Mahdi", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2233, - "n": "M'Vila", - "f": "Yann", - "p": "M", - "r": 20, - "s": { - "s": "116", - "n": "22", - "a": "5.3", - "d": "0.95", - "Ss": "116", - "Sn": "22", - "Sa": "5.3", - "Sd": "0.95", - "Os": "196", - "On": "36", - "Oa": "5.46", - "Od": "0.85", - "Mp": "36", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 7 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 7 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 4 - }, - { - "i": 2266, - "n": "Subotic", - "f": "Neven", - "p": "D", - "r": 8, - "s": { - "s": "91", - "n": "18", - "a": "5.06", - "d": "0.88", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Og": "2", - "Os": "173", - "On": "33", - "Oa": "5.24", - "Od": "1", - "Dp": "33", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 2271, - "n": "Chambost", - "f": "Dylan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2616, - "n": "Kolodziejczak", - "f": "Timoth\u00e9e", - "p": "D", - "r": 18, - "s": { - "g": "2", - "s": "115", - "n": "22", - "a": "5.25", - "d": "0.88", - "Sg": "2", - "Ss": "115", - "Sn": "22", - "Sa": "5.25", - "Sd": "0.88", - "Og": "2", - "Os": "115", - "On": "22", - "Oa": "5.25", - "Od": "0.88", - "Dp": "22", - "p": { - "1": { - "n": 6.5 - }, - "2": { - "n": 6, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2765, - "n": "Gueye", - "f": "Makhtar", - "p": "A", - "r": 2, - "s": { - "g": "1", - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Og": "1", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Ap": "2", - "p": { - "2": { - "n": 6, - "g": 1, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2766, - "n": "Saliba", - "f": "William", - "p": "D", - "r": 9, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "1.12", - "Os": "34", - "On": "7", - "Oa": "4.86", - "Od": "1.12", - "Dp": "7", - "p": { - "7": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 3.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2891, - "n": "Vermot", - "f": "Th\u00e9o", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2893, - "n": "Bajic", - "f": "Stefan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2963, - "n": "Honorat", - "f": "Franck", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2990, - "n": "Tshibuabua", - "f": "Marvin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2991, - "n": "Abi", - "f": "Charles Nathan", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2992, - "n": "Benkhedim", - "f": "Bilal", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 52, - "n": "Crivelli", - "f": "Enzo", - "p": "A", - "r": 11, - "s": { - "g": "4", - "s": "83", - "n": "18", - "a": "4.61", - "d": "0.87", - "Sg": "1", - "Ss": "23", - "Sn": "5", - "Sa": "4.6", - "Sd": "0.8", - "Og": "6", - "Os": "131", - "On": "29", - "Oa": "4.52", - "Od": "0.85", - "Ap": "27", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 78, - "n": "Oniangu\u00e9", - "f": "Prince", - "p": "M", - "r": 12, - "s": { - "g": "2", - "s": "94", - "n": "18", - "a": "5.22", - "d": "0.79", - "Og": "3", - "Os": "150", - "On": "30", - "Oa": "5", - "Od": "0.93", - "Mp": "30", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 139, - "n": "Baysse", - "f": "Paul", - "p": "D", - "r": 9, - "s": { - "ao": "1", - "s": "94", - "n": "20", - "a": "4.73", - "d": "0.7", - "Sao": "1", - "Ss": "40", - "Sn": "9", - "Sa": "4.44", - "Sd": "0.5", - "Oao": "1", - "Os": "123", - "On": "26", - "Oa": "4.75", - "Od": "0.64", - "Dp": "24", - "p": { - "1": { - "n": 4, - "e": 2733, - "c": 3, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4, - "a": 1 - } - } - }, - "c": 5 - }, - { - "i": 141, - "n": "Casimir Ninga", - "f": "", - "p": "A", - "r": 14, - "s": { - "g": "3", - "s": "82", - "n": "18", - "a": "4.56", - "d": "1.05", - "Sg": "2", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "1.03", - "Og": "3", - "Os": "140", - "On": "32", - "Oa": "4.38", - "Od": "0.88", - "Mp": "11", - "Ap": "11", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 3.5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 5.5, - "g": 1 - }, - "21": { - "n": 4 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 172, - "n": "Bammou", - "f": "Yacine", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "73", - "n": "15", - "a": "4.87", - "d": "0.53", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Og": "4", - "Os": "113", - "On": "24", - "Oa": "4.71", - "Od": "0.8", - "Mp": "10", - "Ap": "9", - "p": { - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 315, - "n": "Dabo", - "f": "Mouhamadou", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 318, - "n": "Genevois", - "f": "Romain", - "p": "D", - "r": 3, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.54", - "Os": "80", - "On": "17", - "Oa": "4.74", - "Od": "0.6", - "Dp": "16", - "p": { - "32": { - "n": 4 - }, - "1": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 332, - "n": "Djiku", - "f": "Alexander", - "p": "D", - "r": 10, - "s": { - "s": "92", - "n": "18", - "a": "5.11", - "d": "0.99", - "Ss": "12", - "Sn": "3", - "Sa": "4", - "Sd": "0.71", - "Os": "157", - "On": "32", - "Oa": "4.91", - "Od": "0.95", - "Dp": "32", - "p": { - "32": { - "n": 3 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "18": { - "n": 6 - }, - "20": { - "n": 3 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 344, - "n": "Guilbert", - "f": "Frederic", - "p": "D", - "r": 11, - "s": { - "s": "94", - "n": "19", - "a": "4.97", - "d": "0.99", - "Og": "1", - "Os": "163", - "On": "34", - "Oa": "4.81", - "Od": "1.08", - "Mp": "7", - "Dp": "26", - "Ap": "1", - "p": { - "32": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3 - } - } - }, - "c": 5 - }, - { - "i": 345, - "n": "Samba", - "f": "Brice", - "p": "G", - "r": 19, - "s": { - "s": "122", - "n": "22", - "a": "5.57", - "d": "0.87", - "Ss": "122", - "Sn": "22", - "Sa": "5.57", - "Sd": "0.87", - "Os": "133", - "On": "24", - "Oa": "5.56", - "Od": "0.85", - "Gp": "24", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 7 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 5 - }, - { - "i": 363, - "n": "Louis", - "f": "Jeff", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 366, - "n": "Imorou", - "f": "Emmanuel", - "p": "D", - "r": 6, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "0.42", - "Dp": "7", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "11": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 382, - "n": "Sankoh", - "f": "Baissama", - "p": "M", - "r": 8, - "s": { - "s": "45", - "n": "9", - "a": "5.06", - "d": "0.44", - "Os": "115", - "On": "23", - "Oa": "5.02", - "Od": "0.5", - "Mp": "16", - "p": { - "32": { - "n": 6 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 6, - "s": 1 - }, - "19": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 413, - "n": "Diomande", - "f": "Ismael", - "p": "M", - "r": 10, - "s": { - "s": "45", - "n": "9", - "a": "5", - "d": "0.78", - "Ss": "40", - "Sn": "8", - "Sa": "5", - "Sd": "0.83", - "Os": "78", - "On": "16", - "Oa": "4.88", - "Od": "1.1", - "Mp": "9", - "Dp": "6", - "p": { - "6": { - "n": 5, - "s": 1 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 421, - "n": "Reulet", - "f": "Paul", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 462, - "n": "Alhadhur", - "f": "Chaker", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 480, - "n": "Khaoui", - "f": "Saif-Eddine", - "p": "M", - "r": 15, - "s": { - "g": "3", - "s": "66", - "n": "14", - "a": "4.75", - "d": "0.73", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "3", - "Os": "116", - "On": "25", - "Oa": "4.66", - "Od": "0.7", - "Mp": "19", - "p": { - "5": { - "n": 4.5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1, - "s": 1 - }, - "18": { - "n": 6, - "g": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 1195, - "n": "Peeters", - "f": "Stef", - "p": "M", - "r": 8, - "s": { - "s": "33", - "n": "7", - "a": "4.79", - "d": "0.52", - "Os": "88", - "On": "19", - "Oa": "4.66", - "Od": "0.95", - "Mp": "17", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 1222, - "n": "Kouakou", - "f": "Christian", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Mp": "1", - "p": { - "32": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1223, - "n": "Mbengue", - "f": "Adama", - "p": "D", - "r": 9, - "s": { - "s": "48", - "n": "10", - "a": "4.8", - "d": "0.68", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "56", - "On": "12", - "Oa": "4.67", - "Od": "0.8", - "Mp": "1", - "Dp": "11", - "p": { - "1": { - "n": 3.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1451, - "n": "Zelazny", - "f": "Erwin", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "84", - "On": "16", - "Oa": "5.25", - "Od": "0.9", - "Gp": "16" - }, - "c": 5 - }, - { - "i": 1537, - "n": "Repas", - "f": "Jan", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Mp": "1", - "Ap": "1", - "p": { - "32": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1621, - "n": "Beauvue", - "f": "Claudio", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "81", - "n": "17", - "a": "4.76", - "d": "1.03", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "3", - "Os": "122", - "On": "28", - "Oa": "4.36", - "Od": "0.99", - "Mp": "9", - "Ap": "13", - "p": { - "4": { - "n": 6, - "g": 1, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 3.5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1706, - "n": "Fajr", - "f": "Faycal", - "p": "M", - "r": 20, - "s": { - "g": "3", - "s": "114", - "n": "21", - "a": "5.45", - "d": "0.83", - "Sg": "2", - "Ss": "63", - "Sn": "12", - "Sa": "5.29", - "Sd": "0.8", - "Og": "3", - "Os": "186", - "On": "35", - "Oa": "5.33", - "Od": "0.84", - "Mp": "34", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 2045, - "n": "Deminguet", - "f": "Jessy", - "p": "M", - "r": 8, - "s": { - "s": "40", - "n": "9", - "a": "4.5", - "d": "1", - "Og": "1", - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.93", - "Mp": "11", - "Ap": "2", - "p": { - "32": { - "n": 3 - }, - "1": { - "n": 4 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "19": { - "n": 2.5 - } - } - }, - "c": 5 - }, - { - "i": 2078, - "n": "Armougom", - "f": "Yoel", - "p": "D", - "r": 9, - "s": { - "s": "76", - "n": "16", - "a": "4.78", - "d": "0.85", - "Ss": "26", - "Sn": "6", - "Sa": "4.42", - "Sd": "0.84", - "Os": "80", - "On": "17", - "Oa": "4.74", - "Od": "0.84", - "Mp": "1", - "Dp": "16", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 6.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 2156, - "n": "Stavitski", - "f": "Timo", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2631, - "n": "Marega", - "f": "Issa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2632, - "n": "Callens", - "f": "Thomas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2682, - "n": "Tchokounte", - "f": "Malik", - "p": "A", - "r": 9, - "s": { - "s": "87", - "n": "20", - "a": "4.38", - "d": "0.5", - "Ss": "52", - "Sn": "12", - "Sa": "4.33", - "Sd": "0.42", - "Os": "87", - "On": "20", - "Oa": "4.38", - "Od": "0.5", - "Mp": "2", - "Ap": "18", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 3.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2689, - "n": "Ndom", - "f": "Aly", - "p": "M", - "r": 9, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.58", - "Os": "52", - "On": "11", - "Oa": "4.73", - "Od": "0.58", - "Mp": "11", - "p": { - "1": { - "n": 5, - "e": 2739, - "c": 68, - "s": 1 - }, - "5": { - "n": 5, - "e": 2778, - "c": 68, - "s": 1 - }, - "7": { - "n": 3, - "e": 2800, - "c": 68 - }, - "9": { - "n": 5, - "e": 2819, - "c": 68, - "s": 1 - }, - "10": { - "n": 5, - "e": 2829, - "c": 68 - }, - "11": { - "n": 4.5, - "e": 2840, - "c": 68, - "s": 1 - }, - "14": { - "n": 5, - "e": 2870, - "c": 68, - "s": 1 - }, - "15": { - "n": 5, - "e": 2876, - "c": 68, - "s": 1 - }, - "16": { - "n": 5, - "e": 2890, - "c": 68, - "s": 1 - }, - "17": { - "n": 4.5, - "e": 2894, - "c": 68 - }, - "18": { - "n": 5, - "e": 2911, - "c": 68, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2710, - "n": "Gradit", - "f": "Jonathan", - "p": "D", - "r": 7, - "s": { - "s": "37", - "n": "8", - "a": "4.63", - "d": "0.82", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "37", - "On": "8", - "Oa": "4.63", - "Od": "0.82", - "Mp": "1", - "Dp": "7", - "p": { - "10": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3 - }, - "17": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 2935, - "n": "Zahary", - "f": "Younn", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2940, - "n": "Joseph", - "f": "Evens", - "p": "M", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.22", - "Mp": "4", - "p": { - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 3230, - "n": "Mouaddib", - "f": "Jad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 45, - "n": "Gourcuff", - "f": "Yoann", - "p": "M", - "r": 7, - "s": { - "s": "39", - "n": "8", - "a": "4.88", - "d": "0.33", - "Og": "1", - "Os": "70", - "On": "14", - "Oa": "5", - "Od": "0.53", - "Mp": "10", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 104, - "n": "J\u00falio Tavares", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "3", - "s": "88", - "n": "19", - "a": "4.63", - "d": "1.19", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "1.25", - "Og": "9", - "Os": "153", - "On": "32", - "Oa": "4.78", - "Od": "1.25", - "Ap": "31", - "p": { - "38": { - "n": 6, - "g": 1 - }, - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 8, - "g": 2 - }, - "3": { - "n": 5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 3 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 7 - }, - { - "i": 112, - "n": "Abeid", - "f": "Mehdi", - "p": "M", - "r": 13, - "s": { - "g": "3", - "s": "95", - "n": "18", - "a": "5.31", - "d": "0.82", - "Ss": "20", - "Sn": "4", - "Sa": "5.13", - "Sd": "1.14", - "Og": "3", - "Os": "127", - "On": "25", - "Oa": "5.1", - "Od": "0.86", - "Mp": "24", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7 - } - } - }, - "c": 7 - }, - { - "i": 165, - "n": "Said", - "f": "Wesley", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "84", - "n": "18", - "a": "4.69", - "d": "0.71", - "Sg": "1", - "Ss": "21", - "Sn": "4", - "Sa": "5.38", - "Sd": "0.82", - "Og": "6", - "Os": "142", - "On": "29", - "Oa": "4.91", - "Od": "1.04", - "Mp": "5", - "Ap": "21", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 7 - }, - { - "i": 167, - "n": "Mari\u00e9", - "f": "Jordan", - "p": "M", - "r": 8, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.69", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "0.71", - "Os": "102", - "On": "21", - "Oa": "4.86", - "Od": "0.74", - "Mp": "18", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 187, - "n": "Sammaritano", - "f": "Frederic", - "p": "M", - "r": 8, - "s": { - "s": "40", - "n": "8", - "a": "5", - "d": "0.87", - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "0.73", - "Mp": "11", - "Ap": "2", - "p": { - "2": { - "n": 6.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 252, - "n": "Chafik", - "f": "Fouad", - "p": "D", - "r": 7, - "s": { - "s": "30", - "n": "6", - "a": "5", - "d": "1", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "0.94", - "Os": "69", - "On": "14", - "Oa": "4.93", - "Od": "0.8", - "Mp": "6", - "Dp": "6", - "p": { - "6": { - "n": 5 - }, - "13": { - "n": 4 - }, - "17": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 7 - } - } - }, - "c": 7 - }, - { - "i": 278, - "n": "Amalfitano", - "f": "Romain", - "p": "M", - "r": 9, - "s": { - "s": "74", - "n": "17", - "a": "4.38", - "d": "0.68", - "Os": "148", - "On": "32", - "Oa": "4.64", - "Od": "0.85", - "Mp": "30", - "Ap": "2", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 312, - "n": "Sliti", - "f": "Naim", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "105", - "n": "21", - "a": "5.02", - "d": "1.01", - "Sg": "1", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "1.27", - "Og": "5", - "Os": "191", - "On": "37", - "Oa": "5.18", - "Od": "0.99", - "Mp": "23", - "Ap": "11", - "p": { - "38": { - "n": 6 - }, - "1": { - "n": 7 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 7 - }, - { - "i": 321, - "n": "Balmont", - "f": "Florent", - "p": "M", - "r": 9, - "s": { - "s": "37", - "n": "8", - "a": "4.63", - "d": "0.86", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "76", - "On": "15", - "Oa": "5.07", - "Od": "1.18", - "Mp": "13", - "p": { - "10": { - "n": 3.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4 - }, - "17": { - "n": 6 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 322, - "n": "Jeannot", - "f": "Benjamin", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.77", - "Og": "1", - "Os": "90", - "On": "20", - "Oa": "4.5", - "Od": "0.76", - "Mp": "5", - "Ap": "8", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 3.5 - }, - "19": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 330, - "n": "Lautoa", - "f": "Wesley", - "p": "D", - "r": 10, - "s": { - "s": "88", - "n": "19", - "a": "4.63", - "d": "0.98", - "Ss": "21", - "Sn": "4", - "Sa": "5.25", - "Sd": "0.56", - "Os": "132", - "On": "28", - "Oa": "4.71", - "Od": "0.99", - "Mp": "6", - "Dp": "20", - "p": { - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 380, - "n": "Haddadi", - "f": "Oussama", - "p": "D", - "r": 11, - "s": { - "g": "2", - "s": "94", - "n": "19", - "a": "4.97", - "d": "1.24", - "Ss": "20", - "Sn": "4", - "Sa": "5.13", - "Sd": "0.54", - "Og": "2", - "Os": "164", - "On": "34", - "Oa": "4.84", - "Od": "1.32", - "Mp": "4", - "Dp": "28", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 3 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7.5, - "g": 1 - }, - "17": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 437, - "n": "Bouka Moutou", - "f": "Arnold", - "p": "D", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "d": "0.5", - "Os": "24", - "On": "5", - "Oa": "4.8", - "Od": "0.4", - "Dp": "3", - "p": { - "38": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 530, - "n": "Allain", - "f": "Bobby", - "p": "G", - "r": 12, - "s": { - "s": "37", - "n": "6", - "a": "6.25", - "d": "0.85", - "Ss": "24", - "Sn": "4", - "Sa": "6", - "Sd": "0.94", - "Os": "37", - "On": "6", - "Oa": "6.25", - "Od": "0.85", - "Gp": "6", - "p": { - "16": { - "n": 7 - }, - "17": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 7 - } - } - }, - "c": 7 - }, - { - "i": 533, - "n": "Rosier", - "f": "Valentin", - "p": "D", - "r": 9, - "s": { - "s": "78", - "n": "17", - "a": "4.59", - "d": "1.3", - "Oao": "2", - "Os": "151", - "On": "33", - "Oa": "4.58", - "Od": "1.35", - "Mp": "8", - "Dp": "24", - "p": { - "38": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 7.5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 3 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 545, - "n": "Kwon Chang-Hoon", - "f": "", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "20", - "n": "4", - "a": "5", - "d": "1.27", - "Sg": "1", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "1.27", - "Og": "7", - "Os": "92", - "On": "18", - "Oa": "5.11", - "Od": "1.25", - "Mp": "7", - "Ap": "7", - "p": { - "38": { - "n": 4 - }, - "19": { - "n": 3.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 7 - }, - { - "i": 1217, - "n": "Yamb\u00e9r\u00e9", - "f": "C\u00e9dric", - "p": "D", - "r": 10, - "s": { - "s": "80", - "n": "17", - "a": "4.74", - "d": "0.99", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "0.61", - "Og": "1", - "Os": "143", - "On": "31", - "Oa": "4.63", - "Od": "1.11", - "Dp": "30", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 3.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 2605, - "n": "Alphonse", - "f": "Micka\u00ebl", - "p": "D", - "r": 7, - "s": { - "g": "1", - "s": "22", - "n": "5", - "a": "4.5", - "d": "1.1", - "Og": "1", - "Os": "22", - "On": "5", - "Oa": "4.5", - "Od": "1.1", - "Dp": "5", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 3 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2633, - "n": "Ntumba", - "f": "Levi", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2639, - "n": "Coulibaly", - "f": "Senou", - "p": "D", - "r": 6, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5", - "d": "0.77", - "Og": "1", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "0.77", - "Dp": "5", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 2640, - "n": "Barbet", - "f": "Theo", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2641, - "n": "Sahibeddine", - "f": "Adrian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2643, - "n": "Loiodice", - "f": "Enzo", - "p": "M", - "r": 8, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "1.05", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "1.05", - "Mp": "11", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2687, - "n": "Jules Keita", - "f": "", - "p": "A", - "r": 8, - "s": { - "g": "2", - "s": "58", - "n": "13", - "a": "4.46", - "d": "1.06", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "58", - "On": "13", - "Oa": "4.46", - "Od": "1.06", - "Mp": "1", - "Ap": "12", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 8, - "g": 2, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "22": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2692, - "n": "Aguerd", - "f": "Nayef", - "p": "D", - "r": 8, - "s": { - "g": "2", - "s": "23", - "n": "4", - "a": "5.88", - "d": "0.65", - "Og": "2", - "Os": "23", - "On": "4", - "Oa": "5.88", - "Od": "0.65", - "Dp": "4", - "p": { - "3": { - "n": 6.5, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 7 - }, - { - "i": 2725, - "n": "R\u00fanarsson", - "f": "R\u00fanar Alex", - "p": "G", - "r": 9, - "s": { - "s": "73", - "n": "15", - "a": "4.87", - "d": "1.09", - "Os": "73", - "On": "15", - "Oa": "4.87", - "Od": "1.09", - "Gp": "15", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "8": { - "n": 2.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 2867, - "n": "Ciman", - "f": "Laurent", - "p": "D", - "r": 10, - "s": { - "s": "38", - "n": "9", - "a": "4.22", - "d": "0.92", - "Os": "38", - "On": "9", - "Oa": "4.22", - "Od": "0.92", - "Dp": "9", - "p": { - "5": { - "n": 3 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 4, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 2941, - "n": "Doumbouya", - "f": "Sory", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2989, - "n": "Godard", - "f": "Theo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 23, - "n": "Majeed Waris", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "3", - "s": "100", - "n": "21", - "a": "4.79", - "d": "0.85", - "Sg": "2", - "Ss": "31", - "Sn": "6", - "Sa": "5.25", - "Sd": "1.11", - "Og": "3", - "Os": "100", - "On": "21", - "Oa": "4.79", - "Od": "0.85", - "Mp": "4", - "Ap": "17", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6, - "g": 1, - "s": 1 - }, - "15": { - "n": 3.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 8 - }, - { - "i": 73, - "n": "Pallois", - "f": "Nicolas", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "48", - "n": "10", - "a": "4.85", - "d": "1.14", - "Og": "1", - "Oao": "1", - "Os": "113", - "On": "23", - "Oa": "4.93", - "Od": "1.09", - "Dp": "23", - "p": { - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 128, - "n": "Sala", - "f": "Emiliano", - "p": "A", - "r": 500, - "s": { - "g": "12", - "s": "102", - "n": "19", - "a": "5.39", - "d": "1.47", - "Og": "17", - "Os": "164", - "On": "34", - "Oa": "4.84", - "Od": "1.53", - "Ap": "34", - "p": { - "1": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 6, - "g": 1, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6, - "g": 1 - }, - "9": { - "n": 3 - }, - "10": { - "n": 8.5, - "g": 3 - }, - "11": { - "n": 6.5, - "g": 1 - }, - "12": { - "n": 7.5, - "g": 2 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 140, - "n": "Boschilia", - "f": "Gabriel", - "p": "M", - "r": 15, - "s": { - "g": "4", - "s": "106", - "n": "20", - "a": "5.3", - "d": "1.12", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.41", - "Og": "4", - "Os": "116", - "On": "22", - "Oa": "5.27", - "Od": "1.07", - "Mp": "6", - "Ap": "15", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 8, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4, - "s": 1 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4, - "s": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 8 - }, - { - "i": 220, - "n": "Diego Carlos", - "f": "", - "p": "D", - "r": 15, - "s": { - "s": "100", - "n": "20", - "a": "5", - "d": "0.96", - "Ss": "73", - "Sn": "14", - "Sa": "5.21", - "Sd": "0.88", - "Os": "152", - "On": "30", - "Oa": "5.07", - "Od": "0.94", - "Dp": "29", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 242, - "n": "Rongier", - "f": "Valentin", - "p": "M", - "r": 15, - "s": { - "g": "1", - "s": "103", - "n": "20", - "a": "5.18", - "d": "0.86", - "Ss": "37", - "Sn": "7", - "Sa": "5.29", - "Sd": "0.7", - "Og": "2", - "Os": "185", - "On": "36", - "Oa": "5.15", - "Od": "0.86", - "Mp": "35", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 246, - "n": "Dup\u00e9", - "f": "Maxime", - "p": "G", - "r": 9, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.94", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.94", - "Gp": "3", - "p": { - "15": { - "n": 3, - "s": 1 - }, - "16": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 308, - "n": "Kacaniklic", - "f": "Alexander", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "26", - "On": "5", - "Oa": "5.2", - "Od": "0.4" - }, - "c": 8 - }, - { - "i": 313, - "n": "Lucas Lima", - "f": "", - "p": "D", - "r": 14, - "s": { - "s": "101", - "n": "21", - "a": "4.81", - "d": "1.06", - "Og": "1", - "Os": "174", - "On": "35", - "Oa": "4.97", - "Od": "1.06", - "Mp": "5", - "Dp": "28", - "Ap": "2", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 7 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 404, - "n": "Djidji", - "f": "Koffi", - "p": "D", - "r": 12, - "s": { - "s": "3", - "n": "1", - "a": "3", - "Os": "59", - "On": "12", - "Oa": "4.92", - "Od": "0.86", - "Dp": "12", - "p": { - "1": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 427, - "n": "Moimb\u00e9", - "f": "Wilfried", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 431, - "n": "Alexis Alegue", - "f": "", - "p": "M", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 445, - "n": "Kwateng", - "f": "Enock", - "p": "D", - "r": 12, - "s": { - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.02", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.25", - "Os": "93", - "On": "19", - "Oa": "4.89", - "Od": "1.02", - "Mp": "2", - "Dp": "17", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 465, - "n": "Sigthorsson", - "f": "Kolbeinn", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4" - }, - "c": 8 - }, - { - "i": 476, - "n": "Tour\u00e9", - "f": "Abdoulaye", - "p": "M", - "r": 15, - "s": { - "g": "2", - "s": "99", - "n": "18", - "a": "5.53", - "d": "1.12", - "Sg": "2", - "Ss": "87", - "Sn": "15", - "Sa": "5.8", - "Sd": "1.01", - "Og": "2", - "Os": "176", - "On": "33", - "Oa": "5.35", - "Od": "0.95", - "Mp": "28", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7.5, - "g": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 8 - }, - { - "i": 499, - "n": "Olliero", - "f": "Alexandre", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 506, - "n": "Walongwa", - "f": "Anthony", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 582, - "n": "Braat", - "f": "Quentin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 941, - "n": "Fabio", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.46", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "47", - "On": "10", - "Oa": "4.75", - "Od": "0.46", - "Mp": "1", - "Dp": "9", - "p": { - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 1163, - "n": "Tatarusanu", - "f": "Ciprian", - "p": "G", - "r": 17, - "s": { - "s": "111", - "n": "20", - "a": "5.55", - "d": "0.82", - "Os": "194", - "On": "36", - "Oa": "5.39", - "Od": "0.73", - "Gp": "36", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 1171, - "n": "Kalifa Coulibaly", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "73", - "n": "17", - "a": "4.32", - "d": "0.73", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "2", - "Os": "92", - "On": "21", - "Oa": "4.4", - "Od": "0.88", - "Ap": "19", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 2.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 8 - }, - { - "i": 1174, - "n": "Andrei Girotto", - "f": "", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "60", - "n": "11", - "a": "5.5", - "d": "1.11", - "Ss": "25", - "Sn": "5", - "Sa": "5", - "Sd": "0.55", - "Og": "1", - "Os": "108", - "On": "20", - "Oa": "5.43", - "Od": "0.99", - "Mp": "18", - "Dp": "1", - "p": { - "10": { - "n": 7 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 8 - }, - { - "i": 1177, - "n": "El Ghanassy", - "f": "Yassine", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "0.43", - "Mp": "2" - }, - "c": 8 - }, - { - "i": 1228, - "n": "Kayembe", - "f": "Joris", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 1255, - "n": "Moutoussamy", - "f": "Samuel", - "p": "M", - "r": 9, - "s": { - "s": "74", - "n": "16", - "a": "4.63", - "d": "0.57", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "99", - "On": "21", - "Oa": "4.71", - "Od": "0.61", - "Mp": "19", - "Ap": "1", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5, - "s": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 1444, - "n": "Charles Traor\u00e9", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "12", - "n": "2", - "a": "6.25", - "d": "0.25", - "Ss": "12", - "Sn": "2", - "Sa": "6.25", - "Sd": "0.25", - "Os": "77", - "On": "16", - "Oa": "4.84", - "Od": "1.27", - "Dp": "15", - "p": { - "21": { - "n": 6 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 8 - }, - { - "i": 1539, - "n": "Krhin", - "f": "Rene", - "p": "M", - "r": 8, - "s": { - "s": "62", - "n": "12", - "a": "5.17", - "d": "0.51", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "114", - "On": "22", - "Oa": "5.18", - "Od": "0.55", - "Mp": "22", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 1552, - "n": "Kolo Muani", - "f": "Randal", - "p": "M", - "r": 1, - "s": { - "s": "7", - "n": "2", - "a": "3.5", - "d": "0.5", - "Os": "7", - "On": "2", - "Oa": "3.5", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "15": { - "n": 4, - "s": 1 - }, - "21": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 2086, - "n": "Ngom", - "f": "Santy", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "0.76", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 2669, - "n": "Dabo", - "f": "Abdoulaye", - "p": "M", - "r": 5, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - }, - "3": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 2686, - "n": "Mendy", - "f": "Batista", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2696, - "n": "Basila", - "f": "Thomas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2707, - "n": "Menig", - "f": "Queensy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2719, - "n": "Lucas Evangelista", - "f": "", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "53", - "n": "11", - "a": "4.86", - "d": "1", - "Og": "1", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "1", - "Mp": "8", - "Ap": "3", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 3.5 - } - } - }, - "c": 8 - }, - { - "i": 2782, - "n": "Ruiz", - "f": "Percy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2795, - "n": "Miazga", - "f": "Matt", - "p": "D", - "r": 8, - "s": { - "s": "36", - "n": "8", - "a": "4.5", - "d": "1", - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1", - "Dp": "8", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 2.5 - } - } - }, - "c": 8 - }, - { - "i": 2834, - "n": "Limbombe", - "f": "Anthony", - "p": "M", - "r": 11, - "s": { - "s": "81", - "n": "16", - "a": "5.09", - "d": "0.47", - "Os": "81", - "On": "16", - "Oa": "5.09", - "Od": "0.47", - "Mp": "12", - "Ap": "4", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2865, - "n": "Kara Mbodji", - "f": "Serigne Modou", - "p": "D", - "r": 8, - "s": { - "s": "32", - "n": "6", - "a": "5.33", - "d": "0.37", - "Os": "32", - "On": "6", - "Oa": "5.33", - "Od": "0.37", - "Dp": "6", - "p": { - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 2938, - "n": "Louza", - "f": "Imran", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2947, - "n": "Youan", - "f": "Thody Elie", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2993, - "n": "Bamba", - "f": "Kader", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 6, - "n": "Payet", - "f": "Dimitri", - "p": "M", - "r": 19, - "s": { - "g": "4", - "s": "102", - "n": "19", - "a": "5.37", - "d": "1.18", - "Og": "6", - "Os": "188", - "On": "33", - "Oa": "5.7", - "Od": "1.34", - "Mp": "25", - "Ap": "6", - "p": { - "1": { - "n": 8, - "g": 2 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 8, - "g": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 10, - "n": "Germain", - "f": "Val\u00e8re", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "90", - "n": "19", - "a": "4.76", - "d": "1", - "Og": "8", - "Os": "168", - "On": "34", - "Oa": "4.96", - "Od": "1.18", - "Mp": "1", - "Ap": "32", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 3 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 22, - "n": "Thauvin", - "f": "Florian", - "p": "M", - "r": 37, - "s": { - "g": "11", - "s": "107", - "n": "20", - "a": "5.38", - "d": "1.48", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.9", - "Og": "23", - "Os": "190", - "On": "33", - "Oa": "5.77", - "Od": "1.51", - "Mp": "25", - "Ap": "8", - "p": { - "1": { - "n": 6, - "g": 1, - "s": 1 - }, - "2": { - "n": 5.5, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7, - "g": 1, - "s": 1 - }, - "5": { - "n": 7.5, - "g": 2 - }, - "6": { - "n": 5.5, - "g": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 8, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 8.5, - "g": 3 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 34, - "n": "Balotelli", - "f": "Mario", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "50", - "n": "11", - "a": "4.59", - "d": "0.87", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Og": "7", - "Os": "118", - "On": "23", - "Oa": "5.15", - "Od": "1.14", - "Ap": "23", - "p": { - "4": { - "n": 4.5, - "e": 2765, - "c": 19 - }, - "6": { - "n": 3.5, - "e": 2787, - "c": 19 - }, - "8": { - "n": 4.5, - "e": 2807, - "c": 19, - "s": 1 - }, - "10": { - "n": 4.5, - "e": 2827, - "c": 19 - }, - "11": { - "n": 5, - "e": 2834, - "c": 19 - }, - "12": { - "n": 4, - "e": 2847, - "c": 19 - }, - "13": { - "n": 4, - "e": 2858, - "c": 19 - }, - "14": { - "n": 6, - "e": 2868, - "c": 19 - }, - "15": { - "n": 4, - "e": 2874, - "c": 19 - }, - "16": { - "n": 4, - "e": 2889, - "c": 19 - }, - "22": { - "n": 6.5, - "g": 1, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 41, - "n": "Sanson", - "f": "Morgan", - "p": "M", - "r": 22, - "s": { - "g": "4", - "s": "98", - "n": "18", - "a": "5.44", - "d": "1.14", - "Og": "7", - "Os": "177", - "On": "33", - "Oa": "5.36", - "Od": "1.08", - "Mp": "29", - "p": { - "1": { - "n": 8 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 6, - "g": 1 - }, - "10": { - "n": 6.5, - "g": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 74, - "n": "N'Jie", - "f": "Clinton", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "38", - "n": "8", - "a": "4.75", - "d": "0.56", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "2", - "Os": "83", - "On": "18", - "Oa": "4.61", - "Od": "0.72", - "Mp": "2", - "Ap": "8", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "17": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 99, - "n": "Lopez", - "f": "Maxime", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "80", - "n": "15", - "a": "5.33", - "d": "0.72", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.63", - "Sd": "1.02", - "Og": "1", - "Os": "138", - "On": "26", - "Oa": "5.31", - "Od": "0.73", - "Mp": "22", - "p": { - "1": { - "n": 6 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 102, - "n": "Pel\u00e9", - "f": "Yohann", - "p": "G", - "r": 11, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.99", - "Os": "73", - "On": "15", - "Oa": "4.9", - "Od": "0.9", - "Gp": "12", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 210, - "n": "Sakai", - "f": "Hiroki", - "p": "D", - "r": 12, - "s": { - "s": "60", - "n": "12", - "a": "5", - "d": "1.08", - "Os": "124", - "On": "25", - "Oa": "4.96", - "Od": "0.96", - "Dp": "24", - "p": { - "1": { - "n": 6.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 216, - "n": "Sarr", - "f": "Bouna", - "p": "M", - "r": 16, - "s": { - "g": "1", - "s": "97", - "n": "19", - "a": "5.13", - "d": "1.07", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.5", - "Sd": "0.61", - "Og": "1", - "Os": "172", - "On": "33", - "Oa": "5.23", - "Od": "0.98", - "Mp": "5", - "Dp": "25", - "p": { - "1": { - "n": 5.5, - "s": 1 - }, - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 221, - "n": "Rolando", - "f": "", - "p": "D", - "r": 10, - "s": { - "s": "41", - "n": "8", - "a": "5.13", - "d": "0.7", - "Ss": "21", - "Sn": "4", - "Sa": "5.38", - "Sd": "0.22", - "Og": "1", - "Oao": "1", - "Os": "105", - "On": "21", - "Oa": "5", - "Od": "0.72", - "Dp": "20", - "p": { - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 253, - "n": "Sertic", - "f": "Gr\u00e9gory", - "p": "M", - "r": 8, - "s": { - "s": "13", - "n": "3", - "a": "4.5", - "d": "0.41", - "Os": "30", - "On": "6", - "Oa": "5.08", - "Od": "0.73", - "Mp": "3", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 314, - "n": "Bedimo", - "f": "Henri", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4" - }, - "c": 9 - }, - { - "i": 325, - "n": "Hubocan", - "f": "Tomas", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 516, - "n": "Cagnon", - "f": "Romain", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 578, - "n": "Escales", - "f": "Florian", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 800, - "n": "Mandanda", - "f": "Steve", - "p": "G", - "r": 16, - "s": { - "s": "84", - "n": "16", - "a": "5.28", - "d": "0.83", - "Ss": "22", - "Sn": "4", - "Sa": "5.5", - "Sd": "0.79", - "Os": "131", - "On": "26", - "Oa": "5.06", - "Od": "0.81", - "Gp": "26", - "p": { - "2": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 1158, - "n": "Luiz Gustavo", - "f": "", - "p": "M", - "r": 15, - "s": { - "s": "87", - "n": "18", - "a": "4.86", - "d": "0.88", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "170", - "On": "33", - "Oa": "5.17", - "Od": "0.97", - "Mp": "19", - "Dp": "14", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 3 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 1162, - "n": "Rami", - "f": "Adil", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "66", - "n": "13", - "a": "5.08", - "d": "1.19", - "Og": "2", - "Oao": "1", - "Os": "124", - "On": "25", - "Oa": "4.96", - "Od": "1.03", - "Dp": "25", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 8, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3.5 - }, - "19": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 1181, - "n": "Amavi", - "f": "Jordan", - "p": "D", - "r": 11, - "s": { - "s": "77", - "n": "16", - "a": "4.81", - "d": "1.06", - "Ss": "21", - "Sn": "4", - "Sa": "5.25", - "Sd": "0.56", - "Os": "141", - "On": "28", - "Oa": "5.04", - "Od": "1.08", - "Mp": "1", - "Dp": "24", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 1197, - "n": "Ocampos", - "f": "Lucas", - "p": "M", - "r": 15, - "s": { - "g": "2", - "s": "95", - "n": "19", - "a": "5.03", - "d": "0.99", - "Og": "5", - "Os": "165", - "On": "32", - "Oa": "5.17", - "Od": "1.13", - "Mp": "26", - "Ap": "4", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 1250, - "n": "Kamara", - "f": "Boubacar", - "p": "D", - "r": 8, - "s": { - "s": "79", - "n": "16", - "a": "4.97", - "d": "0.74", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.25", - "Os": "106", - "On": "21", - "Oa": "5.07", - "Od": "0.84", - "Mp": "1", - "Dp": "20", - "p": { - "1": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 1522, - "n": "Mitroglou", - "f": "Kostas", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "64", - "n": "14", - "a": "4.61", - "d": "0.83", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "10", - "Os": "118", - "On": "24", - "Oa": "4.94", - "Od": "1.11", - "Ap": "16", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 3.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 1525, - "n": "Abdennour", - "f": "Aymen", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 9 - }, - { - "i": 1553, - "n": "Sari", - "f": "Yusuf", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2155, - "n": "Rocchia", - "f": "Christopher", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 2634, - "n": "Perrin", - "f": "Lucas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2635, - "n": "Marasovic", - "f": "Sacha", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2712, - "n": "Caleta-Car", - "f": "Duje", - "p": "D", - "r": 6, - "s": { - "s": "22", - "n": "5", - "a": "4.4", - "d": "0.97", - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "0.97", - "Dp": "5", - "p": { - "2": { - "n": 3.5 - }, - "6": { - "n": 3 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 2779, - "n": "Chabrolle", - "f": "Florian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2835, - "n": "Strootman", - "f": "Kevin", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "82", - "n": "16", - "a": "5.16", - "d": "0.88", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.41", - "Og": "1", - "Os": "82", - "On": "16", - "Oa": "5.16", - "Od": "0.88", - "Mp": "16", - "p": { - "4": { - "n": 5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 2860, - "n": "Radonjic", - "f": "Nemanja", - "p": "M", - "r": 8, - "s": { - "s": "34", - "n": "8", - "a": "4.31", - "d": "0.35", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.25", - "Os": "34", - "On": "8", - "Oa": "4.31", - "Od": "0.35", - "Mp": "1", - "Ap": "7", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 2939, - "n": "Philiponeau", - "f": "Alexandre", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2953, - "n": "Ali Mohamed", - "f": "Abdallah", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 55, - "n": "Toivonen", - "f": "Ola", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "32", - "On": "8", - "Oa": "4" - }, - "c": 10 - }, - { - "i": 59, - "n": "Jullien", - "f": "Christopher", - "p": "D", - "r": 10, - "s": { - "s": "98", - "n": "20", - "a": "4.9", - "d": "1.21", - "Ss": "20", - "Sn": "4", - "Sa": "5", - "Sd": "1", - "Og": "1", - "Os": "144", - "On": "29", - "Oa": "4.97", - "Od": "1.09", - "Dp": "29", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 2 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 81, - "n": "Cahuzac", - "f": "Yannick", - "p": "M", - "r": 10, - "s": { - "s": "67", - "n": "13", - "a": "5.15", - "d": "0.5", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Os": "131", - "On": "25", - "Oa": "5.24", - "Od": "0.63", - "Mp": "22", - "Dp": "2", - "Ap": "1", - "p": { - "27": { - "n": 5 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 5.5, - "s": 1 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 122, - "n": "Reynet", - "f": "Baptiste", - "p": "G", - "r": 15, - "s": { - "ao": "1", - "s": "113", - "n": "21", - "a": "5.4", - "d": "1.41", - "Ss": "36", - "Sn": "6", - "Sa": "6.08", - "Sd": "1.51", - "Oao": "1", - "Os": "202", - "On": "37", - "Oa": "5.47", - "Od": "1.23", - "Gp": "37", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4, - "a": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 8 - }, - "22": { - "n": 7.5 - } - } - }, - "c": 10 - }, - { - "i": 144, - "n": "Sylla", - "f": "Issiaga", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "51", - "n": "10", - "a": "5.1", - "d": "0.92", - "Ss": "24", - "Sn": "5", - "Sa": "4.9", - "Sd": "0.49", - "Og": "2", - "Os": "112", - "On": "22", - "Oa": "5.09", - "Od": "0.89", - "Mp": "6", - "Dp": "12", - "Ap": "1", - "p": { - "27": { - "n": 6 - }, - "4": { - "n": 6 - }, - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "16": { - "n": 7, - "g": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 182, - "n": "Yago", - "f": "Steeve", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Oao": "1", - "Os": "41", - "On": "9", - "Oa": "4.56", - "Od": "0.96", - "Dp": "7", - "p": { - "27": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 191, - "n": "Moubandje", - "f": "Fran\u00e7ois", - "p": "D", - "r": 10, - "s": { - "s": "90", - "n": "19", - "a": "4.74", - "d": "0.85", - "Os": "133", - "On": "28", - "Oa": "4.75", - "Od": "0.91", - "Mp": "1", - "Dp": "26", - "p": { - "27": { - "n": 4 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 2.5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 234, - "n": "Bodiger", - "f": "Yann", - "p": "M", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "8", - "On": "2", - "Oa": "4.25", - "Od": "0.25", - "Mp": "1", - "p": { - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 251, - "n": "Durmaz", - "f": "Jimmy", - "p": "M", - "r": 11, - "s": { - "g": "3", - "s": "96", - "n": "20", - "a": "4.83", - "d": "0.93", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "3", - "Os": "137", - "On": "28", - "Oa": "4.91", - "Od": "0.81", - "Mp": "20", - "Ap": "3", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 7, - "g": 2 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3 - }, - "20": { - "n": 4, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 260, - "n": "Mubele", - "f": "Firmin Ndombe", - "p": "A", - "r": 10, - "s": { - "s": "43", - "n": "10", - "a": "4.35", - "d": "0.59", - "Og": "1", - "Os": "96", - "On": "22", - "Oa": "4.39", - "Od": "0.69", - "Ap": "14", - "p": { - "27": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3 - } - } - }, - "c": 10 - }, - { - "i": 261, - "n": "Som\u00e1lia", - "f": "", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "0.43", - "Mp": "6" - }, - "c": 10 - }, - { - "i": 302, - "n": "Jean", - "f": "Corentin", - "p": "A", - "r": 8, - "s": { - "s": "57", - "n": "13", - "a": "4.42", - "d": "0.73", - "Og": "1", - "Os": "113", - "On": "25", - "Oa": "4.54", - "Od": "0.98", - "Mp": "5", - "Ap": "14", - "p": { - "27": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 6 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 328, - "n": "Goicoechea", - "f": "Mauro", - "p": "G", - "r": 9, - "s": { - "s": "14", - "n": "2", - "a": "7", - "d": "1", - "Os": "14", - "On": "2", - "Oa": "7", - "Od": "1", - "Gp": "2", - "p": { - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 355, - "n": "Moreira", - "f": "Steven", - "p": "D", - "r": 8, - "s": { - "s": "33", - "n": "8", - "a": "4.13", - "d": "0.89", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "33", - "On": "8", - "Oa": "4.13", - "Od": "0.89", - "Mp": "3", - "Dp": "5", - "p": { - "9": { - "n": 4.5 - }, - "10": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 3 - }, - "20": { - "n": 4 - }, - "22": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 359, - "n": "Leya Iseka", - "f": "Aaron", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "74", - "n": "17", - "a": "4.38", - "d": "1.13", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.24", - "Og": "3", - "Os": "74", - "On": "17", - "Oa": "4.38", - "Od": "1.13", - "Ap": "17", - "p": { - "1": { - "n": 2.5 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 2.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6, - "g": 1, - "s": 1 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 394, - "n": "Amian", - "f": "Kelvin", - "p": "D", - "r": 9, - "s": { - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.24", - "Og": "1", - "Os": "171", - "On": "35", - "Oa": "4.89", - "Od": "1.06", - "Mp": "1", - "Dp": "33", - "p": { - "27": { - "n": 4 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 6 - }, - "11": { - "n": 3 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 481, - "n": "Michelin", - "f": "Clement", - "p": "D", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Dp": "2", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 517, - "n": "Vidal", - "f": "Marc", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 556, - "n": "Sangar\u00e9", - "f": "Ibrahim", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "74", - "n": "13", - "a": "5.69", - "d": "0.69", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.47", - "Og": "2", - "Os": "142", - "On": "26", - "Oa": "5.46", - "Od": "0.88", - "Mp": "26", - "p": { - "27": { - "n": 7, - "g": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 1024, - "n": "Sanogo", - "f": "Yaya", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "37", - "n": "8", - "a": "4.69", - "d": "0.97", - "Sg": "2", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "1.25", - "Og": "8", - "Os": "111", - "On": "22", - "Oa": "5.07", - "Od": "1.35", - "Ap": "22", - "p": { - "27": { - "n": 7, - "g": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "g": 1 - }, - "21": { - "n": 7, - "g": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 1025, - "n": "Gradel", - "f": "Max-Alain", - "p": "A", - "r": 25, - "s": { - "g": "8", - "s": "117", - "n": "21", - "a": "5.6", - "d": "1.29", - "Sg": "3", - "Ss": "28", - "Sn": "5", - "Sa": "5.6", - "Sd": "0.97", - "Og": "11", - "Os": "189", - "On": "35", - "Oa": "5.41", - "Od": "1.33", - "Mp": "22", - "Ap": "13", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 7.5, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7.5, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 5.5, - "g": 1 - }, - "19": { - "n": 7, - "g": 2 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 1208, - "n": "Steven Fortes", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "15", - "n": "3", - "a": "5.17", - "d": "0.24", - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "0.49", - "Dp": "4", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 1273, - "n": "Boisgard", - "f": "Quentin", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 1528, - "n": "Dossevi", - "f": "Mathieu", - "p": "M", - "r": 12, - "s": { - "g": "2", - "s": "111", - "n": "22", - "a": "5.07", - "d": "0.95", - "Sg": "2", - "Ss": "111", - "Sn": "22", - "Sa": "5.07", - "Sd": "0.95", - "Og": "2", - "Os": "179", - "On": "35", - "Oa": "5.13", - "Od": "1.12", - "Mp": "29", - "Ap": "6", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 2041, - "n": "Khalid", - "f": "Driss", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2621, - "n": "Bostock", - "f": "John", - "p": "M", - "r": 9, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.78", - "Os": "52", - "On": "11", - "Oa": "4.73", - "Od": "0.78", - "Mp": "11", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "20": { - "n": 3.5 - } - } - }, - "c": 10 - }, - { - "i": 2739, - "n": "Manu Garc\u00eda", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "91", - "n": "19", - "a": "4.79", - "d": "0.96", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "91", - "On": "19", - "Oa": "4.79", - "Od": "0.96", - "Mp": "19", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 2767, - "n": "Todibo", - "f": "Jean-Clair", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "49", - "n": "10", - "a": "4.9", - "d": "1.37", - "Og": "1", - "Os": "49", - "On": "10", - "Oa": "4.9", - "Od": "1.37", - "Dp": "10", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 6, - "g": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 2.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 2780, - "n": "El Mokkedem", - "f": "Hakim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2781, - "n": "Goncalves", - "f": "Mathieu", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2783, - "n": "Osei Yaw", - "f": "Derick", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2786, - "n": "Taoui", - "f": "Adil", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2824, - "n": "Mbia", - "f": "St\u00e9phane", - "p": "M", - "r": 9, - "s": { - "s": "23", - "n": "5", - "a": "4.7", - "d": "1.08", - "Os": "23", - "On": "5", - "Oa": "4.7", - "Od": "1.08", - "Mp": "2", - "Dp": "3", - "p": { - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 2936, - "n": "Carvalho", - "f": "Matis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2942, - "n": "N'Goumou Minpol", - "f": "Nathan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2950, - "n": "Sidibe", - "f": "Kalidou", - "p": "M", - "r": 4, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.41", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.41", - "Mp": "4", - "p": { - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 10 - }, - { - "i": 2960, - "n": "Diakite", - "f": "Bafode", - "p": "D", - "r": 1, - "s": { - "s": "19", - "n": "4", - "a": "4.75", - "d": "0.75", - "Os": "19", - "On": "4", - "Oa": "4.75", - "Od": "0.75", - "Mp": "2", - "Dp": "2", - "p": { - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 2962, - "n": "Bessile", - "f": "Loic", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2996, - "n": "Shoji", - "f": "Gen", - "p": "D", - "r": 7, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Dp": "2", - "p": { - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 3228, - "n": "Kone", - "f": "Kouadio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 181, - "n": "Soumaoro", - "f": "Adama", - "p": "D", - "r": 13, - "s": { - "s": "86", - "n": "15", - "a": "5.77", - "d": "0.63", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Os": "118", - "On": "22", - "Oa": "5.39", - "Od": "0.87", - "Dp": "22", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 192, - "n": "Benzia", - "f": "Yassine", - "p": "A", - "r": 13, - "s": { - "s": "13", - "n": "2", - "a": "6.5", - "d": "0.5", - "Og": "1", - "Os": "79", - "On": "14", - "Oa": "5.64", - "Od": "0.72", - "Mp": "13", - "p": { - "28": { - "n": 6 - }, - "1": { - "n": 7 - }, - "2": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 193, - "n": "El Ghazi", - "f": "Anwar", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1.12", - "Mp": "2", - "Ap": "1" - }, - "c": 12 - }, - { - "i": 211, - "n": "Pepe", - "f": "Nicolas", - "p": "A", - "r": 42, - "s": { - "g": "15", - "s": "134", - "n": "22", - "a": "6.09", - "d": "1.55", - "Sg": "15", - "Ss": "134", - "Sn": "22", - "Sa": "6.09", - "Sd": "1.55", - "Og": "23", - "Os": "218", - "On": "38", - "Oa": "5.74", - "Od": "1.61", - "Mp": "30", - "Ap": "5", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 8, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 8 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 8.5, - "g": 3 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 5.5, - "g": 1 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 8, - "g": 1 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 8, - "g": 2 - } - } - }, - "c": 12 - }, - { - "i": 316, - "n": "Maignan", - "f": "Mike", - "p": "G", - "r": 24, - "s": { - "s": "127", - "n": "22", - "a": "5.77", - "d": "0.79", - "Ss": "127", - "Sn": "22", - "Sa": "5.77", - "Sd": "0.79", - "Os": "187", - "On": "35", - "Oa": "5.34", - "Od": "1.04", - "Gp": "35", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 7 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 7 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 425, - "n": "Xeka", - "f": "", - "p": "M", - "r": 10, - "s": { - "g": "2", - "s": "98", - "n": "19", - "a": "5.16", - "d": "0.95", - "Sg": "1", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "1", - "Og": "2", - "Os": "113", - "On": "22", - "Oa": "5.14", - "Od": "0.88", - "Mp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 6 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 430, - "n": "Bahlouli", - "f": "Fares", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Od": "0.5" - }, - "c": 12 - }, - { - "i": 455, - "n": "Jonathan Ikone", - "f": "", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "107", - "n": "22", - "a": "4.86", - "d": "0.64", - "Sg": "1", - "Ss": "107", - "Sn": "22", - "Sa": "4.86", - "Sd": "0.64", - "Og": "1", - "Os": "152", - "On": "32", - "Oa": "4.75", - "Od": "0.67", - "Mp": "23", - "Ap": "6", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 482, - "n": "Bamba", - "f": "Jonathan", - "p": "M", - "r": 23, - "s": { - "g": "8", - "s": "118", - "n": "22", - "a": "5.39", - "d": "1.43", - "Sg": "8", - "Ss": "118", - "Sn": "22", - "Sa": "5.39", - "Sd": "1.43", - "Og": "10", - "Os": "203", - "On": "38", - "Oa": "5.36", - "Od": "1.36", - "Mp": "30", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 8, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 7, - "g": 2 - }, - "9": { - "n": 8.5, - "g": 2 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 496, - "n": "Mendyl", - "f": "Hamza", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1.12", - "Mp": "1", - "Dp": "6" - }, - "c": 12 - }, - { - "i": 527, - "n": "Kone", - "f": "Youssouf", - "p": "D", - "r": 3, - "s": { - "s": "26", - "n": "5", - "a": "5.3", - "d": "0.4", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.41", - "Os": "26", - "On": "5", - "Oa": "5.3", - "Od": "0.4", - "Dp": "5", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 12 - }, - { - "i": 819, - "n": "Jos\u00e9 Fonte", - "f": "", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "107", - "n": "20", - "a": "5.35", - "d": "0.94", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "0.24", - "Og": "1", - "Os": "107", - "On": "20", - "Oa": "5.35", - "Od": "0.94", - "Dp": "20", - "p": { - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 954, - "n": "Remy", - "f": "Lo\u00efc", - "p": "A", - "r": 10, - "s": { - "g": "1", - "s": "60", - "n": "13", - "a": "4.62", - "d": "0.92", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "4", - "Os": "106", - "On": "23", - "Oa": "4.61", - "Od": "1.01", - "Mp": "2", - "Ap": "17", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 2.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1020, - "n": "Pied", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 7, - "s": { - "s": "25", - "n": "5", - "a": "5", - "d": "0.71", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.62", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "0.71", - "Dp": "5", - "p": { - "11": { - "n": 5, - "s": 1 - }, - "18": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1167, - "n": "Thiago Maia", - "f": "", - "p": "M", - "r": 16, - "s": { - "s": "72", - "n": "14", - "a": "5.18", - "d": "0.88", - "Os": "145", - "On": "28", - "Oa": "5.2", - "Od": "0.78", - "Mp": "26", - "p": { - "28": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 1184, - "n": "Jakubech", - "f": "Adam", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1191, - "n": "Thiago Mendes", - "f": "", - "p": "M", - "r": 26, - "s": { - "s": "121", - "n": "20", - "a": "6.05", - "d": "0.93", - "Ss": "49", - "Sn": "8", - "Sa": "6.13", - "Sd": "1.27", - "Os": "195", - "On": "35", - "Oa": "5.57", - "Od": "1.13", - "Mp": "31", - "p": { - "28": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 7 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 7.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 8 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 1202, - "n": "Boukholda", - "f": "Chahreddine", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1215, - "n": "Luiz Araujo", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "61", - "n": "13", - "a": "4.73", - "d": "0.58", - "Og": "6", - "Os": "134", - "On": "27", - "Oa": "4.98", - "Od": "0.91", - "Mp": "12", - "Ap": "11", - "p": { - "28": { - "n": 5, - "g": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6, - "g": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6, - "g": 1, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1226, - "n": "Dabila", - "f": "Kouadio", - "p": "D", - "r": 10, - "s": { - "s": "62", - "n": "12", - "a": "5.21", - "d": "0.69", - "Os": "116", - "On": "24", - "Oa": "4.85", - "Od": "0.76", - "Dp": "22", - "p": { - "1": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 1234, - "n": "Edgar I\u00e9", - "f": "", - "p": "D", - "r": 8, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Og": "1", - "Os": "96", - "On": "21", - "Oa": "4.6", - "Od": "0.87", - "Dp": "21", - "p": { - "28": { - "n": 4 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 1267, - "n": "Sadzoute", - "f": "Scotty", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1276, - "n": "Faraj", - "f": "Imad", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "21", - "On": "4", - "Oa": "5.25", - "Od": "0.43", - "Dp": "1", - "p": { - "28": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1541, - "n": "Koffi", - "f": "Kouakou", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Gp": "3" - }, - "c": 12 - }, - { - "i": 2037, - "n": "Verite", - "f": "Benjamin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2039, - "n": "Soumare", - "f": "Boubakary", - "p": "M", - "r": 9, - "s": { - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.25", - "Ss": "19", - "Sn": "4", - "Sa": "4.75", - "Sd": "0.25", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.3", - "Mp": "10", - "p": { - "28": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2082, - "n": "Flips", - "f": "Alexis", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2512, - "n": "Rui Fonte", - "f": "", - "p": "A", - "r": 9, - "s": { - "s": "39", - "n": "9", - "a": "4.39", - "d": "0.46", - "Os": "39", - "On": "9", - "Oa": "4.39", - "Od": "0.46", - "Ap": "9", - "p": { - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2714, - "n": "Zeki \u00c7elik", - "f": "Mehmet", - "p": "D", - "r": 14, - "s": { - "s": "106", - "n": "21", - "a": "5.07", - "d": "0.56", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "106", - "On": "21", - "Oa": "5.07", - "Od": "0.56", - "Dp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 2738, - "n": "Gabriel", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "8": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2771, - "n": "Zekaj", - "f": "Arton", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2784, - "n": "Ouro-Sama", - "f": "Hakim", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2791, - "n": "Rafael Le\u00e3o", - "f": "", - "p": "A", - "r": 18, - "s": { - "g": "5", - "s": "60", - "n": "12", - "a": "5", - "d": "1.02", - "Sg": "4", - "Ss": "32", - "Sn": "6", - "Sa": "5.42", - "Sd": "1.06", - "Og": "5", - "Os": "60", - "On": "12", - "Oa": "5", - "Od": "1.02", - "Ap": "12", - "p": { - "8": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6, - "g": 1 - }, - "19": { - "n": 5.5, - "g": 1 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 6.5, - "g": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 2859, - "n": "Fernando Costanza", - "f": "", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3122, - "n": "Niasse", - "f": "Cheikh", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3123, - "n": "Okou", - "f": "Teddy", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3, - "n": "Falcao", - "f": "Radamel", - "p": "A", - "r": 20, - "s": { - "g": "8", - "s": "91", - "n": "19", - "a": "4.82", - "d": "1.42", - "Sg": "1", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "0.5", - "Og": "10", - "Oao": "1", - "Os": "128", - "On": "27", - "Oa": "4.76", - "Od": "1.42", - "Ap": "26", - "p": { - "1": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 3 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "12": { - "n": 3.5, - "s": 1 - }, - "13": { - "n": 2.5 - }, - "14": { - "n": 6.5, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7, - "g": 2 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5.5, - "g": 1 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 19, - "n": "Subasic", - "f": "Danijel", - "p": "G", - "r": 8, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "d": "1", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "82", - "On": "16", - "Oa": "5.13", - "Od": "1.1", - "Gp": "16", - "p": { - "27": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 24, - "n": "Sidibe", - "f": "Djibril", - "p": "D", - "r": 8, - "s": { - "s": "46", - "n": "11", - "a": "4.23", - "d": "0.65", - "Ss": "7", - "Sn": "2", - "Sa": "3.75", - "Sd": "0.25", - "Os": "111", - "On": "23", - "Oa": "4.85", - "Od": "1.31", - "Mp": "3", - "Dp": "19", - "p": { - "27": { - "n": 4 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "13": { - "n": 3 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 50, - "n": "Glik", - "f": "Kamil", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "89", - "n": "19", - "a": "4.68", - "d": "0.91", - "Ss": "31", - "Sn": "7", - "Sa": "4.5", - "Sd": "1.2", - "Og": "2", - "Os": "162", - "On": "33", - "Oa": "4.91", - "Od": "0.92", - "Dp": "33", - "p": { - "27": { - "n": 4 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "g": 1 - }, - "12": { - "n": 4 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 3 - }, - "20": { - "n": 6 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 60, - "n": "Vainqueur", - "f": "William", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 94, - "n": "Jemerson", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "68", - "n": "14", - "a": "4.89", - "d": "0.85", - "Os": "138", - "On": "28", - "Oa": "4.95", - "Od": "1", - "Dp": "28", - "p": { - "27": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "7": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 208, - "n": "A\u00eft Bennasser", - "f": "Youssef", - "p": "M", - "r": 16, - "s": { - "s": "73", - "n": "13", - "a": "5.62", - "d": "0.88", - "Os": "126", - "On": "24", - "Oa": "5.25", - "Od": "0.99", - "Mp": "23", - "p": { - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 7 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - } - } - }, - "c": 13 - }, - { - "i": 274, - "n": "Almamy Tour\u00e9", - "f": "", - "p": "D", - "r": 7, - "s": { - "s": "18", - "n": "4", - "a": "4.63", - "d": "0.41", - "Og": "1", - "Os": "68", - "On": "14", - "Oa": "4.89", - "Od": "0.6", - "Dp": "11", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 275, - "n": "Raggi", - "f": "Andrea", - "p": "D", - "r": 9, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.75", - "Og": "1", - "Os": "87", - "On": "18", - "Oa": "4.86", - "Od": "1.01", - "Mp": "1", - "Dp": "16", - "p": { - "27": { - "n": 5 - }, - "6": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 284, - "n": "Rony Lopes", - "f": "", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "41", - "n": "8", - "a": "5.13", - "d": "1.24", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.62", - "Og": "13", - "Os": "133", - "On": "24", - "Oa": "5.54", - "Od": "1.22", - "Mp": "18", - "Ap": "4", - "p": { - "27": { - "n": 7, - "g": 2 - }, - "1": { - "n": 7.5, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 324, - "n": "Badiashile", - "f": "Loic", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 336, - "n": "Jorge", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Os": "16", - "On": "4", - "Oa": "4", - "Od": "1", - "Mp": "1", - "Dp": "3" - }, - "c": 13 - }, - { - "i": 368, - "n": "Pierre Gabriel", - "f": "Ronael", - "p": "D", - "r": 9, - "s": { - "s": "21", - "n": "4", - "a": "5.38", - "d": "0.41", - "Os": "31", - "On": "6", - "Oa": "5.25", - "Od": "0.38", - "Dp": "4", - "p": { - "1": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 405, - "n": "Gaspar", - "f": "Jordy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 408, - "n": "N'Doram", - "f": "Kevin", - "p": "D", - "r": 8, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.94", - "Os": "45", - "On": "9", - "Oa": "5", - "Od": "0.82", - "Mp": "2", - "Dp": "4", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 3 - } - } - }, - "c": 13 - }, - { - "i": 573, - "n": "Sy", - "f": "Seydou", - "p": "G", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "22", - "On": "4", - "Oa": "5.5", - "Od": "1.12", - "Gp": "3", - "p": { - "10": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 646, - "n": "F\u00e0bregas", - "f": "Cesc", - "p": "M", - "r": 17, - "s": { - "s": "39", - "n": "8", - "a": "4.94", - "d": "0.39", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "1", - "Os": "104", - "On": "20", - "Oa": "5.23", - "Od": "0.93", - "Mp": "17", - "p": { - "20": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "10": { - "n": 5, - "e": 3265, - "c": 25, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 3276, - "c": 25, - "s": 1 - }, - "12": { - "n": 5, - "e": 3285, - "c": 25, - "s": 1 - }, - "15": { - "n": 4.5, - "e": 3314, - "c": 25 - }, - "18": { - "n": 5, - "e": 3341, - "c": 25, - "s": 1 - }, - "21": { - "n": 4.5, - "e": 3371, - "c": 25, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 698, - "n": "Chadli", - "f": "Nacer", - "p": "M", - "r": 9, - "s": { - "s": "49", - "n": "11", - "a": "4.45", - "d": "0.54", - "Os": "59", - "On": "13", - "Oa": "4.54", - "Od": "0.54", - "Mp": "11", - "p": { - "5": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 884, - "n": "Adama Traor\u00e9", - "f": "", - "p": "M", - "r": 8, - "s": { - "s": "28", - "n": "6", - "a": "4.67", - "d": "0.47", - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.47", - "Mp": "5", - "Ap": "1", - "p": { - "3": { - "n": 4 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1160, - "n": "Tielemans", - "f": "Youri", - "p": "M", - "r": 18, - "s": { - "g": "5", - "s": "104", - "n": "20", - "a": "5.23", - "d": "0.99", - "Sg": "2", - "Ss": "49", - "Sn": "9", - "Sa": "5.44", - "Sd": "1.04", - "Og": "5", - "Os": "180", - "On": "34", - "Oa": "5.31", - "Od": "0.99", - "Mp": "31", - "p": { - "27": { - "n": 4 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 1201, - "n": "Mboula", - "f": "Jordi", - "p": "A", - "r": 6, - "s": { - "s": "31", - "n": "7", - "a": "4.43", - "d": "0.49", - "Og": "1", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.67", - "Mp": "3", - "Ap": "4", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1216, - "n": "Lacina Traor\u00e9", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "29", - "On": "7", - "Oa": "4.14", - "Od": "0.35", - "Ap": "4" - }, - "c": 13 - }, - { - "i": 1254, - "n": "Benaglio", - "f": "Diego", - "p": "G", - "r": 14, - "s": { - "s": "98", - "n": "19", - "a": "5.18", - "d": "0.96", - "Os": "98", - "On": "19", - "Oa": "5.18", - "Od": "0.96", - "Gp": "19", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 3 - } - } - }, - "c": 13 - }, - { - "i": 1256, - "n": "Ballo-Toure", - "f": "Fode", - "p": "D", - "r": 17, - "s": { - "s": "106", - "n": "21", - "a": "5.07", - "d": "0.84", - "Ss": "39", - "Sn": "8", - "Sa": "4.88", - "Sd": "0.78", - "Os": "151", - "On": "32", - "Oa": "4.73", - "Od": "0.94", - "Mp": "3", - "Dp": "28", - "p": { - "1": { - "n": 5, - "e": 2734, - "c": 12 - }, - "2": { - "n": 5, - "e": 2746, - "c": 12 - }, - "3": { - "n": 5, - "e": 2754, - "c": 12 - }, - "4": { - "n": 5, - "e": 2762, - "c": 12 - }, - "5": { - "n": 5, - "e": 2772, - "c": 12 - }, - "6": { - "n": 5, - "e": 2784, - "c": 12 - }, - "7": { - "n": 6, - "e": 2793, - "c": 12 - }, - "8": { - "n": 6.5, - "e": 2804, - "c": 12 - }, - "9": { - "n": 5, - "e": 2816, - "c": 12 - }, - "10": { - "n": 6.5, - "e": 2823, - "c": 12 - }, - "11": { - "n": 6, - "e": 2836, - "c": 12 - }, - "12": { - "n": 4, - "e": 2848, - "c": 12 - }, - "13": { - "n": 3.5, - "e": 2855, - "c": 12 - }, - "15": { - "n": 5, - "e": 2875, - "c": 12 - }, - "16": { - "n": 6, - "e": 2887, - "c": 12 - }, - "17": { - "n": 5.5, - "e": 2894, - "c": 12 - }, - "18": { - "n": 4.5, - "e": 2910, - "c": 12 - }, - "19": { - "n": 5, - "e": 2914, - "c": 12 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 1275, - "n": "Sylla", - "f": "Moussa", - "p": "A", - "r": 8, - "s": { - "s": "62", - "n": "15", - "a": "4.17", - "d": "0.51", - "Ss": "26", - "Sn": "6", - "Sa": "4.33", - "Sd": "0.37", - "Og": "2", - "Os": "87", - "On": "20", - "Oa": "4.38", - "Od": "0.85", - "Mp": "1", - "Ap": "17", - "p": { - "5": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1433, - "n": "Aholou", - "f": "Jean Eudes", - "p": "M", - "r": 8, - "s": { - "s": "44", - "n": "9", - "a": "4.89", - "d": "0.7", - "Og": "2", - "Os": "117", - "On": "23", - "Oa": "5.09", - "Od": "0.82", - "Mp": "23", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6 - }, - "7": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 1523, - "n": "Jovetic", - "f": "Stevan", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5.1", - "d": "0.97", - "Og": "7", - "Os": "69", - "On": "12", - "Oa": "5.79", - "Od": "1.23", - "Mp": "2", - "Ap": "7", - "p": { - "27": { - "n": 7, - "g": 1, - "s": 1 - }, - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2034, - "n": "Keita", - "f": "", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "43", - "On": "8", - "Oa": "5.38", - "Od": "1.11", - "Mp": "5", - "Ap": "2", - "p": { - "27": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2038, - "n": "Geubbels", - "f": "Willem", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2040, - "n": "Serrano", - "f": "Julien", - "p": "D", - "r": 1, - "s": { - "s": "15", - "n": "3", - "a": "5", - "Os": "38", - "On": "7", - "Oa": "5.43", - "Od": "0.49", - "Mp": "1", - "Dp": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2145, - "n": "Faivre", - "f": "Romain", - "p": "M", - "r": 3, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "19": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2275, - "n": "Pellegri", - "f": "Pietro", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "15", - "n": "3", - "a": "5", - "d": "1.08", - "Og": "1", - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "0.91", - "Ap": "3", - "p": { - "3": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2614, - "n": "Pel\u00e9", - "f": "", - "p": "M", - "r": 9, - "s": { - "s": "36", - "n": "8", - "a": "4.56", - "d": "0.53", - "Os": "36", - "On": "8", - "Oa": "4.56", - "Od": "0.53", - "Mp": "8", - "p": { - "8": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2622, - "n": "Diop", - "f": "Sofiane", - "p": "M", - "r": 9, - "s": { - "s": "57", - "n": "13", - "a": "4.42", - "d": "0.51", - "Os": "57", - "On": "13", - "Oa": "4.42", - "Od": "0.51", - "Mp": "12", - "Ap": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2623, - "n": "Robert Navarro", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2671, - "n": "Diallo", - "f": "Ibrahima", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2672, - "n": "Mbae", - "f": "Safwan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2691, - "n": "Mexique", - "f": "Jonathan", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2693, - "n": "Panzo", - "f": "Jonathan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2720, - "n": "Golovin", - "f": "Aleksandr", - "p": "M", - "r": 9, - "s": { - "s": "62", - "n": "14", - "a": "4.46", - "d": "0.74", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.62", - "Os": "62", - "On": "14", - "Oa": "4.46", - "Od": "0.74", - "Mp": "7", - "Ap": "7", - "p": { - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 2.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2721, - "n": "Barreca", - "f": "Antonio", - "p": "D", - "r": 8, - "s": { - "s": "33", - "n": "7", - "a": "4.71", - "d": "0.52", - "Os": "33", - "On": "7", - "Oa": "4.71", - "Od": "0.52", - "Dp": "7", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4 - }, - "6": { - "n": 5 - }, - "8": { - "n": 4 - }, - "11": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 2797, - "n": "Echi\u00e9jil\u00e9", - "f": "Elderson", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2833, - "n": "Henrichs", - "f": "Benjamin", - "p": "D", - "r": 11, - "s": { - "g": "1", - "s": "83", - "n": "18", - "a": "4.64", - "d": "0.74", - "Sg": "1", - "Ss": "75", - "Sn": "16", - "Sa": "4.69", - "Sd": "0.63", - "Og": "1", - "Os": "83", - "On": "18", - "Oa": "4.64", - "Od": "0.74", - "Mp": "9", - "Dp": "9", - "p": { - "4": { - "n": 3 - }, - "5": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "g": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 2892, - "n": "Isidor", - "f": "Wilson", - "p": "A", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "13": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2954, - "n": "Massengo", - "f": "Han-Noah", - "p": "M", - "r": 7, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2955, - "n": "Gouano", - "f": "Gobe", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2956, - "n": "Biancone", - "f": "Giulian", - "p": "D", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "19": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2958, - "n": "Henin", - "f": "Yanis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2959, - "n": "Kephren Thuram", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2961, - "n": "Badiashile Mukinayi", - "f": "Benoit", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "26", - "n": "6", - "a": "4.42", - "d": "0.98", - "Sg": "1", - "Ss": "26", - "Sn": "6", - "Sa": "4.42", - "Sd": "0.98", - "Og": "1", - "Os": "26", - "On": "6", - "Oa": "4.42", - "Od": "0.98", - "Dp": "6", - "p": { - "17": { - "n": 5, - "g": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 84, - "n": "Rodelin", - "f": "Ronny", - "p": "A", - "r": 8, - "s": { - "s": "54", - "n": "12", - "a": "4.54", - "d": "0.25", - "Og": "1", - "Os": "129", - "On": "27", - "Oa": "4.8", - "Od": "0.77", - "Mp": "13", - "Ap": "13", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 110, - "n": "Sorbon", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 9, - "s": { - "s": "77", - "n": "17", - "a": "4.56", - "d": "0.94", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "124", - "On": "27", - "Oa": "4.61", - "Od": "0.84", - "Dp": "27", - "p": { - "31": { - "n": 5 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 115, - "n": "Roux", - "f": "Nolan", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "53", - "n": "12", - "a": "4.46", - "d": "0.92", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "10", - "Os": "128", - "On": "26", - "Oa": "4.94", - "Od": "1.34", - "Mp": "11", - "Ap": "15", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 142, - "n": "Kerbrat", - "f": "Christophe", - "p": "D", - "r": 10, - "s": { - "s": "86", - "n": "20", - "a": "4.33", - "d": "1.16", - "Ss": "49", - "Sn": "12", - "Sa": "4.08", - "Sd": "1.1", - "Os": "159", - "On": "35", - "Oa": "4.56", - "Od": "1.21", - "Dp": "35", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 2.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 158, - "n": "Johnsson", - "f": "Karl-Johan", - "p": "G", - "r": 8, - "s": { - "s": "85", - "n": "17", - "a": "5", - "d": "1.1", - "Os": "165", - "On": "33", - "Oa": "5", - "Od": "1.21", - "Gp": "33", - "p": { - "31": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 4 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 3 - }, - "17": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 163, - "n": "Deaux", - "f": "Lucas", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "41", - "n": "9", - "a": "4.61", - "d": "1.07", - "Ss": "8", - "Sn": "2", - "Sa": "4", - "Sd": "0.5", - "Og": "3", - "Os": "73", - "On": "16", - "Oa": "4.59", - "Od": "1.23", - "Mp": "16", - "p": { - "3": { - "n": 3.5 - }, - "4": { - "n": 4 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "18": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 200, - "n": "Coco", - "f": "Marcus", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "89", - "n": "19", - "a": "4.68", - "d": "0.76", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "139", - "On": "31", - "Oa": "4.48", - "Od": "0.78", - "Mp": "23", - "Ap": "4", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 3.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 231, - "n": "Petric", - "f": "Denis", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 236, - "n": "Benezet", - "f": "Nicolas", - "p": "M", - "r": 10, - "s": { - "g": "3", - "s": "78", - "n": "16", - "a": "4.91", - "d": "1.25", - "Og": "4", - "Os": "148", - "On": "30", - "Oa": "4.95", - "Od": "1.31", - "Mp": "21", - "Ap": "4", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 7.5, - "g": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 241, - "n": "Didot", - "f": "\u00c9tienne", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "93", - "n": "20", - "a": "4.68", - "d": "1.09", - "Og": "2", - "Os": "155", - "On": "32", - "Oa": "4.86", - "Od": "1.11", - "Mp": "31", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 289, - "n": "Ikoko", - "f": "Jordan", - "p": "D", - "r": 9, - "s": { - "s": "62", - "n": "15", - "a": "4.17", - "d": "0.94", - "Os": "129", - "On": "29", - "Oa": "4.47", - "Od": "0.99", - "Mp": "1", - "Dp": "28", - "p": { - "31": { - "n": 5 - }, - "1": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3 - }, - "6": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3 - }, - "14": { - "n": 3.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 376, - "n": "Mendy", - "f": "Alexandre", - "p": "A", - "r": 5, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.47", - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Ap": "3", - "p": { - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 398, - "n": "Blas", - "f": "Ludovic", - "p": "M", - "r": 12, - "s": { - "s": "96", - "n": "20", - "a": "4.83", - "d": "1.05", - "Ss": "40", - "Sn": "8", - "Sa": "5.06", - "Sd": "1.1", - "Og": "2", - "Os": "169", - "On": "34", - "Oa": "4.99", - "Od": "1.08", - "Mp": "27", - "Ap": "1", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 790, - "n": "Djilobodji", - "f": "Papy", - "p": "D", - "r": 8, - "s": { - "s": "7", - "n": "2", - "a": "3.75", - "d": "0.25", - "Ss": "7", - "Sn": "2", - "Sa": "3.75", - "Sd": "0.25", - "Os": "72", - "On": "16", - "Oa": "4.53", - "Od": "1.14", - "Dp": "16", - "p": { - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 905, - "n": "Ndong", - "f": "Didier", - "p": "M", - "r": 10, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Mp": "2", - "p": { - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1178, - "n": "Tabanou", - "f": "Franck", - "p": "D", - "r": 8, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "22", - "On": "6", - "Oa": "3.75", - "Od": "0.99", - "Dp": "6", - "p": { - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 1200, - "n": "Thuram", - "f": "Marcus", - "p": "A", - "r": 11, - "s": { - "g": "7", - "s": "88", - "n": "18", - "a": "4.89", - "d": "1.48", - "Sg": "4", - "Ss": "50", - "Sn": "10", - "Sa": "5.05", - "Sd": "1.29", - "Og": "8", - "Os": "152", - "On": "32", - "Oa": "4.75", - "Od": "1.29", - "Mp": "16", - "Ap": "11", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 3 - }, - "9": { - "n": 2 - }, - "13": { - "n": 7, - "g": 2 - }, - "14": { - "n": 5, - "g": 1 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 3 - }, - "22": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1209, - "n": "Phiri", - "f": "Lebogang", - "p": "M", - "r": 9, - "s": { - "s": "44", - "n": "9", - "a": "4.94", - "d": "0.96", - "Ss": "8", - "Sn": "2", - "Sa": "4", - "Sd": "1", - "Os": "92", - "On": "19", - "Oa": "4.87", - "Od": "0.79", - "Mp": "13", - "p": { - "1": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "14": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "21": { - "n": 3 - }, - "22": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1236, - "n": "Eboa Eboa", - "f": "F\u00e9lix", - "p": "D", - "r": 15, - "s": { - "g": "1", - "s": "77", - "n": "16", - "a": "4.81", - "d": "1.48", - "Sg": "1", - "Ss": "27", - "Sn": "5", - "Sa": "5.4", - "Sd": "2.03", - "Og": "2", - "Os": "126", - "On": "26", - "Oa": "4.85", - "Od": "1.36", - "Dp": "25", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 3 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "12": { - "n": 3 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 7.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2 - }, - "22": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1257, - "n": "Pedro Rebocho", - "f": "", - "p": "D", - "r": 11, - "s": { - "s": "97", - "n": "20", - "a": "4.85", - "d": "1.01", - "Ss": "47", - "Sn": "10", - "Sa": "4.75", - "Sd": "1.27", - "Os": "142", - "On": "29", - "Oa": "4.9", - "Od": "0.96", - "Mp": "1", - "Dp": "27", - "p": { - "31": { - "n": 6 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 6 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 1258, - "n": "Abdoul Camara", - "f": "", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 1264, - "n": "Caillard", - "f": "Marc-Aur\u00e8le", - "p": "G", - "r": 13, - "s": { - "s": "25", - "n": "5", - "a": "5", - "d": "1.34", - "Ss": "25", - "Sn": "5", - "Sa": "5", - "Sd": "1.34", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "1.34", - "Gp": "5", - "p": { - "18": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 14 - }, - { - "i": 1422, - "n": "Fofana", - "f": "Guessouma", - "p": "M", - "r": 7, - "s": { - "s": "52", - "n": "12", - "a": "4.33", - "d": "0.77", - "Os": "99", - "On": "22", - "Oa": "4.5", - "Od": "0.67", - "Mp": "16", - "p": { - "1": { - "n": 4, - "e": 2735, - "c": 42 - }, - "2": { - "n": 4.5, - "e": 2742, - "c": 42 - }, - "3": { - "n": 5, - "e": 2752, - "c": 42, - "s": 1 - }, - "5": { - "n": 3 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1548, - "n": "Ahlinvi", - "f": "Matteo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2138, - "n": "N'Gbakoto", - "f": "Yeni", - "p": "A", - "r": 9, - "s": { - "s": "53", - "n": "12", - "a": "4.46", - "d": "0.56", - "Og": "3", - "Os": "120", - "On": "26", - "Oa": "4.63", - "Od": "0.8", - "Mp": "7", - "Ap": "9", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 2312, - "n": "Julan", - "f": "Natha\u00ebl", - "p": "A", - "r": 9, - "s": { - "s": "45", - "n": "10", - "a": "4.5", - "d": "0.32", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.32", - "Ap": "10", - "p": { - "6": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2722, - "n": "Traor\u00e9", - "f": "Cheick", - "p": "D", - "r": 7, - "s": { - "s": "39", - "n": "9", - "a": "4.39", - "d": "1.07", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "39", - "On": "9", - "Oa": "4.39", - "Od": "1.07", - "Dp": "9", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 3 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "12": { - "n": 2 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2772, - "n": "Koita", - "f": "Djegui", - "p": "D", - "r": 6, - "s": { - "s": "10", - "n": "2", - "a": "5.25", - "d": "0.25", - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2", - "p": { - "10": { - "n": 5 - }, - "11": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2857, - "n": "Bilingi", - "f": "Yohan", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2943, - "n": "Ako", - "f": "Steven", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2948, - "n": "Boudjemaa", - "f": "Mehdi", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2949, - "n": "Phaeton", - "f": "Matthias", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2997, - "n": "Johan Larsson", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "20": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 3124, - "n": "Merghem", - "f": "Mehdi", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 40, - "n": "Delort", - "f": "Andy", - "p": "A", - "r": 21, - "s": { - "g": "7", - "s": "115", - "n": "21", - "a": "5.5", - "d": "1", - "Ss": "26", - "Sn": "5", - "Sa": "5.2", - "Sd": "0.75", - "Og": "8", - "Os": "167", - "On": "32", - "Oa": "5.23", - "Od": "1.05", - "Mp": "5", - "Ap": "23", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 6, - "g": 1 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 7.5, - "g": 2 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 43, - "n": "Sio", - "f": "Giovanni", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Og": "5", - "Os": "80", - "On": "17", - "Oa": "4.71", - "Od": "1.45", - "Ap": "12", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 15 - }, - { - "i": 114, - "n": "Skhiri", - "f": "Ellyes", - "p": "M", - "r": 19, - "s": { - "g": "1", - "s": "117", - "n": "21", - "a": "5.6", - "d": "0.75", - "Ss": "28", - "Sn": "5", - "Sa": "5.7", - "Sd": "0.81", - "Og": "4", - "Os": "210", - "On": "37", - "Oa": "5.69", - "Od": "0.85", - "Mp": "37", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7 - } - } - }, - "c": 15 - }, - { - "i": 150, - "n": "Hilton", - "f": "", - "p": "D", - "r": 17, - "s": { - "s": "102", - "n": "19", - "a": "5.39", - "d": "0.68", - "Ss": "27", - "Sn": "5", - "Sa": "5.5", - "Sd": "0.84", - "Os": "161", - "On": "30", - "Oa": "5.38", - "Od": "0.76", - "Dp": "30", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7 - } - } - }, - "c": 15 - }, - { - "i": 153, - "n": "Pedro Mendes", - "f": "", - "p": "D", - "r": 16, - "s": { - "g": "1", - "s": "96", - "n": "18", - "a": "5.36", - "d": "0.76", - "Ss": "22", - "Sn": "5", - "Sa": "4.5", - "Sd": "0.63", - "Og": "1", - "Os": "166", - "On": "32", - "Oa": "5.2", - "Od": "0.96", - "Dp": "30", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 197, - "n": "Congr\u00e9", - "f": "Daniel", - "p": "D", - "r": 18, - "s": { - "s": "112", - "n": "21", - "a": "5.33", - "d": "0.7", - "Ss": "25", - "Sn": "5", - "Sa": "5.1", - "Sd": "0.37", - "Os": "191", - "On": "37", - "Oa": "5.16", - "Od": "0.74", - "Mp": "1", - "Dp": "35", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 227, - "n": "Lasne", - "f": "Paul", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "99", - "n": "19", - "a": "5.24", - "d": "0.83", - "Ss": "25", - "Sn": "5", - "Sa": "5.1", - "Sd": "0.49", - "Og": "2", - "Os": "179", - "On": "34", - "Oa": "5.28", - "Od": "0.88", - "Mp": "33", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 232, - "n": "Camara", - "f": "Souleymane", - "p": "A", - "r": 5, - "s": { - "s": "22", - "n": "5", - "a": "4.5", - "d": "0.32", - "Os": "60", - "On": "14", - "Oa": "4.32", - "Od": "0.41", - "Ap": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 243, - "n": "Laborde", - "f": "Gaetan", - "p": "A", - "r": 18, - "s": { - "g": "8", - "s": "104", - "n": "20", - "a": "5.2", - "d": "1.5", - "Sg": "1", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "1.25", - "Og": "10", - "Os": "157", - "On": "32", - "Oa": "4.91", - "Od": "1.4", - "Mp": "1", - "Ap": "26", - "p": { - "1": { - "n": 3.5, - "e": 2733, - "c": 3 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 8, - "g": 2 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 3.5 - }, - "18": { - "n": 2 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 15 - }, - { - "i": 250, - "n": "Lecomte", - "f": "Benjamin", - "p": "G", - "r": 25, - "s": { - "s": "114", - "n": "20", - "a": "5.73", - "d": "0.78", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "200", - "On": "36", - "Oa": "5.57", - "Od": "0.83", - "Gp": "36", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 320, - "n": "Mollet", - "f": "Florent", - "p": "M", - "r": 18, - "s": { - "g": "1", - "s": "93", - "n": "17", - "a": "5.5", - "d": "1.01", - "Ss": "24", - "Sn": "5", - "Sa": "4.8", - "Sd": "0.24", - "Og": "6", - "Os": "162", - "On": "31", - "Oa": "5.24", - "Od": "1.15", - "Mp": "16", - "Ap": "14", - "p": { - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 410, - "n": "Ligali", - "f": "Jonathan", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 440, - "n": "Dolly", - "f": "Keagan", - "p": "M", - "r": 6, - "s": { - "s": "12", - "n": "3", - "a": "4.17", - "d": "0.47", - "Og": "1", - "Os": "67", - "On": "14", - "Oa": "4.82", - "Od": "0.86", - "Mp": "6", - "Ap": "4", - "p": { - "1": { - "n": 3.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 446, - "n": "Passi", - "f": "Bryan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 535, - "n": "Porsan-Clemente", - "f": "J\u00e9r\u00e9mie", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 15 - }, - { - "i": 541, - "n": "Sanson", - "f": "Killian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 579, - "n": "Poaty", - "f": "Morgan", - "p": "D", - "r": 3, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.24", - "Mp": "2", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 1186, - "n": "P\u00edriz", - "f": "Facundo", - "p": "M", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.15", - "Mp": "7", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 1227, - "n": "Aguilar", - "f": "Ruben", - "p": "D", - "r": 24, - "s": { - "g": "1", - "s": "108", - "n": "20", - "a": "5.4", - "d": "0.97", - "Sg": "1", - "Ss": "27", - "Sn": "5", - "Sa": "5.4", - "Sd": "0.86", - "Og": "1", - "Os": "175", - "On": "32", - "Oa": "5.47", - "Od": "0.9", - "Mp": "26", - "Dp": "4", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 1242, - "n": "Bertaud", - "f": "Dimitry", - "p": "G", - "r": 1, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "21": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 1244, - "n": "Cozza", - "f": "Nicolas", - "p": "D", - "r": 7, - "s": { - "s": "30", - "n": "6", - "a": "5.08", - "d": "0.84", - "Og": "1", - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "1.09", - "Mp": "4", - "Dp": "9", - "p": { - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "16": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 1532, - "n": "Junior Sambia", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "98", - "n": "20", - "a": "4.9", - "d": "0.34", - "Ss": "23", - "Sn": "5", - "Sa": "4.6", - "Sd": "0.2", - "Os": "163", - "On": "33", - "Oa": "4.94", - "Od": "0.56", - "Mp": "25", - "Ap": "3", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2268, - "n": "Oyongo", - "f": "Ambroise", - "p": "D", - "r": 14, - "s": { - "g": "2", - "s": "73", - "n": "14", - "a": "5.21", - "d": "0.94", - "Og": "2", - "Os": "88", - "On": "17", - "Oa": "5.18", - "Od": "0.86", - "Mp": "16", - "Dp": "1", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 4 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 2326, - "n": "Ammour", - "f": "Yannis", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2613, - "n": "Skuletic", - "f": "Petar", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "74", - "n": "16", - "a": "4.63", - "d": "0.7", - "Ss": "22", - "Sn": "5", - "Sa": "4.4", - "Sd": "0.8", - "Og": "1", - "Os": "74", - "On": "16", - "Oa": "4.63", - "Od": "0.7", - "Ap": "16", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 3, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2617, - "n": "Le Tallec", - "f": "Damien", - "p": "D", - "r": 25, - "s": { - "g": "3", - "s": "116", - "n": "21", - "a": "5.52", - "d": "1.07", - "Sg": "1", - "Ss": "26", - "Sn": "5", - "Sa": "5.3", - "Sd": "1.03", - "Og": "3", - "Os": "116", - "On": "21", - "Oa": "5.52", - "Od": "1.07", - "Mp": "16", - "Dp": "5", - "p": { - "1": { - "n": 3.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 2636, - "n": "Adouyev", - "f": "Amir", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2637, - "n": "Kaiboue", - "f": "Kylian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2638, - "n": "Vidal", - "f": "Clement", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2995, - "n": "Su\u00e1rez", - "f": "Math\u00edas", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 3126, - "n": "Ristic", - "f": "Mihailo", - "p": "D", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 107, - "n": "Michel", - "f": "Mathieu", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 108, - "n": "Mangani", - "f": "Thomas", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "87", - "n": "18", - "a": "4.86", - "d": "0.74", - "Ss": "49", - "Sn": "10", - "Sa": "4.9", - "Sd": "0.3", - "Og": "1", - "Os": "153", - "On": "32", - "Oa": "4.8", - "Od": "0.85", - "Mp": "32", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 113, - "n": "Santamar\u00eda", - "f": "Baptiste", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "111", - "n": "22", - "a": "5.05", - "d": "0.82", - "Sg": "1", - "Ss": "111", - "Sn": "22", - "Sa": "5.05", - "Sd": "0.82", - "Og": "1", - "Os": "191", - "On": "38", - "Oa": "5.03", - "Od": "0.84", - "Mp": "38", - "p": { - "38": { - "n": 4 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 143, - "n": "Thomas", - "f": "Romain", - "p": "D", - "r": 15, - "s": { - "g": "2", - "ao": "1", - "s": "87", - "n": "17", - "a": "5.12", - "d": "1.31", - "Sg": "2", - "Ss": "85", - "Sn": "16", - "Sa": "5.31", - "Sd": "1.09", - "Og": "2", - "Oao": "1", - "Os": "115", - "On": "24", - "Oa": "4.79", - "Od": "1.28", - "Dp": "24", - "p": { - "38": { - "n": 4 - }, - "1": { - "n": 2, - "a": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 159, - "n": "Traor\u00e9", - "f": "Ismael", - "p": "D", - "r": 16, - "s": { - "g": "3", - "s": "85", - "n": "16", - "a": "5.31", - "d": "0.98", - "Og": "5", - "Os": "166", - "On": "31", - "Oa": "5.35", - "Od": "1", - "Dp": "31", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 4.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 176, - "n": "Pajot", - "f": "Vincent", - "p": "M", - "r": 9, - "s": { - "s": "24", - "n": "5", - "a": "4.9", - "d": "0.37", - "Os": "50", - "On": "10", - "Oa": "5.05", - "Od": "0.42", - "Mp": "6", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 202, - "n": "Capelle", - "f": "Pierrick", - "p": "M", - "r": 15, - "s": { - "g": "3", - "s": "99", - "n": "19", - "a": "5.21", - "d": "0.95", - "Og": "4", - "Oao": "1", - "Os": "150", - "On": "29", - "Oa": "5.17", - "Od": "1.05", - "Mp": "23", - "Dp": "5", - "p": { - "38": { - "n": 5, - "a": 1 - }, - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 214, - "n": "Manceau", - "f": "Vincent", - "p": "D", - "r": 8, - "s": { - "ao": "1", - "s": "86", - "n": "17", - "a": "5.06", - "d": "1.11", - "Ss": "17", - "Sn": "3", - "Sa": "5.83", - "Sd": "1.65", - "Oao": "1", - "Os": "157", - "On": "32", - "Oa": "4.91", - "Od": "0.95", - "Mp": "1", - "Dp": "31", - "p": { - "38": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3, - "a": 1 - }, - "13": { - "n": 5.5 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 7 - } - } - }, - "c": 16 - }, - { - "i": 235, - "n": "Pavlovic", - "f": "Mateo", - "p": "D", - "r": 12, - "s": { - "g": "2", - "s": "91", - "n": "17", - "a": "5.35", - "d": "0.89", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "1.08", - "Og": "3", - "Os": "155", - "On": "29", - "Oa": "5.34", - "Od": "0.98", - "Dp": "28", - "p": { - "38": { - "n": 3 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "18": { - "n": 6 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 262, - "n": "Andreu", - "f": "Yoann", - "p": "D", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "1.08", - "Dp": "7", - "p": { - "12": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 287, - "n": "Bamba", - "f": "Abdoulaye", - "p": "D", - "r": 13, - "s": { - "s": "101", - "n": "20", - "a": "5.08", - "d": "0.81", - "Ss": "98", - "Sn": "19", - "Sa": "5.18", - "Sd": "0.67", - "Os": "150", - "On": "31", - "Oa": "4.85", - "Od": "0.85", - "Mp": "3", - "Dp": "27", - "p": { - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 343, - "n": "Puyo", - "f": "Lo\u00efc", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.47" - }, - "c": 16 - }, - { - "i": 370, - "n": "Tait", - "f": "Flavien", - "p": "M", - "r": 16, - "s": { - "g": "2", - "s": "113", - "n": "21", - "a": "5.4", - "d": "1.15", - "Sg": "1", - "Ss": "63", - "Sn": "12", - "Sa": "5.25", - "Sd": "1.15", - "Og": "6", - "Os": "202", - "On": "36", - "Oa": "5.63", - "Od": "1.12", - "Mp": "28", - "Ap": "8", - "p": { - "38": { - "n": 7, - "g": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 8, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 7 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 371, - "n": "Thomas Tour\u00e9", - "f": "", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "31", - "On": "7", - "Oa": "4.43", - "Od": "0.73", - "Mp": "1", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 390, - "n": "Mandrea", - "f": "Anthony", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 454, - "n": "Dor\u00e9", - "f": "F\u00e9r\u00e9bory", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 477, - "n": "Ketkeophomphone", - "f": "Billy", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "0.8", - "Mp": "2" - }, - "c": 16 - }, - { - "i": 1069, - "n": "Reine-Ad\u00e9la\u00efde", - "f": "Jeff", - "p": "M", - "r": 10, - "s": { - "s": "95", - "n": "20", - "a": "4.78", - "d": "0.75", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.75", - "Os": "145", - "On": "30", - "Oa": "4.85", - "Od": "0.67", - "Mp": "14", - "Ap": "13", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 3 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 1179, - "n": "Fulgini", - "f": "Angelo", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "78", - "n": "16", - "a": "4.91", - "d": "0.87", - "Sg": "1", - "Ss": "35", - "Sn": "7", - "Sa": "5.07", - "Sd": "0.78", - "Og": "3", - "Os": "118", - "On": "24", - "Oa": "4.94", - "Od": "0.82", - "Mp": "14", - "Ap": "4", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 1189, - "n": "Ciss", - "f": "Saliou", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 1235, - "n": "Kanga", - "f": "Wilfried", - "p": "A", - "r": 8, - "s": { - "s": "40", - "n": "9", - "a": "4.5", - "d": "0.33", - "Os": "72", - "On": "17", - "Oa": "4.26", - "Od": "0.35", - "Ap": "10", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 1401, - "n": "Bahoken", - "f": "St\u00e9phane", - "p": "A", - "r": 16, - "s": { - "g": "6", - "s": "92", - "n": "19", - "a": "4.87", - "d": "1.12", - "Sg": "4", - "Ss": "60", - "Sn": "13", - "Sa": "4.65", - "Sd": "1.06", - "Og": "10", - "Os": "156", - "On": "33", - "Oa": "4.74", - "Od": "1.16", - "Ap": "32", - "p": { - "1": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "20": { - "n": 5.5, - "g": 1, - "s": 1 - }, - "21": { - "n": 4 - }, - "22": { - "n": 2.5 - } - } - }, - "c": 16 - }, - { - "i": 1412, - "n": "Manzala", - "f": "Harrison", - "p": "A", - "r": 7, - "s": { - "s": "36", - "n": "8", - "a": "4.5", - "d": "0.25", - "Og": "2", - "Os": "111", - "On": "23", - "Oa": "4.83", - "Od": "0.83", - "Mp": "6", - "Ap": "8", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2136, - "n": "Butelle", - "f": "Ludovic", - "p": "G", - "r": 18, - "s": { - "s": "118", - "n": "21", - "a": "5.64", - "d": "1.17", - "Ss": "19", - "Sn": "3", - "Sa": "6.33", - "Sd": "1.31", - "Oao": "1", - "Os": "201", - "On": "37", - "Oa": "5.45", - "Od": "1.13", - "Gp": "37", - "p": { - "38": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 8 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 7.5 - } - } - }, - "c": 16 - }, - { - "i": 2628, - "n": "Bertrand", - "f": "Dorian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2646, - "n": "Ait Nouri", - "f": "Rayan", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "3": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2793, - "n": "Cisse", - "f": "Ibrahim", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2822, - "n": "N'Doye", - "f": "Cheikh", - "p": "M", - "r": 11, - "s": { - "s": "91", - "n": "19", - "a": "4.79", - "d": "0.66", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.47", - "Os": "91", - "On": "19", - "Oa": "4.79", - "Od": "0.66", - "Mp": "19", - "p": { - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 2831, - "n": "El Melali", - "f": "Farid", - "p": "M", - "r": 5, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "0.58", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.62", - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "0.58", - "Mp": "5", - "p": { - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 5.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2866, - "n": "Cristian", - "f": "", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "54", - "n": "12", - "a": "4.5", - "d": "0.61", - "Ss": "12", - "Sn": "3", - "Sa": "4", - "Sd": "0.41", - "Og": "1", - "Os": "54", - "On": "12", - "Oa": "4.5", - "Od": "0.61", - "Ap": "12", - "p": { - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2869, - "n": "Boucher", - "f": "Zacharie", - "p": "G", - "r": 7, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "19": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 2890, - "n": "Mancini", - "f": "Anthony", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2944, - "n": "Mouanga", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 3189, - "n": "Elhadji Diaw", - "f": "", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 15, - "n": "Fekir", - "f": "Nabil", - "p": "A", - "r": 23, - "s": { - "g": "6", - "s": "88", - "n": "16", - "a": "5.5", - "d": "1.38", - "Sg": "4", - "Ss": "50", - "Sn": "9", - "Sa": "5.61", - "Sd": "1.51", - "Og": "8", - "Os": "150", - "On": "27", - "Oa": "5.56", - "Od": "1.35", - "Mp": "15", - "Ap": "10", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "12": { - "n": 6 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 7.5, - "g": 1 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 72, - "n": "Depay", - "f": "Memphis", - "p": "A", - "r": 19, - "s": { - "g": "5", - "s": "121", - "n": "22", - "a": "5.5", - "d": "1.25", - "Sg": "5", - "Ss": "121", - "Sn": "22", - "Sa": "5.5", - "Sd": "1.25", - "Og": "15", - "Os": "220", - "On": "38", - "Oa": "5.79", - "Od": "1.53", - "Mp": "8", - "Ap": "26", - "p": { - "1": { - "n": 7.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 8.5, - "g": 2 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 18 - }, - { - "i": 130, - "n": "Cornet", - "f": "Maxwel", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "60", - "n": "13", - "a": "4.62", - "d": "0.56", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Og": "3", - "Os": "113", - "On": "25", - "Oa": "4.52", - "Od": "0.78", - "Mp": "4", - "Ap": "13", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "13": { - "n": 6, - "g": 1, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 146, - "n": "Yanga-Mbiwa", - "f": "Mapou", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 204, - "n": "Mar\u00e7al", - "f": "", - "p": "D", - "r": 11, - "s": { - "s": "43", - "n": "8", - "a": "5.44", - "d": "0.46", - "Os": "54", - "On": "10", - "Oa": "5.45", - "Od": "0.47", - "Dp": "9", - "p": { - "8": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 244, - "n": "Dubois", - "f": "L\u00e9o", - "p": "D", - "r": 8, - "s": { - "s": "46", - "n": "9", - "a": "5.11", - "d": "0.87", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "1.08", - "Og": "2", - "Os": "130", - "On": "24", - "Oa": "5.42", - "Od": "1.11", - "Mp": "2", - "Dp": "22", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 7, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 248, - "n": "Morel", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 9, - "s": { - "s": "43", - "n": "9", - "a": "4.83", - "d": "1.18", - "Os": "125", - "On": "25", - "Oa": "5.02", - "Od": "1.03", - "Dp": "25", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3 - }, - "13": { - "n": 3.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 255, - "n": "Gorgelin", - "f": "Mathieu", - "p": "G", - "r": 8, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Os": "31", - "On": "6", - "Oa": "5.17", - "Od": "1.07", - "Gp": "6", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 256, - "n": "Rafael", - "f": "", - "p": "D", - "r": 10, - "s": { - "s": "56", - "n": "11", - "a": "5.14", - "d": "0.53", - "Os": "123", - "On": "24", - "Oa": "5.15", - "Od": "0.88", - "Mp": "1", - "Dp": "23", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "7": { - "n": 6.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 409, - "n": "Terrier", - "f": "Martin", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "87", - "n": "17", - "a": "5.15", - "d": "0.66", - "Ss": "25", - "Sn": "5", - "Sa": "5", - "Sd": "0.32", - "Og": "2", - "Os": "128", - "On": "26", - "Oa": "4.94", - "Od": "0.67", - "Mp": "16", - "Ap": "8", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 423, - "n": "Tousart", - "f": "Lucas", - "p": "M", - "r": 15, - "s": { - "s": "90", - "n": "17", - "a": "5.29", - "d": "0.81", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "173", - "On": "32", - "Oa": "5.41", - "Od": "0.89", - "Mp": "32", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5.5 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 537, - "n": "Aouar", - "f": "Houssem", - "p": "M", - "r": 22, - "s": { - "g": "6", - "s": "118", - "n": "22", - "a": "5.39", - "d": "1.15", - "Sg": "6", - "Ss": "118", - "Sn": "22", - "Sa": "5.39", - "Sd": "1.15", - "Og": "8", - "Os": "207", - "On": "37", - "Oa": "5.61", - "Od": "1.05", - "Mp": "33", - "Ap": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 7 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 18 - }, - { - "i": 1052, - "n": "Denayer", - "f": "Jason", - "p": "D", - "r": 17, - "s": { - "g": "2", - "s": "98", - "n": "18", - "a": "5.44", - "d": "0.85", - "Sg": "2", - "Ss": "76", - "Sn": "14", - "Sa": "5.46", - "Sd": "0.93", - "Og": "2", - "Os": "98", - "On": "18", - "Oa": "5.44", - "Od": "0.85", - "Dp": "18", - "p": { - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 7, - "g": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 18 - }, - { - "i": 1161, - "n": "Traor\u00e9", - "f": "Bertrand", - "p": "A", - "r": 22, - "s": { - "g": "6", - "s": "103", - "n": "20", - "a": "5.18", - "d": "1.27", - "Og": "16", - "Os": "200", - "On": "36", - "Oa": "5.57", - "Od": "1.45", - "Mp": "13", - "Ap": "22", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 8, - "g": 2 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 4 - } - } - }, - "c": 18 - }, - { - "i": 1176, - "n": "Tete", - "f": "Kenny", - "p": "D", - "r": 10, - "s": { - "s": "36", - "n": "7", - "a": "5.21", - "d": "1.28", - "Os": "69", - "On": "14", - "Oa": "4.96", - "Od": "0.99", - "Mp": "6", - "Dp": "4", - "p": { - "13": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 8 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 4 - } - } - }, - "c": 18 - }, - { - "i": 1190, - "n": "Mendy", - "f": "Ferland", - "p": "D", - "r": 16, - "s": { - "g": "2", - "s": "97", - "n": "19", - "a": "5.13", - "d": "1.01", - "Sg": "1", - "Ss": "55", - "Sn": "11", - "Sa": "5.05", - "Sd": "1.03", - "Og": "2", - "Os": "181", - "On": "35", - "Oa": "5.19", - "Od": "1.08", - "Mp": "8", - "Dp": "26", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5, - "g": 1 - }, - "6": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 1210, - "n": "Gouiri", - "f": "Amine", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Os": "12", - "On": "3", - "Oa": "4" - }, - "c": 18 - }, - { - "i": 1414, - "n": "NDombele", - "f": "Tanguy", - "p": "M", - "r": 14, - "s": { - "s": "100", - "n": "20", - "a": "5.03", - "d": "0.78", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.62", - "Os": "192", - "On": "36", - "Oa": "5.35", - "Od": "0.97", - "Mp": "36", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 1524, - "n": "Anthony Lopes", - "f": "", - "p": "G", - "r": 21, - "s": { - "s": "111", - "n": "20", - "a": "5.58", - "d": "0.99", - "Ss": "111", - "Sn": "20", - "Sa": "5.58", - "Sd": "0.99", - "Os": "177", - "On": "32", - "Oa": "5.55", - "Od": "1.04", - "Gp": "32", - "p": { - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 8 - }, - "22": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 1527, - "n": "Pape Cheikh", - "f": "", - "p": "M", - "r": 10, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.45", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.43", - "Mp": "11", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 1545, - "n": "Martins Pereira", - "f": "Christopher", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2032, - "n": "Marcelo", - "f": "", - "p": "D", - "r": 19, - "s": { - "s": "107", - "n": "19", - "a": "5.63", - "d": "0.87", - "Ss": "30", - "Sn": "5", - "Sa": "6", - "Sd": "0.55", - "Og": "3", - "Os": "185", - "On": "33", - "Oa": "5.61", - "Od": "1.2", - "Dp": "33", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 8 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7 - } - } - }, - "c": 18 - }, - { - "i": 2277, - "n": "Solet", - "f": "Oumar", - "p": "D", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "17": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 2624, - "n": "Fekir", - "f": "Yassin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2665, - "n": "Racioppi", - "f": "Anthony", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2681, - "n": "Griffiths", - "f": "Reo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2685, - "n": "Caqueret", - "f": "Maxence", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2718, - "n": "Kemen", - "f": "Olivier", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2861, - "n": "Dembele", - "f": "Moussa", - "p": "A", - "r": 19, - "s": { - "g": "6", - "s": "90", - "n": "17", - "a": "5.32", - "d": "1.04", - "Sg": "4", - "Ss": "68", - "Sn": "13", - "Sa": "5.27", - "Sd": "0.99", - "Og": "6", - "Os": "90", - "On": "17", - "Oa": "5.32", - "Od": "1.04", - "Ap": "17", - "p": { - "5": { - "n": 5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 7.5, - "g": 2 - }, - "8": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6, - "s": 1 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 18 - }, - { - "i": 2868, - "n": "Pintor", - "f": "Lenny", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 2952, - "n": "Ndiaye", - "f": "Ousseynou", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 11, - "n": "Cyprien", - "f": "Wylan", - "p": "M", - "r": 20, - "s": { - "g": "3", - "s": "108", - "n": "20", - "a": "5.4", - "d": "1.17", - "Sg": "3", - "Ss": "74", - "Sn": "13", - "Sa": "5.73", - "Sd": "1.19", - "Og": "4", - "Os": "179", - "On": "33", - "Oa": "5.42", - "Od": "1.08", - "Mp": "28", - "p": { - "28": { - "n": 7, - "g": 1 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 3.5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6.5, - "g": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 7 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 30, - "n": "Saint-Maximin", - "f": "Allan", - "p": "M", - "r": 20, - "s": { - "g": "6", - "s": "105", - "n": "20", - "a": "5.28", - "d": "1.15", - "Sg": "2", - "Ss": "18", - "Sn": "3", - "Sa": "6.17", - "Sd": "0.85", - "Og": "8", - "Os": "173", - "On": "33", - "Oa": "5.26", - "Od": "1.11", - "Mp": "1", - "Ap": "31", - "p": { - "28": { - "n": 6 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4 - }, - "14": { - "n": 7.5, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5, - "g": 1 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 19 - }, - { - "i": 70, - "n": "Dante", - "f": "", - "p": "D", - "r": 21, - "s": { - "s": "118", - "n": "22", - "a": "5.39", - "d": "0.82", - "Ss": "118", - "Sn": "22", - "Sa": "5.39", - "Sd": "0.82", - "Og": "1", - "Os": "198", - "On": "37", - "Oa": "5.36", - "Od": "1.04", - "Dp": "37", - "p": { - "28": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 19 - }, - { - "i": 71, - "n": "Lees-Melou", - "f": "Pierre", - "p": "M", - "r": 15, - "s": { - "g": "1", - "s": "79", - "n": "15", - "a": "5.3", - "d": "1", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "3", - "Os": "145", - "On": "27", - "Oa": "5.39", - "Od": "1.16", - "Mp": "25", - "Ap": "2", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 3.5 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 96, - "n": "Walter", - "f": "Remi", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "57", - "n": "11", - "a": "5.23", - "d": "0.54", - "Sg": "1", - "Ss": "32", - "Sn": "6", - "Sa": "5.42", - "Sd": "0.67", - "Og": "1", - "Os": "109", - "On": "22", - "Oa": "4.98", - "Od": "0.76", - "Mp": "22", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 129, - "n": "Cardinale", - "f": "Yoan", - "p": "G", - "r": 9, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "1.03", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "1.03", - "Gp": "3", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - } - } - }, - "c": 19 - }, - { - "i": 217, - "n": "Sarr", - "f": "Malang", - "p": "D", - "r": 12, - "s": { - "ao": "1", - "s": "103", - "n": "20", - "a": "5.15", - "d": "0.79", - "Sao": "1", - "Ss": "98", - "Sn": "19", - "Sa": "5.16", - "Sd": "0.81", - "Oao": "1", - "Os": "156", - "On": "31", - "Oa": "5.03", - "Od": "0.78", - "Dp": "26", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5, - "a": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 239, - "n": "Ben\u00edtez", - "f": "Walter", - "p": "G", - "r": 25, - "s": { - "s": "117", - "n": "19", - "a": "6.18", - "d": "1.33", - "Ss": "117", - "Sn": "19", - "Sa": "6.18", - "Sd": "1.33", - "Os": "202", - "On": "35", - "Oa": "5.79", - "Od": "1.19", - "Gp": "35", - "p": { - "28": { - "n": 5 - }, - "4": { - "n": 9 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 8 - }, - "12": { - "n": 7.5 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 8 - } - } - }, - "c": 19 - }, - { - "i": 270, - "n": "Souquet", - "f": "Arnaud", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "58", - "On": "11", - "Oa": "5.27", - "Od": "0.75", - "Dp": "9", - "p": { - "28": { - "n": 6, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 367, - "n": "Jallet", - "f": "Christophe", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "53", - "n": "10", - "a": "5.3", - "d": "0.68", - "Og": "1", - "Os": "53", - "On": "10", - "Oa": "5.3", - "Od": "0.68", - "Mp": "4", - "Dp": "6", - "p": { - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "7": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 447, - "n": "Burner", - "f": "Patrick", - "p": "D", - "r": 5, - "s": { - "s": "24", - "n": "5", - "a": "4.8", - "d": "0.81", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.63", - "Mp": "3", - "Dp": "8", - "p": { - "28": { - "n": 5 - }, - "2": { - "n": 5 - }, - "11": { - "n": 5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 449, - "n": "Makengo", - "f": "Jean-Victor", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "62", - "n": "13", - "a": "4.77", - "d": "0.46", - "Og": "1", - "Os": "76", - "On": "16", - "Oa": "4.75", - "Od": "0.47", - "Mp": "10", - "Ap": "5", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 452, - "n": "Srarfi", - "f": "Bassem", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "59", - "n": "12", - "a": "4.92", - "d": "0.79", - "Og": "1", - "Os": "118", - "On": "24", - "Oa": "4.92", - "Od": "0.66", - "Mp": "9", - "Ap": "7", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 466, - "n": "Boscagli", - "f": "Olivier", - "p": "D", - "r": 8, - "s": { - "s": "49", - "n": "10", - "a": "4.95", - "d": "0.99", - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.99", - "Mp": "3", - "Dp": "7", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 474, - "n": "Marcel", - "f": "Vincent", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 495, - "n": "Lloris", - "f": "Gautier", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 540, - "n": "Mahou", - "f": "Hicham", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 552, - "n": "Perraud", - "f": "Romain", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 561, - "n": "Le Bihan", - "f": "Mickael", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "32", - "On": "8", - "Oa": "4", - "Ap": "1", - "p": { - "3": { - "n": 4, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 1070, - "n": "Hassen", - "f": "Mouez", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 1204, - "n": "Tameze", - "f": "Adrien", - "p": "M", - "r": 16, - "s": { - "s": "118", - "n": "22", - "a": "5.39", - "d": "0.99", - "Ss": "118", - "Sn": "22", - "Sa": "5.39", - "Sd": "0.99", - "Os": "183", - "On": "34", - "Oa": "5.4", - "Od": "0.88", - "Mp": "31", - "Dp": "1", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7.5 - } - } - }, - "c": 19 - }, - { - "i": 1229, - "n": "Maolida", - "f": "Myziane", - "p": "A", - "r": 7, - "s": { - "s": "55", - "n": "12", - "a": "4.63", - "d": "0.71", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "73", - "On": "16", - "Oa": "4.59", - "Od": "0.67", - "Ap": "13", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 3 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 1272, - "n": "Ganago", - "f": "Ignatius", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "53", - "n": "11", - "a": "4.86", - "d": "0.61", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Og": "1", - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "0.64", - "Ap": "11", - "p": { - "2": { - "n": 6, - "g": 1, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 1426, - "n": "Herelle", - "f": "Christophe", - "p": "D", - "r": 12, - "s": { - "s": "99", - "n": "19", - "a": "5.21", - "d": "0.88", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.47", - "Os": "169", - "On": "34", - "Oa": "4.97", - "Od": "0.92", - "Dp": "34", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 1439, - "n": "Sacko", - "f": "Ihsan", - "p": "M", - "r": 8, - "s": { - "s": "31", - "n": "7", - "a": "4.43", - "d": "0.86", - "Os": "71", - "On": "15", - "Oa": "4.73", - "Od": "0.91", - "Mp": "5", - "Ap": "5", - "p": { - "28": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "17": { - "n": 2.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 1540, - "n": "Coly", - "f": "Racine", - "p": "D", - "r": 7, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "0.23", - "Os": "61", - "On": "13", - "Oa": "4.69", - "Od": "0.57", - "Mp": "5", - "Dp": "8", - "p": { - "28": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2081, - "n": "Clementia", - "f": "Yannis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2144, - "n": "Diaby", - "f": "Mohamed Lamine", - "p": "A", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2276, - "n": "Pelmard", - "f": "Andy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2659, - "n": "Atal", - "f": "Youcef", - "p": "D", - "r": 14, - "s": { - "g": "2", - "s": "95", - "n": "18", - "a": "5.31", - "d": "1.11", - "Sg": "2", - "Ss": "60", - "Sn": "11", - "Sa": "5.5", - "Sd": "1.3", - "Og": "2", - "Os": "95", - "On": "18", - "Oa": "5.31", - "Od": "1.11", - "Mp": "10", - "Dp": "7", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 19 - }, - { - "i": 2740, - "n": "Danilo", - "f": "", - "p": "M", - "r": 8, - "s": { - "s": "47", - "n": "10", - "a": "4.7", - "d": "1.05", - "Ss": "12", - "Sn": "2", - "Sa": "6", - "Sd": "0.5", - "Os": "47", - "On": "10", - "Oa": "4.7", - "Od": "1.05", - "Mp": "8", - "Ap": "2", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 2.5 - }, - "17": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 19 - }, - { - "i": 2945, - "n": "Hamache", - "f": "Yanis", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2946, - "n": "Sylvestre", - "f": "Eddy", - "p": "M", - "r": 5, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.22", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.22", - "Mp": "2", - "Ap": "2", - "p": { - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 2988, - "n": "Drame", - "f": "Jawad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 101, - "n": "Andr\u00e9", - "f": "Benjamin", - "p": "M", - "r": 18, - "s": { - "g": "2", - "s": "117", - "n": "22", - "a": "5.34", - "d": "1.12", - "Sg": "2", - "Ss": "117", - "Sn": "22", - "Sa": "5.34", - "Sd": "1.12", - "Og": "2", - "Os": "188", - "On": "36", - "Oa": "5.24", - "Od": "0.99", - "Mp": "36", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 8, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 7 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 7.5, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 106, - "n": "Baal", - "f": "Ludovic", - "p": "D", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "0.89", - "Dp": "4", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 117, - "n": "Danz\u00e9", - "f": "Romain", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "46", - "On": "9", - "Oa": "5.11", - "Od": "0.57", - "Dp": "8" - }, - "c": 20 - }, - { - "i": 156, - "n": "Ben Arfa", - "f": "Hatem", - "p": "M", - "r": 21, - "s": { - "g": "4", - "s": "80", - "n": "15", - "a": "5.33", - "d": "1.32", - "Sg": "2", - "Ss": "39", - "Sn": "7", - "Sa": "5.57", - "Sd": "1.35", - "Og": "4", - "Os": "80", - "On": "15", - "Oa": "5.33", - "Od": "1.32", - "Mp": "8", - "Ap": "7", - "p": { - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 8, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 3.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6, - "g": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 20 - }, - { - "i": 168, - "n": "Mexer", - "f": "", - "p": "D", - "r": 14, - "s": { - "s": "88", - "n": "17", - "a": "5.18", - "d": "1.12", - "Os": "114", - "On": "22", - "Oa": "5.18", - "Od": "1.01", - "Dp": "18", - "p": { - "28": { - "n": 6 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 7.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 188, - "n": "Da Silva", - "f": "Damien", - "p": "D", - "r": 19, - "s": { - "g": "2", - "s": "103", - "n": "20", - "a": "5.18", - "d": "1.35", - "Sg": "2", - "Ss": "93", - "Sn": "18", - "Sa": "5.19", - "Sd": "1.43", - "Og": "5", - "Oao": "2", - "Os": "165", - "On": "33", - "Oa": "5.02", - "Od": "1.28", - "Dp": "33", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 2 - }, - "16": { - "n": 7 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 8, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 20 - }, - { - "i": 230, - "n": "Sarr", - "f": "Ismaila", - "p": "A", - "r": 25, - "s": { - "g": "5", - "s": "117", - "n": "22", - "a": "5.32", - "d": "1.01", - "Sg": "5", - "Ss": "117", - "Sn": "22", - "Sa": "5.32", - "Sd": "1.01", - "Og": "9", - "Os": "188", - "On": "36", - "Oa": "5.22", - "Od": "1.08", - "Mp": "23", - "Ap": "11", - "p": { - "28": { - "n": 6, - "g": 1, - "s": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6.5, - "g": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5, - "g": 1 - }, - "16": { - "n": 7 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3 - } - } - }, - "c": 20 - }, - { - "i": 272, - "n": "Bensebaini", - "f": "Ramy", - "p": "D", - "r": 14, - "s": { - "g": "1", - "ao": "1", - "s": "85", - "n": "17", - "a": "5", - "d": "1", - "Og": "1", - "Oao": "1", - "Os": "166", - "On": "32", - "Oa": "5.19", - "Od": "0.86", - "Dp": "30", - "p": { - "28": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4, - "a": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 6.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 333, - "n": "Hunou", - "f": "Adrien", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "23", - "n": "5", - "a": "4.7", - "d": "1.33", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "4", - "Os": "80", - "On": "16", - "Oa": "5.03", - "Od": "1.15", - "Mp": "4", - "Ap": "7", - "p": { - "28": { - "n": 4 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 3 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 381, - "n": "Chant\u00f4me", - "f": "Cl\u00e9ment", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 420, - "n": "Gertmonas", - "f": "Edvinas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 438, - "n": "Zeffane", - "f": "Mehdi", - "p": "D", - "r": 9, - "s": { - "s": "51", - "n": "11", - "a": "4.68", - "d": "0.78", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "87", - "On": "18", - "Oa": "4.86", - "Od": "0.76", - "Mp": "4", - "Dp": "10", - "Ap": "2", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 3 - } - } - }, - "c": 20 - }, - { - "i": 491, - "n": "Janvier", - "f": "Nicolas", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "12": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 528, - "n": "Lea Siliki", - "f": "James", - "p": "M", - "r": 8, - "s": { - "s": "80", - "n": "16", - "a": "5", - "d": "0.66", - "Ss": "29", - "Sn": "6", - "Sa": "4.92", - "Sd": "0.79", - "Og": "2", - "Os": "143", - "On": "28", - "Oa": "5.11", - "Od": "0.7", - "Mp": "23", - "Dp": "1", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "8": { - "n": 6 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 532, - "n": "Diallo", - "f": "Namakoro", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 874, - "n": "Sakho", - "f": "Diafra", - "p": "A", - "r": 8, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Og": "2", - "Os": "63", - "On": "15", - "Oa": "4.2", - "Od": "0.85", - "Ap": "9", - "p": { - "28": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 922, - "n": "Niang", - "f": "M'Baye", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "69", - "n": "14", - "a": "4.93", - "d": "0.75", - "Sg": "1", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.94", - "Og": "3", - "Os": "69", - "On": "14", - "Oa": "4.93", - "Od": "0.75", - "Mp": "2", - "Ap": "12", - "p": { - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6, - "g": 1, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6, - "g": 1 - } - } - }, - "c": 20 - }, - { - "i": 1182, - "n": "Hamari Traor\u00e9", - "f": "", - "p": "D", - "r": 17, - "s": { - "s": "103", - "n": "21", - "a": "4.93", - "d": "0.9", - "Ss": "84", - "Sn": "17", - "Sa": "4.94", - "Sd": "0.73", - "Os": "145", - "On": "29", - "Oa": "5.02", - "Od": "0.86", - "Mp": "1", - "Dp": "28", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 1187, - "n": "Bourigeaud", - "f": "Benjamin", - "p": "M", - "r": 21, - "s": { - "g": "4", - "s": "100", - "n": "20", - "a": "5.03", - "d": "1.17", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.63", - "Sd": "1.47", - "Og": "9", - "Os": "188", - "On": "36", - "Oa": "5.24", - "Od": "1.15", - "Mp": "28", - "Ap": "6", - "p": { - "28": { - "n": 4, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6, - "g": 1, - "s": 1 - }, - "19": { - "n": 8, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 1194, - "n": "Grenier", - "f": "Cl\u00e9ment", - "p": "M", - "r": 21, - "s": { - "g": "2", - "s": "108", - "n": "21", - "a": "5.14", - "d": "1.12", - "Ss": "20", - "Sn": "4", - "Sa": "5.13", - "Sd": "1.24", - "Og": "7", - "Os": "186", - "On": "36", - "Oa": "5.17", - "Od": "1.28", - "Mp": "35", - "p": { - "1": { - "n": 4.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 3 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 20 - }, - { - "i": 1213, - "n": "Diallo", - "f": "Abdoulaye", - "p": "G", - "r": 9, - "s": { - "s": "35", - "n": "6", - "a": "5.83", - "d": "1.11", - "Os": "35", - "On": "6", - "Oa": "5.83", - "Od": "1.11", - "Gp": "6", - "p": { - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "16": { - "n": 8 - }, - "17": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 1239, - "n": "Del Castillo", - "f": "Romain", - "p": "M", - "r": 10, - "s": { - "s": "82", - "n": "17", - "a": "4.82", - "d": "0.92", - "Os": "82", - "On": "17", - "Oa": "4.82", - "Od": "0.92", - "Mp": "16", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 7.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 1252, - "n": "Toufiqui", - "f": "Sabri", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1268, - "n": "Salles-Lamonge", - "f": "Sebastien", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1526, - "n": "Koubek", - "f": "Tomas", - "p": "G", - "r": 13, - "s": { - "s": "83", - "n": "17", - "a": "4.91", - "d": "0.93", - "Ss": "26", - "Sn": "5", - "Sa": "5.3", - "Sd": "1.29", - "Os": "169", - "On": "33", - "Oa": "5.14", - "Od": "1.02", - "Gp": "33", - "p": { - "28": { - "n": 6 - }, - "1": { - "n": 4 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 20 - }, - { - "i": 2035, - "n": "Nyamsi", - "f": "Gerzino", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2084, - "n": "Gelin", - "f": "Jeremy", - "p": "D", - "r": 8, - "s": { - "s": "46", - "n": "10", - "a": "4.65", - "d": "0.92", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "130", - "On": "26", - "Oa": "5.02", - "Od": "0.87", - "Mp": "4", - "Dp": "22", - "p": { - "28": { - "n": 6 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4 - }, - "17": { - "n": 5.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 2618, - "n": "Johansson", - "f": "Jakob", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.72", - "Og": "1", - "Os": "50", - "On": "10", - "Oa": "5.05", - "Od": "0.72", - "Mp": "10", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2677, - "n": "Guitane", - "f": "Rafik", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2690, - "n": "Poha", - "f": "Denis", - "p": "M", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2697, - "n": "Jordan Siebatcheu", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "3", - "s": "68", - "n": "14", - "a": "4.89", - "d": "1", - "Og": "3", - "Os": "68", - "On": "14", - "Oa": "4.89", - "Od": "1", - "Ap": "14", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 8, - "g": 2 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2787, - "n": "Gboho", - "f": "Yann", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2819, - "n": "Rutter", - "f": "Georginio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3125, - "n": "Doumbia", - "f": "Souleyman", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3186, - "n": "Camavinga", - "f": "Eduardo", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3229, - "n": "Matondo", - "f": "Isaac", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 357, - "n": "Thomasson", - "f": "Adrien", - "p": "M", - "r": 21, - "s": { - "g": "5", - "s": "109", - "n": "20", - "a": "5.45", - "d": "0.96", - "Sg": "5", - "Ss": "90", - "Sn": "16", - "Sa": "5.66", - "Sd": "0.91", - "Og": "8", - "Os": "182", - "On": "34", - "Oa": "5.35", - "Od": "1.02", - "Mp": "25", - "Ap": "7", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5.5, - "g": 1 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 7, - "g": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 442, - "n": "Corgnet", - "f": "Benjamin", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "70", - "n": "14", - "a": "5.04", - "d": "0.48", - "Og": "1", - "Os": "125", - "On": "25", - "Oa": "5.02", - "Od": "0.73", - "Mp": "17", - "Ap": "5", - "p": { - "33": { - "n": 5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 460, - "n": "Martinez", - "f": "Pablo", - "p": "D", - "r": 21, - "s": { - "g": "2", - "s": "117", - "n": "21", - "a": "5.57", - "d": "0.92", - "Sg": "2", - "Ss": "105", - "Sn": "19", - "Sa": "5.55", - "Sd": "0.93", - "Og": "2", - "Os": "186", - "On": "36", - "Oa": "5.17", - "Od": "1.07", - "Dp": "36", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 7.5, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 7.5 - } - } - }, - "c": 41 - }, - { - "i": 486, - "n": "Kawashima", - "f": "Eiji", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "72", - "On": "15", - "Oa": "4.8", - "Od": "1.56", - "Gp": "15" - }, - "c": 41 - }, - { - "i": 747, - "n": "Kon\u00e9", - "f": "Lamine", - "p": "D", - "r": 15, - "s": { - "g": "1", - "s": "87", - "n": "16", - "a": "5.44", - "d": "0.88", - "Sg": "1", - "Ss": "77", - "Sn": "14", - "Sa": "5.54", - "Sd": "0.9", - "Og": "1", - "Os": "87", - "On": "16", - "Oa": "5.44", - "Od": "0.88", - "Dp": "16", - "p": { - "3": { - "n": 4.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 1400, - "n": "Martin", - "f": "Jonas", - "p": "M", - "r": 22, - "s": { - "g": "3", - "s": "115", - "n": "20", - "a": "5.78", - "d": "0.98", - "Og": "4", - "Os": "188", - "On": "35", - "Oa": "5.39", - "Od": "1.1", - "Mp": "34", - "Ap": "1", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 8, - "g": 1 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 8, - "g": 2 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 1405, - "n": "Saadi", - "f": "Idriss", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Og": "3", - "Os": "53", - "On": "12", - "Oa": "4.42", - "Od": "0.95", - "Ap": "4", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1409, - "n": "Lienard", - "f": "Dimitri", - "p": "M", - "r": 13, - "s": { - "s": "77", - "n": "15", - "a": "5.17", - "d": "0.75", - "Ss": "16", - "Sn": "3", - "Sa": "5.33", - "Sd": "0.47", - "Og": "2", - "Os": "156", - "On": "30", - "Oa": "5.22", - "Od": "0.88", - "Mp": "28", - "Dp": "2", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 7 - }, - "2": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 1413, - "n": "Ndour", - "f": "Abdallah", - "p": "D", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "27", - "On": "6", - "Oa": "4.58", - "Od": "1.02", - "Mp": "1", - "Dp": "3", - "p": { - "22": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1417, - "n": "Grandsir", - "f": "Samuel", - "p": "A", - "r": 8, - "s": { - "s": "61", - "n": "13", - "a": "4.69", - "d": "0.5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "126", - "On": "28", - "Oa": "4.5", - "Od": "0.83", - "Mp": "26", - "p": { - "1": { - "n": 5.5, - "e": 2738, - "c": 13, - "s": 1 - }, - "2": { - "n": 5, - "e": 2746, - "c": 13, - "s": 1 - }, - "3": { - "n": 4.5, - "e": 2753, - "c": 13 - }, - "4": { - "n": 4.5, - "e": 2766, - "c": 13 - }, - "5": { - "n": 4.5, - "e": 2781, - "c": 13, - "s": 1 - }, - "6": { - "n": 5.5, - "e": 2786, - "c": 13, - "s": 1 - }, - "7": { - "n": 4.5, - "e": 2797, - "c": 13 - }, - "10": { - "n": 4, - "e": 2831, - "c": 13, - "s": 1 - }, - "12": { - "n": 5, - "e": 2849, - "c": 13, - "s": 1 - }, - "13": { - "n": 4, - "e": 2857, - "c": 13 - }, - "14": { - "n": 5, - "e": 2863, - "c": 13, - "s": 1 - }, - "19": { - "n": 4, - "e": 2915, - "c": 13, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1420, - "n": "Grimm", - "f": "Jeremy", - "p": "M", - "r": 7, - "s": { - "s": "23", - "n": "5", - "a": "4.7", - "d": "0.4", - "Os": "67", - "On": "14", - "Oa": "4.82", - "Od": "0.36", - "Mp": "9", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "9": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1428, - "n": "Kamara", - "f": "Bingourou", - "p": "G", - "r": 8, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Gp": "3" - }, - "c": 41 - }, - { - "i": 1431, - "n": "Gon\u00e7alves", - "f": "Anthony", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5.1", - "d": "0.8", - "Og": "1", - "Os": "81", - "On": "17", - "Oa": "4.79", - "Od": "0.62", - "Mp": "11", - "Dp": "1", - "p": { - "33": { - "n": 4 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 4 - }, - "10": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1458, - "n": "Nuno da Costa", - "f": "", - "p": "A", - "r": 9, - "s": { - "g": "4", - "s": "100", - "n": "20", - "a": "5.03", - "d": "1.03", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.85", - "Og": "5", - "Os": "127", - "On": "26", - "Oa": "4.9", - "Od": "1", - "Mp": "1", - "Ap": "23", - "p": { - "1": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 6, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1461, - "n": "Caci", - "f": "Anthony", - "p": "M", - "r": 8, - "s": { - "s": "82", - "n": "16", - "a": "5.16", - "d": "0.88", - "Ss": "42", - "Sn": "8", - "Sa": "5.25", - "Sd": "0.94", - "Os": "82", - "On": "16", - "Oa": "5.16", - "Od": "0.88", - "Mp": "4", - "Dp": "12", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1462, - "n": "Lala", - "f": "Kenny", - "p": "D", - "r": 19, - "s": { - "g": "4", - "s": "107", - "n": "20", - "a": "5.38", - "d": "1.4", - "Sg": "2", - "Ss": "44", - "Sn": "8", - "Sa": "5.5", - "Sd": "1.27", - "Og": "4", - "Os": "148", - "On": "30", - "Oa": "4.95", - "Od": "1.36", - "Mp": "14", - "Dp": "15", - "p": { - "1": { - "n": 6.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 3 - }, - "10": { - "n": 8 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 3.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 7.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7, - "g": 1 - } - } - }, - "c": 41 - }, - { - "i": 1463, - "n": "Zohi", - "f": "K\u00e9vin", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "72", - "n": "15", - "a": "4.83", - "d": "0.67", - "Og": "1", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.68", - "Mp": "13", - "Ap": "2", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "11": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1871, - "n": "Carole", - "f": "Lionel", - "p": "D", - "r": 9, - "s": { - "s": "65", - "n": "13", - "a": "5", - "d": "0.44", - "Os": "65", - "On": "13", - "Oa": "5", - "Od": "0.44", - "Mp": "7", - "Dp": "6", - "p": { - "3": { - "n": 5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2043, - "n": "Bangou", - "f": "Duplexe Tchamba", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2077, - "n": "Aaneba", - "f": "Ismael", - "p": "D", - "r": 1, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "1", - "Dp": "1", - "p": { - "13": { - "n": 5 - }, - "14": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2289, - "n": "Zemzemi", - "f": "Moataz", - "p": "M", - "r": 5, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2309, - "n": "Mothiba", - "f": "Lebo", - "p": "A", - "r": 22, - "s": { - "g": "8", - "s": "103", - "n": "20", - "a": "5.15", - "d": "1.04", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "12", - "Os": "154", - "On": "31", - "Oa": "4.97", - "Od": "1.14", - "Ap": "31", - "p": { - "1": { - "n": 7, - "e": 2734, - "c": 12, - "g": 1 - }, - "2": { - "n": 4, - "e": 2746, - "c": 12 - }, - "3": { - "n": 4.5, - "e": 2754, - "c": 12 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "g": 1, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6, - "g": 1, - "s": 1 - }, - "9": { - "n": 7.5, - "g": 2 - }, - "10": { - "n": 6, - "g": 1, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2609, - "n": "Sels", - "f": "Matz", - "p": "G", - "r": 19, - "s": { - "s": "126", - "n": "22", - "a": "5.75", - "d": "1", - "Ss": "126", - "Sn": "22", - "Sa": "5.75", - "Sd": "1", - "Os": "126", - "On": "22", - "Oa": "5.75", - "Od": "1", - "Gp": "22", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 8 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 8 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 2679, - "n": "Sissoko", - "f": "Ibrahima", - "p": "M", - "r": 14, - "s": { - "g": "3", - "s": "116", - "n": "21", - "a": "5.52", - "d": "0.99", - "Sg": "2", - "Ss": "81", - "Sn": "15", - "Sa": "5.43", - "Sd": "1.08", - "Og": "3", - "Os": "116", - "On": "21", - "Oa": "5.52", - "Od": "0.99", - "Mp": "21", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 8, - "g": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2717, - "n": "Ajorque", - "f": "Ludovic", - "p": "A", - "r": 12, - "s": { - "g": "4", - "s": "57", - "n": "11", - "a": "5.23", - "d": "1.14", - "Sg": "3", - "Ss": "34", - "Sn": "6", - "Sa": "5.67", - "Sd": "1.25", - "Og": "4", - "Os": "57", - "On": "11", - "Oa": "5.23", - "Od": "1.14", - "Ap": "11", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 8, - "g": 2 - }, - "22": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2726, - "n": "Mitrovic", - "f": "Stefan", - "p": "D", - "r": 13, - "s": { - "ao": "1", - "s": "96", - "n": "19", - "a": "5.05", - "d": "0.76", - "Oao": "1", - "Os": "96", - "On": "19", - "Oa": "5.05", - "Od": "0.76", - "Dp": "19", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5, - "a": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2768, - "n": "Fofana", - "f": "Youssouf", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "45", - "n": "8", - "a": "5.63", - "d": "1.02", - "Sg": "1", - "Ss": "20", - "Sn": "3", - "Sa": "6.67", - "Sd": "1.03", - "Og": "1", - "Os": "45", - "On": "8", - "Oa": "5.63", - "Od": "1.02", - "Mp": "8", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 8, - "g": 1 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 41 - }, - { - "i": 2769, - "n": "Simakan", - "f": "Mohamed", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2820, - "n": "Pelletier", - "f": "Louis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3187, - "n": "Valentin", - "f": "Leon", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3188, - "n": "Karamoko", - "f": "Mamoudoou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 170, - "n": "Bodmer", - "f": "Mathieu", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "96", - "n": "21", - "a": "4.6", - "d": "0.61", - "Ss": "38", - "Sn": "9", - "Sa": "4.28", - "Sd": "0.48", - "Og": "1", - "Os": "129", - "On": "28", - "Oa": "4.63", - "Od": "0.58", - "Mp": "6", - "Dp": "12", - "Ap": "3", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 4, - "s": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 238, - "n": "Blin", - "f": "Alexis", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "57", - "n": "12", - "a": "4.79", - "d": "0.8", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "0.96", - "Og": "1", - "Os": "90", - "On": "19", - "Oa": "4.76", - "Od": "0.7", - "Mp": "16", - "p": { - "5": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 42 - }, - { - "i": 309, - "n": "Dreyer", - "f": "Matthieu", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1397, - "n": "Dibassy", - "f": "Bakaye", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "101", - "n": "21", - "a": "4.81", - "d": "0.84", - "Sg": "1", - "Ss": "77", - "Sn": "16", - "Sa": "4.81", - "Sd": "0.81", - "Og": "2", - "Os": "170", - "On": "36", - "Oa": "4.72", - "Od": "1.04", - "Dp": "36", - "p": { - "32": { - "n": 7, - "g": 1 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5, - "g": 1 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1403, - "n": "Gurtner", - "f": "R\u00e9gis", - "p": "G", - "r": 19, - "s": { - "s": "122", - "n": "22", - "a": "5.57", - "d": "1.04", - "Ss": "122", - "Sn": "22", - "Sa": "5.57", - "Sd": "1.04", - "Os": "214", - "On": "38", - "Oa": "5.64", - "Od": "0.99", - "Gp": "38", - "p": { - "32": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 8 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 8 - } - } - }, - "c": 42 - }, - { - "i": 1404, - "n": "Monconduit", - "f": "Thomas", - "p": "M", - "r": 11, - "s": { - "s": "88", - "n": "18", - "a": "4.89", - "d": "0.86", - "Ss": "83", - "Sn": "17", - "Sa": "4.88", - "Sd": "0.88", - "Og": "1", - "Os": "177", - "On": "34", - "Oa": "5.21", - "Od": "1.04", - "Mp": "34", - "p": { - "32": { - "n": 8 - }, - "4": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 42 - }, - { - "i": 1408, - "n": "El Hajjam", - "f": "Oualid", - "p": "D", - "r": 6, - "s": { - "s": "38", - "n": "9", - "a": "4.22", - "d": "0.71", - "Os": "77", - "On": "18", - "Oa": "4.28", - "Od": "0.9", - "Mp": "2", - "Dp": "14", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 3 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1416, - "n": "Konat\u00e9", - "f": "Moussa", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "59", - "n": "12", - "a": "4.96", - "d": "1.22", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "9", - "Os": "126", - "On": "26", - "Oa": "4.87", - "Od": "1.28", - "Ap": "24", - "p": { - "32": { - "n": 7, - "g": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 8.5, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1419, - "n": "Ad\u00e9non", - "f": "Khaled", - "p": "D", - "r": 12, - "s": { - "ao": "1", - "s": "83", - "n": "18", - "a": "4.64", - "d": "0.97", - "Oao": "1", - "Os": "160", - "On": "33", - "Oa": "4.86", - "Od": "0.99", - "Dp": "32", - "p": { - "32": { - "n": 7 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 3, - "a": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 1425, - "n": "Ielsch", - "f": "Julien", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Mp": "2" - }, - "c": 42 - }, - { - "i": 1437, - "n": "Koita", - "f": "Bachibou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1449, - "n": "Prince", - "f": "", - "p": "D", - "r": 13, - "s": { - "g": "1", - "ao": "1", - "s": "83", - "n": "18", - "a": "4.61", - "d": "1.11", - "Sao": "1", - "Ss": "65", - "Sn": "14", - "Sa": "4.64", - "Sd": "1.08", - "Og": "1", - "Oao": "1", - "Os": "153", - "On": "32", - "Oa": "4.78", - "Od": "1.02", - "Dp": "32", - "p": { - "32": { - "n": 7 - }, - "2": { - "n": 4.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3, - "a": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1453, - "n": "Cornette", - "f": "Quentin", - "p": "A", - "r": 1, - "s": { - "s": "17", - "n": "4", - "a": "4.25", - "d": "0.25", - "Os": "47", - "On": "10", - "Oa": "4.7", - "Od": "0.87", - "Mp": "5", - "Ap": "2", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 1454, - "n": "Talal", - "f": "Madih", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1460, - "n": "Banaziak", - "f": "Gauthier", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1538, - "n": "Zungu", - "f": "Bongani", - "p": "M", - "r": 1, - "s": { - "s": "11", - "n": "2", - "a": "5.75", - "d": "0.75", - "Os": "60", - "On": "12", - "Oa": "5.04", - "Od": "0.78", - "Mp": "12", - "p": { - "32": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1701, - "n": "Ganso", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "59", - "n": "12", - "a": "4.96", - "d": "0.69", - "Os": "59", - "On": "12", - "Oa": "4.96", - "Od": "0.69", - "Mp": "10", - "Ap": "2", - "p": { - "5": { - "n": 6, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 2235, - "n": "Mendoza", - "f": "John Stiven", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "66", - "n": "14", - "a": "4.75", - "d": "1.01", - "Sg": "1", - "Ss": "45", - "Sn": "10", - "Sa": "4.55", - "Sd": "0.93", - "Og": "3", - "Os": "118", - "On": "24", - "Oa": "4.94", - "Od": "1.02", - "Mp": "16", - "Ap": "7", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 4.5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 2675, - "n": "Lefort", - "f": "Jordan", - "p": "D", - "r": 9, - "s": { - "s": "67", - "n": "14", - "a": "4.79", - "d": "1.15", - "Ss": "13", - "Sn": "3", - "Sa": "4.5", - "Sd": "1.08", - "Os": "67", - "On": "14", - "Oa": "4.79", - "Od": "1.15", - "Mp": "4", - "Dp": "10", - "p": { - "1": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6 - }, - "14": { - "n": 3 - }, - "15": { - "n": 4 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6 - } - } - }, - "c": 42 - }, - { - "i": 2706, - "n": "Otero", - "f": "Juan Ferney", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "95", - "n": "20", - "a": "4.78", - "d": "0.87", - "Sg": "1", - "Ss": "37", - "Sn": "7", - "Sa": "5.29", - "Sd": "0.88", - "Og": "1", - "Os": "95", - "On": "20", - "Oa": "4.78", - "Od": "0.87", - "Mp": "8", - "Ap": "12", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 6, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4 - }, - "16": { - "n": 4 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6.5, - "g": 1 - }, - "22": { - "n": 6 - } - } - }, - "c": 42 - }, - { - "i": 2728, - "n": "Gnahore", - "f": "Eddy", - "p": "M", - "r": 17, - "s": { - "g": "4", - "s": "109", - "n": "21", - "a": "5.19", - "d": "1.06", - "Sg": "2", - "Ss": "62", - "Sn": "13", - "Sa": "4.77", - "Sd": "1.01", - "Og": "4", - "Os": "109", - "On": "21", - "Oa": "5.19", - "Od": "1.06", - "Mp": "20", - "Ap": "1", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 3.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6, - "g": 1, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2773, - "n": "Gauducheau", - "f": "Antonin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2774, - "n": "Gneba", - "f": "Martin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2775, - "n": "Traore", - "f": "Gaoussou", - "p": "M", - "r": 1, - "s": { - "s": "15", - "n": "3", - "a": "5.17", - "d": "0.24", - "Os": "15", - "On": "3", - "Oa": "5.17", - "Od": "0.24", - "Mp": "3", - "p": { - "1": { - "n": 5 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2776, - "n": "Ngando", - "f": "Jean-Claude", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2777, - "n": "Sy", - "f": "Sanasi", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2778, - "n": "Gendrey", - "f": "Valentin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2785, - "n": "Rabei", - "f": "Reda", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2789, - "n": "Timite", - "f": "Cheick", - "p": "M", - "r": 8, - "s": { - "s": "49", - "n": "11", - "a": "4.5", - "d": "0.43", - "Ss": "23", - "Sn": "5", - "Sa": "4.6", - "Sd": "0.49", - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.43", - "Mp": "6", - "Ap": "5", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 2794, - "n": "Kurzawa", - "f": "Rafal", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "49", - "n": "11", - "a": "4.5", - "d": "0.74", - "Og": "1", - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.74", - "Mp": "2", - "Ap": "9", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2796, - "n": "Krafth", - "f": "Emil", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "92", - "n": "20", - "a": "4.6", - "d": "0.64", - "Ss": "31", - "Sn": "7", - "Sa": "4.5", - "Sd": "0.38", - "Og": "1", - "Os": "92", - "On": "20", - "Oa": "4.6", - "Od": "0.64", - "Mp": "2", - "Dp": "18", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5, - "g": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 3.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 2832, - "n": "Saman Ghoddos", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "72", - "n": "15", - "a": "4.83", - "d": "1.11", - "Og": "2", - "Os": "72", - "On": "15", - "Oa": "4.83", - "Od": "1.11", - "Mp": "4", - "Ap": "11", - "p": { - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 7 - }, - "8": { - "n": 4 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2937, - "n": "Segarel", - "f": "Stanley", - "p": "A", - "r": 1, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "18": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2994, - "n": "Mathurin Sakho", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 87, - "n": "Diallo", - "f": "Moustapha", - "p": "M", - "r": 7, - "s": { - "s": "32", - "n": "7", - "a": "4.57", - "d": "1.02", - "Og": "1", - "Os": "73", - "On": "15", - "Oa": "4.87", - "Od": "1.07", - "Mp": "10", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 3 - } - } - }, - "c": 67 - }, - { - "i": 212, - "n": "Ferri", - "f": "Jordan", - "p": "M", - "r": 9, - "s": { - "s": "64", - "n": "13", - "a": "4.92", - "d": "0.8", - "Ss": "44", - "Sn": "9", - "Sa": "4.94", - "Sd": "0.96", - "Os": "125", - "On": "25", - "Oa": "5", - "Od": "0.79", - "Mp": "16", - "p": { - "7": { - "n": 5, - "e": 2795, - "c": 18, - "s": 1 - }, - "10": { - "n": 5, - "e": 2824, - "c": 18, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 2833, - "c": 18 - }, - "12": { - "n": 5, - "e": 2844, - "c": 18, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 439, - "n": "Faitout Maouassa", - "f": "", - "p": "M", - "r": 12, - "s": { - "s": "59", - "n": "12", - "a": "4.92", - "d": "0.86", - "Os": "72", - "On": "15", - "Oa": "4.8", - "Od": "0.83", - "Mp": "1", - "Dp": "11", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "15": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 514, - "n": "Bernardoni", - "f": "Paul", - "p": "G", - "r": 16, - "s": { - "s": "124", - "n": "22", - "a": "5.66", - "d": "1.26", - "Ss": "124", - "Sn": "22", - "Sa": "5.66", - "Sd": "1.26", - "Os": "124", - "On": "22", - "Oa": "5.66", - "Od": "1.26", - "Gp": "22", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 8 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 2.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - } - } - }, - "c": 67 - }, - { - "i": 1169, - "n": "Guillaume", - "f": "Baptiste", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.77", - "Og": "1", - "Os": "76", - "On": "17", - "Oa": "4.47", - "Od": "0.72", - "Mp": "1", - "Ap": "12", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2604, - "n": "Hsissane", - "f": "Abdelmalik", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2606, - "n": "Landre", - "f": "Lo\u00efck", - "p": "D", - "r": 8, - "s": { - "g": "2", - "s": "80", - "n": "16", - "a": "5", - "d": "1.06", - "Sg": "1", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "1.43", - "Og": "2", - "Os": "80", - "On": "16", - "Oa": "5", - "Od": "1.06", - "Dp": "16", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 3 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 4 - }, - "16": { - "n": 6, - "g": 1, - "s": 1 - }, - "17": { - "n": 5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 67 - }, - { - "i": 2607, - "n": "Lybohy", - "f": "Herve", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "43", - "n": "9", - "a": "4.83", - "d": "1.27", - "Og": "1", - "Os": "43", - "On": "9", - "Oa": "4.83", - "Od": "1.27", - "Dp": "9", - "p": { - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 7, - "g": 1 - }, - "15": { - "n": 6.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 3 - } - } - }, - "c": 67 - }, - { - "i": 2611, - "n": "Vlachodimos", - "f": "Panagiotis", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2612, - "n": "Cadamuro", - "f": "Liassine", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2619, - "n": "Valdivia", - "f": "Pierrick", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2649, - "n": "Harek", - "f": "Fethi", - "p": "D", - "r": 6, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.75", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.75", - "Dp": "2", - "p": { - "10": { - "n": 4 - }, - "16": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2651, - "n": "Guessoum", - "f": "Kelyan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2654, - "n": "Buades", - "f": "Lucas", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2663, - "n": "Ben Amar", - "f": "Sami", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2666, - "n": "Bozok", - "f": "Umut", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "90", - "n": "19", - "a": "4.74", - "d": "1.13", - "Ss": "8", - "Sn": "2", - "Sa": "4", - "Og": "2", - "Os": "90", - "On": "19", - "Oa": "4.74", - "Od": "1.13", - "Ap": "19", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 2.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 3 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2674, - "n": "Marillat", - "f": "Yan", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2680, - "n": "Alakouch", - "f": "Sofiane", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "77", - "n": "16", - "a": "4.84", - "d": "0.95", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Og": "1", - "Os": "77", - "On": "16", - "Oa": "4.84", - "Od": "0.95", - "Dp": "16", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 7.5, - "g": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 6 - }, - "22": { - "n": 3 - } - } - }, - "c": 67 - }, - { - "i": 2698, - "n": "Thioub", - "f": "Sada", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "112", - "n": "22", - "a": "5.11", - "d": "1.21", - "Sg": "2", - "Ss": "112", - "Sn": "22", - "Sa": "5.11", - "Sd": "1.21", - "Og": "2", - "Os": "112", - "On": "22", - "Oa": "5.11", - "Od": "1.21", - "Mp": "12", - "Ap": "10", - "p": { - "1": { - "n": 8, - "g": 1 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 7 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2699, - "n": "Depres", - "f": "Clement", - "p": "A", - "r": 12, - "s": { - "g": "4", - "s": "84", - "n": "17", - "a": "4.94", - "d": "1.11", - "Og": "4", - "Os": "84", - "On": "17", - "Oa": "4.94", - "Od": "1.11", - "Ap": "17", - "p": { - "1": { - "n": 7, - "g": 1, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 8, - "g": 2 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2700, - "n": "Miguel", - "f": "Florian", - "p": "D", - "r": 9, - "s": { - "s": "17", - "n": "4", - "a": "4.38", - "d": "0.96", - "Os": "17", - "On": "4", - "Oa": "4.38", - "Od": "0.96", - "Dp": "4", - "p": { - "1": { - "n": 3 - }, - "3": { - "n": 5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2702, - "n": "Bobichon", - "f": "Antonin", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "75", - "n": "15", - "a": "5", - "d": "0.97", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "0.82", - "Og": "2", - "Os": "75", - "On": "15", - "Oa": "5", - "Od": "0.97", - "Mp": "10", - "Ap": "5", - "p": { - "4": { - "n": 6, - "g": 1, - "s": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 7 - }, - "7": { - "n": 5 - }, - "8": { - "n": 3 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2704, - "n": "Valls", - "f": "Theo", - "p": "M", - "r": 11, - "s": { - "s": "101", - "n": "20", - "a": "5.08", - "d": "0.53", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "101", - "On": "20", - "Oa": "5.08", - "Od": "0.53", - "Mp": "20", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 2709, - "n": "Briancon", - "f": "Anthony", - "p": "D", - "r": 18, - "s": { - "g": "2", - "s": "108", - "n": "21", - "a": "5.14", - "d": "1.32", - "Sg": "1", - "Ss": "76", - "Sn": "15", - "Sa": "5.07", - "Sd": "1.35", - "Og": "2", - "Os": "108", - "On": "21", - "Oa": "5.14", - "Od": "1.32", - "Dp": "21", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "8": { - "n": 3 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 2.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2716, - "n": "Paquiez", - "f": "Gaetan", - "p": "D", - "r": 10, - "s": { - "s": "50", - "n": "11", - "a": "4.59", - "d": "0.85", - "Ss": "9", - "Sn": "2", - "Sa": "4.5", - "Sd": "0.5", - "Os": "50", - "On": "11", - "Oa": "4.59", - "Od": "0.85", - "Dp": "11", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - }, - "4": { - "n": 3 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "19": { - "n": 3 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2723, - "n": "Ripart", - "f": "Renaud", - "p": "A", - "r": 15, - "s": { - "g": "2", - "s": "114", - "n": "22", - "a": "5.2", - "d": "1.05", - "Sg": "2", - "Ss": "114", - "Sn": "22", - "Sa": "5.2", - "Sd": "1.05", - "Og": "2", - "Os": "114", - "On": "22", - "Oa": "5.2", - "Od": "1.05", - "Mp": "6", - "Dp": "5", - "Ap": "11", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 7 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3 - }, - "20": { - "n": 7 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2729, - "n": "Valette", - "f": "Baptiste", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2731, - "n": "Alioui", - "f": "Rachid", - "p": "A", - "r": 14, - "s": { - "g": "4", - "s": "76", - "n": "15", - "a": "5.1", - "d": "0.86", - "Sg": "4", - "Ss": "76", - "Sn": "15", - "Sa": "5.1", - "Sd": "0.86", - "Og": "4", - "Os": "76", - "On": "15", - "Oa": "5.1", - "Od": "0.86", - "Ap": "15", - "p": { - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 7, - "g": 2, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2732, - "n": "Sourzac", - "f": "Martin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2733, - "n": "Savanier", - "f": "T\u00e9ji", - "p": "M", - "r": 17, - "s": { - "g": "2", - "s": "100", - "n": "17", - "a": "5.91", - "d": "1.15", - "Sg": "1", - "Ss": "78", - "Sn": "13", - "Sa": "6.04", - "Sd": "1.25", - "Og": "2", - "Os": "100", - "On": "17", - "Oa": "5.91", - "Od": "1.15", - "Mp": "17", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 6, - "g": 1 - }, - "10": { - "n": 7 - }, - "11": { - "n": 5 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 7.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2790, - "n": "Bouanga", - "f": "Denis", - "p": "M", - "r": 15, - "s": { - "g": "4", - "s": "92", - "n": "19", - "a": "4.84", - "d": "1.15", - "Sg": "3", - "Ss": "76", - "Sn": "16", - "Sa": "4.78", - "Sd": "1.21", - "Og": "4", - "Os": "92", - "On": "19", - "Oa": "4.84", - "Od": "1.15", - "Mp": "13", - "Ap": "6", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 8, - "g": 2 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2957, - "n": "Lionel Dias", - "f": "Lucas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 346, - "n": "Abdelhamid", - "f": "Yunis", - "p": "D", - "r": 23, - "s": { - "s": "120", - "n": "22", - "a": "5.48", - "d": "0.87", - "Ss": "120", - "Sn": "22", - "Sa": "5.48", - "Sd": "0.87", - "Os": "120", - "On": "22", - "Oa": "5.48", - "Od": "0.87", - "Dp": "22", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 350, - "n": "Martin", - "f": "Marvin", - "p": "M", - "r": 11, - "s": { - "s": "52", - "n": "11", - "a": "4.77", - "d": "0.49", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "52", - "On": "11", - "Oa": "4.77", - "Od": "0.49", - "Mp": "11", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 563, - "n": "Cafaro", - "f": "Mathieu", - "p": "M", - "r": 14, - "s": { - "g": "4", - "s": "102", - "n": "20", - "a": "5.1", - "d": "0.9", - "Sg": "2", - "Ss": "28", - "Sn": "5", - "Sa": "5.6", - "Sd": "0.97", - "Og": "4", - "Os": "102", - "On": "20", - "Oa": "5.1", - "Od": "0.9", - "Mp": "19", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 7, - "g": 1, - "s": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 1144, - "n": "Sheyi Ojo", - "f": "", - "p": "M", - "r": 9, - "s": { - "s": "57", - "n": "12", - "a": "4.75", - "d": "0.43", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.43", - "Mp": "11", - "Ap": "1", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 1410, - "n": "Dingome", - "f": "Tristan", - "p": "M", - "r": 7, - "s": { - "s": "29", - "n": "6", - "a": "4.83", - "d": "0.47", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Os": "29", - "On": "6", - "Oa": "4.83", - "Od": "0.47", - "Mp": "6", - "p": { - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 68 - }, - { - "i": 1543, - "n": "Suk Hyun-Jun", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "62", - "n": "14", - "a": "4.46", - "d": "0.77", - "Og": "2", - "Os": "111", - "On": "26", - "Oa": "4.29", - "Od": "0.74", - "Ap": "18", - "p": { - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "13": { - "n": 4, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 2608, - "n": "Chavarria", - "f": "Pablo", - "p": "A", - "r": 14, - "s": { - "g": "3", - "s": "93", - "n": "20", - "a": "4.68", - "d": "0.76", - "Sg": "1", - "Ss": "14", - "Sn": "3", - "Sa": "4.83", - "Sd": "0.85", - "Og": "3", - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.76", - "Mp": "1", - "Ap": "19", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5.5, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2610, - "n": "M\u00e9tanire", - "f": "Romain", - "p": "D", - "r": 6, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "1.02", - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "1.02", - "Dp": "5", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - }, - "7": { - "n": 4.5 - }, - "17": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2615, - "n": "Fontaine", - "f": "Thomas", - "p": "D", - "r": 8, - "s": { - "s": "31", - "n": "6", - "a": "5.17", - "d": "0.47", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "31", - "On": "6", - "Oa": "5.17", - "Od": "0.47", - "Dp": "6", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "12": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2620, - "n": "Ngamukol", - "f": "Anatole", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2647, - "n": "Costa", - "f": "Logan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2648, - "n": "Carrasso", - "f": "Johann", - "p": "G", - "r": 4, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2650, - "n": "Kyei", - "f": "Scott", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2656, - "n": "Bana", - "f": "Moussa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2660, - "n": "Piechocki", - "f": "Virgile", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2662, - "n": "Romao", - "f": "Jacques-Alaixys", - "p": "M", - "r": 18, - "s": { - "s": "116", - "n": "21", - "a": "5.52", - "d": "0.75", - "Ss": "51", - "Sn": "9", - "Sa": "5.72", - "Sd": "0.71", - "Os": "116", - "On": "21", - "Oa": "5.52", - "Od": "0.75", - "Mp": "21", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2667, - "n": "Konan", - "f": "Ghislain", - "p": "D", - "r": 17, - "s": { - "s": "103", - "n": "20", - "a": "5.18", - "d": "0.97", - "Os": "103", - "On": "20", - "Oa": "5.18", - "Od": "0.97", - "Dp": "20", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2673, - "n": "Oudin", - "f": "Remi", - "p": "M", - "r": 12, - "s": { - "g": "4", - "s": "103", - "n": "21", - "a": "4.9", - "d": "1.04", - "Sg": "2", - "Ss": "33", - "Sn": "7", - "Sa": "4.79", - "Sd": "1.13", - "Og": "4", - "Os": "103", - "On": "21", - "Oa": "4.9", - "Od": "1.04", - "Mp": "19", - "Ap": "2", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 8, - "g": 2 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1 - }, - "22": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2676, - "n": "Mendy", - "f": "Edouard", - "p": "G", - "r": 23, - "s": { - "s": "129", - "n": "22", - "a": "5.86", - "d": "1.09", - "Ss": "129", - "Sn": "22", - "Sa": "5.86", - "Sd": "1.09", - "Os": "129", - "On": "22", - "Oa": "5.86", - "Od": "1.09", - "Gp": "22", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 7.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 7 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 7 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 7.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 68 - }, - { - "i": 2683, - "n": "Disasi", - "f": "Axel", - "p": "D", - "r": 4, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "3": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2694, - "n": "Lemaitre", - "f": "Nicolas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2703, - "n": "Kyei", - "f": "Grejohn", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2705, - "n": "Doumbia", - "f": "Moussa", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "77", - "n": "15", - "a": "5.17", - "d": "1.01", - "Og": "2", - "Os": "77", - "On": "15", - "Oa": "5.17", - "Od": "1.01", - "Mp": "12", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2708, - "n": "Mbemba", - "f": "Nolan", - "p": "M", - "r": 6, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.38", - "Os": "28", - "On": "6", - "Oa": "4.75", - "Od": "0.38", - "Mp": "5", - "Dp": "1", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2715, - "n": "Kamara", - "f": "Hassane", - "p": "M", - "r": 7, - "s": { - "s": "35", - "n": "7", - "a": "5.07", - "d": "0.56", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.62", - "Os": "35", - "On": "7", - "Oa": "5.07", - "Od": "0.56", - "Mp": "5", - "Dp": "2", - "p": { - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2724, - "n": "Chavalerin", - "f": "Xavier", - "p": "M", - "r": 20, - "s": { - "g": "2", - "s": "115", - "n": "21", - "a": "5.48", - "d": "0.63", - "Sg": "1", - "Ss": "67", - "Sn": "12", - "Sa": "5.58", - "Sd": "0.64", - "Og": "2", - "Os": "115", - "On": "21", - "Oa": "5.48", - "Od": "0.63", - "Mp": "21", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "g": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2730, - "n": "Cakin", - "f": "Hendrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2770, - "n": "Bahanack", - "f": "Patrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2823, - "n": "Engels", - "f": "Bj\u00f6rn", - "p": "D", - "r": 19, - "s": { - "g": "1", - "s": "98", - "n": "18", - "a": "5.47", - "d": "0.66", - "Sg": "1", - "Ss": "98", - "Sn": "18", - "Sa": "5.47", - "Sd": "0.66", - "Og": "1", - "Os": "98", - "On": "18", - "Oa": "5.47", - "Od": "0.66", - "Dp": "18", - "p": { - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2858, - "n": "Pinson", - "f": "Virgile", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2862, - "n": "Foket", - "f": "Thomas", - "p": "D", - "r": 11, - "s": { - "s": "85", - "n": "17", - "a": "5.03", - "d": "0.53", - "Ss": "74", - "Sn": "15", - "Sa": "4.97", - "Sd": "0.53", - "Os": "85", - "On": "17", - "Oa": "5.03", - "Od": "0.53", - "Dp": "17", - "p": { - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 2951, - "n": "Dia", - "f": "Boulaye", - "p": "M", - "r": 1, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "2", - "p": { - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - } - ], - "c": { - "2": { - "n": "Paris", - "rn": "Paris Saint-Germain", - "cn": "Paris-Saint-Germain", - "a": "PAR", - "l": 1, - "el": 1332, - "s": { - "p": 56 - }, - "nM": 2956, - "nMWC": "0.6998", - "pM": { - "3": 2760, - "4": 2767, - "5": 2780, - "6": 2789, - "7": 2800, - "9": 2820, - "10": 2828, - "13": 2857, - "14": 2869, - "16": 2891, - "19": 2917, - "20": 2922, - "21": 2938, - "22": 2949, - "1": 2740, - "2": 2745, - "8": 2807, - "12": 2848, - "15": 2873, - "11": 2837 - }, - "DMI": [ - 2820 - ] - }, - "3": { - "n": "Bordeaux", - "rn": "Girondins de Bordeaux", - "cn": "Girondins-de-Bordeaux", - "a": "BOD", - "l": 1, - "el": 1087, - "s": { - "p": 28 - }, - "nM": 2953, - "nMWC": "0.7898", - "pM": { - "15": 2873, - "1": 2733, - "2": 2751, - "3": 2753, - "4": 2769, - "5": 2773, - "10": 2825, - "11": 2834, - "12": 2844, - "14": 2864, - "17": 2892, - "20": 2929, - "21": 2933, - "31": 1067, - "6": 2783, - "7": 2793, - "8": 2808, - "9": 2814, - "13": 2853, - "16": 2883, - "19": 2913, - "22": 2950 - }, - "DMI": [ - 1067, - 2783 - ] - }, - "4": { - "n": "Saint Etienne", - "rn": "AS Saint-Etienne", - "cn": "AS-Saint-Etienne", - "a": "STE", - "l": 1, - "el": 1090, - "s": { - "p": 37 - }, - "nM": 2961, - "nMWC": "0.4641", - "pM": { - "5": 2780, - "16": 2883, - "33": 1093, - "1": 2741, - "2": 2750, - "6": 2790, - "7": 2801, - "9": 2816, - "12": 2850, - "13": 2860, - "14": 2865, - "15": 2880, - "17": 2899, - "20": 2925, - "21": 2941, - "22": 2947, - "3": 2757, - "4": 2770, - "8": 2810, - "10": 2830, - "11": 2839, - "18": 2909, - "19": 2920 - }, - "DMI": [ - 1093, - 2750 - ] - }, - "5": { - "n": "Caen", - "rn": "SM Caen", - "cn": "SM-Caen", - "a": "CAE", - "l": 1, - "el": 908, - "s": { - "p": 18 - }, - "nM": 2962, - "nMWC": "0.4684", - "pM": { - "1": 2740, - "13": 2853, - "6": 2790, - "2": 2743, - "3": 2758, - "4": 2763, - "5": 2774, - "8": 2803, - "9": 2817, - "10": 2822, - "11": 2836, - "12": 2842, - "15": 2872, - "16": 2884, - "18": 2903, - "19": 2918, - "20": 2923, - "21": 2934, - "22": 2946, - "7": 2794, - "14": 2863, - "17": 2900, - "32": 1075 - }, - "DMI": [ - 2803, - 1075 - ] - }, - "7": { - "n": "Dijon", - "rn": "Dijon FCO", - "cn": "Dijon-FCO", - "a": "DIJ", - "l": 1, - "el": 959, - "s": { - "p": 20 - }, - "nM": 2952, - "nMWC": "0.3951", - "pM": { - "14": 2864, - "21": 2933, - "19": 2920, - "4": 2763, - "1": 2737, - "2": 2744, - "5": 2775, - "7": 2795, - "8": 2811, - "9": 2812, - "10": 2823, - "38": 1136, - "3": 2759, - "6": 2788, - "11": 2838, - "12": 2843, - "13": 2856, - "15": 2881, - "16": 2885, - "17": 2898, - "20": 2924, - "22": 2943 - }, - "DMI": [ - 2775, - 1136 - ] - }, - "8": { - "n": "Nantes", - "rn": "FC Nantes", - "cn": "FC-Nantes", - "a": "NTE", - "l": 1, - "el": 1048, - "s": { - "p": 24 - }, - "nM": 2966, - "nMWC": "0.5014", - "pM": { - "19": 2917, - "9": 2814, - "15": 2880, - "22": 2947, - "3": 2758, - "5": 2778, - "2": 2744, - "1": 2738, - "4": 2771, - "6": 2784, - "7": 2798, - "8": 2805, - "10": 2826, - "11": 2832, - "12": 2846, - "13": 2859, - "14": 2867, - "17": 2896, - "18": 2908, - "20": 2928, - "21": 2932, - "16": 2888 - }, - "DMI": [ - 2896 - ] - }, - "9": { - "n": "Marseille", - "rn": "Olympique de Marseille", - "cn": "Olympique-de-Marseille", - "a": "MRS", - "l": 1, - "el": 1130, - "s": { - "p": 31 - }, - "nM": 2959, - "nMWC": "0.5799", - "pM": { - "11": 2837, - "17": 2899, - "9": 2817, - "21": 2934, - "15": 2876, - "13": 2856, - "16": 2888, - "1": 2736, - "2": 2747, - "3": 2756, - "4": 2766, - "5": 2776, - "6": 2785, - "7": 2796, - "8": 2804, - "10": 2827, - "12": 2845, - "14": 2862, - "19": 2912, - "20": 2927, - "22": 2945 - }, - "DMI": [ - 2876 - ] - }, - "10": { - "n": "Toulouse", - "rn": "Toulouse FC", - "cn": "Toulouse-FC", - "a": "TLS", - "l": 1, - "el": 1038, - "s": { - "p": 26 - }, - "nM": 2957, - "nMWC": "0.5785", - "pM": { - "14": 2869, - "2": 2751, - "7": 2801, - "18": 2903, - "16": 2890, - "15": 2881, - "10": 2826, - "1": 2736, - "3": 2761, - "4": 2764, - "5": 2781, - "6": 2782, - "8": 2809, - "9": 2821, - "11": 2841, - "12": 2851, - "13": 2861, - "17": 2901, - "19": 2914, - "20": 2931, - "21": 2937, - "22": 2951, - "27": 1034 - }, - "DMI": [ - 2781, - 1034 - ] - }, - "12": { - "n": "Lille", - "rn": "LOSC", - "cn": "LOSC", - "a": "LIL", - "l": 1, - "el": 1162, - "s": { - "p": 43 - }, - "nM": 2955, - "nMWC": "0.5573", - "pM": { - "12": 2848, - "7": 2793, - "9": 2816, - "11": 2836, - "20": 2923, - "17": 2894, - "10": 2823, - "6": 2784, - "8": 2804, - "22": 2945, - "14": 2868, - "19": 2914, - "28": 1042, - "1": 2734, - "2": 2746, - "3": 2754, - "4": 2762, - "5": 2772, - "13": 2855, - "21": 2935, - "15": 2875, - "16": 2887, - "18": 2910 - }, - "DMI": [ - 2868, - 1042 - ] - }, - "13": { - "n": "Monaco", - "rn": "AS Monaco", - "cn": "AS-Monaco", - "a": "MON", - "l": 1, - "el": 983, - "s": { - "p": 15 - }, - "nM": 2957, - "nMWC": "0.4215", - "pM": { - "13": 2857, - "3": 2753, - "8": 2810, - "14": 2863, - "11": 2838, - "22": 2943, - "1": 2738, - "4": 2766, - "20": 2927, - "5": 2781, - "27": 1034, - "2": 2746, - "6": 2786, - "7": 2797, - "9": 2818, - "10": 2831, - "12": 2849, - "15": 2877, - "16": 2882, - "17": 2895, - "18": 2906, - "19": 2915, - "21": 2936 - }, - "DMI": [ - 2781, - 1034 - ] - }, - "14": { - "n": "Guingamp", - "rn": "EA Guingamp", - "cn": "EA-Guingamp", - "a": "GIN", - "l": 1, - "el": 857, - "s": { - "p": 14 - }, - "nM": 2953, - "nMWC": "0.2102", - "pM": { - "21": 2938, - "2": 2745, - "31": 1067, - "6": 2783, - "1": 2741, - "20": 2925, - "10": 2822, - "14": 2870, - "16": 2885, - "12": 2846, - "5": 2776, - "15": 2874, - "4": 2764, - "3": 2754, - "19": 2915, - "11": 2835, - "17": 2893, - "18": 2905, - "7": 2799, - "8": 2802, - "9": 2815, - "13": 2854, - "22": 2944 - }, - "DMI": [ - 1067, - 2783 - ] - }, - "15": { - "n": "Montpellier", - "rn": "Montpellier H\u00e9rault SC", - "cn": "Montpellier-Herault-SC", - "a": "MTP", - "l": 1, - "el": 1120, - "s": { - "p": 35 - }, - "nM": 2958, - "nMWC": "0.6035", - "pM": { - "10": 2825, - "3": 2757, - "22": 2946, - "7": 2794, - "1": 2737, - "20": 2924, - "18": 2908, - "12": 2845, - "6": 2787, - "11": 2841, - "16": 2887, - "15": 2877, - "9": 2815, - "2": 2742, - "4": 2768, - "5": 2777, - "8": 2806, - "13": 2852, - "14": 2866, - "19": 2916, - "21": 2940 - }, - "DMI": [ - 2806 - ] - }, - "16": { - "n": "Angers", - "rn": "Angers SCO", - "cn": "Angers-SCO", - "a": "ANG", - "l": 1, - "el": 1033, - "s": { - "p": 24 - }, - "nM": 2952, - "nMWC": "0.6049", - "pM": { - "3": 2760, - "17": 2892, - "12": 2850, - "15": 2872, - "10": 2829, - "5": 2775, - "38": 1136, - "14": 2867, - "21": 2932, - "19": 2912, - "16": 2889, - "6": 2782, - "22": 2951, - "4": 2762, - "7": 2797, - "8": 2802, - "13": 2852, - "1": 2732, - "2": 2749, - "9": 2813, - "18": 2902, - "20": 2930, - "11": 2833 - }, - "DMI": [ - 2775, - 1136 - ] - }, - "18": { - "n": "Lyon", - "rn": "Olympique Lyonnais", - "cn": "Olympique-Lyonnais", - "a": "LYO", - "l": 1, - "el": 1185, - "s": { - "p": 40 - }, - "nM": 2956, - "nMWC": "0.3002", - "pM": { - "9": 2820, - "12": 2844, - "14": 2865, - "21": 2941, - "5": 2774, - "7": 2795, - "8": 2805, - "6": 2785, - "4": 2765, - "17": 2901, - "15": 2875, - "18": 2906, - "13": 2854, - "1": 2735, - "19": 2916, - "11": 2833, - "3": 2755, - "16": 2886, - "20": 2926, - "22": 2942, - "2": 2748, - "10": 2824 - }, - "DMI": [ - 2820 - ] - }, - "19": { - "n": "Nice", - "rn": "OGC Nice", - "cn": "OGC-Nice", - "a": "NCE", - "l": 1, - "el": 1122, - "s": { - "p": 34 - }, - "nM": 2955, - "nMWC": "0.4427", - "pM": { - "8": 2807, - "11": 2834, - "20": 2929, - "18": 2909, - "2": 2743, - "1": 2739, - "3": 2759, - "7": 2798, - "10": 2827, - "4": 2765, - "6": 2787, - "12": 2847, - "13": 2858, - "14": 2868, - "15": 2874, - "16": 2889, - "9": 2821, - "28": 1042, - "17": 2895, - "5": 2779, - "19": 2921, - "21": 2939, - "22": 2948 - }, - "DMI": [ - 2868, - 1042 - ] - }, - "20": { - "n": "Rennes", - "rn": "Stade Rennais FC", - "cn": "Stade-Rennais-FC", - "a": "REN", - "l": 1, - "el": 1069, - "s": { - "p": 30 - }, - "nM": 2960, - "nMWC": "0.6900", - "pM": { - "6": 2789, - "22": 2949, - "4": 2769, - "10": 2830, - "12": 2842, - "11": 2840, - "17": 2898, - "13": 2859, - "20": 2928, - "3": 2756, - "8": 2809, - "1": 2734, - "9": 2818, - "18": 2905, - "14": 2866, - "21": 2940, - "2": 2749, - "16": 2886, - "5": 2779, - "28": 1035, - "7": 2792, - "15": 2879, - "19": 2919 - }, - "DMI": [ - 1035, - 2792 - ] - }, - "41": { - "n": "Strasbourg", - "rn": "RC Strasbourg Alsace", - "cn": "RC-Strasbourg-Alsace", - "a": "STB", - "l": 1, - "el": 1115, - "s": { - "p": 35 - }, - "nM": 2961, - "nMWC": "0.5359", - "pM": { - "16": 2891, - "1": 2733, - "22": 2950, - "33": 1093, - "2": 2750, - "17": 2900, - "18": 2911, - "8": 2811, - "4": 2771, - "7": 2796, - "12": 2851, - "20": 2931, - "13": 2855, - "10": 2831, - "21": 2936, - "11": 2835, - "5": 2777, - "9": 2813, - "3": 2755, - "19": 2921, - "15": 2879, - "14": 2871, - "6": 2791 - }, - "DMI": [ - 1093, - 2750 - ] - }, - "42": { - "n": "Amiens", - "rn": "Amiens SC", - "cn": "Amiens-SC", - "a": "AMI", - "l": 1, - "el": 930, - "s": { - "p": 18 - }, - "nM": 2962, - "nMWC": "0.5316", - "pM": { - "10": 2828, - "20": 2922, - "19": 2913, - "4": 2770, - "8": 2803, - "32": 1075, - "9": 2812, - "11": 2832, - "14": 2862, - "12": 2847, - "13": 2861, - "5": 2772, - "21": 2935, - "16": 2882, - "17": 2893, - "1": 2735, - "2": 2742, - "3": 2752, - "18": 2902, - "22": 2942, - "28": 1035, - "7": 2792, - "6": 2791, - "15": 2878 - }, - "DMI": [ - 2803, - 1075 - ] - }, - "67": { - "n": "N\u00eemes", - "rn": "N\u00eemes Olympique", - "cn": "Nimes-Olympique", - "a": "NIM", - "l": 1, - "el": 1047, - "s": { - "p": 29 - }, - "nM": 2966, - "nMWC": "0.4986", - "pM": { - "4": 2767, - "5": 2773, - "11": 2839, - "16": 2884, - "9": 2819, - "12": 2843, - "17": 2896, - "2": 2747, - "13": 2858, - "3": 2761, - "21": 2937, - "18": 2910, - "6": 2786, - "7": 2799, - "8": 2806, - "1": 2732, - "20": 2930, - "10": 2824, - "22": 2948, - "19": 2919, - "14": 2871, - "15": 2878 - }, - "DMI": [ - 2896 - ] - }, - "68": { - "n": "Reims", - "rn": "Stade de Reims", - "cn": "Stade-de-Reims", - "a": "REI", - "l": 1, - "el": 1074, - "s": { - "p": 31 - }, - "nM": 2959, - "nMWC": "0.4201", - "pM": { - "7": 2800, - "8": 2808, - "13": 2860, - "19": 2918, - "1": 2739, - "5": 2778, - "9": 2819, - "10": 2829, - "11": 2840, - "14": 2870, - "15": 2876, - "16": 2890, - "17": 2894, - "18": 2911, - "6": 2788, - "12": 2849, - "22": 2944, - "3": 2752, - "4": 2768, - "20": 2926, - "2": 2748, - "21": 2939 - }, - "DMI": [ - 2876 - ] - } - }, - "op": { - "23": { - "n": "Burnley", - "l": 2, - "el": 1009 - }, - "25": { - "n": "Chelsea", - "l": 2, - "el": 1108 - }, - "26": { - "n": "Crystal Palace", - "l": 2, - "el": 1016 - }, - "22": { - "n": "Everton", - "l": 2, - "el": 1023 - }, - "69": { - "n": "Wolverhampton", - "l": 2, - "el": 1086 - }, - "29": { - "n": "Leicester", - "l": 2, - "el": 1037 - }, - "35": { - "n": "Southampton", - "l": 2, - "el": 1040 - } - }, - "e": { - "2760": { - "d": 3, - "dB": "2018-08-25T17:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 2, - "t2": 16 - }, - "2767": { - "d": 4, - "dB": "2018-09-01T15:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 67, - "t2": 2 - }, - "2780": { - "d": 5, - "dB": "2018-09-14T18:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 2, - "t2": 4 - }, - "2789": { - "d": 6, - "dB": "2018-09-23T13:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 20, - "t2": 2 - }, - "2800": { - "d": 7, - "dB": "2018-09-26T19:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 2, - "t2": 68 - }, - "2820": { - "d": 9, - "dB": "2018-10-07T19:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 2, - "t2": 18 - }, - "2828": { - "d": 10, - "dB": "2018-10-20T15:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 2, - "t2": 42 - }, - "2857": { - "d": 13, - "dB": "2018-11-11T20:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 13, - "t2": 2 - }, - "2869": { - "d": 14, - "dB": "2018-11-24T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 10 - }, - "2891": { - "d": 16, - "dB": "2018-12-05T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 2 - }, - "2917": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 8 - }, - "2922": { - "d": 20, - "dB": "2019-01-12T16:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 42, - "t2": 2 - }, - "2938": { - "d": 21, - "dB": "2019-01-19T16:00:00Z", - "t1s": 9, - "t2s": 0, - "t1": 2, - "t2": 14 - }, - "2949": { - "d": 22, - "dB": "2019-01-27T20:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 2, - "t2": 20 - }, - "2740": { - "d": 1, - "dB": "2018-08-12T21:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 2, - "t2": 5 - }, - "2745": { - "d": 2, - "dB": "2018-08-18T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 2 - }, - "2807": { - "d": 8, - "dB": "2018-09-29T15:15:00Z", - "t1s": 0, - "t2s": 3, - "t1": 19, - "t2": 2 - }, - "2848": { - "d": 12, - "dB": "2018-11-02T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 2, - "t2": 12 - }, - "2873": { - "d": 15, - "dB": "2018-12-02T20:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 3, - "t2": 2 - }, - "2837": { - "d": 11, - "dB": "2018-10-28T20:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 9, - "t2": 2 - }, - "2733": { - "d": 1, - "dB": "2018-08-12T17:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 3, - "t2": 41 - }, - "2751": { - "d": 2, - "dB": "2018-08-19T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 10, - "t2": 3 - }, - "2753": { - "d": 3, - "dB": "2018-08-26T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 3, - "t2": 13 - }, - "2769": { - "d": 4, - "dB": "2018-09-02T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 20, - "t2": 3 - }, - "2773": { - "d": 5, - "dB": "2018-09-16T15:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 3, - "t2": 67 - }, - "2825": { - "d": 10, - "dB": "2018-10-21T13:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 15, - "t2": 3 - }, - "2834": { - "d": 11, - "dB": "2018-10-28T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 19 - }, - "2844": { - "d": 12, - "dB": "2018-11-03T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 3 - }, - "2864": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 7, - "t2": 3 - }, - "2892": { - "d": 17, - "dB": "2019-01-15T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 3 - }, - "2929": { - "d": 20, - "dB": "2019-01-12T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 3 - }, - "2933": { - "d": 21, - "dB": "2019-01-20T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 3, - "t2": 7 - }, - "1067": { - "d": 31, - "dB": "2018-04-01T13:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 14, - "t2": 3 - }, - "2783": { - "d": 6, - "dB": "2018-09-23T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 3 - }, - "2793": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 3, - "t2": 12 - }, - "2808": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 68, - "t2": 3 - }, - "2814": { - "d": 9, - "dB": "2018-10-07T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 3, - "t2": 8 - }, - "2853": { - "d": 13, - "dB": "2018-11-11T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 3, - "t2": 5 - }, - "2883": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 3, - "t2": 4 - }, - "2913": { - "d": 19, - "dB": "2018-12-23T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 3, - "t2": 42 - }, - "2950": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 41, - "t2": 3 - }, - "1093": { - "d": 33, - "dB": "2018-04-14T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 41, - "t2": 4 - }, - "2741": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 14 - }, - "2750": { - "d": 2, - "dB": "2018-08-19T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 4 - }, - "2790": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 5 - }, - "2801": { - "d": 7, - "dB": "2018-09-25T19:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 10, - "t2": 4 - }, - "2816": { - "d": 9, - "dB": "2018-10-06T15:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 12, - "t2": 4 - }, - "2850": { - "d": 12, - "dB": "2018-11-04T16:00:00Z", - "t1s": 4, - "t2s": 3, - "t1": 4, - "t2": 16 - }, - "2860": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 68 - }, - "2865": { - "d": 14, - "dB": "2018-11-23T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 18, - "t2": 4 - }, - "2880": { - "d": 15, - "dB": "2018-11-30T19:45:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 8 - }, - "2899": { - "d": 17, - "dB": "2019-01-16T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 9 - }, - "2925": { - "d": 20, - "dB": "2019-01-12T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 14, - "t2": 4 - }, - "2941": { - "d": 21, - "dB": "2019-01-20T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 4, - "t2": 18 - }, - "2947": { - "d": 22, - "dB": "2019-01-30T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 4 - }, - "2757": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 15, - "t2": 4 - }, - "2770": { - "d": 4, - "dB": "2018-09-02T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 4, - "t2": 42 - }, - "2810": { - "d": 8, - "dB": "2018-09-28T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 13 - }, - "2830": { - "d": 10, - "dB": "2018-10-21T15:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 4, - "t2": 20 - }, - "2839": { - "d": 11, - "dB": "2018-10-26T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 67, - "t2": 4 - }, - "2909": { - "d": 18, - "dB": "2018-12-16T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 4 - }, - "2920": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 7 - }, - "2743": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 5, - "t2": 19 - }, - "2758": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 5 - }, - "2763": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 7, - "t2": 5 - }, - "2774": { - "d": 5, - "dB": "2018-09-15T15:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 5, - "t2": 18 - }, - "2803": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 42 - }, - "2817": { - "d": 9, - "dB": "2018-10-07T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 5 - }, - "2822": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 5, - "t2": 14 - }, - "2836": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 12, - "t2": 5 - }, - "2842": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 20 - }, - "2872": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 5 - }, - "2884": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 67 - }, - "2903": { - "d": 18, - "dB": "2018-12-18T18:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 5, - "t2": 10 - }, - "2918": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 68, - "t2": 5 - }, - "2923": { - "d": 20, - "dB": "2019-01-11T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 5, - "t2": 12 - }, - "2934": { - "d": 21, - "dB": "2019-01-20T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 9 - }, - "2946": { - "d": 22, - "dB": "2019-01-27T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 15, - "t2": 5 - }, - "2794": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 5, - "t2": 15 - }, - "2863": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 13 - }, - "2900": { - "d": 17, - "dB": "2018-12-09T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 41, - "t2": 5 - }, - "1075": { - "d": 32, - "dB": "2018-04-07T18:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 42, - "t2": 5 - }, - "2739": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 68 - }, - "2778": { - "d": 5, - "dB": "2018-09-16T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 8, - "t2": 68 - }, - "2819": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 67, - "t2": 68 - }, - "2829": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 16 - }, - "2840": { - "d": 11, - "dB": "2018-10-28T14:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 20, - "t2": 68 - }, - "2870": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 14 - }, - "2876": { - "d": 15, - "dB": "2018-12-02T16:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 9, - "t2": 68 - }, - "2890": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 68, - "t2": 10 - }, - "2894": { - "d": 17, - "dB": "2018-12-09T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 12, - "t2": 68 - }, - "2911": { - "d": 18, - "dB": "2018-12-15T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 41 - }, - "2737": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 15, - "t2": 7 - }, - "2744": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 7, - "t2": 8 - }, - "2775": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 7, - "t2": 16 - }, - "2795": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 7, - "t2": 18 - }, - "2811": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 41, - "t2": 7 - }, - "2812": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 42, - "t2": 7 - }, - "2823": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 7, - "t2": 12 - }, - "1136": { - "d": 38, - "dB": "2018-05-19T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 16 - }, - "2759": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 19, - "t2": 7 - }, - "2788": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 68, - "t2": 7 - }, - "2838": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 13, - "t2": 7 - }, - "2843": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 7, - "t2": 67 - }, - "2856": { - "d": 13, - "dB": "2018-11-11T16:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 7 - }, - "2881": { - "d": 15, - "dB": "2018-12-02T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 7 - }, - "2885": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 14 - }, - "2898": { - "d": 17, - "dB": "2018-12-08T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 20, - "t2": 7 - }, - "2924": { - "d": 20, - "dB": "2019-01-13T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 7, - "t2": 15 - }, - "2943": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 7, - "t2": 13 - }, - "2738": { - "d": 1, - "dB": "2018-08-11T17:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 8, - "t2": 13 - }, - "2771": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 41, - "t2": 8 - }, - "2784": { - "d": 6, - "dB": "2018-09-22T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 8 - }, - "2798": { - "d": 7, - "dB": "2018-09-25T17:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 8, - "t2": 19 - }, - "2805": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 8 - }, - "2826": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 8, - "t2": 10 - }, - "2832": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 42, - "t2": 8 - }, - "2846": { - "d": 12, - "dB": "2018-11-04T14:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 8, - "t2": 14 - }, - "2859": { - "d": 13, - "dB": "2018-11-11T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 8 - }, - "2867": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 16 - }, - "2896": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 67, - "t2": 8 - }, - "2908": { - "d": 18, - "dB": "2019-01-08T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 8, - "t2": 15 - }, - "2928": { - "d": 20, - "dB": "2019-01-13T14:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 8, - "t2": 20 - }, - "2932": { - "d": 21, - "dB": "2019-01-20T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 8 - }, - "2888": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 9 - }, - "2736": { - "d": 1, - "dB": "2018-08-10T20:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 9, - "t2": 10 - }, - "2747": { - "d": 2, - "dB": "2018-08-19T19:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 67, - "t2": 9 - }, - "2756": { - "d": 3, - "dB": "2018-08-26T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 9, - "t2": 20 - }, - "2766": { - "d": 4, - "dB": "2018-09-02T19:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 13, - "t2": 9 - }, - "2776": { - "d": 5, - "dB": "2018-09-16T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 9, - "t2": 14 - }, - "2785": { - "d": 6, - "dB": "2018-09-23T19:00:00Z", - "t1s": 4, - "t2s": 2, - "t1": 18, - "t2": 9 - }, - "2796": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 9, - "t2": 41 - }, - "2804": { - "d": 8, - "dB": "2018-09-30T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 12, - "t2": 9 - }, - "2827": { - "d": 10, - "dB": "2018-10-21T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 9 - }, - "2845": { - "d": 12, - "dB": "2018-11-04T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 15, - "t2": 9 - }, - "2862": { - "d": 14, - "dB": "2018-11-25T20:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 42, - "t2": 9 - }, - "2912": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 9 - }, - "2927": { - "d": 20, - "dB": "2019-01-13T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 9, - "t2": 13 - }, - "2945": { - "d": 22, - "dB": "2019-01-25T19:45:00Z", - "t1s": 1, - "t2s": 2, - "t1": 9, - "t2": 12 - }, - "2765": { - "d": 4, - "dB": "2018-08-31T18:45:00Z", - "t1s": 0, - "t2s": 1, - "t1": 18, - "t2": 19 - }, - "2787": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 15, - "t2": 19 - }, - "2847": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 42 - }, - "2858": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 67, - "t2": 19 - }, - "2868": { - "d": 14, - "dB": "2018-11-25T16:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 12 - }, - "2874": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 19 - }, - "2889": { - "d": 16, - "dB": "2018-12-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 19, - "t2": 16 - }, - "2761": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 10, - "t2": 67 - }, - "2764": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 14, - "t2": 10 - }, - "2781": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 13 - }, - "2782": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 16, - "t2": 10 - }, - "2809": { - "d": 8, - "dB": "2018-09-30T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 10 - }, - "2821": { - "d": 9, - "dB": "2018-10-05T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 19 - }, - "2841": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 10, - "t2": 15 - }, - "2851": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 10 - }, - "2861": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 10, - "t2": 42 - }, - "2901": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 18 - }, - "2914": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 12, - "t2": 10 - }, - "2931": { - "d": 20, - "dB": "2019-01-13T16:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 10, - "t2": 41 - }, - "2937": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 67, - "t2": 10 - }, - "2951": { - "d": 22, - "dB": "2019-01-27T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 10, - "t2": 16 - }, - "1034": { - "d": 27, - "dB": "2018-02-24T16:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 10, - "t2": 13 - }, - "1042": { - "d": 28, - "dB": "2018-03-02T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 19, - "t2": 12 - }, - "2734": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 12, - "t2": 20 - }, - "2746": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 13, - "t2": 12 - }, - "2754": { - "d": 3, - "dB": "2018-08-26T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 12, - "t2": 14 - }, - "2762": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 12 - }, - "2772": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 42, - "t2": 12 - }, - "2855": { - "d": 13, - "dB": "2018-11-09T19:45:00Z", - "t1s": 0, - "t2s": 0, - "t1": 12, - "t2": 41 - }, - "2935": { - "d": 21, - "dB": "2019-01-18T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 42 - }, - "2875": { - "d": 15, - "dB": "2018-12-01T16:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 12, - "t2": 18 - }, - "2887": { - "d": 16, - "dB": "2018-12-04T20:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 15, - "t2": 12 - }, - "2910": { - "d": 18, - "dB": "2018-12-16T14:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 12 - }, - "2786": { - "d": 6, - "dB": "2018-09-21T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 67 - }, - "2797": { - "d": 7, - "dB": "2018-09-25T17:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 13, - "t2": 16 - }, - "2818": { - "d": 9, - "dB": "2018-10-07T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 13, - "t2": 20 - }, - "2831": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 41, - "t2": 13 - }, - "2849": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 13 - }, - "2877": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 13, - "t2": 15 - }, - "2882": { - "d": 16, - "dB": "2018-12-04T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 42, - "t2": 13 - }, - "2895": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 19 - }, - "2906": { - "d": 18, - "dB": "2018-12-16T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 18, - "t2": 13 - }, - "2915": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 13, - "t2": 14 - }, - "2936": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 1, - "t2s": 5, - "t1": 13, - "t2": 41 - }, - "3265": { - "d": 10, - "dB": "2018-10-28T13:30:00Z", - "t1s": 0, - "t2s": 4, - "t1": 23, - "t2": 25 - }, - "3276": { - "d": 11, - "dB": "2018-11-04T16:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 25, - "t2": 26 - }, - "3285": { - "d": 12, - "dB": "2018-11-11T14:15:00Z", - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 22 - }, - "3314": { - "d": 15, - "dB": "2018-12-05T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 69, - "t2": 25 - }, - "3341": { - "d": 18, - "dB": "2018-12-22T15:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 25, - "t2": 29 - }, - "3371": { - "d": 21, - "dB": "2019-01-02T19:45:00Z", - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 35 - }, - "2835": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 41 - }, - "2893": { - "d": 17, - "dB": "2018-12-08T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 14, - "t2": 42 - }, - "2905": { - "d": 18, - "dB": "2019-01-16T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 14, - "t2": 20 - }, - "2799": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 67, - "t2": 14 - }, - "2802": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 16, - "t2": 14 - }, - "2815": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 15 - }, - "2854": { - "d": 13, - "dB": "2018-11-10T16:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 14, - "t2": 18 - }, - "2944": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 14, - "t2": 68 - }, - "2735": { - "d": 1, - "dB": "2018-08-12T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 42 - }, - "2742": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 42, - "t2": 15 - }, - "2752": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 42, - "t2": 68 - }, - "2768": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 68, - "t2": 15 - }, - "2777": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 41 - }, - "2806": { - "d": 8, - "dB": "2018-09-30T15:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 15, - "t2": 67 - }, - "2852": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 15 - }, - "2866": { - "d": 14, - "dB": "2018-11-25T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 15, - "t2": 20 - }, - "2916": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 18 - }, - "2940": { - "d": 21, - "dB": "2019-01-20T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 20, - "t2": 15 - }, - "2732": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 3, - "t2s": 4, - "t1": 16, - "t2": 67 - }, - "2749": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 20, - "t2": 16 - }, - "2813": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 16, - "t2": 41 - }, - "2902": { - "d": 18, - "dB": "2019-01-08T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 16 - }, - "2930": { - "d": 20, - "dB": "2019-01-23T18:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 67, - "t2": 16 - }, - "2833": { - "d": 11, - "dB": "2018-10-27T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 18 - }, - "2755": { - "d": 3, - "dB": "2018-08-24T20:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 41 - }, - "2886": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 18, - "t2": 20 - }, - "2926": { - "d": 20, - "dB": "2019-01-11T19:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 68 - }, - "2942": { - "d": 22, - "dB": "2019-01-27T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 42, - "t2": 18 - }, - "2748": { - "d": 2, - "dB": "2018-08-17T18:45:00Z", - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 18 - }, - "2824": { - "d": 10, - "dB": "2018-10-19T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 67 - }, - "2779": { - "d": 5, - "dB": "2018-09-14T17:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 19, - "t2": 20 - }, - "2921": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 41, - "t2": 19 - }, - "2939": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 19 - }, - "2948": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 67 - }, - "1035": { - "d": 28, - "dB": "2018-03-03T19:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 42, - "t2": 20 - }, - "2792": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 20 - }, - "2879": { - "d": 15, - "dB": "2018-12-02T16:00:00Z", - "t1s": 1, - "t2s": 4, - "t1": 20, - "t2": 41 - }, - "2919": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 20, - "t2": 67 - }, - "2871": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 41, - "t2": 67 - }, - "2791": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 41, - "t2": 42 - }, - "2878": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 67, - "t2": 42 - } - }, - "Ne": { - "2956": { - "d": 23, - "dB": "2019-02-03T20:00:00Z", - "t1": 18, - "t2": 2 - }, - "2953": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1": 3, - "t2": 14 - }, - "2961": { - "d": 23, - "dB": "2019-02-03T16:00:00Z", - "t1": 4, - "t2": 41 - }, - "2962": { - "d": 24, - "dB": "2019-02-09T21:00:00Z", - "t1": 42, - "t2": 5 - }, - "2952": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1": 16, - "t2": 7 - }, - "2966": { - "d": 24, - "dB": "2019-02-09T21:00:00Z", - "t1": 8, - "t2": 67 - }, - "2959": { - "d": 23, - "dB": "2019-02-02T20:00:00Z", - "t1": 68, - "t2": 9 - }, - "2957": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1": 13, - "t2": 10 - }, - "2955": { - "d": 23, - "dB": "2019-02-01T19:45:00Z", - "t1": 12, - "t2": 19 - }, - "2958": { - "d": 23, - "dB": "2019-02-03T14:00:00Z", - "t1": 67, - "t2": 15 - }, - "2960": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1": 20, - "t2": 42 - } - }, - "k": "222295" -} diff --git a/src/test/resources/__files/mpgstats.ligue-1.20190211.json b/src/test/resources/__files/mpgstats.ligue-1.20190211.json deleted file mode 100644 index 88e1e30..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20190211.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-02-11T14:58:49Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38,"cD":{"cN":"CurrentDay","d":24,"lD":24}},"lS":{"cN":"Ligue-1-2017-2018","i":3,"n":"Ligue 1 2017-2018","mD":38}},"mxD":24,"np":709,"le":{"1":"Ligue-1","2":"Premier-League","3":"Liga"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":46,"s":{"g":"17","s":"99","n":"16","a":"6.19","d":"1.39","Sg":"7","Ss":"37","Sn":"6","Sa":"6.25","Sd":"1.75","Og":"24","Os":"151","On":"25","Oa":"6.04","Od":"1.46","Ap":"24","p":{"32":{"n":3,"s":1},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":7.5,"g":2},"9":{"n":5},"10":{"n":5},"13":{"n":8.5,"g":3},"14":{"n":6,"g":1},"16":{"n":5,"g":1},"19":{"n":4.5},"20":{"n":7,"g":1},"21":{"n":9,"g":3},"22":{"n":7.5,"g":2},"23":{"n":4},"24":{"n":5.5,"g":1}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":28,"s":{"s":"107","n":"18","a":"5.97","d":"0.56","Ss":"36","Sn":"6","Sa":"6","Sd":"0.76","Og":"1","Os":"160","On":"27","Oa":"5.94","Od":"0.79","Dp":"26","p":{"32":{"n":5,"s":1},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":5},"5":{"n":6},"7":{"n":6},"8":{"n":6},"9":{"n":6},"12":{"n":7},"13":{"n":6},"14":{"n":6},"15":{"n":5.5},"19":{"n":6.5},"20":{"n":6},"21":{"n":6},"22":{"n":7},"23":{"n":4.5},"24":{"n":6}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":33,"s":{"g":"5","s":"115","n":"20","a":"5.78","d":"1.03","Og":"10","Os":"187","On":"32","Oa":"5.86","Od":"1.08","Mp":"12","Ap":"19","p":{"32":{"n":6},"1":{"n":6},"2":{"n":7},"3":{"n":6},"4":{"n":6.5,"g":1},"5":{"n":7,"g":1},"6":{"n":6.5,"g":1},"7":{"n":4,"s":1},"8":{"n":5},"9":{"n":7},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":4,"s":1},"14":{"n":4.5},"15":{"n":4.5},"19":{"n":5},"20":{"n":5},"21":{"n":6.5},"22":{"n":7,"g":1},"23":{"n":6,"g":1}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":25,"s":{"g":"3","s":"112","n":"19","a":"5.89","d":"1.06","Og":"5","Os":"175","On":"30","Oa":"5.83","Od":"1.03","Mp":"22","Ap":"4","p":{"1":{"n":5.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":7.5,"g":1},"11":{"n":6.5,"g":1},"12":{"n":7},"13":{"n":6},"14":{"n":4},"15":{"n":6},"16":{"n":5.5},"19":{"n":5},"20":{"n":8},"21":{"n":7,"s":1},"22":{"n":6.5},"23":{"n":6}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":15,"s":{"s":"83","n":"15","a":"5.53","d":"0.94","Ss":"5","Sn":"1","Sa":"5","Os":"109","On":"19","Oa":"5.74","Od":"1.06","Mp":"18","p":{"5":{"n":7},"6":{"n":5.5},"7":{"n":6},"8":{"n":5.5,"s":1},"9":{"n":7},"10":{"n":4},"11":{"n":6.5},"12":{"n":7},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4.5},"19":{"n":5},"20":{"n":5.5},"21":{"n":5},"24":{"n":5}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":50,"s":{"g":"18","s":"116","n":"17","a":"6.82","d":"1.1","Sg":"6","Ss":"40","Sn":"6","Sa":"6.75","Sd":"1.41","Og":"22","Os":"169","On":"27","Oa":"6.26","Od":"1.53","Mp":"3","Ap":"23","p":{"32":{"n":4},"2":{"n":7.5,"g":2,"s":1},"3":{"n":7,"g":1},"4":{"n":7,"g":1},"8":{"n":7},"9":{"n":9,"g":4},"10":{"n":7,"g":1},"11":{"n":6.5,"g":1,"s":1},"12":{"n":7,"g":1},"13":{"n":6},"15":{"n":6,"g":1},"16":{"n":5.5,"s":1},"19":{"n":6,"g":1},"20":{"n":7,"g":1},"21":{"n":9,"g":3},"22":{"n":8,"g":1},"23":{"n":5.5},"24":{"n":5,"s":1}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":29,"s":{"g":"2","s":"110","n":"18","a":"6.11","d":"0.81","Og":"2","Os":"154","On":"26","Oa":"5.92","Od":"0.78","Mp":"8","Dp":"18","p":{"32":{"n":5},"1":{"n":6},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":6},"9":{"n":8},"10":{"n":7,"g":1},"11":{"n":7},"12":{"n":5},"14":{"n":5.5},"15":{"n":5.5},"19":{"n":6.5},"20":{"n":7,"g":1},"21":{"n":6},"22":{"n":6},"23":{"n":6.5}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":18,"s":{"g":"3","s":"96","n":"16","a":"6","d":"0.73","Ss":"5","Sn":"1","Sa":"5.5","Og":"4","Os":"152","On":"26","Oa":"5.85","Od":"0.83","Mp":"5","Dp":"17","p":{"32":{"n":5},"2":{"n":5},"3":{"n":6.5},"4":{"n":6},"5":{"n":6},"6":{"n":7.5,"g":1},"7":{"n":7,"g":1,"s":1},"9":{"n":7},"11":{"n":6},"12":{"n":5},"14":{"n":6},"16":{"n":5},"19":{"n":5.5},"20":{"n":6},"21":{"n":6.5,"g":1,"s":1},"22":{"n":5.5,"s":1},"24":{"n":5.5}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":8,"s":{"s":"15","n":"3","a":"5","d":"0.41","Os":"56","On":"11","Oa":"5.09","Od":"1.02","Dp":"10","p":{"32":{"n":4},"20":{"n":5.5,"s":1},"21":{"n":4.5,"s":1},"22":{"n":5,"s":1}}},"c":2},{"i":100,"n":"Areola","f":"Alphonse","p":"G","r":21,"s":{"s":"65","n":"11","a":"5.91","d":"0.51","Os":"135","On":"23","Oa":"5.87","Od":"1.03","Gp":"23","p":{"32":{"n":7},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":6},"8":{"n":5.5},"10":{"n":6},"11":{"n":6},"13":{"n":6},"15":{"n":5},"16":{"n":5.5},"20":{"n":6},"23":{"n":7}}},"c":2},{"i":121,"n":"Rabiot","f":"Adrien","p":"M","r":8,"s":{"g":"2","ao":"1","s":"87","n":"14","a":"6.21","d":"1.01","Og":"2","Oao":"1","Os":"155","On":"26","Oa":"5.96","Od":"1.02","Mp":"22","Ap":"1","p":{"32":{"n":6},"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":7.5},"4":{"n":5},"5":{"n":6},"6":{"n":4.5,"a":1},"7":{"n":6},"8":{"n":7},"10":{"n":7.5,"g":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":7},"14":{"n":7},"16":{"n":7}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":10,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2"},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":14,"s":{"s":"72","n":"13","a":"5.54","d":"0.97","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.85","Os":"137","On":"25","Oa":"5.48","Od":"0.96","Dp":"25","p":{"32":{"n":3},"3":{"n":6},"4":{"n":7},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":3.5},"13":{"n":6},"14":{"n":5},"16":{"n":5.5},"19":{"n":7},"22":{"n":5.5},"23":{"n":4},"24":{"n":6}}},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":5,"s":{"g":"1","s":"75","n":"14","a":"5.39","d":"0.71","Ss":"5","Sn":"1","Sa":"5.5","Og":"5","Os":"129","On":"24","Oa":"5.4","Od":"0.95","Mp":"15","Dp":"1","Ap":"5","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6.5,"g":1},"10":{"n":6},"13":{"n":6},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"24":{"n":5.5}}},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":20,"s":{"g":"13","s":"88","n":"13","a":"6.77","d":"1.12","Og":"14","Os":"109","On":"16","Oa":"6.81","Od":"1.07","Mp":"4","Ap":"12","p":{"1":{"n":6,"g":1},"2":{"n":7.5,"g":1},"3":{"n":6,"g":1},"4":{"n":7,"g":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7.5,"g":2},"9":{"n":8,"g":1},"11":{"n":4},"12":{"n":7,"g":1},"13":{"n":7.5,"g":1},"15":{"n":6,"g":1},"21":{"n":8.5,"g":2}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":17,"s":{"s":"51","n":"9","a":"5.67","d":"1.08","Ss":"35","Sn":"6","Sa":"5.92","Sd":"1.24","Og":"1","Os":"104","On":"18","Oa":"5.78","Od":"1.04","Mp":"6","Dp":"11","p":{"14":{"n":5.5,"s":1},"15":{"n":5},"16":{"n":5,"s":1},"19":{"n":5,"s":1},"20":{"n":6.5},"21":{"n":8},"22":{"n":6},"23":{"n":4},"24":{"n":6}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":8,"s":{"g":"1","s":"56","n":"12","a":"4.67","d":"0.51","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Og":"2","Os":"80","On":"17","Oa":"4.71","Od":"0.69","Mp":"4","Ap":"12","p":{"6":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"11":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5},"19":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"22":{"n":4.5,"s":1},"23":{"n":4.5,"s":1},"24":{"n":4}}},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":5,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":2},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":6,"s":{"s":"50","n":"10","a":"5.05","d":"0.52","Ss":"5","Sn":"1","Sa":"5","Os":"50","On":"10","Oa":"5.05","Od":"0.52","Mp":"3","Dp":"7","p":{"1":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5.5},"11":{"n":6},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5},"16":{"n":4},"24":{"n":5}}},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":3,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Os":"63","On":"12","Oa":"5.29","Od":"0.72","Mp":"11","p":{"32":{"n":5},"1":{"n":5},"5":{"n":4},"10":{"n":5.5,"s":1}}},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":2,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":2},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":6,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Og":"1","Os":"14","On":"3","Oa":"4.67","Od":"0.94","Ap":"3","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":4}}},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":6,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Ss":"5","Sn":"1","Sa":"5","Os":"19","On":"4","Oa":"4.88","Od":"0.22","Dp":"4","p":{"1":{"n":5},"2":{"n":4.5},"7":{"n":5},"24":{"n":5,"s":1}}},"c":2},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":2},{"i":2661,"n":"Buffon","f":"Gianluigi","p":"G","r":19,"s":{"s":"61","n":"11","a":"5.59","d":"0.63","Ss":"6","Sn":"1","Sa":"6","Os":"61","On":"11","Oa":"5.59","Od":"0.63","Gp":"11","p":{"1":{"n":6},"2":{"n":5},"6":{"n":6},"7":{"n":5},"9":{"n":7},"12":{"n":5},"14":{"n":6},"19":{"n":5.5},"21":{"n":5},"22":{"n":5},"24":{"n":6}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":7,"s":{"g":"2","s":"73","n":"14","a":"5.25","d":"1.05","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Og":"2","Os":"73","On":"14","Oa":"5.25","Od":"1.05","Mp":"6","Ap":"8","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":7,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":8},"14":{"n":5},"16":{"n":5},"20":{"n":5,"s":1},"23":{"n":4.5,"s":1},"24":{"n":4}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":1,"s":{"n":0},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":15,"s":{"s":"85","n":"16","a":"5.31","d":"0.83","Os":"85","On":"16","Oa":"5.31","Od":"0.83","Dp":"16","p":{"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":6,"s":1},"10":{"n":6.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5},"15":{"n":4},"16":{"n":5},"19":{"n":5,"s":1},"21":{"n":6},"22":{"n":5},"23":{"n":5.5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":14,"s":{"s":"68","n":"13","a":"5.27","d":"0.8","Os":"68","On":"13","Oa":"5.27","Od":"0.8","Mp":"4","Dp":"9","p":{"5":{"n":6},"6":{"n":5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"15":{"n":5},"19":{"n":5},"20":{"n":5.5},"21":{"n":7},"22":{"n":4},"23":{"n":4.5}}},"c":2},{"i":3367,"n":"Paredes","f":"Leandro","p":"M","r":13,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"24":{"n":5.5,"s":1}}},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":9,"s":{"s":"72","n":"14","a":"5.18","d":"0.55","Os":"129","On":"25","Oa":"5.18","Od":"0.63","Mp":"23","p":{"37":{"n":5},"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":6},"14":{"n":5.5},"15":{"n":5.5},"17":{"n":5,"s":1},"18":{"n":5.5},"20":{"n":5},"21":{"n":5}}},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":21,"s":{"s":"132","n":"23","a":"5.76","d":"0.98","Ss":"6","Sn":"1","Sa":"6","Os":"204","On":"37","Oa":"5.53","Od":"1.03","Gp":"37","p":{"37":{"n":4},"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":8},"8":{"n":5.5},"9":{"n":6},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6.5},"15":{"n":4},"16":{"n":5},"17":{"n":8},"18":{"n":7},"19":{"n":6},"20":{"n":6},"21":{"n":6},"22":{"n":5.5},"24":{"n":6}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":11,"s":{"g":"4","s":"98","n":"21","a":"4.69","d":"1.01","Ss":"4","Sn":"1","Sa":"4","Og":"9","Os":"163","On":"34","Oa":"4.81","Od":"1.11","Mp":"5","Ap":"29","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":7,"g":2},"7":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":5,"s":1},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":6,"g":1},"16":{"n":7,"g":1},"17":{"n":5.5},"18":{"n":4.5},"19":{"n":5},"20":{"n":5},"21":{"n":4.5},"22":{"n":4,"s":1},"24":{"n":4}}},"c":3},{"i":63,"n":"Prior","f":"Jerome","p":"G","r":5,"s":{"n":0},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":17,"s":{"g":"8","s":"117","n":"22","a":"5.34","d":"1.16","Ss":"5","Sn":"1","Sa":"5","Og":"14","Os":"190","On":"36","Oa":"5.29","Od":"1.25","Mp":"8","Ap":"23","p":{"37":{"n":4},"1":{"n":5},"2":{"n":5,"g":1},"3":{"n":7.5,"g":2},"4":{"n":4.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"9":{"n":8,"g":2},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":6.5,"g":1},"18":{"n":5.5,"s":1},"19":{"n":4},"20":{"n":5,"s":1},"21":{"n":4.5},"22":{"n":5},"24":{"n":5}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":14,"s":{"s":"90","n":"18","a":"5.03","d":"0.59","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"138","On":"27","Oa":"5.13","Od":"0.69","Mp":"23","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":6,"s":1},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":4},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5,"s":1},"18":{"n":5},"19":{"n":5.5},"22":{"n":5,"s":1},"24":{"n":5}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":9,"s":{"s":"55","n":"11","a":"5.05","d":"0.54","Ss":"5","Sn":"1","Sa":"5","Os":"132","On":"25","Oa":"5.3","Od":"0.85","Dp":"25","p":{"37":{"n":4},"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5},"20":{"n":4.5},"21":{"n":5},"24":{"n":5}}},"c":3},{"i":116,"n":"Karamoh","f":"Yann","p":"A","r":10,"s":{"g":"3","s":"75","n":"15","a":"5.03","d":"0.92","Og":"3","Os":"75","On":"15","Oa":"5.03","Od":"0.92","Mp":"3","Ap":"12","p":{"6":{"n":6.5,"g":1,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":5.5},"14":{"n":5},"15":{"n":5},"16":{"n":5},"17":{"n":6.5,"g":1,"s":1},"19":{"n":4.5,"s":1},"20":{"n":4},"21":{"n":4},"22":{"n":4}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":8,"s":{"s":"34","n":"6","a":"5.67","d":"1.03","Ss":"5","Sn":"1","Sa":"5.5","Os":"34","On":"6","Oa":"5.67","Od":"1.03","Dp":"6","p":{"9":{"n":7.5},"17":{"n":6},"20":{"n":4.5},"21":{"n":6},"22":{"n":4.5},"24":{"n":5.5,"s":1}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":5,"s":{"s":"23","n":"5","a":"4.6","d":"0.73","Os":"32","On":"7","Oa":"4.57","Od":"0.68","Dp":"5","p":{"1":{"n":4},"2":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4},"19":{"n":6,"s":1}}},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":5,"s":{"g":"1","s":"56","n":"12","a":"4.71","d":"0.8","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"102","On":"22","Oa":"4.66","Od":"0.86","Mp":"2","Ap":"15","p":{"37":{"n":6,"s":1},"2":{"n":3},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"16":{"n":6,"s":1},"17":{"n":5},"18":{"n":5,"s":1},"24":{"n":4}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"1":{"n":3.5}}},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":10,"s":{"s":"90","n":"18","a":"5","d":"0.75","Os":"153","On":"30","Oa":"5.1","Od":"0.83","Dp":"30","p":{"37":{"n":4},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":6},"8":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":6,"s":1},"16":{"n":4.5},"17":{"n":6.5},"18":{"n":5},"19":{"n":5},"20":{"n":4.5},"21":{"n":5.5},"22":{"n":5}}},"c":3},{"i":1075,"n":"Maja","f":"Josh","p":"A","r":3,"s":{"n":0},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":8,"s":{"n":0,"Os":"4","On":"1","Oa":"4"},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":10,"s":{"s":"100","n":"18","a":"5.58","d":"0.67","Ss":"6","Sn":"1","Sa":"6","Os":"120","On":"22","Oa":"5.48","Od":"0.71","Mp":"21","p":{"37":{"n":4,"s":1},"6":{"n":5.5},"7":{"n":7},"8":{"n":6},"9":{"n":7},"10":{"n":5},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":6},"18":{"n":4.5},"19":{"n":5},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":5},"24":{"n":6}}},"c":3},{"i":1203,"n":"Lerager","f":"Lukas","p":"M","r":12,"s":{"s":"91","n":"18","a":"5.06","d":"0.64","Og":"2","Os":"166","On":"32","Oa":"5.19","Od":"0.78","Mp":"32","p":{"37":{"n":7,"g":1},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":5},"13":{"n":5},"14":{"n":4.5,"s":1},"16":{"n":5},"17":{"n":6},"19":{"n":5.5},"20":{"n":4.5,"s":1},"22":{"n":5}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0},"c":3},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":3,"s":{"s":"19","n":"4","a":"4.75","d":"0.43","Os":"23","On":"5","Oa":"4.6","Od":"0.49","Mp":"2","Ap":"2","p":{"1":{"n":4},"8":{"n":5},"9":{"n":5,"s":1},"16":{"n":5}}},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0},"c":3},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":3},{"i":2149,"n":"Kound\u00e9","f":"Jules","p":"D","r":15,"s":{"s":"118","n":"23","a":"5.13","d":"0.77","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"187","On":"36","Oa":"5.19","Od":"0.79","Dp":"35","p":{"37":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":5},"16":{"n":5},"17":{"n":5},"18":{"n":5.5},"19":{"n":4.5},"20":{"n":5.5},"21":{"n":6},"22":{"n":4.5},"24":{"n":6}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":10,"s":{"g":"1","s":"90","n":"16","a":"5.66","d":"0.96","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"158","On":"28","Oa":"5.66","Od":"0.95","Dp":"28","p":{"37":{"n":5},"1":{"n":4},"3":{"n":6},"4":{"n":4},"6":{"n":5.5},"7":{"n":7},"8":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":5},"16":{"n":8,"g":1},"18":{"n":6},"19":{"n":5},"24":{"n":6}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":7,"s":{"s":"34","n":"7","a":"4.93","d":"0.56","Ss":"4","Sn":"1","Sa":"4.5","Os":"34","On":"7","Oa":"4.93","Od":"0.56","Mp":"7","p":{"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"13":{"n":4.5},"24":{"n":4.5,"s":1}}},"c":3},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":8,"s":{"s":"90","n":"18","a":"5.03","d":"0.74","Ss":"5","Sn":"1","Sa":"5.5","Os":"90","On":"18","Oa":"5.03","Od":"0.74","Dp":"18","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":5.5},"9":{"n":6.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5},"15":{"n":4},"17":{"n":4.5},"18":{"n":5},"19":{"n":6},"21":{"n":5,"s":1},"22":{"n":4.5},"24":{"n":5.5}}},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassin","p":"M","r":1,"s":{"n":0},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":13,"s":{"g":"3","s":"88","n":"17","a":"5.18","d":"0.82","Og":"3","Os":"88","On":"17","Oa":"5.18","Od":"0.82","Mp":"7","Ap":"10","p":{"2":{"n":5.5},"3":{"n":5},"4":{"n":5},"5":{"n":6.5,"g":1},"6":{"n":5},"7":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5},"13":{"n":4.5},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"17":{"n":6,"g":1},"18":{"n":3.5},"19":{"n":7,"g":1},"20":{"n":4.5},"21":{"n":6}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":7,"s":{"s":"44","n":"9","a":"4.89","d":"0.39","Ss":"4","Sn":"1","Sa":"4.5","Os":"44","On":"9","Oa":"4.89","Od":"0.39","Mp":"9","p":{"1":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"10":{"n":5.5,"s":1},"17":{"n":5,"s":1},"18":{"n":5,"s":1},"20":{"n":4.5},"21":{"n":5,"s":1},"22":{"n":4.5},"24":{"n":4.5}}},"c":3},{"i":2863,"n":"Cornelius","f":"Andreas","p":"A","r":14,"s":{"g":"3","s":"86","n":"18","a":"4.81","d":"0.82","Ss":"4","Sn":"1","Sa":"4","Og":"3","Os":"86","On":"18","Oa":"4.81","Od":"0.82","Ap":"18","p":{"5":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":6.5,"g":1,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5},"18":{"n":4.5},"19":{"n":4,"s":1},"20":{"n":4.5,"s":1},"21":{"n":6,"g":1,"s":1},"22":{"n":4},"24":{"n":4,"s":1}}},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":13,"s":{"g":"2","s":"75","n":"15","a":"5.03","d":"0.74","Ss":"3","Sn":"1","Sa":"3.5","Og":"6","Os":"151","On":"29","Oa":"5.22","Od":"0.96","Mp":"19","Ap":"7","p":{"32":{"n":5},"1":{"n":5.5},"2":{"n":5},"5":{"n":5,"s":1},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"12":{"n":7,"g":1,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":5},"17":{"n":4.5,"s":1},"20":{"n":5,"s":1},"21":{"n":6,"g":1},"22":{"n":5},"24":{"n":3.5}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":23,"s":{"s":"129","n":"23","a":"5.61","d":"1.09","Ss":"5","Sn":"1","Sa":"5","Os":"208","On":"37","Oa":"5.62","Od":"1.05","Gp":"37","p":{"32":{"n":5},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6},"8":{"n":7.5},"9":{"n":3},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":3.5},"17":{"n":6},"18":{"n":7},"19":{"n":6},"20":{"n":6.5},"21":{"n":7},"22":{"n":5},"24":{"n":5}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":22,"s":{"g":"4","s":"110","n":"20","a":"5.53","d":"1.12","Ss":"3","Sn":"1","Sa":"3.5","Og":"9","Os":"178","On":"32","Oa":"5.58","Od":"1.2","Mp":"25","Ap":"7","p":{"32":{"n":7,"g":1},"2":{"n":7},"3":{"n":4.5},"4":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":6,"g":1},"10":{"n":3.5},"11":{"n":7,"g":1},"12":{"n":7},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":4},"19":{"n":6.5},"20":{"n":5},"21":{"n":4},"22":{"n":6,"g":1},"24":{"n":3.5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":15,"s":{"s":"99","n":"19","a":"5.21","d":"1.13","Ss":"3","Sn":"1","Sa":"3","Os":"159","On":"30","Oa":"5.3","Od":"1.02","Dp":"30","p":{"32":{"n":5},"1":{"n":6},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":3},"6":{"n":5.5},"8":{"n":6.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":6},"13":{"n":5.5},"17":{"n":6},"18":{"n":6},"19":{"n":7},"20":{"n":6},"21":{"n":4},"22":{"n":5.5},"24":{"n":3}}},"c":4},{"i":69,"n":"Salibur","f":"Yannis","p":"M","r":10,"s":{"g":"1","s":"94","n":"19","a":"4.95","d":"0.84","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"120","On":"24","Oa":"5","Od":"0.88","Mp":"10","Ap":"12","p":{"2":{"n":4.5,"e":2745,"c":14,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6.5,"g":1,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":6},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":7,"s":1},"16":{"n":5},"17":{"n":4.5,"s":1},"18":{"n":4.5},"20":{"n":4.5,"s":1},"22":{"n":4,"s":1},"24":{"n":4.5,"s":1}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":10,"s":{"g":"1","s":"97","n":"21","a":"4.64","d":"0.82","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"157","On":"34","Oa":"4.63","Od":"0.83","Mp":"24","Ap":"7","p":{"32":{"n":5},"1":{"n":5},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":4.5,"s":1},"5":{"n":4},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":5},"18":{"n":3},"19":{"n":7,"g":1},"20":{"n":5},"21":{"n":3.5},"22":{"n":5.5},"24":{"n":4}}},"c":4},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":4,"s":{"s":"15","n":"3","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"46","On":"9","Oa":"5.11","Od":"0.31","Mp":"5","p":{"2":{"n":5,"e":2751,"c":3,"s":1},"13":{"n":5,"e":2853,"c":3,"s":1},"24":{"n":5,"s":1}}},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":8,"s":{"s":"114","n":"20","a":"5.7","d":"0.89","Os":"190","On":"33","Oa":"5.76","Od":"0.84","Mp":"32","p":{"32":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":7,"s":1},"8":{"n":7.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":7},"14":{"n":5},"15":{"n":7},"16":{"n":5.5},"17":{"n":5.5},"18":{"n":6},"19":{"n":7},"20":{"n":5.5},"21":{"n":4.5}}},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":14,"s":{"g":"5","s":"115","n":"23","a":"5.02","d":"1.03","Ss":"4","Sn":"1","Sa":"4.5","Og":"5","Os":"115","On":"23","Oa":"5.02","Od":"1.03","Mp":"5","Ap":"18","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":5},"14":{"n":4},"15":{"n":4.5},"16":{"n":6,"g":1},"17":{"n":4},"18":{"n":7,"g":1},"19":{"n":5},"20":{"n":4.5},"21":{"n":5,"s":1},"22":{"n":4.5},"24":{"n":4.5}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":7,"s":{"g":"2","s":"46","n":"10","a":"4.6","d":"0.8","Ss":"5","Sn":"1","Sa":"5","Og":"8","Os":"99","On":"20","Oa":"4.95","Od":"1.07","Ap":"18","p":{"3":{"n":4,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"10":{"n":3.5},"14":{"n":4.5,"s":1},"15":{"n":6,"g":1,"s":1},"16":{"n":4.5,"s":1},"18":{"n":4},"19":{"n":6,"g":1,"s":1},"24":{"n":5,"s":1}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":7,"s":{"n":0},"c":4},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":11,"s":{"s":"77","n":"14","a":"5.5","d":"0.94","Ss":"4","Sn":"1","Sa":"4","Os":"125","On":"24","Oa":"5.21","Od":"1.02","Mp":"23","p":{"4":{"n":6,"e":2766,"c":13},"5":{"n":6,"e":2781,"c":13},"6":{"n":7,"e":2786,"c":13},"10":{"n":4.5,"e":2831,"c":13,"s":1},"11":{"n":4.5,"e":2838,"c":13},"12":{"n":5,"e":2849,"c":13},"13":{"n":4.5,"e":2857,"c":13},"14":{"n":7,"e":2863,"c":13},"15":{"n":4.5,"e":2877,"c":13},"16":{"n":6,"e":2882,"c":13},"17":{"n":6,"e":2895,"c":13},"19":{"n":6,"e":2915,"c":13},"20":{"n":6,"e":2927,"c":13},"24":{"n":4}}},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.94","p":{"32":{"n":4,"s":1}}},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":3,"s":{"n":0},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":9,"s":{"s":"30","n":"6","a":"5","Os":"30","On":"6","Oa":"5","Mp":"2","Dp":"4","p":{"16":{"n":5},"17":{"n":5,"s":1},"18":{"n":5},"19":{"n":5},"20":{"n":5,"s":1},"21":{"n":5,"s":1}}},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":6,"s":{"s":"58","n":"12","a":"4.88","d":"0.41","Os":"58","On":"12","Oa":"4.88","Od":"0.41","Mp":"12","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"8":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":4},"18":{"n":5,"s":1},"19":{"n":4.5,"s":1},"22":{"n":5,"s":1}}},"c":4},{"i":522,"n":"Rocha Santos","f":"Kenny","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"22":{"n":5,"s":1}}},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":43,"s":{"g":"12","s":"117","n":"20","a":"5.85","d":"1.32","Og":"15","Os":"176","On":"30","Oa":"5.87","Od":"1.18","Mp":"7","Ap":"23","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"8":{"n":8,"g":2},"9":{"n":4.5},"10":{"n":7,"g":1},"11":{"n":4},"12":{"n":5},"13":{"n":8,"g":1},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":6,"g":1},"17":{"n":8,"g":2},"19":{"n":7,"g":1},"20":{"n":6,"g":1},"21":{"n":5},"22":{"n":5}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":8,"s":{"g":"2","s":"67","n":"12","a":"5.58","d":"0.86","Ss":"5","Sn":"1","Sa":"5","Og":"5","Oao":"1","Os":"144","On":"26","Oa":"5.54","Od":"1.01","Mp":"1","Dp":"25","p":{"32":{"n":5,"a":1},"2":{"n":6.5},"3":{"n":5},"4":{"n":5},"6":{"n":5},"10":{"n":4.5},"11":{"n":6},"12":{"n":6,"g":1},"13":{"n":7.5,"g":1},"14":{"n":5},"15":{"n":6.5},"16":{"n":5},"24":{"n":5}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":8,"s":{"s":"35","n":"7","a":"5.07","d":"0.42","Os":"79","On":"16","Oa":"4.97","Od":"0.37","Mp":"10","Dp":"1","p":{"1":{"n":4.5,"s":1},"5":{"n":5.5,"s":1},"7":{"n":5.5},"10":{"n":5.5},"11":{"n":5,"s":1},"19":{"n":5,"s":1},"21":{"n":4.5,"s":1}}},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":13,"s":{"s":"82","n":"16","a":"5.16","d":"0.74","Ss":"4","Sn":"1","Sa":"4","Os":"142","On":"28","Oa":"5.09","Od":"0.78","Mp":"7","Dp":"21","p":{"32":{"n":5},"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":6},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":6.5},"17":{"n":5},"20":{"n":5},"21":{"n":6},"22":{"n":5},"24":{"n":4}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5,"s":1}}},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":17,"s":{"s":"116","n":"22","a":"5.3","d":"0.95","Os":"190","On":"35","Oa":"5.44","Od":"0.86","Mp":"35","p":{"32":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":7},"9":{"n":4},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":7},"16":{"n":4},"17":{"n":5.5},"18":{"n":4},"19":{"n":6},"20":{"n":6},"21":{"n":5.5},"22":{"n":3.5}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":9,"s":{"s":"95","n":"19","a":"5","d":"0.89","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"170","On":"33","Oa":"5.15","Od":"0.97","Dp":"33","p":{"32":{"n":5},"1":{"n":6.5},"2":{"n":3.5},"4":{"n":5},"5":{"n":4},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5},"17":{"n":5.5},"21":{"n":5},"22":{"n":5},"24":{"n":4}}},"c":4},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":1,"s":{"n":0},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":16,"s":{"g":"2","s":"119","n":"23","a":"5.2","d":"0.89","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"119","On":"23","Oa":"5.2","Od":"0.89","Dp":"23","p":{"1":{"n":6.5},"2":{"n":6,"s":1},"3":{"n":5.5},"4":{"n":6},"5":{"n":4},"6":{"n":6.5,"g":1},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":4},"17":{"n":5},"18":{"n":5.5},"19":{"n":5.5},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":5.5},"24":{"n":4}}},"c":4},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":2,"s":{"g":"1","s":"11","n":"2","a":"5.5","d":"0.5","Og":"1","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Ap":"2","p":{"2":{"n":6,"g":1,"s":1},"18":{"n":5,"s":1}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":7,"s":{"s":"34","n":"7","a":"4.86","d":"1.12","Os":"34","On":"7","Oa":"4.86","Od":"1.12","Dp":"7","p":{"7":{"n":4.5},"9":{"n":4},"10":{"n":3.5,"s":1},"16":{"n":4,"s":1},"18":{"n":5.5},"19":{"n":7},"20":{"n":5.5}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":1,"s":{"n":0},"c":4},{"i":2963,"n":"Honorat","f":"Franck","p":"A","r":2,"s":{"n":0},"c":4},{"i":2990,"n":"Tshibuabua","f":"Marvin","p":"D","r":1,"s":{"n":0},"c":4},{"i":2991,"n":"Abi","f":"Charles Nathan","p":"A","r":2,"s":{"n":0},"c":4},{"i":2992,"n":"Benkhedim","f":"Bilal","p":"M","r":1,"s":{"n":0},"c":4},{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":8,"s":{"g":"4","s":"87","n":"19","a":"4.58","d":"0.86","Ss":"4","Sn":"1","Sa":"4","Og":"6","Os":"131","On":"29","Oa":"4.52","Od":"0.85","Ap":"27","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1},"4":{"n":6.5,"g":1},"5":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":4},"15":{"n":4},"16":{"n":4},"18":{"n":5},"19":{"n":6,"g":1},"20":{"n":4},"21":{"n":4},"22":{"n":4},"24":{"n":4}}},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":8,"s":{"g":"2","s":"98","n":"19","a":"5.16","d":"0.81","Ss":"4","Sn":"1","Sa":"4","Og":"3","Os":"149","On":"30","Oa":"4.97","Od":"0.95","Mp":"30","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":6,"g":1},"17":{"n":5.5},"18":{"n":4.5},"24":{"n":4}}},"c":5},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":9,"s":{"ao":"1","s":"94","n":"20","a":"4.73","d":"0.7","Oao":"1","Os":"118","On":"25","Oa":"4.74","Od":"0.65","Dp":"24","p":{"1":{"n":4,"e":2733,"c":3,"s":1},"2":{"n":5.5},"3":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":6},"9":{"n":4.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":4},"18":{"n":4.5},"19":{"n":5},"20":{"n":3.5},"21":{"n":5},"22":{"n":4,"a":1}}},"c":5},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":13,"s":{"g":"3","s":"86","n":"19","a":"4.53","d":"1.03","Ss":"4","Sn":"1","Sa":"4","Og":"3","Os":"140","On":"32","Oa":"4.38","Od":"0.88","Mp":"11","Ap":"12","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":3.5},"7":{"n":4,"s":1},"8":{"n":7,"g":1},"9":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":3.5},"19":{"n":6,"g":1},"20":{"n":5.5,"g":1},"21":{"n":4},"22":{"n":3.5},"24":{"n":4}}},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":10,"s":{"g":"2","s":"77","n":"16","a":"4.84","d":"0.52","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"105","On":"23","Oa":"4.59","Od":"0.65","Mp":"8","Ap":"10","p":{"2":{"n":6,"g":1},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":6,"g":1,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"17":{"n":4.5},"20":{"n":5,"s":1},"21":{"n":4.5},"22":{"n":5.5},"24":{"n":4.5,"s":1}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":3,"s":{"s":"19","n":"4","a":"4.88","d":"0.54","Os":"70","On":"15","Oa":"4.7","Od":"0.63","Dp":"14","p":{"1":{"n":4},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5}}},"c":5},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":8,"s":{"s":"96","n":"19","a":"5.08","d":"0.98","Ss":"4","Sn":"1","Sa":"4.5","Os":"152","On":"31","Oa":"4.92","Od":"0.95","Dp":"31","p":{"1":{"n":3.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6},"16":{"n":4},"18":{"n":6},"20":{"n":3},"21":{"n":4.5},"22":{"n":4.5},"24":{"n":4.5}}},"c":5},{"i":344,"n":"Guilbert","f":"Frederic","p":"D","r":10,"s":{"s":"99","n":"20","a":"4.95","d":"0.97","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"162","On":"34","Oa":"4.76","Od":"1.06","Mp":"7","Dp":"26","Ap":"1","p":{"2":{"n":5},"3":{"n":5.5},"4":{"n":7},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"15":{"n":5.5},"16":{"n":4},"17":{"n":5},"18":{"n":6.5},"19":{"n":5},"20":{"n":4.5},"21":{"n":3},"24":{"n":4.5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":18,"s":{"s":"127","n":"23","a":"5.52","d":"0.88","Ss":"4","Sn":"1","Sa":"4.5","Os":"138","On":"25","Oa":"5.52","Od":"0.85","Gp":"25","p":{"1":{"n":3},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":7},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"14":{"n":5},"15":{"n":5.5},"16":{"n":6},"17":{"n":5},"18":{"n":5.5},"19":{"n":7},"20":{"n":5},"21":{"n":4.5},"22":{"n":6},"24":{"n":4.5}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":6,"s":{"s":"34","n":"7","a":"4.93","d":"0.42","Os":"34","On":"7","Oa":"4.93","Od":"0.42","Dp":"7","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"11":{"n":5},"19":{"n":5,"s":1}}},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":6,"s":{"s":"45","n":"9","a":"5.06","d":"0.44","Os":"106","On":"21","Oa":"5.07","Od":"0.47","Mp":"15","p":{"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5},"15":{"n":5,"s":1},"18":{"n":6,"s":1},"19":{"n":5},"21":{"n":4.5,"s":1}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":9,"s":{"s":"50","n":"10","a":"5","d":"0.74","Ss":"5","Sn":"1","Sa":"5","Os":"83","On":"17","Oa":"4.88","Od":"1.06","Mp":"10","Dp":"6","p":{"6":{"n":5,"s":1},"15":{"n":6.5},"16":{"n":4},"17":{"n":5},"18":{"n":6},"19":{"n":4.5},"20":{"n":5},"21":{"n":5},"22":{"n":4},"24":{"n":5}}},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":2,"s":{"n":0},"c":5},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":12,"s":{"g":"3","s":"70","n":"15","a":"4.7","d":"0.73","Ss":"4","Sn":"1","Sa":"4","Og":"3","Os":"111","On":"24","Oa":"4.65","Od":"0.71","Mp":"17","Ap":"1","p":{"5":{"n":4.5},"7":{"n":6,"g":1},"8":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1,"s":1},"18":{"n":6,"g":1},"19":{"n":4},"20":{"n":4.5},"22":{"n":4},"24":{"n":4}}},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"s":"33","n":"7","a":"4.79","d":"0.52","Os":"77","On":"17","Oa":"4.56","Od":"0.94","Mp":"15","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5,"s":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":5.5}}},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"15","On":"3","Oa":"5","Od":"0.82","Mp":"1"},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":7,"s":{"s":"53","n":"11","a":"4.86","d":"0.68","Ss":"5","Sn":"1","Sa":"5.5","Os":"61","On":"13","Oa":"4.73","Od":"0.8","Mp":"1","Dp":"12","p":{"1":{"n":3.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":5},"6":{"n":4},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5.5},"16":{"n":4.5},"22":{"n":5,"s":1},"24":{"n":5.5}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":5,"s":{"n":0,"Os":"73","On":"14","Oa":"5.21","Od":"0.94","Gp":"14"},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":2,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Mp":"1","Ap":"1"},"c":5},{"i":1621,"n":"Beauvue","f":"Claudio","p":"A","r":8,"s":{"g":"3","s":"86","n":"18","a":"4.78","d":"1","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"124","On":"28","Oa":"4.43","Od":"0.96","Mp":"9","Ap":"13","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":7,"g":1},"6":{"n":4},"7":{"n":4},"8":{"n":5},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":4},"12":{"n":4},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":6.5,"g":1},"16":{"n":5},"17":{"n":5},"18":{"n":5.5},"20":{"n":3.5},"22":{"n":4.5,"s":1},"24":{"n":5,"s":1}}},"c":5},{"i":1706,"n":"Fajr","f":"Faycal","p":"M","r":15,"s":{"g":"3","s":"119","n":"22","a":"5.41","d":"0.83","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"179","On":"34","Oa":"5.26","Od":"0.85","Mp":"33","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6.5},"6":{"n":6,"g":1},"7":{"n":6},"8":{"n":7},"9":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":5.5,"g":1},"18":{"n":7.5,"g":1},"19":{"n":4.5},"20":{"n":5},"21":{"n":5},"22":{"n":5},"24":{"n":4.5}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":6,"s":{"s":"40","n":"9","a":"4.5","d":"1","Og":"1","Os":"93","On":"20","Oa":"4.68","Od":"0.93","Mp":"11","Ap":"2","p":{"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":6},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":3.5},"14":{"n":5},"19":{"n":2.5}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":9,"s":{"s":"76","n":"16","a":"4.78","d":"0.85","Os":"80","On":"17","Oa":"4.74","Od":"0.84","Mp":"1","Dp":"16","p":{"1":{"n":4},"2":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":4},"10":{"n":5,"s":1},"12":{"n":6.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":5},"17":{"n":5},"18":{"n":5},"19":{"n":5},"20":{"n":3},"21":{"n":5},"22":{"n":3.5}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":8,"s":{"s":"4","n":"1","a":"4","Os":"31","On":"7","Oa":"4.43","Od":"0.49","Mp":"1","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":5},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":1,"s":{"n":0},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":9,"s":{"s":"87","n":"20","a":"4.38","d":"0.5","Os":"87","On":"20","Oa":"4.38","Od":"0.5","Mp":"2","Ap":"18","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":3.5},"18":{"n":4.5,"s":1},"19":{"n":4,"s":1},"20":{"n":4.5,"s":1},"21":{"n":4.5},"22":{"n":4.5,"s":1}}},"c":5},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":7,"s":{"s":"52","n":"11","a":"4.73","d":"0.58","Os":"52","On":"11","Oa":"4.73","Od":"0.58","Mp":"11","p":{"1":{"n":5,"e":2739,"c":68,"s":1},"5":{"n":5,"e":2778,"c":68,"s":1},"7":{"n":3,"e":2800,"c":68},"9":{"n":5,"e":2819,"c":68,"s":1},"10":{"n":5,"e":2829,"c":68},"11":{"n":4.5,"e":2840,"c":68,"s":1},"14":{"n":5,"e":2870,"c":68,"s":1},"15":{"n":5,"e":2876,"c":68,"s":1},"16":{"n":5,"e":2890,"c":68,"s":1},"17":{"n":4.5,"e":2894,"c":68},"18":{"n":5,"e":2911,"c":68,"s":1}}},"c":5},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":8,"s":{"s":"42","n":"9","a":"4.72","d":"0.82","Ss":"5","Sn":"1","Sa":"5.5","Os":"42","On":"9","Oa":"4.72","Od":"0.82","Mp":"1","Dp":"8","p":{"10":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":6},"16":{"n":3},"17":{"n":4},"21":{"n":5,"s":1},"22":{"n":4.5},"24":{"n":5.5}}},"c":5},{"i":2935,"n":"Zahary","f":"Younn","p":"D","r":1,"s":{"n":0},"c":5},{"i":2940,"n":"Joseph","f":"Evens","p":"M","r":8,"s":{"s":"24","n":"5","a":"4.9","d":"0.2","Ss":"5","Sn":"1","Sa":"5","Os":"24","On":"5","Oa":"4.9","Od":"0.2","Mp":"5","p":{"18":{"n":5,"s":1},"19":{"n":5,"s":1},"20":{"n":4.5,"s":1},"21":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":5},{"i":3230,"n":"Mouaddib","f":"Jad","p":"M","r":1,"s":{"n":0},"c":5},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":7,"s":{"s":"39","n":"8","a":"4.88","d":"0.33","Og":"1","Os":"70","On":"14","Oa":"5","Od":"0.53","Mp":"10","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1}}},"c":7},{"i":104,"n":"J\u00falio Tavares","f":"","p":"A","r":13,"s":{"g":"3","s":"95","n":"21","a":"4.55","d":"1.16","Ss":"26","Sn":"6","Sa":"4.42","Sd":"1.13","Og":"8","Os":"149","On":"32","Oa":"4.67","Od":"1.2","Ap":"31","p":{"1":{"n":6,"g":1},"2":{"n":8,"g":2},"3":{"n":5},"4":{"n":3.5},"5":{"n":3.5},"6":{"n":4},"7":{"n":4},"8":{"n":3},"11":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":5},"16":{"n":5},"17":{"n":4.5,"s":1},"19":{"n":3},"20":{"n":5},"21":{"n":4.5},"22":{"n":6.5},"23":{"n":4},"24":{"n":3.5}}},"c":7},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":14,"s":{"g":"3","s":"105","n":"20","a":"5.25","d":"0.8","Ss":"30","Sn":"6","Sa":"5","Sd":"0.96","Og":"3","Os":"127","On":"25","Oa":"5.08","Od":"0.87","Mp":"24","Dp":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":6},"3":{"n":6.5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":4},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":6,"g":1},"14":{"n":5.5},"15":{"n":6,"g":1},"16":{"n":5.5},"17":{"n":4.5},"19":{"n":4},"20":{"n":5},"21":{"n":4.5},"22":{"n":7},"23":{"n":4.5},"24":{"n":5}}},"c":7},{"i":165,"n":"Said","f":"Wesley","p":"A","r":13,"s":{"g":"2","s":"93","n":"20","a":"4.65","d":"0.69","Sg":"1","Ss":"30","Sn":"6","Sa":"5","Sd":"0.87","Og":"6","Os":"143","On":"29","Oa":"4.93","Od":"1.03","Mp":"6","Ap":"22","p":{"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5.5,"g":1},"6":{"n":4.5},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5},"19":{"n":4,"s":1},"20":{"n":6,"g":1},"21":{"n":6},"22":{"n":5.5},"23":{"n":4},"24":{"n":4.5}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":11,"s":{"g":"1","s":"63","n":"13","a":"4.85","d":"0.72","Sg":"1","Ss":"31","Sn":"6","Sa":"5.17","Sd":"0.69","Og":"1","Os":"108","On":"22","Oa":"4.91","Od":"0.76","Mp":"20","p":{"3":{"n":5,"s":1},"6":{"n":5.5},"8":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":3.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"19":{"n":4},"20":{"n":5},"21":{"n":5,"s":1},"22":{"n":6},"23":{"n":5},"24":{"n":6,"g":1}}},"c":7},{"i":187,"n":"Sammaritano","f":"Frederic","p":"M","r":5,"s":{"s":"40","n":"8","a":"5","d":"0.87","Os":"72","On":"15","Oa":"4.8","Od":"0.75","Mp":"11","Ap":"1","p":{"2":{"n":6.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5},"17":{"n":5,"s":1}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":13,"s":{"s":"40","n":"8","a":"5","d":"0.87","Ss":"27","Sn":"5","Sa":"5.4","Sd":"0.8","Os":"74","On":"15","Oa":"4.93","Od":"0.77","Mp":"6","Dp":"7","p":{"6":{"n":5},"13":{"n":4},"17":{"n":4},"20":{"n":5},"21":{"n":5},"22":{"n":7},"23":{"n":5},"24":{"n":5}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":9,"s":{"s":"84","n":"19","a":"4.42","d":"0.65","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"154","On":"33","Oa":"4.67","Od":"0.83","Mp":"31","Ap":"2","p":{"1":{"n":4.5},"3":{"n":6},"4":{"n":4},"5":{"n":4.5},"6":{"n":5},"7":{"n":3.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":4.5},"14":{"n":5.5},"15":{"n":4},"16":{"n":4.5},"17":{"n":4},"19":{"n":3.5},"20":{"n":5},"21":{"n":3.5},"23":{"n":5,"s":1},"24":{"n":4.5}}},"c":7},{"i":312,"n":"Sliti","f":"Naim","p":"M","r":13,"s":{"g":"1","s":"115","n":"23","a":"5","d":"0.97","Sg":"1","Ss":"29","Sn":"6","Sa":"4.92","Sd":"1.06","Og":"5","Os":"190","On":"37","Oa":"5.14","Od":"0.98","Mp":"24","Ap":"10","p":{"1":{"n":7},"2":{"n":5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":4.5},"10":{"n":5.5,"s":1},"11":{"n":5},"12":{"n":3},"13":{"n":5.5},"14":{"n":5},"15":{"n":7},"16":{"n":5},"17":{"n":5,"s":1},"19":{"n":3.5},"20":{"n":5,"s":1},"21":{"n":4.5},"22":{"n":7,"g":1},"23":{"n":4.5},"24":{"n":5,"s":1}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":7,"s":{"s":"42","n":"9","a":"4.67","d":"0.82","Ss":"5","Sn":"1","Sa":"5","Os":"74","On":"15","Oa":"4.93","Od":"1.06","Mp":"13","p":{"10":{"n":3.5},"11":{"n":5.5},"12":{"n":3.5},"13":{"n":4},"17":{"n":6},"19":{"n":4.5,"s":1},"20":{"n":5,"s":1},"22":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":7},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":6,"s":{"g":"1","s":"56","n":"12","a":"4.67","d":"0.77","Og":"1","Os":"86","On":"19","Oa":"4.53","Od":"0.77","Mp":"5","Ap":"8","p":{"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":4},"7":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"15":{"n":4},"16":{"n":6.5,"g":1},"17":{"n":3.5},"19":{"n":4}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":12,"s":{"s":"97","n":"21","a":"4.62","d":"0.95","Ss":"30","Sn":"6","Sa":"5","Sd":"0.65","Os":"129","On":"28","Oa":"4.61","Od":"0.94","Mp":"5","Dp":"21","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":3.5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":3},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4},"19":{"n":4.5},"20":{"n":5},"21":{"n":5.5},"22":{"n":6},"23":{"n":5},"24":{"n":4}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":12,"s":{"g":"2","s":"103","n":"21","a":"4.93","d":"1.2","Ss":"29","Sn":"6","Sa":"4.92","Sd":"0.61","Og":"2","Os":"162","On":"34","Oa":"4.78","Od":"1.31","Mp":"4","Dp":"29","p":{"1":{"n":5},"2":{"n":7},"3":{"n":7.5,"g":1},"4":{"n":3},"5":{"n":4},"6":{"n":5.5},"7":{"n":4},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":7.5,"g":1},"17":{"n":4},"19":{"n":4.5},"20":{"n":5},"21":{"n":5},"22":{"n":6},"23":{"n":5},"24":{"n":4}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":7,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Os":"24","On":"5","Oa":"4.8","Od":"0.4","Dp":"3","p":{"20":{"n":5,"s":1},"21":{"n":4,"s":1}}},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":16,"s":{"s":"48","n":"8","a":"6.06","d":"0.85","Ss":"35","Sn":"6","Sa":"5.83","Sd":"0.85","Os":"48","On":"8","Oa":"6.06","Od":"0.85","Gp":"8","p":{"16":{"n":7},"17":{"n":6.5},"19":{"n":4.5},"20":{"n":6},"21":{"n":6.5},"22":{"n":7},"23":{"n":5},"24":{"n":6}}},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":7,"s":{"s":"78","n":"17","a":"4.59","d":"1.3","Oao":"2","Os":"140","On":"31","Oa":"4.52","Od":"1.37","Mp":"8","Dp":"22","p":{"1":{"n":4.5},"2":{"n":7.5},"3":{"n":7},"4":{"n":3},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":2.5},"13":{"n":4},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":3.5}}},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":13,"s":{"g":"1","s":"28","n":"6","a":"4.75","d":"1.11","Sg":"1","Ss":"28","Sn":"6","Sa":"4.75","Sd":"1.11","Og":"7","Os":"90","On":"18","Oa":"5.03","Od":"1.29","Mp":"8","Ap":"7","p":{"19":{"n":3.5,"s":1},"20":{"n":4.5},"21":{"n":5},"22":{"n":7,"g":1},"23":{"n":4.5},"24":{"n":4}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":11,"s":{"s":"90","n":"19","a":"4.74","d":"0.96","Ss":"29","Sn":"6","Sa":"4.92","Sd":"0.67","Og":"1","Os":"143","On":"31","Oa":"4.61","Od":"1.13","Dp":"30","p":{"1":{"n":5},"2":{"n":7},"4":{"n":4},"5":{"n":3.5},"7":{"n":3},"8":{"n":4},"9":{"n":5},"11":{"n":5,"s":1},"12":{"n":3.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4.5},"19":{"n":4.5},"20":{"n":5},"21":{"n":4.5},"22":{"n":6},"23":{"n":5.5},"24":{"n":4}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":7,"s":{"g":"1","s":"22","n":"5","a":"4.5","d":"1.1","Og":"1","Os":"22","On":"5","Oa":"4.5","Od":"1.1","Dp":"5","p":{"9":{"n":5,"s":1},"11":{"n":6,"g":1},"12":{"n":3},"19":{"n":3.5},"21":{"n":5,"s":1}}},"c":7},{"i":2633,"n":"Ntumba","f":"Levi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":3,"s":{"g":"1","s":"25","n":"5","a":"5","d":"0.77","Og":"1","Os":"25","On":"5","Oa":"5","Od":"0.77","Dp":"5","p":{"1":{"n":6.5,"g":1},"6":{"n":4.5},"8":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5}}},"c":7},{"i":2640,"n":"Barbet","f":"Theo","p":"D","r":1,"s":{"n":0},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":4,"s":{"s":"53","n":"11","a":"4.86","d":"1.05","Os":"53","On":"11","Oa":"4.86","Od":"1.05","Mp":"11","p":{"1":{"n":5},"2":{"n":6},"3":{"n":7.5},"4":{"n":4.5},"5":{"n":4},"7":{"n":3.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":4.5},"13":{"n":5},"14":{"n":5,"s":1}}},"c":7},{"i":2687,"n":"Jules Keita","f":"","p":"A","r":6,"s":{"g":"2","s":"62","n":"14","a":"4.46","d":"1.03","Og":"2","Os":"62","On":"14","Oa":"4.46","Od":"1.03","Mp":"1","Ap":"13","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":8,"g":2,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4},"6":{"n":4,"s":1},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"22":{"n":4,"s":1},"23":{"n":4.5,"s":1}}},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":6,"s":{"g":"2","s":"28","n":"5","a":"5.6","d":"0.8","Og":"2","Os":"28","On":"5","Oa":"5.6","Od":"0.8","Dp":"5","p":{"3":{"n":6.5,"g":1},"13":{"n":5},"14":{"n":6.5},"15":{"n":5.5,"g":1},"23":{"n":4.5,"s":1}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":7,"s":{"s":"73","n":"15","a":"4.87","d":"1.09","Os":"73","On":"15","Oa":"4.87","Od":"1.09","Gp":"15","p":{"1":{"n":6},"2":{"n":6},"3":{"n":6.5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":4},"8":{"n":2.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":5},"14":{"n":5.5},"15":{"n":4.5}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":10,"s":{"s":"38","n":"9","a":"4.22","d":"0.92","Os":"38","On":"9","Oa":"4.22","Od":"0.92","Dp":"9","p":{"5":{"n":3},"6":{"n":5.5},"7":{"n":3.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":4,"s":1},"16":{"n":5,"s":1},"17":{"n":4}}},"c":7},{"i":2941,"n":"Doumbouya","f":"Sory","p":"A","r":1,"s":{"n":0},"c":7},{"i":2989,"n":"Godard","f":"Theo","p":"A","r":1,"s":{"n":0},"c":7},{"i":3361,"n":"Kaba","f":"Sory","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"24":{"n":4,"s":1}}},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":14,"s":{"g":"4","s":"105","n":"22","a":"4.8","d":"0.83","Sg":"1","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"105","On":"22","Oa":"4.8","Od":"0.83","Mp":"4","Ap":"18","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":6,"g":1,"s":1},"15":{"n":3.5},"17":{"n":4},"18":{"n":6.5,"g":1},"19":{"n":4.5,"s":1},"20":{"n":5},"21":{"n":4.5},"22":{"n":7,"g":1},"24":{"n":5,"g":1}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":10,"s":{"g":"1","s":"52","n":"11","a":"4.77","d":"1.12","Ss":"4","Sn":"1","Sa":"4","Og":"1","Oao":"1","Os":"106","On":"22","Oa":"4.84","Od":"1.1","Dp":"22","p":{"12":{"n":5.5},"13":{"n":5},"14":{"n":4},"15":{"n":3},"16":{"n":5.5},"17":{"n":5},"18":{"n":7.5,"g":1},"19":{"n":4.5},"20":{"n":4},"21":{"n":4.5},"24":{"n":4}}},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":500,"s":{"g":"12","s":"102","n":"19","a":"5.39","d":"1.47","Og":"16","Os":"154","On":"32","Oa":"4.83","Od":"1.58","Ap":"32","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":3.5},"3":{"n":6,"g":1,"s":1},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":4},"7":{"n":6,"g":1},"9":{"n":3},"10":{"n":8.5,"g":3},"11":{"n":6.5,"g":1},"12":{"n":7.5,"g":2},"13":{"n":6.5,"g":1},"14":{"n":5.5},"15":{"n":3},"16":{"n":6.5,"g":1},"17":{"n":4.5,"s":1},"18":{"n":5.5},"19":{"n":5},"20":{"n":4}}},"c":8},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":15,"s":{"g":"4","s":"110","n":"21","a":"5.24","d":"1.13","Ss":"4","Sn":"1","Sa":"4","Og":"4","Os":"120","On":"23","Oa":"5.22","Od":"1.08","Mp":"6","Ap":"16","p":{"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":3.5},"10":{"n":8,"g":1},"11":{"n":7,"g":1},"12":{"n":6.5},"13":{"n":5},"14":{"n":5},"15":{"n":4,"s":1},"16":{"n":6.5,"g":1},"17":{"n":4,"s":1},"19":{"n":5},"20":{"n":4.5,"s":1},"21":{"n":4.5,"s":1},"22":{"n":5.5},"24":{"n":4,"s":1}}},"c":8},{"i":145,"n":"Eysseric","f":"Valentin","p":"M","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"24":{"n":4.5,"s":1}}},"c":8},{"i":220,"n":"Diego Carlos","f":"","p":"D","r":14,"s":{"s":"103","n":"21","a":"4.9","d":"1.03","Ss":"3","Sn":"1","Sa":"3","Os":"144","On":"29","Oa":"4.97","Od":"0.94","Dp":"28","p":{"1":{"n":3.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":4},"9":{"n":4},"10":{"n":6.5},"11":{"n":6},"12":{"n":6},"13":{"n":5},"14":{"n":5},"15":{"n":4},"16":{"n":5},"17":{"n":4.5},"18":{"n":7},"19":{"n":5.5},"20":{"n":5.5},"21":{"n":4.5},"22":{"n":4.5},"24":{"n":3}}},"c":8},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":16,"s":{"g":"1","s":"109","n":"21","a":"5.21","d":"0.85","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"180","On":"35","Oa":"5.16","Od":"0.87","Mp":"34","p":{"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":6.5},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5},"16":{"n":5},"17":{"n":5.5},"18":{"n":6.5},"19":{"n":4.5},"20":{"n":6},"21":{"n":4.5},"22":{"n":5},"24":{"n":6}}},"c":8},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":11,"s":{"s":"13","n":"3","a":"4.33","d":"0.94","Os":"13","On":"3","Oa":"4.33","Od":"0.94","Gp":"3","p":{"15":{"n":3,"s":1},"16":{"n":5},"22":{"n":5}}},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":4,"s":{"n":0,"Os":"15","On":"3","Oa":"5"},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":12,"s":{"s":"104","n":"22","a":"4.73","d":"1.11","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"177","On":"36","Oa":"4.92","Od":"1.1","Mp":"5","Dp":"29","Ap":"2","p":{"1":{"n":4.5},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":3},"8":{"n":5},"9":{"n":4.5},"10":{"n":7},"11":{"n":6.5},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":3},"16":{"n":7},"17":{"n":4.5},"18":{"n":4.5},"19":{"n":5},"20":{"n":4},"21":{"n":4},"24":{"n":3}}},"c":8},{"i":404,"n":"Djidji","f":"Koffi","p":"D","r":12,"s":{"s":"3","n":"1","a":"3","Os":"48","On":"10","Oa":"4.8","Od":"0.87","Dp":"10","p":{"1":{"n":3}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":8},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":11,"s":{"s":"93","n":"19","a":"4.89","d":"1.02","Os":"93","On":"19","Oa":"4.89","Od":"1.02","Mp":"2","Dp":"17","p":{"1":{"n":3},"2":{"n":3.5},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":3.5},"8":{"n":5,"s":1},"10":{"n":7.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"15":{"n":4},"16":{"n":5},"17":{"n":5},"18":{"n":6},"19":{"n":4.5},"21":{"n":5},"22":{"n":5.5,"s":1}}},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0,"Os":"8","On":"2","Oa":"4"},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":12,"s":{"g":"2","s":"103","n":"19","a":"5.45","d":"1.15","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"171","On":"32","Oa":"5.36","Od":"0.96","Mp":"29","p":{"1":{"n":4.5},"2":{"n":3.5},"4":{"n":4.5,"s":1},"8":{"n":6},"9":{"n":5.5,"s":1},"10":{"n":7.5},"11":{"n":7},"12":{"n":7,"g":1},"13":{"n":5.5},"14":{"n":5},"15":{"n":4},"16":{"n":7.5,"g":1},"17":{"n":5},"18":{"n":5.5},"19":{"n":5.5},"20":{"n":5.5},"21":{"n":4.5},"22":{"n":6},"24":{"n":4}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":1,"s":{"n":0},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":8},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":1,"s":{"n":0},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":9,"s":{"s":"51","n":"11","a":"4.64","d":"0.57","Ss":"3","Sn":"1","Sa":"3.5","Os":"51","On":"11","Oa":"4.64","Od":"0.57","Mp":"1","Dp":"10","p":{"8":{"n":5},"9":{"n":4.5},"11":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":5},"19":{"n":5,"s":1},"20":{"n":4.5},"22":{"n":4},"24":{"n":3.5}}},"c":8},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":14,"s":{"s":"114","n":"21","a":"5.43","d":"0.97","Ss":"3","Sn":"1","Sa":"3","Os":"187","On":"35","Oa":"5.34","Od":"0.83","Gp":"35","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":5.5},"8":{"n":8},"9":{"n":5},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":7},"14":{"n":4.5},"15":{"n":5},"17":{"n":5},"18":{"n":6},"19":{"n":5.5},"20":{"n":4.5},"21":{"n":5},"24":{"n":3}}},"c":8},{"i":1171,"n":"Kalifa Coulibaly","f":"","p":"A","r":11,"s":{"g":"2","s":"79","n":"18","a":"4.42","d":"0.8","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"98","On":"22","Oa":"4.48","Od":"0.92","Ap":"20","p":{"1":{"n":3.5},"2":{"n":4,"s":1},"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":2.5},"18":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"22":{"n":5.5},"24":{"n":6,"g":1}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":11,"s":{"g":"1","s":"65","n":"12","a":"5.46","d":"1.07","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"102","On":"19","Oa":"5.39","Od":"0.9","Mp":"17","Dp":"1","p":{"10":{"n":7},"11":{"n":5.5},"12":{"n":8,"g":1},"13":{"n":4},"14":{"n":5.5},"16":{"n":5.5},"18":{"n":5},"19":{"n":5.5,"s":1},"20":{"n":4},"21":{"n":5},"22":{"n":5.5},"24":{"n":5}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0,"Os":"38","On":"8","Oa":"4.75","Od":"0.43","Mp":"2"},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Mp":"1"},"c":8},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":6,"s":{"s":"34","n":"7","a":"4.93","d":"0.42","Os":"86","On":"19","Oa":"4.55","Od":"0.84","Dp":"19","p":{"1":{"n":5,"e":2734,"c":12,"s":1},"2":{"n":5,"e":2746,"c":12,"s":1},"8":{"n":5.5,"e":2804,"c":12,"s":1},"9":{"n":5,"e":2816,"c":12,"s":1},"15":{"n":5,"e":2875,"c":12,"s":1},"18":{"n":5,"e":2910,"c":12,"s":1},"19":{"n":4,"e":2914,"c":12}}},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":8,"s":{"s":"74","n":"16","a":"4.63","d":"0.57","Os":"99","On":"21","Oa":"4.71","Od":"0.61","Mp":"19","Ap":"1","p":{"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5,"s":1},"14":{"n":6},"15":{"n":4},"16":{"n":5,"s":1},"17":{"n":5},"18":{"n":4.5,"s":1},"20":{"n":5,"s":1},"22":{"n":4.5,"s":1}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":8,"s":{"s":"12","n":"2","a":"6.25","d":"0.25","Os":"66","On":"14","Oa":"4.75","Od":"1.32","Dp":"14","p":{"21":{"n":6},"22":{"n":6.5}}},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":8,"s":{"s":"62","n":"12","a":"5.17","d":"0.51","Os":"103","On":"20","Oa":"5.15","Od":"0.55","Mp":"20","p":{"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4.5},"12":{"n":5,"s":1},"17":{"n":5},"19":{"n":5.5},"22":{"n":4.5}}},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":4,"s":{"s":"7","n":"2","a":"3.5","d":"0.5","Os":"7","On":"2","Oa":"3.5","Od":"0.5","Mp":"1","Ap":"1","p":{"15":{"n":4,"s":1},"21":{"n":3}}},"c":8},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":6,"s":{"n":0,"Os":"17","On":"4","Oa":"4.25","Od":"0.43","Mp":"1"},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":3,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":3.5},"3":{"n":4.5}}},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":1,"s":{"n":0},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":6,"s":{"g":"1","s":"53","n":"11","a":"4.86","d":"1","Og":"1","Os":"53","On":"11","Oa":"4.86","Od":"1","Mp":"8","Ap":"3","p":{"1":{"n":4},"2":{"n":3.5},"3":{"n":5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":3.5}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2795,"n":"Miazga","f":"Matt","p":"D","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"1","Os":"36","On":"8","Oa":"4.5","Od":"1","Dp":"8","p":{"2":{"n":4},"3":{"n":5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":2.5}}},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":11,"s":{"s":"86","n":"17","a":"5.09","d":"0.46","Ss":"5","Sn":"1","Sa":"5","Os":"86","On":"17","Oa":"5.09","Od":"0.46","Mp":"12","Ap":"5","p":{"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6.5},"11":{"n":5},"12":{"n":6},"13":{"n":5,"s":1},"14":{"n":5},"16":{"n":5,"s":1},"17":{"n":5,"s":1},"18":{"n":5,"s":1},"20":{"n":5},"21":{"n":4.5,"s":1},"24":{"n":5}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":8,"s":{"s":"32","n":"6","a":"5.33","d":"0.37","Os":"32","On":"6","Oa":"5.33","Od":"0.37","Dp":"6","p":{"7":{"n":5},"8":{"n":5.5},"10":{"n":6},"11":{"n":5.5},"18":{"n":5},"19":{"n":5}}},"c":8},{"i":2938,"n":"Louza","f":"Imran","p":"M","r":1,"s":{"n":0},"c":8},{"i":2947,"n":"Youan","f":"Thody Elie","p":"A","r":1,"s":{"n":0},"c":8},{"i":2993,"n":"Bamba","f":"Kader","p":"M","r":1,"s":{"n":0},"c":8},{"i":3363,"n":"Mance","f":"Antonio","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"24":{"n":4.5,"s":1}}},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":14,"s":{"g":"4","s":"102","n":"19","a":"5.37","d":"1.18","Og":"6","Os":"175","On":"31","Oa":"5.65","Od":"1.31","Mp":"23","Ap":"6","p":{"1":{"n":8,"g":2},"2":{"n":4},"3":{"n":4.5},"4":{"n":7},"5":{"n":8,"g":1},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5,"s":1},"19":{"n":5.5},"20":{"n":4.5},"21":{"n":3.5}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":9,"s":{"g":"3","s":"106","n":"22","a":"4.82","d":"0.97","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"6","Os":"169","On":"35","Oa":"4.83","Od":"0.99","Mp":"1","Ap":"33","p":{"38":{"n":5,"s":1},"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":6.5,"g":1,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":6.5,"g":1},"8":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":4},"17":{"n":4.5,"s":1},"18":{"n":6},"20":{"n":4.5,"s":1},"21":{"n":5},"23":{"n":4.5,"s":1},"24":{"n":5,"s":1}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":29,"s":{"g":"11","s":"112","n":"21","a":"5.36","d":"1.45","Ss":"5","Sn":"1","Sa":"5","Og":"20","Os":"180","On":"32","Oa":"5.64","Od":"1.42","Mp":"24","Ap":"8","p":{"38":{"n":6},"1":{"n":6,"g":1,"s":1},"2":{"n":5.5,"g":1},"3":{"n":4.5},"4":{"n":7,"g":1,"s":1},"5":{"n":7.5,"g":2},"6":{"n":5.5,"g":1},"7":{"n":5},"8":{"n":4},"9":{"n":8,"g":1},"11":{"n":4.5},"12":{"n":2.5},"13":{"n":4.5},"14":{"n":8.5,"g":3},"15":{"n":4},"16":{"n":5.5,"g":1},"17":{"n":6},"19":{"n":6},"20":{"n":4.5},"21":{"n":5},"22":{"n":3.5},"24":{"n":5}}},"c":9},{"i":34,"n":"Balotelli","f":"Mario","p":"A","r":13,"s":{"g":"2","s":"62","n":"13","a":"4.77","d":"1.03","Sg":"2","Ss":"18","Sn":"3","Sa":"6","Sd":"1.08","Og":"7","Os":"124","On":"24","Oa":"5.17","Od":"1.17","Ap":"24","p":{"4":{"n":4.5,"e":2765,"c":19},"6":{"n":3.5,"e":2787,"c":19},"8":{"n":4.5,"e":2807,"c":19,"s":1},"10":{"n":4.5,"e":2827,"c":19},"11":{"n":5,"e":2834,"c":19},"12":{"n":4,"e":2847,"c":19},"13":{"n":4,"e":2858,"c":19},"14":{"n":6,"e":2868,"c":19},"15":{"n":4,"e":2874,"c":19},"16":{"n":4,"e":2889,"c":19},"22":{"n":6.5,"g":1,"s":1},"23":{"n":4.5},"24":{"n":7,"g":1}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":15,"s":{"g":"4","s":"113","n":"21","a":"5.38","d":"1.16","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Og":"6","Os":"179","On":"34","Oa":"5.26","Od":"1.03","Mp":"30","p":{"38":{"n":7,"g":1},"1":{"n":8},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":3},"7":{"n":6,"g":1},"10":{"n":6.5,"g":1},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":6},"15":{"n":5,"s":1},"16":{"n":6,"g":1},"17":{"n":6},"18":{"n":6.5},"19":{"n":5.5},"20":{"n":5},"21":{"n":6,"g":1,"s":1},"23":{"n":3.5},"24":{"n":5,"s":1}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":12,"s":{"g":"2","s":"49","n":"10","a":"4.9","d":"0.62","Og":"3","Os":"90","On":"19","Oa":"4.74","Od":"0.75","Mp":"2","Ap":"10","p":{"1":{"n":4.5},"3":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5},"17":{"n":4,"s":1},"18":{"n":5},"20":{"n":4.5,"s":1},"22":{"n":5,"s":1},"23":{"n":6,"g":1,"s":1}}},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":15,"s":{"g":"1","s":"96","n":"18","a":"5.36","d":"0.68","Sg":"1","Ss":"44","Sn":"8","Sa":"5.5","Sd":"0.79","Og":"1","Os":"149","On":"28","Oa":"5.34","Od":"0.72","Mp":"25","p":{"38":{"n":7},"1":{"n":6},"3":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6},"13":{"n":5.5},"14":{"n":6},"15":{"n":5},"17":{"n":5},"18":{"n":6},"19":{"n":4},"20":{"n":6.5,"g":1},"21":{"n":6.5},"22":{"n":5.5},"23":{"n":5.5},"24":{"n":5}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":8,"s":{"s":"28","n":"6","a":"4.75","d":"0.99","Os":"73","On":"15","Oa":"4.9","Od":"0.9","Gp":"12","p":{"1":{"n":6},"2":{"n":4.5,"s":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":3.5}}},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":12,"s":{"s":"71","n":"14","a":"5.07","d":"1.03","Ss":"6","Sn":"1","Sa":"6","Os":"125","On":"25","Oa":"5","Od":"0.98","Dp":"24","p":{"38":{"n":5},"1":{"n":6.5},"2":{"n":3.5},"4":{"n":6},"5":{"n":5},"6":{"n":3.5},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":5},"18":{"n":5},"19":{"n":3.5},"24":{"n":6}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":14,"s":{"g":"1","s":"112","n":"22","a":"5.09","d":"1.05","Sg":"1","Ss":"92","Sn":"18","Sa":"5.11","Sd":"1.12","Og":"1","Os":"177","On":"34","Oa":"5.21","Od":"1","Mp":"7","Dp":"24","p":{"38":{"n":6},"1":{"n":5.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5},"4":{"n":5.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":7.5},"11":{"n":4.5},"12":{"n":3},"13":{"n":6.5},"14":{"n":5},"15":{"n":6},"16":{"n":3},"17":{"n":5},"18":{"n":6},"19":{"n":6.5,"g":1,"s":1},"20":{"n":5},"21":{"n":5.5},"22":{"n":5},"23":{"n":4},"24":{"n":4.5}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":10,"s":{"s":"50","n":"10","a":"5","d":"0.81","Ss":"30","Sn":"6","Sa":"5.08","Sd":"0.73","Og":"1","Oao":"1","Os":"104","On":"21","Oa":"4.95","Od":"0.74","Dp":"20","p":{"38":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":3.5},"17":{"n":5},"19":{"n":5.5},"20":{"n":5},"21":{"n":5.5},"22":{"n":5.5},"23":{"n":3.5},"24":{"n":5.5,"s":1}}},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":3,"s":{"s":"18","n":"4","a":"4.5","d":"0.35","Os":"35","On":"7","Oa":"5","Od":"0.71","Mp":"4","Dp":"1","p":{"1":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4},"18":{"n":4.5,"s":1}}},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":9},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":16,"s":{"s":"99","n":"19","a":"5.21","d":"0.85","Ss":"94","Sn":"18","Sa":"5.22","Sd":"0.87","Os":"137","On":"27","Oa":"5.07","Od":"0.82","Gp":"27","p":{"38":{"n":5},"2":{"n":5},"7":{"n":5},"8":{"n":4},"9":{"n":6.5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":4},"17":{"n":5},"18":{"n":6},"19":{"n":6},"20":{"n":5},"21":{"n":6.5},"22":{"n":4.5},"23":{"n":4.5},"24":{"n":4}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":13,"s":{"s":"92","n":"19","a":"4.84","d":"0.86","Os":"163","On":"32","Oa":"5.09","Od":"0.94","Mp":"17","Dp":"15","p":{"38":{"n":6},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":3},"7":{"n":4.5},"8":{"n":3.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":3.5},"13":{"n":6},"15":{"n":5},"16":{"n":5},"17":{"n":5},"19":{"n":5.5},"20":{"n":5.5},"22":{"n":4},"23":{"n":4.5}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":10,"s":{"g":"1","s":"66","n":"13","a":"5.08","d":"1.19","Og":"1","Oao":"1","Os":"114","On":"23","Oa":"4.96","Od":"1.03","Dp":"23","p":{"2":{"n":4},"3":{"n":4},"4":{"n":4.5},"5":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":4},"13":{"n":8,"g":1},"14":{"n":5.5},"15":{"n":6},"16":{"n":3.5},"19":{"n":5.5}}},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":12,"s":{"s":"92","n":"19","a":"4.87","d":"0.98","Ss":"46","Sn":"9","Sa":"5.17","Sd":"0.41","Os":"156","On":"31","Oa":"5.05","Od":"1.03","Mp":"1","Dp":"27","p":{"38":{"n":5,"s":1},"1":{"n":7},"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":3},"7":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":3},"16":{"n":5,"s":1},"17":{"n":5},"18":{"n":5.5},"19":{"n":6},"20":{"n":5.5},"21":{"n":4.5},"22":{"n":5},"23":{"n":5,"s":1},"24":{"n":5}}},"c":9},{"i":1197,"n":"Ocampos","f":"Lucas","p":"M","r":15,"s":{"g":"3","s":"112","n":"22","a":"5.11","d":"1.02","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"6","Os":"177","On":"34","Oa":"5.22","Od":"1.15","Mp":"28","Ap":"4","p":{"38":{"n":7},"1":{"n":6},"2":{"n":4},"3":{"n":6,"g":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1},"14":{"n":6},"15":{"n":6},"16":{"n":5},"17":{"n":4},"18":{"n":5.5},"19":{"n":5.5,"s":1},"20":{"n":4.5},"21":{"n":5},"23":{"n":4.5},"24":{"n":7,"g":1}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":9,"s":{"g":"1","s":"97","n":"19","a":"5.11","d":"0.85","Ss":"21","Sn":"4","Sa":"5.25","Sd":"0.56","Og":"1","Os":"124","On":"24","Oa":"5.17","Od":"0.9","Mp":"1","Dp":"23","p":{"38":{"n":7},"1":{"n":6},"3":{"n":4},"4":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":3},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":4.5},"17":{"n":5.5},"18":{"n":7,"g":1},"21":{"n":5.5},"22":{"n":5},"23":{"n":4.5},"24":{"n":6}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":8,"s":{"g":"3","s":"64","n":"14","a":"4.61","d":"0.83","Og":"9","Os":"108","On":"22","Oa":"4.93","Od":"1.12","Ap":"16","p":{"38":{"n":6,"g":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":3.5},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"19":{"n":3.5},"22":{"n":4}}},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5"},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":4,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"22":{"n":5,"s":1}}},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":1,"s":{"n":0},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":6,"s":{"s":"34","n":"7","a":"4.93","d":"1.18","Ss":"6","Sn":"1","Sa":"6","Os":"34","On":"7","Oa":"4.93","Od":"1.18","Dp":"7","p":{"2":{"n":3.5},"6":{"n":3},"10":{"n":5.5,"s":1},"12":{"n":5,"s":1},"18":{"n":6.5},"21":{"n":5,"s":1},"24":{"n":6}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"A","r":1,"s":{"n":0},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":12,"s":{"g":"1","s":"92","n":"18","a":"5.11","d":"0.87","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.68","Og":"1","Os":"92","On":"18","Oa":"5.11","Od":"0.87","Mp":"18","p":{"4":{"n":5},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":3.5},"13":{"n":6},"15":{"n":5,"s":1},"16":{"n":4},"17":{"n":5.5,"g":1},"20":{"n":5},"21":{"n":6},"22":{"n":5.5},"23":{"n":4},"24":{"n":5.5}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":8,"s":{"s":"43","n":"10","a":"4.35","d":"0.32","Os":"43","On":"10","Oa":"4.35","Od":"0.32","Mp":"2","Ap":"8","p":{"5":{"n":4.5,"s":1},"8":{"n":3.5},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"17":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"21":{"n":4.5,"s":1},"22":{"n":4},"23":{"n":4.5}}},"c":9},{"i":2939,"n":"Philiponeau","f":"Alexandre","p":"M","r":1,"s":{"n":0},"c":9},{"i":2953,"n":"Ali Mohamed","f":"Abdallah","p":"D","r":1,"s":{"n":0},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0,"Os":"28","On":"7","Oa":"4","p":{"37":{"n":4,"s":1}}},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":12,"s":{"g":"1","s":"110","n":"22","a":"5","d":"1.2","Sg":"1","Ss":"32","Sn":"6","Sa":"5.33","Sd":"0.94","Og":"2","Os":"156","On":"31","Oa":"5.03","Od":"1.08","Dp":"31","p":{"37":{"n":4},"1":{"n":3.5},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":3},"8":{"n":6},"9":{"n":5.5},"10":{"n":2},"11":{"n":3.5},"12":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":4},"17":{"n":4.5},"19":{"n":6},"20":{"n":4},"21":{"n":6},"22":{"n":4},"23":{"n":6,"g":1},"24":{"n":6}}},"c":10},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":9,"s":{"s":"73","n":"14","a":"5.21","d":"0.52","Ss":"6","Sn":"1","Sa":"6","Os":"124","On":"24","Oa":"5.17","Od":"0.53","Mp":"21","Dp":"2","Ap":"1","p":{"4":{"n":5.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":5},"15":{"n":6},"16":{"n":5,"s":1},"17":{"n":5.5},"18":{"n":4.5},"19":{"n":5},"21":{"n":5.5,"s":1},"22":{"n":5.5},"24":{"n":6}}},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":17,"s":{"ao":"1","s":"123","n":"23","a":"5.35","d":"1.36","Ss":"46","Sn":"8","Sa":"5.75","Sd":"1.44","Oao":"1","Os":"201","On":"37","Oa":"5.43","Od":"1.24","Gp":"37","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":5},"6":{"n":6.5},"7":{"n":3.5},"8":{"n":8},"9":{"n":4.5},"10":{"n":4},"11":{"n":4,"a":1},"12":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":3},"17":{"n":5},"18":{"n":6.5},"19":{"n":6},"20":{"n":3.5},"21":{"n":8},"22":{"n":7.5},"23":{"n":4.5},"24":{"n":5}}},"c":10},{"i":144,"n":"Sylla","f":"Issiaga","p":"D","r":10,"s":{"g":"1","s":"59","n":"12","a":"4.92","d":"1.02","Ss":"32","Sn":"7","Sa":"4.64","Sd":"0.79","Og":"2","Os":"114","On":"23","Oa":"4.96","Od":"0.94","Mp":"6","Dp":"13","Ap":"1","p":{"37":{"n":4,"g":1},"4":{"n":6},"9":{"n":5,"s":1},"11":{"n":3.5},"14":{"n":5},"16":{"n":7,"g":1},"18":{"n":4},"19":{"n":5},"20":{"n":5},"21":{"n":5},"22":{"n":5.5},"23":{"n":3},"24":{"n":5}}},"c":10},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":4,"s":{"n":0,"Oao":"1","Os":"29","On":"7","Oa":"4.14","Od":"0.64","Dp":"5"},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":8,"s":{"s":"90","n":"19","a":"4.74","d":"0.85","Os":"123","On":"26","Oa":"4.73","Od":"0.94","Mp":"1","Dp":"25","p":{"1":{"n":4},"2":{"n":6},"3":{"n":6},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":5},"9":{"n":4.5},"10":{"n":2.5},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":5.5},"17":{"n":5},"18":{"n":4.5},"19":{"n":5},"20":{"n":4}}},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"1","p":{"10":{"n":4.5,"s":1}}},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":10,"s":{"g":"3","s":"105","n":"22","a":"4.8","d":"0.9","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Og":"3","Os":"141","On":"29","Oa":"4.88","Od":"0.82","Mp":"21","Ap":"3","p":{"37":{"n":5},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":6.5,"g":1,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":6,"s":1},"16":{"n":5.5},"17":{"n":7,"g":2},"18":{"n":4.5},"19":{"n":3},"20":{"n":4,"s":1},"22":{"n":5},"23":{"n":4},"24":{"n":5}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":7,"s":{"s":"43","n":"10","a":"4.35","d":"0.59","Og":"1","Os":"88","On":"20","Oa":"4.43","Od":"0.71","Ap":"14","p":{"6":{"n":4,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5},"17":{"n":4},"18":{"n":3}}},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0,"Os":"38","On":"8","Oa":"4.75","Od":"0.43","Mp":"6","p":{"37":{"n":4}}},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":8,"s":{"s":"67","n":"15","a":"4.47","d":"0.69","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"110","On":"25","Oa":"4.4","Od":"0.68","Mp":"4","Ap":"15","p":{"37":{"n":5,"s":1},"1":{"n":4,"s":1},"2":{"n":5,"s":1},"3":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":3},"11":{"n":4,"s":1},"12":{"n":4,"s":1},"16":{"n":5.5},"17":{"n":4},"18":{"n":4.5,"s":1},"19":{"n":6},"21":{"n":4.5,"s":1},"23":{"n":4.5,"s":1},"24":{"n":5,"s":1}}},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":7,"s":{"s":"14","n":"2","a":"7","d":"1","Os":"14","On":"2","Oa":"7","Od":"1","Gp":"2","p":{"15":{"n":6,"s":1},"16":{"n":8}}},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":7,"s":{"s":"33","n":"8","a":"4.13","d":"0.89","Os":"33","On":"8","Oa":"4.13","Od":"0.89","Mp":"3","Dp":"5","p":{"9":{"n":4.5},"10":{"n":2.5},"13":{"n":4},"14":{"n":5},"15":{"n":5},"17":{"n":3},"20":{"n":4},"22":{"n":5}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":10,"s":{"g":"3","s":"83","n":"19","a":"4.37","d":"1.07","Ss":"21","Sn":"5","Sa":"4.3","Sd":"0.24","Og":"3","Os":"83","On":"19","Oa":"4.37","Od":"1.07","Ap":"19","p":{"1":{"n":2.5},"2":{"n":6.5,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6.5,"g":1,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":2.5},"12":{"n":4},"13":{"n":4},"14":{"n":4},"15":{"n":6,"g":1,"s":1},"16":{"n":3.5},"17":{"n":4.5,"s":1},"20":{"n":4,"s":1},"21":{"n":4.5,"s":1},"22":{"n":4.5,"s":1},"23":{"n":4.5},"24":{"n":4}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":12,"s":{"s":"93","n":"19","a":"4.89","d":"1.24","Og":"1","Os":"159","On":"33","Oa":"4.82","Od":"1.05","Mp":"1","Dp":"31","p":{"37":{"n":3},"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":3},"8":{"n":6},"11":{"n":3},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":6},"17":{"n":4},"18":{"n":3.5},"19":{"n":4},"20":{"n":4.5},"21":{"n":8}}},"c":10},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"1":{"n":4}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Sangar\u00e9","f":"Ibrahim","p":"M","r":12,"s":{"g":"1","s":"83","n":"15","a":"5.57","d":"0.73","Ss":"25","Sn":"5","Sa":"5.1","Sd":"0.49","Og":"2","Os":"141","On":"26","Oa":"5.44","Od":"0.89","Mp":"26","p":{"37":{"n":4},"1":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"17":{"n":5},"20":{"n":5,"s":1},"21":{"n":6},"22":{"n":5},"23":{"n":5},"24":{"n":4.5}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":14,"s":{"g":"2","s":"42","n":"9","a":"4.67","d":"0.91","Ss":"4","Sn":"1","Sa":"4.5","Og":"7","Os":"105","On":"21","Oa":"5","Od":"1.3","Ap":"21","p":{"37":{"n":4},"1":{"n":4,"s":1},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":4},"18":{"n":4.5,"s":1},"20":{"n":5,"g":1},"21":{"n":7,"g":1},"22":{"n":4},"24":{"n":4.5,"s":1}}},"c":10},{"i":1025,"n":"Gradel","f":"Max-Alain","p":"A","r":25,"s":{"g":"9","s":"127","n":"23","a":"5.54","d":"1.25","Sg":"4","Ss":"38","Sn":"7","Sa":"5.43","Sd":"0.9","Og":"11","Os":"192","On":"36","Oa":"5.35","Od":"1.3","Mp":"23","Ap":"13","p":{"37":{"n":4},"1":{"n":4},"2":{"n":6},"3":{"n":7,"g":1},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":6,"g":1},"8":{"n":6},"9":{"n":3.5},"10":{"n":3},"11":{"n":4},"12":{"n":7.5,"g":1},"13":{"n":5},"14":{"n":5.5},"15":{"n":7.5,"g":1},"16":{"n":5.5},"18":{"n":5.5,"g":1},"19":{"n":7,"g":2},"20":{"n":5.5},"21":{"n":6},"22":{"n":4},"23":{"n":4.5},"24":{"n":5.5,"g":1}}},"c":10},{"i":1208,"n":"Steven Fortes","f":"","p":"D","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"24","On":"5","Oa":"4.9","Od":"0.49","Dp":"4","p":{"2":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":3,"s":{"n":0},"c":10},{"i":1528,"n":"Dossevi","f":"Mathieu","p":"M","r":13,"s":{"g":"2","s":"121","n":"24","a":"5.04","d":"0.91","Sg":"2","Ss":"121","Sn":"24","Sa":"5.04","Sd":"0.91","Og":"2","Os":"189","On":"37","Oa":"5.11","Od":"1.1","Mp":"30","Ap":"7","p":{"1":{"n":3.5},"2":{"n":7,"g":1},"3":{"n":5},"4":{"n":6},"5":{"n":4},"6":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":4.5},"15":{"n":6},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1},"18":{"n":4.5},"19":{"n":4.5,"s":1},"20":{"n":5.5},"21":{"n":6.5},"22":{"n":5.5},"23":{"n":5},"24":{"n":4.5}}},"c":10},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":7,"s":{"s":"57","n":"12","a":"4.75","d":"0.75","Os":"57","On":"12","Oa":"4.75","Od":"0.75","Mp":"12","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1},"20":{"n":3.5},"23":{"n":5,"s":1}}},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":11,"s":{"s":"100","n":"21","a":"4.79","d":"0.92","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"100","On":"21","Oa":"4.79","Od":"0.92","Mp":"21","p":{"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":7},"5":{"n":4.5},"6":{"n":5.5,"s":1},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":3},"11":{"n":3.5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":5.5},"16":{"n":5,"s":1},"19":{"n":5},"20":{"n":4.5},"22":{"n":5.5,"s":1},"23":{"n":4.5},"24":{"n":5,"s":1}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":1,"s":{"n":0},"c":10},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":6,"s":{"s":"23","n":"5","a":"4.7","d":"1.08","Os":"23","On":"5","Oa":"4.7","Od":"1.08","Mp":"2","Dp":"3","p":{"10":{"n":3.5},"11":{"n":4},"16":{"n":6},"18":{"n":4},"19":{"n":6}}},"c":10},{"i":2936,"n":"Carvalho","f":"Matis","p":"G","r":1,"s":{"n":0},"c":10},{"i":2942,"n":"N'Goumou Minpol","f":"Nathan","p":"M","r":1,"s":{"n":0},"c":10},{"i":2950,"n":"Sidibe","f":"Kalidou","p":"M","r":5,"s":{"s":"19","n":"4","a":"4.88","d":"0.41","Os":"19","On":"4","Oa":"4.88","Od":"0.41","Mp":"4","p":{"17":{"n":5.5},"18":{"n":4.5,"s":1},"19":{"n":5,"s":1},"21":{"n":4.5}}},"c":10},{"i":2960,"n":"Diakite","f":"Bafode","p":"D","r":6,"s":{"s":"27","n":"6","a":"4.58","d":"0.79","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"27","On":"6","Oa":"4.58","Od":"0.79","Mp":"2","Dp":"4","p":{"17":{"n":5,"s":1},"18":{"n":3.5},"19":{"n":5,"s":1},"21":{"n":5.5},"23":{"n":3.5},"24":{"n":5}}},"c":10},{"i":2962,"n":"Bessile","f":"Loic","p":"D","r":1,"s":{"n":0},"c":10},{"i":2996,"n":"Shoji","f":"Gen","p":"D","r":9,"s":{"s":"19","n":"4","a":"4.88","d":"0.65","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.65","Os":"19","On":"4","Oa":"4.88","Od":"0.65","Dp":"4","p":{"21":{"n":5.5},"22":{"n":5.5},"23":{"n":4.5},"24":{"n":4}}},"c":10},{"i":3228,"n":"Kone","f":"Kouadio","p":"M","r":1,"s":{"n":0},"c":10},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":17,"s":{"s":"92","n":"16","a":"5.78","d":"0.61","Os":"124","On":"23","Oa":"5.41","Od":"0.86","Dp":"23","p":{"29":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":6.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"9":{"n":6.5},"10":{"n":7},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":5.5},"23":{"n":6}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":13,"s":{"s":"13","n":"2","a":"6.5","d":"0.5","Og":"1","Os":"74","On":"13","Oa":"5.69","Od":"0.72","Mp":"13","p":{"29":{"n":7},"1":{"n":7},"2":{"n":6}}},"c":12},{"i":193,"n":"El Ghazi","f":"Anwar","p":"A","r":9,"s":{"n":0,"Os":"26","On":"6","Oa":"4.33","Od":"0.47","Mp":"1","Ap":"1"},"c":12},{"i":211,"n":"Pepe","f":"Nicolas","p":"A","r":47,"s":{"g":"16","s":"146","n":"24","a":"6.1","d":"1.53","Sg":"16","Ss":"146","Sn":"24","Sa":"6.1","Sd":"1.53","Og":"24","Os":"220","On":"38","Oa":"5.8","Od":"1.61","Mp":"32","Ap":"4","p":{"29":{"n":5,"g":1},"1":{"n":8,"g":1},"2":{"n":4.5},"3":{"n":8},"4":{"n":5.5},"5":{"n":8.5,"g":3},"6":{"n":4.5},"7":{"n":5},"8":{"n":7,"g":1},"9":{"n":7,"g":1},"10":{"n":5.5,"g":1},"11":{"n":7},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":3.5},"15":{"n":6.5,"g":1},"16":{"n":5.5,"g":1},"17":{"n":6.5,"g":1},"18":{"n":7.5,"g":1},"19":{"n":4.5},"20":{"n":8,"g":1},"21":{"n":3.5},"22":{"n":8,"g":2},"23":{"n":7.5,"g":1},"24":{"n":5}}},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":24,"s":{"s":"139","n":"24","a":"5.79","d":"0.76","Ss":"139","Sn":"24","Sa":"5.79","Sd":"0.76","Os":"189","On":"35","Oa":"5.4","Od":"1.05","Gp":"35","p":{"29":{"n":5},"1":{"n":5},"2":{"n":7},"3":{"n":7},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":6},"7":{"n":5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":7},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":4.5},"15":{"n":5},"16":{"n":7},"17":{"n":5},"18":{"n":6},"19":{"n":5.5},"20":{"n":5},"21":{"n":4.5},"22":{"n":6},"23":{"n":6},"24":{"n":6}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":14,"s":{"g":"2","s":"110","n":"21","a":"5.24","d":"0.93","Sg":"1","Ss":"22","Sn":"4","Sa":"5.5","Sd":"0.87","Og":"2","Os":"120","On":"23","Oa":"5.22","Od":"0.89","Mp":"22","p":{"1":{"n":6},"2":{"n":6},"3":{"n":7.5,"g":1},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4.5},"18":{"n":6},"21":{"n":6,"g":1,"s":1},"22":{"n":4},"23":{"n":6},"24":{"n":6}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":4,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5"},"c":12},{"i":455,"n":"Jonathan Ikone","f":"","p":"M","r":14,"s":{"g":"1","s":"118","n":"24","a":"4.94","d":"0.67","Sg":"1","Ss":"118","Sn":"24","Sa":"4.94","Sd":"0.67","Og":"1","Os":"158","On":"33","Oa":"4.8","Od":"0.71","Mp":"25","Ap":"5","p":{"29":{"n":5,"e":1048,"c":15},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":5},"5":{"n":6},"6":{"n":6,"g":1},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":4},"16":{"n":5.5},"17":{"n":4},"18":{"n":5},"19":{"n":4},"20":{"n":4.5},"21":{"n":4},"22":{"n":6},"23":{"n":5.5},"24":{"n":6}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":28,"s":{"g":"9","s":"131","n":"24","a":"5.48","d":"1.43","Sg":"9","Ss":"131","Sn":"24","Sa":"5.48","Sd":"1.43","Og":"10","Os":"204","On":"38","Oa":"5.38","Od":"1.38","Mp":"31","Ap":"3","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":8,"g":2},"4":{"n":4.5},"5":{"n":5},"6":{"n":3.5},"7":{"n":3.5},"8":{"n":7,"g":2},"9":{"n":8.5,"g":2},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":5},"16":{"n":5,"s":1},"17":{"n":5.5,"s":1},"18":{"n":7.5,"g":1},"19":{"n":3.5},"20":{"n":6},"21":{"n":4.5},"22":{"n":6},"23":{"n":7.5,"g":1},"24":{"n":5.5}}},"c":12},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":7,"s":{"n":0,"Os":"27","On":"6","Oa":"4.5","Od":"1.26","Dp":"6"},"c":12},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":11,"s":{"s":"37","n":"7","a":"5.29","d":"0.36","Ss":"27","Sn":"5","Sa":"5.4","Sd":"0.37","Os":"37","On":"7","Oa":"5.29","Od":"0.36","Dp":"7","p":{"4":{"n":5,"s":1},"14":{"n":5},"20":{"n":6},"21":{"n":5.5},"22":{"n":5},"23":{"n":5.5},"24":{"n":5}}},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":15,"s":{"g":"1","s":"120","n":"22","a":"5.45","d":"0.96","Ss":"30","Sn":"5","Sa":"6","Sd":"0.55","Og":"1","Os":"120","On":"22","Oa":"5.45","Od":"0.96","Dp":"22","p":{"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":7.5,"g":1},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":3.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5},"18":{"n":4},"20":{"n":5.5},"21":{"n":6},"22":{"n":5.5},"23":{"n":7},"24":{"n":6}}},"c":12},{"i":954,"n":"Remy","f":"Lo\u00efc","p":"A","r":11,"s":{"g":"3","s":"72","n":"15","a":"4.8","d":"0.98","Sg":"2","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.71","Og":"6","Os":"114","On":"24","Oa":"4.75","Od":"1.05","Mp":"2","Ap":"19","p":{"3":{"n":4.5,"s":1},"4":{"n":2.5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":7,"g":1},"16":{"n":4.5},"19":{"n":4.5,"s":1},"22":{"n":4.5,"s":1},"23":{"n":6,"g":1,"s":1},"24":{"n":6,"g":1,"s":1}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":13,"s":{"s":"36","n":"7","a":"5.21","d":"0.8","Ss":"27","Sn":"5","Sa":"5.5","Sd":"0.71","Os":"36","On":"7","Oa":"5.21","Od":"0.8","Dp":"7","p":{"11":{"n":5,"s":1},"18":{"n":4,"s":1},"20":{"n":4.5,"s":1},"21":{"n":6},"22":{"n":5.5,"s":1},"23":{"n":6.5,"s":1},"24":{"n":5,"s":1}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":14,"s":{"s":"77","n":"15","a":"5.17","d":"0.85","Ss":"5","Sn":"1","Sa":"5","Os":"145","On":"28","Oa":"5.2","Od":"0.78","Mp":"27","p":{"29":{"n":5},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6.5},"14":{"n":3.5},"15":{"n":5,"s":1},"18":{"n":5,"s":1},"19":{"n":7},"20":{"n":6.5},"21":{"n":4.5},"24":{"n":5,"s":1}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":2,"s":{"n":0},"c":12},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":30,"s":{"s":"135","n":"22","a":"6.14","d":"0.94","Ss":"63","Sn":"10","Sa":"6.3","Sd":"1.21","Os":"200","On":"35","Oa":"5.71","Od":"1.15","Mp":"31","p":{"29":{"n":5,"s":1},"1":{"n":5},"2":{"n":6},"3":{"n":7},"5":{"n":6},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"15":{"n":5.5},"16":{"n":7.5},"17":{"n":5},"18":{"n":7.5},"19":{"n":6},"20":{"n":8},"21":{"n":5},"22":{"n":4.5},"23":{"n":7.5},"24":{"n":6.5}}},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Araujo","f":"","p":"A","r":8,"s":{"g":"2","s":"66","n":"14","a":"4.71","d":"0.56","Og":"6","Os":"135","On":"27","Oa":"5","Od":"0.89","Mp":"12","Ap":"12","p":{"29":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"10":{"n":6,"g":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":5},"17":{"n":4.5},"19":{"n":4.5,"s":1},"20":{"n":6,"g":1,"s":1},"21":{"n":4,"s":1},"23":{"n":4.5,"s":1}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":7,"s":{"s":"62","n":"12","a":"5.21","d":"0.69","Os":"107","On":"22","Oa":"4.89","Od":"0.77","Dp":"20","p":{"29":{"n":5},"1":{"n":5},"4":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":5.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":5},"18":{"n":5.5},"19":{"n":4}}},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":2,"s":{"n":0,"Os":"16","On":"3","Oa":"5.33","Od":"0.47"},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":3,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Gp":"3"},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumare","f":"Boubakary","p":"M","r":10,"s":{"s":"47","n":"10","a":"4.75","d":"0.25","Os":"76","On":"16","Oa":"4.78","Od":"0.3","Mp":"10","p":{"29":{"n":5,"s":1},"5":{"n":4.5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1},"19":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"21":{"n":5,"s":1},"22":{"n":5,"s":1}}},"c":12},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":1,"s":{"n":0},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":5,"s":{"s":"39","n":"9","a":"4.39","d":"0.46","Os":"39","On":"9","Oa":"4.39","Od":"0.46","Ap":"9","p":{"5":{"n":5},"6":{"n":4.5},"7":{"n":3.5},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":16,"s":{"s":"117","n":"23","a":"5.11","d":"0.57","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"117","On":"23","Oa":"5.11","Od":"0.57","Dp":"23","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":6.5},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5.5},"17":{"n":5},"18":{"n":6},"19":{"n":5},"20":{"n":5},"22":{"n":5.5},"23":{"n":6},"24":{"n":5}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":4,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"6","Sn":"1","Sa":"6","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"8":{"n":5,"s":1},"24":{"n":6}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2791,"n":"Rafael Le\u00e3o","f":"","p":"A","r":25,"s":{"g":"7","s":"74","n":"14","a":"5.29","d":"1.18","Sg":"6","Ss":"46","Sn":"8","Sa":"5.81","Sd":"1.14","Og":"7","Os":"74","On":"14","Oa":"5.29","Od":"1.18","Ap":"14","p":{"8":{"n":4.5,"s":1},"11":{"n":6,"g":1},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1},"17":{"n":4},"18":{"n":6,"g":1},"19":{"n":5.5,"g":1},"20":{"n":6.5,"g":1},"21":{"n":6.5,"g":1},"22":{"n":4},"23":{"n":7,"g":1},"24":{"n":7,"g":1}}},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3122,"n":"Niasse","f":"Cheikh","p":"D","r":1,"s":{"n":0},"c":12},{"i":3123,"n":"Okou","f":"Teddy","p":"A","r":1,"s":{"n":0},"c":12},{"i":3359,"n":"Reinildo","f":"","p":"D","r":4,"s":{"n":0},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":17,"s":{"g":"9","s":"102","n":"21","a":"4.88","d":"1.37","Sg":"2","Ss":"21","Sn":"4","Sa":"5.25","Sd":"0.56","Og":"10","Oao":"1","Os":"129","On":"27","Oa":"4.8","Od":"1.44","Ap":"26","p":{"32":{"n":7,"g":1},"1":{"n":7.5,"g":1,"s":1},"2":{"n":3},"3":{"n":4},"4":{"n":6.5,"g":1},"6":{"n":6.5,"g":1},"7":{"n":3.5},"8":{"n":4},"9":{"n":6,"g":1},"10":{"n":4.5},"12":{"n":3.5,"s":1},"13":{"n":2.5},"14":{"n":6.5,"g":1},"15":{"n":4},"16":{"n":7,"g":2},"17":{"n":4.5,"s":1},"18":{"n":4},"19":{"n":4},"21":{"n":5.5,"g":1},"22":{"n":4.5},"23":{"n":5},"24":{"n":6,"g":1}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":14,"s":{"s":"19","n":"4","a":"4.75","d":"0.75","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"83","On":"16","Oa":"5.19","Od":"1.06","Gp":"16","p":{"32":{"n":5},"9":{"n":3.5},"22":{"n":5.5},"23":{"n":5},"24":{"n":5}}},"c":13},{"i":24,"n":"Sidibe","f":"Djibril","p":"D","r":9,"s":{"s":"57","n":"13","a":"4.38","d":"0.71","Ss":"18","Sn":"4","Sa":"4.5","Sd":"0.79","Os":"118","On":"24","Oa":"4.92","Od":"1.28","Mp":"3","Dp":"20","p":{"32":{"n":5},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"5":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":3.5},"13":{"n":3},"17":{"n":4.5,"s":1},"21":{"n":4,"s":1},"22":{"n":3.5},"23":{"n":5},"24":{"n":5.5}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":12,"s":{"g":"1","s":"99","n":"21","a":"4.71","d":"0.92","Ss":"41","Sn":"9","Sa":"4.61","Sd":"1.17","Og":"2","Os":"163","On":"33","Oa":"4.94","Od":"0.94","Dp":"33","p":{"32":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4},"16":{"n":6.5},"17":{"n":4.5},"18":{"n":4},"19":{"n":3},"20":{"n":6},"21":{"n":3.5},"22":{"n":4},"23":{"n":6},"24":{"n":4}}},"c":13},{"i":60,"n":"Vainqueur","f":"William","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"22":{"n":5,"s":1}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":6,"s":{"s":"79","n":"16","a":"4.97","d":"0.84","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"140","On":"28","Oa":"5.02","Od":"1","Mp":"2","Dp":"26","p":{"32":{"n":5},"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"7":{"n":6},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5},"17":{"n":5.5},"18":{"n":3.5},"23":{"n":5},"24":{"n":6}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.41","Og":"1","Os":"58","On":"12","Oa":"4.88","Od":"0.51","Dp":"9","p":{"2":{"n":5},"3":{"n":4.5},"10":{"n":5},"12":{"n":4}}},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":6,"s":{"s":"28","n":"6","a":"4.75","d":"0.75","Og":"1","Os":"83","On":"17","Oa":"4.91","Od":"1.02","Mp":"1","Dp":"15","p":{"32":{"n":5,"s":1},"6":{"n":5},"8":{"n":4.5},"9":{"n":3.5},"15":{"n":5},"16":{"n":6},"18":{"n":4.5}}},"c":13},{"i":284,"n":"Rony Lopes","f":"","p":"M","r":14,"s":{"g":"1","s":"51","n":"10","a":"5.15","d":"1.12","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.68","Og":"12","Os":"131","On":"24","Oa":"5.48","Od":"1.18","Mp":"19","Ap":"4","p":{"32":{"n":6,"g":1},"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":3.5},"17":{"n":6},"20":{"n":4.5},"21":{"n":3.5},"22":{"n":5},"23":{"n":5},"24":{"n":5.5}}},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0,"Os":"16","On":"4","Oa":"4","Od":"1","Mp":"1","Dp":"3","p":{"32":{"n":5}}},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":7,"s":{"s":"21","n":"4","a":"5.38","d":"0.41","Os":"31","On":"6","Oa":"5.25","Od":"0.38","Dp":"4","p":{"1":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":6,"s":{"s":"13","n":"3","a":"4.33","d":"0.94","Os":"45","On":"9","Oa":"5","Od":"0.82","Mp":"2","Dp":"4","p":{"5":{"n":5,"s":1},"6":{"n":5},"8":{"n":3}}},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":2,"s":{"s":"4","n":"1","a":"4","Os":"17","On":"3","Oa":"5.67","Od":"1.25","Gp":"3","p":{"10":{"n":4}}},"c":13},{"i":646,"n":"F\u00e0bregas","f":"Cesc","p":"M","r":19,"s":{"g":"1","s":"50","n":"10","a":"5.05","d":"0.47","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Og":"2","Os":"106","On":"20","Oa":"5.33","Od":"0.9","Mp":"19","p":{"20":{"n":5.5},"22":{"n":5.5},"23":{"n":6,"g":1},"24":{"n":5},"10":{"n":5,"e":3265,"c":25,"s":1},"11":{"n":4.5,"e":3276,"c":25,"s":1},"12":{"n":5,"e":3285,"c":25,"s":1},"15":{"n":4.5,"e":3314,"c":25},"18":{"n":5,"e":3341,"c":25,"s":1},"21":{"n":4.5,"e":3371,"c":25,"s":1}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":6,"s":{"s":"49","n":"11","a":"4.45","d":"0.54","Os":"59","On":"13","Oa":"4.54","Od":"0.54","Mp":"11","p":{"5":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4},"12":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5},"18":{"n":4.5}}},"c":13},{"i":884,"n":"Adama Traor\u00e9","f":"","p":"M","r":8,"s":{"s":"28","n":"6","a":"4.67","d":"0.47","Os":"28","On":"6","Oa":"4.67","Od":"0.47","Mp":"5","Ap":"1","p":{"3":{"n":4},"5":{"n":4.5,"s":1},"6":{"n":4.5},"8":{"n":4.5},"11":{"n":5.5,"s":1},"19":{"n":5,"s":1}}},"c":13},{"i":918,"n":"Nkoudou","f":"Georges-K\u00e9vin","p":"M","r":7,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"5","Sn":"1","Sa":"5","Os":"34","On":"7","Oa":"4.86","Od":"0.64","Mp":"4","p":{"24":{"n":5,"s":1},"23":{"n":6,"e":3390,"c":24,"s":1}}},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":2,"s":{"s":"31","n":"7","a":"4.43","d":"0.49","Og":"1","Os":"45","On":"10","Oa":"4.5","Od":"0.67","Mp":"3","Ap":"4","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"13":{"n":4,"s":1}}},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0,"Os":"29","On":"7","Oa":"4.14","Od":"0.35","Ap":"4"},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":9,"s":{"s":"98","n":"19","a":"5.18","d":"0.96","Os":"98","On":"19","Oa":"5.18","Od":"0.96","Gp":"19","p":{"1":{"n":5.5},"2":{"n":6.5},"3":{"n":6.5},"4":{"n":4},"5":{"n":6},"6":{"n":5},"7":{"n":5},"8":{"n":5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6.5},"17":{"n":6},"18":{"n":6},"19":{"n":4.5},"20":{"n":4},"21":{"n":3}}},"c":13},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":14,"s":{"s":"116","n":"23","a":"5.04","d":"0.81","Ss":"48","Sn":"10","Sa":"4.85","Sd":"0.71","Os":"153","On":"32","Oa":"4.78","Od":"0.89","Mp":"3","Dp":"28","p":{"1":{"n":5,"e":2734,"c":12},"2":{"n":5,"e":2746,"c":12},"3":{"n":5,"e":2754,"c":12},"4":{"n":5,"e":2762,"c":12},"5":{"n":5,"e":2772,"c":12},"6":{"n":5,"e":2784,"c":12},"7":{"n":6,"e":2793,"c":12},"8":{"n":6.5,"e":2804,"c":12},"9":{"n":5,"e":2816,"c":12},"10":{"n":6.5,"e":2823,"c":12},"11":{"n":6,"e":2836,"c":12},"12":{"n":4,"e":2848,"c":12},"13":{"n":3.5,"e":2855,"c":12},"15":{"n":5,"e":2875,"c":12},"16":{"n":6,"e":2887,"c":12},"17":{"n":5.5,"e":2894,"c":12},"18":{"n":4.5,"e":2910,"c":12},"19":{"n":5,"e":2914,"c":12},"20":{"n":5.5},"21":{"n":3.5},"22":{"n":4},"23":{"n":4.5},"24":{"n":5}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"s":"62","n":"15","a":"4.17","d":"0.51","Og":"2","Os":"87","On":"20","Oa":"4.38","Od":"0.85","Mp":"1","Ap":"17","p":{"5":{"n":4},"6":{"n":4,"s":1},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5,"s":1},"11":{"n":4},"12":{"n":3},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1},"17":{"n":4.5},"18":{"n":4.5,"s":1},"19":{"n":4},"20":{"n":4,"s":1},"21":{"n":5,"s":1},"22":{"n":4,"s":1}}},"c":13},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":5,"s":{"s":"44","n":"9","a":"4.89","d":"0.7","Og":"2","Os":"107","On":"21","Oa":"5.1","Od":"0.85","Mp":"21","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":6},"7":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":4}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":6,"s":{"g":"1","s":"25","n":"5","a":"5.1","d":"0.97","Og":"7","Os":"63","On":"11","Oa":"5.77","Od":"1.29","Mp":"2","Ap":"7","p":{"1":{"n":7,"g":1},"2":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":4.5},"17":{"n":4.5,"s":1}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":14,"s":{"n":0,"Og":"1","Os":"32","On":"6","Oa":"5.33","Od":"1.25","Mp":"3","Ap":"2","p":{"32":{"n":5}}},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":2,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":5,"s":{"s":"15","n":"3","a":"5","Os":"38","On":"7","Oa":"5.43","Od":"0.49","Mp":"1","Dp":"5","p":{"1":{"n":5,"s":1},"17":{"n":5},"20":{"n":5,"s":1}}},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":3,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"19":{"n":3.5}}},"c":13},{"i":2198,"n":"Adrien Silva","f":"","p":"M","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Ss":"10","Sn":"2","Sa":"5","Os":"60","On":"13","Oa":"4.65","Od":"0.6","Mp":"11","Ap":"1","p":{"23":{"n":5,"s":1},"24":{"n":5,"s":1},"1":{"n":4.5,"e":3168,"c":29},"2":{"n":5,"e":3180,"c":29,"s":1}}},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":5,"s":{"g":"1","s":"15","n":"3","a":"5","d":"1.08","Og":"1","Os":"27","On":"6","Oa":"4.5","Od":"0.91","Ap":"3","p":{"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5,"s":1},"7":{"n":4,"s":1}}},"c":13},{"i":2459,"n":"Gelson Martins","f":"","p":"A","r":7,"s":{"g":"1","s":"48","n":"10","a":"4.8","d":"0.87","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"1","Os":"48","On":"10","Oa":"4.8","Od":"0.87","Mp":"2","Ap":"8","p":{"23":{"n":5.5},"24":{"n":7,"g":1},"1":{"n":4.5,"e":1980,"c":54,"s":1},"2":{"n":4.5,"e":1985,"c":54,"s":1},"6":{"n":4.5,"e":2024,"c":54,"s":1},"11":{"n":4,"e":2077,"c":54},"12":{"n":5,"e":2089,"c":54,"s":1},"14":{"n":5,"e":2108,"c":54,"s":1},"16":{"n":4,"e":2127,"c":54,"s":1},"17":{"n":4,"e":2133,"c":54,"s":1}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":9,"s":{"s":"36","n":"8","a":"4.56","d":"0.53","Os":"36","On":"8","Oa":"4.56","Od":"0.53","Mp":"8","p":{"8":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":4},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5.5},"18":{"n":4}}},"c":13},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":7,"s":{"s":"57","n":"13","a":"4.42","d":"0.51","Os":"57","On":"13","Oa":"4.42","Od":"0.51","Mp":"12","Ap":"1","p":{"1":{"n":5},"2":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":4},"11":{"n":5},"12":{"n":3.5},"13":{"n":5},"14":{"n":4},"15":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"19":{"n":3.5}}},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":13,"s":{"g":"1","s":"74","n":"16","a":"4.63","d":"0.93","Sg":"1","Ss":"25","Sn":"5","Sa":"5.1","Sd":"1.07","Og":"1","Os":"74","On":"16","Oa":"4.63","Od":"0.93","Mp":"9","Ap":"7","p":{"6":{"n":4.5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5},"14":{"n":5},"15":{"n":5},"17":{"n":5},"18":{"n":2.5},"20":{"n":4},"21":{"n":4.5},"22":{"n":5.5,"s":1},"23":{"n":7,"g":1},"24":{"n":4.5}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":9,"s":{"g":"1","s":"83","n":"18","a":"4.64","d":"0.74","Og":"1","Os":"83","On":"18","Oa":"4.64","Od":"0.74","Mp":"9","Dp":"9","p":{"4":{"n":3},"5":{"n":5.5},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5,"g":1},"12":{"n":4.5},"13":{"n":4},"14":{"n":5},"15":{"n":5.5},"16":{"n":6},"17":{"n":4},"18":{"n":4},"19":{"n":4},"20":{"n":4.5},"21":{"n":4.5},"22":{"n":4.5}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"13":{"n":5,"s":1}}},"c":13},{"i":2954,"n":"Massengo","f":"Han-Noah","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"18":{"n":5,"s":1}}},"c":13},{"i":2955,"n":"Gouano","f":"Gobe","p":"A","r":1,"s":{"n":0},"c":13},{"i":2956,"n":"Biancone","f":"Giulian","p":"D","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"19":{"n":4}}},"c":13},{"i":2958,"n":"Henin","f":"Yanis","p":"G","r":1,"s":{"n":0},"c":13},{"i":2959,"n":"Kephren Thuram","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2961,"n":"Badiashile Mukinayi","f":"Benoit","p":"D","r":9,"s":{"g":"1","s":"38","n":"8","a":"4.75","d":"1.03","Sg":"1","Ss":"38","Sn":"8","Sa":"4.75","Sd":"1.03","Og":"1","Os":"38","On":"8","Oa":"4.75","Od":"1.03","Dp":"8","p":{"17":{"n":5,"g":1},"18":{"n":5},"19":{"n":4},"20":{"n":5.5},"21":{"n":2.5},"22":{"n":4.5},"23":{"n":5.5},"24":{"n":6}}},"c":13},{"i":3362,"n":"Carlos Vinicius","f":"","p":"A","r":8,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"24":{"n":4,"s":1}}},"c":13},{"i":3498,"n":"Naldo","f":"","p":"D","r":9,"s":{"n":0},"c":13},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":7,"s":{"s":"54","n":"12","a":"4.54","d":"0.25","Os":"117","On":"25","Oa":"4.7","Od":"0.72","Mp":"11","Ap":"13","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"10":{"n":4,"s":1},"11":{"n":5},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":4.5},"18":{"n":4.5,"s":1},"19":{"n":4.5,"s":1},"20":{"n":5},"21":{"n":4.5,"s":1}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":7,"s":{"s":"82","n":"18","a":"4.58","d":"0.92","Ss":"5","Sn":"1","Sa":"5","Os":"125","On":"27","Oa":"4.65","Od":"0.84","Dp":"27","p":{"2":{"n":4.5,"s":1},"4":{"n":4},"5":{"n":3.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":3},"13":{"n":3},"14":{"n":3.5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4},"18":{"n":5,"s":1},"22":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":10,"s":{"g":"2","s":"58","n":"13","a":"4.46","d":"0.89","Ss":"4","Sn":"1","Sa":"4.5","Og":"8","Os":"121","On":"25","Oa":"4.84","Od":"1.21","Mp":"9","Ap":"16","p":{"1":{"n":4.5},"2":{"n":6,"g":1},"3":{"n":3.5},"4":{"n":4},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":4},"18":{"n":4},"19":{"n":6.5,"g":1,"s":1},"20":{"n":5},"22":{"n":4.5},"24":{"n":4.5,"s":1}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":8,"s":{"s":"90","n":"21","a":"4.31","d":"1.14","Ss":"4","Sn":"1","Sa":"4","Os":"153","On":"34","Oa":"4.51","Od":"1.2","Dp":"34","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"5":{"n":3.5},"6":{"n":3},"7":{"n":6},"8":{"n":6},"9":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":2.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3.5},"17":{"n":4},"18":{"n":5},"19":{"n":6},"20":{"n":5},"21":{"n":2.5},"22":{"n":3},"24":{"n":4}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":6,"s":{"s":"85","n":"17","a":"5","d":"1.1","Os":"154","On":"31","Oa":"4.97","Od":"1.18","Gp":"31","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":4},"7":{"n":6},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":4},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3},"17":{"n":4.5}}},"c":14},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":7,"s":{"g":"1","s":"41","n":"9","a":"4.61","d":"1.07","Og":"3","Os":"70","On":"15","Oa":"4.7","Od":"1.19","Mp":"15","p":{"3":{"n":3.5},"4":{"n":4},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":6},"13":{"n":4.5},"18":{"n":6.5,"g":1},"21":{"n":4.5},"22":{"n":3.5}}},"c":14},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":7,"s":{"g":"1","s":"93","n":"20","a":"4.68","d":"0.75","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"136","On":"30","Oa":"4.55","Od":"0.73","Mp":"21","Ap":"5","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5,"s":1},"5":{"n":3.5,"s":1},"6":{"n":4},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":3},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":6.5,"g":1},"17":{"n":4},"18":{"n":5},"19":{"n":5.5},"20":{"n":5},"22":{"n":4.5},"24":{"n":4.5}}},"c":14},{"i":231,"n":"Petric","f":"Denis","p":"G","r":1,"s":{"n":0},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":8,"s":{"g":"3","s":"84","n":"17","a":"4.94","d":"1.22","Ss":"5","Sn":"1","Sa":"5.5","Og":"4","Os":"143","On":"29","Oa":"4.93","Od":"1.32","Mp":"21","Ap":"4","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":7.5,"g":1},"9":{"n":7,"g":1},"10":{"n":4},"11":{"n":6,"g":1},"12":{"n":2.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4},"24":{"n":5.5,"s":1}}},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":12,"s":{"g":"1","s":"93","n":"20","a":"4.68","d":"1.09","Og":"2","Os":"150","On":"31","Oa":"4.85","Od":"1.12","Mp":"30","p":{"1":{"n":4.5,"s":1},"2":{"n":5.5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":3},"13":{"n":3.5},"14":{"n":4},"15":{"n":6},"16":{"n":4.5},"17":{"n":6.5,"g":1},"19":{"n":5.5},"20":{"n":4},"21":{"n":2.5}}},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":6,"s":{"s":"62","n":"15","a":"4.17","d":"0.94","Os":"119","On":"27","Oa":"4.43","Od":"0.98","Mp":"1","Dp":"26","p":{"1":{"n":4},"2":{"n":3.5},"3":{"n":5,"s":1},"5":{"n":3},"6":{"n":4},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3},"13":{"n":3},"14":{"n":3.5},"17":{"n":4.5},"19":{"n":5},"21":{"n":3}}},"c":14},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":7,"s":{"s":"16","n":"4","a":"4.13","d":"0.54","Ss":"3","Sn":"1","Sa":"3.5","Os":"16","On":"4","Oa":"4.13","Od":"0.54","Ap":"4","p":{"19":{"n":4},"20":{"n":5,"s":1},"21":{"n":4},"24":{"n":3.5}}},"c":14},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":9,"s":{"s":"100","n":"21","a":"4.79","d":"1.04","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"161","On":"33","Oa":"4.89","Od":"1.05","Mp":"27","Ap":"1","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"s":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":3.5},"11":{"n":6},"12":{"n":2.5},"13":{"n":4},"15":{"n":6},"16":{"n":4.5},"17":{"n":4.5},"18":{"n":6},"19":{"n":7},"20":{"n":5},"21":{"n":4,"s":1},"22":{"n":3.5},"24":{"n":4}}},"c":14},{"i":790,"n":"Djilobodji","f":"Papy","p":"D","r":7,"s":{"s":"7","n":"2","a":"3.75","d":"0.25","Os":"67","On":"15","Oa":"4.5","Od":"1.17","Dp":"15","p":{"21":{"n":4,"s":1},"22":{"n":3.5}}},"c":14},{"i":905,"n":"Ndong","f":"Didier","p":"M","r":8,"s":{"s":"13","n":"3","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"13","On":"3","Oa":"4.5","Mp":"3","p":{"20":{"n":4.5,"s":1},"22":{"n":4.5,"s":1},"24":{"n":4.5}}},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":6,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"19","On":"5","Oa":"3.9","Od":"1.02","Dp":"5","p":{"10":{"n":5},"11":{"n":4.5}}},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":11,"s":{"g":"7","s":"93","n":"19","a":"4.89","d":"1.44","Ss":"5","Sn":"1","Sa":"5","Og":"8","Os":"149","On":"31","Oa":"4.81","Od":"1.3","Mp":"16","Ap":"12","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":4},"4":{"n":5.5,"g":1},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":3},"9":{"n":2},"13":{"n":7,"g":2},"14":{"n":5,"g":1},"15":{"n":4.5},"16":{"n":5.5},"17":{"n":4},"18":{"n":6},"19":{"n":7,"g":1},"20":{"n":3.5},"21":{"n":3},"22":{"n":5},"24":{"n":5}}},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":9,"s":{"s":"50","n":"10","a":"5","d":"0.92","Ss":"5","Sn":"1","Sa":"5.5","Os":"92","On":"19","Oa":"4.84","Od":"0.76","Mp":"13","p":{"1":{"n":4.5},"5":{"n":4},"6":{"n":5},"10":{"n":5,"s":1},"14":{"n":6},"18":{"n":6},"19":{"n":6},"21":{"n":3},"22":{"n":5},"24":{"n":5.5}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":11,"s":{"g":"1","s":"81","n":"17","a":"4.76","d":"1.45","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"124","On":"26","Oa":"4.77","Od":"1.35","Dp":"25","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":3.5},"4":{"n":5},"5":{"n":3},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"12":{"n":3},"15":{"n":5},"16":{"n":4.5},"18":{"n":7.5,"g":1},"19":{"n":7.5},"20":{"n":5},"21":{"n":2},"22":{"n":5},"24":{"n":4}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":9,"s":{"s":"101","n":"21","a":"4.81","d":"1.01","Ss":"4","Sn":"1","Sa":"4","Os":"140","On":"29","Oa":"4.83","Od":"0.95","Mp":"1","Dp":"27","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":6},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":4},"18":{"n":7},"19":{"n":6.5},"20":{"n":4.5},"21":{"n":2.5},"22":{"n":4.5},"24":{"n":4}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":13,"s":{"s":"30","n":"6","a":"5","d":"1.22","Ss":"5","Sn":"1","Sa":"5","Os":"30","On":"6","Oa":"5","Od":"1.22","Gp":"6","p":{"18":{"n":5.5},"19":{"n":6.5},"20":{"n":5},"21":{"n":2.5},"22":{"n":5.5},"24":{"n":5}}},"c":14},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":4,"s":{"s":"52","n":"12","a":"4.33","d":"0.77","Os":"90","On":"20","Oa":"4.5","Od":"0.69","Mp":"15","p":{"1":{"n":4,"e":2735,"c":42},"2":{"n":4.5,"e":2742,"c":42},"3":{"n":5,"e":2752,"c":42,"s":1},"5":{"n":3},"6":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":2.5},"13":{"n":4.5,"s":1},"19":{"n":5,"s":1}}},"c":14},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":7,"s":{"s":"53","n":"12","a":"4.46","d":"0.56","Og":"2","Os":"110","On":"24","Oa":"4.6","Od":"0.78","Mp":"6","Ap":"9","p":{"1":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"15":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":4.5},"18":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"21":{"n":3}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":9,"s":{"s":"45","n":"10","a":"4.5","d":"0.32","Os":"45","On":"10","Oa":"4.5","Od":"0.32","Ap":"10","p":{"6":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":14},{"i":2722,"n":"Traor\u00e9","f":"Cheick","p":"D","r":5,"s":{"s":"43","n":"10","a":"4.35","d":"1.03","Ss":"4","Sn":"1","Sa":"4","Os":"43","On":"10","Oa":"4.35","Od":"1.03","Dp":"10","p":{"1":{"n":5,"s":1},"3":{"n":3},"4":{"n":4.5},"7":{"n":5},"12":{"n":2},"15":{"n":5.5,"s":1},"16":{"n":5,"s":1},"18":{"n":5},"22":{"n":4.5,"s":1},"24":{"n":4}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":4,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"10":{"n":5},"11":{"n":5.5,"s":1}}},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":2,"s":{"n":0},"c":14},{"i":2943,"n":"Ako","f":"Steven","p":"D","r":1,"s":{"n":0},"c":14},{"i":2948,"n":"Boudjemaa","f":"Mehdi","p":"M","r":1,"s":{"n":0},"c":14},{"i":2949,"n":"Phaeton","f":"Matthias","p":"M","r":1,"s":{"n":0},"c":14},{"i":2997,"n":"Johan Larsson","f":"","p":"D","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"20":{"n":4}}},"c":14},{"i":3124,"n":"Merghem","f":"Mehdi","p":"M","r":3,"s":{"n":0},"c":14},{"i":40,"n":"Delort","f":"Andy","p":"A","r":23,"s":{"g":"9","s":"126","n":"23","a":"5.5","d":"0.96","Sg":"2","Ss":"37","Sn":"7","Sa":"5.29","Sd":"0.65","Og":"10","Os":"174","On":"33","Oa":"5.29","Od":"1.02","Mp":"5","Ap":"25","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":4},"7":{"n":6.5,"g":1},"8":{"n":6,"g":1},"9":{"n":6.5,"g":1},"10":{"n":6,"g":1},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":4},"14":{"n":7.5,"g":2},"15":{"n":6.5},"16":{"n":4},"18":{"n":5},"19":{"n":4},"20":{"n":6},"21":{"n":5},"22":{"n":6},"23":{"n":5.5,"g":1},"24":{"n":5.5,"g":1}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Og":"5","Os":"72","On":"15","Oa":"4.8","Od":"1.51","Ap":"11","p":{"29":{"n":4,"s":1},"1":{"n":4}}},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":19,"s":{"g":"1","s":"127","n":"23","a":"5.52","d":"0.76","Ss":"38","Sn":"7","Sa":"5.43","Sd":"0.82","Og":"4","Os":"209","On":"37","Oa":"5.65","Od":"0.8","Mp":"37","p":{"29":{"n":5},"1":{"n":4.5},"2":{"n":7,"g":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":7},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5.5},"18":{"n":4.5},"19":{"n":5.5},"20":{"n":6},"21":{"n":5.5},"22":{"n":7},"23":{"n":5},"24":{"n":4.5}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":17,"s":{"s":"112","n":"21","a":"5.36","d":"0.68","Ss":"37","Sn":"7","Sa":"5.36","Sd":"0.79","Os":"168","On":"31","Oa":"5.44","Od":"0.63","Dp":"31","p":{"29":{"n":6},"1":{"n":5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5},"18":{"n":4.5},"19":{"n":5},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":7},"23":{"n":5.5},"24":{"n":4.5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":17,"s":{"g":"1","s":"106","n":"20","a":"5.33","d":"0.75","Ss":"32","Sn":"7","Sa":"4.64","Sd":"0.64","Og":"1","Os":"168","On":"32","Oa":"5.27","Od":"0.77","Dp":"30","p":{"29":{"n":5},"1":{"n":6,"g":1},"2":{"n":6},"3":{"n":5.5},"4":{"n":7},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"14":{"n":5.5},"15":{"n":6},"18":{"n":4},"19":{"n":4},"20":{"n":4},"21":{"n":5},"22":{"n":5.5},"23":{"n":5.5},"24":{"n":4.5}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":16,"s":{"s":"121","n":"23","a":"5.26","d":"0.71","Ss":"34","Sn":"7","Sa":"4.93","Sd":"0.42","Os":"192","On":"37","Oa":"5.19","Od":"0.67","Mp":"1","Dp":"35","p":{"29":{"n":5},"1":{"n":4},"2":{"n":6},"3":{"n":5},"4":{"n":6},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":5.5},"13":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":5},"18":{"n":5},"19":{"n":4.5},"20":{"n":5},"21":{"n":5.5},"22":{"n":5.5},"23":{"n":4.5},"24":{"n":4.5}}},"c":15},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":13,"s":{"g":"1","s":"109","n":"21","a":"5.19","d":"0.81","Ss":"35","Sn":"7","Sa":"5","Sd":"0.46","Og":"1","Os":"179","On":"34","Oa":"5.26","Od":"0.75","Mp":"33","p":{"29":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":8,"g":1},"13":{"n":5},"14":{"n":4,"s":1},"18":{"n":4.5,"s":1},"19":{"n":5,"s":1},"20":{"n":5,"s":1},"21":{"n":5},"22":{"n":6},"23":{"n":5},"24":{"n":4.5}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":5,"s":{"s":"22","n":"5","a":"4.5","d":"0.32","Os":"51","On":"12","Oa":"4.29","Od":"0.38","Ap":"5","p":{"29":{"n":4},"1":{"n":5,"s":1},"2":{"n":4,"s":1},"5":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"20":{"n":4.5,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":22,"s":{"g":"9","s":"116","n":"22","a":"5.3","d":"1.47","Sg":"2","Ss":"24","Sn":"4","Sa":"6","Sd":"0.94","Og":"9","Os":"156","On":"32","Oa":"4.89","Od":"1.38","Mp":"1","Ap":"26","p":{"1":{"n":3.5,"e":2733,"c":3},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":4,"s":1},"8":{"n":6.5,"g":1},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":7,"g":1},"12":{"n":8,"g":2},"13":{"n":4},"14":{"n":5.5},"15":{"n":7,"g":1},"16":{"n":3.5},"18":{"n":2},"19":{"n":4.5},"21":{"n":4.5},"22":{"n":7,"g":1},"23":{"n":6},"24":{"n":6.5,"g":1}}},"c":15},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":26,"s":{"s":"126","n":"22","a":"5.73","d":"0.75","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.24","Os":"203","On":"36","Oa":"5.64","Od":"0.79","Gp":"36","p":{"29":{"n":5},"1":{"n":6},"2":{"n":5.5},"3":{"n":6},"4":{"n":7},"5":{"n":4.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":7},"9":{"n":5},"10":{"n":6},"11":{"n":7},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6},"18":{"n":5.5},"19":{"n":5},"20":{"n":6.5},"22":{"n":5.5},"23":{"n":6},"24":{"n":5.5}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":17,"s":{"g":"1","s":"98","n":"18","a":"5.44","d":"1.01","Og":"4","Os":"154","On":"30","Oa":"5.13","Od":"1.12","Mp":"14","Ap":"15","p":{"2":{"n":6,"g":1},"3":{"n":6},"4":{"n":5.5},"7":{"n":5.5},"8":{"n":8},"9":{"n":3.5},"11":{"n":7},"12":{"n":6.5},"13":{"n":5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5},"18":{"n":5,"s":1},"19":{"n":4.5},"20":{"n":5},"21":{"n":4.5},"22":{"n":5},"23":{"n":4.5}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":1,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":4,"s":{"s":"12","n":"3","a":"4.17","d":"0.47","Og":"1","Os":"56","On":"12","Oa":"4.71","Od":"0.85","Mp":"6","Ap":"3","p":{"1":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":4.5}}},"c":15},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":1,"s":{"n":0},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"2","p":{"1":{"n":4.5}}},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":4,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"49","On":"10","Oa":"4.95","Od":"0.15","Mp":"7","p":{"5":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":5,"s":1}}},"c":15},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":19,"s":{"g":"1","s":"112","n":"21","a":"5.36","d":"0.97","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"173","On":"32","Oa":"5.42","Od":"0.91","Mp":"26","Dp":"4","p":{"29":{"n":5},"1":{"n":3},"2":{"n":5},"3":{"n":5},"4":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":6.5},"12":{"n":7},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5},"18":{"n":5},"19":{"n":7,"g":1},"20":{"n":5.5},"21":{"n":4.5},"22":{"n":5},"24":{"n":4.5}}},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":7,"s":{"s":"6","n":"1","a":"6","Os":"6","On":"1","Oa":"6","Gp":"1","p":{"21":{"n":6}}},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":6,"s":{"s":"30","n":"6","a":"5.08","d":"0.84","Og":"1","Os":"54","On":"11","Oa":"4.95","Od":"1.01","Mp":"2","Dp":"9","p":{"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"12":{"n":6},"13":{"n":4},"16":{"n":5}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":11,"s":{"s":"108","n":"22","a":"4.91","d":"0.36","Ss":"33","Sn":"7","Sa":"4.71","Sd":"0.36","Os":"163","On":"33","Oa":"4.94","Od":"0.52","Mp":"25","Ap":"4","p":{"29":{"n":5,"s":1},"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5},"18":{"n":4.5},"19":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"21":{"n":5,"s":1},"22":{"n":4.5,"s":1},"23":{"n":5.5,"s":1},"24":{"n":4.5}}},"c":15},{"i":2268,"n":"Oyongo","f":"Ambroise","p":"D","r":13,"s":{"g":"2","s":"73","n":"14","a":"5.21","d":"0.94","Og":"2","Os":"88","On":"17","Oa":"5.18","Od":"0.86","Mp":"16","Dp":"1","p":{"2":{"n":5.5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":4.5},"6":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":4},"11":{"n":6},"12":{"n":5.5,"s":1},"14":{"n":4.5},"15":{"n":4},"18":{"n":4.5},"19":{"n":5},"20":{"n":4.5}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"10":{"n":5,"s":1}}},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":12,"s":{"g":"1","s":"84","n":"18","a":"4.67","d":"0.67","Ss":"32","Sn":"7","Sa":"4.57","Sd":"0.73","Og":"1","Os":"84","On":"18","Oa":"4.67","Od":"0.67","Ap":"18","p":{"3":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1},"18":{"n":3,"s":1},"19":{"n":4.5,"s":1},"20":{"n":5.5},"21":{"n":4.5,"s":1},"22":{"n":4.5,"s":1},"23":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":20,"s":{"g":"3","s":"126","n":"23","a":"5.48","d":"1.05","Sg":"1","Ss":"36","Sn":"7","Sa":"5.21","Sd":"0.92","Og":"3","Os":"126","On":"23","Oa":"5.48","Od":"1.05","Mp":"18","Dp":"5","p":{"1":{"n":3.5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1,"s":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":7},"9":{"n":5},"10":{"n":7},"11":{"n":7},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":5},"16":{"n":5.5},"18":{"n":6},"19":{"n":3.5},"20":{"n":6.5,"g":1},"21":{"n":5},"22":{"n":5.5},"23":{"n":5.5},"24":{"n":4.5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":1,"s":{"n":0},"c":15},{"i":2995,"n":"Su\u00e1rez","f":"Math\u00edas","p":"D","r":8,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"23":{"n":5}}},"c":15},{"i":3126,"n":"Ristic","f":"Mihailo","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3","p":{"22":{"n":5,"s":1},"23":{"n":5,"s":1},"24":{"n":4,"s":1}}},"c":15},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":5,"s":{"n":0},"c":16},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":11,"s":{"g":"1","s":"96","n":"20","a":"4.83","d":"0.71","Ss":"58","Sn":"12","Sa":"4.83","Sd":"0.31","Og":"1","Os":"153","On":"32","Oa":"4.8","Od":"0.84","Mp":"32","p":{"33":{"n":6},"1":{"n":4.5},"2":{"n":5},"3":{"n":7,"g":1},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":4.5,"s":1},"9":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5,"s":1},"17":{"n":5},"18":{"n":5,"s":1},"19":{"n":5.5},"20":{"n":5,"s":1},"21":{"n":4.5},"22":{"n":4.5},"23":{"n":4.5},"24":{"n":4.5,"s":1}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":12,"s":{"g":"1","s":"124","n":"24","a":"5.17","d":"0.9","Sg":"1","Ss":"124","Sn":"24","Sa":"5.17","Sd":"0.9","Og":"1","Os":"194","On":"38","Oa":"5.11","Od":"0.88","Mp":"38","p":{"33":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":4},"16":{"n":5.5},"17":{"n":5},"18":{"n":5.5},"19":{"n":5},"20":{"n":3.5},"21":{"n":6},"22":{"n":5.5},"23":{"n":6},"24":{"n":7}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":15,"s":{"g":"2","ao":"1","s":"99","n":"19","a":"5.21","d":"1.27","Sg":"2","Ss":"97","Sn":"18","Sa":"5.39","Sd":"1.05","Og":"2","Oao":"1","Os":"123","On":"25","Oa":"4.92","Od":"1.29","Dp":"25","p":{"33":{"n":5},"1":{"n":2,"a":1},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":3.5},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":4},"16":{"n":6},"17":{"n":5},"18":{"n":6},"19":{"n":6},"20":{"n":4},"21":{"n":6},"22":{"n":4},"23":{"n":6},"24":{"n":6}}},"c":16},{"i":159,"n":"Traor\u00e9","f":"Ismael","p":"D","r":14,"s":{"g":"3","s":"90","n":"17","a":"5.29","d":"0.96","Ss":"5","Sn":"1","Sa":"5","Og":"5","Os":"161","On":"30","Oa":"5.37","Od":"1.02","Dp":"30","p":{"33":{"n":5},"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":6},"7":{"n":5.5,"s":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":7,"g":1},"11":{"n":3.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"18":{"n":5},"19":{"n":4},"24":{"n":5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":6,"s":{"s":"24","n":"5","a":"4.9","d":"0.37","Os":"44","On":"9","Oa":"4.94","Od":"0.28","Mp":"6","p":{"1":{"n":5},"2":{"n":5},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":5.5,"s":1}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":14,"s":{"g":"3","s":"99","n":"19","a":"5.21","d":"0.95","Og":"3","Oao":"1","Os":"138","On":"27","Oa":"5.11","Od":"1.03","Mp":"21","Dp":"5","p":{"1":{"n":6,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":7,"g":1},"10":{"n":5},"11":{"n":4},"12":{"n":4},"13":{"n":7.5},"14":{"n":4.5},"15":{"n":6,"g":1},"16":{"n":5.5},"17":{"n":5},"19":{"n":6},"20":{"n":4}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":12,"s":{"ao":"1","s":"98","n":"19","a":"5.16","d":"1.09","Ss":"29","Sn":"5","Sa":"5.9","Sd":"1.28","Oao":"1","Os":"160","On":"32","Oa":"5","Od":"0.97","Mp":"1","Dp":"31","p":{"33":{"n":5},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5},"18":{"n":5.5},"20":{"n":3.5},"21":{"n":7},"22":{"n":7},"23":{"n":6},"24":{"n":6}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":13,"s":{"g":"2","s":"102","n":"19","a":"5.39","d":"0.85","Ss":"26","Sn":"5","Sa":"5.3","Sd":"0.93","Og":"3","Os":"160","On":"30","Oa":"5.35","Od":"0.97","Dp":"29","p":{"2":{"n":4.5},"3":{"n":4},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"11":{"n":4,"s":1},"12":{"n":6,"g":1},"13":{"n":7},"14":{"n":6},"15":{"n":5},"16":{"n":5.5},"17":{"n":5.5,"g":1},"18":{"n":6},"20":{"n":3.5},"21":{"n":6},"22":{"n":5.5},"23":{"n":6},"24":{"n":5.5}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"29","On":"6","Oa":"4.92","Od":"1.17","Dp":"6","p":{"12":{"n":4.5,"s":1}}},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":14,"s":{"s":"114","n":"22","a":"5.18","d":"0.87","Ss":"111","Sn":"21","Sa":"5.29","Sd":"0.75","Os":"159","On":"32","Oa":"4.97","Od":"0.91","Mp":"3","Dp":"28","p":{"33":{"n":4},"1":{"n":3},"4":{"n":6},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":4.5},"18":{"n":5},"19":{"n":6},"20":{"n":4},"21":{"n":5.5},"22":{"n":5.5},"23":{"n":5.5},"24":{"n":7}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":3,"s":{"n":0,"Os":"10","On":"2","Oa":"5"},"c":16},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":17,"s":{"g":"2","s":"119","n":"22","a":"5.41","d":"1.12","Og":"6","Os":"198","On":"35","Oa":"5.66","Od":"1.13","Mp":"26","Ap":"9","p":{"33":{"n":5},"1":{"n":5},"2":{"n":4},"3":{"n":6},"4":{"n":5},"5":{"n":8,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5,"s":1},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":4.5},"14":{"n":6.5},"15":{"n":4},"16":{"n":4.5},"17":{"n":7},"18":{"n":4.5},"19":{"n":4.5},"20":{"n":3.5},"21":{"n":6},"22":{"n":6},"23":{"n":5.5}}},"c":16},{"i":371,"n":"Thomas Tour\u00e9","f":"","p":"A","r":3,"s":{"n":0,"Os":"27","On":"6","Oa":"4.5","Od":"0.76","Mp":"1"},"c":16},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":5,"s":{"n":0,"Os":"8","On":"2","Oa":"4","Dp":"1"},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":2,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0,"Os":"12","On":"3","Oa":"4","Mp":"1"},"c":16},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":11,"s":{"s":"100","n":"21","a":"4.76","d":"0.73","Os":"150","On":"31","Oa":"4.84","Od":"0.66","Mp":"14","Ap":"14","p":{"33":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4},"16":{"n":4.5},"17":{"n":3},"18":{"n":5},"19":{"n":4.5},"21":{"n":4},"22":{"n":5.5},"23":{"n":4.5}}},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":13,"s":{"g":"2","s":"89","n":"18","a":"4.94","d":"0.83","Sg":"1","Ss":"46","Sn":"9","Sa":"5.11","Sd":"0.7","Og":"3","Os":"125","On":"25","Oa":"5","Od":"0.79","Mp":"16","Ap":"4","p":{"33":{"n":6,"g":1,"s":1},"1":{"n":7,"g":1},"2":{"n":4},"3":{"n":3.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"19":{"n":6},"20":{"n":4.5},"21":{"n":6.5,"g":1,"s":1},"22":{"n":5,"s":1},"23":{"n":5,"s":1},"24":{"n":5.5}}},"c":16},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":5,"s":{"n":0},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":6,"s":{"g":"2","s":"52","n":"11","a":"4.73","d":"0.94","Sg":"2","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.75","Og":"2","Os":"76","On":"17","Oa":"4.47","Od":"0.83","Ap":"12","p":{"33":{"n":4,"s":1},"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"15":{"n":4.5,"s":1},"19":{"n":4.5,"s":1},"23":{"n":4,"s":1},"24":{"n":7.5,"g":2}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":19,"s":{"g":"7","s":"103","n":"21","a":"4.93","d":"1.13","Sg":"5","Ss":"71","Sn":"15","Sa":"4.77","Sd":"1.09","Og":"11","Os":"163","On":"34","Oa":"4.81","Od":"1.17","Ap":"34","p":{"1":{"n":6},"4":{"n":4},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":6,"g":1},"8":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":4},"16":{"n":4.5},"17":{"n":4},"18":{"n":4},"19":{"n":6.5,"g":1},"20":{"n":5.5,"g":1,"s":1},"21":{"n":4},"22":{"n":2.5},"23":{"n":6.5,"g":1},"24":{"n":4.5}}},"c":16},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":6,"s":{"s":"36","n":"8","a":"4.5","d":"0.25","Og":"2","Os":"102","On":"21","Oa":"4.86","Od":"0.85","Mp":"5","Ap":"8","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1},"17":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"19":{"n":5,"s":1}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":22,"s":{"s":"131","n":"23","a":"5.7","d":"1.13","Ss":"31","Sn":"5","Sa":"6.3","Sd":"1.03","Oao":"1","Os":"204","On":"37","Oa":"5.51","Od":"1.11","Gp":"37","p":{"33":{"n":6},"1":{"n":3.5},"2":{"n":5},"3":{"n":4},"4":{"n":8},"5":{"n":6},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":5.5},"13":{"n":6.5},"14":{"n":7},"15":{"n":5},"16":{"n":4.5},"17":{"n":4.5},"18":{"n":7},"20":{"n":4.5},"21":{"n":7},"22":{"n":7.5},"23":{"n":6},"24":{"n":6.5}}},"c":16},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":1,"s":{"n":0},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"s":1}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":4,"s":{"n":0},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":13,"s":{"s":"103","n":"21","a":"4.9","d":"0.73","Ss":"26","Sn":"5","Sa":"5.3","Sd":"0.75","Os":"103","On":"21","Oa":"4.9","Od":"0.73","Mp":"21","p":{"3":{"n":4.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":3.5},"13":{"n":5},"14":{"n":5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4},"18":{"n":3.5},"20":{"n":4.5},"21":{"n":4.5},"22":{"n":5.5},"23":{"n":6.5},"24":{"n":5.5}}},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":9,"s":{"s":"32","n":"7","a":"4.64","d":"0.52","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.51","Os":"32","On":"7","Oa":"4.64","Od":"0.52","Mp":"7","p":{"10":{"n":5,"s":1},"13":{"n":4,"s":1},"20":{"n":4,"s":1},"21":{"n":5.5,"s":1},"22":{"n":4.5,"s":1},"23":{"n":4.5,"s":1},"24":{"n":5,"s":1}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":9,"s":{"g":"1","s":"58","n":"13","a":"4.46","d":"0.6","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"58","On":"13","Oa":"4.46","Od":"0.6","Ap":"13","p":{"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4,"s":1},"17":{"n":5,"s":1},"20":{"n":3.5},"21":{"n":4,"s":1},"22":{"n":4.5,"s":1},"24":{"n":4,"s":1}}},"c":16},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"19":{"n":5}}},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":2944,"n":"Mouanga","f":"Kevin","p":"D","r":1,"s":{"n":0},"c":16},{"i":3189,"n":"Elhadji Diaw","f":"","p":"D","r":5,"s":{"n":0},"c":16},{"i":15,"n":"Fekir","f":"Nabil","p":"A","r":28,"s":{"g":"7","s":"99","n":"18","a":"5.53","d":"1.37","Sg":"5","Ss":"62","Sn":"11","Sa":"5.64","Sd":"1.46","Og":"9","Os":"151","On":"27","Oa":"5.61","Od":"1.36","Mp":"16","Ap":"9","p":{"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":6,"g":1},"6":{"n":7.5,"g":1},"8":{"n":3.5},"9":{"n":5},"12":{"n":6},"14":{"n":3.5},"15":{"n":4.5,"s":1},"16":{"n":5},"17":{"n":7.5,"g":1,"s":1},"18":{"n":7,"g":1},"19":{"n":6.5,"g":1},"20":{"n":3.5},"21":{"n":7.5,"g":1},"22":{"n":5.5},"23":{"n":7,"g":1},"24":{"n":4.5}}},"c":18},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":19,"s":{"g":"5","s":"131","n":"24","a":"5.46","d":"1.21","Sg":"5","Ss":"131","Sn":"24","Sa":"5.46","Sd":"1.21","Og":"15","Os":"221","On":"38","Oa":"5.82","Od":"1.51","Mp":"9","Ap":"26","p":{"1":{"n":7.5,"g":1},"2":{"n":5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":5.5},"9":{"n":4},"10":{"n":7,"g":1},"11":{"n":7,"g":1,"s":1},"12":{"n":4.5},"13":{"n":8.5,"g":2},"14":{"n":6},"15":{"n":4.5},"16":{"n":3.5},"17":{"n":5},"18":{"n":5.5},"19":{"n":4.5},"20":{"n":5.5},"21":{"n":6},"22":{"n":6.5},"23":{"n":5},"24":{"n":5}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":10,"s":{"g":"1","s":"69","n":"15","a":"4.63","d":"0.53","Ss":"24","Sn":"5","Sa":"4.9","Sd":"0.2","Og":"3","Os":"114","On":"25","Oa":"4.58","Od":"0.77","Mp":"3","Ap":"15","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"13":{"n":6,"g":1,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4},"17":{"n":4.5},"20":{"n":5,"s":1},"21":{"n":5},"22":{"n":5},"23":{"n":5,"s":1},"24":{"n":4.5,"s":1}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":9,"s":{"s":"43","n":"8","a":"5.44","d":"0.46","Os":"54","On":"10","Oa":"5.45","Od":"0.47","Dp":"9","p":{"8":{"n":5},"10":{"n":6},"11":{"n":5},"14":{"n":6},"15":{"n":5},"18":{"n":6},"19":{"n":5.5},"20":{"n":5}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":11,"s":{"s":"58","n":"11","a":"5.27","d":"0.89","Ss":"28","Sn":"5","Sa":"5.7","Sd":"0.93","Og":"2","Os":"132","On":"24","Oa":"5.5","Od":"1.09","Mp":"2","Dp":"22","p":{"1":{"n":5},"2":{"n":4},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4.5,"s":1},"20":{"n":4.5},"21":{"n":7,"s":1},"22":{"n":5},"23":{"n":6.5},"24":{"n":5.5}}},"c":18},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":7,"s":{"s":"43","n":"9","a":"4.83","d":"1.18","Os":"117","On":"23","Oa":"5.11","Od":"1.03","Dp":"23","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"7":{"n":7},"8":{"n":5},"9":{"n":3},"13":{"n":3.5},"16":{"n":4},"17":{"n":4.5}}},"c":18},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":6,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"31","On":"6","Oa":"5.17","Od":"1.07","Gp":"6","p":{"1":{"n":6},"2":{"n":5}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":9,"s":{"s":"56","n":"11","a":"5.14","d":"0.53","Os":"119","On":"23","Oa":"5.2","Od":"0.87","Mp":"1","Dp":"22","p":{"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":5},"5":{"n":4.5},"7":{"n":6.5},"8":{"n":5,"s":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5,"s":1},"14":{"n":4.5}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":9,"s":{"g":"2","s":"92","n":"18","a":"5.14","d":"0.64","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"123","On":"25","Oa":"4.94","Od":"0.68","Mp":"17","Ap":"6","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7,"g":1},"4":{"n":4},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5,"s":1},"18":{"n":4.5,"s":1},"19":{"n":5,"s":1},"20":{"n":5,"s":1},"21":{"n":5,"s":1},"22":{"n":5.5,"s":1},"24":{"n":5,"s":1}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":12,"s":{"s":"95","n":"18","a":"5.28","d":"0.79","Os":"174","On":"32","Oa":"5.44","Od":"0.85","Mp":"32","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5,"s":1},"7":{"n":5.5},"9":{"n":4},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5,"s":1},"16":{"n":5.5,"s":1},"17":{"n":4},"18":{"n":6.5},"19":{"n":5.5},"22":{"n":5,"s":1},"23":{"n":5,"s":1}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":25,"s":{"g":"6","s":"129","n":"24","a":"5.4","d":"1.1","Sg":"6","Ss":"129","Sn":"24","Sa":"5.4","Sd":"1.1","Og":"8","Os":"208","On":"37","Oa":"5.64","Od":"1.04","Mp":"33","Ap":"1","p":{"1":{"n":5},"2":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":7},"8":{"n":6.5,"g":1},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":7,"g":1},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":6},"16":{"n":4},"17":{"n":4.5},"18":{"n":7,"g":1},"19":{"n":4.5},"20":{"n":3.5},"21":{"n":5},"22":{"n":6.5},"23":{"n":5.5},"24":{"n":5.5}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":23,"s":{"g":"2","s":"110","n":"20","a":"5.53","d":"0.87","Sg":"2","Ss":"89","Sn":"16","Sa":"5.56","Sd":"0.95","Og":"2","Os":"110","On":"20","Oa":"5.53","Od":"0.87","Dp":"20","p":{"4":{"n":5},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"9":{"n":3.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":4},"17":{"n":5},"18":{"n":6},"19":{"n":6},"20":{"n":5},"21":{"n":5.5},"22":{"n":7,"g":1},"23":{"n":7},"24":{"n":5.5}}},"c":18},{"i":1161,"n":"Traor\u00e9","f":"Bertrand","p":"A","r":19,"s":{"g":"6","s":"113","n":"22","a":"5.16","d":"1.22","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Og":"15","Os":"200","On":"36","Oa":"5.57","Od":"1.44","Mp":"14","Ap":"22","p":{"1":{"n":6.5,"g":1},"2":{"n":4},"3":{"n":7.5,"g":1},"4":{"n":4},"5":{"n":4.5},"6":{"n":8,"g":2},"7":{"n":5},"8":{"n":6},"9":{"n":3.5},"10":{"n":5.5,"s":1},"11":{"n":4},"12":{"n":4,"s":1},"14":{"n":5,"s":1},"15":{"n":6.5,"g":1},"16":{"n":3.5},"17":{"n":6},"18":{"n":5},"19":{"n":5},"20":{"n":6,"g":1},"21":{"n":4},"23":{"n":5.5},"24":{"n":4.5}}},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":7,"s":{"s":"41","n":"8","a":"5.19","d":"1.2","Ss":"5","Sn":"1","Sa":"5","Os":"65","On":"13","Oa":"5.04","Od":"0.99","Mp":"6","Dp":"4","p":{"13":{"n":5.5},"15":{"n":5},"16":{"n":4},"17":{"n":4.5},"18":{"n":8},"19":{"n":5.5},"21":{"n":4},"24":{"n":5,"s":1}}},"c":18},{"i":1190,"n":"Mendy","f":"Ferland","p":"D","r":19,"s":{"g":"2","s":"109","n":"21","a":"5.21","d":"0.99","Sg":"1","Ss":"67","Sn":"13","Sa":"5.19","Sd":"1.01","Og":"2","Os":"184","On":"35","Oa":"5.27","Od":"1.07","Mp":"8","Dp":"26","p":{"1":{"n":6},"2":{"n":5},"3":{"n":7},"4":{"n":5.5},"5":{"n":4.5,"g":1},"6":{"n":5},"9":{"n":3.5},"10":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":3},"17":{"n":5},"18":{"n":7.5,"g":1},"19":{"n":4.5},"20":{"n":5},"21":{"n":5},"22":{"n":5},"23":{"n":6},"24":{"n":6}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":2,"s":{"n":0,"Os":"12","On":"3","Oa":"4"},"c":18},{"i":1414,"n":"NDombele","f":"Tanguy","p":"M","r":17,"s":{"s":"109","n":"22","a":"4.95","d":"0.81","Ss":"24","Sn":"5","Sa":"4.9","Sd":"0.86","Os":"191","On":"36","Oa":"5.31","Od":"1.02","Mp":"36","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":5,"s":1},"9":{"n":3.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":3.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":5.5,"s":1},"20":{"n":4.5},"21":{"n":6},"22":{"n":5.5},"23":{"n":5},"24":{"n":3.5}}},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":28,"s":{"s":"124","n":"22","a":"5.64","d":"0.99","Ss":"124","Sn":"22","Sa":"5.64","Sd":"0.99","Os":"180","On":"32","Oa":"5.63","Od":"1.03","Gp":"32","p":{"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":7},"8":{"n":5.5},"9":{"n":4},"10":{"n":7},"11":{"n":6},"12":{"n":5},"13":{"n":5},"14":{"n":7},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":5},"18":{"n":5.5},"19":{"n":5.5},"20":{"n":5.5},"21":{"n":8},"22":{"n":6},"23":{"n":7},"24":{"n":5.5}}},"c":18},{"i":1527,"n":"Pape Cheikh","f":"","p":"M","r":7,"s":{"s":"52","n":"11","a":"4.73","d":"0.45","Os":"57","On":"12","Oa":"4.75","Od":"0.43","Mp":"11","p":{"1":{"n":5,"s":1},"3":{"n":5},"4":{"n":5,"s":1},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5,"s":1},"10":{"n":5},"16":{"n":4,"s":1},"18":{"n":5,"s":1},"19":{"n":5,"s":1}}},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":20,"s":{"s":"118","n":"21","a":"5.62","d":"0.84","Ss":"41","Sn":"7","Sa":"5.86","Sd":"0.58","Og":"2","Os":"188","On":"33","Oa":"5.7","Od":"1.03","Dp":"33","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"8":{"n":5.5},"10":{"n":8},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":4},"18":{"n":6},"19":{"n":6},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":7},"23":{"n":6},"24":{"n":5}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"17":{"n":4.5}}},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":1,"s":{"n":0},"c":18},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":1,"s":{"n":0},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":23,"s":{"g":"7","s":"102","n":"19","a":"5.39","d":"1.06","Sg":"5","Ss":"80","Sn":"15","Sa":"5.37","Sd":"1.02","Og":"7","Os":"102","On":"19","Oa":"5.39","Od":"1.06","Ap":"19","p":{"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":7.5,"g":2},"8":{"n":5},"10":{"n":6,"g":1},"11":{"n":6},"12":{"n":4},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6.5,"g":1,"s":1},"16":{"n":4,"s":1},"17":{"n":6.5,"g":1,"s":1},"18":{"n":4.5,"s":1},"19":{"n":4.5,"s":1},"20":{"n":6,"s":1},"21":{"n":6.5,"g":1,"s":1},"22":{"n":4},"23":{"n":7,"g":1},"24":{"n":5}}},"c":18},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":4,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"10":{"n":4.5,"s":1}}},"c":18},{"i":2952,"n":"Ndiaye","f":"Ousseynou","p":"M","r":1,"s":{"n":0},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":16,"s":{"g":"3","s":"117","n":"22","a":"5.34","d":"1.19","Sg":"3","Ss":"84","Sn":"15","Sa":"5.6","Sd":"1.24","Og":"4","Os":"188","On":"35","Oa":"5.39","Od":"1.1","Mp":"30","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4},"4":{"n":6},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":3.5,"s":1},"10":{"n":4},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":7},"14":{"n":6.5,"g":1},"15":{"n":5},"16":{"n":7},"17":{"n":5},"18":{"n":7.5,"g":1},"19":{"n":3.5},"20":{"n":6},"21":{"n":5.5},"22":{"n":5},"23":{"n":3.5},"24":{"n":6}}},"c":19},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":25,"s":{"g":"6","s":"114","n":"22","a":"5.18","d":"1.15","Sg":"2","Ss":"27","Sn":"5","Sa":"5.4","Sd":"1.24","Og":"8","Os":"182","On":"35","Oa":"5.2","Od":"1.12","Mp":"1","Ap":"33","p":{"33":{"n":6},"1":{"n":4.5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6,"g":1},"5":{"n":7,"g":1},"6":{"n":3.5},"7":{"n":6},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":4},"14":{"n":7.5,"g":1},"15":{"n":4},"16":{"n":5},"17":{"n":5,"g":1},"18":{"n":5.5},"20":{"n":6.5,"g":1},"21":{"n":5},"22":{"n":7,"g":1},"23":{"n":3.5},"24":{"n":5}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":19,"s":{"s":"126","n":"24","a":"5.25","d":"0.98","Ss":"126","Sn":"24","Sa":"5.25","Sd":"0.98","Og":"1","Os":"197","On":"37","Oa":"5.32","Od":"1.12","Dp":"37","p":{"33":{"n":5},"1":{"n":5},"2":{"n":5.5},"3":{"n":3},"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"8":{"n":4},"9":{"n":6},"10":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":6},"16":{"n":6},"17":{"n":5},"18":{"n":5},"19":{"n":4},"20":{"n":6},"21":{"n":5.5},"22":{"n":6.5},"23":{"n":2.5},"24":{"n":5}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":13,"s":{"g":"1","s":"83","n":"16","a":"5.19","d":"1.06","Og":"3","Os":"145","On":"27","Oa":"5.37","Od":"1.18","Mp":"25","Ap":"2","p":{"33":{"n":4},"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":6.5,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":4},"9":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":6.5},"18":{"n":6.5},"19":{"n":3.5},"22":{"n":5,"s":1},"23":{"n":3.5,"s":1}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":11,"s":{"g":"2","s":"64","n":"12","a":"5.38","d":"0.71","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"2","Os":"111","On":"22","Oa":"5.07","Od":"0.87","Mp":"22","p":{"9":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"17":{"n":5.5},"18":{"n":6.5},"19":{"n":4.5},"20":{"n":5,"s":1},"21":{"n":6,"g":1,"s":1},"22":{"n":5,"s":1},"24":{"n":7,"g":1}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Os":"14","On":"3","Oa":"4.83","Od":"1.03","Gp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":3.5}}},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":12,"s":{"ao":"1","s":"111","n":"22","a":"5.07","d":"0.88","Sao":"1","Ss":"106","Sn":"21","Sa":"5.07","Sd":"0.9","Oao":"1","Os":"154","On":"31","Oa":"4.98","Od":"0.87","Dp":"26","p":{"33":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5,"a":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":6},"16":{"n":6},"17":{"n":5},"18":{"n":4.5},"19":{"n":4},"20":{"n":5},"21":{"n":4},"22":{"n":6},"23":{"n":3},"24":{"n":5.5}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":24,"s":{"s":"129","n":"21","a":"6.14","d":"1.38","Ss":"129","Sn":"21","Sa":"6.14","Sd":"1.38","Os":"205","On":"35","Oa":"5.86","Od":"1.22","Gp":"35","p":{"33":{"n":5},"4":{"n":9},"5":{"n":6.5},"6":{"n":4},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":8},"12":{"n":7.5},"13":{"n":7.5},"14":{"n":7},"15":{"n":6},"16":{"n":6},"17":{"n":6},"18":{"n":6},"19":{"n":5},"20":{"n":6.5},"21":{"n":5},"22":{"n":8},"23":{"n":4},"24":{"n":7.5}}},"c":19},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":12,"s":{"n":0,"Os":"58","On":"11","Oa":"5.27","Od":"0.75","Dp":"9","p":{"33":{"n":5}}},"c":19},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":7,"s":{"g":"1","s":"58","n":"11","a":"5.27","d":"0.65","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"58","On":"11","Oa":"5.27","Od":"0.65","Mp":"4","Dp":"7","p":{"4":{"n":6},"5":{"n":5},"7":{"n":6,"g":1},"11":{"n":5.5},"12":{"n":5},"13":{"n":5},"14":{"n":6.5},"17":{"n":5},"19":{"n":4},"20":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":6,"s":{"s":"32","n":"7","a":"4.64","d":"0.99","Ss":"8","Sn":"2","Sa":"4.25","Sd":"1.25","Os":"56","On":"12","Oa":"4.71","Od":"0.8","Mp":"4","Dp":"7","p":{"2":{"n":5},"11":{"n":5},"17":{"n":6},"19":{"n":3.5},"21":{"n":4.5},"23":{"n":3},"24":{"n":5.5}}},"c":19},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":9,"s":{"g":"1","s":"67","n":"14","a":"4.79","d":"0.45","Og":"1","Os":"72","On":"15","Oa":"4.8","Od":"0.44","Mp":"11","Ap":"4","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":6,"g":1},"8":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5},"17":{"n":4.5,"s":1},"20":{"n":5},"21":{"n":5},"23":{"n":5,"s":1}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":9,"s":{"g":"1","s":"59","n":"12","a":"4.92","d":"0.79","Og":"1","Os":"109","On":"22","Oa":"4.95","Od":"0.66","Mp":"9","Ap":"5","p":{"33":{"n":5},"1":{"n":4.5},"3":{"n":3},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":6.5,"g":1},"10":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"18":{"n":5.5,"s":1},"19":{"n":5,"s":1},"20":{"n":5.5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":6,"s":{"s":"49","n":"10","a":"4.95","d":"0.99","Os":"49","On":"10","Oa":"4.95","Od":"0.99","Mp":"3","Dp":"7","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":4.5},"10":{"n":4.5},"11":{"n":5,"s":1},"15":{"n":4.5},"16":{"n":5,"s":1}}},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":1,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":1,"s":{"n":0},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":1,"s":{"n":0},"c":19},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":4,"s":{"s":"4","n":"1","a":"4","Os":"32","On":"8","Oa":"4","Ap":"1","p":{"33":{"n":4,"s":1},"3":{"n":4,"s":1}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":16,"s":{"s":"127","n":"24","a":"5.31","d":"1.07","Ss":"127","Sn":"24","Sa":"5.31","Sd":"1.07","Os":"182","On":"34","Oa":"5.37","Od":"0.97","Mp":"32","Dp":"1","p":{"33":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":5},"17":{"n":6},"18":{"n":6},"19":{"n":3},"20":{"n":6.5},"21":{"n":4.5},"22":{"n":7.5},"23":{"n":3},"24":{"n":6}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":8,"s":{"s":"64","n":"14","a":"4.57","d":"0.68","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Os":"78","On":"17","Oa":"4.59","Od":"0.65","Ap":"15","p":{"2":{"n":4.5},"3":{"n":3},"4":{"n":4,"s":1},"5":{"n":6},"6":{"n":4,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":4.5},"22":{"n":5,"s":1},"23":{"n":4,"s":1},"24":{"n":4.5}}},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":11,"s":{"g":"1","s":"62","n":"13","a":"4.77","d":"0.67","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.89","Og":"1","Os":"62","On":"13","Oa":"4.77","Od":"0.67","Ap":"13","p":{"2":{"n":6,"g":1,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"18":{"n":4.5},"19":{"n":4},"21":{"n":5,"s":1},"22":{"n":6},"23":{"n":3.5},"24":{"n":5}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":11,"s":{"s":"108","n":"21","a":"5.14","d":"0.98","Ss":"24","Sn":"5","Sa":"4.9","Sd":"1.07","Os":"172","On":"35","Oa":"4.91","Od":"0.96","Dp":"35","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":4},"9":{"n":6},"10":{"n":5},"12":{"n":5.5},"13":{"n":7},"14":{"n":6.5},"15":{"n":6},"16":{"n":6},"18":{"n":4},"20":{"n":4.5},"21":{"n":5.5},"22":{"n":5.5},"23":{"n":3},"24":{"n":6}}},"c":19},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":5,"s":{"s":"31","n":"7","a":"4.43","d":"0.86","Os":"66","On":"14","Oa":"4.71","Od":"0.94","Mp":"5","Ap":"5","p":{"1":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":4.5,"s":1},"12":{"n":4,"s":1},"17":{"n":2.5},"19":{"n":5,"s":1},"20":{"n":5}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":5,"s":{"s":"34","n":"7","a":"4.86","d":"0.23","Os":"53","On":"11","Oa":"4.82","Od":"0.53","Mp":"5","Dp":"6","p":{"4":{"n":5,"s":1},"5":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5},"17":{"n":5,"s":1}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":1,"s":{"n":0},"c":19},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":4,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":1,"s":{"n":0},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":12,"s":{"g":"2","s":"100","n":"19","a":"5.29","d":"1.08","Og":"2","Os":"100","On":"19","Oa":"5.29","Od":"1.08","Mp":"11","Dp":"7","Ap":"1","p":{"1":{"n":4.5},"5":{"n":5.5,"s":1},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":5},"18":{"n":7.5},"19":{"n":4},"20":{"n":6},"21":{"n":3.5},"22":{"n":7,"g":1},"23":{"n":5}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":10,"s":{"s":"50","n":"11","a":"4.55","d":"1.12","Os":"50","On":"11","Oa":"4.55","Od":"1.12","Mp":"9","Ap":"2","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":4.5},"13":{"n":2.5},"17":{"n":5,"s":1},"21":{"n":5.5},"22":{"n":6.5},"23":{"n":3}}},"c":19},{"i":2945,"n":"Hamache","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":19},{"i":2946,"n":"Sylvestre","f":"Eddy","p":"M","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"19","On":"4","Oa":"4.88","Od":"0.22","Mp":"2","Ap":"2","p":{"19":{"n":4.5,"s":1},"20":{"n":5},"21":{"n":5,"s":1},"22":{"n":5}}},"c":19},{"i":2988,"n":"Drame","f":"Jawad","p":"M","r":1,"s":{"n":0},"c":19},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":17,"s":{"g":"2","s":"122","n":"23","a":"5.33","d":"1.1","Og":"2","Os":"184","On":"35","Oa":"5.27","Od":"0.98","Mp":"35","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":8,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5,"s":1},"16":{"n":7},"17":{"n":4.5},"18":{"n":4.5,"s":1},"19":{"n":7.5,"g":1},"20":{"n":5},"21":{"n":6},"22":{"n":4.5},"23":{"n":5}}},"c":20},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":2,"s":{"s":"4","n":"1","a":"4","Os":"15","On":"3","Oa":"5","Od":"0.82","Dp":"2","p":{"1":{"n":4}}},"c":20},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":2,"s":{"n":0,"Os":"46","On":"9","Oa":"5.11","Od":"0.57","Dp":"8"},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":20,"s":{"g":"5","s":"91","n":"17","a":"5.35","d":"1.29","Sg":"3","Ss":"50","Sn":"9","Sa":"5.56","Sd":"1.28","Og":"5","Os":"91","On":"17","Oa":"5.35","Od":"1.29","Mp":"9","Ap":"8","p":{"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":8,"g":1},"10":{"n":4.5},"11":{"n":3.5},"13":{"n":4.5,"s":1},"14":{"n":6,"g":1},"16":{"n":7,"g":1},"17":{"n":6.5,"g":1},"18":{"n":3.5},"19":{"n":6.5},"20":{"n":6},"21":{"n":6},"22":{"n":3.5},"23":{"n":4.5},"24":{"n":6.5,"g":1}}},"c":20},{"i":168,"n":"Mexer","f":"","p":"D","r":14,"s":{"s":"100","n":"19","a":"5.26","d":"1.09","Ss":"12","Sn":"2","Sa":"6","Os":"126","On":"24","Oa":"5.25","Od":"0.99","Dp":"20","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4.5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4},"8":{"n":5.5},"9":{"n":5.5},"12":{"n":5.5},"14":{"n":4.5},"15":{"n":3},"16":{"n":7.5},"18":{"n":4.5},"19":{"n":7},"20":{"n":6},"21":{"n":5.5},"23":{"n":6},"24":{"n":6}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":22,"s":{"g":"2","s":"117","n":"22","a":"5.32","d":"1.37","Sg":"2","Ss":"107","Sn":"20","Sa":"5.35","Sd":"1.43","Og":"3","Oao":"2","Os":"167","On":"33","Oa":"5.06","Od":"1.31","Dp":"33","p":{"2":{"n":5,"s":1},"3":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":7,"g":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":4},"15":{"n":2},"16":{"n":7},"17":{"n":6},"18":{"n":4},"19":{"n":6.5},"20":{"n":8,"g":1},"21":{"n":5},"22":{"n":3.5},"23":{"n":6.5},"24":{"n":7}}},"c":20},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":26,"s":{"g":"5","s":"129","n":"24","a":"5.38","d":"0.98","Sg":"5","Ss":"129","Sn":"24","Sa":"5.38","Sd":"0.98","Og":"8","Os":"190","On":"36","Oa":"5.28","Od":"1.06","Mp":"22","Ap":"12","p":{"1":{"n":4},"2":{"n":6.5,"g":1},"3":{"n":7,"g":1},"4":{"n":5.5},"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":6.5,"g":1},"13":{"n":6},"14":{"n":5.5},"15":{"n":4.5,"g":1},"16":{"n":7},"17":{"n":6},"18":{"n":4.5},"19":{"n":6.5},"20":{"n":4.5},"21":{"n":5},"22":{"n":3},"23":{"n":6},"24":{"n":6,"s":1}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":13,"s":{"g":"1","ao":"1","s":"85","n":"17","a":"5","d":"1","Og":"1","Oao":"1","Os":"156","On":"30","Oa":"5.2","Od":"0.89","Dp":"29","p":{"2":{"n":5},"3":{"n":4,"a":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4.5},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":3.5},"16":{"n":6.5},"18":{"n":4.5},"19":{"n":6},"20":{"n":6.5}}},"c":20},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":8,"s":{"g":"2","s":"35","n":"7","a":"5.07","d":"1.5","Sg":"1","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.31","Og":"5","Os":"88","On":"17","Oa":"5.21","Od":"1.24","Mp":"5","Ap":"7","p":{"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":3},"22":{"n":5,"s":1},"23":{"n":4.5,"s":1},"24":{"n":7.5,"g":1}}},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":13,"s":{"g":"1","s":"64","n":"13","a":"4.92","d":"0.96","Sg":"1","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.65","Og":"1","Os":"100","On":"20","Oa":"5","Od":"0.87","Mp":"4","Dp":"12","Ap":"2","p":{"4":{"n":5,"s":1},"5":{"n":3.5},"7":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5},"12":{"n":5},"13":{"n":5},"16":{"n":5,"s":1},"17":{"n":6},"18":{"n":4.5,"s":1},"22":{"n":3},"23":{"n":7,"g":1},"24":{"n":5.5}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"12":{"n":5,"s":1}}},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":10,"s":{"s":"80","n":"16","a":"5","d":"0.66","Og":"2","Os":"143","On":"28","Oa":"5.11","Od":"0.7","Mp":"23","Dp":"1","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5.5,"s":1},"5":{"n":4},"6":{"n":5},"8":{"n":6},"11":{"n":4.5,"s":1},"14":{"n":5.5,"s":1},"15":{"n":5,"s":1},"17":{"n":4.5},"18":{"n":3.5},"19":{"n":5.5,"s":1},"20":{"n":5,"s":1},"21":{"n":6},"22":{"n":5,"s":1}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":8,"s":{"s":"8","n":"2","a":"4","d":"0.5","Og":"2","Os":"60","On":"14","Oa":"4.29","Od":"0.82","Ap":"8","p":{"1":{"n":3.5},"2":{"n":4.5}}},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":13,"s":{"g":"4","s":"82","n":"16","a":"5.13","d":"0.89","Sg":"2","Ss":"27","Sn":"5","Sa":"5.4","Sd":"1.2","Og":"4","Os":"82","On":"16","Oa":"5.13","Od":"0.89","Mp":"3","Ap":"13","p":{"5":{"n":4,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5},"18":{"n":6.5,"g":1,"s":1},"20":{"n":4},"21":{"n":4},"22":{"n":6,"g":1},"23":{"n":6},"24":{"n":7,"g":1}}},"c":20},{"i":1182,"n":"Hamari Traor\u00e9","f":"","p":"D","r":16,"s":{"s":"110","n":"22","a":"5","d":"0.94","Ss":"6","Sn":"1","Sa":"6.5","Os":"143","On":"28","Oa":"5.11","Od":"0.89","Mp":"1","Dp":"27","p":{"1":{"n":3},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"6":{"n":4},"7":{"n":4.5},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":6},"17":{"n":6.5},"18":{"n":4},"19":{"n":5.5},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":4},"24":{"n":6.5}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":20,"s":{"g":"4","s":"112","n":"22","a":"5.11","d":"1.16","Sg":"1","Ss":"34","Sn":"6","Sa":"5.75","Sd":"1.25","Og":"9","Os":"191","On":"36","Oa":"5.32","Od":"1.14","Mp":"28","Ap":"6","p":{"1":{"n":5},"2":{"n":3.5},"3":{"n":6,"g":1},"4":{"n":6.5},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5,"s":1},"14":{"n":6,"g":1},"15":{"n":3},"16":{"n":5.5},"17":{"n":6,"g":1,"s":1},"19":{"n":8,"g":1},"20":{"n":5.5},"21":{"n":5},"22":{"n":4},"23":{"n":5.5},"24":{"n":6.5}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":17,"s":{"g":"2","s":"120","n":"23","a":"5.24","d":"1.12","Ss":"33","Sn":"6","Sa":"5.5","Sd":"1.15","Og":"7","Os":"193","On":"37","Oa":"5.23","Od":"1.29","Mp":"37","p":{"1":{"n":4.5,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":7},"5":{"n":4},"6":{"n":6},"7":{"n":6,"g":1,"s":1},"8":{"n":6},"9":{"n":6},"10":{"n":4.5},"11":{"n":4},"12":{"n":5.5},"13":{"n":3},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":6.5},"17":{"n":6},"19":{"n":7},"20":{"n":5},"21":{"n":5},"22":{"n":3.5},"23":{"n":6},"24":{"n":6.5}}},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":6,"s":{"s":"35","n":"6","a":"5.83","d":"1.11","Os":"35","On":"6","Oa":"5.83","Od":"1.11","Gp":"6","p":{"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":5},"16":{"n":8},"17":{"n":6.5}}},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":7,"s":{"s":"86","n":"18","a":"4.81","d":"0.9","Ss":"4","Sn":"1","Sa":"4.5","Os":"86","On":"18","Oa":"4.81","Od":"0.9","Mp":"17","Dp":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":3.5},"12":{"n":7.5},"13":{"n":5},"14":{"n":4},"15":{"n":3},"16":{"n":5,"s":1},"18":{"n":5},"19":{"n":5,"s":1},"24":{"n":4.5,"s":1}}},"c":20},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":15,"s":{"s":"96","n":"19","a":"5.08","d":"1.02","Ss":"39","Sn":"7","Sa":"5.64","Sd":"1.25","Os":"174","On":"33","Oa":"5.29","Od":"1","Gp":"33","p":{"1":{"n":4},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":4},"7":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":3.5},"15":{"n":5},"18":{"n":4},"19":{"n":6.5},"20":{"n":6},"21":{"n":6.5},"22":{"n":3.5},"23":{"n":6},"24":{"n":7}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":6,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"21":{"n":5,"s":1},"23":{"n":5,"s":1}}},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":7,"s":{"s":"56","n":"12","a":"4.71","d":"0.85","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Os":"130","On":"26","Oa":"5.02","Od":"0.87","Mp":"3","Dp":"23","p":{"1":{"n":3},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":4,"s":1},"7":{"n":4},"10":{"n":5},"11":{"n":4},"17":{"n":5.5},"22":{"n":4},"23":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":7,"s":{"g":"1","s":"50","n":"10","a":"5.05","d":"0.72","Og":"1","Os":"50","On":"10","Oa":"5.05","Od":"0.72","Mp":"10","p":{"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"12":{"n":6},"13":{"n":6.5,"g":1},"14":{"n":5,"s":1},"15":{"n":4},"17":{"n":4.5,"s":1},"18":{"n":4.5},"19":{"n":5,"s":1},"20":{"n":4.5,"s":1}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":3,"s":{"n":0},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":4,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":10,"s":{"g":"3","s":"73","n":"15","a":"4.87","d":"0.97","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"73","On":"15","Oa":"4.87","Od":"0.97","Ap":"15","p":{"3":{"n":4.5,"s":1},"4":{"n":5},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":6,"g":1},"17":{"n":4.5,"s":1},"18":{"n":3.5},"19":{"n":8,"g":2},"21":{"n":4.5,"s":1},"24":{"n":4.5}}},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":3,"s":{"n":0},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":3125,"n":"Doumbia","f":"Souleyman","p":"D","r":9,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"23":{"n":5.5}}},"c":20},{"i":3186,"n":"Camavinga","f":"Eduardo","p":"M","r":3,"s":{"n":0},"c":20},{"i":3229,"n":"Matondo","f":"Isaac","p":"A","r":1,"s":{"n":0},"c":20},{"i":3358,"n":"Lauriente","f":"Armand","p":"M","r":4,"s":{"n":0},"c":20},{"i":297,"n":"Prcic","f":"Sanjin","p":"M","r":9,"s":{"g":"1","s":"56","n":"11","a":"5.14","d":"1.09","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"2","Os":"130","On":"24","Oa":"5.44","Od":"0.95","Mp":"24","p":{"24":{"n":7,"g":1},"1":{"n":5.5,"e":1973,"c":63,"s":1},"2":{"n":6,"e":1990,"c":63,"s":1},"3":{"n":5,"e":1998,"c":63},"5":{"n":2.5,"e":2016,"c":63},"7":{"n":5,"e":2037,"c":63},"8":{"n":4,"e":2046,"c":63},"11":{"n":5,"e":2081,"c":63,"s":1},"12":{"n":5.5,"e":2087,"c":63},"13":{"n":5.5,"e":2096,"c":63},"16":{"n":5.5,"e":2128,"c":63,"s":1}}},"c":41},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":20,"s":{"g":"5","s":"112","n":"21","a":"5.36","d":"1.03","Ss":"3","Sn":"1","Sa":"3.5","Og":"7","Os":"173","On":"33","Oa":"5.26","Od":"1.04","Mp":"23","Ap":"8","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":4},"4":{"n":5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":5.5,"s":1},"17":{"n":6},"18":{"n":5.5,"g":1},"19":{"n":7,"g":1},"20":{"n":6},"21":{"n":7,"g":1},"22":{"n":5},"24":{"n":3.5}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":8,"s":{"g":"1","s":"75","n":"15","a":"5.03","d":"0.46","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"130","On":"26","Oa":"5.02","Od":"0.71","Mp":"18","Ap":"5","p":{"28":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":5.5},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5.5},"17":{"n":4.5},"18":{"n":5.5,"s":1},"19":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":41},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":22,"s":{"g":"2","s":"121","n":"22","a":"5.52","d":"0.92","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"180","On":"35","Oa":"5.16","Od":"1.07","Dp":"35","p":{"28":{"n":4},"1":{"n":6.5},"2":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":4.5},"15":{"n":7.5,"g":1},"16":{"n":5.5},"17":{"n":6,"g":1},"18":{"n":4.5},"19":{"n":6},"20":{"n":6},"21":{"n":6},"22":{"n":7.5},"24":{"n":4.5}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"63","On":"13","Oa":"4.85","Od":"1.35","Gp":"13"},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":15,"s":{"g":"1","s":"91","n":"17","a":"5.35","d":"0.92","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"91","On":"17","Oa":"5.35","Od":"0.92","Dp":"17","p":{"3":{"n":4.5},"4":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":7},"16":{"n":5.5},"17":{"n":4},"18":{"n":4},"19":{"n":7,"g":1},"20":{"n":6},"21":{"n":5.5},"22":{"n":6},"24":{"n":4}}},"c":41},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":18,"s":{"g":"3","s":"115","n":"20","a":"5.78","d":"0.98","Og":"4","Os":"180","On":"33","Oa":"5.47","Od":"1.07","Mp":"32","Ap":"1","p":{"28":{"n":4},"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":8,"g":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":8,"g":2},"16":{"n":6},"17":{"n":4},"18":{"n":6},"19":{"n":7},"20":{"n":5},"21":{"n":6}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":5,"s":{"s":"4","n":"1","a":"4","Og":"2","Os":"44","On":"10","Oa":"4.4","Od":"0.8","Ap":"3","p":{"28":{"n":4,"s":1},"7":{"n":4,"s":1}}},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":14,"s":{"s":"77","n":"15","a":"5.17","d":"0.75","Og":"2","Os":"152","On":"29","Oa":"5.26","Od":"0.87","Mp":"27","Dp":"2","p":{"28":{"n":5},"1":{"n":7},"2":{"n":4.5},"4":{"n":4},"6":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":4.5,"s":1},"20":{"n":6},"21":{"n":5,"s":1},"22":{"n":5}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":3,"s":{"s":"5","n":"1","a":"5.5","Os":"27","On":"6","Oa":"4.58","Od":"1.02","Mp":"1","Dp":"3","p":{"22":{"n":5.5}}},"c":41},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":7,"s":{"s":"66","n":"14","a":"4.71","d":"0.49","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"122","On":"27","Oa":"4.52","Od":"0.84","Mp":"26","p":{"1":{"n":5.5,"e":2738,"c":13,"s":1},"2":{"n":5,"e":2746,"c":13,"s":1},"3":{"n":4.5,"e":2753,"c":13},"4":{"n":4.5,"e":2766,"c":13},"5":{"n":4.5,"e":2781,"c":13,"s":1},"6":{"n":5.5,"e":2786,"c":13,"s":1},"7":{"n":4.5,"e":2797,"c":13},"10":{"n":4,"e":2831,"c":13,"s":1},"12":{"n":5,"e":2849,"c":13,"s":1},"13":{"n":4,"e":2857,"c":13},"14":{"n":5,"e":2863,"c":13,"s":1},"19":{"n":4,"e":2915,"c":13,"s":1},"22":{"n":5,"s":1},"24":{"n":5,"s":1}}},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":5,"s":{"s":"23","n":"5","a":"4.7","d":"0.4","Os":"58","On":"12","Oa":"4.88","Od":"0.3","Mp":"8","p":{"1":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4},"9":{"n":5,"s":1}}},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":7,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Gp":"1"},"c":41},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":5,"s":{"g":"1","s":"25","n":"5","a":"5.1","d":"0.8","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"0.64","Mp":"10","Dp":"1","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1},"3":{"n":4},"10":{"n":5},"20":{"n":5,"s":1}}},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":10,"s":{"g":"4","s":"104","n":"21","a":"4.98","d":"1.03","Ss":"4","Sn":"1","Sa":"4","Og":"5","Os":"123","On":"25","Oa":"4.94","Od":"1","Mp":"1","Ap":"22","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":6,"g":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6.5,"g":1,"s":1},"8":{"n":7,"g":1},"9":{"n":6},"10":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":4,"s":1},"14":{"n":4},"16":{"n":4.5},"17":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"20":{"n":4,"s":1},"21":{"n":6,"s":1},"22":{"n":4.5,"s":1},"24":{"n":4,"s":1}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":10,"s":{"s":"86","n":"17","a":"5.09","d":"0.9","Ss":"4","Sn":"1","Sa":"4","Os":"86","On":"17","Oa":"5.09","Od":"0.9","Mp":"5","Dp":"12","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":4},"8":{"n":6},"9":{"n":4},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":4},"18":{"n":3.5},"19":{"n":6},"20":{"n":5.5},"21":{"n":6.5},"22":{"n":5.5},"24":{"n":4}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":24,"s":{"g":"4","s":"112","n":"21","a":"5.36","d":"1.37","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"145","On":"29","Oa":"5.02","Od":"1.35","Mp":"15","Dp":"13","p":{"28":{"n":3},"1":{"n":6.5},"2":{"n":4},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5.5},"9":{"n":3},"10":{"n":8},"11":{"n":5},"12":{"n":6},"15":{"n":6},"16":{"n":5.5,"g":1},"17":{"n":3.5},"18":{"n":4},"19":{"n":7.5},"20":{"n":5},"21":{"n":5.5},"22":{"n":7,"g":1},"24":{"n":5}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":9,"s":{"g":"1","s":"72","n":"15","a":"4.83","d":"0.67","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"0.68","Mp":"13","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"11":{"n":6.5,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":5,"s":1},"16":{"n":5},"18":{"n":5,"s":1},"19":{"n":4.5,"s":1}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":7,"s":{"s":"65","n":"13","a":"5","d":"0.44","Os":"65","On":"13","Oa":"5","Od":"0.44","Mp":"7","Dp":"6","p":{"3":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"15":{"n":5.5,"s":1},"16":{"n":5.5},"21":{"n":5,"s":1}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Ismael","p":"D","r":1,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"1","Dp":"1","p":{"13":{"n":5},"14":{"n":5}}},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":3,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":5,"s":1},"11":{"n":4.5,"s":1}}},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":22,"s":{"g":"8","s":"107","n":"21","a":"5.12","d":"1.02","Ss":"4","Sn":"1","Sa":"4.5","Og":"12","Os":"158","On":"32","Oa":"4.95","Od":"1.12","Ap":"32","p":{"1":{"n":7,"e":2734,"c":12,"g":1},"2":{"n":4,"e":2746,"c":12},"3":{"n":4.5,"e":2754,"c":12},"4":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"6":{"n":5},"7":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":7.5,"g":2},"10":{"n":6,"g":1,"s":1},"11":{"n":4},"12":{"n":6,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":5.5},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1},"18":{"n":3.5},"19":{"n":5},"22":{"n":4.5,"s":1},"24":{"n":4.5}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":21,"s":{"s":"131","n":"23","a":"5.7","d":"1.01","Ss":"4","Sn":"1","Sa":"4.5","Os":"131","On":"23","Oa":"5.7","Od":"1.01","Gp":"23","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":4.5},"13":{"n":8},"14":{"n":5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5},"18":{"n":5},"19":{"n":8},"20":{"n":6},"21":{"n":6},"22":{"n":6},"24":{"n":4.5}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":18,"s":{"g":"3","s":"121","n":"22","a":"5.5","d":"0.98","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"121","On":"22","Oa":"5.5","Od":"0.98","Mp":"22","p":{"1":{"n":6,"g":1},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":4.5},"6":{"n":6.5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5,"s":1},"17":{"n":4},"18":{"n":4},"19":{"n":6},"20":{"n":7,"g":1},"21":{"n":8,"g":1},"22":{"n":5},"24":{"n":5}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":17,"s":{"g":"4","s":"62","n":"12","a":"5.17","d":"1.11","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"62","On":"12","Oa":"5.17","Od":"1.11","Ap":"12","p":{"1":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1},"5":{"n":4},"15":{"n":4.5,"s":1},"17":{"n":4.5,"s":1},"18":{"n":4.5},"19":{"n":5.5},"20":{"n":6.5,"g":1},"21":{"n":8,"g":2},"22":{"n":5},"24":{"n":4.5}}},"c":41},{"i":2726,"n":"Mitrovic","f":"Stefan","p":"D","r":13,"s":{"ao":"1","s":"100","n":"20","a":"5","d":"0.77","Ss":"4","Sn":"1","Sa":"4","Oao":"1","Os":"100","On":"20","Oa":"5","Od":"0.77","Dp":"20","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":3.5,"a":1},"5":{"n":5.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"17":{"n":4.5},"18":{"n":5},"19":{"n":6},"20":{"n":6},"21":{"n":5},"24":{"n":4}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":11,"s":{"g":"1","s":"45","n":"8","a":"5.63","d":"1.02","Og":"1","Os":"45","On":"8","Oa":"5.63","Od":"1.02","Mp":"8","p":{"3":{"n":5,"s":1},"8":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":5},"20":{"n":5.5,"s":1},"21":{"n":8,"g":1},"22":{"n":6.5}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":1,"s":{"n":0},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":3187,"n":"Valentin","f":"Leon","p":"D","r":1,"s":{"n":0},"c":41},{"i":3188,"n":"Karamoko","f":"Mamoudoou","p":"A","r":1,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":12,"s":{"g":"1","s":"101","n":"22","a":"4.59","d":"0.6","Og":"1","Os":"126","On":"27","Oa":"4.67","Od":"0.56","Mp":"7","Dp":"12","Ap":"3","p":{"38":{"n":5,"s":1},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"8":{"n":4,"s":1},"9":{"n":5},"10":{"n":4,"s":1},"11":{"n":6,"g":1},"12":{"n":4.5},"14":{"n":4,"s":1},"15":{"n":4},"16":{"n":5,"s":1},"17":{"n":5,"s":1},"18":{"n":3.5},"19":{"n":4},"20":{"n":4.5,"s":1},"21":{"n":4.5,"s":1},"22":{"n":4},"23":{"n":4.5}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":12,"s":{"g":"1","s":"67","n":"14","a":"4.82","d":"0.75","Ss":"28","Sn":"6","Sa":"4.75","Sd":"0.8","Og":"1","Os":"95","On":"20","Oa":"4.78","Od":"0.68","Mp":"18","p":{"5":{"n":5},"10":{"n":4.5,"s":1},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":4},"16":{"n":4.5},"17":{"n":4.5},"19":{"n":5},"20":{"n":3},"21":{"n":5},"22":{"n":5.5},"23":{"n":5},"24":{"n":5,"s":1}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":3,"s":{"n":0},"c":42},{"i":811,"n":"Pieters","f":"Erik","p":"D","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"49","On":"10","Oa":"4.9","Od":"0.94","Dp":"9","p":{"24":{"n":5,"s":1}}},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":11,"s":{"g":"1","s":"111","n":"23","a":"4.83","d":"0.8","Sg":"1","Ss":"87","Sn":"18","Sa":"4.83","Sd":"0.76","Og":"2","Os":"172","On":"36","Oa":"4.78","Od":"1","Dp":"36","p":{"38":{"n":4},"1":{"n":4.5},"2":{"n":4},"3":{"n":5},"4":{"n":6.5},"5":{"n":4},"7":{"n":5},"8":{"n":6},"9":{"n":5.5},"10":{"n":3},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5,"g":1},"15":{"n":3.5},"16":{"n":5},"17":{"n":5},"18":{"n":5.5},"19":{"n":5.5},"20":{"n":4.5},"21":{"n":3.5},"22":{"n":5},"23":{"n":5},"24":{"n":5}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":23,"s":{"s":"135","n":"24","a":"5.63","d":"1.03","Ss":"135","Sn":"24","Sa":"5.63","Sd":"1.03","Os":"216","On":"38","Oa":"5.68","Od":"1","Gp":"38","p":{"38":{"n":7},"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":6.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":8},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":5},"18":{"n":6},"19":{"n":5.5},"20":{"n":6},"21":{"n":4.5},"22":{"n":8},"23":{"n":5.5},"24":{"n":7}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":11,"s":{"s":"99","n":"20","a":"4.98","d":"0.94","Ss":"94","Sn":"19","Sa":"4.97","Sd":"0.97","Og":"1","Os":"178","On":"34","Oa":"5.25","Od":"1.09","Mp":"34","p":{"38":{"n":5},"4":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":5.5},"9":{"n":6},"10":{"n":3},"11":{"n":6.5},"12":{"n":5},"13":{"n":6},"14":{"n":4.5},"15":{"n":4},"16":{"n":5},"17":{"n":5},"18":{"n":5},"19":{"n":4.5},"20":{"n":3.5},"21":{"n":5},"22":{"n":5.5},"23":{"n":4.5},"24":{"n":7}}},"c":42},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":3,"s":{"s":"38","n":"9","a":"4.22","d":"0.71","Os":"74","On":"17","Oa":"4.35","Od":"0.87","Mp":"2","Dp":"13","p":{"1":{"n":4.5},"2":{"n":4},"4":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":5,"s":1},"15":{"n":3},"17":{"n":5,"s":1}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":12,"s":{"g":"4","s":"70","n":"14","a":"5","d":"1.22","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"1.08","Og":"10","Os":"130","On":"26","Oa":"5","Od":"1.26","Ap":"24","p":{"38":{"n":6,"g":1},"1":{"n":4},"2":{"n":6,"g":1},"3":{"n":8.5,"g":2},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":5},"22":{"n":4.5,"s":1},"23":{"n":4,"s":1},"24":{"n":6.5,"g":1}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":11,"s":{"ao":"1","s":"83","n":"18","a":"4.64","d":"0.97","Oao":"1","Os":"151","On":"31","Oa":"4.89","Od":"1.01","Dp":"30","p":{"38":{"n":5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":3,"a":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":3},"11":{"n":3},"12":{"n":5.5},"13":{"n":5.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":5.5},"18":{"n":6},"19":{"n":5},"20":{"n":4}}},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Od":"0.82","Mp":"2"},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":1,"s":{"n":0},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":11,"s":{"g":"1","ao":"1","s":"93","n":"20","a":"4.68","d":"1.08","Sao":"1","Ss":"75","Sn":"16","Sa":"4.72","Sd":"1.03","Og":"1","Oao":"1","Os":"154","On":"32","Oa":"4.83","Od":"1.02","Dp":"32","p":{"38":{"n":5},"2":{"n":4.5},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":6.5,"g":1},"9":{"n":6},"10":{"n":3},"11":{"n":5},"12":{"n":3,"a":1},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":5},"18":{"n":6},"19":{"n":6},"20":{"n":4},"21":{"n":4},"22":{"n":5},"23":{"n":5},"24":{"n":5.5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":1,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"47","On":"10","Oa":"4.7","Od":"0.87","Mp":"5","Ap":"2","p":{"38":{"n":4,"s":1},"1":{"n":4,"s":1},"2":{"n":4},"6":{"n":4.5},"7":{"n":4.5}}},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":2,"s":{"n":0},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":1,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Os":"56","On":"11","Oa":"5.14","Od":"0.74","Mp":"11","p":{"38":{"n":4},"3":{"n":6.5},"4":{"n":5}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":7,"s":{"s":"59","n":"12","a":"4.96","d":"0.69","Os":"59","On":"12","Oa":"4.96","Od":"0.69","Mp":"10","Ap":"2","p":{"5":{"n":6,"s":1},"6":{"n":4},"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":3.5},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":8,"s":{"g":"1","s":"72","n":"15","a":"4.8","d":"1","Ss":"5","Sn":"1","Sa":"5.5","Og":"3","Os":"120","On":"24","Oa":"5","Od":"1.01","Mp":"16","Ap":"7","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":7},"4":{"n":4.5},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":3.5},"16":{"n":4},"17":{"n":6,"g":1},"18":{"n":6},"19":{"n":3.5},"20":{"n":4},"21":{"n":4},"22":{"n":4},"24":{"n":5.5}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":9,"s":{"s":"77","n":"16","a":"4.84","d":"1.09","Ss":"24","Sn":"5","Sa":"4.8","Sd":"0.93","Os":"77","On":"16","Oa":"4.84","Od":"1.09","Mp":"4","Dp":"12","p":{"1":{"n":4},"3":{"n":6},"4":{"n":6.5},"6":{"n":3.5},"7":{"n":5},"8":{"n":6},"12":{"n":4},"13":{"n":6},"14":{"n":3},"15":{"n":4},"17":{"n":5.5,"s":1},"20":{"n":3.5},"21":{"n":4},"22":{"n":6},"23":{"n":5},"24":{"n":5.5}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":13,"s":{"g":"1","s":"100","n":"21","a":"4.79","d":"0.85","Og":"1","Os":"100","On":"21","Oa":"4.79","Od":"0.85","Mp":"9","Ap":"12","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4},"7":{"n":6,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4},"16":{"n":4},"17":{"n":6},"18":{"n":5.5},"19":{"n":4.5},"20":{"n":4.5,"s":1},"21":{"n":6.5,"g":1},"22":{"n":6},"23":{"n":5}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":14,"s":{"g":"4","s":"118","n":"23","a":"5.15","d":"1.03","Sg":"2","Ss":"71","Sn":"15","Sa":"4.77","Sd":"0.95","Og":"4","Os":"118","On":"23","Oa":"5.15","Od":"1.03","Mp":"22","Ap":"1","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":7,"g":1},"4":{"n":6},"5":{"n":5},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":5},"10":{"n":3.5},"11":{"n":4},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":3.5},"15":{"n":3.5,"s":1},"16":{"n":5},"17":{"n":6.5,"g":1},"18":{"n":6},"19":{"n":6,"g":1,"s":1},"20":{"n":4},"21":{"n":4.5},"22":{"n":4.5,"s":1},"23":{"n":4.5,"s":1},"24":{"n":5}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":1,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5},"5":{"n":5.5,"s":1},"9":{"n":5,"s":1}}},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"22":{"n":5,"s":1}}},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2789,"n":"Timite","f":"Cheick","p":"M","r":11,"s":{"s":"59","n":"13","a":"4.54","d":"0.41","Ss":"32","Sn":"7","Sa":"4.64","Sd":"0.44","Os":"59","On":"13","Oa":"4.54","Od":"0.41","Mp":"8","Ap":"5","p":{"1":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"9":{"n":5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"15":{"n":4,"s":1},"18":{"n":5},"19":{"n":5},"20":{"n":4},"21":{"n":5},"22":{"n":4},"23":{"n":4.5},"24":{"n":5,"s":1}}},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":7,"s":{"g":"1","s":"49","n":"11","a":"4.5","d":"0.74","Og":"1","Os":"49","On":"11","Oa":"4.5","Od":"0.74","Mp":"2","Ap":"9","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":6.5,"g":1,"s":1},"6":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":3.5},"11":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"19":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"21":{"n":4.5,"s":1}}},"c":42},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":9,"s":{"g":"1","s":"102","n":"22","a":"4.64","d":"0.62","Ss":"41","Sn":"9","Sa":"4.61","Sd":"0.39","Og":"1","Os":"102","On":"22","Oa":"4.64","Od":"0.62","Mp":"2","Dp":"20","p":{"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":5},"5":{"n":4.5},"6":{"n":5,"g":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":3},"11":{"n":4},"12":{"n":4.5},"13":{"n":5},"14":{"n":3.5},"16":{"n":4.5},"17":{"n":4.5},"18":{"n":5},"19":{"n":5},"20":{"n":4},"21":{"n":4},"22":{"n":4.5},"23":{"n":5},"24":{"n":5}}},"c":42},{"i":2832,"n":"Saman Ghoddos","f":"","p":"A","r":9,"s":{"g":"2","s":"78","n":"16","a":"4.88","d":"1.08","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"78","On":"16","Oa":"4.88","Od":"1.08","Mp":"5","Ap":"11","p":{"4":{"n":4.5,"s":1},"5":{"n":6.5,"g":1},"6":{"n":4},"7":{"n":7},"8":{"n":4},"9":{"n":7,"g":1},"10":{"n":3.5},"11":{"n":4},"12":{"n":5},"13":{"n":5.5},"14":{"n":4},"15":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":4.5},"19":{"n":4.5,"s":1},"24":{"n":5.5}}},"c":42},{"i":2937,"n":"Segarel","f":"Stanley","p":"A","r":4,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"18":{"n":4.5,"s":1},"21":{"n":4.5,"s":1}}},"c":42},{"i":2994,"n":"Mathurin Sakho","f":"","p":"D","r":1,"s":{"n":0},"c":42},{"i":3366,"n":"Guirassy","f":"Serhou","p":"A","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"24":{"n":4.5}}},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":4,"s":{"s":"32","n":"7","a":"4.57","d":"1.02","Og":"1","Os":"70","On":"14","Oa":"5","Od":"0.98","Mp":"9","p":{"1":{"n":4},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":3}}},"c":67},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":12,"s":{"g":"1","s":"76","n":"15","a":"5.1","d":"0.92","Sg":"1","Ss":"57","Sn":"11","Sa":"5.18","Sd":"1.05","Og":"1","Os":"137","On":"27","Oa":"5.09","Od":"0.85","Mp":"18","p":{"7":{"n":5,"e":2795,"c":18,"s":1},"10":{"n":5,"e":2824,"c":18,"s":1},"11":{"n":4.5,"e":2833,"c":18},"12":{"n":5,"e":2844,"c":18,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":6.5},"17":{"n":6},"18":{"n":3.5},"19":{"n":3.5},"20":{"n":5.5},"21":{"n":5},"22":{"n":5,"s":1},"23":{"n":5.5},"24":{"n":7,"g":1}}},"c":67},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":11,"s":{"s":"69","n":"14","a":"4.96","d":"0.81","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"82","On":"17","Oa":"4.85","Od":"0.8","Mp":"1","Dp":"13","p":{"5":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"15":{"n":6},"17":{"n":5},"18":{"n":4},"20":{"n":6.5},"21":{"n":4},"23":{"n":5.5},"24":{"n":5}}},"c":67},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":18,"s":{"s":"136","n":"24","a":"5.67","d":"1.21","Ss":"136","Sn":"24","Sa":"5.67","Sd":"1.21","Os":"136","On":"24","Oa":"5.67","Od":"1.21","Gp":"24","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":7.5},"4":{"n":3.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":5.5},"12":{"n":8},"13":{"n":7.5},"14":{"n":7},"15":{"n":6},"16":{"n":5.5},"17":{"n":6.5},"18":{"n":4.5},"19":{"n":2.5},"20":{"n":6},"21":{"n":5},"22":{"n":6},"23":{"n":5.5},"24":{"n":6}}},"c":67},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":7,"s":{"g":"2","s":"67","n":"14","a":"4.82","d":"0.94","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"2","Os":"87","On":"19","Oa":"4.61","Od":"0.88","Mp":"1","Ap":"14","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":6.5,"g":1},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":5},"11":{"n":4},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5},"23":{"n":4.5,"s":1},"24":{"n":7,"g":1}}},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":14,"s":{"g":"3","s":"93","n":"18","a":"5.17","d":"1.12","Sg":"2","Ss":"28","Sn":"5","Sa":"5.7","Sd":"1.33","Og":"3","Os":"93","On":"18","Oa":"5.17","Od":"1.12","Dp":"18","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4},"4":{"n":3},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"9":{"n":5.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":4},"16":{"n":6,"g":1,"s":1},"17":{"n":5},"20":{"n":7,"g":1},"21":{"n":5},"22":{"n":3.5},"23":{"n":7,"g":1},"24":{"n":6}}},"c":67},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":6,"s":{"g":"1","s":"48","n":"10","a":"4.8","d":"1.21","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"48","On":"10","Oa":"4.8","Od":"1.21","Dp":"10","p":{"5":{"n":4},"6":{"n":5},"7":{"n":5.5},"8":{"n":4},"13":{"n":5,"s":1},"14":{"n":7,"g":1},"15":{"n":6.5},"18":{"n":3.5},"19":{"n":3},"24":{"n":4.5}}},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":3,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":3,"s":{"n":0},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":4,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.83","Od":"0.62","Dp":"3","p":{"10":{"n":4},"16":{"n":5.5},"24":{"n":5,"s":1}}},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":1,"s":{"n":0},"c":67},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":8,"s":{"g":"2","s":"90","n":"19","a":"4.74","d":"1.13","Og":"2","Os":"90","On":"19","Oa":"4.74","Od":"1.13","Ap":"19","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":2.5},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6.5},"12":{"n":5},"13":{"n":3},"15":{"n":5.5,"s":1},"16":{"n":7,"g":1},"18":{"n":4.5},"19":{"n":4.5,"s":1},"21":{"n":4},"22":{"n":4}}},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":11,"s":{"g":"1","s":"82","n":"17","a":"4.85","d":"0.92","Og":"1","Os":"82","On":"17","Oa":"4.85","Od":"0.92","Dp":"17","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":4.5},"8":{"n":4},"9":{"n":5},"10":{"n":4.5},"11":{"n":5},"16":{"n":5},"17":{"n":7.5,"g":1},"18":{"n":4},"19":{"n":5.5,"s":1},"20":{"n":6},"22":{"n":3},"23":{"n":5}}},"c":67},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":11,"s":{"g":"3","s":"123","n":"24","a":"5.13","d":"1.21","Sg":"3","Ss":"123","Sn":"24","Sa":"5.13","Sd":"1.21","Og":"3","Os":"123","On":"24","Oa":"5.13","Od":"1.21","Mp":"12","Ap":"12","p":{"1":{"n":8,"g":1},"2":{"n":7,"g":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":4.5,"s":1},"17":{"n":4.5,"s":1},"18":{"n":4.5,"s":1},"19":{"n":3.5},"20":{"n":7},"21":{"n":4.5},"22":{"n":4,"s":1},"23":{"n":4},"24":{"n":6.5,"g":1,"s":1}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":12,"s":{"g":"4","s":"84","n":"17","a":"4.94","d":"1.11","Og":"4","Os":"84","On":"17","Oa":"4.94","Od":"1.11","Ap":"17","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5},"17":{"n":4.5,"s":1},"18":{"n":6.5,"g":1,"s":1},"20":{"n":8,"g":2},"21":{"n":4,"s":1}}},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":6,"s":{"s":"17","n":"4","a":"4.38","d":"0.96","Os":"17","On":"4","Oa":"4.38","Od":"0.96","Dp":"4","p":{"1":{"n":3},"3":{"n":5},"5":{"n":4},"7":{"n":5.5}}},"c":67},{"i":2702,"n":"Bobichon","f":"Antonin","p":"M","r":12,"s":{"g":"3","s":"86","n":"17","a":"5.09","d":"1.03","Sg":"1","Ss":"30","Sn":"6","Sa":"5","Sd":"1.12","Og":"3","Os":"86","On":"17","Oa":"5.09","Od":"1.03","Mp":"11","Ap":"6","p":{"4":{"n":6,"g":1,"s":1},"5":{"n":6,"g":1},"6":{"n":7},"7":{"n":5},"8":{"n":3},"9":{"n":5.5},"10":{"n":5},"12":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":5},"19":{"n":4,"s":1},"20":{"n":6},"21":{"n":4.5,"s":1},"22":{"n":4},"23":{"n":4.5,"s":1},"24":{"n":7,"g":1}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":10,"s":{"s":"106","n":"21","a":"5.05","d":"0.53","Os":"106","On":"21","Oa":"5.05","Od":"0.53","Mp":"21","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"17":{"n":5},"18":{"n":4},"19":{"n":4.5},"20":{"n":5.5,"s":1},"22":{"n":5},"23":{"n":4.5}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":16,"s":{"g":"2","s":"114","n":"22","a":"5.18","d":"1.3","Og":"2","Os":"114","On":"22","Oa":"5.18","Od":"1.3","Dp":"22","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":4},"6":{"n":7,"g":1},"8":{"n":3},"9":{"n":5.5},"10":{"n":4},"11":{"n":6.5},"12":{"n":7,"g":1},"13":{"n":6},"14":{"n":6.5},"15":{"n":6.5},"16":{"n":5.5},"17":{"n":5.5},"18":{"n":3.5},"19":{"n":2.5},"20":{"n":5.5},"21":{"n":4.5},"22":{"n":4},"23":{"n":6}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":8,"s":{"s":"55","n":"12","a":"4.63","d":"0.82","Ss":"5","Sn":"1","Sa":"5","Os":"55","On":"12","Oa":"4.63","Od":"0.82","Dp":"12","p":{"1":{"n":5,"s":1},"2":{"n":5},"4":{"n":3},"6":{"n":5},"7":{"n":5.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"16":{"n":5},"19":{"n":3},"21":{"n":5},"22":{"n":4},"24":{"n":5}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":15,"s":{"g":"2","s":"123","n":"24","a":"5.15","d":"1.04","Sg":"2","Ss":"123","Sn":"24","Sa":"5.15","Sd":"1.04","Og":"2","Os":"123","On":"24","Oa":"5.15","Od":"1.04","Mp":"7","Dp":"5","Ap":"12","p":{"1":{"n":6.5,"g":1},"2":{"n":7,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5.5},"12":{"n":7},"13":{"n":5.5},"14":{"n":6},"15":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":6},"18":{"n":4.5},"19":{"n":3},"20":{"n":7},"21":{"n":4},"22":{"n":5,"s":1},"23":{"n":5},"24":{"n":4}}},"c":67},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":5,"s":{"n":0},"c":67},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":14,"s":{"g":"4","s":"85","n":"17","a":"5.03","d":"0.83","Sg":"4","Ss":"85","Sn":"17","Sa":"5.03","Sd":"0.83","Og":"4","Os":"85","On":"17","Oa":"5.03","Od":"0.83","Ap":"17","p":{"8":{"n":5,"s":1},"9":{"n":4,"s":1},"10":{"n":5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":7,"g":2,"s":1},"16":{"n":5},"17":{"n":5},"18":{"n":6.5,"g":1,"s":1},"19":{"n":4},"20":{"n":5,"s":1},"21":{"n":6},"22":{"n":4.5},"23":{"n":4.5},"24":{"n":4.5,"s":1}}},"c":67},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":1,"s":{"n":0},"c":67},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":17,"s":{"g":"2","s":"112","n":"19","a":"5.89","d":"1.1","Sg":"1","Ss":"90","Sn":"15","Sa":"6","Sd":"1.17","Og":"2","Os":"112","On":"19","Oa":"5.89","Od":"1.1","Mp":"19","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6,"g":1},"10":{"n":7},"11":{"n":5},"12":{"n":8,"g":1},"13":{"n":6.5},"14":{"n":7},"15":{"n":6},"16":{"n":6},"17":{"n":6.5},"18":{"n":6},"19":{"n":3.5},"20":{"n":7.5},"21":{"n":5.5},"22":{"n":4},"23":{"n":5.5},"24":{"n":6}}},"c":67},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":13,"s":{"g":"4","s":"100","n":"21","a":"4.79","d":"1.11","Sg":"3","Ss":"85","Sn":"18","Sa":"4.72","Sd":"1.16","Og":"4","Os":"100","On":"21","Oa":"4.79","Od":"1.11","Mp":"14","Ap":"7","p":{"1":{"n":5},"2":{"n":6,"g":1},"3":{"n":4.5},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":8,"g":2},"13":{"n":3.5},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":5.5},"17":{"n":4},"18":{"n":5},"19":{"n":4},"20":{"n":4.5,"s":1},"21":{"n":5,"s":1},"22":{"n":4},"23":{"n":4.5,"s":1},"24":{"n":4}}},"c":67},{"i":2957,"n":"Lionel Dias","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":67},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":18,"s":{"s":"132","n":"24","a":"5.52","d":"0.86","Ss":"132","Sn":"24","Sa":"5.52","Sd":"0.86","Os":"132","On":"24","Oa":"5.52","Od":"0.86","Dp":"24","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":6.5},"12":{"n":6},"13":{"n":4},"14":{"n":6.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":5.5},"18":{"n":6},"19":{"n":6},"20":{"n":6},"21":{"n":5.5},"22":{"n":5},"23":{"n":6.5},"24":{"n":5.5}}},"c":68},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":8,"s":{"s":"52","n":"11","a":"4.77","d":"0.49","Os":"52","On":"11","Oa":"4.77","Od":"0.49","Mp":"11","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4},"6":{"n":4.5},"8":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":6},"12":{"n":5},"18":{"n":5},"19":{"n":4.5,"s":1},"22":{"n":4.5,"s":1}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":17,"s":{"g":"4","s":"114","n":"22","a":"5.18","d":"0.91","Sg":"2","Ss":"40","Sn":"7","Sa":"5.71","Sd":"0.88","Og":"4","Os":"114","On":"22","Oa":"5.18","Od":"0.91","Mp":"21","Ap":"1","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":4.5},"18":{"n":7,"g":1,"s":1},"19":{"n":4.5},"20":{"n":4.5},"21":{"n":6},"22":{"n":6,"g":1},"23":{"n":6.5},"24":{"n":5.5}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":11,"s":{"s":"57","n":"12","a":"4.75","d":"0.43","Os":"57","On":"12","Oa":"4.75","Od":"0.43","Mp":"11","Ap":"1","p":{"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5},"18":{"n":5,"s":1},"19":{"n":4.5,"s":1},"20":{"n":4.5,"s":1},"21":{"n":5,"s":1}}},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":11,"s":{"g":"1","s":"40","n":"8","a":"5","d":"0.56","Sg":"1","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.51","Og":"1","Os":"40","On":"8","Oa":"5","Od":"0.56","Mp":"8","p":{"11":{"n":5,"s":1},"13":{"n":4},"17":{"n":5,"s":1},"20":{"n":5.5,"s":1},"21":{"n":5},"22":{"n":4.5},"23":{"n":6,"g":1},"24":{"n":5}}},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":12,"s":{"g":"2","s":"73","n":"16","a":"4.56","d":"0.88","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"1.25","Og":"3","Os":"118","On":"27","Oa":"4.37","Od":"0.83","Ap":"20","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"6":{"n":5,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":3},"13":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5},"18":{"n":4},"19":{"n":6.5,"g":1},"23":{"n":6.5,"g":1,"s":1},"24":{"n":4}}},"c":68},{"i":2068,"n":"Baba","f":"Abdul Rahman","p":"D","r":6,"s":{"n":0},"c":68},{"i":2608,"n":"Chavarria","f":"Pablo","p":"A","r":11,"s":{"g":"3","s":"93","n":"20","a":"4.68","d":"0.76","Og":"3","Os":"93","On":"20","Oa":"4.68","Od":"0.76","Mp":"1","Ap":"19","p":{"1":{"n":5},"2":{"n":6.5,"g":1},"3":{"n":3.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":5.5,"g":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5.5},"15":{"n":4},"16":{"n":3.5},"17":{"n":5},"20":{"n":6,"g":1},"21":{"n":4.5},"22":{"n":4}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"s":"23","n":"5","a":"4.6","d":"1.02","Os":"23","On":"5","Oa":"4.6","Od":"1.02","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"7":{"n":4.5},"17":{"n":3.5,"s":1}}},"c":68},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":7,"s":{"s":"35","n":"7","a":"5.07","d":"0.49","Ss":"4","Sn":"1","Sa":"4.5","Os":"35","On":"7","Oa":"5.07","Od":"0.49","Dp":"7","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"12":{"n":5,"s":1},"22":{"n":5,"s":1},"24":{"n":4.5,"s":1}}},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":3,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":20,"s":{"s":"127","n":"23","a":"5.54","d":"0.72","Ss":"63","Sn":"11","Sa":"5.73","Sd":"0.65","Os":"127","On":"23","Oa":"5.54","Od":"0.72","Mp":"23","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":6.5},"18":{"n":5},"19":{"n":5},"20":{"n":6.5},"21":{"n":7},"22":{"n":5.5},"23":{"n":6},"24":{"n":5.5}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":5,"s":{"s":"103","n":"20","a":"5.18","d":"0.97","Os":"103","On":"20","Oa":"5.18","Od":"0.97","Dp":"20","p":{"1":{"n":5},"2":{"n":7},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":3},"8":{"n":5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":6.5},"18":{"n":5.5},"19":{"n":4.5},"20":{"n":6}}},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":14,"s":{"g":"5","s":"114","n":"23","a":"4.96","d":"1.02","Sg":"3","Ss":"44","Sn":"9","Sa":"4.94","Sd":"1.07","Og":"5","Os":"114","On":"23","Oa":"4.96","Od":"1.02","Mp":"21","Ap":"2","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":4},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":8,"g":2},"12":{"n":6},"13":{"n":5},"14":{"n":4.5},"16":{"n":3.5},"17":{"n":5.5,"g":1,"s":1},"18":{"n":4.5},"19":{"n":3.5},"20":{"n":6},"21":{"n":6.5,"g":1},"22":{"n":4},"23":{"n":5},"24":{"n":6,"g":1}}},"c":68},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":26,"s":{"s":"140","n":"24","a":"5.85","d":"1.05","Ss":"140","Sn":"24","Sa":"5.85","Sd":"1.05","Os":"140","On":"24","Oa":"5.85","Od":"1.05","Gp":"24","p":{"1":{"n":6},"2":{"n":7.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":7},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":6},"9":{"n":7},"10":{"n":7},"11":{"n":7},"12":{"n":6.5},"13":{"n":5},"14":{"n":6},"15":{"n":7.5},"16":{"n":5.5},"17":{"n":5.5},"18":{"n":4},"19":{"n":4.5},"20":{"n":6},"21":{"n":6},"22":{"n":6.5},"23":{"n":6},"24":{"n":5.5}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":2,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"3":{"n":3.5,"s":1}}},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":12,"s":{"g":"2","s":"77","n":"15","a":"5.17","d":"1.01","Og":"2","Os":"77","On":"15","Oa":"5.17","Od":"1.01","Mp":"12","Ap":"3","p":{"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":4.5},"18":{"n":7.5,"g":1},"19":{"n":4}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":9,"s":{"s":"33","n":"7","a":"4.71","d":"0.36","Os":"33","On":"7","Oa":"4.71","Od":"0.36","Mp":"6","Dp":"1","p":{"2":{"n":5,"s":1},"4":{"n":4.5},"7":{"n":5,"s":1},"13":{"n":4},"20":{"n":5},"21":{"n":5,"s":1},"23":{"n":4.5,"s":1}}},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":11,"s":{"s":"46","n":"9","a":"5.11","d":"0.52","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.51","Os":"46","On":"9","Oa":"5.11","Od":"0.52","Mp":"5","Dp":"4","p":{"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":4.5},"16":{"n":4.5,"s":1},"20":{"n":5,"s":1},"21":{"n":4.5},"22":{"n":6},"23":{"n":5.5},"24":{"n":5}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":16,"s":{"g":"2","s":"126","n":"23","a":"5.5","d":"0.61","Sg":"1","Ss":"78","Sn":"14","Sa":"5.61","Sd":"0.6","Og":"2","Os":"126","On":"23","Oa":"5.5","Od":"0.61","Mp":"23","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"6":{"n":6},"7":{"n":5.5,"g":1},"8":{"n":5},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":6},"16":{"n":5},"17":{"n":5.5},"18":{"n":6},"19":{"n":6.5},"20":{"n":6},"21":{"n":5},"22":{"n":5.5},"23":{"n":6},"24":{"n":5.5}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2823,"n":"Engels","f":"Bj\u00f6rn","p":"D","r":18,"s":{"g":"1","s":"110","n":"20","a":"5.5","d":"0.63","Sg":"1","Ss":"110","Sn":"20","Sa":"5.5","Sd":"0.63","Og":"1","Os":"110","On":"20","Oa":"5.5","Od":"0.63","Dp":"20","p":{"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7},"12":{"n":6},"13":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":6},"18":{"n":5},"19":{"n":6,"g":1},"20":{"n":5.5},"21":{"n":5.5},"22":{"n":6},"23":{"n":6},"24":{"n":5.5}}},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":12,"s":{"s":"96","n":"19","a":"5.05","d":"0.51","Ss":"85","Sn":"17","Sa":"5","Sd":"0.51","Os":"96","On":"19","Oa":"5.05","Od":"0.51","Dp":"19","p":{"5":{"n":5.5},"6":{"n":5.5},"8":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":4},"14":{"n":6},"15":{"n":5},"16":{"n":5},"17":{"n":4},"18":{"n":5},"19":{"n":4.5},"20":{"n":5},"21":{"n":5},"22":{"n":5},"23":{"n":5.5},"24":{"n":5}}},"c":68},{"i":2951,"n":"Dia","f":"Boulaye","p":"M","r":9,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.22","Os":"19","On":"4","Oa":"4.88","Od":"0.22","Mp":"3","Ap":"1","p":{"21":{"n":5,"s":1},"22":{"n":5,"s":1},"23":{"n":5},"24":{"n":4.5,"s":1}}},"c":68},{"i":3360,"n":"Sissoko","f":"Sambou","p":"D","r":6,"s":{"n":0},"c":68},{"i":3364,"n":"Zeneli","f":"Arb\u00ebr","p":"A","r":5,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"24":{"n":4,"s":1}}},"c":68},{"i":3365,"n":"Moreto Cassam\u00e3","f":"","p":"M","r":5,"s":{"n":0},"c":68}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1332,"s":{"p":59},"nM":2981,"nMWC":"0.8002","pM":{"32":1083,"3":2760,"4":2767,"5":2780,"6":2789,"7":2800,"9":2820,"10":2828,"13":2857,"14":2869,"16":2891,"19":2917,"20":2922,"21":2938,"22":2949,"23":2956,"24":2968,"1":2740,"2":2745,"8":2807,"12":2848,"15":2873,"11":2837},"DMI":[1083,2780]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":1072,"s":{"p":28},"nM":2973,"nMWC":"0.5771","pM":{"24":2968,"15":2873,"37":1127,"1":2733,"2":2751,"3":2753,"4":2769,"5":2773,"10":2825,"11":2834,"12":2844,"14":2864,"17":2892,"18":2907,"20":2929,"21":2933,"6":2783,"7":2793,"8":2808,"9":2814,"13":2853,"16":2883,"19":2913,"22":2950},"DMI":[1127,2751]},"4":{"n":"Saint Etienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1091,"s":{"p":37},"nM":2981,"nMWC":"0.1998","pM":{"32":1083,"5":2780,"16":2883,"1":2741,"2":2750,"6":2790,"7":2801,"9":2816,"12":2850,"13":2860,"14":2865,"15":2880,"17":2899,"20":2925,"21":2941,"22":2947,"24":2969,"3":2757,"4":2770,"8":2810,"10":2830,"11":2839,"18":2909,"19":2920},"DMI":[1083,2780]},"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":1,"el":872,"s":{"p":18},"nM":2954,"nMWC":"0.2954","pM":{"1":2740,"13":2853,"6":2790,"14":2863,"2":2743,"3":2758,"4":2763,"5":2774,"8":2803,"9":2817,"10":2822,"11":2836,"12":2842,"15":2872,"16":2884,"18":2903,"19":2918,"20":2923,"21":2934,"22":2946,"24":2962,"7":2794,"17":2900,"28":1037},"DMI":[2758]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":959,"s":{"p":20},"nM":2979,"nMWC":"0.3403","pM":{"14":2864,"21":2933,"19":2920,"11":2838,"4":2763,"1":2737,"2":2744,"5":2775,"7":2795,"8":2811,"9":2812,"10":2823,"3":2759,"6":2788,"12":2843,"13":2856,"15":2881,"16":2885,"17":2898,"20":2924,"22":2943,"23":2952,"24":2963},"DMI":[2843]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1023,"s":{"p":24},"nM":2954,"nMWC":"0.7046","pM":{"19":2917,"9":2814,"15":2880,"22":2947,"3":2758,"5":2778,"2":2744,"1":2738,"4":2771,"6":2784,"7":2798,"8":2805,"10":2826,"11":2832,"12":2846,"13":2859,"14":2867,"17":2896,"18":2908,"20":2928,"21":2932,"24":2966,"16":2888,"32":1081},"DMI":[2758]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1142,"s":{"p":37},"nM":2977,"nMWC":"0.7555","pM":{"11":2837,"18":2907,"17":2899,"4":2766,"20":2927,"9":2817,"21":2934,"15":2876,"13":2856,"24":2963,"16":2888,"8":2804,"1":2736,"2":2747,"3":2756,"5":2776,"6":2785,"7":2796,"10":2827,"12":2845,"14":2862,"19":2912,"38":1138,"23":2959,"22":2945},"DMI":[2862,1138]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":1018,"s":{"p":27},"nM":2973,"nMWC":"0.4229","pM":{"14":2869,"37":1127,"2":2751,"7":2801,"5":2781,"18":2903,"16":2890,"15":2881,"10":2826,"19":2914,"1":2736,"3":2761,"4":2764,"6":2782,"8":2809,"9":2821,"11":2841,"12":2851,"13":2861,"17":2901,"20":2931,"21":2937,"22":2951,"23":2957,"24":2971},"DMI":[1127,2751]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1190,"s":{"p":49},"nM":2975,"nMWC":"0.5994","pM":{"12":2848,"7":2793,"9":2816,"11":2836,"20":2923,"17":2894,"10":2823,"6":2784,"1":2734,"2":2746,"8":2804,"15":2875,"18":2910,"19":2914,"22":2945,"14":2868,"29":1048,"3":2754,"4":2762,"5":2772,"13":2855,"21":2935,"23":2955,"16":2887,"24":2964},"DMI":[1048,2887]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":1034,"s":{"p":19},"nM":2978,"nMWC":"0.5158","pM":{"13":2857,"3":2753,"8":2810,"4":2766,"5":2781,"6":2786,"10":2831,"11":2838,"12":2849,"14":2863,"15":2877,"16":2882,"17":2895,"19":2915,"20":2927,"22":2943,"1":2738,"2":2746,"23":2957,"32":1081,"7":2797,"9":2818,"18":2906,"21":2936,"24":2965},"DMI":[2738,1081]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":1,"el":879,"s":{"p":14},"nM":2976,"nMWC":"0.1445","pM":{"21":2938,"2":2745,"6":2783,"1":2741,"20":2925,"19":2915,"10":2822,"14":2870,"16":2885,"12":2846,"5":2776,"15":2874,"4":2764,"3":2754,"24":2964,"11":2835,"17":2893,"18":2905,"7":2799,"8":2802,"9":2815,"13":2854,"22":2944},"DMI":[2854]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1120,"s":{"p":37},"nM":2975,"nMWC":"0.4006","pM":{"10":2825,"3":2757,"15":2877,"22":2946,"7":2794,"1":2737,"20":2924,"18":2908,"12":2845,"6":2787,"11":2841,"29":1048,"16":2887,"24":2965,"9":2815,"2":2742,"4":2768,"5":2777,"8":2806,"13":2852,"14":2866,"19":2916,"21":2940,"23":2958},"DMI":[1048,2887]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1079,"s":{"p":30},"nM":2972,"nMWC":"0.4215","pM":{"3":2760,"17":2892,"12":2850,"15":2872,"10":2829,"5":2775,"23":2952,"14":2867,"21":2932,"19":2912,"16":2889,"6":2782,"22":2951,"4":2762,"7":2797,"8":2802,"13":2852,"33":1085,"1":2732,"2":2749,"9":2813,"18":2902,"20":2930,"24":2970,"11":2833},"DMI":[2889,1085]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1188,"s":{"p":43},"nM":2976,"nMWC":"0.8555","pM":{"9":2820,"23":2956,"12":2844,"14":2865,"21":2941,"5":2774,"7":2795,"8":2805,"15":2875,"6":2785,"4":2765,"17":2901,"18":2906,"13":2854,"1":2735,"19":2916,"11":2833,"3":2755,"16":2886,"20":2926,"22":2942,"24":2967,"2":2748,"10":2824},"DMI":[2854]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1134,"s":{"p":37},"nM":2972,"nMWC":"0.5785","pM":{"8":2807,"11":2834,"20":2929,"18":2909,"17":2895,"2":2743,"1":2739,"3":2759,"7":2798,"10":2827,"4":2765,"6":2787,"12":2847,"13":2858,"14":2868,"15":2874,"16":2889,"9":2821,"23":2955,"33":1085,"24":2967,"5":2779,"19":2921,"21":2939,"22":2948},"DMI":[2889,1085]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1109,"s":{"p":36},"nM":2980,"nMWC":"0.5187","pM":{"6":2789,"22":2949,"4":2769,"24":2969,"10":2830,"12":2842,"11":2840,"17":2898,"13":2859,"20":2928,"1":2734,"3":2756,"8":2809,"9":2818,"18":2905,"14":2866,"21":2940,"2":2749,"16":2886,"5":2779,"7":2792,"15":2879,"19":2919,"23":2960},"DMI":[2840]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1113,"s":{"p":35},"nM":2974,"nMWC":"0.8002","pM":{"16":2891,"1":2733,"22":2950,"2":2750,"10":2831,"17":2900,"18":2911,"8":2811,"4":2771,"7":2796,"12":2851,"20":2931,"13":2855,"21":2936,"11":2835,"5":2777,"9":2813,"24":2970,"3":2755,"19":2921,"15":2879,"14":2871,"28":1037,"6":2791},"DMI":[2900,1037]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":946,"s":{"p":21},"nM":2977,"nMWC":"0.2445","pM":{"10":2828,"20":2922,"19":2913,"4":2770,"16":2882,"8":2803,"24":2962,"9":2812,"11":2832,"14":2862,"38":1138,"12":2847,"13":2861,"5":2772,"21":2935,"17":2893,"1":2735,"2":2742,"3":2752,"18":2902,"22":2942,"7":2792,"23":2960,"6":2791,"15":2878},"DMI":[2862,1138]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":1074,"s":{"p":33},"nM":2979,"nMWC":"0.6597","pM":{"4":2767,"5":2773,"11":2839,"6":2786,"16":2884,"9":2819,"12":2843,"17":2896,"24":2966,"18":2910,"2":2747,"13":2858,"3":2761,"21":2937,"7":2799,"8":2806,"23":2958,"1":2732,"20":2930,"10":2824,"22":2948,"19":2919,"14":2871,"15":2878},"DMI":[2843]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1096,"s":{"p":35},"nM":2980,"nMWC":"0.4813","pM":{"7":2800,"8":2808,"13":2860,"12":2849,"19":2918,"1":2739,"5":2778,"9":2819,"10":2829,"11":2840,"14":2870,"15":2876,"16":2890,"17":2894,"18":2911,"6":2788,"23":2959,"24":2971,"22":2944,"3":2752,"4":2768,"20":2926,"2":2748,"21":2939},"DMI":[2840]}},"op":{"23":{"n":"Burnley","l":2,"el":1031},"25":{"n":"Chelsea","l":2,"el":1100},"26":{"n":"Crystal Palace","l":2,"el":1034},"22":{"n":"Everton","l":2,"el":980},"69":{"n":"Wolverhampton","l":2,"el":1105},"29":{"n":"Leicester","l":2,"el":1011},"35":{"n":"Southampton","l":2,"el":1006},"71":{"n":"Fulham","l":2,"el":879},"24":{"n":"Tottenham","l":2,"el":1248},"31":{"n":"Man United","l":2,"el":1217},"49":{"n":"Valencia","l":3,"el":1105},"54":{"n":"Atl\u00e9tico","l":3,"el":1194},"72":{"n":"Rayo","l":3,"el":1010},"73":{"n":"Huesca","l":3,"el":990},"47":{"n":"Legan\u00e9s","l":3,"el":1093},"57":{"n":"Bilbao","l":3,"el":1069},"53":{"n":"Girona","l":3,"el":945},"74":{"n":"Valladolid","l":3,"el":983},"56":{"n":"Espanyol","l":3,"el":1013},"60":{"n":"Betis","l":3,"el":1055},"63":{"n":"Levante","l":3,"el":1029},"51":{"n":"Celta","l":3,"el":953},"55":{"n":"Sevilla","l":3,"el":1094},"48":{"n":"Alav\u00e9s","l":3,"el":1030},"58":{"n":"Getafe","l":3,"el":1109},"64":{"n":"Villarreal","l":3,"el":963},"52":{"n":"Real Sociedad","l":3,"el":1073},"59":{"n":"Barcelona","l":3,"el":1287}},"e":{"1083":{"d":32,"dB":"2018-04-06T18:45:00Z","t1s":1,"t2s":1,"t1":4,"t2":2},"2760":{"d":3,"dB":"2018-08-25T17:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":16},"2767":{"d":4,"dB":"2018-09-01T15:00:00Z","t1s":2,"t2s":4,"t1":67,"t2":2},"2780":{"d":5,"dB":"2018-09-14T18:45:00Z","t1s":4,"t2s":0,"t1":2,"t2":4},"2789":{"d":6,"dB":"2018-09-23T13:00:00Z","t1s":1,"t2s":3,"t1":20,"t2":2},"2800":{"d":7,"dB":"2018-09-26T19:00:00Z","t1s":4,"t2s":1,"t1":2,"t2":68},"2820":{"d":9,"dB":"2018-10-07T19:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":18},"2828":{"d":10,"dB":"2018-10-20T15:00:00Z","t1s":5,"t2s":0,"t1":2,"t2":42},"2857":{"d":13,"dB":"2018-11-11T20:00:00Z","t1s":0,"t2s":4,"t1":13,"t2":2},"2869":{"d":14,"dB":"2018-11-24T16:00:00Z","t1s":1,"t2s":0,"t1":2,"t2":10},"2891":{"d":16,"dB":"2018-12-05T20:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":2},"2917":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":1,"t2s":0,"t1":2,"t2":8},"2922":{"d":20,"dB":"2019-01-12T16:00:00Z","t1s":0,"t2s":3,"t1":42,"t2":2},"2938":{"d":21,"dB":"2019-01-19T16:00:00Z","t1s":9,"t2s":0,"t1":2,"t2":14},"2949":{"d":22,"dB":"2019-01-27T20:00:00Z","t1s":4,"t2s":1,"t1":2,"t2":20},"2956":{"d":23,"dB":"2019-02-03T20:00:00Z","t1s":2,"t2s":1,"t1":18,"t2":2},"2968":{"d":24,"dB":"2019-02-09T16:00:00Z","t1s":1,"t2s":0,"t1":2,"t2":3},"2740":{"d":1,"dB":"2018-08-12T21:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":5},"2745":{"d":2,"dB":"2018-08-18T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":2},"2807":{"d":8,"dB":"2018-09-29T15:15:00Z","t1s":0,"t2s":3,"t1":19,"t2":2},"2848":{"d":12,"dB":"2018-11-02T19:45:00Z","t1s":2,"t2s":1,"t1":2,"t2":12},"2873":{"d":15,"dB":"2018-12-02T20:00:00Z","t1s":2,"t2s":2,"t1":3,"t2":2},"2837":{"d":11,"dB":"2018-10-28T20:00:00Z","t1s":0,"t2s":2,"t1":9,"t2":2},"1127":{"d":37,"dB":"2018-05-12T19:00:00Z","t1s":4,"t2s":2,"t1":3,"t2":10},"2733":{"d":1,"dB":"2018-08-12T17:00:00Z","t1s":0,"t2s":2,"t1":3,"t2":41},"2751":{"d":2,"dB":"2018-08-19T15:00:00Z","t1s":2,"t2s":1,"t1":10,"t2":3},"2753":{"d":3,"dB":"2018-08-26T15:00:00Z","t1s":2,"t2s":1,"t1":3,"t2":13},"2769":{"d":4,"dB":"2018-09-02T15:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":3},"2773":{"d":5,"dB":"2018-09-16T15:00:00Z","t1s":3,"t2s":3,"t1":3,"t2":67},"2825":{"d":10,"dB":"2018-10-21T13:00:00Z","t1s":2,"t2s":0,"t1":15,"t2":3},"2834":{"d":11,"dB":"2018-10-28T16:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":19},"2844":{"d":12,"dB":"2018-11-03T16:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":3},"2864":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":3},"2892":{"d":17,"dB":"2019-01-15T18:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":3},"2907":{"d":18,"dB":"2019-02-05T18:00:00Z","t1s":1,"t2s":0,"t1":9,"t2":3},"2929":{"d":20,"dB":"2019-01-12T19:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":3},"2933":{"d":21,"dB":"2019-01-20T18:00:00Z","t1s":1,"t2s":0,"t1":3,"t2":7},"2783":{"d":6,"dB":"2018-09-23T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":3},"2793":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":1,"t2s":0,"t1":3,"t2":12},"2808":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":3},"2814":{"d":9,"dB":"2018-10-07T13:00:00Z","t1s":3,"t2s":0,"t1":3,"t2":8},"2853":{"d":13,"dB":"2018-11-11T14:00:00Z","t1s":0,"t2s":0,"t1":3,"t2":5},"2883":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":3,"t2s":2,"t1":3,"t2":4},"2913":{"d":19,"dB":"2018-12-23T16:00:00Z","t1s":1,"t2s":1,"t1":3,"t2":42},"2950":{"d":22,"dB":"2019-01-26T19:00:00Z","t1s":1,"t2s":0,"t1":41,"t2":3},"2741":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":14},"2750":{"d":2,"dB":"2018-08-19T13:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":4},"2790":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":5},"2801":{"d":7,"dB":"2018-09-25T19:00:00Z","t1s":2,"t2s":3,"t1":10,"t2":4},"2816":{"d":9,"dB":"2018-10-06T15:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":4},"2850":{"d":12,"dB":"2018-11-04T16:00:00Z","t1s":4,"t2s":3,"t1":4,"t2":16},"2860":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":68},"2865":{"d":14,"dB":"2018-11-23T20:00:00Z","t1s":1,"t2s":0,"t1":18,"t2":4},"2880":{"d":15,"dB":"2018-11-30T19:45:00Z","t1s":3,"t2s":0,"t1":4,"t2":8},"2899":{"d":17,"dB":"2019-01-16T20:00:00Z","t1s":2,"t2s":1,"t1":4,"t2":9},"2925":{"d":20,"dB":"2019-01-12T19:00:00Z","t1s":0,"t2s":1,"t1":14,"t2":4},"2941":{"d":21,"dB":"2019-01-20T20:00:00Z","t1s":1,"t2s":2,"t1":4,"t2":18},"2947":{"d":22,"dB":"2019-01-30T20:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":4},"2969":{"d":24,"dB":"2019-02-10T16:00:00Z","t1s":3,"t2s":0,"t1":20,"t2":4},"2757":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":0,"t1":15,"t2":4},"2770":{"d":4,"dB":"2018-09-02T13:00:00Z","t1s":0,"t2s":0,"t1":4,"t2":42},"2810":{"d":8,"dB":"2018-09-28T18:45:00Z","t1s":2,"t2s":0,"t1":4,"t2":13},"2830":{"d":10,"dB":"2018-10-21T15:00:00Z","t1s":1,"t2s":1,"t1":4,"t2":20},"2839":{"d":11,"dB":"2018-10-26T18:45:00Z","t1s":1,"t2s":1,"t1":67,"t2":4},"2909":{"d":18,"dB":"2018-12-16T16:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":4},"2920":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":7},"2766":{"d":4,"dB":"2018-09-02T19:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":9},"2781":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":10,"t2":13},"2786":{"d":6,"dB":"2018-09-21T18:45:00Z","t1s":1,"t2s":1,"t1":13,"t2":67},"2831":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":2,"t2s":1,"t1":41,"t2":13},"2838":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":2,"t2s":2,"t1":13,"t2":7},"2849":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":68,"t2":13},"2863":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":13},"2877":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":15},"2882":{"d":16,"dB":"2018-12-04T18:00:00Z","t1s":0,"t2s":2,"t1":42,"t2":13},"2895":{"d":17,"dB":"2019-01-16T18:00:00Z","t1s":1,"t2s":1,"t1":13,"t2":19},"2915":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":0,"t2s":2,"t1":13,"t2":14},"2927":{"d":20,"dB":"2019-01-13T20:00:00Z","t1s":1,"t2s":1,"t1":9,"t2":13},"2743":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":1,"t1":5,"t2":19},"2758":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":5},"2763":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":2,"t1":7,"t2":5},"2774":{"d":5,"dB":"2018-09-15T15:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":18},"2803":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":42},"2817":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":5},"2822":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":0,"t2s":0,"t1":5,"t2":14},"2836":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":5},"2842":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":20},"2872":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":5},"2884":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":1,"t2s":2,"t1":5,"t2":67},"2903":{"d":18,"dB":"2018-12-18T18:30:00Z","t1s":2,"t2s":1,"t1":5,"t2":10},"2918":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":2,"t2s":2,"t1":68,"t2":5},"2923":{"d":20,"dB":"2019-01-11T18:00:00Z","t1s":1,"t2s":3,"t1":5,"t2":12},"2934":{"d":21,"dB":"2019-01-20T16:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":9},"2946":{"d":22,"dB":"2019-01-27T14:00:00Z","t1s":2,"t2s":0,"t1":15,"t2":5},"2962":{"d":24,"dB":"2019-02-09T19:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":5},"2794":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":2,"t1":5,"t2":15},"2900":{"d":17,"dB":"2018-12-09T14:00:00Z","t1s":2,"t2s":2,"t1":41,"t2":5},"2739":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":68},"2778":{"d":5,"dB":"2018-09-16T13:00:00Z","t1s":0,"t2s":0,"t1":8,"t2":68},"2819":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":68},"2829":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":16},"2840":{"d":11,"dB":"2018-10-28T14:00:00Z","t1s":0,"t2s":2,"t1":20,"t2":68},"2870":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":2,"t2s":1,"t1":68,"t2":14},"2876":{"d":15,"dB":"2018-12-02T16:00:00Z","t1s":0,"t2s":0,"t1":9,"t2":68},"2890":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":10},"2894":{"d":17,"dB":"2018-12-09T16:00:00Z","t1s":1,"t2s":1,"t1":12,"t2":68},"2911":{"d":18,"dB":"2018-12-15T19:00:00Z","t1s":2,"t2s":1,"t1":68,"t2":41},"2737":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":1,"t2s":2,"t1":15,"t2":7},"2744":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":2,"t2s":0,"t1":7,"t2":8},"2775":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":3,"t1":7,"t2":16},"2795":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":3,"t1":7,"t2":18},"2811":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":3,"t2s":0,"t1":41,"t2":7},"2812":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":7},"2823":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":12},"2759":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":0,"t2s":4,"t1":19,"t2":7},"2788":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":7},"2843":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":0,"t2s":4,"t1":7,"t2":67},"2856":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":7},"2881":{"d":15,"dB":"2018-12-02T14:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":7},"2885":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":14},"2898":{"d":17,"dB":"2018-12-08T19:00:00Z","t1s":2,"t2s":0,"t1":20,"t2":7},"2924":{"d":20,"dB":"2019-01-13T16:00:00Z","t1s":1,"t2s":1,"t1":7,"t2":15},"2943":{"d":22,"dB":"2019-01-26T19:00:00Z","t1s":2,"t2s":0,"t1":7,"t2":13},"2952":{"d":23,"dB":"2019-02-02T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":7},"2963":{"d":24,"dB":"2019-02-08T19:45:00Z","t1s":1,"t2s":2,"t1":7,"t2":9},"2738":{"d":1,"dB":"2018-08-11T17:00:00Z","t1s":1,"t2s":3,"t1":8,"t2":13},"2771":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":2,"t2s":3,"t1":41,"t2":8},"2784":{"d":6,"dB":"2018-09-22T15:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":8},"2798":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":1,"t2s":2,"t1":8,"t2":19},"2805":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":1,"t2s":1,"t1":18,"t2":8},"2826":{"d":10,"dB":"2018-10-20T18:00:00Z","t1s":4,"t2s":0,"t1":8,"t2":10},"2832":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":8},"2846":{"d":12,"dB":"2018-11-04T14:00:00Z","t1s":5,"t2s":0,"t1":8,"t2":14},"2859":{"d":13,"dB":"2018-11-11T16:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":8},"2867":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":1,"t2s":1,"t1":8,"t2":16},"2896":{"d":17,"dB":"2019-01-16T18:00:00Z","t1s":1,"t2s":0,"t1":67,"t2":8},"2908":{"d":18,"dB":"2019-01-08T18:00:00Z","t1s":2,"t2s":0,"t1":8,"t2":15},"2928":{"d":20,"dB":"2019-01-13T14:00:00Z","t1s":0,"t2s":1,"t1":8,"t2":20},"2932":{"d":21,"dB":"2019-01-20T16:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":8},"2966":{"d":24,"dB":"2019-02-10T14:00:00Z","t1s":2,"t2s":4,"t1":8,"t2":67},"2888":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":9},"2734":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":1,"t1":12,"t2":20},"2746":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":12},"2804":{"d":8,"dB":"2018-09-30T19:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":9},"2875":{"d":15,"dB":"2018-12-01T16:00:00Z","t1s":2,"t2s":2,"t1":12,"t2":18},"2910":{"d":18,"dB":"2018-12-16T14:00:00Z","t1s":2,"t2s":3,"t1":67,"t2":12},"2914":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":1,"t2s":2,"t1":12,"t2":10},"2736":{"d":1,"dB":"2018-08-10T20:45:00Z","t1s":4,"t2s":0,"t1":9,"t2":10},"2747":{"d":2,"dB":"2018-08-19T19:00:00Z","t1s":3,"t2s":1,"t1":67,"t2":9},"2756":{"d":3,"dB":"2018-08-26T19:00:00Z","t1s":2,"t2s":2,"t1":9,"t2":20},"2776":{"d":5,"dB":"2018-09-16T19:00:00Z","t1s":4,"t2s":0,"t1":9,"t2":14},"2785":{"d":6,"dB":"2018-09-23T19:00:00Z","t1s":4,"t2s":2,"t1":18,"t2":9},"2796":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":3,"t2s":2,"t1":9,"t2":41},"2827":{"d":10,"dB":"2018-10-21T19:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":9},"2845":{"d":12,"dB":"2018-11-04T20:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":9},"2862":{"d":14,"dB":"2018-11-25T20:00:00Z","t1s":1,"t2s":3,"t1":42,"t2":9},"2912":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":9},"1138":{"d":38,"dB":"2018-05-19T19:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":42},"2959":{"d":23,"dB":"2019-02-02T20:00:00Z","t1s":2,"t2s":1,"t1":68,"t2":9},"2945":{"d":22,"dB":"2019-01-25T19:45:00Z","t1s":1,"t2s":2,"t1":9,"t2":12},"2765":{"d":4,"dB":"2018-08-31T18:45:00Z","t1s":0,"t2s":1,"t1":18,"t2":19},"2787":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":1,"t2s":0,"t1":15,"t2":19},"2847":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":42},"2858":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":67,"t2":19},"2868":{"d":14,"dB":"2018-11-25T16:00:00Z","t1s":2,"t2s":0,"t1":19,"t2":12},"2874":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":19},"2889":{"d":16,"dB":"2018-12-04T18:00:00Z","t1s":0,"t2s":0,"t1":19,"t2":16},"2761":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":67},"2764":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":10},"2782":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":0,"t2s":0,"t1":16,"t2":10},"2809":{"d":8,"dB":"2018-09-30T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":10},"2821":{"d":9,"dB":"2018-10-05T18:45:00Z","t1s":1,"t2s":1,"t1":10,"t2":19},"2841":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":0,"t2s":3,"t1":10,"t2":15},"2851":{"d":12,"dB":"2018-11-03T19:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":10},"2861":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":0,"t2s":1,"t1":10,"t2":42},"2901":{"d":17,"dB":"2019-01-16T18:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":18},"2931":{"d":20,"dB":"2019-01-13T16:00:00Z","t1s":1,"t2s":2,"t1":10,"t2":41},"2937":{"d":21,"dB":"2019-01-19T19:00:00Z","t1s":0,"t2s":1,"t1":67,"t2":10},"2951":{"d":22,"dB":"2019-01-27T19:00:00Z","t1s":0,"t2s":0,"t1":10,"t2":16},"2957":{"d":23,"dB":"2019-02-02T19:00:00Z","t1s":2,"t2s":1,"t1":13,"t2":10},"2971":{"d":24,"dB":"2019-02-10T14:00:00Z","t1s":1,"t2s":1,"t1":10,"t2":68},"1048":{"d":29,"dB":"2018-03-10T19:00:00Z","t1s":1,"t2s":1,"t1":12,"t2":15},"2754":{"d":3,"dB":"2018-08-26T13:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":14},"2762":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":12},"2772":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":2,"t2s":3,"t1":42,"t2":12},"2855":{"d":13,"dB":"2018-11-09T19:45:00Z","t1s":0,"t2s":0,"t1":12,"t2":41},"2935":{"d":21,"dB":"2019-01-18T19:45:00Z","t1s":2,"t2s":1,"t1":12,"t2":42},"2955":{"d":23,"dB":"2019-02-01T19:45:00Z","t1s":4,"t2s":0,"t1":12,"t2":19},"2887":{"d":16,"dB":"2018-12-04T20:00:00Z","t1s":0,"t2s":1,"t1":15,"t2":12},"2964":{"d":24,"dB":"2019-02-10T16:00:00Z","t1s":0,"t2s":2,"t1":14,"t2":12},"1081":{"d":32,"dB":"2018-04-07T15:00:00Z","t1s":2,"t2s":1,"t1":13,"t2":8},"2797":{"d":7,"dB":"2018-09-25T17:00:00Z","t1s":0,"t2s":1,"t1":13,"t2":16},"2818":{"d":9,"dB":"2018-10-07T15:00:00Z","t1s":1,"t2s":2,"t1":13,"t2":20},"2906":{"d":18,"dB":"2018-12-16T20:00:00Z","t1s":3,"t2s":0,"t1":18,"t2":13},"2936":{"d":21,"dB":"2019-01-19T19:00:00Z","t1s":1,"t2s":5,"t1":13,"t2":41},"2965":{"d":24,"dB":"2019-02-10T14:00:00Z","t1s":2,"t2s":2,"t1":15,"t2":13},"3265":{"d":10,"dB":"2018-10-28T13:30:00Z","t1s":0,"t2s":4,"t1":23,"t2":25},"3276":{"d":11,"dB":"2018-11-04T16:00:00Z","t1s":3,"t2s":1,"t1":25,"t2":26},"3285":{"d":12,"dB":"2018-11-11T14:15:00Z","t1s":0,"t2s":0,"t1":25,"t2":22},"3314":{"d":15,"dB":"2018-12-05T19:45:00Z","t1s":2,"t2s":1,"t1":69,"t2":25},"3341":{"d":18,"dB":"2018-12-22T15:00:00Z","t1s":0,"t2s":1,"t1":25,"t2":29},"3371":{"d":21,"dB":"2019-01-02T19:45:00Z","t1s":0,"t2s":0,"t1":25,"t2":35},"3390":{"d":23,"dB":"2019-01-20T16:00:00Z","t1s":1,"t2s":2,"t1":71,"t2":24},"3168":{"d":1,"dB":"2018-08-10T21:00:00Z","t1s":2,"t2s":1,"t1":31,"t2":29},"3180":{"d":2,"dB":"2018-08-18T14:00:00Z","t1s":2,"t2s":0,"t1":29,"t2":69},"1980":{"d":1,"dB":"2018-08-20T18:00:00Z","t1s":1,"t2s":1,"t1":49,"t2":54},"1985":{"d":2,"dB":"2018-08-25T20:15:00Z","t1s":1,"t2s":0,"t1":54,"t2":72},"2024":{"d":6,"dB":"2018-09-25T20:00:00Z","t1s":3,"t2s":0,"t1":54,"t2":73},"2077":{"d":11,"dB":"2018-11-03T12:00:00Z","t1s":1,"t2s":1,"t1":47,"t2":54},"2089":{"d":12,"dB":"2018-11-10T17:30:00Z","t1s":3,"t2s":2,"t1":54,"t2":57},"2108":{"d":14,"dB":"2018-12-02T15:15:00Z","t1s":1,"t2s":1,"t1":53,"t2":54},"2127":{"d":16,"dB":"2018-12-15T15:15:00Z","t1s":2,"t2s":3,"t1":74,"t2":54},"2133":{"d":17,"dB":"2018-12-22T15:15:00Z","t1s":1,"t2s":0,"t1":54,"t2":56},"2835":{"d":11,"dB":"2018-10-27T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":41},"2893":{"d":17,"dB":"2018-12-08T19:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":42},"2905":{"d":18,"dB":"2019-01-16T18:00:00Z","t1s":2,"t2s":1,"t1":14,"t2":20},"2799":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":0,"t2s":0,"t1":67,"t2":14},"2802":{"d":8,"dB":"2018-09-29T18:00:00Z","t1s":0,"t2s":1,"t1":16,"t2":14},"2815":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":15},"2854":{"d":13,"dB":"2018-11-10T16:00:00Z","t1s":2,"t2s":4,"t1":14,"t2":18},"2944":{"d":22,"dB":"2019-01-26T19:00:00Z","t1s":0,"t2s":1,"t1":14,"t2":68},"2735":{"d":1,"dB":"2018-08-12T15:00:00Z","t1s":2,"t2s":0,"t1":18,"t2":42},"2742":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":15},"2752":{"d":3,"dB":"2018-08-25T20:00:00Z","t1s":4,"t2s":1,"t1":42,"t2":68},"2768":{"d":4,"dB":"2018-09-01T18:00:00Z","t1s":0,"t2s":1,"t1":68,"t2":15},"2777":{"d":5,"dB":"2018-09-15T18:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":41},"2806":{"d":8,"dB":"2018-09-30T15:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":67},"2852":{"d":13,"dB":"2018-11-10T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":15},"2866":{"d":14,"dB":"2018-11-25T14:00:00Z","t1s":2,"t2s":2,"t1":15,"t2":20},"2916":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":18},"2940":{"d":21,"dB":"2019-01-20T14:00:00Z","t1s":0,"t2s":0,"t1":20,"t2":15},"2958":{"d":23,"dB":"2019-02-03T14:00:00Z","t1s":1,"t2s":1,"t1":67,"t2":15},"1085":{"d":33,"dB":"2018-04-13T18:45:00Z","t1s":1,"t2s":1,"t1":16,"t2":19},"2732":{"d":1,"dB":"2018-08-11T20:00:00Z","t1s":3,"t2s":4,"t1":16,"t2":67},"2749":{"d":2,"dB":"2018-08-18T18:00:00Z","t1s":1,"t2s":0,"t1":20,"t2":16},"2813":{"d":9,"dB":"2018-10-06T18:00:00Z","t1s":2,"t2s":2,"t1":16,"t2":41},"2902":{"d":18,"dB":"2019-01-08T18:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":16},"2930":{"d":20,"dB":"2019-01-23T18:00:00Z","t1s":3,"t2s":1,"t1":67,"t2":16},"2970":{"d":24,"dB":"2019-02-09T19:00:00Z","t1s":1,"t2s":2,"t1":41,"t2":16},"2833":{"d":11,"dB":"2018-10-27T15:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":18},"2755":{"d":3,"dB":"2018-08-24T20:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":41},"2886":{"d":16,"dB":"2018-12-05T18:00:00Z","t1s":0,"t2s":2,"t1":18,"t2":20},"2926":{"d":20,"dB":"2019-01-11T19:45:00Z","t1s":1,"t2s":1,"t1":18,"t2":68},"2942":{"d":22,"dB":"2019-01-27T16:00:00Z","t1s":0,"t2s":1,"t1":42,"t2":18},"2967":{"d":24,"dB":"2019-02-10T20:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":18},"2748":{"d":2,"dB":"2018-08-17T18:45:00Z","t1s":1,"t2s":0,"t1":68,"t2":18},"2824":{"d":10,"dB":"2018-10-19T18:45:00Z","t1s":2,"t2s":0,"t1":18,"t2":67},"2779":{"d":5,"dB":"2018-09-14T17:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":20},"2921":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":2,"t2s":0,"t1":41,"t2":19},"2939":{"d":21,"dB":"2019-01-19T19:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":19},"2948":{"d":22,"dB":"2019-01-26T19:00:00Z","t1s":2,"t2s":0,"t1":19,"t2":67},"2792":{"d":7,"dB":"2018-09-26T17:00:00Z","t1s":2,"t2s":1,"t1":42,"t2":20},"2879":{"d":15,"dB":"2018-12-02T16:00:00Z","t1s":1,"t2s":4,"t1":20,"t2":41},"2919":{"d":19,"dB":"2018-12-22T20:00:00Z","t1s":4,"t2s":0,"t1":20,"t2":67},"2960":{"d":23,"dB":"2019-02-02T19:00:00Z","t1s":1,"t2s":0,"t1":20,"t2":42},"1973":{"d":1,"dB":"2018-08-17T20:15:00Z","t1s":0,"t2s":3,"t1":60,"t2":63},"1990":{"d":2,"dB":"2018-08-27T18:15:00Z","t1s":1,"t2s":2,"t1":63,"t2":51},"1998":{"d":3,"dB":"2018-09-02T10:00:00Z","t1s":2,"t2s":2,"t1":63,"t2":49},"2016":{"d":5,"dB":"2018-09-23T10:00:00Z","t1s":2,"t2s":6,"t1":63,"t2":55},"2037":{"d":7,"dB":"2018-09-30T16:30:00Z","t1s":2,"t2s":1,"t1":63,"t2":48},"2046":{"d":8,"dB":"2018-10-06T14:15:00Z","t1s":0,"t2s":1,"t1":58,"t2":63},"2081":{"d":11,"dB":"2018-11-04T15:15:00Z","t1s":1,"t2s":1,"t1":64,"t2":63},"2087":{"d":12,"dB":"2018-11-09T20:00:00Z","t1s":1,"t2s":3,"t1":63,"t2":52},"2096":{"d":13,"dB":"2018-11-24T17:30:00Z","t1s":2,"t2s":2,"t1":73,"t2":63},"2128":{"d":16,"dB":"2018-12-16T19:45:00Z","t1s":0,"t2s":5,"t1":63,"t2":59},"2871":{"d":14,"dB":"2018-11-24T19:00:00Z","t1s":0,"t2s":1,"t1":41,"t2":67},"1037":{"d":28,"dB":"2018-03-04T14:00:00Z","t1s":2,"t2s":0,"t1":5,"t2":41},"2791":{"d":6,"dB":"2018-09-22T18:00:00Z","t1s":3,"t2s":1,"t1":41,"t2":42},"2878":{"d":15,"dB":"2018-12-01T19:00:00Z","t1s":3,"t2s":0,"t1":67,"t2":42}},"Ne":{"2981":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":4,"t2":2},"2973":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":3,"t2":10},"2954":{"d":23,"dB":"2019-02-13T18:30:00Z","t1":5,"t2":8},"2979":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":67,"t2":7},"2977":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":9,"t2":42},"2975":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":12,"t2":15},"2978":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":13,"t2":8},"2976":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":18,"t2":14},"2972":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":16,"t2":19},"2980":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":68,"t2":20},"2974":{"d":25,"dB":"2019-02-16T21:00:00Z","t1":5,"t2":41}},"k":"356ef5"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20190217.json b/src/test/resources/__files/mpgstats.ligue-1.20190217.json deleted file mode 100644 index 82d3baf..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20190217.json +++ /dev/null @@ -1,39686 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-02-12T07:23:55Z", - "mL": { - "i": 1, - "n": "Ligue 1", - "cN": "Ligue-1", - "u": "\/league\/Ligue-1", - "aS": { - "cN": "Ligue-1-2018-2019", - "i": 6, - "n": "Ligue 1 2018-2019", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 24, - "lD": 24 - } - }, - "lS": { - "cN": "Ligue-1-2017-2018", - "i": 3, - "n": "Ligue 1 2017-2018", - "mD": 38 - } - }, - "mxD": 24, - "np": 709, - "le": { - "1": "Ligue-1", - "2": "Premier-League", - "3": "Liga" - }, - "p": [ - { - "i": 1, - "n": "Cavani", - "f": "Edinson", - "p": "A", - "r": 46, - "s": { - "g": "17", - "s": "99", - "n": "16", - "a": "6.19", - "d": "1.39", - "Sg": "7", - "Ss": "37", - "Sn": "6", - "Sa": "6.25", - "Sd": "1.75", - "Og": "24", - "Os": "151", - "On": "25", - "Oa": "6.04", - "Od": "1.46", - "Ap": "24", - "p": { - "32": { - "n": 3, - "s": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7.5, - "g": 2 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "13": { - "n": 8.5, - "g": 3 - }, - "14": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 9, - "g": 3 - }, - "22": { - "n": 7.5, - "g": 2 - }, - "23": { - "n": 4 - }, - "24": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 4, - "n": "Thiago Silva", - "f": "", - "p": "D", - "r": 28, - "s": { - "s": "107", - "n": "18", - "a": "5.97", - "d": "0.56", - "Ss": "36", - "Sn": "6", - "Sa": "6", - "Sd": "0.76", - "Og": "1", - "Os": "160", - "On": "27", - "Oa": "5.94", - "Od": "0.79", - "Dp": "26", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "12": { - "n": 7 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 7 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 7, - "n": "Di Mar\u00eda", - "f": "\u00c1ngel", - "p": "M", - "r": 33, - "s": { - "g": "5", - "s": "115", - "n": "20", - "a": "5.78", - "d": "1.03", - "Og": "10", - "Os": "187", - "On": "32", - "Oa": "5.86", - "Od": "1.08", - "Mp": "12", - "Ap": "19", - "p": { - "32": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 7 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 7 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 6, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 12, - "n": "Draxler", - "f": "Julian", - "p": "M", - "r": 25, - "s": { - "g": "3", - "s": "112", - "n": "19", - "a": "5.89", - "d": "1.06", - "Og": "5", - "Os": "175", - "On": "30", - "Oa": "5.83", - "Od": "1.03", - "Mp": "22", - "Ap": "4", - "p": { - "1": { - "n": 5.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 7.5, - "g": 1 - }, - "11": { - "n": 6.5, - "g": 1 - }, - "12": { - "n": 7 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 8 - }, - "21": { - "n": 7, - "s": 1 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 17, - "n": "Verratti", - "f": "Marco", - "p": "M", - "r": 15, - "s": { - "s": "83", - "n": "15", - "a": "5.53", - "d": "0.94", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "109", - "On": "19", - "Oa": "5.74", - "Od": "1.06", - "Mp": "18", - "p": { - "5": { - "n": 7 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 7 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 28, - "n": "Mbapp\u00e9", - "f": "Kylian", - "p": "A", - "r": 50, - "s": { - "g": "18", - "s": "116", - "n": "17", - "a": "6.82", - "d": "1.1", - "Sg": "6", - "Ss": "40", - "Sn": "6", - "Sa": "6.75", - "Sd": "1.41", - "Og": "22", - "Os": "169", - "On": "27", - "Oa": "6.26", - "Od": "1.53", - "Mp": "3", - "Ap": "23", - "p": { - "32": { - "n": 4 - }, - "2": { - "n": 7.5, - "g": 2, - "s": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 9, - "g": 4 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 9, - "g": 3 - }, - "22": { - "n": 8, - "g": 1 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 44, - "n": "Marquinhos", - "f": "", - "p": "D", - "r": 29, - "s": { - "g": "2", - "s": "110", - "n": "18", - "a": "6.11", - "d": "0.81", - "Og": "2", - "Os": "154", - "On": "26", - "Oa": "5.92", - "Od": "0.78", - "Mp": "8", - "Dp": "18", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 8 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6 - }, - "23": { - "n": 6.5 - } - } - }, - "c": 2 - }, - { - "i": 46, - "n": "Meunier", - "f": "Thomas", - "p": "D", - "r": 18, - "s": { - "g": "3", - "s": "96", - "n": "16", - "a": "6", - "d": "0.73", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "4", - "Os": "152", - "On": "26", - "Oa": "5.85", - "Od": "0.83", - "Mp": "5", - "Dp": "17", - "p": { - "32": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "7": { - "n": 7, - "g": 1, - "s": 1 - }, - "9": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "14": { - "n": 6 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "22": { - "n": 5.5, - "s": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 49, - "n": "Kurzawa", - "f": "Layvin", - "p": "D", - "r": 8, - "s": { - "s": "15", - "n": "3", - "a": "5", - "d": "0.41", - "Os": "56", - "On": "11", - "Oa": "5.09", - "Od": "1.02", - "Dp": "10", - "p": { - "32": { - "n": 4 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 100, - "n": "Areola", - "f": "Alphonse", - "p": "G", - "r": 21, - "s": { - "s": "65", - "n": "11", - "a": "5.91", - "d": "0.51", - "Os": "135", - "On": "23", - "Oa": "5.87", - "Od": "1.03", - "Gp": "23", - "p": { - "32": { - "n": 7 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "23": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 121, - "n": "Rabiot", - "f": "Adrien", - "p": "M", - "r": 8, - "s": { - "g": "2", - "ao": "1", - "s": "87", - "n": "14", - "a": "6.21", - "d": "1.01", - "Og": "2", - "Oao": "1", - "Os": "155", - "On": "26", - "Oa": "5.96", - "Od": "1.02", - "Mp": "22", - "Ap": "1", - "p": { - "32": { - "n": 6 - }, - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5, - "a": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7 - }, - "10": { - "n": 7.5, - "g": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7 - }, - "14": { - "n": 7 - }, - "16": { - "n": 7 - } - } - }, - "c": 2 - }, - { - "i": 152, - "n": "Trapp", - "f": "Kevin", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Gp": "2" - }, - "c": 2 - }, - { - "i": 180, - "n": "Kimpembe", - "f": "Presnel", - "p": "D", - "r": 14, - "s": { - "s": "72", - "n": "13", - "a": "5.54", - "d": "0.97", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.85", - "Os": "137", - "On": "25", - "Oa": "5.48", - "Od": "0.96", - "Dp": "25", - "p": { - "32": { - "n": 3 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4 - }, - "24": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 458, - "n": "Nkunku", - "f": "Christopher", - "p": "M", - "r": 5, - "s": { - "g": "1", - "s": "75", - "n": "14", - "a": "5.39", - "d": "0.71", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "5", - "Os": "129", - "On": "24", - "Oa": "5.4", - "Od": "0.95", - "Mp": "15", - "Dp": "1", - "Ap": "5", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 494, - "n": "Georgen", - "f": "Alec", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 1155, - "n": "Neymar", - "f": "", - "p": "A", - "r": 20, - "s": { - "g": "13", - "s": "88", - "n": "13", - "a": "6.77", - "d": "1.12", - "Og": "14", - "Os": "109", - "On": "16", - "Oa": "6.81", - "Od": "1.07", - "Mp": "4", - "Ap": "12", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 7.5, - "g": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7.5, - "g": 2 - }, - "9": { - "n": 8, - "g": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "15": { - "n": 6, - "g": 1 - }, - "21": { - "n": 8.5, - "g": 2 - } - } - }, - "c": 2 - }, - { - "i": 1157, - "n": "Dani Alves", - "f": "", - "p": "D", - "r": 17, - "s": { - "s": "51", - "n": "9", - "a": "5.67", - "d": "1.08", - "Ss": "35", - "Sn": "6", - "Sa": "5.92", - "Sd": "1.24", - "Og": "1", - "Os": "104", - "On": "18", - "Oa": "5.78", - "Od": "1.04", - "Mp": "6", - "Dp": "11", - "p": { - "14": { - "n": 5.5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 8 - }, - "22": { - "n": 6 - }, - "23": { - "n": 4 - }, - "24": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 1322, - "n": "Choupo-Moting", - "f": "Eric Maxim", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.51", - "Ss": "13", - "Sn": "3", - "Sa": "4.33", - "Sd": "0.24", - "Og": "2", - "Os": "80", - "On": "17", - "Oa": "4.71", - "Od": "0.69", - "Mp": "4", - "Ap": "12", - "p": { - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2079, - "n": "Bernede", - "f": "Antoine", - "p": "M", - "r": 5, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Mp": "2", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2151, - "n": "N'Soki", - "f": "Stanley", - "p": "M", - "r": 6, - "s": { - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.52", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "50", - "On": "10", - "Oa": "5.05", - "Od": "0.52", - "Mp": "3", - "Dp": "7", - "p": { - "1": { - "n": 5.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "24": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 2267, - "n": "Lass Diarra", - "f": "", - "p": "M", - "r": 3, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.62", - "Os": "63", - "On": "12", - "Oa": "5.29", - "Od": "0.72", - "Mp": "11", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 5 - }, - "5": { - "n": 4 - }, - "10": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2311, - "n": "Cibois", - "f": "Sebastien", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2327, - "n": "Rimane", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Dp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2328, - "n": "Weah", - "f": "Timothy", - "p": "A", - "r": 6, - "s": { - "g": "1", - "s": "10", - "n": "2", - "a": "5", - "d": "1", - "Og": "1", - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.94", - "Ap": "3", - "p": { - "1": { - "n": 6, - "g": 1, - "s": 1 - }, - "2": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2626, - "n": "Fressange", - "f": "Alexandre", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2627, - "n": "Dagba", - "f": "Colin", - "p": "D", - "r": 6, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.22", - "Dp": "4", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2652, - "n": "Postolachi", - "f": "Virgiliu", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2661, - "n": "Buffon", - "f": "Gianluigi", - "p": "G", - "r": 19, - "s": { - "s": "61", - "n": "11", - "a": "5.59", - "d": "0.63", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "61", - "On": "11", - "Oa": "5.59", - "Od": "0.63", - "Gp": "11", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "9": { - "n": 7 - }, - "12": { - "n": 5 - }, - "14": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 2668, - "n": "Diaby", - "f": "Moussa", - "p": "A", - "r": 7, - "s": { - "g": "2", - "s": "73", - "n": "14", - "a": "5.25", - "d": "1.05", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.25", - "Og": "2", - "Os": "73", - "On": "14", - "Oa": "5.25", - "Od": "1.05", - "Mp": "6", - "Ap": "8", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 7, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 8 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 2670, - "n": "Mbe Soh", - "f": "Lo\u00efc", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2821, - "n": "Kehrer", - "f": "Thilo", - "p": "D", - "r": 15, - "s": { - "s": "85", - "n": "16", - "a": "5.31", - "d": "0.83", - "Os": "85", - "On": "16", - "Oa": "5.31", - "Od": "0.83", - "Dp": "16", - "p": { - "3": { - "n": 3.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 6, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 2864, - "n": "Bernat", - "f": "Juan", - "p": "D", - "r": 14, - "s": { - "s": "68", - "n": "13", - "a": "5.27", - "d": "0.8", - "Os": "68", - "On": "13", - "Oa": "5.27", - "Od": "0.8", - "Mp": "4", - "Dp": "9", - "p": { - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 2 - }, - { - "i": 3367, - "n": "Paredes", - "f": "Leandro", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "24": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 36, - "n": "Plasil", - "f": "Jaroslav", - "p": "M", - "r": 9, - "s": { - "s": "72", - "n": "14", - "a": "5.18", - "d": "0.55", - "Os": "129", - "On": "25", - "Oa": "5.18", - "Od": "0.63", - "Mp": "23", - "p": { - "37": { - "n": 5 - }, - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 38, - "n": "Costil", - "f": "Benoit", - "p": "G", - "r": 21, - "s": { - "s": "132", - "n": "23", - "a": "5.76", - "d": "0.98", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "204", - "On": "37", - "Oa": "5.53", - "Od": "1.03", - "Gp": "37", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 8 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 8 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 56, - "n": "Briand", - "f": "Jimmy", - "p": "A", - "r": 11, - "s": { - "g": "4", - "s": "98", - "n": "21", - "a": "4.69", - "d": "1.01", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "9", - "Os": "163", - "On": "34", - "Oa": "4.81", - "Od": "1.11", - "Mp": "5", - "Ap": "29", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4 - }, - "5": { - "n": 7, - "g": 2 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 63, - "n": "Prior", - "f": "Jerome", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 86, - "n": "Kamano", - "f": "Fran\u00e7ois", - "p": "A", - "r": 17, - "s": { - "g": "8", - "s": "117", - "n": "22", - "a": "5.34", - "d": "1.16", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "14", - "Os": "190", - "On": "36", - "Oa": "5.29", - "Od": "1.25", - "Mp": "8", - "Ap": "23", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5, - "g": 1 - }, - "3": { - "n": 7.5, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 8, - "g": 2 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 103, - "n": "Sankhar\u00e9", - "f": "Younousse", - "p": "M", - "r": 14, - "s": { - "s": "90", - "n": "18", - "a": "5.03", - "d": "0.59", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "2", - "Os": "138", - "On": "27", - "Oa": "5.13", - "Od": "0.69", - "Mp": "23", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 105, - "n": "Sabaly", - "f": "Youssouf", - "p": "D", - "r": 9, - "s": { - "s": "55", - "n": "11", - "a": "5.05", - "d": "0.54", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "132", - "On": "25", - "Oa": "5.3", - "Od": "0.85", - "Dp": "25", - "p": { - "37": { - "n": 4 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 116, - "n": "Karamoh", - "f": "Yann", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.92", - "Og": "3", - "Os": "75", - "On": "15", - "Oa": "5.03", - "Od": "0.92", - "Mp": "3", - "Ap": "12", - "p": { - "6": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 189, - "n": "Jovanovic", - "f": "Vukasin", - "p": "D", - "r": 8, - "s": { - "s": "34", - "n": "6", - "a": "5.67", - "d": "1.03", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "34", - "On": "6", - "Oa": "5.67", - "Od": "1.03", - "Dp": "6", - "p": { - "9": { - "n": 7.5 - }, - "17": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 229, - "n": "Lewczuk", - "f": "Igor", - "p": "D", - "r": 5, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "0.73", - "Os": "32", - "On": "7", - "Oa": "4.57", - "Od": "0.68", - "Dp": "5", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "19": { - "n": 6, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 268, - "n": "de Preville", - "f": "Nicolas", - "p": "A", - "r": 5, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.71", - "d": "0.8", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "102", - "On": "22", - "Oa": "4.66", - "Od": "0.86", - "Mp": "2", - "Ap": "15", - "p": { - "37": { - "n": 6, - "s": 1 - }, - "2": { - "n": 3 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "16": { - "n": 6, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 305, - "n": "Gajic", - "f": "Milan", - "p": "D", - "r": 4, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 3 - }, - { - "i": 362, - "n": "Poundj\u00e9", - "f": "Maxime", - "p": "D", - "r": 10, - "s": { - "s": "90", - "n": "18", - "a": "5", - "d": "0.75", - "Os": "153", - "On": "30", - "Oa": "5.1", - "Od": "0.83", - "Dp": "30", - "p": { - "37": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 1075, - "n": "Maja", - "f": "Josh", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1168, - "n": "Jonathan Caf\u00fa", - "f": "", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4" - }, - "c": 3 - }, - { - "i": 1175, - "n": "Ot\u00e1vio", - "f": "", - "p": "M", - "r": 10, - "s": { - "s": "100", - "n": "18", - "a": "5.58", - "d": "0.67", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "120", - "On": "22", - "Oa": "5.48", - "Od": "0.71", - "Mp": "21", - "p": { - "37": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 1203, - "n": "Lerager", - "f": "Lukas", - "p": "M", - "r": 12, - "s": { - "s": "91", - "n": "18", - "a": "5.06", - "d": "0.64", - "Og": "2", - "Os": "166", - "On": "32", - "Oa": "5.19", - "Od": "0.78", - "Mp": "32", - "p": { - "37": { - "n": 7, - "g": 1 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 1261, - "n": "Mandanda", - "f": "Over", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1271, - "n": "Poussin", - "f": "Gaetan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1549, - "n": "Youssouf", - "f": "Zaydou", - "p": "M", - "r": 3, - "s": { - "s": "19", - "n": "4", - "a": "4.75", - "d": "0.43", - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "0.49", - "Mp": "2", - "Ap": "2", - "p": { - "1": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 2080, - "n": "Carrique", - "f": "Thomas", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2142, - "n": "Adli", - "f": "Yacine", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 3 - }, - { - "i": 2149, - "n": "Kound\u00e9", - "f": "Jules", - "p": "D", - "r": 15, - "s": { - "s": "118", - "n": "23", - "a": "5.13", - "d": "0.77", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "2", - "Os": "187", - "On": "36", - "Oa": "5.19", - "Od": "0.79", - "Dp": "35", - "p": { - "37": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2152, - "n": "Pablo", - "f": "", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "90", - "n": "16", - "a": "5.66", - "d": "0.96", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "1", - "Os": "158", - "On": "28", - "Oa": "5.66", - "Od": "0.95", - "Dp": "28", - "p": { - "37": { - "n": 5 - }, - "1": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 8, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "24": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2238, - "n": "Tchouameni", - "f": "Aurelien", - "p": "M", - "r": 7, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.56", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "0.56", - "Mp": "7", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "13": { - "n": 4.5 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 2434, - "n": "Palencia", - "f": "Sergi", - "p": "D", - "r": 8, - "s": { - "s": "90", - "n": "18", - "a": "5.03", - "d": "0.74", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "90", - "On": "18", - "Oa": "5.03", - "Od": "0.74", - "Dp": "18", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 2629, - "n": "Nilor", - "f": "Michael", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2630, - "n": "Diarra", - "f": "Ibrahim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2695, - "n": "Benrahou", - "f": "Yassin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2788, - "n": "Kalu", - "f": "Samuel", - "p": "A", - "r": 13, - "s": { - "g": "3", - "s": "88", - "n": "17", - "a": "5.18", - "d": "0.82", - "Og": "3", - "Os": "88", - "On": "17", - "Oa": "5.18", - "Od": "0.82", - "Mp": "7", - "Ap": "10", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2792, - "n": "Basic", - "f": "Toma", - "p": "M", - "r": 7, - "s": { - "s": "44", - "n": "9", - "a": "4.89", - "d": "0.39", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "44", - "On": "9", - "Oa": "4.89", - "Od": "0.39", - "Mp": "9", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 3 - }, - { - "i": 2863, - "n": "Cornelius", - "f": "Andreas", - "p": "A", - "r": 14, - "s": { - "g": "3", - "s": "86", - "n": "18", - "a": "4.81", - "d": "0.82", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "3", - "Os": "86", - "On": "18", - "Oa": "4.81", - "Od": "0.82", - "Ap": "18", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "22": { - "n": 4 - }, - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 13, - "n": "Hamouma", - "f": "Romain", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.74", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Og": "6", - "Os": "151", - "On": "29", - "Oa": "5.22", - "Od": "0.96", - "Mp": "19", - "Ap": "7", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "12": { - "n": 7, - "g": 1, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1 - }, - "22": { - "n": 5 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 4 - }, - { - "i": 47, - "n": "Ruffier", - "f": "St\u00e9phane", - "p": "G", - "r": 23, - "s": { - "s": "129", - "n": "23", - "a": "5.61", - "d": "1.09", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "208", - "On": "37", - "Oa": "5.62", - "Od": "1.05", - "Gp": "37", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7.5 - }, - "9": { - "n": 3 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 51, - "n": "Cabella", - "f": "R\u00e9my", - "p": "M", - "r": 22, - "s": { - "g": "4", - "s": "110", - "n": "20", - "a": "5.53", - "d": "1.12", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Og": "9", - "Os": "178", - "On": "32", - "Oa": "5.58", - "Od": "1.2", - "Mp": "25", - "Ap": "7", - "p": { - "32": { - "n": 7, - "g": 1 - }, - "2": { - "n": 7 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6, - "g": 1 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 4 - }, - { - "i": 64, - "n": "Perrin", - "f": "Loic", - "p": "D", - "r": 15, - "s": { - "s": "99", - "n": "19", - "a": "5.21", - "d": "1.13", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "159", - "On": "30", - "Oa": "5.3", - "Od": "1.02", - "Dp": "30", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 3 - } - } - }, - "c": 4 - }, - { - "i": 69, - "n": "Salibur", - "f": "Yannis", - "p": "M", - "r": 10, - "s": { - "g": "1", - "s": "94", - "n": "19", - "a": "4.95", - "d": "0.84", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "120", - "On": "24", - "Oa": "5", - "Od": "0.88", - "Mp": "10", - "Ap": "12", - "p": { - "2": { - "n": 4.5, - "e": 2745, - "c": 14, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 7, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4, - "s": 1 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 98, - "n": "Monnet-Paquet", - "f": "K\u00e9vin", - "p": "A", - "r": 10, - "s": { - "g": "1", - "s": "97", - "n": "21", - "a": "4.64", - "d": "0.82", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "157", - "On": "34", - "Oa": "4.63", - "Od": "0.83", - "Mp": "24", - "Ap": "7", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 3 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 126, - "n": "Vada", - "f": "Valent\u00edn", - "p": "M", - "r": 4, - "s": { - "s": "15", - "n": "3", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "46", - "On": "9", - "Oa": "5.11", - "Od": "0.31", - "Mp": "5", - "p": { - "2": { - "n": 5, - "e": 2751, - "c": 3, - "s": 1 - }, - "13": { - "n": 5, - "e": 2853, - "c": 3, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 137, - "n": "Selnaes", - "f": "Ole", - "p": "M", - "r": 8, - "s": { - "s": "114", - "n": "20", - "a": "5.7", - "d": "0.89", - "Os": "190", - "On": "33", - "Oa": "5.76", - "Od": "0.84", - "Mp": "32", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 7, - "s": 1 - }, - "8": { - "n": 7.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 4 - }, - { - "i": 138, - "n": "Diony", - "f": "Lois", - "p": "A", - "r": 14, - "s": { - "g": "5", - "s": "115", - "n": "23", - "a": "5.02", - "d": "1.03", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "5", - "Os": "115", - "On": "23", - "Oa": "5.02", - "Od": "1.03", - "Mp": "5", - "Ap": "18", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 4 - }, - { - "i": 155, - "n": "Beric", - "f": "Robert", - "p": "A", - "r": 7, - "s": { - "g": "2", - "s": "46", - "n": "10", - "a": "4.6", - "d": "0.8", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "8", - "Os": "99", - "On": "20", - "Oa": "4.95", - "Od": "1.07", - "Ap": "18", - "p": { - "3": { - "n": 4, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6, - "g": 1, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6, - "g": 1, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 195, - "n": "Moulin", - "f": "Jessy", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 208, - "n": "A\u00eft Bennasser", - "f": "Youssef", - "p": "M", - "r": 11, - "s": { - "s": "77", - "n": "14", - "a": "5.5", - "d": "0.94", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "125", - "On": "24", - "Oa": "5.21", - "Od": "1.02", - "Mp": "23", - "p": { - "4": { - "n": 6, - "e": 2766, - "c": 13 - }, - "5": { - "n": 6, - "e": 2781, - "c": 13 - }, - "6": { - "n": 7, - "e": 2786, - "c": 13 - }, - "10": { - "n": 4.5, - "e": 2831, - "c": 13, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 2838, - "c": 13 - }, - "12": { - "n": 5, - "e": 2849, - "c": 13 - }, - "13": { - "n": 4.5, - "e": 2857, - "c": 13 - }, - "14": { - "n": 7, - "e": 2863, - "c": 13 - }, - "15": { - "n": 4.5, - "e": 2877, - "c": 13 - }, - "16": { - "n": 6, - "e": 2882, - "c": 13 - }, - "17": { - "n": 6, - "e": 2895, - "c": 13 - }, - "19": { - "n": 6, - "e": 2915, - "c": 13 - }, - "20": { - "n": 6, - "e": 2927, - "c": 13 - }, - "24": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 209, - "n": "Tannane", - "f": "Oussama", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.94", - "p": { - "32": { - "n": 4, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 317, - "n": "M'Bengue", - "f": "Cheikh", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 400, - "n": "Polomat", - "f": "Pierre-Yves", - "p": "D", - "r": 9, - "s": { - "s": "30", - "n": "6", - "a": "5", - "Os": "30", - "On": "6", - "Oa": "5", - "Mp": "2", - "Dp": "4", - "p": { - "16": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 411, - "n": "Nordin", - "f": "Arnaud", - "p": "M", - "r": 6, - "s": { - "s": "58", - "n": "12", - "a": "4.88", - "d": "0.41", - "Os": "58", - "On": "12", - "Oa": "4.88", - "Od": "0.41", - "Mp": "12", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 522, - "n": "Rocha Santos", - "f": "Kenny", - "p": "M", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 887, - "n": "Khazri", - "f": "Wahbi", - "p": "M", - "r": 43, - "s": { - "g": "12", - "s": "117", - "n": "20", - "a": "5.85", - "d": "1.32", - "Og": "15", - "Os": "176", - "On": "30", - "Oa": "5.87", - "Od": "1.18", - "Mp": "7", - "Ap": "23", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6, - "g": 1 - }, - "8": { - "n": 8, - "g": 2 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 8, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 8, - "g": 2 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1031, - "n": "Debuchy", - "f": "Mathieu", - "p": "D", - "r": 8, - "s": { - "g": "2", - "s": "67", - "n": "12", - "a": "5.58", - "d": "0.86", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "5", - "Oao": "1", - "Os": "144", - "On": "26", - "Oa": "5.54", - "Od": "1.01", - "Mp": "1", - "Dp": "25", - "p": { - "32": { - "n": 5, - "a": 1 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1170, - "n": "Diouss\u00e9", - "f": "Assane", - "p": "M", - "r": 8, - "s": { - "s": "35", - "n": "7", - "a": "5.07", - "d": "0.42", - "Os": "79", - "On": "16", - "Oa": "4.97", - "Od": "0.37", - "Mp": "10", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 1192, - "n": "Gabriel Silva", - "f": "", - "p": "D", - "r": 13, - "s": { - "s": "82", - "n": "16", - "a": "5.16", - "d": "0.74", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "142", - "On": "28", - "Oa": "5.09", - "Od": "0.78", - "Mp": "7", - "Dp": "21", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 2046, - "n": "Panos", - "f": "Mickael", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "8": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2143, - "n": "Camara", - "f": "Mahdi", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2233, - "n": "M'Vila", - "f": "Yann", - "p": "M", - "r": 17, - "s": { - "s": "116", - "n": "22", - "a": "5.3", - "d": "0.95", - "Os": "190", - "On": "35", - "Oa": "5.44", - "Od": "0.86", - "Mp": "35", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 7 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 7 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 4 - }, - { - "i": 2266, - "n": "Subotic", - "f": "Neven", - "p": "D", - "r": 9, - "s": { - "s": "95", - "n": "19", - "a": "5", - "d": "0.89", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "170", - "On": "33", - "Oa": "5.15", - "Od": "0.97", - "Dp": "33", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 2271, - "n": "Chambost", - "f": "Dylan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2616, - "n": "Kolodziejczak", - "f": "Timoth\u00e9e", - "p": "D", - "r": 16, - "s": { - "g": "2", - "s": "119", - "n": "23", - "a": "5.2", - "d": "0.89", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "119", - "On": "23", - "Oa": "5.2", - "Od": "0.89", - "Dp": "23", - "p": { - "1": { - "n": 6.5 - }, - "2": { - "n": 6, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 2765, - "n": "Gueye", - "f": "Makhtar", - "p": "A", - "r": 2, - "s": { - "g": "1", - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Og": "1", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Ap": "2", - "p": { - "2": { - "n": 6, - "g": 1, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2766, - "n": "Saliba", - "f": "William", - "p": "D", - "r": 7, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "1.12", - "Os": "34", - "On": "7", - "Oa": "4.86", - "Od": "1.12", - "Dp": "7", - "p": { - "7": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 3.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2891, - "n": "Vermot", - "f": "Th\u00e9o", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2893, - "n": "Bajic", - "f": "Stefan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2963, - "n": "Honorat", - "f": "Franck", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2990, - "n": "Tshibuabua", - "f": "Marvin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2991, - "n": "Abi", - "f": "Charles Nathan", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2992, - "n": "Benkhedim", - "f": "Bilal", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 52, - "n": "Crivelli", - "f": "Enzo", - "p": "A", - "r": 8, - "s": { - "g": "4", - "s": "87", - "n": "19", - "a": "4.58", - "d": "0.86", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "6", - "Os": "131", - "On": "29", - "Oa": "4.52", - "Od": "0.85", - "Ap": "27", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - }, - "24": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 78, - "n": "Oniangu\u00e9", - "f": "Prince", - "p": "M", - "r": 8, - "s": { - "g": "2", - "s": "98", - "n": "19", - "a": "5.16", - "d": "0.81", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "3", - "Os": "149", - "On": "30", - "Oa": "4.97", - "Od": "0.95", - "Mp": "30", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 139, - "n": "Baysse", - "f": "Paul", - "p": "D", - "r": 9, - "s": { - "ao": "1", - "s": "94", - "n": "20", - "a": "4.73", - "d": "0.7", - "Oao": "1", - "Os": "118", - "On": "25", - "Oa": "4.74", - "Od": "0.65", - "Dp": "24", - "p": { - "1": { - "n": 4, - "e": 2733, - "c": 3, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4, - "a": 1 - } - } - }, - "c": 5 - }, - { - "i": 141, - "n": "Casimir Ninga", - "f": "", - "p": "A", - "r": 13, - "s": { - "g": "3", - "s": "86", - "n": "19", - "a": "4.53", - "d": "1.03", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "3", - "Os": "140", - "On": "32", - "Oa": "4.38", - "Od": "0.88", - "Mp": "11", - "Ap": "12", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 3.5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 5.5, - "g": 1 - }, - "21": { - "n": 4 - }, - "22": { - "n": 3.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 172, - "n": "Bammou", - "f": "Yacine", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "77", - "n": "16", - "a": "4.84", - "d": "0.52", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "2", - "Os": "105", - "On": "23", - "Oa": "4.59", - "Od": "0.65", - "Mp": "8", - "Ap": "10", - "p": { - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 315, - "n": "Dabo", - "f": "Mouhamadou", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 318, - "n": "Genevois", - "f": "Romain", - "p": "D", - "r": 3, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.54", - "Os": "70", - "On": "15", - "Oa": "4.7", - "Od": "0.63", - "Dp": "14", - "p": { - "1": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 332, - "n": "Djiku", - "f": "Alexander", - "p": "D", - "r": 8, - "s": { - "s": "96", - "n": "19", - "a": "5.08", - "d": "0.98", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "152", - "On": "31", - "Oa": "4.92", - "Od": "0.95", - "Dp": "31", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "18": { - "n": 6 - }, - "20": { - "n": 3 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 344, - "n": "Guilbert", - "f": "Frederic", - "p": "D", - "r": 10, - "s": { - "s": "99", - "n": "20", - "a": "4.95", - "d": "0.97", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "162", - "On": "34", - "Oa": "4.76", - "Od": "1.06", - "Mp": "7", - "Dp": "26", - "Ap": "1", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 345, - "n": "Samba", - "f": "Brice", - "p": "G", - "r": 18, - "s": { - "s": "127", - "n": "23", - "a": "5.52", - "d": "0.88", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "138", - "On": "25", - "Oa": "5.52", - "Od": "0.85", - "Gp": "25", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 7 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 7 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 363, - "n": "Louis", - "f": "Jeff", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 366, - "n": "Imorou", - "f": "Emmanuel", - "p": "D", - "r": 6, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "0.42", - "Dp": "7", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "11": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 382, - "n": "Sankoh", - "f": "Baissama", - "p": "M", - "r": 6, - "s": { - "s": "45", - "n": "9", - "a": "5.06", - "d": "0.44", - "Os": "106", - "On": "21", - "Oa": "5.07", - "Od": "0.47", - "Mp": "15", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 6, - "s": 1 - }, - "19": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 413, - "n": "Diomande", - "f": "Ismael", - "p": "M", - "r": 9, - "s": { - "s": "50", - "n": "10", - "a": "5", - "d": "0.74", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "83", - "On": "17", - "Oa": "4.88", - "Od": "1.06", - "Mp": "10", - "Dp": "6", - "p": { - "6": { - "n": 5, - "s": 1 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - }, - "24": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 421, - "n": "Reulet", - "f": "Paul", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 462, - "n": "Alhadhur", - "f": "Chaker", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 480, - "n": "Khaoui", - "f": "Saif-Eddine", - "p": "M", - "r": 12, - "s": { - "g": "3", - "s": "70", - "n": "15", - "a": "4.7", - "d": "0.73", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "3", - "Os": "111", - "On": "24", - "Oa": "4.65", - "Od": "0.71", - "Mp": "17", - "Ap": "1", - "p": { - "5": { - "n": 4.5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1, - "s": 1 - }, - "18": { - "n": 6, - "g": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "22": { - "n": 4 - }, - "24": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 1195, - "n": "Peeters", - "f": "Stef", - "p": "M", - "r": 8, - "s": { - "s": "33", - "n": "7", - "a": "4.79", - "d": "0.52", - "Os": "77", - "On": "17", - "Oa": "4.56", - "Od": "0.94", - "Mp": "15", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 1222, - "n": "Kouakou", - "f": "Christian", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Mp": "1" - }, - "c": 5 - }, - { - "i": 1223, - "n": "Mbengue", - "f": "Adama", - "p": "D", - "r": 7, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "0.68", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "0.8", - "Mp": "1", - "Dp": "12", - "p": { - "1": { - "n": 3.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 1451, - "n": "Zelazny", - "f": "Erwin", - "p": "G", - "r": 5, - "s": { - "n": 0, - "Os": "73", - "On": "14", - "Oa": "5.21", - "Od": "0.94", - "Gp": "14" - }, - "c": 5 - }, - { - "i": 1537, - "n": "Repas", - "f": "Jan", - "p": "M", - "r": 2, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Mp": "1", - "Ap": "1" - }, - "c": 5 - }, - { - "i": 1621, - "n": "Beauvue", - "f": "Claudio", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "86", - "n": "18", - "a": "4.78", - "d": "1", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "3", - "Os": "124", - "On": "28", - "Oa": "4.43", - "Od": "0.96", - "Mp": "9", - "Ap": "13", - "p": { - "4": { - "n": 6, - "g": 1, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 3.5 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1706, - "n": "Fajr", - "f": "Faycal", - "p": "M", - "r": 15, - "s": { - "g": "3", - "s": "119", - "n": "22", - "a": "5.41", - "d": "0.83", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "3", - "Os": "179", - "On": "34", - "Oa": "5.26", - "Od": "0.85", - "Mp": "33", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 2045, - "n": "Deminguet", - "f": "Jessy", - "p": "M", - "r": 6, - "s": { - "s": "40", - "n": "9", - "a": "4.5", - "d": "1", - "Og": "1", - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.93", - "Mp": "11", - "Ap": "2", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "19": { - "n": 2.5 - } - } - }, - "c": 5 - }, - { - "i": 2078, - "n": "Armougom", - "f": "Yoel", - "p": "D", - "r": 9, - "s": { - "s": "76", - "n": "16", - "a": "4.78", - "d": "0.85", - "Os": "80", - "On": "17", - "Oa": "4.74", - "Od": "0.84", - "Mp": "1", - "Dp": "16", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 6.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 2156, - "n": "Stavitski", - "f": "Timo", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "31", - "On": "7", - "Oa": "4.43", - "Od": "0.49", - "Mp": "1", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2631, - "n": "Marega", - "f": "Issa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2632, - "n": "Callens", - "f": "Thomas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2682, - "n": "Tchokounte", - "f": "Malik", - "p": "A", - "r": 9, - "s": { - "s": "87", - "n": "20", - "a": "4.38", - "d": "0.5", - "Os": "87", - "On": "20", - "Oa": "4.38", - "Od": "0.5", - "Mp": "2", - "Ap": "18", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 3.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2689, - "n": "Ndom", - "f": "Aly", - "p": "M", - "r": 7, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.58", - "Os": "52", - "On": "11", - "Oa": "4.73", - "Od": "0.58", - "Mp": "11", - "p": { - "1": { - "n": 5, - "e": 2739, - "c": 68, - "s": 1 - }, - "5": { - "n": 5, - "e": 2778, - "c": 68, - "s": 1 - }, - "7": { - "n": 3, - "e": 2800, - "c": 68 - }, - "9": { - "n": 5, - "e": 2819, - "c": 68, - "s": 1 - }, - "10": { - "n": 5, - "e": 2829, - "c": 68 - }, - "11": { - "n": 4.5, - "e": 2840, - "c": 68, - "s": 1 - }, - "14": { - "n": 5, - "e": 2870, - "c": 68, - "s": 1 - }, - "15": { - "n": 5, - "e": 2876, - "c": 68, - "s": 1 - }, - "16": { - "n": 5, - "e": 2890, - "c": 68, - "s": 1 - }, - "17": { - "n": 4.5, - "e": 2894, - "c": 68 - }, - "18": { - "n": 5, - "e": 2911, - "c": 68, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2710, - "n": "Gradit", - "f": "Jonathan", - "p": "D", - "r": 8, - "s": { - "s": "42", - "n": "9", - "a": "4.72", - "d": "0.82", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "42", - "On": "9", - "Oa": "4.72", - "Od": "0.82", - "Mp": "1", - "Dp": "8", - "p": { - "10": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3 - }, - "17": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 2935, - "n": "Zahary", - "f": "Younn", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2940, - "n": "Joseph", - "f": "Evens", - "p": "M", - "r": 8, - "s": { - "s": "24", - "n": "5", - "a": "4.9", - "d": "0.2", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "0.2", - "Mp": "5", - "p": { - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 3230, - "n": "Mouaddib", - "f": "Jad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 45, - "n": "Gourcuff", - "f": "Yoann", - "p": "M", - "r": 7, - "s": { - "s": "39", - "n": "8", - "a": "4.88", - "d": "0.33", - "Og": "1", - "Os": "70", - "On": "14", - "Oa": "5", - "Od": "0.53", - "Mp": "10", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 104, - "n": "J\u00falio Tavares", - "f": "", - "p": "A", - "r": 13, - "s": { - "g": "3", - "s": "95", - "n": "21", - "a": "4.55", - "d": "1.16", - "Ss": "26", - "Sn": "6", - "Sa": "4.42", - "Sd": "1.13", - "Og": "8", - "Os": "149", - "On": "32", - "Oa": "4.67", - "Od": "1.2", - "Ap": "31", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 8, - "g": 2 - }, - "3": { - "n": 5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 3 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 4 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 112, - "n": "Abeid", - "f": "Mehdi", - "p": "M", - "r": 14, - "s": { - "g": "3", - "s": "105", - "n": "20", - "a": "5.25", - "d": "0.8", - "Ss": "30", - "Sn": "6", - "Sa": "5", - "Sd": "0.96", - "Og": "3", - "Os": "127", - "On": "25", - "Oa": "5.08", - "Od": "0.87", - "Mp": "24", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 165, - "n": "Said", - "f": "Wesley", - "p": "A", - "r": 13, - "s": { - "g": "2", - "s": "93", - "n": "20", - "a": "4.65", - "d": "0.69", - "Sg": "1", - "Ss": "30", - "Sn": "6", - "Sa": "5", - "Sd": "0.87", - "Og": "6", - "Os": "143", - "On": "29", - "Oa": "4.93", - "Od": "1.03", - "Mp": "6", - "Ap": "22", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 167, - "n": "Mari\u00e9", - "f": "Jordan", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "63", - "n": "13", - "a": "4.85", - "d": "0.72", - "Sg": "1", - "Ss": "31", - "Sn": "6", - "Sa": "5.17", - "Sd": "0.69", - "Og": "1", - "Os": "108", - "On": "22", - "Oa": "4.91", - "Od": "0.76", - "Mp": "20", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5 - }, - "24": { - "n": 6, - "g": 1 - } - } - }, - "c": 7 - }, - { - "i": 187, - "n": "Sammaritano", - "f": "Frederic", - "p": "M", - "r": 5, - "s": { - "s": "40", - "n": "8", - "a": "5", - "d": "0.87", - "Os": "72", - "On": "15", - "Oa": "4.8", - "Od": "0.75", - "Mp": "11", - "Ap": "1", - "p": { - "2": { - "n": 6.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 252, - "n": "Chafik", - "f": "Fouad", - "p": "D", - "r": 13, - "s": { - "s": "40", - "n": "8", - "a": "5", - "d": "0.87", - "Ss": "27", - "Sn": "5", - "Sa": "5.4", - "Sd": "0.8", - "Os": "74", - "On": "15", - "Oa": "4.93", - "Od": "0.77", - "Mp": "6", - "Dp": "7", - "p": { - "6": { - "n": 5 - }, - "13": { - "n": 4 - }, - "17": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 7 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 278, - "n": "Amalfitano", - "f": "Romain", - "p": "M", - "r": 9, - "s": { - "s": "84", - "n": "19", - "a": "4.42", - "d": "0.65", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Os": "154", - "On": "33", - "Oa": "4.67", - "Od": "0.83", - "Mp": "31", - "Ap": "2", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 3.5 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 312, - "n": "Sliti", - "f": "Naim", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "115", - "n": "23", - "a": "5", - "d": "0.97", - "Sg": "1", - "Ss": "29", - "Sn": "6", - "Sa": "4.92", - "Sd": "1.06", - "Og": "5", - "Os": "190", - "On": "37", - "Oa": "5.14", - "Od": "0.98", - "Mp": "24", - "Ap": "10", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 321, - "n": "Balmont", - "f": "Florent", - "p": "M", - "r": 7, - "s": { - "s": "42", - "n": "9", - "a": "4.67", - "d": "0.82", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "74", - "On": "15", - "Oa": "4.93", - "Od": "1.06", - "Mp": "13", - "p": { - "10": { - "n": 3.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4 - }, - "17": { - "n": 6 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 322, - "n": "Jeannot", - "f": "Benjamin", - "p": "A", - "r": 6, - "s": { - "g": "1", - "s": "56", - "n": "12", - "a": "4.67", - "d": "0.77", - "Og": "1", - "Os": "86", - "On": "19", - "Oa": "4.53", - "Od": "0.77", - "Mp": "5", - "Ap": "8", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 3.5 - }, - "19": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 330, - "n": "Lautoa", - "f": "Wesley", - "p": "D", - "r": 12, - "s": { - "s": "97", - "n": "21", - "a": "4.62", - "d": "0.95", - "Ss": "30", - "Sn": "6", - "Sa": "5", - "Sd": "0.65", - "Os": "129", - "On": "28", - "Oa": "4.61", - "Od": "0.94", - "Mp": "5", - "Dp": "21", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 380, - "n": "Haddadi", - "f": "Oussama", - "p": "D", - "r": 12, - "s": { - "g": "2", - "s": "103", - "n": "21", - "a": "4.93", - "d": "1.2", - "Ss": "29", - "Sn": "6", - "Sa": "4.92", - "Sd": "0.61", - "Og": "2", - "Os": "162", - "On": "34", - "Oa": "4.78", - "Od": "1.31", - "Mp": "4", - "Dp": "29", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 3 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7.5, - "g": 1 - }, - "17": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 437, - "n": "Bouka Moutou", - "f": "Arnold", - "p": "D", - "r": 7, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "d": "0.5", - "Os": "24", - "On": "5", - "Oa": "4.8", - "Od": "0.4", - "Dp": "3", - "p": { - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 530, - "n": "Allain", - "f": "Bobby", - "p": "G", - "r": 16, - "s": { - "s": "48", - "n": "8", - "a": "6.06", - "d": "0.85", - "Ss": "35", - "Sn": "6", - "Sa": "5.83", - "Sd": "0.85", - "Os": "48", - "On": "8", - "Oa": "6.06", - "Od": "0.85", - "Gp": "8", - "p": { - "16": { - "n": 7 - }, - "17": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 7 - }, - "23": { - "n": 5 - }, - "24": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 533, - "n": "Rosier", - "f": "Valentin", - "p": "D", - "r": 7, - "s": { - "s": "78", - "n": "17", - "a": "4.59", - "d": "1.3", - "Oao": "2", - "Os": "140", - "On": "31", - "Oa": "4.52", - "Od": "1.37", - "Mp": "8", - "Dp": "22", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 7.5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 3 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 545, - "n": "Kwon Chang-Hoon", - "f": "", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "28", - "n": "6", - "a": "4.75", - "d": "1.11", - "Sg": "1", - "Ss": "28", - "Sn": "6", - "Sa": "4.75", - "Sd": "1.11", - "Og": "7", - "Os": "90", - "On": "18", - "Oa": "5.03", - "Od": "1.29", - "Mp": "8", - "Ap": "7", - "p": { - "19": { - "n": 3.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 1217, - "n": "Yamb\u00e9r\u00e9", - "f": "C\u00e9dric", - "p": "D", - "r": 11, - "s": { - "s": "90", - "n": "19", - "a": "4.74", - "d": "0.96", - "Ss": "29", - "Sn": "6", - "Sa": "4.92", - "Sd": "0.67", - "Og": "1", - "Os": "143", - "On": "31", - "Oa": "4.61", - "Od": "1.13", - "Dp": "30", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 3.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 2605, - "n": "Alphonse", - "f": "Micka\u00ebl", - "p": "D", - "r": 7, - "s": { - "g": "1", - "s": "22", - "n": "5", - "a": "4.5", - "d": "1.1", - "Og": "1", - "Os": "22", - "On": "5", - "Oa": "4.5", - "Od": "1.1", - "Dp": "5", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 3 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2633, - "n": "Ntumba", - "f": "Levi", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2639, - "n": "Coulibaly", - "f": "Senou", - "p": "D", - "r": 3, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5", - "d": "0.77", - "Og": "1", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "0.77", - "Dp": "5", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 2640, - "n": "Barbet", - "f": "Theo", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2641, - "n": "Sahibeddine", - "f": "Adrian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2643, - "n": "Loiodice", - "f": "Enzo", - "p": "M", - "r": 4, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "1.05", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "1.05", - "Mp": "11", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2687, - "n": "Jules Keita", - "f": "", - "p": "A", - "r": 6, - "s": { - "g": "2", - "s": "62", - "n": "14", - "a": "4.46", - "d": "1.03", - "Og": "2", - "Os": "62", - "On": "14", - "Oa": "4.46", - "Od": "1.03", - "Mp": "1", - "Ap": "13", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 8, - "g": 2, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "22": { - "n": 4, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2692, - "n": "Aguerd", - "f": "Nayef", - "p": "D", - "r": 6, - "s": { - "g": "2", - "s": "28", - "n": "5", - "a": "5.6", - "d": "0.8", - "Og": "2", - "Os": "28", - "On": "5", - "Oa": "5.6", - "Od": "0.8", - "Dp": "5", - "p": { - "3": { - "n": 6.5, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 5.5, - "g": 1 - }, - "23": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2725, - "n": "R\u00fanarsson", - "f": "R\u00fanar Alex", - "p": "G", - "r": 7, - "s": { - "s": "73", - "n": "15", - "a": "4.87", - "d": "1.09", - "Os": "73", - "On": "15", - "Oa": "4.87", - "Od": "1.09", - "Gp": "15", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "8": { - "n": 2.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 2867, - "n": "Ciman", - "f": "Laurent", - "p": "D", - "r": 10, - "s": { - "s": "38", - "n": "9", - "a": "4.22", - "d": "0.92", - "Os": "38", - "On": "9", - "Oa": "4.22", - "Od": "0.92", - "Dp": "9", - "p": { - "5": { - "n": 3 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 4, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 2941, - "n": "Doumbouya", - "f": "Sory", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2989, - "n": "Godard", - "f": "Theo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 3361, - "n": "Kaba", - "f": "Sory", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 23, - "n": "Majeed Waris", - "f": "", - "p": "A", - "r": 14, - "s": { - "g": "4", - "s": "105", - "n": "22", - "a": "4.8", - "d": "0.83", - "Sg": "1", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "4", - "Os": "105", - "On": "22", - "Oa": "4.8", - "Od": "0.83", - "Mp": "4", - "Ap": "18", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6, - "g": 1, - "s": 1 - }, - "15": { - "n": 3.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "24": { - "n": 5, - "g": 1 - } - } - }, - "c": 8 - }, - { - "i": 73, - "n": "Pallois", - "f": "Nicolas", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "52", - "n": "11", - "a": "4.77", - "d": "1.12", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "1", - "Oao": "1", - "Os": "106", - "On": "22", - "Oa": "4.84", - "Od": "1.1", - "Dp": "22", - "p": { - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 128, - "n": "Sala", - "f": "Emiliano", - "p": "A", - "r": 500, - "s": { - "g": "12", - "s": "102", - "n": "19", - "a": "5.39", - "d": "1.47", - "Og": "16", - "Os": "154", - "On": "32", - "Oa": "4.83", - "Od": "1.58", - "Ap": "32", - "p": { - "1": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 6, - "g": 1, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6, - "g": 1 - }, - "9": { - "n": 3 - }, - "10": { - "n": 8.5, - "g": 3 - }, - "11": { - "n": 6.5, - "g": 1 - }, - "12": { - "n": 7.5, - "g": 2 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 140, - "n": "Boschilia", - "f": "Gabriel", - "p": "M", - "r": 15, - "s": { - "g": "4", - "s": "110", - "n": "21", - "a": "5.24", - "d": "1.13", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "4", - "Os": "120", - "On": "23", - "Oa": "5.22", - "Od": "1.08", - "Mp": "6", - "Ap": "16", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 8, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4, - "s": 1 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4, - "s": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 145, - "n": "Eysseric", - "f": "Valentin", - "p": "M", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 220, - "n": "Diego Carlos", - "f": "", - "p": "D", - "r": 14, - "s": { - "s": "103", - "n": "21", - "a": "4.9", - "d": "1.03", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "144", - "On": "29", - "Oa": "4.97", - "Od": "0.94", - "Dp": "28", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 242, - "n": "Rongier", - "f": "Valentin", - "p": "M", - "r": 16, - "s": { - "g": "1", - "s": "109", - "n": "21", - "a": "5.21", - "d": "0.85", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "2", - "Os": "180", - "On": "35", - "Oa": "5.16", - "Od": "0.87", - "Mp": "34", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 6 - } - } - }, - "c": 8 - }, - { - "i": 246, - "n": "Dup\u00e9", - "f": "Maxime", - "p": "G", - "r": 11, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.94", - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.94", - "Gp": "3", - "p": { - "15": { - "n": 3, - "s": 1 - }, - "16": { - "n": 5 - }, - "22": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 308, - "n": "Kacaniklic", - "f": "Alexander", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5" - }, - "c": 8 - }, - { - "i": 313, - "n": "Lucas Lima", - "f": "", - "p": "D", - "r": 12, - "s": { - "s": "104", - "n": "22", - "a": "4.73", - "d": "1.11", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Og": "1", - "Os": "177", - "On": "36", - "Oa": "4.92", - "Od": "1.1", - "Mp": "5", - "Dp": "29", - "Ap": "2", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 7 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "24": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 404, - "n": "Djidji", - "f": "Koffi", - "p": "D", - "r": 12, - "s": { - "s": "3", - "n": "1", - "a": "3", - "Os": "48", - "On": "10", - "Oa": "4.8", - "Od": "0.87", - "Dp": "10", - "p": { - "1": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 427, - "n": "Moimb\u00e9", - "f": "Wilfried", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 431, - "n": "Alexis Alegue", - "f": "", - "p": "M", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 445, - "n": "Kwateng", - "f": "Enock", - "p": "D", - "r": 11, - "s": { - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.02", - "Os": "93", - "On": "19", - "Oa": "4.89", - "Od": "1.02", - "Mp": "2", - "Dp": "17", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 465, - "n": "Sigthorsson", - "f": "Kolbeinn", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4" - }, - "c": 8 - }, - { - "i": 476, - "n": "Tour\u00e9", - "f": "Abdoulaye", - "p": "M", - "r": 12, - "s": { - "g": "2", - "s": "103", - "n": "19", - "a": "5.45", - "d": "1.15", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "171", - "On": "32", - "Oa": "5.36", - "Od": "0.96", - "Mp": "29", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7.5, - "g": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - }, - "24": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 499, - "n": "Olliero", - "f": "Alexandre", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 506, - "n": "Walongwa", - "f": "Anthony", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 582, - "n": "Braat", - "f": "Quentin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 941, - "n": "Fabio", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "51", - "n": "11", - "a": "4.64", - "d": "0.57", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "51", - "On": "11", - "Oa": "4.64", - "Od": "0.57", - "Mp": "1", - "Dp": "10", - "p": { - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "22": { - "n": 4 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 8 - }, - { - "i": 1163, - "n": "Tatarusanu", - "f": "Ciprian", - "p": "G", - "r": 14, - "s": { - "s": "114", - "n": "21", - "a": "5.43", - "d": "0.97", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "187", - "On": "35", - "Oa": "5.34", - "Od": "0.83", - "Gp": "35", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "24": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 1171, - "n": "Kalifa Coulibaly", - "f": "", - "p": "A", - "r": 11, - "s": { - "g": "2", - "s": "79", - "n": "18", - "a": "4.42", - "d": "0.8", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "3", - "Os": "98", - "On": "22", - "Oa": "4.48", - "Od": "0.92", - "Ap": "20", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 2.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 6, - "g": 1 - } - } - }, - "c": 8 - }, - { - "i": 1174, - "n": "Andrei Girotto", - "f": "", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "65", - "n": "12", - "a": "5.46", - "d": "1.07", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "102", - "On": "19", - "Oa": "5.39", - "Od": "0.9", - "Mp": "17", - "Dp": "1", - "p": { - "10": { - "n": 7 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 1177, - "n": "El Ghanassy", - "f": "Yassine", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "0.43", - "Mp": "2" - }, - "c": 8 - }, - { - "i": 1228, - "n": "Kayembe", - "f": "Joris", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 1234, - "n": "Edgar I\u00e9", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "0.42", - "Os": "86", - "On": "19", - "Oa": "4.55", - "Od": "0.84", - "Dp": "19", - "p": { - "1": { - "n": 5, - "e": 2734, - "c": 12, - "s": 1 - }, - "2": { - "n": 5, - "e": 2746, - "c": 12, - "s": 1 - }, - "8": { - "n": 5.5, - "e": 2804, - "c": 12, - "s": 1 - }, - "9": { - "n": 5, - "e": 2816, - "c": 12, - "s": 1 - }, - "15": { - "n": 5, - "e": 2875, - "c": 12, - "s": 1 - }, - "18": { - "n": 5, - "e": 2910, - "c": 12, - "s": 1 - }, - "19": { - "n": 4, - "e": 2914, - "c": 12 - } - } - }, - "c": 8 - }, - { - "i": 1255, - "n": "Moutoussamy", - "f": "Samuel", - "p": "M", - "r": 8, - "s": { - "s": "74", - "n": "16", - "a": "4.63", - "d": "0.57", - "Os": "99", - "On": "21", - "Oa": "4.71", - "Od": "0.61", - "Mp": "19", - "Ap": "1", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5, - "s": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 1444, - "n": "Charles Traor\u00e9", - "f": "", - "p": "D", - "r": 8, - "s": { - "s": "12", - "n": "2", - "a": "6.25", - "d": "0.25", - "Os": "66", - "On": "14", - "Oa": "4.75", - "Od": "1.32", - "Dp": "14", - "p": { - "21": { - "n": 6 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 8 - }, - { - "i": 1539, - "n": "Krhin", - "f": "Rene", - "p": "M", - "r": 8, - "s": { - "s": "62", - "n": "12", - "a": "5.17", - "d": "0.51", - "Os": "103", - "On": "20", - "Oa": "5.15", - "Od": "0.55", - "Mp": "20", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 1552, - "n": "Kolo Muani", - "f": "Randal", - "p": "M", - "r": 4, - "s": { - "s": "7", - "n": "2", - "a": "3.5", - "d": "0.5", - "Os": "7", - "On": "2", - "Oa": "3.5", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "15": { - "n": 4, - "s": 1 - }, - "21": { - "n": 3 - } - } - }, - "c": 8 - }, - { - "i": 2086, - "n": "Ngom", - "f": "Santy", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "17", - "On": "4", - "Oa": "4.25", - "Od": "0.43", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 2669, - "n": "Dabo", - "f": "Abdoulaye", - "p": "M", - "r": 3, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "0.5", - "Mp": "1", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - }, - "3": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 2686, - "n": "Mendy", - "f": "Batista", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2696, - "n": "Basila", - "f": "Thomas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2707, - "n": "Menig", - "f": "Queensy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2719, - "n": "Lucas Evangelista", - "f": "", - "p": "M", - "r": 6, - "s": { - "g": "1", - "s": "53", - "n": "11", - "a": "4.86", - "d": "1", - "Og": "1", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "1", - "Mp": "8", - "Ap": "3", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 6 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 3.5 - } - } - }, - "c": 8 - }, - { - "i": 2782, - "n": "Ruiz", - "f": "Percy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2795, - "n": "Miazga", - "f": "Matt", - "p": "D", - "r": 8, - "s": { - "s": "36", - "n": "8", - "a": "4.5", - "d": "1", - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1", - "Dp": "8", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 2.5 - } - } - }, - "c": 8 - }, - { - "i": 2834, - "n": "Limbombe", - "f": "Anthony", - "p": "M", - "r": 11, - "s": { - "s": "86", - "n": "17", - "a": "5.09", - "d": "0.46", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "86", - "On": "17", - "Oa": "5.09", - "Od": "0.46", - "Mp": "12", - "Ap": "5", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 2865, - "n": "Kara Mbodji", - "f": "Serigne Modou", - "p": "D", - "r": 8, - "s": { - "s": "32", - "n": "6", - "a": "5.33", - "d": "0.37", - "Os": "32", - "On": "6", - "Oa": "5.33", - "Od": "0.37", - "Dp": "6", - "p": { - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 2938, - "n": "Louza", - "f": "Imran", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2947, - "n": "Youan", - "f": "Thody Elie", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2993, - "n": "Bamba", - "f": "Kader", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 3363, - "n": "Mance", - "f": "Antonio", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 6, - "n": "Payet", - "f": "Dimitri", - "p": "M", - "r": 14, - "s": { - "g": "4", - "s": "102", - "n": "19", - "a": "5.37", - "d": "1.18", - "Og": "6", - "Os": "175", - "On": "31", - "Oa": "5.65", - "Od": "1.31", - "Mp": "23", - "Ap": "6", - "p": { - "1": { - "n": 8, - "g": 2 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 8, - "g": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "g": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 10, - "n": "Germain", - "f": "Val\u00e8re", - "p": "A", - "r": 9, - "s": { - "g": "3", - "s": "106", - "n": "22", - "a": "4.82", - "d": "0.97", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Og": "6", - "Os": "169", - "On": "35", - "Oa": "4.83", - "Od": "0.99", - "Mp": "1", - "Ap": "33", - "p": { - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 3 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 6 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 22, - "n": "Thauvin", - "f": "Florian", - "p": "M", - "r": 29, - "s": { - "g": "11", - "s": "112", - "n": "21", - "a": "5.36", - "d": "1.45", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "20", - "Os": "180", - "On": "32", - "Oa": "5.64", - "Od": "1.42", - "Mp": "24", - "Ap": "8", - "p": { - "38": { - "n": 6 - }, - "1": { - "n": 6, - "g": 1, - "s": 1 - }, - "2": { - "n": 5.5, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7, - "g": 1, - "s": 1 - }, - "5": { - "n": 7.5, - "g": 2 - }, - "6": { - "n": 5.5, - "g": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 8, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 8.5, - "g": 3 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 34, - "n": "Balotelli", - "f": "Mario", - "p": "A", - "r": 13, - "s": { - "g": "2", - "s": "62", - "n": "13", - "a": "4.77", - "d": "1.03", - "Sg": "2", - "Ss": "18", - "Sn": "3", - "Sa": "6", - "Sd": "1.08", - "Og": "7", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "1.17", - "Ap": "24", - "p": { - "4": { - "n": 4.5, - "e": 2765, - "c": 19 - }, - "6": { - "n": 3.5, - "e": 2787, - "c": 19 - }, - "8": { - "n": 4.5, - "e": 2807, - "c": 19, - "s": 1 - }, - "10": { - "n": 4.5, - "e": 2827, - "c": 19 - }, - "11": { - "n": 5, - "e": 2834, - "c": 19 - }, - "12": { - "n": 4, - "e": 2847, - "c": 19 - }, - "13": { - "n": 4, - "e": 2858, - "c": 19 - }, - "14": { - "n": 6, - "e": 2868, - "c": 19 - }, - "15": { - "n": 4, - "e": 2874, - "c": 19 - }, - "16": { - "n": 4, - "e": 2889, - "c": 19 - }, - "22": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 9 - }, - { - "i": 41, - "n": "Sanson", - "f": "Morgan", - "p": "M", - "r": 15, - "s": { - "g": "4", - "s": "113", - "n": "21", - "a": "5.38", - "d": "1.16", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.75", - "Og": "6", - "Os": "179", - "On": "34", - "Oa": "5.26", - "Od": "1.03", - "Mp": "30", - "p": { - "38": { - "n": 7, - "g": 1 - }, - "1": { - "n": 8 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 6, - "g": 1 - }, - "10": { - "n": 6.5, - "g": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "23": { - "n": 3.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 74, - "n": "N'Jie", - "f": "Clinton", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "49", - "n": "10", - "a": "4.9", - "d": "0.62", - "Og": "3", - "Os": "90", - "On": "19", - "Oa": "4.74", - "Od": "0.75", - "Mp": "2", - "Ap": "10", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "17": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 99, - "n": "Lopez", - "f": "Maxime", - "p": "M", - "r": 15, - "s": { - "g": "1", - "s": "96", - "n": "18", - "a": "5.36", - "d": "0.68", - "Sg": "1", - "Ss": "44", - "Sn": "8", - "Sa": "5.5", - "Sd": "0.79", - "Og": "1", - "Os": "149", - "On": "28", - "Oa": "5.34", - "Od": "0.72", - "Mp": "25", - "p": { - "38": { - "n": 7 - }, - "1": { - "n": 6 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 102, - "n": "Pel\u00e9", - "f": "Yohann", - "p": "G", - "r": 8, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.99", - "Os": "73", - "On": "15", - "Oa": "4.9", - "Od": "0.9", - "Gp": "12", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 210, - "n": "Sakai", - "f": "Hiroki", - "p": "D", - "r": 12, - "s": { - "s": "71", - "n": "14", - "a": "5.07", - "d": "1.03", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "125", - "On": "25", - "Oa": "5", - "Od": "0.98", - "Dp": "24", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 3.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 216, - "n": "Sarr", - "f": "Bouna", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "112", - "n": "22", - "a": "5.09", - "d": "1.05", - "Sg": "1", - "Ss": "92", - "Sn": "18", - "Sa": "5.11", - "Sd": "1.12", - "Og": "1", - "Os": "177", - "On": "34", - "Oa": "5.21", - "Od": "1", - "Mp": "7", - "Dp": "24", - "p": { - "38": { - "n": 6 - }, - "1": { - "n": 5.5, - "s": 1 - }, - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 4 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 221, - "n": "Rolando", - "f": "", - "p": "D", - "r": 10, - "s": { - "s": "50", - "n": "10", - "a": "5", - "d": "0.81", - "Ss": "30", - "Sn": "6", - "Sa": "5.08", - "Sd": "0.73", - "Og": "1", - "Oao": "1", - "Os": "104", - "On": "21", - "Oa": "4.95", - "Od": "0.74", - "Dp": "20", - "p": { - "38": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 3.5 - }, - "24": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 253, - "n": "Sertic", - "f": "Gr\u00e9gory", - "p": "M", - "r": 3, - "s": { - "s": "18", - "n": "4", - "a": "4.5", - "d": "0.35", - "Os": "35", - "On": "7", - "Oa": "5", - "Od": "0.71", - "Mp": "4", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 314, - "n": "Bedimo", - "f": "Henri", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 325, - "n": "Hubocan", - "f": "Tomas", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 516, - "n": "Cagnon", - "f": "Romain", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 578, - "n": "Escales", - "f": "Florian", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 800, - "n": "Mandanda", - "f": "Steve", - "p": "G", - "r": 16, - "s": { - "s": "99", - "n": "19", - "a": "5.21", - "d": "0.85", - "Ss": "94", - "Sn": "18", - "Sa": "5.22", - "Sd": "0.87", - "Os": "137", - "On": "27", - "Oa": "5.07", - "Od": "0.82", - "Gp": "27", - "p": { - "38": { - "n": 5 - }, - "2": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 1158, - "n": "Luiz Gustavo", - "f": "", - "p": "M", - "r": 13, - "s": { - "s": "92", - "n": "19", - "a": "4.84", - "d": "0.86", - "Os": "163", - "On": "32", - "Oa": "5.09", - "Od": "0.94", - "Mp": "17", - "Dp": "15", - "p": { - "38": { - "n": 6 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 3 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 1162, - "n": "Rami", - "f": "Adil", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "66", - "n": "13", - "a": "5.08", - "d": "1.19", - "Og": "1", - "Oao": "1", - "Os": "114", - "On": "23", - "Oa": "4.96", - "Od": "1.03", - "Dp": "23", - "p": { - "2": { - "n": 4 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 8, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 3.5 - }, - "19": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 1181, - "n": "Amavi", - "f": "Jordan", - "p": "D", - "r": 12, - "s": { - "s": "92", - "n": "19", - "a": "4.87", - "d": "0.98", - "Ss": "46", - "Sn": "9", - "Sa": "5.17", - "Sd": "0.41", - "Os": "156", - "On": "31", - "Oa": "5.05", - "Od": "1.03", - "Mp": "1", - "Dp": "27", - "p": { - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 7 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 1197, - "n": "Ocampos", - "f": "Lucas", - "p": "M", - "r": 15, - "s": { - "g": "3", - "s": "112", - "n": "22", - "a": "5.11", - "d": "1.02", - "Sg": "1", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "1.25", - "Og": "6", - "Os": "177", - "On": "34", - "Oa": "5.22", - "Od": "1.15", - "Mp": "28", - "Ap": "4", - "p": { - "38": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 9 - }, - { - "i": 1250, - "n": "Kamara", - "f": "Boubacar", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "97", - "n": "19", - "a": "5.11", - "d": "0.85", - "Ss": "21", - "Sn": "4", - "Sa": "5.25", - "Sd": "0.56", - "Og": "1", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "0.9", - "Mp": "1", - "Dp": "23", - "p": { - "38": { - "n": 7 - }, - "1": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 7, - "g": 1 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 1522, - "n": "Mitroglou", - "f": "Kostas", - "p": "A", - "r": 8, - "s": { - "g": "3", - "s": "64", - "n": "14", - "a": "4.61", - "d": "0.83", - "Og": "9", - "Os": "108", - "On": "22", - "Oa": "4.93", - "Od": "1.12", - "Ap": "16", - "p": { - "38": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 3.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 9 - }, - { - "i": 1525, - "n": "Abdennour", - "f": "Aymen", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5" - }, - "c": 9 - }, - { - "i": 1553, - "n": "Sari", - "f": "Yusuf", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2155, - "n": "Rocchia", - "f": "Christopher", - "p": "D", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 2634, - "n": "Perrin", - "f": "Lucas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2635, - "n": "Marasovic", - "f": "Sacha", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2712, - "n": "Caleta-Car", - "f": "Duje", - "p": "D", - "r": 6, - "s": { - "s": "34", - "n": "7", - "a": "4.93", - "d": "1.18", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "34", - "On": "7", - "Oa": "4.93", - "Od": "1.18", - "Dp": "7", - "p": { - "2": { - "n": 3.5 - }, - "6": { - "n": 3 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "18": { - "n": 6.5 - }, - "21": { - "n": 5, - "s": 1 - }, - "24": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 2779, - "n": "Chabrolle", - "f": "Florian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2835, - "n": "Strootman", - "f": "Kevin", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "92", - "n": "18", - "a": "5.11", - "d": "0.87", - "Ss": "26", - "Sn": "5", - "Sa": "5.2", - "Sd": "0.68", - "Og": "1", - "Os": "92", - "On": "18", - "Oa": "5.11", - "Od": "0.87", - "Mp": "18", - "p": { - "4": { - "n": 5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 6 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 2860, - "n": "Radonjic", - "f": "Nemanja", - "p": "M", - "r": 8, - "s": { - "s": "43", - "n": "10", - "a": "4.35", - "d": "0.32", - "Os": "43", - "On": "10", - "Oa": "4.35", - "Od": "0.32", - "Mp": "2", - "Ap": "8", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 2939, - "n": "Philiponeau", - "f": "Alexandre", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2953, - "n": "Ali Mohamed", - "f": "Abdallah", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 55, - "n": "Toivonen", - "f": "Ola", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "28", - "On": "7", - "Oa": "4", - "p": { - "37": { - "n": 4, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 59, - "n": "Jullien", - "f": "Christopher", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "110", - "n": "22", - "a": "5", - "d": "1.2", - "Sg": "1", - "Ss": "32", - "Sn": "6", - "Sa": "5.33", - "Sd": "0.94", - "Og": "2", - "Os": "156", - "On": "31", - "Oa": "5.03", - "Od": "1.08", - "Dp": "31", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 2 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4 - }, - "23": { - "n": 6, - "g": 1 - }, - "24": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 81, - "n": "Cahuzac", - "f": "Yannick", - "p": "M", - "r": 9, - "s": { - "s": "73", - "n": "14", - "a": "5.21", - "d": "0.52", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "0.53", - "Mp": "21", - "Dp": "2", - "Ap": "1", - "p": { - "4": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 5.5, - "s": 1 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 122, - "n": "Reynet", - "f": "Baptiste", - "p": "G", - "r": 17, - "s": { - "ao": "1", - "s": "123", - "n": "23", - "a": "5.35", - "d": "1.36", - "Ss": "46", - "Sn": "8", - "Sa": "5.75", - "Sd": "1.44", - "Oao": "1", - "Os": "201", - "On": "37", - "Oa": "5.43", - "Od": "1.24", - "Gp": "37", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4, - "a": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 8 - }, - "22": { - "n": 7.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 144, - "n": "Sylla", - "f": "Issiaga", - "p": "D", - "r": 10, - "s": { - "g": "1", - "s": "59", - "n": "12", - "a": "4.92", - "d": "1.02", - "Ss": "32", - "Sn": "7", - "Sa": "4.64", - "Sd": "0.79", - "Og": "2", - "Os": "114", - "On": "23", - "Oa": "4.96", - "Od": "0.94", - "Mp": "6", - "Dp": "13", - "Ap": "1", - "p": { - "37": { - "n": 4, - "g": 1 - }, - "4": { - "n": 6 - }, - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "16": { - "n": 7, - "g": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 3 - }, - "24": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 182, - "n": "Yago", - "f": "Steeve", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Oao": "1", - "Os": "29", - "On": "7", - "Oa": "4.14", - "Od": "0.64", - "Dp": "5" - }, - "c": 10 - }, - { - "i": 191, - "n": "Moubandje", - "f": "Fran\u00e7ois", - "p": "D", - "r": 8, - "s": { - "s": "90", - "n": "19", - "a": "4.74", - "d": "0.85", - "Os": "123", - "On": "26", - "Oa": "4.73", - "Od": "0.94", - "Mp": "1", - "Dp": "25", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 2.5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 234, - "n": "Bodiger", - "f": "Yann", - "p": "M", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "8", - "On": "2", - "Oa": "4.25", - "Od": "0.25", - "Mp": "1", - "p": { - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 251, - "n": "Durmaz", - "f": "Jimmy", - "p": "M", - "r": 10, - "s": { - "g": "3", - "s": "105", - "n": "22", - "a": "4.8", - "d": "0.9", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.47", - "Og": "3", - "Os": "141", - "On": "29", - "Oa": "4.88", - "Od": "0.82", - "Mp": "21", - "Ap": "3", - "p": { - "37": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 7, - "g": 2 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3 - }, - "20": { - "n": 4, - "s": 1 - }, - "22": { - "n": 5 - }, - "23": { - "n": 4 - }, - "24": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 260, - "n": "Mubele", - "f": "Firmin Ndombe", - "p": "A", - "r": 7, - "s": { - "s": "43", - "n": "10", - "a": "4.35", - "d": "0.59", - "Og": "1", - "Os": "88", - "On": "20", - "Oa": "4.43", - "Od": "0.71", - "Ap": "14", - "p": { - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3 - } - } - }, - "c": 10 - }, - { - "i": 261, - "n": "Som\u00e1lia", - "f": "", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "0.43", - "Mp": "6", - "p": { - "37": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 302, - "n": "Jean", - "f": "Corentin", - "p": "A", - "r": 8, - "s": { - "s": "67", - "n": "15", - "a": "4.47", - "d": "0.69", - "Ss": "9", - "Sn": "2", - "Sa": "4.75", - "Sd": "0.25", - "Og": "1", - "Os": "110", - "On": "25", - "Oa": "4.4", - "Od": "0.68", - "Mp": "4", - "Ap": "15", - "p": { - "37": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 6 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 328, - "n": "Goicoechea", - "f": "Mauro", - "p": "G", - "r": 7, - "s": { - "s": "14", - "n": "2", - "a": "7", - "d": "1", - "Os": "14", - "On": "2", - "Oa": "7", - "Od": "1", - "Gp": "2", - "p": { - "15": { - "n": 6, - "s": 1 - }, - "16": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 355, - "n": "Moreira", - "f": "Steven", - "p": "D", - "r": 7, - "s": { - "s": "33", - "n": "8", - "a": "4.13", - "d": "0.89", - "Os": "33", - "On": "8", - "Oa": "4.13", - "Od": "0.89", - "Mp": "3", - "Dp": "5", - "p": { - "9": { - "n": 4.5 - }, - "10": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 3 - }, - "20": { - "n": 4 - }, - "22": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 359, - "n": "Leya Iseka", - "f": "Aaron", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "83", - "n": "19", - "a": "4.37", - "d": "1.07", - "Ss": "21", - "Sn": "5", - "Sa": "4.3", - "Sd": "0.24", - "Og": "3", - "Os": "83", - "On": "19", - "Oa": "4.37", - "Od": "1.07", - "Ap": "19", - "p": { - "1": { - "n": 2.5 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 2.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6, - "g": 1, - "s": 1 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 394, - "n": "Amian", - "f": "Kelvin", - "p": "D", - "r": 12, - "s": { - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.24", - "Og": "1", - "Os": "159", - "On": "33", - "Oa": "4.82", - "Od": "1.05", - "Mp": "1", - "Dp": "31", - "p": { - "37": { - "n": 3 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 6 - }, - "11": { - "n": 3 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 8 - } - } - }, - "c": 10 - }, - { - "i": 481, - "n": "Michelin", - "f": "Clement", - "p": "D", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 517, - "n": "Vidal", - "f": "Marc", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 556, - "n": "Sangar\u00e9", - "f": "Ibrahim", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "83", - "n": "15", - "a": "5.57", - "d": "0.73", - "Ss": "25", - "Sn": "5", - "Sa": "5.1", - "Sd": "0.49", - "Og": "2", - "Os": "141", - "On": "26", - "Oa": "5.44", - "Od": "0.89", - "Mp": "26", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 10 - }, - { - "i": 1024, - "n": "Sanogo", - "f": "Yaya", - "p": "A", - "r": 14, - "s": { - "g": "2", - "s": "42", - "n": "9", - "a": "4.67", - "d": "0.91", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "7", - "Os": "105", - "On": "21", - "Oa": "5", - "Od": "1.3", - "Ap": "21", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 4, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "g": 1 - }, - "21": { - "n": 7, - "g": 1 - }, - "22": { - "n": 4 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 1025, - "n": "Gradel", - "f": "Max-Alain", - "p": "A", - "r": 25, - "s": { - "g": "9", - "s": "127", - "n": "23", - "a": "5.54", - "d": "1.25", - "Sg": "4", - "Ss": "38", - "Sn": "7", - "Sa": "5.43", - "Sd": "0.9", - "Og": "11", - "Os": "192", - "On": "36", - "Oa": "5.35", - "Od": "1.3", - "Mp": "23", - "Ap": "13", - "p": { - "37": { - "n": 4 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 7.5, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7.5, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 5.5, - "g": 1 - }, - "19": { - "n": 7, - "g": 2 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 10 - }, - { - "i": 1208, - "n": "Steven Fortes", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "15", - "n": "3", - "a": "5.17", - "d": "0.24", - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "0.49", - "Dp": "4", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 1273, - "n": "Boisgard", - "f": "Quentin", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 1528, - "n": "Dossevi", - "f": "Mathieu", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "121", - "n": "24", - "a": "5.04", - "d": "0.91", - "Sg": "2", - "Ss": "121", - "Sn": "24", - "Sa": "5.04", - "Sd": "0.91", - "Og": "2", - "Os": "189", - "On": "37", - "Oa": "5.11", - "Od": "1.1", - "Mp": "30", - "Ap": "7", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 3 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 10 - }, - { - "i": 2041, - "n": "Khalid", - "f": "Driss", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2621, - "n": "Bostock", - "f": "John", - "p": "M", - "r": 7, - "s": { - "s": "57", - "n": "12", - "a": "4.75", - "d": "0.75", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.75", - "Mp": "12", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "20": { - "n": 3.5 - }, - "23": { - "n": 5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 2739, - "n": "Manu Garc\u00eda", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "100", - "n": "21", - "a": "4.79", - "d": "0.92", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "0.41", - "Os": "100", - "On": "21", - "Oa": "4.79", - "Od": "0.92", - "Mp": "21", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - }, - "22": { - "n": 5.5, - "s": 1 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 2780, - "n": "El Mokkedem", - "f": "Hakim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2781, - "n": "Goncalves", - "f": "Mathieu", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2783, - "n": "Osei Yaw", - "f": "Derick", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2786, - "n": "Taoui", - "f": "Adil", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2824, - "n": "Mbia", - "f": "St\u00e9phane", - "p": "M", - "r": 6, - "s": { - "s": "23", - "n": "5", - "a": "4.7", - "d": "1.08", - "Os": "23", - "On": "5", - "Oa": "4.7", - "Od": "1.08", - "Mp": "2", - "Dp": "3", - "p": { - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 2936, - "n": "Carvalho", - "f": "Matis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2942, - "n": "N'Goumou Minpol", - "f": "Nathan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2950, - "n": "Sidibe", - "f": "Kalidou", - "p": "M", - "r": 5, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.41", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.41", - "Mp": "4", - "p": { - "17": { - "n": 5.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - } - } - }, - "c": 10 - }, - { - "i": 2960, - "n": "Diakite", - "f": "Bafode", - "p": "D", - "r": 6, - "s": { - "s": "27", - "n": "6", - "a": "4.58", - "d": "0.79", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.75", - "Os": "27", - "On": "6", - "Oa": "4.58", - "Od": "0.79", - "Mp": "2", - "Dp": "4", - "p": { - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5.5 - }, - "23": { - "n": 3.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 10 - }, - { - "i": 2962, - "n": "Bessile", - "f": "Loic", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2996, - "n": "Shoji", - "f": "Gen", - "p": "D", - "r": 9, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.65", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.65", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.65", - "Dp": "4", - "p": { - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 3228, - "n": "Kone", - "f": "Kouadio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 181, - "n": "Soumaoro", - "f": "Adama", - "p": "D", - "r": 17, - "s": { - "s": "92", - "n": "16", - "a": "5.78", - "d": "0.61", - "Os": "124", - "On": "23", - "Oa": "5.41", - "Od": "0.86", - "Dp": "23", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 192, - "n": "Benzia", - "f": "Yassine", - "p": "A", - "r": 13, - "s": { - "s": "13", - "n": "2", - "a": "6.5", - "d": "0.5", - "Og": "1", - "Os": "74", - "On": "13", - "Oa": "5.69", - "Od": "0.72", - "Mp": "13", - "p": { - "29": { - "n": 7 - }, - "1": { - "n": 7 - }, - "2": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 193, - "n": "El Ghazi", - "f": "Anwar", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Os": "26", - "On": "6", - "Oa": "4.33", - "Od": "0.47", - "Mp": "1", - "Ap": "1" - }, - "c": 12 - }, - { - "i": 211, - "n": "Pepe", - "f": "Nicolas", - "p": "A", - "r": 47, - "s": { - "g": "16", - "s": "146", - "n": "24", - "a": "6.1", - "d": "1.53", - "Sg": "16", - "Ss": "146", - "Sn": "24", - "Sa": "6.1", - "Sd": "1.53", - "Og": "24", - "Os": "220", - "On": "38", - "Oa": "5.8", - "Od": "1.61", - "Mp": "32", - "Ap": "4", - "p": { - "29": { - "n": 5, - "g": 1 - }, - "1": { - "n": 8, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 8 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 8.5, - "g": 3 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 5.5, - "g": 1 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 8, - "g": 1 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 8, - "g": 2 - }, - "23": { - "n": 7.5, - "g": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 12 - }, - { - "i": 316, - "n": "Maignan", - "f": "Mike", - "p": "G", - "r": 24, - "s": { - "s": "139", - "n": "24", - "a": "5.79", - "d": "0.76", - "Ss": "139", - "Sn": "24", - "Sa": "5.79", - "Sd": "0.76", - "Os": "189", - "On": "35", - "Oa": "5.4", - "Od": "1.05", - "Gp": "35", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 7 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 7 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 425, - "n": "Xeka", - "f": "", - "p": "M", - "r": 14, - "s": { - "g": "2", - "s": "110", - "n": "21", - "a": "5.24", - "d": "0.93", - "Sg": "1", - "Ss": "22", - "Sn": "4", - "Sa": "5.5", - "Sd": "0.87", - "Og": "2", - "Os": "120", - "On": "23", - "Oa": "5.22", - "Od": "0.89", - "Mp": "22", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 6 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 430, - "n": "Bahlouli", - "f": "Fares", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Od": "0.5" - }, - "c": 12 - }, - { - "i": 455, - "n": "Jonathan Ikone", - "f": "", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "118", - "n": "24", - "a": "4.94", - "d": "0.67", - "Sg": "1", - "Ss": "118", - "Sn": "24", - "Sa": "4.94", - "Sd": "0.67", - "Og": "1", - "Os": "158", - "On": "33", - "Oa": "4.8", - "Od": "0.71", - "Mp": "25", - "Ap": "5", - "p": { - "29": { - "n": 5, - "e": 1048, - "c": 15 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 482, - "n": "Bamba", - "f": "Jonathan", - "p": "M", - "r": 28, - "s": { - "g": "9", - "s": "131", - "n": "24", - "a": "5.48", - "d": "1.43", - "Sg": "9", - "Ss": "131", - "Sn": "24", - "Sa": "5.48", - "Sd": "1.43", - "Og": "10", - "Os": "204", - "On": "38", - "Oa": "5.38", - "Od": "1.38", - "Mp": "31", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 8, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 7, - "g": 2 - }, - "9": { - "n": 8.5, - "g": 2 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 7.5, - "g": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 496, - "n": "Mendyl", - "f": "Hamza", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "1.26", - "Dp": "6" - }, - "c": 12 - }, - { - "i": 527, - "n": "Kone", - "f": "Youssouf", - "p": "D", - "r": 11, - "s": { - "s": "37", - "n": "7", - "a": "5.29", - "d": "0.36", - "Ss": "27", - "Sn": "5", - "Sa": "5.4", - "Sd": "0.37", - "Os": "37", - "On": "7", - "Oa": "5.29", - "Od": "0.36", - "Dp": "7", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 12 - }, - { - "i": 819, - "n": "Jos\u00e9 Fonte", - "f": "", - "p": "D", - "r": 15, - "s": { - "g": "1", - "s": "120", - "n": "22", - "a": "5.45", - "d": "0.96", - "Ss": "30", - "Sn": "5", - "Sa": "6", - "Sd": "0.55", - "Og": "1", - "Os": "120", - "On": "22", - "Oa": "5.45", - "Od": "0.96", - "Dp": "22", - "p": { - "2": { - "n": 6 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 7 - }, - "24": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 954, - "n": "Remy", - "f": "Lo\u00efc", - "p": "A", - "r": 11, - "s": { - "g": "3", - "s": "72", - "n": "15", - "a": "4.8", - "d": "0.98", - "Sg": "2", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.71", - "Og": "6", - "Os": "114", - "On": "24", - "Oa": "4.75", - "Od": "1.05", - "Mp": "2", - "Ap": "19", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 2.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 6, - "g": 1, - "s": 1 - }, - "24": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1020, - "n": "Pied", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 13, - "s": { - "s": "36", - "n": "7", - "a": "5.21", - "d": "0.8", - "Ss": "27", - "Sn": "5", - "Sa": "5.5", - "Sd": "0.71", - "Os": "36", - "On": "7", - "Oa": "5.21", - "Od": "0.8", - "Dp": "7", - "p": { - "11": { - "n": 5, - "s": 1 - }, - "18": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5, - "s": 1 - }, - "23": { - "n": 6.5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1167, - "n": "Thiago Maia", - "f": "", - "p": "M", - "r": 14, - "s": { - "s": "77", - "n": "15", - "a": "5.17", - "d": "0.85", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "145", - "On": "28", - "Oa": "5.2", - "Od": "0.78", - "Mp": "27", - "p": { - "29": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 6.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1184, - "n": "Jakubech", - "f": "Adam", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1191, - "n": "Thiago Mendes", - "f": "", - "p": "M", - "r": 30, - "s": { - "s": "135", - "n": "22", - "a": "6.14", - "d": "0.94", - "Ss": "63", - "Sn": "10", - "Sa": "6.3", - "Sd": "1.21", - "Os": "200", - "On": "35", - "Oa": "5.71", - "Od": "1.15", - "Mp": "31", - "p": { - "29": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 7 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 7 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 7.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 8 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 7.5 - }, - "24": { - "n": 6.5 - } - } - }, - "c": 12 - }, - { - "i": 1202, - "n": "Boukholda", - "f": "Chahreddine", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1215, - "n": "Luiz Araujo", - "f": "", - "p": "A", - "r": 8, - "s": { - "g": "2", - "s": "66", - "n": "14", - "a": "4.71", - "d": "0.56", - "Og": "6", - "Os": "135", - "On": "27", - "Oa": "5", - "Od": "0.89", - "Mp": "12", - "Ap": "12", - "p": { - "29": { - "n": 5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 6, - "g": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6, - "g": 1, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 1226, - "n": "Dabila", - "f": "Kouadio", - "p": "D", - "r": 7, - "s": { - "s": "62", - "n": "12", - "a": "5.21", - "d": "0.69", - "Os": "107", - "On": "22", - "Oa": "4.89", - "Od": "0.77", - "Dp": "20", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 1267, - "n": "Sadzoute", - "f": "Scotty", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1276, - "n": "Faraj", - "f": "Imad", - "p": "M", - "r": 2, - "s": { - "n": 0, - "Os": "16", - "On": "3", - "Oa": "5.33", - "Od": "0.47" - }, - "c": 12 - }, - { - "i": 1541, - "n": "Koffi", - "f": "Kouakou", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Gp": "3" - }, - "c": 12 - }, - { - "i": 2037, - "n": "Verite", - "f": "Benjamin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2039, - "n": "Soumare", - "f": "Boubakary", - "p": "M", - "r": 10, - "s": { - "s": "47", - "n": "10", - "a": "4.75", - "d": "0.25", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.3", - "Mp": "10", - "p": { - "29": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2082, - "n": "Flips", - "f": "Alexis", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2512, - "n": "Rui Fonte", - "f": "", - "p": "A", - "r": 5, - "s": { - "s": "39", - "n": "9", - "a": "4.39", - "d": "0.46", - "Os": "39", - "On": "9", - "Oa": "4.39", - "Od": "0.46", - "Ap": "9", - "p": { - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2714, - "n": "Zeki \u00c7elik", - "f": "Mehmet", - "p": "D", - "r": 16, - "s": { - "s": "117", - "n": "23", - "a": "5.11", - "d": "0.57", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.41", - "Os": "117", - "On": "23", - "Oa": "5.11", - "Od": "0.57", - "Dp": "23", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5 - } - } - }, - "c": 12 - }, - { - "i": 2738, - "n": "Gabriel", - "f": "", - "p": "D", - "r": 4, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Dp": "2", - "p": { - "8": { - "n": 5, - "s": 1 - }, - "24": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 2771, - "n": "Zekaj", - "f": "Arton", - "p": "M", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2784, - "n": "Ouro-Sama", - "f": "Hakim", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2791, - "n": "Rafael Le\u00e3o", - "f": "", - "p": "A", - "r": 25, - "s": { - "g": "7", - "s": "74", - "n": "14", - "a": "5.29", - "d": "1.18", - "Sg": "6", - "Ss": "46", - "Sn": "8", - "Sa": "5.81", - "Sd": "1.14", - "Og": "7", - "Os": "74", - "On": "14", - "Oa": "5.29", - "Od": "1.18", - "Ap": "14", - "p": { - "8": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6, - "g": 1 - }, - "19": { - "n": 5.5, - "g": 1 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 6.5, - "g": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 7, - "g": 1 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 12 - }, - { - "i": 2859, - "n": "Fernando Costanza", - "f": "", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3122, - "n": "Niasse", - "f": "Cheikh", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3123, - "n": "Okou", - "f": "Teddy", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3359, - "n": "Reinildo", - "f": "", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3, - "n": "Falcao", - "f": "Radamel", - "p": "A", - "r": 17, - "s": { - "g": "9", - "s": "102", - "n": "21", - "a": "4.88", - "d": "1.37", - "Sg": "2", - "Ss": "21", - "Sn": "4", - "Sa": "5.25", - "Sd": "0.56", - "Og": "10", - "Oao": "1", - "Os": "129", - "On": "27", - "Oa": "4.8", - "Od": "1.44", - "Ap": "26", - "p": { - "32": { - "n": 7, - "g": 1 - }, - "1": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 3 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 6.5, - "g": 1 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "12": { - "n": 3.5, - "s": 1 - }, - "13": { - "n": 2.5 - }, - "14": { - "n": 6.5, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 7, - "g": 2 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5.5, - "g": 1 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 6, - "g": 1 - } - } - }, - "c": 13 - }, - { - "i": 19, - "n": "Subasic", - "f": "Danijel", - "p": "G", - "r": 14, - "s": { - "s": "19", - "n": "4", - "a": "4.75", - "d": "0.75", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "0.24", - "Os": "83", - "On": "16", - "Oa": "5.19", - "Od": "1.06", - "Gp": "16", - "p": { - "32": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 24, - "n": "Sidibe", - "f": "Djibril", - "p": "D", - "r": 9, - "s": { - "s": "57", - "n": "13", - "a": "4.38", - "d": "0.71", - "Ss": "18", - "Sn": "4", - "Sa": "4.5", - "Sd": "0.79", - "Os": "118", - "On": "24", - "Oa": "4.92", - "Od": "1.28", - "Mp": "3", - "Dp": "20", - "p": { - "32": { - "n": 5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "13": { - "n": 3 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 3.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 50, - "n": "Glik", - "f": "Kamil", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "99", - "n": "21", - "a": "4.71", - "d": "0.92", - "Ss": "41", - "Sn": "9", - "Sa": "4.61", - "Sd": "1.17", - "Og": "2", - "Os": "163", - "On": "33", - "Oa": "4.94", - "Od": "0.94", - "Dp": "33", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "g": 1 - }, - "12": { - "n": 4 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 3 - }, - "20": { - "n": 6 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 6 - }, - "24": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 60, - "n": "Vainqueur", - "f": "William", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 94, - "n": "Jemerson", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "79", - "n": "16", - "a": "4.97", - "d": "0.84", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Os": "140", - "On": "28", - "Oa": "5.02", - "Od": "1", - "Mp": "2", - "Dp": "26", - "p": { - "32": { - "n": 5 - }, - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "7": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 3.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 6 - } - } - }, - "c": 13 - }, - { - "i": 274, - "n": "Almamy Tour\u00e9", - "f": "", - "p": "D", - "r": 7, - "s": { - "s": "18", - "n": "4", - "a": "4.63", - "d": "0.41", - "Og": "1", - "Os": "58", - "On": "12", - "Oa": "4.88", - "Od": "0.51", - "Dp": "9", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 275, - "n": "Raggi", - "f": "Andrea", - "p": "D", - "r": 6, - "s": { - "s": "28", - "n": "6", - "a": "4.75", - "d": "0.75", - "Og": "1", - "Os": "83", - "On": "17", - "Oa": "4.91", - "Od": "1.02", - "Mp": "1", - "Dp": "15", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 284, - "n": "Rony Lopes", - "f": "", - "p": "M", - "r": 14, - "s": { - "g": "1", - "s": "51", - "n": "10", - "a": "5.15", - "d": "1.12", - "Ss": "23", - "Sn": "5", - "Sa": "4.7", - "Sd": "0.68", - "Og": "12", - "Os": "131", - "On": "24", - "Oa": "5.48", - "Od": "1.18", - "Mp": "19", - "Ap": "4", - "p": { - "32": { - "n": 6, - "g": 1 - }, - "1": { - "n": 7.5, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 336, - "n": "Jorge", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Os": "16", - "On": "4", - "Oa": "4", - "Od": "1", - "Mp": "1", - "Dp": "3", - "p": { - "32": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 368, - "n": "Pierre Gabriel", - "f": "Ronael", - "p": "D", - "r": 7, - "s": { - "s": "21", - "n": "4", - "a": "5.38", - "d": "0.41", - "Os": "31", - "On": "6", - "Oa": "5.25", - "Od": "0.38", - "Dp": "4", - "p": { - "1": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 405, - "n": "Gaspar", - "f": "Jordy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 408, - "n": "N'Doram", - "f": "Kevin", - "p": "D", - "r": 6, - "s": { - "s": "13", - "n": "3", - "a": "4.33", - "d": "0.94", - "Os": "45", - "On": "9", - "Oa": "5", - "Od": "0.82", - "Mp": "2", - "Dp": "4", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5 - }, - "8": { - "n": 3 - } - } - }, - "c": 13 - }, - { - "i": 573, - "n": "Sy", - "f": "Seydou", - "p": "G", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "17", - "On": "3", - "Oa": "5.67", - "Od": "1.25", - "Gp": "3", - "p": { - "10": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 646, - "n": "F\u00e0bregas", - "f": "Cesc", - "p": "M", - "r": 19, - "s": { - "g": "1", - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.47", - "Sg": "1", - "Ss": "16", - "Sn": "3", - "Sa": "5.5", - "Sd": "0.41", - "Og": "2", - "Os": "106", - "On": "20", - "Oa": "5.33", - "Od": "0.9", - "Mp": "19", - "p": { - "20": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6, - "g": 1 - }, - "24": { - "n": 5 - }, - "10": { - "n": 5, - "e": 3265, - "c": 25, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 3276, - "c": 25, - "s": 1 - }, - "12": { - "n": 5, - "e": 3285, - "c": 25, - "s": 1 - }, - "15": { - "n": 4.5, - "e": 3314, - "c": 25 - }, - "18": { - "n": 5, - "e": 3341, - "c": 25, - "s": 1 - }, - "21": { - "n": 4.5, - "e": 3371, - "c": 25, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 698, - "n": "Chadli", - "f": "Nacer", - "p": "M", - "r": 6, - "s": { - "s": "49", - "n": "11", - "a": "4.45", - "d": "0.54", - "Os": "59", - "On": "13", - "Oa": "4.54", - "Od": "0.54", - "Mp": "11", - "p": { - "5": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 884, - "n": "Adama Traor\u00e9", - "f": "", - "p": "M", - "r": 8, - "s": { - "s": "28", - "n": "6", - "a": "4.67", - "d": "0.47", - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.47", - "Mp": "5", - "Ap": "1", - "p": { - "3": { - "n": 4 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 918, - "n": "Nkoudou", - "f": "Georges-K\u00e9vin", - "p": "M", - "r": 7, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "34", - "On": "7", - "Oa": "4.86", - "Od": "0.64", - "Mp": "4", - "p": { - "24": { - "n": 5, - "s": 1 - }, - "23": { - "n": 6, - "e": 3390, - "c": 24, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1201, - "n": "Mboula", - "f": "Jordi", - "p": "A", - "r": 2, - "s": { - "s": "31", - "n": "7", - "a": "4.43", - "d": "0.49", - "Og": "1", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.67", - "Mp": "3", - "Ap": "4", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1216, - "n": "Lacina Traor\u00e9", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "29", - "On": "7", - "Oa": "4.14", - "Od": "0.35", - "Ap": "4" - }, - "c": 13 - }, - { - "i": 1254, - "n": "Benaglio", - "f": "Diego", - "p": "G", - "r": 9, - "s": { - "s": "98", - "n": "19", - "a": "5.18", - "d": "0.96", - "Os": "98", - "On": "19", - "Oa": "5.18", - "Od": "0.96", - "Gp": "19", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 3 - } - } - }, - "c": 13 - }, - { - "i": 1256, - "n": "Ballo-Toure", - "f": "Fode", - "p": "D", - "r": 14, - "s": { - "s": "116", - "n": "23", - "a": "5.04", - "d": "0.81", - "Ss": "48", - "Sn": "10", - "Sa": "4.85", - "Sd": "0.71", - "Os": "153", - "On": "32", - "Oa": "4.78", - "Od": "0.89", - "Mp": "3", - "Dp": "28", - "p": { - "1": { - "n": 5, - "e": 2734, - "c": 12 - }, - "2": { - "n": 5, - "e": 2746, - "c": 12 - }, - "3": { - "n": 5, - "e": 2754, - "c": 12 - }, - "4": { - "n": 5, - "e": 2762, - "c": 12 - }, - "5": { - "n": 5, - "e": 2772, - "c": 12 - }, - "6": { - "n": 5, - "e": 2784, - "c": 12 - }, - "7": { - "n": 6, - "e": 2793, - "c": 12 - }, - "8": { - "n": 6.5, - "e": 2804, - "c": 12 - }, - "9": { - "n": 5, - "e": 2816, - "c": 12 - }, - "10": { - "n": 6.5, - "e": 2823, - "c": 12 - }, - "11": { - "n": 6, - "e": 2836, - "c": 12 - }, - "12": { - "n": 4, - "e": 2848, - "c": 12 - }, - "13": { - "n": 3.5, - "e": 2855, - "c": 12 - }, - "15": { - "n": 5, - "e": 2875, - "c": 12 - }, - "16": { - "n": 6, - "e": 2887, - "c": 12 - }, - "17": { - "n": 5.5, - "e": 2894, - "c": 12 - }, - "18": { - "n": 4.5, - "e": 2910, - "c": 12 - }, - "19": { - "n": 5, - "e": 2914, - "c": 12 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 1275, - "n": "Sylla", - "f": "Moussa", - "p": "A", - "r": 8, - "s": { - "s": "62", - "n": "15", - "a": "4.17", - "d": "0.51", - "Og": "2", - "Os": "87", - "On": "20", - "Oa": "4.38", - "Od": "0.85", - "Mp": "1", - "Ap": "17", - "p": { - "5": { - "n": 4 - }, - "6": { - "n": 4, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1433, - "n": "Aholou", - "f": "Jean Eudes", - "p": "M", - "r": 5, - "s": { - "s": "44", - "n": "9", - "a": "4.89", - "d": "0.7", - "Og": "2", - "Os": "107", - "On": "21", - "Oa": "5.1", - "Od": "0.85", - "Mp": "21", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6 - }, - "7": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 1523, - "n": "Jovetic", - "f": "Stevan", - "p": "A", - "r": 6, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5.1", - "d": "0.97", - "Og": "7", - "Os": "63", - "On": "11", - "Oa": "5.77", - "Od": "1.29", - "Mp": "2", - "Ap": "7", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2034, - "n": "Keita", - "f": "", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "32", - "On": "6", - "Oa": "5.33", - "Od": "1.25", - "Mp": "3", - "Ap": "2", - "p": { - "32": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 2038, - "n": "Geubbels", - "f": "Willem", - "p": "A", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2040, - "n": "Serrano", - "f": "Julien", - "p": "D", - "r": 5, - "s": { - "s": "15", - "n": "3", - "a": "5", - "Os": "38", - "On": "7", - "Oa": "5.43", - "Od": "0.49", - "Mp": "1", - "Dp": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2145, - "n": "Faivre", - "f": "Romain", - "p": "M", - "r": 3, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "19": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2198, - "n": "Adrien Silva", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Os": "60", - "On": "13", - "Oa": "4.65", - "Od": "0.6", - "Mp": "11", - "Ap": "1", - "p": { - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5, - "e": 3168, - "c": 29 - }, - "2": { - "n": 5, - "e": 3180, - "c": 29, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2275, - "n": "Pellegri", - "f": "Pietro", - "p": "A", - "r": 5, - "s": { - "g": "1", - "s": "15", - "n": "3", - "a": "5", - "d": "1.08", - "Og": "1", - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "0.91", - "Ap": "3", - "p": { - "3": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2459, - "n": "Gelson Martins", - "f": "", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "48", - "n": "10", - "a": "4.8", - "d": "0.87", - "Sg": "1", - "Ss": "12", - "Sn": "2", - "Sa": "6.25", - "Sd": "0.75", - "Og": "1", - "Os": "48", - "On": "10", - "Oa": "4.8", - "Od": "0.87", - "Mp": "2", - "Ap": "8", - "p": { - "23": { - "n": 5.5 - }, - "24": { - "n": 7, - "g": 1 - }, - "1": { - "n": 4.5, - "e": 1980, - "c": 54, - "s": 1 - }, - "2": { - "n": 4.5, - "e": 1985, - "c": 54, - "s": 1 - }, - "6": { - "n": 4.5, - "e": 2024, - "c": 54, - "s": 1 - }, - "11": { - "n": 4, - "e": 2077, - "c": 54 - }, - "12": { - "n": 5, - "e": 2089, - "c": 54, - "s": 1 - }, - "14": { - "n": 5, - "e": 2108, - "c": 54, - "s": 1 - }, - "16": { - "n": 4, - "e": 2127, - "c": 54, - "s": 1 - }, - "17": { - "n": 4, - "e": 2133, - "c": 54, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2614, - "n": "Pel\u00e9", - "f": "", - "p": "M", - "r": 9, - "s": { - "s": "36", - "n": "8", - "a": "4.56", - "d": "0.53", - "Os": "36", - "On": "8", - "Oa": "4.56", - "Od": "0.53", - "Mp": "8", - "p": { - "8": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2622, - "n": "Diop", - "f": "Sofiane", - "p": "M", - "r": 7, - "s": { - "s": "57", - "n": "13", - "a": "4.42", - "d": "0.51", - "Os": "57", - "On": "13", - "Oa": "4.42", - "Od": "0.51", - "Mp": "12", - "Ap": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2623, - "n": "Robert Navarro", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2671, - "n": "Diallo", - "f": "Ibrahima", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2672, - "n": "Mbae", - "f": "Safwan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2691, - "n": "Mexique", - "f": "Jonathan", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2693, - "n": "Panzo", - "f": "Jonathan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2720, - "n": "Golovin", - "f": "Aleksandr", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "74", - "n": "16", - "a": "4.63", - "d": "0.93", - "Sg": "1", - "Ss": "25", - "Sn": "5", - "Sa": "5.1", - "Sd": "1.07", - "Og": "1", - "Os": "74", - "On": "16", - "Oa": "4.63", - "Od": "0.93", - "Mp": "9", - "Ap": "7", - "p": { - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 2.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5.5, - "s": 1 - }, - "23": { - "n": 7, - "g": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 2797, - "n": "Echi\u00e9jil\u00e9", - "f": "Elderson", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2833, - "n": "Henrichs", - "f": "Benjamin", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "83", - "n": "18", - "a": "4.64", - "d": "0.74", - "Og": "1", - "Os": "83", - "On": "18", - "Oa": "4.64", - "Od": "0.74", - "Mp": "9", - "Dp": "9", - "p": { - "4": { - "n": 3 - }, - "5": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 4 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5, - "g": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 2892, - "n": "Isidor", - "f": "Wilson", - "p": "A", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "13": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2954, - "n": "Massengo", - "f": "Han-Noah", - "p": "M", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "18": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 2955, - "n": "Gouano", - "f": "Gobe", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2956, - "n": "Biancone", - "f": "Giulian", - "p": "D", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "19": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 2958, - "n": "Henin", - "f": "Yanis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2959, - "n": "Kephren Thuram", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2961, - "n": "Badiashile Mukinayi", - "f": "Benoit", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "38", - "n": "8", - "a": "4.75", - "d": "1.03", - "Sg": "1", - "Ss": "38", - "Sn": "8", - "Sa": "4.75", - "Sd": "1.03", - "Og": "1", - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "1.03", - "Dp": "8", - "p": { - "17": { - "n": 5, - "g": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 13 - }, - { - "i": 3362, - "n": "Carlos Vinicius", - "f": "", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 3498, - "n": "Naldo", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 84, - "n": "Rodelin", - "f": "Ronny", - "p": "A", - "r": 7, - "s": { - "s": "54", - "n": "12", - "a": "4.54", - "d": "0.25", - "Os": "117", - "On": "25", - "Oa": "4.7", - "Od": "0.72", - "Mp": "11", - "Ap": "13", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4.5 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 110, - "n": "Sorbon", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 7, - "s": { - "s": "82", - "n": "18", - "a": "4.58", - "d": "0.92", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "125", - "On": "27", - "Oa": "4.65", - "Od": "0.84", - "Dp": "27", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 115, - "n": "Roux", - "f": "Nolan", - "p": "A", - "r": 10, - "s": { - "g": "2", - "s": "58", - "n": "13", - "a": "4.46", - "d": "0.89", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "8", - "Os": "121", - "On": "25", - "Oa": "4.84", - "Od": "1.21", - "Mp": "9", - "Ap": "16", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 5 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 142, - "n": "Kerbrat", - "f": "Christophe", - "p": "D", - "r": 8, - "s": { - "s": "90", - "n": "21", - "a": "4.31", - "d": "1.14", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "153", - "On": "34", - "Oa": "4.51", - "Od": "1.2", - "Dp": "34", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 2.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 3 - }, - "24": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 158, - "n": "Johnsson", - "f": "Karl-Johan", - "p": "G", - "r": 6, - "s": { - "s": "85", - "n": "17", - "a": "5", - "d": "1.1", - "Os": "154", - "On": "31", - "Oa": "4.97", - "Od": "1.18", - "Gp": "31", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 4 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 3 - }, - "17": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 163, - "n": "Deaux", - "f": "Lucas", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "41", - "n": "9", - "a": "4.61", - "d": "1.07", - "Og": "3", - "Os": "70", - "On": "15", - "Oa": "4.7", - "Od": "1.19", - "Mp": "15", - "p": { - "3": { - "n": 3.5 - }, - "4": { - "n": 4 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "18": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 200, - "n": "Coco", - "f": "Marcus", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "93", - "n": "20", - "a": "4.68", - "d": "0.75", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "136", - "On": "30", - "Oa": "4.55", - "Od": "0.73", - "Mp": "21", - "Ap": "5", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 3.5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 3 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6.5, - "g": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 231, - "n": "Petric", - "f": "Denis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 236, - "n": "Benezet", - "f": "Nicolas", - "p": "M", - "r": 8, - "s": { - "g": "3", - "s": "84", - "n": "17", - "a": "4.94", - "d": "1.22", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "4", - "Os": "143", - "On": "29", - "Oa": "4.93", - "Od": "1.32", - "Mp": "21", - "Ap": "4", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 7.5, - "g": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4 - }, - "24": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 241, - "n": "Didot", - "f": "\u00c9tienne", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "93", - "n": "20", - "a": "4.68", - "d": "1.09", - "Og": "2", - "Os": "150", - "On": "31", - "Oa": "4.85", - "Od": "1.12", - "Mp": "30", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 289, - "n": "Ikoko", - "f": "Jordan", - "p": "D", - "r": 6, - "s": { - "s": "62", - "n": "15", - "a": "4.17", - "d": "0.94", - "Os": "119", - "On": "27", - "Oa": "4.43", - "Od": "0.98", - "Mp": "1", - "Dp": "26", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3 - }, - "6": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3 - }, - "13": { - "n": 3 - }, - "14": { - "n": 3.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 376, - "n": "Mendy", - "f": "Alexandre", - "p": "A", - "r": 7, - "s": { - "s": "16", - "n": "4", - "a": "4.13", - "d": "0.54", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "16", - "On": "4", - "Oa": "4.13", - "Od": "0.54", - "Ap": "4", - "p": { - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 398, - "n": "Blas", - "f": "Ludovic", - "p": "M", - "r": 9, - "s": { - "s": "100", - "n": "21", - "a": "4.79", - "d": "1.04", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "161", - "On": "33", - "Oa": "4.89", - "Od": "1.05", - "Mp": "27", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 3.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 790, - "n": "Djilobodji", - "f": "Papy", - "p": "D", - "r": 7, - "s": { - "s": "7", - "n": "2", - "a": "3.75", - "d": "0.25", - "Os": "67", - "On": "15", - "Oa": "4.5", - "Od": "1.17", - "Dp": "15", - "p": { - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 905, - "n": "Ndong", - "f": "Didier", - "p": "M", - "r": 8, - "s": { - "s": "13", - "n": "3", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "13", - "On": "3", - "Oa": "4.5", - "Mp": "3", - "p": { - "20": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 1178, - "n": "Tabanou", - "f": "Franck", - "p": "D", - "r": 6, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "19", - "On": "5", - "Oa": "3.9", - "Od": "1.02", - "Dp": "5", - "p": { - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 1200, - "n": "Thuram", - "f": "Marcus", - "p": "A", - "r": 11, - "s": { - "g": "7", - "s": "93", - "n": "19", - "a": "4.89", - "d": "1.44", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "8", - "Os": "149", - "On": "31", - "Oa": "4.81", - "Od": "1.3", - "Mp": "16", - "Ap": "12", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 3 - }, - "9": { - "n": 2 - }, - "13": { - "n": 7, - "g": 2 - }, - "14": { - "n": 5, - "g": 1 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 3 - }, - "22": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1209, - "n": "Phiri", - "f": "Lebogang", - "p": "M", - "r": 9, - "s": { - "s": "50", - "n": "10", - "a": "5", - "d": "0.92", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "92", - "On": "19", - "Oa": "4.84", - "Od": "0.76", - "Mp": "13", - "p": { - "1": { - "n": 4.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "14": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "21": { - "n": 3 - }, - "22": { - "n": 5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 14 - }, - { - "i": 1236, - "n": "Eboa Eboa", - "f": "F\u00e9lix", - "p": "D", - "r": 11, - "s": { - "g": "1", - "s": "81", - "n": "17", - "a": "4.76", - "d": "1.45", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "124", - "On": "26", - "Oa": "4.77", - "Od": "1.35", - "Dp": "25", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 3 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "12": { - "n": 3 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 7.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2 - }, - "22": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1257, - "n": "Pedro Rebocho", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "101", - "n": "21", - "a": "4.81", - "d": "1.01", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "140", - "On": "29", - "Oa": "4.83", - "Od": "0.95", - "Mp": "1", - "Dp": "27", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 6 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 7 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 4.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1258, - "n": "Abdoul Camara", - "f": "", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 1264, - "n": "Caillard", - "f": "Marc-Aur\u00e8le", - "p": "G", - "r": 13, - "s": { - "s": "30", - "n": "6", - "a": "5", - "d": "1.22", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "30", - "On": "6", - "Oa": "5", - "Od": "1.22", - "Gp": "6", - "p": { - "18": { - "n": 5.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 2.5 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1422, - "n": "Fofana", - "f": "Guessouma", - "p": "M", - "r": 4, - "s": { - "s": "52", - "n": "12", - "a": "4.33", - "d": "0.77", - "Os": "90", - "On": "20", - "Oa": "4.5", - "Od": "0.69", - "Mp": "15", - "p": { - "1": { - "n": 4, - "e": 2735, - "c": 42 - }, - "2": { - "n": 4.5, - "e": 2742, - "c": 42 - }, - "3": { - "n": 5, - "e": 2752, - "c": 42, - "s": 1 - }, - "5": { - "n": 3 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 2.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1548, - "n": "Ahlinvi", - "f": "Matteo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2138, - "n": "N'Gbakoto", - "f": "Yeni", - "p": "A", - "r": 7, - "s": { - "s": "53", - "n": "12", - "a": "4.46", - "d": "0.56", - "Og": "2", - "Os": "110", - "On": "24", - "Oa": "4.6", - "Od": "0.78", - "Mp": "6", - "Ap": "9", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 2312, - "n": "Julan", - "f": "Natha\u00ebl", - "p": "A", - "r": 9, - "s": { - "s": "45", - "n": "10", - "a": "4.5", - "d": "0.32", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.32", - "Ap": "10", - "p": { - "6": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2722, - "n": "Traor\u00e9", - "f": "Cheick", - "p": "D", - "r": 5, - "s": { - "s": "43", - "n": "10", - "a": "4.35", - "d": "1.03", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "43", - "On": "10", - "Oa": "4.35", - "Od": "1.03", - "Dp": "10", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 3 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "12": { - "n": 2 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 2772, - "n": "Koita", - "f": "Djegui", - "p": "D", - "r": 4, - "s": { - "s": "10", - "n": "2", - "a": "5.25", - "d": "0.25", - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2", - "p": { - "10": { - "n": 5 - }, - "11": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2857, - "n": "Bilingi", - "f": "Yohan", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2943, - "n": "Ako", - "f": "Steven", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2948, - "n": "Boudjemaa", - "f": "Mehdi", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2949, - "n": "Phaeton", - "f": "Matthias", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2997, - "n": "Johan Larsson", - "f": "", - "p": "D", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "20": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 3124, - "n": "Merghem", - "f": "Mehdi", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 40, - "n": "Delort", - "f": "Andy", - "p": "A", - "r": 23, - "s": { - "g": "9", - "s": "126", - "n": "23", - "a": "5.5", - "d": "0.96", - "Sg": "2", - "Ss": "37", - "Sn": "7", - "Sa": "5.29", - "Sd": "0.65", - "Og": "10", - "Os": "174", - "On": "33", - "Oa": "5.29", - "Od": "1.02", - "Mp": "5", - "Ap": "25", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 6, - "g": 1 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 7.5, - "g": 2 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5.5, - "g": 1 - }, - "24": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 15 - }, - { - "i": 43, - "n": "Sio", - "f": "Giovanni", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Og": "5", - "Os": "72", - "On": "15", - "Oa": "4.8", - "Od": "1.51", - "Ap": "11", - "p": { - "29": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4 - } - } - }, - "c": 15 - }, - { - "i": 114, - "n": "Skhiri", - "f": "Ellyes", - "p": "M", - "r": 19, - "s": { - "g": "1", - "s": "127", - "n": "23", - "a": "5.52", - "d": "0.76", - "Ss": "38", - "Sn": "7", - "Sa": "5.43", - "Sd": "0.82", - "Og": "4", - "Os": "209", - "On": "37", - "Oa": "5.65", - "Od": "0.8", - "Mp": "37", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 150, - "n": "Hilton", - "f": "", - "p": "D", - "r": 17, - "s": { - "s": "112", - "n": "21", - "a": "5.36", - "d": "0.68", - "Ss": "37", - "Sn": "7", - "Sa": "5.36", - "Sd": "0.79", - "Os": "168", - "On": "31", - "Oa": "5.44", - "Od": "0.63", - "Dp": "31", - "p": { - "29": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 153, - "n": "Pedro Mendes", - "f": "", - "p": "D", - "r": 17, - "s": { - "g": "1", - "s": "106", - "n": "20", - "a": "5.33", - "d": "0.75", - "Ss": "32", - "Sn": "7", - "Sa": "4.64", - "Sd": "0.64", - "Og": "1", - "Os": "168", - "On": "32", - "Oa": "5.27", - "Od": "0.77", - "Dp": "30", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 197, - "n": "Congr\u00e9", - "f": "Daniel", - "p": "D", - "r": 16, - "s": { - "s": "121", - "n": "23", - "a": "5.26", - "d": "0.71", - "Ss": "34", - "Sn": "7", - "Sa": "4.93", - "Sd": "0.42", - "Os": "192", - "On": "37", - "Oa": "5.19", - "Od": "0.67", - "Mp": "1", - "Dp": "35", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 227, - "n": "Lasne", - "f": "Paul", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "109", - "n": "21", - "a": "5.19", - "d": "0.81", - "Ss": "35", - "Sn": "7", - "Sa": "5", - "Sd": "0.46", - "Og": "1", - "Os": "179", - "On": "34", - "Oa": "5.26", - "Od": "0.75", - "Mp": "33", - "p": { - "29": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 232, - "n": "Camara", - "f": "Souleymane", - "p": "A", - "r": 5, - "s": { - "s": "22", - "n": "5", - "a": "4.5", - "d": "0.32", - "Os": "51", - "On": "12", - "Oa": "4.29", - "Od": "0.38", - "Ap": "5", - "p": { - "29": { - "n": 4 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 243, - "n": "Laborde", - "f": "Gaetan", - "p": "A", - "r": 22, - "s": { - "g": "9", - "s": "116", - "n": "22", - "a": "5.3", - "d": "1.47", - "Sg": "2", - "Ss": "24", - "Sn": "4", - "Sa": "6", - "Sd": "0.94", - "Og": "9", - "Os": "156", - "On": "32", - "Oa": "4.89", - "Od": "1.38", - "Mp": "1", - "Ap": "26", - "p": { - "1": { - "n": 3.5, - "e": 2733, - "c": 3 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 8, - "g": 2 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 3.5 - }, - "18": { - "n": 2 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 15 - }, - { - "i": 250, - "n": "Lecomte", - "f": "Benjamin", - "p": "G", - "r": 26, - "s": { - "s": "126", - "n": "22", - "a": "5.73", - "d": "0.75", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "0.24", - "Os": "203", - "On": "36", - "Oa": "5.64", - "Od": "0.79", - "Gp": "36", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 15 - }, - { - "i": 320, - "n": "Mollet", - "f": "Florent", - "p": "M", - "r": 17, - "s": { - "g": "1", - "s": "98", - "n": "18", - "a": "5.44", - "d": "1.01", - "Og": "4", - "Os": "154", - "On": "30", - "Oa": "5.13", - "Od": "1.12", - "Mp": "14", - "Ap": "15", - "p": { - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 8 - }, - "9": { - "n": 3.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 410, - "n": "Ligali", - "f": "Jonathan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 440, - "n": "Dolly", - "f": "Keagan", - "p": "M", - "r": 4, - "s": { - "s": "12", - "n": "3", - "a": "4.17", - "d": "0.47", - "Og": "1", - "Os": "56", - "On": "12", - "Oa": "4.71", - "Od": "0.85", - "Mp": "6", - "Ap": "3", - "p": { - "1": { - "n": 3.5 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 446, - "n": "Passi", - "f": "Bryan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 535, - "n": "Porsan-Clemente", - "f": "J\u00e9r\u00e9mie", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 15 - }, - { - "i": 541, - "n": "Sanson", - "f": "Killian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 579, - "n": "Poaty", - "f": "Morgan", - "p": "D", - "r": 3, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.24", - "Mp": "2", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 1186, - "n": "P\u00edriz", - "f": "Facundo", - "p": "M", - "r": 4, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.15", - "Mp": "7", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 1227, - "n": "Aguilar", - "f": "Ruben", - "p": "D", - "r": 19, - "s": { - "g": "1", - "s": "112", - "n": "21", - "a": "5.36", - "d": "0.97", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "173", - "On": "32", - "Oa": "5.42", - "Od": "0.91", - "Mp": "26", - "Dp": "4", - "p": { - "29": { - "n": 5 - }, - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "6": { - "n": 6.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 1242, - "n": "Bertaud", - "f": "Dimitry", - "p": "G", - "r": 7, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "21": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 1244, - "n": "Cozza", - "f": "Nicolas", - "p": "D", - "r": 6, - "s": { - "s": "30", - "n": "6", - "a": "5.08", - "d": "0.84", - "Og": "1", - "Os": "54", - "On": "11", - "Oa": "4.95", - "Od": "1.01", - "Mp": "2", - "Dp": "9", - "p": { - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "16": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 1532, - "n": "Junior Sambia", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "108", - "n": "22", - "a": "4.91", - "d": "0.36", - "Ss": "33", - "Sn": "7", - "Sa": "4.71", - "Sd": "0.36", - "Os": "163", - "On": "33", - "Oa": "4.94", - "Od": "0.52", - "Mp": "25", - "Ap": "4", - "p": { - "29": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 5.5, - "s": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 2268, - "n": "Oyongo", - "f": "Ambroise", - "p": "D", - "r": 13, - "s": { - "g": "2", - "s": "73", - "n": "14", - "a": "5.21", - "d": "0.94", - "Og": "2", - "Os": "88", - "On": "17", - "Oa": "5.18", - "Od": "0.86", - "Mp": "16", - "Dp": "1", - "p": { - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 4 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 2326, - "n": "Ammour", - "f": "Yannis", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "10": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2613, - "n": "Skuletic", - "f": "Petar", - "p": "A", - "r": 12, - "s": { - "g": "1", - "s": "84", - "n": "18", - "a": "4.67", - "d": "0.67", - "Ss": "32", - "Sn": "7", - "Sa": "4.57", - "Sd": "0.73", - "Og": "1", - "Os": "84", - "On": "18", - "Oa": "4.67", - "Od": "0.67", - "Ap": "18", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 3, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2617, - "n": "Le Tallec", - "f": "Damien", - "p": "D", - "r": 20, - "s": { - "g": "3", - "s": "126", - "n": "23", - "a": "5.48", - "d": "1.05", - "Sg": "1", - "Ss": "36", - "Sn": "7", - "Sa": "5.21", - "Sd": "0.92", - "Og": "3", - "Os": "126", - "On": "23", - "Oa": "5.48", - "Od": "1.05", - "Mp": "18", - "Dp": "5", - "p": { - "1": { - "n": 3.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 7 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 7 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 2636, - "n": "Adouyev", - "f": "Amir", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2637, - "n": "Kaiboue", - "f": "Kylian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2638, - "n": "Vidal", - "f": "Clement", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2995, - "n": "Su\u00e1rez", - "f": "Math\u00edas", - "p": "D", - "r": 8, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "23": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 3126, - "n": "Ristic", - "f": "Mihailo", - "p": "D", - "r": 7, - "s": { - "s": "14", - "n": "3", - "a": "4.67", - "d": "0.47", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.47", - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.47", - "Dp": "3", - "p": { - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 107, - "n": "Michel", - "f": "Mathieu", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 108, - "n": "Mangani", - "f": "Thomas", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "96", - "n": "20", - "a": "4.83", - "d": "0.71", - "Ss": "58", - "Sn": "12", - "Sa": "4.83", - "Sd": "0.31", - "Og": "1", - "Os": "153", - "On": "32", - "Oa": "4.8", - "Od": "0.84", - "Mp": "32", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 113, - "n": "Santamar\u00eda", - "f": "Baptiste", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "124", - "n": "24", - "a": "5.17", - "d": "0.9", - "Sg": "1", - "Ss": "124", - "Sn": "24", - "Sa": "5.17", - "Sd": "0.9", - "Og": "1", - "Os": "194", - "On": "38", - "Oa": "5.11", - "Od": "0.88", - "Mp": "38", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 7 - } - } - }, - "c": 16 - }, - { - "i": 143, - "n": "Thomas", - "f": "Romain", - "p": "D", - "r": 15, - "s": { - "g": "2", - "ao": "1", - "s": "99", - "n": "19", - "a": "5.21", - "d": "1.27", - "Sg": "2", - "Ss": "97", - "Sn": "18", - "Sa": "5.39", - "Sd": "1.05", - "Og": "2", - "Oao": "1", - "Os": "123", - "On": "25", - "Oa": "4.92", - "Od": "1.29", - "Dp": "25", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 2, - "a": 1 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 159, - "n": "Traor\u00e9", - "f": "Ismael", - "p": "D", - "r": 14, - "s": { - "g": "3", - "s": "90", - "n": "17", - "a": "5.29", - "d": "0.96", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "5", - "Os": "161", - "On": "30", - "Oa": "5.37", - "Od": "1.02", - "Dp": "30", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 4.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7.5, - "g": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 3.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "24": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 176, - "n": "Pajot", - "f": "Vincent", - "p": "M", - "r": 6, - "s": { - "s": "24", - "n": "5", - "a": "4.9", - "d": "0.37", - "Os": "44", - "On": "9", - "Oa": "4.94", - "Od": "0.28", - "Mp": "6", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 202, - "n": "Capelle", - "f": "Pierrick", - "p": "M", - "r": 14, - "s": { - "g": "3", - "s": "99", - "n": "19", - "a": "5.21", - "d": "0.95", - "Og": "3", - "Oao": "1", - "Os": "138", - "On": "27", - "Oa": "5.11", - "Od": "1.03", - "Mp": "21", - "Dp": "5", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 214, - "n": "Manceau", - "f": "Vincent", - "p": "D", - "r": 12, - "s": { - "ao": "1", - "s": "98", - "n": "19", - "a": "5.16", - "d": "1.09", - "Ss": "29", - "Sn": "5", - "Sa": "5.9", - "Sd": "1.28", - "Oao": "1", - "Os": "160", - "On": "32", - "Oa": "5", - "Od": "0.97", - "Mp": "1", - "Dp": "31", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3, - "a": 1 - }, - "13": { - "n": 5.5 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 7 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 235, - "n": "Pavlovic", - "f": "Mateo", - "p": "D", - "r": 13, - "s": { - "g": "2", - "s": "102", - "n": "19", - "a": "5.39", - "d": "0.85", - "Ss": "26", - "Sn": "5", - "Sa": "5.3", - "Sd": "0.93", - "Og": "3", - "Os": "160", - "On": "30", - "Oa": "5.35", - "Od": "0.97", - "Dp": "29", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5, - "g": 1 - }, - "18": { - "n": 6 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 262, - "n": "Andreu", - "f": "Yoann", - "p": "D", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "29", - "On": "6", - "Oa": "4.92", - "Od": "1.17", - "Dp": "6", - "p": { - "12": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 287, - "n": "Bamba", - "f": "Abdoulaye", - "p": "D", - "r": 14, - "s": { - "s": "114", - "n": "22", - "a": "5.18", - "d": "0.87", - "Ss": "111", - "Sn": "21", - "Sa": "5.29", - "Sd": "0.75", - "Os": "159", - "On": "32", - "Oa": "4.97", - "Od": "0.91", - "Mp": "3", - "Dp": "28", - "p": { - "33": { - "n": 4 - }, - "1": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 7 - } - } - }, - "c": 16 - }, - { - "i": 343, - "n": "Puyo", - "f": "Lo\u00efc", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5" - }, - "c": 16 - }, - { - "i": 370, - "n": "Tait", - "f": "Flavien", - "p": "M", - "r": 17, - "s": { - "g": "2", - "s": "119", - "n": "22", - "a": "5.41", - "d": "1.12", - "Og": "6", - "Os": "198", - "On": "35", - "Oa": "5.66", - "Od": "1.13", - "Mp": "26", - "Ap": "9", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 8, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 7 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 371, - "n": "Thomas Tour\u00e9", - "f": "", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "0.76", - "Mp": "1" - }, - "c": 16 - }, - { - "i": 378, - "n": "Pellenard", - "f": "Th\u00e9o", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4", - "Dp": "1" - }, - "c": 16 - }, - { - "i": 390, - "n": "Mandrea", - "f": "Anthony", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 454, - "n": "Dor\u00e9", - "f": "F\u00e9r\u00e9bory", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 477, - "n": "Ketkeophomphone", - "f": "Billy", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "12", - "On": "3", - "Oa": "4", - "Mp": "1" - }, - "c": 16 - }, - { - "i": 1069, - "n": "Reine-Ad\u00e9la\u00efde", - "f": "Jeff", - "p": "M", - "r": 11, - "s": { - "s": "100", - "n": "21", - "a": "4.76", - "d": "0.73", - "Os": "150", - "On": "31", - "Oa": "4.84", - "Od": "0.66", - "Mp": "14", - "Ap": "14", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 3 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 1179, - "n": "Fulgini", - "f": "Angelo", - "p": "M", - "r": 13, - "s": { - "g": "2", - "s": "89", - "n": "18", - "a": "4.94", - "d": "0.83", - "Sg": "1", - "Ss": "46", - "Sn": "9", - "Sa": "5.11", - "Sd": "0.7", - "Og": "3", - "Os": "125", - "On": "25", - "Oa": "5", - "Od": "0.79", - "Mp": "16", - "Ap": "4", - "p": { - "33": { - "n": 6, - "g": 1, - "s": 1 - }, - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 1189, - "n": "Ciss", - "f": "Saliou", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 1235, - "n": "Kanga", - "f": "Wilfried", - "p": "A", - "r": 6, - "s": { - "g": "2", - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.94", - "Sg": "2", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "1.75", - "Og": "2", - "Os": "76", - "On": "17", - "Oa": "4.47", - "Od": "0.83", - "Ap": "12", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4, - "s": 1 - }, - "24": { - "n": 7.5, - "g": 2 - } - } - }, - "c": 16 - }, - { - "i": 1401, - "n": "Bahoken", - "f": "St\u00e9phane", - "p": "A", - "r": 19, - "s": { - "g": "7", - "s": "103", - "n": "21", - "a": "4.93", - "d": "1.13", - "Sg": "5", - "Ss": "71", - "Sn": "15", - "Sa": "4.77", - "Sd": "1.09", - "Og": "11", - "Os": "163", - "On": "34", - "Oa": "4.81", - "Od": "1.17", - "Ap": "34", - "p": { - "1": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "20": { - "n": 5.5, - "g": 1, - "s": 1 - }, - "21": { - "n": 4 - }, - "22": { - "n": 2.5 - }, - "23": { - "n": 6.5, - "g": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 1412, - "n": "Manzala", - "f": "Harrison", - "p": "A", - "r": 6, - "s": { - "s": "36", - "n": "8", - "a": "4.5", - "d": "0.25", - "Og": "2", - "Os": "102", - "On": "21", - "Oa": "4.86", - "Od": "0.85", - "Mp": "5", - "Ap": "8", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2136, - "n": "Butelle", - "f": "Ludovic", - "p": "G", - "r": 22, - "s": { - "s": "131", - "n": "23", - "a": "5.7", - "d": "1.13", - "Ss": "31", - "Sn": "5", - "Sa": "6.3", - "Sd": "1.03", - "Oao": "1", - "Os": "204", - "On": "37", - "Oa": "5.51", - "Od": "1.11", - "Gp": "37", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 8 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 7.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6.5 - } - } - }, - "c": 16 - }, - { - "i": 2628, - "n": "Bertrand", - "f": "Dorian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2646, - "n": "Ait Nouri", - "f": "Rayan", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "3": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2793, - "n": "Cisse", - "f": "Ibrahim", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2822, - "n": "N'Doye", - "f": "Cheikh", - "p": "M", - "r": 13, - "s": { - "s": "103", - "n": "21", - "a": "4.9", - "d": "0.73", - "Ss": "26", - "Sn": "5", - "Sa": "5.3", - "Sd": "0.75", - "Os": "103", - "On": "21", - "Oa": "4.9", - "Od": "0.73", - "Mp": "21", - "p": { - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 2831, - "n": "El Melali", - "f": "Farid", - "p": "M", - "r": 9, - "s": { - "s": "32", - "n": "7", - "a": "4.64", - "d": "0.52", - "Ss": "23", - "Sn": "5", - "Sa": "4.7", - "Sd": "0.51", - "Os": "32", - "On": "7", - "Oa": "4.64", - "Od": "0.52", - "Mp": "7", - "p": { - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 5.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2866, - "n": "Cristian", - "f": "", - "p": "A", - "r": 9, - "s": { - "g": "1", - "s": "58", - "n": "13", - "a": "4.46", - "d": "0.6", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "1", - "Os": "58", - "On": "13", - "Oa": "4.46", - "Od": "0.6", - "Ap": "13", - "p": { - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 4, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2869, - "n": "Boucher", - "f": "Zacharie", - "p": "G", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "19": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 2890, - "n": "Mancini", - "f": "Anthony", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2944, - "n": "Mouanga", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 3189, - "n": "Elhadji Diaw", - "f": "", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 15, - "n": "Fekir", - "f": "Nabil", - "p": "A", - "r": 28, - "s": { - "g": "7", - "s": "99", - "n": "18", - "a": "5.53", - "d": "1.37", - "Sg": "5", - "Ss": "62", - "Sn": "11", - "Sa": "5.64", - "Sd": "1.46", - "Og": "9", - "Os": "151", - "On": "27", - "Oa": "5.61", - "Od": "1.36", - "Mp": "16", - "Ap": "9", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 7.5, - "g": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "12": { - "n": 6 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 7.5, - "g": 1 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 7, - "g": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 72, - "n": "Depay", - "f": "Memphis", - "p": "A", - "r": 19, - "s": { - "g": "5", - "s": "131", - "n": "24", - "a": "5.46", - "d": "1.21", - "Sg": "5", - "Ss": "131", - "Sn": "24", - "Sa": "5.46", - "Sd": "1.21", - "Og": "15", - "Os": "221", - "On": "38", - "Oa": "5.82", - "Od": "1.51", - "Mp": "9", - "Ap": "26", - "p": { - "1": { - "n": 7.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4, - "s": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 7, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 8.5, - "g": 2 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 130, - "n": "Cornet", - "f": "Maxwel", - "p": "A", - "r": 10, - "s": { - "g": "1", - "s": "69", - "n": "15", - "a": "4.63", - "d": "0.53", - "Ss": "24", - "Sn": "5", - "Sa": "4.9", - "Sd": "0.2", - "Og": "3", - "Os": "114", - "On": "25", - "Oa": "4.58", - "Od": "0.77", - "Mp": "3", - "Ap": "15", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "13": { - "n": 6, - "g": 1, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 146, - "n": "Yanga-Mbiwa", - "f": "Mapou", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 204, - "n": "Mar\u00e7al", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "43", - "n": "8", - "a": "5.44", - "d": "0.46", - "Os": "54", - "On": "10", - "Oa": "5.45", - "Od": "0.47", - "Dp": "9", - "p": { - "8": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 244, - "n": "Dubois", - "f": "L\u00e9o", - "p": "D", - "r": 11, - "s": { - "s": "58", - "n": "11", - "a": "5.27", - "d": "0.89", - "Ss": "28", - "Sn": "5", - "Sa": "5.7", - "Sd": "0.93", - "Og": "2", - "Os": "132", - "On": "24", - "Oa": "5.5", - "Od": "1.09", - "Mp": "2", - "Dp": "22", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 7, - "s": 1 - }, - "22": { - "n": 5 - }, - "23": { - "n": 6.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 248, - "n": "Morel", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 7, - "s": { - "s": "43", - "n": "9", - "a": "4.83", - "d": "1.18", - "Os": "117", - "On": "23", - "Oa": "5.11", - "Od": "1.03", - "Dp": "23", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5 - }, - "9": { - "n": 3 - }, - "13": { - "n": 3.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 255, - "n": "Gorgelin", - "f": "Mathieu", - "p": "G", - "r": 6, - "s": { - "s": "11", - "n": "2", - "a": "5.5", - "d": "0.5", - "Os": "31", - "On": "6", - "Oa": "5.17", - "Od": "1.07", - "Gp": "6", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 256, - "n": "Rafael", - "f": "", - "p": "D", - "r": 9, - "s": { - "s": "56", - "n": "11", - "a": "5.14", - "d": "0.53", - "Os": "119", - "On": "23", - "Oa": "5.2", - "Od": "0.87", - "Mp": "1", - "Dp": "22", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "7": { - "n": 6.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 409, - "n": "Terrier", - "f": "Martin", - "p": "M", - "r": 9, - "s": { - "g": "2", - "s": "92", - "n": "18", - "a": "5.14", - "d": "0.64", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "2", - "Os": "123", - "On": "25", - "Oa": "4.94", - "Od": "0.68", - "Mp": "17", - "Ap": "6", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5.5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 423, - "n": "Tousart", - "f": "Lucas", - "p": "M", - "r": 12, - "s": { - "s": "95", - "n": "18", - "a": "5.28", - "d": "0.79", - "Os": "174", - "On": "32", - "Oa": "5.44", - "Od": "0.85", - "Mp": "32", - "p": { - "1": { - "n": 7 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 5.5 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 537, - "n": "Aouar", - "f": "Houssem", - "p": "M", - "r": 25, - "s": { - "g": "6", - "s": "129", - "n": "24", - "a": "5.4", - "d": "1.1", - "Sg": "6", - "Ss": "129", - "Sn": "24", - "Sa": "5.4", - "Sd": "1.1", - "Og": "8", - "Os": "208", - "On": "37", - "Oa": "5.64", - "Od": "1.04", - "Mp": "33", - "Ap": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6, - "g": 1 - }, - "7": { - "n": 7 - }, - "8": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 1052, - "n": "Denayer", - "f": "Jason", - "p": "D", - "r": 23, - "s": { - "g": "2", - "s": "110", - "n": "20", - "a": "5.53", - "d": "0.87", - "Sg": "2", - "Ss": "89", - "Sn": "16", - "Sa": "5.56", - "Sd": "0.95", - "Og": "2", - "Os": "110", - "On": "20", - "Oa": "5.53", - "Od": "0.87", - "Dp": "20", - "p": { - "4": { - "n": 5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 7, - "g": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 7 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 1161, - "n": "Traor\u00e9", - "f": "Bertrand", - "p": "A", - "r": 19, - "s": { - "g": "6", - "s": "113", - "n": "22", - "a": "5.16", - "d": "1.22", - "Ss": "10", - "Sn": "2", - "Sa": "5", - "Sd": "0.5", - "Og": "15", - "Os": "200", - "On": "36", - "Oa": "5.57", - "Od": "1.44", - "Mp": "14", - "Ap": "22", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "2": { - "n": 4 - }, - "3": { - "n": 7.5, - "g": 1 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 8, - "g": 2 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 6.5, - "g": 1 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 4 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 1176, - "n": "Tete", - "f": "Kenny", - "p": "D", - "r": 7, - "s": { - "s": "41", - "n": "8", - "a": "5.19", - "d": "1.2", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "65", - "On": "13", - "Oa": "5.04", - "Od": "0.99", - "Mp": "6", - "Dp": "4", - "p": { - "13": { - "n": 5.5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 8 - }, - "19": { - "n": 5.5 - }, - "21": { - "n": 4 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 1190, - "n": "Mendy", - "f": "Ferland", - "p": "D", - "r": 19, - "s": { - "g": "2", - "s": "109", - "n": "21", - "a": "5.21", - "d": "0.99", - "Sg": "1", - "Ss": "67", - "Sn": "13", - "Sa": "5.19", - "Sd": "1.01", - "Og": "2", - "Os": "184", - "On": "35", - "Oa": "5.27", - "Od": "1.07", - "Mp": "8", - "Dp": "26", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5, - "g": 1 - }, - "6": { - "n": 5 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 3 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 1210, - "n": "Gouiri", - "f": "Amine", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Os": "12", - "On": "3", - "Oa": "4" - }, - "c": 18 - }, - { - "i": 1414, - "n": "NDombele", - "f": "Tanguy", - "p": "M", - "r": 17, - "s": { - "s": "109", - "n": "22", - "a": "4.95", - "d": "0.81", - "Ss": "24", - "Sn": "5", - "Sa": "4.9", - "Sd": "0.86", - "Os": "191", - "On": "36", - "Oa": "5.31", - "Od": "1.02", - "Mp": "36", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 3.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 18 - }, - { - "i": 1524, - "n": "Anthony Lopes", - "f": "", - "p": "G", - "r": 28, - "s": { - "s": "124", - "n": "22", - "a": "5.64", - "d": "0.99", - "Ss": "124", - "Sn": "22", - "Sa": "5.64", - "Sd": "0.99", - "Os": "180", - "On": "32", - "Oa": "5.63", - "Od": "1.03", - "Gp": "32", - "p": { - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 7 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 7 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 8 - }, - "22": { - "n": 6 - }, - "23": { - "n": 7 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 1527, - "n": "Pape Cheikh", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "52", - "n": "11", - "a": "4.73", - "d": "0.45", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.43", - "Mp": "11", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "16": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 1545, - "n": "Martins Pereira", - "f": "Christopher", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2032, - "n": "Marcelo", - "f": "", - "p": "D", - "r": 20, - "s": { - "s": "118", - "n": "21", - "a": "5.62", - "d": "0.84", - "Ss": "41", - "Sn": "7", - "Sa": "5.86", - "Sd": "0.58", - "Og": "2", - "Os": "188", - "On": "33", - "Oa": "5.7", - "Od": "1.03", - "Dp": "33", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5.5 - }, - "10": { - "n": 8 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 2277, - "n": "Solet", - "f": "Oumar", - "p": "D", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "17": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 2624, - "n": "Fekir", - "f": "Yassin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2665, - "n": "Racioppi", - "f": "Anthony", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2681, - "n": "Griffiths", - "f": "Reo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2685, - "n": "Caqueret", - "f": "Maxence", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2718, - "n": "Kemen", - "f": "Olivier", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2861, - "n": "Dembele", - "f": "Moussa", - "p": "A", - "r": 23, - "s": { - "g": "7", - "s": "102", - "n": "19", - "a": "5.39", - "d": "1.06", - "Sg": "5", - "Ss": "80", - "Sn": "15", - "Sa": "5.37", - "Sd": "1.02", - "Og": "7", - "Os": "102", - "On": "19", - "Oa": "5.39", - "Od": "1.06", - "Ap": "19", - "p": { - "5": { - "n": 5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 7.5, - "g": 2 - }, - "8": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6, - "s": 1 - }, - "21": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 7, - "g": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 2868, - "n": "Pintor", - "f": "Lenny", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "10": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 2952, - "n": "Ndiaye", - "f": "Ousseynou", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 11, - "n": "Cyprien", - "f": "Wylan", - "p": "M", - "r": 16, - "s": { - "g": "3", - "s": "117", - "n": "22", - "a": "5.34", - "d": "1.19", - "Sg": "3", - "Ss": "84", - "Sn": "15", - "Sa": "5.6", - "Sd": "1.24", - "Og": "4", - "Os": "188", - "On": "35", - "Oa": "5.39", - "Od": "1.1", - "Mp": "30", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 3.5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 7, - "g": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6.5, - "g": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 7 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 3.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 30, - "n": "Saint-Maximin", - "f": "Allan", - "p": "M", - "r": 25, - "s": { - "g": "6", - "s": "114", - "n": "22", - "a": "5.18", - "d": "1.15", - "Sg": "2", - "Ss": "27", - "Sn": "5", - "Sa": "5.4", - "Sd": "1.24", - "Og": "8", - "Os": "182", - "On": "35", - "Oa": "5.2", - "Od": "1.12", - "Mp": "1", - "Ap": "33", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4 - }, - "14": { - "n": 7.5, - "g": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5, - "g": 1 - }, - "18": { - "n": 5.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 3.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 70, - "n": "Dante", - "f": "", - "p": "D", - "r": 19, - "s": { - "s": "126", - "n": "24", - "a": "5.25", - "d": "0.98", - "Ss": "126", - "Sn": "24", - "Sa": "5.25", - "Sd": "0.98", - "Og": "1", - "Os": "197", - "On": "37", - "Oa": "5.32", - "Od": "1.12", - "Dp": "37", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 2.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 71, - "n": "Lees-Melou", - "f": "Pierre", - "p": "M", - "r": 13, - "s": { - "g": "1", - "s": "83", - "n": "16", - "a": "5.19", - "d": "1.06", - "Og": "3", - "Os": "145", - "On": "27", - "Oa": "5.37", - "Od": "1.18", - "Mp": "25", - "Ap": "2", - "p": { - "33": { - "n": 4 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 4 - }, - "9": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 6.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 3.5 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 96, - "n": "Walter", - "f": "Remi", - "p": "M", - "r": 11, - "s": { - "g": "2", - "s": "64", - "n": "12", - "a": "5.38", - "d": "0.71", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "2", - "Os": "111", - "On": "22", - "Oa": "5.07", - "Od": "0.87", - "Mp": "22", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6, - "g": 1, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 19 - }, - { - "i": 129, - "n": "Cardinale", - "f": "Yoan", - "p": "G", - "r": 7, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "1.03", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "1.03", - "Gp": "3", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - } - } - }, - "c": 19 - }, - { - "i": 217, - "n": "Sarr", - "f": "Malang", - "p": "D", - "r": 12, - "s": { - "ao": "1", - "s": "111", - "n": "22", - "a": "5.07", - "d": "0.88", - "Sao": "1", - "Ss": "106", - "Sn": "21", - "Sa": "5.07", - "Sd": "0.9", - "Oao": "1", - "Os": "154", - "On": "31", - "Oa": "4.98", - "Od": "0.87", - "Dp": "26", - "p": { - "33": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4.5, - "a": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6 - }, - "23": { - "n": 3 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 239, - "n": "Ben\u00edtez", - "f": "Walter", - "p": "G", - "r": 24, - "s": { - "s": "129", - "n": "21", - "a": "6.14", - "d": "1.38", - "Ss": "129", - "Sn": "21", - "Sa": "6.14", - "Sd": "1.38", - "Os": "205", - "On": "35", - "Oa": "5.86", - "Od": "1.22", - "Gp": "35", - "p": { - "33": { - "n": 5 - }, - "4": { - "n": 9 - }, - "5": { - "n": 6.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 8 - }, - "12": { - "n": 7.5 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 8 - }, - "23": { - "n": 4 - }, - "24": { - "n": 7.5 - } - } - }, - "c": 19 - }, - { - "i": 270, - "n": "Souquet", - "f": "Arnaud", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "58", - "On": "11", - "Oa": "5.27", - "Od": "0.75", - "Dp": "9", - "p": { - "33": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 367, - "n": "Jallet", - "f": "Christophe", - "p": "D", - "r": 7, - "s": { - "g": "1", - "s": "58", - "n": "11", - "a": "5.27", - "d": "0.65", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "58", - "On": "11", - "Oa": "5.27", - "Od": "0.65", - "Mp": "4", - "Dp": "7", - "p": { - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "7": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6.5 - }, - "17": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 447, - "n": "Burner", - "f": "Patrick", - "p": "D", - "r": 6, - "s": { - "s": "32", - "n": "7", - "a": "4.64", - "d": "0.99", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "1.25", - "Os": "56", - "On": "12", - "Oa": "4.71", - "Od": "0.8", - "Mp": "4", - "Dp": "7", - "p": { - "2": { - "n": 5 - }, - "11": { - "n": 5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "21": { - "n": 4.5 - }, - "23": { - "n": 3 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 449, - "n": "Makengo", - "f": "Jean-Victor", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "67", - "n": "14", - "a": "4.79", - "d": "0.45", - "Og": "1", - "Os": "72", - "On": "15", - "Oa": "4.8", - "Od": "0.44", - "Mp": "11", - "Ap": "4", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 6, - "g": 1 - }, - "8": { - "n": 5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "23": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 452, - "n": "Srarfi", - "f": "Bassem", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "59", - "n": "12", - "a": "4.92", - "d": "0.79", - "Og": "1", - "Os": "109", - "On": "22", - "Oa": "4.95", - "Od": "0.66", - "Mp": "9", - "Ap": "5", - "p": { - "33": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "3": { - "n": 3 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 6.5, - "g": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 466, - "n": "Boscagli", - "f": "Olivier", - "p": "D", - "r": 6, - "s": { - "s": "49", - "n": "10", - "a": "4.95", - "d": "0.99", - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.99", - "Mp": "3", - "Dp": "7", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 3 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 4.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 474, - "n": "Marcel", - "f": "Vincent", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 495, - "n": "Lloris", - "f": "Gautier", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 540, - "n": "Mahou", - "f": "Hicham", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 552, - "n": "Perraud", - "f": "Romain", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 561, - "n": "Le Bihan", - "f": "Mickael", - "p": "A", - "r": 4, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "32", - "On": "8", - "Oa": "4", - "Ap": "1", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 1070, - "n": "Hassen", - "f": "Mouez", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 1204, - "n": "Tameze", - "f": "Adrien", - "p": "M", - "r": 16, - "s": { - "s": "127", - "n": "24", - "a": "5.31", - "d": "1.07", - "Ss": "127", - "Sn": "24", - "Sa": "5.31", - "Sd": "1.07", - "Os": "182", - "On": "34", - "Oa": "5.37", - "Od": "0.97", - "Mp": "32", - "Dp": "1", - "p": { - "33": { - "n": 6 - }, - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 7.5 - }, - "23": { - "n": 3 - }, - "24": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 1229, - "n": "Maolida", - "f": "Myziane", - "p": "A", - "r": 8, - "s": { - "s": "64", - "n": "14", - "a": "4.57", - "d": "0.68", - "Ss": "13", - "Sn": "3", - "Sa": "4.5", - "Sd": "0.41", - "Os": "78", - "On": "17", - "Oa": "4.59", - "Od": "0.65", - "Ap": "15", - "p": { - "2": { - "n": 4.5 - }, - "3": { - "n": 3 - }, - "4": { - "n": 4, - "s": 1 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 4, - "s": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 1272, - "n": "Ganago", - "f": "Ignatius", - "p": "A", - "r": 11, - "s": { - "g": "1", - "s": "62", - "n": "13", - "a": "4.77", - "d": "0.67", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.89", - "Og": "1", - "Os": "62", - "On": "13", - "Oa": "4.77", - "Od": "0.67", - "Ap": "13", - "p": { - "2": { - "n": 6, - "g": 1, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 6 - }, - "23": { - "n": 3.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 1426, - "n": "Herelle", - "f": "Christophe", - "p": "D", - "r": 11, - "s": { - "s": "108", - "n": "21", - "a": "5.14", - "d": "0.98", - "Ss": "24", - "Sn": "5", - "Sa": "4.9", - "Sd": "1.07", - "Os": "172", - "On": "35", - "Oa": "4.91", - "Od": "0.96", - "Dp": "35", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 7 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "18": { - "n": 4 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 3 - }, - "24": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 1439, - "n": "Sacko", - "f": "Ihsan", - "p": "M", - "r": 5, - "s": { - "s": "31", - "n": "7", - "a": "4.43", - "d": "0.86", - "Os": "66", - "On": "14", - "Oa": "4.71", - "Od": "0.94", - "Mp": "5", - "Ap": "5", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4, - "s": 1 - }, - "17": { - "n": 2.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 1540, - "n": "Coly", - "f": "Racine", - "p": "D", - "r": 5, - "s": { - "s": "34", - "n": "7", - "a": "4.86", - "d": "0.23", - "Os": "53", - "On": "11", - "Oa": "4.82", - "Od": "0.53", - "Mp": "5", - "Dp": "6", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2081, - "n": "Clementia", - "f": "Yannis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2144, - "n": "Diaby", - "f": "Mohamed Lamine", - "p": "A", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 2276, - "n": "Pelmard", - "f": "Andy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2659, - "n": "Atal", - "f": "Youcef", - "p": "D", - "r": 12, - "s": { - "g": "2", - "s": "100", - "n": "19", - "a": "5.29", - "d": "1.08", - "Og": "2", - "Os": "100", - "On": "19", - "Oa": "5.29", - "Od": "1.08", - "Mp": "11", - "Dp": "7", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 7.5, - "g": 1 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 7.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 6 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "23": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 2740, - "n": "Danilo", - "f": "", - "p": "M", - "r": 10, - "s": { - "s": "50", - "n": "11", - "a": "4.55", - "d": "1.12", - "Os": "50", - "On": "11", - "Oa": "4.55", - "Od": "1.12", - "Mp": "9", - "Ap": "2", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 3.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 2.5 - }, - "17": { - "n": 5, - "s": 1 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 3 - } - } - }, - "c": 19 - }, - { - "i": 2945, - "n": "Hamache", - "f": "Yanis", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2946, - "n": "Sylvestre", - "f": "Eddy", - "p": "M", - "r": 7, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.22", - "Mp": "2", - "Ap": "2", - "p": { - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 2988, - "n": "Drame", - "f": "Jawad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 101, - "n": "Andr\u00e9", - "f": "Benjamin", - "p": "M", - "r": 17, - "s": { - "g": "2", - "s": "122", - "n": "23", - "a": "5.33", - "d": "1.1", - "Og": "2", - "Os": "184", - "On": "35", - "Oa": "5.27", - "Od": "0.98", - "Mp": "35", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 8, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 7 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 7.5, - "g": 1 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 106, - "n": "Baal", - "f": "Ludovic", - "p": "D", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Dp": "2", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 20 - }, - { - "i": 117, - "n": "Danz\u00e9", - "f": "Romain", - "p": "D", - "r": 2, - "s": { - "n": 0, - "Os": "46", - "On": "9", - "Oa": "5.11", - "Od": "0.57", - "Dp": "8" - }, - "c": 20 - }, - { - "i": 156, - "n": "Ben Arfa", - "f": "Hatem", - "p": "M", - "r": 20, - "s": { - "g": "5", - "s": "91", - "n": "17", - "a": "5.35", - "d": "1.29", - "Sg": "3", - "Ss": "50", - "Sn": "9", - "Sa": "5.56", - "Sd": "1.28", - "Og": "5", - "Os": "91", - "On": "17", - "Oa": "5.35", - "Od": "1.29", - "Mp": "9", - "Ap": "8", - "p": { - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 8, - "g": 1 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 3.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6, - "g": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 3.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 20 - }, - { - "i": 168, - "n": "Mexer", - "f": "", - "p": "D", - "r": 14, - "s": { - "s": "100", - "n": "19", - "a": "5.26", - "d": "1.09", - "Ss": "12", - "Sn": "2", - "Sa": "6", - "Os": "126", - "On": "24", - "Oa": "5.25", - "Od": "0.99", - "Dp": "20", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "12": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 3 - }, - "16": { - "n": 7.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 7 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6 - } - } - }, - "c": 20 - }, - { - "i": 188, - "n": "Da Silva", - "f": "Damien", - "p": "D", - "r": 22, - "s": { - "g": "2", - "s": "117", - "n": "22", - "a": "5.32", - "d": "1.37", - "Sg": "2", - "Ss": "107", - "Sn": "20", - "Sa": "5.35", - "Sd": "1.43", - "Og": "3", - "Oao": "2", - "Os": "167", - "On": "33", - "Oa": "5.06", - "Od": "1.31", - "Dp": "33", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 2 - }, - "16": { - "n": 7 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 8, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - }, - "23": { - "n": 6.5 - }, - "24": { - "n": 7 - } - } - }, - "c": 20 - }, - { - "i": 230, - "n": "Sarr", - "f": "Ismaila", - "p": "A", - "r": 26, - "s": { - "g": "5", - "s": "129", - "n": "24", - "a": "5.38", - "d": "0.98", - "Sg": "5", - "Ss": "129", - "Sn": "24", - "Sa": "5.38", - "Sd": "0.98", - "Og": "8", - "Os": "190", - "On": "36", - "Oa": "5.28", - "Od": "1.06", - "Mp": "22", - "Ap": "12", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6, - "g": 1 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6.5, - "g": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4.5, - "g": 1 - }, - "16": { - "n": 7 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 272, - "n": "Bensebaini", - "f": "Ramy", - "p": "D", - "r": 13, - "s": { - "g": "1", - "ao": "1", - "s": "85", - "n": "17", - "a": "5", - "d": "1", - "Og": "1", - "Oao": "1", - "Os": "156", - "On": "30", - "Oa": "5.2", - "Od": "0.89", - "Dp": "29", - "p": { - "2": { - "n": 5 - }, - "3": { - "n": 4, - "a": 1 - }, - "4": { - "n": 7, - "g": 1 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 3.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 6.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 324, - "n": "Badiashile", - "f": "Loic", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 333, - "n": "Hunou", - "f": "Adrien", - "p": "M", - "r": 8, - "s": { - "g": "2", - "s": "35", - "n": "7", - "a": "5.07", - "d": "1.5", - "Sg": "1", - "Ss": "17", - "Sn": "3", - "Sa": "5.67", - "Sd": "1.31", - "Og": "5", - "Os": "88", - "On": "17", - "Oa": "5.21", - "Od": "1.24", - "Mp": "5", - "Ap": "7", - "p": { - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 3 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 20 - }, - { - "i": 381, - "n": "Chant\u00f4me", - "f": "Cl\u00e9ment", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 420, - "n": "Gertmonas", - "f": "Edvinas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 438, - "n": "Zeffane", - "f": "Mehdi", - "p": "D", - "r": 13, - "s": { - "g": "1", - "s": "64", - "n": "13", - "a": "4.92", - "d": "0.96", - "Sg": "1", - "Ss": "15", - "Sn": "3", - "Sa": "5.17", - "Sd": "1.65", - "Og": "1", - "Os": "100", - "On": "20", - "Oa": "5", - "Od": "0.87", - "Mp": "4", - "Dp": "12", - "Ap": "2", - "p": { - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 3 - }, - "23": { - "n": 7, - "g": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 491, - "n": "Janvier", - "f": "Nicolas", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "12": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 528, - "n": "Lea Siliki", - "f": "James", - "p": "M", - "r": 10, - "s": { - "s": "80", - "n": "16", - "a": "5", - "d": "0.66", - "Og": "2", - "Os": "143", - "On": "28", - "Oa": "5.11", - "Od": "0.7", - "Mp": "23", - "Dp": "1", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5.5, - "s": 1 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "8": { - "n": 6 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 532, - "n": "Diallo", - "f": "Namakoro", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 874, - "n": "Sakho", - "f": "Diafra", - "p": "A", - "r": 8, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Og": "2", - "Os": "60", - "On": "14", - "Oa": "4.29", - "Od": "0.82", - "Ap": "8", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 922, - "n": "Niang", - "f": "M'Baye", - "p": "A", - "r": 13, - "s": { - "g": "4", - "s": "82", - "n": "16", - "a": "5.13", - "d": "0.89", - "Sg": "2", - "Ss": "27", - "Sn": "5", - "Sa": "5.4", - "Sd": "1.2", - "Og": "4", - "Os": "82", - "On": "16", - "Oa": "5.13", - "Od": "0.89", - "Mp": "3", - "Ap": "13", - "p": { - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6, - "g": 1, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6, - "g": 1 - }, - "23": { - "n": 6 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 20 - }, - { - "i": 1182, - "n": "Hamari Traor\u00e9", - "f": "", - "p": "D", - "r": 16, - "s": { - "s": "110", - "n": "22", - "a": "5", - "d": "0.94", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "143", - "On": "28", - "Oa": "5.11", - "Od": "0.89", - "Mp": "1", - "Dp": "27", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 4 - }, - "24": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 1187, - "n": "Bourigeaud", - "f": "Benjamin", - "p": "M", - "r": 20, - "s": { - "g": "4", - "s": "112", - "n": "22", - "a": "5.11", - "d": "1.16", - "Sg": "1", - "Ss": "34", - "Sn": "6", - "Sa": "5.75", - "Sd": "1.25", - "Og": "9", - "Os": "191", - "On": "36", - "Oa": "5.32", - "Od": "1.14", - "Mp": "28", - "Ap": "6", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 6, - "g": 1 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6, - "g": 1, - "s": 1 - }, - "19": { - "n": 8, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 1194, - "n": "Grenier", - "f": "Cl\u00e9ment", - "p": "M", - "r": 17, - "s": { - "g": "2", - "s": "120", - "n": "23", - "a": "5.24", - "d": "1.12", - "Ss": "33", - "Sn": "6", - "Sa": "5.5", - "Sd": "1.15", - "Og": "7", - "Os": "193", - "On": "37", - "Oa": "5.23", - "Od": "1.29", - "Mp": "37", - "p": { - "1": { - "n": 4.5, - "g": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 7 - }, - "5": { - "n": 4 - }, - "6": { - "n": 6 - }, - "7": { - "n": 6, - "g": 1, - "s": 1 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 3 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 1213, - "n": "Diallo", - "f": "Abdoulaye", - "p": "G", - "r": 6, - "s": { - "s": "35", - "n": "6", - "a": "5.83", - "d": "1.11", - "Os": "35", - "On": "6", - "Oa": "5.83", - "Od": "1.11", - "Gp": "6", - "p": { - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "16": { - "n": 8 - }, - "17": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 1239, - "n": "Del Castillo", - "f": "Romain", - "p": "M", - "r": 7, - "s": { - "s": "86", - "n": "18", - "a": "4.81", - "d": "0.9", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "86", - "On": "18", - "Oa": "4.81", - "Od": "0.9", - "Mp": "17", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 3.5 - }, - "12": { - "n": 7.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 3 - }, - "16": { - "n": 5, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5, - "s": 1 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 1252, - "n": "Toufiqui", - "f": "Sabri", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1268, - "n": "Salles-Lamonge", - "f": "Sebastien", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1526, - "n": "Koubek", - "f": "Tomas", - "p": "G", - "r": 15, - "s": { - "s": "96", - "n": "19", - "a": "5.08", - "d": "1.02", - "Ss": "39", - "Sn": "7", - "Sa": "5.64", - "Sd": "1.25", - "Os": "174", - "On": "33", - "Oa": "5.29", - "Od": "1", - "Gp": "33", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 3.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 7 - } - } - }, - "c": 20 - }, - { - "i": 2035, - "n": "Nyamsi", - "f": "Gerzino", - "p": "D", - "r": 6, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Dp": "2", - "p": { - "21": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2084, - "n": "Gelin", - "f": "Jeremy", - "p": "D", - "r": 7, - "s": { - "s": "56", - "n": "12", - "a": "4.71", - "d": "0.85", - "Ss": "14", - "Sn": "3", - "Sa": "4.67", - "Sd": "0.47", - "Os": "130", - "On": "26", - "Oa": "5.02", - "Od": "0.87", - "Mp": "3", - "Dp": "23", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6 - }, - "5": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4 - }, - "17": { - "n": 5.5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2618, - "n": "Johansson", - "f": "Jakob", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "50", - "n": "10", - "a": "5.05", - "d": "0.72", - "Og": "1", - "Os": "50", - "On": "10", - "Oa": "5.05", - "Od": "0.72", - "Mp": "10", - "p": { - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5.5, - "s": 1 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "15": { - "n": 4 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2677, - "n": "Guitane", - "f": "Rafik", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2690, - "n": "Poha", - "f": "Denis", - "p": "M", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2697, - "n": "Jordan Siebatcheu", - "f": "", - "p": "A", - "r": 10, - "s": { - "g": "3", - "s": "73", - "n": "15", - "a": "4.87", - "d": "0.97", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "3", - "Os": "73", - "On": "15", - "Oa": "4.87", - "Od": "0.97", - "Ap": "15", - "p": { - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 6, - "g": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 8, - "g": 2 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 2787, - "n": "Gboho", - "f": "Yann", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2819, - "n": "Rutter", - "f": "Georginio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3125, - "n": "Doumbia", - "f": "Souleyman", - "p": "D", - "r": 9, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "23": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 3186, - "n": "Camavinga", - "f": "Eduardo", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3229, - "n": "Matondo", - "f": "Isaac", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3358, - "n": "Lauriente", - "f": "Armand", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 297, - "n": "Prcic", - "f": "Sanjin", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "56", - "n": "11", - "a": "5.14", - "d": "1.09", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "2", - "Os": "130", - "On": "24", - "Oa": "5.44", - "Od": "0.95", - "Mp": "24", - "p": { - "24": { - "n": 7, - "g": 1 - }, - "1": { - "n": 5.5, - "e": 1973, - "c": 63, - "s": 1 - }, - "2": { - "n": 6, - "e": 1990, - "c": 63, - "s": 1 - }, - "3": { - "n": 5, - "e": 1998, - "c": 63 - }, - "5": { - "n": 2.5, - "e": 2016, - "c": 63 - }, - "7": { - "n": 5, - "e": 2037, - "c": 63 - }, - "8": { - "n": 4, - "e": 2046, - "c": 63 - }, - "11": { - "n": 5, - "e": 2081, - "c": 63, - "s": 1 - }, - "12": { - "n": 5.5, - "e": 2087, - "c": 63 - }, - "13": { - "n": 5.5, - "e": 2096, - "c": 63 - }, - "16": { - "n": 5.5, - "e": 2128, - "c": 63, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 357, - "n": "Thomasson", - "f": "Adrien", - "p": "M", - "r": 20, - "s": { - "g": "5", - "s": "112", - "n": "21", - "a": "5.36", - "d": "1.03", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Og": "7", - "Os": "173", - "On": "33", - "Oa": "5.26", - "Od": "1.04", - "Mp": "23", - "Ap": "8", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 7, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 4 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5.5, - "g": 1 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 7, - "g": 1 - }, - "22": { - "n": 5 - }, - "24": { - "n": 3.5 - } - } - }, - "c": 41 - }, - { - "i": 442, - "n": "Corgnet", - "f": "Benjamin", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "75", - "n": "15", - "a": "5.03", - "d": "0.46", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "130", - "On": "26", - "Oa": "5.02", - "Od": "0.71", - "Mp": "18", - "Ap": "5", - "p": { - "28": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 6, - "g": 1, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5.5, - "s": 1 - }, - "19": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 460, - "n": "Martinez", - "f": "Pablo", - "p": "D", - "r": 22, - "s": { - "g": "2", - "s": "121", - "n": "22", - "a": "5.52", - "d": "0.92", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "2", - "Os": "180", - "On": "35", - "Oa": "5.16", - "Od": "1.07", - "Dp": "35", - "p": { - "28": { - "n": 4 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 7.5, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 7.5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 41 - }, - { - "i": 486, - "n": "Kawashima", - "f": "Eiji", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "63", - "On": "13", - "Oa": "4.85", - "Od": "1.35", - "Gp": "13" - }, - "c": 41 - }, - { - "i": 747, - "n": "Kon\u00e9", - "f": "Lamine", - "p": "D", - "r": 15, - "s": { - "g": "1", - "s": "91", - "n": "17", - "a": "5.35", - "d": "0.92", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "1", - "Os": "91", - "On": "17", - "Oa": "5.35", - "Od": "0.92", - "Dp": "17", - "p": { - "3": { - "n": 4.5 - }, - "4": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 7 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 7, - "g": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6 - }, - "24": { - "n": 4 - } - } - }, - "c": 41 - }, - { - "i": 1400, - "n": "Martin", - "f": "Jonas", - "p": "M", - "r": 18, - "s": { - "g": "3", - "s": "115", - "n": "20", - "a": "5.78", - "d": "0.98", - "Og": "4", - "Os": "180", - "On": "33", - "Oa": "5.47", - "Od": "1.07", - "Mp": "32", - "Ap": "1", - "p": { - "28": { - "n": 4 - }, - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 8, - "g": 1 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6 - }, - "15": { - "n": 8, - "g": 2 - }, - "16": { - "n": 6 - }, - "17": { - "n": 4 - }, - "18": { - "n": 6 - }, - "19": { - "n": 7 - }, - "20": { - "n": 5 - }, - "21": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 1405, - "n": "Saadi", - "f": "Idriss", - "p": "A", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Og": "2", - "Os": "44", - "On": "10", - "Oa": "4.4", - "Od": "0.8", - "Ap": "3", - "p": { - "28": { - "n": 4, - "s": 1 - }, - "7": { - "n": 4, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1409, - "n": "Lienard", - "f": "Dimitri", - "p": "M", - "r": 14, - "s": { - "s": "77", - "n": "15", - "a": "5.17", - "d": "0.75", - "Og": "2", - "Os": "152", - "On": "29", - "Oa": "5.26", - "Od": "0.87", - "Mp": "27", - "Dp": "2", - "p": { - "28": { - "n": 5 - }, - "1": { - "n": 7 - }, - "2": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5, - "s": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 1413, - "n": "Ndour", - "f": "Abdallah", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Os": "27", - "On": "6", - "Oa": "4.58", - "Od": "1.02", - "Mp": "1", - "Dp": "3", - "p": { - "22": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1417, - "n": "Grandsir", - "f": "Samuel", - "p": "A", - "r": 7, - "s": { - "s": "66", - "n": "14", - "a": "4.71", - "d": "0.49", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "122", - "On": "27", - "Oa": "4.52", - "Od": "0.84", - "Mp": "26", - "p": { - "1": { - "n": 5.5, - "e": 2738, - "c": 13, - "s": 1 - }, - "2": { - "n": 5, - "e": 2746, - "c": 13, - "s": 1 - }, - "3": { - "n": 4.5, - "e": 2753, - "c": 13 - }, - "4": { - "n": 4.5, - "e": 2766, - "c": 13 - }, - "5": { - "n": 4.5, - "e": 2781, - "c": 13, - "s": 1 - }, - "6": { - "n": 5.5, - "e": 2786, - "c": 13, - "s": 1 - }, - "7": { - "n": 4.5, - "e": 2797, - "c": 13 - }, - "10": { - "n": 4, - "e": 2831, - "c": 13, - "s": 1 - }, - "12": { - "n": 5, - "e": 2849, - "c": 13, - "s": 1 - }, - "13": { - "n": 4, - "e": 2857, - "c": 13 - }, - "14": { - "n": 5, - "e": 2863, - "c": 13, - "s": 1 - }, - "19": { - "n": 4, - "e": 2915, - "c": 13, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1420, - "n": "Grimm", - "f": "Jeremy", - "p": "M", - "r": 5, - "s": { - "s": "23", - "n": "5", - "a": "4.7", - "d": "0.4", - "Os": "58", - "On": "12", - "Oa": "4.88", - "Od": "0.3", - "Mp": "8", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "9": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1428, - "n": "Kamara", - "f": "Bingourou", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1" - }, - "c": 41 - }, - { - "i": 1431, - "n": "Gon\u00e7alves", - "f": "Anthony", - "p": "M", - "r": 5, - "s": { - "g": "1", - "s": "25", - "n": "5", - "a": "5.1", - "d": "0.8", - "Og": "1", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.64", - "Mp": "10", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 4 - }, - "10": { - "n": 5 - }, - "20": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1458, - "n": "Nuno da Costa", - "f": "", - "p": "A", - "r": 10, - "s": { - "g": "4", - "s": "104", - "n": "21", - "a": "4.98", - "d": "1.03", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "5", - "Os": "123", - "On": "25", - "Oa": "4.94", - "Od": "1", - "Mp": "1", - "Ap": "22", - "p": { - "1": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "8": { - "n": 7, - "g": 1 - }, - "9": { - "n": 6 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4 - }, - "12": { - "n": 3.5 - }, - "13": { - "n": 4, - "s": 1 - }, - "14": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4, - "s": 1 - }, - "21": { - "n": 6, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1461, - "n": "Caci", - "f": "Anthony", - "p": "M", - "r": 10, - "s": { - "s": "86", - "n": "17", - "a": "5.09", - "d": "0.9", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "86", - "On": "17", - "Oa": "5.09", - "Od": "0.9", - "Mp": "5", - "Dp": "12", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 4 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 6.5 - }, - "22": { - "n": 5.5 - }, - "24": { - "n": 4 - } - } - }, - "c": 41 - }, - { - "i": 1462, - "n": "Lala", - "f": "Kenny", - "p": "D", - "r": 24, - "s": { - "g": "4", - "s": "112", - "n": "21", - "a": "5.36", - "d": "1.37", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "4", - "Os": "145", - "On": "29", - "Oa": "5.02", - "Od": "1.35", - "Mp": "15", - "Dp": "13", - "p": { - "28": { - "n": 3 - }, - "1": { - "n": 6.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 3 - }, - "10": { - "n": 8 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5, - "g": 1 - }, - "17": { - "n": 3.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 7.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 7, - "g": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 1463, - "n": "Zohi", - "f": "K\u00e9vin", - "p": "M", - "r": 9, - "s": { - "g": "1", - "s": "72", - "n": "15", - "a": "4.83", - "d": "0.67", - "Og": "1", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.68", - "Mp": "13", - "Ap": "2", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 5 - }, - "11": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1871, - "n": "Carole", - "f": "Lionel", - "p": "D", - "r": 7, - "s": { - "s": "65", - "n": "13", - "a": "5", - "d": "0.44", - "Os": "65", - "On": "13", - "Oa": "5", - "Od": "0.44", - "Mp": "7", - "Dp": "6", - "p": { - "3": { - "n": 5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 5 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 5.5 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2043, - "n": "Bangou", - "f": "Duplexe Tchamba", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2077, - "n": "Aaneba", - "f": "Ismael", - "p": "D", - "r": 1, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "1", - "Dp": "1", - "p": { - "13": { - "n": 5 - }, - "14": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2289, - "n": "Zemzemi", - "f": "Moataz", - "p": "M", - "r": 3, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2309, - "n": "Mothiba", - "f": "Lebo", - "p": "A", - "r": 22, - "s": { - "g": "8", - "s": "107", - "n": "21", - "a": "5.12", - "d": "1.02", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "12", - "Os": "158", - "On": "32", - "Oa": "4.95", - "Od": "1.12", - "Ap": "32", - "p": { - "1": { - "n": 7, - "e": 2734, - "c": 12, - "g": 1 - }, - "2": { - "n": 4, - "e": 2746, - "c": 12 - }, - "3": { - "n": 4.5, - "e": 2754, - "c": 12 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6, - "g": 1, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6, - "g": 1, - "s": 1 - }, - "9": { - "n": 7.5, - "g": 2 - }, - "10": { - "n": 6, - "g": 1, - "s": 1 - }, - "11": { - "n": 4 - }, - "12": { - "n": 6, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 5 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 41 - }, - { - "i": 2609, - "n": "Sels", - "f": "Matz", - "p": "G", - "r": 21, - "s": { - "s": "131", - "n": "23", - "a": "5.7", - "d": "1.01", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "131", - "On": "23", - "Oa": "5.7", - "Od": "1.01", - "Gp": "23", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5 - }, - "3": { - "n": 6 - }, - "4": { - "n": 4 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 6 - }, - "11": { - "n": 6 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 8 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 8 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 41 - }, - { - "i": 2679, - "n": "Sissoko", - "f": "Ibrahima", - "p": "M", - "r": 18, - "s": { - "g": "3", - "s": "121", - "n": "22", - "a": "5.5", - "d": "0.98", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "3", - "Os": "121", - "On": "22", - "Oa": "5.5", - "Od": "0.98", - "Mp": "22", - "p": { - "1": { - "n": 6, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 6.5 - }, - "8": { - "n": 6.5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5, - "s": 1 - }, - "17": { - "n": 4 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 8, - "g": 1 - }, - "22": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2717, - "n": "Ajorque", - "f": "Ludovic", - "p": "A", - "r": 17, - "s": { - "g": "4", - "s": "62", - "n": "12", - "a": "5.17", - "d": "1.11", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "4", - "Os": "62", - "On": "12", - "Oa": "5.17", - "Od": "1.11", - "Ap": "12", - "p": { - "1": { - "n": 4.5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 6, - "g": 1 - }, - "5": { - "n": 4 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6.5, - "g": 1 - }, - "21": { - "n": 8, - "g": 2 - }, - "22": { - "n": 5 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 41 - }, - { - "i": 2726, - "n": "Mitrovic", - "f": "Stefan", - "p": "D", - "r": 13, - "s": { - "ao": "1", - "s": "100", - "n": "20", - "a": "5", - "d": "0.77", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Oao": "1", - "Os": "100", - "On": "20", - "Oa": "5", - "Od": "0.77", - "Dp": "20", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 3.5, - "a": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 41 - }, - { - "i": 2768, - "n": "Fofana", - "f": "Youssouf", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "45", - "n": "8", - "a": "5.63", - "d": "1.02", - "Og": "1", - "Os": "45", - "On": "8", - "Oa": "5.63", - "Od": "1.02", - "Mp": "8", - "p": { - "3": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 5, - "s": 1 - }, - "16": { - "n": 5 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 8, - "g": 1 - }, - "22": { - "n": 6.5 - } - } - }, - "c": 41 - }, - { - "i": 2769, - "n": "Simakan", - "f": "Mohamed", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2820, - "n": "Pelletier", - "f": "Louis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3187, - "n": "Valentin", - "f": "Leon", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3188, - "n": "Karamoko", - "f": "Mamoudoou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 170, - "n": "Bodmer", - "f": "Mathieu", - "p": "D", - "r": 12, - "s": { - "g": "1", - "s": "101", - "n": "22", - "a": "4.59", - "d": "0.6", - "Og": "1", - "Os": "126", - "On": "27", - "Oa": "4.67", - "Od": "0.56", - "Mp": "7", - "Dp": "12", - "Ap": "3", - "p": { - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 4 - }, - "8": { - "n": 4, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4, - "s": 1 - }, - "11": { - "n": 6, - "g": 1 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 4, - "s": 1 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5, - "s": 1 - }, - "17": { - "n": 5, - "s": 1 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 238, - "n": "Blin", - "f": "Alexis", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "67", - "n": "14", - "a": "4.82", - "d": "0.75", - "Ss": "28", - "Sn": "6", - "Sa": "4.75", - "Sd": "0.8", - "Og": "1", - "Os": "95", - "On": "20", - "Oa": "4.78", - "Od": "0.68", - "Mp": "18", - "p": { - "5": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6.5, - "g": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 3 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 309, - "n": "Dreyer", - "f": "Matthieu", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 811, - "n": "Pieters", - "f": "Erik", - "p": "D", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "49", - "On": "10", - "Oa": "4.9", - "Od": "0.94", - "Dp": "9", - "p": { - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1397, - "n": "Dibassy", - "f": "Bakaye", - "p": "D", - "r": 11, - "s": { - "g": "1", - "s": "111", - "n": "23", - "a": "4.83", - "d": "0.8", - "Sg": "1", - "Ss": "87", - "Sn": "18", - "Sa": "4.83", - "Sd": "0.76", - "Og": "2", - "Os": "172", - "On": "36", - "Oa": "4.78", - "Od": "1", - "Dp": "36", - "p": { - "38": { - "n": 4 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5, - "g": 1 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 3.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1403, - "n": "Gurtner", - "f": "R\u00e9gis", - "p": "G", - "r": 23, - "s": { - "s": "135", - "n": "24", - "a": "5.63", - "d": "1.03", - "Ss": "135", - "Sn": "24", - "Sa": "5.63", - "Sd": "1.03", - "Os": "216", - "On": "38", - "Oa": "5.68", - "Od": "1", - "Gp": "38", - "p": { - "38": { - "n": 7 - }, - "1": { - "n": 6 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 6.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 8 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 8 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 7 - } - } - }, - "c": 42 - }, - { - "i": 1404, - "n": "Monconduit", - "f": "Thomas", - "p": "M", - "r": 11, - "s": { - "s": "99", - "n": "20", - "a": "4.98", - "d": "0.94", - "Ss": "94", - "Sn": "19", - "Sa": "4.97", - "Sd": "0.97", - "Og": "1", - "Os": "178", - "On": "34", - "Oa": "5.25", - "Od": "1.09", - "Mp": "34", - "p": { - "38": { - "n": 5 - }, - "4": { - "n": 5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 6 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 7 - } - } - }, - "c": 42 - }, - { - "i": 1408, - "n": "El Hajjam", - "f": "Oualid", - "p": "D", - "r": 3, - "s": { - "s": "38", - "n": "9", - "a": "4.22", - "d": "0.71", - "Os": "74", - "On": "17", - "Oa": "4.35", - "Od": "0.87", - "Mp": "2", - "Dp": "13", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 4 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 3 - }, - "17": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1416, - "n": "Konat\u00e9", - "f": "Moussa", - "p": "A", - "r": 12, - "s": { - "g": "4", - "s": "70", - "n": "14", - "a": "5", - "d": "1.22", - "Sg": "1", - "Ss": "15", - "Sn": "3", - "Sa": "5", - "Sd": "1.08", - "Og": "10", - "Os": "130", - "On": "26", - "Oa": "5", - "Od": "1.26", - "Ap": "24", - "p": { - "38": { - "n": 6, - "g": 1 - }, - "1": { - "n": 4 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 8.5, - "g": 2 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4, - "s": 1 - }, - "24": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 42 - }, - { - "i": 1419, - "n": "Ad\u00e9non", - "f": "Khaled", - "p": "D", - "r": 11, - "s": { - "ao": "1", - "s": "83", - "n": "18", - "a": "4.64", - "d": "0.97", - "Oao": "1", - "Os": "151", - "On": "31", - "Oa": "4.89", - "Od": "1.01", - "Dp": "30", - "p": { - "38": { - "n": 5 - }, - "1": { - "n": 4.5 - }, - "2": { - "n": 3.5 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 3, - "a": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 3 - }, - "12": { - "n": 5.5 - }, - "13": { - "n": 5.5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 1425, - "n": "Ielsch", - "f": "Julien", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "0.82", - "Mp": "2" - }, - "c": 42 - }, - { - "i": 1437, - "n": "Koita", - "f": "Bachibou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1449, - "n": "Prince", - "f": "", - "p": "D", - "r": 11, - "s": { - "g": "1", - "ao": "1", - "s": "93", - "n": "20", - "a": "4.68", - "d": "1.08", - "Sao": "1", - "Ss": "75", - "Sn": "16", - "Sa": "4.72", - "Sd": "1.03", - "Og": "1", - "Oao": "1", - "Os": "154", - "On": "32", - "Oa": "4.83", - "Od": "1.02", - "Dp": "32", - "p": { - "38": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "5": { - "n": 3.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 6.5, - "g": 1 - }, - "9": { - "n": 6 - }, - "10": { - "n": 3 - }, - "11": { - "n": 5 - }, - "12": { - "n": 3, - "a": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 42 - }, - { - "i": 1453, - "n": "Cornette", - "f": "Quentin", - "p": "A", - "r": 1, - "s": { - "s": "17", - "n": "4", - "a": "4.25", - "d": "0.25", - "Os": "47", - "On": "10", - "Oa": "4.7", - "Od": "0.87", - "Mp": "5", - "Ap": "2", - "p": { - "38": { - "n": 4, - "s": 1 - }, - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 1454, - "n": "Talal", - "f": "Madih", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1460, - "n": "Banaziak", - "f": "Gauthier", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1538, - "n": "Zungu", - "f": "Bongani", - "p": "M", - "r": 1, - "s": { - "s": "11", - "n": "2", - "a": "5.75", - "d": "0.75", - "Os": "56", - "On": "11", - "Oa": "5.14", - "Od": "0.74", - "Mp": "11", - "p": { - "38": { - "n": 4 - }, - "3": { - "n": 6.5 - }, - "4": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1701, - "n": "Ganso", - "f": "", - "p": "M", - "r": 7, - "s": { - "s": "59", - "n": "12", - "a": "4.96", - "d": "0.69", - "Os": "59", - "On": "12", - "Oa": "4.96", - "Od": "0.69", - "Mp": "10", - "Ap": "2", - "p": { - "5": { - "n": 6, - "s": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5, - "s": 1 - }, - "16": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 2235, - "n": "Mendoza", - "f": "John Stiven", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "72", - "n": "15", - "a": "4.8", - "d": "1", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "3", - "Os": "120", - "On": "24", - "Oa": "5", - "Od": "1.01", - "Mp": "16", - "Ap": "7", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 7 - }, - "4": { - "n": 4.5 - }, - "13": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 3.5 - }, - "16": { - "n": 4 - }, - "17": { - "n": 6, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 42 - }, - { - "i": 2675, - "n": "Lefort", - "f": "Jordan", - "p": "D", - "r": 9, - "s": { - "s": "77", - "n": "16", - "a": "4.84", - "d": "1.09", - "Ss": "24", - "Sn": "5", - "Sa": "4.8", - "Sd": "0.93", - "Os": "77", - "On": "16", - "Oa": "4.84", - "Od": "1.09", - "Mp": "4", - "Dp": "12", - "p": { - "1": { - "n": 4 - }, - "3": { - "n": 6 - }, - "4": { - "n": 6.5 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 5 - }, - "8": { - "n": 6 - }, - "12": { - "n": 4 - }, - "13": { - "n": 6 - }, - "14": { - "n": 3 - }, - "15": { - "n": 4 - }, - "17": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 3.5 - }, - "21": { - "n": 4 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 42 - }, - { - "i": 2706, - "n": "Otero", - "f": "Juan Ferney", - "p": "A", - "r": 13, - "s": { - "g": "1", - "s": "100", - "n": "21", - "a": "4.79", - "d": "0.85", - "Og": "1", - "Os": "100", - "On": "21", - "Oa": "4.79", - "Od": "0.85", - "Mp": "9", - "Ap": "12", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4 - }, - "3": { - "n": 5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 6, - "s": 1 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4 - }, - "16": { - "n": 4 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 6.5, - "g": 1 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 2728, - "n": "Gnahore", - "f": "Eddy", - "p": "M", - "r": 14, - "s": { - "g": "4", - "s": "118", - "n": "23", - "a": "5.15", - "d": "1.03", - "Sg": "2", - "Ss": "71", - "Sn": "15", - "Sa": "4.77", - "Sd": "0.95", - "Og": "4", - "Os": "118", - "On": "23", - "Oa": "5.15", - "Od": "1.03", - "Mp": "22", - "Ap": "1", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 7, - "g": 1 - }, - "4": { - "n": 6 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 7, - "g": 1 - }, - "8": { - "n": 5 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 3.5 - }, - "15": { - "n": 3.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5, - "g": 1 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6, - "g": 1, - "s": 1 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4.5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 2773, - "n": "Gauducheau", - "f": "Antonin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2774, - "n": "Gneba", - "f": "Martin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2775, - "n": "Traore", - "f": "Gaoussou", - "p": "M", - "r": 1, - "s": { - "s": "15", - "n": "3", - "a": "5.17", - "d": "0.24", - "Os": "15", - "On": "3", - "Oa": "5.17", - "Od": "0.24", - "Mp": "3", - "p": { - "1": { - "n": 5 - }, - "5": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2776, - "n": "Ngando", - "f": "Jean-Claude", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2777, - "n": "Sy", - "f": "Sanasi", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "22": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2778, - "n": "Gendrey", - "f": "Valentin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2785, - "n": "Rabei", - "f": "Reda", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2789, - "n": "Timite", - "f": "Cheick", - "p": "M", - "r": 11, - "s": { - "s": "59", - "n": "13", - "a": "4.54", - "d": "0.41", - "Ss": "32", - "Sn": "7", - "Sa": "4.64", - "Sd": "0.44", - "Os": "59", - "On": "13", - "Oa": "4.54", - "Od": "0.41", - "Mp": "8", - "Ap": "5", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "11": { - "n": 4, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4, - "s": 1 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2794, - "n": "Kurzawa", - "f": "Rafal", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "49", - "n": "11", - "a": "4.5", - "d": "0.74", - "Og": "1", - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.74", - "Mp": "2", - "Ap": "9", - "p": { - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "6": { - "n": 3.5 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2796, - "n": "Krafth", - "f": "Emil", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "102", - "n": "22", - "a": "4.64", - "d": "0.62", - "Ss": "41", - "Sn": "9", - "Sa": "4.61", - "Sd": "0.39", - "Og": "1", - "Os": "102", - "On": "22", - "Oa": "4.64", - "Od": "0.62", - "Mp": "2", - "Dp": "20", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 6 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5, - "g": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 3 - }, - "11": { - "n": 4 - }, - "12": { - "n": 4.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 3.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 4 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 5 - }, - "24": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 2832, - "n": "Saman Ghoddos", - "f": "", - "p": "A", - "r": 9, - "s": { - "g": "2", - "s": "78", - "n": "16", - "a": "4.88", - "d": "1.08", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "2", - "Os": "78", - "On": "16", - "Oa": "4.88", - "Od": "1.08", - "Mp": "5", - "Ap": "11", - "p": { - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4 - }, - "7": { - "n": 7 - }, - "8": { - "n": 4 - }, - "9": { - "n": 7, - "g": 1 - }, - "10": { - "n": 3.5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4 - }, - "15": { - "n": 4 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 42 - }, - { - "i": 2937, - "n": "Segarel", - "f": "Stanley", - "p": "A", - "r": 4, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "18": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2994, - "n": "Mathurin Sakho", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 3366, - "n": "Guirassy", - "f": "Serhou", - "p": "A", - "r": 6, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "24": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 87, - "n": "Diallo", - "f": "Moustapha", - "p": "M", - "r": 4, - "s": { - "s": "32", - "n": "7", - "a": "4.57", - "d": "1.02", - "Og": "1", - "Os": "70", - "On": "14", - "Oa": "5", - "Od": "0.98", - "Mp": "9", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5 - }, - "8": { - "n": 3 - } - } - }, - "c": 67 - }, - { - "i": 212, - "n": "Ferri", - "f": "Jordan", - "p": "M", - "r": 12, - "s": { - "g": "1", - "s": "76", - "n": "15", - "a": "5.1", - "d": "0.92", - "Sg": "1", - "Ss": "57", - "Sn": "11", - "Sa": "5.18", - "Sd": "1.05", - "Og": "1", - "Os": "137", - "On": "27", - "Oa": "5.09", - "Od": "0.85", - "Mp": "18", - "p": { - "7": { - "n": 5, - "e": 2795, - "c": 18, - "s": 1 - }, - "10": { - "n": 5, - "e": 2824, - "c": 18, - "s": 1 - }, - "11": { - "n": 4.5, - "e": 2833, - "c": 18 - }, - "12": { - "n": 5, - "e": 2844, - "c": 18, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 5 - }, - "16": { - "n": 6.5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 67 - }, - { - "i": 439, - "n": "Faitout Maouassa", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "69", - "n": "14", - "a": "4.96", - "d": "0.81", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "0.25", - "Os": "82", - "On": "17", - "Oa": "4.85", - "Od": "0.8", - "Mp": "1", - "Dp": "13", - "p": { - "5": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "15": { - "n": 6 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 4 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 514, - "n": "Bernardoni", - "f": "Paul", - "p": "G", - "r": 18, - "s": { - "s": "136", - "n": "24", - "a": "5.67", - "d": "1.21", - "Ss": "136", - "Sn": "24", - "Sa": "5.67", - "Sd": "1.21", - "Os": "136", - "On": "24", - "Oa": "5.67", - "Od": "1.21", - "Gp": "24", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5 - }, - "3": { - "n": 7.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 6 - }, - "8": { - "n": 5 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 8 - }, - "13": { - "n": 7.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 2.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 67 - }, - { - "i": 1169, - "n": "Guillaume", - "f": "Baptiste", - "p": "A", - "r": 7, - "s": { - "g": "2", - "s": "67", - "n": "14", - "a": "4.82", - "d": "0.94", - "Sg": "1", - "Ss": "11", - "Sn": "2", - "Sa": "5.75", - "Sd": "1.25", - "Og": "2", - "Os": "87", - "On": "19", - "Oa": "4.61", - "Od": "0.88", - "Mp": "1", - "Ap": "14", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 4 - }, - "5": { - "n": 6.5, - "g": 1 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "11": { - "n": 4 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 4.5 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 67 - }, - { - "i": 2604, - "n": "Hsissane", - "f": "Abdelmalik", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2606, - "n": "Landre", - "f": "Lo\u00efck", - "p": "D", - "r": 14, - "s": { - "g": "3", - "s": "93", - "n": "18", - "a": "5.17", - "d": "1.12", - "Sg": "2", - "Ss": "28", - "Sn": "5", - "Sa": "5.7", - "Sd": "1.33", - "Og": "3", - "Os": "93", - "On": "18", - "Oa": "5.17", - "Od": "1.12", - "Dp": "18", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 3 - }, - "5": { - "n": 5, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5.5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 4 - }, - "16": { - "n": 6, - "g": 1, - "s": 1 - }, - "17": { - "n": 5 - }, - "20": { - "n": 7, - "g": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 3.5 - }, - "23": { - "n": 7, - "g": 1 - }, - "24": { - "n": 6 - } - } - }, - "c": 67 - }, - { - "i": 2607, - "n": "Lybohy", - "f": "Herve", - "p": "D", - "r": 6, - "s": { - "g": "1", - "s": "48", - "n": "10", - "a": "4.8", - "d": "1.21", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "48", - "On": "10", - "Oa": "4.8", - "Od": "1.21", - "Dp": "10", - "p": { - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "8": { - "n": 4 - }, - "13": { - "n": 5, - "s": 1 - }, - "14": { - "n": 7, - "g": 1 - }, - "15": { - "n": 6.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 3 - }, - "24": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2611, - "n": "Vlachodimos", - "f": "Panagiotis", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2612, - "n": "Cadamuro", - "f": "Liassine", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2619, - "n": "Valdivia", - "f": "Pierrick", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2649, - "n": "Harek", - "f": "Fethi", - "p": "D", - "r": 4, - "s": { - "s": "14", - "n": "3", - "a": "4.83", - "d": "0.62", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.62", - "Dp": "3", - "p": { - "10": { - "n": 4 - }, - "16": { - "n": 5.5 - }, - "24": { - "n": 5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2651, - "n": "Guessoum", - "f": "Kelyan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2654, - "n": "Buades", - "f": "Lucas", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2663, - "n": "Ben Amar", - "f": "Sami", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2666, - "n": "Bozok", - "f": "Umut", - "p": "A", - "r": 8, - "s": { - "g": "2", - "s": "90", - "n": "19", - "a": "4.74", - "d": "1.13", - "Og": "2", - "Os": "90", - "On": "19", - "Oa": "4.74", - "Od": "1.13", - "Ap": "19", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 7, - "g": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 2.5 - }, - "8": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 3 - }, - "15": { - "n": 5.5, - "s": 1 - }, - "16": { - "n": 7, - "g": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 4 - }, - "22": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2674, - "n": "Marillat", - "f": "Yan", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2680, - "n": "Alakouch", - "f": "Sofiane", - "p": "D", - "r": 11, - "s": { - "g": "1", - "s": "82", - "n": "17", - "a": "4.85", - "d": "0.92", - "Og": "1", - "Os": "82", - "On": "17", - "Oa": "4.85", - "Od": "0.92", - "Dp": "17", - "p": { - "1": { - "n": 4.5 - }, - "2": { - "n": 5 - }, - "3": { - "n": 5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 4 - }, - "9": { - "n": 5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 7.5, - "g": 1 - }, - "18": { - "n": 4 - }, - "19": { - "n": 5.5, - "s": 1 - }, - "20": { - "n": 6 - }, - "22": { - "n": 3 - }, - "23": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 2698, - "n": "Thioub", - "f": "Sada", - "p": "A", - "r": 11, - "s": { - "g": "3", - "s": "123", - "n": "24", - "a": "5.13", - "d": "1.21", - "Sg": "3", - "Ss": "123", - "Sn": "24", - "Sa": "5.13", - "Sd": "1.21", - "Og": "3", - "Os": "123", - "On": "24", - "Oa": "5.13", - "Od": "1.21", - "Mp": "12", - "Ap": "12", - "p": { - "1": { - "n": 8, - "g": 1 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 6 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 4.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 4.5, - "s": 1 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 7 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4, - "s": 1 - }, - "23": { - "n": 4 - }, - "24": { - "n": 6.5, - "g": 1, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2699, - "n": "Depres", - "f": "Clement", - "p": "A", - "r": 12, - "s": { - "g": "4", - "s": "84", - "n": "17", - "a": "4.94", - "d": "1.11", - "Og": "4", - "Os": "84", - "On": "17", - "Oa": "4.94", - "Od": "1.11", - "Ap": "17", - "p": { - "1": { - "n": 7, - "g": 1, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 4, - "s": 1 - }, - "4": { - "n": 4.5, - "s": 1 - }, - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 4.5, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 4.5 - }, - "17": { - "n": 4.5, - "s": 1 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "20": { - "n": 8, - "g": 2 - }, - "21": { - "n": 4, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2700, - "n": "Miguel", - "f": "Florian", - "p": "D", - "r": 6, - "s": { - "s": "17", - "n": "4", - "a": "4.38", - "d": "0.96", - "Os": "17", - "On": "4", - "Oa": "4.38", - "Od": "0.96", - "Dp": "4", - "p": { - "1": { - "n": 3 - }, - "3": { - "n": 5 - }, - "5": { - "n": 4 - }, - "7": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2702, - "n": "Bobichon", - "f": "Antonin", - "p": "M", - "r": 12, - "s": { - "g": "3", - "s": "86", - "n": "17", - "a": "5.09", - "d": "1.03", - "Sg": "1", - "Ss": "30", - "Sn": "6", - "Sa": "5", - "Sd": "1.12", - "Og": "3", - "Os": "86", - "On": "17", - "Oa": "5.09", - "Od": "1.03", - "Mp": "11", - "Ap": "6", - "p": { - "4": { - "n": 6, - "g": 1, - "s": 1 - }, - "5": { - "n": 6, - "g": 1 - }, - "6": { - "n": 7 - }, - "7": { - "n": 5 - }, - "8": { - "n": 3 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 5 - }, - "19": { - "n": 4, - "s": 1 - }, - "20": { - "n": 6 - }, - "21": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 7, - "g": 1 - } - } - }, - "c": 67 - }, - { - "i": 2704, - "n": "Valls", - "f": "Theo", - "p": "M", - "r": 10, - "s": { - "s": "106", - "n": "21", - "a": "5.05", - "d": "0.53", - "Os": "106", - "On": "21", - "Oa": "5.05", - "Od": "0.53", - "Mp": "21", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - }, - "3": { - "n": 5, - "s": 1 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "22": { - "n": 5 - }, - "23": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2709, - "n": "Briancon", - "f": "Anthony", - "p": "D", - "r": 16, - "s": { - "g": "2", - "s": "114", - "n": "22", - "a": "5.18", - "d": "1.3", - "Og": "2", - "Os": "114", - "On": "22", - "Oa": "5.18", - "Od": "1.3", - "Dp": "22", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 5.5 - }, - "4": { - "n": 3.5 - }, - "5": { - "n": 4 - }, - "6": { - "n": 7, - "g": 1 - }, - "8": { - "n": 3 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 6 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 3.5 - }, - "19": { - "n": 2.5 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 6 - } - } - }, - "c": 67 - }, - { - "i": 2716, - "n": "Paquiez", - "f": "Gaetan", - "p": "D", - "r": 8, - "s": { - "s": "55", - "n": "12", - "a": "4.63", - "d": "0.82", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "55", - "On": "12", - "Oa": "4.63", - "Od": "0.82", - "Dp": "12", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - }, - "4": { - "n": 3 - }, - "6": { - "n": 5 - }, - "7": { - "n": 5.5 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "19": { - "n": 3 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4 - }, - "24": { - "n": 5 - } - } - }, - "c": 67 - }, - { - "i": 2723, - "n": "Ripart", - "f": "Renaud", - "p": "A", - "r": 15, - "s": { - "g": "2", - "s": "123", - "n": "24", - "a": "5.15", - "d": "1.04", - "Sg": "2", - "Ss": "123", - "Sn": "24", - "Sa": "5.15", - "Sd": "1.04", - "Og": "2", - "Os": "123", - "On": "24", - "Oa": "5.15", - "Od": "1.04", - "Mp": "7", - "Dp": "5", - "Ap": "12", - "p": { - "1": { - "n": 6.5, - "g": 1 - }, - "2": { - "n": 7, - "g": 1 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 7 - }, - "13": { - "n": 5.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "17": { - "n": 6 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3 - }, - "20": { - "n": 7 - }, - "21": { - "n": 4 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2729, - "n": "Valette", - "f": "Baptiste", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2731, - "n": "Alioui", - "f": "Rachid", - "p": "A", - "r": 14, - "s": { - "g": "4", - "s": "85", - "n": "17", - "a": "5.03", - "d": "0.83", - "Sg": "4", - "Ss": "85", - "Sn": "17", - "Sa": "5.03", - "Sd": "0.83", - "Og": "4", - "Os": "85", - "On": "17", - "Oa": "5.03", - "Od": "0.83", - "Ap": "17", - "p": { - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 4, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "11": { - "n": 6, - "g": 1, - "s": 1 - }, - "12": { - "n": 4.5, - "s": 1 - }, - "13": { - "n": 4.5, - "s": 1 - }, - "14": { - "n": 4.5, - "s": 1 - }, - "15": { - "n": 7, - "g": 2, - "s": 1 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5 - }, - "18": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "19": { - "n": 4 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 6 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 4.5 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2732, - "n": "Sourzac", - "f": "Martin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2733, - "n": "Savanier", - "f": "T\u00e9ji", - "p": "M", - "r": 17, - "s": { - "g": "2", - "s": "112", - "n": "19", - "a": "5.89", - "d": "1.1", - "Sg": "1", - "Ss": "90", - "Sn": "15", - "Sa": "6", - "Sd": "1.17", - "Og": "2", - "Os": "112", - "On": "19", - "Oa": "5.89", - "Od": "1.1", - "Mp": "19", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 6, - "g": 1 - }, - "10": { - "n": 7 - }, - "11": { - "n": 5 - }, - "12": { - "n": 8, - "g": 1 - }, - "13": { - "n": 6.5 - }, - "14": { - "n": 7 - }, - "15": { - "n": 6 - }, - "16": { - "n": 6 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 7.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 4 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 6 - } - } - }, - "c": 67 - }, - { - "i": 2790, - "n": "Bouanga", - "f": "Denis", - "p": "M", - "r": 13, - "s": { - "g": "4", - "s": "100", - "n": "21", - "a": "4.79", - "d": "1.11", - "Sg": "3", - "Ss": "85", - "Sn": "18", - "Sa": "4.72", - "Sd": "1.16", - "Og": "4", - "Os": "100", - "On": "21", - "Oa": "4.79", - "Od": "1.11", - "Mp": "14", - "Ap": "7", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6, - "g": 1 - }, - "3": { - "n": 4.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 3.5 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 4 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 8, - "g": 2 - }, - "13": { - "n": 3.5 - }, - "14": { - "n": 5 - }, - "15": { - "n": 7, - "g": 1 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 4.5, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 67 - }, - { - "i": 2957, - "n": "Lionel Dias", - "f": "Lucas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 346, - "n": "Abdelhamid", - "f": "Yunis", - "p": "D", - "r": 18, - "s": { - "s": "132", - "n": "24", - "a": "5.52", - "d": "0.86", - "Ss": "132", - "Sn": "24", - "Sa": "5.52", - "Sd": "0.86", - "Os": "132", - "On": "24", - "Oa": "5.52", - "Od": "0.86", - "Dp": "24", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 6 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 6 - }, - "9": { - "n": 6 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6.5 - }, - "15": { - "n": 6 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 6.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 350, - "n": "Martin", - "f": "Marvin", - "p": "M", - "r": 8, - "s": { - "s": "52", - "n": "11", - "a": "4.77", - "d": "0.49", - "Os": "52", - "On": "11", - "Oa": "4.77", - "Od": "0.49", - "Mp": "11", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4 - }, - "6": { - "n": 4.5 - }, - "8": { - "n": 5 - }, - "10": { - "n": 4.5, - "s": 1 - }, - "11": { - "n": 6 - }, - "12": { - "n": 5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "22": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 563, - "n": "Cafaro", - "f": "Mathieu", - "p": "M", - "r": 17, - "s": { - "g": "4", - "s": "114", - "n": "22", - "a": "5.18", - "d": "0.91", - "Sg": "2", - "Ss": "40", - "Sn": "7", - "Sa": "5.71", - "Sd": "0.88", - "Og": "4", - "Os": "114", - "On": "22", - "Oa": "5.18", - "Od": "0.91", - "Mp": "21", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - }, - "2": { - "n": 4.5, - "s": 1 - }, - "3": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 5, - "s": 1 - }, - "7": { - "n": 5, - "s": 1 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4.5 - }, - "11": { - "n": 5, - "s": 1 - }, - "12": { - "n": 7, - "g": 1 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5 - }, - "15": { - "n": 4.5 - }, - "16": { - "n": 4.5 - }, - "18": { - "n": 7, - "g": 1, - "s": 1 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 4.5 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6, - "g": 1 - }, - "23": { - "n": 6.5 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 1144, - "n": "Sheyi Ojo", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "57", - "n": "12", - "a": "4.75", - "d": "0.43", - "Os": "57", - "On": "12", - "Oa": "4.75", - "Od": "0.43", - "Mp": "11", - "Ap": "1", - "p": { - "5": { - "n": 4.5, - "s": 1 - }, - "6": { - "n": 5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5, - "s": 1 - }, - "10": { - "n": 5, - "s": 1 - }, - "13": { - "n": 5, - "s": 1 - }, - "15": { - "n": 5 - }, - "18": { - "n": 5, - "s": 1 - }, - "19": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 4.5, - "s": 1 - }, - "21": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 1410, - "n": "Dingome", - "f": "Tristan", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "40", - "n": "8", - "a": "5", - "d": "0.56", - "Sg": "1", - "Ss": "26", - "Sn": "5", - "Sa": "5.2", - "Sd": "0.51", - "Og": "1", - "Os": "40", - "On": "8", - "Oa": "5", - "Od": "0.56", - "Mp": "8", - "p": { - "11": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "17": { - "n": 5, - "s": 1 - }, - "20": { - "n": 5.5, - "s": 1 - }, - "21": { - "n": 5 - }, - "22": { - "n": 4.5 - }, - "23": { - "n": 6, - "g": 1 - }, - "24": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 1543, - "n": "Suk Hyun-Jun", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "2", - "s": "73", - "n": "16", - "a": "4.56", - "d": "0.88", - "Sg": "1", - "Ss": "10", - "Sn": "2", - "Sa": "5.25", - "Sd": "1.25", - "Og": "3", - "Os": "118", - "On": "27", - "Oa": "4.37", - "Od": "0.83", - "Ap": "20", - "p": { - "2": { - "n": 4, - "s": 1 - }, - "3": { - "n": 4.5, - "s": 1 - }, - "4": { - "n": 5, - "s": 1 - }, - "5": { - "n": 4, - "s": 1 - }, - "6": { - "n": 5, - "s": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 4.5, - "s": 1 - }, - "10": { - "n": 3 - }, - "13": { - "n": 4, - "s": 1 - }, - "15": { - "n": 4.5, - "s": 1 - }, - "16": { - "n": 4, - "s": 1 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 6.5, - "g": 1 - }, - "23": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "24": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2068, - "n": "Baba", - "f": "Abdul Rahman", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2608, - "n": "Chavarria", - "f": "Pablo", - "p": "A", - "r": 11, - "s": { - "g": "3", - "s": "93", - "n": "20", - "a": "4.68", - "d": "0.76", - "Og": "3", - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.76", - "Mp": "1", - "Ap": "19", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 6.5, - "g": 1 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 4.5 - }, - "9": { - "n": 4 - }, - "10": { - "n": 5.5, - "g": 1 - }, - "11": { - "n": 4.5 - }, - "12": { - "n": 5 - }, - "13": { - "n": 4 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 4 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5 - }, - "20": { - "n": 6, - "g": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2610, - "n": "M\u00e9tanire", - "f": "Romain", - "p": "D", - "r": 6, - "s": { - "s": "23", - "n": "5", - "a": "4.6", - "d": "1.02", - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "1.02", - "Dp": "5", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - }, - "7": { - "n": 4.5 - }, - "17": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2615, - "n": "Fontaine", - "f": "Thomas", - "p": "D", - "r": 7, - "s": { - "s": "35", - "n": "7", - "a": "5.07", - "d": "0.49", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "35", - "On": "7", - "Oa": "5.07", - "Od": "0.49", - "Dp": "7", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "12": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2620, - "n": "Ngamukol", - "f": "Anatole", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2647, - "n": "Costa", - "f": "Logan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2648, - "n": "Carrasso", - "f": "Johann", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2650, - "n": "Kyei", - "f": "Scott", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2656, - "n": "Bana", - "f": "Moussa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2660, - "n": "Piechocki", - "f": "Virgile", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2662, - "n": "Romao", - "f": "Jacques-Alaixys", - "p": "M", - "r": 20, - "s": { - "s": "127", - "n": "23", - "a": "5.54", - "d": "0.72", - "Ss": "63", - "Sn": "11", - "Sa": "5.73", - "Sd": "0.65", - "Os": "127", - "On": "23", - "Oa": "5.54", - "Od": "0.72", - "Mp": "23", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5.5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5 - }, - "8": { - "n": 5.5 - }, - "9": { - "n": 6.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 4.5 - }, - "14": { - "n": 5.5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5 - }, - "19": { - "n": 5 - }, - "20": { - "n": 6.5 - }, - "21": { - "n": 7 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2667, - "n": "Konan", - "f": "Ghislain", - "p": "D", - "r": 5, - "s": { - "s": "103", - "n": "20", - "a": "5.18", - "d": "0.97", - "Os": "103", - "On": "20", - "Oa": "5.18", - "Od": "0.97", - "Dp": "20", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 7 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 6 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 6.5 - }, - "18": { - "n": 5.5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2673, - "n": "Oudin", - "f": "Remi", - "p": "M", - "r": 14, - "s": { - "g": "5", - "s": "114", - "n": "23", - "a": "4.96", - "d": "1.02", - "Sg": "3", - "Ss": "44", - "Sn": "9", - "Sa": "4.94", - "Sd": "1.07", - "Og": "5", - "Os": "114", - "On": "23", - "Oa": "4.96", - "Od": "1.02", - "Mp": "21", - "Ap": "2", - "p": { - "1": { - "n": 5 - }, - "2": { - "n": 4.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 4 - }, - "5": { - "n": 4.5 - }, - "6": { - "n": 4.5, - "s": 1 - }, - "7": { - "n": 4.5 - }, - "8": { - "n": 5, - "s": 1 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 4 - }, - "11": { - "n": 8, - "g": 2 - }, - "12": { - "n": 6 - }, - "13": { - "n": 5 - }, - "14": { - "n": 4.5 - }, - "16": { - "n": 3.5 - }, - "17": { - "n": 5.5, - "g": 1, - "s": 1 - }, - "18": { - "n": 4.5 - }, - "19": { - "n": 3.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6.5, - "g": 1 - }, - "22": { - "n": 4 - }, - "23": { - "n": 5 - }, - "24": { - "n": 6, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 2676, - "n": "Mendy", - "f": "Edouard", - "p": "G", - "r": 26, - "s": { - "s": "140", - "n": "24", - "a": "5.85", - "d": "1.05", - "Ss": "140", - "Sn": "24", - "Sa": "5.85", - "Sd": "1.05", - "Os": "140", - "On": "24", - "Oa": "5.85", - "Od": "1.05", - "Gp": "24", - "p": { - "1": { - "n": 6 - }, - "2": { - "n": 7.5 - }, - "3": { - "n": 4.5 - }, - "4": { - "n": 5 - }, - "5": { - "n": 7 - }, - "6": { - "n": 5.5 - }, - "7": { - "n": 3.5 - }, - "8": { - "n": 6 - }, - "9": { - "n": 7 - }, - "10": { - "n": 7 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6.5 - }, - "13": { - "n": 5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 7.5 - }, - "16": { - "n": 5.5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 4 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 6 - }, - "22": { - "n": 6.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2683, - "n": "Disasi", - "f": "Axel", - "p": "D", - "r": 2, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "3": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2694, - "n": "Lemaitre", - "f": "Nicolas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2703, - "n": "Kyei", - "f": "Grejohn", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2705, - "n": "Doumbia", - "f": "Moussa", - "p": "M", - "r": 12, - "s": { - "g": "2", - "s": "77", - "n": "15", - "a": "5.17", - "d": "1.01", - "Og": "2", - "Os": "77", - "On": "15", - "Oa": "5.17", - "Od": "1.01", - "Mp": "12", - "Ap": "3", - "p": { - "1": { - "n": 7, - "g": 1 - }, - "2": { - "n": 5.5 - }, - "3": { - "n": 3.5 - }, - "4": { - "n": 4.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 5.5 - }, - "10": { - "n": 4.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 5.5, - "s": 1 - }, - "14": { - "n": 5 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 4.5 - }, - "17": { - "n": 4.5 - }, - "18": { - "n": 7.5, - "g": 1 - }, - "19": { - "n": 4 - } - } - }, - "c": 68 - }, - { - "i": 2708, - "n": "Mbemba", - "f": "Nolan", - "p": "M", - "r": 9, - "s": { - "s": "33", - "n": "7", - "a": "4.71", - "d": "0.36", - "Os": "33", - "On": "7", - "Oa": "4.71", - "Od": "0.36", - "Mp": "6", - "Dp": "1", - "p": { - "2": { - "n": 5, - "s": 1 - }, - "4": { - "n": 4.5 - }, - "7": { - "n": 5, - "s": 1 - }, - "13": { - "n": 4 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5, - "s": 1 - }, - "23": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 2715, - "n": "Kamara", - "f": "Hassane", - "p": "M", - "r": 11, - "s": { - "s": "46", - "n": "9", - "a": "5.11", - "d": "0.52", - "Ss": "26", - "Sn": "5", - "Sa": "5.2", - "Sd": "0.51", - "Os": "46", - "On": "9", - "Oa": "5.11", - "Od": "0.52", - "Mp": "5", - "Dp": "4", - "p": { - "7": { - "n": 5.5, - "s": 1 - }, - "8": { - "n": 5.5, - "s": 1 - }, - "9": { - "n": 4.5 - }, - "16": { - "n": 4.5, - "s": 1 - }, - "20": { - "n": 5, - "s": 1 - }, - "21": { - "n": 4.5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 2724, - "n": "Chavalerin", - "f": "Xavier", - "p": "M", - "r": 16, - "s": { - "g": "2", - "s": "126", - "n": "23", - "a": "5.5", - "d": "0.61", - "Sg": "1", - "Ss": "78", - "Sn": "14", - "Sa": "5.61", - "Sd": "0.6", - "Og": "2", - "Os": "126", - "On": "23", - "Oa": "5.5", - "Od": "0.61", - "Mp": "23", - "p": { - "1": { - "n": 5.5 - }, - "2": { - "n": 6 - }, - "3": { - "n": 4 - }, - "4": { - "n": 5.5 - }, - "5": { - "n": 5 - }, - "6": { - "n": 6 - }, - "7": { - "n": 5.5, - "g": 1 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "11": { - "n": 5.5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6, - "g": 1 - }, - "15": { - "n": 6 - }, - "16": { - "n": 5 - }, - "17": { - "n": 5.5 - }, - "18": { - "n": 6 - }, - "19": { - "n": 6.5 - }, - "20": { - "n": 6 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5.5 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2730, - "n": "Cakin", - "f": "Hendrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2770, - "n": "Bahanack", - "f": "Patrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2823, - "n": "Engels", - "f": "Bj\u00f6rn", - "p": "D", - "r": 18, - "s": { - "g": "1", - "s": "110", - "n": "20", - "a": "5.5", - "d": "0.63", - "Sg": "1", - "Ss": "110", - "Sn": "20", - "Sa": "5.5", - "Sd": "0.63", - "Og": "1", - "Os": "110", - "On": "20", - "Oa": "5.5", - "Od": "0.63", - "Dp": "20", - "p": { - "5": { - "n": 5.5 - }, - "6": { - "n": 5 - }, - "7": { - "n": 4 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5.5 - }, - "10": { - "n": 5.5 - }, - "11": { - "n": 7 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4.5 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5.5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 6 - }, - "18": { - "n": 5 - }, - "19": { - "n": 6, - "g": 1 - }, - "20": { - "n": 5.5 - }, - "21": { - "n": 5.5 - }, - "22": { - "n": 6 - }, - "23": { - "n": 6 - }, - "24": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2858, - "n": "Pinson", - "f": "Virgile", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2862, - "n": "Foket", - "f": "Thomas", - "p": "D", - "r": 12, - "s": { - "s": "96", - "n": "19", - "a": "5.05", - "d": "0.51", - "Ss": "85", - "Sn": "17", - "Sa": "5", - "Sd": "0.51", - "Os": "96", - "On": "19", - "Oa": "5.05", - "Od": "0.51", - "Dp": "19", - "p": { - "5": { - "n": 5.5 - }, - "6": { - "n": 5.5 - }, - "8": { - "n": 5 - }, - "9": { - "n": 5 - }, - "10": { - "n": 5 - }, - "11": { - "n": 5 - }, - "12": { - "n": 6 - }, - "13": { - "n": 4 - }, - "14": { - "n": 6 - }, - "15": { - "n": 5 - }, - "16": { - "n": 5 - }, - "17": { - "n": 4 - }, - "18": { - "n": 5 - }, - "19": { - "n": 4.5 - }, - "20": { - "n": 5 - }, - "21": { - "n": 5 - }, - "22": { - "n": 5 - }, - "23": { - "n": 5.5 - }, - "24": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 2951, - "n": "Dia", - "f": "Boulaye", - "p": "M", - "r": 9, - "s": { - "s": "19", - "n": "4", - "a": "4.88", - "d": "0.22", - "Ss": "19", - "Sn": "4", - "Sa": "4.88", - "Sd": "0.22", - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.22", - "Mp": "3", - "Ap": "1", - "p": { - "21": { - "n": 5, - "s": 1 - }, - "22": { - "n": 5, - "s": 1 - }, - "23": { - "n": 5 - }, - "24": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 3360, - "n": "Sissoko", - "f": "Sambou", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 3364, - "n": "Zeneli", - "f": "Arb\u00ebr", - "p": "A", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "24": { - "n": 4, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 3365, - "n": "Moreto Cassam\u00e3", - "f": "", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - } - ], - "c": { - "2": { - "n": "Paris", - "rn": "Paris Saint-Germain", - "cn": "Paris-Saint-Germain", - "a": "PAR", - "l": 1, - "el": 1332, - "s": { - "p": 59 - }, - "nM": 2981, - "nMWC": "0.8002", - "pM": { - "32": 1083, - "3": 2760, - "4": 2767, - "5": 2780, - "6": 2789, - "7": 2800, - "9": 2820, - "10": 2828, - "13": 2857, - "14": 2869, - "16": 2891, - "19": 2917, - "20": 2922, - "21": 2938, - "22": 2949, - "23": 2956, - "24": 2968, - "1": 2740, - "2": 2745, - "8": 2807, - "12": 2848, - "15": 2873, - "11": 2837 - }, - "DMI": [ - 1083, - 2780 - ] - }, - "3": { - "n": "Bordeaux", - "rn": "Girondins de Bordeaux", - "cn": "Girondins-de-Bordeaux", - "a": "BOD", - "l": 1, - "el": 1072, - "s": { - "p": 28 - }, - "nM": 2973, - "nMWC": "0.5771", - "pM": { - "24": 2968, - "15": 2873, - "37": 1127, - "1": 2733, - "2": 2751, - "3": 2753, - "4": 2769, - "5": 2773, - "10": 2825, - "11": 2834, - "12": 2844, - "14": 2864, - "17": 2892, - "18": 2907, - "20": 2929, - "21": 2933, - "6": 2783, - "7": 2793, - "8": 2808, - "9": 2814, - "13": 2853, - "16": 2883, - "19": 2913, - "22": 2950 - }, - "DMI": [ - 1127, - 2751 - ] - }, - "4": { - "n": "Saint Etienne", - "rn": "AS Saint-Etienne", - "cn": "AS-Saint-Etienne", - "a": "STE", - "l": 1, - "el": 1091, - "s": { - "p": 37 - }, - "nM": 2981, - "nMWC": "0.1998", - "pM": { - "32": 1083, - "5": 2780, - "16": 2883, - "1": 2741, - "2": 2750, - "6": 2790, - "7": 2801, - "9": 2816, - "12": 2850, - "13": 2860, - "14": 2865, - "15": 2880, - "17": 2899, - "20": 2925, - "21": 2941, - "22": 2947, - "24": 2969, - "3": 2757, - "4": 2770, - "8": 2810, - "10": 2830, - "11": 2839, - "18": 2909, - "19": 2920 - }, - "DMI": [ - 1083, - 2780 - ] - }, - "5": { - "n": "Caen", - "rn": "SM Caen", - "cn": "SM-Caen", - "a": "CAE", - "l": 1, - "el": 872, - "s": { - "p": 18 - }, - "nM": 2954, - "nMWC": "0.2954", - "pM": { - "1": 2740, - "13": 2853, - "6": 2790, - "14": 2863, - "2": 2743, - "3": 2758, - "4": 2763, - "5": 2774, - "8": 2803, - "9": 2817, - "10": 2822, - "11": 2836, - "12": 2842, - "15": 2872, - "16": 2884, - "18": 2903, - "19": 2918, - "20": 2923, - "21": 2934, - "22": 2946, - "24": 2962, - "7": 2794, - "17": 2900, - "28": 1037 - }, - "DMI": [ - 2758 - ] - }, - "7": { - "n": "Dijon", - "rn": "Dijon FCO", - "cn": "Dijon-FCO", - "a": "DIJ", - "l": 1, - "el": 959, - "s": { - "p": 20 - }, - "nM": 2979, - "nMWC": "0.3403", - "pM": { - "14": 2864, - "21": 2933, - "19": 2920, - "11": 2838, - "4": 2763, - "1": 2737, - "2": 2744, - "5": 2775, - "7": 2795, - "8": 2811, - "9": 2812, - "10": 2823, - "3": 2759, - "6": 2788, - "12": 2843, - "13": 2856, - "15": 2881, - "16": 2885, - "17": 2898, - "20": 2924, - "22": 2943, - "23": 2952, - "24": 2963 - }, - "DMI": [ - 2843 - ] - }, - "8": { - "n": "Nantes", - "rn": "FC Nantes", - "cn": "FC-Nantes", - "a": "NTE", - "l": 1, - "el": 1023, - "s": { - "p": 24 - }, - "nM": 2954, - "nMWC": "0.7046", - "pM": { - "19": 2917, - "9": 2814, - "15": 2880, - "22": 2947, - "3": 2758, - "5": 2778, - "2": 2744, - "1": 2738, - "4": 2771, - "6": 2784, - "7": 2798, - "8": 2805, - "10": 2826, - "11": 2832, - "12": 2846, - "13": 2859, - "14": 2867, - "17": 2896, - "18": 2908, - "20": 2928, - "21": 2932, - "24": 2966, - "16": 2888, - "32": 1081 - }, - "DMI": [ - 2758 - ] - }, - "9": { - "n": "Marseille", - "rn": "Olympique de Marseille", - "cn": "Olympique-de-Marseille", - "a": "MRS", - "l": 1, - "el": 1142, - "s": { - "p": 37 - }, - "nM": 2977, - "nMWC": "0.7555", - "pM": { - "11": 2837, - "18": 2907, - "17": 2899, - "4": 2766, - "20": 2927, - "9": 2817, - "21": 2934, - "15": 2876, - "13": 2856, - "24": 2963, - "16": 2888, - "8": 2804, - "1": 2736, - "2": 2747, - "3": 2756, - "5": 2776, - "6": 2785, - "7": 2796, - "10": 2827, - "12": 2845, - "14": 2862, - "19": 2912, - "38": 1138, - "23": 2959, - "22": 2945 - }, - "DMI": [ - 2862, - 1138 - ] - }, - "10": { - "n": "Toulouse", - "rn": "Toulouse FC", - "cn": "Toulouse-FC", - "a": "TLS", - "l": 1, - "el": 1018, - "s": { - "p": 27 - }, - "nM": 2973, - "nMWC": "0.4229", - "pM": { - "14": 2869, - "37": 1127, - "2": 2751, - "7": 2801, - "5": 2781, - "18": 2903, - "16": 2890, - "15": 2881, - "10": 2826, - "19": 2914, - "1": 2736, - "3": 2761, - "4": 2764, - "6": 2782, - "8": 2809, - "9": 2821, - "11": 2841, - "12": 2851, - "13": 2861, - "17": 2901, - "20": 2931, - "21": 2937, - "22": 2951, - "23": 2957, - "24": 2971 - }, - "DMI": [ - 1127, - 2751 - ] - }, - "12": { - "n": "Lille", - "rn": "LOSC", - "cn": "LOSC", - "a": "LIL", - "l": 1, - "el": 1190, - "s": { - "p": 49 - }, - "nM": 2975, - "nMWC": "0.5994", - "pM": { - "12": 2848, - "7": 2793, - "9": 2816, - "11": 2836, - "20": 2923, - "17": 2894, - "10": 2823, - "6": 2784, - "1": 2734, - "2": 2746, - "8": 2804, - "15": 2875, - "18": 2910, - "19": 2914, - "22": 2945, - "14": 2868, - "29": 1048, - "3": 2754, - "4": 2762, - "5": 2772, - "13": 2855, - "21": 2935, - "23": 2955, - "16": 2887, - "24": 2964 - }, - "DMI": [ - 1048, - 2887 - ] - }, - "13": { - "n": "Monaco", - "rn": "AS Monaco", - "cn": "AS-Monaco", - "a": "MON", - "l": 1, - "el": 1034, - "s": { - "p": 19 - }, - "nM": 2978, - "nMWC": "0.5158", - "pM": { - "13": 2857, - "3": 2753, - "8": 2810, - "4": 2766, - "5": 2781, - "6": 2786, - "10": 2831, - "11": 2838, - "12": 2849, - "14": 2863, - "15": 2877, - "16": 2882, - "17": 2895, - "19": 2915, - "20": 2927, - "22": 2943, - "1": 2738, - "2": 2746, - "23": 2957, - "32": 1081, - "7": 2797, - "9": 2818, - "18": 2906, - "21": 2936, - "24": 2965 - }, - "DMI": [ - 2738, - 1081 - ] - }, - "14": { - "n": "Guingamp", - "rn": "EA Guingamp", - "cn": "EA-Guingamp", - "a": "GIN", - "l": 1, - "el": 879, - "s": { - "p": 14 - }, - "nM": 2976, - "nMWC": "0.1445", - "pM": { - "21": 2938, - "2": 2745, - "6": 2783, - "1": 2741, - "20": 2925, - "19": 2915, - "10": 2822, - "14": 2870, - "16": 2885, - "12": 2846, - "5": 2776, - "15": 2874, - "4": 2764, - "3": 2754, - "24": 2964, - "11": 2835, - "17": 2893, - "18": 2905, - "7": 2799, - "8": 2802, - "9": 2815, - "13": 2854, - "22": 2944 - }, - "DMI": [ - 2854 - ] - }, - "15": { - "n": "Montpellier", - "rn": "Montpellier H\u00e9rault SC", - "cn": "Montpellier-Herault-SC", - "a": "MTP", - "l": 1, - "el": 1120, - "s": { - "p": 37 - }, - "nM": 2975, - "nMWC": "0.4006", - "pM": { - "10": 2825, - "3": 2757, - "15": 2877, - "22": 2946, - "7": 2794, - "1": 2737, - "20": 2924, - "18": 2908, - "12": 2845, - "6": 2787, - "11": 2841, - "29": 1048, - "16": 2887, - "24": 2965, - "9": 2815, - "2": 2742, - "4": 2768, - "5": 2777, - "8": 2806, - "13": 2852, - "14": 2866, - "19": 2916, - "21": 2940, - "23": 2958 - }, - "DMI": [ - 1048, - 2887 - ] - }, - "16": { - "n": "Angers", - "rn": "Angers SCO", - "cn": "Angers-SCO", - "a": "ANG", - "l": 1, - "el": 1079, - "s": { - "p": 30 - }, - "nM": 2972, - "nMWC": "0.4215", - "pM": { - "3": 2760, - "17": 2892, - "12": 2850, - "15": 2872, - "10": 2829, - "5": 2775, - "23": 2952, - "14": 2867, - "21": 2932, - "19": 2912, - "16": 2889, - "6": 2782, - "22": 2951, - "4": 2762, - "7": 2797, - "8": 2802, - "13": 2852, - "33": 1085, - "1": 2732, - "2": 2749, - "9": 2813, - "18": 2902, - "20": 2930, - "24": 2970, - "11": 2833 - }, - "DMI": [ - 2889, - 1085 - ] - }, - "18": { - "n": "Lyon", - "rn": "Olympique Lyonnais", - "cn": "Olympique-Lyonnais", - "a": "LYO", - "l": 1, - "el": 1188, - "s": { - "p": 43 - }, - "nM": 2976, - "nMWC": "0.8555", - "pM": { - "9": 2820, - "23": 2956, - "12": 2844, - "14": 2865, - "21": 2941, - "5": 2774, - "7": 2795, - "8": 2805, - "15": 2875, - "6": 2785, - "4": 2765, - "17": 2901, - "18": 2906, - "13": 2854, - "1": 2735, - "19": 2916, - "11": 2833, - "3": 2755, - "16": 2886, - "20": 2926, - "22": 2942, - "24": 2967, - "2": 2748, - "10": 2824 - }, - "DMI": [ - 2854 - ] - }, - "19": { - "n": "Nice", - "rn": "OGC Nice", - "cn": "OGC-Nice", - "a": "NCE", - "l": 1, - "el": 1134, - "s": { - "p": 37 - }, - "nM": 2972, - "nMWC": "0.5785", - "pM": { - "8": 2807, - "11": 2834, - "20": 2929, - "18": 2909, - "17": 2895, - "2": 2743, - "1": 2739, - "3": 2759, - "7": 2798, - "10": 2827, - "4": 2765, - "6": 2787, - "12": 2847, - "13": 2858, - "14": 2868, - "15": 2874, - "16": 2889, - "9": 2821, - "23": 2955, - "33": 1085, - "24": 2967, - "5": 2779, - "19": 2921, - "21": 2939, - "22": 2948 - }, - "DMI": [ - 2889, - 1085 - ] - }, - "20": { - "n": "Rennes", - "rn": "Stade Rennais FC", - "cn": "Stade-Rennais-FC", - "a": "REN", - "l": 1, - "el": 1109, - "s": { - "p": 36 - }, - "nM": 2980, - "nMWC": "0.5187", - "pM": { - "6": 2789, - "22": 2949, - "4": 2769, - "24": 2969, - "10": 2830, - "12": 2842, - "11": 2840, - "17": 2898, - "13": 2859, - "20": 2928, - "1": 2734, - "3": 2756, - "8": 2809, - "9": 2818, - "18": 2905, - "14": 2866, - "21": 2940, - "2": 2749, - "16": 2886, - "5": 2779, - "7": 2792, - "15": 2879, - "19": 2919, - "23": 2960 - }, - "DMI": [ - 2840 - ] - }, - "41": { - "n": "Strasbourg", - "rn": "RC Strasbourg Alsace", - "cn": "RC-Strasbourg-Alsace", - "a": "STB", - "l": 1, - "el": 1113, - "s": { - "p": 35 - }, - "nM": 2974, - "nMWC": "0.8002", - "pM": { - "16": 2891, - "1": 2733, - "22": 2950, - "2": 2750, - "10": 2831, - "17": 2900, - "18": 2911, - "8": 2811, - "4": 2771, - "7": 2796, - "12": 2851, - "20": 2931, - "13": 2855, - "21": 2936, - "11": 2835, - "5": 2777, - "9": 2813, - "24": 2970, - "3": 2755, - "19": 2921, - "15": 2879, - "14": 2871, - "28": 1037, - "6": 2791 - }, - "DMI": [ - 2900, - 1037 - ] - }, - "42": { - "n": "Amiens", - "rn": "Amiens SC", - "cn": "Amiens-SC", - "a": "AMI", - "l": 1, - "el": 946, - "s": { - "p": 21 - }, - "nM": 2977, - "nMWC": "0.2445", - "pM": { - "10": 2828, - "20": 2922, - "19": 2913, - "4": 2770, - "16": 2882, - "8": 2803, - "24": 2962, - "9": 2812, - "11": 2832, - "14": 2862, - "38": 1138, - "12": 2847, - "13": 2861, - "5": 2772, - "21": 2935, - "17": 2893, - "1": 2735, - "2": 2742, - "3": 2752, - "18": 2902, - "22": 2942, - "7": 2792, - "23": 2960, - "6": 2791, - "15": 2878 - }, - "DMI": [ - 2862, - 1138 - ] - }, - "67": { - "n": "N\u00eemes", - "rn": "N\u00eemes Olympique", - "cn": "Nimes-Olympique", - "a": "NIM", - "l": 1, - "el": 1074, - "s": { - "p": 33 - }, - "nM": 2979, - "nMWC": "0.6597", - "pM": { - "4": 2767, - "5": 2773, - "11": 2839, - "6": 2786, - "16": 2884, - "9": 2819, - "12": 2843, - "17": 2896, - "24": 2966, - "18": 2910, - "2": 2747, - "13": 2858, - "3": 2761, - "21": 2937, - "7": 2799, - "8": 2806, - "23": 2958, - "1": 2732, - "20": 2930, - "10": 2824, - "22": 2948, - "19": 2919, - "14": 2871, - "15": 2878 - }, - "DMI": [ - 2843 - ] - }, - "68": { - "n": "Reims", - "rn": "Stade de Reims", - "cn": "Stade-de-Reims", - "a": "REI", - "l": 1, - "el": 1096, - "s": { - "p": 35 - }, - "nM": 2980, - "nMWC": "0.4813", - "pM": { - "7": 2800, - "8": 2808, - "13": 2860, - "12": 2849, - "19": 2918, - "1": 2739, - "5": 2778, - "9": 2819, - "10": 2829, - "11": 2840, - "14": 2870, - "15": 2876, - "16": 2890, - "17": 2894, - "18": 2911, - "6": 2788, - "23": 2959, - "24": 2971, - "22": 2944, - "3": 2752, - "4": 2768, - "20": 2926, - "2": 2748, - "21": 2939 - }, - "DMI": [ - 2840 - ] - } - }, - "op": { - "23": { - "n": "Burnley", - "l": 2, - "el": 1031 - }, - "25": { - "n": "Chelsea", - "l": 2, - "el": 1100 - }, - "26": { - "n": "Crystal Palace", - "l": 2, - "el": 1034 - }, - "22": { - "n": "Everton", - "l": 2, - "el": 980 - }, - "69": { - "n": "Wolverhampton", - "l": 2, - "el": 1099 - }, - "29": { - "n": "Leicester", - "l": 2, - "el": 1011 - }, - "35": { - "n": "Southampton", - "l": 2, - "el": 1006 - }, - "71": { - "n": "Fulham", - "l": 2, - "el": 879 - }, - "24": { - "n": "Tottenham", - "l": 2, - "el": 1248 - }, - "31": { - "n": "Man United", - "l": 2, - "el": 1217 - }, - "49": { - "n": "Valencia", - "l": 3, - "el": 1105 - }, - "54": { - "n": "Atl\u00e9tico", - "l": 3, - "el": 1194 - }, - "72": { - "n": "Rayo", - "l": 3, - "el": 1010 - }, - "73": { - "n": "Huesca", - "l": 3, - "el": 990 - }, - "47": { - "n": "Legan\u00e9s", - "l": 3, - "el": 1093 - }, - "57": { - "n": "Bilbao", - "l": 3, - "el": 1069 - }, - "53": { - "n": "Girona", - "l": 3, - "el": 945 - }, - "74": { - "n": "Valladolid", - "l": 3, - "el": 983 - }, - "56": { - "n": "Espanyol", - "l": 3, - "el": 1013 - }, - "60": { - "n": "Betis", - "l": 3, - "el": 1055 - }, - "63": { - "n": "Levante", - "l": 3, - "el": 1005 - }, - "51": { - "n": "Celta", - "l": 3, - "el": 953 - }, - "55": { - "n": "Sevilla", - "l": 3, - "el": 1094 - }, - "48": { - "n": "Alav\u00e9s", - "l": 3, - "el": 1054 - }, - "58": { - "n": "Getafe", - "l": 3, - "el": 1109 - }, - "64": { - "n": "Villarreal", - "l": 3, - "el": 963 - }, - "52": { - "n": "Real Sociedad", - "l": 3, - "el": 1073 - }, - "59": { - "n": "Barcelona", - "l": 3, - "el": 1287 - } - }, - "e": { - "1083": { - "d": 32, - "dB": "2018-04-06T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 4, - "t2": 2 - }, - "2760": { - "d": 3, - "dB": "2018-08-25T17:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 2, - "t2": 16 - }, - "2767": { - "d": 4, - "dB": "2018-09-01T15:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 67, - "t2": 2 - }, - "2780": { - "d": 5, - "dB": "2018-09-14T18:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 2, - "t2": 4 - }, - "2789": { - "d": 6, - "dB": "2018-09-23T13:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 20, - "t2": 2 - }, - "2800": { - "d": 7, - "dB": "2018-09-26T19:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 2, - "t2": 68 - }, - "2820": { - "d": 9, - "dB": "2018-10-07T19:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 2, - "t2": 18 - }, - "2828": { - "d": 10, - "dB": "2018-10-20T15:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 2, - "t2": 42 - }, - "2857": { - "d": 13, - "dB": "2018-11-11T20:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 13, - "t2": 2 - }, - "2869": { - "d": 14, - "dB": "2018-11-24T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 10 - }, - "2891": { - "d": 16, - "dB": "2018-12-05T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 2 - }, - "2917": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 8 - }, - "2922": { - "d": 20, - "dB": "2019-01-12T16:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 42, - "t2": 2 - }, - "2938": { - "d": 21, - "dB": "2019-01-19T16:00:00Z", - "t1s": 9, - "t2s": 0, - "t1": 2, - "t2": 14 - }, - "2949": { - "d": 22, - "dB": "2019-01-27T20:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 2, - "t2": 20 - }, - "2956": { - "d": 23, - "dB": "2019-02-03T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 18, - "t2": 2 - }, - "2968": { - "d": 24, - "dB": "2019-02-09T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 2, - "t2": 3 - }, - "2740": { - "d": 1, - "dB": "2018-08-12T21:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 2, - "t2": 5 - }, - "2745": { - "d": 2, - "dB": "2018-08-18T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 2 - }, - "2807": { - "d": 8, - "dB": "2018-09-29T15:15:00Z", - "t1s": 0, - "t2s": 3, - "t1": 19, - "t2": 2 - }, - "2848": { - "d": 12, - "dB": "2018-11-02T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 2, - "t2": 12 - }, - "2873": { - "d": 15, - "dB": "2018-12-02T20:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 3, - "t2": 2 - }, - "2837": { - "d": 11, - "dB": "2018-10-28T20:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 9, - "t2": 2 - }, - "1127": { - "d": 37, - "dB": "2018-05-12T19:00:00Z", - "t1s": 4, - "t2s": 2, - "t1": 3, - "t2": 10 - }, - "2733": { - "d": 1, - "dB": "2018-08-12T17:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 3, - "t2": 41 - }, - "2751": { - "d": 2, - "dB": "2018-08-19T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 10, - "t2": 3 - }, - "2753": { - "d": 3, - "dB": "2018-08-26T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 3, - "t2": 13 - }, - "2769": { - "d": 4, - "dB": "2018-09-02T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 20, - "t2": 3 - }, - "2773": { - "d": 5, - "dB": "2018-09-16T15:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 3, - "t2": 67 - }, - "2825": { - "d": 10, - "dB": "2018-10-21T13:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 15, - "t2": 3 - }, - "2834": { - "d": 11, - "dB": "2018-10-28T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 19 - }, - "2844": { - "d": 12, - "dB": "2018-11-03T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 3 - }, - "2864": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 7, - "t2": 3 - }, - "2892": { - "d": 17, - "dB": "2019-01-15T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 3 - }, - "2907": { - "d": 18, - "dB": "2019-02-05T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 9, - "t2": 3 - }, - "2929": { - "d": 20, - "dB": "2019-01-12T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 3 - }, - "2933": { - "d": 21, - "dB": "2019-01-20T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 3, - "t2": 7 - }, - "2783": { - "d": 6, - "dB": "2018-09-23T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 3 - }, - "2793": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 3, - "t2": 12 - }, - "2808": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 68, - "t2": 3 - }, - "2814": { - "d": 9, - "dB": "2018-10-07T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 3, - "t2": 8 - }, - "2853": { - "d": 13, - "dB": "2018-11-11T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 3, - "t2": 5 - }, - "2883": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 3, - "t2": 4 - }, - "2913": { - "d": 19, - "dB": "2018-12-23T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 3, - "t2": 42 - }, - "2950": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 41, - "t2": 3 - }, - "2741": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 14 - }, - "2750": { - "d": 2, - "dB": "2018-08-19T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 4 - }, - "2790": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 5 - }, - "2801": { - "d": 7, - "dB": "2018-09-25T19:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 10, - "t2": 4 - }, - "2816": { - "d": 9, - "dB": "2018-10-06T15:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 12, - "t2": 4 - }, - "2850": { - "d": 12, - "dB": "2018-11-04T16:00:00Z", - "t1s": 4, - "t2s": 3, - "t1": 4, - "t2": 16 - }, - "2860": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 68 - }, - "2865": { - "d": 14, - "dB": "2018-11-23T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 18, - "t2": 4 - }, - "2880": { - "d": 15, - "dB": "2018-11-30T19:45:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 8 - }, - "2899": { - "d": 17, - "dB": "2019-01-16T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 4, - "t2": 9 - }, - "2925": { - "d": 20, - "dB": "2019-01-12T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 14, - "t2": 4 - }, - "2941": { - "d": 21, - "dB": "2019-01-20T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 4, - "t2": 18 - }, - "2947": { - "d": 22, - "dB": "2019-01-30T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 4 - }, - "2969": { - "d": 24, - "dB": "2019-02-10T16:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 20, - "t2": 4 - }, - "2757": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 15, - "t2": 4 - }, - "2770": { - "d": 4, - "dB": "2018-09-02T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 4, - "t2": 42 - }, - "2810": { - "d": 8, - "dB": "2018-09-28T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 13 - }, - "2830": { - "d": 10, - "dB": "2018-10-21T15:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 4, - "t2": 20 - }, - "2839": { - "d": 11, - "dB": "2018-10-26T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 67, - "t2": 4 - }, - "2909": { - "d": 18, - "dB": "2018-12-16T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 4 - }, - "2920": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 7 - }, - "2766": { - "d": 4, - "dB": "2018-09-02T19:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 13, - "t2": 9 - }, - "2781": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 13 - }, - "2786": { - "d": 6, - "dB": "2018-09-21T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 67 - }, - "2831": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 41, - "t2": 13 - }, - "2838": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 13, - "t2": 7 - }, - "2849": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 13 - }, - "2863": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 13 - }, - "2877": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 13, - "t2": 15 - }, - "2882": { - "d": 16, - "dB": "2018-12-04T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 42, - "t2": 13 - }, - "2895": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 13, - "t2": 19 - }, - "2915": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 13, - "t2": 14 - }, - "2927": { - "d": 20, - "dB": "2019-01-13T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 9, - "t2": 13 - }, - "2743": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 5, - "t2": 19 - }, - "2758": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 5 - }, - "2763": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 7, - "t2": 5 - }, - "2774": { - "d": 5, - "dB": "2018-09-15T15:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 5, - "t2": 18 - }, - "2803": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 42 - }, - "2817": { - "d": 9, - "dB": "2018-10-07T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 5 - }, - "2822": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 5, - "t2": 14 - }, - "2836": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 12, - "t2": 5 - }, - "2842": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 20 - }, - "2872": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 5 - }, - "2884": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 5, - "t2": 67 - }, - "2903": { - "d": 18, - "dB": "2018-12-18T18:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 5, - "t2": 10 - }, - "2918": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 68, - "t2": 5 - }, - "2923": { - "d": 20, - "dB": "2019-01-11T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 5, - "t2": 12 - }, - "2934": { - "d": 21, - "dB": "2019-01-20T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 9 - }, - "2946": { - "d": 22, - "dB": "2019-01-27T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 15, - "t2": 5 - }, - "2962": { - "d": 24, - "dB": "2019-02-09T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 42, - "t2": 5 - }, - "2794": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 5, - "t2": 15 - }, - "2900": { - "d": 17, - "dB": "2018-12-09T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 41, - "t2": 5 - }, - "2739": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 68 - }, - "2778": { - "d": 5, - "dB": "2018-09-16T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 8, - "t2": 68 - }, - "2819": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 67, - "t2": 68 - }, - "2829": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 16 - }, - "2840": { - "d": 11, - "dB": "2018-10-28T14:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 20, - "t2": 68 - }, - "2870": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 14 - }, - "2876": { - "d": 15, - "dB": "2018-12-02T16:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 9, - "t2": 68 - }, - "2890": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 68, - "t2": 10 - }, - "2894": { - "d": 17, - "dB": "2018-12-09T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 12, - "t2": 68 - }, - "2911": { - "d": 18, - "dB": "2018-12-15T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 41 - }, - "2737": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 15, - "t2": 7 - }, - "2744": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 7, - "t2": 8 - }, - "2775": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 7, - "t2": 16 - }, - "2795": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 7, - "t2": 18 - }, - "2811": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 41, - "t2": 7 - }, - "2812": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 42, - "t2": 7 - }, - "2823": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 7, - "t2": 12 - }, - "2759": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 19, - "t2": 7 - }, - "2788": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 68, - "t2": 7 - }, - "2843": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 7, - "t2": 67 - }, - "2856": { - "d": 13, - "dB": "2018-11-11T16:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 9, - "t2": 7 - }, - "2881": { - "d": 15, - "dB": "2018-12-02T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 7 - }, - "2885": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 14 - }, - "2898": { - "d": 17, - "dB": "2018-12-08T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 20, - "t2": 7 - }, - "2924": { - "d": 20, - "dB": "2019-01-13T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 7, - "t2": 15 - }, - "2943": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 7, - "t2": 13 - }, - "2952": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 7 - }, - "2963": { - "d": 24, - "dB": "2019-02-08T19:45:00Z", - "t1s": 1, - "t2s": 2, - "t1": 7, - "t2": 9 - }, - "2738": { - "d": 1, - "dB": "2018-08-11T17:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 8, - "t2": 13 - }, - "2771": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 41, - "t2": 8 - }, - "2784": { - "d": 6, - "dB": "2018-09-22T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 8 - }, - "2798": { - "d": 7, - "dB": "2018-09-25T17:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 8, - "t2": 19 - }, - "2805": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 8 - }, - "2826": { - "d": 10, - "dB": "2018-10-20T18:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 8, - "t2": 10 - }, - "2832": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 42, - "t2": 8 - }, - "2846": { - "d": 12, - "dB": "2018-11-04T14:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 8, - "t2": 14 - }, - "2859": { - "d": 13, - "dB": "2018-11-11T16:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 8 - }, - "2867": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 8, - "t2": 16 - }, - "2896": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 67, - "t2": 8 - }, - "2908": { - "d": 18, - "dB": "2019-01-08T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 8, - "t2": 15 - }, - "2928": { - "d": 20, - "dB": "2019-01-13T14:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 8, - "t2": 20 - }, - "2932": { - "d": 21, - "dB": "2019-01-20T16:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 8 - }, - "2966": { - "d": 24, - "dB": "2019-02-10T14:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 8, - "t2": 67 - }, - "2888": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 9 - }, - "2734": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 12, - "t2": 20 - }, - "2746": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 13, - "t2": 12 - }, - "2804": { - "d": 8, - "dB": "2018-09-30T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 12, - "t2": 9 - }, - "2875": { - "d": 15, - "dB": "2018-12-01T16:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 12, - "t2": 18 - }, - "2910": { - "d": 18, - "dB": "2018-12-16T14:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 12 - }, - "2914": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 12, - "t2": 10 - }, - "2736": { - "d": 1, - "dB": "2018-08-10T20:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 9, - "t2": 10 - }, - "2747": { - "d": 2, - "dB": "2018-08-19T19:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 67, - "t2": 9 - }, - "2756": { - "d": 3, - "dB": "2018-08-26T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 9, - "t2": 20 - }, - "2776": { - "d": 5, - "dB": "2018-09-16T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 9, - "t2": 14 - }, - "2785": { - "d": 6, - "dB": "2018-09-23T19:00:00Z", - "t1s": 4, - "t2s": 2, - "t1": 18, - "t2": 9 - }, - "2796": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 9, - "t2": 41 - }, - "2827": { - "d": 10, - "dB": "2018-10-21T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 9 - }, - "2845": { - "d": 12, - "dB": "2018-11-04T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 15, - "t2": 9 - }, - "2862": { - "d": 14, - "dB": "2018-11-25T20:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 42, - "t2": 9 - }, - "2912": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 9 - }, - "1138": { - "d": 38, - "dB": "2018-05-19T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 9, - "t2": 42 - }, - "2959": { - "d": 23, - "dB": "2019-02-02T20:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 68, - "t2": 9 - }, - "2945": { - "d": 22, - "dB": "2019-01-25T19:45:00Z", - "t1s": 1, - "t2s": 2, - "t1": 9, - "t2": 12 - }, - "2765": { - "d": 4, - "dB": "2018-08-31T18:45:00Z", - "t1s": 0, - "t2s": 1, - "t1": 18, - "t2": 19 - }, - "2787": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 15, - "t2": 19 - }, - "2847": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 42 - }, - "2858": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 67, - "t2": 19 - }, - "2868": { - "d": 14, - "dB": "2018-11-25T16:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 12 - }, - "2874": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 19 - }, - "2889": { - "d": 16, - "dB": "2018-12-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 19, - "t2": 16 - }, - "2761": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 10, - "t2": 67 - }, - "2764": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 14, - "t2": 10 - }, - "2782": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 16, - "t2": 10 - }, - "2809": { - "d": 8, - "dB": "2018-09-30T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 10 - }, - "2821": { - "d": 9, - "dB": "2018-10-05T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 19 - }, - "2841": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 10, - "t2": 15 - }, - "2851": { - "d": 12, - "dB": "2018-11-03T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 10 - }, - "2861": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 10, - "t2": 42 - }, - "2901": { - "d": 17, - "dB": "2019-01-16T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 18 - }, - "2931": { - "d": 20, - "dB": "2019-01-13T16:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 10, - "t2": 41 - }, - "2937": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 67, - "t2": 10 - }, - "2951": { - "d": 22, - "dB": "2019-01-27T19:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 10, - "t2": 16 - }, - "2957": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 13, - "t2": 10 - }, - "2971": { - "d": 24, - "dB": "2019-02-10T14:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 10, - "t2": 68 - }, - "1048": { - "d": 29, - "dB": "2018-03-10T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 12, - "t2": 15 - }, - "2754": { - "d": 3, - "dB": "2018-08-26T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 12, - "t2": 14 - }, - "2762": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 12 - }, - "2772": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 42, - "t2": 12 - }, - "2855": { - "d": 13, - "dB": "2018-11-09T19:45:00Z", - "t1s": 0, - "t2s": 0, - "t1": 12, - "t2": 41 - }, - "2935": { - "d": 21, - "dB": "2019-01-18T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 12, - "t2": 42 - }, - "2955": { - "d": 23, - "dB": "2019-02-01T19:45:00Z", - "t1s": 4, - "t2s": 0, - "t1": 12, - "t2": 19 - }, - "2887": { - "d": 16, - "dB": "2018-12-04T20:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 15, - "t2": 12 - }, - "2964": { - "d": 24, - "dB": "2019-02-10T16:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 14, - "t2": 12 - }, - "1081": { - "d": 32, - "dB": "2018-04-07T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 13, - "t2": 8 - }, - "2797": { - "d": 7, - "dB": "2018-09-25T17:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 13, - "t2": 16 - }, - "2818": { - "d": 9, - "dB": "2018-10-07T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 13, - "t2": 20 - }, - "2906": { - "d": 18, - "dB": "2018-12-16T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 18, - "t2": 13 - }, - "2936": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 1, - "t2s": 5, - "t1": 13, - "t2": 41 - }, - "2965": { - "d": 24, - "dB": "2019-02-10T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 15, - "t2": 13 - }, - "3265": { - "d": 10, - "dB": "2018-10-28T13:30:00Z", - "t1s": 0, - "t2s": 4, - "t1": 23, - "t2": 25 - }, - "3276": { - "d": 11, - "dB": "2018-11-04T16:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 25, - "t2": 26 - }, - "3285": { - "d": 12, - "dB": "2018-11-11T14:15:00Z", - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 22 - }, - "3314": { - "d": 15, - "dB": "2018-12-05T19:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 69, - "t2": 25 - }, - "3341": { - "d": 18, - "dB": "2018-12-22T15:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 25, - "t2": 29 - }, - "3371": { - "d": 21, - "dB": "2019-01-02T19:45:00Z", - "t1s": 0, - "t2s": 0, - "t1": 25, - "t2": 35 - }, - "3390": { - "d": 23, - "dB": "2019-01-20T16:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 71, - "t2": 24 - }, - "3168": { - "d": 1, - "dB": "2018-08-10T21:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 29 - }, - "3180": { - "d": 2, - "dB": "2018-08-18T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 29, - "t2": 69 - }, - "1980": { - "d": 1, - "dB": "2018-08-20T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 49, - "t2": 54 - }, - "1985": { - "d": 2, - "dB": "2018-08-25T20:15:00Z", - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 72 - }, - "2024": { - "d": 6, - "dB": "2018-09-25T20:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 54, - "t2": 73 - }, - "2077": { - "d": 11, - "dB": "2018-11-03T12:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 47, - "t2": 54 - }, - "2089": { - "d": 12, - "dB": "2018-11-10T17:30:00Z", - "t1s": 3, - "t2s": 2, - "t1": 54, - "t2": 57 - }, - "2108": { - "d": 14, - "dB": "2018-12-02T15:15:00Z", - "t1s": 1, - "t2s": 1, - "t1": 53, - "t2": 54 - }, - "2127": { - "d": 16, - "dB": "2018-12-15T15:15:00Z", - "t1s": 2, - "t2s": 3, - "t1": 74, - "t2": 54 - }, - "2133": { - "d": 17, - "dB": "2018-12-22T15:15:00Z", - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 56 - }, - "2835": { - "d": 11, - "dB": "2018-10-27T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 41 - }, - "2893": { - "d": 17, - "dB": "2018-12-08T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 14, - "t2": 42 - }, - "2905": { - "d": 18, - "dB": "2019-01-16T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 14, - "t2": 20 - }, - "2799": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 67, - "t2": 14 - }, - "2802": { - "d": 8, - "dB": "2018-09-29T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 16, - "t2": 14 - }, - "2815": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 15 - }, - "2854": { - "d": 13, - "dB": "2018-11-10T16:00:00Z", - "t1s": 2, - "t2s": 4, - "t1": 14, - "t2": 18 - }, - "2944": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 14, - "t2": 68 - }, - "2735": { - "d": 1, - "dB": "2018-08-12T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 42 - }, - "2742": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 42, - "t2": 15 - }, - "2752": { - "d": 3, - "dB": "2018-08-25T20:00:00Z", - "t1s": 4, - "t2s": 1, - "t1": 42, - "t2": 68 - }, - "2768": { - "d": 4, - "dB": "2018-09-01T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 68, - "t2": 15 - }, - "2777": { - "d": 5, - "dB": "2018-09-15T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 41 - }, - "2806": { - "d": 8, - "dB": "2018-09-30T15:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 15, - "t2": 67 - }, - "2852": { - "d": 13, - "dB": "2018-11-10T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 16, - "t2": 15 - }, - "2866": { - "d": 14, - "dB": "2018-11-25T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 15, - "t2": 20 - }, - "2916": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 18 - }, - "2940": { - "d": 21, - "dB": "2019-01-20T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 20, - "t2": 15 - }, - "2958": { - "d": 23, - "dB": "2019-02-03T14:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 67, - "t2": 15 - }, - "1085": { - "d": 33, - "dB": "2018-04-13T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 19 - }, - "2732": { - "d": 1, - "dB": "2018-08-11T20:00:00Z", - "t1s": 3, - "t2s": 4, - "t1": 16, - "t2": 67 - }, - "2749": { - "d": 2, - "dB": "2018-08-18T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 20, - "t2": 16 - }, - "2813": { - "d": 9, - "dB": "2018-10-06T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 16, - "t2": 41 - }, - "2902": { - "d": 18, - "dB": "2019-01-08T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 16 - }, - "2930": { - "d": 20, - "dB": "2019-01-23T18:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 67, - "t2": 16 - }, - "2970": { - "d": 24, - "dB": "2019-02-09T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 41, - "t2": 16 - }, - "2833": { - "d": 11, - "dB": "2018-10-27T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 18 - }, - "2755": { - "d": 3, - "dB": "2018-08-24T20:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 41 - }, - "2886": { - "d": 16, - "dB": "2018-12-05T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 18, - "t2": 20 - }, - "2926": { - "d": 20, - "dB": "2019-01-11T19:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 18, - "t2": 68 - }, - "2942": { - "d": 22, - "dB": "2019-01-27T16:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 42, - "t2": 18 - }, - "2967": { - "d": 24, - "dB": "2019-02-10T20:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 18 - }, - "2748": { - "d": 2, - "dB": "2018-08-17T18:45:00Z", - "t1s": 1, - "t2s": 0, - "t1": 68, - "t2": 18 - }, - "2824": { - "d": 10, - "dB": "2018-10-19T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 18, - "t2": 67 - }, - "2779": { - "d": 5, - "dB": "2018-09-14T17:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 19, - "t2": 20 - }, - "2921": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 41, - "t2": 19 - }, - "2939": { - "d": 21, - "dB": "2019-01-19T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 19 - }, - "2948": { - "d": 22, - "dB": "2019-01-26T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 67 - }, - "2792": { - "d": 7, - "dB": "2018-09-26T17:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 20 - }, - "2879": { - "d": 15, - "dB": "2018-12-02T16:00:00Z", - "t1s": 1, - "t2s": 4, - "t1": 20, - "t2": 41 - }, - "2919": { - "d": 19, - "dB": "2018-12-22T20:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 20, - "t2": 67 - }, - "2960": { - "d": 23, - "dB": "2019-02-02T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 20, - "t2": 42 - }, - "1973": { - "d": 1, - "dB": "2018-08-17T20:15:00Z", - "t1s": 0, - "t2s": 3, - "t1": 60, - "t2": 63 - }, - "1990": { - "d": 2, - "dB": "2018-08-27T18:15:00Z", - "t1s": 1, - "t2s": 2, - "t1": 63, - "t2": 51 - }, - "1998": { - "d": 3, - "dB": "2018-09-02T10:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 63, - "t2": 49 - }, - "2016": { - "d": 5, - "dB": "2018-09-23T10:00:00Z", - "t1s": 2, - "t2s": 6, - "t1": 63, - "t2": 55 - }, - "2037": { - "d": 7, - "dB": "2018-09-30T16:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 63, - "t2": 48 - }, - "2046": { - "d": 8, - "dB": "2018-10-06T14:15:00Z", - "t1s": 0, - "t2s": 1, - "t1": 58, - "t2": 63 - }, - "2081": { - "d": 11, - "dB": "2018-11-04T15:15:00Z", - "t1s": 1, - "t2s": 1, - "t1": 64, - "t2": 63 - }, - "2087": { - "d": 12, - "dB": "2018-11-09T20:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 63, - "t2": 52 - }, - "2096": { - "d": 13, - "dB": "2018-11-24T17:30:00Z", - "t1s": 2, - "t2s": 2, - "t1": 73, - "t2": 63 - }, - "2128": { - "d": 16, - "dB": "2018-12-16T19:45:00Z", - "t1s": 0, - "t2s": 5, - "t1": 63, - "t2": 59 - }, - "2871": { - "d": 14, - "dB": "2018-11-24T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 41, - "t2": 67 - }, - "1037": { - "d": 28, - "dB": "2018-03-04T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 5, - "t2": 41 - }, - "2791": { - "d": 6, - "dB": "2018-09-22T18:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 41, - "t2": 42 - }, - "2878": { - "d": 15, - "dB": "2018-12-01T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 67, - "t2": 42 - } - }, - "Ne": { - "2981": { - "d": 25, - "dB": "2019-02-17T20:00:00Z", - "t1": 4, - "t2": 2 - }, - "2973": { - "d": 25, - "dB": "2019-02-17T14:00:00Z", - "t1": 3, - "t2": 10 - }, - "2954": { - "d": 23, - "dB": "2019-02-13T18:30:00Z", - "t1": 5, - "t2": 8 - }, - "2979": { - "d": 25, - "dB": "2019-02-16T19:00:00Z", - "t1": 67, - "t2": 7 - }, - "2977": { - "d": 25, - "dB": "2019-02-16T16:00:00Z", - "t1": 9, - "t2": 42 - }, - "2975": { - "d": 25, - "dB": "2019-02-17T14:00:00Z", - "t1": 12, - "t2": 15 - }, - "2978": { - "d": 25, - "dB": "2019-02-16T19:00:00Z", - "t1": 13, - "t2": 8 - }, - "2976": { - "d": 25, - "dB": "2019-02-15T19:45:00Z", - "t1": 18, - "t2": 14 - }, - "2972": { - "d": 25, - "dB": "2019-02-16T19:00:00Z", - "t1": 16, - "t2": 19 - }, - "2980": { - "d": 25, - "dB": "2019-02-17T16:00:00Z", - "t1": 68, - "t2": 20 - }, - "2974": { - "d": 25, - "dB": "2019-02-17T14:00:00Z", - "t1": 5, - "t2": 41 - } - }, - "k": "0fbbee" -} diff --git a/src/test/resources/__files/mpgstats.ligue-1.20190807.json b/src/test/resources/__files/mpgstats.ligue-1.20190807.json deleted file mode 100644 index a56a594..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20190807.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-08-05T11:24:37Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2019-2020","i":9,"n":"Ligue 1 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":0,"lD":0}},"lS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38}},"mxD":2,"np":757,"le":{"1":"Ligue-1","4":"Ligue-2","2":"Premier-League","3":"Liga"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":39,"s":{"n":0,"Og":"18","Os":"123","On":"21","Oa":"5.86","Od":"1.5","Ap":"21","p":{"33":{"n":4,"s":1},"35":{"n":3},"36":{"n":5},"37":{"n":7,"g":1},"38":{"n":5}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":23,"s":{"n":0,"Os":"148","On":"25","Oa":"5.94","Od":"0.64","Dp":"25","p":{"31":{"n":5},"32":{"n":5}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":34,"s":{"n":0,"Og":"12","Os":"175","On":"30","Oa":"5.83","Od":"1.18","Mp":"14","Ap":"16","p":{"34":{"n":5.5,"g":1},"35":{"n":4.5},"36":{"n":6,"g":1},"37":{"n":7,"g":1},"38":{"n":4}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":12,"s":{"n":0,"Og":"3","Os":"169","On":"31","Oa":"5.45","Od":"1.23","Mp":"27","Ap":"4","p":{"31":{"n":7,"s":1},"32":{"n":3},"33":{"n":4.5,"s":1},"34":{"n":4},"35":{"n":4},"36":{"n":5,"s":1},"37":{"n":6.5},"38":{"n":4}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":20,"s":{"n":0,"Os":"147","On":"26","Oa":"5.65","Od":"1.18","Mp":"26","p":{"31":{"n":6.5},"32":{"n":3.5},"33":{"n":5.5},"35":{"n":5.5},"36":{"n":5.5},"38":{"n":3.5}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":50,"s":{"n":0,"Og":"33","Os":"194","On":"29","Oa":"6.71","Od":"1.08","Mp":"2","Ap":"27","p":{"31":{"n":5,"s":1},"32":{"n":4.5},"33":{"n":8,"g":3},"37":{"n":8,"g":2},"38":{"n":6,"g":1}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":28,"s":{"n":0,"Og":"3","Os":"179","On":"30","Oa":"5.97","Od":"0.93","Mp":"8","Dp":"22","p":{"33":{"n":6},"34":{"n":4.5},"35":{"n":6},"36":{"n":5},"38":{"n":4}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":16,"s":{"n":0,"Og":"3","Oao":"1","Os":"126","On":"22","Oa":"5.75","Od":"1","Mp":"8","Dp":"14","p":{"32":{"n":4,"a":1},"37":{"n":5},"38":{"n":3.5}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"94","On":"19","Oa":"4.97","Od":"0.97","Mp":"6","Dp":"13","p":{"31":{"n":4.5},"32":{"n":5,"s":1},"33":{"n":4.5},"34":{"n":4,"s":1},"35":{"n":5.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5},"38":{"n":3.5}}},"c":2},{"i":100,"n":"Areola","f":"Alphonse","p":"G","r":20,"s":{"n":0,"Os":"118","On":"21","Oa":"5.62","Od":"0.86","Gp":"21","p":{"32":{"n":2.5},"33":{"n":5.5},"35":{"n":5},"37":{"n":6}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":12,"s":{"n":0},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":10,"s":{"n":0,"Oao":"1","Os":"123","On":"24","Oa":"5.15","Od":"1.11","Dp":"24","p":{"31":{"n":4.5},"32":{"n":3},"33":{"n":5.5},"34":{"n":3,"a":1},"35":{"n":5.5}}},"c":2},{"i":432,"n":"Diallo","f":"Abdou","p":"D","r":10,"s":{"n":0},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":7,"s":{"n":0,"Og":"3","Os":"121","On":"22","Oa":"5.52","Od":"0.95","Mp":"17","Dp":"1","Ap":"4","p":{"31":{"n":5},"37":{"n":5,"s":1}}},"c":2},{"i":473,"n":"Maisonnial","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":520,"n":"Descamps","f":"Remy","p":"G","r":1,"s":{"n":0},"c":2},{"i":647,"n":"Herrera","f":"Ander","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"125","On":"22","Oa":"5.68","Od":"0.85","Mp":"21","Dp":"1","p":{"32":{"n":5,"e":3486,"c":31},"36":{"n":5,"e":3524,"c":31},"37":{"n":5.5,"e":3533,"c":31,"s":1}}},"c":2},{"i":657,"n":"Gueye","f":"Idrissa","p":"M","r":19,"s":{"n":0,"Os":"188","On":"33","Oa":"5.71","Od":"0.93","Mp":"33","p":{"31":{"n":6,"e":3471,"c":22},"32":{"n":7,"e":3487,"c":22},"33":{"n":6.5,"e":3490,"c":22},"34":{"n":3.5,"e":3501,"c":22},"35":{"n":7,"e":3512,"c":22},"36":{"n":6.5,"e":3520,"c":22},"37":{"n":6,"e":3532,"c":22},"38":{"n":5.5,"e":3546,"c":22}}},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":40,"s":{"n":0,"Og":"15","Os":"109","On":"17","Oa":"6.41","Od":"1.41","Mp":"5","Ap":"12","p":{"33":{"n":4.5,"s":1},"34":{"n":3},"35":{"n":6.5,"g":1},"36":{"n":7,"g":1}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"124","On":"23","Oa":"5.39","Od":"1.26","Mp":"15","Dp":"6","Ap":"2","p":{"31":{"n":5},"32":{"n":2.5},"33":{"n":7},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":6},"37":{"n":6},"38":{"n":5.5,"s":1}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":8,"s":{"n":0,"Og":"3","Os":"103","On":"22","Oa":"4.68","Od":"0.59","Mp":"2","Ap":"20","p":{"31":{"n":5.5,"g":1},"34":{"n":3.5},"36":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":2},{"i":1325,"n":"Jes\u00e9","f":"","p":"A","r":2,"s":{"n":0,"Og":"2","Os":"63","On":"14","Oa":"4.5","Od":"0.93","Ap":"14","p":{"31":{"n":5,"e":2273,"c":60},"32":{"n":3.5,"e":2288,"c":60},"33":{"n":4,"e":2294,"c":60},"35":{"n":4,"e":2314,"c":60},"36":{"n":5,"e":2330,"c":60,"s":1},"37":{"n":4.5,"e":2335,"c":60,"s":1},"38":{"n":6,"e":2350,"c":60,"g":1,"s":1}}},"c":2},{"i":1369,"n":"Bulka","f":"Marcin","p":"G","r":1,"s":{"n":0},"c":2},{"i":1609,"n":"Sarabia","f":"Pablo","p":"M","r":16,"s":{"n":0,"Og":"12","Os":"184","On":"33","Oa":"5.59","Od":"1.41","Mp":"24","Ap":"9","p":{"31":{"n":6,"e":2281,"c":55},"32":{"n":7,"e":2288,"c":55,"g":1},"34":{"n":7,"e":2311,"c":55},"35":{"n":5,"e":2315,"c":55},"36":{"n":3,"e":2331,"c":55},"37":{"n":6,"e":2333,"c":55,"g":1}}},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":5,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2"},"c":2},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":7,"s":{"n":0,"Os":"59","On":"12","Oa":"4.96","Od":"0.56","Mp":"4","Dp":"8"},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":3,"s":{"n":0,"Os":"14","On":"3","Oa":"4.83","Od":"0.62","Mp":"3"},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":2,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":5,"s":{"n":0,"Os":"81","On":"17","Oa":"4.79","Od":"0.69","Mp":"2","Dp":"15","p":{"31":{"n":5.5},"32":{"n":3},"33":{"n":5.5},"34":{"n":4},"36":{"n":5},"37":{"n":5,"s":1}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"125","On":"25","Oa":"5.02","Od":"0.9","Mp":"9","Ap":"16","p":{"32":{"n":4,"s":1},"33":{"n":6},"35":{"n":4.5,"s":1},"37":{"n":4.5,"s":1}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":3,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"36":{"n":5},"37":{"n":6}}},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":16,"s":{"n":0,"Og":"1","Os":"143","On":"27","Oa":"5.31","Od":"0.89","Dp":"27","p":{"31":{"n":6,"g":1,"s":1},"32":{"n":3.5,"s":1},"33":{"n":5},"37":{"n":6},"38":{"n":4.5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":15,"s":{"n":0,"Og":"1","Os":"130","On":"25","Oa":"5.2","Od":"0.96","Mp":"10","Dp":"15","p":{"31":{"n":5},"32":{"n":5,"g":1},"34":{"n":2.5},"35":{"n":5},"36":{"n":5},"38":{"n":5,"s":1}}},"c":2},{"i":3367,"n":"Paredes","f":"Leandro","p":"M","r":13,"s":{"n":0,"Os":"84","On":"15","Oa":"5.63","Od":"0.94","Mp":"15","p":{"31":{"n":6},"32":{"n":3.5},"33":{"n":6.5},"34":{"n":6},"35":{"n":5},"36":{"n":5},"37":{"n":8},"38":{"n":5}}},"c":2},{"i":3505,"n":"Toufiqui","f":"Azzeddine","p":"M","r":1,"s":{"n":0},"c":2},{"i":3764,"n":"Zagre","f":"Arthur","p":"D","r":1,"s":{"n":0},"c":2},{"i":3770,"n":"Hemans Arday","f":"Isaac","p":"D","r":1,"s":{"n":0},"c":2},{"i":3778,"n":"Guclu","f":"Metehan","p":"A","r":1,"s":{"n":0},"c":2},{"i":4029,"n":"Kouassi","f":"Nianzou","p":"D","r":1,"s":{"n":0},"c":2},{"i":4030,"n":"Aouchiche","f":"Adil","p":"M","r":1,"s":{"n":0},"c":2},{"i":4032,"n":"Yapi","f":"Romaric","p":"D","r":1,"s":{"n":0},"c":2},{"i":4033,"n":"Innocent","f":"Garissone","p":"G","r":1,"s":{"n":0},"c":2},{"i":4035,"n":"Bakker","f":"Mitchel","p":"D","r":5,"s":{"n":0},"c":2},{"i":4835,"n":"Mangonzo","f":"Jeremy","p":"M","r":1,"s":{"n":0},"c":2},{"i":4836,"n":"Hugonet","f":"Jean","p":"D","r":1,"s":{"n":0},"c":2},{"i":4837,"n":"Matoug","f":"Sami","p":"M","r":1,"s":{"n":0},"c":2},{"i":4866,"n":"Abdeldjelil","f":"Oussama","p":"A","r":8,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4}}},"c":2},{"i":4885,"n":"Wamangituka Fundu","f":"Silas","p":"A","r":25,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":5}}},"c":2},{"i":4913,"n":"Kant\u00e9","f":"Ousmane","p":"D","r":20,"s":{"s":"8","n":"2","a":"4","d":"1","Os":"8","On":"2","Oa":"4","Od":"1","Dp":"2","p":{"1":{"n":3},"2":{"n":5}}},"c":2},{"i":4927,"n":"Tanasijevic","f":"Strahinja","p":"D","r":5,"s":{"n":0},"c":2},{"i":4942,"n":"Bamba","f":"Axel","p":"D","r":1,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Og":"1","Os":"10","On":"2","Oa":"5","Od":"1","Dp":"2","p":{"1":{"n":4},"2":{"n":6,"g":1}}},"c":2},{"i":5023,"n":"Mandouki","f":"Cyril","p":"M","r":14,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Mp":"1","Dp":"1","p":{"1":{"n":3.5},"2":{"n":5}}},"c":2},{"i":5042,"n":"Yohou","f":"Samuel","p":"D","r":18,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"1":{"n":3.5}}},"c":2},{"i":5068,"n":"Sarr","f":"Adama","p":"A","r":7,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":2},{"i":5132,"n":"Dilo","f":"Christopher","p":"G","r":3,"s":{"n":0},"c":2},{"i":5136,"n":"Maletic","f":"Marko","p":"A","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1}}},"c":2},{"i":5138,"n":"Lopez","f":"Julien","p":"M","r":16,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Os":"9","On":"2","Oa":"4.75","Od":"0.75","Mp":"2","p":{"1":{"n":4},"2":{"n":5.5}}},"c":2},{"i":5146,"n":"Nomenjanahary","f":"Lala\u00efna","p":"M","r":17,"s":{"s":"6","n":"1","a":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"2":{"n":6}}},"c":2},{"i":5173,"n":"Demarconnay","f":"Vincent","p":"G","r":24,"s":{"s":"7","n":"2","a":"3.5","d":"0.5","Os":"7","On":"2","Oa":"3.5","Od":"0.5","Gp":"2","p":{"1":{"n":3},"2":{"n":4}}},"c":2},{"i":5181,"n":"Martin","f":"Florian","p":"M","r":17,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"1":{"n":4},"2":{"n":5}}},"c":2},{"i":5209,"n":"Armand","f":"Romain","p":"A","r":15,"s":{"s":"9","n":"2","a":"4.5","d":"1","Os":"9","On":"2","Oa":"4.5","Od":"1","Mp":"2","p":{"1":{"n":3.5},"2":{"n":5.5}}},"c":2},{"i":5220,"n":"Pitroipa","f":"Jonathan","p":"A","r":13,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"2","p":{"1":{"n":3.5},"2":{"n":4.5}}},"c":2},{"i":5344,"n":"Tre","f":"Jason","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"2":{"n":4}}},"c":2},{"i":5354,"n":"Garcia","f":"Thomas","p":"D","r":5,"s":{"n":0},"c":2},{"i":5368,"n":"Abdi","f":"Ali","p":"D","r":1,"s":{"n":0},"c":2},{"i":5371,"n":"Alceus","f":"Bryan","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"2":{"n":5,"s":1}}},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":8,"s":{"n":0,"Os":"118","On":"23","Oa":"5.13","Od":"0.47","Mp":"23","p":{"31":{"n":5,"s":1},"32":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":5},"37":{"n":4.5},"38":{"n":5.5}}},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":19,"s":{"n":0,"Os":"212","On":"37","Oa":"5.73","Od":"0.96","Gp":"37","p":{"31":{"n":7},"32":{"n":5},"33":{"n":4.5},"34":{"n":4},"35":{"n":5},"36":{"n":6},"37":{"n":5}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":10,"s":{"n":0,"Og":"7","Os":"167","On":"35","Oa":"4.77","Od":"1.04","Mp":"3","Ap":"32","p":{"31":{"n":5.5},"32":{"n":4,"s":1},"33":{"n":4,"s":1},"34":{"n":7,"g":1},"35":{"n":4},"36":{"n":4},"37":{"n":4.5},"38":{"n":5.5}}},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":11,"s":{"n":0,"Og":"10","Os":"187","On":"37","Oa":"5.07","Od":"1.12","Mp":"13","Ap":"24","p":{"31":{"n":7,"g":1},"32":{"n":3},"33":{"n":4.5},"34":{"n":4},"35":{"n":4},"36":{"n":4.5,"s":1},"37":{"n":4},"38":{"n":5}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"109","On":"22","Oa":"4.95","Od":"0.69","Mp":"20","Ap":"2","p":{"38":{"n":6,"g":1}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":10,"s":{"n":0,"Os":"112","On":"23","Oa":"4.89","Od":"0.67","Mp":"6","Dp":"17","p":{"31":{"n":5},"32":{"n":3},"33":{"n":5},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":5},"37":{"n":5},"38":{"n":5.5}}},"c":3},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"72","On":"14","Oa":"5.18","Od":"0.7","Mp":"14","p":{"31":{"n":4.5,"e":3032,"c":4},"33":{"n":4.5,"e":3059,"c":4,"s":1},"34":{"n":6,"e":3071,"c":4},"35":{"n":4.5,"e":3075,"c":4},"36":{"n":5,"e":3091,"c":4,"s":1},"37":{"n":5,"e":3099,"c":4,"s":1}}},"c":3},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":8,"s":{"n":0,"Oao":"1","Os":"100","On":"21","Oa":"4.76","Od":"0.7","Dp":"21"},"c":3},{"i":168,"n":"Mexer","f":"","p":"D","r":12,"s":{"n":0,"Os":"153","On":"29","Oa":"5.29","Od":"1","Dp":"29","p":{"31":{"n":4.5,"e":3033,"c":20},"32":{"n":5,"e":3049,"c":20},"34":{"n":6,"e":3070,"c":20},"37":{"n":6,"e":3100,"c":20},"38":{"n":7,"e":3111,"c":20}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":12,"s":{"n":0,"Os":"86","On":"16","Oa":"5.38","Od":"0.93","Dp":"16","p":{"31":{"n":6},"33":{"n":4.5},"34":{"n":3.5},"37":{"n":5},"38":{"n":5.5}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":5,"s":{"n":0,"Os":"28","On":"6","Oa":"4.67","Od":"0.69","Dp":"6","p":{"38":{"n":5,"s":1}}},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":14,"s":{"n":0,"Og":"3","Os":"111","On":"23","Oa":"4.83","Od":"0.88","Mp":"9","Ap":"14","p":{"31":{"n":6.5,"g":1},"33":{"n":4},"34":{"n":6,"g":1},"35":{"n":4}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Dp":"1"},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":8,"s":{"n":0,"Os":"150","On":"30","Oa":"5.02","Od":"0.74","Mp":"2","Dp":"28","p":{"31":{"n":5.5},"33":{"n":5.5,"s":1},"34":{"n":3.5},"35":{"n":5},"36":{"n":5},"37":{"n":5}}},"c":3},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":10,"s":{"n":0,"Og":"3","Os":"74","On":"16","Oa":"4.63","Od":"0.99","Ap":"16","p":{"32":{"n":4.5,"e":3051,"c":14,"s":1},"33":{"n":4,"e":3053,"c":14,"s":1},"34":{"n":4,"e":3069,"c":14,"s":1},"35":{"n":4.5,"e":3073,"c":14,"s":1},"36":{"n":6.5,"e":3090,"c":14,"g":1,"s":1},"37":{"n":7,"e":3093,"c":14,"g":1},"38":{"n":6,"e":3102,"c":14,"g":1}}},"c":3},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":9,"s":{"n":0,"Os":"146","On":"30","Oa":"4.88","Od":"0.85","Mp":"5","Dp":"25","p":{"31":{"n":4.5,"e":3041,"c":8},"32":{"n":5,"e":3048,"c":8,"s":1},"33":{"n":5.5,"e":3055,"c":8,"s":1},"37":{"n":4.5,"e":3097,"c":8,"s":1},"38":{"n":5,"e":3107,"c":8}}},"c":3},{"i":512,"n":"Mancini","f":"Daniel","p":"M","r":6,"s":{"n":0},"c":3},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":10,"s":{"n":0,"Os":"213","On":"38","Oa":"5.62","Od":"1.13","Gp":"38","p":{"31":{"n":6,"e":3038,"c":67},"32":{"n":5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":3.5,"e":3066,"c":67},"35":{"n":6.5,"e":3079,"c":67},"36":{"n":7,"e":3089,"c":67},"37":{"n":6.5,"e":3093,"c":67},"38":{"n":5,"e":3109,"c":67}}},"c":3},{"i":1075,"n":"Maja","f":"Josh","p":"A","r":7,"s":{"n":0,"Og":"1","Os":"32","On":"7","Oa":"4.57","Od":"0.62","Ap":"7","p":{"32":{"n":4.5,"s":1},"33":{"n":6,"g":1}}},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":9,"s":{"n":0},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":12,"s":{"n":0,"Os":"181","On":"33","Oa":"5.5","Od":"0.71","Mp":"33","p":{"31":{"n":6},"32":{"n":3.5},"33":{"n":4.5},"34":{"n":6},"35":{"n":5},"36":{"n":6},"37":{"n":5.5},"38":{"n":6.5}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1","p":{"38":{"n":6}}},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0},"c":3},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":7,"s":{"n":0,"Os":"32","On":"7","Oa":"4.57","Od":"0.42","Mp":"7","p":{"33":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":4.5},"37":{"n":4}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":12,"s":{"n":0,"Og":"1","Os":"136","On":"25","Oa":"5.44","Od":"0.97","Dp":"25","p":{"31":{"n":6},"34":{"n":3},"35":{"n":5},"36":{"n":5},"38":{"n":5.5}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":12,"s":{"n":0,"Os":"50","On":"10","Oa":"5","Od":"0.67","Mp":"10"},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassin","p":"M","r":7,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.22","Mp":"4","p":{"34":{"n":4.5,"s":1},"35":{"n":5},"36":{"n":4.5,"s":1},"37":{"n":4.5,"s":1}}},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":11,"s":{"n":0,"Og":"3","Os":"107","On":"21","Oa":"5.1","Od":"0.78","Mp":"8","Ap":"13","p":{"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":7,"s":{"n":0,"Og":"2","Os":"110","On":"23","Oa":"4.8","Od":"0.67","Mp":"23","p":{"31":{"n":5.5},"32":{"n":4.5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":4},"36":{"n":4},"37":{"n":3.5},"38":{"n":4.5,"s":1}}},"c":3},{"i":3523,"n":"Lottin","f":"Albert-Nicolas","p":"M","r":1,"s":{"n":0},"c":3},{"i":3754,"n":"Lauray","f":"Alexandre","p":"D","r":3,"s":{"n":0},"c":3},{"i":3789,"n":"Bellanova","f":"Raoul","p":"D","r":3,"s":{"n":0},"c":3},{"i":3792,"n":"Hwang Ui-Jo","f":"","p":"A","r":13,"s":{"n":0},"c":3},{"i":3816,"n":"Benito","f":"Loris","p":"D","r":6,"s":{"n":0},"c":3},{"i":5452,"n":"Bakawa","f":"Dilanae","p":"M","r":1,"s":{"n":0},"c":3},{"i":5453,"n":"Cardoso","f":"David","p":"D","r":1,"s":{"n":0},"c":3},{"i":5454,"n":"Sow","f":"Ismael","p":"D","r":1,"s":{"n":0},"c":3},{"i":5455,"n":"Rouyard","f":"Davy","p":"G","r":1,"s":{"n":0},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":15,"s":{"n":0,"Og":"4","Os":"140","On":"27","Oa":"5.2","Od":"1","Mp":"20","Ap":"7","p":{"31":{"n":5.5,"s":1},"32":{"n":5},"33":{"n":5},"34":{"n":5.5},"35":{"n":4},"37":{"n":7.5,"g":1},"38":{"n":6}}},"c":4},{"i":31,"n":"Boudebouz","f":"Ryad","p":"M","r":13,"s":{"n":0,"Og":"1","Os":"96","On":"20","Oa":"4.8","Od":"0.95","Mp":"15","Ap":"5","p":{"31":{"n":6.5,"e":2274,"c":51,"s":1},"32":{"n":4.5,"e":2283,"c":51},"33":{"n":5.5,"e":2295,"c":51},"34":{"n":5,"e":2308,"c":51},"35":{"n":4.5,"e":2318,"c":51,"s":1},"36":{"n":6.5,"e":2329,"c":51},"37":{"n":4,"e":2332,"c":51},"38":{"n":4,"e":2343,"c":51}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":23,"s":{"n":0,"Os":"214","On":"37","Oa":"5.78","Od":"1.03","Gp":"37","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":6},"34":{"n":8},"35":{"n":5.5},"36":{"n":6},"37":{"n":7.5}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":26,"s":{"n":0,"Og":"8","Os":"183","On":"34","Oa":"5.4","Od":"1.16","Mp":"22","Ap":"12","p":{"31":{"n":5.5,"g":1},"32":{"n":5.5},"33":{"n":6,"g":1},"34":{"n":4.5},"35":{"n":8,"g":1},"36":{"n":3.5},"38":{"n":5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":15,"s":{"n":0,"Og":"1","Os":"166","On":"31","Oa":"5.35","Od":"1.07","Dp":"31","p":{"31":{"n":4.5},"32":{"n":6.5},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":6},"38":{"n":5.5}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"107","On":"23","Oa":"4.65","Od":"0.79","Mp":"16","Ap":"7"},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":8,"s":{"n":0,"Os":"114","On":"20","Oa":"5.7","Od":"0.89","Mp":"20"},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":11,"s":{"n":0,"Og":"5","Os":"146","On":"30","Oa":"4.88","Od":"0.95","Mp":"5","Ap":"25","p":{"31":{"n":4,"s":1},"32":{"n":4.5,"s":1},"33":{"n":4,"s":1}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":16,"s":{"n":0,"Og":"9","Os":"115","On":"23","Oa":"5","Od":"1.21","Ap":"23","p":{"31":{"n":5.5},"32":{"n":4.5},"34":{"n":7.5,"g":2},"35":{"n":4,"s":1},"36":{"n":4},"37":{"n":7,"g":2},"38":{"n":4}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":7,"s":{"n":0,"Oao":"1","Os":"6","On":"1","Oa":"6","Gp":"1","p":{"38":{"n":6,"a":1}}},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":3,"s":{"n":0},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":14,"s":{"n":0,"Os":"93","On":"18","Oa":"5.17","Od":"0.6","Mp":"5","Dp":"13","p":{"31":{"n":5,"s":1},"32":{"n":6,"s":1},"33":{"n":5,"s":1},"34":{"n":7},"35":{"n":5},"36":{"n":5},"37":{"n":5}}},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":14,"s":{"n":0,"Og":"3","Os":"132","On":"25","Oa":"5.28","Od":"0.79","Mp":"25","p":{"31":{"n":4.5},"32":{"n":6},"33":{"n":6},"34":{"n":6,"s":1},"35":{"n":6.5,"g":1,"s":1},"36":{"n":4.5},"37":{"n":6},"38":{"n":7,"g":1}}},"c":4},{"i":428,"n":"Lacroix","f":"L\u00e9o","p":"D","r":5,"s":{"n":0},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":31,"s":{"n":0,"Og":"13","Os":"178","On":"32","Oa":"5.58","Od":"1.45","Mp":"10","Ap":"22","p":{"31":{"n":7},"32":{"n":8,"g":1},"33":{"n":7},"34":{"n":6},"35":{"n":4},"36":{"n":3.5},"38":{"n":3.5}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":17,"s":{"n":0,"Og":"4","Os":"124","On":"24","Oa":"5.19","Od":"1.12","Mp":"4","Dp":"20","p":{"31":{"n":4.5},"32":{"n":8,"g":2},"33":{"n":6},"34":{"n":4.5},"35":{"n":3.5},"36":{"n":4.5},"38":{"n":5}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":5,"s":{"n":0,"Os":"35","On":"7","Oa":"5.07","Od":"0.42","Mp":"7"},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":7,"s":{"n":0,"Os":"99","On":"19","Oa":"5.21","Od":"0.71","Mp":"10","Dp":"9"},"c":4},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":8,"s":{"n":0,"Os":"49","On":"11","Oa":"4.5","Od":"0.48","Mp":"7","Ap":"4","p":{"31":{"n":5,"e":3034,"c":3,"s":1},"32":{"n":4.5,"e":3050,"c":3},"33":{"n":4.5,"e":3057,"c":3},"34":{"n":4.5,"e":3064,"c":3,"s":1},"35":{"n":4.5,"e":3072,"c":3,"s":1},"36":{"n":4,"e":3086,"c":3}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":3,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":17,"s":{"n":0,"Os":"202","On":"37","Oa":"5.46","Od":"0.88","Mp":"37","p":{"31":{"n":6},"32":{"n":6},"33":{"n":6},"34":{"n":7},"35":{"n":4.5},"36":{"n":5},"37":{"n":6},"38":{"n":5.5}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"131","On":"26","Oa":"5.04","Od":"0.99","Dp":"26","p":{"31":{"n":4}}},"c":4},{"i":2272,"n":"Fofana","f":"Wesley","p":"M","r":1,"s":{"n":0},"c":4},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":10,"s":{"n":0,"Os":"123","On":"25","Oa":"4.92","Od":"0.84","Mp":"2","Dp":"23","p":{"32":{"n":3,"e":3050,"c":3},"34":{"n":4.5,"e":3064,"c":3,"s":1},"38":{"n":6,"e":3104,"c":3}}},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":13,"s":{"n":0,"Og":"3","Os":"187","On":"36","Oa":"5.19","Od":"0.81","Dp":"36","p":{"31":{"n":5.5,"g":1},"32":{"n":5},"33":{"n":5.5},"35":{"n":4.5},"37":{"n":6},"38":{"n":5}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":14,"s":{"n":0,"Os":"84","On":"16","Oa":"5.28","Od":"1.07","Dp":"16","p":{"32":{"n":6},"33":{"n":6},"34":{"n":7.5},"35":{"n":5},"36":{"n":5},"37":{"n":5}}},"c":4},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":13,"s":{"n":0,"Og":"8","Os":"173","On":"35","Oa":"4.94","Od":"1.21","Mp":"20","Ap":"15","p":{"31":{"n":6.5,"e":3038,"c":67,"g":1},"32":{"n":3.5,"e":3045,"c":67},"33":{"n":5.5,"e":3057,"c":67},"34":{"n":3,"e":3066,"c":67},"35":{"n":7,"e":3079,"c":67,"g":1},"36":{"n":5,"e":3089,"c":67},"37":{"n":6.5,"e":3093,"c":67,"g":1},"38":{"n":4,"e":3109,"c":67}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":1,"s":{"n":0},"c":4},{"i":2963,"n":"Honorat","f":"Franck","p":"A","r":2,"s":{"n":0},"c":4},{"i":2990,"n":"Tshibuabua","f":"Marvin","p":"D","r":1,"s":{"n":0},"c":4},{"i":2991,"n":"Abi","f":"Charles Nathan","p":"A","r":2,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Ap":"2","p":{"38":{"n":5,"s":1}}},"c":4},{"i":2992,"n":"Benkhedim","f":"Bilal","p":"M","r":1,"s":{"n":0},"c":4},{"i":3765,"n":"Sissoko","f":"Nelson","p":"M","r":1,"s":{"n":0},"c":4},{"i":3772,"n":"Nade","f":"Mickael","p":"D","r":1,"s":{"n":0},"c":4},{"i":3788,"n":"Moukoudi","f":"Harold","p":"D","r":8,"s":{"n":0},"c":4},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":7,"s":{"n":0,"Os":"39","On":"8","Oa":"4.88","Od":"0.33","Mp":"8"},"c":7},{"i":104,"n":"J\u00falio Tavares","f":"","p":"A","r":14,"s":{"n":0,"Og":"5","Os":"165","On":"36","Oa":"4.58","Od":"1.08","Mp":"1","Ap":"35","p":{"31":{"n":6.5},"32":{"n":5},"33":{"n":4.5,"s":1},"34":{"n":5},"35":{"n":4},"36":{"n":6,"g":1},"37":{"n":4},"38":{"n":6,"g":1}}},"c":7},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":11,"s":{"n":0,"Og":"3","Os":"133","On":"26","Oa":"5.13","Od":"0.8","Mp":"26"},"c":7},{"i":165,"n":"Said","f":"Wesley","p":"A","r":14,"s":{"n":0,"Og":"4","Os":"162","On":"34","Oa":"4.78","Od":"1.07","Mp":"8","Dp":"1","Ap":"25","p":{"31":{"n":7.5,"g":1},"32":{"n":4.5},"33":{"n":8,"g":1},"34":{"n":4.5},"35":{"n":3},"36":{"n":5},"37":{"n":4.5},"38":{"n":7}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":11,"s":{"n":0,"Og":"1","Os":"126","On":"26","Oa":"4.87","Od":"0.7","Mp":"26","p":{"31":{"n":4.5},"32":{"n":6},"33":{"n":5},"36":{"n":5.5},"37":{"n":3.5},"38":{"n":5}}},"c":7},{"i":187,"n":"Sammaritano","f":"Frederic","p":"M","r":8,"s":{"n":0,"Os":"67","On":"14","Oa":"4.82","Od":"0.77","Mp":"14","p":{"33":{"n":4.5,"s":1},"34":{"n":5},"35":{"n":4.5,"s":1},"36":{"n":5,"s":1}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":10,"s":{"n":0,"Os":"104","On":"21","Oa":"4.95","Od":"0.77","Mp":"2","Dp":"19","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":6.5},"34":{"n":5},"35":{"n":4},"36":{"n":5},"38":{"n":4.5}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":13,"s":{"n":0,"Os":"145","On":"32","Oa":"4.53","Od":"0.76","Mp":"29","Dp":"1","Ap":"2","p":{"31":{"n":5.5},"32":{"n":6},"33":{"n":5},"34":{"n":4.5},"35":{"n":4},"36":{"n":5.5},"37":{"n":3.5},"38":{"n":3.5}}},"c":7},{"i":312,"n":"Sliti","f":"Naim","p":"M","r":16,"s":{"n":0,"Og":"3","Os":"177","On":"35","Oa":"5.07","Od":"0.98","Mp":"27","Ap":"8","p":{"32":{"n":5,"s":1},"33":{"n":6},"34":{"n":4.5,"s":1},"35":{"n":3.5},"36":{"n":5.5},"37":{"n":4.5,"s":1},"38":{"n":7,"g":1,"s":1}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":13,"s":{"n":0,"Os":"94","On":"20","Oa":"4.7","Od":"0.73","Mp":"20","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":4},"34":{"n":5.5},"36":{"n":5.5},"37":{"n":4.5},"38":{"n":4}}},"c":7},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":10,"s":{"n":0,"Og":"2","Os":"96","On":"21","Oa":"4.6","Od":"0.8","Mp":"5","Ap":"16","p":{"31":{"n":5},"32":{"n":4},"33":{"n":6.5,"g":1},"34":{"n":4},"37":{"n":4.5,"s":1},"38":{"n":4.5}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":12,"s":{"n":0,"Oao":"1","Os":"161","On":"34","Oa":"4.74","Od":"0.94","Mp":"4","Dp":"30","p":{"31":{"n":6},"32":{"n":6},"34":{"n":4.5},"35":{"n":4},"36":{"n":5},"37":{"n":4.5},"38":{"n":6}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":11,"s":{"n":0,"Og":"2","Os":"155","On":"32","Oa":"4.84","Od":"1.17","Mp":"4","Dp":"28","p":{"31":{"n":5},"32":{"n":6},"34":{"n":5,"s":1},"35":{"n":3},"36":{"n":5},"37":{"n":3}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":7,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3","p":{"37":{"n":5,"s":1}}},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":10,"s":{"n":0,"Os":"76","On":"13","Oa":"5.88","Od":"0.88","Gp":"13"},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":6,"s":{"n":0,"Os":"83","On":"18","Oa":"4.61","Od":"1.26","Mp":"4","Dp":"14"},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"90","On":"19","Oa":"4.74","Od":"0.77","Mp":"17","Ap":"2","p":{"31":{"n":5,"s":1},"32":{"n":4.5,"s":1},"35":{"n":4},"36":{"n":6,"g":1,"s":1},"37":{"n":4},"38":{"n":5,"s":1}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":10,"s":{"n":0,"Os":"157","On":"33","Oa":"4.77","Od":"0.91","Dp":"33","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":5},"34":{"n":5},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":3},"38":{"n":5,"s":1}}},"c":7},{"i":2524,"n":"Ecuele Manga","f":"Bruno","p":"D","r":11,"s":{"n":0,"Os":"180","On":"38","Oa":"4.74","Od":"0.98","Dp":"38","p":{"31":{"n":6.5,"e":3469,"c":70},"32":{"n":5,"e":3481,"c":70},"33":{"n":4,"e":3492,"c":70},"34":{"n":4.5,"e":3499,"c":70},"35":{"n":5.5,"e":3510,"c":70},"36":{"n":5.5,"e":3521,"c":70},"37":{"n":5,"e":3530,"c":70},"38":{"n":7,"e":3544,"c":70}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":10,"s":{"n":0,"Og":"1","Os":"50","On":"11","Oa":"4.55","Od":"0.84","Dp":"11","p":{"31":{"n":5,"s":1},"32":{"n":5,"s":1},"33":{"n":4.5},"37":{"n":3.5},"38":{"n":4.5}}},"c":7},{"i":2633,"n":"Ntumba","f":"Levi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"44","On":"9","Oa":"4.89","Od":"0.66","Dp":"9","p":{"33":{"n":5,"s":1}}},"c":7},{"i":2640,"n":"Theo Barbet","f":"","p":"D","r":1,"s":{"n":0},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":6,"s":{"n":0,"Os":"58","On":"12","Oa":"4.88","Od":"1","Mp":"12","p":{"35":{"n":5,"s":1}}},"c":7},{"i":2687,"n":"Jules Keita","f":"","p":"A","r":8,"s":{"n":0,"Og":"2","Os":"75","On":"17","Oa":"4.41","Od":"0.94","Mp":"1","Ap":"16"},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":7,"s":{"n":0,"Og":"3","Os":"61","On":"13","Oa":"4.73","Od":"1.12","Dp":"13","p":{"33":{"n":5.5,"g":1},"34":{"n":4.5},"35":{"n":3},"38":{"n":4.5}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":16,"s":{"n":0,"Os":"124","On":"25","Oa":"4.96","Od":"0.97","Gp":"25","p":{"31":{"n":6},"32":{"n":5.5},"33":{"n":5},"34":{"n":5},"35":{"n":4.5},"36":{"n":6},"37":{"n":4},"38":{"n":5}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":10,"s":{"n":0,"Os":"38","On":"9","Oa":"4.22","Od":"0.92","Dp":"9"},"c":7},{"i":2941,"n":"Doumbouya","f":"Sory","p":"A","r":1,"s":{"n":0},"c":7},{"i":2989,"n":"Godard","f":"Theo","p":"A","r":1,"s":{"n":0},"c":7},{"i":3361,"n":"Kaba","f":"Sory","p":"A","r":8,"s":{"n":0,"Os":"37","On":"9","Oa":"4.17","Od":"0.33","Ap":"9","p":{"31":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":4,"s":1},"36":{"n":4,"s":1}}},"c":7},{"i":3526,"n":"T\u00e9gar","f":"Alexandre","p":"D","r":1,"s":{"n":0},"c":7},{"i":3755,"n":"Soumar\u00e9","f":"Bryan","p":"M","r":1,"s":{"n":0},"c":7},{"i":3768,"n":"Mama Bald\u00e9","f":"","p":"M","r":12,"s":{"n":0},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":12,"s":{"n":0,"Og":"5","Os":"165","On":"33","Oa":"5","Od":"0.91","Mp":"6","Ap":"27","p":{"31":{"n":5},"32":{"n":6.5},"33":{"n":6.5},"34":{"n":4.5},"35":{"n":5.5},"37":{"n":4.5},"38":{"n":4}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":13,"s":{"n":0,"Og":"2","Os":"123","On":"24","Oa":"5.15","Od":"1.08","Dp":"24","p":{"31":{"n":5.5},"33":{"n":4},"34":{"n":5.5},"35":{"n":7},"36":{"n":5.5},"37":{"n":5},"38":{"n":4.5}}},"c":8},{"i":82,"n":"Lafont","f":"Alban","p":"G","r":16,"s":{"n":0},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":500,"s":{"n":0,"Og":"12","Os":"102","On":"19","Oa":"5.39","Od":"1.47","Ap":"19"},"c":8},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":15,"s":{"n":0,"Og":"1","Os":"152","On":"33","Oa":"4.62","Od":"0.78","Mp":"25","Ap":"8","p":{"31":{"n":5,"e":3035,"c":14,"s":1},"32":{"n":4.5,"e":3051,"c":14,"s":1},"33":{"n":4.5,"e":3053,"c":14,"s":1},"34":{"n":3.5,"e":3069,"c":14},"35":{"n":5,"e":3073,"c":14,"s":1},"36":{"n":5,"e":3090,"c":14},"38":{"n":5,"e":3102,"c":14,"s":1}}},"c":8},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":21,"s":{"n":0,"Og":"4","Os":"199","On":"36","Oa":"5.53","Od":"1.05","Mp":"35","Ap":"1","p":{"31":{"n":5.5},"32":{"n":5.5},"33":{"n":7,"g":1},"34":{"n":6},"35":{"n":7.5,"g":1},"36":{"n":6},"37":{"n":5.5},"38":{"n":7}}},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":4,"s":{"n":0},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":12,"s":{"n":0,"Os":"147","On":"31","Oa":"4.76","Od":"0.99","Mp":"5","Dp":"24","Ap":"2","p":{"32":{"n":5,"s":1},"33":{"n":5},"35":{"n":6},"36":{"n":5,"s":1},"37":{"n":5.5,"s":1},"38":{"n":4.5}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":15,"s":{"n":0,"Og":"3","Os":"182","On":"34","Oa":"5.37","Od":"1","Mp":"34","p":{"31":{"n":6},"32":{"n":6},"33":{"n":5},"34":{"n":5},"35":{"n":7.5,"g":1},"36":{"n":5},"37":{"n":5},"38":{"n":5.5}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":2,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Gp":"1","p":{"38":{"n":5}}},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"38":{"n":5.5}}},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":8,"s":{"n":0,"Os":"96","On":"20","Oa":"4.83","Od":"0.62","Mp":"3","Dp":"17","p":{"32":{"n":5},"34":{"n":5,"s":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":5}}},"c":8},{"i":1007,"n":"Wagu\u00e9","f":"Molla","p":"D","r":11,"s":{"n":0},"c":8},{"i":1171,"n":"Kalifa Coulibaly","f":"","p":"A","r":18,"s":{"n":0,"Og":"8","Os":"150","On":"32","Oa":"4.7","Od":"1.04","Ap":"32","p":{"32":{"n":6,"g":1},"33":{"n":8,"g":2},"34":{"n":5.5},"35":{"n":6,"g":1},"36":{"n":4},"37":{"n":6,"g":1},"38":{"n":4}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":10,"s":{"n":0,"Og":"2","Os":"107","On":"20","Oa":"5.38","Od":"1.15","Mp":"19","Dp":"1","p":{"31":{"n":3.5},"34":{"n":7.5,"g":1},"35":{"n":5,"s":1},"36":{"n":6},"37":{"n":6}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":14,"s":{"n":0,"Og":"2","Os":"138","On":"28","Oa":"4.93","Od":"0.83","Mp":"24","Ap":"4","p":{"31":{"n":5,"s":1},"32":{"n":4.5},"33":{"n":6},"34":{"n":7,"g":1},"35":{"n":7},"36":{"n":6,"g":1},"37":{"n":4.5},"38":{"n":4.5}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":8,"s":{"n":0,"Os":"66","On":"13","Oa":"5.08","Od":"0.76","Mp":"4","Dp":"9","p":{"31":{"n":5},"32":{"n":5},"34":{"n":5},"36":{"n":3.5},"37":{"n":5}}},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":8,"s":{"n":0,"Os":"83","On":"16","Oa":"5.22","Od":"0.56","Mp":"16"},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":4,"s":{"n":0,"Os":"26","On":"6","Oa":"4.33","Od":"0.69","Mp":"5","Ap":"1","p":{"31":{"n":4.5,"s":1},"33":{"n":5,"s":1},"38":{"n":4.5,"s":1}}},"c":8},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":8,"s":{"n":0},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":3,"s":{"n":0,"Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1"},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":7,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"32":{"n":5.5},"35":{"n":5,"s":1}}},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"67","On":"14","Oa":"4.79","Od":"0.92","Mp":"11","Ap":"3","p":{"33":{"n":4.5,"s":1},"36":{"n":5,"s":1}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":14,"s":{"n":0,"Og":"1","Os":"150","On":"29","Oa":"5.19","Od":"0.56","Mp":"20","Ap":"9","p":{"31":{"n":5,"s":1},"32":{"n":7,"g":1},"33":{"n":6},"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":6},"37":{"n":5,"s":1}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":8,"s":{"n":0,"Os":"32","On":"6","Oa":"5.33","Od":"0.37","Dp":"6"},"c":8},{"i":2938,"n":"Louza","f":"Imran","p":"M","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"38":{"n":4.5}}},"c":8},{"i":2947,"n":"Youan","f":"Thody Elie","p":"A","r":2,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"38":{"n":4.5,"s":1}}},"c":8},{"i":2993,"n":"Bamba","f":"Kader","p":"M","r":1,"s":{"n":0},"c":8},{"i":3363,"n":"Mance","f":"Antonio","p":"A","r":8,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.2","Ap":"5","p":{"38":{"n":4.5,"s":1}}},"c":8},{"i":3516,"n":"Homawoo","f":"Josu\u00e9","p":"D","r":1,"s":{"n":0},"c":8},{"i":3767,"n":"Ba","f":"Abou","p":"M","r":2,"s":{"n":0},"c":8},{"i":3812,"n":"Appiah","f":"Dennis","p":"D","r":11,"s":{"n":0},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":16,"s":{"n":0,"Og":"4","Os":"159","On":"31","Oa":"5.15","Od":"1.01","Mp":"24","Ap":"7","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":4.5},"34":{"n":3.5},"35":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5},"38":{"n":5}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":20,"s":{"n":0,"Og":"8","Os":"180","On":"36","Oa":"5.01","Od":"1.06","Mp":"1","Ap":"35","p":{"31":{"n":3},"32":{"n":6,"g":1,"s":1},"33":{"n":7,"g":1},"34":{"n":5},"35":{"n":7,"g":1},"36":{"n":4,"s":1},"37":{"n":4.5},"38":{"n":6}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":25,"s":{"n":0,"Og":"16","Os":"179","On":"33","Oa":"5.42","Od":"1.39","Mp":"24","Ap":"9","p":{"31":{"n":5},"32":{"n":5},"33":{"n":6},"36":{"n":4.5,"s":1},"37":{"n":8,"g":2},"38":{"n":7,"g":1}}},"c":9},{"i":34,"n":"Balotelli","f":"Mario","p":"A","r":22,"s":{"n":0,"Og":"8","Os":"123","On":"25","Oa":"4.92","Od":"1.21","Ap":"25","p":{"31":{"n":4.5,"s":1},"32":{"n":4.5},"34":{"n":6,"g":1},"35":{"n":4},"36":{"n":4},"38":{"n":2.5,"s":1}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":16,"s":{"n":0,"Og":"5","Os":"176","On":"33","Oa":"5.33","Od":"1.1","Mp":"33","p":{"31":{"n":5,"s":1},"32":{"n":4.5,"s":1},"33":{"n":6},"34":{"n":5.5},"37":{"n":7,"g":1},"38":{"n":4.5}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":13,"s":{"n":0,"Og":"3","Os":"84","On":"17","Oa":"4.94","Od":"0.82","Mp":"1","Ap":"16","p":{"31":{"n":4.5,"s":1},"32":{"n":5,"s":1},"35":{"n":4.5,"s":1},"37":{"n":7.5,"g":1,"s":1},"38":{"n":4.5,"s":1}}},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":14,"s":{"n":0,"Og":"1","Os":"169","On":"32","Oa":"5.3","Od":"0.74","Mp":"32","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":5},"36":{"n":3.5},"37":{"n":5,"s":1},"38":{"n":5.5}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":8,"s":{"n":0,"Os":"46","On":"9","Oa":"5.17","Od":"1.11","Gp":"9","p":{"38":{"n":7}}},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"138","On":"27","Oa":"5.13","Od":"1.08","Mp":"1","Dp":"26","p":{"31":{"n":4.5},"32":{"n":6},"33":{"n":6},"34":{"n":4.5},"35":{"n":5},"36":{"n":3.5},"37":{"n":7.5,"g":1},"38":{"n":5.5}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"145","On":"29","Oa":"5.02","Od":"1.05","Mp":"6","Dp":"23","p":{"32":{"n":5},"34":{"n":3.5}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":5,"s":{"n":0,"Os":"50","On":"10","Oa":"5","Od":"0.81","Dp":"10"},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":1,"s":{"n":0,"Os":"18","On":"4","Oa":"4.5","Od":"0.35","Mp":"4"},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"38":{"n":5.5,"s":1}}},"c":9},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":8,"s":{"n":0,"Og":"3","Os":"116","On":"25","Oa":"4.64","Od":"0.74","Mp":"23","Ap":"2","p":{"32":{"n":4.5,"e":3042,"c":5},"33":{"n":4.5,"e":3056,"c":5},"36":{"n":5,"e":3084,"c":5},"37":{"n":4.5,"e":3095,"c":5},"38":{"n":4.5,"e":3104,"c":5,"s":1}}},"c":9},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":17,"s":{"n":0,"Os":"165","On":"31","Oa":"5.34","Od":"0.91","Gp":"31","p":{"31":{"n":6},"32":{"n":6},"33":{"n":5.5},"34":{"n":6},"35":{"n":6.5},"36":{"n":4},"37":{"n":6}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":17,"s":{"n":0,"Og":"2","Os":"153","On":"30","Oa":"5.12","Od":"0.93","Mp":"18","Dp":"12","p":{"32":{"n":7,"g":1},"33":{"n":7,"g":1},"34":{"n":5},"35":{"n":5.5},"36":{"n":4},"37":{"n":6},"38":{"n":6}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"80","On":"16","Oa":"5","Od":"1.12","Dp":"16","p":{"35":{"n":4},"37":{"n":5.5}}},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":11,"s":{"n":0,"Os":"137","On":"28","Oa":"4.89","Od":"0.89","Mp":"1","Dp":"27","p":{"31":{"n":5.5},"33":{"n":6},"34":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":3.5},"37":{"n":5}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":15,"s":{"n":0,"Og":"1","Os":"158","On":"31","Oa":"5.1","Od":"0.89","Dp":"31","p":{"31":{"n":5},"32":{"n":6},"33":{"n":5.5},"34":{"n":4},"35":{"n":6},"36":{"n":3},"37":{"n":4.5}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":8,"s":{"n":0,"Og":"3","Os":"64","On":"14","Oa":"4.61","Od":"0.83","Ap":"14"},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":1726,"n":"Gonz\u00e1lez","f":"\u00c1lvaro","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"165","On":"33","Oa":"5.02","Od":"1.02","Dp":"33","p":{"32":{"n":6,"e":2284,"c":64},"33":{"n":4,"e":2301,"c":64},"34":{"n":6,"e":2305,"c":64},"35":{"n":6,"e":2321,"c":64},"36":{"n":4.5,"e":2326,"c":64},"37":{"n":6,"e":2339,"c":64},"38":{"n":4,"e":2345,"c":64}}},"c":9},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":1,"s":{"n":0},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":13,"s":{"n":0,"Os":"104","On":"20","Oa":"5.2","Od":"1.02","Dp":"20","p":{"31":{"n":6},"32":{"n":6.5},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":5},"36":{"n":4},"38":{"n":6}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"A","r":1,"s":{"n":0},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":11,"s":{"n":0,"Og":"1","Os":"141","On":"28","Oa":"5.04","Od":"0.81","Mp":"28","p":{"31":{"n":5},"33":{"n":6,"s":1},"35":{"n":5.5},"36":{"n":3.5},"37":{"n":4.5,"s":1},"38":{"n":5.5}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":12,"s":{"n":0,"Os":"71","On":"17","Oa":"4.21","Od":"0.49","Mp":"4","Ap":"13","p":{"31":{"n":3.5},"32":{"n":4},"33":{"n":5,"s":1},"34":{"n":4,"s":1},"36":{"n":3}}},"c":9},{"i":2939,"n":"Philiponeau","f":"Alexandre","p":"M","r":1,"s":{"n":0},"c":9},{"i":2953,"n":"Ali Mohamed","f":"Abdallah","p":"D","r":1,"s":{"n":0},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":16,"s":{"n":0,"Og":"1","Os":"170","On":"34","Oa":"5.01","Od":"1.21","Dp":"34","p":{"31":{"n":7},"32":{"n":4},"33":{"n":6},"35":{"n":5},"36":{"n":6},"37":{"n":3},"38":{"n":4}}},"c":10},{"i":60,"n":"Vainqueur","f":"William","p":"M","r":10,"s":{"n":0,"Os":"13","On":"3","Oa":"4.5","Od":"0.71","Mp":"3"},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":17,"s":{"n":0,"Oao":"1","Os":"168","On":"31","Oa":"5.42","Od":"1.25","Gp":"31","p":{"31":{"n":6},"32":{"n":5},"33":{"n":7},"34":{"n":6}}},"c":10},{"i":144,"n":"Issiaga Sylla","f":"","p":"D","r":10,"s":{"n":0,"Og":"2","Os":"114","On":"24","Oa":"4.75","Od":"1.1","Mp":"7","Dp":"17","p":{"31":{"n":7.5,"g":1},"32":{"n":4.5},"33":{"n":4},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":5},"37":{"n":4}}},"c":10},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":7,"s":{"n":0},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":8,"s":{"n":0,"Os":"104","On":"22","Oa":"4.75","Od":"0.85","Mp":"1","Dp":"21","p":{"33":{"n":6},"34":{"n":4}}},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":12,"s":{"n":0,"Og":"4","Os":"172","On":"36","Oa":"4.79","Od":"0.87","Mp":"31","Ap":"5","p":{"31":{"n":5.5},"32":{"n":3.5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":4},"38":{"n":5,"s":1}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":9,"s":{"n":0,"Og":"1","Os":"68","On":"15","Oa":"4.53","Od":"0.72","Ap":"15","p":{"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":7,"s":{"n":0,"Os":"85","On":"19","Oa":"4.47","Od":"0.7","Mp":"3","Ap":"16"},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":7,"s":{"n":0,"Os":"43","On":"8","Oa":"5.38","Od":"1.32","Gp":"8","p":{"35":{"n":4.5},"36":{"n":6},"37":{"n":3.5},"38":{"n":5.5}}},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":7,"s":{"n":0,"Os":"40","On":"10","Oa":"4.05","Od":"0.82","Mp":"3","Dp":"7","p":{"38":{"n":3.5}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":9,"s":{"n":0,"Og":"4","Os":"124","On":"28","Oa":"4.45","Od":"0.92","Ap":"28","p":{"31":{"n":4.5,"s":1},"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5,"g":1},"38":{"n":4}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":11,"s":{"n":0,"Os":"153","On":"32","Oa":"4.8","Od":"1.1","Mp":"2","Dp":"30","p":{"31":{"n":5.5},"32":{"n":4},"33":{"n":5},"34":{"n":4},"35":{"n":4.5},"36":{"n":5},"37":{"n":3}}},"c":10},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":12,"s":{"n":0,"Og":"1","Os":"121","On":"25","Oa":"4.84","Od":"0.56","Mp":"18","Ap":"7","p":{"34":{"n":6,"e":3069,"c":19},"35":{"n":5,"e":3078,"c":19,"s":1},"36":{"n":5,"e":3088,"c":19,"s":1},"37":{"n":5,"e":3099,"c":19,"s":1},"38":{"n":4.5,"e":3108,"c":19,"s":1}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Ibrahim Sangar\u00e9","f":"","p":"M","r":12,"s":{"n":0,"Og":"1","Os":"150","On":"28","Oa":"5.38","Od":"0.94","Mp":"28","p":{"31":{"n":7},"32":{"n":6},"33":{"n":6},"34":{"n":4.5},"35":{"n":4.5},"37":{"n":3.5},"38":{"n":4}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":8,"s":{"n":0,"Og":"3","Os":"98","On":"21","Oa":"4.69","Od":"0.98","Ap":"21","p":{"31":{"n":5.5},"32":{"n":3},"34":{"n":4.5,"s":1},"35":{"n":4.5},"36":{"n":4},"38":{"n":4.5,"s":1}}},"c":10},{"i":1025,"n":"Gradel","f":"Max-Alain","p":"A","r":19,"s":{"n":0,"Og":"11","Os":"190","On":"36","Oa":"5.28","Od":"1.24","Mp":"25","Ap":"11","p":{"31":{"n":5.5},"32":{"n":3.5},"33":{"n":4},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":5},"37":{"n":6.5,"g":1}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":3,"s":{"n":0},"c":10},{"i":1528,"n":"Dossevi","f":"Mathieu","p":"M","r":13,"s":{"n":0,"Og":"4","Os":"173","On":"35","Oa":"4.96","Od":"0.92","Mp":"26","Ap":"9","p":{"32":{"n":4,"s":1},"33":{"n":5},"34":{"n":5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":3.5},"38":{"n":4}}},"c":10},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":7,"s":{"n":0,"Os":"75","On":"16","Oa":"4.72","Od":"0.68","Mp":"16","p":{"31":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":4.5},"37":{"n":4}}},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":8,"s":{"n":0,"Os":"148","On":"31","Oa":"4.77","Od":"0.9","Mp":"31","p":{"31":{"n":5},"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"37":{"n":4.5,"s":1}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":1,"s":{"n":0},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":6,"s":{"n":0,"Os":"23","On":"5","Oa":"4.7","Od":"1.08","Mp":"2","Dp":"3"},"c":10},{"i":2942,"n":"N'Goumou Minpole","f":"Nathan","p":"M","r":12,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1","p":{"38":{"n":4}}},"c":10},{"i":2950,"n":"Sidibe","f":"Kalidou","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"72","On":"15","Oa":"4.83","Od":"0.7","Mp":"15","p":{"31":{"n":5.5},"32":{"n":5.5,"g":1},"33":{"n":4.5},"34":{"n":4},"35":{"n":3.5},"36":{"n":4.5},"38":{"n":4}}},"c":10},{"i":2960,"n":"Diakite","f":"Bafode","p":"D","r":8,"s":{"n":0,"Og":"1","Os":"38","On":"8","Oa":"4.75","Od":"0.83","Mp":"2","Dp":"6","p":{"38":{"n":6,"g":1}}},"c":10},{"i":2962,"n":"Bessile","f":"Loic","p":"D","r":1,"s":{"n":0},"c":10},{"i":2996,"n":"Shoji","f":"Gen","p":"D","r":12,"s":{"n":0,"Os":"87","On":"18","Oa":"4.83","Od":"0.93","Dp":"18","p":{"31":{"n":6},"32":{"n":4},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":6},"36":{"n":5.5},"37":{"n":3},"38":{"n":4}}},"c":10},{"i":3228,"n":"Kone","f":"Kouadio","p":"M","r":2,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"38":{"n":3.5}}},"c":10},{"i":3753,"n":"Diarra","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":10},{"i":3798,"n":"Koulouris","f":"Efthymios","p":"A","r":14,"s":{"n":0},"c":10},{"i":4036,"n":"Rogel","f":"Agust\u00edn","p":"D","r":10,"s":{"n":0},"c":10},{"i":97,"n":"Cohade","f":"Renaud","p":"M","r":13,"s":{"n":0},"c":11},{"i":273,"n":"Delecroix","f":"Paul","p":"G","r":8,"s":{"n":0},"c":11},{"i":337,"n":"Nguette","f":"Opa","p":"M","r":12,"s":{"n":0},"c":11},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":11,"s":{"n":0,"Os":"18","On":"4","Oa":"4.5","Od":"0.87","Dp":"4","p":{"34":{"n":5,"e":3070,"c":13,"s":1}}},"c":11},{"i":487,"n":"Basin","f":"Nicolas","p":"D","r":4,"s":{"n":0},"c":11},{"i":498,"n":"Boulaya","f":"Farid","p":"M","r":13,"s":{"n":0},"c":11},{"i":576,"n":"Udol","f":"Matthieu","p":"D","r":1,"s":{"n":0},"c":11},{"i":1185,"n":"Diallo","f":"Habib","p":"A","r":14,"s":{"n":0},"c":11},{"i":1232,"n":"Niane","f":"Ibrahima","p":"A","r":6,"s":{"n":0},"c":11},{"i":1246,"n":"Jallow","f":"Ablie","p":"M","r":3,"s":{"n":0},"c":11},{"i":1248,"n":"Ma\u00efga","f":"Habib","p":"M","r":8,"s":{"n":0},"c":11},{"i":1266,"n":"Poblete","f":"Ger\u00f3nimo","p":"M","r":10,"s":{"n":0},"c":11},{"i":1415,"n":"Oukidja","f":"Alexandre","p":"G","r":14,"s":{"n":0},"c":11},{"i":3757,"n":"Amadou Ndiaye","f":"","p":"A","r":1,"s":{"n":0},"c":11},{"i":3758,"n":"Sabaly","f":"Cheick Tidiane","p":"A","r":1,"s":{"n":0},"c":11},{"i":3763,"n":"Pierre","f":"Leverton","p":"A","r":1,"s":{"n":0},"c":11},{"i":3773,"n":"Dietsch","f":"Guillaume","p":"G","r":1,"s":{"n":0},"c":11},{"i":3776,"n":"Cabit","f":"Manuel","p":"D","r":4,"s":{"n":0},"c":11},{"i":3777,"n":"Mroivili","f":"Raouf","p":"M","r":1,"s":{"n":0},"c":11},{"i":3781,"n":"Fofana","f":"Mamadou","p":"D","r":5,"s":{"n":0},"c":11},{"i":3782,"n":"Adama Traore I","f":"","p":"A","r":2,"s":{"n":0},"c":11},{"i":3783,"n":"Monteiro","f":"Jamiro","p":"M","r":6,"s":{"n":0},"c":11},{"i":3787,"n":"Centonze","f":"Fabien","p":"D","r":10,"s":{"n":0},"c":11},{"i":3790,"n":"Angban","f":"Victorien","p":"M","r":3,"s":{"n":0},"c":11},{"i":3791,"n":"Gakpa","f":"Marvin","p":"M","r":10,"s":{"n":0},"c":11},{"i":3800,"n":"Ambrose","f":"Thierry","p":"A","r":5,"s":{"n":0},"c":11},{"i":3809,"n":"Delaine","f":"Thomas","p":"D","r":10,"s":{"n":0},"c":11},{"i":3814,"n":"Sunzu","f":"Stoppila","p":"D","r":10,"s":{"n":0},"c":11},{"i":3815,"n":"Boye","f":"John","p":"D","r":10,"s":{"n":0},"c":11},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":16,"s":{"n":0,"Og":"3","Os":"158","On":"30","Oa":"5.28","Od":"1.03","Mp":"30","p":{"31":{"n":5.5,"e":3033,"c":20},"33":{"n":5,"e":3052,"c":20}}},"c":12},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":15,"s":{"n":0,"Os":"114","On":"20","Oa":"5.7","Od":"0.75","Dp":"20","p":{"31":{"n":5.5},"32":{"n":5},"38":{"n":4}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":12,"s":{"n":0,"Os":"13","On":"2","Oa":"6.5","Od":"0.5","Mp":"2"},"c":12},{"i":211,"n":"P\u00e9p\u00e9","f":"Nicolas","p":"A","r":48,"s":{"n":0,"Og":"22","Os":"227","On":"38","Oa":"5.99","Od":"1.49","Mp":"36","Ap":"2","p":{"31":{"n":6.5},"32":{"n":8,"g":1},"33":{"n":4.5},"34":{"n":7,"g":1},"35":{"n":4.5},"36":{"n":4},"37":{"n":7.5,"g":2},"38":{"n":4.5,"s":1}}},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":26,"s":{"n":0,"Os":"219","On":"38","Oa":"5.78","Od":"0.75","Gp":"38","p":{"31":{"n":5},"32":{"n":6},"33":{"n":6},"34":{"n":6.5},"35":{"n":4.5},"36":{"n":6},"37":{"n":6},"38":{"n":6}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":14,"s":{"n":0,"Og":"2","Os":"140","On":"27","Oa":"5.19","Od":"0.95","Mp":"27","p":{"32":{"n":7}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":4,"s":{"n":0},"c":12},{"i":455,"n":"Jonathan Ikone","f":"","p":"M","r":17,"s":{"n":0,"Og":"3","Os":"191","On":"38","Oa":"5.04","Od":"0.73","Mp":"35","Ap":"3","p":{"31":{"n":4.5},"32":{"n":6.5},"33":{"n":4.5},"34":{"n":5.5},"35":{"n":4},"36":{"n":6},"37":{"n":6.5,"g":1},"38":{"n":5.5}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":25,"s":{"n":0,"Og":"13","Os":"208","On":"38","Oa":"5.49","Od":"1.4","Mp":"37","Ap":"1","p":{"31":{"n":4.5},"32":{"n":8,"g":1},"33":{"n":4.5},"34":{"n":7,"g":1},"35":{"n":4.5},"36":{"n":5},"37":{"n":8,"g":1},"38":{"n":4.5}}},"c":12},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":7,"s":{"n":0},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":25,"s":{"n":0,"Og":"3","Os":"199","On":"36","Oa":"5.53","Od":"0.96","Dp":"36","p":{"31":{"n":6,"g":1},"32":{"n":7.5,"g":1},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":6.5},"38":{"n":3.5}}},"c":12},{"i":954,"n":"Remy","f":"Lo\u00efc","p":"A","r":16,"s":{"n":0,"Og":"7","Os":"129","On":"26","Oa":"4.96","Od":"0.95","Ap":"26","p":{"31":{"n":4},"32":{"n":5.5},"34":{"n":6.5,"g":1},"35":{"n":6,"g":1},"36":{"n":6,"g":1},"37":{"n":5.5},"38":{"n":6,"g":1}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":8,"s":{"n":0,"Os":"54","On":"11","Oa":"4.95","Od":"0.81","Dp":"11","p":{"37":{"n":5,"s":1},"38":{"n":3.5}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":11,"s":{"n":0,"Os":"122","On":"24","Oa":"5.08","Od":"0.7","Mp":"24","p":{"31":{"n":5},"35":{"n":5.5},"36":{"n":5,"s":1},"38":{"n":4.5}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":7,"s":{"n":0},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Araujo","f":"","p":"A","r":9,"s":{"n":0,"Og":"3","Os":"118","On":"25","Oa":"4.74","Od":"0.6","Mp":"6","Ap":"19","p":{"33":{"n":5,"s":1},"34":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":6,"g":1,"s":1},"38":{"n":4.5}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":7,"s":{"n":0,"Os":"62","On":"12","Oa":"5.21","Od":"0.69","Dp":"12"},"c":12},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":5,"s":{"n":0,"Os":"77","On":"16","Oa":"4.81","Od":"0.75","Dp":"16","p":{"31":{"n":3.5,"e":3041,"c":8},"33":{"n":4.5,"e":3055,"c":8},"34":{"n":5,"e":3067,"c":8}}},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":2,"s":{"n":0},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":3,"s":{"n":0},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumare","f":"Boubakary","p":"M","r":12,"s":{"n":0,"Og":"1","Os":"93","On":"18","Oa":"5.17","Od":"0.78","Mp":"18","p":{"31":{"n":4.5,"s":1},"32":{"n":5,"s":1},"33":{"n":6},"34":{"n":7},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":6}}},"c":12},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":1,"s":{"n":0},"c":12},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":12,"s":{"n":0,"Og":"1","Os":"10","On":"2","Oa":"5","Od":"1","Ap":"2"},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":8,"s":{"n":0,"Og":"1","Os":"81","On":"18","Oa":"4.53","Od":"0.51","Ap":"18","p":{"32":{"n":4.5,"s":1},"33":{"n":5,"s":1},"34":{"n":6,"g":1,"s":1},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4,"s":1},"38":{"n":4.5,"s":1}}},"c":12},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"175","On":"34","Oa":"5.16","Od":"0.71","Dp":"34","p":{"31":{"n":5},"32":{"n":5},"33":{"n":5.5},"34":{"n":7.5,"g":1},"35":{"n":4},"36":{"n":5},"37":{"n":6}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"81","On":"14","Oa":"5.82","Od":"0.88","Dp":"14","p":{"32":{"n":6.5,"g":1,"s":1},"33":{"n":6},"34":{"n":7},"35":{"n":4.5},"36":{"n":6},"37":{"n":7},"38":{"n":5.5,"s":1}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":3,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2791,"n":"Rafael Le\u00e3o","f":"","p":"A","r":24,"s":{"n":0,"Og":"8","Os":"122","On":"24","Oa":"5.1","Od":"1.04","Ap":"24","p":{"31":{"n":4.5,"s":1},"33":{"n":4.5},"34":{"n":6,"s":1},"35":{"n":4.5,"s":1}}},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3122,"n":"Niasse","f":"Cheikh","p":"D","r":1,"s":{"n":0},"c":12},{"i":3123,"n":"Okou","f":"Teddy","p":"A","r":1,"s":{"n":0},"c":12},{"i":3359,"n":"Reinildo","f":"","p":"D","r":7,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3","p":{"35":{"n":5,"s":1},"38":{"n":4}}},"c":12},{"i":3751,"n":"Agouzoul","f":"Saad","p":"D","r":6,"s":{"n":0},"c":12},{"i":3796,"n":"L\u00e9o Jardim","f":"","p":"G","r":8,"s":{"n":0},"c":12},{"i":4031,"n":"Bradaric","f":"Domagoj","p":"D","r":3,"s":{"n":0},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":20,"s":{"n":0,"Og":"15","Os":"165","On":"33","Oa":"5.02","Od":"1.31","Ap":"33","p":{"32":{"n":5,"s":1},"33":{"n":4},"34":{"n":7.5,"g":2},"35":{"n":4},"36":{"n":5},"37":{"n":6,"g":1},"38":{"n":3.5}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":9,"s":{"n":0,"Os":"76","On":"14","Oa":"5.43","Od":"0.98","Gp":"14","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":5},"35":{"n":5}}},"c":13},{"i":24,"n":"Sidibe","f":"Djibril","p":"D","r":10,"s":{"n":0,"Os":"118","On":"26","Oa":"4.56","Od":"0.74","Mp":"5","Dp":"21","p":{"31":{"n":4.5},"32":{"n":4.5},"34":{"n":5.5},"35":{"n":3},"36":{"n":4.5},"37":{"n":6},"38":{"n":4}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":12,"s":{"n":0,"Og":"1","Os":"160","On":"33","Oa":"4.86","Od":"0.96","Dp":"33","p":{"31":{"n":5},"32":{"n":6},"33":{"n":4},"35":{"n":3.5},"36":{"n":5.5},"37":{"n":7},"38":{"n":4.5}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":10,"s":{"n":0,"Os":"127","On":"25","Oa":"5.08","Od":"0.84","Mp":"5","Dp":"20","p":{"31":{"n":4.5},"32":{"n":6},"33":{"n":4},"34":{"n":4},"35":{"n":6},"36":{"n":5.5},"37":{"n":5.5}}},"c":13},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":12,"s":{"n":0,"Og":"4","Os":"146","On":"29","Oa":"5.05","Od":"1.02","Mp":"6","Ap":"23","p":{"31":{"n":5,"e":3041,"c":8},"32":{"n":5,"e":3048,"c":8,"s":1},"34":{"n":4.5,"e":3067,"c":8,"s":1},"35":{"n":4.5,"e":3077,"c":8,"s":1},"36":{"n":4.5,"e":3088,"c":8,"s":1}}},"c":13},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":12,"s":{"n":0,"Os":"143","On":"26","Oa":"5.52","Od":"0.98","Mp":"26","p":{"32":{"n":4.5,"e":3050,"c":4,"s":1},"33":{"n":6.5,"e":3059,"c":4},"35":{"n":5,"e":3075,"c":4,"s":1},"36":{"n":5.5,"e":3091,"c":4},"37":{"n":5,"e":3099,"c":4}}},"c":13},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":20,"s":{"n":0,"Os":"206","On":"37","Oa":"5.57","Od":"0.86","Gp":"37","p":{"31":{"n":5.5,"e":3037,"c":15},"32":{"n":5,"e":3047,"c":15},"33":{"n":5,"e":3060,"c":15},"34":{"n":5,"e":3068,"c":15},"35":{"n":4.5,"e":3076,"c":15},"36":{"n":7.5,"e":3091,"c":15},"37":{"n":3.5,"e":3097,"c":15},"38":{"n":5,"e":3106,"c":15}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.41","Dp":"4"},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":6,"s":{"n":0,"Os":"28","On":"6","Oa":"4.75","Od":"0.75","Mp":"1","Dp":"5"},"c":13},{"i":284,"n":"Rony Lopes","f":"","p":"M","r":19,"s":{"n":0,"Og":"2","Os":"124","On":"24","Oa":"5.17","Od":"1.08","Mp":"20","Ap":"4","p":{"31":{"n":4},"32":{"n":5.5},"33":{"n":5},"34":{"n":6},"35":{"n":5.5},"36":{"n":3.5},"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":5,"s":{"n":0,"Os":"21","On":"4","Oa":"5.38","Od":"0.41","Dp":"4"},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":3,"s":{"n":0,"Os":"11","On":"3","Oa":"3.83","Od":"0.62","Gp":"3","p":{"34":{"n":4.5},"35":{"n":3,"s":1}}},"c":13},{"i":580,"n":"Cardona","f":"Irvin","p":"A","r":1,"s":{"n":0},"c":13},{"i":646,"n":"F\u00e0bregas","f":"Cesc","p":"M","r":17,"s":{"n":0,"Og":"1","Os":"90","On":"18","Oa":"5","Od":"0.47","Mp":"18","p":{"31":{"n":4},"32":{"n":5},"37":{"n":4.5,"s":1},"38":{"n":5}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":7,"s":{"n":0,"Os":"73","On":"16","Oa":"4.56","Od":"0.5","Mp":"16","p":{"36":{"n":5,"s":1}}},"c":13},{"i":884,"n":"Adama Traor\u00e9 II","f":"","p":"M","r":6,"s":{"n":0,"Os":"28","On":"6","Oa":"4.67","Od":"0.47","Mp":"5","Ap":"1"},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":2,"s":{"n":0,"Os":"31","On":"7","Oa":"4.43","Od":"0.49","Mp":"3","Ap":"4"},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":10,"s":{"n":0,"Os":"119","On":"23","Oa":"5.17","Od":"0.93","Gp":"23","p":{"33":{"n":4,"s":1},"36":{"n":5.5},"37":{"n":6},"38":{"n":5}}},"c":13},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":11,"s":{"n":0,"Oao":"1","Os":"182","On":"36","Oa":"5.06","Od":"0.81","Mp":"3","Dp":"33","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":3.5},"34":{"n":5},"35":{"n":3.5,"a":1},"36":{"n":4.5},"37":{"n":6},"38":{"n":5}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"n":0,"Os":"75","On":"18","Oa":"4.19","Od":"0.48","Mp":"1","Ap":"17","p":{"31":{"n":4.5,"s":1},"35":{"n":4,"s":1},"36":{"n":4.5,"s":1}}},"c":13},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":9,"s":{"n":0,"Os":"85","On":"17","Oa":"5.03","Od":"0.85","Mp":"17","p":{"32":{"n":6,"s":1},"33":{"n":5,"s":1},"34":{"n":3.5},"38":{"n":5.5,"s":1}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":10,"s":{"n":0,"Og":"2","Os":"41","On":"8","Oa":"5.19","Od":"0.83","Mp":"2","Ap":"6","p":{"31":{"n":6,"g":1,"s":1},"32":{"n":5}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":18,"s":{"n":0},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":2,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":5,"s":{"n":0,"Os":"15","On":"3","Oa":"5","Mp":"1","Dp":"2"},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":3,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Mp":"1"},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"15","On":"3","Oa":"5","Od":"1.08","Ap":"3"},"c":13},{"i":2459,"n":"Gelson Martins","f":"","p":"A","r":22,"s":{"n":0,"Og":"4","Os":"119","On":"24","Oa":"4.98","Od":"0.96","Mp":"16","Ap":"8","p":{"31":{"n":5.5},"32":{"n":5.5},"33":{"n":4.5},"34":{"n":3.5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":5},"38":{"n":3.5}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":5,"s":{"n":0,"Os":"36","On":"8","Oa":"4.56","Od":"0.53","Mp":"8"},"c":13},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":7,"s":{"n":0,"Os":"57","On":"13","Oa":"4.42","Od":"0.51","Mp":"12","Ap":"1"},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":15,"s":{"n":0,"Og":"3","Os":"148","On":"30","Oa":"4.93","Od":"0.98","Mp":"22","Ap":"8","p":{"31":{"n":5.5},"32":{"n":3.5},"33":{"n":6,"g":1},"34":{"n":6},"35":{"n":4},"36":{"n":5},"37":{"n":7.5,"g":1},"38":{"n":4.5}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":9,"s":{"n":0,"Og":"1","Os":"103","On":"22","Oa":"4.68","Od":"0.68","Mp":"9","Dp":"13","p":{"33":{"n":5},"37":{"n":5},"38":{"n":5}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Ap":"1"},"c":13},{"i":2954,"n":"Massengo","f":"Han-Noah","p":"M","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":13},{"i":2955,"n":"Gouano","f":"Gobe","p":"A","r":1,"s":{"n":0},"c":13},{"i":2956,"n":"Biancone","f":"Giulian","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":13},{"i":2958,"n":"Henin","f":"Yanis","p":"G","r":1,"s":{"n":0},"c":13},{"i":2961,"n":"Badiashile Mukinayi","f":"Benoit","p":"D","r":10,"s":{"n":0,"Og":"1","Oao":"1","Os":"75","On":"16","Oa":"4.69","Od":"1.01","Dp":"16","p":{"33":{"n":3.5},"34":{"n":4},"38":{"n":4,"a":1}}},"c":13},{"i":3498,"n":"Naldo","f":"","p":"D","r":8,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.41","Dp":"4","p":{"34":{"n":5,"s":1},"35":{"n":4.5},"36":{"n":4},"37":{"n":5,"s":1}}},"c":13},{"i":3517,"n":"Foster","f":"Lyle","p":"A","r":1,"s":{"n":0},"c":13},{"i":3780,"n":"Gil Dias","f":"","p":"M","r":2,"s":{"n":0},"c":13},{"i":4034,"n":"Hagege","f":"Hugo","p":"G","r":1,"s":{"n":0},"c":13},{"i":40,"n":"Delort","f":"Andy","p":"A","r":30,"s":{"n":0,"Og":"14","Os":"199","On":"36","Oa":"5.53","Od":"0.96","Ap":"36","p":{"31":{"n":4},"32":{"n":5.5},"33":{"n":8,"g":2},"34":{"n":6,"g":1},"35":{"n":4.5},"36":{"n":5},"37":{"n":5},"38":{"n":5}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1"},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":18,"s":{"n":0,"Og":"3","Os":"207","On":"37","Oa":"5.59","Od":"0.86","Mp":"37","p":{"31":{"n":5},"32":{"n":7,"g":1},"33":{"n":6},"34":{"n":7.5},"35":{"n":6},"36":{"n":6},"37":{"n":6}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":17,"s":{"n":0,"Oao":"1","Os":"194","On":"36","Oa":"5.39","Od":"0.88","Dp":"36","p":{"31":{"n":4.5},"32":{"n":6},"33":{"n":6},"34":{"n":5},"35":{"n":5.5},"36":{"n":6},"37":{"n":6},"38":{"n":5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"165","On":"31","Oa":"5.34","Od":"0.68","Dp":"31","p":{"31":{"n":4.5},"32":{"n":6},"33":{"n":5},"34":{"n":6},"35":{"n":5.5},"36":{"n":6},"37":{"n":5.5},"38":{"n":5}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":13,"s":{"n":0,"Og":"2","Os":"188","On":"37","Oa":"5.08","Od":"0.85","Dp":"37","p":{"31":{"n":4},"32":{"n":5},"33":{"n":5.5},"34":{"n":4},"35":{"n":6},"36":{"n":4},"38":{"n":5}}},"c":15},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":14,"s":{"n":0,"Og":"2","Os":"145","On":"28","Oa":"5.2","Od":"1.02","Mp":"28","p":{"31":{"n":5,"e":3038,"c":67,"s":1},"32":{"n":5.5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"35":{"n":6.5,"e":3079,"c":67,"g":1},"36":{"n":6,"e":3089,"c":67},"37":{"n":6,"e":3093,"c":67},"38":{"n":6,"e":3109,"c":67}}},"c":15},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":10,"s":{"n":0,"Og":"2","Os":"178","On":"35","Oa":"5.1","Od":"0.83","Mp":"35","p":{"31":{"n":5,"s":1},"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"38":{"n":6}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":9,"s":{"n":0,"Og":"3","Os":"60","On":"12","Oa":"5","Od":"0.84","Ap":"12","p":{"31":{"n":5,"s":1},"32":{"n":6.5,"g":1,"s":1},"34":{"n":6.5,"g":1,"s":1},"35":{"n":4.5,"s":1},"38":{"n":4,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":22,"s":{"n":0,"Og":"11","Os":"190","On":"37","Oa":"5.14","Od":"1.32","Mp":"1","Ap":"36","p":{"31":{"n":4},"32":{"n":5},"33":{"n":6},"34":{"n":5},"35":{"n":4.5},"36":{"n":7,"g":1},"37":{"n":4.5},"38":{"n":3.5}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":22,"s":{"n":0,"Og":"6","Os":"178","On":"32","Oa":"5.56","Od":"0.97","Mp":"3","Ap":"29","p":{"31":{"n":4},"32":{"n":5},"33":{"n":7,"g":1},"34":{"n":6.5},"35":{"n":6.5,"g":1},"36":{"n":5.5},"37":{"n":7,"g":1}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":1,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":4,"s":{"n":0,"Os":"12","On":"3","Oa":"4.17","Od":"0.47","Mp":"1","Ap":"2"},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":5,"s":{"n":0,"Os":"29","On":"6","Oa":"4.92","Od":"0.34","Mp":"6"},"c":15},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"153","On":"29","Oa":"5.28","Od":"0.96","Mp":"27","Dp":"2","p":{"31":{"n":4.5},"32":{"n":7},"33":{"n":5.5},"38":{"n":5}}},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":7,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1"},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":6,"s":{"n":0,"Os":"56","On":"12","Oa":"4.71","Od":"1.18","Dp":"12","p":{"37":{"n":3.5}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":7,"s":{"n":0,"Os":"146","On":"30","Oa":"4.88","Od":"0.36","Mp":"26","Ap":"4","p":{"33":{"n":4.5,"s":1},"34":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5,"s":1},"38":{"n":5}}},"c":15},{"i":2268,"n":"Oyongo","f":"Ambroise","p":"D","r":8,"s":{"n":0,"Og":"2","Oao":"1","Os":"126","On":"26","Oa":"4.87","Od":"0.93","Mp":"25","Dp":"1","p":{"32":{"n":5},"33":{"n":5},"34":{"n":3.5,"a":1},"35":{"n":4.5},"36":{"n":5},"37":{"n":5},"38":{"n":5}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":9,"s":{"n":0,"Og":"1","Os":"128","On":"28","Oa":"4.59","Od":"0.58","Ap":"28","p":{"31":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":17,"s":{"n":0,"Og":"3","Os":"193","On":"36","Oa":"5.36","Od":"0.92","Mp":"31","Dp":"5","p":{"31":{"n":5.5},"32":{"n":5},"33":{"n":5.5},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":5},"38":{"n":5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":1,"s":{"n":0},"c":15},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":10,"s":{"n":0,"Og":"6","Os":"193","On":"32","Oa":"6.03","Od":"1.22","Mp":"32","p":{"31":{"n":6,"e":3038,"c":67},"32":{"n":6.5,"e":3045,"c":67,"g":1},"33":{"n":7.5,"e":3057,"c":67,"g":1},"34":{"n":2.5,"e":3066,"c":67},"35":{"n":7.5,"e":3079,"c":67},"36":{"n":6,"e":3089,"c":67},"38":{"n":6,"e":3109,"c":67}}},"c":15},{"i":2936,"n":"Carvalho","f":"Matis","p":"G","r":1,"s":{"n":0},"c":15},{"i":2995,"n":"Su\u00e1rez","f":"Math\u00edas","p":"D","r":8,"s":{"n":0,"Os":"46","On":"10","Oa":"4.6","Od":"0.49","Mp":"7","Dp":"3","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":5},"35":{"n":4},"36":{"n":5},"37":{"n":4.5}}},"c":15},{"i":3126,"n":"Ristic","f":"Mihailo","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"49","On":"10","Oa":"4.9","Od":"0.58","Mp":"3","Dp":"7","p":{"31":{"n":4},"36":{"n":5.5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":15},{"i":3520,"n":"Boutobba","f":"Bilal","p":"M","r":1,"s":{"n":0},"c":15},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":14,"s":{"n":0,"Og":"3","Os":"141","On":"29","Oa":"4.86","Od":"0.88","Mp":"29","p":{"31":{"n":4},"32":{"n":5},"33":{"n":5},"34":{"n":4.5},"35":{"n":5,"s":1}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":14,"s":{"n":0,"Og":"1","Os":"198","On":"38","Oa":"5.21","Od":"0.89","Mp":"38","p":{"31":{"n":5},"32":{"n":6.5},"33":{"n":6},"34":{"n":6},"35":{"n":6},"36":{"n":4},"37":{"n":3.5},"38":{"n":6}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":10,"s":{"n":0,"Og":"2","Oao":"1","Os":"144","On":"28","Oa":"5.16","Od":"1.12","Dp":"28","p":{"31":{"n":4.5},"32":{"n":6},"34":{"n":5}}},"c":16},{"i":159,"n":"Traor\u00e9","f":"Ismael","p":"D","r":16,"s":{"n":0,"Og":"3","Os":"151","On":"30","Oa":"5.05","Od":"0.95","Dp":"30","p":{"31":{"n":4.5},"33":{"n":4.5},"34":{"n":5},"35":{"n":6},"36":{"n":4},"37":{"n":3},"38":{"n":5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":10,"s":{"n":0,"Os":"61","On":"13","Oa":"4.73","Od":"0.58","Mp":"13","p":{"32":{"n":5.5},"33":{"n":4.5},"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":4},"37":{"n":3.5},"38":{"n":4.5}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":13,"s":{"n":0,"Og":"3","Os":"134","On":"26","Oa":"5.17","Od":"0.99","Mp":"19","Dp":"7","p":{"31":{"n":4},"32":{"n":7.5},"33":{"n":4},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":14,"s":{"n":0,"Og":"1","Oao":"1","Os":"160","On":"31","Oa":"5.16","Od":"1.07","Mp":"4","Dp":"27","p":{"32":{"n":6},"33":{"n":5},"34":{"n":7,"g":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":3},"38":{"n":6}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":14,"s":{"n":0,"Og":"2","Os":"158","On":"30","Oa":"5.27","Od":"1","Dp":"30","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":5.5,"s":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":2},"38":{"n":6}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Dp":"1"},"c":16},{"i":283,"n":"Lassana Coulibaly","f":"","p":"M","r":6,"s":{"n":0},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":8,"s":{"n":0,"Os":"153","On":"30","Oa":"5.1","Od":"0.84","Mp":"5","Dp":"25","p":{"31":{"n":5},"32":{"n":5,"s":1},"33":{"n":4.5}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":3,"s":{"n":0},"c":16},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":12,"s":{"n":0,"Os":"27","On":"6","Oa":"4.58","Od":"0.98","Mp":"1","Dp":"5","p":{"34":{"n":6},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":3},"38":{"n":4.5}}},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0},"c":16},{"i":510,"n":"Letellier","f":"Alexandre","p":"G","r":7,"s":{"n":0},"c":16},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":17,"s":{"n":0,"Og":"3","Os":"174","On":"35","Oa":"4.97","Od":"0.88","Mp":"18","Ap":"17","p":{"31":{"n":7.5,"g":2},"32":{"n":6.5,"g":1},"33":{"n":5},"34":{"n":5.5},"35":{"n":6},"36":{"n":5.5},"37":{"n":3.5},"38":{"n":5}}},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":10,"s":{"n":0,"Og":"4","Os":"156","On":"31","Oa":"5.03","Od":"0.97","Mp":"25","Ap":"6","p":{"31":{"n":5},"33":{"n":5.5,"s":1},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":4},"37":{"n":3},"38":{"n":5}}},"c":16},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":8,"s":{"n":0},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"83","On":"18","Oa":"4.64","Od":"0.76","Ap":"18","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"36":{"n":5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":20,"s":{"n":0,"Og":"11","Os":"155","On":"32","Oa":"4.84","Od":"1.15","Ap":"32","p":{"31":{"n":6,"g":1},"34":{"n":4},"35":{"n":6,"g":1},"36":{"n":4.5},"37":{"n":3},"38":{"n":4}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":20,"s":{"n":0,"Os":"203","On":"36","Oa":"5.64","Od":"1.05","Gp":"36","p":{"31":{"n":4},"32":{"n":6},"33":{"n":7.5},"34":{"n":5},"36":{"n":5},"37":{"n":6},"38":{"n":5.5}}},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":3,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.94","Dp":"3","p":{"31":{"n":5,"s":1},"37":{"n":3,"s":1}}},"c":16},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":15,"s":{"n":0,"Og":"3","Os":"191","On":"38","Oa":"5.03","Od":"1.12","Mp":"16","Ap":"22","p":{"31":{"n":5.5,"e":3038,"c":67,"s":1},"32":{"n":5.5,"e":3045,"c":67},"33":{"n":4.5,"e":3057,"c":67,"s":1},"34":{"n":2.5,"e":3066,"c":67},"35":{"n":5,"e":3079,"c":67},"36":{"n":5.5,"e":3089,"c":67},"37":{"n":5,"e":3093,"c":67},"38":{"n":5,"e":3109,"c":67}}},"c":16},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":18,"s":{"n":0,"Og":"5","Os":"133","On":"27","Oa":"4.94","Od":"0.82","Ap":"27","p":{"31":{"n":5,"e":3038,"c":67,"s":1},"32":{"n":3.5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":4,"e":3066,"c":67,"s":1},"36":{"n":4,"e":3089,"c":67,"s":1},"37":{"n":5,"e":3093,"c":67,"s":1}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"n":0},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":8,"s":{"n":0,"Os":"128","On":"26","Oa":"4.92","Od":"0.76","Mp":"26"},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":9,"s":{"n":0,"Os":"80","On":"17","Oa":"4.71","Od":"0.39","Mp":"17","p":{"31":{"n":5,"s":1},"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":6,"s":{"n":0,"Og":"2","Os":"85","On":"19","Oa":"4.5","Od":"0.71","Ap":"19","p":{"31":{"n":4.5,"s":1},"32":{"n":4.5}}},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":2944,"n":"Mouanga","f":"Kevin","p":"D","r":1,"s":{"n":0},"c":16},{"i":3528,"n":"Soula","f":"Mazire","p":"A","r":1,"s":{"n":0},"c":16},{"i":3769,"n":"Masson","f":"Julien","p":"M","r":2,"s":{"n":0},"c":16},{"i":4037,"n":"Petkovic","f":"Danijel","p":"G","r":9,"s":{"n":0},"c":16},{"i":5456,"n":"Ould Khaled","f":"Zin\u00e9dine","p":"M","r":1,"s":{"n":0},"c":16},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":23,"s":{"n":0,"Og":"10","Os":"197","On":"36","Oa":"5.49","Od":"1.24","Mp":"9","Ap":"27","p":{"31":{"n":5,"s":1},"32":{"n":4,"s":1},"33":{"n":6.5,"g":1},"34":{"n":6.5,"g":1},"35":{"n":6},"36":{"n":5},"37":{"n":8,"g":2},"38":{"n":5.5}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":13,"s":{"n":0,"Og":"7","Os":"137","On":"27","Oa":"5.09","Od":"1.16","Mp":"8","Ap":"19","p":{"31":{"n":5},"32":{"n":4},"33":{"n":5},"34":{"n":7,"g":1},"35":{"n":4,"s":1},"36":{"n":8,"g":2},"37":{"n":8,"g":1},"38":{"n":7.5,"g":2}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":9,"s":{"n":0,"Os":"63","On":"12","Oa":"5.29","Od":"0.43","Dp":"12","p":{"32":{"n":5}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":16,"s":{"n":0,"Og":"1","Os":"134","On":"25","Oa":"5.36","Od":"1","Mp":"1","Dp":"24","p":{"31":{"n":4},"32":{"n":4},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":4.5,"g":1},"36":{"n":6.5},"37":{"n":6},"38":{"n":6}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":7,"s":{"n":0,"Oao":"1","Os":"89","On":"18","Oa":"4.97","Od":"0.75","Mp":"1","Dp":"17","p":{"31":{"n":2.5,"a":1},"32":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":20,"s":{"n":0,"Og":"9","Os":"174","On":"32","Oa":"5.45","Od":"0.84","Mp":"26","Ap":"6","p":{"31":{"n":5.5,"g":1},"32":{"n":6,"g":1},"33":{"n":7.5,"g":1},"34":{"n":5.5},"35":{"n":5.5,"g":1},"36":{"n":6.5},"37":{"n":7},"38":{"n":5.5}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":10,"s":{"n":0,"Oao":"1","Os":"154","On":"30","Oa":"5.15","Od":"0.77","Mp":"30","p":{"31":{"n":4},"32":{"n":5},"33":{"n":4,"a":1,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":18},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":15,"s":{"n":0,"Os":"108","On":"20","Oa":"5.43","Od":"0.79","Dp":"20","p":{"31":{"n":5,"e":3040,"c":12},"32":{"n":6.5,"e":3044,"c":12},"33":{"n":5,"e":3061,"c":12},"34":{"n":7.5,"e":3066,"c":12},"35":{"n":4.5,"e":3074,"c":12},"36":{"n":6,"e":3086,"c":12},"37":{"n":6,"e":3094,"c":12}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":24,"s":{"n":0,"Og":"7","Os":"201","On":"37","Oa":"5.45","Od":"1.1","Mp":"36","Ap":"1","p":{"31":{"n":4},"32":{"n":5},"33":{"n":8},"34":{"n":4.5},"35":{"n":5},"36":{"n":7},"37":{"n":7},"38":{"n":5.5}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":19,"s":{"n":0,"Og":"2","Os":"164","On":"31","Oa":"5.29","Od":"0.96","Dp":"31","p":{"31":{"n":3},"32":{"n":4},"33":{"n":6},"34":{"n":4.5},"35":{"n":4.5}}},"c":18},{"i":1161,"n":"Traor\u00e9","f":"Bertrand","p":"A","r":17,"s":{"n":0,"Og":"7","Os":"176","On":"34","Oa":"5.19","Od":"1.06","Mp":"22","Ap":"12","p":{"31":{"n":4.5,"s":1},"33":{"n":5.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":4.5},"37":{"n":5,"s":1},"38":{"n":5.5,"s":1}}},"c":18},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":10,"s":{"n":0,"Os":"152","On":"27","Oa":"5.63","Od":"1","Gp":"27","p":{"31":{"n":8,"e":3041,"c":8},"32":{"n":6,"e":3048,"c":8}}},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":9,"s":{"n":0,"Os":"64","On":"13","Oa":"4.96","Od":"1.01","Mp":"6","Dp":"7","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":4.5}}},"c":18},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":27,"s":{"n":0,"Os":"214","On":"35","Oa":"6.13","Od":"0.92","Mp":"35","p":{"31":{"n":6.5,"e":3040,"c":12},"32":{"n":6.5,"e":3044,"c":12},"33":{"n":6,"e":3061,"c":12},"34":{"n":8,"e":3066,"c":12},"36":{"n":6,"e":3086,"c":12},"37":{"n":7.5,"e":3094,"c":12},"38":{"n":4.5,"e":3111,"c":12}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":2,"s":{"n":0},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":24,"s":{"n":0,"Os":"187","On":"34","Oa":"5.51","Od":"1.03","Gp":"34","p":{"31":{"n":3.5},"32":{"n":5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":5},"36":{"n":8},"37":{"n":6}}},"c":18},{"i":1527,"n":"Pape Cheikh","f":"","p":"M","r":6,"s":{"n":0,"Os":"56","On":"12","Oa":"4.71","Od":"0.43","Mp":"12"},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":13,"s":{"n":0,"Oao":"1","Os":"184","On":"33","Oa":"5.58","Od":"0.8","Dp":"33","p":{"31":{"n":4,"a":1},"33":{"n":6},"34":{"n":5.5},"35":{"n":5},"36":{"n":5.5},"37":{"n":6},"38":{"n":6}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Dp":"1"},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":1,"s":{"n":0},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":29,"s":{"n":0,"Og":"15","Os":"176","On":"33","Oa":"5.35","Od":"1.16","Ap":"33","p":{"31":{"n":3.5},"32":{"n":4.5},"33":{"n":4.5,"s":1},"34":{"n":6,"g":1,"s":1},"35":{"n":4.5,"s":1},"36":{"n":6,"g":1,"s":1},"37":{"n":7,"g":1},"38":{"n":4.5}}},"c":18},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":18},{"i":2952,"n":"Ndiaye","f":"Ousseynou","p":"M","r":1,"s":{"n":0},"c":18},{"i":3760,"n":"Fofana","f":"Boubacar","p":"A","r":1,"s":{"n":0},"c":18},{"i":3761,"n":"Jean Lucas","f":"","p":"M","r":5,"s":{"n":0},"c":18},{"i":3799,"n":"Andersen","f":"Joachim","p":"D","r":24,"s":{"n":0},"c":18},{"i":5459,"n":"Augarreau","f":"Cedric","p":"M","r":1,"s":{"n":0},"c":18},{"i":5460,"n":"Kitala","f":"Yann","p":"A","r":3,"s":{"n":0},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":16,"s":{"n":0,"Og":"4","Os":"158","On":"29","Oa":"5.47","Od":"1.15","Mp":"29","p":{"31":{"n":6}}},"c":19},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":20,"s":{"n":0,"Og":"6","Os":"172","On":"34","Oa":"5.06","Od":"1.1","Mp":"3","Ap":"31","p":{"31":{"n":5},"32":{"n":5},"33":{"n":5},"34":{"n":6},"35":{"n":3.5},"36":{"n":5},"37":{"n":3.5},"38":{"n":6}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":16,"s":{"n":0,"Og":"1","Os":"191","On":"36","Oa":"5.31","Od":"0.95","Dp":"36","p":{"31":{"n":7.5,"g":1},"32":{"n":4.5},"33":{"n":5},"34":{"n":6},"35":{"n":5.5},"36":{"n":5},"38":{"n":5.5}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":15,"s":{"n":0,"Og":"2","Os":"159","On":"30","Oa":"5.3","Od":"0.95","Mp":"28","Ap":"2","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":4.5},"34":{"n":7},"35":{"n":5},"36":{"n":6},"37":{"n":5},"38":{"n":6}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":10,"s":{"n":0,"Og":"2","Os":"99","On":"19","Oa":"5.21","Od":"0.75","Mp":"19","p":{"31":{"n":6.5,"s":1},"32":{"n":5},"33":{"n":4},"38":{"n":5,"s":1}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":7,"s":{"n":0,"Os":"14","On":"3","Oa":"4.83","Od":"1.03","Gp":"3"},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":13,"s":{"n":0,"Og":"1","Oao":"1","Os":"180","On":"35","Oa":"5.16","Od":"0.85","Dp":"35","p":{"31":{"n":5.5},"32":{"n":5.5},"33":{"n":4.5},"34":{"n":6},"35":{"n":6},"36":{"n":6,"g":1},"37":{"n":4},"38":{"n":5.5}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":27,"s":{"n":0,"Os":"210","On":"35","Oa":"6.01","Od":"1.32","Gp":"35","p":{"31":{"n":7},"32":{"n":7.5},"33":{"n":5},"34":{"n":6},"35":{"n":8},"36":{"n":5},"37":{"n":3.5},"38":{"n":7}}},"c":19},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":12,"s":{"n":0},"c":19},{"i":353,"n":"Lusamba","f":"Arnaud","p":"M","r":2,"s":{"n":0},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":7,"s":{"n":0,"Os":"83","On":"17","Oa":"4.91","Od":"0.9","Mp":"4","Dp":"13","p":{"31":{"n":6.5},"32":{"n":5.5},"33":{"n":5},"34":{"n":5},"35":{"n":5}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"107","On":"22","Oa":"4.89","Od":"0.69","Mp":"15","Ap":"7","p":{"31":{"n":6},"32":{"n":4},"33":{"n":4},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":7,"s":{"n":0,"Os":"70","On":"14","Oa":"5","Od":"0.93","Mp":"3","Dp":"11","p":{"31":{"n":5,"s":1},"37":{"n":4}}},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":2,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":1,"s":{"n":0},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":4,"s":{"n":0,"Og":"1","Os":"22","On":"5","Oa":"4.5","Od":"0.84","Ap":"5","p":{"35":{"n":4.5,"s":1},"36":{"n":3.5},"37":{"n":4.5,"s":1},"38":{"n":6,"g":1}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":13,"s":{"n":0,"Os":"195","On":"37","Oa":"5.28","Od":"1.04","Mp":"36","Dp":"1","p":{"32":{"n":5.5,"s":1},"33":{"n":5},"34":{"n":7.5},"35":{"n":5.5},"36":{"n":5.5},"37":{"n":4},"38":{"n":6}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":7,"s":{"n":0,"Os":"64","On":"14","Oa":"4.57","Od":"0.68","Ap":"14"},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"94","On":"20","Oa":"4.73","Od":"0.77","Ap":"20","p":{"31":{"n":4.5,"s":1},"32":{"n":5,"s":1},"34":{"n":4,"s":1},"35":{"n":6.5,"g":1},"37":{"n":3.5},"38":{"n":5}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":19,"s":{"n":0,"Os":"178","On":"33","Oa":"5.41","Od":"0.92","Dp":"33","p":{"31":{"n":6},"32":{"n":5.5},"33":{"n":6},"34":{"n":6},"35":{"n":6},"36":{"n":5.5},"38":{"n":6.5}}},"c":19},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":7,"s":{"n":0,"Os":"61","On":"13","Oa":"4.69","Od":"0.8","Mp":"9","Ap":"4","p":{"33":{"n":4.5,"s":1},"34":{"n":6},"36":{"n":4.5,"s":1}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":5,"s":{"n":0,"Os":"41","On":"9","Oa":"4.61","Od":"0.61","Mp":"5","Dp":"4","p":{"37":{"n":3}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":1,"s":{"n":0},"c":19},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":8,"s":{"n":0,"Os":"26","On":"6","Oa":"4.33","Od":"0.24","Ap":"6","p":{"31":{"n":4},"32":{"n":4.5}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":1,"s":{"n":0,"Os":"17","On":"4","Oa":"4.38","Od":"0.96","Dp":"4","p":{"36":{"n":4},"37":{"n":3}}},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":25,"s":{"n":0,"Og":"6","Os":"154","On":"29","Oa":"5.33","Od":"1.25","Mp":"12","Dp":"10","Ap":"7","p":{"32":{"n":4.5,"s":1},"33":{"n":4},"34":{"n":9,"g":3},"35":{"n":6},"36":{"n":3.5},"37":{"n":5},"38":{"n":5.5}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":10,"s":{"n":0,"Os":"106","On":"22","Oa":"4.82","Od":"0.92","Mp":"20","Ap":"2","p":{"31":{"n":6},"32":{"n":5},"34":{"n":5.5,"s":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":4.5}}},"c":19},{"i":2945,"n":"Hamache","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":19},{"i":2946,"n":"Sylvestre","f":"Eddy","p":"M","r":7,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"0.58","Mp":"2","Ap":"3"},"c":19},{"i":2959,"n":"Kephren Thuram","f":"","p":"M","r":1,"s":{"n":0},"c":19},{"i":2988,"n":"Drame","f":"Jawad","p":"M","r":1,"s":{"n":0},"c":19},{"i":3502,"n":"Wade","f":"Paul","p":"M","r":1,"s":{"n":0},"c":19},{"i":3506,"n":"Pelican","f":"Maxime","p":"A","r":4,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Ap":"1"},"c":19},{"i":3527,"n":"Jaziri","f":"Assil","p":"M","r":1,"s":{"n":0},"c":19},{"i":3756,"n":"Pedro Brazao","f":"","p":"M","r":1,"s":{"n":0},"c":19},{"i":4141,"n":"Cisse","f":"Ibrahim","p":"D","r":3,"s":{"n":0},"c":19},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":2,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"38":{"n":5,"s":1}}},"c":20},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":2,"s":{"n":0},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":16,"s":{"n":0,"Og":"7","Os":"135","On":"26","Oa":"5.21","Od":"1.19","Mp":"13","Ap":"13","p":{"31":{"n":7,"g":2},"32":{"n":6},"33":{"n":4.5},"34":{"n":4,"s":1},"36":{"n":4.5}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":16,"s":{"n":0,"Og":"2","Os":"174","On":"33","Oa":"5.27","Od":"1.21","Dp":"33","p":{"32":{"n":6},"33":{"n":5},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":5},"37":{"n":6.5},"38":{"n":5.5}}},"c":20},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":20,"s":{"n":0,"Og":"8","Os":"189","On":"35","Oa":"5.4","Od":"1.04","Mp":"24","Ap":"11","p":{"31":{"n":4.5},"32":{"n":5,"s":1},"33":{"n":3.5},"35":{"n":6,"g":1},"36":{"n":7,"g":1},"37":{"n":6},"38":{"n":7,"g":1}}},"c":20},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":6,"s":{"n":0,"Os":"60","On":"12","Oa":"5.04","Od":"1.11","Dp":"12","p":{"36":{"n":6,"e":3087,"c":18},"37":{"n":6,"e":3095,"c":18},"38":{"n":5,"e":3109,"c":18}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":10,"s":{"n":0,"Og":"1","Oao":"1","Os":"124","On":"25","Oa":"4.96","Od":"0.9","Dp":"25","p":{"34":{"n":5},"35":{"n":6},"36":{"n":4.5},"38":{"n":5}}},"c":20},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":15,"s":{"n":0,"Og":"8","Os":"99","On":"19","Oa":"5.21","Od":"1.22","Mp":"9","Ap":"10","p":{"32":{"n":4.5},"33":{"n":6,"g":1},"34":{"n":7.5,"g":2},"35":{"n":5},"37":{"n":6,"g":1,"s":1},"38":{"n":5}}},"c":20},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":18,"s":{"n":0,"Og":"5","Os":"199","On":"36","Oa":"5.53","Od":"1.04","Mp":"23","Ap":"13","p":{"31":{"n":6,"e":3033,"c":16},"32":{"n":6,"e":3042,"c":16},"33":{"n":5.5,"e":3054,"c":16},"34":{"n":5.5,"e":3063,"c":16},"35":{"n":5.5,"e":3072,"c":16},"36":{"n":6,"e":3083,"c":16,"g":1},"37":{"n":5,"e":3094,"c":16},"38":{"n":5.5,"e":3103,"c":16}}},"c":20},{"i":374,"n":"Salin","f":"Romain","p":"G","r":6,"s":{"n":0},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"98","On":"20","Oa":"4.9","Od":"0.78","Mp":"2","Dp":"18","p":{"31":{"n":4.5},"34":{"n":5,"s":1},"36":{"n":5}}},"c":20},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":11,"s":{"n":0,"Os":"133","On":"27","Oa":"4.94","Od":"0.86","Mp":"2","Dp":"25","p":{"31":{"n":6,"e":3038,"c":67},"32":{"n":5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":5,"e":3066,"c":67,"s":1},"35":{"n":5.5,"e":3079,"c":67},"36":{"n":6,"e":3089,"c":67},"37":{"n":4.5,"e":3093,"c":67},"38":{"n":2.5,"e":3109,"c":67}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":10,"s":{"n":0,"Os":"120","On":"24","Oa":"5","Od":"0.63","Mp":"23","Dp":"1","p":{"34":{"n":5},"35":{"n":4.5},"36":{"n":4},"37":{"n":5.5,"s":1},"38":{"n":5,"s":1}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":6,"s":{"n":0,"Os":"8","On":"2","Oa":"4","Od":"0.5","Ap":"2"},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":25,"s":{"n":0,"Og":"11","Os":"152","On":"28","Oa":"5.45","Od":"1.04","Mp":"5","Ap":"23","p":{"31":{"n":7,"g":1},"32":{"n":5},"33":{"n":6,"g":1},"35":{"n":7,"g":1},"36":{"n":6},"37":{"n":5},"38":{"n":8,"g":2}}},"c":20},{"i":1182,"n":"Hamari Traor\u00e9","f":"","p":"D","r":12,"s":{"n":0,"Os":"166","On":"34","Oa":"4.88","Od":"0.93","Mp":"1","Dp":"33","p":{"31":{"n":4.5,"s":1},"32":{"n":5.5},"33":{"n":3.5},"34":{"n":4},"35":{"n":5},"37":{"n":6},"38":{"n":5.5}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":17,"s":{"n":0,"Og":"6","Os":"172","On":"34","Oa":"5.07","Od":"1.11","Mp":"32","Ap":"2","p":{"31":{"n":5},"32":{"n":4.5},"33":{"n":5.5,"s":1},"34":{"n":4},"35":{"n":5.5,"s":1},"36":{"n":5.5},"37":{"n":7,"g":1}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":15,"s":{"n":0,"Og":"2","Os":"170","On":"33","Oa":"5.17","Od":"1.01","Mp":"32","Ap":"1","p":{"32":{"n":4.5,"s":1},"33":{"n":6},"35":{"n":4},"36":{"n":6},"37":{"n":5.5},"38":{"n":5.5}}},"c":20},{"i":1206,"n":"Tell","f":"Jordan","p":"A","r":6,"s":{"n":0},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":6,"s":{"n":0,"Os":"35","On":"6","Oa":"5.83","Od":"1.11","Gp":"6"},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":9,"s":{"n":0,"Os":"139","On":"29","Oa":"4.81","Od":"0.76","Mp":"27","Dp":"1","Ap":"1","p":{"31":{"n":5,"s":1},"32":{"n":5},"33":{"n":5,"s":1},"34":{"n":5.5},"36":{"n":5,"s":1},"38":{"n":4.5}}},"c":20},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":16,"s":{"n":0,"Os":"175","On":"33","Oa":"5.3","Od":"1.04","Gp":"33","p":{"31":{"n":5},"32":{"n":6},"33":{"n":5},"34":{"n":5},"35":{"n":4.5},"36":{"n":8},"37":{"n":7},"38":{"n":7}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":7,"s":{"n":0,"Os":"34","On":"8","Oa":"4.25","Od":"0.94","Dp":"8","p":{"31":{"n":4},"33":{"n":3},"35":{"n":5},"36":{"n":4.5}}},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":8,"s":{"n":0,"Os":"106","On":"22","Oa":"4.84","Od":"0.71","Mp":"5","Dp":"17","p":{"31":{"n":5.5},"34":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"82","On":"16","Oa":"5.13","Od":"0.65","Mp":"16","p":{"32":{"n":5.5},"33":{"n":4.5,"s":1},"34":{"n":6},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5.5}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":3,"s":{"n":0},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2"},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":7,"s":{"n":0,"Og":"3","Os":"73","On":"15","Oa":"4.87","Od":"0.97","Ap":"15"},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":3,"s":{"n":0},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":3125,"n":"Doumbia","f":"Souleyman","p":"D","r":7,"s":{"n":0,"Os":"33","On":"7","Oa":"4.79","Od":"0.92","Dp":"7","p":{"31":{"n":3.5},"32":{"n":5},"33":{"n":4},"37":{"n":6.5}}},"c":20},{"i":3186,"n":"Camavinga","f":"Eduardo","p":"M","r":9,"s":{"n":0,"Os":"39","On":"7","Oa":"5.57","Od":"0.42","Mp":"7","p":{"31":{"n":5,"s":1},"32":{"n":5,"s":1},"34":{"n":6},"35":{"n":5.5},"37":{"n":6},"38":{"n":6}}},"c":20},{"i":3229,"n":"Matondo","f":"Isaac","p":"A","r":1,"s":{"n":0},"c":20},{"i":3358,"n":"Lauriente","f":"Armand","p":"M","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":20},{"i":3522,"n":"Nkada","f":"Timothee","p":"A","r":1,"s":{"n":0},"c":20},{"i":3525,"n":"Boey","f":"Sacha","p":"D","r":3,"s":{"n":0},"c":20},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":12,"s":{"n":0,"Og":"1","Os":"155","On":"31","Oa":"5.02","Od":"1.18","Dp":"31","p":{"31":{"n":3.5,"e":3038,"c":5},"32":{"n":4.5,"e":3042,"c":5},"33":{"n":6,"e":3056,"c":5,"g":1},"34":{"n":6,"e":3065,"c":5},"36":{"n":5.5,"e":3084,"c":5},"37":{"n":3,"e":3095,"c":5},"38":{"n":4,"e":3104,"c":5}}},"c":41},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":15,"s":{"n":0,"Og":"5","Os":"175","On":"34","Oa":"5.15","Od":"0.98","Mp":"23","Ap":"11","p":{"32":{"n":5},"33":{"n":4.5,"s":1},"34":{"n":5},"35":{"n":5,"s":1},"36":{"n":4},"37":{"n":4},"38":{"n":5}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"85","On":"17","Oa":"5","Od":"0.45","Mp":"13","Ap":"4","p":{"37":{"n":5,"s":1}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1","p":{"38":{"n":6}}},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":10,"s":{"n":0,"Og":"1","Os":"136","On":"27","Oa":"5.04","Od":"1","Dp":"27","p":{"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":5},"37":{"n":4},"38":{"n":5.5,"s":1}}},"c":41},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":13,"s":{"n":0,"Og":"3","Os":"129","On":"23","Oa":"5.63","Od":"1.04","Mp":"22","Ap":"1","p":{"33":{"n":4},"34":{"n":6},"35":{"n":4}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1"},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":9,"s":{"n":0,"Os":"114","On":"22","Oa":"5.2","Od":"0.72","Mp":"19","Dp":"3","p":{"31":{"n":5,"s":1},"37":{"n":5},"38":{"n":6}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":3,"s":{"n":0,"Os":"19","On":"4","Oa":"4.88","Od":"1.14","Mp":"2","Dp":"2","p":{"36":{"n":5},"38":{"n":6}}},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":5,"s":{"n":0,"Os":"23","On":"5","Oa":"4.7","Od":"0.4","Mp":"5"},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":7,"s":{"n":0},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":12,"s":{"n":0,"Og":"8","Os":"168","On":"34","Oa":"4.94","Od":"1.1","Mp":"2","Ap":"32","p":{"31":{"n":6,"g":1},"32":{"n":3.5},"33":{"n":4},"35":{"n":3.5},"36":{"n":4.5,"s":1},"37":{"n":5},"38":{"n":4.5,"s":1}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":9,"s":{"n":0,"Os":"143","On":"29","Oa":"4.95","Od":"0.82","Mp":"9","Dp":"20","p":{"31":{"n":3.5},"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":5.5},"35":{"n":5},"37":{"n":3.5},"38":{"n":5.5}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":25,"s":{"n":0,"Og":"5","Os":"181","On":"34","Oa":"5.32","Od":"1.19","Mp":"22","Dp":"12","p":{"31":{"n":4.5},"32":{"n":4.5},"34":{"n":5},"35":{"n":6,"g":1},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":5.5}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"97","On":"20","Oa":"4.85","Od":"0.59","Mp":"17","Ap":"3","p":{"37":{"n":4.5,"s":1}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":8,"s":{"n":0,"Os":"111","On":"22","Oa":"5.05","Od":"0.72","Mp":"12","Dp":"10","p":{"31":{"n":5.5},"32":{"n":3.5},"33":{"n":4},"34":{"n":5.5},"35":{"n":5},"36":{"n":5},"38":{"n":6}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Ismael","p":"D","r":1,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.94","Mp":"2","Dp":"1"},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":3,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2"},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":14,"s":{"n":0,"Og":"10","Os":"172","On":"35","Oa":"4.91","Od":"0.98","Ap":"35","p":{"31":{"n":4.5,"s":1},"33":{"n":3.5},"34":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":5},"37":{"n":4.5,"s":1},"38":{"n":6,"g":1}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":17,"s":{"n":0,"Os":"208","On":"37","Oa":"5.62","Od":"0.95","Gp":"37","p":{"31":{"n":6},"32":{"n":4},"33":{"n":5},"34":{"n":6},"35":{"n":5},"36":{"n":5.5},"37":{"n":5}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":10,"s":{"n":0,"Og":"3","Os":"167","On":"32","Oa":"5.23","Od":"0.94","Mp":"32","p":{"31":{"n":5.5},"33":{"n":4},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":4.5,"s":1},"38":{"n":4.5}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":16,"s":{"n":0,"Og":"9","Os":"128","On":"25","Oa":"5.14","Od":"1.14","Ap":"25","p":{"31":{"n":5},"32":{"n":7.5,"g":2},"33":{"n":4,"s":1},"34":{"n":3.5},"35":{"n":4.5},"36":{"n":6,"g":1},"37":{"n":5}}},"c":41},{"i":2726,"n":"Stefan Mitrovic","f":"","p":"D","r":10,"s":{"n":0,"Oao":"1","Os":"171","On":"34","Oa":"5.04","Od":"0.75","Dp":"34","p":{"31":{"n":4.5},"32":{"n":4.5},"33":{"n":3.5},"34":{"n":5.5},"35":{"n":5},"36":{"n":6},"37":{"n":4.5},"38":{"n":6}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"89","On":"17","Oa":"5.26","Od":"1.02","Mp":"17","p":{"32":{"n":4.5},"35":{"n":5},"36":{"n":4.5,"s":1}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":1,"s":{"n":0},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":3187,"n":"Valentin","f":"Leon","p":"D","r":1,"s":{"n":0},"c":41},{"i":3188,"n":"Karamoko","f":"Mamoudoou","p":"A","r":1,"s":{"n":0},"c":41},{"i":3775,"n":"Bellegarde","f":"Jean-Ricner","p":"M","r":1,"s":{"n":0},"c":41},{"i":5457,"n":"Lebeau","f":"Adrien","p":"D","r":1,"s":{"n":0},"c":41},{"i":5458,"n":"Botella","f":"Ivann","p":"A","r":4,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"121","On":"26","Oa":"4.65","Od":"0.58","Mp":"7","Dp":"16","Ap":"3","p":{"33":{"n":5.5,"s":1},"35":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"137","On":"27","Oa":"5.07","Od":"0.82","Mp":"27","p":{"31":{"n":5},"32":{"n":4.5},"33":{"n":4},"34":{"n":6.5},"35":{"n":4.5},"36":{"n":6.5},"37":{"n":4.5},"38":{"n":5}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":7,"s":{"n":0},"c":42},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":9,"s":{"n":0,"Og":"1","Os":"72","On":"14","Oa":"5.18","Od":"0.62","Mp":"4","Dp":"10","p":{"38":{"n":5,"e":3108,"c":19,"s":1}}},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"164","On":"34","Oa":"4.84","Od":"0.73","Dp":"34","p":{"31":{"n":5.5,"s":1},"32":{"n":4.5},"33":{"n":4.5},"34":{"n":5.5},"35":{"n":4.5},"36":{"n":5},"37":{"n":4},"38":{"n":6}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":20,"s":{"n":0,"Os":"210","On":"38","Oa":"5.53","Od":"1.04","Gp":"38","p":{"31":{"n":5.5},"32":{"n":7},"33":{"n":4},"34":{"n":6},"35":{"n":5.5},"36":{"n":6},"37":{"n":3.5},"38":{"n":4.5}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":10,"s":{"n":0,"Os":"166","On":"33","Oa":"5.05","Od":"0.85","Mp":"33","p":{"31":{"n":5},"32":{"n":4.5,"s":1},"33":{"n":5},"35":{"n":6.5},"36":{"n":5.5},"37":{"n":4},"38":{"n":6}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":17,"s":{"n":0,"Og":"7","Os":"130","On":"27","Oa":"4.83","Od":"1.17","Ap":"27","p":{"31":{"n":7.5,"g":2},"32":{"n":3.5},"34":{"n":4},"35":{"n":4,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4},"38":{"n":3.5}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":8,"s":{"n":0,"Oao":"1","Os":"108","On":"23","Oa":"4.7","Od":"0.91","Dp":"23","p":{"34":{"n":5},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":4},"38":{"n":5.5,"s":1}}},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":1,"s":{"n":0},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":13,"s":{"n":0,"Og":"1","Oao":"1","Os":"143","On":"30","Oa":"4.78","Od":"0.97","Dp":"30","p":{"31":{"n":5},"32":{"n":5},"33":{"n":4},"38":{"n":5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":4,"s":{"n":0,"Os":"21","On":"5","Oa":"4.3","Od":"0.24","Mp":"2","Ap":"3"},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":2,"s":{"n":0},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":12,"s":{"n":0,"Os":"24","On":"5","Oa":"4.9","Od":"0.97","Mp":"5","p":{"31":{"n":5,"s":1},"32":{"n":4.5,"s":1},"33":{"n":3.5}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":7,"s":{"n":0,"Os":"59","On":"12","Oa":"4.96","Od":"0.69","Mp":"10","Ap":"2"},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":8,"s":{"n":0,"Og":"2","Os":"119","On":"25","Oa":"4.78","Od":"1.09","Mp":"17","Ap":"8","p":{"31":{"n":7},"32":{"n":5.5},"33":{"n":3.5},"34":{"n":3.5},"35":{"n":6.5,"g":1},"36":{"n":4}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":6,"s":{"n":0,"Os":"112","On":"23","Oa":"4.89","Od":"0.96","Mp":"4","Dp":"19","p":{"31":{"n":4},"33":{"n":5,"s":1}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":11,"s":{"n":0,"Og":"2","Os":"156","On":"33","Oa":"4.73","Od":"0.82","Mp":"13","Ap":"20","p":{"31":{"n":4.5,"s":1},"32":{"n":4,"s":1},"33":{"n":6.5,"g":1},"34":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":3.5},"38":{"n":5}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":13,"s":{"n":0,"Og":"4","Os":"175","On":"34","Oa":"5.15","Od":"0.94","Mp":"33","Ap":"1","p":{"31":{"n":7},"32":{"n":5.5},"34":{"n":4.5},"35":{"n":4},"36":{"n":5.5},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":1,"s":{"n":0,"Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3"},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2789,"n":"Timite","f":"Cheick","p":"M","r":13,"s":{"n":0,"Og":"1","Os":"126","On":"27","Oa":"4.67","Od":"0.53","Mp":"20","Ap":"7","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":6,"g":1,"s":1},"34":{"n":4.5},"35":{"n":4},"36":{"n":4.5},"37":{"n":4,"s":1},"38":{"n":5,"s":1}}},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"49","On":"11","Oa":"4.5","Od":"0.74","Mp":"2","Ap":"9"},"c":42},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"162","On":"35","Oa":"4.64","Od":"0.59","Mp":"2","Dp":"33","p":{"31":{"n":4.5},"32":{"n":5},"33":{"n":3.5},"34":{"n":5},"36":{"n":5.5},"37":{"n":4},"38":{"n":5}}},"c":42},{"i":2832,"n":"Ghoddos","f":"Saman","p":"A","r":13,"s":{"n":0,"Og":"3","Os":"129","On":"26","Oa":"4.98","Od":"0.99","Mp":"11","Ap":"15","p":{"34":{"n":5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":5,"s":1},"37":{"n":4},"38":{"n":7,"g":1}}},"c":42},{"i":2937,"n":"Segarel","f":"Stanley","p":"A","r":4,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Ap":"2"},"c":42},{"i":2994,"n":"Mathurin Sakho","f":"","p":"D","r":1,"s":{"n":0},"c":42},{"i":3366,"n":"Guirassy","f":"Serhou","p":"A","r":14,"s":{"n":0,"Og":"3","Os":"63","On":"12","Oa":"5.25","Od":"1.15","Ap":"12","p":{"32":{"n":4.5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":3.5},"36":{"n":6},"37":{"n":4.5},"38":{"n":7,"g":1}}},"c":42},{"i":3515,"n":"Gomis","f":"Iron","p":"M","r":1,"s":{"n":0},"c":42},{"i":3759,"n":"Lahne","f":"Jack","p":"A","r":3,"s":{"n":0},"c":42},{"i":3762,"n":"Eneme","f":"Ulrich","p":"M","r":3,"s":{"n":0},"c":42},{"i":3774,"n":"Mamilonne","f":"Yannick","p":"A","r":5,"s":{"n":0},"c":42},{"i":3803,"n":"Aleesami","f":"Haitam","p":"D","r":11,"s":{"n":0},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":4,"s":{"n":0,"Os":"32","On":"7","Oa":"4.57","Od":"1.02","Mp":"7"},"c":67},{"i":310,"n":"Philippoteaux","f":"Romain","p":"M","r":7,"s":{"n":0},"c":67},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":13,"s":{"n":0,"Og":"3","Os":"170","On":"32","Oa":"5.33","Od":"0.89","Dp":"32","p":{"31":{"n":4.5,"e":3039,"c":41},"32":{"n":4.5,"e":3051,"c":41},"33":{"n":5,"e":3060,"c":41,"g":1},"34":{"n":5.5,"e":3062,"c":41}}},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":10,"s":{"n":0,"Og":"3","Os":"111","On":"22","Oa":"5.07","Od":"1.11","Dp":"22"},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":3,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":3,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"2","p":{"35":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.83","Od":"0.62","Dp":"3"},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2653,"n":"Sainte Luce","f":"Theo","p":"M","r":1,"s":{"n":0},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":1,"s":{"n":0},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":10,"s":{"n":0,"Og":"1","Os":"119","On":"25","Oa":"4.78","Od":"0.87","Dp":"25","p":{"34":{"n":4,"s":1},"35":{"n":5},"36":{"n":6},"37":{"n":4.5}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":7,"s":{"n":0,"Og":"4","Os":"84","On":"17","Oa":"4.94","Od":"1.11","Ap":"17"},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":8,"s":{"n":0,"Os":"62","On":"13","Oa":"4.77","Od":"1.01","Dp":"13","p":{"32":{"n":4.5},"33":{"n":5.5},"34":{"n":2.5},"35":{"n":5.5},"36":{"n":6},"37":{"n":4.5},"38":{"n":5.5}}},"c":67},{"i":2702,"n":"Bobichon","f":"Antonin","p":"M","r":15,"s":{"n":0,"Og":"7","Os":"156","On":"30","Oa":"5.2","Od":"1.19","Mp":"24","Ap":"6","p":{"31":{"n":6},"32":{"n":3.5},"33":{"n":4},"34":{"n":3},"35":{"n":6},"36":{"n":5.5},"37":{"n":7},"38":{"n":7,"g":1}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":13,"s":{"n":0,"Os":"153","On":"31","Oa":"4.95","Od":"0.61","Mp":"31","p":{"31":{"n":5.5},"33":{"n":5,"s":1},"34":{"n":3},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5.5}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":16,"s":{"n":0,"Og":"2","Os":"169","On":"33","Oa":"5.14","Od":"1.19","Dp":"33","p":{"31":{"n":5.5},"35":{"n":6.5},"36":{"n":6},"37":{"n":5.5},"38":{"n":4.5}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":7,"s":{"n":0,"Os":"91","On":"20","Oa":"4.58","Od":"0.79","Dp":"20","p":{"31":{"n":5.5},"32":{"n":4,"s":1},"34":{"n":3},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":4.5}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":20,"s":{"n":0,"Og":"8","Os":"202","On":"38","Oa":"5.32","Od":"1.19","Mp":"9","Dp":"9","Ap":"20","p":{"31":{"n":6},"32":{"n":4.5},"33":{"n":7,"g":1},"34":{"n":3},"35":{"n":6.5,"g":1},"36":{"n":7,"g":1},"37":{"n":7,"g":1},"38":{"n":6.5,"g":1}}},"c":67},{"i":2957,"n":"Lionel Dias","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":67},{"i":3771,"n":"Denkey","f":"Ahouek\u00e8","p":"A","r":5,"s":{"n":0},"c":67},{"i":3784,"n":"Stojanovski","f":"Vlatko","p":"A","r":5,"s":{"n":0},"c":67},{"i":3797,"n":"Ferhat","f":"Zinedine","p":"M","r":5,"s":{"n":0},"c":67},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":14,"s":{"n":0,"Oao":"1","Os":"200","On":"38","Oa":"5.26","Od":"1.05","Dp":"38","p":{"31":{"n":5.5},"32":{"n":5},"33":{"n":4},"34":{"n":5},"35":{"n":4},"36":{"n":3.5},"37":{"n":6.5},"38":{"n":6}}},"c":68},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":8,"s":{"n":0,"Os":"62","On":"13","Oa":"4.81","Od":"0.46","Mp":"13","p":{"38":{"n":5,"s":1}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":15,"s":{"n":0,"Og":"7","Os":"175","On":"34","Oa":"5.15","Od":"0.94","Mp":"33","Ap":"1","p":{"31":{"n":5},"32":{"n":5},"33":{"n":5.5},"34":{"n":5.5,"g":1},"35":{"n":3.5},"36":{"n":4},"37":{"n":5.5},"38":{"n":7,"g":1}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":7,"s":{"n":0,"Os":"67","On":"14","Oa":"4.79","Od":"0.41","Mp":"13","Ap":"1","p":{"34":{"n":5,"s":1},"36":{"n":5,"s":1}}},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"99","On":"20","Oa":"4.95","Od":"0.8","Mp":"20","p":{"31":{"n":6},"32":{"n":4},"33":{"n":3.5},"34":{"n":4.5},"35":{"n":3.5},"37":{"n":5.5},"38":{"n":5}}},"c":68},{"i":1459,"n":"Diouf","f":"Yehvann","p":"G","r":1,"s":{"n":0},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":9,"s":{"n":0,"Og":"3","Os":"101","On":"22","Oa":"4.61","Od":"0.94","Ap":"22","p":{"32":{"n":4,"s":1},"35":{"n":4,"s":1},"36":{"n":5,"s":1},"37":{"n":7,"g":1}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"1.02","Dp":"5"},"c":68},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":7,"s":{"n":0,"Os":"35","On":"7","Oa":"5.07","Od":"0.49","Dp":"7"},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":3,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":16,"s":{"n":0,"Os":"194","On":"36","Oa":"5.39","Od":"0.78","Mp":"36","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":4},"35":{"n":4},"36":{"n":4},"37":{"n":5.5},"38":{"n":6}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":5,"s":{"n":0,"Os":"103","On":"20","Oa":"5.18","Od":"0.97","Dp":"20"},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":28,"s":{"n":0,"Og":"10","Os":"188","On":"37","Oa":"5.08","Od":"1.18","Mp":"32","Ap":"5","p":{"31":{"n":7,"g":1,"s":1},"32":{"n":4.5},"33":{"n":4},"34":{"n":4},"35":{"n":3},"36":{"n":4},"37":{"n":5,"s":1},"38":{"n":6}}},"c":68},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":22,"s":{"n":0,"Os":"218","On":"38","Oa":"5.75","Od":"1.06","Gp":"38","p":{"31":{"n":6},"32":{"n":7.5},"33":{"n":4.5},"34":{"n":6},"35":{"n":4},"36":{"n":6},"37":{"n":7.5},"38":{"n":5.5}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":3,"s":{"n":0,"Os":"20","On":"4","Oa":"5","Od":"1.06","Dp":"4","p":{"34":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":6.5}}},"c":68},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":3,"s":{"n":0,"Os":"56","On":"12","Oa":"4.67","Od":"0.59","Mp":"12"},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":13,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1"},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":12,"s":{"n":0,"Og":"3","Os":"143","On":"28","Oa":"5.13","Od":"0.84","Mp":"25","Ap":"3","p":{"31":{"n":5,"s":1},"32":{"n":5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":6,"g":1},"37":{"n":5.5},"38":{"n":6.5}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":5,"s":{"n":0,"Os":"37","On":"8","Oa":"4.69","Od":"0.35","Mp":"7","Dp":"1"},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":8,"s":{"n":0,"Os":"81","On":"16","Oa":"5.09","Od":"0.62","Mp":"8","Dp":"8","p":{"35":{"n":5.5,"s":1},"36":{"n":3.5},"37":{"n":5.5},"38":{"n":6}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":14,"s":{"n":0,"Og":"2","Os":"197","On":"36","Oa":"5.47","Od":"0.74","Mp":"36","p":{"31":{"n":6},"32":{"n":5.5},"33":{"n":4},"34":{"n":5},"35":{"n":4.5},"36":{"n":4.5},"37":{"n":6.5},"38":{"n":5.5}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":10,"s":{"n":0,"Os":"156","On":"32","Oa":"4.89","Od":"0.62","Dp":"32","p":{"31":{"n":5},"32":{"n":5.5},"33":{"n":3.5},"34":{"n":5},"35":{"n":4},"36":{"n":3.5},"37":{"n":5}}},"c":68},{"i":2951,"n":"Dia","f":"Boulaye","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"65","On":"13","Oa":"5.04","Od":"0.93","Mp":"5","Ap":"8","p":{"31":{"n":4},"32":{"n":5},"33":{"n":3.5}}},"c":68},{"i":3360,"n":"Sissoko","f":"Sambou","p":"D","r":6,"s":{"n":0},"c":68},{"i":3364,"n":"Zeneli","f":"Arb\u00ebr","p":"A","r":8,"s":{"n":0,"Og":"3","Os":"68","On":"14","Oa":"4.86","Od":"1.17","Mp":"8","Ap":"6","p":{"31":{"n":3.5},"32":{"n":4.5,"s":1},"33":{"n":4,"s":1},"34":{"n":5},"35":{"n":3.5},"36":{"n":6,"g":1,"s":1},"38":{"n":5,"s":1}}},"c":68},{"i":3365,"n":"Moreto Cassam\u00e3","f":"","p":"M","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"34":{"n":4.5}}},"c":68},{"i":3766,"n":"Munetsi","f":"Marshall","p":"M","r":5,"s":{"n":0},"c":68},{"i":3793,"n":"Shamal","f":"Steve","p":"M","r":1,"s":{"n":0},"c":68},{"i":3794,"n":"Berthier","f":"Gregory","p":"M","r":5,"s":{"n":0},"c":68},{"i":3807,"n":"Rajkovic","f":"Predrag","p":"G","r":10,"s":{"n":0},"c":68},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":9,"s":{"n":0},"c":75},{"i":564,"n":"Magnetti","f":"Hugo","p":"M","r":1,"s":{"n":0},"c":75},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":15,"s":{"n":0,"Os":"93","On":"20","Oa":"4.68","Od":"0.51","Mp":"18","Ap":"2","p":{"31":{"n":5,"e":3039,"c":41,"s":1},"32":{"n":5,"e":3051,"c":41,"s":1},"33":{"n":4.5,"e":3060,"c":41},"34":{"n":4.5,"e":3062,"c":41}}},"c":75},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":9,"s":{"n":0},"c":75},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":75},{"i":3779,"n":"N'Goma","f":"Ferris","p":"M","r":5,"s":{"n":0},"c":75},{"i":3785,"n":"Larsonneur","f":"Gautier","p":"G","r":16,"s":{"n":0},"c":75},{"i":3786,"n":"Kiki","f":"Enangon David","p":"D","r":2,"s":{"n":0},"c":75},{"i":3795,"n":"Belkebla","f":"Haris","p":"M","r":14,"s":{"n":0},"c":75},{"i":3801,"n":"Chardonnet","f":"Brendan","p":"D","r":5,"s":{"n":0},"c":75},{"i":3802,"n":"Castelletto","f":"Jean-Charles","p":"D","r":14,"s":{"n":0},"c":75},{"i":3804,"n":"Fabri","f":"Julien","p":"G","r":1,"s":{"n":0},"c":75},{"i":3806,"n":"Mayi","f":"K\u00e9vin","p":"A","r":5,"s":{"n":0},"c":75},{"i":3808,"n":"L\u00e9on","f":"Donovan","p":"G","r":8,"s":{"n":0},"c":75},{"i":3810,"n":"Bain","f":"Denys","p":"D","r":9,"s":{"n":0},"c":75},{"i":3811,"n":"Battocchio","f":"Cristian","p":"M","r":5,"s":{"n":0},"c":75},{"i":3813,"n":"Autret","f":"Mathias","p":"M","r":15,"s":{"n":0},"c":75},{"i":3817,"n":"Court","f":"Yoann","p":"M","r":14,"s":{"n":0},"c":75},{"i":3818,"n":"Charbonnier","f":"Ga\u00ebtan","p":"A","r":15,"s":{"n":0},"c":75},{"i":3819,"n":"Faussurier","f":"Julien","p":"D","r":7,"s":{"n":0},"c":75},{"i":5515,"n":"Belaud","f":"Ga\u00ebtan","p":"D","r":14,"s":{"n":0},"c":75}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1202,"nM":5044,"nMWC":"0.7392","pM":{"33":3058,"35":3078,"36":3083,"37":3098,"38":3110,"31":3039,"32":3044,"34":3068,"1":5067,"2":5053},"DMI":[]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":975,"nM":3922,"nMWC":"0.3746","pM":{"31":3034,"32":3050,"35":3072,"36":3086,"37":3092,"38":3104,"33":3057,"34":3064},"DMI":[3072]},"4":{"n":"Saint Etienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1154,"nM":3923,"nMWC":"0.6738","pM":{"32":3050,"31":3032,"33":3059,"34":3071,"35":3075,"36":3091,"37":3099,"38":3103},"DMI":[]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":1028,"nM":3923,"nMWC":"0.3262","pM":{"37":3098,"31":3036,"32":3043,"33":3052,"34":3065,"35":3077,"36":3085,"38":3105},"DMI":[]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1059,"nM":3925,"nMWC":"0.3088","pM":{"31":3041,"32":3048,"33":3055,"37":3097,"38":3107,"35":3077,"34":3067,"36":3088},"DMI":[]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1147,"nM":3924,"nMWC":"0.5869","pM":{"31":3034,"33":3053,"32":3045,"34":3067,"35":3080,"36":3087,"37":3101,"38":3106},"DMI":[]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":950,"nM":3919,"nMWC":"0.4285","pM":{"34":3071,"31":3041,"38":3105,"37":3101,"32":3047,"33":3061,"35":3081,"36":3082},"DMI":[]},"11":{"n":"Metz","rn":"FC Metz","cn":"FC-Metz","a":"MTZ","l":1,"el":850,"nM":3926,"nMWC":"0.2371","pM":[],"DMI":[]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1199,"nM":3925,"nMWC":"0.6912","pM":{"32":3044,"36":3086,"38":3111,"34":3066,"33":3061,"31":3040,"35":3074,"37":3094},"DMI":[]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":1019,"nM":3918,"nMWC":"0.2445","pM":{"33":3058,"35":3075,"34":3070,"36":3089,"31":3035,"38":3108,"32":3046,"37":3096},"DMI":[]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1142,"nM":3920,"nMWC":"0.5672","pM":{"34":3068,"36":3091,"37":3097,"38":3106,"32":3047,"31":3037,"33":3060,"35":3076},"DMI":[]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1064,"nM":3922,"nMWC":"0.6254","pM":{"36":3083,"35":3072,"31":3033,"38":3103,"32":3042,"37":3094,"33":3054,"34":3063},"DMI":[3072]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1215,"nM":3918,"nMWC":"0.7555","pM":{"34":3064,"32":3048,"38":3109,"31":3036,"36":3087,"37":3095,"35":3074,"33":3054},"DMI":[]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1097,"nM":3921,"nMWC":"0.5966","pM":{"35":3078,"37":3099,"32":3049,"34":3069,"36":3088,"33":3056,"38":3108,"31":3037},"DMI":[]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1095,"nM":3920,"nMWC":"0.4328","pM":{"31":3033,"32":3049,"34":3070,"37":3100,"38":3111,"36":3090,"33":3052,"35":3081},"DMI":[]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1053,"nM":3926,"nMWC":"0.7629","pM":{"31":3039,"37":3100,"32":3051,"38":3107,"36":3085,"35":3080,"33":3060,"34":3062},"DMI":[]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":1029,"nM":3921,"nMWC":"0.4034","pM":{"31":3032,"38":3102,"33":3055,"32":3043,"36":3082,"37":3096,"35":3076,"34":3062},"DMI":[]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":1061,"nM":3927,"nMWC":"0.3075","pM":{"33":3057,"37":3093,"31":3038,"32":3045,"34":3066,"35":3079,"36":3089,"38":3109},"DMI":[]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1086,"nM":3924,"nMWC":"0.4131","pM":{"38":3110,"37":3092,"33":3059,"35":3079,"36":3084,"31":3040,"32":3046,"34":3063},"DMI":[]},"75":{"n":"Brest","rn":"Stade Brestois 29","cn":"Stade-Brestois-29","a":"BRS","l":1,"el":1000,"nM":3919,"nMWC":"0.5715","pM":[],"DMI":[]}},"op":{"100":{"n":"Rodez","l":4,"el":1021},"31":{"n":"Man United","l":2,"el":1095},"33":{"n":"Watford","l":2,"el":1000},"25":{"n":"Chelsea","l":2,"el":1117},"44":{"n":"Huddersfield","l":2,"el":758},"22":{"n":"Everton","l":2,"el":1116},"28":{"n":"West Ham","l":2,"el":1090},"39":{"n":"Arsenal","l":2,"el":1165},"71":{"n":"Fulham","l":2,"el":895},"26":{"n":"Crystal Palace","l":2,"el":1114},"23":{"n":"Burnley","l":2,"el":1024},"24":{"n":"Tottenham","l":2,"el":1078},"60":{"n":"Betis","l":3,"el":1050},"64":{"n":"Villarreal","l":3,"el":1082},"55":{"n":"Sevilla","l":3,"el":1080},"49":{"n":"Valencia","l":3,"el":1162},"56":{"n":"Espanyol","l":3,"el":1127},"66":{"n":"Eibar","l":3,"el":1055},"73":{"n":"Huesca","l":3,"el":1021},"62":{"n":"Real Madrid","l":3,"el":1105},"74":{"n":"Valladolid","l":3,"el":1019},"72":{"n":"Rayo","l":3,"el":924},"53":{"n":"Girona","l":3,"el":860},"47":{"n":"Legan\u00e9s","l":3,"el":1014},"54":{"n":"Atl\u00e9tico","l":3,"el":1204},"6":{"n":"Lorient","l":4,"el":1016},"102":{"n":"Sochaux","l":4,"el":1018},"5":{"n":"Caen","l":4,"el":975},"14":{"n":"Guingamp","l":4,"el":903},"51":{"n":"Celta","l":3,"el":1020},"52":{"n":"Real Sociedad","l":3,"el":1080},"59":{"n":"Barcelona","l":3,"el":1292},"57":{"n":"Bilbao","l":3,"el":1085},"45":{"n":"Brighton","l":2,"el":1009},"70":{"n":"Cardiff","l":2,"el":950},"40":{"n":"Man City","l":2,"el":1384},"21":{"n":"Liverpool","l":2,"el":1356},"58":{"n":"Getafe","l":3,"el":1116}},"e":{"3058":{"d":33,"dB":"2019-04-21T19:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":13},"3078":{"d":35,"dB":"2019-05-04T15:00:00Z","t1s":1,"t2s":1,"t1":2,"t2":19},"3083":{"d":36,"dB":"2019-05-11T15:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":2},"3098":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":2,"t2":7},"3110":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":3,"t2s":1,"t1":68,"t2":2},"3039":{"d":31,"dB":"2019-04-07T19:00:00Z","t1s":2,"t2s":2,"t1":2,"t2":41},"3044":{"d":32,"dB":"2019-04-14T19:00:00Z","t1s":5,"t2s":1,"t1":12,"t2":2},"3068":{"d":34,"dB":"2019-04-30T17:00:00Z","t1s":3,"t2s":2,"t1":15,"t2":2},"3486":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":2,"t2s":1,"t1":31,"t2":33},"3524":{"d":36,"dB":"2019-04-28T15:30:00Z","t1s":1,"t2s":1,"t1":31,"t2":25},"3533":{"d":37,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":44,"t2":31},"3471":{"d":31,"dB":"2019-03-17T16:30:00Z","t1s":2,"t2s":0,"t1":22,"t2":25},"3487":{"d":32,"dB":"2019-03-30T17:30:00Z","t1s":0,"t2s":2,"t1":28,"t2":22},"3490":{"d":33,"dB":"2019-04-07T13:05:00Z","t1s":1,"t2s":0,"t1":22,"t2":39},"3501":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":2,"t2s":0,"t1":71,"t2":22},"3512":{"d":35,"dB":"2019-04-21T12:30:00Z","t1s":4,"t2s":0,"t1":22,"t2":31},"3520":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":0,"t2s":0,"t1":26,"t2":22},"3532":{"d":37,"dB":"2019-05-03T19:00:00Z","t1s":2,"t2s":0,"t1":22,"t2":23},"3546":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":2,"t2s":2,"t1":24,"t2":22},"2273":{"d":31,"dB":"2019-04-07T18:45:00Z","t1s":2,"t2s":1,"t1":60,"t2":64},"2288":{"d":32,"dB":"2019-04-13T18:45:00Z","t1s":3,"t2s":2,"t1":55,"t2":60},"2294":{"d":33,"dB":"2019-04-21T18:45:00Z","t1s":1,"t2s":2,"t1":60,"t2":49},"2314":{"d":35,"dB":"2019-04-29T19:00:00Z","t1s":1,"t2s":1,"t1":60,"t2":56},"2330":{"d":36,"dB":"2019-05-05T12:00:00Z","t1s":1,"t2s":0,"t1":66,"t2":60},"2335":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":2,"t2s":1,"t1":60,"t2":73},"2350":{"d":38,"dB":"2019-05-19T10:00:00Z","t1s":0,"t2s":2,"t1":62,"t2":60},"2281":{"d":31,"dB":"2019-04-07T14:15:00Z","t1s":0,"t2s":2,"t1":74,"t2":55},"2311":{"d":34,"dB":"2019-04-25T17:30:00Z","t1s":5,"t2s":0,"t1":55,"t2":72},"2315":{"d":35,"dB":"2019-04-28T12:00:00Z","t1s":1,"t2s":0,"t1":53,"t2":55},"2331":{"d":36,"dB":"2019-05-03T19:00:00Z","t1s":0,"t2s":3,"t1":55,"t2":47},"2333":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":1,"t1":54,"t2":55},"5067":{"d":1,"dB":"2019-07-29T18:45:00Z","t1s":3,"t2s":0,"t1":6,"t2":2},"5053":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":2,"t2":102},"3034":{"d":31,"dB":"2019-04-05T18:45:00Z","t1s":2,"t2s":0,"t1":3,"t2":9},"3050":{"d":32,"dB":"2019-04-14T15:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":3},"3072":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":16},"3086":{"d":36,"dB":"2019-05-12T15:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":3},"3092":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":68},"3104":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":5,"t2":3},"3057":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":2,"t2s":1,"t1":67,"t2":3},"3064":{"d":34,"dB":"2019-04-26T18:45:00Z","t1s":2,"t2s":3,"t1":3,"t2":18},"3032":{"d":31,"dB":"2019-04-06T18:00:00Z","t1s":2,"t2s":2,"t1":42,"t2":4},"3059":{"d":33,"dB":"2019-04-21T15:00:00Z","t1s":0,"t2s":2,"t1":68,"t2":4},"3071":{"d":34,"dB":"2019-04-28T15:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":10},"3075":{"d":35,"dB":"2019-05-05T15:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":4},"3091":{"d":36,"dB":"2019-05-10T18:45:00Z","t1s":0,"t2s":1,"t1":4,"t2":15},"3099":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":19},"3033":{"d":31,"dB":"2019-04-06T18:00:00Z","t1s":3,"t2s":3,"t1":16,"t2":20},"3049":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":0,"t2s":0,"t1":20,"t2":19},"3070":{"d":34,"dB":"2019-05-01T17:00:00Z","t1s":2,"t2s":2,"t1":20,"t2":13},"3100":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":2,"t1":41,"t2":20},"3111":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":3,"t2s":1,"t1":20,"t2":12},"3051":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":3,"t2s":3,"t1":41,"t2":14},"3053":{"d":33,"dB":"2019-04-20T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":9},"3069":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":3,"t2s":0,"t1":19,"t2":14},"3073":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":5},"3090":{"d":36,"dB":"2019-05-12T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":14},"3093":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":2,"t1":14,"t2":67},"3102":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":42,"t2":14},"3041":{"d":31,"dB":"2019-04-07T13:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":8},"3048":{"d":32,"dB":"2019-04-12T18:45:00Z","t1s":2,"t2s":1,"t1":8,"t2":18},"3055":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":42},"3097":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":8},"3107":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":8,"t2":41},"3038":{"d":31,"dB":"2019-04-06T18:00:00Z","t1s":2,"t2s":0,"t1":67,"t2":5},"3045":{"d":32,"dB":"2019-04-13T15:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":67},"3066":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":67},"3079":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":3,"t1":68,"t2":67},"3089":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":0,"t1":67,"t2":13},"3109":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":3,"t1":67,"t2":18},"3103":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":1,"t2s":1,"t1":16,"t2":4},"2274":{"d":31,"dB":"2019-04-07T16:30:00Z","t1s":3,"t2s":1,"t1":51,"t2":52},"2283":{"d":32,"dB":"2019-04-13T16:30:00Z","t1s":2,"t2s":0,"t1":54,"t2":51},"2295":{"d":33,"dB":"2019-04-20T11:00:00Z","t1s":2,"t2s":1,"t1":51,"t2":53},"2308":{"d":34,"dB":"2019-04-24T18:30:00Z","t1s":1,"t2s":1,"t1":56,"t2":51},"2318":{"d":35,"dB":"2019-04-27T16:30:00Z","t1s":0,"t2s":0,"t1":47,"t2":51},"2329":{"d":36,"dB":"2019-05-04T18:45:00Z","t1s":2,"t2s":0,"t1":51,"t2":59},"2332":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":3,"t2s":1,"t1":57,"t2":51},"2343":{"d":38,"dB":"2019-05-18T18:45:00Z","t1s":2,"t2s":2,"t1":51,"t2":72},"3036":{"d":31,"dB":"2019-04-06T15:00:00Z","t1s":1,"t2s":3,"t1":18,"t2":7},"3043":{"d":32,"dB":"2019-04-12T17:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":42},"3052":{"d":33,"dB":"2019-04-19T17:00:00Z","t1s":3,"t2s":2,"t1":7,"t2":20},"3065":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":7},"3077":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":3,"t2s":0,"t1":8,"t2":7},"3085":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":41},"3105":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":7,"t2":10},"3469":{"d":31,"dB":"2019-04-16T18:45:00Z","t1s":0,"t2s":2,"t1":45,"t2":70},"3481":{"d":32,"dB":"2019-03-31T13:05:00Z","t1s":1,"t2s":2,"t1":70,"t2":25},"3492":{"d":33,"dB":"2019-04-03T18:45:00Z","t1s":2,"t2s":0,"t1":40,"t2":70},"3499":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":2,"t2s":0,"t1":23,"t2":70},"3510":{"d":35,"dB":"2019-04-21T15:00:00Z","t1s":0,"t2s":2,"t1":70,"t2":21},"3521":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":1,"t2s":0,"t1":71,"t2":70},"3530":{"d":37,"dB":"2019-05-04T16:30:00Z","t1s":2,"t2s":3,"t1":70,"t2":26},"3544":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":0,"t2s":2,"t1":31,"t2":70},"3067":{"d":34,"dB":"2019-04-28T19:00:00Z","t1s":1,"t2s":2,"t1":9,"t2":8},"3088":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":8},"3035":{"d":31,"dB":"2019-04-06T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":13},"3080":{"d":35,"dB":"2019-05-03T18:45:00Z","t1s":1,"t2s":1,"t1":41,"t2":9},"3087":{"d":36,"dB":"2019-05-12T19:00:00Z","t1s":0,"t2s":3,"t1":9,"t2":18},"3101":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":5,"t1":10,"t2":9},"3106":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":1,"t2s":0,"t1":9,"t2":15},"3042":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":16},"3056":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":5},"3084":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":3,"t2s":2,"t1":5,"t2":68},"3095":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":18,"t2":5},"2284":{"d":32,"dB":"2019-04-14T16:30:00Z","t1s":0,"t2s":1,"t1":53,"t2":64},"2301":{"d":33,"dB":"2019-04-21T16:30:00Z","t1s":2,"t2s":1,"t1":64,"t2":47},"2305":{"d":34,"dB":"2019-04-25T18:30:00Z","t1s":0,"t2s":1,"t1":52,"t2":64},"2321":{"d":35,"dB":"2019-04-28T16:30:00Z","t1s":1,"t2s":1,"t1":64,"t2":73},"2326":{"d":36,"dB":"2019-05-05T14:15:00Z","t1s":3,"t2s":2,"t1":62,"t2":64},"2339":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":0,"t1":64,"t2":66},"2345":{"d":38,"dB":"2019-05-18T14:15:00Z","t1s":2,"t2s":2,"t1":58,"t2":64},"3047":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":2,"t2s":1,"t1":15,"t2":10},"3061":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":0,"t2s":0,"t1":10,"t2":12},"3081":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":20},"3082":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":10},"3108":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":0,"t1":19,"t2":13},"3040":{"d":31,"dB":"2019-04-07T13:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":12},"3074":{"d":35,"dB":"2019-05-05T19:00:00Z","t1s":2,"t2s":2,"t1":18,"t2":12},"3094":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":16},"3046":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":68},"3096":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":0,"t1":13,"t2":42},"3037":{"d":31,"dB":"2019-04-07T15:00:00Z","t1s":1,"t2s":0,"t1":19,"t2":15},"3060":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":1,"t2s":3,"t1":41,"t2":15},"3076":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":42},"3054":{"d":33,"dB":"2019-04-19T18:45:00Z","t1s":2,"t2s":1,"t1":18,"t2":16},"3063":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":68},"3062":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":41}},"Ne":{"5044":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":100,"t2":2},"3922":{"d":1,"dB":"2019-08-10T18:00:00Z","t1":16,"t2":3},"3923":{"d":1,"dB":"2019-08-10T18:00:00Z","t1":7,"t2":4},"3925":{"d":1,"dB":"2019-08-11T13:00:00Z","t1":12,"t2":8},"3924":{"d":1,"dB":"2019-08-10T15:30:00Z","t1":9,"t2":68},"3919":{"d":1,"dB":"2019-08-10T18:00:00Z","t1":75,"t2":10},"3926":{"d":1,"dB":"2019-08-11T15:00:00Z","t1":41,"t2":11},"3918":{"d":1,"dB":"2019-08-09T18:45:00Z","t1":13,"t2":18},"3920":{"d":1,"dB":"2019-08-10T18:00:00Z","t1":15,"t2":20},"3921":{"d":1,"dB":"2019-08-10T18:00:00Z","t1":19,"t2":42},"3927":{"d":1,"dB":"2019-08-11T19:00:00Z","t1":2,"t2":67}},"k":"16ae6e"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20190818.json b/src/test/resources/__files/mpgstats.ligue-1.20190818.json deleted file mode 100644 index e91171a..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20190818.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-08-14T16:38:48Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2019-2020","i":9,"n":"Ligue 1 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":1,"lD":1}},"lS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38}},"mxD":3,"np":771,"le":{"1":"Ligue-1","2":"Premier-League","3":"Liga","4":"Ligue-2"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":39,"s":{"g":"1","s":"5","n":"1","a":"5.5","Sg":"1","Ss":"5","Sn":"1","Sa":"5.5","Og":"19","Os":"128","On":"22","Oa":"5.84","Od":"1.46","Ap":"22","p":{"33":{"n":4,"s":1},"35":{"n":3},"36":{"n":5},"37":{"n":7,"g":1},"38":{"n":5},"1":{"n":5.5,"g":1}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":23,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"148","On":"25","Oa":"5.94","Od":"0.64","Dp":"25","p":{"32":{"n":5},"1":{"n":6}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":34,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"13","Os":"176","On":"30","Oa":"5.87","Od":"1.2","Mp":"15","Ap":"15","p":{"34":{"n":5.5,"g":1},"35":{"n":4.5},"36":{"n":6,"g":1},"37":{"n":7,"g":1},"38":{"n":4},"1":{"n":7,"g":1,"s":1}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"168","On":"31","Oa":"5.44","Od":"1.24","Mp":"27","Ap":"4","p":{"32":{"n":3},"33":{"n":4.5,"s":1},"34":{"n":4},"35":{"n":4},"36":{"n":5,"s":1},"37":{"n":6.5},"38":{"n":4},"1":{"n":5}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":20,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"153","On":"27","Oa":"5.69","Od":"1.17","Mp":"27","p":{"32":{"n":3.5},"33":{"n":5.5},"35":{"n":5.5},"36":{"n":5.5},"38":{"n":3.5},"1":{"n":6.5}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":50,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"34","Os":"201","On":"30","Oa":"6.72","Od":"1.06","Mp":"2","Ap":"28","p":{"32":{"n":4.5},"33":{"n":8,"g":3},"37":{"n":8,"g":2},"38":{"n":6,"g":1},"1":{"n":7,"g":1}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":28,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"3","Os":"179","On":"30","Oa":"5.98","Od":"0.94","Mp":"9","Dp":"21","p":{"33":{"n":6},"34":{"n":4.5},"35":{"n":6},"36":{"n":5},"38":{"n":4},"1":{"n":6.5}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":16,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Oao":"1","Os":"131","On":"23","Oa":"5.7","Od":"1.01","Mp":"8","Dp":"15","p":{"32":{"n":4,"a":1},"37":{"n":5},"38":{"n":3.5},"1":{"n":4.5,"s":1}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"94","On":"19","Oa":"4.97","Od":"0.97","Mp":"6","Dp":"13","p":{"32":{"n":5,"s":1},"33":{"n":4.5},"34":{"n":4,"s":1},"35":{"n":5.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5},"38":{"n":3.5}}},"c":2},{"i":100,"n":"Areola","f":"Alphonse","p":"G","r":20,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"124","On":"22","Oa":"5.64","Od":"0.84","Gp":"22","p":{"32":{"n":2.5},"33":{"n":5.5},"35":{"n":5},"37":{"n":6},"1":{"n":6}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":12,"s":{"n":0},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":10,"s":{"n":0,"Oao":"1","Os":"123","On":"24","Oa":"5.15","Od":"1.11","Dp":"24","p":{"32":{"n":3},"33":{"n":5.5},"34":{"n":3,"a":1},"35":{"n":5.5}}},"c":2},{"i":432,"n":"Diallo","f":"Abdou","p":"D","r":10,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"1":{"n":5.5}}},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":7,"s":{"n":0,"Og":"3","Os":"114","On":"21","Oa":"5.45","Od":"0.91","Mp":"17","Dp":"1","Ap":"3","p":{"37":{"n":5,"s":1}}},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":520,"n":"Descamps","f":"Remy","p":"G","r":1,"s":{"n":0},"c":2},{"i":647,"n":"Herrera","f":"Ander","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"125","On":"22","Oa":"5.68","Od":"0.85","Mp":"21","Dp":"1","p":{"32":{"n":5,"e":3486,"c":31},"36":{"n":5,"e":3524,"c":31},"37":{"n":5.5,"e":3533,"c":31,"s":1}}},"c":2},{"i":657,"n":"Gueye","f":"Idrissa","p":"M","r":19,"s":{"n":0,"Os":"183","On":"32","Oa":"5.73","Od":"0.94","Mp":"32","p":{"32":{"n":7,"e":3487,"c":22},"33":{"n":6.5,"e":3490,"c":22},"34":{"n":3.5,"e":3501,"c":22},"35":{"n":7,"e":3512,"c":22},"36":{"n":6.5,"e":3520,"c":22},"37":{"n":6,"e":3532,"c":22},"38":{"n":5.5,"e":3546,"c":22}}},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":40,"s":{"n":0,"Og":"14","Os":"103","On":"16","Oa":"6.44","Od":"1.45","Mp":"5","Ap":"11","p":{"33":{"n":4.5,"s":1},"34":{"n":3},"35":{"n":6.5,"g":1},"36":{"n":7,"g":1}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"124","On":"23","Oa":"5.39","Od":"1.26","Mp":"15","Dp":"6","Ap":"2","p":{"32":{"n":2.5},"33":{"n":7},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":6},"37":{"n":6},"38":{"n":5.5,"s":1}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":8,"s":{"n":0,"Og":"3","Os":"103","On":"22","Oa":"4.68","Od":"0.59","Mp":"2","Ap":"20","p":{"34":{"n":3.5},"36":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":2},{"i":1325,"n":"Jes\u00e9","f":"","p":"A","r":2,"s":{"n":0,"Og":"2","Os":"63","On":"14","Oa":"4.5","Od":"0.93","Ap":"14","p":{"31":{"n":5,"e":2273,"c":60},"32":{"n":3.5,"e":2288,"c":60},"33":{"n":4,"e":2294,"c":60},"35":{"n":4,"e":2314,"c":60},"36":{"n":5,"e":2330,"c":60,"s":1},"37":{"n":4.5,"e":2335,"c":60,"s":1},"38":{"n":6,"e":2350,"c":60,"g":1,"s":1}}},"c":2},{"i":1369,"n":"Bulka","f":"Marcin","p":"G","r":1,"s":{"n":0},"c":2},{"i":1609,"n":"Sarabia","f":"Pablo","p":"M","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"12","Os":"182","On":"33","Oa":"5.53","Od":"1.43","Mp":"24","Ap":"9","p":{"31":{"n":6,"e":2281,"c":55},"32":{"n":7,"e":2288,"c":55,"g":1},"34":{"n":7,"e":2311,"c":55},"35":{"n":5,"e":2315,"c":55},"36":{"n":3,"e":2331,"c":55},"37":{"n":6,"e":2333,"c":55,"g":1},"1":{"n":4}}},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":2},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":7,"s":{"n":0,"Os":"54","On":"11","Oa":"4.91","Od":"0.56","Mp":"4","Dp":"7"},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":3,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.75","Mp":"2"},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":2,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":5,"s":{"n":0,"Os":"76","On":"16","Oa":"4.78","Od":"0.71","Mp":"2","Dp":"14","p":{"32":{"n":3},"33":{"n":5.5},"34":{"n":4},"36":{"n":5},"37":{"n":5,"s":1}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"120","On":"24","Oa":"5.02","Od":"0.92","Mp":"9","Ap":"15","p":{"32":{"n":4,"s":1},"33":{"n":6},"35":{"n":4.5,"s":1},"37":{"n":4.5,"s":1}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":3,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"36":{"n":5},"37":{"n":6}}},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":16,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"149","On":"28","Oa":"5.32","Od":"0.88","Dp":"28","p":{"32":{"n":3.5,"s":1},"33":{"n":5},"37":{"n":6},"38":{"n":4.5},"1":{"n":5.5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":15,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"136","On":"26","Oa":"5.23","Od":"0.95","Mp":"10","Dp":"16","p":{"32":{"n":5,"g":1},"34":{"n":2.5},"35":{"n":5},"36":{"n":5},"38":{"n":5,"s":1},"1":{"n":6}}},"c":2},{"i":3367,"n":"Paredes","f":"Leandro","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"89","On":"16","Oa":"5.59","Od":"0.92","Mp":"16","p":{"32":{"n":3.5},"33":{"n":6.5},"34":{"n":6},"35":{"n":5},"36":{"n":5},"37":{"n":8},"38":{"n":5},"1":{"n":5,"s":1}}},"c":2},{"i":3505,"n":"Toufiqui","f":"Azzeddine","p":"M","r":1,"s":{"n":0},"c":2},{"i":3764,"n":"Zagre","f":"Arthur","p":"D","r":1,"s":{"n":0},"c":2},{"i":3770,"n":"Hemans Arday","f":"Isaac","p":"D","r":1,"s":{"n":0},"c":2},{"i":3778,"n":"Guclu","f":"Metehan","p":"A","r":1,"s":{"n":0},"c":2},{"i":4029,"n":"Kouassi","f":"Nianzou","p":"D","r":1,"s":{"n":0},"c":2},{"i":4030,"n":"Aouchiche","f":"Adil","p":"M","r":1,"s":{"n":0},"c":2},{"i":4032,"n":"Yapi","f":"Romaric","p":"D","r":1,"s":{"n":0},"c":2},{"i":4033,"n":"Innocent","f":"Garissone","p":"G","r":1,"s":{"n":0},"c":2},{"i":4035,"n":"Bakker","f":"Mitchel","p":"D","r":5,"s":{"n":0},"c":2},{"i":5205,"n":"Saad","f":"Felipe","p":"D","r":14,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"3":{"n":4.5,"s":1}}},"c":2},{"i":6016,"n":"Essende","f":"Samuel","p":"A","r":1,"s":{"n":0},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":8,"s":{"n":0,"Os":"114","On":"22","Oa":"5.18","Od":"0.41","Mp":"22","p":{"32":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":5},"37":{"n":4.5},"38":{"n":5.5}}},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":19,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"210","On":"37","Oa":"5.68","Od":"1","Gp":"37","p":{"32":{"n":5},"33":{"n":4.5},"34":{"n":4},"35":{"n":5},"36":{"n":6},"37":{"n":5},"1":{"n":4}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"7","Os":"171","On":"36","Oa":"4.75","Od":"1.04","Mp":"3","Ap":"33","p":{"32":{"n":4,"s":1},"33":{"n":4,"s":1},"34":{"n":7,"g":1},"35":{"n":4},"36":{"n":4},"37":{"n":4.5},"38":{"n":5.5},"1":{"n":4}}},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":11,"s":{"n":0,"Og":"10","Os":"182","On":"36","Oa":"5.07","Od":"1.13","Mp":"13","Ap":"23","p":{"32":{"n":3},"33":{"n":4.5},"34":{"n":4},"35":{"n":4},"36":{"n":4.5,"s":1},"37":{"n":4},"38":{"n":5}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"104","On":"21","Oa":"4.95","Od":"0.71","Mp":"19","Ap":"2","p":{"38":{"n":6,"g":1}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":10,"s":{"n":0,"Os":"112","On":"23","Oa":"4.89","Od":"0.67","Mp":"6","Dp":"17","p":{"32":{"n":3},"33":{"n":5},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":5},"37":{"n":5},"38":{"n":5.5}}},"c":3},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"72","On":"14","Oa":"5.18","Od":"0.7","Mp":"14","p":{"33":{"n":4.5,"e":3059,"c":4,"s":1},"34":{"n":6,"e":3071,"c":4},"35":{"n":4.5,"e":3075,"c":4},"36":{"n":5,"e":3091,"c":4,"s":1},"37":{"n":5,"e":3099,"c":4,"s":1}}},"c":3},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":8,"s":{"n":0,"Oao":"1","Os":"96","On":"20","Oa":"4.8","Od":"0.7","Dp":"20"},"c":3},{"i":168,"n":"Mexer","f":"","p":"D","r":12,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"153","On":"29","Oa":"5.28","Od":"1.02","Dp":"29","p":{"32":{"n":5,"e":3049,"c":20},"34":{"n":6,"e":3070,"c":20},"37":{"n":6,"e":3100,"c":20},"38":{"n":7,"e":3111,"c":20},"1":{"n":3.5}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":12,"s":{"n":0,"Os":"86","On":"16","Oa":"5.38","Od":"0.93","Dp":"16","p":{"33":{"n":4.5},"34":{"n":3.5},"37":{"n":5},"38":{"n":5.5}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":5,"s":{"n":0,"Os":"24","On":"5","Oa":"4.8","Od":"0.68","Dp":"5","p":{"38":{"n":5,"s":1}}},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":14,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"117","On":"24","Oa":"4.88","Od":"0.89","Mp":"10","Ap":"14","p":{"33":{"n":4},"34":{"n":6,"g":1},"35":{"n":4},"1":{"n":6,"g":1}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"n":0},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":8,"s":{"n":0,"Os":"150","On":"30","Oa":"5.02","Od":"0.74","Mp":"2","Dp":"28","p":{"33":{"n":5.5,"s":1},"34":{"n":3.5},"35":{"n":5},"36":{"n":5},"37":{"n":5}}},"c":3},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":10,"s":{"n":0,"Og":"3","Os":"74","On":"16","Oa":"4.63","Od":"0.99","Ap":"16","p":{"32":{"n":4.5,"e":3051,"c":14,"s":1},"33":{"n":4,"e":3053,"c":14,"s":1},"34":{"n":4,"e":3069,"c":14,"s":1},"35":{"n":4.5,"e":3073,"c":14,"s":1},"36":{"n":6.5,"e":3090,"c":14,"g":1,"s":1},"37":{"n":7,"e":3093,"c":14,"g":1},"38":{"n":6,"e":3102,"c":14,"g":1}}},"c":3},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":9,"s":{"n":0,"Os":"143","On":"29","Oa":"4.95","Od":"0.79","Mp":"5","Dp":"24","p":{"32":{"n":5,"e":3048,"c":8,"s":1},"33":{"n":5.5,"e":3055,"c":8,"s":1},"37":{"n":4.5,"e":3097,"c":8,"s":1},"38":{"n":5,"e":3107,"c":8}}},"c":3},{"i":512,"n":"Mancini","f":"Daniel","p":"M","r":6,"s":{"n":0},"c":3},{"i":621,"n":"Koscielny","f":"Laurent","p":"D","r":13,"s":{"n":0,"Og":"3","Os":"91","On":"17","Oa":"5.38","Od":"1.13","Dp":"17","p":{"34":{"n":6,"e":3507,"c":39},"35":{"n":3.5,"e":3509,"c":39},"36":{"n":4,"e":3522,"c":39,"s":1},"38":{"n":5,"e":3539,"c":39,"s":1}}},"c":3},{"i":1075,"n":"Maja","f":"Josh","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"36","On":"8","Oa":"4.5","Od":"0.61","Ap":"8","p":{"32":{"n":4.5,"s":1},"33":{"n":6,"g":1},"1":{"n":4,"s":1}}},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":9,"s":{"n":0},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":12,"s":{"n":0,"Os":"181","On":"33","Oa":"5.5","Od":"0.71","Mp":"33","p":{"32":{"n":3.5},"33":{"n":4.5},"34":{"n":6},"35":{"n":5},"36":{"n":6},"37":{"n":5.5},"38":{"n":6.5}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1","p":{"38":{"n":6}}},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0},"c":3},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":7,"s":{"n":0,"Os":"32","On":"7","Oa":"4.57","Od":"0.42","Mp":"7","p":{"33":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":4.5},"37":{"n":4}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":12,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"135","On":"25","Oa":"5.4","Od":"1.05","Dp":"25","p":{"34":{"n":3},"35":{"n":5},"36":{"n":5},"38":{"n":5.5},"1":{"n":3}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":12,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"49","On":"10","Oa":"4.95","Od":"0.72","Mp":"10","p":{"1":{"n":4}}},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassin","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"23","On":"5","Oa":"4.6","Od":"0.2","Mp":"5","p":{"34":{"n":4.5,"s":1},"35":{"n":5},"36":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"111","On":"22","Oa":"5.07","Od":"0.77","Mp":"9","Ap":"13","p":{"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":4.5}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"110","On":"23","Oa":"4.8","Od":"0.67","Mp":"23","p":{"32":{"n":4.5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":4},"36":{"n":4},"37":{"n":3.5},"38":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":3},{"i":3523,"n":"Lottin","f":"Albert-Nicolas","p":"M","r":1,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":3},{"i":3754,"n":"Lauray","f":"Alexandre","p":"D","r":3,"s":{"n":0},"c":3},{"i":3789,"n":"Bellanova","f":"Raoul","p":"D","r":3,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"3","On":"1","Oa":"3","Dp":"1","p":{"1":{"n":3}}},"c":3},{"i":3792,"n":"Hwang Ui-Jo","f":"","p":"A","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":3},{"i":3816,"n":"Benito","f":"Loris","p":"D","r":6,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"3","On":"1","Oa":"3","Dp":"1","p":{"1":{"n":3}}},"c":3},{"i":5452,"n":"Bakwa","f":"Dilanae","p":"M","r":1,"s":{"n":0},"c":3},{"i":5453,"n":"Cardoso","f":"David","p":"D","r":1,"s":{"n":0},"c":3},{"i":5454,"n":"Sow","f":"Ismael","p":"D","r":1,"s":{"n":0},"c":3},{"i":5455,"n":"Rouyard","f":"Davy","p":"G","r":1,"s":{"n":0},"c":3},{"i":6161,"n":"Traore","f":"Amadou","p":"A","r":3,"s":{"n":0},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":15,"s":{"g":"1","s":"6","n":"1","a":"6.5","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"5","Os":"141","On":"27","Oa":"5.24","Od":"1.03","Mp":"20","Ap":"7","p":{"32":{"n":5},"33":{"n":5},"34":{"n":5.5},"35":{"n":4},"37":{"n":7.5,"g":1},"38":{"n":6},"1":{"n":6.5,"g":1}}},"c":4},{"i":31,"n":"Boudebouz","f":"Ryad","p":"M","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"98","On":"20","Oa":"4.9","Od":"0.97","Mp":"16","Ap":"4","p":{"31":{"n":6.5,"e":2274,"c":51,"s":1},"32":{"n":4.5,"e":2283,"c":51},"33":{"n":5.5,"e":2295,"c":51},"34":{"n":5,"e":2308,"c":51},"35":{"n":4.5,"e":2318,"c":51,"s":1},"36":{"n":6.5,"e":2329,"c":51},"37":{"n":4,"e":2332,"c":51},"38":{"n":4,"e":2343,"c":51},"1":{"n":6}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":23,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"215","On":"37","Oa":"5.81","Od":"1.05","Gp":"37","p":{"32":{"n":5.5},"33":{"n":6},"34":{"n":8},"35":{"n":5.5},"36":{"n":6},"37":{"n":7.5},"1":{"n":7}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":26,"s":{"n":0,"Og":"8","Os":"183","On":"34","Oa":"5.4","Od":"1.16","Mp":"22","Ap":"12","p":{"32":{"n":5.5},"33":{"n":6,"g":1},"34":{"n":4.5},"35":{"n":8,"g":1},"36":{"n":3.5},"38":{"n":5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":15,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"166","On":"31","Oa":"5.37","Od":"1.08","Dp":"31","p":{"32":{"n":6.5},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":6},"38":{"n":5.5},"1":{"n":6.5}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"102","On":"22","Oa":"4.64","Od":"0.8","Mp":"15","Ap":"7"},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":8,"s":{"n":0,"Os":"109","On":"19","Oa":"5.74","Od":"0.89","Mp":"19"},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":11,"s":{"n":0,"Og":"4","Os":"139","On":"29","Oa":"4.81","Od":"0.88","Mp":"5","Ap":"24","p":{"32":{"n":4.5,"s":1},"33":{"n":4,"s":1}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":16,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"9","Os":"119","On":"24","Oa":"4.98","Od":"1.19","Ap":"24","p":{"32":{"n":4.5},"34":{"n":7.5,"g":2},"35":{"n":4,"s":1},"36":{"n":4},"37":{"n":7,"g":2},"38":{"n":4},"1":{"n":4.5,"s":1}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":7,"s":{"n":0,"Oao":"1","Os":"6","On":"1","Oa":"6","Gp":"1","p":{"38":{"n":6,"a":1}}},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":3,"s":{"n":0},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":14,"s":{"n":0,"Os":"93","On":"18","Oa":"5.17","Od":"0.6","Mp":"5","Dp":"13","p":{"32":{"n":6,"s":1},"33":{"n":5,"s":1},"34":{"n":7},"35":{"n":5},"36":{"n":5},"37":{"n":5}}},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"131","On":"25","Oa":"5.26","Od":"0.8","Mp":"25","p":{"32":{"n":6},"33":{"n":6},"34":{"n":6,"s":1},"35":{"n":6.5,"g":1,"s":1},"36":{"n":4.5},"37":{"n":6},"38":{"n":7,"g":1},"1":{"n":4.5,"s":1}}},"c":4},{"i":428,"n":"Lacroix","f":"L\u00e9o","p":"D","r":5,"s":{"n":0},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":31,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"12","Os":"177","On":"32","Oa":"5.55","Od":"1.43","Mp":"9","Ap":"23","p":{"32":{"n":8,"g":1},"33":{"n":7},"34":{"n":6},"35":{"n":4},"36":{"n":3.5},"38":{"n":3.5},"1":{"n":6}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"129","On":"25","Oa":"5.18","Od":"1.09","Mp":"4","Dp":"21","p":{"32":{"n":8,"g":2},"33":{"n":6},"34":{"n":4.5},"35":{"n":3.5},"36":{"n":4.5},"38":{"n":5},"1":{"n":5}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":5,"s":{"n":0,"Os":"31","On":"6","Oa":"5.17","Od":"0.37","Mp":"6"},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":7,"s":{"n":0,"Os":"94","On":"18","Oa":"5.25","Od":"0.71","Mp":"10","Dp":"8"},"c":4},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":9,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"87","On":"17","Oa":"5.15","Od":"0.97","Mp":"17","p":{"32":{"n":6,"e":3046,"c":13,"s":1},"33":{"n":5,"e":3058,"c":13,"s":1},"34":{"n":3.5,"e":3070,"c":13},"38":{"n":5.5,"e":3108,"c":13,"s":1},"1":{"n":7,"g":1}}},"c":4},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"50","On":"11","Oa":"4.59","Od":"0.47","Mp":"7","Ap":"4","p":{"32":{"n":4.5,"e":3050,"c":3},"33":{"n":4.5,"e":3057,"c":3},"34":{"n":4.5,"e":3064,"c":3,"s":1},"35":{"n":4.5,"e":3072,"c":3,"s":1},"36":{"n":4,"e":3086,"c":3},"1":{"n":5,"s":1}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":3,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":1,"s":{"n":0},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":17,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"202","On":"37","Oa":"5.46","Od":"0.88","Mp":"37","p":{"32":{"n":6},"33":{"n":6},"34":{"n":7},"35":{"n":4.5},"36":{"n":5},"37":{"n":6},"38":{"n":5.5},"1":{"n":6}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"124","On":"25","Oa":"4.98","Od":"0.96","Dp":"25"},"c":4},{"i":2272,"n":"Fofana","f":"Wesley","p":"M","r":1,"s":{"n":0},"c":4},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":10,"s":{"n":0,"Os":"123","On":"25","Oa":"4.92","Od":"0.84","Mp":"2","Dp":"23","p":{"32":{"n":3,"e":3050,"c":3},"34":{"n":4.5,"e":3064,"c":3,"s":1},"38":{"n":6,"e":3104,"c":3}}},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":13,"s":{"n":0,"Og":"3","Os":"180","On":"35","Oa":"5.16","Od":"0.79","Dp":"35","p":{"32":{"n":5},"33":{"n":5.5},"35":{"n":4.5},"37":{"n":6},"38":{"n":5}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":14,"s":{"n":0,"Os":"84","On":"16","Oa":"5.28","Od":"1.07","Dp":"16","p":{"32":{"n":6},"33":{"n":6},"34":{"n":7.5},"35":{"n":5},"36":{"n":5},"37":{"n":5}}},"c":4},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"8","Os":"173","On":"35","Oa":"4.94","Od":"1.21","Mp":"20","Ap":"15","p":{"32":{"n":3.5,"e":3045,"c":67},"33":{"n":5.5,"e":3057,"c":67},"34":{"n":3,"e":3066,"c":67},"35":{"n":7,"e":3079,"c":67,"g":1},"36":{"n":5,"e":3089,"c":67},"37":{"n":6.5,"e":3093,"c":67,"g":1},"38":{"n":4,"e":3109,"c":67},"1":{"n":5}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":1,"s":{"n":0},"c":4},{"i":2963,"n":"Honorat","f":"Franck","p":"A","r":2,"s":{"n":0},"c":4},{"i":2990,"n":"Tshibuabua","f":"Marvin","p":"D","r":1,"s":{"n":0},"c":4},{"i":2991,"n":"Abi","f":"Charles Nathan","p":"A","r":2,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Ap":"2","p":{"38":{"n":5,"s":1}}},"c":4},{"i":2992,"n":"Benkhedim","f":"Bilal","p":"M","r":1,"s":{"n":0},"c":4},{"i":3765,"n":"Sissoko","f":"Nelson","p":"M","r":1,"s":{"n":0},"c":4},{"i":3772,"n":"Nade","f":"Mickael","p":"D","r":1,"s":{"n":0},"c":4},{"i":3788,"n":"Moukoudi","f":"Harold","p":"D","r":8,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Dp":"1","p":{"1":{"n":6}}},"c":4},{"i":6019,"n":"Trauco","f":"Miguel","p":"D","r":9,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Dp":"1","p":{"1":{"n":6}}},"c":4},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":7,"s":{"n":0,"Os":"34","On":"7","Oa":"4.86","Od":"0.35","Mp":"7"},"c":7},{"i":104,"n":"J\u00falio Tavares","f":"","p":"A","r":14,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"5","Os":"165","On":"36","Oa":"4.58","Od":"1.08","Mp":"1","Ap":"35","p":{"32":{"n":5},"33":{"n":4.5,"s":1},"34":{"n":5},"35":{"n":4},"36":{"n":6,"g":1},"37":{"n":4},"38":{"n":6,"g":1},"1":{"n":6,"g":1}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":11,"s":{"n":0,"Og":"1","Os":"126","On":"26","Oa":"4.87","Od":"0.7","Mp":"26","p":{"32":{"n":6},"33":{"n":5},"36":{"n":5.5},"37":{"n":3.5},"38":{"n":5}}},"c":7},{"i":187,"n":"Sammaritano","f":"Fr\u00e9d\u00e9ric","p":"M","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"72","On":"15","Oa":"4.83","Od":"0.75","Mp":"15","p":{"33":{"n":4.5,"s":1},"34":{"n":5},"35":{"n":4.5,"s":1},"36":{"n":5,"s":1},"1":{"n":5}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"108","On":"22","Oa":"4.93","Od":"0.76","Mp":"2","Dp":"20","p":{"32":{"n":5.5},"33":{"n":6.5},"34":{"n":5},"35":{"n":4},"36":{"n":5},"38":{"n":4.5},"1":{"n":4.5}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"145","On":"32","Oa":"4.53","Od":"0.76","Mp":"29","Dp":"1","Ap":"2","p":{"32":{"n":6},"33":{"n":5},"34":{"n":4.5},"35":{"n":4},"36":{"n":5.5},"37":{"n":3.5},"38":{"n":3.5},"1":{"n":4.5}}},"c":7},{"i":312,"n":"Sliti","f":"Na\u00efm","p":"M","r":16,"s":{"n":0,"Og":"3","Os":"170","On":"34","Oa":"5.01","Od":"0.94","Mp":"27","Ap":"7","p":{"32":{"n":5,"s":1},"33":{"n":6},"34":{"n":4.5,"s":1},"35":{"n":3.5},"36":{"n":5.5},"37":{"n":4.5,"s":1},"38":{"n":7,"g":1,"s":1}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":13,"s":{"n":0,"Os":"94","On":"20","Oa":"4.7","Od":"0.73","Mp":"20","p":{"32":{"n":5.5},"33":{"n":4},"34":{"n":5.5},"36":{"n":5.5},"37":{"n":4.5},"38":{"n":4}}},"c":7},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"101","On":"22","Oa":"4.61","Od":"0.78","Mp":"6","Ap":"16","p":{"32":{"n":4},"33":{"n":6.5,"g":1},"34":{"n":4},"37":{"n":4.5,"s":1},"38":{"n":4.5},"1":{"n":5}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":12,"s":{"n":0,"Oao":"1","Os":"156","On":"33","Oa":"4.73","Od":"0.95","Mp":"4","Dp":"29","p":{"32":{"n":6},"34":{"n":4.5},"35":{"n":4},"36":{"n":5},"37":{"n":4.5},"38":{"n":6}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":11,"s":{"n":0,"Og":"2","Os":"150","On":"31","Oa":"4.84","Od":"1.19","Mp":"3","Dp":"28","p":{"32":{"n":6},"34":{"n":5,"s":1},"35":{"n":3},"36":{"n":5},"37":{"n":3}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":7,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3","p":{"37":{"n":5,"s":1}}},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":10,"s":{"n":0,"Os":"76","On":"13","Oa":"5.88","Od":"0.88","Gp":"13"},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":6,"s":{"n":0,"Os":"78","On":"17","Oa":"4.62","Od":"1.3","Mp":"3","Dp":"14"},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"90","On":"19","Oa":"4.74","Od":"0.77","Mp":"17","Ap":"2","p":{"32":{"n":4.5,"s":1},"35":{"n":4},"36":{"n":6,"g":1,"s":1},"37":{"n":4},"38":{"n":5,"s":1}}},"c":7},{"i":905,"n":"Ndong","f":"Didier","p":"M","r":2,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"56","On":"12","Oa":"4.67","Od":"0.55","Mp":"12","p":{"32":{"n":4.5,"e":3051,"c":14},"33":{"n":4,"e":3053,"c":14},"34":{"n":4,"e":3069,"c":14},"1":{"n":5,"e":5061,"c":14}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":10,"s":{"n":0,"Os":"152","On":"32","Oa":"4.77","Od":"0.92","Dp":"32","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":5},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":3},"38":{"n":5,"s":1}}},"c":7},{"i":2524,"n":"Ecuele Manga","f":"Bruno","p":"D","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"181","On":"38","Oa":"4.76","Od":"0.96","Dp":"38","p":{"32":{"n":5,"e":3481,"c":70},"33":{"n":4,"e":3492,"c":70},"34":{"n":4.5,"e":3499,"c":70},"35":{"n":5.5,"e":3510,"c":70},"36":{"n":5.5,"e":3521,"c":70},"37":{"n":5,"e":3530,"c":70},"38":{"n":7,"e":3544,"c":70},"1":{"n":4.5}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"55","On":"12","Oa":"4.58","Od":"0.81","Dp":"12","p":{"32":{"n":5,"s":1},"33":{"n":4.5},"37":{"n":3.5},"38":{"n":4.5},"1":{"n":5}}},"c":7},{"i":2633,"n":"Ntumba","f":"L\u00e9vi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"41","On":"9","Oa":"4.61","Od":"0.39","Dp":"9","p":{"33":{"n":5,"s":1},"1":{"n":4}}},"c":7},{"i":2640,"n":"Barbet","f":"Th\u00e9o","p":"D","r":1,"s":{"n":0},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"58","On":"12","Oa":"4.88","Od":"1","Mp":"12","p":{"35":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":7},{"i":2687,"n":"Keita","f":"Jules","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"75","On":"17","Oa":"4.41","Od":"0.94","Mp":"1","Ap":"16","p":{"1":{"n":4.5,"s":1}}},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":7,"s":{"n":0,"Og":"3","Os":"61","On":"13","Oa":"4.73","Od":"1.12","Dp":"13","p":{"33":{"n":5.5,"g":1},"34":{"n":4.5},"35":{"n":3},"38":{"n":4.5}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"122","On":"25","Oa":"4.88","Od":"0.96","Gp":"25","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":5},"35":{"n":4.5},"36":{"n":6},"37":{"n":4},"38":{"n":5},"1":{"n":4}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":10,"s":{"n":0,"Os":"38","On":"9","Oa":"4.22","Od":"0.92","Dp":"9"},"c":7},{"i":2941,"n":"Doumbouya","f":"Sory","p":"A","r":1,"s":{"n":0},"c":7},{"i":2989,"n":"Godard","f":"Theo","p":"A","r":1,"s":{"n":0},"c":7},{"i":3361,"n":"Kaba","f":"Sory","p":"A","r":8,"s":{"n":0,"Os":"37","On":"9","Oa":"4.17","Od":"0.33","Ap":"9","p":{"34":{"n":4.5,"s":1},"35":{"n":4,"s":1},"36":{"n":4,"s":1}}},"c":7},{"i":3526,"n":"T\u00e9gar","f":"Alexandre","p":"D","r":1,"s":{"n":0},"c":7},{"i":3755,"n":"Soumar\u00e9","f":"Bryan","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":7},{"i":3768,"n":"Mama Bald\u00e9","f":"","p":"M","r":12,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":12,"s":{"n":0,"Og":"5","Os":"160","On":"32","Oa":"5.02","Od":"0.92","Mp":"6","Ap":"26","p":{"32":{"n":6.5},"33":{"n":6.5},"34":{"n":4.5},"35":{"n":5.5},"37":{"n":4.5},"38":{"n":4}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"128","On":"25","Oa":"5.14","Od":"1.06","Dp":"25","p":{"33":{"n":4},"34":{"n":5.5},"35":{"n":7},"36":{"n":5.5},"37":{"n":5},"38":{"n":4.5},"1":{"n":5}}},"c":8},{"i":82,"n":"Lafont","f":"Alban","p":"G","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"1":{"n":4}}},"c":8},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":11,"s":{"n":0,"Og":"3","Os":"129","On":"25","Oa":"5.16","Od":"0.81","Mp":"25"},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":500,"s":{"n":0,"Og":"11","Os":"96","On":"18","Oa":"5.33","Od":"1.48","Ap":"18"},"c":8},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":15,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"152","On":"33","Oa":"4.61","Od":"0.78","Mp":"24","Ap":"9","p":{"32":{"n":4.5,"e":3051,"c":14,"s":1},"33":{"n":4.5,"e":3053,"c":14,"s":1},"34":{"n":3.5,"e":3069,"c":14},"35":{"n":5,"e":3073,"c":14,"s":1},"36":{"n":5,"e":3090,"c":14},"38":{"n":5,"e":3102,"c":14,"s":1},"1":{"n":4.5}}},"c":8},{"i":231,"n":"Petric","f":"Denis","p":"G","r":8,"s":{"n":0},"c":8},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":21,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"199","On":"36","Oa":"5.54","Od":"1.04","Mp":"35","Ap":"1","p":{"32":{"n":5.5},"33":{"n":7,"g":1},"34":{"n":6},"35":{"n":7.5,"g":1},"36":{"n":6},"37":{"n":5.5},"38":{"n":7},"1":{"n":5}}},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":4,"s":{"n":0},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":12,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"148","On":"31","Oa":"4.79","Od":"1","Mp":"5","Dp":"23","Ap":"3","p":{"32":{"n":5,"s":1},"33":{"n":5},"35":{"n":6},"36":{"n":5,"s":1},"37":{"n":5.5,"s":1},"38":{"n":4.5},"1":{"n":5.5}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"n":0},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":15,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"182","On":"34","Oa":"5.37","Od":"1","Mp":"34","p":{"32":{"n":6},"33":{"n":5},"34":{"n":5},"35":{"n":7.5,"g":1},"36":{"n":5},"37":{"n":5},"38":{"n":5.5},"1":{"n":4.5}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":2,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Gp":"1","p":{"38":{"n":5}}},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"38":{"n":5.5}}},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":8,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"100","On":"21","Oa":"4.79","Od":"0.63","Mp":"3","Dp":"18","p":{"32":{"n":5},"34":{"n":5,"s":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":5},"1":{"n":4}}},"c":8},{"i":1007,"n":"Wagu\u00e9","f":"Molla","p":"D","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":8},{"i":1171,"n":"Kalifa Coulibaly","f":"","p":"A","r":18,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"8","Os":"151","On":"32","Oa":"4.72","Od":"1.02","Ap":"32","p":{"32":{"n":6,"g":1},"33":{"n":8,"g":2},"34":{"n":5.5},"35":{"n":6,"g":1},"36":{"n":4},"37":{"n":6,"g":1},"38":{"n":4},"1":{"n":4}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":10,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"113","On":"21","Oa":"5.38","Od":"1.12","Mp":"20","Dp":"1","p":{"34":{"n":7.5,"g":1},"35":{"n":5,"s":1},"36":{"n":6},"37":{"n":6},"1":{"n":5.5}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"138","On":"28","Oa":"4.95","Od":"0.82","Mp":"24","Ap":"4","p":{"32":{"n":4.5},"33":{"n":6},"34":{"n":7,"g":1},"35":{"n":7},"36":{"n":6,"g":1},"37":{"n":4.5},"38":{"n":4.5},"1":{"n":4.5,"s":1}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":8,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"70","On":"14","Oa":"5","Od":"0.78","Mp":"4","Dp":"10","p":{"32":{"n":5},"34":{"n":5},"36":{"n":3.5},"37":{"n":5},"1":{"n":4}}},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":8,"s":{"n":0,"Os":"83","On":"16","Oa":"5.22","Od":"0.56","Mp":"16"},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":4,"s":{"n":0,"Os":"26","On":"6","Oa":"4.33","Od":"0.69","Mp":"5","Ap":"1","p":{"33":{"n":5,"s":1},"38":{"n":4.5,"s":1}}},"c":8},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":8,"s":{"n":0},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":3,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":7,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"32":{"n":5.5},"35":{"n":5,"s":1}}},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"63","On":"13","Oa":"4.85","Od":"0.93","Mp":"10","Ap":"3","p":{"33":{"n":4.5,"s":1},"36":{"n":5,"s":1}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":14,"s":{"n":0,"Og":"1","Os":"150","On":"29","Oa":"5.19","Od":"0.56","Mp":"20","Ap":"9","p":{"32":{"n":7,"g":1},"33":{"n":6},"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":6},"37":{"n":5,"s":1}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":8,"s":{"n":0,"Os":"32","On":"6","Oa":"5.33","Od":"0.37","Dp":"6"},"c":8},{"i":2938,"n":"Louza","f":"Imran","p":"M","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"38":{"n":4.5}}},"c":8},{"i":2947,"n":"Youan","f":"Thody Elie","p":"A","r":2,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"38":{"n":4.5,"s":1}}},"c":8},{"i":2993,"n":"Bamba","f":"Abdoul Kader","p":"M","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"1":{"n":4.5,"s":1}}},"c":8},{"i":3363,"n":"Mance","f":"Antonio","p":"A","r":8,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.2","Ap":"5","p":{"38":{"n":4.5,"s":1}}},"c":8},{"i":3516,"n":"Homawoo","f":"Josu\u00e9","p":"D","r":1,"s":{"n":0},"c":8},{"i":3767,"n":"Ba","f":"Abou","p":"M","r":2,"s":{"n":0},"c":8},{"i":3812,"n":"Appiah","f":"Dennis","p":"D","r":11,"s":{"n":0},"c":8},{"i":6009,"n":"Ndilu","f":"Bridge","p":"A","r":5,"s":{"n":0},"c":8},{"i":6153,"n":"Moustache","f":"Wesley","p":"D","r":1,"s":{"n":0},"c":8},{"i":6165,"n":"Benavente Bristol","f":"Cristian","p":"M","r":11,"s":{"n":0},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"155","On":"31","Oa":"5.02","Od":"0.88","Mp":"23","Ap":"8","p":{"32":{"n":5.5},"33":{"n":4.5},"34":{"n":3.5},"35":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5},"38":{"n":5},"1":{"n":4}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":20,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"7","Os":"177","On":"36","Oa":"4.92","Od":"1.04","Mp":"1","Ap":"35","p":{"32":{"n":6,"g":1,"s":1},"33":{"n":7,"g":1},"34":{"n":5},"35":{"n":7,"g":1},"36":{"n":4,"s":1},"37":{"n":4.5},"38":{"n":6},"1":{"n":3.5}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":25,"s":{"n":0,"Og":"15","Os":"173","On":"32","Oa":"5.41","Od":"1.41","Mp":"23","Ap":"9","p":{"32":{"n":5},"33":{"n":6},"36":{"n":4.5,"s":1},"37":{"n":8,"g":2},"38":{"n":7,"g":1}}},"c":9},{"i":34,"n":"Balotelli","f":"Mario","p":"A","r":22,"s":{"n":0,"Og":"8","Os":"123","On":"25","Oa":"4.92","Od":"1.21","Ap":"25","p":{"32":{"n":4.5},"34":{"n":6,"g":1},"35":{"n":4},"36":{"n":4},"38":{"n":2.5,"s":1}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"5","Os":"172","On":"33","Oa":"5.21","Od":"1.02","Mp":"33","p":{"32":{"n":4.5,"s":1},"33":{"n":6},"34":{"n":5.5},"37":{"n":7,"g":1},"38":{"n":4.5},"1":{"n":4}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":13,"s":{"n":0,"Og":"3","Os":"79","On":"16","Oa":"4.97","Od":"0.84","Ap":"16","p":{"32":{"n":5,"s":1},"35":{"n":4.5,"s":1},"37":{"n":7.5,"g":1,"s":1},"38":{"n":4.5,"s":1}}},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":14,"s":{"n":0,"Og":"1","Os":"163","On":"31","Oa":"5.27","Od":"0.74","Mp":"31","p":{"32":{"n":5.5},"33":{"n":5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":5},"36":{"n":3.5},"37":{"n":5,"s":1},"38":{"n":5.5}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":8,"s":{"n":0,"Os":"40","On":"8","Oa":"5.06","Od":"1.13","Gp":"8","p":{"38":{"n":7}}},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":14,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"136","On":"27","Oa":"5.04","Od":"1.06","Mp":"1","Dp":"26","p":{"32":{"n":6},"33":{"n":6},"34":{"n":4.5},"35":{"n":5},"36":{"n":3.5},"37":{"n":7.5,"g":1},"38":{"n":5.5},"1":{"n":4}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"144","On":"29","Oa":"4.98","Od":"1.05","Mp":"6","Dp":"23","p":{"32":{"n":5},"34":{"n":3.5},"1":{"n":4.5,"s":1}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":5,"s":{"n":0,"Os":"50","On":"10","Oa":"5","Od":"0.81","Dp":"10"},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":1,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.24","Mp":"3"},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"38":{"n":5.5,"s":1}}},"c":9},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":8,"s":{"n":0,"Og":"3","Os":"116","On":"25","Oa":"4.64","Od":"0.74","Mp":"23","Ap":"2","p":{"32":{"n":4.5,"e":3042,"c":5},"33":{"n":4.5,"e":3056,"c":5},"36":{"n":5,"e":3084,"c":5},"37":{"n":4.5,"e":3095,"c":5},"38":{"n":4.5,"e":3104,"c":5,"s":1}}},"c":9},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"170","On":"32","Oa":"5.33","Od":"0.9","Gp":"32","p":{"32":{"n":6},"33":{"n":5.5},"34":{"n":6},"35":{"n":6.5},"36":{"n":4},"37":{"n":6},"1":{"n":5}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"152","On":"30","Oa":"5.08","Od":"0.91","Mp":"19","Dp":"11","p":{"32":{"n":7,"g":1},"33":{"n":7,"g":1},"34":{"n":5},"35":{"n":5.5},"36":{"n":4},"37":{"n":6},"38":{"n":6},"1":{"n":5}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"80","On":"16","Oa":"5","Od":"1.12","Dp":"16","p":{"35":{"n":4},"37":{"n":5.5}}},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":11,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"134","On":"28","Oa":"4.79","Od":"0.81","Mp":"1","Dp":"27","p":{"33":{"n":6},"34":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":3.5},"37":{"n":5},"1":{"n":4}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":15,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"156","On":"31","Oa":"5.03","Od":"0.9","Dp":"31","p":{"32":{"n":6},"33":{"n":5.5},"34":{"n":4},"35":{"n":6},"36":{"n":3},"37":{"n":4.5},"1":{"n":4}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":8,"s":{"n":0,"Og":"3","Os":"64","On":"14","Oa":"4.61","Od":"0.83","Ap":"14"},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":1726,"n":"Gonz\u00e1lez","f":"\u00c1lvaro","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"165","On":"33","Oa":"5.02","Od":"1.02","Dp":"33","p":{"32":{"n":6,"e":2284,"c":64},"33":{"n":4,"e":2301,"c":64},"34":{"n":6,"e":2305,"c":64},"35":{"n":6,"e":2321,"c":64},"36":{"n":4.5,"e":2326,"c":64},"37":{"n":6,"e":2339,"c":64},"38":{"n":4,"e":2345,"c":64}}},"c":9},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":1,"s":{"n":0},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":13,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"107","On":"21","Oa":"5.1","Od":"1.1","Dp":"21","p":{"32":{"n":6.5},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":5},"36":{"n":4},"38":{"n":6},"1":{"n":3}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"M","r":1,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":11,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"145","On":"29","Oa":"5","Od":"0.82","Mp":"29","p":{"33":{"n":6,"s":1},"35":{"n":5.5},"36":{"n":3.5},"37":{"n":4.5,"s":1},"38":{"n":5.5},"1":{"n":4}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":12,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"74","On":"18","Oa":"4.14","Od":"0.55","Mp":"4","Ap":"14","p":{"32":{"n":4},"33":{"n":5,"s":1},"34":{"n":4,"s":1},"36":{"n":3},"1":{"n":3}}},"c":9},{"i":2939,"n":"Philiponeau","f":"Alexandre","p":"M","r":1,"s":{"n":0},"c":9},{"i":2953,"n":"Ali Mohamed","f":"Abdallah","p":"D","r":1,"s":{"n":0},"c":9},{"i":6021,"n":"Benedetto","f":"Dar\u00edo","p":"A","r":17,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":9},{"i":6154,"n":"Dia","f":"Ahmadou","p":"G","r":2,"s":{"n":0},"c":9},{"i":6158,"n":"Ak\u00e9","f":"Marley","p":"M","r":3,"s":{"n":0},"c":9},{"i":6163,"n":"Lihadji","f":"Isaac","p":"A","r":4,"s":{"n":0},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":16,"s":{"n":0,"Og":"1","Os":"167","On":"33","Oa":"5.06","Od":"1.2","Dp":"33","p":{"32":{"n":4},"33":{"n":6},"35":{"n":5},"36":{"n":6},"37":{"n":3},"38":{"n":4}}},"c":10},{"i":60,"n":"Vainqueur","f":"William","p":"M","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"18","On":"4","Oa":"4.63","Od":"0.65","Mp":"4","p":{"1":{"n":5}}},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":17,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Oao":"1","Os":"170","On":"31","Oa":"5.48","Od":"1.28","Gp":"31","p":{"32":{"n":5},"33":{"n":7},"34":{"n":6},"1":{"n":7}}},"c":10},{"i":144,"n":"Issiaga Sylla","f":"","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"118","On":"25","Oa":"4.74","Od":"1.08","Mp":"7","Dp":"18","p":{"32":{"n":4.5},"33":{"n":4},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":5},"37":{"n":4},"1":{"n":4.5}}},"c":10},{"i":165,"n":"Said","f":"Wesley","p":"A","r":14,"s":{"n":0,"Og":"4","Os":"158","On":"33","Oa":"4.8","Od":"1.08","Mp":"8","Dp":"1","Ap":"24","p":{"32":{"n":4.5,"e":3043,"c":7},"33":{"n":8,"e":3052,"c":7,"g":1},"34":{"n":4.5,"e":3065,"c":7},"35":{"n":3,"e":3077,"c":7},"36":{"n":5,"e":3085,"c":7},"37":{"n":4.5,"e":3098,"c":7},"38":{"n":7,"e":3105,"c":7}}},"c":10},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":7,"s":{"n":0},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":8,"s":{"n":0,"Os":"100","On":"21","Oa":"4.79","Od":"0.85","Mp":"1","Dp":"20","p":{"33":{"n":6},"34":{"n":4}}},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":12,"s":{"n":0,"Og":"4","Os":"172","On":"36","Oa":"4.79","Od":"0.87","Mp":"31","Ap":"5","p":{"32":{"n":3.5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":4},"38":{"n":5,"s":1}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":9,"s":{"n":0,"Og":"1","Os":"68","On":"15","Oa":"4.53","Od":"0.72","Ap":"15","p":{"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":7,"s":{"n":0,"Os":"81","On":"18","Oa":"4.5","Od":"0.71","Mp":"3","Ap":"15"},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":7,"s":{"n":0,"Os":"43","On":"8","Oa":"5.38","Od":"1.32","Gp":"8","p":{"35":{"n":4.5},"36":{"n":6},"37":{"n":3.5},"38":{"n":5.5}}},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":7,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"46","On":"11","Oa":"4.18","Od":"0.89","Mp":"3","Dp":"8","p":{"38":{"n":3.5},"1":{"n":5.5,"s":1}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"126","On":"28","Oa":"4.52","Od":"0.84","Ap":"28","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5,"g":1},"38":{"n":4},"1":{"n":4.5,"s":1}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"155","On":"32","Oa":"4.86","Od":"1.05","Mp":"2","Dp":"30","p":{"32":{"n":4},"33":{"n":5},"34":{"n":4},"35":{"n":4.5},"36":{"n":5},"37":{"n":3},"1":{"n":5}}},"c":10},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"122","On":"25","Oa":"4.88","Od":"0.53","Mp":"18","Ap":"7","p":{"34":{"n":6,"e":3069,"c":19},"35":{"n":5,"e":3078,"c":19,"s":1},"36":{"n":5,"e":3088,"c":19,"s":1},"37":{"n":5,"e":3099,"c":19,"s":1},"38":{"n":4.5,"e":3108,"c":19,"s":1},"1":{"n":5}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Ibrahim Sangar\u00e9","f":"","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"150","On":"28","Oa":"5.38","Od":"0.94","Mp":"28","p":{"32":{"n":6},"33":{"n":6},"34":{"n":4.5},"35":{"n":4.5},"37":{"n":3.5},"38":{"n":4},"1":{"n":5}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":8,"s":{"n":0,"Og":"3","Os":"94","On":"20","Oa":"4.73","Od":"0.99","Ap":"20","p":{"32":{"n":3},"34":{"n":4.5,"s":1},"35":{"n":4.5},"36":{"n":4},"38":{"n":4.5,"s":1}}},"c":10},{"i":1025,"n":"Gradel","f":"Max-Alain","p":"A","r":19,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"11","Os":"191","On":"36","Oa":"5.32","Od":"1.22","Mp":"25","Ap":"11","p":{"32":{"n":3.5},"33":{"n":4},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":5},"37":{"n":6.5,"g":1},"1":{"n":5.5}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":10},{"i":1528,"n":"Dossevi","f":"Mathieu","p":"M","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"176","On":"35","Oa":"5.03","Od":"0.9","Mp":"26","Ap":"9","p":{"32":{"n":4,"s":1},"33":{"n":5},"34":{"n":5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":3.5},"38":{"n":4},"1":{"n":6}}},"c":10},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":7,"s":{"n":0,"Os":"72","On":"15","Oa":"4.8","Od":"0.63","Mp":"15","p":{"35":{"n":5,"s":1},"36":{"n":4.5},"37":{"n":4}}},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":8,"s":{"n":0,"Os":"145","On":"30","Oa":"4.83","Od":"0.85","Mp":"30","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"37":{"n":4.5,"s":1}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":1,"s":{"n":0},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":6,"s":{"n":0,"Os":"23","On":"5","Oa":"4.7","Od":"1.08","Mp":"2","Dp":"3"},"c":10},{"i":2942,"n":"N'Goumou Minpole","f":"Nathan","p":"M","r":12,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1","p":{"38":{"n":4}}},"c":10},{"i":2950,"n":"Sidibe","f":"Kalidou","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"72","On":"15","Oa":"4.83","Od":"0.7","Mp":"15","p":{"32":{"n":5.5,"g":1},"33":{"n":4.5},"34":{"n":4},"35":{"n":3.5},"36":{"n":4.5},"38":{"n":4}}},"c":10},{"i":2960,"n":"Diakite","f":"Bafode","p":"D","r":8,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"43","On":"9","Oa":"4.83","Od":"0.82","Mp":"2","Dp":"7","p":{"38":{"n":6,"g":1},"1":{"n":5.5}}},"c":10},{"i":2962,"n":"Bessile","f":"Loic","p":"D","r":1,"s":{"n":0},"c":10},{"i":2996,"n":"Shoji","f":"Gen","p":"D","r":12,"s":{"n":0,"Os":"87","On":"18","Oa":"4.83","Od":"0.93","Dp":"18","p":{"32":{"n":4},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":6},"36":{"n":5.5},"37":{"n":3},"38":{"n":4}}},"c":10},{"i":3228,"n":"Kone","f":"Kouadio","p":"M","r":2,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"38":{"n":3.5}}},"c":10},{"i":3753,"n":"Diarra","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":10},{"i":3798,"n":"Koulouris","f":"Efthymios","p":"A","r":14,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"1":{"n":6,"g":1}}},"c":10},{"i":4036,"n":"Rogel","f":"Agust\u00edn","p":"D","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":10},{"i":6155,"n":"Zobo","f":"St\u00e9phane","p":"A","r":2,"s":{"n":0},"c":10},{"i":6156,"n":"Adli","f":"Amine","p":"M","r":1,"s":{"n":0},"c":10},{"i":6157,"n":"Rouault","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":10},{"i":6159,"n":"Sanna","f":"Sam","p":"M","r":1,"s":{"n":0},"c":10},{"i":6164,"n":"Bloch","f":"Florentin","p":"G","r":1,"s":{"n":0},"c":10},{"i":97,"n":"Cohade","f":"Renaud","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5}}},"c":11},{"i":273,"n":"Delecroix","f":"Paul","p":"G","r":8,"s":{"n":0},"c":11},{"i":337,"n":"Nguette","f":"Opa","p":"M","r":12,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Ap":"1","p":{"1":{"n":5.5}}},"c":11},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"22","On":"5","Oa":"4.5","Od":"0.77","Mp":"1","Dp":"4","p":{"34":{"n":5,"e":3070,"c":13,"s":1},"1":{"n":4.5}}},"c":11},{"i":487,"n":"Basin","f":"Nicolas","p":"D","r":4,"s":{"n":0},"c":11},{"i":498,"n":"Boulaya","f":"Farid","p":"M","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4}}},"c":11},{"i":576,"n":"Udol","f":"Matthieu","p":"D","r":1,"s":{"n":0},"c":11},{"i":1185,"n":"Diallo","f":"Habib","p":"A","r":14,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"1":{"n":6,"g":1}}},"c":11},{"i":1232,"n":"Niane","f":"Ibrahima","p":"A","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":11},{"i":1246,"n":"Jallow","f":"Ablie","p":"M","r":3,"s":{"n":0},"c":11},{"i":1248,"n":"Ma\u00efga","f":"Habib","p":"M","r":8,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"1":{"n":5.5}}},"c":11},{"i":1266,"n":"Poblete","f":"Ger\u00f3nimo","p":"M","r":10,"s":{"n":0},"c":11},{"i":1415,"n":"Oukidja","f":"Alexandre","p":"G","r":14,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5}}},"c":11},{"i":3757,"n":"Dia N'Diaye","f":"Amadou","p":"A","r":1,"s":{"n":0},"c":11},{"i":3758,"n":"Sabaly","f":"Cheick Tidiane","p":"A","r":1,"s":{"n":0},"c":11},{"i":3763,"n":"Pierre","f":"Leverton","p":"A","r":1,"s":{"n":0},"c":11},{"i":3773,"n":"Dietsch","f":"Guillaume","p":"G","r":1,"s":{"n":0},"c":11},{"i":3776,"n":"Cabit","f":"Manuel","p":"D","r":4,"s":{"n":0},"c":11},{"i":3777,"n":"Mroivili","f":"Raouf","p":"M","r":1,"s":{"n":0},"c":11},{"i":3781,"n":"Fofana","f":"Mamadou","p":"D","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"1":{"n":5.5}}},"c":11},{"i":3782,"n":"Traor\u00e9","f":"Adama","p":"A","r":2,"s":{"n":0},"c":11},{"i":3783,"n":"Monteiro","f":"Jamiro","p":"M","r":6,"s":{"n":0},"c":11},{"i":3787,"n":"Centonze","f":"Fabien","p":"D","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":11},{"i":3790,"n":"Angban","f":"Victorien","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":11},{"i":3791,"n":"Gakpa","f":"Marvin","p":"M","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":11},{"i":3800,"n":"Ambrose","f":"Thierry","p":"A","r":5,"s":{"n":0},"c":11},{"i":3809,"n":"Delaine","f":"Thomas","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":11},{"i":3814,"n":"Sunzu","f":"Stoppila","p":"D","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":11},{"i":3815,"n":"Boye","f":"John","p":"D","r":10,"s":{"n":0},"c":11},{"i":6003,"n":"Yade","f":"Papa Ndiaga","p":"M","r":3,"s":{"n":0},"c":11},{"i":6151,"n":"L\u00f4","f":"Aboubacar","p":"D","r":3,"s":{"n":0},"c":11},{"i":6152,"n":"Lahssaini","f":"Sami","p":"M","r":5,"s":{"n":0},"c":11},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"160","On":"30","Oa":"5.33","Od":"1.03","Mp":"30","p":{"33":{"n":5,"e":3052,"c":20},"1":{"n":6}}},"c":12},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":15,"s":{"n":0,"Os":"108","On":"19","Oa":"5.71","Od":"0.77","Dp":"19","p":{"32":{"n":5},"38":{"n":4}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":12,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Mp":"1"},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":26,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"220","On":"38","Oa":"5.8","Od":"0.74","Gp":"38","p":{"32":{"n":6},"33":{"n":6},"34":{"n":6.5},"35":{"n":4.5},"36":{"n":6},"37":{"n":6},"38":{"n":6},"1":{"n":6}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":14,"s":{"n":0,"Og":"2","Os":"134","On":"26","Oa":"5.15","Od":"0.96","Mp":"26","p":{"32":{"n":7}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":4,"s":{"n":0},"c":12},{"i":455,"n":"Ikon\u00e9","f":"Jonathan","p":"M","r":17,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"3","Os":"192","On":"38","Oa":"5.05","Od":"0.73","Mp":"35","Ap":"3","p":{"32":{"n":6.5},"33":{"n":4.5},"34":{"n":5.5},"35":{"n":4},"36":{"n":6},"37":{"n":6.5,"g":1},"38":{"n":5.5},"1":{"n":5.5}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":25,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"12","Os":"207","On":"38","Oa":"5.46","Od":"1.38","Mp":"37","Ap":"1","p":{"32":{"n":8,"g":1},"33":{"n":4.5},"34":{"n":7,"g":1},"35":{"n":4.5},"36":{"n":5},"37":{"n":8,"g":1},"38":{"n":4.5},"1":{"n":6}}},"c":12},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":7,"s":{"n":0},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":25,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"205","On":"37","Oa":"5.54","Od":"0.95","Dp":"37","p":{"32":{"n":7.5,"g":1},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":6.5},"38":{"n":3.5},"1":{"n":6}}},"c":12},{"i":954,"n":"R\u00e9my","f":"Lo\u00efc","p":"A","r":16,"s":{"n":0,"Og":"7","Os":"129","On":"26","Oa":"4.96","Od":"0.95","Ap":"26","p":{"32":{"n":5.5},"34":{"n":6.5,"g":1},"35":{"n":6,"g":1},"36":{"n":6,"g":1},"37":{"n":5.5},"38":{"n":6,"g":1}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":8,"s":{"n":0,"Os":"54","On":"11","Oa":"4.95","Od":"0.81","Dp":"11","p":{"37":{"n":5,"s":1},"38":{"n":3.5}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"127","On":"25","Oa":"5.08","Od":"0.69","Mp":"25","p":{"35":{"n":5.5},"36":{"n":5,"s":1},"38":{"n":4.5},"1":{"n":5,"s":1}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":7,"s":{"n":0},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Ara\u00fajo","f":"","p":"A","r":9,"s":{"n":0,"Og":"3","Os":"118","On":"25","Oa":"4.74","Od":"0.6","Mp":"6","Ap":"19","p":{"33":{"n":5,"s":1},"34":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":6,"g":1,"s":1},"38":{"n":4.5}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":7,"s":{"n":0,"Os":"57","On":"11","Oa":"5.23","Od":"0.72","Dp":"11"},"c":12},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":5,"s":{"n":0,"Os":"72","On":"15","Oa":"4.8","Od":"0.77","Dp":"15","p":{"33":{"n":4.5,"e":3055,"c":8},"34":{"n":5,"e":3067,"c":8}}},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":2,"s":{"n":0},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":3,"s":{"n":0},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumar\u00e9","f":"Boubakary","p":"M","r":12,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"97","On":"19","Oa":"5.13","Od":"0.78","Mp":"19","p":{"32":{"n":5,"s":1},"33":{"n":6},"34":{"n":7},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":6},"1":{"n":4.5}}},"c":12},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":1,"s":{"n":0},"c":12},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":5}}},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":8,"s":{"n":0,"Og":"1","Os":"81","On":"18","Oa":"4.53","Od":"0.51","Ap":"18","p":{"32":{"n":4.5,"s":1},"33":{"n":5,"s":1},"34":{"n":6,"g":1,"s":1},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4,"s":1},"38":{"n":4.5,"s":1}}},"c":12},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":14,"s":{"ao":"1","s":"4","n":"1","a":"4.5","Sao":"1","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Oao":"1","Os":"174","On":"34","Oa":"5.12","Od":"0.71","Dp":"34","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":7.5,"g":1},"35":{"n":4},"36":{"n":5},"37":{"n":6},"1":{"n":4.5,"a":1}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"81","On":"14","Oa":"5.82","Od":"0.88","Dp":"14","p":{"32":{"n":6.5,"g":1,"s":1},"33":{"n":6},"34":{"n":7},"35":{"n":4.5},"36":{"n":6},"37":{"n":7},"38":{"n":5.5,"s":1}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":3,"s":{"n":0},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3122,"n":"Niasse","f":"Cheikh","p":"D","r":1,"s":{"n":0},"c":12},{"i":3123,"n":"Okou","f":"Teddy","p":"A","r":1,"s":{"n":0},"c":12},{"i":3359,"n":"Reinildo","f":"","p":"D","r":7,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"19","On":"4","Oa":"4.88","Od":"0.54","Dp":"4","p":{"35":{"n":5,"s":1},"38":{"n":4},"1":{"n":5.5,"s":1}}},"c":12},{"i":3751,"n":"Agouzoul","f":"Saad","p":"D","r":6,"s":{"n":0},"c":12},{"i":3796,"n":"L\u00e9o Jardim","f":"","p":"G","r":8,"s":{"n":0},"c":12},{"i":4031,"n":"Bradaric","f":"Domagoj","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":12},{"i":6013,"n":"Show","f":"","p":"M","r":4,"s":{"n":0},"c":12},{"i":6014,"n":"Ouattara","f":"Abou","p":"A","r":1,"s":{"n":0},"c":12},{"i":6015,"n":"Tiago Djal\u00f3","f":"","p":"D","r":4,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":12},{"i":6017,"n":"Yazici","f":"Yusuf","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":12},{"i":6018,"n":"Osimhen","f":"Victor","p":"A","r":5,"s":{"g":"2","s":"7","n":"1","a":"7.5","Sg":"2","Ss":"7","Sn":"1","Sa":"7.5","Og":"2","Os":"7","On":"1","Oa":"7.5","Ap":"1","p":{"1":{"n":7.5,"g":2}}},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":20,"s":{"n":0,"Og":"14","Os":"158","On":"32","Oa":"4.94","Od":"1.25","Ap":"32","p":{"32":{"n":5,"s":1},"33":{"n":4},"34":{"n":7.5,"g":2},"35":{"n":4},"36":{"n":5},"37":{"n":6,"g":1},"38":{"n":3.5}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":9,"s":{"n":0,"Os":"76","On":"14","Oa":"5.43","Od":"0.98","Gp":"14","p":{"32":{"n":5.5},"33":{"n":5},"35":{"n":5}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":12,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"159","On":"33","Oa":"4.82","Od":"0.97","Dp":"33","p":{"32":{"n":6},"33":{"n":4},"35":{"n":3.5},"36":{"n":5.5},"37":{"n":7},"38":{"n":4.5},"1":{"n":4}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"125","On":"25","Oa":"5.02","Od":"0.87","Mp":"6","Dp":"19","p":{"32":{"n":6},"33":{"n":4},"34":{"n":4},"35":{"n":6},"36":{"n":5.5},"37":{"n":5.5},"1":{"n":4}}},"c":13},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"151","On":"30","Oa":"5.05","Od":"1","Mp":"7","Ap":"23","p":{"32":{"n":5,"e":3048,"c":8,"s":1},"34":{"n":4.5,"e":3067,"c":8,"s":1},"35":{"n":4.5,"e":3077,"c":8,"s":1},"36":{"n":4.5,"e":3088,"c":8,"s":1},"1":{"n":5,"s":1}}},"c":13},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":12,"s":{"n":0,"Os":"143","On":"26","Oa":"5.52","Od":"0.98","Mp":"26","p":{"32":{"n":4.5,"e":3050,"c":4,"s":1},"33":{"n":6.5,"e":3059,"c":4},"35":{"n":5,"e":3075,"c":4,"s":1},"36":{"n":5.5,"e":3091,"c":4},"37":{"n":5,"e":3099,"c":4}}},"c":13},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":20,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"203","On":"37","Oa":"5.49","Od":"0.95","Gp":"37","p":{"32":{"n":5,"e":3047,"c":15},"33":{"n":5,"e":3060,"c":15},"34":{"n":5,"e":3068,"c":15},"35":{"n":4.5,"e":3076,"c":15},"36":{"n":7.5,"e":3091,"c":15},"37":{"n":3.5,"e":3097,"c":15},"38":{"n":5,"e":3106,"c":15},"1":{"n":3}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.41","Dp":"4"},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":6,"s":{"n":0,"Os":"28","On":"6","Oa":"4.75","Od":"0.75","Mp":"1","Dp":"5"},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":5,"s":{"n":0,"Os":"16","On":"3","Oa":"5.5","Od":"0.41","Dp":"3"},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":3,"s":{"n":0,"Os":"11","On":"3","Oa":"3.83","Od":"0.62","Gp":"3","p":{"34":{"n":4.5},"35":{"n":3,"s":1}}},"c":13},{"i":646,"n":"F\u00e0bregas","f":"Cesc","p":"M","r":17,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"93","On":"19","Oa":"4.92","Od":"0.57","Mp":"19","p":{"32":{"n":5},"37":{"n":4.5,"s":1},"38":{"n":5},"1":{"n":3.5}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":7,"s":{"n":0,"Os":"73","On":"16","Oa":"4.56","Od":"0.5","Mp":"16","p":{"36":{"n":5,"s":1}}},"c":13},{"i":884,"n":"Traor\u00e9","f":"Adama","p":"M","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"32","On":"7","Oa":"4.64","Od":"0.44","Mp":"6","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":2,"s":{"n":0,"Os":"25","On":"6","Oa":"4.25","Od":"0.25","Mp":"2","Ap":"4"},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0},"c":13},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"154","On":"29","Oa":"5.33","Od":"0.87","Mp":"26","Dp":"3","p":{"32":{"n":7,"e":3047,"c":15},"33":{"n":5.5,"e":3060,"c":15},"38":{"n":5,"e":3106,"c":15},"1":{"n":4.5}}},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":10,"s":{"n":0,"Os":"113","On":"22","Oa":"5.16","Od":"0.95","Gp":"22","p":{"33":{"n":4,"s":1},"36":{"n":5.5},"37":{"n":6},"38":{"n":5}}},"c":13},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":11,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Oao":"1","Os":"180","On":"36","Oa":"5","Od":"0.87","Mp":"3","Dp":"33","p":{"32":{"n":5.5},"33":{"n":3.5},"34":{"n":5},"35":{"n":3.5,"a":1},"36":{"n":4.5},"37":{"n":6},"38":{"n":5},"1":{"n":3}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"80","On":"19","Oa":"4.21","Od":"0.47","Mp":"1","Ap":"18","p":{"35":{"n":4,"s":1},"36":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":10,"s":{"n":0,"Og":"1","Os":"34","On":"7","Oa":"4.93","Od":"0.49","Mp":"2","Ap":"5","p":{"32":{"n":5}}},"c":13},{"i":1623,"n":"Ben Yedder","f":"Wissam","p":"A","r":21,"s":{"n":0,"Og":"18","Os":"196","On":"35","Oa":"5.6","Od":"1.29","Ap":"35","p":{"31":{"n":5,"e":2281,"c":55},"32":{"n":5.5,"e":2288,"c":55},"33":{"n":4,"e":2296,"c":55},"34":{"n":7.5,"e":2311,"c":55,"g":1},"35":{"n":3,"e":2315,"c":55},"36":{"n":4,"e":2331,"c":55},"37":{"n":4.5,"e":2333,"c":55},"38":{"n":7.5,"e":2347,"c":55,"g":1}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":18,"s":{"n":0},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":2,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":5,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"1","Dp":"1"},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":3,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Mp":"1"},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"15","On":"3","Oa":"5","Od":"1.08","Ap":"3"},"c":13},{"i":2459,"n":"Gelson Martins","f":"","p":"A","r":22,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"120","On":"24","Oa":"5","Od":"0.96","Mp":"17","Ap":"7","p":{"32":{"n":5.5},"33":{"n":4.5},"34":{"n":3.5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":5},"38":{"n":3.5},"1":{"n":5}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":5,"s":{"n":0,"Os":"36","On":"8","Oa":"4.56","Od":"0.53","Mp":"8"},"c":13},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":7,"s":{"n":0,"Os":"52","On":"12","Oa":"4.38","Od":"0.51","Mp":"11","Ap":"1"},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":15,"s":{"n":0,"Og":"3","Os":"148","On":"30","Oa":"4.93","Od":"0.98","Mp":"22","Ap":"8","p":{"32":{"n":3.5},"33":{"n":6,"g":1},"34":{"n":6},"35":{"n":4},"36":{"n":5},"37":{"n":7.5,"g":1},"38":{"n":4.5}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"107","On":"23","Oa":"4.67","Od":"0.67","Mp":"10","Dp":"13","p":{"33":{"n":5},"37":{"n":5},"38":{"n":5},"1":{"n":4.5}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Ap":"1"},"c":13},{"i":2954,"n":"Massengo","f":"Han-Noah","p":"M","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":13},{"i":2955,"n":"Gouano","f":"Gobe","p":"A","r":1,"s":{"n":0},"c":13},{"i":2956,"n":"Biancone","f":"Giulian","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":13},{"i":2958,"n":"Henin","f":"Yanis","p":"G","r":1,"s":{"n":0},"c":13},{"i":2961,"n":"Badiashile Mukinayi","f":"Benoit","p":"D","r":10,"s":{"n":0,"Og":"1","Oao":"1","Os":"75","On":"16","Oa":"4.69","Od":"1.01","Dp":"16","p":{"33":{"n":3.5},"34":{"n":4},"38":{"n":4,"a":1}}},"c":13},{"i":3498,"n":"Naldo","f":"","p":"D","r":8,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.41","Dp":"4","p":{"34":{"n":5,"s":1},"35":{"n":4.5},"36":{"n":4},"37":{"n":5,"s":1}}},"c":13},{"i":3517,"n":"Foster","f":"Lyle","p":"A","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"1":{"n":5}}},"c":13},{"i":3652,"n":"Onyekuru","f":"Henry","p":"M","r":13,"s":{"n":0},"c":13},{"i":3780,"n":"Gil Dias","f":"","p":"M","r":2,"s":{"n":0},"c":13},{"i":4034,"n":"Hagege","f":"Hugo","p":"G","r":1,"s":{"n":0},"c":13},{"i":40,"n":"Delort","f":"Andy","p":"A","r":30,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"14","Os":"196","On":"36","Oa":"5.44","Od":"1.04","Ap":"36","p":{"32":{"n":5.5},"33":{"n":8,"g":2},"34":{"n":6,"g":1},"35":{"n":4.5},"36":{"n":5},"37":{"n":5},"38":{"n":5},"1":{"n":3}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"n":0},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":18,"s":{"n":0,"Og":"3","Os":"202","On":"36","Oa":"5.63","Od":"0.85","Mp":"36","p":{"32":{"n":7,"g":1},"33":{"n":6},"34":{"n":7.5},"35":{"n":6},"36":{"n":6},"37":{"n":6}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Oao":"1","Os":"194","On":"36","Oa":"5.39","Od":"0.88","Dp":"36","p":{"32":{"n":6},"33":{"n":6},"34":{"n":5},"35":{"n":5.5},"36":{"n":6},"37":{"n":6},"38":{"n":5},"1":{"n":5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"165","On":"31","Oa":"5.34","Od":"0.68","Dp":"31","p":{"32":{"n":6},"33":{"n":5},"34":{"n":6},"35":{"n":5.5},"36":{"n":6},"37":{"n":5.5},"38":{"n":5},"1":{"n":6}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"189","On":"37","Oa":"5.11","Od":"0.83","Dp":"37","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":4},"35":{"n":6},"36":{"n":4},"38":{"n":5},"1":{"n":5}}},"c":15},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":14,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"2","Os":"152","On":"29","Oa":"5.26","Od":"1.06","Mp":"28","Ap":"1","p":{"32":{"n":5.5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"35":{"n":6.5,"e":3079,"c":67,"g":1},"36":{"n":6,"e":3089,"c":67},"37":{"n":6,"e":3093,"c":67},"38":{"n":6,"e":3109,"c":67},"1":{"n":7}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"59","On":"12","Oa":"4.96","Od":"0.85","Ap":"12","p":{"32":{"n":6.5,"g":1,"s":1},"34":{"n":6.5,"g":1,"s":1},"35":{"n":4.5,"s":1},"38":{"n":4,"s":1},"1":{"n":4.5,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":22,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"11","Os":"190","On":"37","Oa":"5.14","Od":"1.32","Mp":"1","Ap":"36","p":{"32":{"n":5},"33":{"n":6},"34":{"n":5},"35":{"n":4.5},"36":{"n":7,"g":1},"37":{"n":4.5},"38":{"n":3.5},"1":{"n":3.5}}},"c":15},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":22,"s":{"n":0,"Og":"6","Os":"178","On":"32","Oa":"5.56","Od":"0.97","Mp":"3","Ap":"29","p":{"32":{"n":5},"33":{"n":7,"g":1},"34":{"n":6.5},"35":{"n":6.5,"g":1},"36":{"n":5.5},"37":{"n":7,"g":1}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":1,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"2","Ap":"1","p":{"1":{"n":5,"s":1}}},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":5,"s":{"n":0,"Os":"29","On":"6","Oa":"4.92","Od":"0.34","Mp":"6"},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2","p":{"1":{"n":5}}},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":6,"s":{"n":0,"Os":"56","On":"12","Oa":"4.71","Od":"1.18","Dp":"12","p":{"37":{"n":3.5}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":7,"s":{"n":0,"Os":"141","On":"29","Oa":"4.88","Od":"0.36","Mp":"25","Ap":"4","p":{"33":{"n":4.5,"s":1},"34":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5,"s":1},"38":{"n":5}}},"c":15},{"i":1632,"n":"Rulli","f":"Ger\u00f3nimo","p":"G","r":15,"s":{"n":0,"Os":"143","On":"27","Oa":"5.31","Od":"1.38","Gp":"27","p":{"31":{"n":2.5,"e":2274,"c":52},"32":{"n":5,"e":2289,"c":52},"33":{"n":5.5,"e":2293,"c":52},"34":{"n":5,"e":2305,"c":52},"35":{"n":5,"e":2320,"c":52},"36":{"n":7.5,"e":2322,"c":52},"37":{"n":5,"e":2341,"c":52},"38":{"n":5,"e":2344,"c":52}}},"c":15},{"i":2268,"n":"Oyongo","f":"Ambroise","p":"D","r":8,"s":{"n":0,"Og":"2","Oao":"1","Os":"126","On":"26","Oa":"4.87","Od":"0.93","Mp":"25","Dp":"1","p":{"32":{"n":5},"33":{"n":5},"34":{"n":3.5,"a":1},"35":{"n":4.5},"36":{"n":5},"37":{"n":5},"38":{"n":5}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"133","On":"29","Oa":"4.59","Od":"0.57","Ap":"29","p":{"35":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"194","On":"36","Oa":"5.4","Od":"0.86","Mp":"32","Dp":"4","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":5},"38":{"n":5},"1":{"n":5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":1,"s":{"n":0},"c":15},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":10,"s":{"n":0,"Og":"6","Os":"187","On":"31","Oa":"6.03","Od":"1.24","Mp":"31","p":{"32":{"n":6.5,"e":3045,"c":67,"g":1},"33":{"n":7.5,"e":3057,"c":67,"g":1},"34":{"n":2.5,"e":3066,"c":67},"35":{"n":7.5,"e":3079,"c":67},"36":{"n":6,"e":3089,"c":67},"38":{"n":6,"e":3109,"c":67}}},"c":15},{"i":2936,"n":"Carvalho","f":"Matis","p":"G","r":1,"s":{"n":0},"c":15},{"i":2995,"n":"Su\u00e1rez","f":"Math\u00edas","p":"D","r":8,"s":{"n":0,"Os":"46","On":"10","Oa":"4.6","Od":"0.49","Mp":"7","Dp":"3","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":5},"35":{"n":4},"36":{"n":5},"37":{"n":4.5}}},"c":15},{"i":3126,"n":"Ristic","f":"Mihailo","p":"D","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"53","On":"11","Oa":"4.86","Od":"0.57","Mp":"4","Dp":"7","p":{"36":{"n":5.5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":4.5}}},"c":15},{"i":3520,"n":"Boutobba","f":"Bilal","p":"M","r":1,"s":{"n":0},"c":15},{"i":6160,"n":"Chotard","f":"Joris","p":"M","r":2,"s":{"n":0},"c":15},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":14,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"4","Os":"143","On":"29","Oa":"4.95","Od":"0.96","Mp":"29","p":{"32":{"n":5},"33":{"n":5},"34":{"n":4.5},"35":{"n":5,"s":1},"1":{"n":7,"g":1}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"199","On":"38","Oa":"5.25","Od":"0.89","Mp":"38","p":{"32":{"n":6.5},"33":{"n":6},"34":{"n":6},"35":{"n":6},"36":{"n":4},"37":{"n":3.5},"38":{"n":6},"1":{"n":6}}},"c":16},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":13,"s":{"s":"4","n":"1","a":"4.5","Og":"6","Os":"149","On":"32","Oa":"4.66","Od":"1.06","Mp":"20","Ap":"12","p":{"32":{"n":4,"e":3042,"c":5},"33":{"n":5,"e":3056,"c":5},"34":{"n":5,"e":3065,"c":5},"35":{"n":4.5,"e":3073,"c":5,"s":1},"36":{"n":6.5,"e":3084,"c":5,"g":1},"37":{"n":3,"e":3095,"c":5},"38":{"n":3.5,"e":3104,"c":5},"2":{"n":4.5,"e":5057,"c":5}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"147","On":"28","Oa":"5.27","Od":"0.94","Dp":"28","p":{"32":{"n":6},"34":{"n":5},"1":{"n":5}}},"c":16},{"i":159,"n":"Traor\u00e9","f":"Ismael","p":"D","r":16,"s":{"n":0,"Og":"2","Os":"147","On":"29","Oa":"5.07","Od":"0.96","Dp":"29","p":{"33":{"n":4.5},"34":{"n":5},"35":{"n":6},"36":{"n":4},"37":{"n":3},"38":{"n":5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"61","On":"13","Oa":"4.73","Od":"0.58","Mp":"13","p":{"32":{"n":5.5},"33":{"n":4.5},"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":4},"37":{"n":3.5},"38":{"n":4.5},"1":{"n":5,"s":1}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"134","On":"26","Oa":"5.17","Od":"0.99","Mp":"19","Dp":"7","p":{"32":{"n":7.5},"33":{"n":4},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":6}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":14,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Oao":"1","Os":"161","On":"31","Oa":"5.21","Od":"1.03","Mp":"4","Dp":"27","p":{"32":{"n":6},"33":{"n":5},"34":{"n":7,"g":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":3},"38":{"n":6},"1":{"n":5}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"164","On":"31","Oa":"5.29","Od":"0.99","Dp":"31","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":5.5,"s":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":2},"38":{"n":6},"1":{"n":6}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Dp":"1"},"c":16},{"i":283,"n":"Coulibaly","f":"Lassana","p":"M","r":6,"s":{"n":0},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":8,"s":{"n":0,"Os":"150","On":"29","Oa":"5.17","Od":"0.76","Mp":"5","Dp":"24","p":{"32":{"n":5,"s":1},"33":{"n":4.5}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":3,"s":{"n":0},"c":16},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"32","On":"7","Oa":"4.64","Od":"0.91","Mp":"1","Dp":"6","p":{"34":{"n":6},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":3},"38":{"n":4.5},"1":{"n":5,"s":1}}},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0},"c":16},{"i":510,"n":"Letellier","f":"Alexandre","p":"G","r":7,"s":{"n":0},"c":16},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":17,"s":{"g":"1","s":"7","n":"1","a":"7.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"4","Os":"177","On":"35","Oa":"5.06","Od":"0.97","Mp":"18","Ap":"17","p":{"32":{"n":6.5,"g":1},"33":{"n":5},"34":{"n":5.5},"35":{"n":6},"36":{"n":5.5},"37":{"n":3.5},"38":{"n":5},"1":{"n":7.5,"g":1}}},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":10,"s":{"n":0,"Og":"3","Os":"149","On":"30","Oa":"4.97","Od":"0.91","Mp":"24","Ap":"6","p":{"33":{"n":5.5,"s":1},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":4},"37":{"n":3},"38":{"n":5}}},"c":16},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":8,"s":{"n":0},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":9,"s":{"n":0,"Og":"2","Os":"83","On":"18","Oa":"4.64","Od":"0.76","Ap":"18","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"36":{"n":5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":20,"s":{"n":0,"Og":"11","Os":"149","On":"31","Oa":"4.81","Od":"1.15","Ap":"31","p":{"34":{"n":4},"35":{"n":6,"g":1},"36":{"n":4.5},"37":{"n":3},"38":{"n":4}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":20,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"204","On":"36","Oa":"5.68","Od":"0.99","Gp":"36","p":{"32":{"n":6},"33":{"n":7.5},"34":{"n":5},"36":{"n":5},"37":{"n":6},"38":{"n":5.5},"1":{"n":5}}},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":3,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"18","On":"4","Oa":"4.63","Od":"0.96","Dp":"4","p":{"37":{"n":3,"s":1},"1":{"n":5.5}}},"c":16},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":15,"s":{"n":0,"Og":"2","Os":"183","On":"37","Oa":"4.95","Od":"1.03","Mp":"15","Ap":"22","p":{"32":{"n":5.5,"e":3045,"c":67},"33":{"n":4.5,"e":3057,"c":67,"s":1},"34":{"n":2.5,"e":3066,"c":67},"35":{"n":5,"e":3079,"c":67},"36":{"n":5.5,"e":3089,"c":67},"37":{"n":5,"e":3093,"c":67},"38":{"n":5,"e":3109,"c":67}}},"c":16},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":18,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"5","Os":"138","On":"28","Oa":"4.95","Od":"0.81","Ap":"28","p":{"32":{"n":3.5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":4,"e":3066,"c":67,"s":1},"36":{"n":4,"e":3089,"c":67,"s":1},"37":{"n":5,"e":3093,"c":67,"s":1},"1":{"n":5}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"n":0},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":8,"s":{"n":0,"Os":"128","On":"26","Oa":"4.92","Od":"0.76","Mp":"26"},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"85","On":"18","Oa":"4.72","Od":"0.38","Mp":"18","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":6,"s":{"n":0,"Og":"2","Os":"85","On":"19","Oa":"4.5","Od":"0.71","Ap":"19","p":{"32":{"n":4.5}}},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":2944,"n":"Mouanga","f":"Kevin","p":"D","r":1,"s":{"n":0},"c":16},{"i":3528,"n":"Soula","f":"Mazire","p":"A","r":1,"s":{"n":0},"c":16},{"i":4037,"n":"Petkovic","f":"Danijel","p":"G","r":9,"s":{"n":0},"c":16},{"i":5018,"n":"Pereira Lage","f":"","p":"M","r":7,"s":{"g":"1","s":"8","n":"1","a":"8","Sg":"1","Ss":"8","Sn":"1","Sa":"8","Og":"1","Os":"8","On":"1","Oa":"8","Mp":"1","p":{"1":{"n":8,"g":1}}},"c":16},{"i":5456,"n":"Ould Khaled","f":"Zin\u00e9dine","p":"M","r":1,"s":{"n":0},"c":16},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":23,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"10","Os":"197","On":"36","Oa":"5.47","Od":"1.22","Mp":"8","Ap":"28","p":{"32":{"n":4,"s":1},"33":{"n":6.5,"g":1},"34":{"n":6.5,"g":1},"35":{"n":6},"36":{"n":5},"37":{"n":8,"g":2},"38":{"n":5.5},"1":{"n":7,"g":1}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"7","Os":"138","On":"27","Oa":"5.13","Od":"1.14","Mp":"9","Ap":"18","p":{"32":{"n":4},"33":{"n":5},"34":{"n":7,"g":1},"35":{"n":4,"s":1},"36":{"n":8,"g":2},"37":{"n":8,"g":1},"38":{"n":7.5,"g":2},"1":{"n":5,"s":1}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":9,"s":{"n":0,"Os":"63","On":"12","Oa":"5.29","Od":"0.43","Dp":"12","p":{"32":{"n":5}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"135","On":"25","Oa":"5.4","Od":"1","Mp":"1","Dp":"24","p":{"32":{"n":4},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":4.5,"g":1},"36":{"n":6.5},"37":{"n":6},"38":{"n":6},"1":{"n":6}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":7,"s":{"n":0,"Oao":"1","Os":"89","On":"18","Oa":"4.97","Od":"0.75","Mp":"1","Dp":"17","p":{"32":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":20,"s":{"n":0,"Og":"9","Os":"169","On":"31","Oa":"5.47","Od":"0.85","Mp":"25","Ap":"6","p":{"32":{"n":6,"g":1},"33":{"n":7.5,"g":1},"34":{"n":5.5},"35":{"n":5.5,"g":1},"36":{"n":6.5},"37":{"n":7},"38":{"n":5.5}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":10,"s":{"g":"1","s":"7","n":"1","a":"7.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"1","Oao":"1","Os":"155","On":"30","Oa":"5.17","Od":"0.81","Mp":"30","p":{"32":{"n":5},"33":{"n":4,"a":1,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":7.5,"g":1}}},"c":18},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":15,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"114","On":"21","Oa":"5.45","Od":"0.79","Dp":"21","p":{"32":{"n":6.5,"e":3044,"c":12},"33":{"n":5,"e":3061,"c":12},"34":{"n":7.5,"e":3066,"c":12},"35":{"n":4.5,"e":3074,"c":12},"36":{"n":6,"e":3086,"c":12},"37":{"n":6,"e":3094,"c":12},"1":{"n":6}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":24,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"7","Os":"202","On":"37","Oa":"5.46","Od":"1.1","Mp":"36","Ap":"1","p":{"32":{"n":5},"33":{"n":8},"34":{"n":4.5},"35":{"n":5},"36":{"n":7},"37":{"n":7},"38":{"n":5.5},"1":{"n":5.5}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":19,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"2","Os":"171","On":"32","Oa":"5.34","Od":"0.99","Dp":"32","p":{"32":{"n":4},"33":{"n":6},"34":{"n":4.5},"35":{"n":4.5},"1":{"n":7}}},"c":18},{"i":1161,"n":"Traor\u00e9","f":"Bertrand","p":"A","r":17,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"6","Os":"177","On":"34","Oa":"5.21","Od":"1.09","Mp":"22","Ap":"12","p":{"33":{"n":5.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":4.5},"37":{"n":5,"s":1},"38":{"n":5.5,"s":1},"1":{"n":7}}},"c":18},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":10,"s":{"n":0,"Os":"147","On":"26","Oa":"5.65","Od":"1.01","Gp":"26","p":{"32":{"n":6,"e":3048,"c":8}}},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"69","On":"14","Oa":"4.96","Od":"0.97","Mp":"6","Dp":"8","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":4.5},"1":{"n":5,"s":1}}},"c":18},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":27,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"215","On":"35","Oa":"6.16","Od":"0.9","Mp":"35","p":{"32":{"n":6.5,"e":3044,"c":12},"33":{"n":6,"e":3061,"c":12},"34":{"n":8,"e":3066,"c":12},"36":{"n":6,"e":3086,"c":12},"37":{"n":7.5,"e":3094,"c":12},"38":{"n":4.5,"e":3111,"c":12},"1":{"n":6}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":2,"s":{"n":0},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":24,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"193","On":"35","Oa":"5.53","Od":"1.01","Gp":"35","p":{"32":{"n":5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":5},"36":{"n":8},"37":{"n":6},"1":{"n":6}}},"c":18},{"i":1527,"n":"Pape Cheikh","f":"","p":"M","r":6,"s":{"n":0,"Os":"51","On":"11","Oa":"4.68","Od":"0.44","Mp":"11"},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":13,"s":{"n":0,"Oao":"1","Os":"178","On":"32","Oa":"5.56","Od":"0.81","Dp":"32","p":{"33":{"n":6},"34":{"n":5.5},"35":{"n":5},"36":{"n":5.5},"37":{"n":6},"38":{"n":6}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Dp":"1"},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":1,"s":{"n":0},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":29,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"16","Os":"183","On":"34","Oa":"5.4","Od":"1.17","Ap":"34","p":{"32":{"n":4.5},"33":{"n":4.5,"s":1},"34":{"n":6,"g":1,"s":1},"35":{"n":4.5,"s":1},"36":{"n":6,"g":1,"s":1},"37":{"n":7,"g":1},"38":{"n":4.5},"1":{"n":7,"g":1}}},"c":18},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":18},{"i":2952,"n":"Ndiaye","f":"Ousseynou","p":"M","r":1,"s":{"n":0},"c":18},{"i":3760,"n":"Fofana","f":"Boubacar","p":"A","r":1,"s":{"n":0},"c":18},{"i":3761,"n":"Jean Lucas","f":"","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":18},{"i":3799,"n":"Andersen","f":"Joachim","p":"D","r":24,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Dp":"1","p":{"1":{"n":6}}},"c":18},{"i":5459,"n":"Augarreau","f":"Cedric","p":"M","r":1,"s":{"n":0},"c":18},{"i":5460,"n":"Kitala","f":"Yann","p":"A","r":3,"s":{"n":0},"c":18},{"i":6011,"n":"Thomas","f":"Titouan","p":"M","r":1,"s":{"n":0},"c":18},{"i":6012,"n":"Deyonge","f":"Heritier","p":"D","r":2,"s":{"n":0},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":16,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"4","Os":"159","On":"29","Oa":"5.5","Od":"1.17","Mp":"29","p":{"1":{"n":6.5}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":16,"s":{"g":"1","s":"7","n":"1","a":"7.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"2","Os":"193","On":"36","Oa":"5.38","Od":"1.02","Dp":"36","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":6},"35":{"n":5.5},"36":{"n":5},"38":{"n":5.5},"1":{"n":7.5,"g":1}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":15,"s":{"n":0,"Og":"2","Os":"154","On":"29","Oa":"5.31","Od":"0.96","Mp":"28","Ap":"1","p":{"32":{"n":5.5},"33":{"n":4.5},"34":{"n":7},"35":{"n":5},"36":{"n":6},"37":{"n":5},"38":{"n":6}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":7,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"104","On":"20","Oa":"5.23","Od":"0.73","Mp":"20","p":{"32":{"n":5},"33":{"n":4},"38":{"n":5,"s":1},"1":{"n":5.5}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"1.25","Gp":"2"},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Oao":"1","Os":"185","On":"36","Oa":"5.15","Od":"0.84","Dp":"36","p":{"32":{"n":5.5},"33":{"n":4.5},"34":{"n":6},"35":{"n":6},"36":{"n":6,"g":1},"37":{"n":4},"38":{"n":5.5},"1":{"n":5}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":27,"s":{"n":0,"Os":"210","On":"35","Oa":"6.01","Od":"1.32","Gp":"35","p":{"32":{"n":7.5},"33":{"n":5},"34":{"n":6},"35":{"n":8},"36":{"n":5},"37":{"n":3.5},"38":{"n":7}}},"c":19},{"i":353,"n":"Lusamba","f":"Arnaud","p":"M","r":2,"s":{"n":0},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"88","On":"18","Oa":"4.92","Od":"0.87","Mp":"4","Dp":"14","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":5},"35":{"n":5},"1":{"n":5}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"107","On":"22","Oa":"4.89","Od":"0.69","Mp":"16","Ap":"6","p":{"32":{"n":4},"33":{"n":4},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"1":{"n":4.5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":7,"s":{"n":0,"Os":"65","On":"13","Oa":"5","Od":"0.96","Mp":"3","Dp":"10","p":{"37":{"n":4}}},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":2,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":1,"s":{"n":0},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":4,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"27","On":"6","Oa":"4.58","Od":"0.79","Ap":"6","p":{"35":{"n":4.5,"s":1},"36":{"n":3.5},"37":{"n":4.5,"s":1},"38":{"n":6,"g":1},"1":{"n":5}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"195","On":"37","Oa":"5.28","Od":"1.04","Mp":"36","Dp":"1","p":{"32":{"n":5.5,"s":1},"33":{"n":5},"34":{"n":7.5},"35":{"n":5.5},"36":{"n":5.5},"37":{"n":4},"38":{"n":6},"1":{"n":5}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"69","On":"15","Oa":"4.6","Od":"0.66","Ap":"15","p":{"1":{"n":5}}},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":9,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"100","On":"21","Oa":"4.79","Od":"0.8","Ap":"21","p":{"32":{"n":5,"s":1},"34":{"n":4,"s":1},"35":{"n":6.5,"g":1},"37":{"n":3.5},"38":{"n":5},"1":{"n":6}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":19,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"179","On":"33","Oa":"5.44","Od":"0.93","Dp":"33","p":{"32":{"n":5.5},"33":{"n":6},"34":{"n":6},"35":{"n":6},"36":{"n":5.5},"38":{"n":6.5},"1":{"n":6,"g":1}}},"c":19},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"60","On":"13","Oa":"4.65","Od":"0.79","Mp":"9","Ap":"4","p":{"33":{"n":4.5,"s":1},"34":{"n":6},"36":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":5,"s":{"n":0,"Os":"41","On":"9","Oa":"4.61","Od":"0.61","Mp":"5","Dp":"4","p":{"37":{"n":3}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":1,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Gp":"1","p":{"1":{"n":5.5}}},"c":19},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":8,"s":{"n":0,"Os":"21","On":"5","Oa":"4.3","Od":"0.24","Ap":"5","p":{"32":{"n":4.5}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":1,"s":{"n":0,"Os":"17","On":"4","Oa":"4.38","Od":"0.96","Dp":"4","p":{"36":{"n":4},"37":{"n":3}}},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":25,"s":{"n":0,"Og":"6","Os":"150","On":"28","Oa":"5.36","Od":"1.27","Mp":"12","Dp":"9","Ap":"7","p":{"32":{"n":4.5,"s":1},"33":{"n":4},"34":{"n":9,"g":3},"35":{"n":6},"36":{"n":3.5},"37":{"n":5},"38":{"n":5.5}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":10,"s":{"n":0,"Os":"100","On":"21","Oa":"4.79","Od":"0.93","Mp":"19","Ap":"2","p":{"32":{"n":5},"34":{"n":5.5,"s":1},"35":{"n":6},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":4.5}}},"c":19},{"i":2945,"n":"Hamache","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":19},{"i":2946,"n":"Sylvestre","f":"Eddy","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"27","On":"6","Oa":"4.58","Od":"0.53","Mp":"3","Ap":"3","p":{"1":{"n":4.5,"s":1}}},"c":19},{"i":2959,"n":"Kephren Thuram","f":"","p":"M","r":1,"s":{"n":0},"c":19},{"i":2988,"n":"Drame","f":"Jawad","p":"M","r":1,"s":{"n":0},"c":19},{"i":3502,"n":"Wade","f":"Paul","p":"M","r":1,"s":{"n":0},"c":19},{"i":3506,"n":"Pelican","f":"Maxime","p":"A","r":4,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Ap":"1"},"c":19},{"i":3527,"n":"Jaziri","f":"Assil","p":"M","r":1,"s":{"n":0},"c":19},{"i":3756,"n":"Pedro Brazao","f":"","p":"M","r":1,"s":{"n":0},"c":19},{"i":4141,"n":"Cisse","f":"Ibrahim","p":"D","r":3,"s":{"n":0},"c":19},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":2,"s":{"n":0},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":16,"s":{"n":0,"Og":"7","Os":"135","On":"26","Oa":"5.21","Od":"1.19","Mp":"13","Ap":"13","p":{"32":{"n":6},"33":{"n":4.5},"34":{"n":4,"s":1},"36":{"n":4.5}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":16,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"2","Os":"180","On":"34","Oa":"5.31","Od":"1.21","Dp":"34","p":{"32":{"n":6},"33":{"n":5},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":5},"37":{"n":6.5},"38":{"n":5.5},"1":{"n":6.5}}},"c":20},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":6,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"61","On":"12","Oa":"5.13","Od":"1.21","Dp":"12","p":{"36":{"n":6,"e":3087,"c":18},"37":{"n":6,"e":3095,"c":18},"38":{"n":5,"e":3109,"c":18},"1":{"n":7,"g":1}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":10,"s":{"n":0,"Og":"1","Oao":"1","Os":"124","On":"25","Oa":"4.96","Od":"0.9","Dp":"25","p":{"34":{"n":5},"35":{"n":6},"36":{"n":4.5},"38":{"n":5}}},"c":20},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":15,"s":{"n":0,"Og":"8","Os":"99","On":"19","Oa":"5.21","Od":"1.22","Mp":"9","Ap":"10","p":{"32":{"n":4.5},"33":{"n":6,"g":1},"34":{"n":7.5,"g":2},"35":{"n":5},"37":{"n":6,"g":1,"s":1},"38":{"n":5}}},"c":20},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":18,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"5","Os":"197","On":"36","Oa":"5.49","Od":"1.09","Mp":"22","Ap":"14","p":{"32":{"n":6,"e":3042,"c":16},"33":{"n":5.5,"e":3054,"c":16},"34":{"n":5.5,"e":3063,"c":16},"35":{"n":5.5,"e":3072,"c":16},"36":{"n":6,"e":3083,"c":16,"g":1},"37":{"n":5,"e":3094,"c":16},"38":{"n":5.5,"e":3103,"c":16},"1":{"n":3.5}}},"c":20},{"i":374,"n":"Salin","f":"Romain","p":"G","r":6,"s":{"s":"8","n":"1","a":"8","Ss":"8","Sn":"1","Sa":"8","Os":"8","On":"1","Oa":"8","Gp":"1","p":{"1":{"n":8}}},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"98","On":"20","Oa":"4.9","Od":"0.78","Mp":"2","Dp":"18","p":{"34":{"n":5,"s":1},"36":{"n":5}}},"c":20},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"138","On":"28","Oa":"4.95","Od":"0.85","Mp":"2","Dp":"26","p":{"32":{"n":5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":5,"e":3066,"c":67,"s":1},"35":{"n":5.5,"e":3079,"c":67},"36":{"n":6,"e":3089,"c":67},"37":{"n":4.5,"e":3093,"c":67},"38":{"n":2.5,"e":3109,"c":67},"1":{"n":5}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":10,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"120","On":"24","Oa":"5.02","Od":"0.64","Mp":"23","Dp":"1","p":{"34":{"n":5},"35":{"n":4.5},"36":{"n":4},"37":{"n":5.5,"s":1},"38":{"n":5,"s":1},"1":{"n":5.5}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":6,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":25,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"11","Os":"157","On":"29","Oa":"5.41","Od":"1.03","Mp":"5","Ap":"24","p":{"32":{"n":5},"33":{"n":6,"g":1},"35":{"n":7,"g":1},"36":{"n":6},"37":{"n":5},"38":{"n":8,"g":2},"1":{"n":4.5}}},"c":20},{"i":1182,"n":"Hamari Traor\u00e9","f":"","p":"D","r":12,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"169","On":"34","Oa":"4.97","Od":"0.89","Mp":"1","Dp":"33","p":{"32":{"n":5.5},"33":{"n":3.5},"34":{"n":4},"35":{"n":5},"37":{"n":6},"38":{"n":5.5},"1":{"n":6}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":17,"s":{"n":0,"Og":"6","Os":"167","On":"33","Oa":"5.08","Od":"1.12","Mp":"31","Ap":"2","p":{"32":{"n":4.5},"33":{"n":5.5,"s":1},"34":{"n":4},"35":{"n":5.5,"s":1},"36":{"n":5.5},"37":{"n":7,"g":1}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":15,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"172","On":"33","Oa":"5.21","Od":"1.02","Mp":"32","Ap":"1","p":{"32":{"n":4.5,"s":1},"33":{"n":6},"35":{"n":4},"36":{"n":6},"37":{"n":5.5},"38":{"n":5.5},"1":{"n":6}}},"c":20},{"i":1206,"n":"Tell","f":"Jordan","p":"A","r":6,"s":{"n":0},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":6,"s":{"n":0,"Os":"35","On":"6","Oa":"5.83","Od":"1.11","Gp":"6"},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":9,"s":{"n":0,"Os":"135","On":"28","Oa":"4.82","Od":"0.77","Mp":"26","Dp":"1","Ap":"1","p":{"32":{"n":5},"33":{"n":5,"s":1},"34":{"n":5.5},"36":{"n":5,"s":1},"38":{"n":4.5}}},"c":20},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":16,"s":{"n":0,"Os":"171","On":"32","Oa":"5.34","Od":"1.03","Gp":"32","p":{"32":{"n":6},"33":{"n":5},"34":{"n":5},"35":{"n":4.5},"36":{"n":8},"37":{"n":7},"38":{"n":7}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"39","On":"9","Oa":"4.33","Od":"0.91","Dp":"9","p":{"33":{"n":3},"35":{"n":5},"36":{"n":4.5},"1":{"n":5,"s":1}}},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":8,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"109","On":"22","Oa":"4.98","Od":"0.63","Mp":"5","Dp":"17","p":{"34":{"n":5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":6}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"82","On":"16","Oa":"5.13","Od":"0.65","Mp":"16","p":{"32":{"n":5.5},"33":{"n":4.5,"s":1},"34":{"n":6},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5.5}}},"c":20},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":22,"s":{"n":0,"Os":"212","On":"37","Oa":"5.74","Od":"1.07","Gp":"37","p":{"32":{"n":7.5,"e":3046,"c":68},"33":{"n":4.5,"e":3059,"c":68},"34":{"n":6,"e":3063,"c":68},"35":{"n":4,"e":3079,"c":68},"36":{"n":6,"e":3084,"c":68},"37":{"n":7.5,"e":3092,"c":68},"38":{"n":5.5,"e":3110,"c":68}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":3,"s":{"n":0},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":7,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"77","On":"16","Oa":"4.84","Od":"0.95","Ap":"16","p":{"1":{"n":4.5,"s":1}}},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":3,"s":{"n":0},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":3125,"n":"Doumbia","f":"Souleyman","p":"D","r":7,"s":{"n":0,"Os":"33","On":"7","Oa":"4.79","Od":"0.92","Dp":"7","p":{"32":{"n":5},"33":{"n":4},"37":{"n":6.5}}},"c":20},{"i":3186,"n":"Camavinga","f":"Eduardo","p":"M","r":9,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"46","On":"8","Oa":"5.75","Od":"0.61","Mp":"8","p":{"32":{"n":5,"s":1},"34":{"n":6},"35":{"n":5.5},"37":{"n":6},"38":{"n":6},"1":{"n":7}}},"c":20},{"i":3229,"n":"Matondo","f":"Isaac","p":"A","r":1,"s":{"n":0},"c":20},{"i":3358,"n":"Lauriente","f":"Armand","p":"M","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":20},{"i":3525,"n":"Boey","f":"Sacha","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5,"s":1}}},"c":20},{"i":6150,"n":"Damergy","f":"Elias","p":"G","r":1,"s":{"n":0},"c":20},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"157","On":"31","Oa":"5.06","Od":"1.15","Dp":"31","p":{"32":{"n":4.5,"e":3042,"c":5},"33":{"n":6,"e":3056,"c":5,"g":1},"34":{"n":6,"e":3065,"c":5},"36":{"n":5.5,"e":3084,"c":5},"37":{"n":3,"e":3095,"c":5},"38":{"n":4,"e":3104,"c":5},"1":{"n":5}}},"c":41},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":15,"s":{"g":"1","s":"6","n":"1","a":"6.5","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"6","Os":"176","On":"34","Oa":"5.18","Od":"1.01","Mp":"22","Ap":"12","p":{"32":{"n":5},"33":{"n":4.5,"s":1},"34":{"n":5},"35":{"n":5,"s":1},"36":{"n":4},"37":{"n":4},"38":{"n":5},"1":{"n":6.5,"g":1}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"85","On":"17","Oa":"5","Od":"0.45","Mp":"13","Ap":"4","p":{"37":{"n":5,"s":1}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1","p":{"38":{"n":6}}},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":10,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"141","On":"28","Oa":"5.05","Od":"0.99","Dp":"28","p":{"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":5},"37":{"n":4},"38":{"n":5.5,"s":1},"1":{"n":5.5}}},"c":41},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"129","On":"23","Oa":"5.63","Od":"1.04","Mp":"22","Ap":"1","p":{"33":{"n":4},"34":{"n":6},"35":{"n":4},"1":{"n":6}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1"},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":9,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"114","On":"22","Oa":"5.2","Od":"0.72","Mp":"19","Dp":"3","p":{"37":{"n":5},"38":{"n":6},"1":{"n":7}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":3,"s":{"n":0,"Os":"19","On":"4","Oa":"4.88","Od":"1.14","Mp":"2","Dp":"2","p":{"36":{"n":5},"38":{"n":6}}},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":5,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.41","Mp":"4"},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":7,"s":{"n":0},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":12,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"7","Os":"165","On":"34","Oa":"4.87","Od":"1.08","Mp":"2","Ap":"32","p":{"32":{"n":3.5},"33":{"n":4},"35":{"n":3.5},"36":{"n":4.5,"s":1},"37":{"n":5},"38":{"n":4.5,"s":1},"1":{"n":4,"s":1}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":9,"s":{"n":0,"Os":"137","On":"28","Oa":"4.91","Od":"0.81","Mp":"9","Dp":"19","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":5.5},"35":{"n":5},"37":{"n":3.5},"38":{"n":5.5}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":25,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"5","Os":"179","On":"34","Oa":"5.28","Od":"1.18","Mp":"23","Dp":"11","p":{"32":{"n":4.5},"34":{"n":5},"35":{"n":6,"g":1},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":5.5},"1":{"n":5}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"97","On":"20","Oa":"4.85","Od":"0.59","Mp":"16","Ap":"4","p":{"37":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"116","On":"23","Oa":"5.04","Od":"0.71","Mp":"13","Dp":"10","p":{"32":{"n":3.5},"33":{"n":4},"34":{"n":5.5},"35":{"n":5},"36":{"n":5},"38":{"n":6},"1":{"n":5}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Isma\u00ebl","p":"D","r":1,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.94","Mp":"2","Dp":"1"},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":3,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2"},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":14,"s":{"n":0,"Og":"9","Os":"165","On":"34","Oa":"4.85","Od":"0.93","Ap":"34","p":{"33":{"n":3.5},"34":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":5},"37":{"n":4.5,"s":1},"38":{"n":6,"g":1}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":17,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"207","On":"37","Oa":"5.61","Od":"0.95","Gp":"37","p":{"32":{"n":4},"33":{"n":5},"34":{"n":6},"35":{"n":5},"36":{"n":5.5},"37":{"n":5},"1":{"n":5.5}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":10,"s":{"n":0,"Og":"2","Os":"161","On":"31","Oa":"5.21","Od":"0.95","Mp":"31","p":{"33":{"n":4},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":4.5,"s":1},"38":{"n":4.5}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":16,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"9","Os":"128","On":"25","Oa":"5.14","Od":"1.14","Ap":"25","p":{"32":{"n":7.5,"g":2},"33":{"n":4,"s":1},"34":{"n":3.5},"35":{"n":4.5},"36":{"n":6,"g":1},"37":{"n":5},"1":{"n":4.5}}},"c":41},{"i":2726,"n":"Mitrovic","f":"Stefan","p":"D","r":10,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Oao":"1","Os":"171","On":"34","Oa":"5.03","Od":"0.74","Dp":"34","p":{"32":{"n":4.5},"33":{"n":3.5},"34":{"n":5.5},"35":{"n":5},"36":{"n":6},"37":{"n":4.5},"38":{"n":6},"1":{"n":5.5}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"94","On":"18","Oa":"5.25","Od":"0.99","Mp":"18","p":{"32":{"n":4.5},"35":{"n":5},"36":{"n":4.5,"s":1},"1":{"n":5}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":1,"s":{"n":0},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":3187,"n":"Valentin","f":"Leon","p":"D","r":1,"s":{"n":0},"c":41},{"i":3188,"n":"Karamoko","f":"Mamoudoou","p":"A","r":1,"s":{"n":0},"c":41},{"i":3775,"n":"Bellegarde","f":"Jean-Ricner","p":"M","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4,"s":1}}},"c":41},{"i":5457,"n":"Lebeau","f":"Adrien","p":"D","r":1,"s":{"n":0},"c":41},{"i":5458,"n":"Botella","f":"Ivann","p":"A","r":4,"s":{"n":0},"c":41},{"i":6002,"n":"Ounahi","f":"Azz-Eddine","p":"M","r":1,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"116","On":"25","Oa":"4.64","Od":"0.59","Mp":"7","Dp":"15","Ap":"3","p":{"33":{"n":5.5,"s":1},"35":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":9,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"142","On":"28","Oa":"5.09","Od":"0.81","Mp":"28","p":{"32":{"n":4.5},"33":{"n":4},"34":{"n":6.5},"35":{"n":4.5},"36":{"n":6.5},"37":{"n":4.5},"38":{"n":5},"1":{"n":5.5}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":7,"s":{"n":0},"c":42},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"77","On":"15","Oa":"5.17","Od":"0.6","Mp":"4","Dp":"11","p":{"38":{"n":5,"e":3108,"c":19,"s":1},"1":{"n":5}}},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"160","On":"33","Oa":"4.85","Od":"0.74","Dp":"33","p":{"32":{"n":4.5},"33":{"n":4.5},"34":{"n":5.5},"35":{"n":4.5},"36":{"n":5},"37":{"n":4},"38":{"n":6}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":20,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"210","On":"38","Oa":"5.53","Od":"1.04","Gp":"38","p":{"32":{"n":7},"33":{"n":4},"34":{"n":6},"35":{"n":5.5},"36":{"n":6},"37":{"n":3.5},"38":{"n":4.5},"1":{"n":6}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"171","On":"34","Oa":"5.03","Od":"0.84","Mp":"34","p":{"32":{"n":4.5,"s":1},"33":{"n":5},"35":{"n":6.5},"36":{"n":5.5},"37":{"n":4},"38":{"n":6},"1":{"n":4.5}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":17,"s":{"n":0,"Og":"7","Os":"126","On":"26","Oa":"4.87","Od":"1.18","Ap":"26","p":{"32":{"n":3.5},"34":{"n":4},"35":{"n":4,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4},"38":{"n":3.5}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":8,"s":{"n":0,"Oao":"1","Os":"103","On":"22","Oa":"4.7","Od":"0.93","Dp":"22","p":{"34":{"n":5},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":4},"38":{"n":5.5,"s":1}}},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0},"c":42},{"i":1436,"n":"Kakuta","f":"Ga\u00ebl","p":"M","r":15,"s":{"n":0,"Og":"1","Os":"52","On":"12","Oa":"4.38","Od":"0.87","Mp":"10","Ap":"2","p":{"34":{"n":4.5,"e":2311,"c":72,"s":1}}},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":1,"s":{"n":0},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Oao":"1","Os":"148","On":"31","Oa":"4.79","Od":"0.96","Dp":"31","p":{"32":{"n":5},"33":{"n":4},"38":{"n":5},"1":{"n":5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":4,"s":{"n":0,"Os":"17","On":"4","Oa":"4.38","Od":"0.22","Mp":"2","Ap":"2"},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":2,"s":{"n":0},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"29","On":"6","Oa":"4.92","Od":"0.89","Mp":"6","p":{"32":{"n":4.5,"s":1},"33":{"n":3.5},"1":{"n":5,"s":1}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":7,"s":{"n":0,"Os":"59","On":"12","Oa":"4.96","Od":"0.69","Mp":"10","Ap":"2"},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":8,"s":{"n":0,"Og":"2","Os":"115","On":"24","Oa":"4.79","Od":"1.11","Mp":"17","Ap":"7","p":{"32":{"n":5.5},"33":{"n":3.5},"34":{"n":3.5},"35":{"n":6.5,"g":1},"36":{"n":4}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"113","On":"23","Oa":"4.93","Od":"0.94","Mp":"4","Dp":"19","p":{"33":{"n":5,"s":1},"1":{"n":5}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":11,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"156","On":"33","Oa":"4.74","Od":"0.83","Mp":"14","Ap":"19","p":{"32":{"n":4,"s":1},"33":{"n":6.5,"g":1},"34":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":3.5},"38":{"n":5},"1":{"n":5.5}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":13,"s":{"s":"2","n":"1","a":"2","Ss":"2","Sn":"1","Sa":"2","Og":"4","Os":"171","On":"34","Oa":"5.04","Od":"1.08","Mp":"32","Ap":"2","p":{"32":{"n":5.5},"34":{"n":4.5},"35":{"n":4},"36":{"n":5.5},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1},"1":{"n":2}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":1,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2"},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2789,"n":"Timite","f":"Cheick","p":"M","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"127","On":"27","Oa":"4.72","Od":"0.58","Mp":"20","Ap":"7","p":{"32":{"n":5.5},"33":{"n":6,"g":1,"s":1},"34":{"n":4.5},"35":{"n":4},"36":{"n":4.5},"37":{"n":4,"s":1},"38":{"n":5,"s":1},"1":{"n":6}}},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"49","On":"11","Oa":"4.5","Od":"0.74","Mp":"2","Ap":"9"},"c":42},{"i":2832,"n":"Ghoddos","f":"Saman","p":"A","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"134","On":"27","Oa":"4.96","Od":"0.98","Mp":"11","Ap":"16","p":{"34":{"n":5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":5,"s":1},"37":{"n":4},"38":{"n":7,"g":1},"1":{"n":4.5,"s":1}}},"c":42},{"i":2937,"n":"Segarel","f":"Stanley","p":"A","r":4,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Ap":"2"},"c":42},{"i":2994,"n":"Mathurin Sakho","f":"","p":"D","r":1,"s":{"n":0},"c":42},{"i":3366,"n":"Guirassy","f":"Serhou","p":"A","r":14,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"68","On":"13","Oa":"5.23","Od":"1.1","Ap":"13","p":{"32":{"n":4.5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":3.5},"36":{"n":6},"37":{"n":4.5},"38":{"n":7,"g":1},"1":{"n":5}}},"c":42},{"i":3515,"n":"Gomis","f":"Iron","p":"M","r":1,"s":{"n":0},"c":42},{"i":3759,"n":"Lahne","f":"Jack","p":"A","r":3,"s":{"n":0},"c":42},{"i":3762,"n":"Eneme","f":"Ulrich","p":"M","r":3,"s":{"n":0},"c":42},{"i":3774,"n":"Mamilonne","f":"Yannick","p":"A","r":5,"s":{"n":0},"c":42},{"i":3803,"n":"Aleesami","f":"Haitam","p":"D","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":42},{"i":6004,"n":"Demirel","f":"Umit","p":"A","r":2,"s":{"n":0},"c":42},{"i":6005,"n":"Papeau","f":"Jayson","p":"M","r":2,"s":{"n":0},"c":42},{"i":6006,"n":"Bumbu","f":"Jonathan","p":"M","r":3,"s":{"n":0},"c":42},{"i":6007,"n":"Essele","f":"Boris","p":"G","r":3,"s":{"n":0},"c":42},{"i":6010,"n":"Tokpa","f":"Darell","p":"A","r":1,"s":{"n":0},"c":42},{"i":6020,"n":"Akolo","f":"Chadrac","p":"A","r":7,"s":{"g":"1","s":"6","n":"1","a":"6.5","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"6","On":"1","Oa":"6.5","Ap":"1","p":{"1":{"n":6.5,"g":1,"s":1}}},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":4,"s":{"n":0,"Os":"28","On":"6","Oa":"4.67","Od":"1.07","Mp":"6"},"c":67},{"i":310,"n":"Philippoteaux","f":"Romain","p":"M","r":7,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"3","On":"1","Oa":"3","Ap":"1","p":{"1":{"n":3}}},"c":67},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":13,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"3","Os":"167","On":"32","Oa":"5.23","Od":"0.92","Dp":"32","p":{"32":{"n":4.5,"e":3051,"c":41},"33":{"n":5,"e":3060,"c":41,"g":1},"34":{"n":5.5,"e":3062,"c":41},"1":{"n":3.5}}},"c":67},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"213","On":"38","Oa":"5.61","Od":"1.14","Gp":"38","p":{"32":{"n":5},"33":{"n":5},"34":{"n":3.5},"35":{"n":6.5},"36":{"n":7},"37":{"n":6.5},"38":{"n":5},"1":{"n":4.5}}},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":10,"s":{"n":0,"Og":"3","Os":"107","On":"21","Oa":"5.12","Od":"1.11","Dp":"21"},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":3,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"15","On":"3","Oa":"5","Mp":"3","p":{"35":{"n":5,"s":1},"37":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.83","Od":"0.62","Dp":"3"},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2653,"n":"Sainte Luce","f":"Theo","p":"M","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5,"s":1}}},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":1,"s":{"n":0},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"119","On":"25","Oa":"4.78","Od":"0.87","Dp":"25","p":{"34":{"n":4,"s":1},"35":{"n":5},"36":{"n":6},"37":{"n":4.5},"1":{"n":4.5}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":7,"s":{"n":0,"Og":"3","Os":"77","On":"16","Oa":"4.81","Od":"1.01","Ap":"16"},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"64","On":"13","Oa":"4.92","Od":"0.87","Dp":"13","p":{"32":{"n":4.5},"33":{"n":5.5},"34":{"n":2.5},"35":{"n":5.5},"36":{"n":6},"37":{"n":4.5},"38":{"n":5.5},"1":{"n":5}}},"c":67},{"i":2702,"n":"Bobichon","f":"Antonin","p":"M","r":15,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"7","Os":"159","On":"31","Oa":"5.15","Od":"1.21","Mp":"25","Ap":"6","p":{"32":{"n":3.5},"33":{"n":4},"34":{"n":3},"35":{"n":6},"36":{"n":5.5},"37":{"n":7},"38":{"n":7,"g":1},"1":{"n":3.5}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"152","On":"31","Oa":"4.92","Od":"0.64","Mp":"31","p":{"33":{"n":5,"s":1},"34":{"n":3},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5.5},"1":{"n":4}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":16,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"168","On":"33","Oa":"5.09","Od":"1.18","Dp":"33","p":{"35":{"n":6.5},"36":{"n":6},"37":{"n":5.5},"38":{"n":4.5},"1":{"n":4.5}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":7,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"90","On":"20","Oa":"4.53","Od":"0.8","Mp":"1","Dp":"19","p":{"32":{"n":4,"s":1},"34":{"n":3},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":4.5},"1":{"n":4}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":20,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"7","Os":"198","On":"38","Oa":"5.22","Od":"1.23","Mp":"9","Dp":"9","Ap":"20","p":{"32":{"n":4.5},"33":{"n":7,"g":1},"34":{"n":3},"35":{"n":6.5,"g":1},"36":{"n":7,"g":1},"37":{"n":7,"g":1},"38":{"n":6.5,"g":1},"1":{"n":3}}},"c":67},{"i":2957,"n":"Lionel Dias","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":67},{"i":3771,"n":"Denkey","f":"K\u00e9vin","p":"A","r":5,"s":{"n":0},"c":67},{"i":3784,"n":"Stojanovski","f":"Vlatko","p":"A","r":5,"s":{"n":0},"c":67},{"i":3797,"n":"Ferhat","f":"Zinedine","p":"M","r":5,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5}}},"c":67},{"i":5051,"n":"Sarr","f":"Sidy","p":"M","r":4,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"2","p":{"1":{"n":3.5,"e":5060,"c":93},"2":{"n":4.5,"e":5049,"c":93}}},"c":67},{"i":6022,"n":"Duljevic","f":"Haris","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":67},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Oao":"1","Os":"200","On":"38","Oa":"5.26","Od":"1.05","Dp":"38","p":{"32":{"n":5},"33":{"n":4},"34":{"n":5},"35":{"n":4},"36":{"n":3.5},"37":{"n":6.5},"38":{"n":6},"1":{"n":6}}},"c":68},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":8,"s":{"n":0,"Os":"57","On":"12","Oa":"4.79","Od":"0.48","Mp":"12","p":{"38":{"n":5,"s":1}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":15,"s":{"n":0,"Og":"7","Os":"171","On":"33","Oa":"5.18","Od":"0.93","Mp":"32","Ap":"1","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":5.5,"g":1},"35":{"n":3.5},"36":{"n":4},"37":{"n":5.5},"38":{"n":7,"g":1}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":7,"s":{"n":0,"Os":"67","On":"14","Oa":"4.79","Od":"0.41","Mp":"13","Ap":"1","p":{"34":{"n":5,"s":1},"36":{"n":5,"s":1}}},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":9,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"106","On":"21","Oa":"5.05","Od":"0.9","Mp":"21","p":{"32":{"n":4},"33":{"n":3.5},"34":{"n":4.5},"35":{"n":3.5},"37":{"n":5.5},"38":{"n":5},"1":{"n":7}}},"c":68},{"i":1459,"n":"Diouf","f":"Yehvann","p":"G","r":1,"s":{"n":0},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":9,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"107","On":"23","Oa":"4.67","Od":"0.96","Ap":"23","p":{"32":{"n":4,"s":1},"35":{"n":4,"s":1},"36":{"n":5,"s":1},"37":{"n":7,"g":1},"1":{"n":6,"g":1,"s":1}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"n":0,"Os":"17","On":"4","Oa":"4.38","Od":"1.02","Dp":"4"},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":3,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":16,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"195","On":"36","Oa":"5.43","Od":"0.83","Mp":"36","p":{"32":{"n":5.5},"33":{"n":4},"35":{"n":4},"36":{"n":4},"37":{"n":5.5},"38":{"n":6},"1":{"n":7}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"104","On":"20","Oa":"5.2","Od":"0.97","Dp":"20","p":{"1":{"n":5.5,"s":1}}},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":28,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"10","Os":"188","On":"37","Oa":"5.09","Od":"1.18","Mp":"32","Ap":"5","p":{"32":{"n":4.5},"33":{"n":4},"34":{"n":4},"35":{"n":3},"36":{"n":4},"37":{"n":5,"s":1},"38":{"n":6},"1":{"n":5.5}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":3,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"26","On":"5","Oa":"5.3","Od":"1.12","Dp":"5","p":{"34":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":6.5},"1":{"n":6.5}}},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":13,"s":{"n":0},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":12,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"142","On":"28","Oa":"5.07","Od":"0.76","Mp":"25","Ap":"3","p":{"32":{"n":5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":6,"g":1},"37":{"n":5.5},"38":{"n":6.5},"1":{"n":5.5}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":5,"s":{"n":0,"Os":"37","On":"8","Oa":"4.69","Od":"0.35","Mp":"7","Dp":"1"},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":8,"s":{"s":"7","n":"1","a":"7.5","Ss":"7","Sn":"1","Sa":"7.5","Os":"89","On":"17","Oa":"5.24","Od":"0.82","Mp":"8","Dp":"9","p":{"35":{"n":5.5,"s":1},"36":{"n":3.5},"37":{"n":5.5},"38":{"n":6},"1":{"n":7.5}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"197","On":"36","Oa":"5.49","Od":"0.74","Mp":"36","p":{"32":{"n":5.5},"33":{"n":4},"34":{"n":5},"35":{"n":4.5},"36":{"n":4.5},"37":{"n":6.5},"38":{"n":5.5},"1":{"n":6}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"162","On":"33","Oa":"4.92","Od":"0.64","Dp":"33","p":{"32":{"n":5.5},"33":{"n":3.5},"34":{"n":5},"35":{"n":4},"36":{"n":3.5},"37":{"n":5},"1":{"n":6}}},"c":68},{"i":2951,"n":"Dia","f":"Boulaye","p":"M","r":9,"s":{"g":"1","s":"7","n":"1","a":"7.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"3","Os":"73","On":"14","Oa":"5.21","Od":"1.1","Mp":"5","Ap":"9","p":{"32":{"n":5},"33":{"n":3.5},"1":{"n":7.5,"g":1}}},"c":68},{"i":3360,"n":"Sissoko","f":"Sambou","p":"D","r":6,"s":{"n":0},"c":68},{"i":3364,"n":"Zeneli","f":"Arb\u00ebr","p":"A","r":8,"s":{"n":0,"Og":"3","Os":"68","On":"14","Oa":"4.86","Od":"1.17","Mp":"8","Ap":"6","p":{"32":{"n":4.5,"s":1},"33":{"n":4,"s":1},"34":{"n":5},"35":{"n":3.5},"36":{"n":6,"g":1,"s":1},"38":{"n":5,"s":1}}},"c":68},{"i":3365,"n":"Moreto Cassam\u00e3","f":"","p":"M","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"34":{"n":4.5}}},"c":68},{"i":3522,"n":"Nkada","f":"Timothee","p":"A","r":1,"s":{"n":0},"c":68},{"i":3766,"n":"Munetsi","f":"Marshall","p":"M","r":5,"s":{"n":0},"c":68},{"i":3793,"n":"Shamal","f":"Steve","p":"M","r":1,"s":{"n":0},"c":68},{"i":3794,"n":"Berthier","f":"Gregory","p":"M","r":5,"s":{"n":0},"c":68},{"i":3807,"n":"Rajkovic","f":"Predrag","p":"G","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Gp":"1","p":{"1":{"n":6}}},"c":68},{"i":6162,"n":"Mbuku","f":"Nathanael","p":"A","r":1,"s":{"n":0},"c":68},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":2,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1","p":{"38":{"n":5,"e":3111,"c":20,"s":1}}},"c":75},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":10,"s":{"n":0,"Og":"2","Os":"173","On":"34","Oa":"5.1","Od":"0.85","Mp":"34","p":{"32":{"n":5,"e":3047,"c":15,"s":1},"33":{"n":5,"e":3060,"c":15,"s":1},"34":{"n":4.5,"e":3068,"c":15,"s":1},"35":{"n":4.5,"e":3076,"c":15,"s":1},"36":{"n":4.5,"e":3091,"c":15,"s":1},"38":{"n":6,"e":3106,"c":15}}},"c":75},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":75},{"i":564,"n":"Magnetti","f":"Hugo","p":"M","r":1,"s":{"n":0},"c":75},{"i":580,"n":"Cardona","f":"Irvin","p":"A","r":1,"s":{"n":0},"c":75},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":15,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"93","On":"20","Oa":"4.68","Od":"0.51","Mp":"18","Ap":"2","p":{"32":{"n":5,"e":3051,"c":41,"s":1},"33":{"n":4.5,"e":3060,"c":41},"34":{"n":4.5,"e":3062,"c":41},"1":{"n":5.5}}},"c":75},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":9,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":75},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":75},{"i":3779,"n":"N'Goma","f":"Ferris","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":75},{"i":3785,"n":"Larsonneur","f":"Gautier","p":"G","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"1":{"n":4}}},"c":75},{"i":3786,"n":"Kiki","f":"David Enangon","p":"D","r":2,"s":{"n":0},"c":75},{"i":3795,"n":"Belkebla","f":"Haris","p":"M","r":14,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"1":{"n":5.5}}},"c":75},{"i":3801,"n":"Chardonnet","f":"Brendan","p":"D","r":5,"s":{"n":0},"c":75},{"i":3802,"n":"Castelletto","f":"Jean-Charles","p":"D","r":14,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":75},{"i":3804,"n":"Fabri","f":"Julien","p":"G","r":1,"s":{"n":0},"c":75},{"i":3806,"n":"Mayi","f":"K\u00e9vin","p":"A","r":5,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":75},{"i":3808,"n":"L\u00e9on","f":"Donovan","p":"G","r":8,"s":{"n":0},"c":75},{"i":3810,"n":"Bain","f":"Denys","p":"D","r":9,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"1":{"n":5.5}}},"c":75},{"i":3811,"n":"Battocchio","f":"Cristian","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":75},{"i":3813,"n":"Autret","f":"Mathias","p":"M","r":15,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"7","On":"1","Oa":"7","Ap":"1","p":{"1":{"n":7,"g":1}}},"c":75},{"i":3817,"n":"Court","f":"Yoann","p":"M","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":75},{"i":3818,"n":"Charbonnier","f":"Ga\u00ebtan","p":"A","r":15,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4}}},"c":75},{"i":3819,"n":"Faussurier","f":"Julien","p":"D","r":7,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Dp":"1","p":{"1":{"n":6}}},"c":75},{"i":5515,"n":"Belaud","f":"Ga\u00ebtan","p":"D","r":14,"s":{"n":0},"c":75},{"i":6008,"n":"M'Bock","f":"Hianga'a","p":"M","r":1,"s":{"n":0},"c":75}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1217,"s":{"p":3},"nM":3915,"nMWC":"0.6347","pM":{"33":3058,"35":3078,"36":3083,"37":3098,"38":3110,"1":3927,"32":3044,"34":3068},"DMI":[]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":946,"s":{"p":0},"nM":3908,"nMWC":"0.2766","pM":{"32":3050,"35":3072,"36":3086,"37":3092,"38":3104,"33":3057,"34":3064,"1":3922},"DMI":[]},"4":{"n":"Saint-\u00c9tienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1169,"s":{"p":3},"nM":3916,"nMWC":"0.7302","pM":{"32":3050,"33":3059,"34":3071,"35":3075,"36":3091,"37":3099,"38":3103,"1":3923},"DMI":[]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":1011,"s":{"p":0},"nM":3917,"nMWC":"0.5799","pM":{"37":3098,"1":3923,"32":3043,"33":3052,"34":3065,"35":3077,"36":3085,"38":3105},"DMI":[3105]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1044,"s":{"p":0},"nM":3912,"nMWC":"0.3965","pM":{"32":3048,"33":3055,"37":3097,"38":3107,"35":3077,"34":3067,"36":3088,"1":3925},"DMI":[3067]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1117,"s":{"p":0},"nM":3912,"nMWC":"0.6035","pM":{"33":3053,"32":3045,"34":3067,"35":3080,"36":3087,"37":3101,"38":3106,"1":3924},"DMI":[3067]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":955,"s":{"p":1},"nM":3917,"nMWC":"0.4201","pM":{"34":3071,"38":3105,"37":3101,"32":3047,"33":3061,"35":3081,"36":3082,"1":3919},"DMI":[3105]},"11":{"n":"Metz","rn":"FC Metz","cn":"FC-Metz","a":"MTZ","l":1,"el":869,"s":{"p":1},"nM":3911,"nMWC":"0.3125","pM":{"1":3926},"DMI":[]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1214,"s":{"p":3},"nM":3907,"nMWC":"0.7639","pM":{"32":3044,"36":3086,"38":3111,"34":3066,"1":3925,"33":3061,"35":3074,"37":3094},"DMI":[]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":1006,"s":{"p":0},"nM":3911,"nMWC":"0.6875","pM":{"33":3058,"35":3075,"34":3070,"32":3046,"38":3108,"36":3089,"37":3096,"1":3918},"DMI":[]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1113,"s":{"p":0},"nM":3908,"nMWC":"0.7234","pM":{"34":3068,"36":3091,"37":3097,"38":3106,"32":3047,"33":3060,"35":3076,"1":3920},"DMI":[]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1082,"s":{"p":3},"nM":3909,"nMWC":"0.3039","pM":{"36":3083,"35":3072,"1":3922,"38":3103,"32":3042,"37":3094,"33":3054,"34":3063},"DMI":[3054]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1226,"s":{"p":3},"nM":3909,"nMWC":"0.6961","pM":{"34":3064,"32":3048,"38":3109,"36":3087,"37":3095,"35":3074,"1":3918,"33":3054},"DMI":[3054]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1117,"s":{"p":3},"nM":3913,"nMWC":"0.6008","pM":{"35":3078,"37":3099,"32":3049,"34":3069,"38":3108,"36":3088,"33":3056,"1":3921},"DMI":[]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1121,"s":{"p":3},"nM":3915,"nMWC":"0.3653","pM":{"32":3049,"34":3070,"37":3100,"38":3111,"36":3090,"33":3052,"35":3081,"1":3920},"DMI":[]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1039,"s":{"p":1},"nM":3914,"nMWC":"0.3951","pM":{"37":3100,"32":3051,"38":3107,"36":3085,"35":3080,"1":3926,"33":3060,"34":3062},"DMI":[]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":1010,"s":{"p":0},"nM":3907,"nMWC":"0.2361","pM":{"38":3102,"33":3055,"32":3043,"36":3082,"37":3096,"35":3076,"1":3921,"34":3062},"DMI":[]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":1046,"s":{"p":0},"nM":3913,"nMWC":"0.3992","pM":{"1":3927,"33":3057,"37":3093,"32":3045,"34":3066,"35":3079,"36":3089,"38":3109},"DMI":[]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1113,"s":{"p":3},"nM":3914,"nMWC":"0.6049","pM":{"38":3110,"37":3092,"33":3059,"32":3046,"35":3079,"1":3924,"36":3084,"34":3063},"DMI":[]},"75":{"n":"Brest","rn":"Stade Brestois 29","cn":"Stade-Brestois-29","a":"BRS","l":1,"el":996,"s":{"p":1},"nM":3916,"nMWC":"0.2698","pM":{"1":3919},"DMI":[]}},"op":{"31":{"n":"Man United","l":2,"el":1121},"33":{"n":"Watford","l":2,"el":975},"25":{"n":"Chelsea","l":2,"el":1092},"44":{"n":"Huddersfield","l":2,"el":758},"28":{"n":"West Ham","l":2,"el":1082},"22":{"n":"Everton","l":2,"el":1115},"39":{"n":"Arsenal","l":2,"el":1182},"71":{"n":"Fulham","l":2,"el":895},"26":{"n":"Crystal Palace","l":2,"el":1114},"23":{"n":"Burnley","l":2,"el":1046},"24":{"n":"Tottenham","l":2,"el":1097},"60":{"n":"Betis","l":3,"el":1050},"64":{"n":"Villarreal","l":3,"el":1082},"55":{"n":"Sevilla","l":3,"el":1080},"49":{"n":"Valencia","l":3,"el":1162},"56":{"n":"Espanyol","l":3,"el":1127},"66":{"n":"Eibar","l":3,"el":1055},"73":{"n":"Huesca","l":3,"el":1021},"62":{"n":"Real Madrid","l":3,"el":1105},"74":{"n":"Valladolid","l":3,"el":1019},"72":{"n":"Rayo","l":3,"el":924},"53":{"n":"Girona","l":3,"el":860},"47":{"n":"Legan\u00e9s","l":3,"el":1014},"54":{"n":"Atl\u00e9tico","l":3,"el":1204},"100":{"n":"Rodez","l":4,"el":1044},"107":{"n":"Paris FC","l":4,"el":978},"5":{"n":"Caen","l":4,"el":984},"14":{"n":"Guingamp","l":4,"el":949},"29":{"n":"Leicester","l":2,"el":1066},"51":{"n":"Celta","l":3,"el":1020},"52":{"n":"Real Sociedad","l":3,"el":1080},"59":{"n":"Barcelona","l":3,"el":1292},"57":{"n":"Bilbao","l":3,"el":1085},"94":{"n":"Grenoble","l":4,"el":964},"70":{"n":"Cardiff","l":2,"el":950},"40":{"n":"Man City","l":2,"el":1391},"21":{"n":"Liverpool","l":2,"el":1361},"58":{"n":"Getafe","l":3,"el":1116},"48":{"n":"Alav\u00e9s","l":3,"el":996},"6":{"n":"Lorient","l":4,"el":1029},"92":{"n":"Clermont","l":4,"el":1040},"93":{"n":"Ch\u00e2teauroux","l":4,"el":943}},"e":{"3058":{"d":33,"dB":"2019-04-21T19:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":13},"3078":{"d":35,"dB":"2019-05-04T15:00:00Z","t1s":1,"t2s":1,"t1":2,"t2":19},"3083":{"d":36,"dB":"2019-05-11T15:00:00Z","t1s":1,"t2s":2,"t1":16,"t2":2},"3098":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":2,"t2":7},"3110":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":3,"t2s":1,"t1":68,"t2":2},"3927":{"d":1,"dB":"2019-08-11T19:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":67},"3044":{"d":32,"dB":"2019-04-14T19:00:00Z","t1s":5,"t2s":1,"t1":12,"t2":2},"3068":{"d":34,"dB":"2019-04-30T17:00:00Z","t1s":3,"t2s":2,"t1":15,"t2":2},"3486":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":2,"t2s":1,"t1":31,"t2":33},"3524":{"d":36,"dB":"2019-04-28T15:30:00Z","t1s":1,"t2s":1,"t1":31,"t2":25},"3533":{"d":37,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":44,"t2":31},"3487":{"d":32,"dB":"2019-03-30T17:30:00Z","t1s":0,"t2s":2,"t1":28,"t2":22},"3490":{"d":33,"dB":"2019-04-07T13:05:00Z","t1s":1,"t2s":0,"t1":22,"t2":39},"3501":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":2,"t2s":0,"t1":71,"t2":22},"3512":{"d":35,"dB":"2019-04-21T12:30:00Z","t1s":4,"t2s":0,"t1":22,"t2":31},"3520":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":0,"t2s":0,"t1":26,"t2":22},"3532":{"d":37,"dB":"2019-05-03T19:00:00Z","t1s":2,"t2s":0,"t1":22,"t2":23},"3546":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":2,"t2s":2,"t1":24,"t2":22},"2273":{"d":31,"dB":"2019-04-07T18:45:00Z","t1s":2,"t2s":1,"t1":60,"t2":64},"2288":{"d":32,"dB":"2019-04-13T18:45:00Z","t1s":3,"t2s":2,"t1":55,"t2":60},"2294":{"d":33,"dB":"2019-04-21T18:45:00Z","t1s":1,"t2s":2,"t1":60,"t2":49},"2314":{"d":35,"dB":"2019-04-29T19:00:00Z","t1s":1,"t2s":1,"t1":60,"t2":56},"2330":{"d":36,"dB":"2019-05-05T12:00:00Z","t1s":1,"t2s":0,"t1":66,"t2":60},"2335":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":2,"t2s":1,"t1":60,"t2":73},"2350":{"d":38,"dB":"2019-05-19T10:00:00Z","t1s":0,"t2s":2,"t1":62,"t2":60},"2281":{"d":31,"dB":"2019-04-07T14:15:00Z","t1s":0,"t2s":2,"t1":74,"t2":55},"2311":{"d":34,"dB":"2019-04-25T17:30:00Z","t1s":5,"t2s":0,"t1":55,"t2":72},"2315":{"d":35,"dB":"2019-04-28T12:00:00Z","t1s":1,"t2s":0,"t1":53,"t2":55},"2331":{"d":36,"dB":"2019-05-03T19:00:00Z","t1s":0,"t2s":3,"t1":55,"t2":47},"2333":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":1,"t1":54,"t2":55},"5044":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":2,"t2s":1,"t1":100,"t2":107},"3050":{"d":32,"dB":"2019-04-14T15:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":3},"3072":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":16},"3086":{"d":36,"dB":"2019-05-12T15:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":3},"3092":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":68},"3104":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":5,"t2":3},"3057":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":2,"t2s":1,"t1":67,"t2":3},"3064":{"d":34,"dB":"2019-04-26T18:45:00Z","t1s":2,"t2s":3,"t1":3,"t2":18},"3922":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":3,"t2s":1,"t1":16,"t2":3},"3059":{"d":33,"dB":"2019-04-21T15:00:00Z","t1s":0,"t2s":2,"t1":68,"t2":4},"3071":{"d":34,"dB":"2019-04-28T15:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":10},"3075":{"d":35,"dB":"2019-05-05T15:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":4},"3091":{"d":36,"dB":"2019-05-10T18:45:00Z","t1s":0,"t2s":1,"t1":4,"t2":15},"3099":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":19},"3049":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":0,"t2s":0,"t1":20,"t2":19},"3070":{"d":34,"dB":"2019-05-01T17:00:00Z","t1s":2,"t2s":2,"t1":20,"t2":13},"3100":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":2,"t1":41,"t2":20},"3111":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":3,"t2s":1,"t1":20,"t2":12},"3051":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":3,"t2s":3,"t1":41,"t2":14},"3053":{"d":33,"dB":"2019-04-20T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":9},"3069":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":3,"t2s":0,"t1":19,"t2":14},"3073":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":5},"3090":{"d":36,"dB":"2019-05-12T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":14},"3093":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":2,"t1":14,"t2":67},"3102":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":42,"t2":14},"3048":{"d":32,"dB":"2019-04-12T18:45:00Z","t1s":2,"t2s":1,"t1":8,"t2":18},"3055":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":42},"3097":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":8},"3107":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":8,"t2":41},"3507":{"d":34,"dB":"2019-04-15T19:00:00Z","t1s":0,"t2s":1,"t1":33,"t2":39},"3509":{"d":35,"dB":"2019-04-21T15:00:00Z","t1s":2,"t2s":3,"t1":39,"t2":26},"3522":{"d":36,"dB":"2019-04-28T11:00:00Z","t1s":3,"t2s":0,"t1":29,"t2":39},"3539":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":1,"t2s":3,"t1":23,"t2":39},"3103":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":1,"t2s":1,"t1":16,"t2":4},"3923":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":4},"2274":{"d":31,"dB":"2019-04-07T16:30:00Z","t1s":3,"t2s":1,"t1":51,"t2":52},"2283":{"d":32,"dB":"2019-04-13T16:30:00Z","t1s":2,"t2s":0,"t1":54,"t2":51},"2295":{"d":33,"dB":"2019-04-20T11:00:00Z","t1s":2,"t2s":1,"t1":51,"t2":53},"2308":{"d":34,"dB":"2019-04-24T18:30:00Z","t1s":1,"t2s":1,"t1":56,"t2":51},"2318":{"d":35,"dB":"2019-04-27T16:30:00Z","t1s":0,"t2s":0,"t1":47,"t2":51},"2329":{"d":36,"dB":"2019-05-04T18:45:00Z","t1s":2,"t2s":0,"t1":51,"t2":59},"2332":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":3,"t2s":1,"t1":57,"t2":51},"2343":{"d":38,"dB":"2019-05-18T18:45:00Z","t1s":2,"t2s":2,"t1":51,"t2":72},"3046":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":68},"3108":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":0,"t1":19,"t2":13},"3045":{"d":32,"dB":"2019-04-13T15:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":67},"3066":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":67},"3079":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":3,"t1":68,"t2":67},"3089":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":0,"t1":67,"t2":13},"3109":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":3,"t1":67,"t2":18},"3043":{"d":32,"dB":"2019-04-12T17:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":42},"3052":{"d":33,"dB":"2019-04-19T17:00:00Z","t1s":3,"t2s":2,"t1":7,"t2":20},"3065":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":7},"3077":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":3,"t2s":0,"t1":8,"t2":7},"3085":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":41},"3105":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":7,"t2":10},"5061":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":3,"t1":14,"t2":94},"3481":{"d":32,"dB":"2019-03-31T13:05:00Z","t1s":1,"t2s":2,"t1":70,"t2":25},"3492":{"d":33,"dB":"2019-04-03T18:45:00Z","t1s":2,"t2s":0,"t1":40,"t2":70},"3499":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":2,"t2s":0,"t1":23,"t2":70},"3510":{"d":35,"dB":"2019-04-21T15:00:00Z","t1s":0,"t2s":2,"t1":70,"t2":21},"3521":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":1,"t2s":0,"t1":71,"t2":70},"3530":{"d":37,"dB":"2019-05-04T16:30:00Z","t1s":2,"t2s":3,"t1":70,"t2":26},"3544":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":0,"t2s":2,"t1":31,"t2":70},"3067":{"d":34,"dB":"2019-04-28T19:00:00Z","t1s":1,"t2s":2,"t1":9,"t2":8},"3088":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":8},"3925":{"d":1,"dB":"2019-08-11T13:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":8},"3080":{"d":35,"dB":"2019-05-03T18:45:00Z","t1s":1,"t2s":1,"t1":41,"t2":9},"3087":{"d":36,"dB":"2019-05-12T19:00:00Z","t1s":0,"t2s":3,"t1":9,"t2":18},"3101":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":5,"t1":10,"t2":9},"3106":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":1,"t2s":0,"t1":9,"t2":15},"3924":{"d":1,"dB":"2019-08-10T15:30:00Z","t1s":0,"t2s":2,"t1":9,"t2":68},"3042":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":16},"3056":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":5},"3084":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":3,"t2s":2,"t1":5,"t2":68},"3095":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":18,"t2":5},"2284":{"d":32,"dB":"2019-04-14T16:30:00Z","t1s":0,"t2s":1,"t1":53,"t2":64},"2301":{"d":33,"dB":"2019-04-21T16:30:00Z","t1s":2,"t2s":1,"t1":64,"t2":47},"2305":{"d":34,"dB":"2019-04-25T18:30:00Z","t1s":0,"t2s":1,"t1":52,"t2":64},"2321":{"d":35,"dB":"2019-04-28T16:30:00Z","t1s":1,"t2s":1,"t1":64,"t2":73},"2326":{"d":36,"dB":"2019-05-05T14:15:00Z","t1s":3,"t2s":2,"t1":62,"t2":64},"2339":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":0,"t1":64,"t2":66},"2345":{"d":38,"dB":"2019-05-18T14:15:00Z","t1s":2,"t2s":2,"t1":58,"t2":64},"3047":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":2,"t2s":1,"t1":15,"t2":10},"3061":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":0,"t2s":0,"t1":10,"t2":12},"3081":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":20},"3082":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":10},"3919":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":1,"t2s":1,"t1":75,"t2":10},"3926":{"d":1,"dB":"2019-08-11T15:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":11},"3074":{"d":35,"dB":"2019-05-05T19:00:00Z","t1s":2,"t2s":2,"t1":18,"t2":12},"3094":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":16},"3096":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":0,"t1":13,"t2":42},"3918":{"d":1,"dB":"2019-08-09T18:45:00Z","t1s":0,"t2s":3,"t1":13,"t2":18},"3060":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":1,"t2s":3,"t1":41,"t2":15},"3076":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":42},"2296":{"d":33,"dB":"2019-04-21T12:00:00Z","t1s":3,"t2s":0,"t1":58,"t2":55},"2347":{"d":38,"dB":"2019-05-18T14:15:00Z","t1s":2,"t2s":0,"t1":55,"t2":57},"3920":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":0,"t2s":1,"t1":15,"t2":20},"2289":{"d":32,"dB":"2019-04-14T14:15:00Z","t1s":1,"t2s":1,"t1":52,"t2":66},"2293":{"d":33,"dB":"2019-04-20T18:45:00Z","t1s":2,"t2s":1,"t1":59,"t2":52},"2320":{"d":35,"dB":"2019-04-28T14:15:00Z","t1s":2,"t2s":1,"t1":52,"t2":58},"2322":{"d":36,"dB":"2019-05-04T16:30:00Z","t1s":0,"t2s":1,"t1":48,"t2":52},"2341":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":3,"t2s":1,"t1":52,"t2":62},"2344":{"d":38,"dB":"2019-05-18T14:15:00Z","t1s":2,"t2s":0,"t1":56,"t2":52},"3054":{"d":33,"dB":"2019-04-19T18:45:00Z","t1s":2,"t2s":1,"t1":18,"t2":16},"3063":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":68},"5057":{"d":2,"dB":"2019-08-05T18:45:00Z","t1s":1,"t2s":2,"t1":5,"t2":6},"3921":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":42},"3062":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":41},"5060":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":0,"t1":92,"t2":93},"5049":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":0,"t1":93,"t2":100}},"Ne":{"3915":{"d":2,"dB":"2019-08-18T19:00:00Z","t1":20,"t2":2},"3908":{"d":2,"dB":"2019-08-17T18:00:00Z","t1":3,"t2":15},"3916":{"d":2,"dB":"2019-08-18T13:00:00Z","t1":4,"t2":75},"3917":{"d":2,"dB":"2019-08-17T18:00:00Z","t1":10,"t2":7},"3912":{"d":2,"dB":"2019-08-17T15:30:00Z","t1":8,"t2":9},"3911":{"d":2,"dB":"2019-08-17T18:00:00Z","t1":11,"t2":13},"3907":{"d":2,"dB":"2019-08-17T18:00:00Z","t1":42,"t2":12},"3909":{"d":2,"dB":"2019-08-16T18:45:00Z","t1":18,"t2":16},"3913":{"d":2,"dB":"2019-08-17T18:00:00Z","t1":67,"t2":19},"3914":{"d":2,"dB":"2019-08-18T15:00:00Z","t1":68,"t2":41}},"k":"4de2c8"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-1.20191212.json b/src/test/resources/__files/mpgstats.ligue-1.20191212.json deleted file mode 100644 index 94ca0b5..0000000 --- a/src/test/resources/__files/mpgstats.ligue-1.20191212.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-12-11T18:11:06Z","mL":{"i":1,"n":"Ligue 1","cN":"Ligue-1","u":"\/league\/Ligue-1","aS":{"cN":"Ligue-1-2019-2020","i":9,"n":"Ligue 1 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":17,"lD":17}},"lS":{"cN":"Ligue-1-2018-2019","i":6,"n":"Ligue 1 2018-2019","mD":38}},"mxD":17,"np":815,"le":{"1":"Ligue-1","4":"Ligue-2","3":"Liga"},"p":[{"i":1,"n":"Cavani","f":"Edinson","p":"A","r":17,"s":{"g":"2","s":"36","n":"8","a":"4.5","d":"0.5","Og":"10","Os":"97","On":"19","Oa":"5.13","Od":"1.46","Ap":"19","p":{"1":{"n":5.5,"g":1},"2":{"n":5,"g":1},"3":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":4,"s":1},"16":{"n":4,"s":1}}},"c":2},{"i":4,"n":"Thiago Silva","f":"","p":"D","r":25,"s":{"s":"81","n":"14","a":"5.79","d":"0.49","Ss":"12","Sn":"2","Sa":"6","Os":"158","On":"27","Oa":"5.85","Od":"0.65","Dp":"27","p":{"25":{"n":6.5},"1":{"n":6},"2":{"n":5},"3":{"n":6,"s":1},"4":{"n":6.5},"5":{"n":6},"6":{"n":6},"8":{"n":6.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":5},"13":{"n":5},"14":{"n":5.5},"16":{"n":6},"17":{"n":6}}},"c":2},{"i":7,"n":"Di Mar\u00eda","f":"\u00c1ngel","p":"M","r":37,"s":{"g":"6","s":"92","n":"15","a":"6.17","d":"1.09","Og":"14","Os":"174","On":"29","Oa":"6.02","Od":"1.19","Mp":"14","Ap":"15","p":{"25":{"n":4.5},"1":{"n":7,"g":1,"s":1},"2":{"n":4},"3":{"n":7},"4":{"n":6,"g":1},"5":{"n":6},"6":{"n":6.5},"7":{"n":4.5,"s":1},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":8,"g":2},"11":{"n":7.5},"12":{"n":6.5},"13":{"n":7,"g":1},"14":{"n":6.5,"g":1},"16":{"n":6}}},"c":2},{"i":12,"n":"Draxler","f":"Julian","p":"M","r":11,"s":{"s":"33","n":"6","a":"5.5","d":"0.91","Os":"116","On":"22","Oa":"5.3","Od":"1.29","Mp":"21","Ap":"1","p":{"25":{"n":4.5},"1":{"n":5},"2":{"n":4.5},"12":{"n":5,"s":1},"13":{"n":7},"14":{"n":6.5},"16":{"n":5}}},"c":2},{"i":17,"n":"Verratti","f":"Marco","p":"M","r":20,"s":{"s":"63","n":"10","a":"6.35","d":"0.84","Os":"141","On":"24","Oa":"5.88","Od":"1.17","Mp":"24","p":{"1":{"n":6.5},"2":{"n":5.5},"3":{"n":7},"4":{"n":7},"5":{"n":5.5},"6":{"n":5.5,"s":1},"8":{"n":7},"9":{"n":7},"11":{"n":7.5},"13":{"n":5}}},"c":2},{"i":28,"n":"Mbapp\u00e9","f":"Kylian","p":"A","r":44,"s":{"g":"7","s":"61","n":"10","a":"6.15","d":"1.1","Sg":"2","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Og":"27","Os":"173","On":"27","Oa":"6.43","Od":"1.18","Ap":"27","p":{"25":{"n":6,"g":1},"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5.5},"8":{"n":5.5,"s":1},"10":{"n":7,"g":1,"s":1},"11":{"n":8,"g":2},"12":{"n":6.5,"g":1},"14":{"n":4.5,"s":1},"16":{"n":6,"g":1},"17":{"n":7,"g":1}}},"c":2},{"i":44,"n":"Marquinhos","f":"","p":"D","r":25,"s":{"g":"1","s":"73","n":"13","a":"5.65","d":"0.97","Og":"3","Os":"168","On":"29","Oa":"5.81","Od":"0.99","Mp":"10","Dp":"19","p":{"25":{"n":7},"1":{"n":6.5},"2":{"n":5},"3":{"n":7.5,"g":1},"4":{"n":5},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":6},"10":{"n":4.5,"s":1},"11":{"n":6.5},"12":{"n":4.5},"13":{"n":4.5,"s":1},"14":{"n":5.5},"16":{"n":7}}},"c":2},{"i":46,"n":"Meunier","f":"Thomas","p":"D","r":11,"s":{"s":"48","n":"9","a":"5.33","d":"0.78","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Og":"1","Oao":"1","Os":"107","On":"20","Oa":"5.38","Od":"0.93","Mp":"3","Dp":"17","p":{"1":{"n":4.5,"s":1},"2":{"n":4},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":6},"10":{"n":6},"14":{"n":5},"16":{"n":6},"17":{"n":5}}},"c":2},{"i":49,"n":"Kurzawa","f":"Layvin","p":"D","r":9,"s":{"s":"41","n":"9","a":"4.61","d":"0.61","Os":"128","On":"27","Oa":"4.74","Od":"0.66","Mp":"6","Dp":"21","p":{"25":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":3.5},"8":{"n":5},"10":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"16":{"n":6}}},"c":2},{"i":57,"n":"M\u00e9nez","f":"J\u00e9r\u00e9my","p":"A","r":11,"s":{"s":"35","n":"7","a":"5","d":"0.96","Ss":"35","Sn":"7","Sa":"5","Sd":"0.96","Os":"35","On":"7","Oa":"5","Od":"0.96","Ap":"7","p":{"11":{"n":5.5},"12":{"n":5},"13":{"n":5},"14":{"n":6},"15":{"n":6},"16":{"n":4.5},"17":{"n":3}}},"c":2},{"i":152,"n":"Trapp","f":"Kevin","p":"G","r":12,"s":{"n":0},"c":2},{"i":180,"n":"Kimpembe","f":"Presnel","p":"D","r":10,"s":{"s":"49","n":"9","a":"5.5","d":"0.75","Ss":"5","Sn":"1","Sa":"5","Oao":"1","Os":"117","On":"23","Oa":"5.11","Od":"1.07","Dp":"23","p":{"25":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"9":{"n":7},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":4.5},"14":{"n":5.5},"17":{"n":5}}},"c":2},{"i":432,"n":"Diallo","f":"Abdou","p":"D","r":12,"s":{"s":"70","n":"13","a":"5.38","d":"0.98","Ss":"12","Sn":"2","Sa":"6","Sd":"0.5","Os":"70","On":"13","Oa":"5.38","Od":"0.98","Dp":"13","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":5.5},"5":{"n":7.5},"6":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":5},"12":{"n":4},"13":{"n":6},"16":{"n":6.5},"17":{"n":5.5,"s":1}}},"c":2},{"i":458,"n":"Nkunku","f":"Christopher","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"43","On":"8","Oa":"5.44","Od":"0.88","Mp":"5","Ap":"3"},"c":2},{"i":468,"n":"Mara","f":"Mohamed","p":"A","r":5,"s":{"s":"38","n":"8","a":"4.75","d":"0.25","Os":"38","On":"8","Oa":"4.75","Od":"0.25","Mp":"1","Ap":"7","p":{"1":{"n":4.5,"e":5067,"c":6,"s":1},"4":{"n":5,"e":5033,"c":6,"s":1},"5":{"n":5,"e":5023,"c":6,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":2},{"i":494,"n":"Georgen","f":"Alec","p":"D","r":1,"s":{"n":0},"c":2},{"i":520,"n":"Descamps","f":"Remy","p":"G","r":1,"s":{"n":0},"c":2},{"i":647,"n":"Herrera","f":"Ander","p":"M","r":9,"s":{"s":"34","n":"6","a":"5.75","d":"0.63","Og":"1","Os":"110","On":"19","Oa":"5.82","Od":"0.69","Mp":"18","Dp":"1","p":{"5":{"n":5.5,"s":1},"6":{"n":5.5},"7":{"n":5},"9":{"n":7},"10":{"n":5.5},"11":{"n":6}}},"c":2},{"i":657,"n":"Gueye","f":"Idrissa","p":"M","r":26,"s":{"g":"1","s":"69","n":"11","a":"6.32","d":"0.96","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"1","Os":"173","On":"29","Oa":"5.98","Od":"0.99","Mp":"29","p":{"3":{"n":7},"4":{"n":5.5},"5":{"n":6},"6":{"n":6.5},"8":{"n":5.5},"9":{"n":8,"g":1},"12":{"n":5.5},"13":{"n":7},"14":{"n":7},"16":{"n":7},"17":{"n":4.5}}},"c":2},{"i":1155,"n":"Neymar","f":"","p":"A","r":36,"s":{"g":"6","s":"49","n":"8","a":"6.19","d":"1.34","Sg":"2","Ss":"14","Sn":"2","Sa":"7","Sd":"1","Og":"10","Os":"79","On":"13","Oa":"6.08","Od":"1.6","Mp":"4","Ap":"9","p":{"5":{"n":6,"g":1},"6":{"n":7.5,"g":1},"7":{"n":3.5},"8":{"n":6.5,"g":1},"9":{"n":7,"g":1},"14":{"n":5},"16":{"n":6,"g":1},"17":{"n":8,"g":1}}},"c":2},{"i":1157,"n":"Dani Alves","f":"","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"101","On":"19","Oa":"5.34","Od":"1.33","Mp":"13","Dp":"4","Ap":"2","p":{"25":{"n":6.5}}},"c":2},{"i":1322,"n":"Choupo-Moting","f":"Eric Maxim","p":"M","r":9,"s":{"g":"3","s":"50","n":"9","a":"5.56","d":"1.04","Ss":"4","Sn":"1","Sa":"4.5","Og":"5","Os":"115","On":"23","Oa":"5","Od":"0.91","Mp":"1","Ap":"22","p":{"3":{"n":8,"g":2,"s":1},"4":{"n":6.5,"g":1},"5":{"n":4.5},"6":{"n":5},"7":{"n":5},"9":{"n":5.5,"s":1},"10":{"n":5.5},"13":{"n":5.5,"s":1},"17":{"n":4.5,"s":1}}},"c":2},{"i":1325,"n":"Jes\u00e9","f":"","p":"A","r":2,"s":{"s":"4","n":"1","a":"4.5","Og":"2","Os":"67","On":"15","Oa":"4.5","Od":"0.89","Ap":"15","p":{"4":{"n":4.5,"s":1}}},"c":2},{"i":1369,"n":"Bulka","f":"Marcin","p":"G","r":3,"s":{"s":"6","n":"1","a":"6","Os":"6","On":"1","Oa":"6","Gp":"1","p":{"4":{"n":6}}},"c":2},{"i":1605,"n":"Navas","f":"Keylor","p":"G","r":22,"s":{"s":"61","n":"11","a":"5.55","d":"1.03","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Os":"105","On":"19","Oa":"5.53","Od":"0.9","Gp":"19","p":{"5":{"n":6},"6":{"n":6},"7":{"n":4},"8":{"n":5.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":4},"14":{"n":7.5},"16":{"n":6.5},"17":{"n":5}}},"c":2},{"i":1609,"n":"Sarabia","f":"Pablo","p":"M","r":12,"s":{"g":"1","s":"66","n":"13","a":"5.12","d":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Og":"7","Os":"157","On":"30","Oa":"5.25","Od":"1.36","Mp":"21","Ap":"9","p":{"1":{"n":4},"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":5},"5":{"n":4.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":8,"g":1},"10":{"n":5},"11":{"n":4.5,"s":1},"13":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":5.5}}},"c":2},{"i":1626,"n":"Rico","f":"Sergio","p":"G","r":7,"s":{"s":"5","n":"1","a":"5.5","Os":"124","On":"23","Oa":"5.39","Od":"1.3","Gp":"23","p":{"13":{"n":5.5}}},"c":2},{"i":2079,"n":"Bernede","f":"Antoine","p":"M","r":5,"s":{"n":0},"c":2},{"i":2144,"n":"Diaby","f":"Mohamed Lamine","p":"A","r":8,"s":{"s":"13","n":"3","a":"4.33","d":"0.62","Os":"30","On":"7","Oa":"4.29","Od":"0.45","Ap":"7","p":{"14":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":3.5}}},"c":2},{"i":2237,"n":"Steven Sila","f":"Richard","p":"A","r":1,"s":{"s":"13","n":"3","a":"4.33","d":"0.24","Os":"13","On":"3","Oa":"4.33","Od":"0.24","Ap":"3","p":{"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"10":{"n":4,"s":1}}},"c":2},{"i":2267,"n":"Lass Diarra","f":"","p":"M","r":3,"s":{"n":0},"c":2},{"i":2311,"n":"Cibois","f":"Sebastien","p":"G","r":2,"s":{"n":0},"c":2},{"i":2327,"n":"Rimane","f":"Kevin","p":"D","r":1,"s":{"n":0},"c":2},{"i":2626,"n":"Fressange","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":2},{"i":2627,"n":"Dagba","f":"Colin","p":"D","r":8,"s":{"s":"41","n":"8","a":"5.19","d":"0.56","Os":"103","On":"21","Oa":"4.93","Od":"0.73","Mp":"2","Dp":"19","p":{"25":{"n":4,"s":1},"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":5.5},"5":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5,"s":1}}},"c":2},{"i":2668,"n":"Diaby","f":"Moussa","p":"A","r":9,"s":{"n":0,"Os":"60","On":"13","Oa":"4.65","Od":"0.53","Mp":"4","Ap":"9","p":{"25":{"n":5}}},"c":2},{"i":2670,"n":"Mbe Soh","f":"Lo\u00efc","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"7":{"n":4.5}}},"c":2},{"i":2789,"n":"Timit\u00e9","f":"Cheick","p":"M","r":10,"s":{"s":"53","n":"11","a":"4.82","d":"0.72","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Og":"1","Os":"152","On":"32","Oa":"4.77","Od":"0.61","Mp":"17","Dp":"1","Ap":"14","p":{"1":{"n":6,"e":3921,"c":42},"3":{"n":5,"e":3898,"c":42},"4":{"n":5,"e":3897,"c":42,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":4},"11":{"n":4.5},"12":{"n":5},"13":{"n":6},"16":{"n":4.5,"s":1},"17":{"n":3.5}}},"c":2},{"i":2821,"n":"Kehrer","f":"Thilo","p":"D","r":6,"s":{"s":"5","n":"1","a":"5.5","Og":"1","Os":"79","On":"15","Oa":"5.3","Od":"0.85","Dp":"15","p":{"25":{"n":5},"1":{"n":5.5}}},"c":2},{"i":2864,"n":"Bernat","f":"Juan","p":"D","r":14,"s":{"s":"63","n":"12","a":"5.25","d":"0.69","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"150","On":"29","Oa":"5.19","Od":"0.94","Mp":"9","Dp":"20","p":{"25":{"n":4.5},"1":{"n":6},"2":{"n":4},"3":{"n":6.5},"4":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5.5},"11":{"n":5},"12":{"n":4.5},"14":{"n":5},"17":{"n":5.5}}},"c":2},{"i":3367,"n":"Paredes","f":"Leandro","p":"M","r":8,"s":{"ao":"1","s":"48","n":"9","a":"5.39","d":"1.07","Sao":"1","Ss":"5","Sn":"1","Sa":"5","Oao":"1","Os":"133","On":"24","Oa":"5.54","Od":"1","Mp":"24","p":{"25":{"n":6},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":5.5,"s":1},"7":{"n":4.5},"9":{"n":8},"10":{"n":6},"11":{"n":5.5,"s":1},"12":{"n":4},"17":{"n":5,"a":1}}},"c":2},{"i":3770,"n":"Hemans Arday","f":"Isaac","p":"D","r":1,"s":{"n":0},"c":2},{"i":4029,"n":"Kouassi","f":"Nianzou","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"17":{"n":5,"s":1}}},"c":2},{"i":4030,"n":"Aouchiche","f":"Adil","p":"M","r":7,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"4":{"n":5.5}}},"c":2},{"i":4032,"n":"Yapi","f":"Romaric","p":"D","r":1,"s":{"n":0},"c":2},{"i":4033,"n":"Innocent","f":"Garissone","p":"G","r":1,"s":{"n":0},"c":2},{"i":4035,"n":"Bakker","f":"Mitchel","p":"D","r":5,"s":{"n":0},"c":2},{"i":4603,"n":"Icardi","f":"Mauro","p":"A","r":37,"s":{"g":"7","s":"53","n":"9","a":"5.94","d":"1.17","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Og":"7","Os":"53","On":"9","Oa":"5.94","Od":"1.17","Ap":"9","p":{"5":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":7,"g":1},"11":{"n":7.5,"g":2},"12":{"n":3.5},"13":{"n":6,"g":1,"s":1},"14":{"n":6.5,"g":1},"16":{"n":6,"s":1},"17":{"n":6.5,"g":1}}},"c":2},{"i":5205,"n":"Saad","f":"Felipe","p":"D","r":10,"s":{"s":"48","n":"10","a":"4.85","d":"1.03","Ss":"20","Sn":"4","Sa":"5.13","Sd":"0.89","Os":"48","On":"10","Oa":"4.85","Od":"1.03","Dp":"10","p":{"3":{"n":4.5,"s":1},"5":{"n":4.5},"7":{"n":6},"8":{"n":3},"9":{"n":4},"10":{"n":6},"14":{"n":6.5},"15":{"n":5},"16":{"n":5},"17":{"n":4}}},"c":2},{"i":6016,"n":"Essende","f":"Samuel","p":"A","r":1,"s":{"n":0},"c":2},{"i":6196,"n":"Kouassi","f":"Tanguy","p":"D","r":1,"s":{"n":0},"c":2},{"i":6228,"n":"Boahene","f":"Ernest","p":"D","r":1,"s":{"n":0},"c":2},{"i":6229,"n":"Kikonda","f":"Mario Jason","p":"M","r":10,"s":{"s":"40","n":"8","a":"5.06","d":"1.13","Ss":"21","Sn":"4","Sa":"5.25","Sd":"1.35","Os":"40","On":"8","Oa":"5.06","Od":"1.13","Mp":"8","p":{"7":{"n":5.5},"8":{"n":3.5},"9":{"n":5},"11":{"n":5.5,"s":1},"14":{"n":6},"15":{"n":6.5},"16":{"n":5.5},"17":{"n":3}}},"c":2},{"i":6261,"n":"Muinga","f":"Arnaud Kalimuendo","p":"A","r":1,"s":{"n":0},"c":2},{"i":36,"n":"Plasil","f":"Jaroslav","p":"M","r":8,"s":{"n":0,"Os":"61","On":"12","Oa":"5.08","Od":"0.28","Mp":"12"},"c":3},{"i":38,"n":"Costil","f":"Benoit","p":"G","r":20,"s":{"s":"91","n":"17","a":"5.38","d":"0.87","Ss":"91","Sn":"17","Sa":"5.38","Sd":"0.87","Os":"207","On":"37","Oa":"5.61","Od":"0.88","Gp":"37","p":{"22":{"n":5.5},"1":{"n":4},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":6},"6":{"n":4},"7":{"n":5.5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":4},"12":{"n":6},"13":{"n":6},"14":{"n":5.5},"15":{"n":6.5},"16":{"n":6},"17":{"n":4}}},"c":3},{"i":56,"n":"Briand","f":"Jimmy","p":"A","r":11,"s":{"g":"4","s":"69","n":"14","a":"4.93","d":"1.05","Ss":"4","Sn":"1","Sa":"4.5","Og":"7","Os":"164","On":"34","Oa":"4.84","Od":"1","Mp":"2","Ap":"32","p":{"22":{"n":4,"s":1},"1":{"n":4},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6.5,"g":1},"5":{"n":6,"g":1},"6":{"n":6,"g":1},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":5},"10":{"n":4},"11":{"n":3},"12":{"n":6},"13":{"n":6,"g":1},"17":{"n":4.5,"s":1}}},"c":3},{"i":86,"n":"Kamano","f":"Fran\u00e7ois","p":"A","r":8,"s":{"g":"1","s":"44","n":"9","a":"4.94","d":"1.19","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"143","On":"30","Oa":"4.78","Od":"0.95","Mp":"12","Ap":"18","p":{"22":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":3.5},"12":{"n":8,"g":1},"13":{"n":4},"17":{"n":4.5,"s":1}}},"c":3},{"i":103,"n":"Sankhar\u00e9","f":"Younousse","p":"M","r":6,"s":{"n":0,"Og":"1","Os":"39","On":"8","Oa":"4.88","Od":"0.74","Mp":"6","Ap":"2","p":{"22":{"n":5,"s":1}}},"c":3},{"i":105,"n":"Sabaly","f":"Youssouf","p":"D","r":11,"s":{"s":"21","n":"4","a":"5.38","d":"1.29","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.47","Os":"93","On":"19","Oa":"4.89","Od":"0.88","Mp":"9","Dp":"10","p":{"2":{"n":5},"15":{"n":5,"s":1},"16":{"n":7.5},"17":{"n":4}}},"c":3},{"i":126,"n":"Vada","f":"Valent\u00edn","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"62","On":"12","Oa":"5.21","Od":"0.75","Mp":"12"},"c":3},{"i":139,"n":"Baysse","f":"Paul","p":"D","r":7,"s":{"n":0,"Oao":"1","Os":"27","On":"6","Oa":"4.58","Od":"0.67","Dp":"6"},"c":3},{"i":168,"n":"Mexer","f":"","p":"D","r":9,"s":{"s":"63","n":"13","a":"4.88","d":"0.68","Os":"152","On":"29","Oa":"5.24","Od":"0.82","Dp":"29","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"6":{"n":5.5,"s":1},"7":{"n":5},"8":{"n":5},"9":{"n":5.5},"10":{"n":4},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4},"15":{"n":5}}},"c":3},{"i":189,"n":"Jovanovic","f":"Vukasin","p":"D","r":9,"s":{"s":"40","n":"8","a":"5.06","d":"0.85","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.03","Os":"113","On":"22","Oa":"5.14","Od":"0.8","Dp":"22","p":{"22":{"n":4.5},"5":{"n":6},"6":{"n":4.5},"10":{"n":6,"s":1},"12":{"n":5,"s":1},"13":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":6},"17":{"n":3.5}}},"c":3},{"i":208,"n":"A\u00eft Bennasser","f":"Youssef","p":"M","r":11,"s":{"s":"41","n":"8","a":"5.19","d":"1.03","Os":"124","On":"23","Oa":"5.39","Od":"1.02","Mp":"23","p":{"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5.5},"11":{"n":3.5},"13":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":7.5}}},"c":3},{"i":229,"n":"Lewczuk","f":"Igor","p":"D","r":5,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2"},"c":3},{"i":268,"n":"de Preville","f":"Nicolas","p":"A","r":19,"s":{"g":"5","s":"79","n":"14","a":"5.64","d":"1.32","Sg":"2","Ss":"37","Sn":"7","Sa":"5.36","Sd":"1.48","Og":"7","Os":"142","On":"27","Oa":"5.28","Od":"1.2","Mp":"11","Ap":"16","p":{"1":{"n":6,"g":1},"2":{"n":5},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":6,"g":1},"8":{"n":4.5,"s":1},"9":{"n":8,"g":1},"11":{"n":3.5},"12":{"n":5},"13":{"n":5},"14":{"n":8,"g":1},"15":{"n":5},"16":{"n":7,"g":1},"17":{"n":4}}},"c":3},{"i":305,"n":"Gajic","f":"Milan","p":"D","r":4,"s":{"n":0},"c":3},{"i":362,"n":"Poundj\u00e9","f":"Maxime","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Os":"90","On":"18","Oa":"5.03","Od":"0.61","Mp":"2","Dp":"16","p":{"22":{"n":5},"14":{"n":5,"s":1}}},"c":3},{"i":445,"n":"Kwateng","f":"Enock","p":"D","r":8,"s":{"s":"42","n":"8","a":"5.25","d":"0.83","Os":"116","On":"23","Oa":"5.07","Od":"0.65","Mp":"9","Dp":"14","p":{"3":{"n":6.5},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":4},"14":{"n":5},"16":{"n":5,"s":1}}},"c":3},{"i":512,"n":"Mancini","f":"Daniel","p":"M","r":6,"s":{"n":0},"c":3},{"i":621,"n":"Koscielny","f":"Laurent","p":"D","r":12,"s":{"s":"78","n":"15","a":"5.23","d":"0.89","Ss":"15","Sn":"3","Sa":"5","Sd":"1.08","Og":"3","Os":"166","On":"31","Oa":"5.35","Od":"1.02","Dp":"31","p":{"2":{"n":5},"3":{"n":5.5},"4":{"n":5},"5":{"n":6.5},"6":{"n":5},"7":{"n":6},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":3},"12":{"n":6},"13":{"n":5.5},"15":{"n":5.5},"16":{"n":6},"17":{"n":3.5}}},"c":3},{"i":1075,"n":"Maja","f":"Josh","p":"A","r":17,"s":{"g":"5","s":"77","n":"15","a":"5.17","d":"1.26","Sg":"4","Ss":"43","Sn":"8","Sa":"5.44","Sd":"1.42","Og":"6","Os":"109","On":"22","Oa":"4.98","Od":"1.13","Ap":"22","p":{"1":{"n":4,"s":1},"2":{"n":7,"g":1,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":6,"g":1},"16":{"n":9,"g":3},"17":{"n":5}}},"c":3},{"i":1168,"n":"Jonathan Caf\u00fa","f":"","p":"A","r":9,"s":{"s":"10","n":"2","a":"5","d":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"14":{"n":4.5},"16":{"n":5.5}}},"c":3},{"i":1175,"n":"Ot\u00e1vio","f":"","p":"M","r":20,"s":{"g":"2","s":"87","n":"15","a":"5.83","d":"1.35","Sg":"2","Ss":"17","Sn":"3","Sa":"5.83","Sd":"2.46","Og":"2","Os":"200","On":"36","Oa":"5.56","Od":"1.04","Mp":"36","p":{"22":{"n":5},"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":5.5},"7":{"n":6.5},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":3.5},"12":{"n":6.5},"13":{"n":7},"15":{"n":5.5},"16":{"n":9,"g":2},"17":{"n":3}}},"c":3},{"i":1261,"n":"Mandanda","f":"Over","p":"G","r":1,"s":{"n":0},"c":3},{"i":1271,"n":"Poussin","f":"Gaetan","p":"G","r":1,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1"},"c":3},{"i":2080,"n":"Carrique","f":"Thomas","p":"D","r":2,"s":{"n":0},"c":3},{"i":2142,"n":"Adli","f":"Yacine","p":"M","r":14,"s":{"g":"3","s":"64","n":"12","a":"5.33","d":"1.3","Sg":"1","Ss":"23","Sn":"4","Sa":"5.88","Sd":"1.29","Og":"3","Os":"96","On":"19","Oa":"5.05","Od":"1.12","Mp":"8","Ap":"11","p":{"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":8,"g":2},"8":{"n":4},"9":{"n":4,"s":1},"10":{"n":5},"11":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5.5},"16":{"n":8},"17":{"n":5.5,"g":1}}},"c":3},{"i":2152,"n":"Pablo","f":"","p":"D","r":20,"s":{"g":"3","s":"79","n":"15","a":"5.27","d":"1.15","Sg":"1","Ss":"23","Sn":"4","Sa":"5.88","Sd":"1.24","Og":"3","Os":"141","On":"27","Oa":"5.24","Od":"1.02","Dp":"27","p":{"1":{"n":3},"2":{"n":5.5},"3":{"n":6},"5":{"n":6.5},"6":{"n":5.5,"g":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":6,"g":1},"10":{"n":3.5},"11":{"n":4.5},"12":{"n":5.5},"14":{"n":7.5,"g":1},"15":{"n":6},"16":{"n":6},"17":{"n":4}}},"c":3},{"i":2238,"n":"Tchouameni","f":"Aurelien","p":"M","r":16,"s":{"s":"66","n":"12","a":"5.54","d":"0.92","Ss":"4","Sn":"1","Sa":"4.5","Os":"86","On":"16","Oa":"5.41","Od":"0.92","Mp":"16","p":{"1":{"n":4},"3":{"n":6},"4":{"n":5.5},"5":{"n":5.5},"7":{"n":7},"8":{"n":5},"9":{"n":4.5},"12":{"n":7},"13":{"n":5.5},"14":{"n":6.5},"15":{"n":5.5},"17":{"n":4.5}}},"c":3},{"i":2629,"n":"Nilor","f":"Michael","p":"A","r":1,"s":{"n":0},"c":3},{"i":2630,"n":"Diarra","f":"Ibrahim","p":"A","r":1,"s":{"n":0},"c":3},{"i":2695,"n":"Benrahou","f":"Yassine","p":"M","r":7,"s":{"s":"31","n":"6","a":"5.17","d":"0.47","Os":"49","On":"10","Oa":"4.95","Od":"0.47","Mp":"9","Ap":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":5.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"6":{"n":6},"14":{"n":5,"s":1}}},"c":3},{"i":2788,"n":"Kalu","f":"Samuel","p":"A","r":10,"s":{"g":"1","s":"69","n":"14","a":"4.96","d":"0.83","Og":"2","Os":"109","On":"22","Oa":"4.98","Od":"0.91","Mp":"11","Ap":"11","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":6},"5":{"n":5},"6":{"n":4.5},"7":{"n":6.5,"g":1},"8":{"n":5},"10":{"n":3.5},"11":{"n":5,"s":1},"13":{"n":4,"s":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":4,"s":1}}},"c":3},{"i":2792,"n":"Basic","f":"Toma","p":"M","r":8,"s":{"s":"29","n":"6","a":"4.92","d":"0.79","Og":"2","Os":"119","On":"25","Oa":"4.78","Od":"0.72","Mp":"25","p":{"22":{"n":4.5},"1":{"n":4.5,"s":1},"2":{"n":3.5},"9":{"n":5,"s":1},"12":{"n":5,"s":1},"14":{"n":6},"16":{"n":5.5,"s":1}}},"c":3},{"i":3523,"n":"Lottin","f":"Albert-Nicolas","p":"M","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":3},{"i":3754,"n":"Lauray","f":"Alexandre","p":"D","r":3,"s":{"n":0},"c":3},{"i":3789,"n":"Bellanova","f":"Raoul","p":"D","r":5,"s":{"s":"3","n":"1","a":"3","Os":"3","On":"1","Oa":"3","Dp":"1","p":{"1":{"n":3}}},"c":3},{"i":3792,"n":"Hwang Ui-Jo","f":"","p":"A","r":13,"s":{"g":"3","s":"73","n":"14","a":"5.25","d":"1.16","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"73","On":"14","Oa":"5.25","Od":"1.16","Mp":"3","Ap":"11","p":{"1":{"n":4},"2":{"n":4},"3":{"n":6.5,"g":1},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":4.5},"8":{"n":5},"9":{"n":7,"g":1},"10":{"n":5,"s":1},"11":{"n":3.5},"12":{"n":7.5,"g":1},"13":{"n":5},"14":{"n":5},"17":{"n":4.5,"s":1}}},"c":3},{"i":3816,"n":"Benito","f":"Loris","p":"D","r":9,"s":{"g":"1","s":"65","n":"14","a":"4.68","d":"0.92","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"65","On":"14","Oa":"4.68","Od":"0.92","Mp":"9","Dp":"5","p":{"1":{"n":3},"2":{"n":5},"3":{"n":6.5,"g":1},"4":{"n":5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"12":{"n":5.5},"13":{"n":4},"14":{"n":4},"15":{"n":5},"17":{"n":3.5}}},"c":3},{"i":5452,"n":"Bakwa","f":"Dilanae","p":"M","r":1,"s":{"n":0},"c":3},{"i":5453,"n":"Cardoso","f":"David","p":"D","r":1,"s":{"n":0},"c":3},{"i":5454,"n":"Sow","f":"Ismael","p":"D","r":1,"s":{"n":0},"c":3},{"i":5455,"n":"Rouyard","f":"Davy","p":"G","r":1,"s":{"n":0},"c":3},{"i":6161,"n":"Traore","f":"Amadou","p":"A","r":3,"s":{"n":0},"c":3},{"i":6347,"n":"Zerkane","f":"Mehdi","p":"A","r":1,"s":{"n":0},"c":3},{"i":13,"n":"Hamouma","f":"Romain","p":"M","r":17,"s":{"g":"5","s":"68","n":"12","a":"5.67","d":"1.14","Sg":"2","Ss":"14","Sn":"2","Sa":"7","Sd":"1","Og":"8","Os":"152","On":"28","Oa":"5.45","Od":"1.18","Mp":"19","Ap":"9","p":{"25":{"n":5},"1":{"n":6.5,"g":1},"2":{"n":5},"3":{"n":5,"s":1},"5":{"n":7.5,"g":2},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":4.5},"11":{"n":5.5,"s":1},"12":{"n":6},"13":{"n":4},"16":{"n":8,"g":1},"17":{"n":6,"g":1,"s":1}}},"c":4},{"i":31,"n":"Boudebouz","f":"Ryad","p":"M","r":14,"s":{"s":"79","n":"16","a":"4.97","d":"0.98","Ss":"47","Sn":"9","Sa":"5.28","Sd":"0.79","Og":"1","Os":"138","On":"28","Oa":"4.95","Od":"1.06","Mp":"19","Ap":"9","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3.5},"4":{"n":5},"5":{"n":3.5},"6":{"n":3.5},"7":{"n":4.5,"s":1},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":4.5},"16":{"n":4.5,"s":1},"17":{"n":4}}},"c":4},{"i":47,"n":"Ruffier","f":"St\u00e9phane","p":"G","r":15,"s":{"s":"74","n":"14","a":"5.32","d":"1.23","Ss":"42","Sn":"8","Sa":"5.31","Sd":"1.34","Os":"196","On":"34","Oa":"5.76","Od":"1.09","Gp":"34","p":{"25":{"n":5.5},"1":{"n":7},"2":{"n":5},"3":{"n":5.5},"4":{"n":5},"5":{"n":6},"6":{"n":3.5},"10":{"n":7.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":3.5},"17":{"n":3.5}}},"c":4},{"i":51,"n":"Cabella","f":"R\u00e9my","p":"M","r":26,"s":{"n":0,"Og":"5","Os":"98","On":"19","Oa":"5.16","Od":"1.17","Mp":"10","Ap":"9","p":{"25":{"n":4.5}}},"c":4},{"i":64,"n":"Perrin","f":"Loic","p":"D","r":11,"s":{"s":"71","n":"14","a":"5.07","d":"0.94","Ss":"19","Sn":"4","Sa":"4.75","Sd":"1.15","Og":"1","Os":"169","On":"32","Oa":"5.3","Od":"1.05","Dp":"32","p":{"25":{"n":5.5},"1":{"n":6.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"5":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"10":{"n":4},"11":{"n":5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":6},"17":{"n":3}}},"c":4},{"i":98,"n":"Monnet-Paquet","f":"K\u00e9vin","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"37","On":"8","Oa":"4.69","Od":"1.17","Mp":"8","p":{"25":{"n":5}}},"c":4},{"i":137,"n":"Selnaes","f":"Ole","p":"M","r":8,"s":{"n":0,"Os":"23","On":"4","Oa":"5.75","Od":"0.9","Mp":"4"},"c":4},{"i":138,"n":"Diony","f":"Lois","p":"A","r":8,"s":{"g":"1","s":"22","n":"5","a":"4.5","d":"0.77","Sg":"1","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.94","Og":"2","Os":"84","On":"18","Oa":"4.67","Od":"0.75","Ap":"18","p":{"25":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"9":{"n":4},"15":{"n":6,"g":1},"16":{"n":4,"s":1},"17":{"n":4}}},"c":4},{"i":155,"n":"Beric","f":"Robert","p":"A","r":8,"s":{"g":"1","s":"42","n":"10","a":"4.25","d":"0.78","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Og":"9","Os":"126","On":"26","Oa":"4.87","Od":"1.22","Ap":"26","p":{"25":{"n":4,"s":1},"1":{"n":4.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5,"s":1},"4":{"n":3.5},"5":{"n":4,"s":1},"6":{"n":3},"7":{"n":4},"9":{"n":6,"g":1,"s":1},"16":{"n":4},"17":{"n":4.5,"s":1}}},"c":4},{"i":195,"n":"Moulin","f":"Jessy","p":"G","r":9,"s":{"s":"14","n":"2","a":"7.25","d":"0.75","Oao":"1","Os":"20","On":"3","Oa":"6.83","Od":"0.85","Gp":"3","p":{"8":{"n":8},"9":{"n":6.5}}},"c":4},{"i":209,"n":"Tannane","f":"Oussama","p":"A","r":6,"s":{"n":0},"c":4},{"i":317,"n":"M'Bengue","f":"Cheikh","p":"D","r":3,"s":{"n":0},"c":4},{"i":400,"n":"Polomat","f":"Pierre-Yves","p":"D","r":14,"s":{"n":0,"Os":"83","On":"16","Oa":"5.19","Od":"0.63","Mp":"5","Dp":"11"},"c":4},{"i":411,"n":"Nordin","f":"Arnaud","p":"M","r":9,"s":{"g":"1","s":"64","n":"13","a":"4.92","d":"0.47","Og":"4","Os":"152","On":"29","Oa":"5.24","Od":"0.76","Mp":"28","Ap":"1","p":{"25":{"n":4.5,"s":1},"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4},"5":{"n":5,"s":1},"6":{"n":6,"g":1},"7":{"n":4.5},"8":{"n":5},"10":{"n":5.5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5},"15":{"n":5,"s":1}}},"c":4},{"i":428,"n":"Lacroix","f":"L\u00e9o","p":"D","r":5,"s":{"n":0},"c":4},{"i":680,"n":"Cabaye","f":"Yohan","p":"M","r":9,"s":{"s":"32","n":"7","a":"4.57","d":"0.49","Os":"32","On":"7","Oa":"4.57","Od":"0.49","Mp":"7","p":{"4":{"n":5,"s":1},"5":{"n":4},"7":{"n":5},"8":{"n":4},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":4}}},"c":4},{"i":887,"n":"Khazri","f":"Wahbi","p":"M","r":15,"s":{"g":"1","s":"57","n":"12","a":"4.75","d":"0.9","Og":"4","Os":"141","On":"28","Oa":"5.05","Od":"1.26","Mp":"9","Ap":"19","p":{"25":{"n":4},"1":{"n":6},"2":{"n":4},"3":{"n":3},"4":{"n":5},"5":{"n":5},"6":{"n":4,"s":1},"7":{"n":4},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":5},"11":{"n":6.5,"g":1},"13":{"n":5,"s":1}}},"c":4},{"i":1031,"n":"Debuchy","f":"Mathieu","p":"D","r":13,"s":{"g":"1","s":"63","n":"13","a":"4.85","d":"1.04","Ss":"10","Sn":"2","Sa":"5","Sd":"1.5","Og":"3","Os":"125","On":"26","Oa":"4.83","Od":"1.1","Mp":"5","Dp":"21","p":{"25":{"n":4.5},"1":{"n":5},"2":{"n":4.5},"3":{"n":3},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":7,"g":1},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":4},"16":{"n":6.5},"17":{"n":3.5}}},"c":4},{"i":1170,"n":"Diouss\u00e9","f":"Assane","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"13":{"n":5,"s":1}}},"c":4},{"i":1192,"n":"Gabriel Silva","f":"","p":"D","r":8,"s":{"s":"9","n":"2","a":"4.75","d":"1.25","Ss":"3","Sn":"1","Sa":"3.5","Os":"46","On":"9","Oa":"5.11","Od":"0.84","Mp":"8","Dp":"1","p":{"25":{"n":5.5},"12":{"n":6},"17":{"n":3.5}}},"c":4},{"i":1433,"n":"Aholou","f":"Jean Eudes","p":"M","r":8,"s":{"g":"1","s":"38","n":"7","a":"5.5","d":"0.76","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Og":"1","Os":"80","On":"15","Oa":"5.33","Od":"0.89","Mp":"15","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"12":{"n":5.5,"s":1},"16":{"n":6},"17":{"n":5.5,"s":1}}},"c":4},{"i":1549,"n":"Youssouf","f":"Zaydou","p":"M","r":14,"s":{"s":"69","n":"13","a":"5.31","d":"0.91","Os":"99","On":"20","Oa":"4.98","Od":"0.9","Mp":"13","Ap":"7","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"6":{"n":4},"8":{"n":5,"s":1},"9":{"n":6.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":7},"13":{"n":6},"14":{"n":6},"15":{"n":4.5}}},"c":4},{"i":2046,"n":"Panos","f":"Mickael","p":"D","r":3,"s":{"n":0},"c":4},{"i":2143,"n":"Camara","f":"Mahdi","p":"M","r":10,"s":{"s":"26","n":"5","a":"5.2","d":"0.51","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.51","Os":"26","On":"5","Oa":"5.2","Od":"0.51","Mp":"5","p":{"13":{"n":5},"14":{"n":5.5},"15":{"n":5,"s":1},"16":{"n":6},"17":{"n":4.5}}},"c":4},{"i":2233,"n":"M'Vila","f":"Yann","p":"M","r":11,"s":{"s":"70","n":"14","a":"5.04","d":"0.93","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"181","On":"34","Oa":"5.32","Od":"0.92","Mp":"34","p":{"25":{"n":5.5},"1":{"n":6},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":6.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":3.5},"15":{"n":5},"16":{"n":6,"s":1},"17":{"n":4.5}}},"c":4},{"i":2266,"n":"Subotic","f":"Neven","p":"D","r":7,"s":{"n":0,"Og":"1","Os":"50","On":"10","Oa":"5","Od":"1.07","Dp":"10"},"c":4},{"i":2272,"n":"Fofana","f":"Wesley","p":"M","r":12,"s":{"g":"1","s":"31","n":"6","a":"5.25","d":"1.07","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.43","Og":"1","Os":"31","On":"6","Oa":"5.25","Od":"1.07","Dp":"6","p":{"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"15":{"n":5.5,"s":1},"16":{"n":7,"g":1},"17":{"n":3.5}}},"c":4},{"i":2434,"n":"Palencia","f":"Sergi","p":"D","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"78","On":"16","Oa":"4.88","Od":"0.78","Mp":"6","Dp":"10","p":{"4":{"n":5},"10":{"n":5},"11":{"n":5},"15":{"n":4.5}}},"c":4},{"i":2616,"n":"Kolodziejczak","f":"Timoth\u00e9e","p":"D","r":10,"s":{"s":"52","n":"11","a":"4.73","d":"0.91","Og":"1","Os":"151","On":"30","Oa":"5.03","Od":"0.77","Dp":"30","p":{"25":{"n":4.5},"3":{"n":4.5},"5":{"n":4.5},"6":{"n":3},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":5,"s":1},"12":{"n":6},"13":{"n":4},"14":{"n":5.5},"15":{"n":3.5}}},"c":4},{"i":2766,"n":"Saliba","f":"William","p":"D","r":9,"s":{"s":"26","n":"5","a":"5.2","d":"0.68","Os":"94","On":"17","Oa":"5.56","Od":"0.86","Dp":"17","p":{"8":{"n":5,"s":1},"9":{"n":4.5},"10":{"n":6},"11":{"n":4.5},"12":{"n":6}}},"c":4},{"i":2790,"n":"Bouanga","f":"Denis","p":"M","r":23,"s":{"g":"7","s":"95","n":"17","a":"5.59","d":"1.39","Sg":"7","Ss":"95","Sn":"17","Sa":"5.59","Sd":"1.39","Og":"11","Os":"198","On":"38","Oa":"5.22","Od":"1.3","Mp":"21","Ap":"17","p":{"1":{"n":5},"2":{"n":7,"g":1},"3":{"n":5},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":3.5},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":6.5},"10":{"n":7.5,"g":1},"11":{"n":5.5},"12":{"n":7,"g":1},"13":{"n":7,"g":2},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":8.5,"g":2},"17":{"n":3.5}}},"c":4},{"i":2891,"n":"Vermot","f":"Th\u00e9o","p":"G","r":1,"s":{"n":0},"c":4},{"i":2893,"n":"Bajic","f":"Stefan","p":"G","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"7":{"n":4.5}}},"c":4},{"i":2963,"n":"Honorat","f":"Franck","p":"A","r":10,"s":{"s":"23","n":"4","a":"5.75","d":"1.03","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Os":"23","On":"4","Oa":"5.75","Od":"1.03","Mp":"4","p":{"13":{"n":6.5},"14":{"n":5},"16":{"n":7},"17":{"n":4.5}}},"c":4},{"i":2990,"n":"Tshibuabua","f":"Marvin","p":"D","r":1,"s":{"n":0},"c":4},{"i":2991,"n":"Abi","f":"Charles","p":"A","r":8,"s":{"s":"27","n":"6","a":"4.5","d":"0.29","Os":"36","On":"8","Oa":"4.56","Od":"0.3","Ap":"8","p":{"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4},"11":{"n":5}}},"c":4},{"i":2992,"n":"Benkhedim","f":"Bilal","p":"M","r":5,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"14":{"n":5.5,"s":1}}},"c":4},{"i":3765,"n":"Sissoko","f":"Nelson","p":"M","r":1,"s":{"n":0},"c":4},{"i":3772,"n":"Nade","f":"Mickael","p":"D","r":1,"s":{"n":0},"c":4},{"i":3788,"n":"Moukoudi","f":"Harold","p":"D","r":8,"s":{"s":"48","n":"10","a":"4.8","d":"1","Os":"48","On":"10","Oa":"4.8","Od":"1","Dp":"10","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":2.5},"8":{"n":6},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4}}},"c":4},{"i":6019,"n":"Trauco","f":"Miguel","p":"D","r":11,"s":{"g":"1","s":"51","n":"11","a":"4.64","d":"1.28","Og":"1","Os":"51","On":"11","Oa":"4.64","Od":"1.28","Mp":"5","Dp":"6","p":{"1":{"n":6},"2":{"n":4.5},"4":{"n":4},"6":{"n":2.5},"7":{"n":3.5},"9":{"n":4.5},"12":{"n":5,"s":1},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":3},"16":{"n":6.5}}},"c":4},{"i":6342,"n":"Indjai Correia","f":"Edmilson","p":"M","r":1,"s":{"n":0},"c":4},{"i":45,"n":"Gourcuff","f":"Yoann","p":"M","r":7,"s":{"n":0},"c":7},{"i":104,"n":"J\u00falio Tavares","f":"","p":"A","r":11,"s":{"g":"3","s":"61","n":"12","a":"5.08","d":"0.93","Og":"5","Os":"157","On":"33","Oa":"4.76","Od":"1.01","Mp":"1","Ap":"32","p":{"32":{"n":5},"1":{"n":6,"g":1},"2":{"n":4.5},"6":{"n":6.5,"g":1},"7":{"n":4.5},"8":{"n":7,"g":1},"9":{"n":5},"10":{"n":4},"11":{"n":4},"12":{"n":5.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5,"s":1}}},"c":7},{"i":167,"n":"Mari\u00e9","f":"Jordan","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Og":"1","Os":"99","On":"20","Oa":"4.95","Od":"0.69","Mp":"20","p":{"32":{"n":6},"4":{"n":4.5}}},"c":7},{"i":187,"n":"Sammaritano","f":"Fr\u00e9d\u00e9ric","p":"M","r":9,"s":{"g":"1","s":"32","n":"6","a":"5.42","d":"0.84","Og":"1","Os":"60","On":"12","Oa":"5","Od":"0.82","Mp":"11","Ap":"1","p":{"1":{"n":5},"2":{"n":6,"s":1},"3":{"n":5},"4":{"n":4.5},"10":{"n":5,"s":1},"14":{"n":7,"g":1,"s":1}}},"c":7},{"i":252,"n":"Chafik","f":"Fouad","p":"D","r":9,"s":{"s":"58","n":"12","a":"4.83","d":"0.42","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.41","Os":"149","On":"30","Oa":"4.97","Od":"0.66","Dp":"30","p":{"32":{"n":5.5},"1":{"n":4.5},"2":{"n":5},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":5},"11":{"n":4},"12":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":5}}},"c":7},{"i":278,"n":"Amalfitano","f":"Romain","p":"M","r":11,"s":{"s":"72","n":"15","a":"4.8","d":"0.54","Ss":"30","Sn":"6","Sa":"5.08","Sd":"0.61","Os":"154","On":"33","Oa":"4.68","Od":"0.73","Mp":"31","Dp":"2","p":{"32":{"n":6},"1":{"n":4.5},"2":{"n":4},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":4.5},"14":{"n":6},"15":{"n":4.5,"s":1},"16":{"n":5.5},"17":{"n":4.5}}},"c":7},{"i":312,"n":"Sliti","f":"Na\u00efm","p":"M","r":16,"s":{"n":0,"Og":"3","Os":"92","On":"18","Oa":"5.11","Od":"1.02","Mp":"13","Ap":"5","p":{"32":{"n":5,"s":1}}},"c":7},{"i":321,"n":"Balmont","f":"Florent","p":"M","r":8,"s":{"s":"32","n":"7","a":"4.64","d":"0.52","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.75","Os":"104","On":"22","Oa":"4.73","Od":"0.56","Mp":"22","p":{"32":{"n":5.5},"5":{"n":4},"9":{"n":5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"16":{"n":5.5,"s":1},"17":{"n":4}}},"c":7},{"i":330,"n":"Lautoa","f":"Wesley","p":"D","r":17,"s":{"s":"72","n":"14","a":"5.18","d":"0.49","Oao":"1","Os":"166","On":"33","Oa":"5.05","Od":"0.71","Mp":"10","Dp":"23","p":{"32":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":5.5,"s":1},"8":{"n":5.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5.5}}},"c":7},{"i":380,"n":"Haddadi","f":"Oussama","p":"D","r":11,"s":{"n":0,"Os":"81","On":"17","Oa":"4.76","Od":"0.96","Dp":"17","p":{"32":{"n":6}}},"c":7},{"i":437,"n":"Bouka Moutou","f":"Arnold","p":"D","r":7,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3"},"c":7},{"i":496,"n":"Mendyl","f":"Hamza","p":"D","r":8,"s":{"s":"48","n":"10","a":"4.8","d":"0.68","Os":"48","On":"10","Oa":"4.8","Od":"0.68","Dp":"10","p":{"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"11":{"n":4},"12":{"n":5,"s":1},"13":{"n":5},"16":{"n":4.5}}},"c":7},{"i":530,"n":"Allain","f":"Bobby","p":"G","r":10,"s":{"n":0,"Os":"63","On":"11","Oa":"5.73","Od":"0.86","Gp":"11"},"c":7},{"i":533,"n":"Rosier","f":"Valentin","p":"D","r":6,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":7},{"i":545,"n":"Kwon Chang-Hoon","f":"","p":"M","r":9,"s":{"n":0,"Og":"2","Os":"90","On":"19","Oa":"4.74","Od":"0.77","Mp":"17","Ap":"2","p":{"32":{"n":4.5,"s":1}}},"c":7},{"i":905,"n":"Ndong","f":"Didier","p":"M","r":12,"s":{"s":"84","n":"16","a":"5.28","d":"0.68","Ss":"5","Sn":"1","Sa":"5","Os":"135","On":"27","Oa":"5.02","Od":"0.71","Mp":"26","Dp":"1","p":{"2":{"n":4.5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6},"15":{"n":5.5},"17":{"n":5},"1":{"n":5,"e":5061,"c":14}}},"c":7},{"i":1217,"n":"Yamb\u00e9r\u00e9","f":"C\u00e9dric","p":"D","r":10,"s":{"n":0,"Os":"97","On":"20","Oa":"4.85","Od":"0.78","Dp":"20","p":{"32":{"n":5.5}}},"c":7},{"i":1544,"n":"Matheus Pereira","f":"","p":"M","r":9,"s":{"s":"44","n":"9","a":"4.94","d":"0.44","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"44","On":"9","Oa":"4.94","Od":"0.44","Mp":"8","Ap":"1","p":{"5":{"n":4.5},"6":{"n":4.5},"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5.5},"11":{"n":4.5},"14":{"n":5},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":7},{"i":2524,"n":"Ecuele Manga","f":"Bruno","p":"D","r":14,"s":{"s":"88","n":"17","a":"5.18","d":"0.71","Ss":"88","Sn":"17","Sa":"5.18","Sd":"0.71","Os":"191","On":"38","Oa":"5.04","Od":"0.93","Dp":"38","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":6},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":5.5}}},"c":7},{"i":2605,"n":"Alphonse","f":"Micka\u00ebl","p":"D","r":9,"s":{"s":"59","n":"12","a":"4.96","d":"0.8","Ss":"4","Sn":"1","Sa":"4.5","Os":"95","On":"20","Oa":"4.78","Od":"0.77","Mp":"1","Dp":"19","p":{"32":{"n":5,"s":1},"1":{"n":5},"2":{"n":4.5},"3":{"n":6},"4":{"n":3},"5":{"n":5},"6":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":6},"10":{"n":5},"14":{"n":6},"15":{"n":5},"17":{"n":4.5}}},"c":7},{"i":2633,"n":"Ntumba","f":"L\u00e9vi","p":"G","r":1,"s":{"n":0},"c":7},{"i":2639,"n":"Coulibaly","f":"Senou","p":"D","r":8,"s":{"s":"42","n":"9","a":"4.72","d":"0.79","Os":"61","On":"13","Oa":"4.73","Od":"0.7","Dp":"13","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":4},"4":{"n":5},"10":{"n":5.5,"s":1},"11":{"n":3.5},"12":{"n":4.5},"15":{"n":6},"16":{"n":4.5}}},"c":7},{"i":2640,"n":"Barbet","f":"Th\u00e9o","p":"D","r":1,"s":{"n":0},"c":7},{"i":2641,"n":"Sahibeddine","f":"Adrian","p":"M","r":1,"s":{"n":0},"c":7},{"i":2643,"n":"Loiodice","f":"Enzo","p":"M","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.24","Ss":"4","Sn":"1","Sa":"4.5","Os":"28","On":"6","Oa":"4.75","Od":"0.25","Mp":"6","p":{"1":{"n":5,"s":1},"3":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":4.5},"17":{"n":4.5,"s":1}}},"c":7},{"i":2692,"n":"Aguerd","f":"Nayef","p":"D","r":7,"s":{"s":"34","n":"7","a":"4.93","d":"0.98","Og":"1","Os":"72","On":"16","Oa":"4.53","Od":"0.99","Dp":"16","p":{"4":{"n":3.5},"5":{"n":5},"6":{"n":3.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"10":{"n":5.5}}},"c":7},{"i":2725,"n":"R\u00fanarsson","f":"R\u00fanar Alex","p":"G","r":16,"s":{"s":"30","n":"6","a":"5.08","d":"0.93","Ss":"12","Sn":"2","Sa":"6","Os":"81","On":"16","Oa":"5.09","Od":"0.81","Gp":"16","p":{"32":{"n":5.5},"1":{"n":4},"2":{"n":6},"3":{"n":4},"4":{"n":4.5},"16":{"n":6,"s":1},"17":{"n":6}}},"c":7},{"i":2867,"n":"Ciman","f":"Laurent","p":"D","r":10,"s":{"n":0},"c":7},{"i":2941,"n":"Doumbouya","f":"Sory","p":"A","r":1,"s":{"n":0},"c":7},{"i":2989,"n":"Godard","f":"Theo","p":"A","r":1,"s":{"n":0},"c":7},{"i":3361,"n":"Kaba","f":"Sory","p":"A","r":8,"s":{"n":0,"Os":"37","On":"9","Oa":"4.17","Od":"0.33","Ap":"9"},"c":7},{"i":3526,"n":"T\u00e9gar","f":"Alexandre","p":"D","r":1,"s":{"n":0},"c":7},{"i":3755,"n":"Soumar\u00e9","f":"Bryan","p":"M","r":7,"s":{"s":"50","n":"10","a":"5.05","d":"0.42","Ss":"5","Sn":"1","Sa":"5","Os":"50","On":"10","Oa":"5.05","Od":"0.42","Mp":"10","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"5":{"n":6,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":4.5},"10":{"n":4.5},"13":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":7},{"i":3768,"n":"Mama Bald\u00e9","f":"","p":"M","r":9,"s":{"g":"1","s":"59","n":"13","a":"4.54","d":"0.99","Ss":"17","Sn":"4","Sa":"4.38","Sd":"0.54","Og":"1","Os":"59","On":"13","Oa":"4.54","Od":"0.99","Mp":"9","Ap":"4","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":4},"4":{"n":3.5},"5":{"n":4},"7":{"n":5},"8":{"n":7.5,"g":1},"11":{"n":4},"12":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":4.5},"16":{"n":5},"17":{"n":3.5}}},"c":7},{"i":4517,"n":"Mavididi","f":"Stephy","p":"A","r":14,"s":{"g":"2","s":"63","n":"13","a":"4.88","d":"0.65","Sg":"1","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.85","Og":"2","Os":"63","On":"13","Oa":"4.88","Od":"0.65","Mp":"5","Ap":"8","p":{"4":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":6,"g":1},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":4.5},"16":{"n":6,"g":1},"17":{"n":4,"s":1}}},"c":7},{"i":4633,"n":"Gomis","f":"Alfred","p":"G","r":13,"s":{"s":"73","n":"12","a":"6.08","d":"1.26","Os":"73","On":"12","Oa":"6.08","Od":"1.26","Gp":"12","p":{"5":{"n":6.5},"6":{"n":5},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":9},"11":{"n":6},"12":{"n":5.5},"13":{"n":8},"14":{"n":5.5},"15":{"n":6},"16":{"n":4}}},"c":7},{"i":5057,"n":"Chouiar","f":"Mounir","p":"A","r":15,"s":{"g":"4","s":"92","n":"16","a":"5.78","d":"1.02","Sg":"2","Ss":"54","Sn":"9","Sa":"6.06","Sd":"0.9","Og":"4","Os":"92","On":"16","Oa":"5.78","Od":"1.02","Mp":"9","Ap":"7","p":{"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":5.5,"s":1},"12":{"n":7.5,"g":1},"13":{"n":5.5},"14":{"n":7.5,"g":1},"15":{"n":6},"16":{"n":6.5},"17":{"n":5},"1":{"n":6,"e":5066,"c":104,"g":1,"s":1},"2":{"n":7.5,"e":5056,"c":104,"g":1,"s":1},"3":{"n":5,"e":5047,"c":104,"s":1},"4":{"n":4.5,"e":5032,"c":104,"s":1}}},"c":7},{"i":6198,"n":"Philippe","f":"Rayan","p":"A","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"3":{"n":4.5,"s":1}}},"c":7},{"i":6201,"n":"Muzinga","f":"Ngonda","p":"D","r":8,"s":{"ao":"1","s":"14","n":"3","a":"4.67","d":"1.03","Oao":"1","Os":"14","On":"3","Oa":"4.67","Od":"1.03","Mp":"1","Dp":"2","p":{"4":{"n":3.5,"a":1},"10":{"n":6},"12":{"n":4.5}}},"c":7},{"i":6251,"n":"C\u00e1diz","f":"Jhonder","p":"A","r":12,"s":{"g":"1","s":"41","n":"8","a":"5.13","d":"0.7","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Og":"1","Os":"41","On":"8","Oa":"5.13","Od":"0.7","Ap":"8","p":{"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":6.5,"g":1},"13":{"n":5},"15":{"n":5},"16":{"n":6},"17":{"n":4.5}}},"c":7},{"i":6306,"n":"Ngouyamsa Nounchil","f":"Ahmad Toure","p":"D","r":1,"s":{"n":0},"c":7},{"i":6343,"n":"Hatfout","f":"Ewan","p":"G","r":1,"s":{"n":0},"c":7},{"i":23,"n":"Majeed Waris","f":"","p":"A","r":12,"s":{"n":0,"Og":"4","Os":"92","On":"17","Oa":"5.41","Od":"0.94","Mp":"2","Ap":"15","p":{"24":{"n":5,"g":1}}},"c":8},{"i":73,"n":"Pallois","f":"Nicolas","p":"D","r":15,"s":{"s":"80","n":"15","a":"5.33","d":"0.89","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Og":"2","Os":"175","On":"33","Oa":"5.32","Od":"1.01","Dp":"33","p":{"24":{"n":4},"1":{"n":5},"2":{"n":6},"3":{"n":5},"4":{"n":6},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":6},"9":{"n":6.5},"11":{"n":5},"12":{"n":3},"13":{"n":4},"15":{"n":6},"16":{"n":5.5},"17":{"n":5}}},"c":8},{"i":82,"n":"Lafont","f":"Alban","p":"G","r":19,"s":{"s":"94","n":"17","a":"5.56","d":"1.04","Ss":"94","Sn":"17","Sa":"5.56","Sd":"1.04","Os":"94","On":"17","Oa":"5.56","Od":"1.04","Gp":"17","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4},"4":{"n":6},"5":{"n":6},"6":{"n":5.5},"7":{"n":7},"8":{"n":8},"9":{"n":6},"10":{"n":4.5},"11":{"n":5},"12":{"n":6},"13":{"n":4},"14":{"n":5},"15":{"n":5.5},"16":{"n":6},"17":{"n":6}}},"c":8},{"i":112,"n":"Abeid","f":"Mehdi","p":"M","r":12,"s":{"s":"74","n":"14","a":"5.29","d":"0.8","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Os":"132","On":"26","Oa":"5.1","Od":"0.84","Mp":"26","p":{"2":{"n":5.5},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":6},"9":{"n":7},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"15":{"n":4,"s":1},"16":{"n":5},"17":{"n":5,"s":1}}},"c":8},{"i":128,"n":"Sala","f":"Emiliano","p":"A","r":500,"s":{"n":0,"Os":"14","On":"3","Oa":"4.83","Od":"0.62","Ap":"3"},"c":8},{"i":200,"n":"Coco","f":"Marcus","p":"M","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"88","On":"19","Oa":"4.63","Od":"0.72","Mp":"14","Ap":"5","p":{"1":{"n":4.5}}},"c":8},{"i":231,"n":"Petric","f":"Denis","p":"G","r":7,"s":{"n":0},"c":8},{"i":308,"n":"Kacaniklic","f":"Alexander","p":"M","r":4,"s":{"n":0},"c":8},{"i":313,"n":"Lucas Lima","f":"","p":"D","r":12,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Os":"79","On":"17","Oa":"4.68","Od":"0.71","Mp":"6","Dp":"9","Ap":"2","p":{"24":{"n":3},"1":{"n":5.5},"2":{"n":5},"3":{"n":5}}},"c":8},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":18,"s":{"g":"3","s":"92","n":"17","a":"5.41","d":"0.88","Sg":"3","Ss":"60","Sn":"11","Sa":"5.5","Sd":"1.02","Og":"4","Os":"186","On":"36","Oa":"5.17","Od":"0.91","Mp":"34","Ap":"2","p":{"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":4},"13":{"n":7.5,"g":1},"14":{"n":5},"15":{"n":6.5,"g":1},"16":{"n":5},"17":{"n":7,"g":1},"1":{"n":5.5,"e":5061,"c":14},"2":{"n":4.5,"e":5056,"c":14},"3":{"n":5,"e":5040,"c":14},"4":{"n":6,"e":5028,"c":14},"5":{"n":5,"e":5021,"c":14},"6":{"n":5.5,"e":5013,"c":14,"s":1}}},"c":8},{"i":427,"n":"Moimb\u00e9","f":"Wilfried","p":"D","r":1,"s":{"n":0},"c":8},{"i":431,"n":"Alexis Alegue","f":"","p":"M","r":4,"s":{"n":0},"c":8},{"i":465,"n":"Sigthorsson","f":"Kolbeinn","p":"A","r":1,"s":{"n":0},"c":8},{"i":476,"n":"Tour\u00e9","f":"Abdoulaye","p":"M","r":20,"s":{"g":"3","s":"89","n":"16","a":"5.59","d":"1.05","Ss":"7","Sn":"1","Sa":"7","Og":"4","Os":"199","On":"37","Oa":"5.39","Od":"0.91","Mp":"37","p":{"24":{"n":4},"1":{"n":4.5},"2":{"n":4},"3":{"n":5.5},"4":{"n":7.5,"g":1},"5":{"n":6},"6":{"n":4.5},"7":{"n":7,"g":1},"8":{"n":6},"9":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":7,"g":1},"17":{"n":7}}},"c":8},{"i":499,"n":"Olliero","f":"Alexandre","p":"G","r":2,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Gp":"1"},"c":8},{"i":506,"n":"Walongwa","f":"Anthony","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5.5","Dp":"1"},"c":8},{"i":941,"n":"Fabio","f":"","p":"D","r":7,"s":{"s":"52","n":"10","a":"5.2","d":"0.56","Os":"114","On":"23","Oa":"4.98","Od":"0.67","Mp":"2","Dp":"21","p":{"24":{"n":3.5},"1":{"n":4},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":5.5},"11":{"n":5}}},"c":8},{"i":1007,"n":"Wagu\u00e9","f":"Molla","p":"D","r":8,"s":{"s":"14","n":"3","a":"4.83","d":"0.85","Os":"14","On":"3","Oa":"4.83","Od":"0.85","Dp":"3","p":{"1":{"n":4.5},"10":{"n":4},"14":{"n":6}}},"c":8},{"i":1171,"n":"Coulibaly","f":"Kalifa","p":"A","r":13,"s":{"g":"4","s":"77","n":"16","a":"4.81","d":"0.75","Ss":"4","Sn":"1","Sa":"4","Og":"11","Os":"168","On":"34","Oa":"4.96","Od":"0.95","Ap":"34","p":{"24":{"n":6,"g":1},"1":{"n":4},"2":{"n":5},"3":{"n":6,"g":1},"4":{"n":4.5},"5":{"n":6,"g":1},"6":{"n":6,"g":1},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":4},"12":{"n":5,"s":1},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":4.5},"17":{"n":4}}},"c":8},{"i":1174,"n":"Andrei Girotto","f":"","p":"M","r":13,"s":{"s":"85","n":"16","a":"5.34","d":"1.03","Ss":"18","Sn":"3","Sa":"6.17","Sd":"0.24","Og":"1","Os":"157","On":"30","Oa":"5.25","Od":"1.02","Mp":"14","Dp":"16","p":{"24":{"n":5},"1":{"n":5.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6},"6":{"n":4.5},"7":{"n":6},"8":{"n":7},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":3.5},"13":{"n":3},"15":{"n":6.5},"16":{"n":6},"17":{"n":6}}},"c":8},{"i":1177,"n":"El Ghanassy","f":"Yassine","p":"M","r":9,"s":{"n":0},"c":8},{"i":1228,"n":"Kayembe","f":"Joris","p":"M","r":4,"s":{"n":0},"c":8},{"i":1255,"n":"Moutoussamy","f":"Samuel","p":"M","r":8,"s":{"s":"72","n":"15","a":"4.8","d":"0.4","Ss":"53","Sn":"11","Sa":"4.82","Sd":"0.44","Og":"2","Os":"150","On":"30","Oa":"5","Od":"0.72","Mp":"25","Dp":"2","Ap":"3","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":8},{"i":1444,"n":"Charles Traor\u00e9","f":"","p":"D","r":10,"s":{"s":"50","n":"10","a":"5","d":"0.89","Ss":"25","Sn":"5","Sa":"5","Sd":"1.1","Os":"116","On":"23","Oa":"5.04","Od":"0.82","Mp":"4","Dp":"19","p":{"1":{"n":4},"2":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"13":{"n":3},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":6}}},"c":8},{"i":1539,"n":"Krhin","f":"Rene","p":"M","r":8,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Os":"48","On":"9","Oa":"5.33","Od":"0.58","Mp":"9","p":{"7":{"n":6},"14":{"n":5.5},"15":{"n":5,"s":1}}},"c":8},{"i":1552,"n":"Kolo Muani","f":"Randal","p":"M","r":4,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.73","Mp":"4","Ap":"1"},"c":8},{"i":2669,"n":"Dabo","f":"Abdoulaye","p":"M","r":3,"s":{"n":0},"c":8},{"i":2686,"n":"Mendy","f":"Batista","p":"D","r":2,"s":{"n":0},"c":8},{"i":2696,"n":"Basila","f":"Thomas","p":"D","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.24","Os":"34","On":"7","Oa":"4.86","Od":"0.35","Dp":"7","p":{"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4.5}}},"c":8},{"i":2707,"n":"Menig","f":"Queensy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2719,"n":"Lucas Evangelista","f":"","p":"M","r":9,"s":{"n":0,"Os":"13","On":"3","Oa":"4.5","Od":"0.41","Mp":"3"},"c":8},{"i":2744,"n":"Simon","f":"Moses","p":"M","r":14,"s":{"g":"2","s":"83","n":"15","a":"5.57","d":"0.91","Sg":"2","Ss":"83","Sn":"15","Sa":"5.57","Sd":"0.91","Og":"2","Os":"148","On":"29","Oa":"5.12","Od":"0.98","Mp":"22","Ap":"7","p":{"3":{"n":6,"g":1,"s":1},"4":{"n":6.5},"5":{"n":6},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":7.5,"g":1},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4},"14":{"n":6},"15":{"n":7},"16":{"n":5},"17":{"n":5}}},"c":8},{"i":2782,"n":"Ruiz","f":"Percy","p":"M","r":1,"s":{"n":0},"c":8},{"i":2834,"n":"Limbombe","f":"Anthony","p":"M","r":14,"s":{"n":0,"Og":"1","Os":"83","On":"16","Oa":"5.22","Od":"0.61","Mp":"10","Ap":"6","p":{"24":{"n":5}}},"c":8},{"i":2865,"n":"Kara Mbodji","f":"Serigne Modou","p":"D","r":8,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Dp":"2"},"c":8},{"i":2938,"n":"Louza","f":"Imran","p":"M","r":11,"s":{"g":"1","s":"66","n":"13","a":"5.12","d":"0.76","Sg":"1","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.8","Og":"1","Os":"71","On":"14","Oa":"5.07","Od":"0.75","Mp":"13","Ap":"1","p":{"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":5},"6":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":6.5,"g":1},"14":{"n":4.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":4.5}}},"c":8},{"i":2947,"n":"Youan","f":"Thody Elie","p":"A","r":8,"s":{"s":"21","n":"5","a":"4.2","d":"0.4","Os":"25","On":"6","Oa":"4.25","Od":"0.38","Ap":"6","p":{"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":3.5},"13":{"n":4.5,"s":1},"16":{"n":4}}},"c":8},{"i":2993,"n":"Bamba","f":"Abdoul Kader","p":"M","r":13,"s":{"s":"92","n":"17","a":"5.44","d":"0.62","Ss":"92","Sn":"17","Sa":"5.44","Sd":"0.62","Os":"92","On":"17","Oa":"5.44","Od":"0.62","Mp":"17","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":7},"4":{"n":5.5},"5":{"n":5.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":5.5,"s":1},"9":{"n":6,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":6.5},"16":{"n":5},"17":{"n":6}}},"c":8},{"i":3363,"n":"Mance","f":"Antonio","p":"A","r":8,"s":{"n":0,"Os":"22","On":"5","Oa":"4.4","Od":"0.2","Ap":"5","p":{"24":{"n":4.5,"s":1}}},"c":8},{"i":3516,"n":"Homawoo","f":"Josu\u00e9","p":"D","r":1,"s":{"n":0},"c":8},{"i":3767,"n":"Ba","f":"Abou","p":"M","r":2,"s":{"n":0},"c":8},{"i":3812,"n":"Appiah","f":"Dennis","p":"D","r":8,"s":{"s":"50","n":"10","a":"5","d":"0.5","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.25","Os":"50","On":"10","Oa":"5","Od":"0.5","Dp":"10","p":{"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":4.5},"14":{"n":5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4.5}}},"c":8},{"i":6009,"n":"Ndilu","f":"Bridge","p":"A","r":5,"s":{"n":0},"c":8},{"i":6153,"n":"Moustache","f":"Wesley","p":"D","r":1,"s":{"n":0},"c":8},{"i":6165,"n":"Benavente Bristol","f":"Cristian","p":"M","r":8,"s":{"s":"49","n":"10","a":"4.95","d":"0.27","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"49","On":"10","Oa":"4.95","Od":"0.27","Mp":"9","Ap":"1","p":{"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":8},{"i":6262,"n":"Pereira De Sa","f":"Roli","p":"A","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"16":{"n":5,"s":1}}},"c":8},{"i":6,"n":"Payet","f":"Dimitri","p":"M","r":24,"s":{"g":"5","s":"82","n":"13","a":"6.31","d":"1.01","Sg":"3","Ss":"47","Sn":"7","Sa":"6.71","Sd":"0.88","Og":"5","Os":"153","On":"28","Oa":"5.46","Od":"1.13","Mp":"14","Ap":"14","p":{"1":{"n":4},"2":{"n":6},"3":{"n":6,"g":1},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":6.5},"11":{"n":5},"12":{"n":6},"13":{"n":8,"g":2},"14":{"n":7},"15":{"n":7},"16":{"n":7,"g":1},"17":{"n":7}}},"c":9},{"i":10,"n":"Germain","f":"Val\u00e8re","p":"A","r":10,"s":{"g":"2","s":"72","n":"15","a":"4.83","d":"1.01","Ss":"4","Sn":"1","Sa":"4","Og":"7","Os":"172","On":"34","Oa":"5.06","Od":"1.03","Mp":"3","Ap":"31","p":{"1":{"n":3.5},"2":{"n":4.5,"s":1},"3":{"n":6,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1},"6":{"n":7,"g":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"11":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"17":{"n":4}}},"c":9},{"i":22,"n":"Thauvin","f":"Florian","p":"M","r":7,"s":{"s":"5","n":"1","a":"5.5","Og":"5","Os":"96","On":"18","Oa":"5.33","Od":"1.17","Mp":"16","Ap":"2","p":{"4":{"n":5.5,"s":1}}},"c":9},{"i":41,"n":"Sanson","f":"Morgan","p":"M","r":25,"s":{"g":"3","s":"92","n":"16","a":"5.78","d":"0.95","Sg":"3","Ss":"44","Sn":"7","Sa":"6.36","Sd":"0.79","Og":"5","Os":"187","On":"34","Oa":"5.5","Od":"0.99","Mp":"34","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":7},"8":{"n":5},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":7,"g":1},"13":{"n":6},"14":{"n":5.5},"15":{"n":7},"16":{"n":7,"g":1},"17":{"n":7,"g":1}}},"c":9},{"i":74,"n":"N'Jie","f":"Clinton","p":"A","r":13,"s":{"n":0,"Og":"2","Os":"55","On":"11","Oa":"5.05","Od":"0.89","Ap":"11"},"c":9},{"i":99,"n":"Lopez","f":"Maxime","p":"M","r":11,"s":{"s":"76","n":"15","a":"5.07","d":"0.73","Ss":"43","Sn":"9","Sa":"4.78","Sd":"0.53","Og":"1","Os":"188","On":"36","Oa":"5.22","Od":"0.79","Mp":"34","Ap":"2","p":{"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":6},"6":{"n":7},"7":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":9},{"i":102,"n":"Pel\u00e9","f":"Yohann","p":"G","r":8,"s":{"n":0,"Os":"18","On":"3","Oa":"6","Od":"0.82","Gp":"3"},"c":9},{"i":210,"n":"Sakai","f":"Hiroki","p":"D","r":13,"s":{"ao":"1","s":"70","n":"14","a":"5.04","d":"0.85","Ss":"23","Sn":"4","Sa":"5.75","Sd":"0.56","Og":"1","Oao":"1","Os":"152","On":"30","Oa":"5.08","Od":"1","Mp":"1","Dp":"29","p":{"1":{"n":4},"2":{"n":5},"3":{"n":6},"4":{"n":6},"7":{"n":5},"8":{"n":4.5,"a":1},"9":{"n":4},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5},"14":{"n":6.5},"15":{"n":5.5},"16":{"n":6},"17":{"n":5}}},"c":9},{"i":216,"n":"Sarr","f":"Bouna","p":"M","r":15,"s":{"g":"1","ao":"1","s":"88","n":"17","a":"5.21","d":"0.86","Sg":"1","Sao":"1","Ss":"88","Sn":"17","Sa":"5.21","Sd":"0.86","Og":"2","Oao":"1","Os":"158","On":"31","Oa":"5.11","Od":"0.9","Mp":"4","Dp":"19","Ap":"8","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5,"a":1},"7":{"n":5.5},"8":{"n":7},"9":{"n":5},"10":{"n":6.5},"11":{"n":3.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":6.5},"15":{"n":6,"g":1},"16":{"n":5.5},"17":{"n":4.5}}},"c":9},{"i":221,"n":"Rolando","f":"","p":"D","r":5,"s":{"n":0,"Os":"30","On":"6","Oa":"5.08","Od":"0.73","Dp":"6"},"c":9},{"i":242,"n":"Rongier","f":"Valentin","p":"M","r":22,"s":{"s":"94","n":"16","a":"5.91","d":"0.85","Ss":"76","Sn":"13","Sa":"5.85","Sd":"0.79","Og":"3","Os":"216","On":"37","Oa":"5.85","Od":"0.99","Mp":"36","Ap":"1","p":{"1":{"n":5,"e":3925,"c":8},"2":{"n":6,"e":3912,"c":8},"3":{"n":7.5,"e":3898,"c":8},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":7},"15":{"n":6.5},"16":{"n":7},"17":{"n":7}}},"c":9},{"i":253,"n":"Sertic","f":"Gr\u00e9gory","p":"M","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":9},{"i":314,"n":"Bedimo","f":"Henri","p":"D","r":4,"s":{"n":0},"c":9},{"i":325,"n":"Hubocan","f":"Tomas","p":"D","r":3,"s":{"n":0,"Os":"5","On":"1","Oa":"5.5","Dp":"1"},"c":9},{"i":480,"n":"Khaoui","f":"Saif-Eddine","p":"M","r":7,"s":{"s":"24","n":"5","a":"4.9","d":"0.37","Og":"1","Os":"92","On":"20","Oa":"4.63","Od":"0.7","Mp":"18","Ap":"2","p":{"4":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":5,"s":1},"13":{"n":4.5,"s":1}}},"c":9},{"i":578,"n":"Escales","f":"Florian","p":"G","r":1,"s":{"n":0},"c":9},{"i":800,"n":"Mandanda","f":"Steve","p":"G","r":15,"s":{"s":"92","n":"17","a":"5.44","d":"1.11","Ss":"92","Sn":"17","Sa":"5.44","Sd":"1.11","Os":"195","On":"36","Oa":"5.43","Od":"1.03","Gp":"36","p":{"1":{"n":5},"2":{"n":7.5},"3":{"n":6},"4":{"n":6.5},"5":{"n":6},"6":{"n":4},"7":{"n":7},"8":{"n":5.5},"9":{"n":4},"10":{"n":6},"11":{"n":3.5},"12":{"n":5},"13":{"n":6},"14":{"n":6},"15":{"n":4},"16":{"n":6},"17":{"n":4.5}}},"c":9},{"i":1158,"n":"Luiz Gustavo","f":"","p":"M","r":17,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Og":"2","Os":"96","On":"18","Oa":"5.36","Od":"0.8","Mp":"14","Dp":"4","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5.5,"s":1}}},"c":9},{"i":1162,"n":"Rami","f":"Adil","p":"D","r":5,"s":{"n":0,"Os":"19","On":"4","Oa":"4.88","Od":"0.65","Dp":"4"},"c":9},{"i":1181,"n":"Amavi","f":"Jordan","p":"D","r":14,"s":{"g":"1","s":"75","n":"15","a":"5.03","d":"0.74","Sg":"1","Ss":"18","Sn":"3","Sa":"6","Sd":"0.71","Og":"1","Os":"156","On":"31","Oa":"5.05","Od":"0.66","Mp":"1","Dp":"30","p":{"1":{"n":4},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":3.5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":5},"15":{"n":5},"16":{"n":6.5},"17":{"n":6.5,"g":1}}},"c":9},{"i":1250,"n":"Kamara","f":"Boubacar","p":"D","r":19,"s":{"g":"1","s":"75","n":"14","a":"5.36","d":"1.08","Sg":"1","Ss":"46","Sn":"8","Sa":"5.81","Sd":"1.14","Og":"2","Os":"164","On":"31","Oa":"5.29","Od":"1.01","Mp":"3","Dp":"28","p":{"1":{"n":4},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":4},"6":{"n":5.5},"10":{"n":7.5,"g":1},"11":{"n":4},"12":{"n":7.5},"13":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":6},"17":{"n":5.5}}},"c":9},{"i":1522,"n":"Mitroglou","f":"Kostas","p":"A","r":8,"s":{"n":0,"Os":"7","On":"2","Oa":"3.75","Od":"0.25","Ap":"2"},"c":9},{"i":1525,"n":"Abdennour","f":"Aymen","p":"D","r":4,"s":{"n":0},"c":9},{"i":1553,"n":"Sari","f":"Yusuf","p":"A","r":1,"s":{"n":0},"c":9},{"i":1726,"n":"Gonz\u00e1lez","f":"\u00c1lvaro","p":"D","r":10,"s":{"s":"48","n":"9","a":"5.33","d":"0.58","Ss":"11","Sn":"2","Sa":"5.5","Og":"1","Os":"135","On":"26","Oa":"5.19","Od":"0.87","Dp":"26","p":{"2":{"n":5.5},"3":{"n":6},"4":{"n":6},"5":{"n":5},"6":{"n":5},"12":{"n":5.5},"13":{"n":4},"16":{"n":5.5,"s":1},"17":{"n":5.5}}},"c":9},{"i":2634,"n":"Perrin","f":"Lucas","p":"D","r":7,"s":{"s":"20","n":"4","a":"5","d":"1.06","Os":"20","On":"4","Oa":"5","Od":"1.06","Dp":"4","p":{"7":{"n":6},"8":{"n":4.5},"9":{"n":3.5},"14":{"n":6}}},"c":9},{"i":2635,"n":"Marasovic","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":9},{"i":2712,"n":"Caleta-Car","f":"Duje","p":"D","r":13,"s":{"g":"1","s":"72","n":"14","a":"5.14","d":"1.08","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.62","Og":"1","Os":"159","On":"30","Oa":"5.3","Od":"0.98","Dp":"30","p":{"1":{"n":3},"3":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":6},"8":{"n":6,"g":1},"9":{"n":3.5},"10":{"n":6.5},"11":{"n":3.5},"12":{"n":5.5},"13":{"n":5.5},"15":{"n":6.5},"16":{"n":6},"17":{"n":5}}},"c":9},{"i":2779,"n":"Chabrolle","f":"Florian","p":"M","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":9},{"i":2835,"n":"Strootman","f":"Kevin","p":"M","r":12,"s":{"g":"1","s":"84","n":"16","a":"5.28","d":"0.83","Sg":"1","Ss":"41","Sn":"8","Sa":"5.19","Sd":"0.9","Og":"1","Os":"159","On":"31","Oa":"5.15","Od":"0.77","Mp":"31","p":{"1":{"n":4},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":6},"5":{"n":6.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":5},"10":{"n":7,"g":1},"11":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":5},"16":{"n":5.5},"17":{"n":5,"s":1}}},"c":9},{"i":2860,"n":"Radonjic","f":"Nemanja","p":"M","r":17,"s":{"g":"3","s":"63","n":"13","a":"4.85","d":"0.91","Sg":"3","Ss":"23","Sn":"4","Sa":"5.75","Sd":"0.75","Og":"3","Os":"108","On":"24","Oa":"4.52","Od":"0.84","Mp":"4","Ap":"20","p":{"1":{"n":3},"2":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5},"10":{"n":5.5},"12":{"n":4.5,"s":1},"14":{"n":6,"g":1,"s":1},"15":{"n":6,"g":1,"s":1},"16":{"n":4.5,"s":1},"17":{"n":6.5,"g":1,"s":1}}},"c":9},{"i":2939,"n":"Phliponeau","f":"Alexandre","p":"M","r":1,"s":{"n":0},"c":9},{"i":2953,"n":"Mohamed Abdallah","f":"Abdallah","p":"D","r":1,"s":{"n":0},"c":9},{"i":6021,"n":"Benedetto","f":"Dar\u00edo","p":"A","r":22,"s":{"g":"6","s":"82","n":"16","a":"5.16","d":"1.35","Og":"6","Os":"82","On":"16","Oa":"5.16","Od":"1.35","Ap":"16","p":{"1":{"n":4,"s":1},"2":{"n":2.5},"3":{"n":6.5,"g":1},"4":{"n":6.5,"g":1},"5":{"n":7.5,"g":2},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":6},"11":{"n":3.5},"12":{"n":4},"13":{"n":4.5},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":5}}},"c":9},{"i":6154,"n":"Dia","f":"Ahmadou","p":"G","r":2,"s":{"n":0},"c":9},{"i":6158,"n":"Ak\u00e9","f":"Marley","p":"M","r":8,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Os":"19","On":"4","Oa":"4.88","Od":"0.22","Mp":"3","Ap":"1","p":{"8":{"n":4.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"14":{"n":5,"s":1}}},"c":9},{"i":6163,"n":"Lihadji","f":"Isaac","p":"A","r":6,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Mp":"2","p":{"7":{"n":4.5,"s":1},"9":{"n":4.5,"s":1}}},"c":9},{"i":6199,"n":"Ngapandouetnbu","f":"Simon","p":"G","r":2,"s":{"n":0},"c":9},{"i":6278,"n":"Nkounkou","f":"Niels","p":"D","r":1,"s":{"n":0},"c":9},{"i":55,"n":"Toivonen","f":"Ola","p":"A","r":5,"s":{"n":0},"c":10},{"i":59,"n":"Jullien","f":"Christopher","p":"D","r":16,"s":{"n":0,"Og":"1","Os":"92","On":"18","Oa":"5.14","Od":"1.15","Dp":"18","p":{"24":{"n":6}}},"c":10},{"i":60,"n":"Vainqueur","f":"William","p":"M","r":13,"s":{"s":"77","n":"15","a":"5.13","d":"0.9","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"90","On":"18","Oa":"5.03","Od":"0.9","Mp":"18","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4},"4":{"n":6.5},"5":{"n":5},"6":{"n":6},"7":{"n":5},"8":{"n":4},"9":{"n":4.5},"10":{"n":6.5},"11":{"n":6},"12":{"n":5},"13":{"n":3.5},"16":{"n":5.5},"17":{"n":4.5}}},"c":10},{"i":122,"n":"Reynet","f":"Baptiste","p":"G","r":17,"s":{"s":"91","n":"17","a":"5.38","d":"1.17","Ss":"91","Sn":"17","Sa":"5.38","Sd":"1.17","Os":"177","On":"32","Oa":"5.55","Od":"1.19","Gp":"32","p":{"24":{"n":5},"1":{"n":7},"2":{"n":7},"3":{"n":7.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":4.5},"9":{"n":4},"10":{"n":5},"11":{"n":4},"12":{"n":5.5},"13":{"n":3.5},"14":{"n":6},"15":{"n":6.5},"16":{"n":6},"17":{"n":4}}},"c":10},{"i":144,"n":"Issiaga Sylla","f":"","p":"D","r":8,"s":{"s":"76","n":"17","a":"4.5","d":"0.99","Ss":"76","Sn":"17","Sa":"4.5","Sd":"0.99","Og":"1","Os":"164","On":"36","Oa":"4.56","Od":"1.01","Mp":"5","Dp":"31","p":{"24":{"n":5},"1":{"n":4.5},"2":{"n":7},"3":{"n":3.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":4},"9":{"n":3},"10":{"n":4.5},"11":{"n":4},"12":{"n":4.5},"13":{"n":3},"14":{"n":5},"15":{"n":5},"16":{"n":4.5},"17":{"n":3.5}}},"c":10},{"i":165,"n":"Said","f":"Wesley","p":"A","r":12,"s":{"g":"2","s":"70","n":"14","a":"5","d":"0.89","Sg":"1","Ss":"24","Sn":"5","Sa":"4.9","Sd":"0.97","Og":"5","Os":"169","On":"34","Oa":"4.99","Od":"1.14","Mp":"12","Dp":"1","Ap":"21","p":{"2":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":6.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":6,"g":1,"s":1},"9":{"n":4.5},"10":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"15":{"n":5.5},"16":{"n":4,"s":1},"17":{"n":6.5,"g":1}}},"c":10},{"i":191,"n":"Moubandje","f":"Fran\u00e7ois","p":"D","r":8,"s":{"n":0,"Os":"28","On":"6","Oa":"4.67","Od":"0.69","Dp":"6"},"c":10},{"i":234,"n":"Bodiger","f":"Yann","p":"M","r":4,"s":{"n":0},"c":10},{"i":251,"n":"Durmaz","f":"Jimmy","p":"M","r":12,"s":{"n":0,"Og":"1","Os":"92","On":"20","Oa":"4.63","Od":"0.82","Mp":"17","Ap":"3","p":{"24":{"n":5}}},"c":10},{"i":260,"n":"Mubele","f":"Firmin Ndombe","p":"A","r":9,"s":{"n":0,"Og":"1","Os":"27","On":"6","Oa":"4.58","Od":"1.02","Ap":"6"},"c":10},{"i":261,"n":"Som\u00e1lia","f":"","p":"M","r":11,"s":{"n":0},"c":10},{"i":302,"n":"Jean","f":"Corentin","p":"A","r":6,"s":{"s":"4","n":"1","a":"4.5","Os":"47","On":"10","Oa":"4.7","Od":"0.64","Mp":"2","Ap":"8","p":{"24":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":10},{"i":328,"n":"Goicoechea","f":"Mauro","p":"G","r":7,"s":{"n":0,"Os":"29","On":"6","Oa":"4.83","Od":"0.9","Gp":"6"},"c":10},{"i":355,"n":"Moreira","f":"Steven","p":"D","r":7,"s":{"s":"43","n":"10","a":"4.3","d":"0.95","Os":"59","On":"14","Oa":"4.25","Od":"0.86","Mp":"2","Dp":"12","p":{"1":{"n":5.5,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"7":{"n":3.5},"8":{"n":5},"9":{"n":3},"11":{"n":3},"14":{"n":3.5}}},"c":10},{"i":359,"n":"Leya Iseka","f":"Aaron","p":"A","r":10,"s":{"g":"2","s":"65","n":"14","a":"4.68","d":"0.75","Sg":"1","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.41","Og":"3","Os":"128","On":"28","Oa":"4.59","Od":"0.6","Ap":"28","p":{"24":{"n":4},"1":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4},"9":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5.5,"g":1,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":10},{"i":394,"n":"Amian","f":"Kelvin","p":"D","r":8,"s":{"s":"70","n":"16","a":"4.38","d":"1.08","Ss":"3","Sn":"1","Sa":"3","Os":"150","On":"33","Oa":"4.56","Od":"1.12","Mp":"1","Dp":"32","p":{"1":{"n":5},"2":{"n":6},"3":{"n":3.5},"4":{"n":7},"5":{"n":4.5},"6":{"n":4},"7":{"n":4,"s":1},"8":{"n":4},"9":{"n":3.5},"10":{"n":5},"11":{"n":3},"12":{"n":5},"13":{"n":3},"14":{"n":4.5,"s":1},"15":{"n":5},"17":{"n":3}}},"c":10},{"i":449,"n":"Makengo","f":"Jean-Victor","p":"M","r":9,"s":{"g":"2","s":"58","n":"12","a":"4.88","d":"1","Og":"2","Os":"127","On":"26","Oa":"4.9","Od":"0.81","Mp":"21","Ap":"5","p":{"1":{"n":5},"2":{"n":6.5,"g":1},"3":{"n":3.5},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4},"8":{"n":5},"9":{"n":3.5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"15":{"n":4.5,"s":1}}},"c":10},{"i":517,"n":"Vidal","f":"Marc","p":"G","r":1,"s":{"n":0},"c":10},{"i":556,"n":"Sangar\u00e9","f":"Ibrahim","p":"M","r":8,"s":{"s":"70","n":"15","a":"4.7","d":"0.81","Ss":"22","Sn":"5","Sa":"4.5","Sd":"0.71","Os":"163","On":"33","Oa":"4.94","Od":"0.93","Mp":"33","p":{"24":{"n":4.5},"1":{"n":5},"2":{"n":6},"3":{"n":4},"5":{"n":5.5},"6":{"n":3.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":3.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":3.5},"17":{"n":4}}},"c":10},{"i":1024,"n":"Sanogo","f":"Yaya","p":"A","r":16,"s":{"g":"3","s":"47","n":"9","a":"5.22","d":"1.03","Sg":"1","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Og":"6","Os":"128","On":"26","Oa":"4.94","Od":"1.06","Ap":"26","p":{"24":{"n":4.5,"s":1},"8":{"n":6,"s":1},"9":{"n":5,"s":1},"10":{"n":6.5,"g":1,"s":1},"11":{"n":3.5},"12":{"n":6,"g":1},"13":{"n":3.5},"14":{"n":5.5},"16":{"n":6,"g":1},"17":{"n":5,"s":1}}},"c":10},{"i":1025,"n":"Gradel","f":"Max-Alain","p":"A","r":13,"s":{"g":"3","s":"89","n":"17","a":"5.26","d":"1.15","Sg":"3","Ss":"89","Sn":"17","Sa":"5.26","Sd":"1.15","Og":"9","Os":"190","On":"37","Oa":"5.14","Od":"1.11","Mp":"23","Ap":"14","p":{"24":{"n":5.5,"g":1},"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":6},"5":{"n":7,"g":1},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6.5},"9":{"n":7},"10":{"n":5,"g":1},"11":{"n":7,"g":1},"12":{"n":5},"13":{"n":3},"14":{"n":4.5},"15":{"n":5},"16":{"n":5},"17":{"n":3.5}}},"c":10},{"i":1273,"n":"Boisgard","f":"Quentin","p":"M","r":8,"s":{"s":"50","n":"10","a":"5.05","d":"0.52","Os":"50","On":"10","Oa":"5.05","Od":"0.52","Mp":"8","Dp":"1","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":6},"6":{"n":5,"s":1},"7":{"n":4},"11":{"n":5,"s":1},"13":{"n":5.5,"s":1},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5}}},"c":10},{"i":1528,"n":"Dossevi","f":"Matthieu","p":"M","r":14,"s":{"g":"1","s":"91","n":"17","a":"5.38","d":"0.88","Sg":"1","Ss":"91","Sn":"17","Sa":"5.38","Sd":"0.88","Og":"3","Os":"180","On":"35","Oa":"5.14","Od":"0.9","Mp":"24","Ap":"11","p":{"24":{"n":4.5},"1":{"n":6},"2":{"n":6.5},"3":{"n":4.5,"s":1},"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":7},"11":{"n":6.5,"g":1},"12":{"n":5.5},"13":{"n":3},"14":{"n":5.5},"15":{"n":5.5,"s":1},"16":{"n":5},"17":{"n":5.5}}},"c":10},{"i":2621,"n":"Bostock","f":"John","p":"M","r":7,"s":{"n":0,"Os":"27","On":"6","Oa":"4.5","Od":"0.58","Mp":"6"},"c":10},{"i":2739,"n":"Manu Garc\u00eda","f":"","p":"M","r":8,"s":{"n":0,"Os":"72","On":"15","Oa":"4.8","Od":"0.73","Mp":"15","p":{"24":{"n":5,"s":1}}},"c":10},{"i":2780,"n":"El Mokkedem","f":"Hakim","p":"A","r":1,"s":{"n":0},"c":10},{"i":2781,"n":"Goncalves","f":"Mathieu","p":"D","r":5,"s":{"ao":"1","s":"13","n":"4","a":"3.38","d":"1.08","Oao":"1","Os":"13","On":"4","Oa":"3.38","Od":"1.08","Dp":"4","p":{"3":{"n":2,"a":1},"10":{"n":5,"s":1},"12":{"n":3},"16":{"n":3.5}}},"c":10},{"i":2786,"n":"Taoui","f":"Adil","p":"A","r":1,"s":{"n":0},"c":10},{"i":2824,"n":"Mbia","f":"St\u00e9phane","p":"M","r":6,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Od":"1","Dp":"2"},"c":10},{"i":2942,"n":"N'Goumou Minpole","f":"Nathan","p":"M","r":4,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1"},"c":10},{"i":2950,"n":"Sidibe","f":"Kalidou","p":"M","r":5,"s":{"s":"15","n":"3","a":"5","Og":"1","Os":"82","On":"17","Oa":"4.82","Od":"0.64","Mp":"17","p":{"2":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1}}},"c":10},{"i":2960,"n":"Diakite","f":"Bafode","p":"D","r":7,"s":{"s":"36","n":"7","a":"5.21","d":"0.92","Og":"1","Os":"69","On":"14","Oa":"4.96","Od":"0.93","Mp":"2","Dp":"12","p":{"24":{"n":5},"1":{"n":5.5},"2":{"n":6},"3":{"n":3.5},"4":{"n":6.5},"5":{"n":4.5},"6":{"n":5},"10":{"n":5.5}}},"c":10},{"i":2962,"n":"Bessile","f":"Loic","p":"D","r":1,"s":{"n":0},"c":10},{"i":2996,"n":"Shoji","f":"Gen","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"92","On":"19","Oa":"4.84","Od":"0.9","Dp":"19","p":{"24":{"n":4},"7":{"n":5}}},"c":10},{"i":3228,"n":"Kone","f":"Kouadio","p":"M","r":6,"s":{"s":"17","n":"4","a":"4.38","d":"0.89","Ss":"5","Sn":"1","Sa":"5.5","Os":"21","On":"5","Oa":"4.2","Od":"0.87","Mp":"5","p":{"12":{"n":4.5},"13":{"n":4.5},"15":{"n":3},"17":{"n":5.5,"s":1}}},"c":10},{"i":3753,"n":"Diarra","f":"Moussa","p":"D","r":2,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"13":{"n":3.5}}},"c":10},{"i":3798,"n":"Koulouris","f":"Efthymios","p":"A","r":12,"s":{"g":"4","s":"77","n":"16","a":"4.81","d":"1.07","Ss":"3","Sn":"1","Sa":"3.5","Og":"4","Os":"77","On":"16","Oa":"4.81","Od":"1.07","Ap":"16","p":{"1":{"n":6,"g":1},"2":{"n":6},"3":{"n":3.5},"4":{"n":6.5,"g":1},"5":{"n":4.5,"s":1},"6":{"n":3.5},"7":{"n":3.5},"8":{"n":6,"g":1,"s":1},"9":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":4,"s":1},"14":{"n":4},"15":{"n":5},"17":{"n":3.5}}},"c":10},{"i":4036,"n":"Rogel","f":"Agust\u00edn","p":"D","r":6,"s":{"s":"22","n":"5","a":"4.5","d":"0.45","Ss":"17","Sn":"4","Sa":"4.38","Sd":"0.41","Os":"22","On":"5","Oa":"4.5","Od":"0.45","Dp":"5","p":{"1":{"n":5},"14":{"n":4},"15":{"n":5},"16":{"n":4.5},"17":{"n":4}}},"c":10},{"i":6155,"n":"Zobo","f":"St\u00e9phane","p":"A","r":2,"s":{"n":0},"c":10},{"i":6156,"n":"Adli","f":"Amine","p":"M","r":1,"s":{"n":0},"c":10},{"i":6157,"n":"Rouault","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":10},{"i":6159,"n":"Sanna","f":"Sam","p":"M","r":1,"s":{"n":0},"c":10},{"i":6164,"n":"Bloch","f":"Florentin","p":"G","r":1,"s":{"n":0},"c":10},{"i":6202,"n":"Isimat-Mirin","f":"Nicolas","p":"D","r":11,"s":{"g":"1","s":"55","n":"12","a":"4.58","d":"0.67","Sg":"1","Ss":"55","Sn":"12","Sa":"4.58","Sd":"0.67","Og":"1","Os":"55","On":"12","Oa":"4.58","Od":"0.67","Dp":"12","p":{"6":{"n":5},"7":{"n":4},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4},"14":{"n":4},"15":{"n":5},"16":{"n":4.5},"17":{"n":4,"g":1}}},"c":10},{"i":6308,"n":"Semanoun","f":"Sacha","p":"M","r":1,"s":{"n":0},"c":10},{"i":97,"n":"Cohade","f":"Renaud","p":"M","r":8,"s":{"g":"1","s":"54","n":"11","a":"4.91","d":"0.82","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Og":"1","Os":"54","On":"11","Oa":"4.91","Od":"0.82","Mp":"11","p":{"1":{"n":5},"2":{"n":7,"g":1},"3":{"n":3.5},"4":{"n":4},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5},"15":{"n":5},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":11},{"i":273,"n":"Delecroix","f":"Paul","p":"G","r":13,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Gp":"2","p":{"16":{"n":5,"s":1},"17":{"n":3.5}}},"c":11},{"i":337,"n":"Nguette","f":"Opa","p":"M","r":9,"s":{"g":"1","s":"73","n":"16","a":"4.59","d":"0.97","Og":"1","Os":"73","On":"16","Oa":"4.59","Od":"0.97","Mp":"3","Ap":"13","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3},"4":{"n":5},"5":{"n":4},"6":{"n":4},"7":{"n":4},"8":{"n":4},"9":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":7,"g":1},"13":{"n":5},"14":{"n":4},"15":{"n":4},"16":{"n":4}}},"c":11},{"i":408,"n":"N'Doram","f":"Kevin","p":"D","r":10,"s":{"s":"51","n":"10","a":"5.15","d":"0.67","Os":"56","On":"11","Oa":"5.14","Od":"0.64","Mp":"10","Dp":"1","p":{"1":{"n":4.5},"3":{"n":4.5},"5":{"n":5},"7":{"n":6.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"14":{"n":4.5}}},"c":11},{"i":487,"n":"Basin","f":"Nicolas","p":"D","r":4,"s":{"n":0},"c":11},{"i":498,"n":"Boulaya","f":"Farid","p":"M","r":12,"s":{"s":"59","n":"12","a":"4.96","d":"0.56","Os":"59","On":"12","Oa":"4.96","Od":"0.56","Mp":"7","Ap":"5","p":{"1":{"n":4},"2":{"n":6},"3":{"n":4.5,"s":1},"4":{"n":5},"6":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":6,"s":1},"11":{"n":5},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1}}},"c":11},{"i":576,"n":"Udol","f":"Matthieu","p":"D","r":8,"s":{"s":"21","n":"4","a":"5.25","d":"0.75","Ss":"4","Sn":"1","Sa":"4.5","Os":"21","On":"4","Oa":"5.25","Od":"0.75","Dp":"4","p":{"13":{"n":5,"s":1},"14":{"n":5},"15":{"n":6.5},"17":{"n":4.5}}},"c":11},{"i":884,"n":"Adama Traor\u00e9","f":"","p":"M","r":13,"s":{"g":"1","s":"77","n":"14","a":"5.5","d":"0.73","Sg":"1","Ss":"45","Sn":"8","Sa":"5.69","Sd":"0.79","Og":"1","Os":"82","On":"15","Oa":"5.47","Od":"0.72","Mp":"8","Ap":"7","p":{"1":{"n":4.5,"e":3918,"c":13,"s":1},"3":{"n":5,"e":3903,"c":13,"s":1},"5":{"n":5,"s":1},"6":{"n":6,"s":1},"7":{"n":6},"8":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":6.5},"13":{"n":4.5},"14":{"n":7,"g":1},"15":{"n":6},"16":{"n":6},"17":{"n":5.5}}},"c":11},{"i":1185,"n":"Diallo","f":"Habib","p":"A","r":21,"s":{"g":"9","s":"87","n":"17","a":"5.12","d":"1.37","Sg":"9","Ss":"87","Sn":"17","Sa":"5.12","Sd":"1.37","Og":"9","Os":"87","On":"17","Oa":"5.12","Od":"1.37","Ap":"17","p":{"1":{"n":6,"g":1},"2":{"n":8,"g":2},"3":{"n":3.5},"4":{"n":4},"5":{"n":3.5},"6":{"n":6,"g":1},"7":{"n":7,"g":1},"8":{"n":6,"g":1},"9":{"n":4},"10":{"n":6,"g":1},"11":{"n":4},"12":{"n":6.5,"g":1},"13":{"n":3.5},"14":{"n":4},"15":{"n":6,"g":1},"16":{"n":5},"17":{"n":4}}},"c":11},{"i":1232,"n":"Niane","f":"Ibrahima","p":"A","r":11,"s":{"g":"2","s":"56","n":"12","a":"4.71","d":"0.69","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"56","On":"12","Oa":"4.71","Od":"0.69","Ap":"12","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":3},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5.5,"g":1,"s":1},"9":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1},"17":{"n":6,"g":1,"s":1}}},"c":11},{"i":1248,"n":"Ma\u00efga","f":"Habib","p":"M","r":15,"s":{"s":"90","n":"16","a":"5.63","d":"0.86","Ss":"77","Sn":"14","Sa":"5.54","Sd":"0.83","Os":"90","On":"16","Oa":"5.63","Od":"0.86","Mp":"16","p":{"1":{"n":5.5},"2":{"n":7},"4":{"n":6.5},"5":{"n":4},"6":{"n":5.5},"7":{"n":7},"8":{"n":7},"9":{"n":4.5},"10":{"n":6},"11":{"n":5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":5}}},"c":11},{"i":1266,"n":"Poblete","f":"Ger\u00f3nimo","p":"M","r":10,"s":{"n":0},"c":11},{"i":1415,"n":"Oukidja","f":"Alexandre","p":"G","r":12,"s":{"s":"86","n":"16","a":"5.38","d":"1.1","Os":"86","On":"16","Oa":"5.38","Od":"1.1","Gp":"16","p":{"1":{"n":5},"2":{"n":7.5},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":6.5},"8":{"n":5.5},"9":{"n":4},"10":{"n":6},"11":{"n":6.5},"12":{"n":4},"13":{"n":7},"14":{"n":6},"15":{"n":5},"16":{"n":4}}},"c":11},{"i":3757,"n":"Dia N'Diaye","f":"Amadou","p":"A","r":1,"s":{"n":0},"c":11},{"i":3758,"n":"Sabaly","f":"Cheick Tidiane","p":"A","r":1,"s":{"n":0},"c":11},{"i":3763,"n":"Pierre","f":"Leverton","p":"A","r":1,"s":{"n":0},"c":11},{"i":3773,"n":"Dietsch","f":"Guillaume","p":"G","r":1,"s":{"n":0},"c":11},{"i":3776,"n":"Cabit","f":"Manuel","p":"D","r":4,"s":{"s":"14","n":"3","a":"4.67","d":"1.25","Os":"14","On":"3","Oa":"4.67","Od":"1.25","Dp":"3","p":{"10":{"n":6},"11":{"n":3},"12":{"n":5}}},"c":11},{"i":3777,"n":"Mroivili","f":"Raouf","p":"M","r":1,"s":{"n":0},"c":11},{"i":3781,"n":"Fofana","f":"Mamadou","p":"D","r":9,"s":{"s":"69","n":"14","a":"4.93","d":"0.73","Ss":"54","Sn":"11","Sa":"4.95","Sd":"0.75","Os":"69","On":"14","Oa":"4.93","Od":"0.73","Mp":"5","Dp":"9","p":{"1":{"n":5.5},"2":{"n":5,"s":1},"4":{"n":4},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":6},"11":{"n":4},"12":{"n":4.5},"13":{"n":6},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4},"17":{"n":4}}},"c":11},{"i":3782,"n":"Adama Traor\u00e9","f":"","p":"A","r":2,"s":{"n":0},"c":11},{"i":3783,"n":"Monteiro","f":"Jamiro","p":"M","r":6,"s":{"n":0},"c":11},{"i":3787,"n":"Centonze","f":"Fabien","p":"D","r":10,"s":{"s":"82","n":"17","a":"4.82","d":"0.92","Ss":"82","Sn":"17","Sa":"4.82","Sd":"0.92","Os":"82","On":"17","Oa":"4.82","Od":"0.92","Dp":"17","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":3},"4":{"n":5},"5":{"n":5},"6":{"n":4},"7":{"n":6},"8":{"n":3.5},"9":{"n":3.5},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5},"15":{"n":6},"16":{"n":5},"17":{"n":4}}},"c":11},{"i":3790,"n":"Angban","f":"Victorien","p":"M","r":9,"s":{"s":"57","n":"11","a":"5.18","d":"0.61","Os":"57","On":"11","Oa":"5.18","Od":"0.61","Mp":"11","p":{"1":{"n":5,"s":1},"2":{"n":6},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":6},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":6},"14":{"n":5.5}}},"c":11},{"i":3791,"n":"Gakpa","f":"Marvin","p":"M","r":8,"s":{"s":"45","n":"9","a":"5","d":"0.47","Os":"45","On":"9","Oa":"5","Od":"0.47","Mp":"7","Ap":"2","p":{"1":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5},"8":{"n":5},"9":{"n":4},"10":{"n":5.5},"11":{"n":5,"s":1},"16":{"n":5.5,"s":1}}},"c":11},{"i":3800,"n":"Ambrose","f":"Thierry","p":"A","r":7,"s":{"s":"53","n":"12","a":"4.46","d":"0.38","Ss":"17","Sn":"4","Sa":"4.25","Sd":"0.25","Os":"53","On":"12","Oa":"4.46","Od":"0.38","Mp":"1","Ap":"11","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":4},"14":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":4}}},"c":11},{"i":3809,"n":"Delaine","f":"Thomas","p":"D","r":7,"s":{"s":"52","n":"12","a":"4.38","d":"0.68","Ss":"7","Sn":"2","Sa":"3.75","Sd":"0.25","Os":"52","On":"12","Oa":"4.38","Od":"0.68","Mp":"1","Dp":"11","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":5},"8":{"n":4},"9":{"n":4},"13":{"n":5},"16":{"n":4},"17":{"n":3.5}}},"c":11},{"i":3814,"n":"Sunzu","f":"Stoppila","p":"D","r":11,"s":{"s":"72","n":"15","a":"4.83","d":"0.98","Ss":"40","Sn":"8","Sa":"5","Sd":"0.97","Os":"72","On":"15","Oa":"4.83","Od":"0.98","Dp":"15","p":{"1":{"n":5},"2":{"n":6},"3":{"n":3},"4":{"n":5},"5":{"n":4},"6":{"n":4},"7":{"n":5.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4},"13":{"n":6},"14":{"n":6,"s":1},"15":{"n":5},"16":{"n":5.5},"17":{"n":3}}},"c":11},{"i":3815,"n":"Boye","f":"John","p":"D","r":9,"s":{"s":"64","n":"14","a":"4.61","d":"0.76","Ss":"24","Sn":"5","Sa":"4.8","Sd":"0.75","Os":"64","On":"14","Oa":"4.61","Od":"0.76","Dp":"14","p":{"2":{"n":6},"3":{"n":4},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":4},"10":{"n":3.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":3.5}}},"c":11},{"i":6003,"n":"Yade","f":"Papa Ndiaga","p":"M","r":3,"s":{"n":0},"c":11},{"i":6151,"n":"L\u00f4","f":"Aboubacar","p":"D","r":3,"s":{"n":0},"c":11},{"i":6152,"n":"Lahssaini","f":"Sami","p":"M","r":5,"s":{"n":0},"c":11},{"i":6289,"n":"Boubacar Traore","f":"","p":"M","r":1,"s":{"n":0},"c":11},{"i":6341,"n":"Mikautadze","f":"Georges","p":"A","r":1,"s":{"n":0},"c":11},{"i":101,"n":"Andr\u00e9","f":"Benjamin","p":"M","r":20,"s":{"g":"1","s":"93","n":"16","a":"5.81","d":"0.81","Sg":"1","Ss":"40","Sn":"7","Sa":"5.79","Sd":"0.92","Og":"3","Os":"161","On":"29","Oa":"5.57","Od":"0.9","Mp":"29","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":7},"4":{"n":5.5},"5":{"n":7},"6":{"n":5},"7":{"n":5.5,"s":1},"8":{"n":6},"9":{"n":5},"11":{"n":7,"g":1},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":5,"s":1},"16":{"n":7},"17":{"n":6}}},"c":12},{"i":181,"n":"Soumaoro","f":"Adama","p":"D","r":8,"s":{"g":"1","s":"28","n":"5","a":"5.6","d":"0.37","Og":"1","Os":"72","On":"13","Oa":"5.54","Od":"0.66","Dp":"13","p":{"3":{"n":5,"s":1},"7":{"n":6},"9":{"n":5.5},"11":{"n":5.5,"s":1},"12":{"n":6,"g":1}}},"c":12},{"i":192,"n":"Benzia","f":"Yassine","p":"A","r":12,"s":{"n":0},"c":12},{"i":316,"n":"Maignan","f":"Mike","p":"G","r":22,"s":{"s":"92","n":"17","a":"5.44","d":"0.8","Ss":"92","Sn":"17","Sa":"5.44","Sd":"0.8","Os":"212","On":"38","Oa":"5.58","Od":"0.75","Gp":"38","p":{"25":{"n":6},"1":{"n":6},"2":{"n":5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":6},"12":{"n":3},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":6.5},"17":{"n":5.5}}},"c":12},{"i":425,"n":"Xeka","f":"","p":"M","r":8,"s":{"s":"45","n":"9","a":"5","d":"0.24","Ss":"25","Sn":"5","Sa":"5","Sd":"0.32","Og":"1","Os":"103","On":"20","Oa":"5.15","Od":"0.74","Mp":"20","p":{"25":{"n":4.5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5},"13":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":5}}},"c":12},{"i":430,"n":"Bahlouli","f":"Fares","p":"M","r":4,"s":{"n":0},"c":12},{"i":455,"n":"Ikon\u00e9","f":"Jonathan","p":"M","r":17,"s":{"g":"2","s":"89","n":"17","a":"5.26","d":"0.81","Sg":"2","Ss":"89","Sn":"17","Sa":"5.26","Sd":"0.81","Og":"4","Os":"197","On":"38","Oa":"5.2","Od":"0.81","Mp":"32","Ap":"6","p":{"25":{"n":5.5},"1":{"n":5.5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":6},"12":{"n":3},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":6,"g":1},"17":{"n":6.5}}},"c":12},{"i":482,"n":"Bamba","f":"Jonathan","p":"M","r":20,"s":{"g":"1","s":"82","n":"15","a":"5.5","d":"0.95","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.47","Og":"7","Os":"200","On":"36","Oa":"5.56","Od":"1.21","Mp":"33","Ap":"3","p":{"25":{"n":4.5},"1":{"n":6},"2":{"n":5},"3":{"n":8,"g":1},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"8":{"n":6},"9":{"n":5},"10":{"n":5},"11":{"n":4,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":6.5}}},"c":12},{"i":819,"n":"Jos\u00e9 Fonte","f":"","p":"D","r":18,"s":{"g":"1","s":"78","n":"15","a":"5.23","d":"0.79","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.68","Og":"3","Os":"191","On":"35","Oa":"5.47","Od":"0.89","Dp":"35","p":{"25":{"n":5.5},"1":{"n":6},"2":{"n":5.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":6},"6":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":6,"g":1},"11":{"n":5},"13":{"n":5.5},"14":{"n":5},"15":{"n":4},"16":{"n":5.5},"17":{"n":6}}},"c":12},{"i":954,"n":"R\u00e9my","f":"Lo\u00efc","p":"A","r":11,"s":{"g":"3","s":"46","n":"10","a":"4.65","d":"0.95","Og":"9","Os":"124","On":"25","Oa":"4.98","Od":"0.92","Ap":"25","p":{"25":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":3.5},"7":{"n":6,"g":1},"8":{"n":4,"s":1},"9":{"n":6,"g":1},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":3.5},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1}}},"c":12},{"i":1020,"n":"Pied","f":"J\u00e9r\u00e9my","p":"D","r":7,"s":{"s":"18","n":"4","a":"4.63","d":"0.96","Os":"68","On":"14","Oa":"4.86","Od":"0.89","Dp":"14","p":{"25":{"n":5},"5":{"n":5},"8":{"n":5},"10":{"n":3},"15":{"n":5.5}}},"c":12},{"i":1167,"n":"Thiago Maia","f":"","p":"M","r":7,"s":{"s":"15","n":"3","a":"5","Os":"87","On":"17","Oa":"5.15","Od":"0.64","Mp":"17","p":{"25":{"n":4.5,"s":1},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"10":{"n":5,"s":1}}},"c":12},{"i":1184,"n":"Jakubech","f":"Adam","p":"G","r":7,"s":{"n":0},"c":12},{"i":1202,"n":"Boukholda","f":"Chahreddine","p":"M","r":3,"s":{"n":0},"c":12},{"i":1215,"n":"Luiz Ara\u00fajo","f":"","p":"A","r":9,"s":{"g":"2","s":"58","n":"11","a":"5.27","d":"0.86","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"129","On":"26","Oa":"4.98","Od":"0.8","Mp":"7","Ap":"19","p":{"25":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":7,"g":1},"6":{"n":5},"8":{"n":7,"g":1},"9":{"n":5,"s":1},"10":{"n":5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":12},{"i":1226,"n":"Dabila","f":"Kouadio","p":"D","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.75","Dp":"2"},"c":12},{"i":1234,"n":"Edgar I\u00e9","f":"","p":"D","r":5,"s":{"n":0,"Os":"51","On":"11","Oa":"4.68","Od":"0.86","Dp":"11"},"c":12},{"i":1267,"n":"Sadzoute","f":"Scotty","p":"A","r":1,"s":{"n":0},"c":12},{"i":1276,"n":"Faraj","f":"Imad","p":"M","r":2,"s":{"n":0},"c":12},{"i":1541,"n":"Koffi","f":"Kouakou","p":"G","r":3,"s":{"n":0},"c":12},{"i":2021,"n":"Renato Sanches","f":"","p":"M","r":10,"s":{"s":"44","n":"8","a":"5.5","d":"0.25","Ss":"22","Sn":"4","Sa":"5.63","Sd":"0.22","Os":"44","On":"8","Oa":"5.5","Od":"0.25","Mp":"8","p":{"4":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5.5},"14":{"n":5.5,"s":1},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":6}}},"c":12},{"i":2037,"n":"Verite","f":"Benjamin","p":"M","r":1,"s":{"n":0},"c":12},{"i":2039,"n":"Soumar\u00e9","f":"Boubakary","p":"M","r":11,"s":{"s":"75","n":"15","a":"5","d":"0.77","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Og":"1","Os":"139","On":"27","Oa":"5.17","Od":"0.84","Mp":"27","p":{"1":{"n":4.5},"2":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":6},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"16":{"n":5.5},"17":{"n":5,"s":1}}},"c":12},{"i":2328,"n":"Weah","f":"Timothy","p":"A","r":7,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"1","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5,"s":1}}},"c":12},{"i":2512,"n":"Rui Fonte","f":"","p":"A","r":8,"s":{"n":0,"Og":"1","Os":"42","On":"9","Oa":"4.67","Od":"0.53","Ap":"9"},"c":12},{"i":2652,"n":"Postolachi","f":"Virgiliu","p":"A","r":1,"s":{"n":0},"c":12},{"i":2714,"n":"Zeki \u00c7elik","f":"Mehmet","p":"D","r":11,"s":{"ao":"1","s":"63","n":"13","a":"4.88","d":"1","Ss":"10","Sn":"2","Sa":"5","Og":"1","Oao":"1","Os":"154","On":"30","Oa":"5.13","Od":"0.92","Mp":"2","Dp":"28","p":{"1":{"n":4.5,"a":1},"2":{"n":5},"3":{"n":7},"4":{"n":4.5},"6":{"n":5},"7":{"n":6},"9":{"n":4.5},"11":{"n":6},"12":{"n":3},"13":{"n":4.5},"14":{"n":3.5},"16":{"n":5},"17":{"n":5}}},"c":12},{"i":2738,"n":"Gabriel","f":"","p":"D","r":15,"s":{"ao":"1","s":"75","n":"14","a":"5.39","d":"0.54","Sao":"1","Ss":"42","Sn":"8","Sa":"5.25","Sd":"0.61","Og":"1","Oao":"1","Os":"152","On":"27","Oa":"5.63","Od":"0.76","Mp":"1","Dp":"26","p":{"25":{"n":5.5},"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":4,"a":1},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":6},"17":{"n":5.5}}},"c":12},{"i":2771,"n":"Zekaj","f":"Arton","p":"M","r":3,"s":{"n":0},"c":12},{"i":2784,"n":"Ouro-Sama","f":"Hakim","p":"D","r":1,"s":{"n":0},"c":12},{"i":2859,"n":"Fernando Costanza","f":"","p":"D","r":3,"s":{"n":0},"c":12},{"i":3122,"n":"Niasse","f":"Cheikh","p":"D","r":1,"s":{"n":0},"c":12},{"i":3123,"n":"Okou","f":"Teddy","p":"A","r":1,"s":{"n":0},"c":12},{"i":3359,"n":"Reinildo","f":"","p":"D","r":8,"s":{"s":"49","n":"10","a":"4.95","d":"0.35","Os":"63","On":"13","Oa":"4.88","Od":"0.4","Mp":"2","Dp":"11","p":{"1":{"n":5.5,"s":1},"5":{"n":5,"s":1},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":5},"15":{"n":5}}},"c":12},{"i":3751,"n":"Agouzoul","f":"Saad","p":"D","r":6,"s":{"n":0},"c":12},{"i":3796,"n":"L\u00e9o Jardim","f":"","p":"G","r":8,"s":{"n":0},"c":12},{"i":4031,"n":"Bradaric","f":"Domagoj","p":"D","r":10,"s":{"s":"64","n":"12","a":"5.33","d":"0.69","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"64","On":"12","Oa":"5.33","Od":"0.69","Dp":"12","p":{"1":{"n":5},"2":{"n":5},"3":{"n":7},"4":{"n":6},"5":{"n":5.5},"6":{"n":4.5,"s":1},"7":{"n":5.5},"9":{"n":4.5},"10":{"n":5},"15":{"n":5,"s":1},"16":{"n":5},"17":{"n":6}}},"c":12},{"i":6013,"n":"Show","f":"","p":"M","r":4,"s":{"n":0},"c":12},{"i":6014,"n":"Abou Ouattara","f":"","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"5":{"n":4.5,"s":1}}},"c":12},{"i":6015,"n":"Tiago Djal\u00f3","f":"","p":"D","r":7,"s":{"s":"34","n":"7","a":"4.93","d":"0.73","Os":"34","On":"7","Oa":"4.93","Od":"0.73","Dp":"7","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":6},"4":{"n":4.5},"11":{"n":5.5},"12":{"n":4},"14":{"n":4}}},"c":12},{"i":6017,"n":"Yazici","f":"Yusuf","p":"M","r":11,"s":{"g":"1","s":"81","n":"16","a":"5.09","d":"0.99","Sg":"1","Ss":"62","Sn":"12","Sa":"5.21","Sd":"0.92","Og":"1","Os":"81","On":"16","Oa":"5.09","Od":"0.99","Mp":"14","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":6},"4":{"n":3},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":6,"s":1},"11":{"n":7,"g":1},"12":{"n":6},"13":{"n":5},"14":{"n":5.5,"s":1},"15":{"n":5},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":12},{"i":6018,"n":"Osimhen","f":"Victor","p":"A","r":23,"s":{"g":"9","s":"87","n":"16","a":"5.47","d":"1.33","Sg":"2","Ss":"18","Sn":"3","Sa":"6","Og":"9","Os":"87","On":"16","Oa":"5.47","Od":"1.33","Ap":"16","p":{"1":{"n":7.5,"g":2},"2":{"n":4},"3":{"n":8,"g":2,"s":1},"4":{"n":5},"5":{"n":6,"g":1},"6":{"n":6},"7":{"n":7,"g":1},"8":{"n":4.5},"9":{"n":5.5,"g":1},"10":{"n":3},"11":{"n":4},"12":{"n":4,"s":1},"13":{"n":5},"15":{"n":6,"g":1},"16":{"n":6},"17":{"n":6,"g":1}}},"c":12},{"i":6197,"n":"Niasse","f":"Cheikh","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":12},{"i":3,"n":"Falcao","f":"Radamel","p":"A","r":20,"s":{"n":0,"Og":"8","Os":"92","On":"18","Oa":"5.11","Od":"1.06","Ap":"18","p":{"27":{"n":7,"g":2}}},"c":13},{"i":19,"n":"Subasic","f":"Danijel","p":"G","r":9,"s":{"n":0,"Os":"72","On":"13","Oa":"5.58","Od":"0.85","Gp":"13","p":{"27":{"n":5}}},"c":13},{"i":50,"n":"Glik","f":"Kamil","p":"D","r":13,"s":{"s":"67","n":"14","a":"4.79","d":"1.03","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"159","On":"33","Oa":"4.82","Od":"1.06","Dp":"33","p":{"27":{"n":4},"1":{"n":4},"2":{"n":3},"3":{"n":4},"4":{"n":5},"5":{"n":3},"6":{"n":6},"8":{"n":6},"9":{"n":4},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6},"16":{"n":5},"17":{"n":6}}},"c":13},{"i":94,"n":"Jemerson","f":"","p":"D","r":9,"s":{"s":"49","n":"11","a":"4.5","d":"0.64","Ss":"10","Sn":"2","Sa":"5","Os":"111","On":"23","Oa":"4.85","Od":"0.85","Mp":"7","Dp":"16","p":{"1":{"n":4},"2":{"n":4},"3":{"n":3.5},"7":{"n":4.5},"8":{"n":5.5},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5},"14":{"n":5},"16":{"n":5},"17":{"n":5}}},"c":13},{"i":95,"n":"Bakayoko","f":"Tiemou\u00e9","p":"M","r":14,"s":{"s":"59","n":"10","a":"5.9","d":"1.22","Ss":"14","Sn":"2","Sa":"7","Os":"59","On":"10","Oa":"5.9","Od":"1.22","Mp":"10","p":{"5":{"n":5},"6":{"n":6.5},"7":{"n":7},"8":{"n":7.5},"9":{"n":4},"10":{"n":5.5},"11":{"n":5.5},"14":{"n":4},"16":{"n":7},"17":{"n":7}}},"c":13},{"i":140,"n":"Boschilia","f":"Gabriel","p":"M","r":7,"s":{"s":"24","n":"5","a":"4.9","d":"0.2","Os":"84","On":"18","Oa":"4.69","Od":"0.38","Mp":"6","Ap":"12","p":{"1":{"n":5,"s":1},"2":{"n":5},"4":{"n":4.5,"s":1},"10":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":13},{"i":250,"n":"Lecomte","f":"Benjamin","p":"G","r":21,"s":{"s":"86","n":"16","a":"5.38","d":"1.29","Ss":"12","Sn":"2","Sa":"6","Os":"195","On":"36","Oa":"5.42","Od":"1.08","Gp":"36","p":{"1":{"n":3},"2":{"n":7},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":2.5},"6":{"n":7},"7":{"n":5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":7},"12":{"n":6},"13":{"n":6.5},"14":{"n":5.5},"16":{"n":6},"17":{"n":6}}},"c":13},{"i":274,"n":"Almamy Tour\u00e9","f":"","p":"D","r":7,"s":{"n":0},"c":13},{"i":275,"n":"Raggi","f":"Andrea","p":"D","r":6,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":13},{"i":307,"n":"Augustin","f":"Jean-K\u00e9vin","p":"A","r":10,"s":{"s":"36","n":"8","a":"4.56","d":"0.63","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"36","On":"8","Oa":"4.56","Od":"0.63","Ap":"8","p":{"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4},"12":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"16":{"n":6},"17":{"n":5,"s":1}}},"c":13},{"i":336,"n":"Jorge","f":"","p":"D","r":13,"s":{"n":0},"c":13},{"i":368,"n":"Pierre Gabriel","f":"Ronael","p":"D","r":5,"s":{"n":0},"c":13},{"i":405,"n":"Gaspar","f":"Jordy","p":"D","r":1,"s":{"n":0},"c":13},{"i":573,"n":"Sy","f":"Seydou","p":"G","r":3,"s":{"n":0,"Os":"7","On":"2","Oa":"3.75","Od":"0.75","Gp":"2"},"c":13},{"i":646,"n":"F\u00e0bregas","f":"Cesc","p":"M","r":13,"s":{"s":"51","n":"10","a":"5.1","d":"0.97","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"1","Os":"122","On":"24","Oa":"5.08","Od":"0.73","Mp":"23","Ap":"1","p":{"27":{"n":5.5},"1":{"n":3.5},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":6},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":7},"11":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":6}}},"c":13},{"i":648,"n":"Slimani","f":"Islam","p":"A","r":16,"s":{"g":"6","s":"58","n":"10","a":"5.85","d":"1.36","Og":"6","Os":"58","On":"10","Oa":"5.85","Od":"1.36","Ap":"10","p":{"3":{"n":6,"g":1},"4":{"n":8,"g":2},"5":{"n":5},"7":{"n":6.5},"8":{"n":8,"g":1},"9":{"n":5},"10":{"n":6.5,"g":1},"11":{"n":4},"13":{"n":5.5},"14":{"n":4,"g":1}}},"c":13},{"i":698,"n":"Chadli","f":"Nacer","p":"M","r":7,"s":{"n":0,"Os":"28","On":"6","Oa":"4.75","Od":"0.25","Mp":"6","p":{"27":{"n":5,"s":1}}},"c":13},{"i":1201,"n":"Mboula","f":"Jordi","p":"A","r":2,"s":{"n":0},"c":13},{"i":1216,"n":"Lacina Traor\u00e9","f":"","p":"A","r":5,"s":{"n":0},"c":13},{"i":1227,"n":"Aguilar","f":"Ruben","p":"D","r":10,"s":{"s":"53","n":"11","a":"4.82","d":"0.94","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Og":"1","Os":"121","On":"24","Oa":"5.04","Od":"0.92","Mp":"16","Dp":"8","p":{"1":{"n":4.5},"2":{"n":4},"5":{"n":3},"6":{"n":6},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"12":{"n":4,"s":1},"14":{"n":5.5,"s":1},"16":{"n":6.5},"17":{"n":5,"s":1}}},"c":13},{"i":1254,"n":"Benaglio","f":"Diego","p":"G","r":4,"s":{"n":0,"Os":"38","On":"8","Oa":"4.75","Od":"1","Gp":"8"},"c":13},{"i":1256,"n":"Ballo-Toure","f":"Fode","p":"D","r":9,"s":{"s":"51","n":"11","a":"4.68","d":"0.94","Oao":"1","Os":"149","On":"31","Oa":"4.82","Od":"0.85","Mp":"7","Dp":"24","p":{"27":{"n":5},"1":{"n":3},"2":{"n":4},"3":{"n":5},"4":{"n":5.5},"5":{"n":3.5},"7":{"n":5,"s":1},"8":{"n":6.5},"9":{"n":4},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"16":{"n":5}}},"c":13},{"i":1275,"n":"Sylla","f":"Moussa","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Os":"39","On":"9","Oa":"4.33","Od":"0.33","Ap":"9","p":{"1":{"n":4.5,"s":1}}},"c":13},{"i":1523,"n":"Jovetic","f":"Stevan","p":"A","r":7,"s":{"n":0,"Og":"1","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Ap":"3"},"c":13},{"i":1623,"n":"Ben Yedder","f":"Wissam","p":"A","r":34,"s":{"g":"11","s":"85","n":"14","a":"6.07","d":"1.15","Sg":"2","Ss":"14","Sn":"2","Sa":"7.25","Sd":"0.25","Og":"21","Os":"198","On":"35","Oa":"5.67","Od":"1.31","Ap":"35","p":{"2":{"n":4.5},"3":{"n":6.5,"g":1},"4":{"n":4},"5":{"n":7,"g":2},"7":{"n":6,"g":1,"s":1},"8":{"n":7.5,"g":1},"9":{"n":6,"g":1},"10":{"n":7.5,"g":2},"11":{"n":6,"g":1},"12":{"n":4.5},"13":{"n":5},"14":{"n":6},"16":{"n":7,"g":1},"17":{"n":7.5,"g":1}}},"c":13},{"i":1928,"n":"Marip\u00e1n","f":"Guillermo","p":"D","r":13,"s":{"g":"1","s":"50","n":"10","a":"5","d":"1.41","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"1.25","Og":"3","Os":"117","On":"22","Oa":"5.34","Od":"1.51","Dp":"22","p":{"4":{"n":3},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":6},"9":{"n":3},"13":{"n":6},"14":{"n":4.5},"16":{"n":5},"17":{"n":7.5,"g":1},"1":{"n":6,"e":4683,"c":48}}},"c":13},{"i":2034,"n":"Keita","f":"","p":"A","r":14,"s":{"g":"3","s":"60","n":"12","a":"5","d":"1","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"3","Os":"60","On":"12","Oa":"5","Od":"1","Mp":"1","Ap":"11","p":{"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":6,"g":1,"s":1},"6":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":4,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":3},"14":{"n":4.5,"s":1},"16":{"n":5.5,"s":1},"17":{"n":7,"g":1}}},"c":13},{"i":2038,"n":"Geubbels","f":"Willem","p":"A","r":2,"s":{"n":0},"c":13},{"i":2040,"n":"Serrano","f":"Julien","p":"D","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":13},{"i":2145,"n":"Faivre","f":"Romain","p":"M","r":3,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Mp":"1"},"c":13},{"i":2198,"n":"Adrien Silva","f":"","p":"M","r":11,"s":{"s":"67","n":"13","a":"5.15","d":"0.66","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"148","On":"28","Oa":"5.29","Od":"0.59","Mp":"28","p":{"27":{"n":6.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5.5,"s":1},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":4},"11":{"n":6.5},"12":{"n":4.5},"13":{"n":5.5},"16":{"n":6},"17":{"n":5,"s":1}}},"c":13},{"i":2275,"n":"Pellegri","f":"Pietro","p":"A","r":5,"s":{"n":0},"c":13},{"i":2459,"n":"Gelson Martins","f":"","p":"A","r":19,"s":{"g":"2","s":"78","n":"15","a":"5.23","d":"0.87","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Og":"6","Os":"162","On":"31","Oa":"5.24","Od":"0.97","Mp":"30","Ap":"1","p":{"27":{"n":4.5},"1":{"n":5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":4.5},"6":{"n":3.5},"7":{"n":6},"8":{"n":6.5,"g":1},"9":{"n":4},"11":{"n":6.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"16":{"n":6,"g":1,"s":1},"17":{"n":6}}},"c":13},{"i":2614,"n":"Pel\u00e9","f":"","p":"M","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Mp":"1"},"c":13},{"i":2623,"n":"Robert Navarro","f":"","p":"M","r":1,"s":{"n":0},"c":13},{"i":2672,"n":"Mbae","f":"Safwan","p":"D","r":1,"s":{"n":0},"c":13},{"i":2691,"n":"Mexique","f":"Jonathan","p":"M","r":2,"s":{"n":0},"c":13},{"i":2693,"n":"Panzo","f":"Jonathan","p":"D","r":1,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"3":{"n":5,"s":1}}},"c":13},{"i":2720,"n":"Golovin","f":"Aleksandr","p":"M","r":20,"s":{"g":"3","s":"75","n":"14","a":"5.39","d":"1.35","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"6","Os":"177","On":"34","Oa":"5.22","Od":"1.23","Mp":"29","Ap":"5","p":{"27":{"n":5.5},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":5},"6":{"n":4.5},"7":{"n":8.5,"g":2},"8":{"n":4.5},"9":{"n":4},"11":{"n":7},"12":{"n":4.5},"13":{"n":7,"g":1},"14":{"n":4},"16":{"n":5.5},"17":{"n":7}}},"c":13},{"i":2797,"n":"Echi\u00e9jil\u00e9","f":"Elderson","p":"D","r":6,"s":{"n":0},"c":13},{"i":2833,"n":"Henrichs","f":"Benjamin","p":"D","r":9,"s":{"s":"25","n":"5","a":"5.1","d":"0.37","Os":"66","On":"14","Oa":"4.75","Od":"0.45","Mp":"8","Dp":"6","p":{"1":{"n":4.5},"10":{"n":5,"s":1},"12":{"n":5},"13":{"n":5.5},"14":{"n":5.5}}},"c":13},{"i":2892,"n":"Isidor","f":"Wilson","p":"A","r":1,"s":{"n":0},"c":13},{"i":2954,"n":"Massengo","f":"Han-Noah","p":"M","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":13},{"i":2955,"n":"Gouano","f":"Gobe","p":"A","r":1,"s":{"n":0},"c":13},{"i":2956,"n":"Biancone","f":"Giulian","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":13},{"i":2958,"n":"Henin","f":"Yanis","p":"G","r":1,"s":{"n":0},"c":13},{"i":2961,"n":"Badiashile Mukinayi","f":"Benoit","p":"D","r":11,"s":{"s":"62","n":"12","a":"5.17","d":"0.59","Oao":"1","Os":"132","On":"27","Oa":"4.89","Od":"0.91","Dp":"27","p":{"27":{"n":3.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6},"14":{"n":4.5}}},"c":13},{"i":3498,"n":"Naldo","f":"","p":"D","r":5,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.41","Dp":"4"},"c":13},{"i":3517,"n":"Foster","f":"Lyle","p":"A","r":1,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Ap":"2","p":{"1":{"n":5},"2":{"n":5,"s":1}}},"c":13},{"i":3652,"n":"Onyekuru","f":"Henry","p":"M","r":6,"s":{"s":"17","n":"4","a":"4.38","d":"0.74","Os":"17","On":"4","Oa":"4.38","Od":"0.74","Mp":"2","Ap":"2","p":{"2":{"n":3.5},"3":{"n":5.5},"4":{"n":4.5,"s":1},"6":{"n":4,"s":1}}},"c":13},{"i":3764,"n":"Zagre","f":"Arthur","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"e":3906,"c":2,"s":1}}},"c":13},{"i":3780,"n":"Gil Dias","f":"","p":"M","r":9,"s":{"s":"55","n":"11","a":"5","d":"0.88","Ss":"5","Sn":"1","Sa":"5.5","Os":"55","On":"11","Oa":"5","Od":"0.88","Mp":"10","Dp":"1","p":{"2":{"n":6.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6},"6":{"n":5},"7":{"n":4.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":4},"13":{"n":6},"14":{"n":3.5},"17":{"n":5.5}}},"c":13},{"i":4034,"n":"Hagege","f":"Hugo","p":"G","r":1,"s":{"n":0},"c":13},{"i":6248,"n":"N'Guinda N'Diffon","f":"Pierre-Daniel","p":"D","r":1,"s":{"n":0},"c":13},{"i":40,"n":"Delort","f":"Andy","p":"A","r":24,"s":{"g":"5","s":"83","n":"16","a":"5.22","d":"1.39","Sg":"2","Ss":"38","Sn":"7","Sa":"5.43","Sd":"1.05","Og":"12","Os":"193","On":"36","Oa":"5.36","Od":"1.14","Ap":"36","p":{"1":{"n":3},"2":{"n":6.5,"g":1},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":7.5,"g":1},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":7.5,"g":1},"11":{"n":5},"12":{"n":6,"g":1},"13":{"n":6},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":6},"17":{"n":4}}},"c":15},{"i":43,"n":"Sio","f":"Giovanni","p":"A","r":1,"s":{"n":0},"c":15},{"i":114,"n":"Skhiri","f":"Ellyes","p":"M","r":18,"s":{"n":0,"Og":"2","Os":"113","On":"20","Oa":"5.68","Od":"0.94","Mp":"20","p":{"25":{"n":5.5}}},"c":15},{"i":150,"n":"Hilton","f":"","p":"D","r":19,"s":{"s":"92","n":"17","a":"5.41","d":"0.79","Ss":"92","Sn":"17","Sa":"5.41","Sd":"0.79","Os":"208","On":"38","Oa":"5.47","Od":"0.85","Dp":"38","p":{"25":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":6.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":3.5}}},"c":15},{"i":153,"n":"Pedro Mendes","f":"","p":"D","r":12,"s":{"g":"1","s":"69","n":"14","a":"4.96","d":"1.09","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"156","On":"31","Oa":"5.05","Od":"0.89","Dp":"31","p":{"25":{"n":5.5},"1":{"n":6},"2":{"n":4.5},"3":{"n":6},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"8":{"n":4},"9":{"n":7.5,"g":1},"10":{"n":4.5},"11":{"n":6},"12":{"n":3.5},"14":{"n":5.5},"15":{"n":3.5},"17":{"n":4}}},"c":15},{"i":197,"n":"Congr\u00e9","f":"Daniel","p":"D","r":10,"s":{"s":"62","n":"13","a":"4.81","d":"0.8","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"161","On":"33","Oa":"4.89","Od":"0.73","Dp":"33","p":{"25":{"n":5.5},"1":{"n":5},"2":{"n":4.5},"4":{"n":4.5},"5":{"n":4.5},"7":{"n":5.5},"8":{"n":5},"9":{"n":5,"s":1},"11":{"n":5},"12":{"n":3.5},"13":{"n":7},"14":{"n":4.5},"15":{"n":4},"17":{"n":4.5}}},"c":15},{"i":212,"n":"Ferri","f":"Jordan","p":"M","r":7,"s":{"s":"38","n":"7","a":"5.5","d":"1.13","Og":"2","Os":"142","On":"27","Oa":"5.28","Od":"1.14","Mp":"26","Ap":"1","p":{"1":{"n":7},"2":{"n":6},"3":{"n":7},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4},"10":{"n":4.5}}},"c":15},{"i":232,"n":"Camara","f":"Souleymane","p":"A","r":7,"s":{"s":"41","n":"9","a":"4.56","d":"0.28","Og":"3","Os":"83","On":"17","Oa":"4.88","Od":"0.74","Ap":"17","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":15},{"i":243,"n":"Laborde","f":"Gaetan","p":"A","r":19,"s":{"g":"2","s":"83","n":"17","a":"4.88","d":"1.11","Sg":"2","Ss":"83","Sn":"17","Sa":"4.88","Sd":"1.11","Og":"6","Os":"184","On":"37","Oa":"4.97","Od":"1.16","Ap":"37","p":{"25":{"n":5},"1":{"n":3.5},"2":{"n":6},"3":{"n":6},"4":{"n":4},"5":{"n":5},"6":{"n":4},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":7},"10":{"n":4.5},"11":{"n":4},"12":{"n":3.5},"13":{"n":6,"g":1},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":4},"17":{"n":4}}},"c":15},{"i":270,"n":"Souquet","f":"Arnaud","p":"D","r":13,"s":{"g":"2","s":"76","n":"15","a":"5.07","d":"1.05","Ss":"38","Sn":"8","Sa":"4.81","Sd":"1.09","Og":"2","Os":"76","On":"15","Oa":"5.07","Od":"1.05","Mp":"14","Dp":"1","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":7,"g":1},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":6.5,"g":1},"10":{"n":4},"11":{"n":6.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5},"15":{"n":5},"16":{"n":5,"s":1},"17":{"n":2.5}}},"c":15},{"i":320,"n":"Mollet","f":"Florent","p":"M","r":22,"s":{"g":"4","s":"78","n":"14","a":"5.61","d":"1.04","Sg":"2","Ss":"22","Sn":"4","Sa":"5.63","Sd":"0.96","Og":"8","Os":"181","On":"33","Oa":"5.48","Od":"0.96","Mp":"5","Ap":"28","p":{"25":{"n":5.5},"3":{"n":6},"4":{"n":5},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":8,"g":1},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":6,"g":1,"s":1},"16":{"n":7,"g":1},"17":{"n":4.5,"s":1}}},"c":15},{"i":410,"n":"Ligali","f":"Jonathan","p":"G","r":1,"s":{"n":0},"c":15},{"i":440,"n":"Dolly","f":"Keagan","p":"M","r":7,"s":{"s":"29","n":"6","a":"4.92","d":"0.34","Os":"29","On":"6","Oa":"4.92","Od":"0.34","Mp":"5","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"8":{"n":5.5}}},"c":15},{"i":535,"n":"Porsan-Clemente","f":"J\u00e9r\u00e9mie","p":"A","r":1,"s":{"n":0},"c":15},{"i":541,"n":"Sanson","f":"Killian","p":"M","r":1,"s":{"n":0},"c":15},{"i":1186,"n":"P\u00edriz","f":"Facundo","p":"M","r":5,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"25":{"n":4.5,"s":1}}},"c":15},{"i":1242,"n":"Bertaud","f":"Dimitry","p":"G","r":7,"s":{"s":"5","n":"1","a":"5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2","p":{"1":{"n":5}}},"c":15},{"i":1244,"n":"Cozza","f":"Nicolas","p":"D","r":8,"s":{"s":"38","n":"7","a":"5.43","d":"0.56","Os":"60","On":"12","Oa":"5.04","Od":"1.11","Dp":"12","p":{"3":{"n":6},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":6},"9":{"n":5},"10":{"n":4.5},"13":{"n":6}}},"c":15},{"i":1532,"n":"Junior Sambia","f":"","p":"M","r":8,"s":{"g":"1","ao":"1","s":"37","n":"8","a":"4.69","d":"0.86","Sg":"1","Sao":"1","Ss":"27","Sn":"6","Sa":"4.58","Sd":"0.98","Og":"1","Oao":"1","Os":"104","On":"22","Oa":"4.73","Od":"0.6","Mp":"19","Ap":"3","p":{"25":{"n":4.5,"s":1},"6":{"n":5,"s":1},"9":{"n":5},"12":{"n":6,"g":1,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5.5,"s":1},"16":{"n":3,"a":1},"17":{"n":4.5,"s":1}}},"c":15},{"i":1632,"n":"Rulli","f":"Ger\u00f3nimo","p":"G","r":19,"s":{"s":"89","n":"16","a":"5.56","d":"1","Ss":"89","Sn":"16","Sa":"5.56","Sd":"1","Os":"204","On":"37","Oa":"5.53","Od":"1.2","Gp":"37","p":{"2":{"n":5},"3":{"n":6.5},"4":{"n":6.5},"5":{"n":5},"6":{"n":6},"7":{"n":7},"8":{"n":5.5},"9":{"n":6},"10":{"n":6},"11":{"n":7},"12":{"n":4.5},"13":{"n":6},"14":{"n":6},"15":{"n":4},"16":{"n":4},"17":{"n":4}}},"c":15},{"i":2268,"n":"Oyongo","f":"Ambroise","p":"D","r":9,"s":{"s":"67","n":"14","a":"4.79","d":"0.77","Ss":"3","Sn":"1","Sa":"3","Oao":"1","Os":"132","On":"28","Oa":"4.71","Od":"0.62","Mp":"28","p":{"25":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":4},"7":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":5},"15":{"n":5},"17":{"n":3}}},"c":15},{"i":2326,"n":"Ammour","f":"Yannis","p":"M","r":1,"s":{"n":0},"c":15},{"i":2613,"n":"Skuletic","f":"Petar","p":"A","r":8,"s":{"s":"16","n":"4","a":"4.13","d":"0.65","Os":"89","On":"20","Oa":"4.45","Od":"0.59","Ap":"20","p":{"25":{"n":4},"1":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"8":{"n":3},"10":{"n":4.5,"s":1}}},"c":15},{"i":2617,"n":"Le Tallec","f":"Damien","p":"D","r":17,"s":{"g":"2","s":"85","n":"17","a":"5","d":"0.77","Sg":"2","Ss":"85","Sn":"17","Sa":"5","Sd":"0.77","Og":"3","Os":"184","On":"36","Oa":"5.13","Od":"0.73","Mp":"35","Dp":"1","p":{"25":{"n":5},"1":{"n":5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":5},"9":{"n":5},"10":{"n":3.5},"11":{"n":5},"12":{"n":3.5},"13":{"n":6.5,"g":1},"14":{"n":4.5},"15":{"n":6,"g":1},"16":{"n":4.5},"17":{"n":5}}},"c":15},{"i":2636,"n":"Adouyev","f":"Amir","p":"M","r":1,"s":{"n":0},"c":15},{"i":2637,"n":"Kaiboue","f":"Kylian","p":"M","r":1,"s":{"n":0},"c":15},{"i":2638,"n":"Vidal","f":"Clement","p":"D","r":4,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"16":{"n":4}}},"c":15},{"i":2733,"n":"Savanier","f":"T\u00e9ji","p":"M","r":17,"s":{"g":"2","s":"48","n":"8","a":"6","d":"0.83","Sg":"2","Ss":"48","Sn":"8","Sa":"6","Sd":"0.83","Og":"6","Os":"167","On":"28","Oa":"5.96","Od":"1.24","Mp":"27","Ap":"1","p":{"10":{"n":5,"s":1},"11":{"n":5},"12":{"n":5},"13":{"n":7,"g":1},"14":{"n":6.5},"15":{"n":7},"16":{"n":6.5,"g":1},"17":{"n":6}}},"c":15},{"i":2936,"n":"Carvalho","f":"Matis","p":"G","r":1,"s":{"n":0},"c":15},{"i":2995,"n":"Su\u00e1rez","f":"Math\u00edas","p":"D","r":7,"s":{"s":"4","n":"1","a":"4.5","Os":"50","On":"11","Oa":"4.59","Od":"0.47","Mp":"8","Dp":"3","p":{"8":{"n":4.5}}},"c":15},{"i":3126,"n":"Ristic","f":"Mihailo","p":"D","r":8,"s":{"s":"58","n":"12","a":"4.88","d":"0.3","Og":"1","Os":"107","On":"22","Oa":"4.89","Od":"0.45","Mp":"7","Dp":"15","p":{"25":{"n":4.5},"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":5},"9":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":15},{"i":3520,"n":"Boutobba","f":"Bilal","p":"M","r":1,"s":{"n":0},"c":15},{"i":6160,"n":"Chotard","f":"Joris","p":"M","r":12,"s":{"s":"56","n":"11","a":"5.09","d":"0.79","Ss":"56","Sn":"11","Sa":"5.09","Sd":"0.79","Os":"56","On":"11","Oa":"5.09","Od":"0.79","Mp":"10","Ap":"1","p":{"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":6.5},"14":{"n":5.5},"15":{"n":6.5},"16":{"n":5.5},"17":{"n":4.5}}},"c":15},{"i":6288,"n":"Badu","f":"Bastian","p":"A","r":5,"s":{"n":0},"c":15},{"i":108,"n":"Mangani","f":"Thomas","p":"M","r":17,"s":{"g":"2","s":"83","n":"16","a":"5.22","d":"1.1","Sg":"1","Ss":"51","Sn":"10","Sa":"5.1","Sd":"0.73","Og":"4","Os":"161","On":"32","Oa":"5.05","Od":"1.03","Mp":"32","p":{"27":{"n":4},"1":{"n":7,"g":1},"2":{"n":2.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":7},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":5},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":4.5},"17":{"n":4.5}}},"c":16},{"i":113,"n":"Santamar\u00eda","f":"Baptiste","p":"M","r":16,"s":{"g":"1","s":"90","n":"17","a":"5.29","d":"1.04","Sg":"1","Ss":"90","Sn":"17","Sa":"5.29","Sd":"1.04","Og":"1","Os":"202","On":"38","Oa":"5.33","Od":"0.98","Mp":"38","p":{"27":{"n":5.5},"1":{"n":6},"2":{"n":3.5},"3":{"n":7.5,"g":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":4},"10":{"n":4.5},"11":{"n":6},"12":{"n":6},"13":{"n":6.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":4},"17":{"n":5}}},"c":16},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":9,"s":{"g":"3","s":"60","n":"12","a":"5","d":"1.43","Og":"8","Os":"150","On":"31","Oa":"4.84","Od":"1.22","Mp":"17","Ap":"14","p":{"3":{"n":4,"s":1},"4":{"n":5,"s":1},"6":{"n":8.5,"g":3,"s":1},"7":{"n":7.5},"8":{"n":4,"s":1},"9":{"n":3.5},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":5},"13":{"n":4,"s":1},"14":{"n":4.5},"2":{"n":4.5,"e":5057,"c":5}}},"c":16},{"i":143,"n":"Thomas","f":"Romain","p":"D","r":12,"s":{"s":"84","n":"17","a":"4.97","d":"1.25","Ss":"84","Sn":"17","Sa":"4.97","Sd":"1.25","Os":"168","On":"33","Oa":"5.09","Od":"1.07","Dp":"33","p":{"27":{"n":5.5,"s":1},"1":{"n":5},"2":{"n":3},"3":{"n":6},"4":{"n":6.5},"5":{"n":3.5},"6":{"n":6},"7":{"n":7},"8":{"n":5.5},"9":{"n":4},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":6},"15":{"n":3.5},"16":{"n":3},"17":{"n":3.5}}},"c":16},{"i":159,"n":"Traor\u00e9","f":"Ismael","p":"D","r":13,"s":{"s":"65","n":"13","a":"5","d":"0.81","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"140","On":"29","Oa":"4.84","Od":"0.81","Dp":"29","p":{"27":{"n":4},"3":{"n":6},"4":{"n":6},"5":{"n":4.5},"6":{"n":5},"8":{"n":5},"9":{"n":3},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5},"16":{"n":4},"17":{"n":4.5}}},"c":16},{"i":176,"n":"Pajot","f":"Vincent","p":"M","r":7,"s":{"s":"29","n":"6","a":"4.83","d":"0.47","Ss":"5","Sn":"1","Sa":"5.5","Os":"66","On":"14","Oa":"4.71","Od":"0.59","Mp":"14","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5,"s":1},"17":{"n":5.5,"s":1}}},"c":16},{"i":202,"n":"Capelle","f":"Pierrick","p":"M","r":13,"s":{"g":"1","s":"76","n":"15","a":"5.1","d":"1.1","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.54","Og":"1","Os":"122","On":"24","Oa":"5.08","Od":"1.09","Mp":"19","Dp":"4","Ap":"1","p":{"1":{"n":6},"2":{"n":3},"3":{"n":7},"4":{"n":6},"5":{"n":4},"6":{"n":6.5,"g":1},"7":{"n":4.5,"s":1},"8":{"n":6},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5.5,"s":1},"16":{"n":4},"17":{"n":5}}},"c":16},{"i":214,"n":"Manceau","f":"Vincent","p":"D","r":10,"s":{"s":"59","n":"13","a":"4.58","d":"1","Ss":"8","Sn":"2","Sa":"4","Og":"1","Os":"156","On":"31","Oa":"5.05","Od":"1.15","Mp":"3","Dp":"28","p":{"27":{"n":4.5},"1":{"n":5},"2":{"n":2.5},"4":{"n":5},"5":{"n":4},"6":{"n":5},"7":{"n":6},"9":{"n":3},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":5},"16":{"n":4},"17":{"n":4}}},"c":16},{"i":235,"n":"Pavlovic","f":"Mateo","p":"D","r":8,"s":{"s":"30","n":"7","a":"4.36","d":"1.51","Os":"118","On":"24","Oa":"4.94","Od":"1.29","Dp":"24","p":{"27":{"n":5.5},"1":{"n":6},"2":{"n":1.5},"5":{"n":5},"7":{"n":6},"10":{"n":4.5,"s":1},"15":{"n":3},"16":{"n":4.5,"s":1}}},"c":16},{"i":262,"n":"Andreu","f":"Yoann","p":"D","r":5,"s":{"n":0},"c":16},{"i":283,"n":"Coulibaly","f":"Lassana","p":"M","r":6,"s":{"n":0},"c":16},{"i":287,"n":"Bamba","f":"Abdoulaye","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"1.03","Os":"92","On":"18","Oa":"5.11","Od":"0.87","Mp":"2","Dp":"16","p":{"27":{"n":4.5},"3":{"n":6},"14":{"n":5},"15":{"n":3.5}}},"c":16},{"i":343,"n":"Puyo","f":"Lo\u00efc","p":"M","r":3,"s":{"n":0},"c":16},{"i":378,"n":"Pellenard","f":"Th\u00e9o","p":"D","r":8,"s":{"s":"28","n":"6","a":"4.67","d":"0.9","Ss":"4","Sn":"1","Sa":"4.5","Os":"55","On":"12","Oa":"4.63","Od":"0.94","Mp":"1","Dp":"11","p":{"1":{"n":5,"s":1},"7":{"n":6},"10":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":3},"17":{"n":4.5}}},"c":16},{"i":390,"n":"Mandrea","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":16},{"i":454,"n":"Dor\u00e9","f":"F\u00e9r\u00e9bory","p":"A","r":2,"s":{"n":0},"c":16},{"i":477,"n":"Ketkeophomphone","f":"Billy","p":"A","r":6,"s":{"n":0},"c":16},{"i":510,"n":"Letellier","f":"Alexandre","p":"G","r":7,"s":{"n":0},"c":16},{"i":1179,"n":"Fulgini","f":"Angelo","p":"M","r":12,"s":{"g":"1","s":"46","n":"9","a":"5.17","d":"0.91","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.18","Og":"4","Os":"150","On":"29","Oa":"5.19","Od":"0.97","Mp":"24","Ap":"5","p":{"27":{"n":4.5},"6":{"n":4},"7":{"n":5},"8":{"n":5,"s":1},"11":{"n":6},"12":{"n":6},"13":{"n":4.5},"15":{"n":7,"g":1},"16":{"n":4.5},"17":{"n":4.5}}},"c":16},{"i":1235,"n":"Kanga","f":"Wilfried","p":"A","r":8,"s":{"s":"18","n":"4","a":"4.5","Og":"2","Os":"65","On":"14","Oa":"4.68","Od":"0.82","Ap":"14","p":{"2":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"13":{"n":4.5,"s":1}}},"c":16},{"i":1401,"n":"Bahoken","f":"St\u00e9phane","p":"A","r":8,"s":{"g":"2","s":"42","n":"9","a":"4.72","d":"0.79","Og":"9","Os":"127","On":"27","Oa":"4.72","Od":"1.12","Ap":"27","p":{"27":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4},"4":{"n":4,"s":1},"5":{"n":6,"g":1},"6":{"n":5,"s":1},"7":{"n":5.5},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":5.5,"g":1}}},"c":16},{"i":2136,"n":"Butelle","f":"Ludovic","p":"G","r":15,"s":{"s":"82","n":"17","a":"4.85","d":"1.22","Ss":"82","Sn":"17","Sa":"4.85","Sd":"1.22","Os":"193","On":"36","Oa":"5.36","Od":"1.21","Gp":"36","p":{"27":{"n":5},"1":{"n":5},"2":{"n":2},"3":{"n":6},"4":{"n":6},"5":{"n":3},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":6},"12":{"n":6.5},"13":{"n":6},"14":{"n":6},"15":{"n":4},"16":{"n":4.5},"17":{"n":4}}},"c":16},{"i":2646,"n":"Ait Nouri","f":"Rayan","p":"D","r":10,"s":{"s":"66","n":"14","a":"4.75","d":"1","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"74","On":"16","Oa":"4.66","Od":"1.03","Dp":"16","p":{"1":{"n":5.5},"2":{"n":3},"3":{"n":6.5},"4":{"n":6},"5":{"n":3.5},"6":{"n":5},"8":{"n":4.5},"9":{"n":4},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":3.5},"16":{"n":4},"17":{"n":5,"s":1}}},"c":16},{"i":2698,"n":"Thioub","f":"Sada","p":"A","r":10,"s":{"s":"58","n":"12","a":"4.88","d":"0.71","Ss":"33","Sn":"7","Sa":"4.71","Sd":"0.36","Og":"1","Os":"160","On":"33","Oa":"4.86","Od":"0.94","Mp":"10","Ap":"23","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6.5},"8":{"n":6},"9":{"n":4,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5},"14":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":5},"17":{"n":4,"s":1}}},"c":16},{"i":2702,"n":"Bobichon","f":"Antonin","p":"M","r":8,"s":{"s":"36","n":"8","a":"4.5","d":"0.61","Og":"5","Os":"135","On":"27","Oa":"5.02","Od":"1.19","Mp":"24","Ap":"3","p":{"1":{"n":3.5,"e":3927,"c":67},"2":{"n":5,"e":3913,"c":67},"7":{"n":5.5},"9":{"n":4},"12":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":4},"16":{"n":4.5,"s":1}}},"c":16},{"i":2731,"n":"Alioui","f":"Rachid","p":"A","r":22,"s":{"g":"5","s":"87","n":"17","a":"5.15","d":"1.22","Sg":"5","Ss":"87","Sn":"17","Sa":"5.15","Sd":"1.22","Og":"7","Os":"170","On":"34","Oa":"5.01","Od":"1.05","Ap":"34","p":{"1":{"n":5},"2":{"n":3},"3":{"n":6,"g":1,"s":1},"4":{"n":6},"5":{"n":5.5,"s":1},"6":{"n":5.5},"7":{"n":8,"g":2,"s":1},"8":{"n":6.5,"g":1},"9":{"n":3},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5.5},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4},"17":{"n":6,"g":1}}},"c":16},{"i":2793,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5}}},"c":16},{"i":2822,"n":"N'Doye","f":"Cheikh","p":"M","r":8,"s":{"n":0,"Os":"55","On":"11","Oa":"5","Od":"0.9","Mp":"11","p":{"27":{"n":5.5}}},"c":16},{"i":2831,"n":"El Melali","f":"Farid","p":"M","r":8,"s":{"g":"2","s":"23","n":"4","a":"5.75","d":"1.03","Og":"2","Os":"94","On":"19","Oa":"4.95","Od":"0.71","Mp":"19","p":{"27":{"n":4.5,"s":1},"1":{"n":5,"s":1},"3":{"n":7,"g":1},"4":{"n":6.5,"g":1},"10":{"n":4.5}}},"c":16},{"i":2866,"n":"Cristian","f":"","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"43","On":"10","Oa":"4.35","Od":"0.78","Ap":"10"},"c":16},{"i":2890,"n":"Mancini","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":16},{"i":2944,"n":"Mouanga","f":"Kevin","p":"D","r":1,"s":{"n":0},"c":16},{"i":3528,"n":"Soula","f":"Mazire","p":"A","r":1,"s":{"n":0},"c":16},{"i":4037,"n":"Petkovic","f":"Danijel","p":"G","r":9,"s":{"n":0},"c":16},{"i":5018,"n":"Pereira Lage","f":"Mathias","p":"M","r":11,"s":{"g":"1","s":"87","n":"17","a":"5.12","d":"1.31","Sg":"1","Ss":"87","Sn":"17","Sa":"5.12","Sd":"1.31","Og":"1","Os":"87","On":"17","Oa":"5.12","Od":"1.31","Mp":"17","p":{"1":{"n":8,"g":1},"2":{"n":3.5},"3":{"n":7},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":7,"s":1},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":3.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":5.5}}},"c":16},{"i":5456,"n":"Ould Khaled","f":"Zin\u00e9dine","p":"M","r":1,"s":{"n":0},"c":16},{"i":6260,"n":"Loucif","f":"Haithem","p":"D","r":5,"s":{"n":0},"c":16},{"i":6346,"n":"Mbock","f":"Jason","p":"A","r":1,"s":{"n":0},"c":16},{"i":72,"n":"Depay","f":"Memphis","p":"A","r":32,"s":{"g":"9","s":"72","n":"12","a":"6","d":"1.78","Sg":"2","Ss":"13","Sn":"2","Sa":"6.75","Sd":"1.75","Og":"14","Os":"176","On":"31","Oa":"5.69","Od":"1.43","Mp":"7","Ap":"24","p":{"30":{"n":5.5},"1":{"n":7,"g":1},"2":{"n":8,"g":2},"3":{"n":5},"4":{"n":6.5,"g":1},"6":{"n":3.5},"7":{"n":4,"s":1},"8":{"n":4.5},"9":{"n":4},"11":{"n":8,"g":1},"12":{"n":8,"g":2},"16":{"n":5},"17":{"n":8.5,"g":2}}},"c":18},{"i":130,"n":"Cornet","f":"Maxwel","p":"A","r":13,"s":{"g":"2","s":"69","n":"13","a":"5.31","d":"0.97","Og":"8","Os":"161","On":"30","Oa":"5.38","Od":"1.15","Mp":"16","Ap":"14","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":4},"5":{"n":4.5,"s":1},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"10":{"n":6},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5},"14":{"n":5.5,"s":1},"15":{"n":7.5,"g":1},"16":{"n":4.5}}},"c":18},{"i":146,"n":"Yanga-Mbiwa","f":"Mapou","p":"D","r":3,"s":{"n":0},"c":18},{"i":204,"n":"Mar\u00e7al","f":"","p":"D","r":8,"s":{"ao":"1","s":"18","n":"4","a":"4.5","d":"0.87","Oao":"1","Os":"54","On":"11","Oa":"4.95","Od":"0.69","Dp":"11","p":{"8":{"n":4,"a":1},"9":{"n":4},"10":{"n":6},"14":{"n":4}}},"c":18},{"i":244,"n":"Dubois","f":"L\u00e9o","p":"D","r":9,"s":{"s":"65","n":"13","a":"5.04","d":"0.5","Og":"1","Os":"170","On":"32","Oa":"5.31","Od":"0.89","Mp":"3","Dp":"29","p":{"30":{"n":7},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":6},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":5,"s":1}}},"c":18},{"i":256,"n":"Rafael","f":"","p":"D","r":9,"s":{"s":"24","n":"5","a":"4.8","d":"0.4","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.43","Oao":"1","Os":"57","On":"12","Oa":"4.75","Od":"0.78","Mp":"1","Dp":"11","p":{"30":{"n":5.5},"9":{"n":5},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":4},"17":{"n":5}}},"c":18},{"i":409,"n":"Terrier","f":"Martin","p":"M","r":10,"s":{"s":"64","n":"13","a":"4.92","d":"0.55","Og":"7","Os":"176","On":"33","Oa":"5.33","Od":"0.82","Mp":"25","Ap":"8","p":{"30":{"n":6,"g":1,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":4.5},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":4},"10":{"n":4},"11":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":5},"16":{"n":5}}},"c":18},{"i":423,"n":"Tousart","f":"Lucas","p":"M","r":18,"s":{"g":"1","s":"83","n":"15","a":"5.57","d":"0.95","Ss":"22","Sn":"4","Sa":"5.5","Sd":"0.61","Og":"1","Oao":"1","Os":"165","On":"31","Oa":"5.32","Od":"0.87","Mp":"31","p":{"30":{"n":6},"1":{"n":7.5,"g":1},"2":{"n":7},"3":{"n":5},"4":{"n":4.5,"s":1},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":7},"9":{"n":4.5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"14":{"n":5.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":6,"s":1}}},"c":18},{"i":527,"n":"Kone","f":"Youssouf","p":"D","r":11,"s":{"s":"54","n":"11","a":"4.91","d":"0.79","Os":"152","On":"29","Oa":"5.26","Od":"0.86","Mp":"1","Dp":"28","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3},"6":{"n":4.5},"7":{"n":4.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5.5,"s":1},"15":{"n":5},"16":{"n":5}}},"c":18},{"i":537,"n":"Aouar","f":"Houssem","p":"M","r":22,"s":{"g":"2","s":"78","n":"14","a":"5.57","d":"1.13","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Og":"4","Os":"187","On":"34","Oa":"5.51","Od":"1.11","Mp":"33","Ap":"1","p":{"30":{"n":5.5},"1":{"n":5.5},"2":{"n":8.5,"g":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":7},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":7,"g":1}}},"c":18},{"i":1052,"n":"Denayer","f":"Jason","p":"D","r":18,"s":{"s":"82","n":"15","a":"5.47","d":"0.81","Ss":"44","Sn":"8","Sa":"5.5","Sd":"0.83","Og":"1","Os":"177","On":"33","Oa":"5.38","Od":"0.94","Dp":"33","p":{"30":{"n":5.5},"1":{"n":7},"2":{"n":6},"3":{"n":5},"4":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5},"10":{"n":5.5},"11":{"n":7},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":6.5}}},"c":18},{"i":1069,"n":"Reine-Ad\u00e9la\u00efde","f":"Jeff","p":"M","r":16,"s":{"g":"3","s":"74","n":"14","a":"5.32","d":"0.96","Sg":"2","Ss":"43","Sn":"8","Sa":"5.44","Sd":"0.73","Og":"6","Os":"172","On":"33","Oa":"5.21","Od":"0.94","Mp":"26","Ap":"7","p":{"1":{"n":7.5,"e":3922,"c":16,"g":1},"4":{"n":5},"5":{"n":5.5},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4},"10":{"n":5,"s":1},"11":{"n":5},"12":{"n":6},"13":{"n":4.5},"14":{"n":6.5,"g":1},"15":{"n":6.5,"g":1},"16":{"n":5},"17":{"n":5,"s":1}}},"c":18},{"i":1161,"n":"Bertrand Traor\u00e9","f":"","p":"A","r":14,"s":{"s":"72","n":"13","a":"5.54","d":"0.82","Ss":"7","Sn":"1","Sa":"7","Og":"2","Os":"165","On":"31","Oa":"5.32","Od":"0.77","Mp":"22","Ap":"9","p":{"30":{"n":5,"s":1},"1":{"n":7},"2":{"n":6},"3":{"n":5},"4":{"n":5,"s":1},"5":{"n":6},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":4},"10":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":6},"14":{"n":5.5},"17":{"n":7}}},"c":18},{"i":1163,"n":"Tatarusanu","f":"Ciprian","p":"G","r":8,"s":{"n":0,"Os":"62","On":"11","Oa":"5.64","Od":"1.17","Gp":"11"},"c":18},{"i":1176,"n":"Tete","f":"Kenny","p":"D","r":10,"s":{"s":"60","n":"12","a":"5.04","d":"0.52","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.82","Os":"106","On":"21","Oa":"5.05","Od":"0.84","Mp":"2","Dp":"19","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5},"15":{"n":5.5},"16":{"n":4.5,"s":1},"17":{"n":6.5}}},"c":18},{"i":1191,"n":"Thiago Mendes","f":"","p":"M","r":22,"s":{"s":"80","n":"15","a":"5.37","d":"0.78","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Os":"205","On":"35","Oa":"5.86","Od":"1.03","Mp":"35","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5},"4":{"n":6},"6":{"n":5},"7":{"n":5},"8":{"n":5.5},"9":{"n":4},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4},"14":{"n":5},"16":{"n":5},"17":{"n":7}}},"c":18},{"i":1210,"n":"Gouiri","f":"Amine","p":"A","r":2,"s":{"n":0},"c":18},{"i":1524,"n":"Anthony Lopes","f":"","p":"G","r":24,"s":{"ao":"1","s":"94","n":"17","a":"5.56","d":"0.87","Sao":"1","Ss":"94","Sn":"17","Sa":"5.56","Sd":"0.87","Oao":"1","Os":"201","On":"36","Oa":"5.58","Od":"0.99","Gp":"36","p":{"30":{"n":6},"1":{"n":6},"2":{"n":6.5},"3":{"n":6},"4":{"n":6},"5":{"n":4},"6":{"n":7},"7":{"n":4.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":6},"12":{"n":4,"a":1},"13":{"n":5},"14":{"n":7},"15":{"n":5.5},"16":{"n":5},"17":{"n":6}}},"c":18},{"i":1545,"n":"Martins Pereira","f":"Christopher","p":"M","r":6,"s":{"n":0},"c":18},{"i":2032,"n":"Marcelo","f":"","p":"D","r":8,"s":{"s":"36","n":"7","a":"5.14","d":"0.64","Oao":"1","Os":"143","On":"26","Oa":"5.5","Od":"0.71","Dp":"26","p":{"30":{"n":6},"5":{"n":5.5},"6":{"n":5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":6},"15":{"n":5.5},"16":{"n":4}}},"c":18},{"i":2277,"n":"Solet","f":"Oumar","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"5":{"n":5,"s":1}}},"c":18},{"i":2624,"n":"Fekir","f":"Yassin","p":"A","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":18},{"i":2665,"n":"Racioppi","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":18},{"i":2681,"n":"Griffiths","f":"Reo","p":"A","r":1,"s":{"n":0},"c":18},{"i":2685,"n":"Caqueret","f":"Maxence","p":"M","r":11,"s":{"s":"14","n":"2","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"14","On":"2","Oa":"7","Mp":"2","p":{"15":{"n":7},"17":{"n":7}}},"c":18},{"i":2861,"n":"Dembele","f":"Moussa","p":"A","r":32,"s":{"g":"10","s":"85","n":"16","a":"5.31","d":"1.09","Sg":"7","Ss":"67","Sn":"13","Sa":"5.15","Sd":"0.93","Og":"20","Os":"196","On":"37","Oa":"5.31","Od":"1.16","Ap":"37","p":{"30":{"n":4},"1":{"n":7,"g":1},"2":{"n":7,"g":2},"3":{"n":4},"5":{"n":7,"g":2},"6":{"n":4},"7":{"n":5,"g":1},"8":{"n":4},"9":{"n":4.5,"s":1},"10":{"n":5},"11":{"n":6,"g":1},"12":{"n":6,"g":1},"13":{"n":6,"g":1},"14":{"n":6,"g":1},"15":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":18},{"i":2952,"n":"Ndiaye","f":"Ousseynou","p":"M","r":1,"s":{"n":0},"c":18},{"i":3760,"n":"Fofana","f":"Boubacar","p":"A","r":1,"s":{"n":0},"c":18},{"i":3761,"n":"Jean Lucas","f":"","p":"M","r":8,"s":{"g":"1","s":"46","n":"9","a":"5.17","d":"0.53","Og":"1","Os":"46","On":"9","Oa":"5.17","Od":"0.53","Mp":"9","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":18},{"i":3799,"n":"Andersen","f":"Joachim","p":"D","r":18,"s":{"g":"1","s":"72","n":"14","a":"5.14","d":"1.06","Sg":"1","Ss":"8","Sn":"1","Sa":"8","Og":"1","Os":"72","On":"14","Oa":"5.14","Od":"1.06","Dp":"14","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4},"4":{"n":4},"5":{"n":4},"6":{"n":5},"7":{"n":4.5},"9":{"n":5.5},"11":{"n":6},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":5,"s":1},"17":{"n":8,"g":1}}},"c":18},{"i":5459,"n":"Augarreau","f":"Cedric","p":"M","r":1,"s":{"n":0},"c":18},{"i":6011,"n":"Thomas","f":"Titouan","p":"M","r":1,"s":{"n":0},"c":18},{"i":6012,"n":"Deyonge","f":"Heritier","p":"D","r":2,"s":{"n":0},"c":18},{"i":6280,"n":"Cherki","f":"Rayan","p":"M","r":7,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"13":{"n":5.5,"s":1}}},"c":18},{"i":6345,"n":"Bard","f":"Melvin","p":"D","r":1,"s":{"n":0},"c":18},{"i":11,"n":"Cyprien","f":"Wylan","p":"M","r":22,"s":{"g":"6","s":"91","n":"16","a":"5.69","d":"1.34","Sg":"3","Ss":"37","Sn":"6","Sa":"6.25","Sd":"1.31","Og":"8","Os":"169","On":"30","Oa":"5.63","Od":"1.27","Mp":"30","p":{"1":{"n":6.5},"2":{"n":7.5,"g":1},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":6},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":4.5},"10":{"n":3},"12":{"n":8,"g":1},"13":{"n":5.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":4.5},"17":{"n":8,"g":2}}},"c":19},{"i":70,"n":"Dante","f":"","p":"D","r":16,"s":{"g":"1","s":"60","n":"11","a":"5.45","d":"1.18","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"159","On":"30","Oa":"5.32","Od":"1.11","Dp":"30","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":4.5},"9":{"n":6},"10":{"n":3},"11":{"n":5.5},"12":{"n":7},"13":{"n":5},"14":{"n":4.5},"15":{"n":6},"17":{"n":5.5}}},"c":19},{"i":71,"n":"Lees-Melou","f":"Pierre","p":"M","r":16,"s":{"g":"2","s":"84","n":"15","a":"5.6","d":"1.23","Sg":"2","Ss":"36","Sn":"6","Sa":"6.08","Sd":"1.51","Og":"3","Os":"178","On":"33","Oa":"5.41","Od":"1.1","Mp":"33","p":{"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":3.5},"12":{"n":7},"13":{"n":7,"g":1},"14":{"n":4.5},"15":{"n":7.5},"16":{"n":3.5},"17":{"n":7,"g":1}}},"c":19},{"i":96,"n":"Walter","f":"Remi","p":"M","r":5,"s":{"s":"5","n":"1","a":"5.5","Og":"2","Os":"74","On":"14","Oa":"5.29","Od":"0.86","Mp":"14","p":{"1":{"n":5.5}}},"c":19},{"i":129,"n":"Cardinale","f":"Yoan","p":"G","r":4,"s":{"n":0},"c":19},{"i":178,"n":"Ounas","f":"Adam","p":"M","r":12,"s":{"s":"42","n":"8","a":"5.31","d":"0.5","Ss":"6","Sn":"1","Sa":"6","Os":"42","On":"8","Oa":"5.31","Od":"0.5","Mp":"2","Ap":"6","p":{"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6},"7":{"n":5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":4.5},"17":{"n":6}}},"c":19},{"i":217,"n":"Sarr","f":"Malang","p":"D","r":9,"s":{"s":"50","n":"11","a":"4.55","d":"0.99","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.89","Og":"1","Os":"151","On":"31","Oa":"4.87","Od":"0.97","Dp":"31","p":{"1":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":3},"9":{"n":4.5},"10":{"n":3},"11":{"n":4.5},"12":{"n":6},"14":{"n":5,"s":1},"15":{"n":6},"16":{"n":3.5},"17":{"n":5}}},"c":19},{"i":239,"n":"Ben\u00edtez","f":"Walter","p":"G","r":22,"s":{"ao":"1","s":"83","n":"15","a":"5.57","d":"0.83","Sao":"1","Ss":"83","Sn":"15","Sa":"5.57","Sd":"0.83","Oao":"1","Os":"207","On":"36","Oa":"5.75","Od":"1.1","Gp":"36","p":{"3":{"n":5.5},"4":{"n":4.5,"a":1},"5":{"n":6},"6":{"n":7},"7":{"n":4},"8":{"n":6},"9":{"n":6},"10":{"n":5.5},"11":{"n":6},"12":{"n":6.5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":4},"17":{"n":5.5}}},"c":19},{"i":353,"n":"Lusamba","f":"Arnaud","p":"M","r":11,"s":{"g":"1","s":"52","n":"10","a":"5.25","d":"0.87","Og":"1","Os":"52","On":"10","Oa":"5.25","Od":"0.87","Mp":"7","Ap":"3","p":{"2":{"n":5},"3":{"n":5.5},"4":{"n":4.5},"6":{"n":5.5},"8":{"n":6},"9":{"n":5},"11":{"n":5.5},"14":{"n":5,"s":1},"15":{"n":7,"g":1},"16":{"n":3.5}}},"c":19},{"i":447,"n":"Burner","f":"Patrick","p":"D","r":13,"s":{"g":"1","s":"79","n":"16","a":"4.94","d":"0.63","Ss":"10","Sn":"2","Sa":"5","Og":"1","Os":"146","On":"30","Oa":"4.88","Od":"0.79","Mp":"2","Dp":"28","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":4.5,"g":1},"8":{"n":5},"9":{"n":5},"10":{"n":3},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5,"s":1},"14":{"n":5.5},"16":{"n":5,"s":1},"17":{"n":5}}},"c":19},{"i":452,"n":"Srarfi","f":"Bassem","p":"M","r":7,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Os":"78","On":"16","Oa":"4.88","Od":"0.54","Mp":"11","Ap":"5","p":{"1":{"n":4.5,"s":1},"4":{"n":4},"11":{"n":5,"s":1}}},"c":19},{"i":466,"n":"Boscagli","f":"Olivier","p":"D","r":7,"s":{"n":0,"Os":"20","On":"4","Oa":"5.13","Od":"0.74","Dp":"4"},"c":19},{"i":474,"n":"Marcel","f":"Vincent","p":"M","r":2,"s":{"n":0},"c":19},{"i":495,"n":"Lloris","f":"Gautier","p":"D","r":3,"s":{"s":"13","n":"3","a":"4.5","d":"0.82","Os":"13","On":"3","Oa":"4.5","Od":"0.82","Dp":"3","p":{"4":{"n":5.5},"5":{"n":4.5},"16":{"n":3.5}}},"c":19},{"i":540,"n":"Mahou","f":"Hicham","p":"M","r":2,"s":{"n":0},"c":19},{"i":583,"n":"Claude Maurice","f":"Alexis","p":"M","r":12,"s":{"g":"1","s":"67","n":"13","a":"5.15","d":"0.86","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Og":"1","Os":"67","On":"13","Oa":"5.15","Od":"0.86","Mp":"7","Ap":"6","p":{"5":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5},"8":{"n":4},"9":{"n":4.5},"10":{"n":4},"11":{"n":6},"12":{"n":5.5},"15":{"n":5,"s":1},"16":{"n":4},"17":{"n":5.5},"1":{"n":6,"e":5067,"c":6},"3":{"n":7,"e":5042,"c":6,"g":1,"s":1}}},"c":19},{"i":1070,"n":"Hassen","f":"Mouez","p":"G","r":2,"s":{"n":0},"c":19},{"i":1204,"n":"Tameze","f":"Adrien","p":"M","r":7,"s":{"g":"1","s":"36","n":"7","a":"5.21","d":"0.59","Og":"1","Os":"141","On":"27","Oa":"5.22","Od":"1.11","Mp":"27","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":6,"g":1},"7":{"n":4.5},"10":{"n":5,"s":1}}},"c":19},{"i":1229,"n":"Maolida","f":"Myziane","p":"A","r":10,"s":{"g":"1","s":"47","n":"10","a":"4.75","d":"0.98","Og":"1","Os":"61","On":"13","Oa":"4.69","Od":"0.89","Mp":"1","Ap":"12","p":{"1":{"n":5},"5":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4},"13":{"n":5,"s":1},"14":{"n":4,"s":1},"15":{"n":7.5,"g":1},"16":{"n":4.5}}},"c":19},{"i":1272,"n":"Ganago","f":"Ignatius","p":"A","r":11,"s":{"g":"3","s":"79","n":"16","a":"4.94","d":"1.06","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"4","Os":"139","On":"29","Oa":"4.81","Od":"0.99","Mp":"1","Ap":"28","p":{"1":{"n":6},"2":{"n":7,"g":1},"3":{"n":6},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1},"8":{"n":4,"s":1},"9":{"n":4,"s":1},"10":{"n":6,"g":1},"11":{"n":4},"12":{"n":4.5},"13":{"n":4},"14":{"n":4.5},"16":{"n":4.5,"s":1},"17":{"n":7,"g":1,"s":1}}},"c":19},{"i":1426,"n":"Herelle","f":"Christophe","p":"D","r":10,"s":{"g":"2","s":"34","n":"7","a":"4.86","d":"1.27","Og":"2","Os":"133","On":"25","Oa":"5.32","Od":"1.08","Dp":"25","p":{"1":{"n":6,"g":1},"2":{"n":5.5},"3":{"n":4},"10":{"n":4},"12":{"n":7,"g":1},"13":{"n":4.5},"14":{"n":3}}},"c":19},{"i":1540,"n":"Coly","f":"Racine","p":"D","r":8,"s":{"g":"1","s":"42","n":"9","a":"4.67","d":"1.22","Og":"1","Os":"49","On":"11","Oa":"4.5","Od":"1.21","Mp":"2","Dp":"9","p":{"2":{"n":3.5},"4":{"n":7,"g":1},"5":{"n":4},"6":{"n":5},"8":{"n":5},"11":{"n":3.5},"12":{"n":6},"15":{"n":5,"s":1},"16":{"n":3}}},"c":19},{"i":2081,"n":"Clementia","f":"Yannis","p":"G","r":7,"s":{"s":"12","n":"2","a":"6","d":"0.5","Os":"12","On":"2","Oa":"6","Od":"0.5","Gp":"2","p":{"1":{"n":5.5},"2":{"n":6.5}}},"c":19},{"i":2151,"n":"N'Soki","f":"Stanley","p":"M","r":9,"s":{"s":"41","n":"8","a":"5.13","d":"0.6","Ss":"5","Sn":"1","Sa":"5.5","Os":"55","On":"11","Oa":"5","Od":"0.6","Mp":"1","Dp":"10","p":{"4":{"n":6,"s":1},"6":{"n":5.5},"7":{"n":4},"8":{"n":5.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"17":{"n":5.5}}},"c":19},{"i":2276,"n":"Pelmard","f":"Andy","p":"D","r":7,"s":{"s":"48","n":"10","a":"4.8","d":"0.75","Os":"65","On":"14","Oa":"4.68","Od":"0.84","Dp":"14","p":{"2":{"n":5,"s":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":6},"7":{"n":4},"8":{"n":5},"9":{"n":5.5},"10":{"n":4,"s":1},"11":{"n":5}}},"c":19},{"i":2659,"n":"Atal","f":"Youcef","p":"D","r":19,"s":{"g":"1","s":"63","n":"13","a":"4.88","d":"1.27","Ss":"13","Sn":"3","Sa":"4.5","Sd":"1.08","Og":"6","Os":"150","On":"29","Oa":"5.19","Od":"1.43","Mp":"6","Dp":"10","Ap":"13","p":{"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":3},"8":{"n":4.5},"9":{"n":3.5},"11":{"n":4.5},"12":{"n":6},"13":{"n":7.5},"15":{"n":5.5},"16":{"n":3},"17":{"n":5}}},"c":19},{"i":2740,"n":"Danilo","f":"","p":"M","r":8,"s":{"s":"32","n":"6","a":"5.42","d":"0.93","Os":"103","On":"20","Oa":"5.18","Od":"0.88","Mp":"19","Ap":"1","p":{"8":{"n":5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":7},"13":{"n":6}}},"c":19},{"i":2945,"n":"Hamache","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":19},{"i":2959,"n":"Kephren Thuram","f":"","p":"M","r":7,"s":{"s":"24","n":"5","a":"4.8","d":"0.24","Ss":"10","Sn":"2","Sa":"5","Os":"24","On":"5","Oa":"4.8","Od":"0.24","Mp":"5","p":{"2":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":19},{"i":2988,"n":"Drame","f":"Jawad","p":"M","r":1,"s":{"n":0},"c":19},{"i":3502,"n":"Wade","f":"Paul","p":"M","r":1,"s":{"n":0},"c":19},{"i":3506,"n":"Pelican","f":"Maxime","p":"A","r":4,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Ap":"1"},"c":19},{"i":3527,"n":"Jaziri","f":"Assil","p":"M","r":1,"s":{"n":0},"c":19},{"i":3756,"n":"Pedro Brazao","f":"","p":"M","r":1,"s":{"n":0},"c":19},{"i":4141,"n":"Cisse","f":"Ibrahim","p":"D","r":5,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"2":{"n":5,"s":1},"3":{"n":5.5,"s":1}}},"c":19},{"i":6200,"n":"Gameiro","f":"Alexandre","p":"A","r":1,"s":{"n":0},"c":19},{"i":6246,"n":"Guessand","f":"Evann","p":"A","r":4,"s":{"n":0},"c":19},{"i":6247,"n":"Boudaoui","f":"Hichem","p":"M","r":7,"s":{"s":"19","n":"4","a":"4.75","d":"0.43","Ss":"4","Sn":"1","Sa":"4.5","Os":"19","On":"4","Oa":"4.75","Od":"0.43","Mp":"4","p":{"7":{"n":4.5,"s":1},"14":{"n":5.5},"15":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":19},{"i":6250,"n":"Dolberg","f":"Kasper","p":"A","r":21,"s":{"g":"5","s":"60","n":"12","a":"5.04","d":"1.16","Sg":"3","Ss":"32","Sn":"6","Sa":"5.33","Sd":"1.07","Og":"5","Os":"60","On":"12","Oa":"5.04","Od":"1.16","Ap":"12","p":{"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":3.5},"8":{"n":6.5,"g":1},"9":{"n":3.5},"10":{"n":5},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":7,"g":1},"16":{"n":6,"g":1},"17":{"n":4.5}}},"c":19},{"i":117,"n":"Danz\u00e9","f":"Romain","p":"D","r":2,"s":{"n":0},"c":20},{"i":156,"n":"Ben Arfa","f":"Hatem","p":"M","r":16,"s":{"n":0,"Og":"3","Os":"81","On":"16","Oa":"5.06","Od":"1.09","Mp":"8","Ap":"8","p":{"30":{"n":4}}},"c":20},{"i":188,"n":"Da Silva","f":"Damien","p":"D","r":17,"s":{"g":"1","s":"74","n":"14","a":"5.29","d":"0.82","Sg":"1","Ss":"27","Sn":"5","Sa":"5.5","Sd":"0.77","Og":"2","Os":"171","On":"32","Oa":"5.36","Od":"1.04","Dp":"32","p":{"1":{"n":6.5},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":5},"7":{"n":5},"8":{"n":5.5},"10":{"n":3.5},"11":{"n":5},"13":{"n":6},"14":{"n":4},"15":{"n":6,"g":1},"16":{"n":6},"17":{"n":5.5}}},"c":20},{"i":248,"n":"Morel","f":"J\u00e9r\u00e9my","p":"D","r":11,"s":{"g":"1","s":"80","n":"16","a":"5","d":"0.85","Ss":"24","Sn":"5","Sa":"4.9","Sd":"0.37","Og":"1","Os":"97","On":"19","Oa":"5.11","Od":"0.84","Dp":"19","p":{"1":{"n":7,"g":1},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":5},"10":{"n":3},"11":{"n":5,"s":1},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":5.5},"17":{"n":4.5}}},"c":20},{"i":267,"n":"Gnagnon","f":"Joris","p":"D","r":10,"s":{"s":"45","n":"9","a":"5","d":"0.75","Os":"74","On":"15","Oa":"4.97","Od":"0.74","Dp":"15","p":{"5":{"n":5,"s":1},"6":{"n":5},"7":{"n":5.5},"9":{"n":5.5},"10":{"n":3.5},"11":{"n":6},"13":{"n":5.5},"14":{"n":4},"16":{"n":5,"s":1}}},"c":20},{"i":272,"n":"Bensebaini","f":"Ramy","p":"D","r":10,"s":{"n":0,"Os":"56","On":"11","Oa":"5.09","Od":"0.79","Dp":"11"},"c":20},{"i":324,"n":"Badiashile","f":"Loic","p":"G","r":2,"s":{"n":0},"c":20},{"i":333,"n":"Hunou","f":"Adrien","p":"M","r":19,"s":{"g":"5","s":"71","n":"13","a":"5.46","d":"1.05","Sg":"2","Ss":"27","Sn":"5","Sa":"5.5","Sd":"1.26","Og":"12","Os":"151","On":"28","Oa":"5.41","Od":"1.07","Mp":"15","Ap":"13","p":{"30":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":7,"g":1,"s":1},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6.5,"g":1},"11":{"n":6,"g":1},"13":{"n":7,"g":1},"14":{"n":4.5},"15":{"n":4},"16":{"n":7,"g":1},"17":{"n":5}}},"c":20},{"i":370,"n":"Tait","f":"Flavien","p":"M","r":8,"s":{"s":"32","n":"7","a":"4.64","d":"0.52","Ss":"10","Sn":"2","Sa":"5","Og":"3","Os":"142","On":"27","Oa":"5.28","Od":"0.93","Mp":"18","Ap":"9","p":{"1":{"n":3.5},"6":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"14":{"n":5,"s":1},"16":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":20},{"i":374,"n":"Salin","f":"Romain","p":"G","r":9,"s":{"s":"23","n":"4","a":"5.88","d":"1.43","Os":"23","On":"4","Oa":"5.88","Od":"1.43","Gp":"4","p":{"1":{"n":8},"2":{"n":5.5},"9":{"n":6},"10":{"n":4}}},"c":20},{"i":381,"n":"Chant\u00f4me","f":"Cl\u00e9ment","p":"M","r":4,"s":{"n":0},"c":20},{"i":420,"n":"Gertmonas","f":"Edvinas","p":"G","r":1,"s":{"n":0},"c":20},{"i":438,"n":"Zeffane","f":"Mehdi","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"54","On":"11","Oa":"4.91","Od":"0.9","Dp":"11","p":{"30":{"n":5}}},"c":20},{"i":439,"n":"Faitout Maouassa","f":"","p":"M","r":11,"s":{"g":"1","s":"61","n":"12","a":"5.13","d":"0.51","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Og":"1","Os":"150","On":"30","Oa":"5.02","Od":"0.79","Mp":"1","Dp":"29","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4},"4":{"n":5},"5":{"n":5.5},"8":{"n":4.5},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":5.5},"15":{"n":5},"16":{"n":5.5},"17":{"n":5}}},"c":20},{"i":491,"n":"Janvier","f":"Nicolas","p":"M","r":1,"s":{"n":0},"c":20},{"i":528,"n":"Lea Siliki","f":"James","p":"M","r":7,"s":{"s":"49","n":"10","a":"4.95","d":"0.27","Ss":"5","Sn":"1","Sa":"5","Os":"114","On":"23","Oa":"4.98","Od":"0.54","Mp":"22","Dp":"1","p":{"30":{"n":6},"1":{"n":5.5},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"9":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"17":{"n":5}}},"c":20},{"i":532,"n":"Diallo","f":"Namakoro","p":"D","r":1,"s":{"n":0},"c":20},{"i":874,"n":"Sakho","f":"Diafra","p":"A","r":6,"s":{"n":0},"c":20},{"i":922,"n":"Niang","f":"M'Baye","p":"A","r":26,"s":{"g":"6","s":"78","n":"15","a":"5.2","d":"1.55","Sg":"3","Ss":"28","Sn":"5","Sa":"5.6","Sd":"1.77","Og":"16","Os":"182","On":"33","Oa":"5.52","Od":"1.36","Mp":"5","Ap":"28","p":{"30":{"n":5},"1":{"n":4.5},"2":{"n":6,"g":1},"3":{"n":7,"g":1},"4":{"n":4},"6":{"n":5},"7":{"n":2.5},"8":{"n":5.5},"9":{"n":5},"10":{"n":3.5},"11":{"n":7,"g":1},"13":{"n":8,"g":1},"14":{"n":4},"15":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":7.5,"g":2}}},"c":20},{"i":1182,"n":"Hamari Traor\u00e9","f":"","p":"D","r":12,"s":{"s":"83","n":"16","a":"5.22","d":"0.92","Ss":"27","Sn":"5","Sa":"5.5","Sd":"0.84","Os":"170","On":"34","Oa":"5.01","Od":"0.94","Dp":"34","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"11":{"n":4.5},"13":{"n":6.5},"14":{"n":4.5},"15":{"n":6.5},"16":{"n":5},"17":{"n":5}}},"c":20},{"i":1187,"n":"Bourigeaud","f":"Benjamin","p":"M","r":15,"s":{"s":"77","n":"14","a":"5.54","d":"0.52","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.62","Og":"3","Os":"172","On":"32","Oa":"5.38","Od":"0.94","Mp":"32","p":{"2":{"n":5.5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"13":{"n":5.5},"15":{"n":6.5},"16":{"n":6},"17":{"n":5}}},"c":20},{"i":1194,"n":"Grenier","f":"Cl\u00e9ment","p":"M","r":8,"s":{"g":"1","s":"52","n":"10","a":"5.25","d":"0.9","Og":"1","Os":"135","On":"26","Oa":"5.21","Od":"0.91","Mp":"25","Ap":"1","p":{"1":{"n":6},"2":{"n":6},"3":{"n":7,"g":1},"4":{"n":4.5},"5":{"n":5.5},"7":{"n":5.5},"8":{"n":5,"s":1},"9":{"n":4},"10":{"n":4},"14":{"n":5}}},"c":20},{"i":1213,"n":"Diallo","f":"Abdoulaye","p":"G","r":6,"s":{"n":0},"c":20},{"i":1239,"n":"Del Castillo","f":"Romain","p":"M","r":14,"s":{"g":"1","s":"61","n":"11","a":"5.59","d":"1.08","Ss":"31","Sn":"5","Sa":"6.3","Sd":"0.87","Og":"1","Os":"129","On":"25","Oa":"5.16","Od":"0.87","Mp":"19","Ap":"6","p":{"30":{"n":5,"s":1},"2":{"n":6.5,"g":1},"3":{"n":4},"4":{"n":5,"s":1},"6":{"n":4},"7":{"n":5},"11":{"n":5.5},"13":{"n":7,"s":1},"14":{"n":5},"15":{"n":7},"16":{"n":7},"17":{"n":5.5}}},"c":20},{"i":1268,"n":"Salles-Lamonge","f":"Sebastien","p":"M","r":1,"s":{"n":0},"c":20},{"i":1400,"n":"Martin","f":"Jonas","p":"M","r":7,"s":{"s":"31","n":"6","a":"5.25","d":"0.69","Os":"69","On":"13","Oa":"5.35","Od":"0.91","Mp":"13","p":{"1":{"n":6,"e":3926,"c":41},"2":{"n":5.5,"e":3914,"c":41},"3":{"n":4,"e":3910,"c":41},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":6}}},"c":20},{"i":1526,"n":"Koubek","f":"Tomas","p":"G","r":16,"s":{"n":0,"Os":"118","On":"21","Oa":"5.62","Od":"1.08","Gp":"21","p":{"30":{"n":5.5}}},"c":20},{"i":2035,"n":"Nyamsi","f":"Gerzino","p":"D","r":6,"s":{"s":"15","n":"3","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"49","On":"11","Oa":"4.45","Od":"0.86","Dp":"11","p":{"30":{"n":5},"1":{"n":5,"s":1},"3":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":20},{"i":2084,"n":"Gelin","f":"Jeremy","p":"D","r":8,"s":{"s":"53","n":"10","a":"5.35","d":"0.78","Os":"117","On":"23","Oa":"5.11","Od":"0.66","Mp":"4","Dp":"19","p":{"30":{"n":6,"s":1},"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":5},"6":{"n":4},"8":{"n":6},"9":{"n":4},"13":{"n":5,"s":1},"14":{"n":6}}},"c":20},{"i":2618,"n":"Johansson","f":"Jakob","p":"M","r":6,"s":{"n":0,"Os":"45","On":"9","Oa":"5.06","Od":"0.5","Mp":"9"},"c":20},{"i":2676,"n":"Mendy","f":"Edouard","p":"G","r":18,"s":{"s":"70","n":"12","a":"5.83","d":"0.96","Ss":"28","Sn":"5","Sa":"5.6","Sd":"1.07","Os":"186","On":"33","Oa":"5.65","Od":"0.99","Gp":"33","p":{"3":{"n":8},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":5.5},"11":{"n":5.5},"13":{"n":6},"14":{"n":5},"15":{"n":4.5},"16":{"n":7.5},"17":{"n":5}}},"c":20},{"i":2677,"n":"Guitane","f":"Rafik","p":"M","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"10":{"n":4.5,"s":1}}},"c":20},{"i":2690,"n":"Poha","f":"Denis","p":"M","r":7,"s":{"n":0},"c":20},{"i":2697,"n":"Jordan Siebatcheu","f":"","p":"A","r":8,"s":{"s":"53","n":"12","a":"4.42","d":"0.4","Og":"2","Os":"73","On":"16","Oa":"4.59","Od":"0.97","Ap":"16","p":{"1":{"n":4.5,"s":1},"2":{"n":4,"s":1},"3":{"n":4,"s":1},"4":{"n":4},"5":{"n":4},"7":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5}}},"c":20},{"i":2787,"n":"Gboho","f":"Yann","p":"M","r":9,"s":{"g":"1","s":"15","n":"3","a":"5","d":"0.82","Og":"1","Os":"15","On":"3","Oa":"5","Od":"0.82","Mp":"2","Ap":"1","p":{"10":{"n":5,"s":1},"11":{"n":6,"g":1,"s":1},"13":{"n":4}}},"c":20},{"i":2819,"n":"Rutter","f":"Georginio","p":"M","r":1,"s":{"n":0},"c":20},{"i":3125,"n":"Doumbia","f":"Souleyman","p":"D","r":5,"s":{"n":0,"Os":"33","On":"7","Oa":"4.79","Od":"0.92","Dp":"7","p":{"30":{"n":4.5}}},"c":20},{"i":3186,"n":"Camavinga","f":"Eduardo","p":"M","r":16,"s":{"s":"84","n":"15","a":"5.6","d":"0.93","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.62","Os":"123","On":"22","Oa":"5.59","Od":"0.81","Mp":"22","p":{"1":{"n":7},"2":{"n":7},"3":{"n":6},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":4.5},"11":{"n":5},"13":{"n":7},"15":{"n":6},"16":{"n":6.5},"17":{"n":5,"s":1}}},"c":20},{"i":3229,"n":"Matondo","f":"Isaac","p":"A","r":1,"s":{"n":0},"c":20},{"i":3525,"n":"Boey","f":"Sacha","p":"D","r":5,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":20},{"i":3778,"n":"Guclu","f":"Metehan","p":"A","r":1,"s":{"n":0},"c":20},{"i":6150,"n":"Damergy","f":"Elias","p":"G","r":1,"s":{"n":0},"c":20},{"i":6249,"n":"Raphinha","f":"","p":"A","r":20,"s":{"g":"3","s":"63","n":"11","a":"5.73","d":"1.16","Sg":"3","Ss":"33","Sn":"5","Sa":"6.7","Sd":"0.81","Og":"3","Os":"63","On":"11","Oa":"5.73","Od":"1.16","Mp":"7","Ap":"4","p":{"5":{"n":4.5},"6":{"n":5.5},"7":{"n":4,"s":1},"8":{"n":5},"9":{"n":4.5},"11":{"n":6},"13":{"n":7.5,"g":1},"14":{"n":6,"g":1},"15":{"n":7,"g":1},"16":{"n":5.5},"17":{"n":7.5}}},"c":20},{"i":6274,"n":"Bonet","f":"P\u00e9p\u00e9","p":"G","r":3,"s":{"n":0},"c":20},{"i":6344,"n":"Da Cunha","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":20},{"i":297,"n":"Prcic","f":"Sanjin","p":"M","r":7,"s":{"s":"15","n":"3","a":"5","Og":"2","Os":"87","On":"16","Oa":"5.44","Od":"0.68","Mp":"16","p":{"5":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5}}},"c":41},{"i":332,"n":"Djiku","f":"Alexander","p":"D","r":14,"s":{"s":"79","n":"15","a":"5.27","d":"0.91","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"160","On":"32","Oa":"5.02","Od":"1.18","Mp":"3","Dp":"29","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4},"4":{"n":4},"5":{"n":5.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":6},"9":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":6.5},"14":{"n":7},"15":{"n":4.5},"17":{"n":5.5}}},"c":41},{"i":357,"n":"Thomasson","f":"Adrien","p":"M","r":21,"s":{"g":"4","s":"83","n":"15","a":"5.53","d":"1.32","Sg":"2","Ss":"57","Sn":"10","Sa":"5.7","Sd":"1.27","Og":"7","Os":"179","On":"34","Oa":"5.28","Od":"1.19","Mp":"20","Ap":"14","p":{"22":{"n":5},"1":{"n":6.5,"g":1},"2":{"n":4},"4":{"n":7,"g":1},"5":{"n":3.5},"6":{"n":5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":7,"g":1},"12":{"n":5},"13":{"n":7},"14":{"n":8},"15":{"n":4},"16":{"n":4.5},"17":{"n":6.5,"g":1}}},"c":41},{"i":442,"n":"Corgnet","f":"Benjamin","p":"M","r":7,"s":{"s":"18","n":"4","a":"4.5","d":"0.5","Ss":"5","Sn":"1","Sa":"5","Os":"43","On":"9","Oa":"4.78","Od":"0.48","Mp":"6","Ap":"3","p":{"3":{"n":4},"7":{"n":4},"13":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":41},{"i":486,"n":"Kawashima","f":"Eiji","p":"G","r":3,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1"},"c":41},{"i":747,"n":"Kon\u00e9","f":"Lamine","p":"D","r":12,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.94","Sg":"1","Ss":"9","Sn":"2","Sa":"4.75","Sd":"1.25","Og":"2","Os":"129","On":"27","Oa":"4.8","Od":"1.02","Dp":"27","p":{"22":{"n":6},"1":{"n":5.5},"3":{"n":4},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":3},"8":{"n":5},"9":{"n":4},"10":{"n":5.5},"13":{"n":4.5,"s":1},"16":{"n":3.5},"17":{"n":6,"g":1}}},"c":41},{"i":1405,"n":"Saadi","f":"Idriss","p":"A","r":5,"s":{"n":0},"c":41},{"i":1409,"n":"Lienard","f":"Dimitri","p":"M","r":14,"s":{"g":"2","s":"80","n":"14","a":"5.75","d":"1.24","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.25","Og":"2","Os":"133","On":"24","Oa":"5.56","Od":"1.04","Mp":"22","Dp":"2","p":{"22":{"n":5},"1":{"n":7},"2":{"n":5,"s":1},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":7,"g":1,"s":1},"7":{"n":4},"8":{"n":6},"9":{"n":4.5},"11":{"n":7},"12":{"n":5},"13":{"n":8,"g":1},"15":{"n":5},"16":{"n":4,"s":1},"17":{"n":7}}},"c":41},{"i":1413,"n":"Ndour","f":"Abdallah","p":"D","r":7,"s":{"s":"19","n":"4","a":"4.88","d":"0.74","Os":"39","On":"8","Oa":"4.88","Od":"0.96","Mp":"5","Dp":"3","p":{"22":{"n":5.5},"2":{"n":5},"3":{"n":4},"8":{"n":6},"9":{"n":4.5}}},"c":41},{"i":1420,"n":"Grimm","f":"Jeremy","p":"M","r":5,"s":{"n":0},"c":41},{"i":1428,"n":"Kamara","f":"Bingourou","p":"G","r":7,"s":{"n":0},"c":41},{"i":1458,"n":"Nuno da Costa","f":"","p":"A","r":9,"s":{"g":"1","s":"56","n":"12","a":"4.67","d":"0.77","Og":"5","Os":"142","On":"30","Oa":"4.75","Od":"0.99","Mp":"2","Ap":"28","p":{"22":{"n":4.5,"s":1},"1":{"n":4,"s":1},"2":{"n":4,"s":1},"3":{"n":5.5},"4":{"n":4,"s":1},"6":{"n":5.5},"7":{"n":4.5,"s":1},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":5,"s":1},"14":{"n":6.5,"g":1,"s":1},"15":{"n":4,"s":1},"16":{"n":4}}},"c":41},{"i":1461,"n":"Caci","f":"Anthony","p":"M","r":13,"s":{"g":"1","s":"38","n":"7","a":"5.5","d":"1.22","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"126","On":"25","Oa":"5.06","Od":"1","Mp":"8","Dp":"17","p":{"22":{"n":5.5},"10":{"n":4},"11":{"n":6},"12":{"n":5},"13":{"n":5},"14":{"n":8,"g":1},"15":{"n":4.5},"17":{"n":6}}},"c":41},{"i":1462,"n":"Lala","f":"Kenny","p":"D","r":18,"s":{"g":"1","s":"76","n":"15","a":"5.07","d":"0.57","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"178","On":"34","Oa":"5.25","Od":"0.84","Mp":"21","Dp":"13","p":{"22":{"n":7,"g":1},"1":{"n":5},"2":{"n":5},"3":{"n":5,"s":1},"4":{"n":5.5,"g":1},"5":{"n":5.5},"6":{"n":6},"8":{"n":5},"9":{"n":4},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":4.5},"14":{"n":6},"15":{"n":4},"17":{"n":5}}},"c":41},{"i":1463,"n":"Zohi","f":"K\u00e9vin","p":"M","r":7,"s":{"s":"37","n":"8","a":"4.63","d":"0.22","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Os":"71","On":"15","Oa":"4.73","Od":"0.25","Mp":"6","Ap":"9","p":{"1":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":41},{"i":1871,"n":"Carole","f":"Lionel","p":"D","r":8,"s":{"s":"46","n":"10","a":"4.6","d":"0.66","Os":"97","On":"20","Oa":"4.85","Od":"0.85","Mp":"10","Dp":"10","p":{"1":{"n":5},"3":{"n":3.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":4},"8":{"n":5,"s":1},"10":{"n":5},"14":{"n":5,"s":1},"16":{"n":3.5}}},"c":41},{"i":2043,"n":"Bangou","f":"Duplexe Tchamba","p":"D","r":1,"s":{"n":0},"c":41},{"i":2077,"n":"Aaneba","f":"Isma\u00ebl","p":"D","r":1,"s":{"n":0,"Os":"3","On":"1","Oa":"3","Mp":"1"},"c":41},{"i":2289,"n":"Zemzemi","f":"Moataz","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":41},{"i":2309,"n":"Mothiba","f":"Lebo","p":"A","r":12,"s":{"g":"4","s":"75","n":"16","a":"4.72","d":"1.48","Sg":"4","Ss":"75","Sn":"16","Sa":"4.72","Sd":"1.48","Og":"6","Os":"157","On":"34","Oa":"4.63","Od":"1.17","Ap":"34","p":{"22":{"n":4.5,"s":1},"2":{"n":4,"s":1},"3":{"n":4.5},"4":{"n":3.5},"5":{"n":4.5,"s":1},"6":{"n":4,"s":1},"7":{"n":3.5},"8":{"n":4,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5.5},"12":{"n":3},"13":{"n":8,"g":2},"14":{"n":7.5,"g":1},"15":{"n":4.5},"16":{"n":3},"17":{"n":7,"g":1}}},"c":41},{"i":2609,"n":"Sels","f":"Matz","p":"G","r":20,"s":{"s":"95","n":"17","a":"5.62","d":"1.04","Ss":"95","Sn":"17","Sa":"5.62","Sd":"1.04","Os":"208","On":"37","Oa":"5.62","Od":"0.99","Gp":"37","p":{"22":{"n":6},"1":{"n":5.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":8},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":6},"15":{"n":4},"16":{"n":4},"17":{"n":6}}},"c":41},{"i":2679,"n":"Sissoko","f":"Ibrahima","p":"M","r":10,"s":{"s":"68","n":"14","a":"4.89","d":"1","Ss":"8","Sn":"2","Sa":"4","Sd":"1","Og":"2","Os":"150","On":"30","Oa":"5","Od":"1.05","Mp":"30","p":{"22":{"n":5},"2":{"n":5},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":4},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":7},"16":{"n":3},"17":{"n":5}}},"c":41},{"i":2717,"n":"Ajorque","f":"Ludovic","p":"A","r":19,"s":{"g":"5","s":"83","n":"16","a":"5.19","d":"1.41","Sg":"5","Ss":"74","Sn":"14","Sa":"5.32","Sd":"1.46","Og":"13","Os":"183","On":"35","Oa":"5.24","Od":"1.31","Ap":"35","p":{"22":{"n":5},"1":{"n":4.5},"2":{"n":4},"4":{"n":5.5},"5":{"n":4},"6":{"n":6,"g":1},"7":{"n":4.5,"s":1},"8":{"n":6,"g":1},"9":{"n":4},"10":{"n":3.5},"11":{"n":5},"12":{"n":3.5},"13":{"n":8,"g":1},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":8,"g":1}}},"c":41},{"i":2726,"n":"Stefan Mitrovic","f":"","p":"D","r":9,"s":{"s":"63","n":"13","a":"4.85","d":"0.97","Os":"160","On":"32","Oa":"5.02","Od":"0.84","Dp":"32","p":{"1":{"n":5.5},"2":{"n":5.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":3},"9":{"n":5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":4},"16":{"n":3}}},"c":41},{"i":2768,"n":"Fofana","f":"Youssouf","p":"M","r":13,"s":{"g":"1","s":"48","n":"9","a":"5.39","d":"0.97","Sg":"1","Ss":"43","Sn":"8","Sa":"5.44","Sd":"1.01","Og":"3","Os":"113","On":"21","Oa":"5.38","Od":"1.1","Mp":"21","p":{"22":{"n":6.5},"1":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":5.5},"13":{"n":6},"14":{"n":7},"15":{"n":6.5,"g":1},"16":{"n":3.5},"17":{"n":5,"s":1}}},"c":41},{"i":2769,"n":"Simakan","f":"Mohamed","p":"D","r":8,"s":{"s":"67","n":"14","a":"4.79","d":"0.92","Ss":"18","Sn":"4","Sa":"4.63","Sd":"1.08","Os":"67","On":"14","Oa":"4.79","Od":"0.92","Mp":"2","Dp":"12","p":{"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":4},"8":{"n":3.5},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":3},"17":{"n":5}}},"c":41},{"i":2820,"n":"Pelletier","f":"Louis","p":"G","r":1,"s":{"n":0},"c":41},{"i":3187,"n":"Valentin","f":"Leon","p":"D","r":1,"s":{"n":0},"c":41},{"i":3188,"n":"Karamoko","f":"Mamoudoou","p":"A","r":1,"s":{"n":0},"c":41},{"i":3775,"n":"Bellegarde","f":"Jean-Ricner","p":"M","r":13,"s":{"s":"81","n":"16","a":"5.09","d":"0.67","Os":"81","On":"16","Oa":"5.09","Od":"0.67","Mp":"16","p":{"1":{"n":4,"s":1},"2":{"n":4.5},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":6},"12":{"n":5},"13":{"n":5.5},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":41},{"i":5457,"n":"Lebeau","f":"Adrien","p":"D","r":4,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":41},{"i":5458,"n":"Botella","f":"Ivann","p":"A","r":4,"s":{"n":0},"c":41},{"i":6002,"n":"Ounahi","f":"Azz-Eddine","p":"M","r":1,"s":{"n":0},"c":41},{"i":170,"n":"Bodmer","f":"Mathieu","p":"D","r":8,"s":{"g":"1","s":"40","n":"8","a":"5","d":"0.43","Og":"1","Os":"85","On":"18","Oa":"4.72","Od":"0.56","Mp":"11","Dp":"6","Ap":"1","p":{"5":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1}}},"c":42},{"i":238,"n":"Blin","f":"Alexis","p":"M","r":10,"s":{"s":"66","n":"13","a":"5.08","d":"0.78","Ss":"4","Sn":"1","Sa":"4","Os":"164","On":"32","Oa":"5.13","Od":"0.83","Mp":"31","Dp":"1","p":{"32":{"n":4.5},"1":{"n":5.5},"2":{"n":6},"3":{"n":6},"4":{"n":3.5},"5":{"n":5},"6":{"n":6},"8":{"n":4},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"14":{"n":5},"17":{"n":4}}},"c":42},{"i":309,"n":"Dreyer","f":"Matthieu","p":"G","r":7,"s":{"n":0},"c":42},{"i":367,"n":"Jallet","f":"Christophe","p":"D","r":6,"s":{"g":"1","s":"39","n":"8","a":"4.94","d":"1.04","Og":"1","Os":"68","On":"14","Oa":"4.86","Od":"0.83","Dp":"14","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":7,"g":1},"6":{"n":5},"14":{"n":3},"15":{"n":4.5,"s":1}}},"c":42},{"i":1397,"n":"Dibassy","f":"Bakaye","p":"D","r":8,"s":{"g":"1","ao":"1","s":"59","n":"13","a":"4.54","d":"1.06","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Oao":"1","Os":"146","On":"31","Oa":"4.73","Od":"0.84","Dp":"31","p":{"32":{"n":4.5},"2":{"n":6},"3":{"n":4},"6":{"n":6,"g":1},"7":{"n":3},"8":{"n":4.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":3.5,"a":1},"12":{"n":6},"13":{"n":4.5},"14":{"n":3},"15":{"n":3.5},"17":{"n":4.5}}},"c":42},{"i":1403,"n":"Gurtner","f":"R\u00e9gis","p":"G","r":15,"s":{"s":"82","n":"16","a":"5.13","d":"1.02","Ss":"5","Sn":"1","Sa":"5","Os":"199","On":"37","Oa":"5.39","Od":"1.09","Gp":"37","p":{"32":{"n":7},"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":2.5},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":4},"12":{"n":6},"13":{"n":6},"14":{"n":4},"15":{"n":4},"17":{"n":5}}},"c":42},{"i":1404,"n":"Monconduit","f":"Thomas","p":"M","r":8,"s":{"s":"42","n":"9","a":"4.67","d":"0.82","Ss":"4","Sn":"1","Sa":"4","Os":"144","On":"29","Oa":"4.97","Od":"0.83","Mp":"29","p":{"32":{"n":4.5,"s":1},"1":{"n":4.5},"2":{"n":6.5},"3":{"n":5},"5":{"n":4.5,"s":1},"7":{"n":4},"11":{"n":5,"s":1},"13":{"n":3.5},"14":{"n":5,"s":1},"17":{"n":4}}},"c":42},{"i":1416,"n":"Konat\u00e9","f":"Moussa","p":"A","r":8,"s":{"s":"21","n":"5","a":"4.3","d":"0.4","Ss":"3","Sn":"1","Sa":"3.5","Og":"4","Os":"97","On":"21","Oa":"4.62","Od":"0.99","Ap":"21","p":{"32":{"n":3.5},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5},"17":{"n":3.5,"s":1}}},"c":42},{"i":1419,"n":"Ad\u00e9non","f":"Khaled","p":"D","r":8,"s":{"n":0,"Os":"39","On":"8","Oa":"4.94","Od":"0.68","Dp":"8"},"c":42},{"i":1425,"n":"Ielsch","f":"Julien","p":"D","r":6,"s":{"n":0},"c":42},{"i":1436,"n":"Kakuta","f":"Ga\u00ebl","p":"M","r":12,"s":{"g":"1","s":"72","n":"15","a":"4.83","d":"0.92","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"86","On":"18","Oa":"4.81","Od":"0.85","Mp":"17","Ap":"1","p":{"2":{"n":5.5},"3":{"n":5},"4":{"n":4},"5":{"n":4.5},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":6.5},"10":{"n":5},"11":{"n":4},"12":{"n":6},"13":{"n":5},"14":{"n":3.5},"15":{"n":6,"g":1},"17":{"n":3}}},"c":42},{"i":1437,"n":"Koita","f":"Bachibou","p":"A","r":1,"s":{"n":0},"c":42},{"i":1449,"n":"Prince","f":"","p":"D","r":5,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Os":"101","On":"20","Oa":"5.05","Od":"0.71","Dp":"20","p":{"32":{"n":5},"1":{"n":5},"2":{"n":6},"3":{"n":4.5}}},"c":42},{"i":1453,"n":"Cornette","f":"Quentin","p":"A","r":5,"s":{"s":"24","n":"5","a":"4.8","d":"0.87","Ss":"4","Sn":"1","Sa":"4.5","Os":"28","On":"6","Oa":"4.75","Od":"0.8","Mp":"1","Ap":"5","p":{"4":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6.5},"15":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":42},{"i":1454,"n":"Talal","f":"Madih","p":"M","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":4.5,"s":1},"10":{"n":5,"s":1}}},"c":42},{"i":1460,"n":"Banaziak","f":"Gauthier","p":"G","r":1,"s":{"n":0},"c":42},{"i":1538,"n":"Zungu","f":"Bongani","p":"M","r":8,"s":{"g":"1","s":"53","n":"11","a":"4.82","d":"0.75","Og":"1","Os":"66","On":"14","Oa":"4.71","Od":"0.75","Mp":"14","p":{"32":{"n":4.5,"s":1},"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5.5},"15":{"n":3.5}}},"c":42},{"i":1701,"n":"Ganso","f":"","p":"M","r":7,"s":{"n":0},"c":42},{"i":2041,"n":"Khalid","f":"Driss","p":"A","r":1,"s":{"n":0},"c":42},{"i":2235,"n":"Mendoza","f":"John Stiven","p":"M","r":14,"s":{"g":"4","s":"49","n":"9","a":"5.44","d":"1.21","Og":"5","Os":"123","On":"25","Oa":"4.94","Od":"1.21","Mp":"22","Ap":"3","p":{"32":{"n":5.5},"7":{"n":6,"g":1},"8":{"n":7,"g":1},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":6.5,"g":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":3.5},"15":{"n":4}}},"c":42},{"i":2261,"n":"Diabat\u00e9","f":"Fousseni","p":"A","r":8,"s":{"s":"38","n":"8","a":"4.75","d":"0.56","Ss":"4","Sn":"1","Sa":"4.5","Os":"38","On":"8","Oa":"4.75","Od":"0.56","Mp":"6","Ap":"2","p":{"5":{"n":4.5},"6":{"n":5},"7":{"n":4},"9":{"n":6,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5},"15":{"n":4.5},"17":{"n":4.5}}},"c":42},{"i":2675,"n":"Lefort","f":"Jordan","p":"D","r":6,"s":{"s":"29","n":"7","a":"4.21","d":"0.84","Ss":"4","Sn":"1","Sa":"4.5","Os":"88","On":"19","Oa":"4.66","Od":"0.84","Mp":"1","Dp":"18","p":{"1":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":3.5},"5":{"n":4.5},"6":{"n":5,"s":1},"15":{"n":2.5},"17":{"n":4.5}}},"c":42},{"i":2706,"n":"Otero","f":"Juan Ferney","p":"A","r":8,"s":{"g":"1","s":"53","n":"11","a":"4.82","d":"1.01","Og":"3","Os":"140","On":"29","Oa":"4.84","Od":"0.89","Mp":"15","Ap":"14","p":{"32":{"n":4,"s":1},"1":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":4},"9":{"n":5},"10":{"n":5},"12":{"n":6.5,"g":1},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":2.5}}},"c":42},{"i":2728,"n":"Gnahore","f":"Eddy","p":"M","r":8,"s":{"s":"59","n":"13","a":"4.58","d":"1.11","Og":"1","Os":"150","On":"31","Oa":"4.85","Od":"0.94","Mp":"30","Ap":"1","p":{"32":{"n":5.5},"1":{"n":2},"4":{"n":4.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":3.5},"15":{"n":3.5}}},"c":42},{"i":2773,"n":"Gauducheau","f":"Antonin","p":"G","r":1,"s":{"n":0},"c":42},{"i":2774,"n":"Gneba","f":"Martin","p":"A","r":1,"s":{"n":0},"c":42},{"i":2775,"n":"Traore","f":"Gaoussou","p":"M","r":1,"s":{"n":0},"c":42},{"i":2776,"n":"Ngando","f":"Jean-Claude","p":"M","r":1,"s":{"n":0},"c":42},{"i":2777,"n":"Sy","f":"Sanasi","p":"D","r":5,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":42},{"i":2778,"n":"Gendrey","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":42},{"i":2785,"n":"Rabei","f":"Reda","p":"M","r":1,"s":{"n":0},"c":42},{"i":2794,"n":"Kurzawa","f":"Rafal","p":"A","r":5,"s":{"n":0,"Os":"18","On":"4","Oa":"4.5","Ap":"4"},"c":42},{"i":2832,"n":"Ghoddos","f":"Saman","p":"A","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Og":"1","Os":"72","On":"14","Oa":"5.14","Od":"0.77","Mp":"8","Ap":"6","p":{"1":{"n":4.5,"s":1},"2":{"n":6}}},"c":42},{"i":2937,"n":"Segarel","f":"Stanley","p":"A","r":4,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Ap":"2"},"c":42},{"i":2994,"n":"Mathurin Sakho","f":"","p":"D","r":1,"s":{"n":0},"c":42},{"i":3366,"n":"Guirassy","f":"Serhou","p":"A","r":13,"s":{"g":"4","s":"71","n":"14","a":"5.11","d":"1.37","Ss":"4","Sn":"1","Sa":"4.5","Og":"7","Os":"134","On":"26","Oa":"5.17","Od":"1.27","Ap":"26","p":{"32":{"n":4.5},"1":{"n":5},"2":{"n":6,"g":1},"3":{"n":6.5},"4":{"n":3.5},"5":{"n":5.5},"6":{"n":7.5,"g":1},"7":{"n":4.5},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":2.5},"13":{"n":6,"g":1},"14":{"n":3.5},"17":{"n":4.5}}},"c":42},{"i":3515,"n":"Gomis","f":"Iron","p":"M","r":1,"s":{"n":0},"c":42},{"i":3759,"n":"Lahne","f":"Jack","p":"A","r":9,"s":{"g":"1","s":"6","n":"1","a":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"15":{"n":6,"g":1,"s":1}}},"c":42},{"i":3762,"n":"Eneme","f":"Ulrich","p":"M","r":3,"s":{"n":0},"c":42},{"i":3803,"n":"Aleesami","f":"Haitam","p":"D","r":9,"s":{"g":"1","s":"69","n":"16","a":"4.34","d":"0.84","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"69","On":"16","Oa":"4.34","Od":"0.84","Mp":"1","Dp":"15","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":4},"4":{"n":3.5},"5":{"n":4},"6":{"n":5},"7":{"n":4},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":3},"14":{"n":3},"15":{"n":4},"17":{"n":4}}},"c":42},{"i":4510,"n":"Calabresi","f":"Arturo","p":"D","r":9,"s":{"g":"1","s":"41","n":"10","a":"4.15","d":"1.05","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"41","On":"10","Oa":"4.15","Od":"1.05","Dp":"10","p":{"4":{"n":4},"7":{"n":3},"8":{"n":4.5},"9":{"n":5},"10":{"n":6.5,"g":1},"11":{"n":3.5},"12":{"n":5},"13":{"n":3.5},"15":{"n":3},"17":{"n":3.5}}},"c":42},{"i":6004,"n":"Demirel","f":"Umit","p":"A","r":2,"s":{"n":0},"c":42},{"i":6005,"n":"Papeau","f":"Jayson","p":"M","r":2,"s":{"n":0},"c":42},{"i":6006,"n":"Bumbu","f":"Jonathan","p":"M","r":3,"s":{"n":0},"c":42},{"i":6007,"n":"Essele","f":"Boris","p":"G","r":3,"s":{"n":0},"c":42},{"i":6010,"n":"Tokpa","f":"Darell","p":"A","r":1,"s":{"n":0},"c":42},{"i":6020,"n":"Akolo","f":"Chadrac","p":"A","r":10,"s":{"g":"2","s":"57","n":"11","a":"5.18","d":"0.86","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"57","On":"11","Oa":"5.18","Od":"0.86","Mp":"4","Ap":"7","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":6.5},"3":{"n":4.5},"4":{"n":5},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"11":{"n":6.5,"g":1,"s":1},"12":{"n":5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5},"17":{"n":5,"s":1}}},"c":42},{"i":6252,"n":"Chedjou","f":"Aur\u00e9lien","p":"D","r":8,"s":{"s":"52","n":"11","a":"4.73","d":"1.03","Ss":"5","Sn":"1","Sa":"5","Os":"52","On":"11","Oa":"4.73","Od":"1.03","Dp":"11","p":{"5":{"n":5},"6":{"n":6},"7":{"n":4},"8":{"n":5},"9":{"n":6},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":6},"13":{"n":3},"14":{"n":3},"17":{"n":5}}},"c":42},{"i":87,"n":"Diallo","f":"Moustapha","p":"M","r":4,"s":{"n":0},"c":67},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":8,"s":{"g":"1","s":"61","n":"12","a":"5.08","d":"1.19","Og":"4","Os":"121","On":"24","Oa":"5.04","Od":"1.05","Mp":"24","p":{"5":{"n":5.5},"6":{"n":7},"7":{"n":4.5},"8":{"n":6.5},"9":{"n":5},"14":{"n":4,"s":1},"15":{"n":5.5},"16":{"n":2.5},"1":{"n":4.5,"e":5061,"c":14},"2":{"n":4.5,"e":5056,"c":14},"3":{"n":5,"e":5040,"c":14},"4":{"n":6.5,"e":5028,"c":14,"g":1}}},"c":67},{"i":310,"n":"Philippoteaux","f":"Romain","p":"M","r":14,"s":{"g":"3","s":"78","n":"15","a":"5.2","d":"1.08","Ss":"4","Sn":"1","Sa":"4","Og":"3","Os":"78","On":"15","Oa":"5.2","Od":"1.08","Mp":"10","Ap":"5","p":{"1":{"n":3},"2":{"n":4.5,"s":1},"3":{"n":7,"g":1},"4":{"n":6},"5":{"n":5},"6":{"n":7,"g":1},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"13":{"n":5.5,"g":1},"14":{"n":4},"15":{"n":4.5},"17":{"n":4}}},"c":67},{"i":460,"n":"Martinez","f":"Pablo","p":"D","r":11,"s":{"g":"1","s":"70","n":"15","a":"4.67","d":"1.31","Ss":"18","Sn":"5","Sa":"3.6","Sd":"0.97","Og":"2","Os":"153","On":"31","Oa":"4.95","Od":"1.15","Dp":"31","p":{"1":{"n":3.5},"2":{"n":4},"4":{"n":6.5},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":4},"10":{"n":7,"g":1},"11":{"n":5.5},"13":{"n":3},"14":{"n":5},"15":{"n":4.5},"16":{"n":2.5},"17":{"n":3}}},"c":67},{"i":514,"n":"Bernardoni","f":"Paul","p":"G","r":12,"s":{"s":"69","n":"13","a":"5.35","d":"1.06","Ss":"20","Sn":"4","Sa":"5","Sd":"1.5","Os":"182","On":"34","Oa":"5.37","Od":"1.07","Gp":"34","p":{"24":{"n":6},"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5},"4":{"n":6.5},"5":{"n":6},"6":{"n":6.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":6},"14":{"n":6.5},"15":{"n":5.5},"16":{"n":2.5},"17":{"n":5.5}}},"c":67},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":67},{"i":2604,"n":"Hsissane","f":"Abdelmalik","p":"M","r":1,"s":{"n":0},"c":67},{"i":2606,"n":"Landre","f":"Lo\u00efck","p":"D","r":6,"s":{"s":"10","n":"2","a":"5","d":"0.5","Og":"2","Os":"57","On":"11","Oa":"5.18","Od":"1.19","Dp":"11","p":{"24":{"n":6},"3":{"n":5.5},"7":{"n":4.5}}},"c":67},{"i":2611,"n":"Vlachodimos","f":"Panagiotis","p":"M","r":3,"s":{"n":0},"c":67},{"i":2612,"n":"Cadamuro","f":"Liassine","p":"D","r":7,"s":{"n":0},"c":67},{"i":2649,"n":"Harek","f":"Fethi","p":"D","r":4,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1","p":{"24":{"n":5,"s":1}}},"c":67},{"i":2651,"n":"Guessoum","f":"Kelyan","p":"M","r":1,"s":{"n":0},"c":67},{"i":2653,"n":"Sainte Luce","f":"Theo","p":"M","r":4,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"5","Sn":"1","Sa":"5","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5,"s":1},"17":{"n":5,"s":1}}},"c":67},{"i":2654,"n":"Buades","f":"Lucas","p":"M","r":6,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4","Os":"17","On":"4","Oa":"4.25","Od":"0.25","Ap":"4","p":{"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4}}},"c":67},{"i":2663,"n":"Ben Amar","f":"Sami","p":"A","r":3,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1}}},"c":67},{"i":2674,"n":"Marillat","f":"Yan","p":"G","r":2,"s":{"n":0},"c":67},{"i":2680,"n":"Alakouch","f":"Sofiane","p":"D","r":8,"s":{"s":"51","n":"11","a":"4.64","d":"0.64","Os":"111","On":"24","Oa":"4.65","Od":"0.78","Dp":"24","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":4},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5},"8":{"n":4.5},"10":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":3}}},"c":67},{"i":2699,"n":"Depres","f":"Clement","p":"A","r":5,"s":{"n":0,"Og":"3","Os":"18","On":"3","Oa":"6.17","Od":"1.65","Ap":"3"},"c":67},{"i":2700,"n":"Miguel","f":"Florian","p":"D","r":8,"s":{"s":"62","n":"14","a":"4.43","d":"1.08","Ss":"10","Sn":"3","Sa":"3.33","Sd":"1.25","Os":"106","On":"23","Oa":"4.63","Od":"1.08","Dp":"23","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4},"4":{"n":6},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5},"13":{"n":3},"15":{"n":5},"16":{"n":2},"17":{"n":3}}},"c":67},{"i":2704,"n":"Valls","f":"Theo","p":"M","r":12,"s":{"g":"1","s":"78","n":"16","a":"4.91","d":"1.03","Ss":"22","Sn":"5","Sa":"4.4","Sd":"0.8","Og":"1","Os":"149","On":"31","Oa":"4.82","Od":"0.88","Mp":"31","p":{"1":{"n":4},"2":{"n":4},"3":{"n":4.5},"4":{"n":7.5,"g":1},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"13":{"n":3.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":3.5}}},"c":67},{"i":2709,"n":"Briancon","f":"Anthony","p":"D","r":13,"s":{"s":"72","n":"15","a":"4.83","d":"1.12","Ss":"20","Sn":"5","Sa":"4","Sd":"1.05","Os":"154","On":"32","Oa":"4.81","Od":"1.1","Dp":"32","p":{"1":{"n":4.5},"2":{"n":4},"4":{"n":7},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"13":{"n":3},"14":{"n":5},"15":{"n":5},"16":{"n":2.5},"17":{"n":4.5}}},"c":67},{"i":2716,"n":"Paquiez","f":"Gaetan","p":"D","r":8,"s":{"s":"51","n":"12","a":"4.25","d":"0.66","Ss":"7","Sn":"2","Sa":"3.75","Sd":"0.25","Os":"104","On":"24","Oa":"4.33","Od":"0.73","Mp":"1","Dp":"23","p":{"24":{"n":5},"1":{"n":4},"3":{"n":4.5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":5},"13":{"n":2.5},"14":{"n":4.5},"16":{"n":4,"s":1},"17":{"n":3.5}}},"c":67},{"i":2723,"n":"Ripart","f":"Renaud","p":"A","r":13,"s":{"g":"3","s":"75","n":"16","a":"4.72","d":"1.12","Sg":"1","Ss":"20","Sn":"5","Sa":"4.1","Sd":"1.02","Og":"9","Os":"186","On":"37","Oa":"5.04","Od":"1.31","Mp":"5","Dp":"5","Ap":"27","p":{"24":{"n":4},"1":{"n":3},"2":{"n":5.5,"g":1},"3":{"n":4},"4":{"n":6.5},"5":{"n":4},"6":{"n":6},"7":{"n":5},"8":{"n":5},"9":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":4.5},"13":{"n":3.5},"14":{"n":4},"15":{"n":6,"g":1},"16":{"n":3},"17":{"n":4}}},"c":67},{"i":2957,"n":"Lionel Dias","f":"Lucas","p":"G","r":8,"s":{"s":"22","n":"4","a":"5.5","d":"0.71","Os":"22","On":"4","Oa":"5.5","Od":"0.71","Gp":"4","p":{"9":{"n":4.5,"s":1},"10":{"n":6.5},"11":{"n":5.5},"13":{"n":5.5}}},"c":67},{"i":3771,"n":"Denkey","f":"K\u00e9vin","p":"A","r":8,"s":{"g":"3","s":"49","n":"10","a":"4.95","d":"0.93","Og":"3","Os":"49","On":"10","Oa":"4.95","Od":"0.93","Ap":"10","p":{"3":{"n":6.5,"g":1,"s":1},"4":{"n":6,"g":1,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":6.5,"g":1},"10":{"n":4.5},"11":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":4},"15":{"n":4.5,"s":1}}},"c":67},{"i":3784,"n":"Stojanovski","f":"Vlatko","p":"A","r":6,"s":{"s":"17","n":"4","a":"4.38","d":"0.22","Os":"17","On":"4","Oa":"4.38","Od":"0.22","Ap":"4","p":{"2":{"n":4,"s":1},"8":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5}}},"c":67},{"i":3797,"n":"Ferhat","f":"Zinedine","p":"M","r":10,"s":{"g":"1","s":"72","n":"14","a":"5.14","d":"1.29","Ss":"22","Sn":"5","Sa":"4.4","Sd":"0.73","Og":"1","Os":"72","On":"14","Oa":"5.14","Od":"1.29","Mp":"8","Ap":"6","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":7.5},"4":{"n":8,"g":1},"5":{"n":4},"6":{"n":5.5},"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"13":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":5},"16":{"n":3},"17":{"n":4.5}}},"c":67},{"i":5031,"n":"Fomba","f":"Lamine","p":"M","r":8,"s":{"s":"72","n":"15","a":"4.8","d":"0.75","Ss":"7","Sn":"2","Sa":"3.5","Sd":"0.5","Os":"72","On":"15","Oa":"4.8","Od":"0.75","Mp":"15","p":{"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5.5},"13":{"n":4},"14":{"n":6},"16":{"n":3},"17":{"n":4},"1":{"n":5.5,"e":5064,"c":101,"s":1},"2":{"n":5,"e":5048,"c":101,"s":1}}},"c":67},{"i":5051,"n":"Sarr","f":"Sidy","p":"M","r":9,"s":{"s":"65","n":"14","a":"4.68","d":"0.75","Os":"65","On":"14","Oa":"4.68","Od":"0.75","Mp":"14","p":{"3":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":5},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":5.5},"13":{"n":4},"15":{"n":5,"s":1},"16":{"n":3},"1":{"n":3.5,"e":5060,"c":93},"2":{"n":4.5,"e":5049,"c":93}}},"c":67},{"i":6022,"n":"Duljevic","f":"Haris","p":"M","r":8,"s":{"s":"49","n":"10","a":"4.95","d":"0.72","Os":"49","On":"10","Oa":"4.95","Od":"0.72","Mp":"7","Ap":"3","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5,"s":1},"4":{"n":5.5},"10":{"n":5},"11":{"n":5,"s":1},"13":{"n":5},"14":{"n":5,"s":1},"15":{"n":6,"s":1},"16":{"n":3}}},"c":67},{"i":6259,"n":"Valerio","f":"Antoine","p":"M","r":5,"s":{"s":"10","n":"2","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"10":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":67},{"i":6279,"n":"Rabouille","f":"Valentin","p":"G","r":1,"s":{"n":0},"c":67},{"i":6307,"n":"Chadli","f":"Nassim","p":"A","r":1,"s":{"n":0},"c":67},{"i":6309,"n":"Karraoui","f":"Amine","p":"A","r":1,"s":{"n":0},"c":67},{"i":6340,"n":"Valls","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":67},{"i":341,"n":"Donis","f":"Anastasios","p":"A","r":9,"s":{"s":"39","n":"9","a":"4.39","d":"0.46","Os":"39","On":"9","Oa":"4.39","Od":"0.46","Mp":"2","Ap":"7","p":{"6":{"n":4.5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":3.5},"14":{"n":4,"s":1},"15":{"n":5}}},"c":68},{"i":346,"n":"Abdelhamid","f":"Yunis","p":"D","r":20,"s":{"g":"1","s":"89","n":"16","a":"5.56","d":"0.68","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Oao":"1","Os":"197","On":"37","Oa":"5.32","Od":"0.97","Dp":"37","p":{"24":{"n":5.5},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":6},"7":{"n":6},"8":{"n":4.5},"9":{"n":6},"10":{"n":7,"g":1},"11":{"n":6},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":6},"17":{"n":5.5}}},"c":68},{"i":563,"n":"Cafaro","f":"Mathieu","p":"M","r":12,"s":{"s":"55","n":"10","a":"5.55","d":"0.57","Ss":"5","Sn":"1","Sa":"5.5","Og":"5","Os":"156","On":"29","Oa":"5.4","Od":"0.87","Mp":"28","Ap":"1","p":{"24":{"n":5.5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":5},"10":{"n":6},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":7},"17":{"n":5.5}}},"c":68},{"i":1144,"n":"Sheyi Ojo","f":"","p":"M","r":7,"s":{"n":0,"Os":"29","On":"6","Oa":"4.83","Od":"0.24","Mp":"6"},"c":68},{"i":1410,"n":"Dingome","f":"Tristan","p":"M","r":7,"s":{"s":"31","n":"6","a":"5.25","d":"0.95","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"116","On":"23","Oa":"5.07","Od":"0.88","Mp":"23","p":{"24":{"n":5},"1":{"n":7},"2":{"n":4.5},"3":{"n":4},"4":{"n":5.5},"15":{"n":5,"s":1},"17":{"n":5.5}}},"c":68},{"i":1459,"n":"Diouf","f":"Yehvann","p":"G","r":1,"s":{"n":0},"c":68},{"i":1543,"n":"Suk Hyun-Jun","f":"","p":"A","r":8,"s":{"g":"1","s":"42","n":"9","a":"4.72","d":"0.75","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"92","On":"19","Oa":"4.84","Od":"1","Ap":"19","p":{"24":{"n":4},"1":{"n":6,"g":1,"s":1},"2":{"n":4,"s":1},"3":{"n":4,"s":1},"5":{"n":5,"s":1},"9":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":4,"s":1},"15":{"n":6,"s":1},"17":{"n":4.5,"s":1}}},"c":68},{"i":2610,"n":"M\u00e9tanire","f":"Romain","p":"D","r":6,"s":{"n":0},"c":68},{"i":2620,"n":"Ngamukol","f":"Anatole","p":"A","r":5,"s":{"n":0},"c":68},{"i":2647,"n":"Costa","f":"Logan","p":"M","r":1,"s":{"n":0},"c":68},{"i":2648,"n":"Carrasso","f":"Johann","p":"G","r":3,"s":{"n":0},"c":68},{"i":2650,"n":"Kyei","f":"Scott","p":"M","r":1,"s":{"n":0},"c":68},{"i":2656,"n":"Bana","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":68},{"i":2660,"n":"Piechocki","f":"Virgile","p":"M","r":1,"s":{"n":0},"c":68},{"i":2662,"n":"Romao","f":"Jacques-Alaixys","p":"M","r":13,"s":{"s":"71","n":"14","a":"5.07","d":"0.92","Os":"178","On":"34","Oa":"5.24","Od":"0.88","Mp":"34","p":{"24":{"n":5.5},"1":{"n":7},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"8":{"n":4},"9":{"n":6.5},"10":{"n":6.5},"11":{"n":4},"12":{"n":4},"13":{"n":5},"14":{"n":5},"15":{"n":4.5}}},"c":68},{"i":2667,"n":"Konan","f":"Ghislain","p":"D","r":9,"s":{"s":"47","n":"9","a":"5.22","d":"0.95","Os":"63","On":"12","Oa":"5.25","Od":"0.88","Dp":"12","p":{"1":{"n":5.5,"s":1},"3":{"n":4.5},"4":{"n":5.5},"6":{"n":6},"7":{"n":7},"8":{"n":3.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5}}},"c":68},{"i":2673,"n":"Oudin","f":"Remi","p":"M","r":22,"s":{"g":"2","s":"91","n":"16","a":"5.72","d":"0.64","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"9","Os":"201","On":"37","Oa":"5.43","Od":"1.08","Mp":"31","Ap":"6","p":{"24":{"n":6,"g":1},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":6},"9":{"n":7},"10":{"n":6},"11":{"n":5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":5,"s":1},"17":{"n":6.5,"g":1}}},"c":68},{"i":2683,"n":"Disasi","f":"Axel","p":"D","r":17,"s":{"g":"1","s":"86","n":"16","a":"5.38","d":"0.72","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"102","On":"19","Oa":"5.39","Od":"0.72","Dp":"19","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":4.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":7},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":6},"14":{"n":6,"g":1},"15":{"n":5},"17":{"n":5.5}}},"c":68},{"i":2694,"n":"Lemaitre","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":68},{"i":2703,"n":"Kyei","f":"Grejohn","p":"A","r":13,"s":{"n":0},"c":68},{"i":2705,"n":"Doumbia","f":"Moussa","p":"M","r":14,"s":{"g":"2","s":"81","n":"15","a":"5.43","d":"0.89","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"4","Os":"159","On":"30","Oa":"5.3","Od":"0.89","Mp":"29","Ap":"1","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":7.5,"g":1},"5":{"n":5},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":3.5},"14":{"n":5},"15":{"n":5.5},"17":{"n":6.5,"g":1,"s":1}}},"c":68},{"i":2708,"n":"Mbemba","f":"Nolan","p":"M","r":5,"s":{"n":0,"Os":"19","On":"4","Oa":"4.75","Od":"0.25","Mp":"4"},"c":68},{"i":2715,"n":"Kamara","f":"Hassane","p":"M","r":12,"s":{"g":"1","s":"61","n":"11","a":"5.59","d":"1.02","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"123","On":"23","Oa":"5.35","Od":"0.88","Mp":"7","Dp":"16","p":{"24":{"n":5},"1":{"n":7.5},"2":{"n":5},"5":{"n":4.5},"7":{"n":7,"g":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":6.5},"14":{"n":5},"15":{"n":6.5},"17":{"n":5}}},"c":68},{"i":2724,"n":"Chavalerin","f":"Xavier","p":"M","r":18,"s":{"g":"1","s":"85","n":"15","a":"5.7","d":"0.77","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"196","On":"35","Oa":"5.61","Od":"0.79","Mp":"35","p":{"24":{"n":5.5},"1":{"n":6},"2":{"n":6},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":6.5},"7":{"n":7},"8":{"n":6,"g":1},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5},"14":{"n":5},"15":{"n":7},"17":{"n":6.5}}},"c":68},{"i":2730,"n":"Cakin","f":"Hendrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2770,"n":"Bahanack","f":"Patrick","p":"D","r":1,"s":{"n":0},"c":68},{"i":2858,"n":"Pinson","f":"Virgile","p":"A","r":3,"s":{"n":0},"c":68},{"i":2862,"n":"Foket","f":"Thomas","p":"D","r":15,"s":{"s":"84","n":"16","a":"5.28","d":"0.64","Ss":"5","Sn":"1","Sa":"5","Os":"180","On":"36","Oa":"5","Od":"0.67","Dp":"36","p":{"24":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":7},"8":{"n":4},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5},"17":{"n":5}}},"c":68},{"i":2951,"n":"Dia","f":"Boulaye","p":"M","r":16,"s":{"g":"5","s":"76","n":"15","a":"5.07","d":"1.17","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"7","Os":"141","On":"28","Oa":"5.05","Od":"1.06","Mp":"5","Ap":"23","p":{"24":{"n":4.5,"s":1},"1":{"n":7.5,"g":1},"2":{"n":5},"3":{"n":4},"4":{"n":5},"5":{"n":4},"6":{"n":4.5},"7":{"n":6,"g":1,"s":1},"8":{"n":3.5},"9":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":3.5},"12":{"n":5},"14":{"n":4},"15":{"n":6,"g":1},"17":{"n":6.5,"g":1}}},"c":68},{"i":3360,"n":"Sissoko","f":"Sambou","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"17":{"n":5,"s":1}}},"c":68},{"i":3364,"n":"Zeneli","f":"Arb\u00ebr","p":"A","r":6,"s":{"n":0,"Og":"3","Os":"68","On":"14","Oa":"4.86","Od":"1.17","Mp":"8","Ap":"6","p":{"24":{"n":4,"s":1}}},"c":68},{"i":3365,"n":"Moreto Cassam\u00e3","f":"","p":"M","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":68},{"i":3522,"n":"Nkada","f":"Timothee","p":"A","r":7,"s":{"s":"22","n":"5","a":"4.5","d":"0.32","Os":"22","On":"5","Oa":"4.5","Od":"0.32","Ap":"5","p":{"4":{"n":5,"s":1},"8":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1}}},"c":68},{"i":3766,"n":"Munetsi","f":"Marshall","p":"M","r":9,"s":{"s":"48","n":"9","a":"5.33","d":"0.82","Ss":"5","Sn":"1","Sa":"5.5","Os":"48","On":"9","Oa":"5.33","Od":"0.82","Mp":"3","Dp":"6","p":{"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":7.5},"9":{"n":5.5,"s":1},"10":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5},"17":{"n":5.5}}},"c":68},{"i":3793,"n":"Shamal","f":"Steve","p":"M","r":1,"s":{"n":0},"c":68},{"i":3794,"n":"Berthier","f":"Gregory","p":"M","r":4,"s":{"n":0},"c":68},{"i":3807,"n":"Rajkovic","f":"Predrag","p":"G","r":20,"s":{"s":"93","n":"16","a":"5.84","d":"0.96","Ss":"5","Sn":"1","Sa":"5.5","Os":"93","On":"16","Oa":"5.84","Od":"0.96","Gp":"16","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":7.5},"5":{"n":6},"6":{"n":7},"7":{"n":7},"8":{"n":4},"9":{"n":6.5},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":6},"14":{"n":4.5},"15":{"n":4},"17":{"n":5.5}}},"c":68},{"i":6162,"n":"Mbuku","f":"Nathanael","p":"A","r":7,"s":{"s":"23","n":"5","a":"4.7","d":"0.24","Os":"23","On":"5","Oa":"4.7","Od":"0.24","Mp":"1","Ap":"4","p":{"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"7":{"n":4.5},"15":{"n":5}}},"c":68},{"i":6216,"n":"Maresic","f":"Dario","p":"D","r":6,"s":{"n":0},"c":68},{"i":6217,"n":"Kutesa","f":"Dereck","p":"M","r":9,"s":{"s":"35","n":"7","a":"5","d":"0.46","Os":"35","On":"7","Oa":"5","Od":"0.46","Mp":"6","Ap":"1","p":{"5":{"n":4},"6":{"n":5.5,"s":1},"8":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5},"14":{"n":5,"s":1}}},"c":68},{"i":106,"n":"Baal","f":"Ludovic","p":"D","r":10,"s":{"s":"32","n":"6","a":"5.42","d":"0.67","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"37","On":"7","Oa":"5.36","Od":"0.64","Dp":"7","p":{"2":{"n":5,"s":1},"10":{"n":6.5},"11":{"n":6},"12":{"n":5},"16":{"n":5.5},"17":{"n":4.5}}},"c":75},{"i":227,"n":"Lasne","f":"Paul","p":"M","r":12,"s":{"g":"1","s":"63","n":"12","a":"5.25","d":"1.05","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Og":"2","Os":"162","On":"32","Oa":"5.08","Od":"0.89","Mp":"32","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":3.5},"5":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":5},"10":{"n":6},"11":{"n":8,"g":1},"12":{"n":4.5},"15":{"n":4.5},"16":{"n":6},"17":{"n":5}}},"c":75},{"i":376,"n":"Mendy","f":"Alexandre","p":"A","r":12,"s":{"g":"2","s":"57","n":"12","a":"4.75","d":"0.66","Sg":"1","Ss":"38","Sn":"8","Sa":"4.81","Sd":"0.7","Og":"5","Os":"131","On":"28","Oa":"4.68","Od":"0.87","Ap":"28","p":{"5":{"n":4.5,"s":1},"6":{"n":4,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5.5,"g":1,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1},"16":{"n":6.5,"g":1},"17":{"n":4.5}}},"c":75},{"i":552,"n":"Perraud","f":"Romain","p":"D","r":8,"s":{"s":"52","n":"12","a":"4.38","d":"0.65","Os":"52","On":"12","Oa":"4.38","Od":"0.65","Dp":"12","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":3},"5":{"n":5},"6":{"n":4.5},"7":{"n":4},"8":{"n":3.5},"9":{"n":4},"13":{"n":5},"14":{"n":5},"15":{"n":4}}},"c":75},{"i":564,"n":"Magnetti","f":"Hugo","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"14":{"n":5,"s":1}}},"c":75},{"i":580,"n":"Cardona","f":"Irvin","p":"A","r":16,"s":{"g":"3","s":"50","n":"10","a":"5","d":"1.32","Sg":"2","Ss":"32","Sn":"6","Sa":"5.33","Sd":"1.46","Og":"3","Os":"50","On":"10","Oa":"5","Od":"1.32","Mp":"2","Ap":"8","p":{"3":{"n":4,"s":1},"4":{"n":4,"s":1},"9":{"n":4,"s":1},"10":{"n":6,"g":1,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":7,"g":1},"15":{"n":6,"g":1},"16":{"n":7},"17":{"n":3}}},"c":75},{"i":1417,"n":"Grandsir","f":"Samuel","p":"A","r":12,"s":{"g":"2","s":"82","n":"16","a":"5.13","d":"0.98","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"123","On":"25","Oa":"4.94","Od":"0.88","Mp":"22","Ap":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":3.5},"5":{"n":5.5},"6":{"n":7.5,"g":1},"7":{"n":4.5},"8":{"n":4,"s":1},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":7,"g":1,"s":1},"14":{"n":4.5},"15":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":75},{"i":2671,"n":"Diallo","f":"Ibrahima","p":"M","r":14,"s":{"s":"81","n":"15","a":"5.4","d":"0.88","Os":"81","On":"15","Oa":"5.4","Od":"0.88","Mp":"15","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":4},"5":{"n":6},"6":{"n":6},"7":{"n":3.5},"8":{"n":5},"9":{"n":6},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":7}}},"c":75},{"i":2783,"n":"Osei Yaw","f":"Derick","p":"A","r":1,"s":{"n":0},"c":75},{"i":3779,"n":"N'Goma","f":"Ferris","p":"M","r":11,"s":{"g":"1","s":"21","n":"4","a":"5.25","d":"0.75","Og":"1","Os":"21","On":"4","Oa":"5.25","Od":"0.75","Mp":"4","p":{"1":{"n":5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1},"16":{"n":6.5,"g":1,"s":1}}},"c":75},{"i":3785,"n":"Larsonneur","f":"Gautier","p":"G","r":24,"s":{"s":"98","n":"16","a":"6.16","d":"1.1","Ss":"54","Sn":"8","Sa":"6.81","Sd":"0.93","Os":"98","On":"16","Oa":"6.16","Od":"1.1","Gp":"16","p":{"1":{"n":4},"2":{"n":6},"3":{"n":6.5},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":5},"8":{"n":6.5},"10":{"n":8},"11":{"n":7},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":6},"16":{"n":7},"17":{"n":8.5}}},"c":75},{"i":3786,"n":"Kiki","f":"David Enangon","p":"D","r":2,"s":{"n":0},"c":75},{"i":3795,"n":"Belkebla","f":"Haris","p":"M","r":14,"s":{"s":"83","n":"16","a":"5.22","d":"0.85","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"83","On":"16","Oa":"5.22","Od":"0.85","Mp":"16","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":6.5},"10":{"n":6},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"15":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":5.5}}},"c":75},{"i":3801,"n":"Chardonnet","f":"Brendan","p":"D","r":8,"s":{"s":"19","n":"4","a":"4.75","d":"0.9","Os":"19","On":"4","Oa":"4.75","Od":"0.9","Dp":"4","p":{"3":{"n":6},"4":{"n":3.5},"11":{"n":5,"s":1},"12":{"n":4.5}}},"c":75},{"i":3802,"n":"Castelletto","f":"Jean-Charles","p":"D","r":12,"s":{"g":"1","s":"79","n":"16","a":"4.94","d":"1.06","Sg":"1","Ss":"69","Sn":"14","Sa":"4.93","Sd":"1.13","Og":"1","Os":"79","On":"16","Oa":"4.94","Od":"1.06","Dp":"16","p":{"1":{"n":5},"2":{"n":5},"4":{"n":3.5},"5":{"n":5.5},"6":{"n":3.5},"7":{"n":5},"8":{"n":4},"9":{"n":7.5,"g":1},"10":{"n":6.5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4},"14":{"n":4.5},"15":{"n":4},"16":{"n":6},"17":{"n":5}}},"c":75},{"i":3806,"n":"Mayi","f":"K\u00e9vin","p":"A","r":5,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"6":{"n":4.5,"s":1}}},"c":75},{"i":3808,"n":"L\u00e9on","f":"Donovan","p":"G","r":9,"s":{"s":"11","n":"2","a":"5.5","d":"1.5","Os":"11","On":"2","Oa":"5.5","Od":"1.5","Gp":"2","p":{"8":{"n":4,"s":1},"9":{"n":7}}},"c":75},{"i":3810,"n":"Bain","f":"Denys","p":"D","r":14,"s":{"g":"1","s":"74","n":"14","a":"5.29","d":"0.84","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"74","On":"14","Oa":"5.29","Od":"0.84","Dp":"14","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":6},"5":{"n":6},"6":{"n":4},"7":{"n":5},"8":{"n":4},"9":{"n":6},"10":{"n":6},"11":{"n":7,"g":1},"13":{"n":4.5},"14":{"n":5},"15":{"n":4.5},"17":{"n":5.5,"s":1}}},"c":75},{"i":3811,"n":"Battocchio","f":"Cristian","p":"M","r":15,"s":{"g":"3","s":"69","n":"13","a":"5.31","d":"1.25","Sg":"3","Ss":"19","Sn":"3","Sa":"6.5","Sd":"1.78","Og":"3","Os":"69","On":"13","Oa":"5.31","Od":"1.25","Mp":"13","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":3},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5.5},"11":{"n":6},"15":{"n":5,"s":1},"16":{"n":9,"g":3},"17":{"n":5.5}}},"c":75},{"i":3813,"n":"Autret","f":"Mathias","p":"M","r":15,"s":{"g":"2","s":"84","n":"16","a":"5.25","d":"0.73","Ss":"29","Sn":"6","Sa":"4.92","Sd":"0.73","Og":"2","Os":"84","On":"16","Oa":"5.25","Od":"0.73","Mp":"11","Ap":"5","p":{"1":{"n":7,"g":1},"2":{"n":6},"3":{"n":6},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":5.5,"g":1},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":5},"14":{"n":5.5},"15":{"n":4},"16":{"n":6,"s":1},"17":{"n":4}}},"c":75},{"i":3817,"n":"Court","f":"Yoann","p":"M","r":15,"s":{"g":"2","s":"68","n":"12","a":"5.67","d":"1.42","Og":"2","Os":"68","On":"12","Oa":"5.67","Od":"1.42","Mp":"11","Ap":"1","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":3.5},"5":{"n":5},"6":{"n":7},"7":{"n":7.5,"g":2},"8":{"n":3},"9":{"n":7},"11":{"n":7},"12":{"n":5},"13":{"n":7}}},"c":75},{"i":3818,"n":"Charbonnier","f":"Ga\u00ebtan","p":"A","r":13,"s":{"g":"1","s":"77","n":"16","a":"4.84","d":"0.93","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.6","Og":"1","Os":"77","On":"16","Oa":"4.84","Od":"0.93","Ap":"16","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":6,"g":1},"4":{"n":3.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":5},"8":{"n":2.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":6},"17":{"n":4.5,"s":1}}},"c":75},{"i":3819,"n":"Faussurier","f":"Julien","p":"D","r":13,"s":{"g":"2","s":"82","n":"16","a":"5.13","d":"0.86","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.24","Og":"2","Os":"82","On":"16","Oa":"5.13","Od":"0.86","Dp":"16","p":{"1":{"n":6},"2":{"n":5.5,"g":1},"3":{"n":5},"4":{"n":3.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":7.5,"g":1},"10":{"n":4.5},"11":{"n":6},"13":{"n":4.5},"14":{"n":5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4.5}}},"c":75},{"i":5002,"n":"Duverne","f":"Jean-Kevin","p":"D","r":9,"s":{"s":"16","n":"3","a":"5.33","d":"0.85","Ss":"11","Sn":"2","Sa":"5.5","Sd":"1","Os":"16","On":"3","Oa":"5.33","Od":"0.85","Dp":"3","p":{"10":{"n":5,"s":1},"16":{"n":6.5},"17":{"n":4.5}}},"c":75},{"i":5515,"n":"Belaud","f":"Ga\u00ebtan","p":"D","r":8,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"9":{"n":5,"s":1},"12":{"n":5}}},"c":75},{"i":6008,"n":"M'Bock","f":"Hianga'a","p":"M","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"14":{"n":4.5}}},"c":75}],"c":{"2":{"n":"Paris","rn":"Paris Saint-Germain","cn":"Paris-Saint-Germain","a":"PAR","l":1,"el":1251,"s":{"p":39},"nM":3756,"nMWC":"0.6937","pM":{"1":3927,"2":3915,"3":3906,"11":3823,"12":3811,"13":3798,"14":3795,"16":3775,"25":2981,"4":3891,"5":3886,"6":3870,"8":3849,"9":3844,"10":3834,"17":3761,"7":3865},"DMI":[2981]},"3":{"n":"Bordeaux","rn":"Girondins de Bordeaux","cn":"Girondins-de-Bordeaux","a":"BOD","l":1,"el":1076,"s":{"p":26},"nM":3750,"nMWC":"0.5573","pM":{"8":3849,"22":2950,"1":3922,"2":3908,"3":3901,"4":3889,"5":3879,"6":3869,"7":3858,"9":3847,"10":3829,"11":3819,"12":3810,"13":3804,"14":3790,"15":3785,"16":3770,"17":3759},"DMI":[2950]},"4":{"n":"Saint-\u00c9tienne","rn":"AS Saint-Etienne","cn":"AS-Saint-Etienne","a":"STE","l":1,"el":1109,"s":{"p":25},"nM":3756,"nMWC":"0.3063","pM":{"25":2981,"10":3829,"1":3923,"2":3916,"3":3902,"5":3887,"6":3868,"7":3866,"8":3855,"11":3826,"12":3816,"13":3803,"16":3776,"17":3765,"4":3890,"9":3846,"14":3796,"15":3786},"DMI":[2981]},"7":{"n":"Dijon","rn":"Dijon FCO","cn":"Dijon-FCO","a":"DIJ","l":1,"el":1025,"s":{"p":16},"nM":3748,"nMWC":"0.5459","pM":{"12":3811,"3":3901,"1":3923,"32":3043,"2":3917,"6":3873,"7":3860,"8":3856,"9":3840,"10":3830,"11":3818,"13":3801,"14":3792,"15":3778,"4":3888,"5":3881,"16":3772,"17":3762},"DMI":[3043]},"8":{"n":"Nantes","rn":"FC Nantes","cn":"FC-Nantes","a":"NTE","l":1,"el":1075,"s":{"p":26},"nM":3755,"nMWC":"0.6875","pM":{"16":3775,"3":3898,"12":3810,"13":3803,"17":3762,"24":2966,"1":3925,"2":3912,"4":3892,"5":3885,"6":3877,"7":3864,"8":3850,"9":3843,"11":3822,"15":3782,"10":3832,"14":3791},"DMI":[2966]},"9":{"n":"Marseille","rn":"Olympique de Marseille","cn":"Olympique-de-Marseille","a":"MRS","l":1,"el":1225,"s":{"p":34},"nM":3754,"nMWC":"0.8512","pM":{"11":3823,"17":3759,"4":3890,"7":3860,"2":3912,"1":3924,"3":3905,"5":3883,"6":3871,"12":3812,"13":3800,"14":3797,"15":3779,"16":3769,"8":3851,"9":3838,"10":3831},"DMI":[]},"10":{"n":"Toulouse","rn":"Toulouse FC","cn":"Toulouse-FC","a":"TLS","l":1,"el":851,"s":{"p":12},"nM":3757,"nMWC":"0.1881","pM":{"3":3906,"4":3897,"9":3847,"5":3887,"2":3917,"15":3782,"14":3797,"24":2971,"1":3919,"6":3874,"7":3867,"8":3852,"10":3837,"11":3825,"12":3817,"13":3802,"16":3777,"17":3767},"DMI":[2971]},"11":{"n":"Metz","rn":"FC Metz","cn":"FC-Metz","a":"MTZ","l":1,"el":922,"s":{"p":15},"nM":3754,"nMWC":"0.1488","pM":{"4":3891,"5":3879,"7":3866,"10":3832,"8":3852,"1":3926,"2":3911,"3":3899,"6":3872,"9":3839,"15":3784,"16":3774,"17":3763,"11":3820,"12":3813,"13":3799,"14":3794},"DMI":[]},"12":{"n":"Lille","rn":"LOSC","cn":"LOSC","a":"LIL","l":1,"el":1167,"s":{"p":28},"nM":3752,"nMWC":"0.5799","pM":{"14":3795,"11":3819,"3":3902,"15":3778,"1":3925,"12":3812,"10":3837,"13":3799,"2":3907,"4":3894,"5":3882,"6":3876,"7":3861,"8":3854,"9":3841,"16":3773,"17":3758,"25":2975},"DMI":[2975]},"13":{"n":"Monaco","rn":"AS Monaco","cn":"AS-Monaco","a":"MON","l":1,"el":1089,"s":{"p":24},"nM":3749,"nMWC":"0.5658","pM":{"14":3790,"12":3816,"13":3801,"11":3822,"5":3883,"16":3777,"2":3911,"1":3918,"3":3903,"27":2992,"4":3896,"6":3875,"8":3853,"9":3842,"10":3833,"17":3760,"7":3862},"DMI":[2992]},"15":{"n":"Montpellier","rn":"Montpellier H\u00e9rault SC","cn":"Montpellier-Herault-SC","a":"MTP","l":1,"el":1111,"s":{"p":24},"nM":3752,"nMWC":"0.4201","pM":{"17":3761,"2":3908,"14":3796,"16":3772,"4":3892,"6":3871,"13":3802,"12":3813,"25":2975,"9":3842,"1":3920,"3":3904,"5":3884,"7":3863,"8":3857,"11":3821,"15":3781,"10":3836},"DMI":[2975]},"16":{"n":"Angers","rn":"Angers SCO","cn":"Angers-SCO","a":"ANG","l":1,"el":1043,"s":{"p":24},"nM":3749,"nMWC":"0.4342","pM":{"9":3844,"1":3922,"6":3868,"4":3888,"16":3769,"7":3867,"3":3899,"5":3882,"27":2992,"11":3821,"2":3909,"8":3848,"10":3828,"12":3809,"13":3805,"14":3789,"15":3783,"17":3766},"DMI":[2992]},"18":{"n":"Lyon","rn":"Olympique Lyonnais","cn":"Olympique-Lyonnais","a":"LYO","l":1,"el":1125,"s":{"p":25},"nM":3753,"nMWC":"0.4842","pM":{"6":3870,"4":3889,"9":3846,"10":3830,"8":3850,"13":3800,"12":3817,"11":3820,"1":3918,"16":3773,"3":3904,"2":3909,"30":3028,"7":3859,"17":3764,"5":3878,"14":3793,"15":3787},"DMI":[3028]},"19":{"n":"Nice","rn":"OGC Nice","cn":"OGC-Nice","a":"NCE","l":1,"el":1067,"s":{"p":23},"nM":3751,"nMWC":"0.5488","pM":{"10":3834,"1":3921,"13":3804,"16":3776,"6":3873,"9":3843,"3":3905,"17":3763,"8":3854,"7":3862,"5":3884,"15":3783,"2":3913,"14":3793,"4":3895,"12":3814,"11":3827},"DMI":[]},"20":{"n":"Rennes","rn":"Stade Rennais FC","cn":"Stade-Rennais-FC","a":"REN","l":1,"el":1136,"s":{"p":28},"nM":3753,"nMWC":"0.5158","pM":{"2":3915,"15":3786,"14":3792,"7":3864,"8":3851,"11":3825,"16":3774,"6":3876,"10":3833,"1":3920,"17":3766,"30":3028,"4":3895,"3":3910,"5":3880,"13":3806,"9":3845},"DMI":[3028]},"41":{"n":"Strasbourg","rn":"RC Strasbourg Alsace","cn":"RC-Strasbourg-Alsace","a":"STB","l":1,"el":1036,"s":{"p":21},"nM":3750,"nMWC":"0.4427","pM":{"5":3886,"22":2950,"9":3840,"6":3877,"10":3831,"17":3767,"1":3926,"7":3861,"4":3896,"8":3857,"12":3809,"15":3787,"11":3827,"3":3910,"2":3914,"13":3807,"14":3788,"16":3771},"DMI":[2950]},"42":{"n":"Amiens","rn":"Amiens SC","cn":"Amiens-SC","a":"AMI","l":1,"el":993,"s":{"p":17},"nM":3748,"nMWC":"0.4541","pM":{"1":3921,"3":3898,"4":3897,"7":3858,"11":3826,"32":3043,"9":3838,"6":3872,"2":3907,"17":3760,"15":3781,"8":3848,"5":3878,"13":3806,"14":3788,"10":3835,"12":3808},"DMI":[3043]},"67":{"n":"N\u00eemes","rn":"N\u00eemes Olympique","cn":"Nimes-Olympique","a":"NIM","l":1,"el":938,"s":{"p":13},"nM":3755,"nMWC":"0.3125","pM":{"1":3927,"16":3770,"8":3855,"5":3881,"24":2966,"6":3874,"15":3784,"3":3903,"9":3841,"7":3863,"14":3789,"2":3913,"17":3764,"13":3807,"10":3835,"4":3893,"11":3824},"DMI":[2966]},"68":{"n":"Reims","rn":"Stade de Reims","cn":"Stade-de-Reims","a":"REI","l":1,"el":1105,"s":{"p":25},"nM":3757,"nMWC":"0.8119","pM":{"7":3865,"15":3785,"17":3765,"8":3856,"5":3885,"1":3924,"24":2971,"14":3794,"4":3894,"6":3875,"10":3836,"13":3805,"12":3814,"9":3845,"2":3914,"11":3824,"3":3900},"DMI":[2971]},"75":{"n":"Brest","rn":"Stade Brestois 29","cn":"Stade-Brestois-29","a":"BRS","l":1,"el":1033,"s":{"p":21},"nM":3751,"nMWC":"0.4512","pM":{"13":3798,"6":3869,"2":3916,"11":3818,"14":3791,"15":3779,"1":3919,"9":3839,"17":3758,"8":3853,"10":3828,"7":3859,"5":3880,"16":3771,"12":3808,"4":3893,"3":3900},"DMI":[]}},"op":{"93":{"n":"Ch\u00e2teauroux","l":4,"el":981},"107":{"n":"Paris FC","l":4,"el":917},"5":{"n":"Caen","l":4,"el":1017},"94":{"n":"Grenoble","l":4,"el":1012},"97":{"n":"Orl\u00e9ans","l":4,"el":817},"101":{"n":"Auxerre","l":4,"el":942},"17":{"n":"Nancy","l":4,"el":1025},"14":{"n":"Guingamp","l":4,"el":1014},"6":{"n":"Lorient","l":4,"el":1089},"102":{"n":"Sochaux","l":4,"el":1019},"103":{"n":"Le Mans","l":4,"el":893},"89":{"n":"Le Havre","l":4,"el":1058},"92":{"n":"Clermont","l":4,"el":1012},"104":{"n":"Lens","l":4,"el":1093},"88":{"n":"Ajaccio","l":4,"el":1097},"90":{"n":"Chambly","l":4,"el":850},"43":{"n":"Troyes","l":4,"el":1049},"100":{"n":"Rodez","l":4,"el":867},"91":{"n":"Valenciennes","l":4,"el":1000},"48":{"n":"Alav\u00e9s","l":3,"el":1022},"63":{"n":"Levante","l":3,"el":1040}},"e":{"3927":{"d":1,"dB":"2019-08-11T19:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":67},"3915":{"d":2,"dB":"2019-08-18T19:00:00Z","t1s":2,"t2s":1,"t1":20,"t2":2},"3906":{"d":3,"dB":"2019-08-25T19:00:00Z","t1s":4,"t2s":0,"t1":2,"t2":10},"3823":{"d":11,"dB":"2019-10-27T20:00:00Z","t1s":4,"t2s":0,"t1":2,"t2":9},"3811":{"d":12,"dB":"2019-11-01T19:45:00Z","t1s":2,"t2s":1,"t1":7,"t2":2},"3798":{"d":13,"dB":"2019-11-09T16:30:00Z","t1s":1,"t2s":2,"t1":75,"t2":2},"3795":{"d":14,"dB":"2019-11-22T19:45:00Z","t1s":2,"t2s":0,"t1":2,"t2":12},"3775":{"d":16,"dB":"2019-12-04T20:05:00Z","t1s":2,"t2s":0,"t1":2,"t2":8},"2981":{"d":25,"dB":"2019-02-17T20:00:00Z","t1s":0,"t2s":1,"t1":4,"t2":2},"3891":{"d":4,"dB":"2019-08-30T18:45:00Z","t1s":0,"t2s":2,"t1":11,"t2":2},"3886":{"d":5,"dB":"2019-09-14T15:30:00Z","t1s":1,"t2s":0,"t1":2,"t2":41},"3870":{"d":6,"dB":"2019-09-22T19:00:00Z","t1s":0,"t2s":1,"t1":18,"t2":2},"3849":{"d":8,"dB":"2019-09-28T15:30:00Z","t1s":0,"t2s":1,"t1":3,"t2":2},"3844":{"d":9,"dB":"2019-10-05T15:30:00Z","t1s":4,"t2s":0,"t1":2,"t2":16},"3834":{"d":10,"dB":"2019-10-18T18:45:00Z","t1s":1,"t2s":4,"t1":19,"t2":2},"3761":{"d":17,"dB":"2019-12-07T16:30:00Z","t1s":1,"t2s":3,"t1":15,"t2":2},"3865":{"d":7,"dB":"2019-09-25T19:00:00Z","t1s":0,"t2s":2,"t1":2,"t2":68},"4961":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":1,"t1":93,"t2":107},"4954":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":2,"t2s":4,"t1":107,"t2":5},"4943":{"d":13,"dB":"2019-11-02T14:00:00Z","t1s":0,"t2s":0,"t1":94,"t2":107},"4934":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":107},"4926":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":2,"t2s":0,"t1":107,"t2":101},"4914":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":2,"t2s":0,"t1":17,"t2":107},"4901":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":0,"t2s":3,"t1":107,"t2":14},"5067":{"d":1,"dB":"2019-07-29T18:45:00Z","t1s":3,"t2s":0,"t1":6,"t2":107},"5033":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":1,"t2s":0,"t1":6,"t2":102},"5023":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":6},"5002":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":0,"t2s":0,"t1":89,"t2":107},"4995":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":0,"t2s":2,"t1":107,"t2":92},"4984":{"d":9,"dB":"2019-09-28T12:45:00Z","t1s":2,"t2s":1,"t1":104,"t2":107},"5018":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":1,"t2s":0,"t1":88,"t2":107},"5016":{"d":6,"dB":"2019-09-02T17:00:00Z","t1s":0,"t2s":3,"t1":107,"t2":90},"4975":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":1,"t2s":0,"t1":107,"t2":43},"3921":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":42},"3898":{"d":3,"dB":"2019-08-24T18:00:00Z","t1s":1,"t2s":2,"t1":42,"t2":8},"3897":{"d":4,"dB":"2019-08-31T18:00:00Z","t1s":2,"t2s":0,"t1":10,"t2":42},"5044":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":2,"t2s":1,"t1":100,"t2":107},"2950":{"d":22,"dB":"2019-01-26T19:00:00Z","t1s":1,"t2s":0,"t1":41,"t2":3},"3922":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":3,"t2s":1,"t1":16,"t2":3},"3908":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":1,"t2s":1,"t1":3,"t2":15},"3901":{"d":3,"dB":"2019-08-24T18:00:00Z","t1s":0,"t2s":2,"t1":7,"t2":3},"3889":{"d":4,"dB":"2019-08-31T15:30:00Z","t1s":1,"t2s":1,"t1":18,"t2":3},"3879":{"d":5,"dB":"2019-09-14T18:00:00Z","t1s":2,"t2s":0,"t1":3,"t2":11},"3869":{"d":6,"dB":"2019-09-21T18:00:00Z","t1s":2,"t2s":2,"t1":3,"t2":75},"3858":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":1,"t2s":3,"t1":42,"t2":3},"3847":{"d":9,"dB":"2019-10-05T18:00:00Z","t1s":1,"t2s":3,"t1":10,"t2":3},"3829":{"d":10,"dB":"2019-10-20T13:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":4},"3819":{"d":11,"dB":"2019-10-26T15:30:00Z","t1s":3,"t2s":0,"t1":12,"t2":3},"3810":{"d":12,"dB":"2019-11-03T14:00:00Z","t1s":2,"t2s":0,"t1":3,"t2":8},"3804":{"d":13,"dB":"2019-11-08T19:45:00Z","t1s":1,"t2s":1,"t1":19,"t2":3},"3790":{"d":14,"dB":"2019-11-24T14:00:00Z","t1s":2,"t2s":1,"t1":3,"t2":13},"3785":{"d":15,"dB":"2019-11-30T19:00:00Z","t1s":1,"t2s":1,"t1":68,"t2":3},"3770":{"d":16,"dB":"2019-12-03T18:00:00Z","t1s":6,"t2s":0,"t1":3,"t2":67},"3759":{"d":17,"dB":"2019-12-08T20:00:00Z","t1s":3,"t2s":1,"t1":9,"t2":3},"3923":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":4},"3916":{"d":2,"dB":"2019-08-18T13:00:00Z","t1s":1,"t2s":1,"t1":4,"t2":75},"3902":{"d":3,"dB":"2019-08-28T17:00:00Z","t1s":3,"t2s":0,"t1":12,"t2":4},"3887":{"d":5,"dB":"2019-09-15T15:00:00Z","t1s":2,"t2s":2,"t1":4,"t2":10},"3868":{"d":6,"dB":"2019-09-22T15:00:00Z","t1s":4,"t2s":1,"t1":16,"t2":4},"3866":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":0,"t2s":1,"t1":4,"t2":11},"3855":{"d":8,"dB":"2019-09-29T15:00:00Z","t1s":0,"t2s":1,"t1":67,"t2":4},"3826":{"d":11,"dB":"2019-10-27T16:00:00Z","t1s":2,"t2s":2,"t1":4,"t2":42},"3816":{"d":12,"dB":"2019-11-03T20:00:00Z","t1s":1,"t2s":0,"t1":4,"t2":13},"3803":{"d":13,"dB":"2019-11-10T16:00:00Z","t1s":2,"t2s":3,"t1":8,"t2":4},"3776":{"d":16,"dB":"2019-12-04T18:00:00Z","t1s":4,"t2s":1,"t1":4,"t2":19},"3765":{"d":17,"dB":"2019-12-08T14:00:00Z","t1s":3,"t2s":1,"t1":68,"t2":4},"3890":{"d":4,"dB":"2019-09-01T19:00:00Z","t1s":1,"t2s":0,"t1":9,"t2":4},"3846":{"d":9,"dB":"2019-10-06T19:00:00Z","t1s":1,"t2s":0,"t1":4,"t2":18},"3796":{"d":14,"dB":"2019-11-24T16:00:00Z","t1s":0,"t2s":0,"t1":4,"t2":15},"3786":{"d":15,"dB":"2019-12-01T16:00:00Z","t1s":2,"t2s":1,"t1":20,"t2":4},"3043":{"d":32,"dB":"2019-04-12T17:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":42},"3917":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":7},"3873":{"d":6,"dB":"2019-09-21T18:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":7},"3860":{"d":7,"dB":"2019-09-24T17:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":9},"3856":{"d":8,"dB":"2019-09-28T18:00:00Z","t1s":1,"t2s":2,"t1":68,"t2":7},"3840":{"d":9,"dB":"2019-10-05T18:00:00Z","t1s":1,"t2s":0,"t1":7,"t2":41},"3830":{"d":10,"dB":"2019-10-19T15:30:00Z","t1s":0,"t2s":0,"t1":18,"t2":7},"3818":{"d":11,"dB":"2019-10-26T18:00:00Z","t1s":2,"t2s":0,"t1":75,"t2":7},"3801":{"d":13,"dB":"2019-11-09T19:00:00Z","t1s":1,"t2s":0,"t1":13,"t2":7},"3792":{"d":14,"dB":"2019-11-23T19:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":20},"3778":{"d":15,"dB":"2019-11-30T19:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":7},"3888":{"d":4,"dB":"2019-08-31T18:00:00Z","t1s":2,"t2s":0,"t1":16,"t2":7},"3881":{"d":5,"dB":"2019-09-14T18:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":67},"3772":{"d":16,"dB":"2019-12-04T18:00:00Z","t1s":2,"t2s":2,"t1":7,"t2":15},"3762":{"d":17,"dB":"2019-12-08T16:00:00Z","t1s":1,"t2s":0,"t1":8,"t2":7},"5061":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":3,"t1":14,"t2":94},"5066":{"d":1,"dB":"2019-07-27T13:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":104},"5056":{"d":2,"dB":"2019-08-03T14:30:00Z","t1s":2,"t2s":0,"t1":104,"t2":14},"5047":{"d":3,"dB":"2019-08-10T13:00:00Z","t1s":1,"t2s":1,"t1":92,"t2":104},"5032":{"d":4,"dB":"2019-08-17T13:00:00Z","t1s":1,"t2s":3,"t1":104,"t2":89},"2966":{"d":24,"dB":"2019-02-10T14:00:00Z","t1s":2,"t2s":4,"t1":8,"t2":67},"3925":{"d":1,"dB":"2019-08-11T13:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":8},"3912":{"d":2,"dB":"2019-08-17T15:30:00Z","t1s":0,"t2s":0,"t1":8,"t2":9},"3892":{"d":4,"dB":"2019-08-31T18:00:00Z","t1s":1,"t2s":0,"t1":8,"t2":15},"3885":{"d":5,"dB":"2019-09-15T13:00:00Z","t1s":1,"t2s":0,"t1":8,"t2":68},"3877":{"d":6,"dB":"2019-09-20T18:45:00Z","t1s":2,"t2s":1,"t1":41,"t2":8},"3864":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":1,"t2s":0,"t1":8,"t2":20},"3850":{"d":8,"dB":"2019-09-28T11:30:00Z","t1s":0,"t2s":1,"t1":18,"t2":8},"3843":{"d":9,"dB":"2019-10-05T18:00:00Z","t1s":1,"t2s":0,"t1":8,"t2":19},"3822":{"d":11,"dB":"2019-10-25T18:45:00Z","t1s":0,"t2s":1,"t1":8,"t2":13},"3782":{"d":15,"dB":"2019-12-01T14:00:00Z","t1s":2,"t2s":1,"t1":8,"t2":10},"3832":{"d":10,"dB":"2019-10-19T18:00:00Z","t1s":1,"t2s":0,"t1":11,"t2":8},"3791":{"d":14,"dB":"2019-11-23T19:00:00Z","t1s":1,"t2s":1,"t1":75,"t2":8},"5040":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":0,"t1":14,"t2":97},"5028":{"d":4,"dB":"2019-08-19T18:45:00Z","t1s":2,"t2s":2,"t1":101,"t2":14},"5021":{"d":5,"dB":"2019-08-26T18:45:00Z","t1s":0,"t2s":1,"t1":14,"t2":91},"5013":{"d":6,"dB":"2019-08-31T13:00:00Z","t1s":0,"t2s":1,"t1":6,"t2":14},"3924":{"d":1,"dB":"2019-08-10T15:30:00Z","t1s":0,"t2s":2,"t1":9,"t2":68},"3905":{"d":3,"dB":"2019-08-28T19:00:00Z","t1s":1,"t2s":2,"t1":19,"t2":9},"3883":{"d":5,"dB":"2019-09-15T19:00:00Z","t1s":3,"t2s":4,"t1":13,"t2":9},"3871":{"d":6,"dB":"2019-09-21T15:30:00Z","t1s":1,"t2s":1,"t1":9,"t2":15},"3812":{"d":12,"dB":"2019-11-02T16:30:00Z","t1s":2,"t2s":1,"t1":9,"t2":12},"3800":{"d":13,"dB":"2019-11-10T20:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":18},"3797":{"d":14,"dB":"2019-11-24T20:00:00Z","t1s":0,"t2s":2,"t1":10,"t2":9},"3779":{"d":15,"dB":"2019-11-29T19:45:00Z","t1s":2,"t2s":1,"t1":9,"t2":75},"3769":{"d":16,"dB":"2019-12-03T18:00:00Z","t1s":0,"t2s":2,"t1":16,"t2":9},"3851":{"d":8,"dB":"2019-09-29T19:00:00Z","t1s":1,"t2s":1,"t1":9,"t2":20},"3838":{"d":9,"dB":"2019-10-04T18:45:00Z","t1s":3,"t2s":1,"t1":42,"t2":9},"3831":{"d":10,"dB":"2019-10-20T19:00:00Z","t1s":2,"t2s":0,"t1":9,"t2":41},"2971":{"d":24,"dB":"2019-02-10T14:00:00Z","t1s":1,"t2s":1,"t1":10,"t2":68},"3919":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":1,"t2s":1,"t1":75,"t2":10},"3874":{"d":6,"dB":"2019-09-21T18:00:00Z","t1s":1,"t2s":0,"t1":67,"t2":10},"3867":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":0,"t2s":2,"t1":10,"t2":16},"3852":{"d":8,"dB":"2019-09-28T18:00:00Z","t1s":2,"t2s":2,"t1":11,"t2":10},"3837":{"d":10,"dB":"2019-10-19T18:00:00Z","t1s":2,"t2s":1,"t1":10,"t2":12},"3825":{"d":11,"dB":"2019-10-27T14:00:00Z","t1s":3,"t2s":2,"t1":20,"t2":10},"3817":{"d":12,"dB":"2019-11-02T19:00:00Z","t1s":2,"t2s":3,"t1":10,"t2":18},"3802":{"d":13,"dB":"2019-11-10T16:00:00Z","t1s":3,"t2s":0,"t1":15,"t2":10},"3777":{"d":16,"dB":"2019-12-04T18:00:00Z","t1s":1,"t2s":2,"t1":10,"t2":13},"3767":{"d":17,"dB":"2019-12-07T19:00:00Z","t1s":4,"t2s":2,"t1":41,"t2":10},"3926":{"d":1,"dB":"2019-08-11T15:00:00Z","t1s":1,"t2s":1,"t1":41,"t2":11},"3911":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":3,"t2s":0,"t1":11,"t2":13},"3899":{"d":3,"dB":"2019-08-24T18:00:00Z","t1s":3,"t2s":0,"t1":16,"t2":11},"3872":{"d":6,"dB":"2019-09-21T18:00:00Z","t1s":1,"t2s":2,"t1":11,"t2":42},"3839":{"d":9,"dB":"2019-10-05T18:00:00Z","t1s":2,"t2s":0,"t1":75,"t2":11},"3784":{"d":15,"dB":"2019-11-30T19:00:00Z","t1s":1,"t2s":1,"t1":67,"t2":11},"3774":{"d":16,"dB":"2019-12-04T18:00:00Z","t1s":0,"t2s":1,"t1":11,"t2":20},"3763":{"d":17,"dB":"2019-12-07T19:00:00Z","t1s":4,"t2s":1,"t1":19,"t2":11},"3820":{"d":11,"dB":"2019-10-26T18:00:00Z","t1s":2,"t2s":0,"t1":18,"t2":11},"3813":{"d":12,"dB":"2019-11-02T19:00:00Z","t1s":2,"t2s":2,"t1":11,"t2":15},"3799":{"d":13,"dB":"2019-11-09T19:00:00Z","t1s":0,"t2s":0,"t1":12,"t2":11},"3794":{"d":14,"dB":"2019-11-23T19:00:00Z","t1s":1,"t2s":1,"t1":11,"t2":68},"3918":{"d":1,"dB":"2019-08-09T18:45:00Z","t1s":0,"t2s":3,"t1":13,"t2":18},"3903":{"d":3,"dB":"2019-08-25T13:00:00Z","t1s":2,"t2s":2,"t1":13,"t2":67},"3907":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":12},"3894":{"d":4,"dB":"2019-09-01T13:00:00Z","t1s":2,"t2s":0,"t1":68,"t2":12},"3882":{"d":5,"dB":"2019-09-13T17:00:00Z","t1s":2,"t2s":1,"t1":12,"t2":16},"3876":{"d":6,"dB":"2019-09-22T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":12},"3861":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":2,"t2s":0,"t1":12,"t2":41},"3854":{"d":8,"dB":"2019-09-28T18:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":12},"3841":{"d":9,"dB":"2019-10-06T13:00:00Z","t1s":2,"t2s":2,"t1":12,"t2":67},"3773":{"d":16,"dB":"2019-12-03T20:05:00Z","t1s":0,"t2s":1,"t1":18,"t2":12},"3758":{"d":17,"dB":"2019-12-06T18:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":75},"2975":{"d":25,"dB":"2019-02-17T14:00:00Z","t1s":0,"t2s":0,"t1":12,"t2":15},"2992":{"d":27,"dB":"2019-03-02T19:00:00Z","t1s":2,"t2s":2,"t1":16,"t2":13},"3896":{"d":4,"dB":"2019-09-01T15:00:00Z","t1s":2,"t2s":2,"t1":41,"t2":13},"3875":{"d":6,"dB":"2019-09-21T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":13},"3853":{"d":8,"dB":"2019-09-28T18:00:00Z","t1s":4,"t2s":1,"t1":13,"t2":75},"3842":{"d":9,"dB":"2019-10-05T18:00:00Z","t1s":3,"t2s":1,"t1":15,"t2":13},"3833":{"d":10,"dB":"2019-10-20T15:00:00Z","t1s":3,"t2s":2,"t1":13,"t2":20},"3760":{"d":17,"dB":"2019-12-07T19:00:00Z","t1s":3,"t2s":0,"t1":13,"t2":42},"3862":{"d":7,"dB":"2019-09-24T19:00:00Z","t1s":3,"t2s":1,"t1":13,"t2":19},"4683":{"d":1,"dB":"2019-08-18T15:00:00Z","t1s":1,"t2s":0,"t1":48,"t2":63},"3920":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":0,"t2s":1,"t1":15,"t2":20},"3904":{"d":3,"dB":"2019-08-27T17:00:00Z","t1s":1,"t2s":0,"t1":15,"t2":18},"3884":{"d":5,"dB":"2019-09-14T18:00:00Z","t1s":2,"t2s":1,"t1":15,"t2":19},"3863":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":1,"t2s":0,"t1":15,"t2":67},"3857":{"d":8,"dB":"2019-09-29T13:00:00Z","t1s":1,"t2s":0,"t1":41,"t2":15},"3821":{"d":11,"dB":"2019-10-26T18:00:00Z","t1s":0,"t2s":0,"t1":15,"t2":16},"3781":{"d":15,"dB":"2019-11-30T19:00:00Z","t1s":4,"t2s":2,"t1":15,"t2":42},"3836":{"d":10,"dB":"2019-10-19T18:00:00Z","t1s":1,"t2s":0,"t1":68,"t2":15},"3909":{"d":2,"dB":"2019-08-16T18:45:00Z","t1s":6,"t2s":0,"t1":18,"t2":16},"3848":{"d":8,"dB":"2019-09-28T18:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":42},"3828":{"d":10,"dB":"2019-10-19T18:00:00Z","t1s":0,"t2s":1,"t1":16,"t2":75},"3809":{"d":12,"dB":"2019-11-02T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":41},"3805":{"d":13,"dB":"2019-11-09T19:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":16},"3789":{"d":14,"dB":"2019-11-23T19:00:00Z","t1s":1,"t2s":0,"t1":16,"t2":67},"3783":{"d":15,"dB":"2019-11-30T19:00:00Z","t1s":3,"t2s":1,"t1":19,"t2":16},"3766":{"d":17,"dB":"2019-12-07T19:00:00Z","t1s":2,"t2s":1,"t1":20,"t2":16},"5057":{"d":2,"dB":"2019-08-05T18:45:00Z","t1s":1,"t2s":2,"t1":5,"t2":6},"3913":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":1,"t2s":2,"t1":67,"t2":19},"3028":{"d":30,"dB":"2019-03-29T19:45:00Z","t1s":0,"t2s":1,"t1":20,"t2":18},"3859":{"d":7,"dB":"2019-09-25T17:00:00Z","t1s":2,"t2s":2,"t1":75,"t2":18},"3764":{"d":17,"dB":"2019-12-06T19:45:00Z","t1s":0,"t2s":4,"t1":67,"t2":18},"3878":{"d":5,"dB":"2019-09-13T18:45:00Z","t1s":2,"t2s":2,"t1":42,"t2":18},"3793":{"d":14,"dB":"2019-11-23T16:30:00Z","t1s":2,"t2s":1,"t1":18,"t2":19},"3787":{"d":15,"dB":"2019-11-30T16:30:00Z","t1s":1,"t2s":2,"t1":41,"t2":18},"3895":{"d":4,"dB":"2019-09-01T13:00:00Z","t1s":1,"t2s":2,"t1":20,"t2":19},"3814":{"d":12,"dB":"2019-11-03T16:00:00Z","t1s":2,"t2s":0,"t1":19,"t2":68},"3827":{"d":11,"dB":"2019-10-26T18:00:00Z","t1s":1,"t2s":0,"t1":41,"t2":19},"5042":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":1,"t1":17,"t2":6},"3910":{"d":3,"dB":"2019-08-25T15:00:00Z","t1s":0,"t2s":2,"t1":41,"t2":20},"3880":{"d":5,"dB":"2019-09-14T18:00:00Z","t1s":0,"t2s":0,"t1":75,"t2":20},"3806":{"d":13,"dB":"2019-11-10T14:00:00Z","t1s":3,"t2s":1,"t1":20,"t2":42},"3845":{"d":9,"dB":"2019-10-06T15:00:00Z","t1s":0,"t2s":1,"t1":20,"t2":68},"3914":{"d":2,"dB":"2019-08-18T15:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":41},"3807":{"d":13,"dB":"2019-11-09T19:00:00Z","t1s":4,"t2s":1,"t1":41,"t2":67},"3788":{"d":14,"dB":"2019-11-23T19:00:00Z","t1s":0,"t2s":4,"t1":42,"t2":41},"3771":{"d":16,"dB":"2019-12-03T18:00:00Z","t1s":5,"t2s":0,"t1":75,"t2":41},"3835":{"d":10,"dB":"2019-10-19T18:00:00Z","t1s":1,"t2s":1,"t1":67,"t2":42},"3808":{"d":12,"dB":"2019-11-02T19:00:00Z","t1s":1,"t2s":0,"t1":42,"t2":75},"3893":{"d":4,"dB":"2019-08-31T18:00:00Z","t1s":3,"t2s":0,"t1":67,"t2":75},"3824":{"d":11,"dB":"2019-10-26T18:00:00Z","t1s":0,"t2s":0,"t1":68,"t2":67},"5064":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":0,"t1":100,"t2":101},"5048":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":2,"t2s":0,"t1":101,"t2":103},"5060":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":0,"t1":92,"t2":93},"5049":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":0,"t1":93,"t2":100},"3900":{"d":3,"dB":"2019-08-24T18:00:00Z","t1s":1,"t2s":0,"t1":75,"t2":68}},"Ne":{"3756":{"d":18,"dB":"2019-12-15T20:00:00Z","t1":4,"t2":2},"3750":{"d":18,"dB":"2019-12-15T14:00:00Z","t1":3,"t2":41},"3748":{"d":18,"dB":"2019-12-14T19:00:00Z","t1":42,"t2":7},"3755":{"d":18,"dB":"2019-12-14T19:00:00Z","t1":67,"t2":8},"3754":{"d":18,"dB":"2019-12-14T16:30:00Z","t1":11,"t2":9},"3757":{"d":18,"dB":"2019-12-14T19:00:00Z","t1":10,"t2":68},"3752":{"d":18,"dB":"2019-12-13T19:45:00Z","t1":12,"t2":15},"3749":{"d":18,"dB":"2019-12-14T19:00:00Z","t1":16,"t2":13},"3753":{"d":18,"dB":"2019-12-15T16:00:00Z","t1":18,"t2":20},"3751":{"d":18,"dB":"2019-12-14T19:00:00Z","t1":75,"t2":19}},"k":"3c15e5"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-2.20190718.json b/src/test/resources/__files/mpgstats.ligue-2.20190718.json deleted file mode 100644 index dbc459e..0000000 --- a/src/test/resources/__files/mpgstats.ligue-2.20190718.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-07-17T11:35:58Z", - "mL": { - "i": 4, - "n": "Ligue 2", - "cN": "Ligue-2", - "u": "\/league\/Ligue-2", - "aS": { - "cN": "Ligue-2-2019-2020", - "i": 12, - "n": "Ligue 2 2019-2020", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 0, - "lD": 0 - } - } - }, - "mxD": null, - "np": 0, - "le": { - "4": "Ligue-2" - }, - "k": "1594b0" -} diff --git a/src/test/resources/__files/mpgstats.ligue-2.20190724.json b/src/test/resources/__files/mpgstats.ligue-2.20190724.json deleted file mode 100644 index ef6f524..0000000 --- a/src/test/resources/__files/mpgstats.ligue-2.20190724.json +++ /dev/null @@ -1,2240 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-07-19T13:43:26Z", - "mL": { - "i": 4, - "n": "Ligue 2", - "cN": "Ligue-2", - "u": "\/league\/Ligue-2", - "aS": { - "cN": "Ligue-2-2019-2020", - "i": 12, - "n": "Ligue 2 2019-2020", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 0, - "lD": 0 - } - } - }, - "mxD": 0, - "np": 66, - "le": { - "4": "Ligue-2", - "1": "Ligue-1" - }, - "p": [ - { - "i": 52, - "n": "Crivelli", - "f": "Enzo", - "p": "A", - "r": 10, - "s": { - "g": "6", - "s": "146", - "n": "33", - "a": "4.44", - "d": "0.95", - "Ss": "6", - "Sn": "2", - "Sa": "3.25", - "Sd": "0.25", - "Og": "6", - "Os": "146", - "On": "33", - "Oa": "4.44", - "Od": "0.95", - "Mp": "2", - "Ap": "31", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 78, - "n": "Oniangu\u00e9", - "f": "Prince", - "p": "M", - "r": 9, - "s": { - "g": "2", - "s": "157", - "n": "31", - "a": "5.08", - "d": "0.71", - "Og": "2", - "Os": "157", - "On": "31", - "Oa": "5.08", - "Od": "0.71", - "Mp": "31", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 141, - "n": "Casimir Ninga", - "f": "", - "p": "A", - "r": 12, - "s": { - "g": "6", - "s": "153", - "n": "33", - "a": "4.64", - "d": "1.06", - "Sg": "1", - "Ss": "40", - "Sn": "9", - "Sa": "4.5", - "Sd": "0.97", - "Og": "6", - "Os": "153", - "On": "33", - "Oa": "4.64", - "Od": "1.06", - "Mp": "20", - "Ap": "13", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 6.5, - "g": 1 - }, - "37": { - "n": 3 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 172, - "n": "Bammou", - "f": "Yacine", - "p": "A", - "r": 7, - "s": { - "g": "2", - "s": "82", - "n": "17", - "a": "4.85", - "d": "0.51", - "Og": "2", - "Os": "82", - "On": "17", - "Oa": "4.85", - "Od": "0.51", - "Mp": "7", - "Ap": "10" - }, - "c": 5 - }, - { - "i": 315, - "n": "Dabo", - "f": "Mouhamadou", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 318, - "n": "Genevois", - "f": "Romain", - "p": "D", - "r": 5, - "s": { - "s": "27", - "n": "6", - "a": "4.58", - "d": "0.61", - "Os": "27", - "On": "6", - "Oa": "4.58", - "Od": "0.61", - "Dp": "6" - }, - "c": 5 - }, - { - "i": 332, - "n": "Djiku", - "f": "Alexander", - "p": "D", - "r": 13, - "s": { - "g": "1", - "s": "155", - "n": "31", - "a": "5.02", - "d": "1.18", - "Ss": "12", - "Sn": "3", - "Sa": "4.17", - "Sd": "1.03", - "Og": "1", - "Os": "155", - "On": "31", - "Oa": "5.02", - "Od": "1.18", - "Dp": "31", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 345, - "n": "Samba", - "f": "Brice", - "p": "G", - "r": 23, - "s": { - "s": "218", - "n": "38", - "a": "5.74", - "d": "1.1", - "Ss": "218", - "Sn": "38", - "Sa": "5.74", - "Sd": "1.1", - "Os": "218", - "On": "38", - "Oa": "5.74", - "Od": "1.1", - "Gp": "38", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 8.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 5 - }, - { - "i": 363, - "n": "Louis", - "f": "Jeff", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 366, - "n": "Imorou", - "f": "Emmanuel", - "p": "D", - "r": 9, - "s": { - "s": "76", - "n": "16", - "a": "4.78", - "d": "0.77", - "Ss": "18", - "Sn": "4", - "Sa": "4.63", - "Sd": "1.08", - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.77", - "Mp": "1", - "Dp": "15", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 382, - "n": "Sankoh", - "f": "Baissama", - "p": "M", - "r": 7, - "s": { - "s": "74", - "n": "15", - "a": "4.97", - "d": "0.39", - "Os": "74", - "On": "15", - "Oa": "4.97", - "Od": "0.39", - "Mp": "15", - "p": { - "33": { - "n": 5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 413, - "n": "Diomande", - "f": "Ismael", - "p": "M", - "r": 8, - "s": { - "s": "89", - "n": "18", - "a": "4.94", - "d": "0.85", - "Os": "89", - "On": "18", - "Oa": "4.94", - "Od": "0.85", - "Mp": "16", - "Dp": "2", - "p": { - "31": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 421, - "n": "Reulet", - "f": "Paul", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 462, - "n": "Alhadhur", - "f": "Chaker", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1195, - "n": "Peeters", - "f": "Stef", - "p": "M", - "r": 8, - "s": { - "s": "33", - "n": "7", - "a": "4.79", - "d": "0.52", - "Os": "33", - "On": "7", - "Oa": "4.79", - "Od": "0.52", - "Mp": "7" - }, - "c": 5 - }, - { - "i": 1222, - "n": "Kouakou", - "f": "Christian", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1223, - "n": "Mbengue", - "f": "Adama", - "p": "D", - "r": 5, - "s": { - "s": "53", - "n": "11", - "a": "4.86", - "d": "0.68", - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "0.68", - "Mp": "1", - "Dp": "10" - }, - "c": 5 - }, - { - "i": 1451, - "n": "Zelazny", - "f": "Erwin", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1537, - "n": "Repas", - "f": "Jan", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1706, - "n": "Fajr", - "f": "Faycal", - "p": "M", - "r": 13, - "s": { - "g": "5", - "s": "192", - "n": "36", - "a": "5.33", - "d": "1.07", - "Sg": "2", - "Ss": "29", - "Sn": "5", - "Sa": "5.8", - "Sd": "1.25", - "Og": "5", - "Os": "192", - "On": "36", - "Oa": "5.33", - "Od": "1.07", - "Mp": "35", - "Ap": "1", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5.5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 7.5, - "g": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 2045, - "n": "Deminguet", - "f": "Jessy", - "p": "M", - "r": 9, - "s": { - "s": "98", - "n": "20", - "a": "4.93", - "d": "0.97", - "Ss": "47", - "Sn": "9", - "Sa": "5.28", - "Sd": "0.85", - "Os": "98", - "On": "20", - "Oa": "4.93", - "Od": "0.97", - "Mp": "19", - "Ap": "1", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 5 - }, - { - "i": 2078, - "n": "Armougom", - "f": "Yoel", - "p": "D", - "r": 9, - "s": { - "s": "138", - "n": "29", - "a": "4.76", - "d": "0.74", - "Ss": "30", - "Sn": "6", - "Sa": "5.08", - "Sd": "0.34", - "Os": "138", - "On": "29", - "Oa": "4.76", - "Od": "0.74", - "Mp": "2", - "Dp": "27", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 2156, - "n": "Stavitski", - "f": "Timo", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1" - }, - "c": 5 - }, - { - "i": 2631, - "n": "Marega", - "f": "Issa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2632, - "n": "Callens", - "f": "Thomas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2682, - "n": "Tchokounte", - "f": "Malik", - "p": "A", - "r": 8, - "s": { - "s": "128", - "n": "29", - "a": "4.41", - "d": "0.56", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "128", - "On": "29", - "Oa": "4.41", - "Od": "0.56", - "Mp": "4", - "Ap": "25", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 2710, - "n": "Gradit", - "f": "Jonathan", - "p": "D", - "r": 10, - "s": { - "ao": "1", - "s": "114", - "n": "24", - "a": "4.75", - "d": "1.06", - "Sao": "1", - "Ss": "86", - "Sn": "18", - "Sa": "4.81", - "Sd": "1.09", - "Oao": "1", - "Os": "114", - "On": "24", - "Oa": "4.75", - "Od": "1.06", - "Mp": "1", - "Dp": "23", - "p": { - "31": { - "n": 3, - "a": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 2935, - "n": "Zahary", - "f": "Younn", - "p": "D", - "r": 9, - "s": { - "s": "50", - "n": "11", - "a": "4.59", - "d": "0.76", - "Os": "50", - "On": "11", - "Oa": "4.59", - "Od": "0.76", - "Dp": "11", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4, - "s": 1 - }, - "37": { - "n": 2.5 - } - } - }, - "c": 5 - }, - { - "i": 2940, - "n": "Joseph", - "f": "Evens", - "p": "M", - "r": 8, - "s": { - "s": "44", - "n": "10", - "a": "4.45", - "d": "0.69", - "Os": "44", - "On": "10", - "Oa": "4.45", - "Od": "0.69", - "Mp": "10" - }, - "c": 5 - }, - { - "i": 3230, - "n": "Mouaddib", - "f": "Jad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 3503, - "n": "Kyeremeh", - "f": "Godson", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 3504, - "n": "Tutu", - "f": "Brice", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 3524, - "n": "Moussaki", - "f": "Herman", - "p": "A", - "r": 1, - "s": { - "s": "8", - "n": "2", - "a": "4.25", - "d": "0.25", - "Ss": "8", - "Sn": "2", - "Sa": "4.25", - "Sd": "0.25", - "Os": "8", - "On": "2", - "Oa": "4.25", - "Od": "0.25", - "Mp": "1", - "Ap": "1", - "p": { - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 84, - "n": "Rodelin", - "f": "Ronny", - "p": "A", - "r": 7, - "s": { - "s": "76", - "n": "17", - "a": "4.5", - "d": "0.24", - "Os": "76", - "On": "17", - "Oa": "4.5", - "Od": "0.24", - "Mp": "8", - "Ap": "9", - "p": { - "35": { - "n": 4, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 110, - "n": "Sorbon", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 9, - "s": { - "g": "1", - "s": "157", - "n": "33", - "a": "4.77", - "d": "0.9", - "Sg": "1", - "Ss": "85", - "Sn": "17", - "Sa": "5", - "Sd": "0.77", - "Og": "1", - "Os": "157", - "On": "33", - "Oa": "4.77", - "Od": "0.9", - "Dp": "33", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5, - "g": 1 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 115, - "n": "Roux", - "f": "Nolan", - "p": "A", - "r": 9, - "s": { - "g": "2", - "s": "116", - "n": "26", - "a": "4.48", - "d": "0.67", - "Ss": "18", - "Sn": "4", - "Sa": "4.5", - "Sd": "0.35", - "Og": "2", - "Os": "116", - "On": "26", - "Oa": "4.48", - "Od": "0.67", - "Ap": "26", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 142, - "n": "Kerbrat", - "f": "Christophe", - "p": "D", - "r": 9, - "s": { - "s": "110", - "n": "25", - "a": "4.4", - "d": "1.1", - "Os": "110", - "On": "25", - "Oa": "4.4", - "Od": "1.1", - "Dp": "25", - "p": { - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 158, - "n": "Johnsson", - "f": "Karl-Johan", - "p": "G", - "r": 6, - "s": { - "s": "85", - "n": "17", - "a": "5", - "d": "1.1", - "Os": "85", - "On": "17", - "Oa": "5", - "Od": "1.1", - "Gp": "17" - }, - "c": 14 - }, - { - "i": 163, - "n": "Deaux", - "f": "Lucas", - "p": "M", - "r": 8, - "s": { - "g": "3", - "s": "87", - "n": "18", - "a": "4.83", - "d": "0.94", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "3", - "Os": "87", - "On": "18", - "Oa": "4.83", - "Od": "0.94", - "Mp": "18", - "p": { - "32": { - "n": 5.5, - "g": 1 - }, - "36": { - "n": 4.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 14 - }, - { - "i": 200, - "n": "Coco", - "f": "Marcus", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "152", - "n": "33", - "a": "4.62", - "d": "0.78", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "1", - "Os": "152", - "On": "33", - "Oa": "4.62", - "Od": "0.78", - "Mp": "25", - "Ap": "8", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 231, - "n": "Petric", - "f": "Denis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 236, - "n": "Benezet", - "f": "Nicolas", - "p": "M", - "r": 8, - "s": { - "g": "3", - "s": "123", - "n": "25", - "a": "4.92", - "d": "1.04", - "Og": "3", - "Os": "123", - "On": "25", - "Oa": "4.92", - "Od": "1.04", - "Mp": "19", - "Ap": "6", - "p": { - "31": { - "n": 5.5 - } - } - }, - "c": 14 - }, - { - "i": 241, - "n": "Didot", - "f": "\u00c9tienne", - "p": "M", - "r": 8, - "s": { - "g": "1", - "s": "144", - "n": "31", - "a": "4.66", - "d": "0.9", - "Ss": "36", - "Sn": "8", - "Sa": "4.56", - "Sd": "0.39", - "Og": "1", - "Os": "144", - "On": "31", - "Oa": "4.66", - "Od": "0.9", - "Mp": "31", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 289, - "n": "Ikoko", - "f": "Jordan", - "p": "D", - "r": 6, - "s": { - "s": "85", - "n": "20", - "a": "4.25", - "d": "0.93", - "Ss": "22", - "Sn": "5", - "Sa": "4.5", - "Sd": "0.84", - "Os": "85", - "On": "20", - "Oa": "4.25", - "Od": "0.93", - "Mp": "1", - "Dp": "19", - "p": { - "34": { - "n": 3 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 398, - "n": "Blas", - "f": "Ludovic", - "p": "M", - "r": 11, - "s": { - "g": "1", - "s": "165", - "n": "34", - "a": "4.85", - "d": "0.91", - "Ss": "26", - "Sn": "5", - "Sa": "5.2", - "Sd": "0.51", - "Og": "1", - "Os": "165", - "On": "34", - "Oa": "4.85", - "Od": "0.91", - "Mp": "33", - "Ap": "1", - "p": { - "31": { - "n": 4.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 790, - "n": "Djilobodji", - "f": "Papy", - "p": "D", - "r": 6, - "s": { - "s": "15", - "n": "4", - "a": "3.88", - "d": "0.41", - "Os": "15", - "On": "4", - "Oa": "3.88", - "Od": "0.41", - "Dp": "4", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 905, - "n": "Ndong", - "f": "Didier", - "p": "M", - "r": 8, - "s": { - "s": "51", - "n": "11", - "a": "4.64", - "d": "0.57", - "Os": "51", - "On": "11", - "Oa": "4.64", - "Od": "0.57", - "Mp": "11", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1178, - "n": "Tabanou", - "f": "Franck", - "p": "D", - "r": 6, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Dp": "2" - }, - "c": 14 - }, - { - "i": 1200, - "n": "Thuram", - "f": "Marcus", - "p": "A", - "r": 10, - "s": { - "g": "9", - "s": "153", - "n": "32", - "a": "4.8", - "d": "1.23", - "Sg": "2", - "Ss": "32", - "Sn": "7", - "Sa": "4.57", - "Sd": "0.86", - "Og": "9", - "Os": "153", - "On": "32", - "Oa": "4.8", - "Od": "1.23", - "Mp": "19", - "Ap": "13", - "p": { - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3 - }, - "37": { - "n": 5, - "g": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1209, - "n": "Phiri", - "f": "Lebogang", - "p": "M", - "r": 11, - "s": { - "s": "125", - "n": "24", - "a": "5.21", - "d": "1.02", - "Ss": "28", - "Sn": "6", - "Sa": "4.75", - "Sd": "1.25", - "Os": "125", - "On": "24", - "Oa": "5.21", - "Od": "1.02", - "Mp": "24", - "p": { - "31": { - "n": 6 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 7 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1236, - "n": "Eboa Eboa", - "f": "F\u00e9lix", - "p": "D", - "r": 14, - "s": { - "g": "3", - "s": "135", - "n": "27", - "a": "5", - "d": "1.39", - "Ss": "11", - "Sn": "2", - "Sa": "5.5", - "Sd": "0.5", - "Og": "3", - "Os": "135", - "On": "27", - "Oa": "5", - "Od": "1.39", - "Dp": "27", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1257, - "n": "Pedro Rebocho", - "f": "", - "p": "D", - "r": 13, - "s": { - "s": "181", - "n": "36", - "a": "5.04", - "d": "0.91", - "Ss": "132", - "Sn": "26", - "Sa": "5.08", - "Sd": "0.99", - "Os": "181", - "On": "36", - "Oa": "5.04", - "Od": "0.91", - "Mp": "1", - "Dp": "35", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 14 - }, - { - "i": 1258, - "n": "Abdoul Camara", - "f": "", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 1264, - "n": "Caillard", - "f": "Marc-Aur\u00e8le", - "p": "G", - "r": 15, - "s": { - "s": "115", - "n": "21", - "a": "5.48", - "d": "1.16", - "Ss": "115", - "Sn": "21", - "Sa": "5.48", - "Sd": "1.16", - "Os": "115", - "On": "21", - "Oa": "5.48", - "Od": "1.16", - "Gp": "21", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 14 - }, - { - "i": 1422, - "n": "Fofana", - "f": "Guessouma", - "p": "M", - "r": 4, - "s": { - "s": "57", - "n": "13", - "a": "4.38", - "d": "0.76", - "Os": "57", - "On": "13", - "Oa": "4.38", - "Od": "0.76", - "Mp": "13", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1548, - "n": "Ahlinvi", - "f": "Matteo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2138, - "n": "N'Gbakoto", - "f": "Yeni", - "p": "A", - "r": 8, - "s": { - "g": "1", - "s": "68", - "n": "15", - "a": "4.53", - "d": "0.69", - "Og": "1", - "Os": "68", - "On": "15", - "Oa": "4.53", - "Od": "0.69", - "Mp": "4", - "Ap": "11", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 6, - "g": 1, - "s": 1 - }, - "34": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 2312, - "n": "Julan", - "f": "Natha\u00ebl", - "p": "A", - "r": 9, - "s": { - "s": "45", - "n": "10", - "a": "4.5", - "d": "0.32", - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.32", - "Ap": "10" - }, - "c": 14 - }, - { - "i": 2722, - "n": "Traor\u00e9", - "f": "Cheick", - "p": "D", - "r": 8, - "s": { - "s": "89", - "n": "20", - "a": "4.45", - "d": "0.95", - "Os": "89", - "On": "20", - "Oa": "4.45", - "Od": "0.95", - "Dp": "20", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 2772, - "n": "Koita", - "f": "Djegui", - "p": "D", - "r": 4, - "s": { - "s": "10", - "n": "2", - "a": "5.25", - "d": "0.25", - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2" - }, - "c": 14 - }, - { - "i": 2857, - "n": "Bilingi", - "f": "Yohan", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2943, - "n": "Ako", - "f": "Steven", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2948, - "n": "Boudjemaa", - "f": "Mehdi", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2949, - "n": "Phaeton", - "f": "Matthias", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2997, - "n": "Johan Larsson", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1" - }, - "c": 14 - }, - { - "i": 3124, - "n": "Merghem", - "f": "Mehdi", - "p": "M", - "r": 10, - "s": { - "s": "43", - "n": "9", - "a": "4.83", - "d": "0.62", - "Ss": "9", - "Sn": "2", - "Sa": "4.5", - "Sd": "0.5", - "Os": "43", - "On": "9", - "Oa": "4.83", - "Od": "0.62", - "Mp": "7", - "Ap": "2", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 14 - } - ], - "c": { - "5": { - "n": "Caen", - "rn": "SM Caen", - "cn": "SM-Caen", - "a": "CAE", - "l": 4, - "el": 972, - "nM": 5065, - "nMWC": "0.4598", - "pM": { - "31": 3038, - "32": 3042, - "33": 3056, - "34": 3065, - "35": 3073, - "37": 3095, - "38": 3104, - "36": 3084 - }, - "DMI": [ - ] - }, - "14": { - "n": "Guingamp", - "rn": "EA Guingamp", - "cn": "EA-Guingamp", - "a": "GIN", - "l": 4, - "el": 923, - "nM": 5061, - "nMWC": "0.3910", - "pM": { - "35": 3073, - "31": 3035, - "32": 3051, - "33": 3053, - "34": 3069, - "36": 3090, - "37": 3093, - "38": 3102 - }, - "DMI": [ - ] - } - }, - "op": { - "102": { - "n": "Sochaux", - "l": 4, - "el": 1000 - }, - "94": { - "n": "Grenoble", - "l": 4, - "el": 1000 - }, - "67": { - "n": "N\u00eemes", - "l": 1, - "el": 1061 - }, - "16": { - "n": "Angers", - "l": 1, - "el": 1064 - }, - "19": { - "n": "Nice", - "l": 1, - "el": 1097 - }, - "7": { - "n": "Dijon", - "l": 1, - "el": 1028 - }, - "18": { - "n": "Lyon", - "l": 1, - "el": 1215 - }, - "3": { - "n": "Bordeaux", - "l": 1, - "el": 975 - }, - "68": { - "n": "Reims", - "l": 1, - "el": 1086 - }, - "13": { - "n": "Monaco", - "l": 1, - "el": 1019 - }, - "41": { - "n": "Strasbourg", - "l": 1, - "el": 1053 - }, - "9": { - "n": "Marseille", - "l": 1, - "el": 1147 - }, - "20": { - "n": "Rennes", - "l": 1, - "el": 1095 - }, - "42": { - "n": "Amiens", - "l": 1, - "el": 1029 - } - }, - "e": { - "3038": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 67, - "t2": 5 - }, - "3042": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 16 - }, - "3056": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 5 - }, - "3065": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 7 - }, - "3073": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 5 - }, - "3095": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 18, - "t2": 5 - }, - "3104": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 3 - }, - "3084": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 5, - "t2": 68 - }, - "3035": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 13 - }, - "3051": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 41, - "t2": 14 - }, - "3053": { - "d": 33, - "dB": "2019-04-20T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 9 - }, - "3069": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 19, - "t2": 14 - }, - "3090": { - "d": 36, - "dB": "2019-05-12T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 14 - }, - "3093": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 14, - "t2": 67 - }, - "3102": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 14 - } - }, - "Ne": { - "5065": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1": 102, - "t2": 5 - }, - "5061": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1": 14, - "t2": 94 - } - }, - "k": "5c4690" -} diff --git a/src/test/resources/__files/mpgstats.ligue-2.20190801.json b/src/test/resources/__files/mpgstats.ligue-2.20190801.json deleted file mode 100644 index 485833c..0000000 --- a/src/test/resources/__files/mpgstats.ligue-2.20190801.json +++ /dev/null @@ -1,12028 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-07-31T19:41:58Z", - "mL": { - "i": 4, - "n": "Ligue 2", - "cN": "Ligue-2", - "u": "\/league\/Ligue-2", - "aS": { - "cN": "Ligue-2-2019-2020", - "i": 12, - "n": "Ligue 2 2019-2020", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 1, - "lD": 1 - } - } - }, - "mxD": 1, - "np": 570, - "le": { - "4": "Ligue-2", - "1": "Ligue-1" - }, - "p": [ - { - "i": 52, - "n": "Crivelli", - "f": "Enzo", - "p": "A", - "r": 26, - "s": { - "n": 0, - "Og": "6", - "Os": "146", - "On": "33", - "Oa": "4.44", - "Od": "0.95", - "Mp": "2", - "Ap": "31", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 78, - "n": "Oniangu\u00e9", - "f": "Prince", - "p": "M", - "r": 21, - "s": { - "n": 0, - "Og": "2", - "Os": "157", - "On": "31", - "Oa": "5.08", - "Od": "0.71", - "Mp": "31", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 141, - "n": "Casimir Ninga", - "f": "", - "p": "A", - "r": 27, - "s": { - "n": 0, - "Og": "6", - "Os": "153", - "On": "33", - "Oa": "4.64", - "Od": "1.06", - "Mp": "20", - "Ap": "13", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 6.5, - "g": 1 - }, - "37": { - "n": 3 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 5 - }, - { - "i": 172, - "n": "Bammou", - "f": "Yacine", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "2", - "Os": "82", - "On": "17", - "Oa": "4.85", - "Od": "0.51", - "Mp": "7", - "Ap": "10" - }, - "c": 5 - }, - { - "i": 311, - "n": "Pi", - "f": "Jessy", - "p": "M", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 315, - "n": "Dabo", - "f": "Mouhamadou", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 318, - "n": "Genevois", - "f": "Romain", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "27", - "On": "6", - "Oa": "4.58", - "Od": "0.61", - "Dp": "6" - }, - "c": 5 - }, - { - "i": 335, - "n": "Rivierez", - "f": "Jonathan", - "p": "D", - "r": 8, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 345, - "n": "Samba", - "f": "Brice", - "p": "G", - "r": 20, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "220", - "On": "38", - "Oa": "5.8", - "Od": "1", - "Gp": "38", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 8.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 363, - "n": "Louis", - "f": "Jeff", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 366, - "n": "Imorou", - "f": "Emmanuel", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "76", - "On": "16", - "Oa": "4.78", - "Od": "0.77", - "Mp": "1", - "Dp": "15", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 382, - "n": "Sankoh", - "f": "Baissama", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "74", - "On": "15", - "Oa": "4.97", - "Od": "0.39", - "Mp": "15", - "p": { - "33": { - "n": 5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 413, - "n": "Diomande", - "f": "Ismael", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "89", - "On": "18", - "Oa": "4.94", - "Od": "0.85", - "Mp": "16", - "Dp": "2", - "p": { - "31": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 421, - "n": "Reulet", - "f": "Paul", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1195, - "n": "Peeters", - "f": "Stef", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "33", - "On": "7", - "Oa": "4.79", - "Od": "0.52", - "Mp": "7" - }, - "c": 5 - }, - { - "i": 1222, - "n": "Kouakou", - "f": "Christian", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1223, - "n": "Mbengue", - "f": "Adama", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "53", - "On": "11", - "Oa": "4.86", - "Od": "0.68", - "Mp": "1", - "Dp": "10" - }, - "c": 5 - }, - { - "i": 1237, - "n": "Avounou", - "f": "Durel", - "p": "M", - "r": 19, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1431, - "n": "Gon\u00e7alves", - "f": "Anthony", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "5", - "Os": "96", - "On": "18", - "Oa": "5.36", - "Od": "1", - "Mp": "17", - "Dp": "1", - "p": { - "31": { - "n": 6.5, - "e": 3039, - "c": 41, - "g": 1 - }, - "32": { - "n": 5.5, - "e": 3051, - "c": 41 - }, - "33": { - "n": 3.5, - "e": 3060, - "c": 41 - }, - "34": { - "n": 5, - "e": 3062, - "c": 41, - "s": 1 - }, - "35": { - "n": 5, - "e": 3080, - "c": 41, - "s": 1 - }, - "36": { - "n": 5, - "e": 3085, - "c": 41 - }, - "37": { - "n": 5, - "e": 3100, - "c": 41 - }, - "38": { - "n": 5.5, - "e": 3107, - "c": 41 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 1451, - "n": "Zelazny", - "f": "Erwin", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 1537, - "n": "Repas", - "f": "Jan", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 1706, - "n": "Fajr", - "f": "Faycal", - "p": "M", - "r": 32, - "s": { - "n": 0, - "Og": "5", - "Os": "192", - "On": "36", - "Oa": "5.33", - "Od": "1.07", - "Mp": "35", - "Ap": "1", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5.5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 7.5, - "g": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 2045, - "n": "Deminguet", - "f": "Jessy", - "p": "M", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "100", - "On": "20", - "Oa": "5", - "Od": "0.95", - "Mp": "20", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 6 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 2078, - "n": "Armougom", - "f": "Yoel", - "p": "D", - "r": 18, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "138", - "On": "29", - "Oa": "4.78", - "Od": "0.73", - "Mp": "2", - "Dp": "27", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 2156, - "n": "Stavitski", - "f": "Timo", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1" - }, - "c": 5 - }, - { - "i": 2632, - "n": "Callens", - "f": "Thomas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 2682, - "n": "Tchokounte", - "f": "Malik", - "p": "A", - "r": 14, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "128", - "On": "29", - "Oa": "4.43", - "Od": "0.55", - "Mp": "4", - "Ap": "25", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 4 - }, - "1": { - "n": 4.5 - } - } - }, - "c": 5 - }, - { - "i": 2710, - "n": "Gradit", - "f": "Jonathan", - "p": "D", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Oao": "1", - "Os": "119", - "On": "25", - "Oa": "4.76", - "Od": "1.04", - "Mp": "1", - "Dp": "24", - "p": { - "31": { - "n": 3, - "a": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 5 - }, - "1": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 2935, - "n": "Zahary", - "f": "Younn", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "50", - "On": "11", - "Oa": "4.59", - "Od": "0.76", - "Dp": "11", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4, - "s": 1 - }, - "37": { - "n": 2.5 - } - } - }, - "c": 5 - }, - { - "i": 2940, - "n": "Joseph", - "f": "Evens", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "44", - "On": "10", - "Oa": "4.45", - "Od": "0.69", - "Mp": "10" - }, - "c": 5 - }, - { - "i": 3189, - "n": "Elhadji Djibril Diaw", - "f": "", - "p": "D", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Dp": "2", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 5 - }, - { - "i": 3230, - "n": "Mouaddib", - "f": "Jad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 3503, - "n": "Kyeremeh", - "f": "Godson", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 3504, - "n": "Tutu", - "f": "Brice", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 5 - }, - { - "i": 3524, - "n": "Moussaki", - "f": "Herman", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "12", - "On": "3", - "Oa": "4.17", - "Od": "0.24", - "Mp": "1", - "Ap": "2", - "p": { - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 4.5 - }, - "1": { - "n": 4 - } - } - }, - "c": 5 - }, - { - "i": 3820, - "n": "Weber", - "f": "Anthony", - "p": "D", - "r": 15, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 5 - }, - { - "i": 5037, - "n": "Issoko", - "f": "Arnold", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 5353, - "n": "Vandermersch", - "f": "Hugo", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 5 - }, - { - "i": 127, - "n": "Marveaux", - "f": "Sylvain", - "p": "M", - "r": 19, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 149, - "n": "Peybernes", - "f": "Mathieu", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 154, - "n": "Delaplace", - "f": "Jonathan", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 164, - "n": "Le Goff", - "f": "Vincent", - "p": "D", - "r": 25, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 6 - }, - { - "i": 179, - "n": "Cabot", - "f": "Jimmy", - "p": "M", - "r": 22, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7.5", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7.5", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7.5", - "Mp": "1", - "p": { - "1": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 6 - }, - { - "i": 340, - "n": "Lemoine", - "f": "Fabien", - "p": "M", - "r": 19, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Mp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 6 - }, - { - "i": 468, - "n": "Mara", - "f": "Mohamed", - "p": "A", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 6 - }, - { - "i": 523, - "n": "Mazikou", - "f": "Bradley", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 529, - "n": "Cont\u00e9", - "f": "Ibrahima Sory", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 570, - "n": "Hamel", - "f": "Pierre-Yves", - "p": "A", - "r": 39, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Ap": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 6 - }, - { - "i": 583, - "n": "Claude Maurice", - "f": "Alexis", - "p": "M", - "r": 38, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 6 - }, - { - "i": 2666, - "n": "Bozok", - "f": "Umut", - "p": "A", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Og": "2", - "Os": "117", - "On": "25", - "Oa": "4.7", - "Od": "1", - "Ap": "25", - "p": { - "32": { - "n": 4.5, - "e": 3045, - "c": 67, - "s": 1 - }, - "33": { - "n": 5, - "e": 3057, - "c": 67 - }, - "1": { - "n": 5 - } - } - }, - "c": 6 - }, - { - "i": 3805, - "n": "Nardi", - "f": "Paul", - "p": "G", - "r": 8, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 6 - }, - { - "i": 4838, - "n": "Renaud", - "f": "Tom", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4839, - "n": "Loric", - "f": "Samuel", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4855, - "n": "Le F\u00e9e", - "f": "Enzo", - "p": "M", - "r": 1, - "s": { - "s": "7", - "n": "1", - "a": "7", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Os": "7", - "On": "1", - "Oa": "7", - "Mp": "1", - "p": { - "1": { - "n": 7 - } - } - }, - "c": 6 - }, - { - "i": 4877, - "n": "Bartouche", - "f": "Teddy", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4887, - "n": "Julloux", - "f": "Adrien", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4888, - "n": "Bila", - "f": "Abdoul", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4889, - "n": "Abessolo", - "f": "Wilfrid", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4900, - "n": "Ponceau", - "f": "Julien", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4940, - "n": "Etuin", - "f": "Maxime", - "p": "M", - "r": 16, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4946, - "n": "Pattier", - "f": "Maxime", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4948, - "n": "Meslier", - "f": "Illan", - "p": "G", - "r": 14, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4952, - "n": "Wadja", - "f": "Franklin", - "p": "M", - "r": 17, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 4981, - "n": "Kamissoko", - "f": "Mamadou", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5009, - "n": "Mendes", - "f": "Houboulang", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5032, - "n": "Ouaneh", - "f": "Peter", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5033, - "n": "Wissa", - "f": "Yoane", - "p": "A", - "r": 19, - "s": { - "g": "1", - "s": "6", - "n": "1", - "a": "6.5", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Og": "1", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Mp": "1", - "p": { - "1": { - "n": 6.5, - "g": 1, - "s": 1 - } - } - }, - "c": 6 - }, - { - "i": 5056, - "n": "Laporte", - "f": "Julien", - "p": "D", - "r": 13, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 6 - }, - { - "i": 5065, - "n": "Hergault", - "f": "Jerome", - "p": "D", - "r": 15, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 6 - }, - { - "i": 5077, - "n": "Lecoeuche", - "f": "Quentin", - "p": "D", - "r": 18, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 6 - }, - { - "i": 5131, - "n": "Boubaya", - "f": "Tristan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5152, - "n": "Lemaire", - "f": "Pierre-Etienne", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5162, - "n": "Abergel", - "f": "Laurent", - "p": "D", - "r": 16, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5163, - "n": "Sainati", - "f": "Joris", - "p": "D", - "r": 15, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5186, - "n": "Saunier", - "f": "Matthieu", - "p": "D", - "r": 11, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Dp": "1", - "p": { - "1": { - "n": 7, - "g": 1 - } - } - }, - "c": 6 - }, - { - "i": 5205, - "n": "Saad", - "f": "Felipe", - "p": "D", - "r": 14, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 5219, - "n": "Martins Pereira", - "f": "Jonathan", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 6 - }, - { - "i": 69, - "n": "Salibur", - "f": "Yannis", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "110", - "On": "22", - "Oa": "5", - "Od": "0.85", - "Mp": "8", - "Ap": "14", - "p": { - "34": { - "n": 4.5, - "e": 3071, - "c": 4, - "s": 1 - }, - "36": { - "n": 5, - "e": 3091, - "c": 4, - "s": 1 - }, - "37": { - "n": 6.5, - "e": 3099, - "c": 4 - } - } - }, - "c": 14 - }, - { - "i": 84, - "n": "Rodelin", - "f": "Ronny", - "p": "A", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "82", - "On": "18", - "Oa": "4.56", - "Od": "0.33", - "Mp": "9", - "Ap": "9", - "p": { - "35": { - "n": 4, - "s": 1 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 14 - }, - { - "i": 110, - "n": "Sorbon", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 18, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "162", - "On": "34", - "Oa": "4.76", - "Od": "0.88", - "Dp": "34", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5, - "g": 1 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - }, - "1": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 115, - "n": "Roux", - "f": "Nolan", - "p": "A", - "r": 27, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Og": "2", - "Os": "116", - "On": "26", - "Oa": "4.46", - "Od": "0.68", - "Ap": "26", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - }, - "1": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 142, - "n": "Kerbrat", - "f": "Christophe", - "p": "D", - "r": 16, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "109", - "On": "25", - "Oa": "4.38", - "Od": "1.1", - "Dp": "25", - "p": { - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "1": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 158, - "n": "Johnsson", - "f": "Karl-Johan", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "85", - "On": "17", - "Oa": "5", - "Od": "1.1", - "Gp": "17" - }, - "c": 14 - }, - { - "i": 163, - "n": "Deaux", - "f": "Lucas", - "p": "M", - "r": 16, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "3", - "Os": "91", - "On": "19", - "Oa": "4.82", - "Od": "0.92", - "Mp": "19", - "p": { - "32": { - "n": 5.5, - "g": 1 - }, - "36": { - "n": 4.5 - }, - "38": { - "n": 6 - }, - "1": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 231, - "n": "Petric", - "f": "Denis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 236, - "n": "Benezet", - "f": "Nicolas", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Og": "3", - "Os": "123", - "On": "25", - "Oa": "4.92", - "Od": "1.04", - "Mp": "19", - "Ap": "6", - "p": { - "31": { - "n": 5.5 - } - } - }, - "c": 14 - }, - { - "i": 241, - "n": "Didot", - "f": "\u00c9tienne", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "144", - "On": "31", - "Oa": "4.66", - "Od": "0.9", - "Mp": "31", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 289, - "n": "Ikoko", - "f": "Jordan", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "85", - "On": "20", - "Oa": "4.25", - "Od": "0.93", - "Mp": "1", - "Dp": "19", - "p": { - "34": { - "n": 3 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 398, - "n": "Blas", - "f": "Ludovic", - "p": "M", - "r": 23, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "1", - "Os": "166", - "On": "34", - "Oa": "4.88", - "Od": "0.92", - "Mp": "33", - "Ap": "1", - "p": { - "31": { - "n": 4.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 14 - }, - { - "i": 536, - "n": "Guivarch", - "f": "Theo", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 579, - "n": "Poaty", - "f": "Morgan", - "p": "D", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 790, - "n": "Djilobodji", - "f": "Papy", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "15", - "On": "4", - "Oa": "3.88", - "Od": "0.41", - "Dp": "4", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 3.5 - } - } - }, - "c": 14 - }, - { - "i": 905, - "n": "Ndong", - "f": "Didier", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "56", - "On": "12", - "Oa": "4.67", - "Od": "0.55", - "Mp": "12", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4 - }, - "1": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1178, - "n": "Tabanou", - "f": "Franck", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Dp": "2" - }, - "c": 14 - }, - { - "i": 1200, - "n": "Thuram", - "f": "Marcus", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "9", - "Os": "153", - "On": "32", - "Oa": "4.8", - "Od": "1.23", - "Mp": "19", - "Ap": "13", - "p": { - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3 - }, - "37": { - "n": 5, - "g": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1209, - "n": "Phiri", - "f": "Lebogang", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "125", - "On": "24", - "Oa": "5.21", - "Od": "1.02", - "Mp": "24", - "p": { - "31": { - "n": 6 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 7 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 1236, - "n": "Eboa Eboa", - "f": "F\u00e9lix", - "p": "D", - "r": 23, - "s": { - "n": 0, - "Og": "3", - "Os": "135", - "On": "27", - "Oa": "5", - "Od": "1.39", - "Dp": "27", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 14 - }, - { - "i": 1257, - "n": "Pedro Rebocho", - "f": "", - "p": "D", - "r": 25, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "181", - "On": "36", - "Oa": "5.04", - "Od": "0.91", - "Mp": "1", - "Dp": "35", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - }, - "1": { - "n": 4.5 - } - } - }, - "c": 14 - }, - { - "i": 1258, - "n": "Abdoul Camara", - "f": "", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 1264, - "n": "Caillard", - "f": "Marc-Aur\u00e8le", - "p": "G", - "r": 15, - "s": { - "s": "2", - "n": "1", - "a": "2.5", - "Ss": "2", - "Sn": "1", - "Sa": "2.5", - "Os": "117", - "On": "22", - "Oa": "5.34", - "Od": "1.29", - "Gp": "22", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - }, - "1": { - "n": 2.5 - } - } - }, - "c": 14 - }, - { - "i": 1421, - "n": "Pel\u00e9", - "f": "Bryan", - "p": "M", - "r": 28, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Mp": "1", - "p": { - "1": { - "n": 7, - "g": 1, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1422, - "n": "Fofana", - "f": "Guessouma", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "57", - "On": "13", - "Oa": "4.38", - "Od": "0.76", - "Mp": "13", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 1548, - "n": "Ahlinvi", - "f": "Matteo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2138, - "n": "N'Gbakoto", - "f": "Yeni", - "p": "A", - "r": 18, - "s": { - "g": "1", - "s": "6", - "n": "1", - "a": "6", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "2", - "Os": "69", - "On": "15", - "Oa": "4.63", - "Od": "0.78", - "Mp": "5", - "Ap": "10", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 6, - "g": 1, - "s": 1 - }, - "34": { - "n": 3.5 - }, - "1": { - "n": 6, - "g": 1 - } - } - }, - "c": 14 - }, - { - "i": 2312, - "n": "Julan", - "f": "Natha\u00ebl", - "p": "A", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.3", - "Ap": "11", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 14 - }, - { - "i": 2722, - "n": "Traor\u00e9", - "f": "Cheick", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Os": "89", - "On": "20", - "Oa": "4.45", - "Od": "0.95", - "Dp": "20", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 3 - } - } - }, - "c": 14 - }, - { - "i": 2772, - "n": "Koita", - "f": "Djegui", - "p": "D", - "r": 2, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2" - }, - "c": 14 - }, - { - "i": 2857, - "n": "Bilingi", - "f": "Yohan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2943, - "n": "Ako", - "f": "Steven", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2948, - "n": "Boudjemaa", - "f": "Mehdi", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2949, - "n": "Phaeton", - "f": "Matthias", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 2997, - "n": "Johan Larsson", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1" - }, - "c": 14 - }, - { - "i": 3124, - "n": "Merghem", - "f": "Mehdi", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "43", - "On": "9", - "Oa": "4.83", - "Od": "0.62", - "Mp": "7", - "Ap": "2", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 14 - }, - { - "i": 4851, - "n": "Mellot", - "f": "Jeremy", - "p": "D", - "r": 6, - "s": { - "g": "1", - "s": "6", - "n": "1", - "a": "6", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "1", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6, - "g": 1 - } - } - }, - "c": 14 - }, - { - "i": 4884, - "n": "Carnot", - "f": "Louis", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 5006, - "n": "Niakate", - "f": "Sikou", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 5361, - "n": "Gueddar", - "f": "Mohamed Ali", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 5362, - "n": "Anne", - "f": "Souleymane", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 5364, - "n": "Youfeigane", - "f": "Dominique", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 5370, - "n": "Baret", - "f": "Yohan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 14 - }, - { - "i": 161, - "n": "Muratori", - "f": "Vincent", - "p": "D", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 17 - }, - { - "i": 338, - "n": "El Kaoutari", - "f": "Abdelhamid", - "p": "D", - "r": 7, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 17 - }, - { - "i": 417, - "n": "N'Guessan", - "f": "Serge", - "p": "M", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 17 - }, - { - "i": 522, - "n": "Rocha Santos", - "f": "Kenny", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 17 - }, - { - "i": 577, - "n": "Marchetti", - "f": "Vincent", - "p": "M", - "r": 18, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 17 - }, - { - "i": 1270, - "n": "Coulibaly", - "f": "Sega", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 1407, - "n": "Seka", - "f": "Ernest", - "p": "D", - "r": 15, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 2139, - "n": "V\u00e1gner", - "f": "", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 2607, - "n": "Lybohy", - "f": "Herve", - "p": "D", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Og": "2", - "Os": "87", - "On": "18", - "Oa": "4.86", - "Od": "1.05", - "Dp": "18", - "p": { - "31": { - "n": 5.5, - "e": 3038, - "c": 67 - }, - "32": { - "n": 4.5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 5, - "e": 3057, - "c": 67 - }, - "34": { - "n": 3.5, - "e": 3066, - "c": 67 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 17 - }, - { - "i": 2628, - "n": "Bertrand", - "f": "Dorian", - "p": "A", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 17 - }, - { - "i": 2729, - "n": "Valette", - "f": "Baptiste", - "p": "G", - "r": 5, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Gp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 17 - }, - { - "i": 2732, - "n": "Sourzac", - "f": "Martin", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 2765, - "n": "Gueye", - "f": "Makhtar", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Og": "1", - "Os": "26", - "On": "5", - "Oa": "5.2", - "Od": "0.68", - "Ap": "5", - "p": { - "38": { - "n": 4.5, - "e": 3103, - "c": 4, - "s": 1 - } - } - }, - "c": 17 - }, - { - "i": 4872, - "n": "Triboulet", - "f": "Vinni", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4873, - "n": "Bouzar Essaidi", - "f": "Samir", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4875, - "n": "Wooh", - "f": "Christopher Maurice", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4876, - "n": "Haag", - "f": "Giovanni", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4899, - "n": "Bassouamina", - "f": "Mons", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 17 - }, - { - "i": 4939, - "n": "Constant", - "f": "Hugo", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4959, - "n": "Demb\u00e9l\u00e9", - "f": "Malaly", - "p": "A", - "r": 15, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 17 - }, - { - "i": 4961, - "n": "Barka", - "f": "Yanis", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4963, - "n": "Fischer", - "f": "Mathias", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4967, - "n": "Bassi", - "f": "Amine", - "p": "M", - "r": 22, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 4973, - "n": "Bidounga", - "f": "Ryan", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 5025, - "n": "Karamoko", - "f": "Souleymane", - "p": "D", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 17 - }, - { - "i": 5058, - "n": "Nguiamba", - "f": "Aurelien", - "p": "M", - "r": 2, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 17 - }, - { - "i": 5114, - "n": "Danilson da Cruz", - "f": "", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 5165, - "n": "Cissokho", - "f": "Mame Ousmane", - "p": "A", - "r": 19, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 5167, - "n": "Edmond Akichi", - "f": "", - "p": "M", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 17 - }, - { - "i": 5179, - "n": "Nery", - "f": "Loris", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 17 - }, - { - "i": 5204, - "n": "Dona Ndoh", - "f": "And\u00e9", - "p": "A", - "r": 25, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 17 - }, - { - "i": 479, - "n": "Barthelme", - "f": "Maxime", - "p": "M", - "r": 23, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 43 - }, - { - "i": 1224, - "n": "Massouema", - "f": "Eden", - "p": "M", - "r": 12, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 43 - }, - { - "i": 1396, - "n": "Darbion", - "f": "St\u00e9phane", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 1408, - "n": "El Hajjam", - "f": "Oualid", - "p": "D", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "48", - "On": "11", - "Oa": "4.41", - "Od": "0.76", - "Mp": "2", - "Dp": "9", - "p": { - "35": { - "n": 4.5, - "e": 3076, - "c": 42 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 43 - }, - { - "i": 1411, - "n": "Giraudon", - "f": "Jimmy", - "p": "D", - "r": 18, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 43 - }, - { - "i": 1440, - "n": "Salmier", - "f": "Yoann", - "p": "D", - "r": 16, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 43 - }, - { - "i": 1465, - "n": "Sissako", - "f": "Mamadou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 2271, - "n": "Chambost", - "f": "Dylan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 2325, - "n": "Mbeumo", - "f": "Bryan", - "p": "A", - "r": 22, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Mp": "1", - "p": { - "1": { - "n": 7, - "g": 1 - } - } - }, - "c": 43 - }, - { - "i": 4848, - "n": "Bouallak", - "f": "Ryan", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 4854, - "n": "Mambo", - "f": "Stone Muzalimoja", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 4867, - "n": "Jay", - "f": "Ronan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 4883, - "n": "Abdallah", - "f": "Benrandy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 4897, - "n": "Tchimbemb\u00e9", - "f": "Warren", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 4989, - "n": "Rui Pires", - "f": "", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 43 - }, - { - "i": 4999, - "n": "Digol N'Dozangue", - "f": "Khamis", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5004, - "n": "Fortun\u00e9", - "f": "K\u00e9vin", - "p": "A", - "r": 25, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Mp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 43 - }, - { - "i": 5012, - "n": "Kiki Kouyate", - "f": "", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5071, - "n": "Raveloson", - "f": "Rayan", - "p": "D", - "r": 24, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5101, - "n": "Camara", - "f": "Demba", - "p": "A", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 43 - }, - { - "i": 5108, - "n": "Gallon", - "f": "Gauthier", - "p": "G", - "r": 17, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 43 - }, - { - "i": 5178, - "n": "Touzghar", - "f": "Yoann", - "p": "A", - "r": 28, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Ap": "1", - "p": { - "1": { - "n": 7, - "g": 1 - } - } - }, - "c": 43 - }, - { - "i": 5197, - "n": "Kashi", - "f": "Ahmed", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5358, - "n": "Bombo", - "f": "Calvin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5359, - "n": "Merah", - "f": "Yanis", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5365, - "n": "Baya", - "f": "Terence", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 5376, - "n": "Tardieu", - "f": "Florian", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 43 - }, - { - "i": 348, - "n": "Leroy", - "f": "Benjamin", - "p": "G", - "r": 15, - "s": { - "s": "3", - "n": "1", - "a": "3", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "3", - "On": "1", - "Oa": "3", - "Gp": "1", - "p": { - "1": { - "n": 3 - } - } - }, - "c": 88 - }, - { - "i": 384, - "n": "Lejeune", - "f": "K\u00e9vin", - "p": "M", - "r": 12, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 88 - }, - { - "i": 1263, - "n": "Andonian", - "f": "Ga\u00ebl", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 4834, - "n": "Huard", - "f": "Matthieu", - "p": "D", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 88 - }, - { - "i": 4860, - "n": "Corinus", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 2, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 88 - }, - { - "i": 4871, - "n": "Tomi", - "f": "Felix", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 4878, - "n": "El Idrissy", - "f": "Mounaim", - "p": "A", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 88 - }, - { - "i": 4879, - "n": "Marsella", - "f": "Lucas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 4882, - "n": "Zady Sery", - "f": "Caleb", - "p": "A", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 88 - }, - { - "i": 4896, - "n": "Pellegrini", - "f": "Lucas", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 4958, - "n": "Tramoni", - "f": "Matteo", - "p": "M", - "r": 14, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6, - "s": 1 - } - } - }, - "c": 88 - }, - { - "i": 4993, - "n": "Bayala", - "f": "Cyrille", - "p": "M", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 88 - }, - { - "i": 5039, - "n": "Laci", - "f": "Qazim", - "p": "M", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 88 - }, - { - "i": 5044, - "n": "Coutadeur", - "f": "Mathieu", - "p": "M", - "r": 23, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Mp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 88 - }, - { - "i": 5062, - "n": "Tall", - "f": "Maki Madani", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 5086, - "n": "Sollacaro", - "f": "Francois-Joseph", - "p": "G", - "r": 8, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 5099, - "n": "Diallo", - "f": "Isma\u00ebl", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 5170, - "n": "Courtet", - "f": "Ga\u00ebtan", - "p": "A", - "r": 13, - "s": { - "g": "2", - "s": "7", - "n": "1", - "a": "7", - "Sg": "2", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "2", - "Os": "7", - "On": "1", - "Oa": "7", - "Ap": "1", - "p": { - "1": { - "n": 7, - "g": 2 - } - } - }, - "c": 88 - }, - { - "i": 5175, - "n": "Mendes", - "f": "Joseph", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 5206, - "n": "Youssouf", - "f": "Mohamed", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 88 - }, - { - "i": 5214, - "n": "Avinel", - "f": "Cedric", - "p": "D", - "r": 21, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 88 - }, - { - "i": 5218, - "n": "Choplin", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 19, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 88 - }, - { - "i": 5222, - "n": "Cavalli", - "f": "Johan", - "p": "M", - "r": 21, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 88 - }, - { - "i": 255, - "n": "Gorgelin", - "f": "Mathieu", - "p": "G", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "22", - "On": "4", - "Oa": "5.63", - "Od": "0.82", - "Gp": "4", - "p": { - "38": { - "n": 7, - "e": 3109, - "c": 18 - }, - "1": { - "n": 5.5 - } - } - }, - "c": 89 - }, - { - "i": 269, - "n": "Bazile", - "f": "Herve", - "p": "A", - "r": 14, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 1249, - "n": "Dzabana", - "f": "Alan", - "p": "A", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 89 - }, - { - "i": 4891, - "n": "Abdelli", - "f": "Himad", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 89 - }, - { - "i": 4945, - "n": "Ebimbe", - "f": "\u00c9ric", - "p": "M", - "r": 1, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Mp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 89 - }, - { - "i": 4951, - "n": "Fofana", - "f": "Yahia", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 4962, - "n": "Tiehi", - "f": "Christ", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 4968, - "n": "Gueye", - "f": "Pape Alassane", - "p": "M", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 89 - }, - { - "i": 4976, - "n": "Basque", - "f": "Romain", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 4992, - "n": "Coulibaly", - "f": "Yacouba", - "p": "D", - "r": 10, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 89 - }, - { - "i": 4995, - "n": "Mayembo", - "f": "Fernand", - "p": "D", - "r": 7, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 89 - }, - { - "i": 5008, - "n": "Gory", - "f": "Alimami", - "p": "A", - "r": 27, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5015, - "n": "Camara", - "f": "Samba", - "p": "D", - "r": 12, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 89 - }, - { - "i": 5036, - "n": "Kadewere", - "f": "Tinotenda", - "p": "A", - "r": 17, - "s": { - "g": "2", - "s": "7", - "n": "1", - "a": "7", - "Sg": "2", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "2", - "Os": "7", - "On": "1", - "Oa": "7", - "Ap": "1", - "p": { - "1": { - "n": 7, - "g": 2 - } - } - }, - "c": 89 - }, - { - "i": 5104, - "n": "Bese", - "f": "Barnab\u00e1s", - "p": "D", - "r": 16, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 89 - }, - { - "i": 5116, - "n": "Assifuah", - "f": "Ebenezer", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 89 - }, - { - "i": 5119, - "n": "Lekhal", - "f": "Victor", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5120, - "n": "Thiare", - "f": "Jamal", - "p": "A", - "r": 10, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Ap": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 89 - }, - { - "i": 5133, - "n": "Traore", - "f": "Baba", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5150, - "n": "Youga", - "f": "Amos", - "p": "M", - "r": 16, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5188, - "n": "Balijon", - "f": "Arnaud", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5203, - "n": "Fontaine", - "f": "Jean-Pascal", - "p": "M", - "r": 25, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 89 - }, - { - "i": 5216, - "n": "Bonnet", - "f": "Alexandre", - "p": "M", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 89 - }, - { - "i": 5349, - "n": "Meddah", - "f": "Daylam", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5350, - "n": "Konate", - "f": "Ateef", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 5351, - "n": "Coulibaly", - "f": "Woyo", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 89 - }, - { - "i": 1211, - "n": "Junior Tallo", - "f": "", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 1220, - "n": "Gonzalez", - "f": "Oumar", - "p": "D", - "r": 10, - "s": { - "s": "7", - "n": "1", - "a": "7", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Os": "7", - "On": "1", - "Oa": "7", - "Dp": "1", - "p": { - "1": { - "n": 7 - } - } - }, - "c": 90 - }, - { - "i": 1551, - "n": "Le Roy", - "f": "Killian", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 4901, - "n": "Sylas Edjouma", - "f": "Malcom", - "p": "M", - "r": 4, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 90 - }, - { - "i": 4909, - "n": "Doucoure", - "f": "Boubacari", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 4910, - "n": "Delos", - "f": "David", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 4935, - "n": "Tabue", - "f": "Kevin", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 4936, - "n": "Seck", - "f": "Mafall", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 4975, - "n": "Pinoteau", - "f": "Xavier", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 4980, - "n": "Guezoui", - "f": "Medhy", - "p": "A", - "r": 10, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 90 - }, - { - "i": 4984, - "n": "El Hriti", - "f": "Aniss", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5011, - "n": "H\u00e9lo\u00efse", - "f": "Laurent", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5026, - "n": "Thomas Henry", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5060, - "n": "Jaques", - "f": "Thibault", - "p": "D", - "r": 17, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7.5", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7.5", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7.5", - "Dp": "1", - "p": { - "1": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 90 - }, - { - "i": 5090, - "n": "David", - "f": "Florian", - "p": "M", - "r": 12, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Ap": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 90 - }, - { - "i": 5093, - "n": "Santelli", - "f": "Benjamin", - "p": "M", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 90 - }, - { - "i": 5106, - "n": "Derrien", - "f": "Maxence", - "p": "D", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 90 - }, - { - "i": 5110, - "n": "Beaulieu", - "f": "Jonathan", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5112, - "n": "Dequaire", - "f": "Guillaume", - "p": "D", - "r": 13, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 90 - }, - { - "i": 5113, - "n": "Fofana", - "f": "Diarank\u00e9", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5117, - "n": "Hilaire", - "f": "Max", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5118, - "n": "Padovani", - "f": "Romain", - "p": "M", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 90 - }, - { - "i": 5123, - "n": "Eickmayer", - "f": "Joachim", - "p": "M", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 90 - }, - { - "i": 5125, - "n": "Soubervie", - "f": "Anthony", - "p": "D", - "r": 13, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 90 - }, - { - "i": 5128, - "n": "Lefaix", - "f": "Kevin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5134, - "n": "Latour", - "f": "Micka\u00ebl", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5148, - "n": "Heinry", - "f": "Guillaume", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5156, - "n": "Popelard", - "f": "John", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5157, - "n": "Doucour\u00e9", - "f": "Lassana", - "p": "M", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 90 - }, - { - "i": 5158, - "n": "Pinteaux", - "f": "Florian", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5191, - "n": "Atrous", - "f": "Samuel", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5211, - "n": "Pontdem\u00e9", - "f": "Simon", - "p": "G", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Gp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 90 - }, - { - "i": 5217, - "n": "Loriot", - "f": "Guillaume", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5355, - "n": "Fleurier", - "f": "Romain", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5356, - "n": "Geran", - "f": "Marvin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5357, - "n": "Delos", - "f": "Shaquil", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5374, - "n": "Flochon", - "f": "S\u00e9bastien", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 5377, - "n": "Crillon", - "f": "Judica\u00ebl", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 90 - }, - { - "i": 63, - "n": "Prior", - "f": "J\u00e9r\u00f4me", - "p": "G", - "r": 5, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 91 - }, - { - "i": 389, - "n": "Cuffaut", - "f": "Joffrey", - "p": "D", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 91 - }, - { - "i": 397, - "n": "Hein", - "f": "Gauthier", - "p": "M", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 91 - }, - { - "i": 566, - "n": "Romil", - "f": "Jorris", - "p": "A", - "r": 8, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 91 - }, - { - "i": 1169, - "n": "Guillaume", - "f": "Baptiste", - "p": "A", - "r": 8, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Og": "2", - "Os": "111", - "On": "25", - "Oa": "4.44", - "Od": "0.92", - "Ap": "25", - "p": { - "31": { - "n": 5, - "e": 3038, - "c": 67 - }, - "32": { - "n": 4, - "e": 3045, - "c": 67, - "s": 1 - }, - "33": { - "n": 4, - "e": 3057, - "c": 67, - "s": 1 - }, - "34": { - "n": 2.5, - "e": 3066, - "c": 67 - }, - "38": { - "n": 4, - "e": 3109, - "c": 67, - "s": 1 - }, - "1": { - "n": 3.5 - } - } - }, - "c": 91 - }, - { - "i": 4874, - "n": "Linguet", - "f": "Allan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 4880, - "n": "Cabral", - "f": "Kevin", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 91 - }, - { - "i": 4890, - "n": "Arib", - "f": "Gaetan", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 4918, - "n": "Siby", - "f": "Maham\u00e9", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 91 - }, - { - "i": 4924, - "n": "Brassier", - "f": "Lilian", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 4969, - "n": "Foulon", - "f": "Gwenn", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 4985, - "n": "Ch\u00e9rif Quenum", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 4996, - "n": "Ambri", - "f": "Steve", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5020, - "n": "Kocik", - "f": "Nicolas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5048, - "n": "Dabo", - "f": "Elhadj", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5080, - "n": "Konate", - "f": "Hillel", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5084, - "n": "Spano", - "f": "Maxime", - "p": "D", - "r": 14, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 91 - }, - { - "i": 5111, - "n": "Dos Santos", - "f": "Laurent", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 91 - }, - { - "i": 5143, - "n": "Ntim", - "f": "Emmanuel", - "p": "D", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 91 - }, - { - "i": 5161, - "n": "Aloe", - "f": "Baptiste", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5172, - "n": "Bong", - "f": "Fr\u00e9d\u00e9ric", - "p": "D", - "r": 12, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 91 - }, - { - "i": 5183, - "n": "Chergui", - "f": "Malek", - "p": "A", - "r": 22, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 91 - }, - { - "i": 5190, - "n": "Fedele", - "f": "Matteo", - "p": "M", - "r": 10, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 91 - }, - { - "i": 5194, - "n": "Perquis", - "f": "Damien", - "p": "G", - "r": 13, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5202, - "n": "Chevalier", - "f": "Teddy", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 91 - }, - { - "i": 5348, - "n": "Ousame", - "f": "Abdoulaye", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 5373, - "n": "D'Almeida", - "f": "Sessi", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 91 - }, - { - "i": 246, - "n": "Dup\u00e9", - "f": "Maxime", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "54", - "On": "11", - "Oa": "4.91", - "Od": "0.92", - "Gp": "11", - "p": { - "33": { - "n": 5, - "e": 3055, - "c": 8 - }, - "34": { - "n": 4, - "e": 3067, - "c": 8 - }, - "35": { - "n": 6.5, - "e": 3077, - "c": 8 - }, - "36": { - "n": 6, - "e": 3088, - "c": 8 - }, - "37": { - "n": 5, - "e": 3097, - "c": 8 - } - } - }, - "c": 92 - }, - { - "i": 2176, - "n": "Mario Gonz\u00e1lez", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 3519, - "n": "Cissokho", - "f": "Till", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "32": { - "n": 4.5, - "e": 3050, - "c": 3 - } - } - }, - "c": 92 - }, - { - "i": 3521, - "n": "Trichard", - "f": "Driss", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 4832, - "n": "Anoff", - "f": "Blankson", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 4833, - "n": "Abdul Samed", - "f": "Salis", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 4856, - "n": "Diako", - "f": "Lassana", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 4861, - "n": "Teixeira", - "f": "Bryan Silva", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 4869, - "n": "Allevinah", - "f": "Jim", - "p": "A", - "r": 8, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Ap": "1", - "p": { - "1": { - "n": 6, - "s": 1 - } - } - }, - "c": 92 - }, - { - "i": 4904, - "n": "Djoco", - "f": "Ouparine", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 4905, - "n": "Magnin", - "f": "Yohann", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 92 - }, - { - "i": 4957, - "n": "Gomis", - "f": "David", - "p": "A", - "r": 8, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 92 - }, - { - "i": 4964, - "n": "Rajot", - "f": "Lorenzo", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 5018, - "n": "Pereira Lage", - "f": "", - "p": "M", - "r": 32, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 5041, - "n": "N'Simba", - "f": "Vital", - "p": "D", - "r": 17, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 92 - }, - { - "i": 5066, - "n": "Albert", - "f": "Josue", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 5085, - "n": "Zedadka", - "f": "Akim", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 92 - }, - { - "i": 5100, - "n": "Grbic", - "f": "Adrian", - "p": "A", - "r": 7, - "s": { - "g": "2", - "s": "8", - "n": "1", - "a": "8", - "Sg": "2", - "Ss": "8", - "Sn": "1", - "Sa": "8", - "Og": "2", - "Os": "8", - "On": "1", - "Oa": "8", - "Ap": "1", - "p": { - "1": { - "n": 8, - "g": 2 - } - } - }, - "c": 92 - }, - { - "i": 5103, - "n": "Hountondji", - "f": "C\u00e9dric", - "p": "D", - "r": 2, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 92 - }, - { - "i": 5122, - "n": "Iglesias", - "f": "Jonathan", - "p": "M", - "r": 24, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Mp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 92 - }, - { - "i": 5129, - "n": "Berthomier", - "f": "Jason", - "p": "M", - "r": 21, - "s": { - "s": "7", - "n": "1", - "a": "7.5", - "Ss": "7", - "Sn": "1", - "Sa": "7.5", - "Os": "7", - "On": "1", - "Oa": "7.5", - "Mp": "1", - "p": { - "1": { - "n": 7.5 - } - } - }, - "c": 92 - }, - { - "i": 5140, - "n": "Phojo", - "f": "Jerome", - "p": "D", - "r": 20, - "s": { - "s": "7", - "n": "1", - "a": "7", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Os": "7", - "On": "1", - "Oa": "7", - "Dp": "1", - "p": { - "1": { - "n": 7 - } - } - }, - "c": 92 - }, - { - "i": 5154, - "n": "N'Diaye", - "f": "Alassane", - "p": "A", - "r": 17, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Mp": "1", - "p": { - "1": { - "n": 7, - "g": 1 - } - } - }, - "c": 92 - }, - { - "i": 5168, - "n": "Jeannin", - "f": "Mehdi", - "p": "G", - "r": 11, - "s": { - "s": "7", - "n": "1", - "a": "7", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Os": "7", - "On": "1", - "Oa": "7", - "Gp": "1", - "p": { - "1": { - "n": 7 - } - } - }, - "c": 92 - }, - { - "i": 5180, - "n": "Ogier", - "f": "Florent", - "p": "D", - "r": 24, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 92 - }, - { - "i": 5198, - "n": "Gastien", - "f": "Johan", - "p": "M", - "r": 16, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 92 - }, - { - "i": 462, - "n": "Alhadhur", - "f": "Chaker", - "p": "D", - "r": 14, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 93 - }, - { - "i": 538, - "n": "Vanbaleghem", - "f": "Valentin", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 1432, - "n": "Cordoval", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 93 - }, - { - "i": 2631, - "n": "Marega", - "f": "Issa", - "p": "D", - "r": 1, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 93 - }, - { - "i": 3518, - "n": "Ghezali", - "f": "Lamine", - "p": "A", - "r": 5, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "24", - "On": "6", - "Oa": "4.08", - "Od": "0.34", - "Ap": "6", - "p": { - "34": { - "n": 4.5, - "e": 3071, - "c": 4, - "s": 1 - }, - "36": { - "n": 4, - "e": 3091, - "c": 4, - "s": 1 - }, - "37": { - "n": 4.5, - "e": 3099, - "c": 4, - "s": 1 - }, - "38": { - "n": 4, - "e": 3103, - "c": 4, - "s": 1 - }, - "1": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 93 - }, - { - "i": 4849, - "n": "Keny", - "f": "Philippe Paulin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4863, - "n": "Adinany", - "f": "Bryan", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4864, - "n": "Leroy", - "f": "Leo", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4881, - "n": "Bedfian", - "f": "Wilfried", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4886, - "n": "Soumare", - "f": "Moussa", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4908, - "n": "Hassan", - "f": "Haissem", - "p": "A", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 93 - }, - { - "i": 4922, - "n": "Tormin", - "f": "Guevin", - "p": "A", - "r": 3, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 93 - }, - { - "i": 4972, - "n": "Chevreuil", - "f": "Brian", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4987, - "n": "Jung", - "f": "Andrew", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 4990, - "n": "Operi", - "f": "Christopher", - "p": "M", - "r": 14, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 5001, - "n": "Sissako", - "f": "Abdoulaye", - "p": "M", - "r": 16, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 5024, - "n": "Sangante", - "f": "Opa", - "p": "M", - "r": 19, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 93 - }, - { - "i": 5045, - "n": "Conde", - "f": "Sekou", - "p": "D", - "r": 14, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 93 - }, - { - "i": 5049, - "n": "Fallou Niang", - "f": "", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 5051, - "n": "Sarr", - "f": "Sidy", - "p": "M", - "r": 10, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 93 - }, - { - "i": 5064, - "n": "Fofana", - "f": "Nama", - "p": "D", - "r": 16, - "s": { - "n": 0 - }, - "c": 93 - }, - { - "i": 5164, - "n": "M'Bone", - "f": "Yannick", - "p": "M", - "r": 17, - "s": { - "s": "3", - "n": "1", - "a": "3", - "Ss": "3", - "Sn": "1", - "Sa": "3", - "Os": "3", - "On": "1", - "Oa": "3", - "Dp": "1", - "p": { - "1": { - "n": 3 - } - } - }, - "c": 93 - }, - { - "i": 5169, - "n": "Diarra", - "f": "Cheick", - "p": "A", - "r": 12, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 93 - }, - { - "i": 5185, - "n": "Pillot", - "f": "R\u00e9mi", - "p": "G", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 93 - }, - { - "i": 5212, - "n": "Raineau", - "f": "Alexandre", - "p": "D", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 93 - }, - { - "i": 5215, - "n": "Boukari", - "f": "Abdoulrazak", - "p": "M", - "r": 15, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 93 - }, - { - "i": 433, - "n": "Raspentino", - "f": "Florian", - "p": "A", - "r": 26, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 94 - }, - { - "i": 547, - "n": "Belmonte", - "f": "Anthony", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 1253, - "n": "Benet", - "f": "Jessy", - "p": "M", - "r": 15, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 1399, - "n": "Tinhan", - "f": "Jonathan", - "p": "M", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 94 - }, - { - "i": 4840, - "n": "Gyebohao", - "f": "Christian", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 4841, - "n": "Goteni", - "f": "Chris-Vianney", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 4853, - "n": "Loba", - "f": "Nathiau", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 4857, - "n": "Jurine", - "f": "Nicolas", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 4868, - "n": "Brun", - "f": "Yohan", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 4915, - "n": "Djitt\u00e9", - "f": "Moussa", - "p": "A", - "r": 9, - "s": { - "g": "2", - "s": "7", - "n": "1", - "a": "7.5", - "Sg": "2", - "Ss": "7", - "Sn": "1", - "Sa": "7.5", - "Og": "2", - "Os": "7", - "On": "1", - "Oa": "7.5", - "Ap": "1", - "p": { - "1": { - "n": 7.5, - "g": 2, - "s": 1 - } - } - }, - "c": 94 - }, - { - "i": 4925, - "n": "Kristinsson", - "f": "Krist\u00f3fer", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 4932, - "n": "Coulibaly", - "f": "Ibrahima", - "p": "M", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Mp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 94 - }, - { - "i": 4933, - "n": "Elogo", - "f": "Arsene", - "p": "M", - "r": 18, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 94 - }, - { - "i": 4950, - "n": "Semedo", - "f": "Willy", - "p": "A", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 94 - }, - { - "i": 4979, - "n": "Abdallah", - "f": "Abdel Hakim", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5059, - "n": "Abou Demba", - "f": "Harouna", - "p": "D", - "r": 14, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5072, - "n": "Pickel", - "f": "Charles", - "p": "M", - "r": 5, - "s": { - "g": "1", - "s": "6", - "n": "1", - "a": "6", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "1", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6, - "g": 1 - } - } - }, - "c": 94 - }, - { - "i": 5088, - "n": "Salles", - "f": "Esteban", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5092, - "n": "Pambou", - "f": "Yves", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5107, - "n": "Ondaan", - "f": "Terell", - "p": "A", - "r": 7, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Ap": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 94 - }, - { - "i": 5126, - "n": "Mombris", - "f": "Jerome", - "p": "D", - "r": 19, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 94 - }, - { - "i": 5130, - "n": "Monfray", - "f": "Adrien", - "p": "D", - "r": 13, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 94 - }, - { - "i": 5141, - "n": "Vandenabeele", - "f": "Eric", - "p": "D", - "r": 17, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5145, - "n": "M'Changama", - "f": "Youssouf", - "p": "M", - "r": 30, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 94 - }, - { - "i": 5166, - "n": "Camara", - "f": "Papa Demba", - "p": "G", - "r": 12, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5182, - "n": "Gibaud", - "f": "Pierre", - "p": "D", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 94 - }, - { - "i": 5201, - "n": "Nestor", - "f": "Loic", - "p": "D", - "r": 11, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 94 - }, - { - "i": 5207, - "n": "Maubleu", - "f": "Brice", - "p": "G", - "r": 15, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 94 - }, - { - "i": 5210, - "n": "El Jadeyaoui", - "f": "Alharbi", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 5375, - "n": "Boyer", - "f": "Fabien", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 94 - }, - { - "i": 478, - "n": "Thill", - "f": "Vincent", - "p": "M", - "r": 2, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 97 - }, - { - "i": 511, - "n": "Perrin", - "f": "Gaetan", - "p": "M", - "r": 15, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 97 - }, - { - "i": 546, - "n": "Saint-Ruf", - "f": "Nicolas", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4858, - "n": "Le Pennec", - "f": "Ludovic", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4902, - "n": "Hari", - "f": "Esteban", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4903, - "n": "Mbelek Nouga", - "f": "Paul", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4906, - "n": "Sevestre", - "f": "Alexis", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4917, - "n": "El Khoumisti", - "f": "Fahd", - "p": "A", - "r": 7, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4929, - "n": "Keita", - "f": "Tidiane", - "p": "M", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 97 - }, - { - "i": 4930, - "n": "Marchadier", - "f": "Alex", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4931, - "n": "Scheidler", - "f": "Aurelien", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4938, - "n": "Fresneau", - "f": "Redha", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4941, - "n": "Luzayadio", - "f": "Arnaud", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4953, - "n": "Talal", - "f": "Amine", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 4974, - "n": "Ephestion", - "f": "Thomas", - "p": "M", - "r": 16, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 97 - }, - { - "i": 4982, - "n": "Benkaid", - "f": "Hicham", - "p": "A", - "r": 17, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 97 - }, - { - "i": 5043, - "n": "D'Arpino", - "f": "Maxime", - "p": "M", - "r": 18, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 97 - }, - { - "i": 5046, - "n": "Bamba", - "f": "Issiaka", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 5047, - "n": "Demoncy", - "f": "Yohan", - "p": "M", - "r": 14, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 97 - }, - { - "i": 5089, - "n": "Thiam", - "f": "Abdoulkader", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 5091, - "n": "Mutombo Kupa", - "f": "Gabriel", - "p": "D", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 97 - }, - { - "i": 5127, - "n": "Correa", - "f": "Joris", - "p": "A", - "r": 13, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 5135, - "n": "Lambese", - "f": "St\u00e9phane", - "p": "D", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 97 - }, - { - "i": 5142, - "n": "Vachoux", - "f": "J\u00e9r\u00e9my", - "p": "G", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Gp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 97 - }, - { - "i": 5153, - "n": "Renault", - "f": "Thomas", - "p": "G", - "r": 11, - "s": { - "n": 0 - }, - "c": 97 - }, - { - "i": 5160, - "n": "Lopy", - "f": "Joseph", - "p": "M", - "r": 23, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 97 - }, - { - "i": 5196, - "n": "Cambon", - "f": "C\u00e9dric", - "p": "D", - "r": 14, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 97 - }, - { - "i": 5199, - "n": "Pinaud", - "f": "Gauthier", - "p": "D", - "r": 14, - "s": { - "s": "6", - "n": "1", - "a": "6.5", - "Ss": "6", - "Sn": "1", - "Sa": "6.5", - "Os": "6", - "On": "1", - "Oa": "6.5", - "Dp": "1", - "p": { - "1": { - "n": 6.5 - } - } - }, - "c": 97 - }, - { - "i": 5221, - "n": "Le Tallec", - "f": "Anthony", - "p": "A", - "r": 22, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 97 - }, - { - "i": 446, - "n": "Passi", - "f": "Bryan", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 459, - "n": "Vion", - "f": "Thibaut", - "p": "A", - "r": 10, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 582, - "n": "Braat", - "f": "Quentin", - "p": "G", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Gp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 2718, - "n": "Kemen", - "f": "Olivier", - "p": "M", - "r": 12, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 4862, - "n": "Kone", - "f": "Zoumana", - "p": "A", - "r": 1, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 98 - }, - { - "i": 4894, - "n": "Maddaloni", - "f": "Florent", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4895, - "n": "Kilama Kilama", - "f": "Guy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4911, - "n": "Sissoko", - "f": "Ibrahim", - "p": "A", - "r": 14, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4919, - "n": "Pauchet", - "f": "Enzo", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4920, - "n": "Lapis", - "f": "Florian", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4921, - "n": "Fontani", - "f": "Dylan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4955, - "n": "Bourhane", - "f": "Yacine", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4956, - "n": "Koyalipou", - "f": "Goduine", - "p": "A", - "r": 8, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 4966, - "n": "Ameka Autchanga", - "f": "Louis", - "p": "A", - "r": 8, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 98 - }, - { - "i": 4978, - "n": "Leautey", - "f": "Antoine", - "p": "A", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 98 - }, - { - "i": 4991, - "n": "Bena", - "f": "Quentin", - "p": "M", - "r": 6, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 4994, - "n": "Paro", - "f": "Issouf", - "p": "D", - "r": 11, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 5014, - "n": "Grich", - "f": "Zakaria", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 5022, - "n": "Da Costa", - "f": "Julien", - "p": "D", - "r": 12, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 98 - }, - { - "i": 5034, - "n": "Konate", - "f": "Brahim", - "p": "M", - "r": 10, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 98 - }, - { - "i": 5069, - "n": "Allagbe", - "f": "Saturnin", - "p": "G", - "r": 16, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 5073, - "n": "Louiserre", - "f": "Dylan", - "p": "M", - "r": 19, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 5079, - "n": "Jacob", - "f": "Valentin", - "p": "M", - "r": 23, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 98 - }, - { - "i": 5081, - "n": "Djigla", - "f": "David", - "p": "A", - "r": 9, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 5082, - "n": "Pedro Henrique", - "f": "", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 5187, - "n": "Sans", - "f": "Matthieu", - "p": "D", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 98 - }, - { - "i": 5363, - "n": "Baroan", - "f": "Antoine", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 98 - }, - { - "i": 469, - "n": "Sane", - "f": "Pape", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 100 - }, - { - "i": 1241, - "n": "Maury", - "f": "Erwan", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 4842, - "n": "Secchi", - "f": "Thomas", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 4843, - "n": "Coelho", - "f": "Gr\u00e9gory", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 4844, - "n": "Garcia", - "f": "Hugo", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 4845, - "n": "Guerbert", - "f": "Mathieu", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 100 - }, - { - "i": 4846, - "n": "Peyrelade", - "f": "Alexis", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 4847, - "n": "Bonnet", - "f": "Ugo", - "p": "A", - "r": 14, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Ap": "1", - "p": { - "1": { - "n": 7, - "g": 1 - } - } - }, - "c": 100 - }, - { - "i": 4850, - "n": "Ouammou", - "f": "Nassim", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 4928, - "n": "Ouhafsa", - "f": "Ayoub", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 100 - }, - { - "i": 4934, - "n": "Dieng", - "f": "Nathaniel", - "p": "D", - "r": 7, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 100 - }, - { - "i": 4954, - "n": "Roche", - "f": "Yohan", - "p": "D", - "r": 12, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 100 - }, - { - "i": 4970, - "n": "Mathis", - "f": "Boris", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 5016, - "n": "Henry", - "f": "Valentin", - "p": "M", - "r": 7, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7", - "Dp": "1", - "p": { - "1": { - "n": 7, - "g": 1 - } - } - }, - "c": 100 - }, - { - "i": 5021, - "n": "Caddy", - "f": "Dorian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 5027, - "n": "Maanane", - "f": "Eddy", - "p": "A", - "r": 1, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4, - "s": 1 - } - } - }, - "c": 100 - }, - { - "i": 5035, - "n": "Desmas", - "f": "Arthur", - "p": "G", - "r": 13, - "s": { - "s": "7", - "n": "1", - "a": "7", - "Ss": "7", - "Sn": "1", - "Sa": "7", - "Os": "7", - "On": "1", - "Oa": "7", - "Gp": "1", - "p": { - "1": { - "n": 7 - } - } - }, - "c": 100 - }, - { - "i": 5055, - "n": "Jacob", - "f": "Corentin", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 5075, - "n": "M'Pasi N'Zau", - "f": "Lionel", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 5094, - "n": "Ruffaut", - "f": "Pierre", - "p": "M", - "r": 14, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 100 - }, - { - "i": 5096, - "n": "Chougrani", - "f": "Joris", - "p": "D", - "r": 7, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Dp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 100 - }, - { - "i": 5097, - "n": "Bardy", - "f": "Pierre", - "p": "D", - "r": 9, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 100 - }, - { - "i": 5098, - "n": "Dady Ngoye", - "f": "Francis", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 5124, - "n": "Douline", - "f": "David", - "p": "D", - "r": 1, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "1": { - "n": 6 - } - } - }, - "c": 100 - }, - { - "i": 5149, - "n": "Tertereau", - "f": "Aur\u00e9lien", - "p": "M", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 100 - }, - { - "i": 5189, - "n": "Poujol", - "f": "Lo\u00efc", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 5200, - "n": "Sanaia", - "f": "Amiran", - "p": "D", - "r": 13, - "s": { - "n": 0 - }, - "c": 100 - }, - { - "i": 107, - "n": "Michel", - "f": "Mathieu", - "p": "G", - "r": 15, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Gp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 101 - }, - { - "i": 306, - "n": "Bellugou", - "f": "Francois", - "p": "M", - "r": 15, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 101 - }, - { - "i": 372, - "n": "Adeoti", - "f": "Jordan", - "p": "D", - "r": 18, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 519, - "n": "Arcus", - "f": "Carlens", - "p": "D", - "r": 14, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 101 - }, - { - "i": 2869, - "n": "Boucher", - "f": "Zacharie", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Gp": "2", - "p": { - "35": { - "n": 6, - "e": 3072, - "c": 16 - } - } - }, - "c": 101 - }, - { - "i": 4859, - "n": "Chergui", - "f": "Samir Sophian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 4923, - "n": "Begraoui", - "f": "Yanis", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 4937, - "n": "Marcelin", - "f": "Jean", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 4949, - "n": "Laiton", - "f": "Sonny", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 4977, - "n": "Merdji", - "f": "Yanis", - "p": "A", - "r": 7, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Ap": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 101 - }, - { - "i": 5031, - "n": "Fomba", - "f": "Lamine", - "p": "M", - "r": 18, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 101 - }, - { - "i": 5063, - "n": "Youssouf", - "f": "Bendjaloud", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5070, - "n": "Boto", - "f": "Kenji-Van", - "p": "D", - "r": 18, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5087, - "n": "Fumu Tamuzo", - "f": "Fran\u00e7ois-Xavier", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5102, - "n": "Ba", - "f": "Abdoul", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5109, - "n": "Sakhi", - "f": "Hamza", - "p": "M", - "r": 14, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 101 - }, - { - "i": 5121, - "n": "Ji Xiaoxuan", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5137, - "n": "Tour\u00e9", - "f": "Birama", - "p": "M", - "r": 14, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 101 - }, - { - "i": 5151, - "n": "Yattara", - "f": "Mohamed", - "p": "A", - "r": 17, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 101 - }, - { - "i": 5155, - "n": "Bernard", - "f": "Quentin", - "p": "D", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 101 - }, - { - "i": 5171, - "n": "Dugimont", - "f": "R\u00e9my", - "p": "A", - "r": 17, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Ss": "3", - "Sn": "1", - "Sa": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 101 - }, - { - "i": 5174, - "n": "Barreto", - "f": "Mickael", - "p": "M", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 101 - }, - { - "i": 5192, - "n": "Souprayen", - "f": "Samuel", - "p": "D", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 101 - }, - { - "i": 5352, - "n": "Raux Yao", - "f": "Serge", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5369, - "n": "Camara", - "f": "Ousoumane", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5378, - "n": "Coeff", - "f": "Alexandre", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 5379, - "n": "Sorgic", - "f": "Dejan", - "p": "A", - "r": 15, - "s": { - "n": 0 - }, - "c": 101 - }, - { - "i": 371, - "n": "Tour\u00e9", - "f": "Thomas", - "p": "A", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 102 - }, - { - "i": 385, - "n": "Paye", - "f": "Pape", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 521, - "n": "Kaabouni", - "f": "Younes", - "p": "M", - "r": 3, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 102 - }, - { - "i": 565, - "n": "Livolant", - "f": "Jeremy", - "p": "M", - "r": 17, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 102 - }, - { - "i": 4870, - "n": "Sans", - "f": "Romain", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 4892, - "n": "Umbdenstock", - "f": "Isaak", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 4893, - "n": "Moltenis", - "f": "Boris Sebastian", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 4912, - "n": "Ourega", - "f": "Fabien", - "p": "A", - "r": 12, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 102 - }, - { - "i": 4914, - "n": "M'Bakata", - "f": "Salem", - "p": "D", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 102 - }, - { - "i": 4916, - "n": "Glaentzlin", - "f": "Victor", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 4947, - "n": "Lacroix", - "f": "Maxence", - "p": "D", - "r": 3, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 102 - }, - { - "i": 4986, - "n": "Lasme", - "f": "Bryan", - "p": "A", - "r": 8, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 4988, - "n": "Pendant", - "f": "Jason", - "p": "D", - "r": 11, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 102 - }, - { - "i": 5005, - "n": "Weissbeck", - "f": "Gaetan", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 102 - }, - { - "i": 5007, - "n": "Senhadji", - "f": "Rayan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5028, - "n": "Prevot", - "f": "Maxence", - "p": "G", - "r": 15, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 102 - }, - { - "i": 5029, - "n": "Aubin Long", - "f": "", - "p": "G", - "r": 2, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 102 - }, - { - "i": 5038, - "n": "Francois", - "f": "Martin", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5053, - "n": "Daham", - "f": "Sofiane", - "p": "M", - "r": 16, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5, - "s": 1 - } - } - }, - "c": 102 - }, - { - "i": 5067, - "n": "Ati", - "f": "Lawrence", - "p": "G", - "r": 9, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5076, - "n": "Senzemba", - "f": "Nicolas", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5105, - "n": "Di\u00e9dhiou", - "f": "Christophe", - "p": "D", - "r": 8, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 102 - }, - { - "i": 5159, - "n": "Sane", - "f": "Abdoulaye", - "p": "A", - "r": 13, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 102 - }, - { - "i": 5195, - "n": "Tope Obadeyi", - "f": "", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5347, - "n": "Sitti", - "f": "Melvin", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5372, - "n": "Thioune", - "f": "Ousseynou", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 5380, - "n": "Sissoko", - "f": "Mohamed", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 102 - }, - { - "i": 399, - "n": "L\u00e9v\u00eaque", - "f": "Dorian", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 554, - "n": "Maziz", - "f": "Youssef", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 1412, - "n": "Manzala", - "f": "Harrison", - "p": "A", - "r": 6, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "0.25", - "Mp": "1", - "Ap": "7", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 103 - }, - { - "i": 1443, - "n": "Confais", - "f": "Alois", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 1456, - "n": "Gope-Fenepej", - "f": "Georges", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 4852, - "n": "Duponchelle", - "f": "Tom", - "p": "D", - "r": 9, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 103 - }, - { - "i": 4907, - "n": "Patron", - "f": "Pierre", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 4960, - "n": "Moussiti-Oko", - "f": "Bevic", - "p": "A", - "r": 7, - "s": { - "g": "1", - "s": "6", - "n": "1", - "a": "6", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "1", - "Os": "6", - "On": "1", - "Oa": "6", - "Ap": "1", - "p": { - "1": { - "n": 6, - "g": 1 - } - } - }, - "c": 103 - }, - { - "i": 4971, - "n": "Diagne", - "f": "Ousseynou Cavin", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 5017, - "n": "Diarra", - "f": "St\u00e9phane", - "p": "A", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 103 - }, - { - "i": 5052, - "n": "Dasquet", - "f": "Thomas", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 5054, - "n": "Ebosse", - "f": "Enzo", - "p": "D", - "r": 2, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 103 - }, - { - "i": 5078, - "n": "Lemonnier", - "f": "Pierre", - "p": "D", - "r": 15, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 103 - }, - { - "i": 5095, - "n": "Boissier", - "f": "Remy", - "p": "M", - "r": 12, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Mp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 103 - }, - { - "i": 5115, - "n": "Bo\u00e9-Kane", - "f": "Yann", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 103 - }, - { - "i": 5139, - "n": "Hafidi", - "f": "Hamza", - "p": "M", - "r": 5, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 103 - }, - { - "i": 5144, - "n": "Vardin", - "f": "Alexandre", - "p": "D", - "r": 10, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 103 - }, - { - "i": 5177, - "n": "Julienne", - "f": "Frank", - "p": "A", - "r": 10, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 103 - }, - { - "i": 5184, - "n": "Cr\u00e9hin", - "f": "Vincent Kevin", - "p": "A", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Ap": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 103 - }, - { - "i": 5193, - "n": "Yohann Thuram", - "f": "", - "p": "G", - "r": 18, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 103 - }, - { - "i": 5208, - "n": "Vincent", - "f": "St\u00e9phen", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Ss": "4", - "Sn": "1", - "Sa": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 103 - }, - { - "i": 5213, - "n": "Aymes", - "f": "J\u00e9r\u00e9my", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 5345, - "n": "Rambaud", - "f": "Thibault", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 103 - }, - { - "i": 81, - "n": "Cahuzac", - "f": "Yannick", - "p": "M", - "r": 12, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Og": "1", - "Os": "119", - "On": "24", - "Oa": "4.96", - "Od": "0.92", - "Mp": "19", - "Dp": "4", - "Ap": "1", - "p": { - "31": { - "n": 5, - "e": 3041, - "c": 10, - "s": 1 - }, - "32": { - "n": 5, - "e": 3047, - "c": 10 - }, - "34": { - "n": 3.5, - "e": 3071, - "c": 10 - }, - "36": { - "n": 5, - "e": 3082, - "c": 10, - "s": 1 - }, - "37": { - "n": 4.5, - "e": 3101, - "c": 10, - "s": 1 - }, - "1": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 104 - }, - { - "i": 92, - "n": "Leca", - "f": "Jean-Louis", - "p": "G", - "r": 22, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 175, - "n": "Gillet", - "f": "Guillaume", - "p": "M", - "r": 18, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 104 - }, - { - "i": 237, - "n": "Mesloub", - "f": "Walid", - "p": "M", - "r": 23, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 373, - "n": "Tahrat", - "f": "Mehdi", - "p": "D", - "r": 18, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 481, - "n": "Michelin", - "f": "Clement", - "p": "D", - "r": 6, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 104 - }, - { - "i": 488, - "n": "Vincensini", - "f": "Thomas", - "p": "G", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "5", - "On": "1", - "Oa": "5.5", - "Gp": "1", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 104 - }, - { - "i": 1208, - "n": "Steven Fortes", - "f": "", - "p": "D", - "r": 11, - "s": { - "s": "5", - "n": "1", - "a": "5.5", - "Ss": "5", - "Sn": "1", - "Sa": "5.5", - "Os": "21", - "On": "4", - "Oa": "5.25", - "Od": "0.25", - "Dp": "4", - "p": { - "1": { - "n": 5.5 - } - } - }, - "c": 104 - }, - { - "i": 1518, - "n": "Massadio Haidara", - "f": "", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4865, - "n": "Ducrocq", - "f": "Tom", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4898, - "n": "Simon", - "f": "Nsana", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4926, - "n": "Gomel", - "f": "Benjamin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4943, - "n": "Bari", - "f": "Bilal", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4944, - "n": "Doucoure", - "f": "Cheick Oumar", - "p": "M", - "r": 20, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4965, - "n": "Robail", - "f": "Ga\u00ebtan", - "p": "M", - "r": 25, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 104 - }, - { - "i": 4983, - "n": "Teka", - "f": "Seif", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 4997, - "n": "Beghin", - "f": "Guillaume", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5000, - "n": "Wojtkowiak", - "f": "Valentin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5002, - "n": "Duverne", - "f": "Jean-Kevin", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5003, - "n": "Radovanovic", - "f": "Aleksandar", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5010, - "n": "Gomis", - "f": "Yannick", - "p": "A", - "r": 30, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 104 - }, - { - "i": 5013, - "n": "Desprez", - "f": "Didier", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5019, - "n": "Mendy", - "f": "Arial", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5030, - "n": "Banza", - "f": "Simon", - "p": "A", - "r": 8, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Ap": "1", - "p": { - "1": { - "n": 6, - "s": 1 - } - } - }, - "c": 104 - }, - { - "i": 5040, - "n": "Vitor Costa", - "f": "", - "p": "D", - "r": 6, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Ss": "4", - "Sn": "1", - "Sa": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1", - "p": { - "1": { - "n": 4.5 - } - } - }, - "c": 104 - }, - { - "i": 5050, - "n": "Souleymane Diarra", - "f": "", - "p": "M", - "r": 17, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5057, - "n": "Chouiar", - "f": "Mounir", - "p": "A", - "r": 16, - "s": { - "g": "1", - "s": "6", - "n": "1", - "a": "6", - "Sg": "1", - "Ss": "6", - "Sn": "1", - "Sa": "6", - "Og": "1", - "Os": "6", - "On": "1", - "Oa": "6", - "Ap": "1", - "p": { - "1": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 104 - }, - { - "i": 5061, - "n": "Sotoca", - "f": "Florian", - "p": "A", - "r": 26, - "s": { - "g": "1", - "s": "7", - "n": "1", - "a": "7.5", - "Sg": "1", - "Ss": "7", - "Sn": "1", - "Sa": "7.5", - "Og": "1", - "Os": "7", - "On": "1", - "Oa": "7.5", - "Mp": "1", - "p": { - "1": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 104 - }, - { - "i": 5074, - "n": "Mauricio", - "f": "Tony", - "p": "M", - "r": 30, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 104 - }, - { - "i": 5083, - "n": "Madri", - "f": "Mouaad", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5147, - "n": "Ba", - "f": "El-Hadji", - "p": "M", - "r": 15, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5176, - "n": "Perez", - "f": "Manuel", - "p": "M", - "r": 13, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Ss": "5", - "Sn": "1", - "Sa": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "1": { - "n": 5 - } - } - }, - "c": 104 - }, - { - "i": 5228, - "n": "Sylla", - "f": "Moussa", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5346, - "n": "Sene", - "f": "Cheikh Cory", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5360, - "n": "Boli", - "f": "Charles", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - }, - { - "i": 5366, - "n": "Valencia", - "f": "Jader", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 104 - } - ], - "c": { - "5": { - "n": "Caen", - "rn": "SM Caen", - "cn": "SM-Caen", - "a": "CAE", - "l": 4, - "el": 975, - "s": { - "p": 1 - }, - "nM": 5057, - "nMWC": "0.4413", - "pM": { - "31": 3038, - "32": 3042, - "33": 3056, - "34": 3065, - "35": 3073, - "37": 3095, - "38": 3104, - "36": 3084, - "1": 5065 - }, - "DMI": [ - ] - }, - "6": { - "n": "Lorient", - "rn": "FC Lorient", - "cn": "FC-Lorient", - "a": "LOR", - "l": 4, - "el": 1016, - "s": { - "p": 3 - }, - "nM": 5057, - "nMWC": "0.5587", - "pM": { - "1": 5067 - }, - "DMI": [ - ] - }, - "14": { - "n": "Guingamp", - "rn": "EA Guingamp", - "cn": "EA-Guingamp", - "a": "GIN", - "l": 4, - "el": 931, - "s": { - "p": 1 - }, - "nM": 5056, - "nMWC": "0.3679", - "pM": { - "35": 3073, - "32": 3051, - "1": 5061, - "31": 3035, - "33": 3053, - "34": 3069, - "36": 3090, - "37": 3093, - "38": 3102 - }, - "DMI": [ - ] - }, - "17": { - "n": "Nancy", - "rn": "AS Nancy Lorraine", - "cn": "AS-Nancy-Lorraine", - "a": "NAN", - "l": 4, - "el": 948, - "s": { - "p": 1 - }, - "nM": 5055, - "nMWC": "0.4612", - "pM": { - "1": 5062 - }, - "DMI": [ - ] - }, - "43": { - "n": "Troyes", - "rn": "ESTAC Troyes", - "cn": "ESTAC-Troyes", - "a": "TRO", - "l": 4, - "el": 905, - "s": { - "p": 3 - }, - "nM": 5054, - "nMWC": "0.3339", - "pM": { - "1": 5063 - }, - "DMI": [ - ] - }, - "88": { - "n": "Ajaccio", - "rn": "AC Ajaccio", - "cn": "AC-Ajaccio", - "a": "ACA", - "l": 4, - "el": 1000, - "s": { - "p": 1 - }, - "nM": 5050, - "nMWC": "0.5072", - "pM": { - "1": 5058 - }, - "DMI": [ - ] - }, - "89": { - "n": "Le Havre", - "rn": "Le Havre AC", - "cn": "Le-Havre-AC", - "a": "HAC", - "l": 4, - "el": 1000, - "s": { - "p": 1 - }, - "nM": 5051, - "nMWC": "0.5516", - "pM": { - "1": 5058 - }, - "DMI": [ - ] - }, - "90": { - "n": "Chambly", - "rn": "FC Chambly Oise", - "cn": "FC-Chambly-Oise", - "a": "FCCO", - "l": 4, - "el": 1025, - "s": { - "p": 3 - }, - "nM": 5052, - "nMWC": "0.5416", - "pM": { - "1": 5059 - }, - "DMI": [ - ] - }, - "91": { - "n": "Valenciennes", - "rn": "Valentiennes FC", - "cn": "Valentiennes-FC", - "a": "VFC", - "l": 4, - "el": 975, - "s": { - "p": 0 - }, - "nM": 5055, - "nMWC": "0.5388", - "pM": { - "1": 5059 - }, - "DMI": [ - ] - }, - "92": { - "n": "Clermont", - "rn": "Clermont Foot 63", - "cn": "Clermont-Foot-63", - "a": "CF63", - "l": 4, - "el": 1025, - "s": { - "p": 3 - }, - "nM": 5054, - "nMWC": "0.6661", - "pM": { - "1": 5060 - }, - "DMI": [ - ] - }, - "93": { - "n": "Ch\u00e2teauroux", - "rn": "Berrichonne de Ch\u00e2teauroux", - "cn": "Berrichonne-de-Chateauroux", - "a": "BCH", - "l": 4, - "el": 975, - "s": { - "p": 0 - }, - "nM": 5049, - "nMWC": "0.4285", - "pM": { - "1": 5060 - }, - "DMI": [ - ] - }, - "94": { - "n": "Grenoble", - "rn": "Grenoble Foot 38", - "cn": "Grenoble-Foot-38", - "a": "GF38", - "l": 4, - "el": 995, - "s": { - "p": 1 - }, - "nM": 5050, - "nMWC": "0.4928", - "pM": { - "1": 5061 - }, - "DMI": [ - ] - }, - "97": { - "n": "Orl\u00e9ans", - "rn": "US Orl\u00e9ans Loiret", - "cn": "US-Orleans-Loiret", - "a": "USOL", - "l": 4, - "el": 996, - "s": { - "p": 1 - }, - "nM": 5052, - "nMWC": "0.4584", - "pM": { - "1": 5062 - }, - "DMI": [ - ] - }, - "98": { - "n": "Niort", - "rn": "Chamois Niortais FC", - "cn": "Chamois-Niortais-FC", - "a": "CNFC", - "l": 4, - "el": 964, - "s": { - "p": 0 - }, - "nM": 5051, - "nMWC": "0.4484", - "pM": { - "1": 5063 - }, - "DMI": [ - ] - }, - "100": { - "n": "Rodez", - "rn": "Rodez Aveyron Football", - "cn": "Rodez-Aveyron-Football", - "a": "RAF", - "l": 4, - "el": 1025, - "s": { - "p": 3 - }, - "nM": 5049, - "nMWC": "0.5715", - "pM": { - "1": 5064 - }, - "DMI": [ - ] - }, - "101": { - "n": "Auxerre", - "rn": "AJ Auxerre", - "cn": "AJ-Auxerre", - "a": "AJA", - "l": 4, - "el": 975, - "s": { - "p": 0 - }, - "nM": 5048, - "nMWC": "0.5000", - "pM": { - "1": 5064 - }, - "DMI": [ - ] - }, - "102": { - "n": "Sochaux", - "rn": "FC Sochaux-Montb\u00e9liard", - "cn": "FC-Sochaux-Montbeliard", - "a": "FCSM", - "l": 4, - "el": 997, - "s": { - "p": 1 - }, - "nM": 5053, - "nMWC": "0.2209", - "pM": { - "1": 5065 - }, - "DMI": [ - ] - }, - "103": { - "n": "Le Mans", - "rn": "Le Mans FC", - "cn": "Le-Mans-FC", - "a": "LMFC", - "l": 4, - "el": 975, - "s": { - "p": 0 - }, - "nM": 5048, - "nMWC": "0.5000", - "pM": { - "1": 5066 - }, - "DMI": [ - ] - }, - "104": { - "n": "Lens", - "rn": "Racing Club de Lens", - "cn": "Racing-Club-de-Lens", - "a": "RCL", - "l": 4, - "el": 1025, - "s": { - "p": 3 - }, - "nM": 5056, - "nMWC": "0.6321", - "pM": { - "1": 5066 - }, - "DMI": [ - ] - } - }, - "op": { - "2": { - "n": "Paris", - "l": 1, - "el": 1216, - "s": { - "p": 0 - } - }, - "67": { - "n": "N\u00eemes", - "l": 1, - "el": 1061 - }, - "16": { - "n": "Angers", - "l": 1, - "el": 1064 - }, - "19": { - "n": "Nice", - "l": 1, - "el": 1097 - }, - "7": { - "n": "Dijon", - "l": 1, - "el": 1028 - }, - "18": { - "n": "Lyon", - "l": 1, - "el": 1215 - }, - "3": { - "n": "Bordeaux", - "l": 1, - "el": 975 - }, - "68": { - "n": "Reims", - "l": 1, - "el": 1086 - }, - "41": { - "n": "Strasbourg", - "l": 1, - "el": 1053 - }, - "15": { - "n": "Montpellier", - "l": 1, - "el": 1142 - }, - "42": { - "n": "Amiens", - "l": 1, - "el": 1029 - }, - "9": { - "n": "Marseille", - "l": 1, - "el": 1147 - }, - "20": { - "n": "Rennes", - "l": 1, - "el": 1095 - }, - "8": { - "n": "Nantes", - "l": 1, - "el": 1059 - }, - "4": { - "n": "Saint Etienne", - "l": 1, - "el": 1154 - }, - "10": { - "n": "Toulouse", - "l": 1, - "el": 950 - }, - "13": { - "n": "Monaco", - "l": 1, - "el": 1019 - }, - "12": { - "n": "Lille", - "l": 1, - "el": 1199 - } - }, - "e": { - "3038": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 67, - "t2": 5 - }, - "3042": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 16 - }, - "3056": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 5 - }, - "3065": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 7 - }, - "3073": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 5 - }, - "3095": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 18, - "t2": 5 - }, - "3104": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 3 - }, - "3084": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 5, - "t2": 68 - }, - "5065": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 102, - "t2": 5 - }, - "3039": { - "d": 31, - "dB": "2019-04-07T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 2, - "t2": 41 - }, - "3051": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 41, - "t2": 14 - }, - "3060": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 41, - "t2": 15 - }, - "3062": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 41 - }, - "3080": { - "d": 35, - "dB": "2019-05-03T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 9 - }, - "3085": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 41 - }, - "3100": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 41, - "t2": 20 - }, - "3107": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 8, - "t2": 41 - }, - "5067": { - "d": 1, - "dB": "2019-07-29T18:45:00Z", - "t1s": 3, - "t2s": 0, - "t1": 6, - "t2": 2 - }, - "3045": { - "d": 32, - "dB": "2019-04-13T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 9, - "t2": 67 - }, - "3057": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 67, - "t2": 3 - }, - "3071": { - "d": 34, - "dB": "2019-04-28T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 10 - }, - "3091": { - "d": 36, - "dB": "2019-05-10T18:45:00Z", - "t1s": 0, - "t2s": 1, - "t1": 4, - "t2": 15 - }, - "3099": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 19 - }, - "5061": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 14, - "t2": 94 - }, - "3035": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 13 - }, - "3053": { - "d": 33, - "dB": "2019-04-20T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 9 - }, - "3069": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 19, - "t2": 14 - }, - "3090": { - "d": 36, - "dB": "2019-05-12T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 14 - }, - "3093": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 14, - "t2": 67 - }, - "3102": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 14 - }, - "5062": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 17, - "t2": 97 - }, - "3066": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 12, - "t2": 67 - }, - "3103": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 4 - }, - "5063": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 98, - "t2": 43 - }, - "3076": { - "d": 35, - "dB": "2019-05-05T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 42 - }, - "5058": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 88, - "t2": 89 - }, - "3109": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 18 - }, - "5059": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 90, - "t2": 91 - }, - "3055": { - "d": 33, - "dB": "2019-04-21T13:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 42 - }, - "3067": { - "d": 34, - "dB": "2019-04-28T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 9, - "t2": 8 - }, - "3077": { - "d": 35, - "dB": "2019-05-05T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 8, - "t2": 7 - }, - "3088": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 8 - }, - "3097": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 8 - }, - "3050": { - "d": 32, - "dB": "2019-04-14T15:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 3 - }, - "5060": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 92, - "t2": 93 - }, - "5064": { - "d": 1, - "dB": "2019-07-26T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 100, - "t2": 101 - }, - "3072": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 16 - }, - "5066": { - "d": 1, - "dB": "2019-07-27T13:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 103, - "t2": 104 - }, - "3041": { - "d": 31, - "dB": "2019-04-07T13:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 10, - "t2": 8 - }, - "3047": { - "d": 32, - "dB": "2019-04-14T13:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 15, - "t2": 10 - }, - "3082": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 10 - }, - "3101": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 5, - "t1": 10, - "t2": 9 - } - }, - "Ne": { - "5057": { - "d": 2, - "dB": "2019-08-05T18:45:00Z", - "t1": 5, - "t2": 6 - }, - "5056": { - "d": 2, - "dB": "2019-08-03T14:30:00Z", - "t1": 104, - "t2": 14 - }, - "5055": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 91, - "t2": 17 - }, - "5054": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 43, - "t2": 92 - }, - "5050": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 94, - "t2": 88 - }, - "5051": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 89, - "t2": 98 - }, - "5052": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 97, - "t2": 90 - }, - "5049": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 93, - "t2": 100 - }, - "5048": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 101, - "t2": 103 - }, - "5053": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1": 2, - "t2": 102 - } - }, - "k": "23dbae" -} diff --git a/src/test/resources/__files/mpgstats.ligue-2.20190806.json b/src/test/resources/__files/mpgstats.ligue-2.20190806.json deleted file mode 100644 index 8f1f4d4..0000000 --- a/src/test/resources/__files/mpgstats.ligue-2.20190806.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-08-06T07:54:58Z","mL":{"i":4,"n":"Ligue 2","cN":"Ligue-2","u":"\/league\/Ligue-2","aS":{"cN":"Ligue-2-2019-2020","i":12,"n":"Ligue 2 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":2,"lD":2}}},"mxD":2,"np":570,"le":{"4":"Ligue-2","1":"Ligue-1"},"p":[{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":26,"s":{"n":0,"Og":"6","Os":"146","On":"33","Oa":"4.44","Od":"0.95","Mp":"2","Ap":"31","p":{"31":{"n":4},"32":{"n":4.5},"33":{"n":4.5},"34":{"n":4},"35":{"n":4},"37":{"n":3},"38":{"n":3.5}}},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":21,"s":{"n":0,"Og":"2","Os":"157","On":"31","Oa":"5.08","Od":"0.71","Mp":"31","p":{"31":{"n":4},"32":{"n":4},"33":{"n":5.5},"34":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":5.5,"s":1},"37":{"n":5,"s":1}}},"c":5},{"i":141,"n":"Casimir Ninga","f":"","p":"A","r":27,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"6","Os":"152","On":"33","Oa":"4.62","Od":"1.06","Mp":"20","Ap":"13","p":{"31":{"n":4},"32":{"n":4},"33":{"n":5},"34":{"n":5},"35":{"n":4.5,"s":1},"36":{"n":6.5,"g":1},"37":{"n":3},"38":{"n":3.5},"2":{"n":4.5}}},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":7,"s":{"n":0,"Og":"2","Os":"82","On":"17","Oa":"4.85","Od":"0.51","Mp":"7","Ap":"10"},"c":5},{"i":311,"n":"Pi","f":"Jessy","p":"M","r":10,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"1":{"n":5},"2":{"n":4}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":5,"s":{"n":0,"Os":"27","On":"6","Oa":"4.58","Od":"0.61","Dp":"6"},"c":5},{"i":335,"n":"Rivierez","f":"Jonathan","p":"D","r":8,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":20,"s":{"s":"5","n":"1","a":"5.5","Os":"220","On":"38","Oa":"5.8","Od":"1","Gp":"38","p":{"31":{"n":6},"32":{"n":5.5},"33":{"n":8.5},"34":{"n":6.5},"35":{"n":6},"36":{"n":6},"37":{"n":6},"38":{"n":6},"1":{"n":5.5}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":9,"s":{"n":0,"Os":"76","On":"16","Oa":"4.78","Od":"0.77","Mp":"1","Dp":"15","p":{"31":{"n":4.5},"32":{"n":4.5},"33":{"n":5},"35":{"n":5},"36":{"n":6},"37":{"n":3},"38":{"n":4.5}}},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"79","On":"16","Oa":"4.94","Od":"0.39","Mp":"16","p":{"33":{"n":5},"34":{"n":5,"s":1},"35":{"n":4.5},"2":{"n":4.5}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":8,"s":{"n":0,"Os":"89","On":"18","Oa":"4.94","Od":"0.85","Mp":"16","Dp":"2","p":{"31":{"n":4.5,"s":1}}},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"n":0,"Os":"33","On":"7","Oa":"4.79","Od":"0.52","Mp":"7"},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":7,"s":{"n":0,"Os":"53","On":"11","Oa":"4.86","Od":"0.68","Mp":"1","Dp":"10"},"c":5},{"i":1237,"n":"Avounou","f":"Durel","p":"M","r":19,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":5},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":13,"s":{"s":"9","n":"2","a":"4.5","d":"1","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1","Og":"4","Os":"93","On":"18","Oa":"5.19","Od":"1.04","Mp":"16","Dp":"2","p":{"31":{"n":6.5,"e":3039,"c":41,"g":1},"32":{"n":5.5,"e":3051,"c":41},"33":{"n":3.5,"e":3060,"c":41},"34":{"n":5,"e":3062,"c":41,"s":1},"35":{"n":5,"e":3080,"c":41,"s":1},"36":{"n":5,"e":3085,"c":41},"37":{"n":5,"e":3100,"c":41},"38":{"n":5.5,"e":3107,"c":41},"1":{"n":5.5},"2":{"n":3.5}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":7,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"2":{"n":4}}},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":1,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":5},{"i":1706,"n":"Fajr","f":"Faycal","p":"M","r":32,"s":{"n":0,"Og":"5","Os":"192","On":"36","Oa":"5.33","Od":"1.07","Mp":"35","Ap":"1","p":{"31":{"n":3.5},"32":{"n":5.5},"34":{"n":7,"g":1},"35":{"n":4.5},"36":{"n":7.5,"g":1},"37":{"n":4.5},"38":{"n":5.5}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":16,"s":{"g":"1","s":"12","n":"2","a":"6.25","d":"0.75","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"1","Os":"102","On":"20","Oa":"5.13","Od":"1.04","Mp":"20","p":{"31":{"n":5},"32":{"n":4.5},"33":{"n":5.5},"34":{"n":6.5},"35":{"n":5},"36":{"n":6},"37":{"n":3.5},"38":{"n":6},"1":{"n":5.5},"2":{"n":7,"g":1}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":18,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"138","On":"29","Oa":"4.78","Od":"0.73","Mp":"2","Dp":"27","p":{"31":{"n":4,"s":1},"33":{"n":5,"s":1},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":4.5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":4.5},"2":{"n":5}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":8,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Ap":"1"},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":14,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"128","On":"29","Oa":"4.41","Od":"0.53","Mp":"4","Ap":"25","p":{"31":{"n":4.5,"s":1},"33":{"n":5,"s":1},"34":{"n":4.5},"35":{"n":3.5},"36":{"n":5},"38":{"n":4},"1":{"n":4.5},"2":{"n":5,"s":1}}},"c":5},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":16,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Oao":"1","Os":"123","On":"26","Oa":"4.75","Od":"1.02","Mp":"1","Dp":"25","p":{"31":{"n":3,"a":1},"32":{"n":5},"33":{"n":5.5},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":3},"38":{"n":5},"1":{"n":5},"2":{"n":4.5}}},"c":5},{"i":2935,"n":"Zahary","f":"Younn","p":"D","r":6,"s":{"n":0,"Os":"50","On":"11","Oa":"4.59","Od":"0.76","Dp":"11","p":{"31":{"n":4.5},"32":{"n":5,"s":1},"33":{"n":5.5},"34":{"n":5},"35":{"n":5},"36":{"n":4,"s":1},"37":{"n":2.5}}},"c":5},{"i":2940,"n":"Joseph","f":"Evens","p":"M","r":6,"s":{"n":0,"Os":"44","On":"10","Oa":"4.45","Od":"0.69","Mp":"10"},"c":5},{"i":3189,"n":"Elhadji Djibril Diaw","f":"","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"1":{"n":5}}},"c":5},{"i":3230,"n":"Mouaddib","f":"Jad","p":"M","r":1,"s":{"n":0},"c":5},{"i":3503,"n":"Kyeremeh","f":"Godson","p":"M","r":1,"s":{"n":0},"c":5},{"i":3504,"n":"Tutu","f":"Brice","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":5},{"i":3524,"n":"Moussaki","f":"Herman","p":"A","r":1,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"16","On":"4","Oa":"4.13","Od":"0.22","Mp":"1","Ap":"3","p":{"37":{"n":4,"s":1},"38":{"n":4.5},"1":{"n":4},"2":{"n":4}}},"c":5},{"i":3820,"n":"Weber","f":"Anthony","p":"D","r":15,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Dp":"2","p":{"1":{"n":5.5},"2":{"n":4.5}}},"c":5},{"i":5037,"n":"Issoko","f":"Arnold","p":"D","r":6,"s":{"n":0},"c":5},{"i":5353,"n":"Vandermersch","f":"Hugo","p":"D","r":3,"s":{"n":0},"c":5},{"i":127,"n":"Marveaux","f":"Sylvain","p":"M","r":19,"s":{"n":0},"c":6},{"i":149,"n":"Peybernes","f":"Mathieu","p":"D","r":9,"s":{"n":0},"c":6},{"i":154,"n":"Delaplace","f":"Jonathan","p":"M","r":8,"s":{"n":0},"c":6},{"i":164,"n":"Le Goff","f":"Vincent","p":"D","r":25,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":6},{"i":179,"n":"Cabot","f":"Jimmy","p":"M","r":22,"s":{"g":"1","s":"13","n":"2","a":"6.5","d":"1","Sg":"1","Ss":"13","Sn":"2","Sa":"6.5","Sd":"1","Og":"1","Os":"13","On":"2","Oa":"6.5","Od":"1","Mp":"2","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5}}},"c":6},{"i":340,"n":"Lemoine","f":"Fabien","p":"M","r":19,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Mp":"2","p":{"1":{"n":6.5},"2":{"n":5}}},"c":6},{"i":468,"n":"Mara","f":"Mohamed","p":"A","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":6},{"i":523,"n":"Mazikou","f":"Bradley","p":"D","r":1,"s":{"n":0},"c":6},{"i":529,"n":"Cont\u00e9","f":"Ibrahima Sory","p":"D","r":3,"s":{"n":0},"c":6},{"i":570,"n":"Hamel","f":"Pierre-Yves","p":"A","r":39,"s":{"g":"1","s":"12","n":"2","a":"6.25","d":"0.25","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Og":"1","Os":"12","On":"2","Oa":"6.25","Od":"0.25","Ap":"2","p":{"1":{"n":6},"2":{"n":6.5,"g":1}}},"c":6},{"i":583,"n":"Claude Maurice","f":"Alexis","p":"M","r":38,"s":{"s":"6","n":"1","a":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":6},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":10,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Og":"2","Os":"116","On":"25","Oa":"4.66","Od":"1.01","Ap":"25","p":{"32":{"n":4.5,"e":3045,"c":67,"s":1},"33":{"n":5,"e":3057,"c":67},"1":{"n":5},"2":{"n":4,"s":1}}},"c":6},{"i":3805,"n":"Nardi","f":"Paul","p":"G","r":8,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Gp":"2","p":{"1":{"n":6},"2":{"n":6}}},"c":6},{"i":4838,"n":"Renaud","f":"Tom","p":"M","r":1,"s":{"n":0},"c":6},{"i":4839,"n":"Loric","f":"Samuel","p":"D","r":1,"s":{"n":0},"c":6},{"i":4855,"n":"Le F\u00e9e","f":"Enzo","p":"M","r":1,"s":{"s":"11","n":"2","a":"5.5","d":"1.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"1.5","Os":"11","On":"2","Oa":"5.5","Od":"1.5","Mp":"1","Ap":"1","p":{"1":{"n":7},"2":{"n":4}}},"c":6},{"i":4877,"n":"Bartouche","f":"Teddy","p":"G","r":1,"s":{"n":0},"c":6},{"i":4887,"n":"Julloux","f":"Adrien","p":"M","r":1,"s":{"n":0},"c":6},{"i":4888,"n":"Bila","f":"Abdoul","p":"A","r":1,"s":{"n":0},"c":6},{"i":4889,"n":"Abessolo","f":"Wilfrid","p":"D","r":1,"s":{"n":0},"c":6},{"i":4900,"n":"Ponceau","f":"Julien","p":"M","r":8,"s":{"n":0},"c":6},{"i":4940,"n":"Etuin","f":"Maxime","p":"M","r":16,"s":{"n":0},"c":6},{"i":4946,"n":"Pattier","f":"Maxime","p":"G","r":1,"s":{"n":0},"c":6},{"i":4948,"n":"Meslier","f":"Illan","p":"G","r":14,"s":{"n":0},"c":6},{"i":4952,"n":"Wadja","f":"Franklin","p":"M","r":17,"s":{"n":0},"c":6},{"i":4981,"n":"Kamissoko","f":"Mamadou","p":"D","r":6,"s":{"n":0},"c":6},{"i":5009,"n":"Mendes","f":"Houboulang","p":"D","r":10,"s":{"n":0},"c":6},{"i":5032,"n":"Ouaneh","f":"Peter","p":"D","r":1,"s":{"n":0},"c":6},{"i":5033,"n":"Wissa","f":"Yoane","p":"A","r":19,"s":{"g":"2","s":"14","n":"2","a":"7","d":"0.5","Sg":"2","Ss":"14","Sn":"2","Sa":"7","Sd":"0.5","Og":"2","Os":"14","On":"2","Oa":"7","Od":"0.5","Mp":"2","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":7.5,"g":1}}},"c":6},{"i":5056,"n":"Laporte","f":"Julien","p":"D","r":13,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":6},{"i":5065,"n":"Hergault","f":"Jerome","p":"D","r":15,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":6},{"i":5077,"n":"Lecoeuche","f":"Quentin","p":"D","r":18,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":6},{"i":5131,"n":"Boubaya","f":"Tristan","p":"M","r":1,"s":{"n":0},"c":6},{"i":5152,"n":"Lemaire","f":"Pierre-Etienne","p":"D","r":1,"s":{"n":0},"c":6},{"i":5162,"n":"Abergel","f":"Laurent","p":"D","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"2":{"n":6}}},"c":6},{"i":5163,"n":"Sainati","f":"Joris","p":"D","r":15,"s":{"n":0},"c":6},{"i":5186,"n":"Saunier","f":"Matthieu","p":"D","r":11,"s":{"g":"1","s":"12","n":"2","a":"6.25","d":"0.75","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"1","Os":"12","On":"2","Oa":"6.25","Od":"0.75","Dp":"2","p":{"1":{"n":7,"g":1},"2":{"n":5.5}}},"c":6},{"i":5205,"n":"Saad","f":"Felipe","p":"D","r":14,"s":{"n":0},"c":6},{"i":5219,"n":"Martins Pereira","f":"Jonathan","p":"D","r":4,"s":{"n":0},"c":6},{"i":69,"n":"Salibur","f":"Yannis","p":"M","r":6,"s":{"n":0,"Og":"1","Os":"110","On":"22","Oa":"5","Od":"0.85","Mp":"8","Ap":"14","p":{"34":{"n":4.5,"e":3071,"c":4,"s":1},"36":{"n":5,"e":3091,"c":4,"s":1},"37":{"n":6.5,"e":3099,"c":4}}},"c":14},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":16,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"82","On":"18","Oa":"4.56","Od":"0.33","Mp":"10","Ap":"8","p":{"35":{"n":4,"s":1},"1":{"n":5.5},"2":{"n":4.5}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":18,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Og":"1","Os":"162","On":"34","Oa":"4.76","Od":"0.88","Dp":"34","p":{"31":{"n":5.5},"32":{"n":5.5,"g":1},"33":{"n":3.5},"34":{"n":4},"35":{"n":5},"36":{"n":5},"37":{"n":5},"38":{"n":4.5},"1":{"n":4.5},"2":{"n":4.5}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":27,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Og":"1","Os":"114","On":"26","Oa":"4.38","Od":"0.61","Ap":"26","p":{"31":{"n":5},"32":{"n":5},"33":{"n":4},"35":{"n":4},"36":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1},"1":{"n":4},"2":{"n":4}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":16,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"109","On":"25","Oa":"4.38","Od":"1.1","Dp":"25","p":{"35":{"n":4.5},"36":{"n":5},"1":{"n":4.5},"2":{"n":4.5}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":6,"s":{"n":0,"Os":"85","On":"17","Oa":"5","Od":"1.1","Gp":"17"},"c":14},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":16,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Og":"3","Os":"96","On":"20","Oa":"4.8","Od":"0.9","Mp":"20","p":{"32":{"n":5.5,"g":1},"36":{"n":4.5},"38":{"n":6},"1":{"n":4.5},"2":{"n":4.5}}},"c":14},{"i":231,"n":"Petric","f":"Denis","p":"G","r":1,"s":{"n":0},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":6,"s":{"n":0,"Og":"3","Os":"123","On":"25","Oa":"4.92","Od":"1.04","Mp":"19","Ap":"6","p":{"31":{"n":5.5}}},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"144","On":"31","Oa":"4.66","Od":"0.9","Mp":"31","p":{"31":{"n":4,"s":1},"32":{"n":5},"33":{"n":4},"34":{"n":4.5,"s":1},"35":{"n":5},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":5,"s":1}}},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":6,"s":{"n":0,"Os":"85","On":"20","Oa":"4.25","Od":"0.93","Mp":"1","Dp":"19","p":{"34":{"n":3},"35":{"n":5.5},"36":{"n":5},"37":{"n":4.5},"38":{"n":4.5}}},"c":14},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":23,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Og":"1","Os":"166","On":"34","Oa":"4.88","Od":"0.92","Mp":"33","Ap":"1","p":{"31":{"n":4.5},"34":{"n":5,"s":1},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":6},"38":{"n":5},"1":{"n":5.5},"2":{"n":4.5}}},"c":14},{"i":536,"n":"Guivarch","f":"Theo","p":"G","r":7,"s":{"n":0},"c":14},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":11,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Dp":"2","p":{"1":{"n":5.5,"s":1},"2":{"n":4.5}}},"c":14},{"i":790,"n":"Djilobodji","f":"Papy","p":"D","r":6,"s":{"n":0,"Os":"15","On":"4","Oa":"3.88","Od":"0.41","Dp":"4","p":{"31":{"n":4.5,"s":1},"34":{"n":3.5}}},"c":14},{"i":905,"n":"Ndong","f":"Didier","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"56","On":"12","Oa":"4.67","Od":"0.55","Mp":"12","p":{"31":{"n":5.5},"32":{"n":4.5},"33":{"n":4},"34":{"n":4},"1":{"n":5}}},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":6,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2"},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":10,"s":{"n":0,"Og":"9","Os":"153","On":"32","Oa":"4.8","Od":"1.23","Mp":"19","Ap":"13","p":{"32":{"n":6,"g":1},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":5},"36":{"n":3},"37":{"n":5,"g":1},"38":{"n":4}}},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"129","On":"25","Oa":"5.16","Od":"1.03","Mp":"25","p":{"31":{"n":6},"33":{"n":3.5},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":7},"37":{"n":5},"38":{"n":4},"2":{"n":4}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":23,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"135","On":"27","Oa":"5.02","Od":"1.38","Mp":"1","Dp":"26","p":{"31":{"n":7.5,"g":1},"32":{"n":4},"33":{"n":4},"37":{"n":6},"38":{"n":5},"2":{"n":4.5,"s":1}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":25,"s":{"s":"4","n":"1","a":"4.5","Os":"181","On":"36","Oa":"5.04","Od":"0.91","Mp":"1","Dp":"35","p":{"31":{"n":6},"32":{"n":6},"33":{"n":4},"34":{"n":4.5},"35":{"n":5},"36":{"n":5},"37":{"n":5},"38":{"n":6},"1":{"n":4.5}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":15,"s":{"s":"8","n":"2","a":"4","d":"1.5","Ss":"8","Sn":"2","Sa":"4","Sd":"1.5","Os":"123","On":"23","Oa":"5.35","Od":"1.26","Gp":"23","p":{"31":{"n":6},"32":{"n":4},"33":{"n":4.5},"34":{"n":4},"35":{"n":6},"36":{"n":6},"37":{"n":5},"38":{"n":6},"1":{"n":2.5},"2":{"n":5.5}}},"c":14},{"i":1421,"n":"Pel\u00e9","f":"Bryan","p":"M","r":28,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"1.25","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5}}},"c":14},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":6,"s":{"n":0,"Os":"57","On":"13","Oa":"4.38","Od":"0.76","Mp":"13","p":{"37":{"n":5,"s":1}}},"c":14},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":18,"s":{"g":"1","s":"10","n":"2","a":"5.25","d":"0.75","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"2","Os":"74","On":"16","Oa":"4.63","Od":"0.76","Mp":"5","Ap":"11","p":{"32":{"n":5,"s":1},"33":{"n":6,"g":1,"s":1},"34":{"n":3.5},"1":{"n":6,"g":1},"2":{"n":4.5,"s":1}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":13,"s":{"s":"4","n":"1","a":"4.5","Os":"49","On":"11","Oa":"4.5","Od":"0.3","Ap":"11","p":{"1":{"n":4.5,"s":1}}},"c":14},{"i":2722,"n":"Traor\u00e9","f":"Cheick","p":"D","r":16,"s":{"n":0,"Os":"89","On":"20","Oa":"4.45","Od":"0.95","Dp":"20","p":{"31":{"n":5},"32":{"n":3.5},"33":{"n":3}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":2,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2"},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":14},{"i":2943,"n":"Ako","f":"Steven","p":"D","r":1,"s":{"n":0},"c":14},{"i":2948,"n":"Boudjemaa","f":"Mehdi","p":"M","r":1,"s":{"n":0},"c":14},{"i":2949,"n":"Phaeton","f":"Matthias","p":"M","r":2,"s":{"n":0},"c":14},{"i":2997,"n":"Johan Larsson","f":"","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":14},{"i":3124,"n":"Merghem","f":"Mehdi","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"48","On":"10","Oa":"4.85","Od":"0.59","Mp":"8","Ap":"2","p":{"31":{"n":5.5},"32":{"n":5},"33":{"n":5},"34":{"n":3.5},"35":{"n":5},"37":{"n":5},"38":{"n":4},"2":{"n":5,"s":1}}},"c":14},{"i":4851,"n":"Mellot","f":"Jeremy","p":"D","r":6,"s":{"g":"1","s":"10","n":"2","a":"5.25","d":"0.75","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"1","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Dp":"2","p":{"1":{"n":6,"g":1},"2":{"n":4.5}}},"c":14},{"i":4884,"n":"Carnot","f":"Louis","p":"M","r":1,"s":{"n":0},"c":14},{"i":5006,"n":"Niakate","f":"Sikou","p":"D","r":5,"s":{"n":0},"c":14},{"i":5361,"n":"Gueddar","f":"Mohamed Ali","p":"A","r":2,"s":{"n":0},"c":14},{"i":5362,"n":"Anne","f":"Souleymane","p":"A","r":1,"s":{"n":0},"c":14},{"i":5364,"n":"Youfeigane","f":"Dominique","p":"G","r":1,"s":{"n":0},"c":14},{"i":5370,"n":"Baret","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":14},{"i":161,"n":"Muratori","f":"Vincent","p":"D","r":5,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"1":{"n":5},"2":{"n":4}}},"c":17},{"i":338,"n":"El Kaoutari","f":"Abdelhamid","p":"D","r":7,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":17},{"i":417,"n":"N'Guessan","f":"Serge","p":"M","r":11,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5}}},"c":17},{"i":522,"n":"Rocha Santos","f":"Kenny","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"2":{"n":5,"s":1}}},"c":17},{"i":577,"n":"Marchetti","f":"Vincent","p":"M","r":18,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"1":{"n":5},"2":{"n":4}}},"c":17},{"i":1270,"n":"Coulibaly","f":"Sega","p":"D","r":6,"s":{"n":0},"c":17},{"i":1407,"n":"Seka","f":"Ernest","p":"D","r":15,"s":{"n":0},"c":17},{"i":2139,"n":"V\u00e1gner","f":"","p":"M","r":9,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"7","On":"1","Oa":"7","Mp":"1","p":{"2":{"n":7,"g":1}}},"c":17},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":10,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Og":"2","Os":"92","On":"19","Oa":"4.87","Od":"1.02","Dp":"19","p":{"31":{"n":5.5,"e":3038,"c":67},"32":{"n":4.5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":3.5,"e":3066,"c":67},"1":{"n":5.5},"2":{"n":5}}},"c":17},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":6,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":6}}},"c":17},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":5,"s":{"s":"10","n":"2","a":"5.25","d":"1.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"1.25","Os":"10","On":"2","Oa":"5.25","Od":"1.25","Gp":"2","p":{"1":{"n":6.5},"2":{"n":4}}},"c":17},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":2,"s":{"n":0},"c":17},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":2,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"24","On":"5","Oa":"4.8","Od":"0.68","Ap":"5","p":{"38":{"n":4.5,"e":3103,"c":4,"s":1},"2":{"n":4,"s":1}}},"c":17},{"i":4872,"n":"Triboulet","f":"Vinni","p":"M","r":5,"s":{"n":0},"c":17},{"i":4873,"n":"Bouzar Essaidi","f":"Samir","p":"M","r":1,"s":{"n":0},"c":17},{"i":4875,"n":"Wooh","f":"Christopher Maurice","p":"M","r":1,"s":{"n":0},"c":17},{"i":4876,"n":"Haag","f":"Giovanni","p":"M","r":1,"s":{"n":0},"c":17},{"i":4899,"n":"Bassouamina","f":"Mons","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":17},{"i":4939,"n":"Constant","f":"Hugo","p":"G","r":1,"s":{"n":0},"c":17},{"i":4959,"n":"Demb\u00e9l\u00e9","f":"Malaly","p":"A","r":15,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"1","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5,"s":1}}},"c":17},{"i":4961,"n":"Barka","f":"Yanis","p":"A","r":2,"s":{"n":0},"c":17},{"i":4963,"n":"Fischer","f":"Mathias","p":"D","r":5,"s":{"n":0},"c":17},{"i":4967,"n":"Bassi","f":"Amine","p":"M","r":22,"s":{"n":0},"c":17},{"i":4973,"n":"Bidounga","f":"Ryan","p":"D","r":5,"s":{"n":0},"c":17},{"i":5025,"n":"Karamoko","f":"Souleymane","p":"D","r":10,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"2":{"n":5}}},"c":17},{"i":5058,"n":"Nguiamba","f":"Aurelien","p":"M","r":2,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5}}},"c":17},{"i":5114,"n":"Danilson da Cruz","f":"","p":"M","r":5,"s":{"n":0},"c":17},{"i":5165,"n":"Cissokho","f":"Mame Ousmane","p":"A","r":19,"s":{"n":0},"c":17},{"i":5167,"n":"Edmond Akichi","f":"","p":"M","r":11,"s":{"s":"11","n":"2","a":"5.5","Ss":"11","Sn":"2","Sa":"5.5","Os":"11","On":"2","Oa":"5.5","Mp":"2","p":{"1":{"n":5.5},"2":{"n":5.5}}},"c":17},{"i":5179,"n":"Nery","f":"Loris","p":"D","r":9,"s":{"n":0},"c":17},{"i":5204,"n":"Dona Ndoh","f":"And\u00e9","p":"A","r":25,"s":{"s":"7","n":"2","a":"3.75","d":"0.25","Ss":"7","Sn":"2","Sa":"3.75","Sd":"0.25","Os":"7","On":"2","Oa":"3.75","Od":"0.25","Ap":"2","p":{"1":{"n":3.5},"2":{"n":4}}},"c":17},{"i":479,"n":"Barthelme","f":"Maxime","p":"M","r":23,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":43},{"i":1224,"n":"Massouema","f":"Eden","p":"M","r":12,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":5}}},"c":43},{"i":1396,"n":"Darbion","f":"St\u00e9phane","p":"M","r":6,"s":{"n":0},"c":43},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":5,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"49","On":"11","Oa":"4.5","Od":"0.77","Mp":"2","Dp":"9","p":{"35":{"n":4.5,"e":3076,"c":42},"1":{"n":5.5},"2":{"n":5}}},"c":43},{"i":1411,"n":"Giraudon","f":"Jimmy","p":"D","r":18,"s":{"s":"9","n":"2","a":"4.75","d":"1.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"1.25","Os":"9","On":"2","Oa":"4.75","Od":"1.25","Dp":"2","p":{"1":{"n":6},"2":{"n":3.5}}},"c":43},{"i":1440,"n":"Salmier","f":"Yoann","p":"D","r":16,"s":{"s":"10","n":"2","a":"5","d":"1","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Os":"10","On":"2","Oa":"5","Od":"1","Dp":"2","p":{"1":{"n":6},"2":{"n":4}}},"c":43},{"i":1465,"n":"Sissako","f":"Mamadou","p":"A","r":1,"s":{"n":0},"c":43},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":1,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"2":{"n":3.5,"s":1}}},"c":43},{"i":2325,"n":"Mbeumo","f":"Bryan","p":"A","r":22,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"1.25","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":7,"g":1},"2":{"n":4.5}}},"c":43},{"i":4848,"n":"Bouallak","f":"Ryan","p":"G","r":3,"s":{"n":0},"c":43},{"i":4854,"n":"Mambo","f":"Stone Muzalimoja","p":"D","r":1,"s":{"n":0},"c":43},{"i":4867,"n":"Jay","f":"Ronan","p":"G","r":1,"s":{"n":0},"c":43},{"i":4883,"n":"Abdallah","f":"Benrandy","p":"D","r":1,"s":{"n":0},"c":43},{"i":4897,"n":"Tchimbemb\u00e9","f":"Warren","p":"A","r":3,"s":{"n":0},"c":43},{"i":4989,"n":"Rui Pires","f":"","p":"M","r":6,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":43},{"i":4999,"n":"Digol N'Dozangue","f":"Khamis","p":"D","r":2,"s":{"n":0},"c":43},{"i":5004,"n":"Fortun\u00e9","f":"K\u00e9vin","p":"A","r":25,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Mp":"2","p":{"1":{"n":6.5},"2":{"n":5}}},"c":43},{"i":5012,"n":"Kiki Kouyate","f":"","p":"D","r":11,"s":{"n":0},"c":43},{"i":5071,"n":"Raveloson","f":"Rayan","p":"D","r":24,"s":{"n":0},"c":43},{"i":5101,"n":"Camara","f":"Demba","p":"A","r":2,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4,"s":1}}},"c":43},{"i":5108,"n":"Gallon","f":"Gauthier","p":"G","r":17,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":43},{"i":5178,"n":"Touzghar","f":"Yoann","p":"A","r":28,"s":{"g":"2","s":"13","n":"2","a":"6.5","d":"0.5","Sg":"2","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Og":"2","Os":"13","On":"2","Oa":"6.5","Od":"0.5","Ap":"2","p":{"1":{"n":7,"g":1},"2":{"n":6,"g":1}}},"c":43},{"i":5197,"n":"Kashi","f":"Ahmed","p":"M","r":1,"s":{"n":0},"c":43},{"i":5358,"n":"Bombo","f":"Calvin","p":"M","r":1,"s":{"n":0},"c":43},{"i":5359,"n":"Merah","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":43},{"i":5365,"n":"Baya","f":"Terence","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"2":{"n":4}}},"c":43},{"i":5376,"n":"Tardieu","f":"Florian","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"2":{"n":5}}},"c":43},{"i":348,"n":"Leroy","f":"Benjamin","p":"G","r":15,"s":{"s":"9","n":"2","a":"4.5","d":"1.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1.5","Os":"9","On":"2","Oa":"4.5","Od":"1.5","Gp":"2","p":{"1":{"n":3},"2":{"n":6}}},"c":88},{"i":384,"n":"Lejeune","f":"K\u00e9vin","p":"M","r":12,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"2":{"n":5}}},"c":88},{"i":1263,"n":"Andonian","f":"Ga\u00ebl","p":"D","r":7,"s":{"n":0},"c":88},{"i":4834,"n":"Huard","f":"Matthieu","p":"D","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":88},{"i":4860,"n":"Corinus","f":"J\u00e9r\u00e9my","p":"D","r":2,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":88},{"i":4871,"n":"Tomi","f":"Felix","p":"M","r":3,"s":{"n":0},"c":88},{"i":4878,"n":"El Idrissy","f":"Mounaim","p":"A","r":1,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"0.75","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1,"s":1}}},"c":88},{"i":4879,"n":"Marsella","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":88},{"i":4882,"n":"Zady Sery","f":"Caleb","p":"A","r":3,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":88},{"i":4896,"n":"Pellegrini","f":"Lucas","p":"M","r":3,"s":{"n":0},"c":88},{"i":4958,"n":"Tramoni","f":"Matteo","p":"M","r":14,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Mp":"2","p":{"1":{"n":6,"s":1},"2":{"n":4.5,"s":1}}},"c":88},{"i":4993,"n":"Bayala","f":"Cyrille","p":"M","r":16,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":5},"2":{"n":6}}},"c":88},{"i":5039,"n":"Laci","f":"Qazim","p":"M","r":8,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Mp":"2","p":{"1":{"n":4.5},"2":{"n":6}}},"c":88},{"i":5044,"n":"Coutadeur","f":"Mathieu","p":"M","r":23,"s":{"s":"12","n":"2","a":"6.25","d":"0.25","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Os":"12","On":"2","Oa":"6.25","Od":"0.25","Mp":"2","p":{"1":{"n":6.5},"2":{"n":6}}},"c":88},{"i":5062,"n":"Tall","f":"Maki Madani","p":"A","r":2,"s":{"n":0},"c":88},{"i":5086,"n":"Sollacaro","f":"Francois-Joseph","p":"G","r":8,"s":{"n":0},"c":88},{"i":5099,"n":"Diallo","f":"Isma\u00ebl","p":"D","r":3,"s":{"n":0},"c":88},{"i":5170,"n":"Courtet","f":"Ga\u00ebtan","p":"A","r":13,"s":{"g":"2","s":"12","n":"2","a":"6","d":"1","Sg":"2","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Og":"2","Os":"12","On":"2","Oa":"6","Od":"1","Ap":"2","p":{"1":{"n":7,"g":2},"2":{"n":5}}},"c":88},{"i":5175,"n":"Mendes","f":"Joseph","p":"A","r":5,"s":{"n":0},"c":88},{"i":5206,"n":"Youssouf","f":"Mohamed","p":"A","r":5,"s":{"n":0},"c":88},{"i":5214,"n":"Avinel","f":"Cedric","p":"D","r":21,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"2":{"n":6}}},"c":88},{"i":5218,"n":"Choplin","f":"J\u00e9r\u00e9my","p":"D","r":19,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Dp":"2","p":{"1":{"n":4.5},"2":{"n":6}}},"c":88},{"i":5222,"n":"Cavalli","f":"Johan","p":"M","r":21,"s":{"s":"11","n":"2","a":"5.5","Ss":"11","Sn":"2","Sa":"5.5","Os":"11","On":"2","Oa":"5.5","Mp":"2","p":{"1":{"n":5.5},"2":{"n":5.5}}},"c":88},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":6,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"22","On":"4","Oa":"5.5","Od":"0.94","Gp":"4","p":{"38":{"n":7,"e":3109,"c":18},"1":{"n":5.5},"2":{"n":4.5}}},"c":89},{"i":269,"n":"Bazile","f":"Herve","p":"A","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":89},{"i":1249,"n":"Dzabana","f":"Alan","p":"A","r":2,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1}}},"c":89},{"i":4891,"n":"Abdelli","f":"Himad","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":89},{"i":4945,"n":"Ebimbe","f":"\u00c9ric","p":"M","r":1,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Mp":"2","p":{"1":{"n":6.5},"2":{"n":5}}},"c":89},{"i":4951,"n":"Fofana","f":"Yahia","p":"G","r":7,"s":{"n":0},"c":89},{"i":4962,"n":"Tiehi","f":"Christ","p":"M","r":1,"s":{"n":0},"c":89},{"i":4968,"n":"Gueye","f":"Pape Alassane","p":"M","r":5,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5,"s":1},"2":{"n":5}}},"c":89},{"i":4976,"n":"Basque","f":"Romain","p":"M","r":13,"s":{"n":0},"c":89},{"i":4992,"n":"Coulibaly","f":"Yacouba","p":"D","r":10,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"1":{"n":3.5}}},"c":89},{"i":4995,"n":"Mayembo","f":"Fernand","p":"D","r":7,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":89},{"i":5008,"n":"Gory","f":"Alimami","p":"A","r":27,"s":{"n":0},"c":89},{"i":5015,"n":"Camara","f":"Samba","p":"D","r":12,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"1":{"n":5},"2":{"n":5}}},"c":89},{"i":5036,"n":"Kadewere","f":"Tinotenda","p":"A","r":17,"s":{"g":"3","s":"13","n":"2","a":"6.5","d":"0.5","Sg":"3","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Og":"3","Os":"13","On":"2","Oa":"6.5","Od":"0.5","Ap":"2","p":{"1":{"n":7,"g":2},"2":{"n":6,"g":1}}},"c":89},{"i":5104,"n":"Bese","f":"Barnab\u00e1s","p":"D","r":16,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":89},{"i":5116,"n":"Assifuah","f":"Ebenezer","p":"A","r":8,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1}}},"c":89},{"i":5119,"n":"Lekhal","f":"Victor","p":"M","r":13,"s":{"n":0},"c":89},{"i":5120,"n":"Thiare","f":"Jamal","p":"A","r":10,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Ap":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":89},{"i":5133,"n":"Traore","f":"Baba","p":"D","r":2,"s":{"n":0},"c":89},{"i":5150,"n":"Youga","f":"Amos","p":"M","r":16,"s":{"n":0},"c":89},{"i":5188,"n":"Balijon","f":"Arnaud","p":"G","r":1,"s":{"n":0},"c":89},{"i":5203,"n":"Fontaine","f":"Jean-Pascal","p":"M","r":25,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":89},{"i":5216,"n":"Bonnet","f":"Alexandre","p":"M","r":16,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":89},{"i":5349,"n":"Meddah","f":"Daylam","p":"M","r":1,"s":{"n":0},"c":89},{"i":5350,"n":"Konate","f":"Ateef","p":"M","r":1,"s":{"n":0},"c":89},{"i":5351,"n":"Coulibaly","f":"Woyo","p":"D","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"2":{"n":4.5}}},"c":89},{"i":1211,"n":"Junior Tallo","f":"","p":"A","r":3,"s":{"n":0},"c":90},{"i":1220,"n":"Gonzalez","f":"Oumar","p":"D","r":10,"s":{"s":"12","n":"2","a":"6.25","d":"0.75","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Os":"12","On":"2","Oa":"6.25","Od":"0.75","Dp":"2","p":{"1":{"n":7},"2":{"n":5.5}}},"c":90},{"i":1551,"n":"Le Roy","f":"Killian","p":"G","r":1,"s":{"n":0},"c":90},{"i":4901,"n":"Sylas Edjouma","f":"Malcom","p":"M","r":4,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5}}},"c":90},{"i":4909,"n":"Doucoure","f":"Boubacari","p":"D","r":5,"s":{"n":0},"c":90},{"i":4910,"n":"Delos","f":"David","p":"D","r":8,"s":{"n":0},"c":90},{"i":4935,"n":"Tabue","f":"Kevin","p":"A","r":2,"s":{"n":0},"c":90},{"i":4936,"n":"Seck","f":"Mafall","p":"D","r":3,"s":{"n":0},"c":90},{"i":4975,"n":"Pinoteau","f":"Xavier","p":"G","r":7,"s":{"n":0},"c":90},{"i":4980,"n":"Guezoui","f":"Medhy","p":"A","r":10,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4}}},"c":90},{"i":4984,"n":"El Hriti","f":"Aniss","p":"D","r":4,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"2":{"n":5.5,"s":1}}},"c":90},{"i":5011,"n":"H\u00e9lo\u00efse","f":"Laurent","p":"M","r":1,"s":{"n":0},"c":90},{"i":5026,"n":"Thomas Henry","f":"","p":"A","r":1,"s":{"n":0},"c":90},{"i":5060,"n":"Jaques","f":"Thibault","p":"D","r":17,"s":{"g":"1","s":"13","n":"2","a":"6.5","d":"1","Sg":"1","Ss":"13","Sn":"2","Sa":"6.5","Sd":"1","Og":"1","Os":"13","On":"2","Oa":"6.5","Od":"1","Dp":"2","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5}}},"c":90},{"i":5090,"n":"David","f":"Florian","p":"M","r":12,"s":{"g":"1","s":"13","n":"2","a":"6.75","d":"0.25","Sg":"1","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.25","Og":"1","Os":"13","On":"2","Oa":"6.75","Od":"0.25","Ap":"2","p":{"1":{"n":6.5},"2":{"n":7,"g":1}}},"c":90},{"i":5093,"n":"Santelli","f":"Benjamin","p":"M","r":11,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"1","Ap":"1","p":{"1":{"n":5},"2":{"n":5}}},"c":90},{"i":5106,"n":"Derrien","f":"Maxence","p":"D","r":13,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":90},{"i":5110,"n":"Beaulieu","f":"Jonathan","p":"M","r":9,"s":{"n":0},"c":90},{"i":5112,"n":"Dequaire","f":"Guillaume","p":"D","r":13,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":90},{"i":5113,"n":"Fofana","f":"Diarank\u00e9","p":"D","r":12,"s":{"n":0},"c":90},{"i":5117,"n":"Hilaire","f":"Max","p":"M","r":3,"s":{"n":0},"c":90},{"i":5118,"n":"Padovani","f":"Romain","p":"M","r":11,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":90},{"i":5123,"n":"Eickmayer","f":"Joachim","p":"M","r":10,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":90},{"i":5125,"n":"Soubervie","f":"Anthony","p":"D","r":13,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Mp":"1","Dp":"1","p":{"1":{"n":6},"2":{"n":6,"s":1}}},"c":90},{"i":5128,"n":"Lefaix","f":"Kevin","p":"M","r":1,"s":{"n":0},"c":90},{"i":5134,"n":"Latour","f":"Micka\u00ebl","p":"A","r":5,"s":{"n":0},"c":90},{"i":5148,"n":"Heinry","f":"Guillaume","p":"M","r":3,"s":{"n":0},"c":90},{"i":5156,"n":"Popelard","f":"John","p":"D","r":7,"s":{"n":0},"c":90},{"i":5157,"n":"Doucour\u00e9","f":"Lassana","p":"M","r":16,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"1","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5}}},"c":90},{"i":5158,"n":"Pinteaux","f":"Florian","p":"D","r":7,"s":{"n":0},"c":90},{"i":5191,"n":"Atrous","f":"Samuel","p":"G","r":1,"s":{"n":0},"c":90},{"i":5211,"n":"Pontdem\u00e9","f":"Simon","p":"G","r":13,"s":{"s":"12","n":"2","a":"6","d":"0.5","Ss":"12","Sn":"2","Sa":"6","Sd":"0.5","Os":"12","On":"2","Oa":"6","Od":"0.5","Gp":"2","p":{"1":{"n":5.5},"2":{"n":6.5}}},"c":90},{"i":5217,"n":"Loriot","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":90},{"i":5355,"n":"Fleurier","f":"Romain","p":"D","r":1,"s":{"n":0},"c":90},{"i":5356,"n":"Geran","f":"Marvin","p":"M","r":1,"s":{"n":0},"c":90},{"i":5357,"n":"Delos","f":"Shaquil","p":"D","r":1,"s":{"n":0},"c":90},{"i":5374,"n":"Flochon","f":"S\u00e9bastien","p":"M","r":4,"s":{"n":0},"c":90},{"i":5377,"n":"Crillon","f":"Judica\u00ebl","p":"D","r":8,"s":{"n":0},"c":90},{"i":63,"n":"Prior","f":"J\u00e9r\u00f4me","p":"G","r":5,"s":{"s":"12","n":"2","a":"6.25","d":"0.25","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Os":"12","On":"2","Oa":"6.25","Od":"0.25","Gp":"2","p":{"1":{"n":6},"2":{"n":6.5}}},"c":91},{"i":389,"n":"Cuffaut","f":"Joffrey","p":"D","r":13,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5},"2":{"n":5}}},"c":91},{"i":397,"n":"Hein","f":"Gauthier","p":"M","r":3,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"0.75","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Ap":"2","p":{"1":{"n":5},"2":{"n":6.5,"g":1}}},"c":91},{"i":566,"n":"Romil","f":"Jorris","p":"A","r":8,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Ap":"1","p":{"1":{"n":3.5}}},"c":91},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":8,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Og":"2","Os":"111","On":"25","Oa":"4.44","Od":"0.92","Ap":"25","p":{"31":{"n":5,"e":3038,"c":67},"32":{"n":4,"e":3045,"c":67,"s":1},"33":{"n":4,"e":3057,"c":67,"s":1},"34":{"n":2.5,"e":3066,"c":67},"38":{"n":4,"e":3109,"c":67,"s":1},"1":{"n":3.5},"2":{"n":5}}},"c":91},{"i":4874,"n":"Linguet","f":"Allan","p":"M","r":1,"s":{"n":0},"c":91},{"i":4880,"n":"Cabral","f":"Kevin","p":"A","r":7,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1}}},"c":91},{"i":4890,"n":"Arib","f":"Gaetan","p":"D","r":7,"s":{"n":0},"c":91},{"i":4918,"n":"Siby","f":"Maham\u00e9","p":"M","r":1,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":5,"s":1}}},"c":91},{"i":4924,"n":"Brassier","f":"Lilian","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"2":{"n":4.5}}},"c":91},{"i":4969,"n":"Foulon","f":"Gwenn","p":"A","r":1,"s":{"n":0},"c":91},{"i":4985,"n":"Ch\u00e9rif Quenum","f":"","p":"D","r":1,"s":{"n":0},"c":91},{"i":4996,"n":"Ambri","f":"Steve","p":"A","r":4,"s":{"n":0},"c":91},{"i":5020,"n":"Kocik","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":91},{"i":5048,"n":"Dabo","f":"Elhadj","p":"M","r":6,"s":{"n":0},"c":91},{"i":5080,"n":"Konate","f":"Hillel","p":"G","r":7,"s":{"n":0},"c":91},{"i":5084,"n":"Spano","f":"Maxime","p":"D","r":14,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"2":{"n":6}}},"c":91},{"i":5111,"n":"Dos Santos","f":"Laurent","p":"M","r":13,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":91},{"i":5143,"n":"Ntim","f":"Emmanuel","p":"D","r":1,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"1":{"n":5.5}}},"c":91},{"i":5161,"n":"Aloe","f":"Baptiste","p":"D","r":8,"s":{"n":0},"c":91},{"i":5172,"n":"Bong","f":"Fr\u00e9d\u00e9ric","p":"D","r":12,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Dp":"2","p":{"1":{"n":4.5},"2":{"n":4.5}}},"c":91},{"i":5183,"n":"Chergui","f":"Malek","p":"A","r":22,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":91},{"i":5190,"n":"Fedele","f":"Matteo","p":"M","r":10,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":91},{"i":5194,"n":"Perquis","f":"Damien","p":"G","r":13,"s":{"n":0},"c":91},{"i":5202,"n":"Chevalier","f":"Teddy","p":"A","r":7,"s":{"s":"7","n":"2","a":"3.75","d":"0.25","Ss":"7","Sn":"2","Sa":"3.75","Sd":"0.25","Os":"7","On":"2","Oa":"3.75","Od":"0.25","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":3.5}}},"c":91},{"i":5348,"n":"Ousame","f":"Abdoulaye","p":"M","r":4,"s":{"n":0},"c":91},{"i":5373,"n":"D'Almeida","f":"Sessi","p":"M","r":1,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"2":{"n":5.5}}},"c":91},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"59","On":"12","Oa":"4.92","Od":"0.89","Gp":"12","p":{"33":{"n":5,"e":3055,"c":8},"34":{"n":4,"e":3067,"c":8},"35":{"n":6.5,"e":3077,"c":8},"36":{"n":6,"e":3088,"c":8},"37":{"n":5,"e":3097,"c":8},"2":{"n":5}}},"c":92},{"i":2176,"n":"Mario Gonz\u00e1lez","f":"","p":"A","r":5,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"2":{"n":4,"s":1}}},"c":92},{"i":3519,"n":"Cissokho","f":"Till","p":"D","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"32":{"n":4.5,"e":3050,"c":3}}},"c":92},{"i":3521,"n":"Trichard","f":"Driss","p":"D","r":5,"s":{"n":0},"c":92},{"i":4832,"n":"Anoff","f":"Blankson","p":"M","r":3,"s":{"n":0},"c":92},{"i":4833,"n":"Abdul Samed","f":"Salis","p":"M","r":3,"s":{"n":0},"c":92},{"i":4856,"n":"Diako","f":"Lassana","p":"A","r":1,"s":{"n":0},"c":92},{"i":4861,"n":"Teixeira","f":"Bryan Silva","p":"A","r":1,"s":{"n":0},"c":92},{"i":4869,"n":"Allevinah","f":"Jim","p":"A","r":8,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Ap":"2","p":{"1":{"n":6,"s":1},"2":{"n":4.5,"s":1}}},"c":92},{"i":4904,"n":"Djoco","f":"Ouparine","p":"G","r":1,"s":{"n":0},"c":92},{"i":4905,"n":"Magnin","f":"Yohann","p":"M","r":6,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":92},{"i":4957,"n":"Gomis","f":"David","p":"A","r":8,"s":{"g":"1","s":"12","n":"2","a":"6.25","d":"0.75","Sg":"1","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"1","Os":"12","On":"2","Oa":"6.25","Od":"0.75","Mp":"2","p":{"1":{"n":5.5},"2":{"n":7,"g":1}}},"c":92},{"i":4964,"n":"Rajot","f":"Lorenzo","p":"M","r":7,"s":{"n":0},"c":92},{"i":5018,"n":"Pereira Lage","f":"","p":"M","r":32,"s":{"n":0},"c":92},{"i":5041,"n":"N'Simba","f":"Vital","p":"D","r":17,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":5},"2":{"n":6}}},"c":92},{"i":5066,"n":"Albert","f":"Josue","p":"D","r":10,"s":{"n":0},"c":92},{"i":5085,"n":"Zedadka","f":"Akim","p":"D","r":3,"s":{"n":0},"c":92},{"i":5100,"n":"Grbic","f":"Adrian","p":"A","r":7,"s":{"g":"2","s":"13","n":"2","a":"6.5","d":"1.5","Sg":"2","Ss":"13","Sn":"2","Sa":"6.5","Sd":"1.5","Og":"2","Os":"13","On":"2","Oa":"6.5","Od":"1.5","Ap":"2","p":{"1":{"n":8,"g":2},"2":{"n":5}}},"c":92},{"i":5103,"n":"Hountondji","f":"C\u00e9dric","p":"D","r":2,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Dp":"2","p":{"1":{"n":6},"2":{"n":6}}},"c":92},{"i":5122,"n":"Iglesias","f":"Jonathan","p":"M","r":24,"s":{"s":"13","n":"2","a":"6.5","Ss":"13","Sn":"2","Sa":"6.5","Os":"13","On":"2","Oa":"6.5","Mp":"2","p":{"1":{"n":6.5},"2":{"n":6.5}}},"c":92},{"i":5129,"n":"Berthomier","f":"Jason","p":"M","r":21,"s":{"s":"12","n":"2","a":"6.25","d":"1.25","Ss":"12","Sn":"2","Sa":"6.25","Sd":"1.25","Os":"12","On":"2","Oa":"6.25","Od":"1.25","Mp":"2","p":{"1":{"n":7.5},"2":{"n":5}}},"c":92},{"i":5140,"n":"Phojo","f":"Jerome","p":"D","r":20,"s":{"s":"12","n":"2","a":"6","d":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Os":"12","On":"2","Oa":"6","Od":"1","Dp":"2","p":{"1":{"n":7},"2":{"n":5}}},"c":92},{"i":5154,"n":"N'Diaye","f":"Alassane","p":"A","r":17,"s":{"g":"1","s":"12","n":"2","a":"6","d":"1","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Og":"1","Os":"12","On":"2","Oa":"6","Od":"1","Mp":"2","p":{"1":{"n":7,"g":1},"2":{"n":5}}},"c":92},{"i":5168,"n":"Jeannin","f":"Mehdi","p":"G","r":11,"s":{"s":"7","n":"1","a":"7","Os":"7","On":"1","Oa":"7","Gp":"1","p":{"1":{"n":7}}},"c":92},{"i":5180,"n":"Ogier","f":"Florent","p":"D","r":24,"s":{"g":"1","s":"13","n":"2","a":"6.5","d":"0.5","Sg":"1","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Og":"1","Os":"13","On":"2","Oa":"6.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":7,"g":1}}},"c":92},{"i":5198,"n":"Gastien","f":"Johan","p":"M","r":16,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Mp":"2","p":{"1":{"n":6},"2":{"n":6}}},"c":92},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":14,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"1":{"n":4},"2":{"n":5}}},"c":93},{"i":538,"n":"Vanbaleghem","f":"Valentin","p":"D","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"2":{"n":5}}},"c":93},{"i":1432,"n":"Cordoval","f":"J\u00e9r\u00e9my","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":93},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":1,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"2","p":{"1":{"n":3.5},"2":{"n":4.5}}},"c":93},{"i":3518,"n":"Ghezali","f":"Lamine","p":"A","r":5,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"29","On":"7","Oa":"4.14","Od":"0.35","Ap":"7","p":{"34":{"n":4.5,"e":3071,"c":4,"s":1},"36":{"n":4,"e":3091,"c":4,"s":1},"37":{"n":4.5,"e":3099,"c":4,"s":1},"38":{"n":4,"e":3103,"c":4,"s":1},"1":{"n":3.5,"s":1},"2":{"n":4.5}}},"c":93},{"i":4849,"n":"Keny","f":"Philippe Paulin","p":"A","r":1,"s":{"n":0},"c":93},{"i":4863,"n":"Adinany","f":"Bryan","p":"A","r":1,"s":{"n":0},"c":93},{"i":4864,"n":"Leroy","f":"Leo","p":"M","r":3,"s":{"n":0},"c":93},{"i":4881,"n":"Bedfian","f":"Wilfried","p":"G","r":1,"s":{"n":0},"c":93},{"i":4886,"n":"Soumare","f":"Moussa","p":"D","r":3,"s":{"n":0},"c":93},{"i":4908,"n":"Hassan","f":"Haissem","p":"A","r":2,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":5}}},"c":93},{"i":4922,"n":"Tormin","f":"Guevin","p":"A","r":3,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"1":{"n":3.5}}},"c":93},{"i":4972,"n":"Chevreuil","f":"Brian","p":"M","r":5,"s":{"n":0},"c":93},{"i":4987,"n":"Jung","f":"Andrew","p":"A","r":5,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"2":{"n":4,"s":1}}},"c":93},{"i":4990,"n":"Operi","f":"Christopher","p":"M","r":14,"s":{"n":0},"c":93},{"i":5001,"n":"Sissako","f":"Abdoulaye","p":"M","r":16,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"2":{"n":5,"s":1}}},"c":93},{"i":5024,"n":"Sangante","f":"Opa","p":"M","r":19,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Mp":"1","Dp":"1","p":{"1":{"n":3.5},"2":{"n":5}}},"c":93},{"i":5045,"n":"Conde","f":"Sekou","p":"D","r":14,"s":{"s":"10","n":"2","a":"5","d":"1","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Os":"10","On":"2","Oa":"5","Od":"1","Dp":"2","p":{"1":{"n":4},"2":{"n":6}}},"c":93},{"i":5049,"n":"Fallou Niang","f":"","p":"M","r":3,"s":{"n":0},"c":93},{"i":5051,"n":"Sarr","f":"Sidy","p":"M","r":10,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"2","p":{"1":{"n":3.5},"2":{"n":4.5}}},"c":93},{"i":5064,"n":"Fofana","f":"Nama","p":"D","r":16,"s":{"n":0},"c":93},{"i":5164,"n":"M'Bone","f":"Yannick","p":"M","r":17,"s":{"s":"3","n":"1","a":"3","Os":"3","On":"1","Oa":"3","Dp":"1","p":{"1":{"n":3}}},"c":93},{"i":5169,"n":"Diarra","f":"Cheick","p":"A","r":12,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"8","On":"2","Oa":"4","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":4}}},"c":93},{"i":5185,"n":"Pillot","f":"R\u00e9mi","p":"G","r":13,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Gp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":93},{"i":5212,"n":"Raineau","f":"Alexandre","p":"D","r":7,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"1","Dp":"1","p":{"1":{"n":4.5},"2":{"n":5}}},"c":93},{"i":5215,"n":"Boukari","f":"Abdoulrazak","p":"M","r":15,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5}}},"c":93},{"i":433,"n":"Raspentino","f":"Florian","p":"A","r":26,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Ap":"2","p":{"1":{"n":5},"2":{"n":3.5}}},"c":94},{"i":547,"n":"Belmonte","f":"Anthony","p":"M","r":2,"s":{"n":0},"c":94},{"i":1253,"n":"Benet","f":"Jessy","p":"M","r":15,"s":{"n":0},"c":94},{"i":1399,"n":"Tinhan","f":"Jonathan","p":"M","r":8,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4}}},"c":94},{"i":4840,"n":"Gyebohao","f":"Christian","p":"A","r":5,"s":{"n":0},"c":94},{"i":4841,"n":"Goteni","f":"Chris-Vianney","p":"D","r":3,"s":{"n":0},"c":94},{"i":4853,"n":"Loba","f":"Nathiau","p":"D","r":1,"s":{"n":0},"c":94},{"i":4857,"n":"Jurine","f":"Nicolas","p":"M","r":1,"s":{"n":0},"c":94},{"i":4868,"n":"Brun","f":"Yohan","p":"A","r":3,"s":{"n":0},"c":94},{"i":4915,"n":"Djitt\u00e9","f":"Moussa","p":"A","r":9,"s":{"g":"2","s":"12","n":"2","a":"6","d":"1.5","Sg":"2","Ss":"12","Sn":"2","Sa":"6","Sd":"1.5","Og":"2","Os":"12","On":"2","Oa":"6","Od":"1.5","Ap":"2","p":{"1":{"n":7.5,"g":2,"s":1},"2":{"n":4.5}}},"c":94},{"i":4925,"n":"Kristinsson","f":"Krist\u00f3fer","p":"A","r":5,"s":{"n":0},"c":94},{"i":4932,"n":"Coulibaly","f":"Ibrahima","p":"M","r":13,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":94},{"i":4933,"n":"Elogo","f":"Arsene","p":"M","r":18,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Mp":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5}}},"c":94},{"i":4950,"n":"Semedo","f":"Willy","p":"A","r":5,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1}}},"c":94},{"i":4979,"n":"Abdallah","f":"Abdel Hakim","p":"D","r":2,"s":{"n":0},"c":94},{"i":5059,"n":"Abou Demba","f":"Harouna","p":"D","r":14,"s":{"n":0},"c":94},{"i":5072,"n":"Pickel","f":"Charles","p":"M","r":5,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Sg":"1","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Og":"1","Os":"10","On":"2","Oa":"5","Od":"1","Mp":"2","p":{"1":{"n":6,"g":1},"2":{"n":4}}},"c":94},{"i":5088,"n":"Salles","f":"Esteban","p":"G","r":3,"s":{"n":0},"c":94},{"i":5092,"n":"Pambou","f":"Yves","p":"M","r":1,"s":{"n":0},"c":94},{"i":5107,"n":"Ondaan","f":"Terell","p":"A","r":7,"s":{"s":"10","n":"2","a":"5","d":"1.5","Ss":"10","Sn":"2","Sa":"5","Sd":"1.5","Os":"10","On":"2","Oa":"5","Od":"1.5","Ap":"2","p":{"1":{"n":6.5},"2":{"n":3.5}}},"c":94},{"i":5126,"n":"Mombris","f":"Jerome","p":"D","r":19,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"8","On":"2","Oa":"4","Dp":"2","p":{"1":{"n":4},"2":{"n":4}}},"c":94},{"i":5130,"n":"Monfray","f":"Adrien","p":"D","r":13,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Dp":"2","p":{"1":{"n":3.5},"2":{"n":4.5}}},"c":94},{"i":5141,"n":"Vandenabeele","f":"Eric","p":"D","r":17,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"2":{"n":4.5,"s":1}}},"c":94},{"i":5145,"n":"M'Changama","f":"Youssouf","p":"M","r":30,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5},"2":{"n":5}}},"c":94},{"i":5166,"n":"Camara","f":"Papa Demba","p":"G","r":12,"s":{"n":0},"c":94},{"i":5182,"n":"Gibaud","f":"Pierre","p":"D","r":13,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"8","On":"2","Oa":"4","Dp":"2","p":{"1":{"n":4},"2":{"n":4}}},"c":94},{"i":5201,"n":"Nestor","f":"Loic","p":"D","r":11,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"1":{"n":4},"2":{"n":5}}},"c":94},{"i":5207,"n":"Maubleu","f":"Brice","p":"G","r":15,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Gp":"2","p":{"1":{"n":6},"2":{"n":6}}},"c":94},{"i":5210,"n":"El Jadeyaoui","f":"Alharbi","p":"M","r":9,"s":{"n":0},"c":94},{"i":5375,"n":"Boyer","f":"Fabien","p":"D","r":1,"s":{"n":0},"c":94},{"i":478,"n":"Thill","f":"Vincent","p":"M","r":2,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"1":{"n":5.5},"2":{"n":4.5}}},"c":97},{"i":511,"n":"Perrin","f":"Gaetan","p":"M","r":15,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":5.5}}},"c":97},{"i":546,"n":"Saint-Ruf","f":"Nicolas","p":"D","r":7,"s":{"n":0},"c":97},{"i":4858,"n":"Le Pennec","f":"Ludovic","p":"G","r":1,"s":{"n":0},"c":97},{"i":4902,"n":"Hari","f":"Esteban","p":"M","r":1,"s":{"n":0},"c":97},{"i":4903,"n":"Mbelek Nouga","f":"Paul","p":"D","r":1,"s":{"n":0},"c":97},{"i":4906,"n":"Sevestre","f":"Alexis","p":"G","r":3,"s":{"n":0},"c":97},{"i":4917,"n":"El Khoumisti","f":"Fahd","p":"A","r":7,"s":{"n":0},"c":97},{"i":4929,"n":"Keita","f":"Tidiane","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":97},{"i":4930,"n":"Marchadier","f":"Alex","p":"D","r":10,"s":{"n":0},"c":97},{"i":4931,"n":"Scheidler","f":"Aurelien","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":97},{"i":4938,"n":"Fresneau","f":"Redha","p":"D","r":1,"s":{"n":0},"c":97},{"i":4941,"n":"Luzayadio","f":"Arnaud","p":"D","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"2":{"n":4.5,"s":1}}},"c":97},{"i":4953,"n":"Talal","f":"Amine","p":"M","r":6,"s":{"n":0},"c":97},{"i":4974,"n":"Ephestion","f":"Thomas","p":"M","r":16,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":4}}},"c":97},{"i":4982,"n":"Benkaid","f":"Hicham","p":"A","r":17,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"1":{"n":5}}},"c":97},{"i":5043,"n":"D'Arpino","f":"Maxime","p":"M","r":18,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"1":{"n":5},"2":{"n":6}}},"c":97},{"i":5046,"n":"Bamba","f":"Issiaka","p":"A","r":1,"s":{"n":0},"c":97},{"i":5047,"n":"Demoncy","f":"Yohan","p":"M","r":14,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"1":{"n":5.5}}},"c":97},{"i":5089,"n":"Thiam","f":"Abdoulkader","p":"D","r":1,"s":{"n":0},"c":97},{"i":5091,"n":"Mutombo Kupa","f":"Gabriel","p":"D","r":16,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"2":{"n":5}}},"c":97},{"i":5127,"n":"Correa","f":"Joris","p":"A","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":97},{"i":5135,"n":"Lambese","f":"St\u00e9phane","p":"D","r":5,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Dp":"2","p":{"1":{"n":5},"2":{"n":5}}},"c":97},{"i":5142,"n":"Vachoux","f":"J\u00e9r\u00e9my","p":"G","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Gp":"2","p":{"1":{"n":5.5},"2":{"n":5}}},"c":97},{"i":5153,"n":"Renault","f":"Thomas","p":"G","r":11,"s":{"n":0},"c":97},{"i":5160,"n":"Lopy","f":"Joseph","p":"M","r":23,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":97},{"i":5196,"n":"Cambon","f":"C\u00e9dric","p":"D","r":14,"s":{"s":"9","n":"2","a":"4.75","d":"1.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"1.25","Os":"9","On":"2","Oa":"4.75","Od":"1.25","Dp":"2","p":{"1":{"n":6},"2":{"n":3.5}}},"c":97},{"i":5199,"n":"Pinaud","f":"Gauthier","p":"D","r":14,"s":{"s":"11","n":"2","a":"5.75","d":"0.75","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Dp":"2","p":{"1":{"n":6.5},"2":{"n":5}}},"c":97},{"i":5221,"n":"Le Tallec","f":"Anthony","p":"A","r":22,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4}}},"c":97},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":6,"s":{"n":0},"c":98},{"i":459,"n":"Vion","f":"Thibaut","p":"A","r":10,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":98},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"1":{"n":4.5}}},"c":98},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":98},{"i":4862,"n":"Kone","f":"Zoumana","p":"A","r":1,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Ap":"1","p":{"1":{"n":3.5}}},"c":98},{"i":4894,"n":"Maddaloni","f":"Florent","p":"G","r":1,"s":{"n":0},"c":98},{"i":4895,"n":"Kilama Kilama","f":"Guy","p":"D","r":1,"s":{"n":0},"c":98},{"i":4911,"n":"Sissoko","f":"Ibrahim","p":"A","r":14,"s":{"n":0},"c":98},{"i":4919,"n":"Pauchet","f":"Enzo","p":"G","r":1,"s":{"n":0},"c":98},{"i":4920,"n":"Lapis","f":"Florian","p":"D","r":7,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"2":{"n":4}}},"c":98},{"i":4921,"n":"Fontani","f":"Dylan","p":"D","r":1,"s":{"n":0},"c":98},{"i":4955,"n":"Bourhane","f":"Yacine","p":"M","r":6,"s":{"n":0},"c":98},{"i":4956,"n":"Koyalipou","f":"Goduine","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"2":{"n":4.5,"s":1}}},"c":98},{"i":4966,"n":"Ameka Autchanga","f":"Louis","p":"A","r":8,"s":{"s":"7","n":"2","a":"3.75","d":"0.25","Ss":"7","Sn":"2","Sa":"3.75","Sd":"0.25","Os":"7","On":"2","Oa":"3.75","Od":"0.25","Ap":"2","p":{"1":{"n":3.5},"2":{"n":4}}},"c":98},{"i":4978,"n":"Leautey","f":"Antoine","p":"A","r":10,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"1","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":4.5}}},"c":98},{"i":4991,"n":"Bena","f":"Quentin","p":"M","r":6,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"1":{"n":4.5}}},"c":98},{"i":4994,"n":"Paro","f":"Issouf","p":"D","r":11,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":98},{"i":5014,"n":"Grich","f":"Zakaria","p":"M","r":1,"s":{"n":0},"c":98},{"i":5022,"n":"Da Costa","f":"Julien","p":"D","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"1.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"1.25","Os":"9","On":"2","Oa":"4.75","Od":"1.25","Dp":"2","p":{"1":{"n":3.5},"2":{"n":6}}},"c":98},{"i":5034,"n":"Konate","f":"Brahim","p":"M","r":10,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Mp":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5}}},"c":98},{"i":5069,"n":"Allagbe","f":"Saturnin","p":"G","r":16,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"2":{"n":5}}},"c":98},{"i":5073,"n":"Louiserre","f":"Dylan","p":"M","r":19,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Mp":"2","p":{"1":{"n":4.5},"2":{"n":6}}},"c":98},{"i":5079,"n":"Jacob","f":"Valentin","p":"M","r":23,"s":{"g":"1","s":"11","n":"2","a":"5.5","d":"1.5","Sg":"1","Ss":"11","Sn":"2","Sa":"5.5","Sd":"1.5","Og":"1","Os":"11","On":"2","Oa":"5.5","Od":"1.5","Ap":"2","p":{"1":{"n":4},"2":{"n":7,"g":1}}},"c":98},{"i":5081,"n":"Djigla","f":"David","p":"A","r":9,"s":{"n":0},"c":98},{"i":5082,"n":"Pedro Henrique","f":"","p":"A","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":98},{"i":5187,"n":"Sans","f":"Matthieu","p":"D","r":7,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":98},{"i":5363,"n":"Baroan","f":"Antoine","p":"A","r":2,"s":{"n":0},"c":98},{"i":469,"n":"Sane","f":"Pape","p":"A","r":7,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1}}},"c":100},{"i":1241,"n":"Maury","f":"Erwan","p":"M","r":6,"s":{"n":0},"c":100},{"i":4842,"n":"Secchi","f":"Thomas","p":"G","r":2,"s":{"n":0},"c":100},{"i":4843,"n":"Coelho","f":"Gr\u00e9gory","p":"A","r":2,"s":{"n":0},"c":100},{"i":4844,"n":"Garcia","f":"Hugo","p":"M","r":2,"s":{"n":0},"c":100},{"i":4845,"n":"Guerbert","f":"Mathieu","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":100},{"i":4846,"n":"Peyrelade","f":"Alexis","p":"D","r":2,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"2":{"n":5,"s":1}}},"c":100},{"i":4847,"n":"Bonnet","f":"Ugo","p":"A","r":14,"s":{"g":"1","s":"12","n":"2","a":"6","d":"1","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Og":"1","Os":"12","On":"2","Oa":"6","Od":"1","Ap":"2","p":{"1":{"n":7,"g":1},"2":{"n":5}}},"c":100},{"i":4850,"n":"Ouammou","f":"Nassim","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"2":{"n":5,"s":1}}},"c":100},{"i":4928,"n":"Ouhafsa","f":"Ayoub","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":100},{"i":4934,"n":"Dieng","f":"Nathaniel","p":"D","r":7,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":100},{"i":4954,"n":"Roche","f":"Yohan","p":"D","r":12,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Dp":"2","p":{"1":{"n":6},"2":{"n":5.5}}},"c":100},{"i":4970,"n":"Mathis","f":"Boris","p":"A","r":4,"s":{"n":0},"c":100},{"i":5016,"n":"Henry","f":"Valentin","p":"M","r":7,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"1.25","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Dp":"2","p":{"1":{"n":7,"g":1},"2":{"n":4.5}}},"c":100},{"i":5021,"n":"Caddy","f":"Dorian","p":"A","r":1,"s":{"n":0},"c":100},{"i":5027,"n":"Maanane","f":"Eddy","p":"A","r":1,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":4.5}}},"c":100},{"i":5035,"n":"Desmas","f":"Arthur","p":"G","r":13,"s":{"s":"13","n":"2","a":"6.5","d":"0.5","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Os":"13","On":"2","Oa":"6.5","Od":"0.5","Gp":"2","p":{"1":{"n":7},"2":{"n":6}}},"c":100},{"i":5055,"n":"Jacob","f":"Corentin","p":"D","r":2,"s":{"n":0},"c":100},{"i":5075,"n":"M'Pasi N'Zau","f":"Lionel","p":"G","r":1,"s":{"n":0},"c":100},{"i":5094,"n":"Ruffaut","f":"Pierre","p":"M","r":14,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":100},{"i":5096,"n":"Chougrani","f":"Joris","p":"D","r":7,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":100},{"i":5097,"n":"Bardy","f":"Pierre","p":"D","r":9,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"1":{"n":5.5}}},"c":100},{"i":5098,"n":"Dady Ngoye","f":"Francis","p":"M","r":6,"s":{"n":0},"c":100},{"i":5124,"n":"Douline","f":"David","p":"D","r":1,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Mp":"2","p":{"1":{"n":6},"2":{"n":5.5}}},"c":100},{"i":5149,"n":"Tertereau","f":"Aur\u00e9lien","p":"M","r":11,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":6}}},"c":100},{"i":5189,"n":"Poujol","f":"Lo\u00efc","p":"M","r":9,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"2":{"n":5.5}}},"c":100},{"i":5200,"n":"Sanaia","f":"Amiran","p":"D","r":13,"s":{"n":0},"c":100},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":15,"s":{"s":"10","n":"2","a":"5.25","d":"1.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"1.25","Os":"10","On":"2","Oa":"5.25","Od":"1.25","Gp":"2","p":{"1":{"n":4},"2":{"n":6.5}}},"c":101},{"i":306,"n":"Bellugou","f":"Francois","p":"M","r":15,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"1":{"n":4.5},"2":{"n":5.5}}},"c":101},{"i":372,"n":"Adeoti","f":"Jordan","p":"D","r":18,"s":{"n":0},"c":101},{"i":519,"n":"Arcus","f":"Carlens","p":"D","r":14,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Dp":"2","p":{"1":{"n":4.5},"2":{"n":6}}},"c":101},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":7,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2","p":{"35":{"n":6,"e":3072,"c":16}}},"c":101},{"i":4859,"n":"Chergui","f":"Samir Sophian","p":"M","r":1,"s":{"n":0},"c":101},{"i":4923,"n":"Begraoui","f":"Yanis","p":"A","r":4,"s":{"n":0},"c":101},{"i":4937,"n":"Marcelin","f":"Jean","p":"M","r":3,"s":{"n":0},"c":101},{"i":4949,"n":"Laiton","f":"Sonny","p":"G","r":5,"s":{"n":0},"c":101},{"i":4977,"n":"Merdji","f":"Yanis","p":"A","r":7,"s":{"g":"2","s":"11","n":"2","a":"5.5","d":"2","Sg":"2","Ss":"11","Sn":"2","Sa":"5.5","Sd":"2","Og":"2","Os":"11","On":"2","Oa":"5.5","Od":"2","Ap":"2","p":{"1":{"n":3.5},"2":{"n":7.5,"g":2,"s":1}}},"c":101},{"i":5031,"n":"Fomba","f":"Lamine","p":"M","r":18,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5,"s":1},"2":{"n":5,"s":1}}},"c":101},{"i":5063,"n":"Youssouf","f":"Bendjaloud","p":"D","r":6,"s":{"n":0},"c":101},{"i":5070,"n":"Boto","f":"Kenji-Van","p":"D","r":18,"s":{"n":0},"c":101},{"i":5087,"n":"Fumu Tamuzo","f":"Fran\u00e7ois-Xavier","p":"M","r":6,"s":{"n":0},"c":101},{"i":5102,"n":"Ba","f":"Abdoul","p":"D","r":4,"s":{"n":0},"c":101},{"i":5109,"n":"Sakhi","f":"Hamza","p":"M","r":14,"s":{"s":"11","n":"2","a":"5.75","d":"1.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":7}}},"c":101},{"i":5121,"n":"Ji Xiaoxuan","f":"","p":"A","r":1,"s":{"n":0},"c":101},{"i":5137,"n":"Tour\u00e9","f":"Birama","p":"M","r":14,"s":{"s":"11","n":"2","a":"5.75","d":"1.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":7}}},"c":101},{"i":5151,"n":"Yattara","f":"Mohamed","p":"A","r":17,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":4}}},"c":101},{"i":5155,"n":"Bernard","f":"Quentin","p":"D","r":13,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"1":{"n":4},"2":{"n":5}}},"c":101},{"i":5171,"n":"Dugimont","f":"R\u00e9my","p":"A","r":17,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":3.5},"2":{"n":4.5,"s":1}}},"c":101},{"i":5174,"n":"Barreto","f":"Mickael","p":"M","r":13,"s":{"s":"11","n":"2","a":"5.75","d":"1.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":7}}},"c":101},{"i":5192,"n":"Souprayen","f":"Samuel","p":"D","r":13,"s":{"s":"12","n":"2","a":"6","d":"1.5","Ss":"12","Sn":"2","Sa":"6","Sd":"1.5","Os":"12","On":"2","Oa":"6","Od":"1.5","Dp":"2","p":{"1":{"n":4.5},"2":{"n":7.5}}},"c":101},{"i":5352,"n":"Raux Yao","f":"Serge","p":"D","r":1,"s":{"n":0},"c":101},{"i":5369,"n":"Camara","f":"Ousoumane","p":"M","r":1,"s":{"n":0},"c":101},{"i":5378,"n":"Coeff","f":"Alexandre","p":"D","r":7,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"2":{"n":5.5}}},"c":101},{"i":5379,"n":"Sorgic","f":"Dejan","p":"A","r":15,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5}}},"c":101},{"i":371,"n":"Tour\u00e9","f":"Thomas","p":"A","r":3,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5}}},"c":102},{"i":385,"n":"Paye","f":"Pape","p":"D","r":6,"s":{"n":0},"c":102},{"i":521,"n":"Kaabouni","f":"Younes","p":"M","r":3,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":102},{"i":565,"n":"Livolant","f":"Jeremy","p":"M","r":17,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":6,"s":1}}},"c":102},{"i":4870,"n":"Sans","f":"Romain","p":"D","r":2,"s":{"n":0},"c":102},{"i":4892,"n":"Umbdenstock","f":"Isaak","p":"M","r":1,"s":{"n":0},"c":102},{"i":4893,"n":"Moltenis","f":"Boris Sebastian","p":"D","r":5,"s":{"n":0},"c":102},{"i":4912,"n":"Ourega","f":"Fabien","p":"A","r":12,"s":{"g":"1","s":"12","n":"2","a":"6","d":"0.5","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"0.5","Og":"1","Os":"12","On":"2","Oa":"6","Od":"0.5","Mp":"2","p":{"1":{"n":5.5},"2":{"n":6.5,"g":1}}},"c":102},{"i":4914,"n":"M'Bakata","f":"Salem","p":"D","r":7,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":102},{"i":4916,"n":"Glaentzlin","f":"Victor","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":102},{"i":4947,"n":"Lacroix","f":"Maxence","p":"D","r":3,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"2":{"n":5}}},"c":102},{"i":4986,"n":"Lasme","f":"Bryan","p":"A","r":8,"s":{"n":0},"c":102},{"i":4988,"n":"Pendant","f":"Jason","p":"D","r":11,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5}}},"c":102},{"i":5005,"n":"Weissbeck","f":"Gaetan","p":"M","r":1,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"1":{"n":5.5},"2":{"n":4.5}}},"c":102},{"i":5007,"n":"Senhadji","f":"Rayan","p":"D","r":1,"s":{"n":0},"c":102},{"i":5028,"n":"Prevot","f":"Maxence","p":"G","r":15,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5}}},"c":102},{"i":5029,"n":"Aubin Long","f":"","p":"G","r":2,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5,"s":1}}},"c":102},{"i":5038,"n":"Francois","f":"Martin","p":"M","r":2,"s":{"n":0},"c":102},{"i":5053,"n":"Daham","f":"Sofiane","p":"M","r":16,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":102},{"i":5067,"n":"Ati","f":"Lawrence","p":"G","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"2":{"n":5}}},"c":102},{"i":5076,"n":"Senzemba","f":"Nicolas","p":"D","r":5,"s":{"n":0},"c":102},{"i":5105,"n":"Di\u00e9dhiou","f":"Christophe","p":"D","r":8,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":102},{"i":5159,"n":"Sane","f":"Abdoulaye","p":"A","r":13,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4}}},"c":102},{"i":5195,"n":"Tope Obadeyi","f":"","p":"M","r":4,"s":{"n":0},"c":102},{"i":5347,"n":"Sitti","f":"Melvin","p":"M","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"2":{"n":5.5}}},"c":102},{"i":5372,"n":"Thioune","f":"Ousseynou","p":"M","r":2,"s":{"n":0},"c":102},{"i":5380,"n":"Sissoko","f":"Mohamed","p":"M","r":6,"s":{"n":0},"c":102},{"i":399,"n":"L\u00e9v\u00eaque","f":"Dorian","p":"D","r":5,"s":{"n":0},"c":103},{"i":554,"n":"Maziz","f":"Youssef","p":"M","r":3,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"2":{"n":4}}},"c":103},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":6,"s":{"s":"4","n":"1","a":"4.5","Os":"36","On":"8","Oa":"4.5","Od":"0.25","Mp":"1","Ap":"7","p":{"1":{"n":4.5,"s":1}}},"c":103},{"i":1443,"n":"Confais","f":"Alois","p":"M","r":7,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"2":{"n":3.5}}},"c":103},{"i":1456,"n":"Gope-Fenepej","f":"Georges","p":"A","r":2,"s":{"n":0},"c":103},{"i":4852,"n":"Duponchelle","f":"Tom","p":"D","r":9,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5,"s":1}}},"c":103},{"i":4907,"n":"Patron","f":"Pierre","p":"G","r":1,"s":{"n":0},"c":103},{"i":4960,"n":"Moussiti-Oko","f":"Bevic","p":"A","r":7,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1","Sg":"1","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Og":"1","Os":"10","On":"2","Oa":"5","Od":"1","Ap":"2","p":{"1":{"n":6,"g":1},"2":{"n":4}}},"c":103},{"i":4971,"n":"Diagne","f":"Ousseynou Cavin","p":"M","r":2,"s":{"n":0},"c":103},{"i":5017,"n":"Diarra","f":"St\u00e9phane","p":"A","r":6,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"1":{"n":5.5},"2":{"n":4.5,"s":1}}},"c":103},{"i":5052,"n":"Dasquet","f":"Thomas","p":"D","r":11,"s":{"n":0},"c":103},{"i":5054,"n":"Ebosse","f":"Enzo","p":"D","r":2,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Dp":"2","p":{"1":{"n":4},"2":{"n":4.5}}},"c":103},{"i":5078,"n":"Lemonnier","f":"Pierre","p":"D","r":15,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"8","On":"2","Oa":"4","Dp":"2","p":{"1":{"n":4},"2":{"n":4}}},"c":103},{"i":5095,"n":"Boissier","f":"Remy","p":"M","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.75","Os":"9","On":"2","Oa":"4.75","Od":"0.75","Mp":"2","p":{"1":{"n":5.5},"2":{"n":4}}},"c":103},{"i":5115,"n":"Bo\u00e9-Kane","f":"Yann","p":"M","r":13,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"1","Dp":"1","p":{"1":{"n":5},"2":{"n":4}}},"c":103},{"i":5139,"n":"Hafidi","f":"Hamza","p":"M","r":5,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Mp":"2","p":{"1":{"n":5},"2":{"n":3.5}}},"c":103},{"i":5144,"n":"Vardin","f":"Alexandre","p":"D","r":10,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":103},{"i":5177,"n":"Julienne","f":"Frank","p":"A","r":10,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":3.5}}},"c":103},{"i":5184,"n":"Cr\u00e9hin","f":"Vincent Kevin","p":"A","r":6,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Ap":"2","p":{"1":{"n":5.5},"2":{"n":4.5,"s":1}}},"c":103},{"i":5193,"n":"Yohann Thuram","f":"","p":"G","r":18,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Gp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":103},{"i":5208,"n":"Vincent","f":"St\u00e9phen","p":"A","r":8,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"1","Dp":"1","p":{"1":{"n":4},"2":{"n":4.5,"s":1}}},"c":103},{"i":5213,"n":"Aymes","f":"J\u00e9r\u00e9my","p":"G","r":7,"s":{"n":0},"c":103},{"i":5345,"n":"Rambaud","f":"Thibault","p":"M","r":5,"s":{"n":0},"c":103},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"124","On":"25","Oa":"4.96","Od":"0.9","Mp":"20","Dp":"4","Ap":"1","p":{"31":{"n":5,"e":3041,"c":10,"s":1},"32":{"n":5,"e":3047,"c":10},"34":{"n":3.5,"e":3071,"c":10},"36":{"n":5,"e":3082,"c":10,"s":1},"37":{"n":4.5,"e":3101,"c":10,"s":1},"1":{"n":4.5,"s":1},"2":{"n":5,"s":1}}},"c":104},{"i":92,"n":"Leca","f":"Jean-Louis","p":"G","r":22,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Gp":"1","p":{"2":{"n":6}}},"c":104},{"i":175,"n":"Gillet","f":"Guillaume","p":"M","r":18,"s":{"s":"11","n":"2","a":"5.75","d":"1.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":7}}},"c":104},{"i":237,"n":"Mesloub","f":"Walid","p":"M","r":23,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"2":{"n":5,"s":1}}},"c":104},{"i":373,"n":"Tahrat","f":"Mehdi","p":"D","r":18,"s":{"n":0},"c":104},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":6,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":5},"2":{"n":6}}},"c":104},{"i":488,"n":"Vincensini","f":"Thomas","p":"G","r":1,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Gp":"1","p":{"1":{"n":5.5}}},"c":104},{"i":1208,"n":"Steven Fortes","f":"","p":"D","r":11,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"22","On":"4","Oa":"5.5","Od":"0.35","Dp":"4","p":{"1":{"n":5.5},"2":{"n":6}}},"c":104},{"i":1518,"n":"Massadio Haidara","f":"","p":"D","r":12,"s":{"n":0},"c":104},{"i":4865,"n":"Ducrocq","f":"Tom","p":"M","r":1,"s":{"n":0},"c":104},{"i":4898,"n":"Simon","f":"Nsana","p":"M","r":1,"s":{"n":0},"c":104},{"i":4926,"n":"Gomel","f":"Benjamin","p":"A","r":1,"s":{"n":0},"c":104},{"i":4943,"n":"Bari","f":"Bilal","p":"A","r":2,"s":{"n":0},"c":104},{"i":4944,"n":"Doucoure","f":"Cheick Oumar","p":"M","r":20,"s":{"n":0},"c":104},{"i":4965,"n":"Robail","f":"Ga\u00ebtan","p":"M","r":25,"s":{"g":"1","s":"13","n":"2","a":"6.5","d":"1.5","Sg":"1","Ss":"13","Sn":"2","Sa":"6.5","Sd":"1.5","Og":"1","Os":"13","On":"2","Oa":"6.5","Od":"1.5","Mp":"2","p":{"1":{"n":5},"2":{"n":8,"g":1}}},"c":104},{"i":4983,"n":"Teka","f":"Seif","p":"D","r":6,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Dp":"1","p":{"2":{"n":6}}},"c":104},{"i":4997,"n":"Beghin","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":104},{"i":5000,"n":"Wojtkowiak","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":104},{"i":5002,"n":"Duverne","f":"Jean-Kevin","p":"D","r":10,"s":{"n":0},"c":104},{"i":5003,"n":"Radovanovic","f":"Aleksandar","p":"D","r":10,"s":{"n":0},"c":104},{"i":5010,"n":"Gomis","f":"Yannick","p":"A","r":30,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"1":{"n":5}}},"c":104},{"i":5013,"n":"Desprez","f":"Didier","p":"G","r":1,"s":{"n":0},"c":104},{"i":5019,"n":"Mendy","f":"Arial","p":"D","r":9,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"6","On":"1","Oa":"6.5","Dp":"1","p":{"2":{"n":6.5}}},"c":104},{"i":5030,"n":"Banza","f":"Simon","p":"A","r":8,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Ap":"2","p":{"1":{"n":6,"s":1},"2":{"n":5}}},"c":104},{"i":5040,"n":"Vitor Costa","f":"","p":"D","r":6,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":104},{"i":5050,"n":"Souleymane Diarra","f":"","p":"M","r":17,"s":{"n":0},"c":104},{"i":5057,"n":"Chouiar","f":"Mounir","p":"A","r":16,"s":{"g":"2","s":"13","n":"2","a":"6.75","d":"0.75","Sg":"2","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.75","Og":"2","Os":"13","On":"2","Oa":"6.75","Od":"0.75","Ap":"2","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":7.5,"g":1,"s":1}}},"c":104},{"i":5061,"n":"Sotoca","f":"Florian","p":"A","r":26,"s":{"g":"1","s":"14","n":"2","a":"7","d":"0.5","Sg":"1","Ss":"14","Sn":"2","Sa":"7","Sd":"0.5","Og":"1","Os":"14","On":"2","Oa":"7","Od":"0.5","Mp":"2","p":{"1":{"n":7.5,"g":1},"2":{"n":6.5}}},"c":104},{"i":5074,"n":"Mauricio","f":"Tony","p":"M","r":30,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5},"2":{"n":5}}},"c":104},{"i":5083,"n":"Madri","f":"Mouaad","p":"A","r":1,"s":{"n":0},"c":104},{"i":5147,"n":"Ba","f":"El-Hadji","p":"M","r":15,"s":{"n":0},"c":104},{"i":5176,"n":"Perez","f":"Manuel","p":"M","r":13,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":5.5}}},"c":104},{"i":5228,"n":"Sylla","f":"Moussa","p":"D","r":4,"s":{"n":0},"c":104},{"i":5346,"n":"Sene","f":"Cheikh Cory","p":"D","r":7,"s":{"n":0},"c":104},{"i":5360,"n":"Boli","f":"Charles","p":"M","r":1,"s":{"n":0},"c":104},{"i":5366,"n":"Valencia","f":"Jader","p":"A","r":1,"s":{"n":0},"c":104}],"c":{"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":4,"el":939,"s":{"p":1},"nM":5038,"nMWC":"0.3841","pM":{"31":3038,"32":3042,"33":3056,"34":3065,"35":3073,"37":3095,"38":3104,"36":3084,"2":5057,"1":5065},"DMI":[]},"6":{"n":"Lorient","rn":"FC Lorient","cn":"FC-Lorient","a":"LOR","l":4,"el":1035,"s":{"p":6},"nM":5042,"nMWC":"0.6199","pM":{"2":5057,"1":5067},"DMI":[]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":4,"el":903,"s":{"p":1},"nM":5040,"nMWC":"0.4201","pM":{"35":3073,"32":3051,"1":5061,"2":5056,"31":3035,"33":3053,"34":3069,"36":3090,"37":3093,"38":3102},"DMI":[]},"17":{"n":"Nancy","rn":"AS Nancy Lorraine","cn":"AS-Nancy-Lorraine","a":"NAN","l":4,"el":950,"s":{"p":2},"nM":5042,"nMWC":"0.3801","pM":{"1":5062,"2":5055},"DMI":[]},"43":{"n":"Troyes","rn":"ESTAC Troyes","cn":"ESTAC-Troyes","a":"TRO","l":4,"el":878,"s":{"p":3},"nM":5046,"nMWC":"0.3351","pM":{"1":5063,"2":5054},"DMI":[]},"88":{"n":"Ajaccio","rn":"AC Ajaccio","cn":"AC-Ajaccio","a":"ACA","l":4,"el":1021,"s":{"p":4},"nM":5038,"nMWC":"0.6159","pM":{"1":5058,"2":5050},"DMI":[]},"89":{"n":"Le Havre","rn":"Le Havre AC","cn":"Le-Havre-AC","a":"HAC","l":4,"el":997,"s":{"p":2},"nM":5046,"nMWC":"0.6649","pM":{"1":5058,"2":5051},"DMI":[]},"90":{"n":"Chambly","rn":"FC Chambly Oise","cn":"FC-Chambly-Oise","a":"FCCO","l":4,"el":1045,"s":{"p":6},"nM":5039,"nMWC":"0.6267","pM":{"1":5059,"2":5052},"DMI":[]},"91":{"n":"Valenciennes","rn":"Valentiennes FC","cn":"Valentiennes-FC","a":"VFC","l":4,"el":971,"s":{"p":1},"nM":5041,"nMWC":"0.5459","pM":{"2":5055,"1":5059},"DMI":[]},"92":{"n":"Clermont","rn":"Clermont Foot 63","cn":"Clermont-Foot-63","a":"CF63","l":4,"el":1040,"s":{"p":6},"nM":5047,"nMWC":"0.4957","pM":{"2":5054,"1":5060},"DMI":[]},"93":{"n":"Ch\u00e2teauroux","rn":"Berrichonne de Ch\u00e2teauroux","cn":"Berrichonne-de-Chateauroux","a":"BCH","l":4,"el":980,"s":{"p":1},"nM":5043,"nMWC":"0.5187","pM":{"1":5060,"2":5049},"DMI":[]},"94":{"n":"Grenoble","rn":"Grenoble Foot 38","cn":"Grenoble-Foot-38","a":"GF38","l":4,"el":955,"s":{"p":1},"nM":5039,"nMWC":"0.3733","pM":{"1":5061,"2":5050},"DMI":[]},"97":{"n":"Orl\u00e9ans","rn":"US Orl\u00e9ans Loiret","cn":"US-Orleans-Loiret","a":"USOL","l":4,"el":959,"s":{"p":1},"nM":5040,"nMWC":"0.5799","pM":{"1":5062,"2":5052},"DMI":[]},"98":{"n":"Niort","rn":"Chamois Niortais FC","cn":"Chamois-Niortais-FC","a":"CNFC","l":4,"el":967,"s":{"p":1},"nM":5043,"nMWC":"0.4813","pM":{"1":5063,"2":5051},"DMI":[]},"100":{"n":"Rodez","rn":"Rodez Aveyron Football","cn":"Rodez-Aveyron-Football","a":"RAF","l":4,"el":1021,"s":{"p":4},"nM":5044,"nMWC":"0.2608","pM":{"2":5049,"1":5064},"DMI":[]},"101":{"n":"Auxerre","rn":"AJ Auxerre","cn":"AJ-Auxerre","a":"AJA","l":4,"el":1015,"s":{"p":3},"nM":5045,"nMWC":"0.4957","pM":{"1":5064,"2":5048},"DMI":[]},"102":{"n":"Sochaux","rn":"FC Sochaux-Montb\u00e9liard","cn":"FC-Sochaux-Montbeliard","a":"FCSM","l":4,"el":1018,"s":{"p":2},"nM":5045,"nMWC":"0.5043","pM":{"1":5065,"2":5053},"DMI":[]},"103":{"n":"Le Mans","rn":"Le Mans FC","cn":"Le-Mans-FC","a":"LMFC","l":4,"el":939,"s":{"p":0},"nM":5041,"nMWC":"0.4541","pM":{"2":5048,"1":5066},"DMI":[]},"104":{"n":"Lens","rn":"Racing Club de Lens","cn":"Racing-Club-de-Lens","a":"RCL","l":4,"el":1043,"s":{"p":6},"nM":5047,"nMWC":"0.5043","pM":{"2":5056,"1":5066},"DMI":[]}},"op":{"2":{"n":"Paris","l":1,"el":1202,"s":{"p":1}},"67":{"n":"N\u00eemes","l":1,"el":1061},"16":{"n":"Angers","l":1,"el":1064},"19":{"n":"Nice","l":1,"el":1097},"7":{"n":"Dijon","l":1,"el":1028},"18":{"n":"Lyon","l":1,"el":1215},"3":{"n":"Bordeaux","l":1,"el":975},"68":{"n":"Reims","l":1,"el":1086},"41":{"n":"Strasbourg","l":1,"el":1053},"15":{"n":"Montpellier","l":1,"el":1142},"42":{"n":"Amiens","l":1,"el":1029},"9":{"n":"Marseille","l":1,"el":1147},"20":{"n":"Rennes","l":1,"el":1095},"8":{"n":"Nantes","l":1,"el":1059},"4":{"n":"Saint Etienne","l":1,"el":1154},"10":{"n":"Toulouse","l":1,"el":950},"13":{"n":"Monaco","l":1,"el":1019},"12":{"n":"Lille","l":1,"el":1199}},"e":{"3038":{"d":31,"dB":"2019-04-06T18:00:00Z","t1s":2,"t2s":0,"t1":67,"t2":5},"3042":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":16},"3056":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":5},"3065":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":7},"3073":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":5},"3095":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":18,"t2":5},"3104":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":5,"t2":3},"3084":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":3,"t2s":2,"t1":5,"t2":68},"5057":{"d":2,"dB":"2019-08-05T18:45:00Z","t1s":1,"t2s":2,"t1":5,"t2":6},"5065":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":0,"t1":102,"t2":5},"3039":{"d":31,"dB":"2019-04-07T19:00:00Z","t1s":2,"t2s":2,"t1":2,"t2":41},"3051":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":3,"t2s":3,"t1":41,"t2":14},"3060":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":1,"t2s":3,"t1":41,"t2":15},"3062":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":41},"3080":{"d":35,"dB":"2019-05-03T18:45:00Z","t1s":1,"t2s":1,"t1":41,"t2":9},"3085":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":41},"3100":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":2,"t1":41,"t2":20},"3107":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":8,"t2":41},"5067":{"d":1,"dB":"2019-07-29T18:45:00Z","t1s":3,"t2s":0,"t1":6,"t2":2},"3045":{"d":32,"dB":"2019-04-13T15:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":67},"3057":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":2,"t2s":1,"t1":67,"t2":3},"3071":{"d":34,"dB":"2019-04-28T15:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":10},"3091":{"d":36,"dB":"2019-05-10T18:45:00Z","t1s":0,"t2s":1,"t1":4,"t2":15},"3099":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":19},"5061":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":3,"t1":14,"t2":94},"5056":{"d":2,"dB":"2019-08-03T14:30:00Z","t1s":2,"t2s":0,"t1":104,"t2":14},"3035":{"d":31,"dB":"2019-04-06T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":13},"3053":{"d":33,"dB":"2019-04-20T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":9},"3069":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":3,"t2s":0,"t1":19,"t2":14},"3090":{"d":36,"dB":"2019-05-12T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":14},"3093":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":2,"t1":14,"t2":67},"3102":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":42,"t2":14},"5062":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":0,"t1":17,"t2":97},"5055":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":91,"t2":17},"3066":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":67},"3103":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":1,"t2s":1,"t1":16,"t2":4},"5063":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":2,"t1":98,"t2":43},"5054":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":2,"t1":43,"t2":92},"3076":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":42},"5058":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":2,"t1":88,"t2":89},"5050":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":1,"t1":94,"t2":88},"3109":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":3,"t1":67,"t2":18},"5051":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":89,"t2":98},"5059":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":1,"t2s":0,"t1":90,"t2":91},"5052":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":90},"3055":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":42},"3067":{"d":34,"dB":"2019-04-28T19:00:00Z","t1s":1,"t2s":2,"t1":9,"t2":8},"3077":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":3,"t2s":0,"t1":8,"t2":7},"3088":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":8},"3097":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":8},"3050":{"d":32,"dB":"2019-04-14T15:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":3},"5060":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":0,"t1":92,"t2":93},"5049":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":0,"t1":93,"t2":100},"5064":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":0,"t1":100,"t2":101},"5048":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":2,"t2s":0,"t1":101,"t2":103},"3072":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":16},"5053":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":2,"t2":102},"5066":{"d":1,"dB":"2019-07-27T13:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":104},"3041":{"d":31,"dB":"2019-04-07T13:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":8},"3047":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":2,"t2s":1,"t1":15,"t2":10},"3082":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":10},"3101":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":5,"t1":10,"t2":9}},"Ne":{"5038":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":88,"t2":5},"5042":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":17,"t2":6},"5040":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":14,"t2":97},"5046":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":43,"t2":89},"5039":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":90,"t2":94},"5041":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":103,"t2":91},"5047":{"d":3,"dB":"2019-08-10T13:00:00Z","t1":92,"t2":104},"5043":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":98,"t2":93},"5044":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":100,"t2":2},"5045":{"d":3,"dB":"2019-08-09T18:00:00Z","t1":102,"t2":101}},"k":"cfbdc6"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-2.20190818.json b/src/test/resources/__files/mpgstats.ligue-2.20190818.json deleted file mode 100644 index b4e9d29..0000000 --- a/src/test/resources/__files/mpgstats.ligue-2.20190818.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-08-14T16:34:27Z","mL":{"i":4,"n":"Ligue 2","cN":"Ligue-2","u":"\/league\/Ligue-2","aS":{"cN":"Ligue-2-2019-2020","i":12,"n":"Ligue 2 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":3,"lD":3}}},"mxD":3,"np":611,"le":{"4":"Ligue-2","1":"Ligue-1"},"p":[{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":26,"s":{"n":0,"Og":"6","Os":"142","On":"32","Oa":"4.44","Od":"0.97","Mp":"2","Ap":"30","p":{"32":{"n":4.5},"33":{"n":4.5},"34":{"n":4},"35":{"n":4},"37":{"n":3},"38":{"n":3.5}}},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":21,"s":{"n":0,"Og":"2","Os":"153","On":"30","Oa":"5.12","Od":"0.69","Mp":"30","p":{"32":{"n":4},"33":{"n":5.5},"34":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":5.5,"s":1},"37":{"n":5,"s":1}}},"c":5},{"i":162,"n":"Riou","f":"R\u00e9my","p":"G","r":17,"s":{"n":0},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":7,"s":{"n":0,"Og":"2","Os":"82","On":"17","Oa":"4.85","Od":"0.51","Mp":"7","Ap":"10"},"c":5},{"i":311,"n":"Pi","f":"Jessy","p":"M","r":10,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Os":"14","On":"3","Oa":"4.83","Od":"0.62","Mp":"3","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5.5}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":5,"s":{"n":0,"Os":"23","On":"5","Oa":"4.7","Od":"0.6","Dp":"5"},"c":5},{"i":335,"n":"Rivierez","f":"Jonathan","p":"D","r":8,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5.5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":20,"s":{"s":"5","n":"1","a":"5.5","Os":"220","On":"38","Oa":"5.8","Od":"1","Gp":"38","p":{"32":{"n":5.5},"33":{"n":8.5},"34":{"n":6.5},"35":{"n":6},"36":{"n":6},"37":{"n":6},"38":{"n":6},"1":{"n":5.5}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":9,"s":{"n":0,"Os":"71","On":"15","Oa":"4.77","Od":"0.79","Mp":"1","Dp":"14","p":{"32":{"n":4.5},"33":{"n":5},"35":{"n":5},"36":{"n":6},"37":{"n":3},"38":{"n":4.5}}},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":11,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"1.25","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"1","Os":"81","On":"16","Oa":"5.06","Od":"0.63","Mp":"16","p":{"33":{"n":5},"34":{"n":5,"s":1},"35":{"n":4.5},"2":{"n":4.5},"3":{"n":7,"g":1}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":8,"s":{"n":0,"Os":"89","On":"18","Oa":"4.94","Od":"0.85","Mp":"16","Dp":"2"},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"n":0,"Os":"29","On":"6","Oa":"4.83","Od":"0.55","Mp":"6"},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"50","On":"10","Oa":"5","Od":"0.55","Mp":"1","Dp":"9","p":{"3":{"n":5,"s":1}}},"c":5},{"i":1237,"n":"Avounou","f":"Durel","p":"M","r":19,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"5","Sn":"1","Sa":"5.5","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"3":{"n":5.5,"s":1}}},"c":5},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":13,"s":{"s":"14","n":"3","a":"4.83","d":"0.94","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.94","Og":"4","Os":"95","On":"18","Oa":"5.28","Od":"1","Mp":"15","Dp":"3","p":{"32":{"n":5.5,"e":3051,"c":41},"33":{"n":3.5,"e":3060,"c":41},"34":{"n":5,"e":3062,"c":41,"s":1},"35":{"n":5,"e":3080,"c":41,"s":1},"36":{"n":5,"e":3085,"c":41},"37":{"n":5,"e":3100,"c":41},"38":{"n":5.5,"e":3107,"c":41},"1":{"n":5.5},"2":{"n":3.5},"3":{"n":5.5}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"2":{"n":4}}},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":1,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":16,"s":{"g":"2","s":"19","n":"3","a":"6.5","d":"0.71","Sg":"2","Ss":"19","Sn":"3","Sa":"6.5","Sd":"0.71","Og":"2","Os":"109","On":"21","Oa":"5.21","Od":"1.09","Mp":"21","p":{"32":{"n":4.5},"33":{"n":5.5},"34":{"n":6.5},"35":{"n":5},"36":{"n":6},"37":{"n":3.5},"38":{"n":6},"1":{"n":5.5},"2":{"n":7,"g":1},"3":{"n":7,"g":1}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":18,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"144","On":"30","Oa":"4.8","Od":"0.73","Mp":"2","Dp":"28","p":{"33":{"n":5,"s":1},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":4.5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":8,"s":{"n":0},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":14,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"130","On":"29","Oa":"4.48","Od":"0.53","Mp":"3","Ap":"26","p":{"33":{"n":5,"s":1},"34":{"n":4.5},"35":{"n":3.5},"36":{"n":5},"38":{"n":4},"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":5.5}}},"c":5},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":16,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Oao":"1","Os":"123","On":"26","Oa":"4.75","Od":"1.02","Mp":"1","Dp":"25","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":3},"38":{"n":5},"1":{"n":5},"2":{"n":4.5}}},"c":5},{"i":2935,"n":"Zahary","f":"Younn","p":"D","r":6,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"56","On":"12","Oa":"4.71","Od":"0.83","Dp":"12","p":{"32":{"n":5,"s":1},"33":{"n":5.5},"34":{"n":5},"35":{"n":5},"36":{"n":4,"s":1},"37":{"n":2.5},"3":{"n":6,"s":1}}},"c":5},{"i":2940,"n":"Joseph","f":"Evens","p":"M","r":6,"s":{"n":0,"Os":"44","On":"10","Oa":"4.45","Od":"0.69","Mp":"10"},"c":5},{"i":3189,"n":"Elhadji Djibril Diaw","f":"","p":"D","r":5,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Ss":"3","Sn":"1","Sa":"3.5","Os":"13","On":"3","Oa":"4.5","Od":"0.71","Dp":"3","p":{"1":{"n":5},"3":{"n":3.5}}},"c":5},{"i":3230,"n":"Mouaddib","f":"Jad","p":"M","r":1,"s":{"n":0},"c":5},{"i":3503,"n":"Kyeremeh","f":"Godson","p":"M","r":1,"s":{"n":0},"c":5},{"i":3504,"n":"Tutu","f":"Brice","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":5},{"i":3524,"n":"Moussaki","f":"Herman","p":"A","r":1,"s":{"s":"15","n":"3","a":"5","d":"1.41","Ss":"15","Sn":"3","Sa":"5","Sd":"1.41","Os":"23","On":"5","Oa":"4.7","Od":"1.17","Mp":"1","Ap":"4","p":{"37":{"n":4,"s":1},"38":{"n":4.5},"1":{"n":4},"2":{"n":4},"3":{"n":7}}},"c":5},{"i":3820,"n":"Weber","f":"Anthony","p":"D","r":15,"s":{"s":"16","n":"3","a":"5.33","d":"0.62","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Os":"16","On":"3","Oa":"5.33","Od":"0.62","Dp":"3","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6}}},"c":5},{"i":5037,"n":"Issoko","f":"Arnold","p":"D","r":6,"s":{"n":0},"c":5},{"i":5353,"n":"Vandermersch","f":"Hugo","p":"D","r":3,"s":{"n":0},"c":5},{"i":127,"n":"Marveaux","f":"Sylvain","p":"M","r":19,"s":{"n":0},"c":6},{"i":149,"n":"Peybernes","f":"Mathieu","p":"D","r":9,"s":{"n":0},"c":6},{"i":154,"n":"Delaplace","f":"Jonathan","p":"M","r":8,"s":{"n":0},"c":6},{"i":164,"n":"Le Goff","f":"Vincent","p":"D","r":25,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5}}},"c":6},{"i":179,"n":"Cabot","f":"Jimmy","p":"M","r":22,"s":{"g":"1","s":"17","n":"3","a":"5.83","d":"1.25","Sg":"1","Ss":"17","Sn":"3","Sa":"5.83","Sd":"1.25","Og":"1","Os":"17","On":"3","Oa":"5.83","Od":"1.25","Mp":"3","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":4.5}}},"c":6},{"i":340,"n":"Lemoine","f":"Fabien","p":"M","r":19,"s":{"s":"15","n":"3","a":"5.17","d":"1.03","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.03","Os":"15","On":"3","Oa":"5.17","Od":"1.03","Mp":"3","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":4}}},"c":6},{"i":468,"n":"Mara","f":"Mohamed","p":"A","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":6},{"i":523,"n":"Mazikou","f":"Bradley","p":"D","r":1,"s":{"n":0},"c":6},{"i":570,"n":"Hamel","f":"Pierre-Yves","p":"A","r":39,"s":{"g":"1","s":"16","n":"3","a":"5.5","d":"1.08","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Og":"1","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Ap":"3","p":{"1":{"n":6},"2":{"n":6.5,"g":1},"3":{"n":4}}},"c":6},{"i":583,"n":"Claude Maurice","f":"Alexis","p":"M","r":38,"s":{"g":"1","s":"13","n":"2","a":"6.5","d":"0.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"13","On":"2","Oa":"6.5","Od":"0.5","Mp":"2","p":{"1":{"n":6},"3":{"n":7,"g":1,"s":1}}},"c":6},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"29","On":"6","Oa":"4.83","Od":"0.24","Dp":"6","p":{"2":{"n":4.5,"s":1},"3":{"n":5,"s":1}}},"c":6},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":10,"s":{"s":"13","n":"3","a":"4.33","d":"0.47","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.47","Og":"2","Os":"116","On":"25","Oa":"4.64","Od":"1.02","Ap":"25","p":{"32":{"n":4.5,"e":3045,"c":67,"s":1},"33":{"n":5,"e":3057,"c":67},"1":{"n":5},"2":{"n":4,"s":1},"3":{"n":4}}},"c":6},{"i":3805,"n":"Nardi","f":"Paul","p":"G","r":8,"s":{"s":"17","n":"3","a":"5.67","d":"0.47","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.47","Os":"17","On":"3","Oa":"5.67","Od":"0.47","Gp":"3","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5}}},"c":6},{"i":4838,"n":"Renaud","f":"Tom","p":"M","r":1,"s":{"n":0},"c":6},{"i":4839,"n":"Loric","f":"Samuel","p":"D","r":1,"s":{"n":0},"c":6},{"i":4855,"n":"Le F\u00e9e","f":"Enzo","p":"M","r":1,"s":{"s":"11","n":"2","a":"5.5","d":"1.5","Os":"11","On":"2","Oa":"5.5","Od":"1.5","Mp":"1","Ap":"1","p":{"1":{"n":7},"2":{"n":4}}},"c":6},{"i":4877,"n":"Bartouche","f":"Teddy","p":"G","r":1,"s":{"n":0},"c":6},{"i":4887,"n":"Julloux","f":"Adrien","p":"M","r":1,"s":{"n":0},"c":6},{"i":4888,"n":"Bila","f":"Abdoul","p":"A","r":1,"s":{"n":0},"c":6},{"i":4889,"n":"Abessolo","f":"Wilfrid","p":"D","r":1,"s":{"n":0},"c":6},{"i":4900,"n":"Ponceau","f":"Julien","p":"M","r":8,"s":{"n":0},"c":6},{"i":4940,"n":"Etuin","f":"Maxime","p":"M","r":16,"s":{"n":0},"c":6},{"i":4946,"n":"Pattier","f":"Maxime","p":"G","r":1,"s":{"n":0},"c":6},{"i":4948,"n":"Meslier","f":"Illan","p":"G","r":14,"s":{"n":0},"c":6},{"i":4952,"n":"Wadja","f":"Franklin","p":"M","r":17,"s":{"n":0},"c":6},{"i":4981,"n":"Kamissoko","f":"Mamadou","p":"D","r":6,"s":{"n":0},"c":6},{"i":5009,"n":"Mendes","f":"Houboulang","p":"D","r":10,"s":{"n":0},"c":6},{"i":5032,"n":"Ouaneh","f":"Peter","p":"D","r":1,"s":{"n":0},"c":6},{"i":5033,"n":"Wissa","f":"Yoane","p":"A","r":19,"s":{"g":"2","s":"18","n":"3","a":"6.17","d":"1.25","Sg":"2","Ss":"18","Sn":"3","Sa":"6.17","Sd":"1.25","Og":"2","Os":"18","On":"3","Oa":"6.17","Od":"1.25","Mp":"3","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":7.5,"g":1},"3":{"n":4.5}}},"c":6},{"i":5056,"n":"Laporte","f":"Julien","p":"D","r":13,"s":{"ao":"1","s":"15","n":"3","a":"5","d":"0.82","Sao":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"0.82","Oao":"1","Os":"15","On":"3","Oa":"5","Od":"0.82","Dp":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4,"a":1}}},"c":6},{"i":5065,"n":"Hergault","f":"Jerome","p":"D","r":15,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5}}},"c":6},{"i":5077,"n":"Lecoeuche","f":"Quentin","p":"D","r":18,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Os":"14","On":"3","Oa":"4.67","Od":"0.24","Dp":"3","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":6},{"i":5131,"n":"Boubaya","f":"Tristan","p":"M","r":1,"s":{"n":0},"c":6},{"i":5152,"n":"Lemaire","f":"Pierre-Etienne","p":"D","r":1,"s":{"n":0},"c":6},{"i":5162,"n":"Abergel","f":"Laurent","p":"D","r":16,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Mp":"2","p":{"2":{"n":6},"3":{"n":5}}},"c":6},{"i":5163,"n":"Sainati","f":"Joris","p":"D","r":15,"s":{"n":0},"c":6},{"i":5186,"n":"Saunier","f":"Matthieu","p":"D","r":11,"s":{"g":"1","s":"17","n":"3","a":"5.67","d":"1.03","Sg":"1","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.03","Og":"1","Os":"17","On":"3","Oa":"5.67","Od":"1.03","Dp":"3","p":{"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":4.5}}},"c":6},{"i":5219,"n":"Martins Pereira","f":"Jonathan","p":"D","r":4,"s":{"n":0},"c":6},{"i":6118,"n":"Bila","f":"Abdoul","p":"A","r":3,"s":{"n":0},"c":6},{"i":69,"n":"Salibur","f":"Yannis","p":"M","r":6,"s":{"n":0,"Og":"1","Os":"110","On":"22","Oa":"5","Od":"0.85","Mp":"8","Ap":"14","p":{"34":{"n":4.5,"e":3071,"c":4,"s":1},"36":{"n":5,"e":3091,"c":4,"s":1},"37":{"n":6.5,"e":3099,"c":4}}},"c":14},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":16,"s":{"g":"1","s":"16","n":"3","a":"5.33","d":"0.62","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Og":"1","Os":"83","On":"18","Oa":"4.64","Od":"0.47","Mp":"9","Ap":"9","p":{"35":{"n":4,"s":1},"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6,"g":1}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":18,"s":{"s":"9","n":"2","a":"4.5","Og":"1","Os":"162","On":"34","Oa":"4.76","Od":"0.88","Dp":"34","p":{"32":{"n":5.5,"g":1},"33":{"n":3.5},"34":{"n":4},"35":{"n":5},"36":{"n":5},"37":{"n":5},"38":{"n":4.5},"1":{"n":4.5},"2":{"n":4.5}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":27,"s":{"s":"12","n":"3","a":"4","Ss":"12","Sn":"3","Sa":"4","Og":"1","Os":"114","On":"26","Oa":"4.4","Od":"0.59","Ap":"26","p":{"32":{"n":5},"33":{"n":4},"35":{"n":4},"36":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1},"1":{"n":4},"2":{"n":4},"3":{"n":4,"s":1}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":16,"s":{"s":"15","n":"3","a":"5","d":"0.71","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"112","On":"25","Oa":"4.48","Od":"1.13","Dp":"25","p":{"35":{"n":4.5},"36":{"n":5},"1":{"n":4.5},"2":{"n":4.5},"3":{"n":6}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":6,"s":{"n":0,"Os":"79","On":"16","Oa":"4.94","Od":"1.1","Gp":"16"},"c":14},{"i":163,"n":"Deaux","f":"Lucas","p":"M","r":16,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Og":"3","Os":"97","On":"20","Oa":"4.88","Od":"0.85","Mp":"20","p":{"32":{"n":5.5,"g":1},"36":{"n":4.5},"38":{"n":6},"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5}}},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":6,"s":{"n":0,"Og":"3","Os":"118","On":"24","Oa":"4.92","Od":"1.06","Mp":"18","Ap":"6"},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"140","On":"30","Oa":"4.67","Od":"0.92","Mp":"30","p":{"32":{"n":5},"33":{"n":4},"34":{"n":4.5,"s":1},"35":{"n":5},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":5,"s":1}}},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":6,"s":{"n":0,"Os":"81","On":"19","Oa":"4.26","Od":"0.95","Mp":"1","Dp":"18","p":{"34":{"n":3},"35":{"n":5.5},"36":{"n":5},"37":{"n":4.5},"38":{"n":4.5}}},"c":14},{"i":398,"n":"Blas","f":"Ludovic","p":"M","r":23,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Og":"1","Os":"166","On":"34","Oa":"4.88","Od":"0.92","Mp":"33","Ap":"1","p":{"34":{"n":5,"s":1},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":6},"38":{"n":5},"1":{"n":5.5},"2":{"n":4.5},"3":{"n":5}}},"c":14},{"i":536,"n":"Guivarch","f":"Theo","p":"G","r":7,"s":{"n":0},"c":14},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":11,"s":{"s":"16","n":"3","a":"5.33","d":"0.62","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Os":"16","On":"3","Oa":"5.33","Od":"0.62","Dp":"3","p":{"1":{"n":5.5,"s":1},"2":{"n":4.5},"3":{"n":6}}},"c":14},{"i":790,"n":"Djilobodji","f":"Papy","p":"D","r":6,"s":{"n":0,"Os":"15","On":"4","Oa":"3.88","Od":"0.41","Dp":"4","p":{"34":{"n":3.5}}},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":6,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2"},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":10,"s":{"n":0,"Og":"8","Os":"146","On":"31","Oa":"4.73","Od":"1.18","Mp":"18","Ap":"13","p":{"32":{"n":6,"g":1},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":5},"36":{"n":3},"37":{"n":5,"g":1},"38":{"n":4}}},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":13,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.75","Os":"130","On":"25","Oa":"5.2","Od":"1.02","Mp":"25","p":{"33":{"n":3.5},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":7},"37":{"n":5},"38":{"n":4},"2":{"n":4},"3":{"n":5.5}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":23,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Og":"3","Os":"133","On":"26","Oa":"5.12","Od":"1.37","Mp":"1","Dp":"25","p":{"32":{"n":4},"33":{"n":4},"37":{"n":6},"38":{"n":5},"2":{"n":4.5,"s":1},"3":{"n":5.5}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":25,"s":{"s":"4","n":"1","a":"4.5","Os":"181","On":"36","Oa":"5.04","Od":"0.91","Mp":"1","Dp":"35","p":{"32":{"n":6},"33":{"n":4},"34":{"n":4.5},"35":{"n":5},"36":{"n":5},"37":{"n":5},"38":{"n":6},"1":{"n":4.5}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":15,"s":{"s":"15","n":"3","a":"5","d":"1.87","Ss":"15","Sn":"3","Sa":"5","Sd":"1.87","Os":"130","On":"24","Oa":"5.42","Od":"1.28","Gp":"24","p":{"32":{"n":4},"33":{"n":4.5},"34":{"n":4},"35":{"n":6},"36":{"n":6},"37":{"n":5},"38":{"n":6},"1":{"n":2.5},"2":{"n":5.5},"3":{"n":7}}},"c":14},{"i":1421,"n":"Pel\u00e9","f":"Bryan","p":"M","r":28,"s":{"g":"1","s":"17","n":"3","a":"5.67","d":"1.03","Sg":"1","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.03","Og":"1","Os":"17","On":"3","Oa":"5.67","Od":"1.03","Mp":"3","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5},"3":{"n":5.5}}},"c":14},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"52","On":"12","Oa":"4.38","Od":"0.77","Mp":"12","p":{"37":{"n":5,"s":1},"3":{"n":4.5,"s":1}}},"c":14},{"i":1548,"n":"Ahlinvi","f":"Matteo","p":"M","r":1,"s":{"n":0},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":18,"s":{"g":"1","s":"16","n":"3","a":"5.33","d":"0.62","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Og":"2","Os":"79","On":"17","Oa":"4.68","Od":"0.77","Mp":"6","Ap":"11","p":{"32":{"n":5,"s":1},"33":{"n":6,"g":1,"s":1},"34":{"n":3.5},"1":{"n":6,"g":1},"2":{"n":4.5,"s":1},"3":{"n":5.5}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":13,"s":{"s":"4","n":"1","a":"4.5","Os":"49","On":"11","Oa":"4.5","Od":"0.3","Ap":"11","p":{"1":{"n":4.5,"s":1}}},"c":14},{"i":2722,"n":"Traor\u00e9","f":"Cheick","p":"D","r":16,"s":{"n":0,"Os":"84","On":"19","Oa":"4.42","Od":"0.96","Dp":"19","p":{"32":{"n":3.5},"33":{"n":3}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":2,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2"},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":14},{"i":2943,"n":"Ako","f":"Steven","p":"D","r":1,"s":{"n":0},"c":14},{"i":2948,"n":"Boudjemaa","f":"Mehdi","p":"M","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"3":{"n":4.5,"s":1}}},"c":14},{"i":2949,"n":"Phaeton","f":"Matthias","p":"M","r":2,"s":{"n":0},"c":14},{"i":2997,"n":"Johan Larsson","f":"","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":14},{"i":3124,"n":"Merghem","f":"Mehdi","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Os":"48","On":"10","Oa":"4.85","Od":"0.59","Mp":"8","Ap":"2","p":{"32":{"n":5},"33":{"n":5},"34":{"n":3.5},"35":{"n":5},"37":{"n":5},"38":{"n":4},"2":{"n":5,"s":1}}},"c":14},{"i":4851,"n":"Mellot","f":"Jeremy","p":"D","r":6,"s":{"g":"1","s":"15","n":"3","a":"5.17","d":"0.62","Sg":"1","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Og":"1","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":6,"g":1},"2":{"n":4.5},"3":{"n":5}}},"c":14},{"i":4884,"n":"Carnot","f":"Louis","p":"M","r":1,"s":{"n":0},"c":14},{"i":5006,"n":"Niakate","f":"Sikou","p":"D","r":5,"s":{"n":0},"c":14},{"i":5361,"n":"Gueddar","f":"Mohamed Ali","p":"A","r":2,"s":{"n":0},"c":14},{"i":5362,"n":"Anne","f":"Souleymane","p":"A","r":1,"s":{"n":0},"c":14},{"i":5364,"n":"Youfeigane","f":"Dominique","p":"G","r":1,"s":{"n":0},"c":14},{"i":5370,"n":"Baret","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":14},{"i":161,"n":"Muratori","f":"Vincent","p":"D","r":5,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5}}},"c":17},{"i":338,"n":"El Kaoutari","f":"Abdelhamid","p":"D","r":7,"s":{"s":"17","n":"3","a":"5.67","d":"0.47","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.47","Os":"17","On":"3","Oa":"5.67","Od":"0.47","Dp":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6}}},"c":17},{"i":417,"n":"N'Guessan","f":"Serge","p":"M","r":11,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5}}},"c":17},{"i":522,"n":"Rocha Santos","f":"Kenny","p":"M","r":3,"s":{"s":"10","n":"2","a":"5","Ss":"10","Sn":"2","Sa":"5","Os":"15","On":"3","Oa":"5","Mp":"3","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1}}},"c":17},{"i":577,"n":"Marchetti","f":"Vincent","p":"M","r":18,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Mp":"3","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5}}},"c":17},{"i":1270,"n":"Coulibaly","f":"Sega","p":"D","r":6,"s":{"n":0},"c":17},{"i":1407,"n":"Seka","f":"Ernest","p":"D","r":15,"s":{"n":0},"c":17},{"i":2139,"n":"V\u00e1gner","f":"","p":"M","r":9,"s":{"g":"1","s":"13","n":"2","a":"6.5","d":"0.5","Sg":"1","Ss":"13","Sn":"2","Sa":"6.5","Sd":"0.5","Og":"1","Os":"13","On":"2","Oa":"6.5","Od":"0.5","Mp":"1","Ap":"1","p":{"2":{"n":7,"g":1},"3":{"n":6}}},"c":17},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":10,"s":{"s":"14","n":"3","a":"4.67","d":"0.85","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.85","Og":"2","Os":"96","On":"20","Oa":"4.8","Od":"1.04","Dp":"20","p":{"32":{"n":4.5,"e":3045,"c":67},"33":{"n":5,"e":3057,"c":67},"34":{"n":3.5,"e":3066,"c":67},"1":{"n":5.5},"2":{"n":5},"3":{"n":3.5}}},"c":17},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":6,"s":{"s":"17","n":"3","a":"5.83","d":"0.24","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.24","Os":"17","On":"3","Oa":"5.83","Od":"0.24","Mp":"3","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":6}}},"c":17},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":5,"s":{"s":"15","n":"3","a":"5.17","d":"1.03","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.03","Os":"15","On":"3","Oa":"5.17","Od":"1.03","Gp":"3","p":{"1":{"n":6.5},"2":{"n":4},"3":{"n":5}}},"c":17},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":2,"s":{"n":0},"c":17},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":2,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"28","On":"6","Oa":"4.67","Od":"0.69","Ap":"6","p":{"38":{"n":4.5,"e":3103,"c":4,"s":1},"2":{"n":4,"s":1},"3":{"n":4,"s":1}}},"c":17},{"i":4872,"n":"Triboulet","f":"Vinni","p":"M","r":5,"s":{"n":0},"c":17},{"i":4873,"n":"Bouzar Essaidi","f":"Samir","p":"M","r":1,"s":{"n":0},"c":17},{"i":4875,"n":"Wooh","f":"Christopher Maurice","p":"M","r":1,"s":{"n":0},"c":17},{"i":4876,"n":"Haag","f":"Giovanni","p":"M","r":1,"s":{"n":0},"c":17},{"i":4899,"n":"Bassouamina","f":"Mons","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":17},{"i":4939,"n":"Constant","f":"Hugo","p":"G","r":1,"s":{"n":0},"c":17},{"i":4959,"n":"Demb\u00e9l\u00e9","f":"Malaly","p":"A","r":15,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"1","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5,"s":1}}},"c":17},{"i":4961,"n":"Barka","f":"Yanis","p":"A","r":2,"s":{"n":0},"c":17},{"i":4963,"n":"Fischer","f":"Mathias","p":"D","r":5,"s":{"n":0},"c":17},{"i":4967,"n":"Bassi","f":"Amine","p":"M","r":22,"s":{"n":0},"c":17},{"i":4973,"n":"Bidounga","f":"Ryan","p":"D","r":5,"s":{"n":0},"c":17},{"i":5025,"n":"Karamoko","f":"Souleymane","p":"D","r":10,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Dp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5}}},"c":17},{"i":5058,"n":"Nguiamba","f":"Aurelien","p":"M","r":2,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5.5,"s":1}}},"c":17},{"i":5114,"n":"Danilson da Cruz","f":"","p":"M","r":5,"s":{"n":0},"c":17},{"i":5165,"n":"Cissokho","f":"Mame Ousmane","p":"A","r":19,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5}}},"c":17},{"i":5167,"n":"Edmond Akichi","f":"","p":"M","r":11,"s":{"s":"16","n":"3","a":"5.33","d":"0.24","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.24","Os":"16","On":"3","Oa":"5.33","Od":"0.24","Mp":"3","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5}}},"c":17},{"i":5179,"n":"Nery","f":"Loris","p":"D","r":9,"s":{"n":0},"c":17},{"i":5204,"n":"Dona Ndoh","f":"And\u00e9","p":"A","r":25,"s":{"s":"12","n":"3","a":"4.17","d":"0.62","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.62","Os":"12","On":"3","Oa":"4.17","Od":"0.62","Ap":"3","p":{"1":{"n":3.5},"2":{"n":4},"3":{"n":5}}},"c":17},{"i":479,"n":"Barthelme","f":"Maxime","p":"M","r":23,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Mp":"2","Ap":"1","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5}}},"c":43},{"i":871,"n":"Souar\u00e9","f":"Pape","p":"D","r":6,"s":{"n":0},"c":43},{"i":1224,"n":"Massouema","f":"Eden","p":"M","r":12,"s":{"s":"14","n":"3","a":"4.67","d":"0.85","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.85","Os":"14","On":"3","Oa":"4.67","Od":"0.85","Mp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":3.5}}},"c":43},{"i":1396,"n":"Darbion","f":"St\u00e9phane","p":"M","r":6,"s":{"n":0},"c":43},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":5,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"54","On":"12","Oa":"4.54","Od":"0.75","Mp":"2","Dp":"10","p":{"35":{"n":4.5,"e":3076,"c":42},"1":{"n":5.5},"2":{"n":5},"3":{"n":5}}},"c":43},{"i":1411,"n":"Giraudon","f":"Jimmy","p":"D","r":18,"s":{"s":"13","n":"3","a":"4.5","d":"1.08","Ss":"13","Sn":"3","Sa":"4.5","Sd":"1.08","Os":"13","On":"3","Oa":"4.5","Od":"1.08","Dp":"3","p":{"1":{"n":6},"2":{"n":3.5},"3":{"n":4}}},"c":43},{"i":1440,"n":"Salmier","f":"Yoann","p":"D","r":16,"s":{"s":"15","n":"3","a":"5","d":"0.82","Ss":"15","Sn":"3","Sa":"5","Sd":"0.82","Os":"15","On":"3","Oa":"5","Od":"0.82","Dp":"3","p":{"1":{"n":6},"2":{"n":4},"3":{"n":5}}},"c":43},{"i":1465,"n":"Sissako","f":"Mamadou","p":"A","r":1,"s":{"n":0},"c":43},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":1,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"2":{"n":3.5,"s":1}}},"c":43},{"i":2325,"n":"Mbeumo","f":"Bryan","p":"A","r":22,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"1.25","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":7,"g":1},"2":{"n":4.5}}},"c":43},{"i":4848,"n":"Bouallak","f":"Ryan","p":"G","r":3,"s":{"n":0},"c":43},{"i":4854,"n":"Mambo","f":"Stone Muzalimoja","p":"D","r":1,"s":{"n":0},"c":43},{"i":4867,"n":"Jay","f":"Ronan","p":"G","r":1,"s":{"n":0},"c":43},{"i":4883,"n":"Abdallah","f":"Benrandy","p":"D","r":1,"s":{"n":0},"c":43},{"i":4897,"n":"Tchimbemb\u00e9","f":"Warren","p":"A","r":3,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"3":{"n":4.5,"s":1}}},"c":43},{"i":4989,"n":"Rui Pires","f":"","p":"M","r":6,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1}}},"c":43},{"i":4999,"n":"Digol N'Dozangue","f":"Khamis","p":"D","r":2,"s":{"n":0},"c":43},{"i":5004,"n":"Fortun\u00e9","f":"K\u00e9vin","p":"A","r":25,"s":{"s":"16","n":"3","a":"5.5","d":"0.71","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.71","Os":"16","On":"3","Oa":"5.5","Od":"0.71","Mp":"2","Ap":"1","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":5}}},"c":43},{"i":5012,"n":"Kiki Kouyate","f":"","p":"D","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"s":1}}},"c":43},{"i":5071,"n":"Raveloson","f":"Rayan","p":"D","r":24,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"3":{"n":5.5}}},"c":43},{"i":5101,"n":"Camara","f":"Demba","p":"A","r":2,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Os":"13","On":"3","Oa":"4.5","Od":"0.41","Ap":"3","p":{"1":{"n":4.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5,"s":1}}},"c":43},{"i":5108,"n":"Gallon","f":"Gauthier","p":"G","r":17,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Gp":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5}}},"c":43},{"i":5178,"n":"Touzghar","f":"Yoann","p":"A","r":28,"s":{"g":"2","s":"18","n":"3","a":"6","d":"0.82","Sg":"2","Ss":"18","Sn":"3","Sa":"6","Sd":"0.82","Og":"2","Os":"18","On":"3","Oa":"6","Od":"0.82","Ap":"3","p":{"1":{"n":7,"g":1},"2":{"n":6,"g":1},"3":{"n":5}}},"c":43},{"i":5197,"n":"Kashi","f":"Ahmed","p":"M","r":1,"s":{"n":0},"c":43},{"i":5358,"n":"Bombo","f":"Calvin","p":"M","r":1,"s":{"n":0},"c":43},{"i":5359,"n":"Merah","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":43},{"i":5365,"n":"Baya","f":"Terence","p":"D","r":5,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"8","On":"2","Oa":"4","Dp":"2","p":{"2":{"n":4},"3":{"n":4}}},"c":43},{"i":5376,"n":"Tardieu","f":"Florian","p":"M","r":13,"s":{"g":"1","s":"12","n":"2","a":"6","d":"1","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Og":"1","Os":"12","On":"2","Oa":"6","Od":"1","Mp":"2","p":{"2":{"n":5},"3":{"n":7,"g":1}}},"c":43},{"i":5978,"n":"Renot","f":"Sebastien","p":"G","r":6,"s":{"n":0},"c":43},{"i":6143,"n":"Ba","f":"Pape Meissa","p":"A","r":5,"s":{"n":0},"c":43},{"i":348,"n":"Leroy","f":"Benjamin","p":"G","r":15,"s":{"s":"14","n":"3","a":"4.67","d":"1.25","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.25","Os":"14","On":"3","Oa":"4.67","Od":"1.25","Gp":"3","p":{"1":{"n":3},"2":{"n":6},"3":{"n":5}}},"c":88},{"i":384,"n":"Lejeune","f":"K\u00e9vin","p":"M","r":12,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Dp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5}}},"c":88},{"i":1263,"n":"Andonian","f":"Ga\u00ebl","p":"D","r":7,"s":{"n":0},"c":88},{"i":4834,"n":"Huard","f":"Matthieu","p":"D","r":5,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5}}},"c":88},{"i":4860,"n":"Corinus","f":"J\u00e9r\u00e9my","p":"D","r":2,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Dp":"3","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5.5,"s":1}}},"c":88},{"i":4871,"n":"Tomi","f":"Felix","p":"M","r":3,"s":{"n":0},"c":88},{"i":4878,"n":"El Idrissy","f":"Mounaim","p":"A","r":1,"s":{"g":"1","s":"16","n":"3","a":"5.5","d":"0.71","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.71","Og":"1","Os":"16","On":"3","Oa":"5.5","Od":"0.71","Ap":"3","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1,"s":1},"3":{"n":5,"s":1}}},"c":88},{"i":4879,"n":"Marsella","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":88},{"i":4882,"n":"Zady Sery","f":"Caleb","p":"A","r":3,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Mp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":6}}},"c":88},{"i":4896,"n":"Pellegrini","f":"Lucas","p":"M","r":3,"s":{"n":0},"c":88},{"i":4958,"n":"Tramoni","f":"Matteo","p":"M","r":14,"s":{"s":"15","n":"3","a":"5","d":"0.71","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"15","On":"3","Oa":"5","Od":"0.71","Mp":"3","p":{"1":{"n":6,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":88},{"i":4993,"n":"Bayala","f":"Cyrille","p":"M","r":16,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Mp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":5}}},"c":88},{"i":5039,"n":"Laci","f":"Qazim","p":"M","r":8,"s":{"s":"15","n":"3","a":"5","d":"0.71","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"15","On":"3","Oa":"5","Od":"0.71","Mp":"3","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5}}},"c":88},{"i":5044,"n":"Coutadeur","f":"Mathieu","p":"M","r":23,"s":{"s":"16","n":"3","a":"5.5","d":"1.08","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Mp":"3","p":{"1":{"n":6.5},"2":{"n":6},"3":{"n":4}}},"c":88},{"i":5062,"n":"Tall","f":"Maki Madani","p":"A","r":2,"s":{"n":0},"c":88},{"i":5086,"n":"Sollacaro","f":"Francois-Joseph","p":"G","r":8,"s":{"n":0},"c":88},{"i":5099,"n":"Diallo","f":"Isma\u00ebl","p":"D","r":3,"s":{"n":0},"c":88},{"i":5170,"n":"Courtet","f":"Ga\u00ebtan","p":"A","r":13,"s":{"g":"3","s":"18","n":"3","a":"6","d":"0.82","Sg":"3","Ss":"18","Sn":"3","Sa":"6","Sd":"0.82","Og":"3","Os":"18","On":"3","Oa":"6","Od":"0.82","Ap":"3","p":{"1":{"n":7,"g":2},"2":{"n":5},"3":{"n":6,"g":1}}},"c":88},{"i":5175,"n":"Mendes","f":"Joseph","p":"A","r":5,"s":{"n":0},"c":88},{"i":5206,"n":"Youssouf","f":"Mohamed","p":"A","r":5,"s":{"n":0},"c":88},{"i":5214,"n":"Avinel","f":"Cedric","p":"D","r":21,"s":{"s":"14","n":"3","a":"4.83","d":"1.31","Ss":"14","Sn":"3","Sa":"4.83","Sd":"1.31","Os":"14","On":"3","Oa":"4.83","Od":"1.31","Dp":"3","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3}}},"c":88},{"i":5218,"n":"Choplin","f":"J\u00e9r\u00e9my","p":"D","r":19,"s":{"s":"16","n":"3","a":"5.33","d":"0.62","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Os":"16","On":"3","Oa":"5.33","Od":"0.62","Dp":"3","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5}}},"c":88},{"i":5222,"n":"Cavalli","f":"Johan","p":"M","r":21,"s":{"s":"16","n":"3","a":"5.5","Ss":"16","Sn":"3","Sa":"5.5","Os":"16","On":"3","Oa":"5.5","Mp":"3","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5.5}}},"c":88},{"i":5979,"n":"Kalulu Kyatengwa","f":"Gedeon","p":"D","r":2,"s":{"n":0},"c":88},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":6,"s":{"s":"16","n":"3","a":"5.33","d":"0.62","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Os":"28","On":"5","Oa":"5.6","Od":"0.86","Gp":"5","p":{"38":{"n":7,"e":3109,"c":18},"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6}}},"c":89},{"i":269,"n":"Bazile","f":"Herve","p":"A","r":14,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":89},{"i":1249,"n":"Dzabana","f":"Alan","p":"A","r":2,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1}}},"c":89},{"i":4891,"n":"Abdelli","f":"Himad","p":"M","r":6,"s":{"s":"10","n":"2","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1}}},"c":89},{"i":4945,"n":"Ebimbe","f":"\u00c9ric","p":"M","r":1,"s":{"s":"17","n":"3","a":"5.83","d":"0.62","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.62","Os":"17","On":"3","Oa":"5.83","Od":"0.62","Mp":"3","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":6}}},"c":89},{"i":4951,"n":"Fofana","f":"Yahia","p":"G","r":7,"s":{"n":0},"c":89},{"i":4962,"n":"Tiehi","f":"Christ","p":"M","r":1,"s":{"n":0},"c":89},{"i":4968,"n":"Gueye","f":"Pape Alassane","p":"M","r":5,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Mp":"3","p":{"1":{"n":5.5,"s":1},"2":{"n":5},"3":{"n":6}}},"c":89},{"i":4976,"n":"Basque","f":"Romain","p":"M","r":13,"s":{"n":0},"c":89},{"i":4992,"n":"Coulibaly","f":"Yacouba","p":"D","r":10,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"1":{"n":3.5}}},"c":89},{"i":4995,"n":"Mayembo","f":"Fernand","p":"D","r":7,"s":{"s":"16","n":"3","a":"5.33","d":"0.24","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.24","Os":"16","On":"3","Oa":"5.33","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5}}},"c":89},{"i":5008,"n":"Gory","f":"Alimami","p":"A","r":27,"s":{"n":0},"c":89},{"i":5015,"n":"Camara","f":"Samba","p":"D","r":12,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Dp":"3","p":{"1":{"n":5},"2":{"n":5},"3":{"n":6}}},"c":89},{"i":5036,"n":"Kadewere","f":"Tinotenda","p":"A","r":17,"s":{"g":"4","s":"19","n":"3","a":"6.33","d":"0.47","Sg":"4","Ss":"19","Sn":"3","Sa":"6.33","Sd":"0.47","Og":"4","Os":"19","On":"3","Oa":"6.33","Od":"0.47","Ap":"3","p":{"1":{"n":7,"g":2},"2":{"n":6,"g":1},"3":{"n":6,"g":1}}},"c":89},{"i":5104,"n":"Bese","f":"Barnab\u00e1s","p":"D","r":16,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5}}},"c":89},{"i":5116,"n":"Assifuah","f":"Ebenezer","p":"A","r":8,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1}}},"c":89},{"i":5119,"n":"Lekhal","f":"Victor","p":"M","r":13,"s":{"n":0},"c":89},{"i":5120,"n":"Thiare","f":"Jamal","p":"A","r":10,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Ap":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5}}},"c":89},{"i":5133,"n":"Traore","f":"Baba","p":"D","r":2,"s":{"n":0},"c":89},{"i":5150,"n":"Youga","f":"Amos","p":"M","r":16,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"3":{"n":5.5}}},"c":89},{"i":5188,"n":"Balijon","f":"Arnaud","p":"G","r":1,"s":{"n":0},"c":89},{"i":5203,"n":"Fontaine","f":"Jean-Pascal","p":"M","r":25,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5},"2":{"n":4.5}}},"c":89},{"i":5216,"n":"Bonnet","f":"Alexandre","p":"M","r":16,"s":{"g":"1","s":"16","n":"3","a":"5.5","d":"1.08","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Og":"1","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Mp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":7,"g":1}}},"c":89},{"i":5349,"n":"Meddah","f":"Daylam","p":"M","r":1,"s":{"n":0},"c":89},{"i":5350,"n":"Konate","f":"Ateef","p":"M","r":1,"s":{"n":0},"c":89},{"i":5351,"n":"Coulibaly","f":"Woyo","p":"D","r":1,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Dp":"2","p":{"2":{"n":4.5},"3":{"n":5}}},"c":89},{"i":1211,"n":"Junior Tallo","f":"","p":"A","r":3,"s":{"n":0},"c":90},{"i":1220,"n":"Gonzalez","f":"Oumar","p":"D","r":10,"s":{"s":"17","n":"3","a":"5.83","d":"0.85","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.85","Os":"17","On":"3","Oa":"5.83","Od":"0.85","Dp":"3","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5}}},"c":90},{"i":1551,"n":"Le Roy","f":"Killian","p":"G","r":1,"s":{"n":0},"c":90},{"i":4901,"n":"Sylas Edjouma","f":"Malcom","p":"M","r":4,"s":{"s":"13","n":"3","a":"4.5","d":"0.71","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.71","Os":"13","On":"3","Oa":"4.5","Od":"0.71","Mp":"3","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":3.5}}},"c":90},{"i":4909,"n":"Doucoure","f":"Boubacari","p":"D","r":5,"s":{"n":0},"c":90},{"i":4910,"n":"Delos","f":"David","p":"D","r":8,"s":{"n":0},"c":90},{"i":4935,"n":"Tabue","f":"Kevin","p":"A","r":2,"s":{"n":0},"c":90},{"i":4936,"n":"Seck","f":"Mafall","p":"D","r":3,"s":{"n":0},"c":90},{"i":4975,"n":"Pinoteau","f":"Xavier","p":"G","r":7,"s":{"n":0},"c":90},{"i":4980,"n":"Guezoui","f":"Medhy","p":"A","r":10,"s":{"s":"13","n":"3","a":"4.33","d":"0.24","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Os":"13","On":"3","Oa":"4.33","Od":"0.24","Ap":"3","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":4.5}}},"c":90},{"i":4984,"n":"El Hriti","f":"Aniss","p":"D","r":4,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"2":{"n":5.5,"s":1}}},"c":90},{"i":5011,"n":"H\u00e9lo\u00efse","f":"Laurent","p":"M","r":1,"s":{"n":0},"c":90},{"i":5026,"n":"Thomas Henry","f":"","p":"A","r":1,"s":{"n":0},"c":90},{"i":5060,"n":"Jaques","f":"Thibault","p":"D","r":17,"s":{"g":"1","s":"18","n":"3","a":"6","d":"1.08","Sg":"1","Ss":"18","Sn":"3","Sa":"6","Sd":"1.08","Og":"1","Os":"18","On":"3","Oa":"6","Od":"1.08","Dp":"3","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":5}}},"c":90},{"i":5090,"n":"David","f":"Florian","p":"M","r":12,"s":{"g":"1","s":"18","n":"3","a":"6.17","d":"0.85","Sg":"1","Ss":"18","Sn":"3","Sa":"6.17","Sd":"0.85","Og":"1","Os":"18","On":"3","Oa":"6.17","Od":"0.85","Ap":"3","p":{"1":{"n":6.5},"2":{"n":7,"g":1},"3":{"n":5}}},"c":90},{"i":5093,"n":"Santelli","f":"Benjamin","p":"M","r":11,"s":{"s":"15","n":"3","a":"5","Ss":"15","Sn":"3","Sa":"5","Os":"15","On":"3","Oa":"5","Mp":"1","Ap":"2","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5}}},"c":90},{"i":5106,"n":"Derrien","f":"Maxence","p":"D","r":13,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Mp":"2","Dp":"1","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5}}},"c":90},{"i":5110,"n":"Beaulieu","f":"Jonathan","p":"M","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"3":{"n":4.5}}},"c":90},{"i":5112,"n":"Dequaire","f":"Guillaume","p":"D","r":13,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"1":{"n":6},"2":{"n":5}}},"c":90},{"i":5113,"n":"Fofana","f":"Diarank\u00e9","p":"D","r":12,"s":{"n":0},"c":90},{"i":5117,"n":"Hilaire","f":"Max","p":"M","r":3,"s":{"n":0},"c":90},{"i":5118,"n":"Padovani","f":"Romain","p":"M","r":11,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1}}},"c":90},{"i":5123,"n":"Eickmayer","f":"Joachim","p":"M","r":10,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5}}},"c":90},{"i":5125,"n":"Soubervie","f":"Anthony","p":"D","r":13,"s":{"s":"17","n":"3","a":"5.67","d":"0.47","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.47","Os":"17","On":"3","Oa":"5.67","Od":"0.47","Mp":"2","Dp":"1","p":{"1":{"n":6},"2":{"n":6,"s":1},"3":{"n":5}}},"c":90},{"i":5128,"n":"Lefaix","f":"Kevin","p":"M","r":1,"s":{"n":0},"c":90},{"i":5134,"n":"Latour","f":"Micka\u00ebl","p":"A","r":5,"s":{"n":0},"c":90},{"i":5148,"n":"Heinry","f":"Guillaume","p":"M","r":3,"s":{"n":0},"c":90},{"i":5156,"n":"Popelard","f":"John","p":"D","r":7,"s":{"n":0},"c":90},{"i":5157,"n":"Doucour\u00e9","f":"Lassana","p":"M","r":16,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"2","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4.5,"s":1}}},"c":90},{"i":5158,"n":"Pinteaux","f":"Florian","p":"D","r":7,"s":{"n":0},"c":90},{"i":5191,"n":"Atrous","f":"Samuel","p":"G","r":1,"s":{"n":0},"c":90},{"i":5211,"n":"Pontdem\u00e9","f":"Simon","p":"G","r":13,"s":{"s":"18","n":"3","a":"6","d":"0.41","Ss":"18","Sn":"3","Sa":"6","Sd":"0.41","Os":"18","On":"3","Oa":"6","Od":"0.41","Gp":"3","p":{"1":{"n":5.5},"2":{"n":6.5},"3":{"n":6}}},"c":90},{"i":5217,"n":"Loriot","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":90},{"i":5355,"n":"Fleurier","f":"Romain","p":"D","r":1,"s":{"n":0},"c":90},{"i":5356,"n":"Geran","f":"Marvin","p":"M","r":1,"s":{"n":0},"c":90},{"i":5357,"n":"Delos","f":"Shaquil","p":"D","r":1,"s":{"n":0},"c":90},{"i":5374,"n":"Flochon","f":"S\u00e9bastien","p":"M","r":4,"s":{"n":0},"c":90},{"i":5377,"n":"Crillon","f":"Judica\u00ebl","p":"D","r":8,"s":{"n":0},"c":90},{"i":63,"n":"Prior","f":"J\u00e9r\u00f4me","p":"G","r":5,"s":{"s":"19","n":"3","a":"6.5","d":"0.41","Ss":"19","Sn":"3","Sa":"6.5","Sd":"0.41","Os":"19","On":"3","Oa":"6.5","Od":"0.41","Gp":"3","p":{"1":{"n":6},"2":{"n":6.5},"3":{"n":7}}},"c":91},{"i":389,"n":"Cuffaut","f":"Joffrey","p":"D","r":13,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4.5}}},"c":91},{"i":397,"n":"Hein","f":"Gauthier","p":"M","r":3,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"0.75","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"0.75","Ap":"2","p":{"1":{"n":5},"2":{"n":6.5,"g":1}}},"c":91},{"i":566,"n":"Romil","f":"Jorris","p":"A","r":8,"s":{"g":"1","s":"10","n":"2","a":"5","d":"1.5","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"10","On":"2","Oa":"5","Od":"1.5","Ap":"2","p":{"1":{"n":3.5},"3":{"n":6.5,"g":1,"s":1}}},"c":91},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":8,"s":{"s":"14","n":"3","a":"4.67","d":"0.85","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.85","Og":"2","Os":"112","On":"25","Oa":"4.5","Od":"0.94","Ap":"25","p":{"32":{"n":4,"e":3045,"c":67,"s":1},"33":{"n":4,"e":3057,"c":67,"s":1},"34":{"n":2.5,"e":3066,"c":67},"38":{"n":4,"e":3109,"c":67,"s":1},"1":{"n":3.5},"2":{"n":5},"3":{"n":5.5}}},"c":91},{"i":3769,"n":"Masson","f":"Julien","p":"M","r":10,"s":{"n":0},"c":91},{"i":4874,"n":"Linguet","f":"Allan","p":"M","r":1,"s":{"n":0},"c":91},{"i":4880,"n":"Cabral","f":"Kevin","p":"A","r":7,"s":{"s":"15","n":"3","a":"5","d":"0.71","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"15","On":"3","Oa":"5","Od":"0.71","Ap":"3","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"s":1}}},"c":91},{"i":4890,"n":"Arib","f":"Gaetan","p":"D","r":7,"s":{"n":0},"c":91},{"i":4918,"n":"Siby","f":"Maham\u00e9","p":"M","r":1,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":5,"s":1}}},"c":91},{"i":4924,"n":"Brassier","f":"Lilian","p":"D","r":3,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Dp":"2","p":{"2":{"n":4.5},"3":{"n":4.5}}},"c":91},{"i":4969,"n":"Foulon","f":"Gwenn","p":"A","r":1,"s":{"n":0},"c":91},{"i":4985,"n":"Ch\u00e9rif Quenum","f":"","p":"D","r":1,"s":{"n":0},"c":91},{"i":4996,"n":"Ambri","f":"Steve","p":"A","r":4,"s":{"n":0},"c":91},{"i":5020,"n":"Kocik","f":"Nicolas","p":"G","r":1,"s":{"n":0},"c":91},{"i":5048,"n":"Dabo","f":"Elhadj","p":"M","r":6,"s":{"n":0},"c":91},{"i":5080,"n":"Konate","f":"Hillel","p":"G","r":7,"s":{"n":0},"c":91},{"i":5084,"n":"Spano","f":"Maxime","p":"D","r":14,"s":{"s":"17","n":"3","a":"5.67","d":"0.24","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.24","Os":"17","On":"3","Oa":"5.67","Od":"0.24","Dp":"3","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":5.5}}},"c":91},{"i":5111,"n":"Dos Santos","f":"Laurent","p":"M","r":13,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5}}},"c":91},{"i":5143,"n":"Ntim","f":"Emmanuel","p":"D","r":1,"s":{"s":"11","n":"2","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"11","On":"2","Oa":"5.5","Dp":"2","p":{"1":{"n":5.5},"3":{"n":5.5,"s":1}}},"c":91},{"i":5161,"n":"Aloe","f":"Baptiste","p":"D","r":8,"s":{"n":0},"c":91},{"i":5172,"n":"Bong","f":"Fr\u00e9d\u00e9ric","p":"D","r":12,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Os":"14","On":"3","Oa":"4.67","Od":"0.24","Dp":"3","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5}}},"c":91},{"i":5183,"n":"Chergui","f":"Malek","p":"A","r":22,"s":{"s":"17","n":"3","a":"5.67","d":"0.94","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.94","Os":"17","On":"3","Oa":"5.67","Od":"0.94","Ap":"3","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7}}},"c":91},{"i":5190,"n":"Fedele","f":"Matteo","p":"M","r":10,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Mp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5}}},"c":91},{"i":5194,"n":"Perquis","f":"Damien","p":"G","r":13,"s":{"n":0},"c":91},{"i":5202,"n":"Chevalier","f":"Teddy","p":"A","r":7,"s":{"g":"1","s":"13","n":"3","a":"4.5","d":"1.08","Sg":"1","Ss":"13","Sn":"3","Sa":"4.5","Sd":"1.08","Og":"1","Os":"13","On":"3","Oa":"4.5","Od":"1.08","Ap":"3","p":{"1":{"n":4,"s":1},"2":{"n":3.5},"3":{"n":6,"g":1}}},"c":91},{"i":5348,"n":"Ousame","f":"Abdoulaye","p":"M","r":4,"s":{"n":0},"c":91},{"i":5373,"n":"D'Almeida","f":"Sessi","p":"M","r":1,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"2":{"n":5.5},"3":{"n":5}}},"c":91},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":6,"s":{"s":"12","n":"2","a":"6","d":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Os":"66","On":"13","Oa":"5.08","Od":"1.02","Gp":"13","p":{"33":{"n":5,"e":3055,"c":8},"34":{"n":4,"e":3067,"c":8},"35":{"n":6.5,"e":3077,"c":8},"36":{"n":6,"e":3088,"c":8},"37":{"n":5,"e":3097,"c":8},"2":{"n":5},"3":{"n":7}}},"c":92},{"i":2176,"n":"Mario Gonz\u00e1lez","f":"","p":"A","r":5,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1}}},"c":92},{"i":3519,"n":"Cissokho","f":"Till","p":"D","r":5,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"32":{"n":4.5,"e":3050,"c":3}}},"c":92},{"i":3521,"n":"Trichard","f":"Driss","p":"D","r":5,"s":{"n":0},"c":92},{"i":4832,"n":"Anoff","f":"Blankson","p":"M","r":3,"s":{"n":0},"c":92},{"i":4833,"n":"Abdul Samed","f":"Salis","p":"M","r":3,"s":{"n":0},"c":92},{"i":4856,"n":"Diako","f":"Lassana","p":"A","r":1,"s":{"n":0},"c":92},{"i":4861,"n":"Teixeira","f":"Bryan Silva","p":"A","r":1,"s":{"n":0},"c":92},{"i":4869,"n":"Allevinah","f":"Jim","p":"A","r":8,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Mp":"1","Ap":"2","p":{"1":{"n":6,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5}}},"c":92},{"i":4904,"n":"Djoco","f":"Ouparine","p":"G","r":1,"s":{"n":0},"c":92},{"i":4905,"n":"Magnin","f":"Yohann","p":"M","r":6,"s":{"s":"15","n":"3","a":"5","Ss":"15","Sn":"3","Sa":"5","Os":"15","On":"3","Oa":"5","Mp":"3","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1}}},"c":92},{"i":4957,"n":"Gomis","f":"David","p":"A","r":8,"s":{"g":"1","s":"12","n":"2","a":"6.25","d":"0.75","Og":"1","Os":"12","On":"2","Oa":"6.25","Od":"0.75","Mp":"2","p":{"1":{"n":5.5},"2":{"n":7,"g":1}}},"c":92},{"i":4964,"n":"Rajot","f":"Lorenzo","p":"M","r":7,"s":{"n":0},"c":92},{"i":5041,"n":"N'Simba","f":"Vital","p":"D","r":17,"s":{"s":"17","n":"3","a":"5.83","d":"0.62","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.62","Os":"17","On":"3","Oa":"5.83","Od":"0.62","Dp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6.5}}},"c":92},{"i":5066,"n":"Albert","f":"Josue","p":"D","r":10,"s":{"n":0},"c":92},{"i":5085,"n":"Zedadka","f":"Akim","p":"D","r":3,"s":{"n":0},"c":92},{"i":5100,"n":"Grbic","f":"Adrian","p":"A","r":7,"s":{"g":"3","s":"19","n":"3","a":"6.33","d":"1.25","Sg":"3","Ss":"19","Sn":"3","Sa":"6.33","Sd":"1.25","Og":"3","Os":"19","On":"3","Oa":"6.33","Od":"1.25","Ap":"3","p":{"1":{"n":8,"g":2},"2":{"n":5},"3":{"n":6,"g":1}}},"c":92},{"i":5103,"n":"Hountondji","f":"C\u00e9dric","p":"D","r":2,"s":{"s":"17","n":"3","a":"5.83","d":"0.24","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.24","Os":"17","On":"3","Oa":"5.83","Od":"0.24","Dp":"3","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5}}},"c":92},{"i":5122,"n":"Iglesias","f":"Jonathan","p":"M","r":24,"s":{"s":"18","n":"3","a":"6.17","d":"0.47","Ss":"18","Sn":"3","Sa":"6.17","Sd":"0.47","Os":"18","On":"3","Oa":"6.17","Od":"0.47","Mp":"3","p":{"1":{"n":6.5},"2":{"n":6.5},"3":{"n":5.5}}},"c":92},{"i":5129,"n":"Berthomier","f":"Jason","p":"M","r":21,"s":{"s":"17","n":"3","a":"5.83","d":"1.18","Ss":"17","Sn":"3","Sa":"5.83","Sd":"1.18","Os":"17","On":"3","Oa":"5.83","Od":"1.18","Mp":"3","p":{"1":{"n":7.5},"2":{"n":5},"3":{"n":5}}},"c":92},{"i":5140,"n":"Phojo","f":"Jerome","p":"D","r":20,"s":{"s":"17","n":"3","a":"5.67","d":"0.94","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.94","Os":"17","On":"3","Oa":"5.67","Od":"0.94","Dp":"3","p":{"1":{"n":7},"2":{"n":5},"3":{"n":5}}},"c":92},{"i":5154,"n":"N'Diaye","f":"Alassane","p":"A","r":17,"s":{"g":"1","s":"17","n":"3","a":"5.67","d":"0.94","Sg":"1","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.94","Og":"1","Os":"17","On":"3","Oa":"5.67","Od":"0.94","Mp":"3","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":5}}},"c":92},{"i":5168,"n":"Jeannin","f":"Mehdi","p":"G","r":11,"s":{"s":"7","n":"1","a":"7","Os":"7","On":"1","Oa":"7","Gp":"1","p":{"1":{"n":7}}},"c":92},{"i":5180,"n":"Ogier","f":"Florent","p":"D","r":24,"s":{"g":"1","s":"19","n":"3","a":"6.33","d":"0.47","Sg":"1","Ss":"19","Sn":"3","Sa":"6.33","Sd":"0.47","Og":"1","Os":"19","On":"3","Oa":"6.33","Od":"0.47","Dp":"3","p":{"1":{"n":6},"2":{"n":7,"g":1},"3":{"n":6}}},"c":92},{"i":5198,"n":"Gastien","f":"Johan","p":"M","r":16,"s":{"s":"15","n":"3","a":"5.17","d":"1.18","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.18","Os":"15","On":"3","Oa":"5.17","Od":"1.18","Mp":"3","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3.5}}},"c":92},{"i":5981,"n":"Donisa","f":"Julio","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"3":{"n":4.5,"s":1}}},"c":92},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":14,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Os":"13","On":"3","Oa":"4.5","Od":"0.41","Dp":"3","p":{"1":{"n":4},"2":{"n":5},"3":{"n":4.5}}},"c":93},{"i":538,"n":"Vanbaleghem","f":"Valentin","p":"D","r":12,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"2":{"n":5},"3":{"n":4}}},"c":93},{"i":1432,"n":"Cordoval","f":"J\u00e9r\u00e9my","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":93},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":1,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"2","p":{"1":{"n":3.5},"2":{"n":4.5}}},"c":93},{"i":3518,"n":"Ghezali","f":"Lamine","p":"A","r":5,"s":{"s":"12","n":"3","a":"4.17","d":"0.47","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.47","Os":"33","On":"8","Oa":"4.19","Od":"0.35","Ap":"8","p":{"34":{"n":4.5,"e":3071,"c":4,"s":1},"36":{"n":4,"e":3091,"c":4,"s":1},"37":{"n":4.5,"e":3099,"c":4,"s":1},"38":{"n":4,"e":3103,"c":4,"s":1},"1":{"n":3.5,"s":1},"2":{"n":4.5},"3":{"n":4.5,"s":1}}},"c":93},{"i":4849,"n":"Keny","f":"Philippe Paulin","p":"A","r":1,"s":{"n":0},"c":93},{"i":4863,"n":"Adinany","f":"Bryan","p":"A","r":1,"s":{"n":0},"c":93},{"i":4864,"n":"Leroy","f":"Leo","p":"M","r":3,"s":{"n":0},"c":93},{"i":4881,"n":"Bedfian","f":"Wilfried","p":"G","r":1,"s":{"n":0},"c":93},{"i":4886,"n":"Soumare","f":"Moussa","p":"D","r":3,"s":{"n":0},"c":93},{"i":4908,"n":"Hassan","f":"Haissem","p":"A","r":2,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Os":"13","On":"3","Oa":"4.5","Od":"0.41","Mp":"1","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4}}},"c":93},{"i":4922,"n":"Tormin","f":"Guevin","p":"A","r":3,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"1":{"n":3.5}}},"c":93},{"i":4972,"n":"Chevreuil","f":"Brian","p":"M","r":5,"s":{"n":0},"c":93},{"i":4987,"n":"Jung","f":"Andrew","p":"A","r":5,"s":{"s":"8","n":"2","a":"4","Ss":"8","Sn":"2","Sa":"4","Os":"8","On":"2","Oa":"4","Ap":"2","p":{"2":{"n":4,"s":1},"3":{"n":4}}},"c":93},{"i":4990,"n":"Operi","f":"Christopher","p":"M","r":14,"s":{"n":0},"c":93},{"i":5001,"n":"Sissako","f":"Abdoulaye","p":"M","r":16,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"2":{"n":5,"s":1},"3":{"n":4}}},"c":93},{"i":5024,"n":"Sangante","f":"Opa","p":"M","r":19,"s":{"s":"13","n":"3","a":"4.33","d":"0.62","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.62","Os":"13","On":"3","Oa":"4.33","Od":"0.62","Mp":"2","Dp":"1","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":4.5}}},"c":93},{"i":5045,"n":"Conde","f":"Sekou","p":"D","r":14,"s":{"s":"13","n":"3","a":"4.5","d":"1.08","Ss":"13","Sn":"3","Sa":"4.5","Sd":"1.08","Os":"13","On":"3","Oa":"4.5","Od":"1.08","Dp":"3","p":{"1":{"n":4},"2":{"n":6},"3":{"n":3.5}}},"c":93},{"i":5049,"n":"Fallou Niang","f":"","p":"M","r":3,"s":{"n":0},"c":93},{"i":5064,"n":"Fofana","f":"Nama","p":"D","r":16,"s":{"n":0},"c":93},{"i":5164,"n":"M'Bone","f":"Yannick","p":"M","r":17,"s":{"s":"7","n":"2","a":"3.5","d":"0.5","Ss":"4","Sn":"1","Sa":"4","Os":"7","On":"2","Oa":"3.5","Od":"0.5","Dp":"2","p":{"1":{"n":3},"3":{"n":4}}},"c":93},{"i":5169,"n":"Diarra","f":"Cheick","p":"A","r":12,"s":{"s":"12","n":"3","a":"4.17","d":"0.24","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.24","Os":"12","On":"3","Oa":"4.17","Od":"0.24","Ap":"3","p":{"1":{"n":4,"s":1},"2":{"n":4},"3":{"n":4.5,"s":1}}},"c":93},{"i":5185,"n":"Pillot","f":"R\u00e9mi","p":"G","r":13,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Gp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":6}}},"c":93},{"i":5212,"n":"Raineau","f":"Alexandre","p":"D","r":7,"s":{"s":"13","n":"3","a":"4.33","d":"0.62","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.62","Os":"13","On":"3","Oa":"4.33","Od":"0.62","Mp":"1","Dp":"2","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":3.5}}},"c":93},{"i":5215,"n":"Boukari","f":"Abdoulrazak","p":"M","r":15,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5}}},"c":93},{"i":5970,"n":"Ez Zaytouni","f":"Ayoub","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":93},{"i":5971,"n":"Mendy","f":"Francois","p":"D","r":1,"s":{"n":0},"c":93},{"i":5972,"n":"Luyambulabiwa","f":"Steven","p":"M","r":1,"s":{"n":0},"c":93},{"i":5973,"n":"Padilla","f":"Yannick","p":"M","r":1,"s":{"n":0},"c":93},{"i":6141,"n":"Fofana","f":"Adama","p":"M","r":1,"s":{"n":0},"c":93},{"i":6144,"n":"Grange","f":"Romain","p":"M","r":20,"s":{"n":0},"c":93},{"i":433,"n":"Raspentino","f":"Florian","p":"A","r":26,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Ap":"2","p":{"1":{"n":5},"2":{"n":3.5}}},"c":94},{"i":547,"n":"Belmonte","f":"Anthony","p":"M","r":2,"s":{"n":0},"c":94},{"i":1253,"n":"Benet","f":"Jessy","p":"M","r":15,"s":{"n":0},"c":94},{"i":1399,"n":"Tinhan","f":"Jonathan","p":"M","r":8,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4}}},"c":94},{"i":4840,"n":"Gyebohao","f":"Christian","p":"A","r":5,"s":{"n":0},"c":94},{"i":4841,"n":"Goteni","f":"Chris-Vianney","p":"D","r":3,"s":{"n":0},"c":94},{"i":4853,"n":"Loba","f":"Nathiau","p":"D","r":1,"s":{"n":0},"c":94},{"i":4857,"n":"Jurine","f":"Nicolas","p":"M","r":1,"s":{"n":0},"c":94},{"i":4868,"n":"Brun","f":"Yohan","p":"A","r":3,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"3":{"n":4,"s":1}}},"c":94},{"i":4915,"n":"Djitt\u00e9","f":"Moussa","p":"A","r":9,"s":{"g":"2","s":"17","n":"3","a":"5.67","d":"1.31","Sg":"2","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.31","Og":"2","Os":"17","On":"3","Oa":"5.67","Od":"1.31","Ap":"3","p":{"1":{"n":7.5,"g":2,"s":1},"2":{"n":4.5},"3":{"n":5}}},"c":94},{"i":4925,"n":"Kristinsson","f":"Krist\u00f3fer","p":"A","r":5,"s":{"n":0},"c":94},{"i":4932,"n":"Coulibaly","f":"Ibrahima","p":"M","r":13,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Ss":"5","Sn":"1","Sa":"5.5","Os":"9","On":"2","Oa":"4.75","Od":"0.75","Mp":"2","p":{"1":{"n":4},"3":{"n":5.5}}},"c":94},{"i":4933,"n":"Elogo","f":"Arsene","p":"M","r":18,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"2","Ap":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5},"3":{"n":5}}},"c":94},{"i":4950,"n":"Semedo","f":"Willy","p":"A","r":5,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Ap":"2","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1}}},"c":94},{"i":4979,"n":"Abdallah","f":"Abdel Hakim","p":"D","r":2,"s":{"n":0},"c":94},{"i":5059,"n":"Abou Demba","f":"Harouna","p":"D","r":14,"s":{"n":0},"c":94},{"i":5072,"n":"Pickel","f":"Charles","p":"M","r":5,"s":{"g":"1","s":"15","n":"3","a":"5","d":"0.82","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"0.82","Og":"1","Os":"15","On":"3","Oa":"5","Od":"0.82","Mp":"3","p":{"1":{"n":6,"g":1},"2":{"n":4},"3":{"n":5}}},"c":94},{"i":5088,"n":"Salles","f":"Esteban","p":"G","r":3,"s":{"n":0},"c":94},{"i":5092,"n":"Pambou","f":"Yves","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":94},{"i":5107,"n":"Ondaan","f":"Terell","p":"A","r":7,"s":{"s":"14","n":"3","a":"4.67","d":"1.31","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.31","Os":"14","On":"3","Oa":"4.67","Od":"1.31","Ap":"3","p":{"1":{"n":6.5},"2":{"n":3.5},"3":{"n":4}}},"c":94},{"i":5126,"n":"Mombris","f":"Jerome","p":"D","r":19,"s":{"s":"13","n":"3","a":"4.33","d":"0.47","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.47","Os":"13","On":"3","Oa":"4.33","Od":"0.47","Dp":"3","p":{"1":{"n":4},"2":{"n":4},"3":{"n":5}}},"c":94},{"i":5130,"n":"Monfray","f":"Adrien","p":"D","r":13,"s":{"s":"14","n":"3","a":"4.67","d":"1.03","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.03","Os":"14","On":"3","Oa":"4.67","Od":"1.03","Dp":"3","p":{"1":{"n":3.5},"2":{"n":4.5},"3":{"n":6}}},"c":94},{"i":5141,"n":"Vandenabeele","f":"Eric","p":"D","r":17,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Dp":"2","p":{"2":{"n":4.5,"s":1},"3":{"n":6}}},"c":94},{"i":5145,"n":"M'Changama","f":"Youssouf","p":"M","r":30,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4.5}}},"c":94},{"i":5166,"n":"Camara","f":"Papa Demba","p":"G","r":12,"s":{"n":0},"c":94},{"i":5182,"n":"Gibaud","f":"Pierre","p":"D","r":13,"s":{"s":"8","n":"2","a":"4","Os":"8","On":"2","Oa":"4","Dp":"2","p":{"1":{"n":4},"2":{"n":4}}},"c":94},{"i":5201,"n":"Nestor","f":"Loic","p":"D","r":11,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"1":{"n":4},"2":{"n":5}}},"c":94},{"i":5207,"n":"Maubleu","f":"Brice","p":"G","r":15,"s":{"s":"17","n":"3","a":"5.83","d":"0.24","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.24","Os":"17","On":"3","Oa":"5.83","Od":"0.24","Gp":"3","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5}}},"c":94},{"i":5210,"n":"El Jadeyaoui","f":"Alharbi","p":"M","r":9,"s":{"n":0},"c":94},{"i":5375,"n":"Boyer","f":"Fabien","p":"D","r":1,"s":{"n":0},"c":94},{"i":5975,"n":"Michel","f":"Florian","p":"M","r":1,"s":{"n":0},"c":94},{"i":6142,"n":"Sylvestre-Brac","f":"Jules","p":"D","r":7,"s":{"n":0},"c":94},{"i":478,"n":"Thill","f":"Vincent","p":"M","r":2,"s":{"s":"14","n":"3","a":"4.67","d":"0.62","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.62","Os":"14","On":"3","Oa":"4.67","Od":"0.62","Mp":"3","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":4}}},"c":97},{"i":511,"n":"Perrin","f":"Gaetan","p":"M","r":15,"s":{"s":"14","n":"3","a":"4.83","d":"0.47","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.47","Os":"14","On":"3","Oa":"4.83","Od":"0.47","Mp":"1","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":5.5},"3":{"n":4.5,"s":1}}},"c":97},{"i":546,"n":"Saint-Ruf","f":"Nicolas","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5}}},"c":97},{"i":4858,"n":"Le Pennec","f":"Ludovic","p":"G","r":1,"s":{"n":0},"c":97},{"i":4902,"n":"Hari","f":"Esteban","p":"M","r":1,"s":{"n":0},"c":97},{"i":4903,"n":"Mbelek Nouga","f":"Paul","p":"D","r":1,"s":{"n":0},"c":97},{"i":4906,"n":"Sevestre","f":"Alexis","p":"G","r":3,"s":{"n":0},"c":97},{"i":4917,"n":"El Khoumisti","f":"Fahd","p":"A","r":7,"s":{"n":0},"c":97},{"i":4929,"n":"Keita","f":"Tidiane","p":"M","r":6,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"4","Sn":"1","Sa":"4.5","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"1":{"n":5,"s":1},"3":{"n":4.5}}},"c":97},{"i":4930,"n":"Marchadier","f":"Alex","p":"D","r":10,"s":{"n":0},"c":97},{"i":4931,"n":"Scheidler","f":"Aurelien","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":97},{"i":4938,"n":"Fresneau","f":"Redha","p":"D","r":1,"s":{"n":0},"c":97},{"i":4941,"n":"Luzayadio","f":"Arnaud","p":"D","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"2":{"n":4.5,"s":1}}},"c":97},{"i":4953,"n":"Talal","f":"Amine","p":"M","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"3":{"n":4.5,"s":1}}},"c":97},{"i":4974,"n":"Ephestion","f":"Thomas","p":"M","r":16,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"2","p":{"1":{"n":4.5},"2":{"n":4}}},"c":97},{"i":4982,"n":"Benkaid","f":"Hicham","p":"A","r":17,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"4","Sn":"1","Sa":"4","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Ap":"2","p":{"1":{"n":5},"3":{"n":4}}},"c":97},{"i":5043,"n":"D'Arpino","f":"Maxime","p":"M","r":18,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Mp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":5.5}}},"c":97},{"i":5046,"n":"Bamba","f":"Issiaka","p":"A","r":1,"s":{"n":0},"c":97},{"i":5047,"n":"Demoncy","f":"Yohan","p":"M","r":14,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Ss":"4","Sn":"1","Sa":"4","Os":"9","On":"2","Oa":"4.75","Od":"0.75","Mp":"2","p":{"1":{"n":5.5},"3":{"n":4}}},"c":97},{"i":5089,"n":"Thiam","f":"Abdoulkader","p":"D","r":1,"s":{"n":0},"c":97},{"i":5091,"n":"Mutombo Kupa","f":"Gabriel","p":"D","r":16,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Dp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":4.5}}},"c":97},{"i":5127,"n":"Correa","f":"Joris","p":"A","r":13,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":97},{"i":5135,"n":"Lambese","f":"St\u00e9phane","p":"D","r":5,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4.5}}},"c":97},{"i":5142,"n":"Vachoux","f":"J\u00e9r\u00e9my","p":"G","r":6,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Gp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":6}}},"c":97},{"i":5153,"n":"Renault","f":"Thomas","p":"G","r":11,"s":{"n":0},"c":97},{"i":5160,"n":"Lopy","f":"Joseph","p":"M","r":23,"s":{"s":"15","n":"3","a":"5.17","d":"0.24","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"15","On":"3","Oa":"5.17","Od":"0.24","Mp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5}}},"c":97},{"i":5196,"n":"Cambon","f":"C\u00e9dric","p":"D","r":14,"s":{"s":"9","n":"2","a":"4.75","d":"1.25","Os":"9","On":"2","Oa":"4.75","Od":"1.25","Dp":"2","p":{"1":{"n":6},"2":{"n":3.5}}},"c":97},{"i":5199,"n":"Pinaud","f":"Gauthier","p":"D","r":14,"s":{"s":"16","n":"3","a":"5.33","d":"0.85","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.85","Os":"16","On":"3","Oa":"5.33","Od":"0.85","Dp":"3","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":4.5}}},"c":97},{"i":5221,"n":"Le Tallec","f":"Anthony","p":"A","r":22,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4}}},"c":97},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":6,"s":{"n":0},"c":98},{"i":459,"n":"Vion","f":"Thibaut","p":"A","r":10,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":98},{"i":529,"n":"Cont\u00e9","f":"Ibrahima Sory","p":"D","r":3,"s":{"n":0},"c":98},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"1":{"n":4.5}}},"c":98},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":12,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Mp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6}}},"c":98},{"i":4862,"n":"Kone","f":"Zoumana","p":"A","r":1,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Ap":"1","p":{"1":{"n":3.5}}},"c":98},{"i":4894,"n":"Maddaloni","f":"Florent","p":"G","r":1,"s":{"n":0},"c":98},{"i":4895,"n":"Kilama Kilama","f":"Guy","p":"D","r":1,"s":{"n":0},"c":98},{"i":4911,"n":"Sissoko","f":"Ibrahim","p":"A","r":14,"s":{"g":"1","s":"7","n":"1","a":"7.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"1","Os":"7","On":"1","Oa":"7.5","Ap":"1","p":{"3":{"n":7.5,"g":1}}},"c":98},{"i":4919,"n":"Pauchet","f":"Enzo","p":"G","r":1,"s":{"n":0},"c":98},{"i":4920,"n":"Lapis","f":"Florian","p":"D","r":7,"s":{"s":"10","n":"2","a":"5.25","d":"1.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"1.25","Os":"10","On":"2","Oa":"5.25","Od":"1.25","Dp":"2","p":{"2":{"n":4},"3":{"n":6.5}}},"c":98},{"i":4921,"n":"Fontani","f":"Dylan","p":"D","r":1,"s":{"n":0},"c":98},{"i":4955,"n":"Bourhane","f":"Yacine","p":"M","r":6,"s":{"n":0},"c":98},{"i":4956,"n":"Koyalipou","f":"Goduine","p":"A","r":8,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"2":{"n":4.5,"s":1},"3":{"n":5.5,"s":1}}},"c":98},{"i":4966,"n":"Ameka Autchanga","f":"Louis","p":"A","r":8,"s":{"s":"13","n":"3","a":"4.5","d":"1.08","Ss":"13","Sn":"3","Sa":"4.5","Sd":"1.08","Os":"13","On":"3","Oa":"4.5","Od":"1.08","Mp":"1","Ap":"2","p":{"1":{"n":3.5},"2":{"n":4},"3":{"n":6,"s":1}}},"c":98},{"i":4978,"n":"Leautey","f":"Antoine","p":"A","r":10,"s":{"g":"1","s":"17","n":"3","a":"5.67","d":"1.31","Sg":"1","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.31","Og":"1","Os":"17","On":"3","Oa":"5.67","Od":"1.31","Mp":"1","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":4.5},"3":{"n":7.5,"g":1}}},"c":98},{"i":4991,"n":"Bena","f":"Quentin","p":"M","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"6","Sn":"1","Sa":"6","Os":"10","On":"2","Oa":"5.25","Od":"0.75","Mp":"2","p":{"1":{"n":4.5},"3":{"n":6,"s":1}}},"c":98},{"i":4994,"n":"Paro","f":"Issouf","p":"D","r":11,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6}}},"c":98},{"i":5014,"n":"Grich","f":"Zakaria","p":"M","r":1,"s":{"n":0},"c":98},{"i":5022,"n":"Da Costa","f":"Julien","p":"D","r":12,"s":{"s":"15","n":"3","a":"5.17","d":"1.18","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.18","Os":"15","On":"3","Oa":"5.17","Od":"1.18","Dp":"3","p":{"1":{"n":3.5},"2":{"n":6},"3":{"n":6}}},"c":98},{"i":5034,"n":"Konate","f":"Brahim","p":"M","r":10,"s":{"s":"15","n":"3","a":"5","d":"0.71","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"15","On":"3","Oa":"5","Od":"0.71","Mp":"3","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5},"3":{"n":6}}},"c":98},{"i":5069,"n":"Allagbe","f":"Saturnin","p":"G","r":16,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2","p":{"2":{"n":5},"3":{"n":6}}},"c":98},{"i":5073,"n":"Louiserre","f":"Dylan","p":"M","r":19,"s":{"g":"1","s":"18","n":"3","a":"6","d":"1.22","Sg":"1","Ss":"18","Sn":"3","Sa":"6","Sd":"1.22","Og":"1","Os":"18","On":"3","Oa":"6","Od":"1.22","Mp":"3","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":7.5,"g":1}}},"c":98},{"i":5079,"n":"Jacob","f":"Valentin","p":"M","r":23,"s":{"g":"1","s":"16","n":"3","a":"5.5","d":"1.22","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.22","Og":"1","Os":"16","On":"3","Oa":"5.5","Od":"1.22","Ap":"3","p":{"1":{"n":4},"2":{"n":7,"g":1},"3":{"n":5.5}}},"c":98},{"i":5081,"n":"Djigla","f":"David","p":"A","r":9,"s":{"n":0},"c":98},{"i":5082,"n":"Pedro Henrique","f":"","p":"A","r":6,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":98},{"i":5187,"n":"Sans","f":"Matthieu","p":"D","r":7,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6}}},"c":98},{"i":5363,"n":"Baroan","f":"Antoine","p":"A","r":2,"s":{"n":0},"c":98},{"i":5977,"n":"Doukansy","f":"Brahima","p":"M","r":1,"s":{"n":0},"c":98},{"i":469,"n":"Sane","f":"Pape","p":"A","r":7,"s":{"s":"13","n":"3","a":"4.33","d":"0.24","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Os":"13","On":"3","Oa":"4.33","Od":"0.24","Ap":"3","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4}}},"c":100},{"i":1241,"n":"Maury","f":"Erwan","p":"M","r":6,"s":{"n":0},"c":100},{"i":4842,"n":"Secchi","f":"Thomas","p":"G","r":2,"s":{"n":0},"c":100},{"i":4843,"n":"Coelho","f":"Gr\u00e9gory","p":"A","r":2,"s":{"n":0},"c":100},{"i":4844,"n":"Garcia","f":"Hugo","p":"M","r":2,"s":{"n":0},"c":100},{"i":4845,"n":"Guerbert","f":"Mathieu","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":100},{"i":4846,"n":"Peyrelade","f":"Alexis","p":"D","r":2,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"2":{"n":5,"s":1}}},"c":100},{"i":4847,"n":"Bonnet","f":"Ugo","p":"A","r":14,"s":{"g":"1","s":"17","n":"3","a":"5.83","d":"0.85","Sg":"1","Ss":"17","Sn":"3","Sa":"5.83","Sd":"0.85","Og":"1","Os":"17","On":"3","Oa":"5.83","Od":"0.85","Ap":"3","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":5.5}}},"c":100},{"i":4850,"n":"Ouammou","f":"Nassim","p":"M","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Ap":"2","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1}}},"c":100},{"i":4928,"n":"Ouhafsa","f":"Ayoub","p":"A","r":8,"s":{"s":"9","n":"2","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":100},{"i":4934,"n":"Dieng","f":"Nathaniel","p":"D","r":7,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5}}},"c":100},{"i":4954,"n":"Roche","f":"Yohan","p":"D","r":12,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Dp":"3","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5}}},"c":100},{"i":4970,"n":"Mathis","f":"Boris","p":"A","r":4,"s":{"n":0},"c":100},{"i":5016,"n":"Henry","f":"Valentin","p":"M","r":7,"s":{"g":"1","s":"16","n":"3","a":"5.5","d":"1.08","Sg":"1","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Og":"1","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Dp":"3","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5}}},"c":100},{"i":5021,"n":"Caddy","f":"Dorian","p":"A","r":1,"s":{"n":0},"c":100},{"i":5027,"n":"Maanane","f":"Eddy","p":"A","r":1,"s":{"s":"13","n":"3","a":"4.33","d":"0.24","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Os":"13","On":"3","Oa":"4.33","Od":"0.24","Ap":"3","p":{"1":{"n":4,"s":1},"2":{"n":4.5},"3":{"n":4.5,"s":1}}},"c":100},{"i":5035,"n":"Desmas","f":"Arthur","p":"G","r":13,"s":{"s":"18","n":"3","a":"6.17","d":"0.62","Ss":"18","Sn":"3","Sa":"6.17","Sd":"0.62","Os":"18","On":"3","Oa":"6.17","Od":"0.62","Gp":"3","p":{"1":{"n":7},"2":{"n":6},"3":{"n":5.5}}},"c":100},{"i":5055,"n":"Jacob","f":"Corentin","p":"D","r":2,"s":{"n":0},"c":100},{"i":5075,"n":"M'Pasi N'Zau","f":"Lionel","p":"G","r":1,"s":{"n":0},"c":100},{"i":5094,"n":"Ruffaut","f":"Pierre","p":"M","r":14,"s":{"g":"1","s":"17","n":"3","a":"5.83","d":"1.55","Sg":"1","Ss":"17","Sn":"3","Sa":"5.83","Sd":"1.55","Og":"1","Os":"17","On":"3","Oa":"5.83","Od":"1.55","Mp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":8,"g":1}}},"c":100},{"i":5096,"n":"Chougrani","f":"Joris","p":"D","r":7,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Dp":"3","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5}}},"c":100},{"i":5097,"n":"Bardy","f":"Pierre","p":"D","r":9,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"0.25","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Dp":"2","p":{"1":{"n":5.5},"3":{"n":6,"g":1}}},"c":100},{"i":5098,"n":"Dady Ngoye","f":"Francis","p":"M","r":6,"s":{"n":0},"c":100},{"i":5124,"n":"Douline","f":"David","p":"D","r":1,"s":{"s":"17","n":"3","a":"5.67","d":"0.24","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.24","Os":"17","On":"3","Oa":"5.67","Od":"0.24","Mp":"3","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5}}},"c":100},{"i":5149,"n":"Tertereau","f":"Aur\u00e9lien","p":"M","r":11,"s":{"s":"16","n":"3","a":"5.5","d":"0.41","Ss":"16","Sn":"3","Sa":"5.5","Sd":"0.41","Os":"16","On":"3","Oa":"5.5","Od":"0.41","Mp":"3","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":5}}},"c":100},{"i":5189,"n":"Poujol","f":"Lo\u00efc","p":"M","r":9,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"2":{"n":5.5}}},"c":100},{"i":5200,"n":"Sanaia","f":"Amiran","p":"D","r":13,"s":{"n":0},"c":100},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":15,"s":{"s":"15","n":"3","a":"5.17","d":"1.03","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.03","Os":"15","On":"3","Oa":"5.17","Od":"1.03","Gp":"3","p":{"1":{"n":4},"2":{"n":6.5},"3":{"n":5}}},"c":101},{"i":306,"n":"Bellugou","f":"Francois","p":"M","r":15,"s":{"s":"14","n":"3","a":"4.67","d":"0.62","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.62","Os":"14","On":"3","Oa":"4.67","Od":"0.62","Mp":"3","p":{"1":{"n":4.5},"2":{"n":5.5},"3":{"n":4}}},"c":101},{"i":372,"n":"Adeoti","f":"Jordan","p":"D","r":18,"s":{"n":0},"c":101},{"i":377,"n":"Ngando","f":"Axel","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":101},{"i":519,"n":"Arcus","f":"Carlens","p":"D","r":14,"s":{"s":"15","n":"3","a":"5","d":"0.71","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Os":"15","On":"3","Oa":"5","Od":"0.71","Dp":"3","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5}}},"c":101},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":1,"s":{"n":0,"Os":"51","On":"11","Oa":"4.64","Od":"0.61","Mp":"11"},"c":101},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":7,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2","p":{"35":{"n":6,"e":3072,"c":16}}},"c":101},{"i":4859,"n":"Chergui","f":"Samir Sophian","p":"M","r":1,"s":{"n":0},"c":101},{"i":4923,"n":"Begraoui","f":"Yanis","p":"A","r":4,"s":{"n":0},"c":101},{"i":4937,"n":"Marcelin","f":"Jean","p":"M","r":3,"s":{"n":0},"c":101},{"i":4949,"n":"Laiton","f":"Sonny","p":"G","r":5,"s":{"n":0},"c":101},{"i":4977,"n":"Merdji","f":"Yanis","p":"A","r":7,"s":{"g":"2","s":"15","n":"3","a":"5.17","d":"1.7","Sg":"2","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.7","Og":"2","Os":"15","On":"3","Oa":"5.17","Od":"1.7","Ap":"3","p":{"1":{"n":3.5},"2":{"n":7.5,"g":2,"s":1},"3":{"n":4.5,"s":1}}},"c":101},{"i":5031,"n":"Fomba","f":"Lamine","p":"M","r":18,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5,"s":1},"2":{"n":5,"s":1}}},"c":101},{"i":5063,"n":"Youssouf","f":"Bendjaloud","p":"D","r":6,"s":{"n":0},"c":101},{"i":5070,"n":"Boto","f":"Kenji-Van","p":"D","r":18,"s":{"n":0},"c":101},{"i":5087,"n":"Fumu Tamuzo","f":"Fran\u00e7ois-Xavier","p":"M","r":6,"s":{"n":0},"c":101},{"i":5102,"n":"Ba","f":"Abdoul","p":"D","r":4,"s":{"n":0},"c":101},{"i":5109,"n":"Sakhi","f":"Hamza","p":"M","r":14,"s":{"s":"16","n":"3","a":"5.5","d":"1.08","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Mp":"3","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":5}}},"c":101},{"i":5121,"n":"Ji Xiaoxuan","f":"","p":"A","r":1,"s":{"n":0},"c":101},{"i":5137,"n":"Tour\u00e9","f":"Birama","p":"M","r":14,"s":{"s":"16","n":"3","a":"5.33","d":"1.18","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.18","Os":"16","On":"3","Oa":"5.33","Od":"1.18","Mp":"3","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":4.5}}},"c":101},{"i":5151,"n":"Yattara","f":"Mohamed","p":"A","r":17,"s":{"s":"12","n":"3","a":"4.17","d":"0.62","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.62","Os":"12","On":"3","Oa":"4.17","Od":"0.62","Ap":"3","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":3.5}}},"c":101},{"i":5155,"n":"Bernard","f":"Quentin","p":"D","r":13,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Os":"13","On":"3","Oa":"4.5","Od":"0.41","Dp":"3","p":{"1":{"n":4},"2":{"n":5},"3":{"n":4.5}}},"c":101},{"i":5171,"n":"Dugimont","f":"R\u00e9my","p":"A","r":17,"s":{"s":"12","n":"3","a":"4","d":"0.41","Ss":"12","Sn":"3","Sa":"4","Sd":"0.41","Os":"12","On":"3","Oa":"4","Od":"0.41","Mp":"1","Ap":"2","p":{"1":{"n":3.5},"2":{"n":4.5,"s":1},"3":{"n":4,"s":1}}},"c":101},{"i":5174,"n":"Barreto","f":"Mickael","p":"M","r":13,"s":{"s":"16","n":"3","a":"5.5","d":"1.08","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Mp":"3","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":5}}},"c":101},{"i":5192,"n":"Souprayen","f":"Samuel","p":"D","r":13,"s":{"s":"15","n":"3","a":"5.17","d":"1.7","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.7","Os":"15","On":"3","Oa":"5.17","Od":"1.7","Dp":"3","p":{"1":{"n":4.5},"2":{"n":7.5},"3":{"n":3.5}}},"c":101},{"i":5352,"n":"Raux Yao","f":"Serge","p":"D","r":1,"s":{"n":0},"c":101},{"i":5369,"n":"Camara","f":"Ousoumane","p":"M","r":1,"s":{"n":0},"c":101},{"i":5378,"n":"Coeff","f":"Alexandre","p":"D","r":7,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Dp":"2","p":{"2":{"n":5.5},"3":{"n":4.5}}},"c":101},{"i":5379,"n":"Sorgic","f":"Dejan","p":"A","r":15,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"2":{"n":4.5},"3":{"n":4}}},"c":101},{"i":245,"n":"Privat","f":"Sloan","p":"A","r":4,"s":{"n":0},"c":102},{"i":371,"n":"Tour\u00e9","f":"Thomas","p":"A","r":3,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5}}},"c":102},{"i":385,"n":"Paye","f":"Pape","p":"D","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5,"s":1}}},"c":102},{"i":521,"n":"Kaabouni","f":"Younes","p":"M","r":3,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Mp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6}}},"c":102},{"i":565,"n":"Livolant","f":"Jeremy","p":"M","r":17,"s":{"s":"18","n":"3","a":"6.17","d":"0.62","Ss":"18","Sn":"3","Sa":"6.17","Sd":"0.62","Os":"18","On":"3","Oa":"6.17","Od":"0.62","Mp":"3","p":{"1":{"n":5.5},"2":{"n":6,"s":1},"3":{"n":7}}},"c":102},{"i":4870,"n":"Sans","f":"Romain","p":"D","r":2,"s":{"n":0},"c":102},{"i":4892,"n":"Umbdenstock","f":"Isaak","p":"M","r":1,"s":{"n":0},"c":102},{"i":4893,"n":"Moltenis","f":"Boris Sebastian","p":"D","r":5,"s":{"n":0},"c":102},{"i":4912,"n":"Ourega","f":"Fabien","p":"A","r":12,"s":{"g":"2","s":"19","n":"3","a":"6.33","d":"0.62","Sg":"2","Ss":"19","Sn":"3","Sa":"6.33","Sd":"0.62","Og":"2","Os":"19","On":"3","Oa":"6.33","Od":"0.62","Mp":"3","p":{"1":{"n":5.5},"2":{"n":6.5,"g":1},"3":{"n":7,"g":1}}},"c":102},{"i":4914,"n":"M'Bakata","f":"Salem","p":"D","r":7,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5}}},"c":102},{"i":4916,"n":"Glaentzlin","f":"Victor","p":"A","r":1,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1}}},"c":102},{"i":4947,"n":"Lacroix","f":"Maxence","p":"D","r":3,"s":{"s":"16","n":"3","a":"5.33","d":"0.24","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.24","Os":"16","On":"3","Oa":"5.33","Od":"0.24","Dp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5.5}}},"c":102},{"i":4986,"n":"Lasme","f":"Bryan","p":"A","r":8,"s":{"n":0},"c":102},{"i":4988,"n":"Pendant","f":"Jason","p":"D","r":11,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5}}},"c":102},{"i":5005,"n":"Weissbeck","f":"Gaetan","p":"M","r":1,"s":{"s":"16","n":"3","a":"5.33","d":"0.62","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Os":"16","On":"3","Oa":"5.33","Od":"0.62","Mp":"3","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6}}},"c":102},{"i":5007,"n":"Senhadji","f":"Rayan","p":"D","r":1,"s":{"n":0},"c":102},{"i":5028,"n":"Prevot","f":"Maxence","p":"G","r":15,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5}}},"c":102},{"i":5029,"n":"Aubin Long","f":"","p":"G","r":2,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5,"s":1}}},"c":102},{"i":5038,"n":"Francois","f":"Martin","p":"M","r":2,"s":{"n":0},"c":102},{"i":5053,"n":"Daham","f":"Sofiane","p":"M","r":16,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1}}},"c":102},{"i":5067,"n":"Ati","f":"Lawrence","p":"G","r":9,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Gp":"2","p":{"2":{"n":5},"3":{"n":5.5}}},"c":102},{"i":5076,"n":"Senzemba","f":"Nicolas","p":"D","r":5,"s":{"n":0},"c":102},{"i":5105,"n":"Di\u00e9dhiou","f":"Christophe","p":"D","r":8,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":6}}},"c":102},{"i":5159,"n":"Sane","f":"Abdoulaye","p":"A","r":13,"s":{"s":"12","n":"3","a":"4.17","d":"0.24","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.24","Os":"12","On":"3","Oa":"4.17","Od":"0.24","Ap":"3","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":4}}},"c":102},{"i":5195,"n":"Tope Obadeyi","f":"","p":"M","r":4,"s":{"n":0},"c":102},{"i":5347,"n":"Sitti","f":"Melvin","p":"M","r":5,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Mp":"2","p":{"2":{"n":5.5},"3":{"n":6}}},"c":102},{"i":5372,"n":"Thioune","f":"Ousseynou","p":"M","r":2,"s":{"n":0},"c":102},{"i":5380,"n":"Sissoko","f":"Mohamed","p":"M","r":6,"s":{"n":0},"c":102},{"i":5974,"n":"Ntolla","f":"Natanael","p":"A","r":1,"s":{"n":0},"c":102},{"i":399,"n":"L\u00e9v\u00eaque","f":"Dorian","p":"D","r":5,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"3":{"n":3.5}}},"c":103},{"i":429,"n":"Musavu-King","f":"Yrondu","p":"D","r":2,"s":{"n":0},"c":103},{"i":554,"n":"Maziz","f":"Youssef","p":"M","r":3,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Mp":"2","p":{"2":{"n":4},"3":{"n":5,"s":1}}},"c":103},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":6,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Ss":"6","Sn":"1","Sa":"6","Os":"42","On":"9","Oa":"4.67","Od":"0.53","Mp":"2","Ap":"7","p":{"1":{"n":4.5,"s":1},"3":{"n":6}}},"c":103},{"i":1443,"n":"Confais","f":"Alois","p":"M","r":7,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"8","Sn":"2","Sa":"4","Sd":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"2","p":{"2":{"n":3.5},"3":{"n":4.5}}},"c":103},{"i":1456,"n":"Gope-Fenepej","f":"Georges","p":"A","r":2,"s":{"n":0},"c":103},{"i":4852,"n":"Duponchelle","f":"Tom","p":"D","r":9,"s":{"s":"9","n":"2","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Dp":"2","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5}}},"c":103},{"i":4907,"n":"Patron","f":"Pierre","p":"G","r":1,"s":{"n":0},"c":103},{"i":4960,"n":"Moussiti-Oko","f":"Bevic","p":"A","r":7,"s":{"g":"1","s":"14","n":"3","a":"4.83","d":"0.85","Sg":"1","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.85","Og":"1","Os":"14","On":"3","Oa":"4.83","Od":"0.85","Ap":"3","p":{"1":{"n":6,"g":1},"2":{"n":4},"3":{"n":4.5}}},"c":103},{"i":4971,"n":"Diagne","f":"Ousseynou Cavin","p":"M","r":2,"s":{"n":0},"c":103},{"i":5017,"n":"Diarra","f":"St\u00e9phane","p":"A","r":6,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Mp":"3","p":{"1":{"n":5.5},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1}}},"c":103},{"i":5052,"n":"Dasquet","f":"Thomas","p":"D","r":11,"s":{"n":0},"c":103},{"i":5054,"n":"Ebosse","f":"Enzo","p":"D","r":2,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.41","Os":"13","On":"3","Oa":"4.5","Od":"0.41","Dp":"3","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5,"s":1}}},"c":103},{"i":5078,"n":"Lemonnier","f":"Pierre","p":"D","r":15,"s":{"s":"12","n":"3","a":"4","Ss":"12","Sn":"3","Sa":"4","Os":"12","On":"3","Oa":"4","Dp":"3","p":{"1":{"n":4},"2":{"n":4},"3":{"n":4}}},"c":103},{"i":5095,"n":"Boissier","f":"Remy","p":"M","r":12,"s":{"s":"15","n":"3","a":"5.17","d":"0.85","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.85","Os":"15","On":"3","Oa":"5.17","Od":"0.85","Mp":"3","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":6}}},"c":103},{"i":5115,"n":"Bo\u00e9-Kane","f":"Yann","p":"M","r":13,"s":{"s":"12","n":"3","a":"4.17","d":"0.62","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.62","Os":"12","On":"3","Oa":"4.17","Od":"0.62","Mp":"2","Dp":"1","p":{"1":{"n":5},"2":{"n":4},"3":{"n":3.5}}},"c":103},{"i":5139,"n":"Hafidi","f":"Hamza","p":"M","r":5,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Mp":"2","p":{"1":{"n":5},"2":{"n":3.5}}},"c":103},{"i":5144,"n":"Vardin","f":"Alexandre","p":"D","r":10,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5}}},"c":103},{"i":5177,"n":"Julienne","f":"Frank","p":"A","r":10,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":3.5}}},"c":103},{"i":5184,"n":"Cr\u00e9hin","f":"Vincent Kevin","p":"A","r":6,"s":{"g":"1","s":"16","n":"3","a":"5.33","d":"0.62","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Og":"1","Os":"16","On":"3","Oa":"5.33","Od":"0.62","Ap":"3","p":{"1":{"n":5.5},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1}}},"c":103},{"i":5193,"n":"Yohann Thuram","f":"","p":"G","r":18,"s":{"s":"15","n":"3","a":"5","d":"0.41","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Gp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5}}},"c":103},{"i":5208,"n":"Vincent","f":"St\u00e9phen","p":"A","r":8,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Mp":"1","Dp":"1","p":{"1":{"n":4},"2":{"n":4.5,"s":1}}},"c":103},{"i":5213,"n":"Aymes","f":"J\u00e9r\u00e9my","p":"G","r":7,"s":{"n":0},"c":103},{"i":5345,"n":"Rambaud","f":"Thibault","p":"M","r":5,"s":{"n":0},"c":103},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":12,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Og":"1","Os":"124","On":"25","Oa":"4.96","Od":"0.9","Mp":"20","Dp":"4","Ap":"1","p":{"32":{"n":5,"e":3047,"c":10},"34":{"n":3.5,"e":3071,"c":10},"36":{"n":5,"e":3082,"c":10,"s":1},"37":{"n":4.5,"e":3101,"c":10,"s":1},"1":{"n":4.5,"s":1},"2":{"n":5,"s":1}}},"c":104},{"i":92,"n":"Leca","f":"Jean-Louis","p":"G","r":22,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Gp":"2","p":{"2":{"n":6},"3":{"n":6}}},"c":104},{"i":175,"n":"Gillet","f":"Guillaume","p":"M","r":18,"s":{"s":"16","n":"3","a":"5.5","d":"1.08","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Os":"16","On":"3","Oa":"5.5","Od":"1.08","Mp":"3","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":5}}},"c":104},{"i":237,"n":"Mesloub","f":"Walid","p":"M","r":23,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":5,"s":1},"3":{"n":4.5}}},"c":104},{"i":373,"n":"Tahrat","f":"Mehdi","p":"D","r":18,"s":{"n":0},"c":104},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":6,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"15","On":"3","Oa":"5.17","Od":"0.62","Dp":"3","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5}}},"c":104},{"i":488,"n":"Vincensini","f":"Thomas","p":"G","r":1,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Gp":"1","p":{"1":{"n":5.5}}},"c":104},{"i":1208,"n":"Steven Fortes","f":"","p":"D","r":11,"s":{"s":"17","n":"3","a":"5.67","d":"0.24","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.24","Os":"27","On":"5","Oa":"5.5","Od":"0.32","Dp":"5","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":5.5}}},"c":104},{"i":1518,"n":"Massadio Haidara","f":"","p":"D","r":12,"s":{"n":0},"c":104},{"i":4865,"n":"Ducrocq","f":"Tom","p":"M","r":1,"s":{"n":0},"c":104},{"i":4898,"n":"Simon","f":"Nsana","p":"M","r":1,"s":{"n":0},"c":104},{"i":4926,"n":"Gomel","f":"Benjamin","p":"A","r":1,"s":{"n":0},"c":104},{"i":4943,"n":"Bari","f":"Bilal","p":"A","r":2,"s":{"n":0},"c":104},{"i":4944,"n":"Doucoure","f":"Cheick Oumar","p":"M","r":20,"s":{"n":0},"c":104},{"i":4965,"n":"Robail","f":"Ga\u00ebtan","p":"M","r":25,"s":{"g":"1","s":"18","n":"3","a":"6","d":"1.41","Sg":"1","Ss":"18","Sn":"3","Sa":"6","Sd":"1.41","Og":"1","Os":"18","On":"3","Oa":"6","Od":"1.41","Mp":"3","p":{"1":{"n":5},"2":{"n":8,"g":1},"3":{"n":5}}},"c":104},{"i":4983,"n":"Teka","f":"Seif","p":"D","r":6,"s":{"s":"11","n":"2","a":"5.75","d":"0.25","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"11","On":"2","Oa":"5.75","Od":"0.25","Dp":"2","p":{"2":{"n":6},"3":{"n":5.5}}},"c":104},{"i":4997,"n":"Beghin","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":104},{"i":5000,"n":"Wojtkowiak","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":104},{"i":5002,"n":"Duverne","f":"Jean-Kevin","p":"D","r":10,"s":{"n":0},"c":104},{"i":5003,"n":"Radovanovic","f":"Aleksandar","p":"D","r":10,"s":{"n":0},"c":104},{"i":5010,"n":"Gomis","f":"Yannick","p":"A","r":30,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"4","Sn":"1","Sa":"4","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Ap":"2","p":{"1":{"n":5},"3":{"n":4}}},"c":104},{"i":5013,"n":"Desprez","f":"Didier","p":"G","r":1,"s":{"n":0},"c":104},{"i":5019,"n":"Mendy","f":"Arial","p":"D","r":9,"s":{"s":"12","n":"2","a":"6.25","d":"0.25","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Os":"12","On":"2","Oa":"6.25","Od":"0.25","Dp":"2","p":{"2":{"n":6.5},"3":{"n":6}}},"c":104},{"i":5030,"n":"Banza","f":"Simon","p":"A","r":8,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Ap":"3","p":{"1":{"n":6,"s":1},"2":{"n":5},"3":{"n":5,"s":1}}},"c":104},{"i":5040,"n":"Vitor Costa","f":"","p":"D","r":6,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":104},{"i":5050,"n":"Souleymane Diarra","f":"","p":"M","r":17,"s":{"n":0},"c":104},{"i":5057,"n":"Chouiar","f":"Mounir","p":"A","r":16,"s":{"g":"2","s":"18","n":"3","a":"6.17","d":"1.03","Sg":"2","Ss":"18","Sn":"3","Sa":"6.17","Sd":"1.03","Og":"2","Os":"18","On":"3","Oa":"6.17","Od":"1.03","Ap":"3","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":7.5,"g":1,"s":1},"3":{"n":5,"s":1}}},"c":104},{"i":5061,"n":"Sotoca","f":"Florian","p":"A","r":26,"s":{"g":"1","s":"19","n":"3","a":"6.33","d":"1.03","Sg":"1","Ss":"19","Sn":"3","Sa":"6.33","Sd":"1.03","Og":"1","Os":"19","On":"3","Oa":"6.33","Od":"1.03","Mp":"3","p":{"1":{"n":7.5,"g":1},"2":{"n":6.5},"3":{"n":5}}},"c":104},{"i":5074,"n":"Mauricio","f":"Tony","p":"M","r":30,"s":{"g":"1","s":"16","n":"3","a":"5.33","d":"0.47","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.47","Og":"1","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Mp":"3","p":{"1":{"n":5},"2":{"n":5},"3":{"n":6,"g":1,"s":1}}},"c":104},{"i":5083,"n":"Madri","f":"Mouaad","p":"A","r":1,"s":{"n":0},"c":104},{"i":5147,"n":"Ba","f":"El-Hadji","p":"M","r":15,"s":{"n":0},"c":104},{"i":5176,"n":"Perez","f":"Manuel","p":"M","r":13,"s":{"s":"16","n":"3","a":"5.33","d":"0.24","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.24","Os":"16","On":"3","Oa":"5.33","Od":"0.24","Mp":"3","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5}}},"c":104},{"i":5228,"n":"Sylla","f":"Moussa","p":"D","r":4,"s":{"n":0},"c":104},{"i":5346,"n":"Sene","f":"Cheikh Cory","p":"D","r":7,"s":{"n":0},"c":104},{"i":5360,"n":"Boli","f":"Charles","p":"M","r":1,"s":{"n":0},"c":104},{"i":5366,"n":"Valencia","f":"Jader","p":"A","r":1,"s":{"n":0},"c":104},{"i":473,"n":"Maisonnial","f":"Anthony","p":"G","r":1,"s":{"n":0},"c":107},{"i":4835,"n":"Mangonzo","f":"Jeremy","p":"M","r":1,"s":{"n":0},"c":107},{"i":4836,"n":"Hugonet","f":"Jean","p":"D","r":1,"s":{"n":0},"c":107},{"i":4837,"n":"Matoug","f":"Sami","p":"M","r":1,"s":{"n":0},"c":107},{"i":4866,"n":"Abdeldjelil","f":"Oussama","p":"A","r":8,"s":{"s":"9","n":"2","a":"4.5","d":"0.5","Ss":"5","Sn":"1","Sa":"5","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Ap":"2","p":{"1":{"n":4,"e":5067,"c":2},"3":{"n":5,"e":5044,"c":2}}},"c":107},{"i":4885,"n":"Wamangituka Fundu","f":"Silas","p":"A","r":25,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Ap":"2","p":{"1":{"n":5,"e":5067,"c":2,"s":1},"2":{"n":5,"e":5053,"c":2}}},"c":107},{"i":4913,"n":"Kant\u00e9","f":"Ousmane","p":"D","r":20,"s":{"s":"12","n":"3","a":"4","d":"0.82","Ss":"12","Sn":"3","Sa":"4","Sd":"0.82","Os":"12","On":"3","Oa":"4","Od":"0.82","Dp":"3","p":{"1":{"n":3,"e":5067,"c":2},"2":{"n":5,"e":5053,"c":2},"3":{"n":4,"e":5044,"c":2}}},"c":107},{"i":4927,"n":"Tanasijevic","f":"Strahinja","p":"D","r":5,"s":{"n":0},"c":107},{"i":4942,"n":"Bamba","f":"Axel","p":"D","r":1,"s":{"g":"1","s":"14","n":"3","a":"4.83","d":"0.85","Sg":"1","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.85","Og":"1","Os":"14","On":"3","Oa":"4.83","Od":"0.85","Dp":"3","p":{"1":{"n":4,"e":5067,"c":2},"2":{"n":6,"e":5053,"c":2,"g":1},"3":{"n":4.5,"e":5044,"c":2}}},"c":107},{"i":5023,"n":"Mandouki","f":"Cyril","p":"M","r":14,"s":{"s":"13","n":"3","a":"4.5","d":"0.71","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.71","Os":"13","On":"3","Oa":"4.5","Od":"0.71","Mp":"1","Dp":"2","p":{"1":{"n":3.5,"e":5067,"c":2},"2":{"n":5,"e":5053,"c":2},"3":{"n":5,"e":5044,"c":2}}},"c":107},{"i":5042,"n":"Yohou","f":"Samuel","p":"D","r":18,"s":{"s":"8","n":"2","a":"4","d":"0.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Dp":"2","p":{"1":{"n":3.5,"e":5067,"c":2},"3":{"n":4.5,"e":5044,"c":2}}},"c":107},{"i":5068,"n":"Sarr","f":"Adama","p":"A","r":7,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"2":{"n":4.5,"e":5053,"c":2,"s":1},"3":{"n":4.5,"e":5044,"c":2,"s":1}}},"c":107},{"i":5132,"n":"Dilo","f":"Christopher","p":"G","r":3,"s":{"n":0},"c":107},{"i":5136,"n":"Maletic","f":"Marko","p":"A","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"e":5067,"c":2,"s":1},"2":{"n":5,"e":5053,"c":2,"s":1}}},"c":107},{"i":5138,"n":"Lopez","f":"Julien","p":"M","r":16,"s":{"s":"16","n":"3","a":"5.5","d":"1.22","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.22","Os":"16","On":"3","Oa":"5.5","Od":"1.22","Mp":"3","p":{"1":{"n":4,"e":5067,"c":2},"2":{"n":5.5,"e":5053,"c":2},"3":{"n":7,"e":5044,"c":2}}},"c":107},{"i":5146,"n":"Nomenjanahary","f":"Lala\u00efna","p":"M","r":17,"s":{"s":"12","n":"2","a":"6","Ss":"12","Sn":"2","Sa":"6","Os":"12","On":"2","Oa":"6","Mp":"2","p":{"2":{"n":6,"e":5053,"c":2},"3":{"n":6,"e":5044,"c":2}}},"c":107},{"i":5173,"n":"Demarconnay","f":"Vincent","p":"G","r":24,"s":{"s":"10","n":"3","a":"3.33","d":"0.47","Ss":"10","Sn":"3","Sa":"3.33","Sd":"0.47","Os":"10","On":"3","Oa":"3.33","Od":"0.47","Gp":"3","p":{"1":{"n":3,"e":5067,"c":2},"2":{"n":4,"e":5053,"c":2},"3":{"n":3,"e":5044,"c":2}}},"c":107},{"i":5181,"n":"Martin","f":"Florian","p":"M","r":17,"s":{"s":"14","n":"3","a":"4.83","d":"0.62","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Os":"14","On":"3","Oa":"4.83","Od":"0.62","Mp":"3","p":{"1":{"n":4,"e":5067,"c":2},"2":{"n":5,"e":5053,"c":2},"3":{"n":5.5,"e":5044,"c":2}}},"c":107},{"i":5209,"n":"Armand","f":"Romain","p":"A","r":15,"s":{"g":"1","s":"16","n":"3","a":"5.33","d":"1.43","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.43","Og":"1","Os":"16","On":"3","Oa":"5.33","Od":"1.43","Mp":"3","p":{"1":{"n":3.5,"e":5067,"c":2},"2":{"n":5.5,"e":5053,"c":2},"3":{"n":7,"e":5044,"c":2,"g":1}}},"c":107},{"i":5220,"n":"Pitroipa","f":"Jonathan","p":"A","r":13,"s":{"s":"12","n":"3","a":"4.17","d":"0.47","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.47","Os":"12","On":"3","Oa":"4.17","Od":"0.47","Mp":"3","p":{"1":{"n":3.5,"e":5067,"c":2},"2":{"n":4.5,"e":5053,"c":2},"3":{"n":4.5,"e":5044,"c":2}}},"c":107},{"i":5344,"n":"Tre","f":"Jason","p":"D","r":5,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"2":{"n":4,"e":5053,"c":2}}},"c":107},{"i":5354,"n":"Garcia","f":"Thomas","p":"D","r":5,"s":{"n":0},"c":107},{"i":5368,"n":"Abdi","f":"Ali","p":"D","r":1,"s":{"n":0},"c":107},{"i":5371,"n":"Alceus","f":"Bryan","p":"M","r":1,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"2":{"n":5,"e":5053,"c":2,"s":1},"3":{"n":4.5,"e":5044,"c":2,"s":1}}},"c":107},{"i":5976,"n":"Essimi","f":"Marco","p":"A","r":1,"s":{"n":0},"c":107}],"c":{"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":4,"el":984,"s":{"p":4},"nM":5029,"nMWC":"0.4229","pM":{"32":3042,"33":3056,"34":3065,"35":3073,"37":3095,"38":3104,"36":3084,"1":5065,"2":5057,"3":5038},"DMI":[]},"6":{"n":"Lorient","rn":"FC Lorient","cn":"FC-Lorient","a":"LOR","l":4,"el":1029,"s":{"p":7},"nM":5033,"nMWC":"0.4813","pM":{"2":5057,"1":5067,"3":5042},"DMI":[]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":4,"el":949,"s":{"p":4},"nM":5028,"nMWC":"0.4398","pM":{"35":3073,"32":3051,"1":5061,"2":5056,"3":5040,"33":3053,"34":3069,"36":3090,"37":3093,"38":3102},"DMI":[]},"17":{"n":"Nancy","rn":"AS Nancy Lorraine","cn":"AS-Nancy-Lorraine","a":"NAN","l":4,"el":959,"s":{"p":3},"nM":5034,"nMWC":"0.5813","pM":{"3":5042,"1":5062,"2":5055},"DMI":[]},"43":{"n":"Troyes","rn":"ESTAC Troyes","cn":"ESTAC-Troyes","a":"TRO","l":4,"el":851,"s":{"p":3},"nM":5031,"nMWC":"0.3429","pM":{"1":5063,"2":5054,"3":5046},"DMI":[]},"88":{"n":"Ajaccio","rn":"AC Ajaccio","cn":"AC-Ajaccio","a":"ACA","l":4,"el":990,"s":{"p":4},"nM":5030,"nMWC":"0.5672","pM":{"3":5038,"1":5058,"2":5050},"DMI":[]},"89":{"n":"Le Havre","rn":"Le Havre AC","cn":"Le-Havre-AC","a":"HAC","l":4,"el":1021,"s":{"p":5},"nM":5032,"nMWC":"0.4698","pM":{"3":5046,"1":5058,"2":5051},"DMI":[]},"90":{"n":"Chambly","rn":"FC Chambly Oise","cn":"FC-Chambly-Oise","a":"FCCO","l":4,"el":1038,"s":{"p":7},"nM":5029,"nMWC":"0.5771","pM":{"1":5059,"2":5052,"3":5039},"DMI":[]},"91":{"n":"Valenciennes","rn":"Valentiennes FC","cn":"Valentiennes-FC","a":"VFC","l":4,"el":1003,"s":{"p":4},"nM":5037,"nMWC":"0.4413","pM":{"2":5055,"1":5059,"3":5041},"DMI":[]},"92":{"n":"Clermont","rn":"Clermont Foot 63","cn":"Clermont-Foot-63","a":"CF63","l":4,"el":1040,"s":{"p":7},"nM":5035,"nMWC":"0.6700","pM":{"2":5054,"3":5047,"1":5060},"DMI":[]},"93":{"n":"Ch\u00e2teauroux","rn":"Berrichonne de Ch\u00e2teauroux","cn":"Berrichonne-de-Chateauroux","a":"BCH","l":4,"el":943,"s":{"p":1},"nM":5030,"nMWC":"0.4328","pM":{"1":5060,"2":5049,"3":5043},"DMI":[]},"94":{"n":"Grenoble","rn":"Grenoble Foot 38","cn":"Grenoble-Foot-38","a":"GF38","l":4,"el":964,"s":{"p":2},"nM":5031,"nMWC":"0.6571","pM":{"1":5061,"2":5050,"3":5039},"DMI":[]},"97":{"n":"Orl\u00e9ans","rn":"US Orl\u00e9ans Loiret","cn":"US-Orleans-Loiret","a":"USOL","l":4,"el":917,"s":{"p":1},"nM":5035,"nMWC":"0.3300","pM":{"3":5040,"1":5062,"2":5052},"DMI":[]},"98":{"n":"Niort","rn":"Chamois Niortais FC","cn":"Chamois-Niortais-FC","a":"CNFC","l":4,"el":1008,"s":{"p":4},"nM":5036,"nMWC":"0.5431","pM":{"1":5063,"2":5051,"3":5043},"DMI":[]},"100":{"n":"Rodez","rn":"Rodez Aveyron Football","cn":"Rodez-Aveyron-Football","a":"RAF","l":4,"el":1044,"s":{"p":7},"nM":5037,"nMWC":"0.5587","pM":{"2":5049,"1":5064,"3":5044},"DMI":[]},"101":{"n":"Auxerre","rn":"AJ Auxerre","cn":"AJ-Auxerre","a":"AJA","l":4,"el":991,"s":{"p":3},"nM":5028,"nMWC":"0.5602","pM":{"1":5064,"2":5048,"3":5045},"DMI":[]},"102":{"n":"Sochaux","rn":"FC Sochaux-Montb\u00e9liard","cn":"FC-Sochaux-Montbeliard","a":"FCSM","l":4,"el":1042,"s":{"p":5},"nM":5033,"nMWC":"0.5187","pM":{"1":5065,"3":5045,"2":5053},"DMI":[]},"103":{"n":"Le Mans","rn":"Le Mans FC","cn":"Le-Mans-FC","a":"LMFC","l":4,"el":902,"s":{"p":0},"nM":5034,"nMWC":"0.4187","pM":{"3":5041,"2":5048,"1":5066},"DMI":[]},"104":{"n":"Lens","rn":"Racing Club de Lens","cn":"Racing-Club-de-Lens","a":"RCL","l":4,"el":1042,"s":{"p":7},"nM":5032,"nMWC":"0.5302","pM":{"2":5056,"3":5047,"1":5066},"DMI":[]},"107":{"n":"Paris FC","rn":"Paris FC","cn":"Paris-FC","a":"PFC","l":4,"el":978,"s":{"p":1},"nM":5036,"nMWC":"0.4569","pM":{"1":5067,"3":5044,"2":5053},"DMI":[]}},"op":{"16":{"n":"Angers","l":1,"el":1082},"19":{"n":"Nice","l":1,"el":1117},"7":{"n":"Dijon","l":1,"el":1011},"18":{"n":"Lyon","l":1,"el":1226},"3":{"n":"Bordeaux","l":1,"el":946},"68":{"n":"Reims","l":1,"el":1113},"41":{"n":"Strasbourg","l":1,"el":1039},"15":{"n":"Montpellier","l":1,"el":1113},"42":{"n":"Amiens","l":1,"el":1010},"9":{"n":"Marseille","l":1,"el":1117},"20":{"n":"Rennes","l":1,"el":1121},"8":{"n":"Nantes","l":1,"el":1044},"67":{"n":"N\u00eemes","l":1,"el":1046},"4":{"n":"Saint-\u00c9tienne","l":1,"el":1169},"10":{"n":"Toulouse","l":1,"el":955},"12":{"n":"Lille","l":1,"el":1214}},"e":{"3042":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":16},"3056":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":5},"3065":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":7},"3073":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":5},"3095":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":18,"t2":5},"3104":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":5,"t2":3},"3084":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":3,"t2s":2,"t1":5,"t2":68},"5065":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":0,"t1":102,"t2":5},"5057":{"d":2,"dB":"2019-08-05T18:45:00Z","t1s":1,"t2s":2,"t1":5,"t2":6},"5038":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":2,"t1":88,"t2":5},"3051":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":3,"t2s":3,"t1":41,"t2":14},"3060":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":1,"t2s":3,"t1":41,"t2":15},"3062":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":41},"3080":{"d":35,"dB":"2019-05-03T18:45:00Z","t1s":1,"t2s":1,"t1":41,"t2":9},"3085":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":2,"t2s":1,"t1":7,"t2":41},"3100":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":2,"t1":41,"t2":20},"3107":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":8,"t2":41},"5067":{"d":1,"dB":"2019-07-29T18:45:00Z","t1s":3,"t2s":0,"t1":6,"t2":107},"5042":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":1,"t1":17,"t2":6},"3045":{"d":32,"dB":"2019-04-13T15:00:00Z","t1s":2,"t2s":1,"t1":9,"t2":67},"3057":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":2,"t2s":1,"t1":67,"t2":3},"3071":{"d":34,"dB":"2019-04-28T15:00:00Z","t1s":2,"t2s":0,"t1":4,"t2":10},"3091":{"d":36,"dB":"2019-05-10T18:45:00Z","t1s":0,"t2s":1,"t1":4,"t2":15},"3099":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":19},"5061":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":3,"t1":14,"t2":94},"5056":{"d":2,"dB":"2019-08-03T14:30:00Z","t1s":2,"t2s":0,"t1":104,"t2":14},"5040":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":0,"t1":14,"t2":97},"3053":{"d":33,"dB":"2019-04-20T15:00:00Z","t1s":1,"t2s":3,"t1":14,"t2":9},"3069":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":3,"t2s":0,"t1":19,"t2":14},"3090":{"d":36,"dB":"2019-05-12T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":14},"3093":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":2,"t1":14,"t2":67},"3102":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":42,"t2":14},"5062":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":0,"t1":17,"t2":97},"5055":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":91,"t2":17},"3066":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":67},"3103":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":1,"t2s":1,"t1":16,"t2":4},"5063":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":2,"t1":98,"t2":43},"5054":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":2,"t1":43,"t2":92},"5046":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":2,"t1":43,"t2":89},"3076":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":42},"5058":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":2,"t1":88,"t2":89},"5050":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":1,"t1":94,"t2":88},"3109":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":3,"t1":67,"t2":18},"5051":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":89,"t2":98},"5059":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":1,"t2s":0,"t1":90,"t2":91},"5052":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":90},"5039":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":0,"t2s":0,"t1":90,"t2":94},"5041":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":91},"3055":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":42},"3067":{"d":34,"dB":"2019-04-28T19:00:00Z","t1s":1,"t2s":2,"t1":9,"t2":8},"3077":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":3,"t2s":0,"t1":8,"t2":7},"3088":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":8},"3097":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":8},"5047":{"d":3,"dB":"2019-08-10T13:00:00Z","t1s":1,"t2s":1,"t1":92,"t2":104},"3050":{"d":32,"dB":"2019-04-14T15:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":3},"5060":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":0,"t1":92,"t2":93},"5049":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":0,"t1":93,"t2":100},"5043":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":3,"t2s":0,"t1":98,"t2":93},"5064":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":0,"t1":100,"t2":101},"5044":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":2,"t2s":1,"t1":100,"t2":107},"5048":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":2,"t2s":0,"t1":101,"t2":103},"5045":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":0,"t1":102,"t2":101},"3072":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":16},"5053":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":107,"t2":102},"5066":{"d":1,"dB":"2019-07-27T13:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":104},"3047":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":2,"t2s":1,"t1":15,"t2":10},"3082":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":10},"3101":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":5,"t1":10,"t2":9}},"Ne":{"5029":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":5,"t2":90},"5033":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":6,"t2":102},"5028":{"d":4,"dB":"2019-08-19T18:45:00Z","t1":101,"t2":14},"5034":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":17,"t2":103},"5031":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":94,"t2":43},"5030":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":93,"t2":88},"5032":{"d":4,"dB":"2019-08-17T13:00:00Z","t1":104,"t2":89},"5037":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":91,"t2":100},"5035":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":97,"t2":92},"5036":{"d":4,"dB":"2019-08-16T18:00:00Z","t1":107,"t2":98}},"k":"ddb2f9"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.ligue-2.20191212.json b/src/test/resources/__files/mpgstats.ligue-2.20191212.json deleted file mode 100644 index bc00e43..0000000 --- a/src/test/resources/__files/mpgstats.ligue-2.20191212.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-12-11T18:11:35Z","mL":{"i":4,"n":"Ligue 2","cN":"Ligue-2","u":"\/league\/Ligue-2","aS":{"cN":"Ligue-2-2019-2020","i":12,"n":"Ligue 2 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":17,"lD":17}}},"mxD":17,"np":660,"le":{"4":"Ligue-2","1":"Ligue-1"},"p":[{"i":52,"n":"Crivelli","f":"Enzo","p":"A","r":26,"s":{"n":0,"Og":"3","Os":"86","On":"20","Oa":"4.33","Od":"0.97","Mp":"2","Ap":"18"},"c":5},{"i":78,"n":"Oniangu\u00e9","f":"Prince","p":"M","r":13,"s":{"g":"2","s":"51","n":"10","a":"5.15","d":"0.81","Sg":"2","Ss":"51","Sn":"10","Sa":"5.15","Sd":"0.81","Og":"2","Os":"119","On":"24","Oa":"4.98","Od":"0.67","Mp":"24","p":{"8":{"n":5,"s":1},"9":{"n":4.5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":6},"13":{"n":5},"14":{"n":6,"g":1},"15":{"n":3.5},"16":{"n":4.5},"17":{"n":6}}},"c":5},{"i":162,"n":"Riou","f":"R\u00e9my","p":"G","r":14,"s":{"s":"71","n":"14","a":"5.07","d":"0.88","Ss":"71","Sn":"14","Sa":"5.07","Sd":"0.88","Os":"71","On":"14","Oa":"5.07","Od":"0.88","Gp":"14","p":{"4":{"n":6},"5":{"n":5.5},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":4},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6},"14":{"n":4},"15":{"n":4.5},"16":{"n":4},"17":{"n":6.5}}},"c":5},{"i":172,"n":"Bammou","f":"Yacine","p":"A","r":7,"s":{"n":0,"Os":"29","On":"6","Oa":"4.83","Od":"0.37","Mp":"4","Ap":"2"},"c":5},{"i":182,"n":"Yago","f":"Steeve","p":"D","r":9,"s":{"s":"42","n":"9","a":"4.67","d":"0.47","Ss":"5","Sn":"1","Sa":"5.5","Os":"42","On":"9","Oa":"4.67","Od":"0.47","Dp":"9","p":{"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":4},"17":{"n":5.5}}},"c":5},{"i":311,"n":"Pi","f":"Jessy","p":"M","r":13,"s":{"g":"2","s":"75","n":"14","a":"5.36","d":"0.79","Sg":"2","Ss":"40","Sn":"7","Sa":"5.79","Sd":"0.59","Og":"2","Os":"75","On":"14","Oa":"5.36","Od":"0.79","Mp":"14","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4.5},"8":{"n":4},"11":{"n":6},"12":{"n":6,"g":1},"13":{"n":7,"g":1},"14":{"n":5},"15":{"n":5.5},"16":{"n":5.5,"s":1},"17":{"n":5.5}}},"c":5},{"i":315,"n":"Dabo","f":"Mouhamadou","p":"D","r":1,"s":{"n":0},"c":5},{"i":318,"n":"Genevois","f":"Romain","p":"D","r":5,"s":{"n":0,"Os":"8","On":"2","Oa":"4","Dp":"2"},"c":5},{"i":322,"n":"Jeannot","f":"Benjamin","p":"A","r":8,"s":{"s":"43","n":"10","a":"4.3","d":"0.46","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.24","Og":"1","Os":"87","On":"20","Oa":"4.38","Od":"0.65","Mp":"2","Ap":"18","p":{"1":{"n":5,"e":3923,"c":7},"2":{"n":5,"e":3917,"c":7},"7":{"n":4},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":3.5},"15":{"n":4,"s":1},"16":{"n":4.5},"17":{"n":4.5,"s":1}}},"c":5},{"i":335,"n":"Rivierez","f":"Jonathan","p":"D","r":10,"s":{"ao":"1","s":"81","n":"17","a":"4.76","d":"0.79","Sao":"1","Ss":"81","Sn":"17","Sa":"4.76","Sd":"0.79","Oao":"1","Os":"81","On":"17","Oa":"4.76","Od":"0.79","Dp":"17","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":3},"7":{"n":4.5},"8":{"n":3.5,"a":1},"9":{"n":5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5},"15":{"n":4},"16":{"n":4.5},"17":{"n":5.5}}},"c":5},{"i":345,"n":"Samba","f":"Brice","p":"G","r":20,"s":{"s":"5","n":"1","a":"5.5","Os":"134","On":"23","Oa":"5.83","Od":"1.19","Gp":"23","p":{"1":{"n":5.5}}},"c":5},{"i":363,"n":"Louis","f":"Jeff","p":"M","r":3,"s":{"n":0},"c":5},{"i":366,"n":"Imorou","f":"Emmanuel","p":"D","r":9,"s":{"n":0,"Os":"47","On":"10","Oa":"4.7","Od":"0.9","Mp":"1","Dp":"9"},"c":5},{"i":382,"n":"Sankoh","f":"Baissama","p":"M","r":11,"s":{"g":"4","s":"49","n":"9","a":"5.44","d":"1.09","Og":"4","Os":"93","On":"18","Oa":"5.19","Od":"0.87","Mp":"18","p":{"2":{"n":4.5},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":7,"g":1},"6":{"n":4},"7":{"n":6,"g":1},"8":{"n":4},"9":{"n":5.5},"12":{"n":6,"g":1,"s":1}}},"c":5},{"i":413,"n":"Diomande","f":"Ismael","p":"M","r":8,"s":{"n":0,"Os":"73","On":"15","Oa":"4.9","Od":"0.8","Mp":"13","Dp":"2"},"c":5},{"i":421,"n":"Reulet","f":"Paul","p":"G","r":3,"s":{"n":0},"c":5},{"i":1195,"n":"Peeters","f":"Stef","p":"M","r":8,"s":{"n":0},"c":5},{"i":1206,"n":"Tell","f":"Jordan","p":"A","r":1,"s":{"n":0},"c":5},{"i":1222,"n":"Kouakou","f":"Christian","p":"A","r":6,"s":{"n":0},"c":5},{"i":1223,"n":"Mbengue","f":"Adama","p":"D","r":8,"s":{"s":"35","n":"7","a":"5.07","d":"0.62","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.75","Os":"46","On":"9","Oa":"5.11","Od":"0.57","Mp":"1","Dp":"8","p":{"3":{"n":5,"s":1},"9":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5},"16":{"n":5},"17":{"n":6.5}}},"c":5},{"i":1237,"n":"Avounou","f":"Durel","p":"M","r":5,"s":{"s":"25","n":"5","a":"5.1","d":"0.2","Os":"25","On":"5","Oa":"5.1","Od":"0.2","Mp":"5","p":{"1":{"n":5,"s":1},"3":{"n":5.5,"s":1},"4":{"n":5,"s":1},"7":{"n":5,"s":1},"10":{"n":5,"s":1}}},"c":5},{"i":1252,"n":"Toufiqui","f":"Sabri","p":"M","r":1,"s":{"n":0},"c":5},{"i":1431,"n":"Gon\u00e7alves","f":"Anthony","p":"M","r":17,"s":{"g":"1","s":"77","n":"15","a":"5.13","d":"0.99","Sg":"1","Ss":"35","Sn":"6","Sa":"5.83","Sd":"0.62","Og":"5","Os":"152","On":"29","Oa":"5.26","Od":"1.01","Mp":"21","Dp":"8","p":{"1":{"n":5.5},"2":{"n":3.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":6},"6":{"n":4},"7":{"n":4},"8":{"n":4.5},"9":{"n":3.5},"12":{"n":7,"g":1},"13":{"n":5},"14":{"n":5.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":6}}},"c":5},{"i":1451,"n":"Zelazny","f":"Erwin","p":"G","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"2":{"n":4}}},"c":5},{"i":1537,"n":"Repas","f":"Jan","p":"M","r":5,"s":{"s":"48","n":"10","a":"4.8","d":"0.4","Os":"48","On":"10","Oa":"4.8","Od":"0.4","Mp":"9","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"6":{"n":4},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":5},{"i":2045,"n":"Deminguet","f":"Jessy","p":"M","r":19,"s":{"g":"5","s":"84","n":"15","a":"5.63","d":"1.15","Sg":"3","Ss":"30","Sn":"5","Sa":"6.1","Sd":"1.39","Og":"5","Os":"145","On":"27","Oa":"5.37","Od":"1.15","Mp":"27","p":{"1":{"n":5.5},"2":{"n":7,"g":1},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":5.5},"6":{"n":4},"7":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"13":{"n":4.5,"s":1},"14":{"n":6},"15":{"n":8.5,"g":3},"16":{"n":5},"17":{"n":6.5}}},"c":5},{"i":2078,"n":"Armougom","f":"Yoel","p":"D","r":10,"s":{"s":"81","n":"16","a":"5.09","d":"0.73","Ss":"43","Sn":"8","Sa":"5.44","Sd":"0.73","Os":"164","On":"34","Oa":"4.84","Od":"0.75","Mp":"7","Dp":"27","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4},"8":{"n":4},"10":{"n":7},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":5,"s":1},"15":{"n":6,"s":1},"16":{"n":4.5},"17":{"n":5,"s":1}}},"c":5},{"i":2086,"n":"Ngom","f":"Santy","p":"A","r":3,"s":{"s":"13","n":"3","a":"4.5","Os":"13","On":"3","Oa":"4.5","Ap":"3","p":{"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"11":{"n":4.5,"s":1}}},"c":5},{"i":2156,"n":"Stavitski","f":"Timo","p":"A","r":1,"s":{"n":0},"c":5},{"i":2632,"n":"Callens","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":5},{"i":2682,"n":"Tchokounte","f":"Malik","p":"A","r":7,"s":{"g":"1","s":"41","n":"9","a":"4.61","d":"0.81","Og":"1","Os":"107","On":"24","Oa":"4.48","Od":"0.68","Mp":"3","Ap":"21","p":{"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":4.5,"s":1},"5":{"n":4},"6":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"16":{"n":6,"g":1,"s":1}}},"c":5},{"i":2935,"n":"Zahary","f":"Younn","p":"D","r":3,"s":{"s":"15","n":"3","a":"5.17","d":"0.62","Os":"66","On":"14","Oa":"4.71","Od":"0.77","Dp":"14","p":{"3":{"n":6,"s":1},"4":{"n":5},"7":{"n":4.5}}},"c":5},{"i":2940,"n":"Joseph","f":"Evens","p":"M","r":3,"s":{"s":"22","n":"5","a":"4.5","d":"0.71","Os":"67","On":"15","Oa":"4.47","Od":"0.69","Mp":"13","Ap":"2","p":{"4":{"n":3.5},"5":{"n":5.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4}}},"c":5},{"i":3189,"n":"Elhadji Djibril Diaw","f":"","p":"D","r":3,"s":{"s":"17","n":"4","a":"4.38","d":"0.65","Os":"22","On":"5","Oa":"4.5","Od":"0.63","Dp":"5","p":{"1":{"n":5},"3":{"n":3.5},"7":{"n":4},"12":{"n":5,"s":1}}},"c":5},{"i":3230,"n":"Mouaddib","f":"Jad","p":"M","r":1,"s":{"n":0},"c":5},{"i":3503,"n":"Kyeremeh","f":"Godson","p":"M","r":1,"s":{"n":0},"c":5},{"i":3504,"n":"Tutu","f":"Brice","p":"A","r":1,"s":{"s":"13","n":"3","a":"4.33","d":"0.24","Os":"13","On":"3","Oa":"4.33","Od":"0.24","Ap":"3","p":{"1":{"n":4,"s":1},"4":{"n":4.5,"s":1},"6":{"n":4.5,"s":1}}},"c":5},{"i":3505,"n":"Toufiqui","f":"Azzeddine","p":"M","r":3,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Mp":"2","p":{"7":{"n":4.5},"8":{"n":4.5}}},"c":5},{"i":3524,"n":"Moussaki","f":"Herman","p":"A","r":3,"s":{"s":"39","n":"9","a":"4.33","d":"1.03","Os":"47","On":"11","Oa":"4.32","Od":"0.94","Mp":"1","Ap":"10","p":{"1":{"n":4},"2":{"n":4},"3":{"n":7},"4":{"n":4},"5":{"n":4},"6":{"n":4.5,"s":1},"7":{"n":3},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1}}},"c":5},{"i":3820,"n":"Weber","f":"Anthony","p":"D","r":12,"s":{"s":"81","n":"16","a":"5.06","d":"1.04","Ss":"50","Sn":"10","Sa":"5","Sd":"1","Os":"81","On":"16","Oa":"5.06","Od":"1.04","Dp":"16","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6},"4":{"n":6},"5":{"n":6},"6":{"n":3},"8":{"n":3},"9":{"n":4},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":5},"15":{"n":4},"16":{"n":5},"17":{"n":6}}},"c":5},{"i":4882,"n":"Zady Sery","f":"Caleb","p":"A","r":11,"s":{"s":"71","n":"13","a":"5.46","d":"1.03","Ss":"49","Sn":"9","Sa":"5.44","Sd":"1.21","Os":"71","On":"13","Oa":"5.46","Od":"1.03","Mp":"12","Ap":"1","p":{"1":{"n":5,"e":5058,"c":88},"2":{"n":5.5,"e":5050,"c":88},"3":{"n":6,"e":5038,"c":88},"4":{"n":5.5,"e":5030,"c":88},"9":{"n":4},"10":{"n":5.5},"11":{"n":5},"12":{"n":7},"13":{"n":6},"14":{"n":5},"15":{"n":7.5},"16":{"n":3.5},"17":{"n":5.5}}},"c":5},{"i":5037,"n":"Issoko","f":"Arnold","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"10":{"n":5,"s":1}}},"c":5},{"i":5353,"n":"Vandermersch","f":"Hugo","p":"D","r":8,"s":{"s":"40","n":"9","a":"4.44","d":"1.04","Os":"40","On":"9","Oa":"4.44","Od":"1.04","Dp":"9","p":{"5":{"n":4},"6":{"n":3},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":3},"16":{"n":4.5}}},"c":5},{"i":6272,"n":"Gioacchini","f":"Nicholas","p":"A","r":10,"s":{"g":"2","s":"30","n":"6","a":"5.08","d":"1.1","Sg":"2","Ss":"30","Sn":"6","Sa":"5.08","Sd":"1.1","Og":"2","Os":"30","On":"6","Oa":"5.08","Od":"1.1","Ap":"6","p":{"12":{"n":6.5,"g":1},"13":{"n":5},"14":{"n":4.5},"15":{"n":3.5},"16":{"n":4.5,"s":1},"17":{"n":6.5,"g":1}}},"c":5},{"i":6277,"n":"Beka Beka","f":"Alexis","p":"D","r":1,"s":{"n":0},"c":5},{"i":6328,"n":"Wa Saka","f":"Kelian Nsona","p":"M","r":1,"s":{"n":0},"c":5},{"i":127,"n":"Marveaux","f":"Sylvain","p":"M","r":9,"s":{"g":"1","s":"52","n":"10","a":"5.25","d":"0.75","Og":"1","Os":"52","On":"10","Oa":"5.25","Od":"0.75","Mp":"10","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":7,"g":1},"8":{"n":5},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":6},"16":{"n":5.5}}},"c":6},{"i":149,"n":"Peybernes","f":"Mathieu","p":"D","r":9,"s":{"n":0},"c":6},{"i":154,"n":"Delaplace","f":"Jonathan","p":"M","r":8,"s":{"s":"32","n":"6","a":"5.33","d":"0.47","Os":"32","On":"6","Oa":"5.33","Od":"0.47","Dp":"6","p":{"9":{"n":6},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":5},"15":{"n":5}}},"c":6},{"i":164,"n":"Le Goff","f":"Vincent","p":"D","r":21,"s":{"s":"89","n":"17","a":"5.24","d":"0.62","Ss":"89","Sn":"17","Sa":"5.24","Sd":"0.62","Os":"89","On":"17","Oa":"5.24","Od":"0.62","Dp":"17","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":5},"8":{"n":4.5},"9":{"n":6.5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":6.5},"16":{"n":5},"17":{"n":6}}},"c":6},{"i":179,"n":"Cabot","f":"Jimmy","p":"M","r":20,"s":{"g":"3","s":"94","n":"17","a":"5.53","d":"0.95","Sg":"3","Ss":"94","Sn":"17","Sa":"5.53","Sd":"0.95","Og":"3","Os":"94","On":"17","Oa":"5.53","Od":"0.95","Mp":"17","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6.5,"g":1},"5":{"n":5},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":5},"9":{"n":6},"10":{"n":5.5},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":5},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":8,"g":1}}},"c":6},{"i":340,"n":"Lemoine","f":"Fabien","p":"M","r":17,"s":{"s":"89","n":"17","a":"5.24","d":"0.94","Ss":"89","Sn":"17","Sa":"5.24","Sd":"0.94","Os":"89","On":"17","Oa":"5.24","Od":"0.94","Mp":"17","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5},"5":{"n":6},"6":{"n":4.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":3.5},"12":{"n":4},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":6},"17":{"n":7}}},"c":6},{"i":516,"n":"Cagnon","f":"Romain","p":"G","r":1,"s":{"n":0},"c":6},{"i":523,"n":"Mazikou","f":"Bradley","p":"D","r":1,"s":{"n":0},"c":6},{"i":570,"n":"Hamel","f":"Pierre-Yves","p":"A","r":27,"s":{"g":"7","s":"78","n":"15","a":"5.23","d":"1.47","Sg":"2","Ss":"8","Sn":"1","Sa":"8.5","Og":"7","Os":"78","On":"15","Oa":"5.23","Od":"1.47","Ap":"15","p":{"1":{"n":6},"2":{"n":6.5,"g":1},"3":{"n":4},"5":{"n":4},"6":{"n":4},"7":{"n":6},"8":{"n":6,"g":1},"9":{"n":4},"10":{"n":3.5},"11":{"n":6.5,"g":1},"12":{"n":4},"13":{"n":3.5},"14":{"n":7,"g":2},"15":{"n":5},"17":{"n":8.5,"g":2}}},"c":6},{"i":2615,"n":"Fontaine","f":"Thomas","p":"D","r":7,"s":{"s":"30","n":"6","a":"5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"39","On":"8","Oa":"4.94","Od":"0.46","Dp":"8","p":{"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":5},"16":{"n":5,"s":1},"17":{"n":6}}},"c":6},{"i":2666,"n":"Bozok","f":"Umut","p":"A","r":9,"s":{"g":"1","s":"49","n":"11","a":"4.45","d":"0.81","Og":"1","Os":"93","On":"21","Oa":"4.43","Od":"0.62","Ap":"21","p":{"1":{"n":5},"2":{"n":4,"s":1},"3":{"n":4},"8":{"n":4,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1},"12":{"n":4},"13":{"n":3},"14":{"n":5,"s":1},"16":{"n":5.5}}},"c":6},{"i":3358,"n":"Laurient\u00e9","f":"Armand","p":"M","r":10,"s":{"g":"1","s":"42","n":"8","a":"5.25","d":"0.87","Sg":"1","Ss":"28","Sn":"5","Sa":"5.6","Sd":"0.92","Og":"1","Os":"46","On":"9","Oa":"5.17","Od":"0.85","Mp":"9","p":{"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":6.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":6.5,"g":1,"s":1}}},"c":6},{"i":3805,"n":"Nardi","f":"Paul","p":"G","r":16,"s":{"s":"96","n":"17","a":"5.65","d":"0.87","Ss":"96","Sn":"17","Sa":"5.65","Sd":"0.87","Os":"96","On":"17","Oa":"5.65","Od":"0.87","Gp":"17","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"7":{"n":8},"8":{"n":5},"9":{"n":6},"10":{"n":6},"11":{"n":4.5},"12":{"n":6},"13":{"n":6},"14":{"n":4.5},"15":{"n":5},"16":{"n":5.5},"17":{"n":7}}},"c":6},{"i":4838,"n":"Renaud","f":"Tom","p":"M","r":1,"s":{"n":0},"c":6},{"i":4839,"n":"Loric","f":"Samuel","p":"D","r":1,"s":{"n":0},"c":6},{"i":4855,"n":"Le F\u00e9e","f":"Enzo","p":"M","r":11,"s":{"s":"83","n":"16","a":"5.22","d":"0.75","Ss":"72","Sn":"14","Sa":"5.18","Sd":"0.55","Os":"83","On":"16","Oa":"5.22","Od":"0.75","Mp":"13","Ap":"3","p":{"1":{"n":7},"2":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6,"s":1},"14":{"n":5.5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5.5}}},"c":6},{"i":4877,"n":"Bartouche","f":"Teddy","p":"G","r":1,"s":{"n":0},"c":6},{"i":4887,"n":"Julloux","f":"Adrien","p":"M","r":1,"s":{"n":0},"c":6},{"i":4888,"n":"Bila","f":"Abdoul","p":"A","r":1,"s":{"n":0},"c":6},{"i":4889,"n":"Abessolo","f":"Wilfrid","p":"D","r":1,"s":{"n":0},"c":6},{"i":4900,"n":"Ponceau","f":"Julien","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"6":{"n":5,"s":1}}},"c":6},{"i":4940,"n":"Etuin","f":"Maxime","p":"M","r":1,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"7":{"n":3.5,"s":1}}},"c":6},{"i":4946,"n":"Pattier","f":"Maxime","p":"G","r":7,"s":{"n":0},"c":6},{"i":4948,"n":"Meslier","f":"Illan","p":"G","r":14,"s":{"n":0},"c":6},{"i":4952,"n":"Wadja","f":"Franklin","p":"M","r":3,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"4":{"n":5,"s":1},"5":{"n":5,"s":1},"9":{"n":4.5}}},"c":6},{"i":4981,"n":"Kamissoko","f":"Mamadou","p":"D","r":1,"s":{"n":0},"c":6},{"i":5009,"n":"Mendes","f":"Houboulang","p":"D","r":1,"s":{"n":0},"c":6},{"i":5032,"n":"Ouaneh","f":"Peter","p":"D","r":1,"s":{"n":0},"c":6},{"i":5033,"n":"Wissa","f":"Yoane","p":"A","r":34,"s":{"g":"11","s":"106","n":"17","a":"6.26","d":"1.18","Sg":"11","Ss":"106","Sn":"17","Sa":"6.26","Sd":"1.18","Og":"11","Os":"106","On":"17","Oa":"6.26","Od":"1.18","Mp":"16","Ap":"1","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":7.5,"g":1},"3":{"n":4.5},"4":{"n":5},"5":{"n":8,"g":2},"6":{"n":5},"7":{"n":7,"g":1},"8":{"n":7.5,"g":1},"9":{"n":7.5,"g":1},"10":{"n":6},"11":{"n":5},"12":{"n":5,"s":1},"13":{"n":5},"14":{"n":7,"g":1},"15":{"n":8,"g":2},"16":{"n":5.5,"g":1},"17":{"n":6.5}}},"c":6},{"i":5056,"n":"Laporte","f":"Julien","p":"D","r":12,"s":{"g":"1","ao":"2","s":"80","n":"15","a":"5.33","d":"0.77","Og":"1","Oao":"2","Os":"80","On":"15","Oa":"5.33","Od":"0.77","Dp":"15","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4,"a":1},"4":{"n":5},"5":{"n":5},"6":{"n":4.5,"a":1},"7":{"n":6},"8":{"n":6},"9":{"n":5},"10":{"n":6},"11":{"n":4.5},"12":{"n":5},"14":{"n":5},"15":{"n":6},"16":{"n":7,"g":1}}},"c":6},{"i":5065,"n":"Hergault","f":"Jerome","p":"D","r":8,"s":{"s":"47","n":"9","a":"5.28","d":"0.58","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Os":"47","On":"9","Oa":"5.28","Od":"0.58","Dp":"9","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":6},"15":{"n":5,"s":1},"16":{"n":4.5},"17":{"n":6}}},"c":6},{"i":5077,"n":"Lecoeuche","f":"Quentin","p":"D","r":9,"s":{"s":"44","n":"9","a":"4.89","d":"0.31","Ss":"4","Sn":"1","Sa":"4.5","Os":"44","On":"9","Oa":"4.89","Od":"0.31","Mp":"1","Dp":"8","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5},"6":{"n":5,"s":1},"9":{"n":5,"s":1},"11":{"n":5,"s":1},"14":{"n":5.5,"s":1},"17":{"n":4.5,"s":1}}},"c":6},{"i":5131,"n":"Boubaya","f":"Tristan","p":"M","r":1,"s":{"n":0},"c":6},{"i":5152,"n":"Lemaire","f":"Pierre-Etienne","p":"D","r":1,"s":{"n":0},"c":6},{"i":5162,"n":"Abergel","f":"Laurent","p":"D","r":20,"s":{"g":"1","s":"83","n":"15","a":"5.53","d":"0.85","Sg":"1","Ss":"44","Sn":"8","Sa":"5.5","Sd":"0.94","Og":"1","Os":"83","On":"15","Oa":"5.53","Od":"0.85","Mp":"12","Dp":"3","p":{"2":{"n":6},"3":{"n":5},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":7},"8":{"n":5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":4.5},"17":{"n":7}}},"c":6},{"i":5163,"n":"Sainati","f":"Joris","p":"D","r":1,"s":{"n":0},"c":6},{"i":5186,"n":"Saunier","f":"Matthieu","p":"D","r":18,"s":{"g":"1","s":"92","n":"17","a":"5.41","d":"0.65","Sg":"1","Ss":"92","Sn":"17","Sa":"5.41","Sd":"0.65","Og":"1","Os":"92","On":"17","Oa":"5.41","Od":"0.65","Dp":"17","p":{"1":{"n":7,"g":1},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":6.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":6}}},"c":6},{"i":5219,"n":"Martins Pereira","f":"Jonathan","p":"D","r":1,"s":{"n":0},"c":6},{"i":5460,"n":"Kitala","f":"Yann","p":"A","r":5,"s":{"s":"24","n":"5","a":"4.8","d":"0.24","Ss":"4","Sn":"1","Sa":"4.5","Os":"24","On":"5","Oa":"4.8","Od":"0.24","Mp":"5","p":{"7":{"n":5,"s":1},"8":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":6},{"i":6118,"n":"Bila","f":"Abdoul","p":"A","r":1,"s":{"n":0},"c":6},{"i":84,"n":"Rodelin","f":"Ronny","p":"A","r":15,"s":{"g":"1","s":"78","n":"15","a":"5.23","d":"0.79","Ss":"37","Sn":"7","Sa":"5.36","Sd":"0.74","Og":"1","Os":"119","On":"24","Oa":"4.96","Od":"0.73","Mp":"10","Ap":"14","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6,"g":1},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":4,"s":1},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":6.5},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":6},"17":{"n":6}}},"c":14},{"i":110,"n":"Sorbon","f":"J\u00e9r\u00e9my","p":"D","r":3,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Og":"1","Os":"108","On":"22","Oa":"4.91","Od":"0.72","Dp":"22","p":{"1":{"n":4.5},"2":{"n":4.5},"4":{"n":5}}},"c":14},{"i":115,"n":"Roux","f":"Nolan","p":"A","r":10,"s":{"g":"2","s":"50","n":"11","a":"4.59","d":"0.9","Og":"3","Os":"133","On":"29","Oa":"4.6","Od":"0.71","Ap":"29","p":{"1":{"n":4},"2":{"n":4},"3":{"n":4,"s":1},"4":{"n":4,"s":1},"5":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":5},"12":{"n":6,"g":1,"s":1},"13":{"n":4.5,"s":1},"14":{"n":6.5,"g":1,"s":1},"15":{"n":3.5}}},"c":14},{"i":142,"n":"Kerbrat","f":"Christophe","p":"D","r":10,"s":{"s":"55","n":"11","a":"5","d":"1","Os":"104","On":"22","Oa":"4.73","Od":"1.06","Dp":"22","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":6},"8":{"n":4},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":4},"13":{"n":6},"14":{"n":7},"15":{"n":3.5}}},"c":14},{"i":158,"n":"Johnsson","f":"Karl-Johan","p":"G","r":6,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Gp":"1"},"c":14},{"i":236,"n":"Benezet","f":"Nicolas","p":"M","r":6,"s":{"n":0,"Os":"44","On":"9","Oa":"4.94","Od":"0.44","Mp":"7","Ap":"2"},"c":14},{"i":241,"n":"Didot","f":"\u00c9tienne","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"69","On":"15","Oa":"4.63","Od":"0.85","Mp":"15"},"c":14},{"i":289,"n":"Ikoko","f":"Jordan","p":"D","r":6,"s":{"n":0,"Os":"35","On":"8","Oa":"4.38","Od":"0.86","Dp":"8"},"c":14},{"i":536,"n":"Guivarch","f":"Theo","p":"G","r":13,"s":{"s":"19","n":"4","a":"4.88","d":"0.89","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.89","Os":"19","On":"4","Oa":"4.88","Od":"0.89","Gp":"4","p":{"14":{"n":4},"15":{"n":4},"16":{"n":5.5},"17":{"n":6}}},"c":14},{"i":579,"n":"Poaty","f":"Morgan","p":"D","r":7,"s":{"s":"49","n":"10","a":"4.9","d":"0.7","Os":"49","On":"10","Oa":"4.9","Od":"0.7","Mp":"1","Dp":"9","p":{"1":{"n":5.5,"s":1},"2":{"n":4.5},"3":{"n":6},"4":{"n":5},"5":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":4},"13":{"n":5},"14":{"n":5},"15":{"n":3.5}}},"c":14},{"i":790,"n":"Djilobodji","f":"Papy","p":"D","r":6,"s":{"n":0,"Os":"15","On":"4","Oa":"3.88","Od":"0.41","Dp":"4"},"c":14},{"i":1178,"n":"Tabanou","f":"Franck","p":"D","r":6,"s":{"n":0},"c":14},{"i":1200,"n":"Thuram","f":"Marcus","p":"A","r":10,"s":{"n":0,"Og":"3","Os":"94","On":"20","Oa":"4.7","Od":"1.02","Mp":"14","Ap":"6"},"c":14},{"i":1209,"n":"Phiri","f":"Lebogang","p":"M","r":17,"s":{"g":"1","s":"84","n":"15","a":"5.63","d":"1.06","Sg":"1","Ss":"58","Sn":"10","Sa":"5.85","Sd":"1.14","Og":"1","Os":"185","On":"34","Oa":"5.44","Od":"1.08","Mp":"34","p":{"2":{"n":4},"3":{"n":5.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":6.5},"11":{"n":6},"12":{"n":5},"13":{"n":8.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":5.5},"17":{"n":7,"g":1}}},"c":14},{"i":1236,"n":"Eboa Eboa","f":"F\u00e9lix","p":"D","r":11,"s":{"s":"58","n":"11","a":"5.27","d":"1.25","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"3","Os":"143","On":"27","Oa":"5.3","Od":"1.41","Mp":"2","Dp":"25","p":{"2":{"n":4.5,"s":1},"3":{"n":5.5},"4":{"n":5},"5":{"n":5},"6":{"n":6},"7":{"n":5},"8":{"n":2},"10":{"n":6,"s":1},"13":{"n":6.5},"16":{"n":5.5},"17":{"n":7}}},"c":14},{"i":1257,"n":"Pedro Rebocho","f":"","p":"D","r":25,"s":{"s":"4","n":"1","a":"4.5","Os":"118","On":"23","Oa":"5.13","Od":"0.99","Dp":"23","p":{"1":{"n":4.5}}},"c":14},{"i":1258,"n":"Abdoul Camara","f":"","p":"A","r":4,"s":{"n":0},"c":14},{"i":1264,"n":"Caillard","f":"Marc-Aur\u00e8le","p":"G","r":10,"s":{"s":"73","n":"13","a":"5.65","d":"1.12","Os":"188","On":"34","Oa":"5.54","Od":"1.15","Gp":"34","p":{"1":{"n":2.5},"2":{"n":5.5},"3":{"n":7},"4":{"n":6},"5":{"n":6},"6":{"n":7},"7":{"n":6},"8":{"n":6},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":5},"13":{"n":6}}},"c":14},{"i":1421,"n":"Pel\u00e9","f":"Bryan","p":"M","r":19,"s":{"g":"5","s":"90","n":"16","a":"5.66","d":"1.32","Sg":"2","Ss":"35","Sn":"6","Sa":"5.92","Sd":"1.43","Og":"5","Os":"90","On":"16","Oa":"5.66","Od":"1.32","Mp":"16","p":{"1":{"n":7,"g":1,"s":1},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":4.5,"s":1},"9":{"n":6},"10":{"n":8,"g":2},"12":{"n":6},"13":{"n":8,"g":2},"14":{"n":6},"15":{"n":3.5},"16":{"n":5,"s":1},"17":{"n":7,"s":1}}},"c":14},{"i":2138,"n":"N'Gbakoto","f":"Yeni","p":"A","r":10,"s":{"g":"4","s":"70","n":"13","a":"5.42","d":"0.98","Og":"5","Os":"101","On":"20","Oa":"5.08","Od":"1.06","Mp":"11","Ap":"9","p":{"1":{"n":6,"g":1},"2":{"n":4.5,"s":1},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":4.5},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":7,"g":1},"10":{"n":5.5},"11":{"n":5},"15":{"n":5,"s":1},"16":{"n":7,"g":1}}},"c":14},{"i":2312,"n":"Julan","f":"Natha\u00ebl","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1}}},"c":14},{"i":2619,"n":"Valdivia","f":"Pierrick","p":"M","r":9,"s":{"s":"65","n":"13","a":"5","d":"0.52","Ss":"26","Sn":"5","Sa":"5.2","Sd":"0.51","Os":"75","On":"15","Oa":"5","Od":"0.48","Mp":"15","p":{"1":{"n":5,"e":3927,"c":67,"s":1},"2":{"n":4,"e":3913,"c":67},"5":{"n":5},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":4.5},"11":{"n":5,"s":1},"13":{"n":5.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":4.5},"17":{"n":6}}},"c":14},{"i":2772,"n":"Koita","f":"Djegui","p":"D","r":1,"s":{"n":0},"c":14},{"i":2857,"n":"Bilingi","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":14},{"i":2943,"n":"Ako","f":"Steven","p":"D","r":1,"s":{"n":0},"c":14},{"i":2948,"n":"Boudjemaa","f":"Mehdi","p":"M","r":2,"s":{"s":"15","n":"3","a":"5","d":"0.41","Os":"15","On":"3","Oa":"5","Od":"0.41","Mp":"3","p":{"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"9":{"n":5.5,"s":1}}},"c":14},{"i":2949,"n":"Phaeton","f":"Matthias","p":"M","r":1,"s":{"n":0},"c":14},{"i":2997,"n":"Johan Larsson","f":"","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":14},{"i":3124,"n":"Merghem","f":"Mehdi","p":"M","r":9,"s":{"g":"1","s":"51","n":"10","a":"5.1","d":"0.37","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"94","On":"19","Oa":"4.97","Od":"0.52","Mp":"17","Ap":"2","p":{"2":{"n":5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5},"7":{"n":6,"g":1},"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":5},"12":{"n":5,"s":1},"14":{"n":5,"s":1},"17":{"n":5}}},"c":14},{"i":4851,"n":"Mellot","f":"Jeremy","p":"D","r":12,"s":{"g":"1","s":"78","n":"15","a":"5.2","d":"0.81","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.75","Og":"1","Os":"78","On":"15","Oa":"5.2","Od":"0.81","Mp":"1","Dp":"14","p":{"1":{"n":6,"g":1},"2":{"n":4.5},"3":{"n":5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":4},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":4},"13":{"n":6},"14":{"n":4.5},"16":{"n":5.5},"17":{"n":7}}},"c":14},{"i":4884,"n":"Carnot","f":"Louis","p":"M","r":1,"s":{"n":0},"c":14},{"i":5006,"n":"Niakat\u00e9","f":"Sikou","p":"D","r":12,"s":{"g":"1","s":"65","n":"13","a":"5","d":"1.26","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.82","Og":"1","Os":"65","On":"13","Oa":"5","Od":"1.26","Dp":"13","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":2},"9":{"n":6},"10":{"n":7,"g":1},"11":{"n":6},"12":{"n":4},"14":{"n":5},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":5.5}}},"c":14},{"i":5010,"n":"Gomis","f":"Yannick","p":"A","r":16,"s":{"g":"3","s":"67","n":"13","a":"5.15","d":"1.06","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"67","On":"13","Oa":"5.15","Od":"1.06","Mp":"3","Ap":"10","p":{"1":{"n":5,"e":5066,"c":104},"3":{"n":4,"e":5047,"c":104},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":6,"g":1},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":8,"g":2},"14":{"n":4},"15":{"n":4.5},"17":{"n":5,"s":1}}},"c":14},{"i":5145,"n":"M'Changama","f":"Youssouf","p":"M","r":21,"s":{"g":"1","s":"92","n":"16","a":"5.78","d":"0.88","Ss":"66","Sn":"11","Sa":"6","Sd":"0.8","Og":"1","Os":"92","On":"16","Oa":"5.78","Od":"0.88","Mp":"15","Ap":"1","p":{"1":{"n":5,"e":5061,"c":94},"2":{"n":5,"e":5050,"c":94},"3":{"n":4.5,"e":5039,"c":94},"4":{"n":5,"e":5031,"c":94},"5":{"n":7,"e":5022,"c":94,"g":1},"7":{"n":6},"8":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":6},"12":{"n":5},"13":{"n":7.5},"14":{"n":6},"15":{"n":5.5,"s":1},"16":{"n":7},"17":{"n":7}}},"c":14},{"i":5147,"n":"Ba","f":"El-Hadji","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"17":{"n":5,"s":1}}},"c":14},{"i":5361,"n":"Gueddar","f":"Mohamed Ali","p":"A","r":1,"s":{"n":0},"c":14},{"i":5362,"n":"Anne","f":"Souleymane","p":"A","r":1,"s":{"n":0},"c":14},{"i":5364,"n":"Youfeigane","f":"Dominique","p":"G","r":4,"s":{"n":0},"c":14},{"i":5370,"n":"Baret","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":14},{"i":6187,"n":"Palun","f":"Lloyd","p":"D","r":7,"s":{"s":"41","n":"9","a":"4.56","d":"0.64","Os":"41","On":"9","Oa":"4.56","Od":"0.64","Mp":"1","Dp":"8","p":{"5":{"n":3.5},"6":{"n":5},"7":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":3.5},"13":{"n":5,"s":1},"15":{"n":4}}},"c":14},{"i":6210,"n":"Pierrot","f":"Frantzdy","p":"A","r":17,"s":{"g":"6","s":"65","n":"12","a":"5.42","d":"1.73","Sg":"6","Ss":"65","Sn":"12","Sa":"5.42","Sd":"1.73","Og":"6","Os":"65","On":"12","Oa":"5.42","Od":"1.73","Ap":"12","p":{"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":3},"9":{"n":7.5,"g":2,"s":1},"10":{"n":8,"g":1},"11":{"n":4.5,"s":1},"12":{"n":4},"13":{"n":7,"g":1},"14":{"n":4.5},"15":{"n":3},"16":{"n":5},"17":{"n":8,"g":2}}},"c":14},{"i":6257,"n":"Bussmann","f":"Ga\u00ebtan","p":"D","r":9,"s":{"s":"11","n":"2","a":"5.5","d":"0.5","Ss":"11","Sn":"2","Sa":"5.5","Sd":"0.5","Os":"11","On":"2","Oa":"5.5","Od":"0.5","Dp":"2","p":{"16":{"n":5},"17":{"n":6}}},"c":14},{"i":161,"n":"Muratori","f":"Vincent","p":"D","r":3,"s":{"s":"37","n":"8","a":"4.69","d":"0.83","Os":"37","On":"8","Oa":"4.69","Od":"0.83","Dp":"8","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5},"5":{"n":3},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"13":{"n":6}}},"c":17},{"i":338,"n":"El Kaoutari","f":"Abdelhamid","p":"D","r":13,"s":{"s":"76","n":"15","a":"5.1","d":"0.73","Ss":"35","Sn":"7","Sa":"5","Sd":"0.6","Os":"76","On":"15","Oa":"5.1","Od":"0.73","Dp":"15","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":3.5},"6":{"n":6},"7":{"n":4.5,"s":1},"9":{"n":5.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4},"14":{"n":5},"15":{"n":6},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":17},{"i":417,"n":"N'Guessan","f":"Serge","p":"M","r":1,"s":{"s":"16","n":"3","a":"5.33","d":"0.47","Os":"16","On":"3","Oa":"5.33","Od":"0.47","Mp":"3","p":{"1":{"n":5},"4":{"n":6},"5":{"n":5}}},"c":17},{"i":522,"n":"Rocha Santos","f":"Kenny","p":"M","r":13,"s":{"s":"76","n":"15","a":"5.1","d":"0.66","Ss":"35","Sn":"7","Sa":"5.07","Sd":"0.49","Os":"81","On":"16","Oa":"5.09","Od":"0.64","Mp":"16","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":3.5},"6":{"n":5},"7":{"n":5.5},"8":{"n":6.5},"9":{"n":5},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":5},"16":{"n":6},"17":{"n":4.5}}},"c":17},{"i":577,"n":"Marchetti","f":"Vincent","p":"M","r":1,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Mp":"3","p":{"1":{"n":5},"2":{"n":4},"3":{"n":5}}},"c":17},{"i":1189,"n":"Ciss","f":"Saliou","p":"D","r":14,"s":{"g":"2","s":"49","n":"9","a":"5.44","d":"0.9","Ss":"21","Sn":"4","Sa":"5.25","Sd":"1.03","Og":"2","Os":"49","On":"9","Oa":"5.44","Od":"0.9","Mp":"1","Dp":"8","p":{"8":{"n":6},"9":{"n":6,"g":1},"10":{"n":6.5,"g":1},"11":{"n":5},"12":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":7},"17":{"n":4.5}}},"c":17},{"i":1270,"n":"Coulibaly","f":"Sega","p":"D","r":5,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"6":{"n":4.5}}},"c":17},{"i":1407,"n":"Seka","f":"Ernest","p":"D","r":14,"s":{"s":"64","n":"12","a":"5.33","d":"0.51","Ss":"59","Sn":"11","Sa":"5.36","Sd":"0.53","Os":"64","On":"12","Oa":"5.33","Od":"0.51","Dp":"12","p":{"4":{"n":5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5.5},"15":{"n":5},"16":{"n":6},"17":{"n":5}}},"c":17},{"i":2139,"n":"V\u00e1gner","f":"","p":"M","r":13,"s":{"g":"7","s":"88","n":"15","a":"5.87","d":"1.36","Og":"7","Os":"88","On":"15","Oa":"5.87","Od":"1.36","Mp":"7","Ap":"8","p":{"2":{"n":7,"g":1},"3":{"n":6},"4":{"n":8,"g":2},"5":{"n":3.5},"6":{"n":5},"7":{"n":5},"8":{"n":8,"g":1},"9":{"n":4},"10":{"n":7.5,"g":1},"11":{"n":5},"12":{"n":6},"13":{"n":6,"g":1},"14":{"n":4.5},"15":{"n":7,"g":1},"16":{"n":5.5}}},"c":17},{"i":2607,"n":"Lybohy","f":"Herve","p":"D","r":11,"s":{"s":"69","n":"14","a":"4.96","d":"0.92","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.75","Og":"1","Os":"114","On":"24","Oa":"4.77","Od":"0.96","Dp":"24","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":6},"5":{"n":3.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":4},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"16":{"n":5.5},"17":{"n":4}}},"c":17},{"i":2628,"n":"Bertrand","f":"Dorian","p":"A","r":9,"s":{"s":"81","n":"17","a":"4.79","d":"0.88","Ss":"81","Sn":"17","Sa":"4.79","Sd":"0.88","Os":"81","On":"17","Oa":"4.79","Od":"0.88","Mp":"7","Ap":"10","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":6},"4":{"n":6},"5":{"n":4,"s":1},"6":{"n":5},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":3.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":3.5},"12":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"15":{"n":6,"s":1},"16":{"n":5.5},"17":{"n":4,"s":1}}},"c":17},{"i":2729,"n":"Valette","f":"Baptiste","p":"G","r":16,"s":{"s":"84","n":"16","a":"5.28","d":"1.16","Ss":"65","Sn":"12","Sa":"5.42","Sd":"1.17","Os":"84","On":"16","Oa":"5.28","Od":"1.16","Gp":"16","p":{"1":{"n":6.5},"2":{"n":4},"3":{"n":5},"4":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":4},"10":{"n":4},"11":{"n":6},"12":{"n":6},"13":{"n":8},"14":{"n":6.5},"15":{"n":5},"16":{"n":6.5},"17":{"n":4.5}}},"c":17},{"i":2732,"n":"Sourzac","f":"Martin","p":"G","r":7,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Os":"8","On":"2","Oa":"4.25","Od":"0.75","Gp":"2","p":{"4":{"n":5,"s":1},"5":{"n":3.5}}},"c":17},{"i":2765,"n":"Gueye","f":"Makhtar","p":"A","r":10,"s":{"g":"4","s":"59","n":"13","a":"4.58","d":"1.24","Og":"4","Os":"79","On":"17","Oa":"4.68","Od":"1.14","Ap":"17","p":{"2":{"n":4,"s":1},"3":{"n":4,"s":1},"5":{"n":2.5},"6":{"n":4.5,"s":1},"7":{"n":6,"g":1},"8":{"n":7,"g":1},"9":{"n":6,"g":1},"10":{"n":3.5},"12":{"n":4},"13":{"n":3.5},"14":{"n":4},"15":{"n":4.5,"s":1},"16":{"n":6,"g":1}}},"c":17},{"i":4872,"n":"Triboulet","f":"Vinni","p":"M","r":5,"s":{"n":0},"c":17},{"i":4873,"n":"Bouzar Essaidi","f":"Samir","p":"M","r":1,"s":{"n":0},"c":17},{"i":4875,"n":"Wooh","f":"Christopher Maurice","p":"M","r":1,"s":{"n":0},"c":17},{"i":4876,"n":"Haag","f":"Giovanni","p":"M","r":1,"s":{"n":0},"c":17},{"i":4899,"n":"Bassouamina","f":"Mons","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":17},{"i":4939,"n":"Constant","f":"Hugo","p":"G","r":1,"s":{"n":0},"c":17},{"i":4959,"n":"Demb\u00e9l\u00e9","f":"Malaly","p":"A","r":7,"s":{"s":"39","n":"9","a":"4.33","d":"0.47","Ss":"4","Sn":"1","Sa":"4","Os":"39","On":"9","Oa":"4.33","Od":"0.47","Mp":"1","Ap":"8","p":{"1":{"n":5},"2":{"n":4.5,"s":1},"6":{"n":3.5},"7":{"n":4,"s":1},"11":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":4,"s":1},"15":{"n":4.5,"s":1},"17":{"n":4}}},"c":17},{"i":4961,"n":"Barka","f":"Yanis","p":"A","r":1,"s":{"n":0},"c":17},{"i":4963,"n":"Fischer","f":"Mathias","p":"D","r":1,"s":{"n":0},"c":17},{"i":4967,"n":"Bassi","f":"Amine","p":"M","r":18,"s":{"g":"2","s":"61","n":"11","a":"5.59","d":"1.16","Sg":"2","Ss":"61","Sn":"11","Sa":"5.59","Sd":"1.16","Og":"2","Os":"61","On":"11","Oa":"5.59","Od":"1.16","Mp":"5","Ap":"6","p":{"7":{"n":5},"8":{"n":8,"g":1},"9":{"n":5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5},"15":{"n":5},"16":{"n":8,"g":1},"17":{"n":4.5}}},"c":17},{"i":4973,"n":"Bidounga","f":"Ryan","p":"D","r":1,"s":{"n":0},"c":17},{"i":5025,"n":"Karamoko","f":"Souleymane","p":"D","r":12,"s":{"s":"78","n":"16","a":"4.91","d":"0.91","Ss":"3","Sn":"1","Sa":"3.5","Os":"78","On":"16","Oa":"4.91","Od":"0.91","Mp":"1","Dp":"15","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":7},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":5},"11":{"n":3.5},"12":{"n":5.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"17":{"n":3.5}}},"c":17},{"i":5058,"n":"Nguiamba","f":"Aurelien","p":"M","r":1,"s":{"s":"39","n":"8","a":"4.94","d":"0.68","Os":"39","On":"8","Oa":"4.94","Od":"0.68","Mp":"8","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5.5,"s":1},"4":{"n":6},"5":{"n":3.5},"6":{"n":4.5},"10":{"n":5,"s":1},"11":{"n":5,"s":1}}},"c":17},{"i":5114,"n":"Danilson da Cruz","f":"","p":"M","r":5,"s":{"n":0},"c":17},{"i":5165,"n":"Cissokho","f":"Mame Ousmane","p":"A","r":12,"s":{"s":"51","n":"10","a":"5.15","d":"0.81","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"51","On":"10","Oa":"5.15","Od":"0.81","Mp":"9","Ap":"1","p":{"3":{"n":5},"4":{"n":6},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":6},"16":{"n":5,"s":1},"17":{"n":4}}},"c":17},{"i":5167,"n":"Edmond Akichi","f":"","p":"M","r":13,"s":{"s":"60","n":"11","a":"5.5","d":"0.56","Ss":"44","Sn":"8","Sa":"5.56","Sd":"0.63","Os":"60","On":"11","Oa":"5.5","Od":"0.56","Mp":"11","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":4.5},"16":{"n":6.5},"17":{"n":5}}},"c":17},{"i":5179,"n":"Nery","f":"Loris","p":"D","r":7,"s":{"s":"25","n":"5","a":"5","d":"0.55","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"25","On":"5","Oa":"5","Od":"0.55","Dp":"5","p":{"4":{"n":5,"s":1},"6":{"n":4.5},"12":{"n":5,"s":1},"16":{"n":6},"17":{"n":4.5,"s":1}}},"c":17},{"i":5204,"n":"Dona Ndoh","f":"And\u00e9","p":"A","r":9,"s":{"s":"61","n":"14","a":"4.39","d":"0.43","Ss":"4","Sn":"1","Sa":"4","Os":"61","On":"14","Oa":"4.39","Od":"0.43","Ap":"14","p":{"1":{"n":3.5},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5},"17":{"n":4,"s":1}}},"c":17},{"i":6184,"n":"Lefebvre","f":"Gregoire","p":"M","r":11,"s":{"s":"45","n":"9","a":"5.06","d":"0.76","Os":"45","On":"9","Oa":"5.06","Od":"0.76","Mp":"9","p":{"5":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":4},"11":{"n":5},"13":{"n":4},"15":{"n":5.5},"16":{"n":4.5,"s":1}}},"c":17},{"i":479,"n":"Barthelme","f":"Maxime","p":"M","r":15,"s":{"s":"83","n":"15","a":"5.57","d":"0.96","Ss":"5","Sn":"1","Sa":"5","Os":"83","On":"15","Oa":"5.57","Od":"0.96","Mp":"13","Ap":"2","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":4.5},"8":{"n":5},"9":{"n":6},"11":{"n":6.5},"12":{"n":6.5},"13":{"n":7.5},"14":{"n":6},"15":{"n":3.5},"17":{"n":5}}},"c":43},{"i":871,"n":"Souar\u00e9","f":"Pape","p":"D","r":10,"s":{"s":"51","n":"11","a":"4.68","d":"0.49","Ss":"13","Sn":"3","Sa":"4.5","Sd":"0.71","Os":"51","On":"11","Oa":"4.68","Od":"0.49","Mp":"2","Dp":"9","p":{"4":{"n":5},"5":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":4},"10":{"n":4.5},"12":{"n":5},"13":{"n":5},"15":{"n":3.5},"16":{"n":5},"17":{"n":5}}},"c":43},{"i":1224,"n":"Massouema","f":"Eden","p":"M","r":1,"s":{"s":"14","n":"3","a":"4.67","d":"0.85","Os":"14","On":"3","Oa":"4.67","Od":"0.85","Mp":"3","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":3.5}}},"c":43},{"i":1396,"n":"Darbion","f":"St\u00e9phane","p":"M","r":3,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"3","p":{"8":{"n":4.5,"s":1},"10":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":43},{"i":1408,"n":"El Hajjam","f":"Oualid","p":"D","r":8,"s":{"s":"66","n":"13","a":"5.12","d":"0.59","Ss":"4","Sn":"1","Sa":"4.5","Os":"76","On":"15","Oa":"5.07","Od":"0.57","Mp":"3","Dp":"12","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4.5},"12":{"n":6},"13":{"n":5},"14":{"n":6},"17":{"n":4.5,"s":1}}},"c":43},{"i":1411,"n":"Giraudon","f":"Jimmy","p":"D","r":12,"s":{"s":"80","n":"16","a":"5","d":"1.03","Ss":"50","Sn":"10","Sa":"5","Sd":"1.07","Os":"80","On":"16","Oa":"5","Od":"1.03","Dp":"16","p":{"1":{"n":6},"2":{"n":3.5},"3":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6},"15":{"n":2.5},"16":{"n":5.5},"17":{"n":6}}},"c":43},{"i":1439,"n":"Sacko","f":"Ihsan","p":"M","r":7,"s":{"g":"1","s":"52","n":"11","a":"4.73","d":"0.78","Og":"1","Os":"94","On":"20","Oa":"4.73","Od":"0.84","Mp":"11","Ap":"9","p":{"1":{"n":4.5,"e":3921,"c":19,"s":1},"2":{"n":5,"e":3913,"c":19},"3":{"n":4,"e":3905,"c":19},"7":{"n":5},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":3},"11":{"n":6,"g":1},"12":{"n":5.5},"13":{"n":5,"s":1},"15":{"n":4,"s":1}}},"c":43},{"i":1440,"n":"Salmier","f":"Yoann","p":"D","r":12,"s":{"g":"1","s":"82","n":"16","a":"5.13","d":"0.96","Ss":"35","Sn":"7","Sa":"5","Sd":"1.25","Og":"1","Os":"82","On":"16","Oa":"5.13","Od":"0.96","Dp":"16","p":{"1":{"n":6},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5.5,"g":1},"11":{"n":5.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":2},"16":{"n":5},"17":{"n":5.5}}},"c":43},{"i":1465,"n":"Sissako","f":"Mamadou","p":"A","r":1,"s":{"n":0},"c":43},{"i":2271,"n":"Chambost","f":"Dylan","p":"M","r":3,"s":{"g":"1","s":"33","n":"7","a":"4.79","d":"1.13","Og":"1","Os":"33","On":"7","Oa":"4.79","Od":"1.13","Mp":"7","p":{"2":{"n":3.5,"s":1},"4":{"n":5.5},"7":{"n":6.5,"g":1,"s":1},"9":{"n":5.5,"s":1},"10":{"n":5},"11":{"n":4.5},"15":{"n":3}}},"c":43},{"i":2325,"n":"Mbeumo","f":"Bryan","p":"A","r":22,"s":{"g":"1","s":"11","n":"2","a":"5.75","d":"1.25","Og":"1","Os":"11","On":"2","Oa":"5.75","Od":"1.25","Mp":"2","p":{"1":{"n":7,"g":1},"2":{"n":4.5}}},"c":43},{"i":2868,"n":"Pintor","f":"Lenny","p":"A","r":8,"s":{"g":"3","s":"65","n":"13","a":"5","d":"0.96","Ss":"17","Sn":"4","Sa":"4.38","Sd":"0.74","Og":"3","Os":"65","On":"13","Oa":"5","Od":"0.96","Mp":"3","Ap":"10","p":{"4":{"n":5,"s":1},"5":{"n":6,"g":1,"s":1},"6":{"n":4.5,"s":1},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":6.5,"g":1,"s":1},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":43},{"i":4848,"n":"Bouallak","f":"Ryan","p":"G","r":1,"s":{"n":0},"c":43},{"i":4854,"n":"Mambo","f":"Stone Muzalimoja","p":"D","r":3,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Os":"33","On":"7","Oa":"4.71","Od":"0.52","Mp":"1","Dp":"6","p":{"5":{"n":5,"s":1},"6":{"n":5},"10":{"n":5},"11":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":5},"16":{"n":4.5,"s":1}}},"c":43},{"i":4867,"n":"Jay","f":"Ronan","p":"G","r":1,"s":{"n":0},"c":43},{"i":4883,"n":"Abdallah","f":"Benrandy","p":"D","r":1,"s":{"n":0},"c":43},{"i":4897,"n":"Tchimbemb\u00e9","f":"Warren","p":"A","r":6,"s":{"s":"23","n":"5","a":"4.7","d":"0.4","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"23","On":"5","Oa":"4.7","Od":"0.4","Mp":"2","Ap":"3","p":{"3":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":5.5},"17":{"n":4.5}}},"c":43},{"i":4989,"n":"Rui Pires","f":"","p":"M","r":5,"s":{"s":"60","n":"13","a":"4.65","d":"0.46","Os":"60","On":"13","Oa":"4.65","Od":"0.46","Mp":"13","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5.5}}},"c":43},{"i":4999,"n":"Digol N'Dozangue","f":"Khamis","p":"D","r":1,"s":{"n":0},"c":43},{"i":5004,"n":"Fortun\u00e9","f":"K\u00e9vin","p":"A","r":20,"s":{"s":"21","n":"4","a":"5.25","d":"0.75","Os":"21","On":"4","Oa":"5.25","Od":"0.75","Mp":"3","Ap":"1","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5}}},"c":43},{"i":5012,"n":"Kiki Kouyate","f":"","p":"D","r":16,"s":{"g":"3","s":"72","n":"13","a":"5.58","d":"1.21","Ss":"15","Sn":"3","Sa":"5","Sd":"1.08","Og":"3","Os":"72","On":"13","Oa":"5.58","Od":"1.21","Dp":"13","p":{"3":{"n":5,"s":1},"4":{"n":6.5,"g":1},"5":{"n":8,"g":1},"6":{"n":5.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":4},"11":{"n":4},"12":{"n":6},"13":{"n":7,"g":1},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":6}}},"c":43},{"i":5071,"n":"Raveloson","f":"Rayan","p":"D","r":13,"s":{"s":"71","n":"14","a":"5.07","d":"1.03","Ss":"35","Sn":"7","Sa":"5.07","Sd":"1.18","Os":"71","On":"14","Oa":"5.07","Od":"1.03","Mp":"9","Dp":"5","p":{"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5.5,"s":1},"6":{"n":6.5},"7":{"n":5,"s":1},"8":{"n":5},"9":{"n":3.5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5},"14":{"n":6},"15":{"n":2.5},"16":{"n":5},"17":{"n":6.5}}},"c":43},{"i":5101,"n":"Camara","f":"Demba","p":"A","r":4,"s":{"s":"22","n":"5","a":"4.4","d":"0.37","Os":"22","On":"5","Oa":"4.4","Od":"0.37","Ap":"5","p":{"1":{"n":4.5,"s":1},"2":{"n":4,"s":1},"3":{"n":5,"s":1},"4":{"n":4,"s":1},"6":{"n":4.5,"s":1}}},"c":43},{"i":5108,"n":"Gallon","f":"Gauthier","p":"G","r":14,"s":{"s":"90","n":"17","a":"5.32","d":"0.89","Ss":"90","Sn":"17","Sa":"5.32","Sd":"0.89","Os":"90","On":"17","Oa":"5.32","Od":"0.89","Gp":"17","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":6},"12":{"n":6.5},"13":{"n":6},"14":{"n":6},"15":{"n":3.5},"16":{"n":6},"17":{"n":5.5}}},"c":43},{"i":5178,"n":"Touzghar","f":"Yoann","p":"A","r":15,"s":{"g":"4","ao":"1","s":"81","n":"16","a":"5.06","d":"1.2","Og":"4","Oao":"1","Os":"81","On":"16","Oa":"5.06","Od":"1.2","Ap":"16","p":{"1":{"n":7,"g":1},"2":{"n":6,"g":1},"3":{"n":5},"4":{"n":5},"5":{"n":5.5},"6":{"n":7,"g":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":5,"s":1},"10":{"n":3,"a":1},"11":{"n":7,"g":1},"12":{"n":4},"13":{"n":4.5},"14":{"n":5},"15":{"n":3},"16":{"n":4.5}}},"c":43},{"i":5197,"n":"Kashi","f":"Ahmed","p":"M","r":1,"s":{"n":0},"c":43},{"i":5358,"n":"Bombo","f":"Calvin","p":"M","r":1,"s":{"n":0},"c":43},{"i":5359,"n":"Merah","f":"Yanis","p":"D","r":1,"s":{"n":0},"c":43},{"i":5365,"n":"Baya","f":"Terence","p":"D","r":1,"s":{"s":"8","n":"2","a":"4","Os":"8","On":"2","Oa":"4","Dp":"2","p":{"2":{"n":4},"3":{"n":4}}},"c":43},{"i":5376,"n":"Tardieu","f":"Florian","p":"M","r":21,"s":{"g":"2","s":"90","n":"16","a":"5.63","d":"1.22","Sg":"2","Ss":"90","Sn":"16","Sa":"5.63","Sd":"1.22","Og":"2","Os":"90","On":"16","Oa":"5.63","Od":"1.22","Mp":"16","p":{"2":{"n":5},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":5.5},"6":{"n":7},"7":{"n":5.5},"8":{"n":7.5,"g":1},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":6},"13":{"n":6.5},"14":{"n":7},"15":{"n":2.5},"16":{"n":6},"17":{"n":5.5}}},"c":43},{"i":5978,"n":"Renot","f":"Sebastien","p":"G","r":7,"s":{"n":0},"c":43},{"i":6143,"n":"Ba","f":"Pape Meissa","p":"A","r":8,"s":{"g":"1","s":"15","n":"3","a":"5","d":"0.71","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"1","Os":"15","On":"3","Oa":"5","Od":"0.71","Ap":"3","p":{"14":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":6,"g":1}}},"c":43},{"i":6211,"n":"B\u00e9dia","f":"Chris Vianney","p":"A","r":10,"s":{"g":"2","s":"55","n":"12","a":"4.63","d":"0.77","Sg":"2","Ss":"55","Sn":"12","Sa":"4.63","Sd":"0.77","Og":"2","Os":"55","On":"12","Oa":"4.63","Od":"0.77","Mp":"1","Ap":"11","p":{"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":6.5,"g":1,"s":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":4,"s":1},"15":{"n":4,"s":1},"16":{"n":6,"g":1},"17":{"n":4.5}}},"c":43},{"i":6235,"n":"Demb\u00e9l\u00e9","f":"Mahamadou","p":"D","r":1,"s":{"n":0},"c":43},{"i":348,"n":"Leroy","f":"Benjamin","p":"G","r":26,"s":{"s":"102","n":"17","a":"6.03","d":"1.06","Ss":"102","Sn":"17","Sa":"6.03","Sd":"1.06","Os":"102","On":"17","Oa":"6.03","Od":"1.06","Gp":"17","p":{"1":{"n":3},"2":{"n":6},"3":{"n":5},"4":{"n":7},"5":{"n":7},"6":{"n":6},"7":{"n":6},"8":{"n":5},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":8},"13":{"n":7},"14":{"n":6},"15":{"n":5.5},"16":{"n":6},"17":{"n":6}}},"c":88},{"i":365,"n":"Keita","f":"Abdoulaye","p":"M","r":1,"s":{"n":0},"c":88},{"i":384,"n":"Lejeune","f":"K\u00e9vin","p":"M","r":3,"s":{"s":"29","n":"6","a":"4.92","d":"0.45","Os":"29","On":"6","Oa":"4.92","Od":"0.45","Dp":"6","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":4}}},"c":88},{"i":1246,"n":"Jallow","f":"Ablie","p":"M","r":5,"s":{"s":"38","n":"8","a":"4.75","d":"0.43","Os":"38","On":"8","Oa":"4.75","Od":"0.43","Mp":"2","Ap":"6","p":{"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1}}},"c":88},{"i":1263,"n":"Andonian","f":"Ga\u00ebl","p":"D","r":1,"s":{"n":0},"c":88},{"i":2082,"n":"Flips","f":"Alexis","p":"M","r":7,"s":{"s":"20","n":"4","a":"5","d":"0.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"20","On":"4","Oa":"5","Od":"0.5","Mp":"4","p":{"5":{"n":5.5},"8":{"n":4.5},"10":{"n":4.5,"s":1},"17":{"n":5.5}}},"c":88},{"i":4834,"n":"Huard","f":"Matthieu","p":"D","r":15,"s":{"s":"71","n":"14","a":"5.11","d":"0.34","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.24","Os":"71","On":"14","Oa":"5.11","Od":"0.34","Mp":"1","Dp":"13","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"15":{"n":5},"16":{"n":5},"17":{"n":5.5}}},"c":88},{"i":4860,"n":"Corinus","f":"J\u00e9r\u00e9my","p":"D","r":1,"s":{"s":"45","n":"9","a":"5","d":"0.33","Os":"45","On":"9","Oa":"5","Od":"0.33","Mp":"1","Dp":"8","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"9":{"n":5.5,"s":1}}},"c":88},{"i":4871,"n":"Tomi","f":"Felix","p":"M","r":1,"s":{"n":0},"c":88},{"i":4878,"n":"El Idrissy","f":"Mounaim","p":"A","r":7,"s":{"g":"2","s":"57","n":"12","a":"4.79","d":"0.72","Sg":"1","Ss":"15","Sn":"3","Sa":"5","Sd":"0.71","Og":"2","Os":"57","On":"12","Oa":"4.79","Od":"0.72","Ap":"12","p":{"1":{"n":5,"s":1},"2":{"n":6.5,"g":1,"s":1},"3":{"n":5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5},"11":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":6,"g":1,"s":1},"17":{"n":4.5,"s":1}}},"c":88},{"i":4879,"n":"Marsella","f":"Lucas","p":"G","r":1,"s":{"n":0},"c":88},{"i":4896,"n":"Pellegrini","f":"Lucas","p":"M","r":1,"s":{"n":0},"c":88},{"i":4958,"n":"Tramoni","f":"Matteo","p":"M","r":13,"s":{"g":"2","s":"76","n":"14","a":"5.46","d":"1.04","Og":"2","Os":"76","On":"14","Oa":"5.46","Od":"1.04","Mp":"14","p":{"1":{"n":6,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":7.5,"g":1,"s":1},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":8,"g":1},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5}}},"c":88},{"i":4993,"n":"Bayala","f":"Cyrille","p":"M","r":22,"s":{"g":"2","s":"96","n":"17","a":"5.65","d":"0.68","Sg":"2","Ss":"96","Sn":"17","Sa":"5.65","Sd":"0.68","Og":"2","Os":"96","On":"17","Oa":"5.65","Od":"0.68","Mp":"17","p":{"1":{"n":5},"2":{"n":6},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":5.5},"14":{"n":6,"g":1},"15":{"n":5},"16":{"n":6},"17":{"n":6.5}}},"c":88},{"i":5039,"n":"Laci","f":"Qazim","p":"M","r":17,"s":{"g":"1","s":"90","n":"16","a":"5.66","d":"1.07","Sg":"1","Ss":"58","Sn":"10","Sa":"5.85","Sd":"1.03","Og":"1","Os":"90","On":"16","Oa":"5.66","Od":"1.07","Mp":"16","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":6},"5":{"n":7},"6":{"n":4},"8":{"n":5.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":6},"13":{"n":7,"g":1},"14":{"n":5},"15":{"n":6},"16":{"n":8},"17":{"n":6}}},"c":88},{"i":5044,"n":"Coutadeur","f":"Mathieu","p":"M","r":25,"s":{"g":"1","s":"100","n":"17","a":"5.88","d":"0.76","Sg":"1","Ss":"100","Sn":"17","Sa":"5.88","Sd":"0.76","Og":"1","Os":"100","On":"17","Oa":"5.88","Od":"0.76","Mp":"17","p":{"1":{"n":6.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":5.5},"8":{"n":6},"9":{"n":7},"10":{"n":6},"11":{"n":7},"12":{"n":5.5},"13":{"n":6},"14":{"n":6},"15":{"n":6},"16":{"n":5},"17":{"n":7}}},"c":88},{"i":5062,"n":"Tall","f":"Maki Madani","p":"A","r":1,"s":{"n":0},"c":88},{"i":5086,"n":"Sollacaro","f":"Francois-Joseph","p":"G","r":7,"s":{"n":0},"c":88},{"i":5099,"n":"Diallo","f":"Isma\u00ebl","p":"D","r":7,"s":{"s":"31","n":"6","a":"5.17","d":"0.47","Ss":"5","Sn":"1","Sa":"5","Os":"31","On":"6","Oa":"5.17","Od":"0.47","Dp":"6","p":{"7":{"n":5,"s":1},"9":{"n":5},"10":{"n":4.5},"12":{"n":6},"13":{"n":5.5},"17":{"n":5,"s":1}}},"c":88},{"i":5170,"n":"Courtet","f":"Ga\u00ebtan","p":"A","r":19,"s":{"g":"5","s":"83","n":"16","a":"5.22","d":"1.03","Ss":"34","Sn":"7","Sa":"4.93","Sd":"0.9","Og":"5","Os":"83","On":"16","Oa":"5.22","Od":"1.03","Ap":"16","p":{"1":{"n":7,"g":2},"2":{"n":5},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":7,"g":1},"9":{"n":4},"11":{"n":4},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":7},"17":{"n":5}}},"c":88},{"i":5175,"n":"Joseph Mendes","f":"","p":"A","r":3,"s":{"s":"21","n":"5","a":"4.3","d":"0.24","Os":"21","On":"5","Oa":"4.3","Od":"0.24","Ap":"5","p":{"5":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1}}},"c":88},{"i":5206,"n":"Youssouf","f":"Mohamed","p":"A","r":3,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"14":{"n":5.5}}},"c":88},{"i":5214,"n":"Avinel","f":"Cedric","p":"D","r":19,"s":{"s":"88","n":"17","a":"5.21","d":"0.81","Ss":"88","Sn":"17","Sa":"5.21","Sd":"0.81","Os":"88","On":"17","Oa":"5.21","Od":"0.81","Dp":"17","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":3},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":4},"7":{"n":5},"8":{"n":4.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5},"15":{"n":4.5},"16":{"n":6},"17":{"n":6}}},"c":88},{"i":5218,"n":"Choplin","f":"J\u00e9r\u00e9my","p":"D","r":25,"s":{"g":"3","s":"74","n":"13","a":"5.69","d":"1.07","Sg":"2","Ss":"25","Sn":"4","Sa":"6.25","Sd":"0.83","Og":"3","Os":"74","On":"13","Oa":"5.69","Od":"1.07","Dp":"13","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":6},"5":{"n":7.5,"g":1},"6":{"n":4},"7":{"n":5.5},"8":{"n":4},"11":{"n":6},"14":{"n":5.5},"15":{"n":6.5,"g":1},"16":{"n":5.5},"17":{"n":7.5,"g":1}}},"c":88},{"i":5222,"n":"Cavalli","f":"Johan","p":"M","r":18,"s":{"s":"57","n":"11","a":"5.23","d":"0.39","Ss":"10","Sn":"2","Sa":"5","Os":"57","On":"11","Oa":"5.23","Od":"0.39","Mp":"11","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"11":{"n":5,"s":1},"13":{"n":5,"s":1},"16":{"n":5},"17":{"n":5}}},"c":88},{"i":5979,"n":"Kalulu Kyatengwa","f":"Gedeon","p":"D","r":16,"s":{"g":"1","s":"76","n":"14","a":"5.43","d":"0.88","Sg":"1","Ss":"76","Sn":"14","Sa":"5.43","Sd":"0.88","Og":"1","Os":"76","On":"14","Oa":"5.43","Od":"0.88","Dp":"14","p":{"4":{"n":5},"5":{"n":6},"6":{"n":3},"7":{"n":5.5},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":5},"15":{"n":5},"16":{"n":7,"g":1},"17":{"n":6}}},"c":88},{"i":6183,"n":"Cuypers","f":"Hugo","p":"A","r":11,"s":{"g":"4","s":"59","n":"11","a":"5.41","d":"1.22","Sg":"4","Ss":"59","Sn":"11","Sa":"5.41","Sd":"1.22","Og":"4","Os":"59","On":"11","Oa":"5.41","Od":"1.22","Ap":"11","p":{"7":{"n":4.5,"s":1},"8":{"n":7.5,"g":2,"s":1},"9":{"n":8,"g":2},"10":{"n":5},"11":{"n":4},"12":{"n":6},"13":{"n":5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":4.5,"s":1}}},"c":88},{"i":6232,"n":"Loufilou","f":"Clench","p":"M","r":1,"s":{"n":0},"c":88},{"i":255,"n":"Gorgelin","f":"Mathieu","p":"G","r":15,"s":{"s":"92","n":"17","a":"5.44","d":"0.59","Ss":"92","Sn":"17","Sa":"5.44","Sd":"0.59","Os":"104","On":"19","Oa":"5.5","Od":"0.67","Gp":"19","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":4},"11":{"n":5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":6}}},"c":89},{"i":269,"n":"Bazile","f":"Herve","p":"A","r":3,"s":{"s":"27","n":"6","a":"4.58","d":"0.19","Os":"27","On":"6","Oa":"4.58","Od":"0.19","Ap":"6","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1}}},"c":89},{"i":1249,"n":"Dzabana","f":"Alan","p":"A","r":8,"s":{"g":"1","s":"24","n":"5","a":"4.8","d":"0.6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"24","On":"5","Oa":"4.8","Od":"0.6","Ap":"5","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"17":{"n":6,"g":1}}},"c":89},{"i":4891,"n":"Abdelli","f":"Himad","p":"M","r":1,"s":{"s":"26","n":"5","a":"5.2","d":"0.24","Os":"26","On":"5","Oa":"5.2","Od":"0.24","Mp":"5","p":{"1":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"6":{"n":5.5,"s":1},"7":{"n":5.5,"s":1}}},"c":89},{"i":4945,"n":"Ebimbe","f":"\u00c9ric","p":"M","r":16,"s":{"g":"2","s":"87","n":"16","a":"5.47","d":"1.05","Sg":"1","Ss":"22","Sn":"4","Sa":"5.63","Sd":"1.47","Og":"2","Os":"87","On":"16","Oa":"5.47","Od":"1.05","Mp":"15","Ap":"1","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":6},"4":{"n":6},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":5},"8":{"n":5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":6},"14":{"n":4},"15":{"n":8,"g":1},"16":{"n":5.5},"17":{"n":5}}},"c":89},{"i":4951,"n":"Fofana","f":"Yahia","p":"G","r":7,"s":{"n":0},"c":89},{"i":4962,"n":"Tiehi","f":"Christ","p":"M","r":1,"s":{"n":0},"c":89},{"i":4968,"n":"Gueye","f":"Pape Alassane","p":"M","r":17,"s":{"s":"89","n":"16","a":"5.56","d":"0.73","Ss":"48","Sn":"9","Sa":"5.33","Sd":"0.82","Os":"89","On":"16","Oa":"5.56","Od":"0.73","Mp":"16","p":{"1":{"n":5.5,"s":1},"2":{"n":5},"3":{"n":6},"4":{"n":6},"5":{"n":6.5},"6":{"n":6},"7":{"n":6},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":4},"15":{"n":7},"16":{"n":5},"17":{"n":5}}},"c":89},{"i":4976,"n":"Basque","f":"Romain","p":"M","r":9,"s":{"s":"42","n":"8","a":"5.31","d":"0.75","Ss":"42","Sn":"8","Sa":"5.31","Sd":"0.75","Os":"42","On":"8","Oa":"5.31","Od":"0.75","Mp":"8","p":{"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":7},"14":{"n":5.5},"15":{"n":5,"s":1},"16":{"n":4.5},"17":{"n":5.5}}},"c":89},{"i":4992,"n":"Coulibaly","f":"Yacouba","p":"D","r":9,"s":{"s":"18","n":"4","a":"4.5","d":"0.61","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"18","On":"4","Oa":"4.5","Od":"0.61","Dp":"4","p":{"1":{"n":3.5},"15":{"n":5},"16":{"n":5},"17":{"n":4.5}}},"c":89},{"i":4995,"n":"Mayembo","f":"Fernand","p":"D","r":12,"s":{"s":"65","n":"12","a":"5.42","d":"0.79","Ss":"22","Sn":"4","Sa":"5.5","Sd":"1.12","Os":"65","On":"12","Oa":"5.42","Od":"0.79","Dp":"12","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":6.5},"11":{"n":4.5},"12":{"n":5.5},"14":{"n":4},"15":{"n":7},"16":{"n":5},"17":{"n":6}}},"c":89},{"i":5008,"n":"Gory","f":"Alimami","p":"A","r":27,"s":{"n":0},"c":89},{"i":5015,"n":"Camara","f":"Samba","p":"D","r":9,"s":{"s":"62","n":"12","a":"5.17","d":"0.9","Os":"62","On":"12","Oa":"5.17","Od":"0.9","Dp":"12","p":{"1":{"n":5},"2":{"n":5},"3":{"n":6},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":4},"11":{"n":3},"13":{"n":6}}},"c":89},{"i":5036,"n":"Kadewere","f":"Tinotenda","p":"A","r":38,"s":{"g":"15","s":"99","n":"17","a":"5.85","d":"1.54","Sg":"15","Ss":"99","Sn":"17","Sa":"5.85","Sd":"1.54","Og":"15","Os":"99","On":"17","Oa":"5.85","Od":"1.54","Ap":"17","p":{"1":{"n":7,"g":2},"2":{"n":6,"g":1},"3":{"n":6,"g":1},"4":{"n":8,"g":2},"5":{"n":7.5,"g":2},"6":{"n":8,"g":1},"7":{"n":4},"8":{"n":6,"g":1},"9":{"n":3},"10":{"n":3.5},"11":{"n":6,"g":1},"12":{"n":4.5},"13":{"n":4,"g":1},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":7,"g":2},"17":{"n":7}}},"c":89},{"i":5104,"n":"Bese","f":"Barnab\u00e1s","p":"D","r":10,"s":{"g":"1","s":"75","n":"15","a":"5.03","d":"0.78","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"75","On":"15","Oa":"5.03","Od":"0.78","Dp":"15","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":5},"8":{"n":5},"9":{"n":4.5},"10":{"n":4},"12":{"n":5},"13":{"n":5},"14":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":5,"s":1}}},"c":89},{"i":5116,"n":"Assifuah","f":"Ebenezer","p":"A","r":3,"s":{"s":"27","n":"6","a":"4.58","d":"0.19","Os":"27","On":"6","Oa":"4.58","Od":"0.19","Mp":"1","Ap":"5","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"13":{"n":5}}},"c":89},{"i":5119,"n":"Lekhal","f":"Victor","p":"M","r":1,"s":{"n":0},"c":89},{"i":5120,"n":"Thiare","f":"Jamal","p":"A","r":18,"s":{"g":"5","s":"93","n":"17","a":"5.5","d":"1.08","Sg":"5","Ss":"93","Sn":"17","Sa":"5.5","Sd":"1.08","Og":"5","Os":"93","On":"17","Oa":"5.5","Od":"1.08","Ap":"17","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6.5,"g":1},"7":{"n":3.5},"8":{"n":7.5,"g":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":6.5,"g":1},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":7,"g":1,"s":1},"16":{"n":6,"s":1},"17":{"n":6.5,"g":1,"s":1}}},"c":89},{"i":5133,"n":"Traore","f":"Baba","p":"D","r":1,"s":{"n":0},"c":89},{"i":5150,"n":"Youga","f":"Amos","p":"M","r":4,"s":{"s":"36","n":"7","a":"5.14","d":"0.23","Os":"36","On":"7","Oa":"5.14","Od":"0.23","Mp":"7","p":{"3":{"n":5.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"8":{"n":5.5},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5}}},"c":89},{"i":5188,"n":"Balijon","f":"Arnaud","p":"G","r":1,"s":{"n":0},"c":89},{"i":5203,"n":"Fontaine","f":"Jean-Pascal","p":"M","r":18,"s":{"g":"1","s":"80","n":"14","a":"5.71","d":"1.13","Og":"1","Os":"80","On":"14","Oa":"5.71","Od":"1.13","Mp":"14","p":{"1":{"n":5},"2":{"n":4.5},"4":{"n":8},"5":{"n":6.5},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":5},"12":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":8,"g":1},"16":{"n":5.5}}},"c":89},{"i":5216,"n":"Bonnet","f":"Alexandre","p":"M","r":12,"s":{"g":"1","s":"76","n":"14","a":"5.46","d":"0.72","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Og":"1","Os":"76","On":"14","Oa":"5.46","Od":"0.72","Mp":"13","Ap":"1","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":7,"g":1},"4":{"n":6},"5":{"n":6},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5},"12":{"n":6},"16":{"n":5.5,"s":1},"17":{"n":5,"s":1}}},"c":89},{"i":5349,"n":"Meddah","f":"Daylam","p":"M","r":1,"s":{"n":0},"c":89},{"i":5350,"n":"Konate","f":"Ateef","p":"M","r":1,"s":{"n":0},"c":89},{"i":5351,"n":"Coulibaly","f":"Woyo","p":"D","r":5,"s":{"s":"52","n":"11","a":"4.73","d":"0.45","Os":"52","On":"11","Oa":"4.73","Od":"0.45","Dp":"11","p":{"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":3.5},"13":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":89},{"i":6185,"n":"Ben Mohamed","f":"Ayman","p":"D","r":10,"s":{"g":"1","s":"54","n":"11","a":"4.95","d":"0.94","Ss":"34","Sn":"7","Sa":"4.93","Sd":"0.86","Og":"1","Os":"54","On":"11","Oa":"4.95","Od":"0.94","Mp":"4","Dp":"1","Ap":"6","p":{"5":{"n":6,"g":1,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6,"s":1},"9":{"n":3.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":7},"16":{"n":4.5},"17":{"n":4.5}}},"c":89},{"i":6212,"n":"Ersoy","f":"Ertugrul","p":"D","r":11,"s":{"s":"50","n":"10","a":"5.05","d":"1.31","Ss":"33","Sn":"6","Sa":"5.58","Sd":"1.34","Os":"50","On":"10","Oa":"5.05","Od":"1.31","Dp":"10","p":{"7":{"n":5.5},"8":{"n":4},"9":{"n":4},"10":{"n":3.5},"12":{"n":5.5},"13":{"n":6},"14":{"n":3},"15":{"n":7.5},"16":{"n":5.5},"17":{"n":6}}},"c":89},{"i":6233,"n":"Meras","f":"Umut","p":"D","r":14,"s":{"s":"53","n":"10","a":"5.35","d":"0.67","Ss":"38","Sn":"7","Sa":"5.5","Sd":"0.76","Os":"53","On":"10","Oa":"5.35","Od":"0.67","Mp":"1","Dp":"9","p":{"7":{"n":5},"8":{"n":5},"9":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":5},"14":{"n":4.5},"15":{"n":7},"16":{"n":5.5},"17":{"n":5.5}}},"c":89},{"i":350,"n":"Martin","f":"Marvin","p":"M","r":7,"s":{"s":"23","n":"5","a":"4.6","d":"0.49","Os":"47","On":"10","Oa":"4.7","Od":"0.4","Mp":"8","Ap":"2","p":{"9":{"n":4},"10":{"n":4},"11":{"n":5},"15":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":90},{"i":1211,"n":"Junior Tallo","f":"","p":"A","r":7,"s":{"s":"25","n":"6","a":"4.25","d":"0.48","Os":"25","On":"6","Oa":"4.25","Od":"0.48","Ap":"6","p":{"4":{"n":5},"7":{"n":4.5,"s":1},"8":{"n":4,"s":1},"9":{"n":3.5},"12":{"n":4.5},"14":{"n":4}}},"c":90},{"i":1220,"n":"Gonzalez","f":"Oumar","p":"D","r":10,"s":{"s":"58","n":"12","a":"4.88","d":"1.19","Os":"58","On":"12","Oa":"4.88","Od":"1.19","Dp":"12","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5},"4":{"n":4},"5":{"n":5},"6":{"n":6},"7":{"n":3},"8":{"n":3},"9":{"n":4.5},"12":{"n":4.5},"15":{"n":6.5},"16":{"n":4.5}}},"c":90},{"i":1551,"n":"Le Roy","f":"Killian","p":"G","r":1,"s":{"n":0},"c":90},{"i":3774,"n":"Mamilonne","f":"Yannick","p":"A","r":6,"s":{"s":"28","n":"7","a":"4.07","d":"0.49","Os":"28","On":"7","Oa":"4.07","Od":"0.49","Ap":"7","p":{"6":{"n":4,"s":1},"7":{"n":4.5},"8":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"11":{"n":4.5},"12":{"n":4}}},"c":90},{"i":4901,"n":"Sylas Edjouma","f":"Malcom","p":"M","r":3,"s":{"s":"39","n":"9","a":"4.39","d":"0.61","Os":"39","On":"9","Oa":"4.39","Od":"0.61","Mp":"9","p":{"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":3.5},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4,"s":1},"10":{"n":4,"s":1},"12":{"n":3.5}}},"c":90},{"i":4909,"n":"Doucoure","f":"Boubacari","p":"D","r":1,"s":{"n":0},"c":90},{"i":4910,"n":"Delos","f":"David","p":"D","r":8,"s":{"n":0},"c":90},{"i":4935,"n":"Tabue","f":"Kevin","p":"A","r":2,"s":{"n":0},"c":90},{"i":4936,"n":"Seck","f":"Mafall","p":"D","r":1,"s":{"n":0},"c":90},{"i":4975,"n":"Pinoteau","f":"Xavier","p":"G","r":7,"s":{"n":0},"c":90},{"i":4980,"n":"Guezoui","f":"Medhy","p":"A","r":10,"s":{"g":"1","s":"68","n":"16","a":"4.28","d":"0.85","Ss":"19","Sn":"5","Sa":"3.8","Sd":"0.81","Og":"1","Os":"68","On":"16","Oa":"4.28","Od":"0.85","Ap":"16","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":4.5},"4":{"n":4},"5":{"n":4.5},"6":{"n":6},"7":{"n":6,"g":1},"8":{"n":4},"9":{"n":4.5,"s":1},"10":{"n":3.5},"11":{"n":4},"13":{"n":4,"s":1},"14":{"n":3.5},"15":{"n":5},"16":{"n":4},"17":{"n":2.5}}},"c":90},{"i":4984,"n":"El Hriti","f":"Aniss","p":"D","r":12,"s":{"g":"1","s":"61","n":"13","a":"4.73","d":"1.23","Og":"1","Os":"61","On":"13","Oa":"4.73","Od":"1.23","Mp":"3","Dp":"10","p":{"2":{"n":5.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":3},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":3},"15":{"n":8,"g":1},"16":{"n":3.5}}},"c":90},{"i":5011,"n":"H\u00e9lo\u00efse","f":"Laurent","p":"M","r":1,"s":{"n":0},"c":90},{"i":5026,"n":"Thomas Henry","f":"","p":"A","r":1,"s":{"n":0},"c":90},{"i":5060,"n":"Jaques","f":"Thibault","p":"D","r":17,"s":{"g":"2","s":"86","n":"17","a":"5.09","d":"1.42","Sg":"2","Ss":"86","Sn":"17","Sa":"5.09","Sd":"1.42","Og":"2","Os":"86","On":"17","Oa":"5.09","Od":"1.42","Dp":"17","p":{"1":{"n":7.5,"g":1},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":5.5},"6":{"n":8,"g":1},"7":{"n":3},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":4},"13":{"n":2.5},"14":{"n":5.5},"15":{"n":6.5},"16":{"n":4.5},"17":{"n":3.5}}},"c":90},{"i":5090,"n":"David","f":"Florian","p":"M","r":15,"s":{"g":"3","s":"84","n":"17","a":"4.97","d":"1.27","Sg":"3","Ss":"84","Sn":"17","Sa":"4.97","Sd":"1.27","Og":"3","Os":"84","On":"17","Oa":"4.97","Od":"1.27","Mp":"4","Ap":"13","p":{"1":{"n":6.5},"2":{"n":7,"g":1},"3":{"n":5},"4":{"n":4},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":3},"8":{"n":4},"9":{"n":4.5},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":5,"s":1},"15":{"n":7.5,"g":1},"16":{"n":5.5},"17":{"n":4,"s":1}}},"c":90},{"i":5093,"n":"Santelli","f":"Benjamin","p":"M","r":8,"s":{"g":"2","s":"52","n":"10","a":"5.2","d":"0.71","Og":"2","Os":"52","On":"10","Oa":"5.2","Od":"0.71","Mp":"4","Ap":"6","p":{"1":{"n":5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":7,"g":1},"10":{"n":4.5,"s":1},"11":{"n":4.5},"13":{"n":6,"g":1},"14":{"n":5}}},"c":90},{"i":5106,"n":"Derrien","f":"Maxence","p":"D","r":16,"s":{"s":"78","n":"16","a":"4.91","d":"1.18","Ss":"38","Sn":"8","Sa":"4.75","Sd":"1.22","Os":"78","On":"16","Oa":"4.91","Od":"1.18","Mp":"6","Dp":"10","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6},"5":{"n":6},"6":{"n":6.5},"7":{"n":4},"8":{"n":3},"10":{"n":5},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":4,"s":1},"14":{"n":4},"15":{"n":7.5},"16":{"n":5},"17":{"n":3}}},"c":90},{"i":5110,"n":"Beaulieu","f":"Jonathan","p":"M","r":10,"s":{"s":"62","n":"12","a":"5.21","d":"1.14","Os":"62","On":"12","Oa":"5.21","Od":"1.14","Mp":"12","p":{"3":{"n":4.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":6.5},"7":{"n":4},"8":{"n":4},"9":{"n":5.5},"10":{"n":5.5},"13":{"n":3.5},"14":{"n":5,"s":1},"15":{"n":7.5},"16":{"n":5.5}}},"c":90},{"i":5112,"n":"Dequaire","f":"Guillaume","p":"D","r":9,"s":{"s":"37","n":"8","a":"4.69","d":"0.93","Ss":"17","Sn":"4","Sa":"4.25","Sd":"0.9","Os":"37","On":"8","Oa":"4.69","Od":"0.93","Dp":"8","p":{"1":{"n":6},"2":{"n":5},"9":{"n":5.5},"10":{"n":4},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":4},"17":{"n":3}}},"c":90},{"i":5113,"n":"Fofana","f":"Diarank\u00e9","p":"D","r":9,"s":{"s":"24","n":"6","a":"4","d":"1","Ss":"4","Sn":"1","Sa":"4","Os":"24","On":"6","Oa":"4","Od":"1","Dp":"6","p":{"4":{"n":5,"s":1},"10":{"n":4},"11":{"n":5},"12":{"n":4},"13":{"n":2},"17":{"n":4}}},"c":90},{"i":5117,"n":"Hilaire","f":"Max","p":"M","r":1,"s":{"n":0},"c":90},{"i":5118,"n":"Padovani","f":"Romain","p":"M","r":8,"s":{"s":"28","n":"6","a":"4.67","d":"0.69","Ss":"3","Sn":"1","Sa":"3.5","Os":"28","On":"6","Oa":"4.67","Od":"0.69","Mp":"4","Dp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"11":{"n":5.5},"13":{"n":4},"14":{"n":5},"17":{"n":3.5}}},"c":90},{"i":5123,"n":"Eickmayer","f":"Joachim","p":"M","r":14,"s":{"g":"1","s":"78","n":"16","a":"4.88","d":"0.94","Sg":"1","Ss":"34","Sn":"7","Sa":"4.93","Sd":"1.12","Og":"1","Os":"78","On":"16","Oa":"4.88","Od":"0.94","Mp":"16","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":6},"7":{"n":3.5},"8":{"n":3.5},"9":{"n":5},"11":{"n":6},"12":{"n":4.5},"13":{"n":3.5},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":4.5},"17":{"n":4}}},"c":90},{"i":5125,"n":"Soubervie","f":"Anthony","p":"D","r":11,"s":{"g":"1","s":"76","n":"16","a":"4.78","d":"1.36","Sg":"1","Ss":"28","Sn":"6","Sa":"4.67","Sd":"1.7","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"1.36","Mp":"9","Dp":"7","p":{"1":{"n":6},"2":{"n":6,"s":1},"3":{"n":5},"4":{"n":5.5},"5":{"n":5},"6":{"n":6},"7":{"n":3},"8":{"n":3},"9":{"n":4},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":3},"14":{"n":5,"s":1},"15":{"n":8,"g":1},"16":{"n":4},"17":{"n":3}}},"c":90},{"i":5128,"n":"Lefaix","f":"Kevin","p":"M","r":1,"s":{"n":0},"c":90},{"i":5134,"n":"Latour","f":"Micka\u00ebl","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"13":{"n":4.5,"s":1}}},"c":90},{"i":5148,"n":"Heinry","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":90},{"i":5156,"n":"Popelard","f":"John","p":"D","r":8,"s":{"s":"32","n":"7","a":"4.57","d":"0.49","Ss":"32","Sn":"7","Sa":"4.57","Sd":"0.49","Os":"32","On":"7","Oa":"4.57","Od":"0.49","Mp":"6","Ap":"1","p":{"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":3.5},"14":{"n":5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":4.5}}},"c":90},{"i":5157,"n":"Doucour\u00e9","f":"Lassana","p":"M","r":3,"s":{"s":"35","n":"8","a":"4.44","d":"0.58","Os":"35","On":"8","Oa":"4.44","Od":"0.58","Mp":"6","Ap":"2","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":3.5}}},"c":90},{"i":5158,"n":"Pinteaux","f":"Florian","p":"D","r":1,"s":{"n":0},"c":90},{"i":5191,"n":"Atrous","f":"Samuel","p":"G","r":1,"s":{"n":0},"c":90},{"i":5211,"n":"Pontdem\u00e9","f":"Simon","p":"G","r":16,"s":{"s":"89","n":"17","a":"5.26","d":"1.15","Ss":"89","Sn":"17","Sa":"5.26","Sd":"1.15","Os":"89","On":"17","Oa":"5.26","Od":"1.15","Gp":"17","p":{"1":{"n":5.5},"2":{"n":6.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":6},"6":{"n":6},"7":{"n":3},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":2.5},"14":{"n":4.5},"15":{"n":6},"16":{"n":5.5},"17":{"n":3.5}}},"c":90},{"i":5217,"n":"Loriot","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":90},{"i":5355,"n":"Fleurier","f":"Romain","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"16":{"n":4.5,"s":1}}},"c":90},{"i":5356,"n":"Geran","f":"Marvin","p":"M","r":1,"s":{"n":0},"c":90},{"i":5357,"n":"Delos","f":"Shaquil","p":"D","r":3,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"17":{"n":4.5,"s":1}}},"c":90},{"i":5374,"n":"Flochon","f":"S\u00e9bastien","p":"M","r":9,"s":{"s":"22","n":"5","a":"4.5","d":"0.45","Ss":"4","Sn":"1","Sa":"4","Os":"22","On":"5","Oa":"4.5","Od":"0.45","Mp":"5","p":{"11":{"n":5},"12":{"n":4},"14":{"n":5},"15":{"n":4.5,"s":1},"17":{"n":4}}},"c":90},{"i":5377,"n":"Crillon","f":"Judica\u00ebl","p":"D","r":4,"s":{"s":"8","n":"2","a":"4","d":"1","Ss":"5","Sn":"1","Sa":"5","Os":"8","On":"2","Oa":"4","Od":"1","Mp":"1","Dp":"1","p":{"8":{"n":3},"17":{"n":5,"s":1}}},"c":90},{"i":63,"n":"Prior","f":"J\u00e9r\u00f4me","p":"G","r":23,"s":{"s":"102","n":"17","a":"6","d":"1.07","Ss":"102","Sn":"17","Sa":"6","Sd":"1.07","Os":"102","On":"17","Oa":"6","Od":"1.07","Gp":"17","p":{"1":{"n":6},"2":{"n":6.5},"3":{"n":7},"4":{"n":7},"5":{"n":7},"6":{"n":7},"7":{"n":6},"8":{"n":4.5},"9":{"n":4},"10":{"n":4},"11":{"n":5.5},"12":{"n":7},"13":{"n":6},"14":{"n":6.5},"15":{"n":6.5},"16":{"n":7},"17":{"n":4.5}}},"c":91},{"i":389,"n":"Cuffaut","f":"Joffrey","p":"D","r":9,"s":{"g":"1","s":"62","n":"12","a":"5.17","d":"0.66","Sg":"1","Ss":"27","Sn":"5","Sa":"5.5","Sd":"0.71","Og":"1","Os":"62","On":"12","Oa":"5.17","Od":"0.66","Mp":"3","Dp":"9","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5,"s":1},"7":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":4},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":6.5},"16":{"n":6},"17":{"n":5.5,"g":1}}},"c":91},{"i":397,"n":"Hein","f":"Gauthier","p":"M","r":10,"s":{"g":"1","s":"81","n":"16","a":"5.06","d":"0.66","Ss":"69","Sn":"14","Sa":"4.96","Sd":"0.58","Og":"1","Os":"81","On":"16","Oa":"5.06","Od":"0.66","Mp":"3","Ap":"13","p":{"1":{"n":5},"2":{"n":6.5,"g":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":6.5},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":4.5}}},"c":91},{"i":566,"n":"Romil","f":"Jorris","p":"A","r":7,"s":{"g":"1","s":"56","n":"12","a":"4.67","d":"0.72","Og":"1","Os":"56","On":"12","Oa":"4.67","Od":"0.72","Mp":"1","Ap":"11","p":{"1":{"n":3.5},"3":{"n":6.5,"g":1,"s":1},"5":{"n":5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5},"10":{"n":5,"s":1},"11":{"n":5},"12":{"n":4},"13":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1}}},"c":91},{"i":1169,"n":"Guillaume","f":"Baptiste","p":"A","r":10,"s":{"g":"1","s":"68","n":"14","a":"4.89","d":"0.78","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"120","On":"26","Oa":"4.62","Od":"0.94","Ap":"26","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6.5,"g":1},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"8":{"n":4.5},"9":{"n":4},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":4.5},"17":{"n":5,"s":1}}},"c":91},{"i":3769,"n":"Masson","f":"Julien","p":"M","r":8,"s":{"s":"59","n":"12","a":"4.96","d":"0.78","Os":"59","On":"12","Oa":"4.96","Od":"0.78","Mp":"12","p":{"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":6.5},"7":{"n":5},"8":{"n":5},"9":{"n":5.5},"10":{"n":3.5},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":3.5},"16":{"n":5.5}}},"c":91},{"i":4874,"n":"Linguet","f":"Allan","p":"M","r":1,"s":{"n":0},"c":91},{"i":4880,"n":"Cabral","f":"Kevin","p":"A","r":7,"s":{"s":"50","n":"11","a":"4.55","d":"0.72","Ss":"4","Sn":"1","Sa":"4","Os":"50","On":"11","Oa":"4.55","Od":"0.72","Mp":"2","Ap":"9","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"s":1},"6":{"n":4.5,"s":1},"8":{"n":5.5},"9":{"n":4.5,"s":1},"10":{"n":3.5},"12":{"n":3.5},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"17":{"n":4,"s":1}}},"c":91},{"i":4890,"n":"Arib","f":"Gaetan","p":"D","r":1,"s":{"n":0},"c":91},{"i":4918,"n":"Siby","f":"Maham\u00e9","p":"M","r":1,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"2","p":{"1":{"n":5.5},"2":{"n":5,"s":1}}},"c":91},{"i":4924,"n":"Brassier","f":"Lilian","p":"D","r":10,"s":{"s":"71","n":"15","a":"4.73","d":"1.01","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.75","Os":"71","On":"15","Oa":"4.73","Od":"1.01","Mp":"3","Dp":"12","p":{"2":{"n":4.5},"3":{"n":4.5},"4":{"n":7},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5.5,"s":1},"9":{"n":3},"10":{"n":3},"11":{"n":5},"12":{"n":4},"14":{"n":5},"15":{"n":5.5},"16":{"n":5},"17":{"n":3.5}}},"c":91},{"i":4969,"n":"Foulon","f":"Gwenn","p":"A","r":1,"s":{"n":0},"c":91},{"i":4985,"n":"Ch\u00e9rif Quenum","f":"","p":"D","r":1,"s":{"n":0},"c":91},{"i":4996,"n":"Ambri","f":"Steve","p":"A","r":7,"s":{"s":"57","n":"12","a":"4.79","d":"0.56","Ss":"22","Sn":"5","Sa":"4.5","Sd":"0.32","Os":"57","On":"12","Oa":"4.79","Od":"0.56","Mp":"7","Dp":"2","Ap":"3","p":{"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"9":{"n":4.5},"10":{"n":5},"11":{"n":4},"13":{"n":4.5},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":91},{"i":5020,"n":"Kocik","f":"Nicolas","p":"G","r":7,"s":{"n":0},"c":91},{"i":5048,"n":"Dabo","f":"Elhadj","p":"M","r":1,"s":{"n":0},"c":91},{"i":5080,"n":"Konate","f":"Hillel","p":"G","r":1,"s":{"n":0},"c":91},{"i":5084,"n":"Spano","f":"Maxime","p":"D","r":19,"s":{"s":"93","n":"17","a":"5.47","d":"0.65","Ss":"93","Sn":"17","Sa":"5.47","Sd":"0.65","Os":"93","On":"17","Oa":"5.47","Od":"0.65","Dp":"17","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":6},"8":{"n":5},"9":{"n":4.5},"10":{"n":4},"11":{"n":5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":7},"17":{"n":5.5}}},"c":91},{"i":5111,"n":"Dos Santos","f":"Laurent","p":"M","r":17,"s":{"g":"1","s":"83","n":"16","a":"5.19","d":"0.85","Sg":"1","Ss":"36","Sn":"7","Sa":"5.21","Sd":"0.52","Og":"1","Os":"83","On":"16","Oa":"5.19","Od":"0.85","Mp":"9","Dp":"7","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":7},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":6.5,"g":1},"17":{"n":5}}},"c":91},{"i":5143,"n":"Ntim","f":"Emmanuel","p":"D","r":12,"s":{"s":"76","n":"14","a":"5.43","d":"0.62","Ss":"23","Sn":"4","Sa":"5.75","Sd":"0.75","Os":"76","On":"14","Oa":"5.43","Od":"0.62","Dp":"14","p":{"1":{"n":5.5},"3":{"n":5.5,"s":1},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"8":{"n":5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5},"14":{"n":6},"15":{"n":6},"16":{"n":6.5},"17":{"n":4.5}}},"c":91},{"i":5161,"n":"Aloe","f":"Baptiste","p":"D","r":1,"s":{"n":0},"c":91},{"i":5172,"n":"Bong","f":"Fr\u00e9d\u00e9ric","p":"D","r":3,"s":{"s":"22","n":"5","a":"4.4","d":"0.73","Os":"22","On":"5","Oa":"4.4","Od":"0.73","Dp":"5","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5},"8":{"n":3},"13":{"n":5}}},"c":91},{"i":5183,"n":"Chergui","f":"Malek","p":"A","r":10,"s":{"g":"1","s":"87","n":"17","a":"5.12","d":"0.83","Sg":"1","Ss":"87","Sn":"17","Sa":"5.12","Sd":"0.83","Og":"1","Os":"87","On":"17","Oa":"5.12","Od":"0.83","Mp":"4","Ap":"13","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7},"4":{"n":5.5},"5":{"n":6,"g":1},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":5,"s":1},"9":{"n":4.5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6},"16":{"n":6.5},"17":{"n":4.5}}},"c":91},{"i":5190,"n":"Fedele","f":"Matteo","p":"M","r":6,"s":{"s":"50","n":"10","a":"5","d":"0.55","Os":"50","On":"10","Oa":"5","Od":"0.55","Mp":"10","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4},"7":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":6},"12":{"n":5},"13":{"n":5,"s":1}}},"c":91},{"i":5194,"n":"Perquis","f":"Damien","p":"G","r":7,"s":{"n":0},"c":91},{"i":5202,"n":"Chevalier","f":"Teddy","p":"A","r":17,"s":{"g":"5","s":"84","n":"17","a":"4.97","d":"1.08","Sg":"5","Ss":"84","Sn":"17","Sa":"4.97","Sd":"1.08","Og":"5","Os":"84","On":"17","Oa":"4.97","Od":"1.08","Mp":"2","Ap":"15","p":{"1":{"n":4,"s":1},"2":{"n":3.5},"3":{"n":6,"g":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":4.5},"8":{"n":7,"g":1,"s":1},"9":{"n":4.5},"10":{"n":4},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":4.5},"14":{"n":5},"15":{"n":6,"g":1},"16":{"n":6.5,"g":1},"17":{"n":4}}},"c":91},{"i":5348,"n":"Ousmane","f":"Abdoulaye","p":"M","r":1,"s":{"n":0},"c":91},{"i":5373,"n":"D'Almeida","f":"Sessi","p":"M","r":13,"s":{"s":"79","n":"15","a":"5.3","d":"0.87","Ss":"51","Sn":"10","Sa":"5.1","Sd":"0.86","Os":"79","On":"15","Oa":"5.3","Od":"0.87","Mp":"15","p":{"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":7},"8":{"n":5},"9":{"n":3.5},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":4},"14":{"n":6},"15":{"n":6},"16":{"n":6.5},"17":{"n":5}}},"c":91},{"i":6325,"n":"Boutoutaou","f":"Aymen","p":"M","r":1,"s":{"n":0},"c":91},{"i":246,"n":"Dup\u00e9","f":"Maxime","p":"G","r":17,"s":{"s":"87","n":"16","a":"5.44","d":"1.13","Ss":"87","Sn":"16","Sa":"5.44","Sd":"1.13","Os":"133","On":"25","Oa":"5.32","Od":"1.03","Gp":"25","p":{"2":{"n":5},"3":{"n":7},"4":{"n":6},"5":{"n":5},"6":{"n":7},"7":{"n":4},"8":{"n":8},"9":{"n":4},"10":{"n":4},"11":{"n":5},"12":{"n":5},"13":{"n":4.5},"14":{"n":6},"15":{"n":5},"16":{"n":6},"17":{"n":5.5}}},"c":92},{"i":2176,"n":"Mario Gonz\u00e1lez","f":"","p":"A","r":6,"s":{"s":"43","n":"9","a":"4.78","d":"0.89","Os":"43","On":"9","Oa":"4.78","Od":"0.89","Mp":"5","Ap":"4","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6},"5":{"n":6.5},"6":{"n":5},"11":{"n":4,"s":1},"12":{"n":5},"13":{"n":4},"14":{"n":4,"s":1}}},"c":92},{"i":3519,"n":"Cissokho","f":"Till","p":"D","r":1,"s":{"s":"8","n":"2","a":"4.25","d":"1.25","Os":"13","On":"3","Oa":"4.33","Od":"1.03","Dp":"3","p":{"10":{"n":3},"11":{"n":5.5}}},"c":92},{"i":3521,"n":"Trichard","f":"Driss","p":"D","r":5,"s":{"ao":"1","s":"3","n":"1","a":"3","Sao":"1","Ss":"3","Sn":"1","Sa":"3","Oao":"1","Os":"3","On":"1","Oa":"3","Dp":"1","p":{"17":{"n":3,"a":1}}},"c":92},{"i":4832,"n":"Anoff","f":"Blankson","p":"M","r":1,"s":{"n":0},"c":92},{"i":4833,"n":"Abdul Samed","f":"Salis","p":"M","r":5,"s":{"s":"20","n":"4","a":"5","d":"0.35","Os":"20","On":"4","Oa":"5","Od":"0.35","Mp":"4","p":{"6":{"n":5.5,"s":1},"8":{"n":5,"s":1},"10":{"n":4.5,"s":1},"15":{"n":5,"s":1}}},"c":92},{"i":4856,"n":"Diako","f":"Lassana","p":"A","r":1,"s":{"n":0},"c":92},{"i":4861,"n":"Teixeira","f":"Bryan Silva","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"13":{"n":4.5,"s":1}}},"c":92},{"i":4869,"n":"Allevinah","f":"Jim","p":"A","r":8,"s":{"g":"1","s":"58","n":"12","a":"4.88","d":"1.04","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.25","Og":"1","Os":"58","On":"12","Oa":"4.88","Od":"1.04","Mp":"5","Ap":"7","p":{"1":{"n":6,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5},"7":{"n":5,"s":1},"8":{"n":7,"g":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":2.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5},"17":{"n":5,"s":1}}},"c":92},{"i":4904,"n":"Djoco","f":"Ouparine","p":"G","r":1,"s":{"n":0},"c":92},{"i":4905,"n":"Magnin","f":"Yohann","p":"M","r":11,"s":{"s":"53","n":"10","a":"5.3","d":"0.51","Ss":"23","Sn":"4","Sa":"5.88","Sd":"0.22","Os":"53","On":"10","Oa":"5.3","Od":"0.51","Mp":"10","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"6":{"n":4.5},"9":{"n":5,"s":1},"12":{"n":5,"s":1},"14":{"n":6},"15":{"n":6},"16":{"n":6},"17":{"n":5.5}}},"c":92},{"i":4957,"n":"Gomis","f":"David","p":"A","r":11,"s":{"g":"1","s":"71","n":"13","a":"5.46","d":"0.75","Ss":"58","Sn":"11","Sa":"5.32","Sd":"0.65","Og":"1","Os":"71","On":"13","Oa":"5.46","Od":"0.75","Mp":"13","p":{"1":{"n":5.5},"2":{"n":7,"g":1},"7":{"n":5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":6.5},"13":{"n":6},"14":{"n":6},"15":{"n":5.5},"16":{"n":5.5},"17":{"n":4.5}}},"c":92},{"i":4964,"n":"Rajot","f":"Lorenzo","p":"M","r":6,"s":{"s":"37","n":"8","a":"4.69","d":"0.43","Ss":"5","Sn":"1","Sa":"5","Os":"37","On":"8","Oa":"4.69","Od":"0.43","Mp":"8","p":{"4":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5},"9":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":4},"13":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":92},{"i":5041,"n":"N'Simba","f":"Vital","p":"D","r":19,"s":{"s":"84","n":"16","a":"5.25","d":"1.08","Os":"84","On":"16","Oa":"5.25","Od":"1.08","Dp":"16","p":{"1":{"n":5},"2":{"n":6},"3":{"n":6.5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":8},"9":{"n":4},"10":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":6}}},"c":92},{"i":5066,"n":"Albert","f":"Josue","p":"D","r":7,"s":{"s":"21","n":"4","a":"5.25","d":"0.56","Ss":"11","Sn":"2","Sa":"5.75","Sd":"0.25","Os":"21","On":"4","Oa":"5.25","Od":"0.56","Dp":"4","p":{"8":{"n":5,"s":1},"9":{"n":4.5},"16":{"n":5.5,"s":1},"17":{"n":6}}},"c":92},{"i":5085,"n":"Zedadka","f":"Akim","p":"D","r":11,"s":{"s":"51","n":"11","a":"4.64","d":"0.8","Ss":"47","Sn":"10","Sa":"4.7","Sd":"0.81","Os":"51","On":"11","Oa":"4.64","Od":"0.8","Dp":"11","p":{"4":{"n":4,"s":1},"8":{"n":6},"9":{"n":4.5},"10":{"n":3},"11":{"n":5},"12":{"n":5},"13":{"n":3.5},"14":{"n":5},"15":{"n":5},"16":{"n":5},"17":{"n":5}}},"c":92},{"i":5100,"n":"Grbic","f":"Adrian","p":"A","r":31,"s":{"g":"10","s":"91","n":"16","a":"5.69","d":"1.1","Sg":"2","Ss":"23","Sn":"4","Sa":"5.88","Sd":"0.54","Og":"10","Os":"91","On":"16","Oa":"5.69","Od":"1.1","Ap":"16","p":{"1":{"n":8,"g":2},"2":{"n":5},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":5.5,"g":1},"6":{"n":4},"7":{"n":4.5},"8":{"n":7,"g":1},"9":{"n":6,"g":1},"10":{"n":4.5},"11":{"n":4},"12":{"n":7,"g":1},"14":{"n":5},"15":{"n":6,"g":1},"16":{"n":6},"17":{"n":6.5,"g":1}}},"c":92},{"i":5103,"n":"Hountondji","f":"C\u00e9dric","p":"D","r":12,"s":{"s":"72","n":"13","a":"5.58","d":"0.67","Os":"72","On":"13","Oa":"5.58","Od":"0.67","Dp":"13","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":6.5},"12":{"n":6},"13":{"n":5},"14":{"n":7},"15":{"n":5.5},"16":{"n":5}}},"c":92},{"i":5122,"n":"Iglesias","f":"Jonathan","p":"M","r":22,"s":{"g":"1","s":"94","n":"17","a":"5.53","d":"0.85","Sg":"1","Ss":"94","Sn":"17","Sa":"5.53","Sd":"0.85","Og":"1","Os":"94","On":"17","Oa":"5.53","Od":"0.85","Mp":"17","p":{"1":{"n":6.5},"2":{"n":6.5},"3":{"n":5.5},"4":{"n":7},"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":6},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5},"13":{"n":4.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":7,"g":1},"17":{"n":5}}},"c":92},{"i":5129,"n":"Berthomier","f":"Jason","p":"M","r":15,"s":{"g":"2","s":"70","n":"13","a":"5.42","d":"0.98","Og":"2","Os":"70","On":"13","Oa":"5.42","Od":"0.98","Mp":"13","p":{"1":{"n":7.5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":6},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":6,"g":1},"10":{"n":3.5},"12":{"n":7,"g":1},"13":{"n":5},"14":{"n":5}}},"c":92},{"i":5140,"n":"Phojo","f":"Jerome","p":"D","r":10,"s":{"s":"38","n":"7","a":"5.43","d":"0.94","Os":"38","On":"7","Oa":"5.43","Od":"0.94","Dp":"7","p":{"1":{"n":7},"2":{"n":5},"3":{"n":5},"4":{"n":6.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":4}}},"c":92},{"i":5154,"n":"N'Diaye","f":"Alassane","p":"A","r":11,"s":{"g":"1","s":"74","n":"14","a":"5.29","d":"0.62","Ss":"35","Sn":"7","Sa":"5.07","Sd":"0.42","Og":"1","Os":"74","On":"14","Oa":"5.29","Od":"0.62","Mp":"14","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"11":{"n":4.5},"12":{"n":5,"s":1},"13":{"n":5.5,"s":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":5.5}}},"c":92},{"i":5168,"n":"Jeannin","f":"Mehdi","p":"G","r":7,"s":{"s":"7","n":"1","a":"7","Os":"7","On":"1","Oa":"7","Gp":"1","p":{"1":{"n":7}}},"c":92},{"i":5180,"n":"Ogier","f":"Florent","p":"D","r":21,"s":{"g":"2","s":"86","n":"17","a":"5.06","d":"1.19","Sg":"2","Ss":"86","Sn":"17","Sa":"5.06","Sd":"1.19","Og":"2","Os":"86","On":"17","Oa":"5.06","Od":"1.19","Dp":"17","p":{"1":{"n":6},"2":{"n":7,"g":1},"3":{"n":6},"4":{"n":5.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":4},"8":{"n":6},"9":{"n":4},"10":{"n":3},"11":{"n":4},"12":{"n":5},"13":{"n":3},"14":{"n":7,"g":1},"15":{"n":4.5},"16":{"n":6},"17":{"n":5.5}}},"c":92},{"i":5198,"n":"Gastien","f":"Johan","p":"M","r":16,"s":{"s":"75","n":"15","a":"5.03","d":"0.99","Ss":"17","Sn":"3","Sa":"5.67","Sd":"0.62","Os":"75","On":"15","Oa":"5.03","Od":"0.99","Mp":"15","p":{"1":{"n":6},"2":{"n":6},"3":{"n":3.5},"4":{"n":6},"5":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":5.5},"10":{"n":3.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":3},"15":{"n":5},"16":{"n":6.5},"17":{"n":5.5}}},"c":92},{"i":5981,"n":"Donisa","f":"Julio","p":"A","r":5,"s":{"s":"65","n":"15","a":"4.37","d":"0.34","Ss":"65","Sn":"15","Sa":"4.37","Sd":"0.34","Os":"65","On":"15","Oa":"4.37","Od":"0.34","Mp":"1","Ap":"14","p":{"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":3.5},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":92},{"i":6230,"n":"Jaby","f":"Nael","p":"M","r":1,"s":{"n":0},"c":92},{"i":6234,"n":"Baiye","f":"Brandon","p":"M","r":1,"s":{"n":0},"c":92},{"i":462,"n":"Alhadhur","f":"Chaker","p":"D","r":14,"s":{"s":"71","n":"14","a":"5.11","d":"0.74","Ss":"54","Sn":"10","Sa":"5.45","Sd":"0.47","Os":"71","On":"14","Oa":"5.11","Od":"0.74","Dp":"14","p":{"1":{"n":4},"2":{"n":5},"3":{"n":4.5},"4":{"n":3.5},"8":{"n":5},"9":{"n":6},"10":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":5,"s":1},"16":{"n":6},"17":{"n":5}}},"c":93},{"i":538,"n":"Vanbaleghem","f":"Valentin","p":"D","r":11,"s":{"s":"64","n":"13","a":"4.96","d":"0.6","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.56","Os":"64","On":"13","Oa":"4.96","Od":"0.6","Mp":"13","p":{"2":{"n":5},"3":{"n":4},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":4},"8":{"n":4.5},"9":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":5}}},"c":93},{"i":1432,"n":"Cordoval","f":"J\u00e9r\u00e9my","p":"D","r":10,"s":{"s":"45","n":"10","a":"4.55","d":"0.52","Os":"45","On":"10","Oa":"4.55","Od":"0.52","Dp":"6","Ap":"4","p":{"1":{"n":5},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":3.5},"11":{"n":4},"15":{"n":4.5},"16":{"n":4}}},"c":93},{"i":2631,"n":"Marega","f":"Issa","p":"D","r":5,"s":{"s":"33","n":"7","a":"4.79","d":"0.8","Os":"33","On":"7","Oa":"4.79","Od":"0.8","Mp":"5","Dp":"2","p":{"1":{"n":3.5},"2":{"n":4.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":4,"s":1},"7":{"n":5},"9":{"n":6}}},"c":93},{"i":3518,"n":"Ghezali","f":"Lamine","p":"A","r":4,"s":{"s":"41","n":"9","a":"4.56","d":"0.64","Os":"62","On":"14","Oa":"4.43","Od":"0.56","Ap":"14","p":{"1":{"n":3.5,"s":1},"2":{"n":4.5},"3":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":6,"s":1},"10":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1}}},"c":93},{"i":3804,"n":"Fabri","f":"Julien","p":"G","r":14,"s":{"s":"30","n":"5","a":"6","d":"0.71","Ss":"30","Sn":"5","Sa":"6","Sd":"0.71","Os":"30","On":"5","Oa":"6","Od":"0.71","Gp":"5","p":{"13":{"n":6.5},"14":{"n":7},"15":{"n":5.5},"16":{"n":6},"17":{"n":5}}},"c":93},{"i":4849,"n":"Keny","f":"Philippe Paulin","p":"A","r":9,"s":{"s":"34","n":"7","a":"4.86","d":"0.79","Ss":"34","Sn":"7","Sa":"4.86","Sd":"0.79","Os":"34","On":"7","Oa":"4.86","Od":"0.79","Ap":"7","p":{"11":{"n":5},"12":{"n":5.5},"13":{"n":5},"14":{"n":6},"15":{"n":3.5},"16":{"n":5,"s":1},"17":{"n":4}}},"c":93},{"i":4863,"n":"Adinany","f":"Bryan","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"5":{"n":4.5,"s":1}}},"c":93},{"i":4864,"n":"Leroy","f":"Leo","p":"M","r":7,"s":{"g":"1","s":"41","n":"9","a":"4.56","d":"0.96","Sg":"1","Ss":"25","Sn":"5","Sa":"5","Sd":"1.05","Og":"1","Os":"41","On":"9","Oa":"4.56","Od":"0.96","Mp":"8","Ap":"1","p":{"4":{"n":3.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":4},"13":{"n":4.5,"s":1},"14":{"n":5},"15":{"n":4},"16":{"n":4.5,"s":1},"17":{"n":7,"g":1,"s":1}}},"c":93},{"i":4881,"n":"Bedfian","f":"Wilfried","p":"G","r":7,"s":{"n":0},"c":93},{"i":4886,"n":"Soumare","f":"Moussa","p":"D","r":1,"s":{"n":0},"c":93},{"i":4908,"n":"Hassan","f":"Haissem","p":"A","r":4,"s":{"s":"41","n":"9","a":"4.61","d":"0.66","Os":"41","On":"9","Oa":"4.61","Od":"0.66","Mp":"3","Ap":"6","p":{"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4},"4":{"n":6},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":3.5},"10":{"n":4.5,"s":1}}},"c":93},{"i":4922,"n":"Tormin","f":"Guevin","p":"A","r":1,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Mp":"1","Ap":"1","p":{"1":{"n":3.5},"6":{"n":4.5,"s":1}}},"c":93},{"i":4972,"n":"Chevreuil","f":"Brian","p":"M","r":1,"s":{"n":0},"c":93},{"i":4987,"n":"Jung","f":"Andrew","p":"A","r":5,"s":{"s":"37","n":"9","a":"4.11","d":"0.39","Ss":"5","Sn":"1","Sa":"5","Os":"37","On":"9","Oa":"4.11","Od":"0.39","Ap":"9","p":{"2":{"n":4,"s":1},"3":{"n":4},"4":{"n":4},"5":{"n":4},"6":{"n":3.5},"7":{"n":4,"s":1},"10":{"n":4.5,"s":1},"13":{"n":4,"s":1},"17":{"n":5,"s":1}}},"c":93},{"i":4990,"n":"Operi","f":"Christopher","p":"M","r":11,"s":{"s":"63","n":"12","a":"5.25","d":"1.01","Ss":"63","Sn":"12","Sa":"5.25","Sd":"1.01","Os":"63","On":"12","Oa":"5.25","Od":"1.01","Dp":"12","p":{"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":6.5},"10":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":7},"14":{"n":6.5},"15":{"n":3},"16":{"n":5},"17":{"n":5}}},"c":93},{"i":5001,"n":"Sissako","f":"Abdoulaye","p":"M","r":8,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Mp":"3","p":{"2":{"n":5,"s":1},"3":{"n":4},"4":{"n":5,"s":1}}},"c":93},{"i":5024,"n":"Sangante","f":"Opa","p":"M","r":15,"s":{"s":"79","n":"15","a":"5.3","d":"0.73","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.24","Os":"79","On":"15","Oa":"5.3","Od":"0.73","Mp":"10","Dp":"5","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":6},"6":{"n":5},"7":{"n":6.5},"8":{"n":5.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6.5},"15":{"n":5,"s":1},"16":{"n":5.5},"17":{"n":5.5}}},"c":93},{"i":5045,"n":"Conde","f":"Sekou","p":"D","r":10,"s":{"s":"56","n":"12","a":"4.67","d":"0.87","Os":"56","On":"12","Oa":"4.67","Od":"0.87","Dp":"12","p":{"1":{"n":4},"2":{"n":6},"3":{"n":3.5},"7":{"n":4.5},"8":{"n":5.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":4},"13":{"n":5.5},"14":{"n":6},"15":{"n":3.5},"16":{"n":4}}},"c":93},{"i":5049,"n":"Fallou Niang","f":"","p":"M","r":1,"s":{"n":0},"c":93},{"i":5064,"n":"Fofana","f":"Nama","p":"D","r":1,"s":{"n":0},"c":93},{"i":5164,"n":"M'Bone","f":"Yannick","p":"M","r":14,"s":{"g":"2","s":"82","n":"16","a":"5.16","d":"1.09","Sg":"2","Ss":"79","Sn":"15","Sa":"5.3","Sd":"0.96","Og":"2","Os":"82","On":"16","Oa":"5.16","Od":"1.09","Dp":"16","p":{"1":{"n":3},"3":{"n":4},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":6},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":6,"g":1},"13":{"n":7.5,"g":1},"14":{"n":6.5},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":5}}},"c":93},{"i":5169,"n":"Diarra","f":"Cheick","p":"A","r":10,"s":{"g":"2","s":"50","n":"11","a":"4.59","d":"1.04","Sg":"1","Ss":"11","Sn":"2","Sa":"5.5","Sd":"1.5","Og":"2","Os":"50","On":"11","Oa":"4.59","Od":"1.04","Ap":"11","p":{"1":{"n":4,"s":1},"2":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":4,"s":1},"8":{"n":5,"s":1},"9":{"n":4.5},"11":{"n":3},"12":{"n":4.5,"s":1},"14":{"n":6,"g":1,"s":1},"16":{"n":7,"g":1},"17":{"n":4}}},"c":93},{"i":5185,"n":"Pillot","f":"R\u00e9mi","p":"G","r":9,"s":{"s":"67","n":"12","a":"5.63","d":"0.58","Os":"67","On":"12","Oa":"5.63","Od":"0.58","Gp":"12","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":6},"4":{"n":5},"5":{"n":6},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":7},"10":{"n":5.5},"11":{"n":5},"12":{"n":5}}},"c":93},{"i":5212,"n":"Raineau","f":"Alexandre","p":"D","r":4,"s":{"s":"33","n":"7","a":"4.71","d":"0.52","Os":"33","On":"7","Oa":"4.71","Od":"0.52","Mp":"3","Dp":"4","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"5":{"n":5},"10":{"n":5},"14":{"n":5,"s":1}}},"c":93},{"i":5215,"n":"Boukari","f":"Abdoulrazak","p":"M","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5}}},"c":93},{"i":5970,"n":"Ez Zaytouni","f":"Ayoub","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"3":{"n":5,"s":1}}},"c":93},{"i":5971,"n":"Mendy","f":"Francois","p":"D","r":1,"s":{"n":0},"c":93},{"i":5972,"n":"Luyambulabiwa","f":"Steven","p":"D","r":1,"s":{"n":0},"c":93},{"i":5973,"n":"Padilla","f":"Yannick","p":"M","r":1,"s":{"n":0},"c":93},{"i":6141,"n":"Fofana","f":"Adama","p":"M","r":1,"s":{"n":0},"c":93},{"i":6144,"n":"Grange","f":"Romain","p":"M","r":22,"s":{"g":"3","s":"82","n":"14","a":"5.89","d":"0.6","Sg":"3","Ss":"82","Sn":"14","Sa":"5.89","Sd":"0.6","Og":"3","Os":"82","On":"14","Oa":"5.89","Od":"0.6","Mp":"12","Ap":"2","p":{"4":{"n":5.5},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":7,"g":1},"9":{"n":5.5},"10":{"n":7,"g":1},"11":{"n":6},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6.5,"g":1},"16":{"n":6.5},"17":{"n":6}}},"c":93},{"i":6213,"n":"Mulumba","f":"R\u00e9mi","p":"M","r":10,"s":{"s":"50","n":"10","a":"5","d":"0.55","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Os":"50","On":"10","Oa":"5","Od":"0.55","Mp":"10","p":{"6":{"n":4},"7":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5},"15":{"n":4},"16":{"n":5.5},"17":{"n":5}}},"c":93},{"i":6231,"n":"Chouaref","f":"Ylyas","p":"A","r":13,"s":{"g":"1","s":"59","n":"11","a":"5.36","d":"0.93","Sg":"1","Ss":"59","Sn":"11","Sa":"5.36","Sd":"0.93","Og":"1","Os":"59","On":"11","Oa":"5.36","Od":"0.93","Ap":"11","p":{"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":5},"16":{"n":8,"g":1},"17":{"n":4.5}}},"c":93},{"i":6253,"n":"Gon\u00e7alves Pereira","f":"Alexis","p":"A","r":9,"s":{"g":"1","s":"38","n":"8","a":"4.81","d":"0.79","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"38","On":"8","Oa":"4.81","Od":"0.79","Ap":"8","p":{"9":{"n":6,"g":1,"s":1},"10":{"n":6},"11":{"n":4,"s":1},"12":{"n":4},"13":{"n":4},"14":{"n":5},"15":{"n":4.5,"s":1},"17":{"n":5,"s":1}}},"c":93},{"i":6254,"n":"Plumain","f":"Tommy","p":"G","r":1,"s":{"n":0},"c":93},{"i":433,"n":"Raspentino","f":"Florian","p":"A","r":10,"s":{"s":"51","n":"11","a":"4.64","d":"0.48","Ss":"19","Sn":"4","Sa":"4.88","Sd":"0.41","Os":"51","On":"11","Oa":"4.64","Od":"0.48","Ap":"11","p":{"1":{"n":5},"2":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5},"11":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":5.5},"17":{"n":5}}},"c":94},{"i":547,"n":"Belmonte","f":"Anthony","p":"M","r":1,"s":{"n":0},"c":94},{"i":1253,"n":"Benet","f":"Jessy","p":"M","r":12,"s":{"g":"1","s":"59","n":"11","a":"5.36","d":"0.48","Sg":"1","Ss":"54","Sn":"10","Sa":"5.4","Sd":"0.49","Og":"1","Os":"59","On":"11","Oa":"5.36","Od":"0.48","Mp":"11","p":{"6":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":6.5,"g":1},"11":{"n":5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5},"17":{"n":5}}},"c":94},{"i":1399,"n":"Tinhan","f":"Jonathan","p":"M","r":11,"s":{"g":"1","s":"74","n":"15","a":"4.97","d":"0.69","Sg":"1","Ss":"70","Sn":"14","Sa":"5.04","Sd":"0.67","Og":"1","Os":"74","On":"15","Oa":"4.97","Od":"0.69","Mp":"8","Ap":"7","p":{"1":{"n":4},"4":{"n":5},"5":{"n":5},"6":{"n":6,"g":1},"7":{"n":6},"8":{"n":6},"9":{"n":5},"10":{"n":4,"s":1},"11":{"n":4.5,"s":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":5.5},"16":{"n":4},"17":{"n":4.5,"s":1}}},"c":94},{"i":4840,"n":"Gyeboaho","f":"Christian","p":"A","r":1,"s":{"n":0},"c":94},{"i":4841,"n":"Goteni","f":"Chris-Vianney","p":"D","r":1,"s":{"n":0},"c":94},{"i":4853,"n":"Loba","f":"Nathiau","p":"D","r":1,"s":{"n":0},"c":94},{"i":4857,"n":"Jurine","f":"Nicolas","p":"M","r":1,"s":{"n":0},"c":94},{"i":4868,"n":"Brun","f":"Yohan","p":"A","r":6,"s":{"g":"1","s":"41","n":"9","a":"4.61","d":"0.66","Og":"1","Os":"41","On":"9","Oa":"4.61","Od":"0.66","Mp":"2","Ap":"7","p":{"3":{"n":4,"s":1},"5":{"n":4,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":5},"8":{"n":5},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"14":{"n":4,"s":1},"16":{"n":4,"s":1}}},"c":94},{"i":4915,"n":"Djitt\u00e9","f":"Moussa","p":"A","r":14,"s":{"g":"6","s":"75","n":"14","a":"5.36","d":"0.93","Ss":"4","Sn":"1","Sa":"4.5","Og":"6","Os":"75","On":"14","Oa":"5.36","Od":"0.93","Ap":"14","p":{"1":{"n":7.5,"g":2,"s":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5},"8":{"n":6,"g":1,"s":1},"9":{"n":6.5,"g":1},"10":{"n":5},"11":{"n":4.5},"12":{"n":6.5,"g":1},"13":{"n":5},"15":{"n":6,"g":1},"17":{"n":4.5,"s":1}}},"c":94},{"i":4925,"n":"Kristinsson","f":"Krist\u00f3fer","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"14":{"n":4.5,"s":1}}},"c":94},{"i":4932,"n":"Coulibaly","f":"Ibr\u00e9hima","p":"M","r":9,"s":{"s":"52","n":"10","a":"5.25","d":"0.81","Os":"52","On":"10","Oa":"5.25","Od":"0.81","Mp":"10","p":{"1":{"n":4},"3":{"n":5.5},"6":{"n":6},"7":{"n":6},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":6.5},"12":{"n":5.5},"13":{"n":4},"16":{"n":5}}},"c":94},{"i":4933,"n":"Elogo","f":"Arsene","p":"M","r":13,"s":{"g":"1","s":"68","n":"13","a":"5.23","d":"0.64","Sg":"1","Ss":"33","Sn":"6","Sa":"5.5","Sd":"0.65","Og":"1","Os":"68","On":"13","Oa":"5.23","Od":"0.64","Mp":"12","Ap":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5,"s":1},"7":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":5},"16":{"n":6.5,"g":1},"17":{"n":4.5}}},"c":94},{"i":4950,"n":"Semedo","f":"Willy","p":"A","r":7,"s":{"g":"1","s":"51","n":"10","a":"5.1","d":"0.99","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"51","On":"10","Oa":"5.1","Od":"0.99","Mp":"3","Ap":"7","p":{"1":{"n":4,"s":1},"2":{"n":5,"s":1},"4":{"n":4},"5":{"n":6},"7":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":7.5,"g":1},"11":{"n":5},"14":{"n":5.5},"17":{"n":5,"s":1}}},"c":94},{"i":4979,"n":"Abdallah","f":"Abdel Hakim","p":"D","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"12":{"n":4,"s":1}}},"c":94},{"i":5059,"n":"Abou Demba","f":"Harouna","p":"D","r":1,"s":{"n":0},"c":94},{"i":5072,"n":"Pickel","f":"Charles","p":"M","r":15,"s":{"g":"1","s":"81","n":"16","a":"5.09","d":"0.87","Ss":"15","Sn":"3","Sa":"5.17","Sd":"0.62","Og":"1","Os":"81","On":"16","Oa":"5.09","Od":"0.87","Mp":"16","p":{"1":{"n":6,"g":1},"2":{"n":4},"3":{"n":5},"4":{"n":5},"5":{"n":3.5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":6},"12":{"n":6},"13":{"n":3.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":5}}},"c":94},{"i":5088,"n":"Salles","f":"Esteban","p":"G","r":1,"s":{"n":0},"c":94},{"i":5092,"n":"Pambou","f":"Yves","p":"M","r":5,"s":{"s":"46","n":"10","a":"4.6","d":"0.62","Os":"46","On":"10","Oa":"4.6","Od":"0.62","Mp":"10","p":{"3":{"n":5,"s":1},"4":{"n":4.5},"5":{"n":3},"6":{"n":4.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":5,"s":1}}},"c":94},{"i":5107,"n":"Ondaan","f":"Terell","p":"A","r":10,"s":{"g":"2","s":"77","n":"16","a":"4.84","d":"0.88","Ss":"23","Sn":"5","Sa":"4.6","Sd":"0.37","Og":"2","Os":"77","On":"16","Oa":"4.84","Od":"0.88","Mp":"5","Ap":"11","p":{"1":{"n":6.5},"2":{"n":3.5},"3":{"n":4},"4":{"n":6,"g":1},"5":{"n":3.5},"6":{"n":4.5},"7":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"9":{"n":6},"10":{"n":4.5,"s":1},"11":{"n":5},"13":{"n":4,"s":1},"14":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":94},{"i":5126,"n":"Mombris","f":"Jerome","p":"D","r":16,"s":{"s":"86","n":"17","a":"5.06","d":"0.84","Ss":"86","Sn":"17","Sa":"5.06","Sd":"0.84","Os":"86","On":"17","Oa":"5.06","Od":"0.84","Dp":"17","p":{"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":6},"5":{"n":4},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":5},"11":{"n":5},"12":{"n":6},"13":{"n":6},"14":{"n":6.5},"15":{"n":4.5},"16":{"n":4},"17":{"n":4.5}}},"c":94},{"i":5130,"n":"Monfray","f":"Adrien","p":"D","r":17,"s":{"s":"89","n":"17","a":"5.26","d":"0.84","Ss":"89","Sn":"17","Sa":"5.26","Sd":"0.84","Os":"89","On":"17","Oa":"5.26","Od":"0.84","Dp":"17","p":{"1":{"n":3.5},"2":{"n":4.5},"3":{"n":6},"4":{"n":5},"5":{"n":3.5},"6":{"n":5},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6},"10":{"n":6},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":6.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":5.5}}},"c":94},{"i":5141,"n":"Vandenabeele","f":"Eric","p":"D","r":16,"s":{"s":"75","n":"14","a":"5.39","d":"0.85","Os":"75","On":"14","Oa":"5.39","Od":"0.85","Dp":"14","p":{"2":{"n":4.5,"s":1},"3":{"n":6},"4":{"n":5},"5":{"n":3.5},"6":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":6.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":7},"13":{"n":5.5},"14":{"n":5},"15":{"n":5}}},"c":94},{"i":5166,"n":"Camara","f":"Papa Demba","p":"G","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"5":{"n":4}}},"c":94},{"i":5182,"n":"Gibaud","f":"Pierre","p":"D","r":11,"s":{"s":"60","n":"12","a":"5.04","d":"0.69","Ss":"5","Sn":"1","Sa":"5","Os":"60","On":"12","Oa":"5.04","Od":"0.69","Dp":"12","p":{"1":{"n":4},"2":{"n":4},"6":{"n":4.5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5},"17":{"n":5}}},"c":94},{"i":5201,"n":"Nestor","f":"Loic","p":"D","r":10,"s":{"s":"19","n":"4","a":"4.88","d":"0.54","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"19","On":"4","Oa":"4.88","Od":"0.54","Dp":"4","p":{"1":{"n":4},"2":{"n":5},"16":{"n":5},"17":{"n":5.5}}},"c":94},{"i":5207,"n":"Maubleu","f":"Brice","p":"G","r":19,"s":{"s":"93","n":"16","a":"5.81","d":"0.85","Ss":"70","Sn":"12","Sa":"5.88","Sd":"0.94","Os":"93","On":"16","Oa":"5.81","Od":"0.85","Gp":"16","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":5},"6":{"n":5},"7":{"n":6},"8":{"n":7},"9":{"n":6.5},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":8},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5},"17":{"n":5}}},"c":94},{"i":5210,"n":"El Jadeyaoui","f":"Alharbi","p":"M","r":9,"s":{"n":0},"c":94},{"i":5375,"n":"Boyer","f":"Fabien","p":"D","r":1,"s":{"n":0},"c":94},{"i":5975,"n":"Michel","f":"Florian","p":"M","r":10,"s":{"s":"36","n":"7","a":"5.21","d":"0.59","Ss":"15","Sn":"3","Sa":"5","Os":"36","On":"7","Oa":"5.21","Od":"0.59","Mp":"7","p":{"6":{"n":4.5},"7":{"n":6.5},"8":{"n":5},"9":{"n":5.5},"15":{"n":5},"16":{"n":5,"s":1},"17":{"n":5}}},"c":94},{"i":6142,"n":"Sylvestre-Brac","f":"Jules","p":"D","r":7,"s":{"s":"16","n":"4","a":"4.13","d":"0.74","Os":"16","On":"4","Oa":"4.13","Od":"0.74","Dp":"4","p":{"4":{"n":5},"5":{"n":3},"15":{"n":4},"16":{"n":4.5}}},"c":94},{"i":478,"n":"Vincent Thill","f":"","p":"M","r":10,"s":{"s":"75","n":"15","a":"5","d":"0.88","Ss":"5","Sn":"1","Sa":"5","Os":"75","On":"15","Oa":"5","Od":"0.88","Mp":"8","Ap":"7","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":4},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":4.5,"s":1},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":3.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":97},{"i":511,"n":"Perrin","f":"Gaetan","p":"M","r":8,"s":{"g":"2","s":"75","n":"15","a":"5","d":"0.88","Sg":"1","Ss":"34","Sn":"7","Sa":"4.86","Sd":"0.87","Og":"2","Os":"75","On":"15","Oa":"5","Od":"0.88","Mp":"7","Ap":"8","p":{"1":{"n":4.5,"s":1},"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":5},"8":{"n":4,"s":1},"11":{"n":5},"12":{"n":5},"13":{"n":6.5,"g":1,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":4,"s":1},"17":{"n":3.5}}},"c":97},{"i":546,"n":"Saint-Ruf","f":"Nicolas","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"3":{"n":5}}},"c":97},{"i":4858,"n":"Le Pennec","f":"Ludovic","p":"G","r":1,"s":{"n":0},"c":97},{"i":4902,"n":"Hari","f":"Esteban","p":"M","r":1,"s":{"n":0},"c":97},{"i":4903,"n":"Mbelek Nouga","f":"Paul","p":"D","r":1,"s":{"n":0},"c":97},{"i":4906,"n":"Sevestre","f":"Alexis","p":"G","r":1,"s":{"n":0},"c":97},{"i":4917,"n":"El Khoumisti","f":"Fahd","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"6":{"n":4,"s":1}}},"c":97},{"i":4929,"n":"Keita","f":"Tidiane","p":"M","r":10,"s":{"s":"39","n":"8","a":"4.88","d":"0.96","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1.5","Os":"39","On":"8","Oa":"4.88","Od":"0.96","Mp":"8","p":{"1":{"n":5,"s":1},"3":{"n":4.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":6},"11":{"n":5,"s":1},"16":{"n":6},"17":{"n":3}}},"c":97},{"i":4930,"n":"Marchadier","f":"Alex","p":"D","r":7,"s":{"s":"27","n":"6","a":"4.5","d":"0.76","Ss":"3","Sn":"1","Sa":"3","Os":"27","On":"6","Oa":"4.5","Od":"0.76","Dp":"6","p":{"10":{"n":5,"s":1},"11":{"n":5},"12":{"n":5,"s":1},"13":{"n":4},"15":{"n":5},"17":{"n":3}}},"c":97},{"i":4931,"n":"Scheidler","f":"Aurelien","p":"A","r":13,"s":{"g":"4","s":"73","n":"15","a":"4.87","d":"1.35","Sg":"4","Ss":"68","Sn":"14","Sa":"4.89","Sd":"1.39","Og":"4","Os":"73","On":"15","Oa":"4.87","Od":"1.35","Ap":"15","p":{"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":7,"g":1,"s":1},"6":{"n":4.5},"7":{"n":5},"8":{"n":6.5,"g":1},"9":{"n":7,"g":1},"10":{"n":3},"11":{"n":4.5},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":4},"15":{"n":3.5},"16":{"n":5},"17":{"n":3}}},"c":97},{"i":4938,"n":"Fresneau","f":"Redha","p":"D","r":1,"s":{"n":0},"c":97},{"i":4941,"n":"Luzayadio","f":"Arnaud","p":"D","r":1,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"2":{"n":4.5,"s":1},"5":{"n":5,"s":1},"7":{"n":5,"s":1}}},"c":97},{"i":4953,"n":"Talal","f":"Amine","p":"M","r":7,"s":{"s":"51","n":"11","a":"4.64","d":"0.43","Os":"51","On":"11","Oa":"4.64","Od":"0.43","Mp":"11","p":{"3":{"n":4.5,"s":1},"4":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4},"14":{"n":5},"15":{"n":4.5},"16":{"n":5,"s":1}}},"c":97},{"i":4974,"n":"Ephestion","f":"Thomas","p":"M","r":10,"s":{"s":"43","n":"10","a":"4.35","d":"0.67","Ss":"3","Sn":"1","Sa":"3","Os":"43","On":"10","Oa":"4.35","Od":"0.67","Mp":"10","p":{"1":{"n":4.5},"2":{"n":4},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"11":{"n":5},"12":{"n":5},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":4},"17":{"n":3}}},"c":97},{"i":4982,"n":"Benkaid","f":"Hicham","p":"A","r":8,"s":{"g":"2","s":"36","n":"7","a":"5.14","d":"1.25","Og":"2","Os":"36","On":"7","Oa":"5.14","Od":"1.25","Mp":"3","Ap":"4","p":{"1":{"n":5},"3":{"n":4},"4":{"n":4},"5":{"n":7,"g":1},"8":{"n":7,"g":1},"9":{"n":5},"10":{"n":4}}},"c":97},{"i":5043,"n":"D'Arpino","f":"Maxime","p":"M","r":11,"s":{"s":"65","n":"12","a":"5.46","d":"0.69","Os":"65","On":"12","Oa":"5.46","Od":"0.69","Mp":"12","p":{"1":{"n":5},"2":{"n":6},"3":{"n":5.5},"4":{"n":4},"5":{"n":6.5},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":6}}},"c":97},{"i":5046,"n":"Bamba","f":"Issiaka","p":"A","r":1,"s":{"n":0},"c":97},{"i":5047,"n":"Demoncy","f":"Yohan","p":"M","r":11,"s":{"s":"70","n":"14","a":"5.04","d":"0.67","Ss":"46","Sn":"9","Sa":"5.11","Sd":"0.7","Os":"70","On":"14","Oa":"5.04","Od":"0.67","Mp":"14","p":{"1":{"n":5.5},"3":{"n":4},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":6.5},"17":{"n":4}}},"c":97},{"i":5089,"n":"Thiam","f":"Abdoulkader","p":"D","r":3,"s":{"s":"22","n":"5","a":"4.4","d":"0.49","Os":"22","On":"5","Oa":"4.4","Od":"0.49","Dp":"5","p":{"7":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5},"13":{"n":3.5}}},"c":97},{"i":5091,"n":"Mutombo Kupa","f":"Gabriel","p":"D","r":10,"s":{"s":"58","n":"13","a":"4.5","d":"0.88","Ss":"15","Sn":"4","Sa":"3.88","Sd":"1.08","Os":"58","On":"13","Oa":"4.5","Od":"0.88","Dp":"13","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"9":{"n":4,"s":1},"11":{"n":5.5},"12":{"n":5.5},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":2}}},"c":97},{"i":5127,"n":"Correa","f":"Joris","p":"A","r":6,"s":{"s":"45","n":"10","a":"4.55","d":"0.15","Os":"45","On":"10","Oa":"4.55","Od":"0.15","Mp":"4","Ap":"6","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":4.5},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5},"16":{"n":4.5}}},"c":97},{"i":5135,"n":"Lambese","f":"St\u00e9phane","p":"D","r":10,"s":{"s":"67","n":"15","a":"4.47","d":"0.81","Ss":"6","Sn":"2","Sa":"3.25","Sd":"0.25","Os":"67","On":"15","Oa":"4.47","Od":"0.81","Dp":"15","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4.5},"4":{"n":4},"5":{"n":4},"6":{"n":3.5},"8":{"n":5},"9":{"n":5},"10":{"n":3.5},"11":{"n":5},"12":{"n":5},"13":{"n":6,"s":1},"14":{"n":5},"16":{"n":3.5},"17":{"n":3}}},"c":97},{"i":5142,"n":"Vachoux","f":"J\u00e9r\u00e9my","p":"G","r":7,"s":{"s":"50","n":"10","a":"5.05","d":"1.01","Os":"50","On":"10","Oa":"5.05","Od":"1.01","Gp":"10","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":6},"8":{"n":4},"9":{"n":6},"10":{"n":3}}},"c":97},{"i":5153,"n":"Renault","f":"Thomas","p":"G","r":14,"s":{"s":"35","n":"7","a":"5.07","d":"0.78","Ss":"35","Sn":"7","Sa":"5.07","Sd":"0.78","Os":"35","On":"7","Oa":"5.07","Od":"0.78","Gp":"7","p":{"11":{"n":6},"12":{"n":6},"13":{"n":5.5},"14":{"n":5},"15":{"n":5},"16":{"n":4},"17":{"n":4}}},"c":97},{"i":5160,"n":"Lopy","f":"Joseph","p":"M","r":18,"s":{"g":"3","s":"81","n":"16","a":"5.09","d":"0.85","Og":"3","Os":"81","On":"16","Oa":"5.09","Od":"0.85","Mp":"14","Dp":"2","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":6},"10":{"n":3.5,"g":1},"11":{"n":6},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":7,"g":2}}},"c":97},{"i":5196,"n":"Cambon","f":"C\u00e9dric","p":"D","r":7,"s":{"ao":"1","s":"50","n":"11","a":"4.59","d":"1.02","Ss":"7","Sn":"2","Sa":"3.75","Sd":"0.75","Oao":"1","Os":"50","On":"11","Oa":"4.59","Od":"1.02","Dp":"11","p":{"1":{"n":6},"2":{"n":3.5},"6":{"n":5},"7":{"n":5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":4},"13":{"n":3,"a":1},"14":{"n":5.5},"16":{"n":4.5},"17":{"n":3}}},"c":97},{"i":5199,"n":"Pinaud","f":"Gauthier","p":"D","r":10,"s":{"g":"1","s":"61","n":"13","a":"4.73","d":"0.93","Ss":"11","Sn":"3","Sa":"3.83","Sd":"0.62","Og":"1","Os":"61","On":"13","Oa":"4.73","Od":"0.93","Dp":"13","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":6.5,"g":1},"10":{"n":4.5},"15":{"n":4.5},"16":{"n":4},"17":{"n":3}}},"c":97},{"i":5221,"n":"Le Tallec","f":"Anthony","p":"A","r":12,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2","p":{"1":{"n":4.5,"s":1},"2":{"n":4}}},"c":97},{"i":6256,"n":"Ba","f":"Alioune","p":"D","r":10,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"9":{"n":5.5}}},"c":97},{"i":6275,"n":"Ba","f":"Alioune","p":"D","r":13,"s":{"s":"31","n":"6","a":"5.17","d":"0.69","Os":"31","On":"6","Oa":"5.17","Od":"0.69","Dp":"6","p":{"11":{"n":6},"12":{"n":6},"13":{"n":4},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":97},{"i":6276,"n":"Soumar\u00e9","f":"Issa","p":"A","r":3,"s":{"s":"19","n":"4","a":"4.88","d":"0.22","Ss":"5","Sn":"1","Sa":"5","Os":"19","On":"4","Oa":"4.88","Od":"0.22","Mp":"1","Ap":"3","p":{"13":{"n":5,"s":1},"14":{"n":5},"15":{"n":4.5,"s":1},"17":{"n":5,"s":1}}},"c":97},{"i":6326,"n":"Mokdad","f":"Liamine","p":"M","r":1,"s":{"n":0},"c":97},{"i":446,"n":"Passi","f":"Bryan","p":"D","r":12,"s":{"s":"38","n":"8","a":"4.75","d":"0.9","Os":"38","On":"8","Oa":"4.75","Od":"0.9","Dp":"8","p":{"8":{"n":4},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":4},"14":{"n":3},"15":{"n":5.5},"16":{"n":5}}},"c":98},{"i":459,"n":"Vion","f":"Thibaut","p":"A","r":7,"s":{"s":"56","n":"11","a":"5.14","d":"0.77","Ss":"36","Sn":"7","Sa":"5.14","Sd":"0.87","Os":"56","On":"11","Oa":"5.14","Od":"0.77","Mp":"1","Dp":"10","p":{"1":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":6},"11":{"n":4},"12":{"n":5.5},"13":{"n":4},"14":{"n":6,"s":1},"15":{"n":6.5},"16":{"n":5},"17":{"n":5}}},"c":98},{"i":529,"n":"Cont\u00e9","f":"Ibrahima Sory","p":"D","r":1,"s":{"n":0},"c":98},{"i":582,"n":"Braat","f":"Quentin","p":"G","r":14,"s":{"ao":"1","s":"31","n":"6","a":"5.25","d":"0.8","Sao":"1","Ss":"27","Sn":"5","Sa":"5.4","Sd":"0.8","Oao":"1","Os":"31","On":"6","Oa":"5.25","Od":"0.8","Gp":"6","p":{"1":{"n":4.5},"13":{"n":5,"s":1},"14":{"n":4,"a":1},"15":{"n":6},"16":{"n":6},"17":{"n":6}}},"c":98},{"i":2718,"n":"Kemen","f":"Olivier","p":"M","r":18,"s":{"g":"2","s":"81","n":"16","a":"5.06","d":"1.01","Sg":"1","Ss":"30","Sn":"6","Sa":"5","Sd":"1.04","Og":"2","Os":"81","On":"16","Oa":"5.06","Od":"1.01","Mp":"16","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6},"4":{"n":6},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":3.5},"12":{"n":4},"13":{"n":4.5},"14":{"n":4},"15":{"n":7,"g":1},"16":{"n":5.5},"17":{"n":5}}},"c":98},{"i":4862,"n":"Kone","f":"Zoumana","p":"A","r":1,"s":{"s":"8","n":"2","a":"4","d":"0.5","Os":"8","On":"2","Oa":"4","Od":"0.5","Ap":"2","p":{"1":{"n":3.5},"13":{"n":4.5,"s":1}}},"c":98},{"i":4894,"n":"Maddaloni","f":"Florent","p":"G","r":1,"s":{"n":0},"c":98},{"i":4895,"n":"Kilama Kilama","f":"Guy","p":"D","r":7,"s":{"s":"28","n":"6","a":"4.67","d":"0.99","Os":"28","On":"6","Oa":"4.67","Od":"0.99","Mp":"1","Dp":"5","p":{"9":{"n":5.5},"10":{"n":4.5},"11":{"n":6},"12":{"n":5},"13":{"n":4},"14":{"n":3}}},"c":98},{"i":4911,"n":"Sissoko","f":"Ibrahim","p":"A","r":25,"s":{"g":"8","s":"74","n":"14","a":"5.29","d":"1.4","Og":"8","Os":"74","On":"14","Oa":"5.29","Od":"1.4","Ap":"14","p":{"3":{"n":7.5,"g":1},"4":{"n":6,"g":1},"5":{"n":6,"g":1},"6":{"n":4.5},"7":{"n":4},"8":{"n":6.5,"g":1},"9":{"n":6.5,"g":1},"10":{"n":6.5,"g":1},"11":{"n":4.5},"12":{"n":4},"13":{"n":2.5},"14":{"n":5.5,"g":1},"15":{"n":6.5,"g":1},"16":{"n":3.5}}},"c":98},{"i":4919,"n":"Pauchet","f":"Enzo","p":"G","r":6,"s":{"n":0},"c":98},{"i":4920,"n":"Lapis","f":"Florian","p":"D","r":10,"s":{"s":"51","n":"10","a":"5.15","d":"0.71","Ss":"4","Sn":"1","Sa":"4.5","Os":"51","On":"10","Oa":"5.15","Od":"0.71","Dp":"10","p":{"2":{"n":4},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":6},"7":{"n":5},"8":{"n":5},"9":{"n":5.5},"10":{"n":5,"s":1},"17":{"n":4.5}}},"c":98},{"i":4921,"n":"Fontani","f":"Dylan","p":"D","r":1,"s":{"n":0},"c":98},{"i":4955,"n":"Bourhane","f":"Yacine","p":"M","r":3,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":98},{"i":4956,"n":"Koyalipou","f":"Goduine","p":"A","r":10,"s":{"s":"43","n":"9","a":"4.83","d":"0.78","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.85","Os":"43","On":"9","Oa":"4.83","Od":"0.78","Mp":"6","Ap":"3","p":{"2":{"n":4.5,"s":1},"3":{"n":5.5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":4.5},"17":{"n":3}}},"c":98},{"i":4966,"n":"Ameka Autchanga","f":"Louis","p":"A","r":5,"s":{"s":"51","n":"11","a":"4.64","d":"0.61","Ss":"4","Sn":"1","Sa":"4.5","Os":"51","On":"11","Oa":"4.64","Od":"0.61","Mp":"9","Ap":"2","p":{"1":{"n":3.5},"2":{"n":4},"3":{"n":6,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":98},{"i":4978,"n":"Leautey","f":"Antoine","p":"A","r":11,"s":{"g":"1","s":"87","n":"17","a":"5.15","d":"0.84","Sg":"1","Ss":"87","Sn":"17","Sa":"5.15","Sd":"0.84","Og":"1","Os":"87","On":"17","Oa":"5.15","Od":"0.84","Mp":"12","Ap":"5","p":{"1":{"n":5,"s":1},"2":{"n":4.5},"3":{"n":7.5,"g":1},"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":4.5},"8":{"n":5},"9":{"n":6.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5},"13":{"n":4.5},"14":{"n":4},"15":{"n":5},"16":{"n":5.5},"17":{"n":4.5,"s":1}}},"c":98},{"i":4991,"n":"Bena","f":"Quentin","p":"M","r":3,"s":{"s":"25","n":"5","a":"5","d":"0.55","Os":"25","On":"5","Oa":"5","Od":"0.55","Mp":"5","p":{"1":{"n":4.5},"3":{"n":6,"s":1},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"11":{"n":4.5}}},"c":98},{"i":4994,"n":"Paro","f":"Issouf","p":"D","r":1,"s":{"s":"38","n":"7","a":"5.43","d":"0.56","Os":"38","On":"7","Oa":"5.43","Od":"0.56","Dp":"7","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6},"4":{"n":6},"5":{"n":5},"6":{"n":5.5},"7":{"n":6}}},"c":98},{"i":5014,"n":"Grich","f":"Zakaria","p":"M","r":1,"s":{"n":0},"c":98},{"i":5022,"n":"Da Costa","f":"Julien","p":"D","r":12,"s":{"s":"62","n":"13","a":"4.81","d":"1.07","Ss":"5","Sn":"1","Sa":"5","Os":"62","On":"13","Oa":"4.81","Od":"1.07","Mp":"1","Dp":"12","p":{"1":{"n":3.5},"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5},"7":{"n":6},"8":{"n":4},"10":{"n":5.5},"11":{"n":5.5},"13":{"n":3},"14":{"n":3},"17":{"n":5}}},"c":98},{"i":5034,"n":"Konat\u00e9","f":"Brahim","p":"M","r":8,"s":{"g":"1","s":"62","n":"12","a":"5.17","d":"0.75","Og":"1","Os":"62","On":"12","Oa":"5.17","Od":"0.75","Mp":"12","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5},"3":{"n":6},"4":{"n":5},"7":{"n":4.5},"8":{"n":6},"9":{"n":7,"g":1},"10":{"n":4.5},"11":{"n":5,"s":1},"12":{"n":5},"15":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":98},{"i":5069,"n":"Allagbe","f":"Saturnin","p":"G","r":5,"s":{"s":"69","n":"12","a":"5.75","d":"0.97","Os":"69","On":"12","Oa":"5.75","Od":"0.97","Gp":"12","p":{"2":{"n":5},"3":{"n":6},"4":{"n":7},"5":{"n":5.5},"6":{"n":7},"7":{"n":7.5},"8":{"n":5.5},"9":{"n":4},"10":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":5}}},"c":98},{"i":5073,"n":"Louiserre","f":"Dylan","p":"M","r":18,"s":{"g":"1","s":"82","n":"16","a":"5.16","d":"1.09","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"82","On":"16","Oa":"5.16","Od":"1.09","Mp":"16","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":7.5,"g":1},"4":{"n":6},"5":{"n":5},"6":{"n":6.5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4},"11":{"n":5},"12":{"n":4},"13":{"n":3.5},"14":{"n":3.5},"15":{"n":6},"17":{"n":6}}},"c":98},{"i":5079,"n":"Jacob","f":"Valentin","p":"M","r":14,"s":{"g":"1","s":"70","n":"14","a":"5.04","d":"1.17","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"70","On":"14","Oa":"5.04","Od":"1.17","Mp":"7","Ap":"7","p":{"1":{"n":4},"2":{"n":7,"g":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":4},"8":{"n":7},"10":{"n":4.5},"11":{"n":5},"12":{"n":5},"13":{"n":4},"14":{"n":4},"17":{"n":3}}},"c":98},{"i":5081,"n":"Djigla","f":"David","p":"A","r":3,"s":{"s":"9","n":"2","a":"4.5","Ss":"9","Sn":"2","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"16":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":98},{"i":5082,"n":"Pedro Henrique","f":"","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"2":{"n":4.5,"s":1}}},"c":98},{"i":5187,"n":"Sans","f":"Matthieu","p":"D","r":15,"s":{"s":"86","n":"16","a":"5.38","d":"0.74","Ss":"21","Sn":"4","Sa":"5.25","Sd":"0.56","Os":"86","On":"16","Oa":"5.38","Od":"0.74","Dp":"16","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6},"4":{"n":6},"5":{"n":6},"6":{"n":6},"7":{"n":5},"8":{"n":7},"9":{"n":5},"10":{"n":4},"11":{"n":5,"s":1},"12":{"n":5.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":6},"17":{"n":5}}},"c":98},{"i":5363,"n":"Baroan","f":"Antoine","p":"A","r":7,"s":{"s":"25","n":"6","a":"4.17","d":"0.55","Ss":"25","Sn":"6","Sa":"4.17","Sd":"0.55","Os":"25","On":"6","Oa":"4.17","Od":"0.55","Ap":"6","p":{"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5,"s":1},"17":{"n":3}}},"c":98},{"i":5977,"n":"Doukansy","f":"Brahima","p":"M","r":9,"s":{"s":"29","n":"6","a":"4.92","d":"0.79","Ss":"14","Sn":"3","Sa":"4.83","Sd":"1.03","Os":"29","On":"6","Oa":"4.92","Od":"0.79","Mp":"5","Dp":"1","p":{"8":{"n":5,"s":1},"9":{"n":4.5},"10":{"n":5.5,"s":1},"15":{"n":6},"16":{"n":5},"17":{"n":3.5}}},"c":98},{"i":6273,"n":"Yongwa Ngameni","f":"Darline Zidane","p":"M","r":6,"s":{"s":"21","n":"5","a":"4.3","d":"1.03","Os":"21","On":"5","Oa":"4.3","Od":"1.03","Mp":"1","Dp":"4","p":{"11":{"n":4.5},"13":{"n":3},"14":{"n":4.5},"15":{"n":6},"16":{"n":3.5}}},"c":98},{"i":469,"n":"San\u00e9","f":"Pape","p":"A","r":15,"s":{"g":"4","s":"76","n":"16","a":"4.75","d":"1.08","Sg":"4","Ss":"63","Sn":"13","Sa":"4.85","Sd":"1.17","Og":"4","Os":"76","On":"16","Oa":"4.75","Od":"1.08","Ap":"16","p":{"1":{"n":4.5},"2":{"n":4.5,"s":1},"3":{"n":4},"5":{"n":4},"6":{"n":4,"s":1},"7":{"n":7,"g":1},"8":{"n":6,"g":1,"s":1},"9":{"n":4.5},"10":{"n":4.5,"s":1},"11":{"n":4},"12":{"n":7,"g":1},"13":{"n":4.5,"s":1},"14":{"n":3.5},"15":{"n":6,"g":1},"16":{"n":4},"17":{"n":4}}},"c":100},{"i":1241,"n":"Maury","f":"Erwan","p":"M","r":8,"s":{"s":"20","n":"4","a":"5","d":"0.71","Ss":"6","Sn":"1","Sa":"6","Os":"20","On":"4","Oa":"5","Od":"0.71","Mp":"4","p":{"6":{"n":4},"8":{"n":5},"11":{"n":5,"s":1},"17":{"n":6}}},"c":100},{"i":4842,"n":"Secchi","f":"Thomas","p":"G","r":1,"s":{"n":0},"c":100},{"i":4843,"n":"Coelho","f":"Gr\u00e9gory","p":"D","r":1,"s":{"n":0},"c":100},{"i":4844,"n":"Garcia","f":"Hugo","p":"M","r":1,"s":{"n":0},"c":100},{"i":4845,"n":"Guerbert","f":"Mathieu","p":"M","r":3,"s":{"s":"28","n":"6","a":"4.67","d":"0.37","Os":"28","On":"6","Oa":"4.67","Od":"0.37","Mp":"6","p":{"1":{"n":5,"s":1},"4":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4},"14":{"n":4.5,"s":1}}},"c":100},{"i":4846,"n":"Peyrelade","f":"Alexis","p":"D","r":6,"s":{"s":"24","n":"5","a":"4.8","d":"0.24","Ss":"5","Sn":"1","Sa":"5","Os":"24","On":"5","Oa":"4.8","Od":"0.24","Dp":"5","p":{"2":{"n":5,"s":1},"4":{"n":5},"12":{"n":4.5,"s":1},"13":{"n":4.5},"17":{"n":5}}},"c":100},{"i":4847,"n":"Bonnet","f":"Ugo","p":"A","r":19,"s":{"g":"7","s":"78","n":"14","a":"5.61","d":"1.45","Og":"7","Os":"78","On":"14","Oa":"5.61","Od":"1.45","Ap":"14","p":{"1":{"n":7,"g":1},"2":{"n":5},"3":{"n":5.5},"4":{"n":5},"5":{"n":7.5,"g":1},"6":{"n":7,"g":1},"7":{"n":8,"g":2},"8":{"n":4},"9":{"n":4.5},"10":{"n":3},"11":{"n":6,"g":1,"s":1},"12":{"n":7,"g":1},"13":{"n":4,"s":1},"14":{"n":5}}},"c":100},{"i":4850,"n":"Ouammou","f":"Nassim","p":"M","r":8,"s":{"s":"60","n":"13","a":"4.62","d":"0.49","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"60","On":"13","Oa":"4.62","Od":"0.49","Mp":"5","Dp":"1","Ap":"7","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4},"5":{"n":5,"s":1},"6":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5},"11":{"n":5.5},"12":{"n":4.5,"s":1},"13":{"n":3.5},"15":{"n":4.5},"16":{"n":5,"s":1},"17":{"n":5}}},"c":100},{"i":4928,"n":"Ouhafsa","f":"Ayoub","p":"A","r":8,"s":{"g":"1","s":"61","n":"13","a":"4.69","d":"0.54","Sg":"1","Ss":"20","Sn":"4","Sa":"5","Sd":"0.79","Og":"1","Os":"61","On":"13","Oa":"4.69","Od":"0.54","Ap":"13","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":5},"7":{"n":4.5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4.5},"14":{"n":4.5,"s":1},"15":{"n":6,"s":1},"16":{"n":5.5,"g":1},"17":{"n":4,"s":1}}},"c":100},{"i":4934,"n":"Dieng","f":"Nathaniel","p":"D","r":8,"s":{"s":"48","n":"10","a":"4.85","d":"0.71","Ss":"4","Sn":"1","Sa":"4.5","Os":"48","On":"10","Oa":"4.85","Od":"0.71","Dp":"10","p":{"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":4.5},"7":{"n":6},"9":{"n":5},"14":{"n":5},"17":{"n":4.5}}},"c":100},{"i":4954,"n":"Roche","f":"Yohan","p":"D","r":10,"s":{"s":"80","n":"17","a":"4.71","d":"0.82","Ss":"80","Sn":"17","Sa":"4.71","Sd":"0.82","Os":"80","On":"17","Oa":"4.71","Od":"0.82","Dp":"17","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":5},"9":{"n":4},"10":{"n":3},"11":{"n":5.5},"12":{"n":6},"13":{"n":4},"14":{"n":4},"15":{"n":3.5},"16":{"n":4.5},"17":{"n":4.5}}},"c":100},{"i":4970,"n":"Mathis","f":"Boris","p":"A","r":6,"s":{"s":"17","n":"4","a":"4.38","d":"0.41","Ss":"12","Sn":"3","Sa":"4.17","Sd":"0.24","Os":"17","On":"4","Oa":"4.38","Od":"0.41","Ap":"4","p":{"13":{"n":5},"15":{"n":4,"s":1},"16":{"n":4.5,"s":1},"17":{"n":4}}},"c":100},{"i":5016,"n":"Henry","f":"Valentin","p":"M","r":11,"s":{"g":"3","s":"78","n":"16","a":"4.88","d":"1.15","Sg":"1","Ss":"17","Sn":"4","Sa":"4.38","Sd":"0.22","Og":"3","Os":"78","On":"16","Oa":"4.88","Od":"1.15","Dp":"16","p":{"1":{"n":7,"g":1},"2":{"n":4.5},"3":{"n":5},"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":7,"g":1},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":3},"11":{"n":4.5},"12":{"n":6.5},"14":{"n":4.5,"g":1},"15":{"n":4},"16":{"n":4.5},"17":{"n":4.5}}},"c":100},{"i":5021,"n":"Caddy","f":"Dorian","p":"A","r":3,"s":{"s":"19","n":"5","a":"3.8","d":"0.75","Os":"19","On":"5","Oa":"3.8","Od":"0.75","Ap":"5","p":{"4":{"n":4},"7":{"n":4.5,"s":1},"13":{"n":2.5},"15":{"n":3.5},"16":{"n":4.5,"s":1}}},"c":100},{"i":5027,"n":"Maanane","f":"Eddy","p":"A","r":1,"s":{"s":"16","n":"4","a":"4","d":"0.61","Os":"16","On":"4","Oa":"4","Od":"0.61","Ap":"4","p":{"1":{"n":4,"s":1},"2":{"n":4.5},"3":{"n":4.5,"s":1},"10":{"n":3}}},"c":100},{"i":5035,"n":"Desmas","f":"Arthur","p":"G","r":16,"s":{"s":"93","n":"17","a":"5.47","d":"0.83","Ss":"93","Sn":"17","Sa":"5.47","Sd":"0.83","Os":"93","On":"17","Oa":"5.47","Od":"0.83","Gp":"17","p":{"1":{"n":7},"2":{"n":6},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5},"11":{"n":7.5},"12":{"n":6},"13":{"n":4.5},"14":{"n":6},"15":{"n":5},"16":{"n":5},"17":{"n":5}}},"c":100},{"i":5055,"n":"Jacob","f":"Corentin","p":"D","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"17":{"n":5.5}}},"c":100},{"i":5075,"n":"M'Pasi N'Zau","f":"Lionel","p":"G","r":7,"s":{"n":0},"c":100},{"i":5094,"n":"Ruffaut","f":"Pierre","p":"M","r":18,"s":{"g":"3","s":"91","n":"16","a":"5.72","d":"1.02","Og":"3","Os":"91","On":"16","Oa":"5.72","Od":"1.02","Mp":"16","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":8,"g":1},"4":{"n":5},"5":{"n":7.5,"g":1},"6":{"n":5.5},"7":{"n":7},"8":{"n":5.5},"9":{"n":5},"10":{"n":6,"g":1},"11":{"n":6,"s":1},"12":{"n":6.5},"13":{"n":5,"s":1},"14":{"n":5},"15":{"n":4.5},"16":{"n":5.5}}},"c":100},{"i":5096,"n":"Chougrani","f":"Joris","p":"D","r":11,"s":{"g":"1","ao":"1","s":"74","n":"16","a":"4.66","d":"1.14","Ss":"35","Sn":"8","Sa":"4.38","Sd":"1.14","Og":"1","Oao":"1","Os":"74","On":"16","Oa":"4.66","Od":"1.14","Dp":"16","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":4},"5":{"n":5,"g":1},"6":{"n":3.5,"a":1},"7":{"n":7},"8":{"n":4},"10":{"n":3},"11":{"n":4.5},"12":{"n":7},"13":{"n":4.5},"14":{"n":3.5},"15":{"n":3.5},"16":{"n":4.5},"17":{"n":4.5,"s":1}}},"c":100},{"i":5097,"n":"Bardy","f":"Pierre","p":"D","r":11,"s":{"g":"1","s":"72","n":"15","a":"4.83","d":"0.98","Og":"1","Os":"72","On":"15","Oa":"4.83","Od":"0.98","Dp":"15","p":{"1":{"n":5.5},"3":{"n":6,"g":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":4},"10":{"n":2},"11":{"n":6},"12":{"n":6},"13":{"n":5},"14":{"n":4},"15":{"n":4.5},"16":{"n":5}}},"c":100},{"i":5098,"n":"Dady Ngoye","f":"Francis","p":"M","r":1,"s":{"n":0},"c":100},{"i":5124,"n":"Douline","f":"David","p":"D","r":11,"s":{"s":"71","n":"14","a":"5.11","d":"0.89","Os":"71","On":"14","Oa":"5.11","Od":"0.89","Mp":"14","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":5},"10":{"n":3.5},"12":{"n":7},"13":{"n":5},"14":{"n":5},"15":{"n":5},"16":{"n":4.5}}},"c":100},{"i":5149,"n":"Tertereau","f":"Aur\u00e9lien","p":"M","r":12,"s":{"s":"73","n":"14","a":"5.25","d":"0.67","Ss":"20","Sn":"4","Sa":"5","Sd":"0.61","Os":"73","On":"14","Oa":"5.25","Od":"0.67","Mp":"13","Ap":"1","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":5},"5":{"n":4.5},"7":{"n":6},"8":{"n":6},"9":{"n":5,"s":1},"10":{"n":4},"11":{"n":6},"12":{"n":5.5},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":6},"17":{"n":5,"s":1}}},"c":100},{"i":5189,"n":"Poujol","f":"Lo\u00efc","p":"M","r":8,"s":{"s":"43","n":"9","a":"4.83","d":"0.58","Ss":"5","Sn":"1","Sa":"5","Os":"43","On":"9","Oa":"4.83","Od":"0.58","Mp":"6","Dp":"3","p":{"2":{"n":5.5},"5":{"n":5.5,"s":1},"6":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":3.5},"11":{"n":5},"12":{"n":5,"s":1},"13":{"n":4.5},"17":{"n":5}}},"c":100},{"i":5200,"n":"Sanaia","f":"Amiran","p":"D","r":8,"s":{"s":"28","n":"6","a":"4.75","d":"0.95","Os":"28","On":"6","Oa":"4.75","Od":"0.95","Dp":"6","p":{"8":{"n":5},"11":{"n":6},"12":{"n":5.5},"13":{"n":4.5},"15":{"n":4.5},"16":{"n":3}}},"c":100},{"i":107,"n":"Michel","f":"Mathieu","p":"G","r":16,"s":{"s":"89","n":"17","a":"5.26","d":"0.88","Ss":"89","Sn":"17","Sa":"5.26","Sd":"0.88","Os":"89","On":"17","Oa":"5.26","Od":"0.88","Gp":"17","p":{"1":{"n":4},"2":{"n":6.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":7},"8":{"n":6},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":4},"13":{"n":5},"14":{"n":4.5},"15":{"n":5},"16":{"n":4},"17":{"n":6}}},"c":101},{"i":306,"n":"Bellugou","f":"Francois","p":"M","r":13,"s":{"s":"81","n":"16","a":"5.06","d":"0.83","Ss":"35","Sn":"7","Sa":"5","Sd":"0.76","Os":"81","On":"16","Oa":"5.06","Od":"0.83","Mp":"16","p":{"1":{"n":4.5},"2":{"n":5.5},"3":{"n":4},"4":{"n":4.5},"5":{"n":5},"6":{"n":6},"7":{"n":7},"8":{"n":5},"9":{"n":4.5},"11":{"n":6},"12":{"n":5},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":5.5},"17":{"n":5}}},"c":101},{"i":372,"n":"Adeoti","f":"Jordan","p":"D","r":1,"s":{"s":"6","n":"1","a":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"10":{"n":6}}},"c":101},{"i":377,"n":"Ngando","f":"Axel","p":"M","r":17,"s":{"g":"3","s":"53","n":"10","a":"5.35","d":"0.81","Sg":"2","Ss":"18","Sn":"3","Sa":"6","Sd":"0.71","Og":"3","Os":"53","On":"10","Oa":"5.35","Od":"0.81","Mp":"9","Ap":"1","p":{"3":{"n":5,"s":1},"7":{"n":6.5,"g":1,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":4.5,"s":1},"13":{"n":5},"15":{"n":5},"16":{"n":6.5,"g":1},"17":{"n":6.5,"g":1}}},"c":101},{"i":519,"n":"Arcus","f":"Carlens","p":"D","r":15,"s":{"s":"75","n":"15","a":"5.03","d":"0.56","Os":"75","On":"15","Oa":"5.03","Od":"0.56","Dp":"15","p":{"1":{"n":4.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":4},"15":{"n":5},"16":{"n":4.5}}},"c":101},{"i":561,"n":"Le Bihan","f":"Mickael","p":"A","r":12,"s":{"g":"2","s":"43","n":"9","a":"4.78","d":"1.44","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Og":"3","Os":"61","On":"13","Oa":"4.73","Od":"1.3","Ap":"13","p":{"1":{"n":5,"e":3921,"c":19},"3":{"n":4.5,"e":3905,"c":19,"s":1},"7":{"n":7.5,"g":1},"8":{"n":2.5},"11":{"n":4},"12":{"n":3.5},"14":{"n":4},"16":{"n":6,"g":1,"s":1},"17":{"n":6}}},"c":101},{"i":2689,"n":"Ndom","f":"Aly","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"18","On":"4","Oa":"4.63","Od":"0.41","Mp":"4","p":{"6":{"n":5,"s":1}}},"c":101},{"i":2869,"n":"Boucher","f":"Zacharie","p":"G","r":7,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"0.5","Gp":"2"},"c":101},{"i":2946,"n":"Sylvestre","f":"Eddy","p":"M","r":9,"s":{"g":"1","s":"35","n":"7","a":"5.07","d":"0.86","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"58","On":"12","Oa":"4.88","Od":"0.79","Mp":"9","Ap":"3","p":{"1":{"n":4.5,"e":3921,"c":19,"s":1},"7":{"n":7,"g":1},"8":{"n":4.5},"9":{"n":5.5,"s":1},"10":{"n":5,"s":1},"12":{"n":4.5},"17":{"n":4.5}}},"c":101},{"i":4859,"n":"Chergui","f":"Samir Sophian","p":"M","r":1,"s":{"n":0},"c":101},{"i":4923,"n":"Begraoui","f":"Yanis","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"4":{"n":4.5,"s":1}}},"c":101},{"i":4937,"n":"Marcelin","f":"Jean","p":"M","r":10,"s":{"s":"61","n":"12","a":"5.13","d":"0.58","Ss":"40","Sn":"8","Sa":"5.06","Sd":"0.58","Os":"61","On":"12","Oa":"5.13","Od":"0.58","Mp":"1","Dp":"11","p":{"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"8":{"n":4.5,"s":1},"10":{"n":6},"11":{"n":6},"12":{"n":5},"13":{"n":4.5},"14":{"n":5},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":5}}},"c":101},{"i":4949,"n":"Laiton","f":"Sonny","p":"G","r":1,"s":{"n":0},"c":101},{"i":4977,"n":"Merdji","f":"Yanis","p":"A","r":9,"s":{"g":"4","s":"64","n":"13","a":"4.92","d":"1.09","Og":"4","Os":"64","On":"13","Oa":"4.92","Od":"1.09","Ap":"13","p":{"1":{"n":3.5},"2":{"n":7.5,"g":2,"s":1},"3":{"n":4.5,"s":1},"4":{"n":6,"g":1,"s":1},"5":{"n":6.5,"g":1},"6":{"n":5},"7":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4,"s":1},"14":{"n":5,"s":1},"15":{"n":4}}},"c":101},{"i":5063,"n":"Youssouf","f":"Bendjaloud","p":"D","r":1,"s":{"n":0},"c":101},{"i":5070,"n":"Boto","f":"Kenji-Van","p":"D","r":3,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Os":"14","On":"3","Oa":"4.67","Od":"0.47","Dp":"3","p":{"7":{"n":5},"14":{"n":5,"s":1},"15":{"n":4,"s":1}}},"c":101},{"i":5087,"n":"Fumu Tamuzo","f":"Fran\u00e7ois-Xavier","p":"M","r":6,"s":{"n":0},"c":101},{"i":5102,"n":"Abdoul Ba","f":"","p":"D","r":1,"s":{"n":0},"c":101},{"i":5109,"n":"Sakhi","f":"Hamza","p":"M","r":12,"s":{"g":"1","s":"87","n":"16","a":"5.44","d":"0.88","Ss":"52","Sn":"10","Sa":"5.25","Sd":"0.4","Og":"1","Os":"87","On":"16","Oa":"5.44","Od":"0.88","Mp":"15","Ap":"1","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":8,"g":1},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":6},"14":{"n":5},"15":{"n":5.5,"s":1},"16":{"n":4.5},"17":{"n":5.5,"s":1}}},"c":101},{"i":5121,"n":"Ji Xiaoxuan","f":"","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"6":{"n":4.5,"s":1}}},"c":101},{"i":5137,"n":"Tour\u00e9","f":"Birama","p":"M","r":18,"s":{"s":"90","n":"16","a":"5.63","d":"0.76","Ss":"12","Sn":"2","Sa":"6","Os":"90","On":"16","Oa":"5.63","Od":"0.76","Mp":"16","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":4.5},"4":{"n":5},"5":{"n":6},"6":{"n":6.5},"7":{"n":6},"8":{"n":6},"9":{"n":4.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":6},"13":{"n":4.5},"14":{"n":6},"16":{"n":6},"17":{"n":6}}},"c":101},{"i":5151,"n":"Yattara","f":"Mohamed","p":"A","r":10,"s":{"g":"3","s":"50","n":"11","a":"4.59","d":"1.14","Og":"3","Os":"50","On":"11","Oa":"4.59","Od":"1.14","Ap":"11","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":3.5},"7":{"n":4.5,"s":1},"8":{"n":6,"g":1},"9":{"n":4},"10":{"n":7.5,"g":2},"11":{"n":4},"12":{"n":3.5},"13":{"n":4.5},"16":{"n":4}}},"c":101},{"i":5155,"n":"Bernard","f":"Quentin","p":"D","r":14,"s":{"g":"1","s":"82","n":"17","a":"4.85","d":"0.59","Sg":"1","Ss":"82","Sn":"17","Sa":"4.85","Sd":"0.59","Og":"1","Os":"82","On":"17","Oa":"4.85","Od":"0.59","Dp":"17","p":{"1":{"n":4},"2":{"n":5},"3":{"n":4.5},"4":{"n":4},"5":{"n":6},"6":{"n":5},"7":{"n":5.5},"8":{"n":5},"9":{"n":5,"g":1},"10":{"n":6},"11":{"n":5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":4},"17":{"n":5}}},"c":101},{"i":5171,"n":"Dugimont","f":"R\u00e9my","p":"A","r":10,"s":{"g":"5","s":"88","n":"16","a":"5.5","d":"1.12","Sg":"2","Ss":"50","Sn":"9","Sa":"5.56","Sd":"0.76","Og":"5","Os":"88","On":"16","Oa":"5.5","Od":"1.12","Mp":"7","Ap":"9","p":{"1":{"n":3.5},"2":{"n":4.5,"s":1},"3":{"n":4,"s":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":6.5,"g":1},"7":{"n":7.5,"g":1,"s":1},"9":{"n":6,"g":1,"s":1},"10":{"n":6},"11":{"n":6},"12":{"n":4.5,"s":1},"13":{"n":5.5},"14":{"n":7,"g":1},"15":{"n":5},"16":{"n":5.5},"17":{"n":4.5,"s":1}}},"c":101},{"i":5174,"n":"Barreto","f":"Michael","p":"M","r":15,"s":{"s":"88","n":"16","a":"5.53","d":"0.91","Ss":"20","Sn":"4","Sa":"5.13","Sd":"0.54","Os":"88","On":"16","Oa":"5.53","Od":"0.91","Mp":"15","Ap":"1","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":5},"4":{"n":6},"5":{"n":6},"6":{"n":6.5},"7":{"n":6.5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":6},"11":{"n":5},"12":{"n":3.5,"s":1},"14":{"n":6},"15":{"n":5},"16":{"n":4.5,"s":1},"17":{"n":5}}},"c":101},{"i":5192,"n":"Souprayen","f":"Samuel","p":"D","r":10,"s":{"s":"61","n":"12","a":"5.08","d":"0.98","Ss":"5","Sn":"1","Sa":"5.5","Os":"61","On":"12","Oa":"5.08","Od":"0.98","Dp":"12","p":{"1":{"n":4.5},"2":{"n":7.5},"3":{"n":3.5},"6":{"n":5},"8":{"n":4},"9":{"n":5},"10":{"n":6},"12":{"n":5.5},"13":{"n":5,"s":1},"14":{"n":5},"15":{"n":4.5},"17":{"n":5.5}}},"c":101},{"i":5352,"n":"Raux Yao","f":"Serge","p":"D","r":1,"s":{"n":0},"c":101},{"i":5369,"n":"Camara","f":"Ousoumane","p":"M","r":1,"s":{"n":0},"c":101},{"i":5378,"n":"Coeff","f":"Alexandre","p":"D","r":10,"s":{"s":"64","n":"13","a":"4.96","d":"0.6","Ss":"24","Sn":"5","Sa":"4.8","Sd":"0.68","Os":"64","On":"13","Oa":"4.96","Od":"0.6","Mp":"1","Dp":"12","p":{"2":{"n":5.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":6},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"11":{"n":5.5},"13":{"n":6},"14":{"n":4},"15":{"n":4.5},"16":{"n":4.5},"17":{"n":5}}},"c":101},{"i":5379,"n":"Sorgic","f":"Dejan","p":"A","r":6,"s":{"g":"1","s":"51","n":"11","a":"4.64","d":"0.61","Ss":"22","Sn":"5","Sa":"4.4","Sd":"0.2","Og":"1","Os":"51","On":"11","Oa":"4.64","Od":"0.61","Ap":"11","p":{"2":{"n":4.5},"3":{"n":4},"4":{"n":4},"5":{"n":5,"s":1},"6":{"n":6,"g":1,"s":1},"9":{"n":5.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4,"s":1},"17":{"n":4.5,"s":1}}},"c":101},{"i":245,"n":"Privat","f":"Sloan","p":"A","r":3,"s":{"s":"26","n":"6","a":"4.33","d":"0.24","Os":"26","On":"6","Oa":"4.33","Od":"0.24","Ap":"6","p":{"4":{"n":4,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5,"s":1}}},"c":102},{"i":371,"n":"Tour\u00e9","f":"Thomas","p":"A","r":10,"s":{"g":"2","s":"82","n":"16","a":"5.13","d":"0.99","Sg":"2","Ss":"72","Sn":"14","Sa":"5.14","Sd":"1.06","Og":"2","Os":"82","On":"16","Oa":"5.13","Od":"0.99","Mp":"13","Ap":"3","p":{"1":{"n":5,"s":1},"2":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"8":{"n":7,"g":1},"9":{"n":5},"10":{"n":7},"11":{"n":5,"s":1},"12":{"n":3.5},"13":{"n":4.5,"s":1},"14":{"n":7,"g":1},"15":{"n":4},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":102},{"i":385,"n":"Paye","f":"Pape","p":"D","r":10,"s":{"s":"63","n":"12","a":"5.25","d":"1.09","Os":"63","On":"12","Oa":"5.25","Od":"1.09","Dp":"12","p":{"3":{"n":5,"s":1},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":4.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":5},"13":{"n":6.5},"14":{"n":6},"15":{"n":3}}},"c":102},{"i":521,"n":"Kaabouni","f":"Younes","p":"M","r":15,"s":{"g":"1","s":"87","n":"16","a":"5.47","d":"0.96","Sg":"1","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.8","Og":"1","Os":"87","On":"16","Oa":"5.47","Od":"0.96","Mp":"16","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6},"4":{"n":4},"5":{"n":5.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6},"10":{"n":8},"12":{"n":4.5},"13":{"n":6},"14":{"n":6},"15":{"n":4},"16":{"n":5},"17":{"n":6,"g":1}}},"c":102},{"i":565,"n":"Livolant","f":"Jeremy","p":"M","r":17,"s":{"g":"1","s":"86","n":"15","a":"5.77","d":"1.03","Sg":"1","Ss":"68","Sn":"12","Sa":"5.67","Sd":"1.09","Og":"1","Os":"86","On":"15","Oa":"5.77","Od":"1.03","Mp":"15","p":{"1":{"n":5.5},"2":{"n":6,"s":1},"3":{"n":7},"6":{"n":5.5,"s":1},"7":{"n":5.5},"8":{"n":6},"9":{"n":7},"10":{"n":7},"11":{"n":5},"12":{"n":5},"13":{"n":7.5,"g":1},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":4.5},"17":{"n":6}}},"c":102},{"i":2155,"n":"Rocchia","f":"Christopher","p":"D","r":12,"s":{"g":"1","s":"60","n":"11","a":"5.5","d":"1.09","Sg":"1","Ss":"60","Sn":"11","Sa":"5.5","Sd":"1.09","Og":"1","Os":"65","On":"12","Oa":"5.46","Od":"1.05","Dp":"12","p":{"7":{"n":6},"8":{"n":6},"9":{"n":6.5},"10":{"n":7},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":6.5},"14":{"n":6,"g":1,"s":1},"15":{"n":3},"16":{"n":4.5},"17":{"n":5}}},"c":102},{"i":2622,"n":"Diop","f":"Sofiane","p":"M","r":7,"s":{"s":"35","n":"7","a":"5","d":"0.38","Ss":"5","Sn":"1","Sa":"5","Os":"43","On":"9","Oa":"4.78","Od":"0.58","Mp":"9","p":{"10":{"n":5,"s":1},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":5.5},"17":{"n":5,"s":1}}},"c":102},{"i":4870,"n":"Sans","f":"Romain","p":"D","r":1,"s":{"n":0},"c":102},{"i":4892,"n":"Umbdenstock","f":"Isaak","p":"M","r":1,"s":{"n":0},"c":102},{"i":4893,"n":"Moltenis","f":"Boris Sebastian","p":"D","r":1,"s":{"n":0},"c":102},{"i":4912,"n":"Ourega","f":"Fabien","p":"A","r":8,"s":{"g":"2","s":"38","n":"7","a":"5.43","d":"0.9","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Og":"2","Os":"38","On":"7","Oa":"5.43","Od":"0.9","Mp":"4","Ap":"3","p":{"1":{"n":5.5},"2":{"n":6.5,"g":1},"3":{"n":7,"g":1},"9":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":5}}},"c":102},{"i":4914,"n":"M'Bakata","f":"Salem","p":"D","r":8,"s":{"s":"45","n":"9","a":"5","d":"0.33","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"45","On":"9","Oa":"5","Od":"0.33","Dp":"9","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"6":{"n":5,"s":1},"7":{"n":5.5,"s":1},"10":{"n":5,"s":1},"16":{"n":4.5},"17":{"n":5.5}}},"c":102},{"i":4916,"n":"Glaentzlin","f":"Victor","p":"A","r":1,"s":{"g":"1","s":"23","n":"5","a":"4.7","d":"0.68","Og":"1","Os":"23","On":"5","Oa":"4.7","Od":"0.68","Ap":"5","p":{"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":6,"g":1}}},"c":102},{"i":4947,"n":"Lacroix","f":"Maxence","p":"D","r":8,"s":{"s":"60","n":"12","a":"5.04","d":"0.95","Os":"60","On":"12","Oa":"5.04","Od":"0.95","Dp":"12","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6.5},"6":{"n":4},"7":{"n":5},"11":{"n":5},"13":{"n":6.5},"14":{"n":4.5},"15":{"n":3},"16":{"n":5.5}}},"c":102},{"i":4986,"n":"Lasme","f":"Bryan","p":"A","r":3,"s":{"g":"1","s":"23","n":"5","a":"4.7","d":"0.81","Og":"1","Os":"23","On":"5","Oa":"4.7","Od":"0.81","Ap":"5","p":{"5":{"n":6,"g":1,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":5,"s":1},"12":{"n":3.5}}},"c":102},{"i":4988,"n":"Pendant","f":"Jason","p":"D","r":8,"s":{"s":"54","n":"11","a":"4.95","d":"0.72","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1","Os":"54","On":"11","Oa":"4.95","Od":"0.72","Dp":"11","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":4.5},"11":{"n":5.5},"13":{"n":5,"s":1},"14":{"n":6.5},"16":{"n":3.5,"s":1},"17":{"n":5.5}}},"c":102},{"i":5005,"n":"Weissbeck","f":"Gaetan","p":"M","r":10,"s":{"g":"2","s":"87","n":"16","a":"5.47","d":"0.8","Sg":"1","Ss":"44","Sn":"8","Sa":"5.5","Sd":"0.79","Og":"2","Os":"87","On":"16","Oa":"5.47","Od":"0.8","Mp":"15","Ap":"1","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6},"4":{"n":5},"5":{"n":7,"g":1},"6":{"n":4.5},"7":{"n":6},"8":{"n":5,"s":1},"10":{"n":6.5,"g":1,"s":1},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":7},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":5,"s":1}}},"c":102},{"i":5007,"n":"Senhadji","f":"Rayan","p":"D","r":1,"s":{"n":0},"c":102},{"i":5028,"n":"Prevot","f":"Maxence","p":"G","r":10,"s":{"s":"77","n":"14","a":"5.5","d":"1.22","Os":"77","On":"14","Oa":"5.5","Od":"1.22","Gp":"14","p":{"1":{"n":5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4},"7":{"n":6},"8":{"n":4.5},"9":{"n":7},"10":{"n":6.5},"11":{"n":6},"12":{"n":4},"13":{"n":7.5},"14":{"n":7.5},"15":{"n":4},"16":{"n":5}}},"c":102},{"i":5029,"n":"Long","f":"Aubin Pierre Joseph","p":"G","r":6,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5,"s":1}}},"c":102},{"i":5038,"n":"Francois","f":"Martin","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"5":{"n":5,"s":1}}},"c":102},{"i":5053,"n":"Daham","f":"Sofiane","p":"M","r":9,"s":{"g":"1","s":"64","n":"12","a":"5.33","d":"0.8","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"64","On":"12","Oa":"5.33","Od":"0.8","Mp":"12","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5},"5":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":7,"g":1,"s":1},"10":{"n":6},"11":{"n":4.5},"13":{"n":6.5},"14":{"n":5,"s":1},"17":{"n":6}}},"c":102},{"i":5067,"n":"Ati","f":"Lawrence","p":"G","r":12,"s":{"s":"20","n":"4","a":"5.13","d":"0.74","Ss":"10","Sn":"2","Sa":"5","Sd":"1","Os":"20","On":"4","Oa":"5.13","Od":"0.74","Gp":"4","p":{"2":{"n":5},"3":{"n":5.5},"16":{"n":4,"s":1},"17":{"n":6}}},"c":102},{"i":5076,"n":"Senzemba","f":"Nicolas","p":"D","r":1,"s":{"n":0},"c":102},{"i":5105,"n":"Di\u00e9dhiou","f":"Christophe","p":"D","r":10,"s":{"s":"73","n":"14","a":"5.21","d":"0.77","Os":"73","On":"14","Oa":"5.21","Od":"0.77","Dp":"14","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":6},"4":{"n":4.5},"5":{"n":6},"6":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":6},"10":{"n":6},"11":{"n":6},"12":{"n":5},"14":{"n":6},"15":{"n":4}}},"c":102},{"i":5159,"n":"San\u00e9","f":"Abdoulaye","p":"A","r":18,"s":{"g":"7","s":"72","n":"14","a":"5.14","d":"1.75","Ss":"13","Sn":"3","Sa":"4.33","Sd":"0.47","Og":"7","Os":"72","On":"14","Oa":"5.14","Od":"1.75","Ap":"14","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":4},"4":{"n":3.5},"5":{"n":7,"g":1},"6":{"n":3.5},"7":{"n":4},"8":{"n":8,"g":2},"9":{"n":7,"g":1},"10":{"n":9,"g":3},"11":{"n":4.5},"15":{"n":4,"s":1},"16":{"n":4},"17":{"n":5}}},"c":102},{"i":5195,"n":"Tope Obadeyi","f":"","p":"M","r":1,"s":{"n":0},"c":102},{"i":5347,"n":"Sitti","f":"Melvin","p":"M","r":8,"s":{"s":"44","n":"9","a":"4.89","d":"0.66","Ss":"4","Sn":"1","Sa":"4","Os":"44","On":"9","Oa":"4.89","Od":"0.66","Mp":"9","p":{"2":{"n":5.5},"3":{"n":6},"4":{"n":4},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":5},"17":{"n":4}}},"c":102},{"i":5372,"n":"Thioune","f":"Ousseynou","p":"M","r":11,"s":{"s":"64","n":"12","a":"5.38","d":"1.46","Os":"64","On":"12","Oa":"5.38","Od":"1.46","Mp":"12","p":{"4":{"n":5,"s":1},"5":{"n":7},"6":{"n":3.5},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":3.5},"13":{"n":8},"14":{"n":6.5},"15":{"n":3.5},"16":{"n":4}}},"c":102},{"i":5380,"n":"Sissoko","f":"Mohamed","p":"M","r":1,"s":{"n":0},"c":102},{"i":5974,"n":"Ntolla","f":"Natanael","p":"A","r":1,"s":{"n":0},"c":102},{"i":6182,"n":"Ndiaye","f":"Rassoul","p":"M","r":1,"s":{"n":0},"c":102},{"i":6186,"n":"Teikeu","f":"Adolphe","p":"D","r":10,"s":{"s":"40","n":"8","a":"5","d":"0.75","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.47","Os":"40","On":"8","Oa":"5","Od":"0.75","Dp":"8","p":{"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"12":{"n":3.5},"13":{"n":5},"15":{"n":4.5,"s":1},"16":{"n":4.5},"17":{"n":5.5}}},"c":102},{"i":399,"n":"L\u00e9v\u00eaque","f":"Dorian","p":"D","r":3,"s":{"s":"16","n":"4","a":"4.13","d":"1.14","Os":"16","On":"4","Oa":"4.13","Od":"1.14","Dp":"4","p":{"3":{"n":3.5},"4":{"n":4},"6":{"n":6},"7":{"n":3}}},"c":103},{"i":429,"n":"Musavu-King","f":"Yrondu","p":"D","r":10,"s":{"s":"51","n":"11","a":"4.64","d":"0.77","Ss":"42","Sn":"9","Sa":"4.72","Sd":"0.75","Os":"51","On":"11","Oa":"4.64","Od":"0.77","Dp":"11","p":{"6":{"n":5,"s":1},"7":{"n":3.5},"9":{"n":3.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":5},"17":{"n":4.5}}},"c":103},{"i":554,"n":"Maziz","f":"Youssef","p":"M","r":10,"s":{"g":"2","s":"48","n":"9","a":"5.33","d":"1.22","Sg":"1","Ss":"21","Sn":"4","Sa":"5.38","Sd":"0.96","Og":"2","Os":"48","On":"9","Oa":"5.33","Od":"1.22","Mp":"9","p":{"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":8,"g":1},"14":{"n":5},"15":{"n":7,"s":1},"16":{"n":5,"g":1},"17":{"n":4.5}}},"c":103},{"i":1412,"n":"Manzala","f":"Harrison","p":"A","r":7,"s":{"s":"29","n":"6","a":"4.83","d":"0.55","Ss":"4","Sn":"1","Sa":"4.5","Os":"38","On":"8","Oa":"4.81","Od":"0.5","Mp":"5","Ap":"3","p":{"1":{"n":4.5,"s":1},"3":{"n":6},"4":{"n":4.5},"5":{"n":5,"s":1},"7":{"n":4.5},"17":{"n":4.5}}},"c":103},{"i":1422,"n":"Fofana","f":"Guessouma","p":"M","r":10,"s":{"g":"1","s":"45","n":"9","a":"5.06","d":"0.83","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.24","Og":"1","Os":"55","On":"11","Oa":"5.05","Od":"0.75","Mp":"11","p":{"3":{"n":4.5,"e":5040,"c":14,"s":1},"9":{"n":4},"10":{"n":5.5},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":5.5},"15":{"n":4.5},"16":{"n":5},"17":{"n":4.5}}},"c":103},{"i":1443,"n":"Confais","f":"Alois","p":"M","r":10,"s":{"g":"1","s":"66","n":"14","a":"4.71","d":"0.94","Og":"1","Os":"66","On":"14","Oa":"4.71","Od":"0.94","Mp":"6","Dp":"8","p":{"2":{"n":3.5},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":5,"g":1},"7":{"n":3},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":6.5},"13":{"n":6},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":4.5}}},"c":103},{"i":1456,"n":"Gope-Fenepej","f":"Georges","p":"A","r":7,"s":{"g":"3","s":"34","n":"6","a":"5.75","d":"0.85","Og":"3","Os":"34","On":"6","Oa":"5.75","Od":"0.85","Mp":"4","Ap":"2","p":{"11":{"n":6,"g":1},"12":{"n":4.5,"s":1},"13":{"n":7,"g":1},"14":{"n":5.5,"s":1},"15":{"n":6.5,"g":1},"16":{"n":5,"s":1}}},"c":103},{"i":4852,"n":"Duponchelle","f":"Tom","p":"D","r":9,"s":{"s":"45","n":"10","a":"4.55","d":"0.96","Ss":"4","Sn":"1","Sa":"4.5","Os":"45","On":"10","Oa":"4.55","Od":"0.96","Dp":"10","p":{"1":{"n":4.5,"s":1},"3":{"n":4.5},"4":{"n":4},"6":{"n":6},"7":{"n":3},"8":{"n":3.5},"12":{"n":6},"13":{"n":5.5},"15":{"n":4},"17":{"n":4.5}}},"c":103},{"i":4907,"n":"Patron","f":"Pierre","p":"G","r":14,"s":{"s":"28","n":"5","a":"5.7","d":"1.08","Ss":"28","Sn":"5","Sa":"5.7","Sd":"1.08","Os":"28","On":"5","Oa":"5.7","Od":"1.08","Gp":"5","p":{"13":{"n":7},"14":{"n":6.5},"15":{"n":4},"16":{"n":5},"17":{"n":6}}},"c":103},{"i":4960,"n":"Moussiti-Oko","f":"Bevic","p":"A","r":10,"s":{"g":"1","s":"79","n":"17","a":"4.68","d":"0.86","Sg":"1","Ss":"79","Sn":"17","Sa":"4.68","Sd":"0.86","Og":"1","Os":"79","On":"17","Oa":"4.68","Od":"0.86","Ap":"17","p":{"1":{"n":6,"g":1},"2":{"n":4},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":6},"7":{"n":5},"8":{"n":4},"9":{"n":3.5},"10":{"n":6},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":4,"s":1},"15":{"n":6},"16":{"n":5,"s":1},"17":{"n":4}}},"c":103},{"i":4971,"n":"Diagne","f":"Ousseynou Cavin","p":"M","r":2,"s":{"n":0},"c":103},{"i":5017,"n":"Diarra","f":"St\u00e9phane","p":"A","r":8,"s":{"g":"2","s":"80","n":"16","a":"5.03","d":"0.93","Ss":"33","Sn":"7","Sa":"4.71","Sd":"0.36","Og":"2","Os":"80","On":"16","Oa":"5.03","Od":"0.93","Mp":"10","Ap":"6","p":{"1":{"n":5.5},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":6},"5":{"n":6},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":7.5,"g":2},"9":{"n":4},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":4.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":4},"17":{"n":5,"s":1}}},"c":103},{"i":5052,"n":"Dasquet","f":"Thomas","p":"D","r":3,"s":{"s":"19","n":"5","a":"3.9","d":"1.28","Os":"19","On":"5","Oa":"3.9","Od":"1.28","Dp":"5","p":{"4":{"n":4},"5":{"n":4,"s":1},"6":{"n":6},"7":{"n":2},"8":{"n":3.5}}},"c":103},{"i":5054,"n":"Ebosse","f":"Enzo","p":"D","r":9,"s":{"s":"39","n":"9","a":"4.33","d":"0.67","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"39","On":"9","Oa":"4.33","Od":"0.67","Dp":"9","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":5,"s":1},"5":{"n":4},"8":{"n":3},"9":{"n":4.5},"14":{"n":5.5},"16":{"n":4},"17":{"n":4.5}}},"c":103},{"i":5078,"n":"Lemonnier","f":"Pierre","p":"D","r":13,"s":{"s":"78","n":"16","a":"4.91","d":"0.99","Ss":"51","Sn":"10","Sa":"5.15","Sd":"1.1","Os":"78","On":"16","Oa":"4.91","Od":"0.99","Dp":"16","p":{"1":{"n":4},"2":{"n":4},"3":{"n":4},"4":{"n":5},"5":{"n":4.5},"6":{"n":5.5},"8":{"n":3},"9":{"n":4.5},"10":{"n":6.5},"11":{"n":4.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":4},"16":{"n":6},"17":{"n":5}}},"c":103},{"i":5095,"n":"Boissier","f":"Remy","p":"M","r":5,"s":{"s":"46","n":"10","a":"4.65","d":"0.92","Os":"46","On":"10","Oa":"4.65","Od":"0.92","Mp":"10","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":6},"4":{"n":3},"6":{"n":5.5},"8":{"n":4},"9":{"n":3.5},"10":{"n":5},"12":{"n":5,"s":1},"13":{"n":5}}},"c":103},{"i":5115,"n":"Bo\u00e9-Kane","f":"Yann","p":"M","r":13,"s":{"g":"1","s":"83","n":"17","a":"4.91","d":"0.94","Sg":"1","Ss":"83","Sn":"17","Sa":"4.91","Sd":"0.94","Og":"1","Os":"83","On":"17","Oa":"4.91","Od":"0.94","Mp":"16","Dp":"1","p":{"1":{"n":5},"2":{"n":4},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":4.5},"8":{"n":3.5},"9":{"n":5,"s":1},"10":{"n":6},"11":{"n":4},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":5.5},"16":{"n":5},"17":{"n":5}}},"c":103},{"i":5139,"n":"Hafidi","f":"Hamza","p":"M","r":10,"s":{"s":"49","n":"10","a":"4.95","d":"0.79","Ss":"6","Sn":"1","Sa":"6.5","Os":"49","On":"10","Oa":"4.95","Od":"0.79","Mp":"10","p":{"1":{"n":5},"2":{"n":3.5},"5":{"n":4},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":5.5},"13":{"n":5,"s":1},"14":{"n":4.5},"15":{"n":5},"17":{"n":6.5}}},"c":103},{"i":5144,"n":"Vardin","f":"Alexandre","p":"D","r":3,"s":{"s":"34","n":"7","a":"4.86","d":"0.35","Os":"34","On":"7","Oa":"4.86","Od":"0.35","Dp":"7","p":{"1":{"n":5},"2":{"n":4.5},"3":{"n":5},"5":{"n":4.5},"7":{"n":5.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4.5}}},"c":103},{"i":5177,"n":"Julienne","f":"Frank","p":"A","r":5,"s":{"s":"35","n":"8","a":"4.38","d":"0.48","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Os":"35","On":"8","Oa":"4.38","Od":"0.48","Ap":"8","p":{"1":{"n":4.5,"s":1},"2":{"n":3.5},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5,"s":1},"16":{"n":5,"s":1},"17":{"n":4,"s":1}}},"c":103},{"i":5184,"n":"Cr\u00e9hin","f":"Vincent Kevin","p":"A","r":12,"s":{"g":"5","s":"82","n":"16","a":"5.13","d":"0.76","Og":"5","Os":"82","On":"16","Oa":"5.13","Od":"0.76","Ap":"16","p":{"1":{"n":5.5},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1},"4":{"n":5,"g":1},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":6,"g":1,"s":1},"8":{"n":5},"9":{"n":4.5,"s":1},"10":{"n":7,"g":1},"11":{"n":4},"12":{"n":4.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":5.5,"g":1,"s":1},"16":{"n":4.5}}},"c":103},{"i":5193,"n":"Yohann Thuram","f":"","p":"G","r":9,"s":{"s":"36","n":"8","a":"4.56","d":"1.04","Os":"36","On":"8","Oa":"4.56","Od":"1.04","Gp":"8","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":6.5},"7":{"n":3.5},"8":{"n":3}}},"c":103},{"i":5208,"n":"Vincent","f":"St\u00e9phen","p":"A","r":3,"s":{"s":"44","n":"10","a":"4.45","d":"0.57","Os":"44","On":"10","Oa":"4.45","Od":"0.57","Mp":"7","Dp":"3","p":{"1":{"n":4},"2":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":4},"6":{"n":5,"s":1},"7":{"n":3.5},"8":{"n":4.5},"9":{"n":4.5,"s":1},"10":{"n":5.5},"11":{"n":4}}},"c":103},{"i":5213,"n":"Aymes","f":"J\u00e9r\u00e9my","p":"G","r":4,"s":{"s":"23","n":"4","a":"5.75","d":"0.9","Os":"23","On":"4","Oa":"5.75","Od":"0.9","Gp":"4","p":{"9":{"n":4.5},"10":{"n":6},"11":{"n":5.5},"12":{"n":7}}},"c":103},{"i":5345,"n":"Rambaud","f":"Thibault","p":"A","r":1,"s":{"n":0},"c":103},{"i":6236,"n":"Kante","f":"Aboubakary","p":"A","r":7,"s":{"g":"1","s":"48","n":"10","a":"4.8","d":"0.68","Sg":"1","Ss":"48","Sn":"10","Sa":"4.8","Sd":"0.68","Og":"1","Os":"48","On":"10","Oa":"4.8","Od":"0.68","Mp":"2","Ap":"8","p":{"8":{"n":5,"s":1},"9":{"n":4},"10":{"n":4.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":5,"s":1},"14":{"n":4},"15":{"n":6.5,"g":1,"s":1},"16":{"n":5},"17":{"n":4.5,"s":1}}},"c":103},{"i":6255,"n":"Guiet","f":"Corentin","p":"D","r":1,"s":{"n":0},"c":103},{"i":16,"n":"Moukandjo","f":"Benjamin","p":"A","r":7,"s":{"s":"9","n":"2","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"15":{"n":4.5,"s":1},"17":{"n":4.5,"s":1}}},"c":104},{"i":81,"n":"Cahuzac","f":"Yannick","p":"M","r":14,"s":{"s":"73","n":"14","a":"5.21","d":"0.82","Og":"1","Os":"146","On":"29","Oa":"5.05","Od":"0.98","Mp":"24","Dp":"4","Ap":"1","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"4":{"n":4.5,"s":1},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":7},"9":{"n":5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":5.5},"15":{"n":6.5},"16":{"n":3.5}}},"c":104},{"i":92,"n":"Leca","f":"Jean-Louis","p":"G","r":21,"s":{"s":"90","n":"16","a":"5.63","d":"1.18","Ss":"90","Sn":"16","Sa":"5.63","Sd":"1.18","Os":"90","On":"16","Oa":"5.63","Od":"1.18","Gp":"16","p":{"2":{"n":6},"3":{"n":6},"4":{"n":2.5},"5":{"n":5.5},"6":{"n":4},"7":{"n":6.5},"8":{"n":6},"9":{"n":5},"10":{"n":4.5},"11":{"n":6},"12":{"n":7.5},"13":{"n":6.5},"14":{"n":5},"15":{"n":6},"16":{"n":7},"17":{"n":6}}},"c":104},{"i":175,"n":"Gillet","f":"Guillaume","p":"M","r":22,"s":{"g":"2","s":"89","n":"16","a":"5.59","d":"0.83","Sg":"1","Ss":"63","Sn":"11","Sa":"5.77","Sd":"0.72","Og":"2","Os":"89","On":"16","Oa":"5.59","Od":"0.83","Mp":"16","p":{"1":{"n":4.5},"2":{"n":7},"3":{"n":5},"4":{"n":5,"g":1},"5":{"n":4.5},"7":{"n":5,"s":1},"8":{"n":6},"9":{"n":4},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":7,"g":1},"16":{"n":5.5},"17":{"n":6}}},"c":104},{"i":237,"n":"Mesloub","f":"Walid","p":"M","r":7,"s":{"s":"29","n":"6","a":"4.92","d":"0.19","Ss":"5","Sn":"1","Sa":"5","Os":"29","On":"6","Oa":"4.92","Od":"0.19","Mp":"6","p":{"2":{"n":5,"s":1},"3":{"n":4.5},"5":{"n":5,"s":1},"7":{"n":5,"s":1},"10":{"n":5,"s":1},"17":{"n":5,"s":1}}},"c":104},{"i":373,"n":"Tahrat","f":"Mehdi","p":"D","r":18,"s":{"n":0},"c":104},{"i":481,"n":"Michelin","f":"Clement","p":"D","r":15,"s":{"g":"1","s":"81","n":"15","a":"5.43","d":"0.91","Sg":"1","Ss":"58","Sn":"10","Sa":"5.8","Sd":"0.75","Og":"1","Os":"81","On":"15","Oa":"5.43","Od":"0.91","Mp":"8","Dp":"7","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4},"5":{"n":4},"8":{"n":6.5},"9":{"n":6,"g":1},"10":{"n":5},"11":{"n":5.5},"12":{"n":5,"s":1},"13":{"n":6.5},"14":{"n":5},"15":{"n":7},"16":{"n":5},"17":{"n":6.5}}},"c":104},{"i":488,"n":"Vincensini","f":"Thomas","p":"G","r":1,"s":{"s":"5","n":"1","a":"5.5","Os":"5","On":"1","Oa":"5.5","Gp":"1","p":{"1":{"n":5.5}}},"c":104},{"i":1208,"n":"Steven Fortes","f":"","p":"D","r":4,"s":{"s":"36","n":"7","a":"5.14","d":"0.91","Os":"36","On":"7","Oa":"5.14","Od":"0.91","Dp":"7","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":4},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":6}}},"c":104},{"i":1518,"n":"Massadio Haidara","f":"","p":"D","r":8,"s":{"g":"1","s":"57","n":"11","a":"5.23","d":"0.69","Og":"1","Os":"57","On":"11","Oa":"5.23","Od":"0.69","Mp":"8","Dp":"3","p":{"6":{"n":4.5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":7,"g":1},"16":{"n":4.5}}},"c":104},{"i":2687,"n":"Keita","f":"Jules","p":"A","r":5,"s":{"s":"17","n":"4","a":"4.38","d":"0.22","Ss":"4","Sn":"1","Sa":"4","Os":"38","On":"9","Oa":"4.28","Od":"0.25","Mp":"1","Ap":"8","p":{"1":{"n":4.5,"e":3923,"c":7,"s":1},"2":{"n":4.5,"e":3917,"c":7,"s":1},"3":{"n":4.5,"e":3901,"c":7},"17":{"n":4,"s":1}}},"c":104},{"i":2710,"n":"Gradit","f":"Jonathan","p":"D","r":15,"s":{"s":"60","n":"11","a":"5.5","d":"0.56","Ss":"11","Sn":"2","Sa":"5.5","Oao":"1","Os":"147","On":"29","Oa":"5.07","Od":"0.99","Dp":"29","p":{"1":{"n":5,"e":5065,"c":5},"2":{"n":4.5,"e":5057,"c":5},"6":{"n":6},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"10":{"n":6},"11":{"n":6},"12":{"n":4.5},"16":{"n":5.5,"s":1},"17":{"n":5.5}}},"c":104},{"i":2722,"n":"Cheick Traor\u00e9","f":"","p":"D","r":7,"s":{"s":"33","n":"7","a":"4.71","d":"0.36","Os":"92","On":"20","Oa":"4.6","Od":"0.66","Mp":"3","Dp":"17","p":{"5":{"n":4.5,"s":1},"6":{"n":4},"7":{"n":5},"12":{"n":4.5},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":104},{"i":4865,"n":"Ducrocq","f":"Tom","p":"M","r":1,"s":{"n":0},"c":104},{"i":4898,"n":"Simon","f":"Nsana","p":"M","r":1,"s":{"n":0},"c":104},{"i":4926,"n":"Gomel","f":"Benjamin","p":"A","r":1,"s":{"n":0},"c":104},{"i":4943,"n":"Bari","f":"Bilal","p":"A","r":2,"s":{"n":0},"c":104},{"i":4944,"n":"Doucoure","f":"Cheick Oumar","p":"M","r":11,"s":{"s":"53","n":"10","a":"5.3","d":"0.78","Ss":"34","Sn":"6","Sa":"5.67","Sd":"0.8","Os":"53","On":"10","Oa":"5.3","Od":"0.78","Mp":"6","Dp":"4","p":{"6":{"n":4.5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":6},"14":{"n":5.5},"15":{"n":6},"16":{"n":4.5},"17":{"n":7}}},"c":104},{"i":4965,"n":"Robail","f":"Ga\u00ebtan","p":"M","r":23,"s":{"g":"5","s":"82","n":"15","a":"5.5","d":"1.3","Sg":"3","Ss":"31","Sn":"5","Sa":"6.2","Sd":"1.12","Og":"5","Os":"82","On":"15","Oa":"5.5","Od":"1.3","Mp":"6","Ap":"9","p":{"1":{"n":5},"2":{"n":8,"g":1},"3":{"n":5},"4":{"n":5.5},"5":{"n":4},"6":{"n":4.5,"s":1},"8":{"n":4},"9":{"n":6},"10":{"n":6,"g":1,"s":1},"11":{"n":3.5},"13":{"n":5},"14":{"n":8,"g":2},"15":{"n":6.5},"16":{"n":5},"17":{"n":6.5,"g":1}}},"c":104},{"i":4983,"n":"Teka","f":"Seif","p":"D","r":3,"s":{"s":"16","n":"3","a":"5.33","d":"0.62","Os":"16","On":"3","Oa":"5.33","Od":"0.62","Dp":"3","p":{"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5}}},"c":104},{"i":4997,"n":"Beghin","f":"Guillaume","p":"M","r":1,"s":{"n":0},"c":104},{"i":5000,"n":"Wojtkowiak","f":"Valentin","p":"D","r":1,"s":{"n":0},"c":104},{"i":5003,"n":"Radovanovic","f":"Aleksandar","p":"D","r":13,"s":{"g":"2","s":"49","n":"9","a":"5.5","d":"1","Og":"2","Os":"49","On":"9","Oa":"5.5","Od":"1","Dp":"9","p":{"8":{"n":5.5},"9":{"n":6.5,"g":1},"10":{"n":6.5,"g":1},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":3}}},"c":104},{"i":5013,"n":"Desprez","f":"Didier","p":"G","r":7,"s":{"n":0},"c":104},{"i":5019,"n":"Mendy","f":"Arial","p":"D","r":8,"s":{"s":"36","n":"7","a":"5.21","d":"1.03","Ss":"6","Sn":"1","Sa":"6","Os":"36","On":"7","Oa":"5.21","Od":"1.03","Mp":"2","Dp":"5","p":{"2":{"n":6.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":4},"8":{"n":5},"14":{"n":5.5,"s":1},"17":{"n":6}}},"c":104},{"i":5030,"n":"Banza","f":"Simon","p":"A","r":17,"s":{"g":"6","s":"88","n":"17","a":"5.21","d":"1.02","Sg":"6","Ss":"88","Sn":"17","Sa":"5.21","Sd":"1.02","Og":"6","Os":"88","On":"17","Oa":"5.21","Od":"1.02","Ap":"17","p":{"1":{"n":6,"s":1},"2":{"n":5},"3":{"n":5,"s":1},"4":{"n":4},"5":{"n":4},"6":{"n":6,"g":1,"s":1},"7":{"n":5,"s":1},"8":{"n":6,"g":1,"s":1},"9":{"n":4.5,"s":1},"10":{"n":6,"g":1,"s":1},"11":{"n":4.5,"s":1},"12":{"n":5.5},"13":{"n":4,"s":1},"14":{"n":4.5},"15":{"n":6,"g":1},"16":{"n":4.5},"17":{"n":8,"g":2}}},"c":104},{"i":5040,"n":"Vitor Costa","f":"","p":"D","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":104},{"i":5050,"n":"Souleymane Diarra","f":"","p":"M","r":17,"s":{"n":0},"c":104},{"i":5061,"n":"Sotoca","f":"Florian","p":"A","r":16,"s":{"g":"3","s":"85","n":"16","a":"5.34","d":"1.07","Og":"3","Os":"85","On":"16","Oa":"5.34","Od":"1.07","Mp":"4","Ap":"12","p":{"1":{"n":7.5,"g":1},"2":{"n":6.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5},"8":{"n":6.5},"9":{"n":5},"10":{"n":6.5,"g":1},"11":{"n":4},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":7,"g":1},"16":{"n":4.5}}},"c":104},{"i":5074,"n":"Mauricio","f":"Tony","p":"M","r":19,"s":{"g":"4","s":"86","n":"16","a":"5.38","d":"0.86","Ss":"15","Sn":"3","Sa":"5","Sd":"0.41","Og":"4","Os":"86","On":"16","Oa":"5.38","Od":"0.86","Mp":"8","Ap":"8","p":{"1":{"n":5},"2":{"n":5},"3":{"n":6,"g":1,"s":1},"4":{"n":4},"5":{"n":4.5},"6":{"n":6,"g":1},"7":{"n":6,"g":1},"8":{"n":6},"9":{"n":5},"10":{"n":7},"11":{"n":5},"12":{"n":4.5},"13":{"n":7,"g":1},"15":{"n":5.5,"s":1},"16":{"n":5,"s":1},"17":{"n":4.5}}},"c":104},{"i":5083,"n":"Madri","f":"Mouaad","p":"A","r":1,"s":{"n":0},"c":104},{"i":5176,"n":"Perez","f":"Manuel","p":"M","r":9,"s":{"s":"56","n":"11","a":"5.14","d":"0.53","Ss":"6","Sn":"1","Sa":"6","Os":"56","On":"11","Oa":"5.14","Od":"0.53","Mp":"11","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":4},"6":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5.5,"s":1},"17":{"n":6}}},"c":104},{"i":5228,"n":"Sylla","f":"Moussa","p":"D","r":4,"s":{"n":0},"c":104},{"i":5346,"n":"Sene","f":"Cheikh Cory","p":"D","r":1,"s":{"n":0},"c":104},{"i":5360,"n":"Boli","f":"Charles","p":"M","r":4,"s":{"s":"33","n":"6","a":"5.5","d":"0.5","Os":"33","On":"6","Oa":"5.5","Od":"0.5","Mp":"3","Ap":"3","p":{"5":{"n":6,"s":1},"6":{"n":5},"7":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":5,"s":1}}},"c":104},{"i":5366,"n":"Valencia","f":"Jader","p":"A","r":1,"s":{"n":0},"c":104},{"i":6188,"n":"Diallo","f":"Zakaria","p":"D","r":15,"s":{"s":"71","n":"13","a":"5.5","d":"0.73","Ss":"71","Sn":"13","Sa":"5.5","Sd":"0.73","Os":"71","On":"13","Oa":"5.5","Od":"0.73","Dp":"13","p":{"5":{"n":4},"6":{"n":4.5},"7":{"n":6},"8":{"n":6},"9":{"n":5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":6},"15":{"n":6.5},"16":{"n":4.5},"17":{"n":6}}},"c":104},{"i":6327,"n":"Lemaire","f":"Corentin","p":"A","r":1,"s":{"n":0},"c":104},{"i":473,"n":"Maisonnial","f":"Anthony","p":"G","r":15,"s":{"s":"52","n":"9","a":"5.83","d":"0.97","Ss":"52","Sn":"9","Sa":"5.83","Sd":"0.97","Os":"52","On":"9","Oa":"5.83","Od":"0.97","Gp":"9","p":{"9":{"n":5.5,"e":4984,"c":2},"10":{"n":6,"e":4975,"c":2},"11":{"n":7,"e":4961,"c":2},"12":{"n":4.5,"e":4954,"c":2},"13":{"n":6.5,"e":4943,"c":2},"14":{"n":6,"e":4934,"c":2},"15":{"n":7,"e":4926,"c":2},"16":{"n":6,"e":4914,"c":2},"17":{"n":4,"e":4901,"c":2}}},"c":107},{"i":4835,"n":"Mangonzo","f":"Jeremy","p":"M","r":1,"s":{"n":0},"c":107},{"i":4836,"n":"Hugonet","f":"Jean","p":"D","r":1,"s":{"n":0},"c":107},{"i":4837,"n":"Matoug","f":"Sami","p":"M","r":1,"s":{"n":0},"c":107},{"i":4866,"n":"Abdeldjelil","f":"Oussama","p":"A","r":9,"s":{"s":"50","n":"12","a":"4.21","d":"0.72","Ss":"17","Sn":"4","Sa":"4.25","Sd":"0.25","Os":"50","On":"12","Oa":"4.21","Od":"0.72","Ap":"12","p":{"1":{"n":4,"e":5067,"c":2},"3":{"n":5,"e":5044,"c":2},"4":{"n":5.5,"e":5036,"c":2},"6":{"n":4.5,"e":5016,"c":2,"s":1},"7":{"n":4.5,"e":5002,"c":2,"s":1},"8":{"n":2.5,"e":4995,"c":2,"s":1},"11":{"n":4,"e":4961,"c":2},"12":{"n":3.5,"e":4954,"c":2,"s":1},"14":{"n":4.5,"e":4934,"c":2},"15":{"n":4,"e":4926,"c":2,"s":1},"16":{"n":4.5,"e":4914,"c":2,"s":1},"17":{"n":4,"e":4901,"c":2}}},"c":107},{"i":4885,"n":"Wamangituka Fundu","f":"Silas","p":"A","r":25,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Ap":"2","p":{"1":{"n":5,"e":5067,"c":2,"s":1},"2":{"n":5,"e":5053,"c":2}}},"c":107},{"i":4913,"n":"Kant\u00e9","f":"Ousmane","p":"D","r":12,"s":{"g":"2","s":"77","n":"16","a":"4.84","d":"1.23","Sg":"2","Ss":"52","Sn":"10","Sa":"5.2","Sd":"1.35","Og":"2","Os":"77","On":"16","Oa":"4.84","Od":"1.23","Dp":"16","p":{"1":{"n":3,"e":5067,"c":2},"2":{"n":5,"e":5053,"c":2},"3":{"n":4,"e":5044,"c":2},"4":{"n":4.5,"e":5036,"c":2},"5":{"n":5,"e":5018,"c":2},"6":{"n":4,"e":5016,"c":2},"8":{"n":4.5,"e":4995,"c":2},"9":{"n":5,"e":4984,"c":2,"s":1},"10":{"n":5.5,"e":4975,"c":2},"11":{"n":7.5,"e":4961,"c":2,"g":1},"12":{"n":4,"e":4954,"c":2},"13":{"n":4.5,"e":4943,"c":2},"14":{"n":6,"e":4934,"c":2},"15":{"n":7.5,"e":4926,"c":2,"g":1},"16":{"n":4,"e":4914,"c":2},"17":{"n":3.5,"e":4901,"c":2}}},"c":107},{"i":4927,"n":"Tanasijevic","f":"Strahinja","p":"D","r":1,"s":{"n":0},"c":107},{"i":4942,"n":"Bamba","f":"Axel","p":"D","r":10,"s":{"g":"2","s":"63","n":"13","a":"4.85","d":"1.13","Sg":"1","Ss":"39","Sn":"8","Sa":"4.88","Sd":"1.34","Og":"2","Os":"63","On":"13","Oa":"4.85","Od":"1.13","Mp":"3","Dp":"10","p":{"1":{"n":4,"e":5067,"c":2},"2":{"n":6,"e":5053,"c":2,"g":1},"3":{"n":4.5,"e":5044,"c":2},"4":{"n":4.5,"e":5036,"c":2},"5":{"n":5,"e":5018,"c":2},"10":{"n":5,"e":4975,"c":2},"11":{"n":5.5,"e":4961,"c":2},"12":{"n":3,"e":4954,"c":2},"13":{"n":5.5,"e":4943,"c":2},"14":{"n":7,"e":4934,"c":2,"g":1},"15":{"n":6,"e":4926,"c":2},"16":{"n":4,"e":4914,"c":2},"17":{"n":3,"e":4901,"c":2}}},"c":107},{"i":5023,"n":"Mandouki","f":"Cyril","p":"M","r":17,"s":{"s":"86","n":"17","a":"5.09","d":"1.02","Ss":"86","Sn":"17","Sa":"5.09","Sd":"1.02","Os":"86","On":"17","Oa":"5.09","Od":"1.02","Mp":"13","Dp":"4","p":{"1":{"n":3.5,"e":5067,"c":2},"2":{"n":5,"e":5053,"c":2},"3":{"n":5,"e":5044,"c":2},"4":{"n":4,"e":5036,"c":2},"5":{"n":5.5,"e":5018,"c":2},"6":{"n":4.5,"e":5016,"c":2},"7":{"n":6,"e":5002,"c":2},"8":{"n":4.5,"e":4995,"c":2},"9":{"n":3.5,"e":4984,"c":2},"10":{"n":6,"e":4975,"c":2},"11":{"n":7,"e":4961,"c":2},"12":{"n":5,"e":4954,"c":2},"13":{"n":5.5,"e":4943,"c":2},"14":{"n":5,"e":4934,"c":2},"15":{"n":7,"e":4926,"c":2},"16":{"n":5.5,"e":4914,"c":2},"17":{"n":4,"e":4901,"c":2}}},"c":107},{"i":5042,"n":"Yohou","f":"Samuel","p":"D","r":11,"s":{"s":"68","n":"15","a":"4.57","d":"1","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.31","Os":"68","On":"15","Oa":"4.57","Od":"1","Dp":"15","p":{"1":{"n":3.5,"e":5067,"c":2},"3":{"n":4.5,"e":5044,"c":2},"4":{"n":4,"e":5036,"c":2},"5":{"n":4.5,"e":5018,"c":2,"s":1},"6":{"n":3,"e":5016,"c":2},"7":{"n":6,"e":5002,"c":2},"8":{"n":4.5,"e":4995,"c":2},"9":{"n":4,"e":4984,"c":2},"10":{"n":5,"e":4975,"c":2},"11":{"n":5.5,"e":4961,"c":2},"12":{"n":4,"e":4954,"c":2},"13":{"n":6,"e":4943,"c":2},"15":{"n":6.5,"e":4926,"c":2},"16":{"n":4,"e":4914,"c":2},"17":{"n":3.5,"e":4901,"c":2}}},"c":107},{"i":5068,"n":"Sarr","f":"Adama","p":"A","r":2,"s":{"s":"37","n":"8","a":"4.69","d":"0.35","Os":"37","On":"8","Oa":"4.69","Od":"0.35","Mp":"1","Ap":"7","p":{"2":{"n":4.5,"e":5053,"c":2,"s":1},"3":{"n":4.5,"e":5044,"c":2,"s":1},"4":{"n":5,"e":5036,"c":2,"s":1},"5":{"n":4.5,"e":5018,"c":2},"6":{"n":5,"e":5016,"c":2,"s":1},"7":{"n":5,"e":5002,"c":2},"8":{"n":4,"e":4995,"c":2},"13":{"n":5,"e":4943,"c":2,"s":1}}},"c":107},{"i":5132,"n":"Dilo","f":"Christopher","p":"G","r":1,"s":{"n":0},"c":107},{"i":5136,"n":"Maletic","f":"Marko","p":"A","r":3,"s":{"s":"18","n":"4","a":"4.63","d":"0.22","Ss":"4","Sn":"1","Sa":"4.5","Os":"18","On":"4","Oa":"4.63","Od":"0.22","Ap":"4","p":{"1":{"n":4.5,"e":5067,"c":2,"s":1},"2":{"n":5,"e":5053,"c":2,"s":1},"13":{"n":4.5,"e":4943,"c":2,"s":1},"17":{"n":4.5,"e":4901,"c":2,"s":1}}},"c":107},{"i":5138,"n":"Lopez","f":"Julien","p":"M","r":9,"s":{"s":"68","n":"14","a":"4.89","d":"0.97","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"68","On":"14","Oa":"4.89","Od":"0.97","Mp":"14","p":{"1":{"n":4,"e":5067,"c":2},"2":{"n":5.5,"e":5053,"c":2},"3":{"n":7,"e":5044,"c":2},"4":{"n":5,"e":5036,"c":2},"5":{"n":4.5,"e":5018,"c":2},"6":{"n":4,"e":5016,"c":2},"7":{"n":5.5,"e":5002,"c":2,"s":1},"8":{"n":5,"e":4995,"c":2},"10":{"n":5.5,"e":4975,"c":2},"11":{"n":5,"e":4961,"c":2},"12":{"n":3,"e":4954,"c":2},"13":{"n":6,"e":4943,"c":2},"16":{"n":4,"e":4914,"c":2},"17":{"n":4.5,"e":4901,"c":2,"s":1}}},"c":107},{"i":5146,"n":"Nomenjanahary","f":"Lala\u00efna","p":"M","r":9,"s":{"s":"66","n":"13","a":"5.12","d":"1.04","Ss":"3","Sn":"1","Sa":"3.5","Os":"66","On":"13","Oa":"5.12","Od":"1.04","Mp":"11","Dp":"1","Ap":"1","p":{"2":{"n":6,"e":5053,"c":2},"3":{"n":6,"e":5044,"c":2},"4":{"n":5.5,"e":5036,"c":2},"5":{"n":4.5,"e":5018,"c":2},"6":{"n":4.5,"e":5016,"c":2},"7":{"n":6,"e":5002,"c":2},"8":{"n":5,"e":4995,"c":2},"9":{"n":5,"e":4984,"c":2},"12":{"n":3,"e":4954,"c":2},"13":{"n":5,"e":4943,"c":2},"14":{"n":5.5,"e":4934,"c":2},"15":{"n":7,"e":4926,"c":2},"17":{"n":3.5,"e":4901,"c":2}}},"c":107},{"i":5173,"n":"Demarconnay","f":"Vincent","p":"G","r":7,"s":{"s":"34","n":"8","a":"4.31","d":"1.03","Os":"34","On":"8","Oa":"4.31","Od":"1.03","Gp":"8","p":{"1":{"n":3,"e":5067,"c":2},"2":{"n":4,"e":5053,"c":2},"3":{"n":3,"e":5044,"c":2},"4":{"n":5,"e":5036,"c":2},"5":{"n":5.5,"e":5018,"c":2},"6":{"n":4,"e":5016,"c":2},"7":{"n":6,"e":5002,"c":2},"8":{"n":4,"e":4995,"c":2}}},"c":107},{"i":5181,"n":"Martin","f":"Florian","p":"M","r":3,"s":{"s":"32","n":"7","a":"4.64","d":"0.58","Os":"32","On":"7","Oa":"4.64","Od":"0.58","Mp":"7","p":{"1":{"n":4,"e":5067,"c":2},"2":{"n":5,"e":5053,"c":2},"3":{"n":5.5,"e":5044,"c":2},"4":{"n":4,"e":5036,"c":2},"7":{"n":5,"e":5002,"c":2,"s":1},"9":{"n":4,"e":4984,"c":2},"13":{"n":5,"e":4943,"c":2,"s":1}}},"c":107},{"i":5209,"n":"Armand","f":"Romain","p":"A","r":16,"s":{"g":"5","s":"69","n":"14","a":"4.93","d":"1.55","Sg":"3","Ss":"30","Sn":"6","Sa":"5.08","Sd":"1.57","Og":"5","Os":"69","On":"14","Oa":"4.93","Od":"1.55","Mp":"5","Ap":"9","p":{"1":{"n":3.5,"e":5067,"c":2},"2":{"n":5.5,"e":5053,"c":2},"3":{"n":7,"e":5044,"c":2,"g":1},"4":{"n":4.5,"e":5036,"c":2},"5":{"n":4,"e":5018,"c":2},"6":{"n":2,"e":5016,"c":2},"9":{"n":6,"e":4984,"c":2,"g":1},"10":{"n":6,"e":4975,"c":2},"12":{"n":7.5,"e":4954,"c":2,"g":2},"13":{"n":4,"e":4943,"c":2},"14":{"n":4,"e":4934,"c":2},"15":{"n":7,"e":4926,"c":2,"g":1},"16":{"n":3.5,"e":4914,"c":2},"17":{"n":4.5,"e":4901,"c":2,"s":1}}},"c":107},{"i":5220,"n":"Pitroipa","f":"Jonathan","p":"A","r":7,"s":{"s":"65","n":"14","a":"4.64","d":"0.74","Os":"65","On":"14","Oa":"4.64","Od":"0.74","Mp":"9","Ap":"5","p":{"1":{"n":3.5,"e":5067,"c":2},"2":{"n":4.5,"e":5053,"c":2},"3":{"n":4.5,"e":5044,"c":2},"4":{"n":6,"e":5036,"c":2},"5":{"n":4.5,"e":5018,"c":2},"6":{"n":3.5,"e":5016,"c":2},"7":{"n":5.5,"e":5002,"c":2},"8":{"n":3.5,"e":4995,"c":2},"9":{"n":5,"e":4984,"c":2,"s":1},"10":{"n":5.5,"e":4975,"c":2},"11":{"n":4.5,"e":4961,"c":2,"s":1},"12":{"n":5,"e":4954,"c":2,"s":1},"14":{"n":5,"e":4934,"c":2,"s":1},"15":{"n":4.5,"e":4926,"c":2,"s":1}}},"c":107},{"i":5344,"n":"Tre","f":"Jason","p":"D","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"2":{"n":4,"e":5053,"c":2}}},"c":107},{"i":5354,"n":"Garcia","f":"Thomas","p":"D","r":1,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"11":{"n":5,"e":4961,"c":2,"s":1}}},"c":107},{"i":5368,"n":"Abdi","f":"Ali","p":"D","r":4,"s":{"s":"40","n":"9","a":"4.5","d":"0.62","Os":"40","On":"9","Oa":"4.5","Od":"0.62","Mp":"1","Dp":"8","p":{"5":{"n":4,"e":5018,"c":2},"6":{"n":4,"e":5016,"c":2},"7":{"n":5,"e":5002,"c":2},"8":{"n":4,"e":4995,"c":2},"9":{"n":3.5,"e":4984,"c":2},"10":{"n":5,"e":4975,"c":2,"s":1},"11":{"n":5.5,"e":4961,"c":2},"14":{"n":5,"e":4934,"c":2,"s":1},"15":{"n":4.5,"e":4926,"c":2,"s":1}}},"c":107},{"i":5371,"n":"Alceus","f":"Bryan","p":"M","r":1,"s":{"s":"19","n":"4","a":"4.75","d":"0.25","Os":"19","On":"4","Oa":"4.75","Od":"0.25","Mp":"4","p":{"2":{"n":5,"e":5053,"c":2,"s":1},"3":{"n":4.5,"e":5044,"c":2,"s":1},"4":{"n":4.5,"e":5036,"c":2,"s":1},"5":{"n":5,"e":5018,"c":2,"s":1}}},"c":107},{"i":5976,"n":"Essimi","f":"Marco","p":"A","r":1,"s":{"n":0},"c":107},{"i":6258,"n":"Rabiu","f":"Mohammed","p":"M","r":8,"s":{"s":"31","n":"6","a":"5.17","d":"0.62","Os":"31","On":"6","Oa":"5.17","Od":"0.62","Mp":"6","p":{"9":{"n":4.5,"e":4984,"c":2},"10":{"n":6,"e":4975,"c":2},"11":{"n":5,"e":4961,"c":2},"12":{"n":4.5,"e":4954,"c":2},"13":{"n":5,"e":4943,"c":2},"14":{"n":6,"e":4934,"c":2}}},"c":107}],"c":{"5":{"n":"Caen","rn":"SM Caen","cn":"SM-Caen","a":"CAE","l":4,"el":1017,"s":{"p":20},"nM":4895,"nMWC":"0.7034","pM":{"8":4989,"9":4981,"10":4969,"11":4959,"12":4954,"13":4939,"14":4928,"15":4919,"16":4911,"17":4904,"4":5029,"5":5024,"6":5009,"7":5007,"1":5065,"2":5057,"3":5038},"DMI":[]},"6":{"n":"Lorient","rn":"FC Lorient","cn":"FC-Lorient","a":"LOR","l":4,"el":1089,"s":{"p":36},"nM":4893,"nMWC":"0.6998","pM":{"2":5057,"4":5033,"5":5023,"6":5013,"7":5000,"8":4992,"12":4951,"13":4945,"14":4932,"15":4920,"16":4913,"9":4979,"10":4972,"11":4964,"1":5067,"3":5042,"17":4900},"DMI":[]},"14":{"n":"Guingamp","rn":"EA Guingamp","cn":"EA-Guingamp","a":"GIN","l":4,"el":1014,"s":{"p":24},"nM":4891,"nMWC":"0.4498","pM":{"16":4911,"6":5013,"1":5061,"2":5056,"3":5040,"4":5028,"5":5021,"7":5001,"8":4996,"11":4965,"12":4949,"13":4940,"14":4930,"15":4922,"17":4901,"10":4970,"9":4982},"DMI":[]},"17":{"n":"Nancy","rn":"AS Nancy Lorraine","cn":"AS-Nancy-Lorraine","a":"NAN","l":4,"el":1025,"s":{"p":23},"nM":4894,"nMWC":"0.5630","pM":{"17":4904,"3":5042,"7":5001,"1":5062,"2":5055,"5":5026,"6":5014,"8":4993,"13":4944,"4":5034,"9":4980,"11":4958,"12":4952,"14":4933,"15":4921,"16":4914,"10":4973},"DMI":[]},"43":{"n":"Troyes","rn":"ESTAC Troyes","cn":"ESTAC-Troyes","a":"TRO","l":4,"el":1049,"s":{"p":32},"nM":4891,"nMWC":"0.5502","pM":{"7":5007,"12":4951,"4":5031,"14":4933,"1":5063,"2":5054,"3":5046,"5":5027,"6":5010,"8":4988,"9":4987,"11":4967,"13":4947,"15":4927,"17":4902,"10":4975,"16":4916},"DMI":[]},"88":{"n":"Ajaccio","rn":"AC Ajaccio","cn":"AC-Ajaccio","a":"ACA","l":4,"el":1097,"s":{"p":33},"nM":4888,"nMWC":"0.5058","pM":{"3":5038,"1":5058,"2":5050,"4":5030,"10":4972,"14":4930,"11":4958,"5":5018,"6":5008,"7":4998,"8":4991,"9":4978,"12":4956,"13":4938,"15":4918,"16":4909,"17":4899},"DMI":[]},"89":{"n":"Le Havre","rn":"Le Havre AC","cn":"Le-Havre-AC","a":"HAC","l":4,"el":1058,"s":{"p":28},"nM":4890,"nMWC":"0.5658","pM":{"6":5009,"1":5058,"11":4964,"15":4922,"5":5022,"13":4944,"3":5046,"2":5051,"4":5032,"7":5002,"8":4994,"9":4983,"10":4968,"12":4957,"14":4936,"16":4915,"17":4906},"DMI":[]},"90":{"n":"Chambly","rn":"FC Chambly Oise","cn":"FC-Chambly-Oise","a":"FCCO","l":4,"el":850,"s":{"p":16},"nM":4889,"nMWC":"0.4584","pM":{"4":5029,"9":4979,"13":4940,"3":5039,"8":4993,"15":4927,"16":4909,"10":4971,"11":4960,"7":4999,"12":4955,"14":4929,"1":5059,"2":5052,"5":5019,"6":5016,"17":4903},"DMI":[]},"91":{"n":"Valenciennes","rn":"Valentiennes FC","cn":"Valentiennes-FC","a":"VFC","l":4,"el":1000,"s":{"p":24},"nM":4897,"nMWC":"0.6172","pM":{"11":4959,"5":5021,"2":5055,"13":4947,"9":4978,"12":4957,"1":5059,"3":5041,"4":5037,"6":5017,"7":5006,"8":4997,"10":4977,"14":4937,"15":4925,"16":4917,"17":4898},"DMI":[]},"92":{"n":"Clermont","rn":"Clermont Foot 63","cn":"Clermont-Foot-63","a":"CF63","l":4,"el":1012,"s":{"p":26},"nM":4890,"nMWC":"0.4342","pM":{"7":5000,"12":4949,"3":5047,"9":4980,"2":5054,"15":4918,"14":4929,"6":5017,"4":5035,"5":5020,"8":4995,"10":4976,"11":4962,"13":4942,"16":4910,"17":4907,"1":5060},"DMI":[]},"93":{"n":"Ch\u00e2teauroux","rn":"Berrichonne de Ch\u00e2teauroux","cn":"Berrichonne-de-Chateauroux","a":"BCH","l":4,"el":981,"s":{"p":18},"nM":4894,"nMWC":"0.4370","pM":{"10":4969,"4":5030,"15":4920,"6":5010,"9":4983,"5":5019,"14":4937,"1":5060,"2":5049,"3":5043,"8":4990,"11":4961,"12":4953,"13":4941,"16":4912,"17":4905,"7":5003},"DMI":[]},"94":{"n":"Grenoble","rn":"Grenoble Foot 38","cn":"Grenoble-Foot-38","a":"GF38","l":4,"el":1012,"s":{"p":22},"nM":4896,"nMWC":"0.4899","pM":{"9":4981,"2":5050,"16":4913,"1":5061,"3":5039,"4":5031,"5":5022,"15":4921,"10":4977,"17":4907,"8":4990,"7":5004,"11":4963,"14":4931,"6":5011,"12":4948,"13":4943},"DMI":[]},"97":{"n":"Orl\u00e9ans","rn":"US Orl\u00e9ans Loiret","cn":"US-Orleans-Loiret","a":"USOL","l":4,"el":817,"s":{"p":10},"nM":4892,"nMWC":"0.3923","pM":{"13":4939,"17":4900,"3":5040,"1":5062,"9":4987,"7":4998,"8":4994,"2":5052,"15":4925,"4":5035,"12":4953,"11":4963,"5":5025,"6":5015,"10":4974,"14":4934,"16":4908},"DMI":[]},"98":{"n":"Niort","rn":"Chamois Niortais FC","cn":"Chamois-Niortais-FC","a":"CNFC","l":4,"el":879,"s":{"p":17},"nM":4889,"nMWC":"0.5416","pM":{"5":5024,"14":4932,"11":4965,"10":4973,"1":5063,"17":4899,"2":5051,"8":4997,"16":4910,"3":5043,"7":5004,"6":5015,"12":4950,"13":4946,"15":4924,"9":4985,"4":5036},"DMI":[]},"100":{"n":"Rodez","rn":"Rodez Aveyron Football","cn":"Rodez-Aveyron-Football","a":"RAF","l":4,"el":867,"s":{"p":18},"nM":4895,"nMWC":"0.2966","pM":{"8":4992,"10":4970,"6":5014,"17":4902,"13":4938,"16":4915,"12":4955,"4":5037,"11":4962,"2":5049,"5":5025,"15":4924,"1":5064,"3":5044,"7":5005,"9":4986,"14":4935},"DMI":[]},"101":{"n":"Auxerre","rn":"AJ Auxerre","cn":"AJ-Auxerre","a":"AJA","l":4,"el":942,"s":{"p":19},"nM":4893,"nMWC":"0.3002","pM":{"14":4928,"4":5028,"8":4988,"6":5008,"10":4968,"7":4999,"17":4898,"5":5020,"13":4941,"12":4948,"16":4908,"9":4985,"1":5064,"2":5048,"3":5045,"11":4966,"15":4926},"DMI":[]},"102":{"n":"Sochaux","rn":"FC Sochaux-Montb\u00e9liard","cn":"FC-Sochaux-Montbeliard","a":"FCSM","l":4,"el":1019,"s":{"p":26},"nM":4896,"nMWC":"0.5101","pM":{"1":5065,"4":5033,"8":4996,"5":5026,"16":4916,"12":4956,"14":4936,"11":4960,"7":5006,"10":4976,"17":4905,"13":4946,"9":4986,"3":5045,"2":5053,"6":5012,"15":4923},"DMI":[]},"103":{"n":"Le Mans","rn":"Le Mans FC","cn":"Le-Mans-FC","a":"LMFC","l":4,"el":893,"s":{"p":14},"nM":4892,"nMWC":"0.6077","pM":{"15":4919,"5":5023,"9":4982,"1":5066,"4":5034,"11":4967,"8":4991,"17":4906,"10":4971,"3":5041,"13":4942,"16":4912,"14":4931,"12":4950,"7":5005,"2":5048,"6":5012},"DMI":[]},"104":{"n":"Lens","rn":"Racing Club de Lens","cn":"Racing-Club-de-Lens","a":"RCL","l":4,"el":1093,"s":{"p":34},"nM":4888,"nMWC":"0.4942","pM":{"8":4989,"13":4945,"2":5056,"1":5066,"3":5047,"12":4952,"5":5027,"4":5032,"17":4903,"16":4917,"7":5003,"6":5011,"10":4974,"14":4935,"11":4966,"15":4923,"9":4984},"DMI":[]},"107":{"n":"Paris FC","rn":"Paris FC","cn":"Paris-FC","a":"PFC","l":4,"el":917,"s":{"p":15},"nM":4897,"nMWC":"0.3828","pM":{"12":4954,"1":5067,"17":4901,"16":4914,"10":4975,"5":5018,"7":5002,"6":5016,"8":4995,"11":4961,"13":4943,"14":4934,"4":5036,"3":5044,"15":4926,"2":5053,"9":4984},"DMI":[]}},"op":{"7":{"n":"Dijon","l":1,"el":1025},"4":{"n":"Saint-\u00c9tienne","l":1,"el":1109},"10":{"n":"Toulouse","l":1,"el":851},"2":{"n":"Paris","l":1,"el":1251,"s":{"p":1}},"67":{"n":"N\u00eemes","l":1,"el":938},"19":{"n":"Nice","l":1,"el":1067},"42":{"n":"Amiens","l":1,"el":993},"9":{"n":"Marseille","l":1,"el":1225},"3":{"n":"Bordeaux","l":1,"el":1076}},"e":{"4989":{"d":8,"dB":"2019-09-21T13:00:00Z","t1s":0,"t2s":2,"t1":5,"t2":104},"4981":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":1,"t2s":0,"t1":94,"t2":5},"4969":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":1,"t2s":1,"t1":5,"t2":93},"4959":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":0,"t1":5,"t2":91},"4954":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":2,"t2s":4,"t1":107,"t2":5},"4939":{"d":13,"dB":"2019-11-01T19:00:00Z","t1s":2,"t2s":1,"t1":5,"t2":97},"4928":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":1,"t2s":1,"t1":101,"t2":5},"4919":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":3,"t2s":3,"t1":5,"t2":103},"4911":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":5},"4904":{"d":17,"dB":"2019-12-02T19:45:00Z","t1s":1,"t2s":0,"t1":5,"t2":17},"5029":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":0,"t2s":0,"t1":5,"t2":90},"5024":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":1,"t2s":1,"t1":98,"t2":5},"5009":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":0,"t2s":3,"t1":5,"t2":89},"5007":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":2,"t2s":1,"t1":43,"t2":5},"5065":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":0,"t1":102,"t2":5},"5057":{"d":2,"dB":"2019-08-05T18:45:00Z","t1s":1,"t2s":2,"t1":5,"t2":6},"5038":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":2,"t1":88,"t2":5},"3923":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":1,"t2s":2,"t1":7,"t2":4},"3917":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":1,"t2s":0,"t1":10,"t2":7},"5058":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":2,"t1":88,"t2":89},"5050":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":1,"t1":94,"t2":88},"5030":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":0,"t2s":1,"t1":93,"t2":88},"5033":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":1,"t2s":0,"t1":6,"t2":102},"5023":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":6},"5013":{"d":6,"dB":"2019-08-31T13:00:00Z","t1s":0,"t2s":1,"t1":6,"t2":14},"5000":{"d":7,"dB":"2019-09-14T12:45:00Z","t1s":0,"t2s":2,"t1":92,"t2":6},"4992":{"d":8,"dB":"2019-09-23T18:45:00Z","t1s":2,"t2s":1,"t1":6,"t2":100},"4951":{"d":12,"dB":"2019-10-26T13:00:00Z","t1s":0,"t2s":1,"t1":6,"t2":43},"4945":{"d":13,"dB":"2019-11-02T14:00:00Z","t1s":1,"t2s":0,"t1":104,"t2":6},"4932":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":4,"t2s":1,"t1":6,"t2":98},"4920":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":1,"t2s":3,"t1":93,"t2":6},"4913":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":2,"t2s":1,"t1":6,"t2":94},"4979":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":0,"t2s":1,"t1":90,"t2":6},"4972":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":0,"t2s":0,"t1":6,"t2":88},"4964":{"d":11,"dB":"2019-10-19T13:00:00Z","t1s":2,"t2s":2,"t1":89,"t2":6},"5067":{"d":1,"dB":"2019-07-29T18:45:00Z","t1s":3,"t2s":0,"t1":6,"t2":107},"5042":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":1,"t1":17,"t2":6},"4900":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":0,"t2s":4,"t1":97,"t2":6},"5061":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":3,"t1":14,"t2":94},"5056":{"d":2,"dB":"2019-08-03T14:30:00Z","t1s":2,"t2s":0,"t1":104,"t2":14},"5040":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":0,"t1":14,"t2":97},"5028":{"d":4,"dB":"2019-08-19T18:45:00Z","t1s":2,"t2s":2,"t1":101,"t2":14},"5021":{"d":5,"dB":"2019-08-26T18:45:00Z","t1s":0,"t2s":1,"t1":14,"t2":91},"5001":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":1,"t2s":1,"t1":14,"t2":17},"4996":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":3,"t2s":1,"t1":102,"t2":14},"4965":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":0,"t1":98,"t2":14},"4949":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":1,"t2s":2,"t1":14,"t2":92},"4940":{"d":13,"dB":"2019-11-01T19:00:00Z","t1s":1,"t2s":5,"t1":90,"t2":14},"4930":{"d":14,"dB":"2019-11-09T13:45:00Z","t1s":1,"t2s":1,"t1":14,"t2":88},"4922":{"d":15,"dB":"2019-11-25T19:45:00Z","t1s":4,"t2s":0,"t1":89,"t2":14},"4901":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":0,"t2s":3,"t1":107,"t2":14},"4970":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":4,"t2s":1,"t1":14,"t2":100},"4982":{"d":9,"dB":"2019-09-30T18:45:00Z","t1s":3,"t2s":0,"t1":14,"t2":103},"3927":{"d":1,"dB":"2019-08-11T19:00:00Z","t1s":3,"t2s":0,"t1":2,"t2":67},"3913":{"d":2,"dB":"2019-08-17T18:00:00Z","t1s":1,"t2s":2,"t1":67,"t2":19},"5066":{"d":1,"dB":"2019-07-27T13:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":104},"5047":{"d":3,"dB":"2019-08-10T13:00:00Z","t1s":1,"t2s":1,"t1":92,"t2":104},"5039":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":0,"t2s":0,"t1":90,"t2":94},"5031":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":1,"t2s":1,"t1":94,"t2":43},"5022":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":3,"t2s":1,"t1":89,"t2":94},"5062":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":0,"t1":17,"t2":97},"5055":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":91,"t2":17},"5026":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":3,"t2s":0,"t1":102,"t2":17},"5014":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":1,"t2s":1,"t1":17,"t2":100},"4993":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":3,"t2s":0,"t1":17,"t2":90},"4944":{"d":13,"dB":"2019-11-04T19:45:00Z","t1s":1,"t2s":1,"t1":89,"t2":17},"5034":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":2,"t2s":1,"t1":17,"t2":103},"4980":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":2,"t2s":2,"t1":92,"t2":17},"4958":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":0,"t1":88,"t2":17},"4952":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":0,"t2s":0,"t1":17,"t2":104},"4933":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":0,"t2s":0,"t1":17,"t2":43},"4921":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":1,"t2s":1,"t1":94,"t2":17},"4914":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":2,"t2s":0,"t1":17,"t2":107},"4973":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":2,"t2s":1,"t1":17,"t2":98},"5063":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":0,"t2s":2,"t1":98,"t2":43},"5054":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":2,"t1":43,"t2":92},"5046":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":2,"t1":43,"t2":89},"5027":{"d":5,"dB":"2019-08-24T13:00:00Z","t1s":2,"t2s":0,"t1":43,"t2":104},"5010":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":0,"t2s":1,"t1":93,"t2":43},"4988":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":1,"t2s":2,"t1":101,"t2":43},"4987":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":1,"t2s":2,"t1":43,"t2":97},"4967":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":2,"t2s":1,"t1":43,"t2":103},"4947":{"d":13,"dB":"2019-11-01T19:00:00Z","t1s":1,"t2s":0,"t1":43,"t2":91},"4927":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":0,"t2s":4,"t1":43,"t2":90},"4902":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":1,"t2s":0,"t1":43,"t2":100},"4975":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":1,"t2s":0,"t1":107,"t2":43},"4916":{"d":16,"dB":"2019-11-30T13:30:00Z","t1s":0,"t2s":1,"t1":102,"t2":43},"3921":{"d":1,"dB":"2019-08-10T18:00:00Z","t1s":2,"t2s":1,"t1":19,"t2":42},"3905":{"d":3,"dB":"2019-08-28T19:00:00Z","t1s":1,"t2s":2,"t1":19,"t2":9},"5018":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":1,"t2s":0,"t1":88,"t2":107},"5008":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":3,"t2s":1,"t1":101,"t2":88},"4998":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":0,"t2s":0,"t1":88,"t2":97},"4991":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":2,"t2s":4,"t1":103,"t2":88},"4978":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":2,"t2s":0,"t1":88,"t2":91},"4956":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":0,"t2s":2,"t1":102,"t2":88},"4938":{"d":13,"dB":"2019-11-01T19:00:00Z","t1s":1,"t2s":0,"t1":88,"t2":100},"4918":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":1,"t2s":1,"t1":88,"t2":92},"4909":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":0,"t2s":2,"t1":90,"t2":88},"4899":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":0,"t2s":1,"t1":98,"t2":88},"5051":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":89,"t2":98},"5032":{"d":4,"dB":"2019-08-17T13:00:00Z","t1s":1,"t2s":3,"t1":104,"t2":89},"5002":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":0,"t2s":0,"t1":89,"t2":107},"4994":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":2,"t2s":2,"t1":97,"t2":89},"4983":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":0,"t2s":1,"t1":89,"t2":93},"4968":{"d":10,"dB":"2019-10-05T12:45:00Z","t1s":2,"t2s":0,"t1":101,"t2":89},"4957":{"d":12,"dB":"2019-10-28T19:45:00Z","t1s":0,"t2s":0,"t1":91,"t2":89},"4936":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":2,"t2s":0,"t1":102,"t2":89},"4915":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":1,"t2s":2,"t1":100,"t2":89},"4906":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":2,"t2s":0,"t1":89,"t2":103},"4971":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":1,"t2s":0,"t1":103,"t2":90},"4960":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":0,"t1":90,"t2":102},"4999":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":1,"t2s":4,"t1":90,"t2":101},"4955":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":2,"t2s":0,"t1":100,"t2":90},"4929":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":0,"t2s":1,"t1":90,"t2":92},"5059":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":1,"t2s":0,"t1":90,"t2":91},"5052":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":90},"5019":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":0,"t2s":0,"t1":90,"t2":93},"5016":{"d":6,"dB":"2019-09-02T17:00:00Z","t1s":0,"t2s":3,"t1":107,"t2":90},"4903":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":3,"t2s":0,"t1":104,"t2":90},"5041":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":91},"5037":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":1,"t2s":0,"t1":91,"t2":100},"5017":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":1,"t2s":0,"t1":91,"t2":92},"5006":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":0,"t2s":0,"t1":102,"t2":91},"4997":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":1,"t2s":1,"t1":91,"t2":98},"4977":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":0,"t2s":2,"t1":91,"t2":94},"4937":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":0,"t2s":1,"t1":91,"t2":93},"4925":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":91},"4917":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":2,"t2s":0,"t1":91,"t2":104},"4898":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":1,"t2s":1,"t1":101,"t2":91},"5035":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":92},"5020":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":1,"t2s":1,"t1":92,"t2":101},"4995":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":0,"t2s":2,"t1":107,"t2":92},"4976":{"d":10,"dB":"2019-10-04T18:00:00Z","t1s":4,"t2s":0,"t1":102,"t2":92},"4962":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":1,"t1":92,"t2":100},"4942":{"d":13,"dB":"2019-11-02T14:00:00Z","t1s":0,"t2s":1,"t1":92,"t2":103},"4910":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":1,"t2s":0,"t1":92,"t2":98},"4907":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":1,"t2s":1,"t1":94,"t2":92},"5060":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":3,"t2s":0,"t1":92,"t2":93},"5049":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":0,"t2s":0,"t1":93,"t2":100},"5043":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":3,"t2s":0,"t1":98,"t2":93},"4990":{"d":8,"dB":"2019-09-20T18:00:00Z","t1s":1,"t2s":1,"t1":93,"t2":94},"4961":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":1,"t1":93,"t2":107},"4953":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":1,"t2s":1,"t1":97,"t2":93},"4941":{"d":13,"dB":"2019-11-01T19:00:00Z","t1s":1,"t2s":0,"t1":93,"t2":101},"4912":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":1,"t2s":2,"t1":103,"t2":93},"4905":{"d":17,"dB":"2019-12-03T20:00:00Z","t1s":1,"t2s":1,"t1":93,"t2":102},"5003":{"d":7,"dB":"2019-09-16T18:45:00Z","t1s":1,"t2s":0,"t1":104,"t2":93},"5004":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":0,"t2s":1,"t1":98,"t2":94},"4963":{"d":11,"dB":"2019-10-18T18:00:00Z","t1s":0,"t2s":0,"t1":94,"t2":97},"4931":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":0,"t2s":0,"t1":103,"t2":94},"5011":{"d":6,"dB":"2019-09-02T18:45:00Z","t1s":2,"t2s":2,"t1":94,"t2":104},"4948":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":0,"t2s":1,"t1":101,"t2":94},"4943":{"d":13,"dB":"2019-11-02T14:00:00Z","t1s":0,"t2s":0,"t1":94,"t2":107},"5025":{"d":5,"dB":"2019-08-23T18:00:00Z","t1s":3,"t2s":3,"t1":100,"t2":97},"5015":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":98},"4974":{"d":10,"dB":"2019-10-07T18:45:00Z","t1s":1,"t2s":4,"t1":97,"t2":104},"4934":{"d":14,"dB":"2019-11-08T19:00:00Z","t1s":0,"t2s":1,"t1":97,"t2":107},"4908":{"d":16,"dB":"2019-11-29T19:00:00Z","t1s":2,"t2s":2,"t1":101,"t2":97},"4950":{"d":12,"dB":"2019-10-25T18:00:00Z","t1s":1,"t2s":0,"t1":103,"t2":98},"4946":{"d":13,"dB":"2019-11-02T14:00:00Z","t1s":0,"t2s":2,"t1":98,"t2":102},"4924":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":2,"t2s":1,"t1":98,"t2":100},"4985":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":2,"t2s":2,"t1":98,"t2":101},"5036":{"d":4,"dB":"2019-08-16T18:00:00Z","t1s":0,"t2s":1,"t1":107,"t2":98},"5064":{"d":1,"dB":"2019-07-26T18:00:00Z","t1s":2,"t2s":0,"t1":100,"t2":101},"5044":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":2,"t2s":1,"t1":100,"t2":107},"5005":{"d":7,"dB":"2019-09-13T18:00:00Z","t1s":4,"t2s":1,"t1":100,"t2":103},"4986":{"d":9,"dB":"2019-09-27T18:00:00Z","t1s":0,"t2s":2,"t1":100,"t2":102},"4935":{"d":14,"dB":"2019-11-11T19:45:00Z","t1s":1,"t2s":2,"t1":100,"t2":104},"5048":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":2,"t2s":0,"t1":101,"t2":103},"5045":{"d":3,"dB":"2019-08-09T18:00:00Z","t1s":1,"t2s":0,"t1":102,"t2":101},"4966":{"d":11,"dB":"2019-10-21T18:45:00Z","t1s":0,"t2s":0,"t1":104,"t2":101},"4926":{"d":15,"dB":"2019-11-22T19:00:00Z","t1s":2,"t2s":0,"t1":107,"t2":101},"5053":{"d":2,"dB":"2019-08-02T18:00:00Z","t1s":1,"t2s":1,"t1":107,"t2":102},"5012":{"d":6,"dB":"2019-08-30T18:00:00Z","t1s":2,"t2s":0,"t1":103,"t2":102},"4923":{"d":15,"dB":"2019-11-23T14:00:00Z","t1s":4,"t2s":0,"t1":104,"t2":102},"4984":{"d":9,"dB":"2019-09-28T12:45:00Z","t1s":2,"t2s":1,"t1":104,"t2":107},"3901":{"d":3,"dB":"2019-08-24T18:00:00Z","t1s":0,"t2s":2,"t1":7,"t2":3}},"Ne":{"4895":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":100,"t2":5},"4893":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":6,"t2":101},"4891":{"d":18,"dB":"2019-12-16T19:45:00Z","t1":14,"t2":43},"4894":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":17,"t2":93},"4888":{"d":18,"dB":"2019-12-14T14:00:00Z","t1":88,"t2":104},"4890":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":92,"t2":89},"4889":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":90,"t2":98},"4897":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":91,"t2":107},"4896":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":102,"t2":94},"4892":{"d":18,"dB":"2019-12-13T19:00:00Z","t1":103,"t2":97}},"k":"c86697"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.premier-league.20190805.json b/src/test/resources/__files/mpgstats.premier-league.20190805.json deleted file mode 100644 index 983b3b1..0000000 --- a/src/test/resources/__files/mpgstats.premier-league.20190805.json +++ /dev/null @@ -1,20499 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-07-31T19:41:34Z", - "mL": { - "i": 2, - "n": "Premier League", - "cN": "Premier-League", - "u": "\/league\/Premier-League", - "aS": { - "cN": "Premier-League-2019-2020", - "i": 10, - "n": "Premier League 2019-2020", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 0, - "lD": 0 - } - }, - "lS": { - "cN": "Premier-League-2018-2019", - "i": 7, - "n": "Premier League 2018-2019", - "mD": 38 - } - }, - "mxD": 1, - "np": 780, - "le": { - "2": "Premier-League", - "1": "Ligue-1", - "4": "Ligue-2", - "3": "Liga" - }, - "p": [ - { - "i": 5, - "n": "Fabinho", - "f": "", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "152", - "On": "28", - "Oa": "5.43", - "Od": "0.75", - "Mp": "27", - "Dp": "1", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 21 - }, - { - "i": 605, - "n": "Man\u00e9", - "f": "Sadio", - "p": "A", - "r": 50, - "s": { - "n": 0, - "Og": "22", - "Os": "209", - "On": "36", - "Oa": "5.82", - "Od": "1.13", - "Mp": "12", - "Ap": "24", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 7.5, - "g": 2 - }, - "37": { - "n": 5 - }, - "38": { - "n": 7.5, - "g": 2 - } - } - }, - "c": 21 - }, - { - "i": 606, - "n": "Roberto Firmino", - "f": "", - "p": "A", - "r": 26, - "s": { - "n": 0, - "Og": "12", - "Os": "185", - "On": "34", - "Oa": "5.46", - "Od": "1.09", - "Mp": "11", - "Ap": "23", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 7 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - } - } - }, - "c": 21 - }, - { - "i": 618, - "n": "Lallana", - "f": "Adam", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "65", - "On": "13", - "Oa": "5", - "Od": "0.2", - "Mp": "12", - "Ap": "1", - "p": { - "31": { - "n": 5 - } - } - }, - "c": 21 - }, - { - "i": 624, - "n": "Milner", - "f": "James", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "5", - "Os": "173", - "On": "31", - "Oa": "5.58", - "Od": "0.88", - "Mp": "25", - "Dp": "6", - "p": { - "31": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 7, - "g": 1, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 21 - }, - { - "i": 630, - "n": "Wijnaldum", - "f": "Georginio", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "3", - "Os": "194", - "On": "35", - "Oa": "5.56", - "Od": "0.89", - "Mp": "35", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 7.5, - "g": 1 - }, - "36": { - "n": 7 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 21 - }, - { - "i": 636, - "n": "Oxlade-Chamberlain", - "f": "Alex", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "2", - "p": { - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 21 - }, - { - "i": 638, - "n": "Sturridge", - "f": "Daniel", - "p": "A", - "r": 11, - "s": { - "n": 0, - "Og": "2", - "Os": "87", - "On": "18", - "Oa": "4.86", - "Od": "0.66", - "Ap": "18", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - } - } - }, - "c": 21 - }, - { - "i": 644, - "n": "Henderson", - "f": "Jordan", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "1", - "Os": "173", - "On": "32", - "Oa": "5.42", - "Od": "0.55", - "Mp": "31", - "Dp": "1", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 6, - "g": 1, - "s": 1 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 21 - }, - { - "i": 655, - "n": "Lovren", - "f": "Dejan", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "73", - "On": "13", - "Oa": "5.62", - "Od": "0.98", - "Dp": "13", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "36": { - "n": 7 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 21 - }, - { - "i": 668, - "n": "van Dijk", - "f": "Virgil", - "p": "D", - "r": 34, - "s": { - "n": 0, - "Og": "4", - "Os": "231", - "On": "38", - "Oa": "6.08", - "Od": "0.81", - "Dp": "38", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 6 - } - } - }, - "c": 21 - }, - { - "i": 672, - "n": "Shaqiri", - "f": "Xherdan", - "p": "A", - "r": 11, - "s": { - "n": 0, - "Og": "6", - "Os": "125", - "On": "24", - "Oa": "5.23", - "Od": "0.91", - "Mp": "21", - "Ap": "3", - "p": { - "34": { - "n": 4, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 21 - }, - { - "i": 681, - "n": "Origi", - "f": "Divock", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "3", - "Os": "61", - "On": "12", - "Oa": "5.08", - "Od": "0.84", - "Ap": "12", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "37": { - "n": 6, - "g": 1, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 21 - }, - { - "i": 711, - "n": "Clyne", - "f": "Nathaniel", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "81", - "On": "18", - "Oa": "4.53", - "Od": "0.98", - "Dp": "18", - "p": { - "31": { - "n": 4, - "e": 3468, - "c": 36 - }, - "32": { - "n": 3.5, - "e": 3484, - "c": 36 - }, - "33": { - "n": 3, - "e": 3488, - "c": 36 - }, - "36": { - "n": 4, - "e": 3525, - "c": 36 - }, - "37": { - "n": 5, - "e": 3528, - "c": 36 - }, - "38": { - "n": 3, - "e": 3540, - "c": 36 - } - } - }, - "c": 21 - }, - { - "i": 760, - "n": "Mignolet", - "f": "Simon", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 766, - "n": "Matip", - "f": "Joel", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "122", - "On": "22", - "Oa": "5.55", - "Od": "0.69", - "Dp": "22", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 21 - }, - { - "i": 776, - "n": "Robertson", - "f": "Andrew", - "p": "D", - "r": 20, - "s": { - "n": 0, - "Os": "196", - "On": "36", - "Oa": "5.46", - "Od": "0.81", - "Dp": "36", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 7.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 21 - }, - { - "i": 970, - "n": "Karius", - "f": "Loris", - "p": "G", - "r": 9, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 995, - "n": "Alexander-Arnold", - "f": "Trent", - "p": "D", - "r": 22, - "s": { - "n": 0, - "Og": "1", - "Os": "163", - "On": "29", - "Oa": "5.64", - "Od": "0.94", - "Dp": "29", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 7 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 7 - } - } - }, - "c": 21 - }, - { - "i": 1009, - "n": "Grujic", - "f": "Marko", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 1092, - "n": "Wilson", - "f": "Harry", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 1096, - "n": "Gomez", - "f": "Joseph", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "86", - "On": "16", - "Oa": "5.41", - "Od": "0.4", - "Dp": "16", - "p": { - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 21 - }, - { - "i": 1151, - "n": "Woodburn", - "f": "Ben", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 1278, - "n": "Mohamed Salah", - "f": "", - "p": "A", - "r": 50, - "s": { - "n": 0, - "Og": "22", - "Os": "221", - "On": "38", - "Oa": "5.83", - "Od": "1.2", - "Ap": "38", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 8, - "g": 2 - }, - "37": { - "n": 6.5, - "g": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 21 - }, - { - "i": 1362, - "n": "Brewster", - "f": "Rhian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 1374, - "n": "Grabara", - "f": "Kamil", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 1381, - "n": "Kent", - "f": "Ryan", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 2539, - "n": "Camacho", - "f": "Rafael", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 21 - }, - { - "i": 2546, - "n": "Jones", - "f": "Curtis", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 2551, - "n": "Phillips", - "f": "Nathaniel", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 2565, - "n": "Naby Keita", - "f": "", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "2", - "Os": "130", - "On": "25", - "Oa": "5.2", - "Od": "0.85", - "Mp": "25", - "p": { - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 21 - }, - { - "i": 2566, - "n": "Johnston", - "f": "George", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 2591, - "n": "Alisson", - "f": "", - "p": "G", - "r": 24, - "s": { - "n": 0, - "Os": "209", - "On": "38", - "Oa": "5.51", - "Od": "0.78", - "Gp": "38", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 21 - }, - { - "i": 2884, - "n": "Elliott", - "f": "Harvey", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "2", - "p": { - "37": { - "n": 5, - "e": 3537, - "c": 71, - "s": 1 - }, - "38": { - "n": 5, - "e": 3541, - "c": 71, - "s": 1 - } - } - }, - "c": 21 - }, - { - "i": 3117, - "n": "Hoever", - "f": "Ki-Jana", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3120, - "n": "Kelleher", - "f": "Caoimhin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3121, - "n": "Christie-Davies", - "f": "Isaac", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3639, - "n": "van den Berg", - "f": "Sepp", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3641, - "n": "Larouci", - "f": "Yasser", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3642, - "n": "Jaros", - "f": "Vitezslav", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3660, - "n": "Duncan", - "f": "Bobby", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3666, - "n": "Atherton", - "f": "Daniel", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3667, - "n": "Glatzel", - "f": "Paul", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 3672, - "n": "Lewis", - "f": "Adam", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 5451, - "n": "Lonergan", - "f": "Andy", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 21 - }, - { - "i": 612, - "n": "Sigurdsson", - "f": "Gylfi", - "p": "M", - "r": 27, - "s": { - "n": 0, - "Og": "13", - "Os": "217", - "On": "38", - "Oa": "5.71", - "Od": "1.28", - "Mp": "34", - "Ap": "4", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 8, - "g": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 22 - }, - { - "i": 614, - "n": "Mirallas", - "f": "Kevin", - "p": "M", - "r": 18, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 642, - "n": "Walcott", - "f": "Theo", - "p": "A", - "r": 12, - "s": { - "n": 0, - "Og": "5", - "Os": "180", - "On": "37", - "Oa": "4.86", - "Od": "0.84", - "Mp": "22", - "Ap": "15", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 22 - }, - { - "i": 645, - "n": "Baines", - "f": "Leighton", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "29", - "On": "6", - "Oa": "4.83", - "Od": "0.47", - "Dp": "6" - }, - "c": 22 - }, - { - "i": 697, - "n": "Keane", - "f": "Michael", - "p": "D", - "r": 19, - "s": { - "n": 0, - "Og": "1", - "Os": "173", - "On": "33", - "Oa": "5.26", - "Od": "1.1", - "Dp": "33", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 22 - }, - { - "i": 715, - "n": "Bolasie", - "f": "Yannick", - "p": "A", - "r": 9, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 761, - "n": "McCarthy", - "f": "James", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "35": { - "n": 5, - "s": 1 - } - } - }, - "c": 22 - }, - { - "i": 779, - "n": "Stekelenburg", - "f": "Maarten", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 833, - "n": "Schneiderlin", - "f": "Morgan", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "76", - "On": "14", - "Oa": "5.46", - "Od": "0.93", - "Mp": "14", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "35": { - "n": 7 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5 - } - } - }, - "c": 22 - }, - { - "i": 834, - "n": "Davies", - "f": "Tom", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "0.68", - "Mp": "16", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - } - } - }, - "c": 22 - }, - { - "i": 844, - "n": "Holgate", - "f": "Mason", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "23", - "On": "5", - "Oa": "4.7", - "Od": "0.87", - "Dp": "5" - }, - "c": 22 - }, - { - "i": 909, - "n": "Pickford", - "f": "Jordan", - "p": "G", - "r": 21, - "s": { - "n": 0, - "Os": "203", - "On": "38", - "Oa": "5.34", - "Od": "1.2", - "Gp": "38", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 22 - }, - { - "i": 930, - "n": "Coleman", - "f": "Seamus", - "p": "D", - "r": 18, - "s": { - "n": 0, - "Og": "2", - "Oao": "1", - "Os": "149", - "On": "29", - "Oa": "5.14", - "Od": "1.14", - "Mp": "2", - "Dp": "27", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7, - "g": 1 - } - } - }, - "c": 22 - }, - { - "i": 958, - "n": "Delph", - "f": "Fabian", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "57", - "On": "11", - "Oa": "5.18", - "Od": "0.68", - "Mp": "3", - "Dp": "8" - }, - "c": 22 - }, - { - "i": 967, - "n": "Cuco Martina", - "f": "", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 1028, - "n": "Niasse", - "f": "Oumar", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Os": "75", - "On": "18", - "Oa": "4.19", - "Od": "0.6", - "Ap": "18", - "p": { - "31": { - "n": 4, - "e": 3469, - "c": 70 - }, - "32": { - "n": 4, - "e": 3481, - "c": 70 - }, - "33": { - "n": 4.5, - "e": 3492, - "c": 70 - }, - "34": { - "n": 4.5, - "e": 3499, - "c": 70, - "s": 1 - }, - "35": { - "n": 3.5, - "e": 3510, - "c": 70 - }, - "36": { - "n": 4, - "e": 3521, - "c": 70 - } - } - }, - "c": 22 - }, - { - "i": 1039, - "n": "Lookman", - "f": "Ademola", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Os": "101", - "On": "21", - "Oa": "4.83", - "Od": "0.54", - "Mp": "3", - "Ap": "18", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 22 - }, - { - "i": 1066, - "n": "Calvert-Lewin", - "f": "Dominic", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "6", - "Os": "165", - "On": "35", - "Oa": "4.73", - "Od": "0.93", - "Mp": "2", - "Ap": "33", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 3 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 22 - }, - { - "i": 1085, - "n": "Besic", - "f": "Muhamed", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 1094, - "n": "Kenny", - "f": "Jonjoe", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "45", - "On": "10", - "Oa": "4.5", - "Od": "0.67", - "Dp": "10" - }, - "c": 22 - }, - { - "i": 1114, - "n": "Hewelt", - "f": "Mateusz", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 1307, - "n": "Richarlison", - "f": "", - "p": "A", - "r": 21, - "s": { - "n": 0, - "Og": "13", - "Os": "180", - "On": "35", - "Oa": "5.14", - "Od": "1.19", - "Mp": "21", - "Ap": "14", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 22 - }, - { - "i": 1479, - "n": "L\u00f6ssl", - "f": "Jonas", - "p": "G", - "r": 8, - "s": { - "n": 0, - "Os": "161", - "On": "31", - "Oa": "5.21", - "Od": "1.11", - "Gp": "31", - "p": { - "31": { - "n": 2.5, - "e": 3476, - "c": 44 - }, - "35": { - "n": 6, - "e": 3513, - "c": 44 - }, - "36": { - "n": 3, - "e": 3523, - "c": 44 - }, - "37": { - "n": 6, - "e": 3533, - "c": 44 - } - } - }, - "c": 22 - }, - { - "i": 1751, - "n": "Andr\u00e9 Gomes", - "f": "", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "132", - "On": "27", - "Oa": "4.89", - "Od": "0.66", - "Mp": "27", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "38": { - "n": 4, - "s": 1 - } - } - }, - "c": 22 - }, - { - "i": 1881, - "n": "Digne", - "f": "Lucas", - "p": "D", - "r": 23, - "s": { - "n": 0, - "Og": "4", - "Oao": "1", - "Os": "186", - "On": "35", - "Oa": "5.33", - "Od": "1.21", - "Mp": "2", - "Dp": "33", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 7 - }, - "33": { - "n": 6 - }, - "34": { - "n": 3 - }, - "35": { - "n": 7.5, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 22 - }, - { - "i": 2026, - "n": "Vlasic", - "f": "Nikola", - "p": "A", - "r": 7, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 2118, - "n": "Baningime", - "f": "Beni", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 2197, - "n": "Tosun", - "f": "Cenk", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "118", - "On": "25", - "Oa": "4.74", - "Od": "0.75", - "Ap": "25", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 22 - }, - { - "i": 2241, - "n": "Mina", - "f": "Yerry", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "64", - "On": "13", - "Oa": "4.92", - "Od": "0.92", - "Dp": "13", - "p": { - "31": { - "n": 6 - }, - "38": { - "n": 4 - } - } - }, - "c": 22 - }, - { - "i": 2569, - "n": "Dowell", - "f": "Kieran", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 2583, - "n": "Browning", - "f": "Tyias", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 2593, - "n": "Pennington", - "f": "Matthew", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 2760, - "n": "Williams", - "f": "Joe", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 2764, - "n": "Bernard", - "f": "", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "1", - "Os": "171", - "On": "34", - "Oa": "5.03", - "Od": "0.93", - "Mp": "32", - "Ap": "2", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 7, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4 - }, - "35": { - "n": 7 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 22 - }, - { - "i": 2851, - "n": "Jo\u00e3o Virg\u00ednia", - "f": "", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 3652, - "n": "Onyekuru", - "f": "Henry", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 3685, - "n": "Tarashaj", - "f": "Shani", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 22 - }, - { - "i": 708, - "n": "Heaton", - "f": "Tom", - "p": "G", - "r": 18, - "s": { - "n": 0, - "Os": "104", - "On": "19", - "Oa": "5.47", - "Od": "1.23", - "Gp": "19", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4 - }, - "38": { - "n": 4 - } - } - }, - "c": 23 - }, - { - "i": 717, - "n": "Defour", - "f": "Steven", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "24", - "On": "6", - "Oa": "4.08", - "Od": "0.61", - "Mp": "6" - }, - "c": 23 - }, - { - "i": 718, - "n": "Rodriguez", - "f": "Jay", - "p": "A", - "r": 18, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 722, - "n": "Crouch", - "f": "Peter", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "0.2", - "Ap": "5", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 23 - }, - { - "i": 742, - "n": "Cork", - "f": "Jack", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "1", - "Os": "186", - "On": "37", - "Oa": "5.04", - "Od": "0.77", - "Mp": "37", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 23 - }, - { - "i": 763, - "n": "Gibson", - "f": "Ben", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 23 - }, - { - "i": 764, - "n": "Lowton", - "f": "Matthew", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "92", - "On": "21", - "Oa": "4.4", - "Od": "0.87", - "Dp": "21", - "p": { - "33": { - "n": 5.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 23 - }, - { - "i": 765, - "n": "Barnes", - "f": "Ashley", - "p": "A", - "r": 23, - "s": { - "n": 0, - "Og": "12", - "Oao": "1", - "Os": "185", - "On": "37", - "Oa": "5", - "Od": "1.09", - "Ap": "37", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6, - "g": 1, - "a": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 23 - }, - { - "i": 767, - "n": "Mee", - "f": "Ben", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Oao": "2", - "Os": "183", - "On": "38", - "Oa": "4.83", - "Od": "1.1", - "Dp": "38", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4, - "a": 1 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 23 - }, - { - "i": 769, - "n": "Ward", - "f": "Stephen", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "1.18", - "Dp": "3" - }, - "c": 23 - }, - { - "i": 803, - "n": "Vokes", - "f": "Sam", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "3", - "Os": "88", - "On": "20", - "Oa": "4.43", - "Od": "0.94", - "Ap": "20" - }, - "c": 23 - }, - { - "i": 811, - "n": "Pieters", - "f": "Erik", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "78", - "On": "15", - "Oa": "5.2", - "Od": "1.12", - "Mp": "1", - "Dp": "14", - "p": { - "31": { - "n": 5, - "e": 3032, - "c": 42 - }, - "32": { - "n": 4.5, - "e": 3043, - "c": 42 - }, - "33": { - "n": 3, - "e": 3055, - "c": 42 - }, - "34": { - "n": 6, - "e": 3062, - "c": 42 - }, - "35": { - "n": 6.5, - "e": 3076, - "c": 42 - }, - "36": { - "n": 5.5, - "e": 3082, - "c": 42 - }, - "37": { - "n": 3.5, - "e": 3096, - "c": 42 - }, - "38": { - "n": 6, - "e": 3102, - "c": 42 - } - } - }, - "c": 23 - }, - { - "i": 813, - "n": "Walters", - "f": "Jonathan", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 846, - "n": "Johann Gudmundsson", - "f": "", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "3", - "Os": "151", - "On": "29", - "Oa": "5.22", - "Od": "0.92", - "Mp": "29", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6, - "s": 1 - } - } - }, - "c": 23 - }, - { - "i": 897, - "n": "Brady", - "f": "Robbie", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "75", - "On": "16", - "Oa": "4.72", - "Od": "0.5", - "Mp": "16", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 23 - }, - { - "i": 899, - "n": "Lennon", - "f": "Aaron", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "1.07", - "Mp": "16" - }, - "c": 23 - }, - { - "i": 932, - "n": "Bardsley", - "f": "Phil", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Oao": "1", - "Os": "88", - "On": "19", - "Oa": "4.66", - "Od": "0.83", - "Dp": "19", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - } - } - }, - "c": 23 - }, - { - "i": 951, - "n": "Tarkowski", - "f": "James", - "p": "D", - "r": 18, - "s": { - "n": 0, - "Og": "3", - "Os": "172", - "On": "35", - "Oa": "4.93", - "Od": "1.35", - "Dp": "35", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 23 - }, - { - "i": 997, - "n": "Hendrick", - "f": "Jeff", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "151", - "On": "32", - "Oa": "4.73", - "Od": "0.83", - "Mp": "25", - "Ap": "7", - "p": { - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 23 - }, - { - "i": 1045, - "n": "Pope", - "f": "Nick", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 1054, - "n": "Westwood", - "f": "Ashley", - "p": "M", - "r": 19, - "s": { - "n": 0, - "Og": "2", - "Os": "186", - "On": "34", - "Oa": "5.47", - "Od": "1.02", - "Mp": "34", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 8, - "g": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 23 - }, - { - "i": 1074, - "n": "Long", - "f": "Kevin", - "p": "D", - "r": 2, - "s": { - "n": 0, - "Os": "28", - "On": "6", - "Oa": "4.75", - "Od": "0.85", - "Dp": "6" - }, - "c": 23 - }, - { - "i": 1297, - "n": "Taylor", - "f": "Charlie", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "182", - "On": "38", - "Oa": "4.8", - "Od": "0.85", - "Dp": "38", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 23 - }, - { - "i": 1299, - "n": "Wood", - "f": "Chris", - "p": "A", - "r": 18, - "s": { - "n": 0, - "Og": "10", - "Os": "181", - "On": "38", - "Oa": "4.78", - "Od": "1.27", - "Ap": "38", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 7.5, - "g": 1 - }, - "34": { - "n": 8, - "g": 2 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3 - }, - "37": { - "n": 4 - }, - "38": { - "n": 4 - } - } - }, - "c": 23 - }, - { - "i": 1320, - "n": "Hart", - "f": "Joe", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "103", - "On": "19", - "Oa": "5.45", - "Od": "1.19", - "Gp": "19" - }, - "c": 23 - }, - { - "i": 1345, - "n": "Legzdins", - "f": "Adam", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 1348, - "n": "Agyei", - "f": "Daniel", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 1478, - "n": "Wells", - "f": "Nahki", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 2061, - "n": "Lindegaard", - "f": "Anders", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 2200, - "n": "O'Neill", - "f": "Aiden", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 2497, - "n": "Vydra", - "f": "Matej", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "58", - "On": "13", - "Oa": "4.46", - "Od": "0.66", - "Ap": "13", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4, - "s": 1 - } - } - }, - "c": 23 - }, - { - "i": 2817, - "n": "McNeil", - "f": "Dwight", - "p": "A", - "r": 16, - "s": { - "n": 0, - "Og": "3", - "Os": "115", - "On": "21", - "Oa": "5.5", - "Od": "1.05", - "Mp": "19", - "Ap": "2", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 7, - "g": 1 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 7 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 23 - }, - { - "i": 2972, - "n": "Ali Koiki", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 2984, - "n": "Massanka", - "f": "Ntumba", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 3351, - "n": "Benson", - "f": "Josh", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 3673, - "n": "Driscoll-Glennon", - "f": "Anthony", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 23 - }, - { - "i": 8, - "n": "Lucas Moura", - "f": "", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "10", - "Os": "162", - "On": "32", - "Oa": "5.06", - "Od": "1.14", - "Mp": "16", - "Ap": "16", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 8.5, - "g": 3 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 24 - }, - { - "i": 21, - "n": "Aurier", - "f": "Serge", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "37", - "On": "8", - "Oa": "4.63", - "Od": "0.65", - "Mp": "2", - "Dp": "6" - }, - "c": 24 - }, - { - "i": 589, - "n": "Kane", - "f": "Harry", - "p": "A", - "r": 40, - "s": { - "n": 0, - "Og": "17", - "Os": "160", - "On": "28", - "Oa": "5.73", - "Od": "1.21", - "Ap": "28", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4 - } - } - }, - "c": 24 - }, - { - "i": 596, - "n": "Dele Alli", - "f": "", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "5", - "Os": "131", - "On": "25", - "Oa": "5.26", - "Od": "1.04", - "Mp": "23", - "Ap": "2", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 24 - }, - { - "i": 611, - "n": "Eriksen", - "f": "Christian", - "p": "M", - "r": 24, - "s": { - "n": 0, - "Og": "8", - "Os": "196", - "On": "35", - "Oa": "5.6", - "Od": "1.14", - "Mp": "32", - "Ap": "3", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 24 - }, - { - "i": 613, - "n": "Lloris", - "f": "Hugo", - "p": "G", - "r": 25, - "s": { - "n": 0, - "Os": "193", - "On": "33", - "Oa": "5.85", - "Od": "1.07", - "Gp": "33", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5.5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 24 - }, - { - "i": 627, - "n": "Llorente", - "f": "Fernando", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "92", - "On": "20", - "Oa": "4.6", - "Od": "0.64", - "Ap": "20", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 24 - }, - { - "i": 635, - "n": "Wanyama", - "f": "Victor", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "67", - "On": "13", - "Oa": "5.15", - "Od": "0.79", - "Mp": "13", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 7.5, - "g": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 24 - }, - { - "i": 652, - "n": "Alderweireld", - "f": "Toby", - "p": "D", - "r": 20, - "s": { - "n": 0, - "Oao": "1", - "Os": "184", - "On": "34", - "Oa": "5.41", - "Od": "0.77", - "Dp": "34", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4, - "a": 1 - }, - "33": { - "n": 7 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 24 - }, - { - "i": 658, - "n": "Vertonghen", - "f": "Jan", - "p": "D", - "r": 20, - "s": { - "n": 0, - "Og": "1", - "Os": "118", - "On": "22", - "Oa": "5.36", - "Od": "1.06", - "Dp": "22", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - } - } - }, - "c": 24 - }, - { - "i": 687, - "n": "Sissoko", - "f": "Moussa", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Os": "157", - "On": "29", - "Oa": "5.41", - "Od": "0.82", - "Mp": "29", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 6.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 24 - }, - { - "i": 714, - "n": "Rose", - "f": "Danny", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "127", - "On": "26", - "Oa": "4.88", - "Od": "0.61", - "Mp": "8", - "Dp": "18", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5 - } - } - }, - "c": 24 - }, - { - "i": 724, - "n": "Dier", - "f": "Eric", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "103", - "On": "20", - "Oa": "5.18", - "Od": "0.6", - "Mp": "19", - "Dp": "1", - "p": { - "35": { - "n": 4.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 24 - }, - { - "i": 783, - "n": "Demb\u00e9l\u00e9", - "f": "Mousa", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "50", - "On": "10", - "Oa": "5", - "Od": "0.77", - "Mp": "10" - }, - "c": 24 - }, - { - "i": 786, - "n": "Lamela", - "f": "Erik", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Og": "4", - "Os": "100", - "On": "19", - "Oa": "5.26", - "Od": "0.85", - "Mp": "18", - "Ap": "1", - "p": { - "38": { - "n": 4.5 - } - } - }, - "c": 24 - }, - { - "i": 799, - "n": "Vorm", - "f": "Michel", - "p": "G", - "r": 1, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.75", - "Od": "1.25", - "Gp": "2" - }, - "c": 24 - }, - { - "i": 824, - "n": "Son Heung-Min", - "f": "", - "p": "A", - "r": 38, - "s": { - "n": 0, - "Og": "12", - "Os": "170", - "On": "31", - "Oa": "5.5", - "Od": "1.36", - "Mp": "9", - "Ap": "22", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3.5 - } - } - }, - "c": 24 - }, - { - "i": 831, - "n": "Winks", - "f": "Harry", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "141", - "On": "26", - "Oa": "5.42", - "Od": "0.86", - "Mp": "26", - "p": { - "31": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 24 - }, - { - "i": 847, - "n": "Janssen", - "f": "Vincent", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.24", - "Ap": "3", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 24 - }, - { - "i": 896, - "n": "Davies", - "f": "Ben", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "133", - "On": "27", - "Oa": "4.94", - "Od": "0.81", - "Mp": "3", - "Dp": "24", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 24 - }, - { - "i": 918, - "n": "Nkoudou", - "f": "Georges-K\u00e9vin", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "16", - "On": "3", - "Oa": "5.33", - "Od": "0.47", - "Mp": "3" - }, - "c": 24 - }, - { - "i": 969, - "n": "Onomah", - "f": "Josh", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 999, - "n": "Carter-Vickers", - "f": "Cameron", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 1072, - "n": "Whiteman", - "f": "Alfie", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 1118, - "n": "Walker-Peters", - "f": "Kyle", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "32", - "On": "6", - "Oa": "5.33", - "Od": "0.85", - "Mp": "1", - "Dp": "5", - "p": { - "34": { - "n": 6.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 24 - }, - { - "i": 1314, - "n": "S\u00e1nchez", - "f": "Davinson", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "117", - "On": "23", - "Oa": "5.09", - "Od": "1", - "Dp": "23", - "p": { - "32": { - "n": 5.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 24 - }, - { - "i": 1391, - "n": "Gazzaniga", - "f": "Paulo", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "18", - "On": "3", - "Oa": "6.17", - "Od": "0.62", - "Gp": "3", - "p": { - "35": { - "n": 5.5 - } - } - }, - "c": 24 - }, - { - "i": 1414, - "n": "Ndombele", - "f": "Tanguy", - "p": "M", - "r": 22, - "s": { - "n": 0, - "Og": "1", - "Os": "180", - "On": "34", - "Oa": "5.31", - "Od": "0.98", - "Mp": "34", - "p": { - "31": { - "n": 4.5, - "e": 3036, - "c": 18, - "s": 1 - }, - "32": { - "n": 6, - "e": 3048, - "c": 18 - }, - "33": { - "n": 6, - "e": 3054, - "c": 18 - }, - "34": { - "n": 5.5, - "e": 3064, - "c": 18 - }, - "35": { - "n": 5, - "e": 3074, - "c": 18 - }, - "36": { - "n": 7.5, - "e": 3087, - "c": 18 - }, - "37": { - "n": 6.5, - "e": 3095, - "c": 18 - }, - "38": { - "n": 7, - "e": 3109, - "c": 18, - "g": 1 - } - } - }, - "c": 24 - }, - { - "i": 2028, - "n": "Foyth", - "f": "Juan", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "60", - "On": "12", - "Oa": "5.04", - "Od": "1.2", - "Dp": "12", - "p": { - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 7 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3.5, - "s": 1 - } - } - }, - "c": 24 - }, - { - "i": 2063, - "n": "Georgiou", - "f": "Anthony", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 2205, - "n": "Amos", - "f": "Luke", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1" - }, - "c": 24 - }, - { - "i": 2228, - "n": "Sterling", - "f": "Kazaiah", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 2929, - "n": "Skipp", - "f": "Oliver", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "35", - "On": "7", - "Oa": "5.07", - "Od": "0.32", - "Mp": "7", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 24 - }, - { - "i": 2930, - "n": "Eyoma", - "f": "Timothy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 2932, - "n": "Marsh", - "f": "George", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5413, - "n": "White", - "f": "Harvey", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5414, - "n": "Parrott", - "f": "Troy", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5424, - "n": "Jonathan De Bie", - "f": "", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5427, - "n": "Lyons-Foster", - "f": "Brooklyn", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5432, - "n": "Bowden", - "f": "Jamie", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5439, - "n": "Roles", - "f": "Jack", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 5441, - "n": "Tanganga", - "f": "Japhet", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 24 - }, - { - "i": 95, - "n": "Bakayoko", - "f": "Tiemou\u00e9", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 419, - "n": "Jorginho", - "f": "", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "2", - "Os": "203", - "On": "37", - "Oa": "5.5", - "Od": "0.99", - "Mp": "37", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 7 - }, - "38": { - "n": 6 - } - } - }, - "c": 25 - }, - { - "i": 601, - "n": "Giroud", - "f": "Olivier", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "127", - "On": "27", - "Oa": "4.72", - "Od": "0.74", - "Ap": "27", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 25 - }, - { - "i": 602, - "n": "Kant\u00e9", - "f": "N'Golo", - "p": "M", - "r": 21, - "s": { - "n": 0, - "Og": "4", - "Os": "191", - "On": "36", - "Oa": "5.32", - "Od": "0.93", - "Mp": "36", - "p": { - "31": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - } - } - }, - "c": 25 - }, - { - "i": 607, - "n": "Pedro", - "f": "", - "p": "A", - "r": 17, - "s": { - "n": 0, - "Og": "8", - "Os": "164", - "On": "31", - "Oa": "5.29", - "Od": "1.13", - "Ap": "31", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 25 - }, - { - "i": 619, - "n": "Willian", - "f": "", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "3", - "Os": "170", - "On": "32", - "Oa": "5.33", - "Od": "1.01", - "Ap": "32", - "p": { - "32": { - "n": 6.5 - }, - "34": { - "n": 5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 25 - }, - { - "i": 623, - "n": "David Luiz", - "f": "", - "p": "D", - "r": 35, - "s": { - "n": 0, - "Og": "3", - "Os": "201", - "On": "36", - "Oa": "5.6", - "Od": "1.3", - "Dp": "36", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 25 - }, - { - "i": 625, - "n": "Barkley", - "f": "Ross", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "143", - "On": "27", - "Oa": "5.3", - "Od": "0.94", - "Mp": "27", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 25 - }, - { - "i": 633, - "n": "Cahill", - "f": "Gary", - "p": "D", - "r": 2, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5", - "Dp": "2", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 25 - }, - { - "i": 650, - "n": "Azpilicueta", - "f": "C\u00e9sar", - "p": "D", - "r": 23, - "s": { - "n": 0, - "Og": "1", - "Os": "197", - "On": "38", - "Oa": "5.2", - "Od": "0.94", - "Dp": "38", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6.5, - "g": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5 - } - } - }, - "c": 25 - }, - { - "i": 656, - "n": "Moses", - "f": "Victor", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Mp": "2" - }, - "c": 25 - }, - { - "i": 659, - "n": "Alonso", - "f": "Marcos", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "2", - "Os": "166", - "On": "31", - "Oa": "5.35", - "Od": "1.06", - "Dp": "31", - "p": { - "31": { - "n": 3 - }, - "32": { - "n": 4.5 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 25 - }, - { - "i": 816, - "n": "Drinkwater", - "f": "Daniel", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 848, - "n": "Caballero", - "f": "Willy", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "12", - "On": "2", - "Oa": "6", - "Gp": "2", - "p": { - "38": { - "n": 6 - } - } - }, - "c": 25 - }, - { - "i": 850, - "n": "Batshuayi", - "f": "Michy", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "6", - "Os": "126", - "On": "26", - "Oa": "4.85", - "Od": "1.04", - "Ap": "26", - "p": { - "31": { - "n": 4.5, - "e": 3474, - "c": 26 - }, - "32": { - "n": 4.5, - "e": 3482, - "c": 26 - }, - "33": { - "n": 4, - "e": 3493, - "c": 26 - }, - "37": { - "n": 6, - "e": 3530, - "c": 26, - "g": 1 - }, - "38": { - "n": 7.5, - "e": 3540, - "c": 26, - "g": 2 - } - } - }, - "c": 25 - }, - { - "i": 959, - "n": "Loftus-Cheek", - "f": "Ruben", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "6", - "Os": "130", - "On": "24", - "Oa": "5.42", - "Od": "1", - "Mp": "24", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 6, - "g": 1, - "s": 1 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 7, - "g": 1, - "s": 1 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 25 - }, - { - "i": 992, - "n": "Zouma", - "f": "Kurt", - "p": "D", - "r": 24, - "s": { - "n": 0, - "Og": "2", - "Os": "162", - "On": "32", - "Oa": "5.06", - "Od": "1.17", - "Dp": "32", - "p": { - "32": { - "n": 7.5, - "e": 3487, - "c": 22, - "g": 1 - }, - "33": { - "n": 6, - "e": 3490, - "c": 22 - }, - "34": { - "n": 4, - "e": 3501, - "c": 22 - }, - "35": { - "n": 6, - "e": 3512, - "c": 22 - }, - "36": { - "n": 5, - "e": 3520, - "c": 22 - }, - "37": { - "n": 6, - "e": 3532, - "c": 22 - }, - "38": { - "n": 4, - "e": 3546, - "c": 22 - } - } - }, - "c": 25 - }, - { - "i": 1043, - "n": "Kenedy", - "f": "", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Og": "1", - "Os": "121", - "On": "25", - "Oa": "4.86", - "Od": "0.71", - "Mp": "24", - "Dp": "1", - "p": { - "32": { - "n": 5, - "e": 3478, - "c": 46, - "s": 1 - }, - "36": { - "n": 5, - "e": 3518, - "c": 46, - "s": 1 - }, - "38": { - "n": 5, - "e": 3541, - "c": 46, - "s": 1 - } - } - }, - "c": 25 - }, - { - "i": 1288, - "n": "R\u00fcdiger", - "f": "Antonio", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "169", - "On": "33", - "Oa": "5.14", - "Od": "1.02", - "Dp": "33", - "p": { - "31": { - "n": 3 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - }, - "36": { - "n": 5.5 - } - } - }, - "c": 25 - }, - { - "i": 1309, - "n": "Brown", - "f": "Isaiah", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 1350, - "n": "Abraham", - "f": "Tammy", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 1360, - "n": "Charly Musonda", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 1370, - "n": "Christensen", - "f": "Andreas", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "41", - "On": "8", - "Oa": "5.19", - "Od": "0.93", - "Dp": "8", - "p": { - "34": { - "n": 4, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 6.5 - } - } - }, - "c": 25 - }, - { - "i": 1386, - "n": "Tomori", - "f": "Fikayo", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 1482, - "n": "Palmer", - "f": "Kasey", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 1652, - "n": "Arrizabalaga", - "f": "Kepa", - "p": "G", - "r": 22, - "s": { - "n": 0, - "Os": "193", - "On": "36", - "Oa": "5.38", - "Od": "0.73", - "Gp": "36", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - } - } - }, - "c": 25 - }, - { - "i": 1657, - "n": "Kovacic", - "f": "Mateo", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "164", - "On": "32", - "Oa": "5.14", - "Od": "0.72", - "Mp": "32", - "p": { - "32": { - "n": 4 - }, - "35": { - "n": 5.5, - "s": 1 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 25 - }, - { - "i": 2022, - "n": "Zappacosta", - "f": "Davide", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "20", - "On": "4", - "Oa": "5.13", - "Od": "0.54", - "Dp": "4", - "p": { - "38": { - "n": 6 - } - } - }, - "c": 25 - }, - { - "i": 2029, - "n": "Green", - "f": "Robert", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2068, - "n": "Baba", - "f": "Abdul Rahman", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "55", - "On": "11", - "Oa": "5", - "Od": "1.24", - "Dp": "11", - "p": { - "31": { - "n": 4, - "e": 3040, - "c": 68 - }, - "32": { - "n": 6, - "e": 3046, - "c": 68 - }, - "33": { - "n": 3.5, - "e": 3059, - "c": 68 - }, - "34": { - "n": 5, - "e": 3063, - "c": 68 - }, - "35": { - "n": 3, - "e": 3079, - "c": 68 - }, - "38": { - "n": 7.5, - "e": 3110, - "c": 68, - "g": 1 - } - } - }, - "c": 25 - }, - { - "i": 2072, - "n": "Ampadu", - "f": "Ethan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2075, - "n": "Sterling", - "f": "Dujon", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2220, - "n": "Hudson-Odoi", - "f": "Callum", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Os": "49", - "On": "10", - "Oa": "4.95", - "Od": "0.88", - "Ap": "10", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - } - } - }, - "c": 25 - }, - { - "i": 2303, - "n": "Emerson", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "48", - "On": "10", - "Oa": "4.8", - "Od": "0.64", - "Dp": "10", - "p": { - "33": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - } - } - }, - "c": 25 - }, - { - "i": 2494, - "n": "Hector", - "f": "Michael", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2570, - "n": "Collins", - "f": "Bradley", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2594, - "n": "Lucas Piazon", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2795, - "n": "Miazga", - "f": "Matt", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "36", - "On": "8", - "Oa": "4.5", - "Od": "1", - "Dp": "8" - }, - "c": 25 - }, - { - "i": 2977, - "n": "McEachran", - "f": "George", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 2980, - "n": "Cumming", - "f": "Jamie", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3640, - "n": "Maatsen", - "f": "Ian", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3644, - "n": "Gilmour", - "f": "Billy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3650, - "n": "Gallagher", - "f": "Conor", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3655, - "n": "James", - "f": "Reece", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3664, - "n": "Marc Guehi", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3679, - "n": "Mount", - "f": "Mason", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3681, - "n": "Ugbo", - "f": "Ike", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3682, - "n": "Chalobah", - "f": "Trevoh", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3687, - "n": "Pulisic", - "f": "Christian", - "p": "M", - "r": 35, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 3697, - "n": "Baker", - "f": "Lewis", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 25 - }, - { - "i": 615, - "n": "Benteke", - "f": "Christian", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "73", - "On": "16", - "Oa": "4.56", - "Od": "0.9", - "Ap": "16", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 4.5 - } - } - }, - "c": 26 - }, - { - "i": 663, - "n": "van Aanholt", - "f": "Patrick", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "3", - "Os": "187", - "On": "36", - "Oa": "5.19", - "Od": "0.98", - "Dp": "36", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 7.5, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4 - }, - "36": { - "n": 6 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 26 - }, - { - "i": 683, - "n": "Hennessey", - "f": "Wayne", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "96", - "On": "18", - "Oa": "5.33", - "Od": "1.25", - "Gp": "18" - }, - "c": 26 - }, - { - "i": 695, - "n": "Zaha", - "f": "Wilfried", - "p": "A", - "r": 22, - "s": { - "n": 0, - "Og": "10", - "Os": "182", - "On": "34", - "Oa": "5.35", - "Od": "1.15", - "Mp": "4", - "Ap": "30", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 6.5, - "g": 1 - }, - "38": { - "n": 7 - } - } - }, - "c": 26 - }, - { - "i": 704, - "n": "Ayew", - "f": "Jordan", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "90", - "On": "20", - "Oa": "4.53", - "Od": "0.86", - "Ap": "20", - "p": { - "35": { - "n": 5, - "s": 1 - }, - "37": { - "n": 4 - } - } - }, - "c": 26 - }, - { - "i": 740, - "n": "Dann", - "f": "Scott", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Os": "51", - "On": "10", - "Oa": "5.1", - "Od": "0.62", - "Dp": "10", - "p": { - "32": { - "n": 5.5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 26 - }, - { - "i": 777, - "n": "Townsend", - "f": "Andros", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "6", - "Os": "205", - "On": "38", - "Oa": "5.41", - "Od": "0.88", - "Mp": "17", - "Ap": "21", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 8, - "g": 1 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 26 - }, - { - "i": 808, - "n": "Wickham", - "f": "Connor", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "0.41", - "Ap": "6", - "p": { - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 26 - }, - { - "i": 828, - "n": "McArthur", - "f": "James", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "3", - "Os": "195", - "On": "38", - "Oa": "5.14", - "Od": "0.9", - "Mp": "38", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 6 - } - } - }, - "c": 26 - }, - { - "i": 843, - "n": "Kelly", - "f": "Martin", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "63", - "On": "13", - "Oa": "4.88", - "Od": "0.81", - "Dp": "13", - "p": { - "31": { - "n": 4.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4.5, - "a": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 26 - }, - { - "i": 855, - "n": "Kouyat\u00e9", - "f": "Cheikhou", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "152", - "On": "31", - "Oa": "4.92", - "Od": "0.67", - "Mp": "31", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 26 - }, - { - "i": 871, - "n": "Souar\u00e9", - "f": "Pape", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 26 - }, - { - "i": 888, - "n": "Ward", - "f": "Joel", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "32", - "On": "7", - "Oa": "4.64", - "Od": "0.52", - "Dp": "7", - "p": { - "35": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 26 - }, - { - "i": 895, - "n": "Milivojevic", - "f": "Luka", - "p": "M", - "r": 27, - "s": { - "n": 0, - "Og": "12", - "Os": "209", - "On": "38", - "Oa": "5.51", - "Od": "1.01", - "Mp": "38", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 26 - }, - { - "i": 927, - "n": "Sakho", - "f": "Mamadou", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "139", - "On": "27", - "Oa": "5.17", - "Od": "0.9", - "Dp": "27" - }, - "c": 26 - }, - { - "i": 942, - "n": "Tomkins", - "f": "James", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "147", - "On": "29", - "Oa": "5.07", - "Od": "0.7", - "Dp": "29", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - } - } - }, - "c": 26 - }, - { - "i": 987, - "n": "Schlupp", - "f": "Jeffrey", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "4", - "Os": "153", - "On": "30", - "Oa": "5.1", - "Od": "0.88", - "Mp": "17", - "Dp": "12", - "Ap": "1", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - } - } - }, - "c": 26 - }, - { - "i": 1004, - "n": "Sako", - "f": "Bakary", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.24", - "Mp": "3", - "p": { - "34": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 26 - }, - { - "i": 1061, - "n": "Kaikai", - "f": "Sullay", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 1073, - "n": "Speroni", - "f": "Julian", - "p": "G", - "r": 1, - "s": { - "n": 0, - "Os": "3", - "On": "1", - "Oa": "3.5", - "Gp": "1" - }, - "c": 26 - }, - { - "i": 1111, - "n": "Dreher", - "f": "Luke", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 1304, - "n": "Riedewald", - "f": "Jairo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 1342, - "n": "Williams", - "f": "Jonathan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 1678, - "n": "Guaita", - "f": "Vicente", - "p": "G", - "r": 18, - "s": { - "n": 0, - "Os": "112", - "On": "20", - "Oa": "5.63", - "Od": "0.92", - "Gp": "20", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 7 - }, - "33": { - "n": 7 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 26 - }, - { - "i": 2122, - "n": "Henry", - "f": "Dion", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 2304, - "n": "S\u00f8rloth", - "f": "Alexander", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "53", - "On": "12", - "Oa": "4.46", - "Od": "0.32", - "Ap": "12" - }, - "c": 26 - }, - { - "i": 2337, - "n": "Kirby", - "f": "Nya", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 2585, - "n": "Meyer", - "f": "Max", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "148", - "On": "29", - "Oa": "5.1", - "Od": "0.51", - "Mp": "29", - "p": { - "32": { - "n": 4 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 26 - }, - { - "i": 2845, - "n": "Gio McGregor", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 2852, - "n": "Woods", - "f": "Sam", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 3184, - "n": "Tupper", - "f": "Joe", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 3354, - "n": "Lucas Perri", - "f": "", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 3645, - "n": "Tavares", - "f": "Nikola", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 3736, - "n": "Henderson", - "f": "Stephen", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 26 - }, - { - "i": 174, - "n": "Diop", - "f": "Issa", - "p": "D", - "r": 21, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "176", - "On": "33", - "Oa": "5.33", - "Od": "1.12", - "Dp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4 - }, - "36": { - "n": 7.5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 28 - }, - { - "i": 620, - "n": "Lanzini", - "f": "Manuel", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "52", - "On": "10", - "Oa": "5.2", - "Od": "1.08", - "Mp": "10", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 28 - }, - { - "i": 622, - "n": "Wilshere", - "f": "Jack", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "41", - "On": "8", - "Oa": "5.19", - "Od": "0.66", - "Mp": "8", - "p": { - "35": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 6, - "s": 1 - } - } - }, - "c": 28 - }, - { - "i": 628, - "n": "Carroll", - "f": "Andy", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "53", - "On": "12", - "Oa": "4.42", - "Od": "0.49", - "Ap": "12" - }, - "c": 28 - }, - { - "i": 632, - "n": "Antonio", - "f": "Michail", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "6", - "Os": "166", - "On": "33", - "Oa": "5.05", - "Od": "1.14", - "Mp": "26", - "Dp": "3", - "Ap": "4", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 5, - "g": 1 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 6 - }, - "38": { - "n": 7 - } - } - }, - "c": 28 - }, - { - "i": 634, - "n": "Snodgrass", - "f": "Robert", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "163", - "On": "33", - "Oa": "4.94", - "Od": "0.99", - "Mp": "33", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5.5 - } - } - }, - "c": 28 - }, - { - "i": 664, - "n": "Arnautovic", - "f": "Marko", - "p": "A", - "r": 16, - "s": { - "n": 0, - "Og": "10", - "Os": "147", - "On": "28", - "Oa": "5.25", - "Od": "1.49", - "Mp": "1", - "Ap": "27", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 8, - "g": 2 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 28 - }, - { - "i": 684, - "n": "Noble", - "f": "Mark", - "p": "M", - "r": 19, - "s": { - "n": 0, - "Og": "5", - "Os": "163", - "On": "31", - "Oa": "5.26", - "Od": "1.26", - "Mp": "31", - "p": { - "31": { - "n": 5, - "g": 1 - }, - "33": { - "n": 4 - }, - "34": { - "n": 7 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 7 - }, - "38": { - "n": 8, - "g": 2 - } - } - }, - "c": 28 - }, - { - "i": 700, - "n": "Zabaleta", - "f": "Pablo", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "125", - "On": "26", - "Oa": "4.83", - "Od": "0.84", - "Dp": "26", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 3.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "38": { - "n": 4, - "s": 1 - } - } - }, - "c": 28 - }, - { - "i": 709, - "n": "Reid", - "f": "Winston", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 762, - "n": "Ogbonna", - "f": "Angelo", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "120", - "On": "24", - "Oa": "5.02", - "Od": "0.93", - "Dp": "24", - "p": { - "31": { - "n": 5, - "g": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 7 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 28 - }, - { - "i": 861, - "n": "Cresswell", - "f": "Aaron", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "100", - "On": "20", - "Oa": "5.03", - "Od": "0.62", - "Dp": "20", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - } - } - }, - "c": 28 - }, - { - "i": 870, - "n": "Fabianski", - "f": "Lukasz", - "p": "G", - "r": 25, - "s": { - "n": 0, - "Os": "225", - "On": "38", - "Oa": "5.93", - "Od": "0.83", - "Gp": "38", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 7 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 7.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 7 - } - } - }, - "c": 28 - }, - { - "i": 901, - "n": "Adri\u00e1n", - "f": "", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 934, - "n": "Masuaku", - "f": "Arthur", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "114", - "On": "23", - "Oa": "4.96", - "Od": "0.94", - "Dp": "23", - "p": { - "34": { - "n": 6.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 28 - }, - { - "i": 996, - "n": "Fernandes", - "f": "Edimilson", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 1087, - "n": "Rice", - "f": "Declan", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "2", - "Os": "196", - "On": "34", - "Oa": "5.78", - "Od": "0.8", - "Mp": "34", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 28 - }, - { - "i": 1132, - "n": "Diangana", - "f": "Grady", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "75", - "On": "16", - "Oa": "4.72", - "Od": "0.59", - "Mp": "16", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 28 - }, - { - "i": 1280, - "n": "Chicharito", - "f": "", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "7", - "Os": "124", - "On": "25", - "Oa": "4.96", - "Od": "1.11", - "Ap": "25", - "p": { - "31": { - "n": 7, - "g": 2, - "s": 1 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 4 - } - } - }, - "c": 28 - }, - { - "i": 1627, - "n": "Fornals", - "f": "Pablo", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "2", - "Os": "171", - "On": "35", - "Oa": "4.9", - "Od": "0.95", - "Mp": "32", - "Ap": "3", - "p": { - "32": { - "n": 6.5, - "e": 2284, - "c": 64 - }, - "33": { - "n": 5, - "e": 2301, - "c": 64 - }, - "34": { - "n": 5, - "e": 2305, - "c": 64 - }, - "35": { - "n": 6, - "e": 2321, - "c": 64, - "g": 1 - }, - "36": { - "n": 3.5, - "e": 2326, - "c": 64 - }, - "37": { - "n": 5, - "e": 2339, - "c": 64 - } - } - }, - "c": 28 - }, - { - "i": 1727, - "n": "Jim\u00e9nez", - "f": "Roberto", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2073, - "n": "Holland", - "f": "Nathan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2211, - "n": "Cullen", - "f": "Josh", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2221, - "n": "Johnson", - "f": "Ben", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2260, - "n": "Oxford", - "f": "Reece", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2293, - "n": "Carlos S\u00e1nchez", - "f": "", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "33", - "On": "7", - "Oa": "4.71", - "Od": "0.36", - "Mp": "7", - "p": { - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 28 - }, - { - "i": 2307, - "n": "Hugill", - "f": "Jordan", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2498, - "n": "Fredericks", - "f": "Ryan", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "77", - "On": "15", - "Oa": "5.13", - "Od": "1.16", - "Dp": "15", - "p": { - "33": { - "n": 4.5 - }, - "34": { - "n": 4, - "s": 1 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 8, - "g": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 28 - }, - { - "i": 2514, - "n": "Yarmolenko", - "f": "Andriy", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "2", - "Os": "43", - "On": "9", - "Oa": "4.83", - "Od": "0.53", - "Mp": "4", - "Ap": "5" - }, - "c": 28 - }, - { - "i": 2560, - "n": "Toni Mart\u00ednez", - "f": "", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2573, - "n": "Balbuena", - "f": "Fabi\u00e1n", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "117", - "On": "23", - "Oa": "5.11", - "Od": "1.17", - "Dp": "23", - "p": { - "33": { - "n": 4.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 28 - }, - { - "i": 2602, - "n": "Felipe Anderson", - "f": "", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "9", - "Os": "194", - "On": "36", - "Oa": "5.4", - "Od": "1.39", - "Mp": "34", - "Ap": "2", - "p": { - "31": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 7 - } - } - }, - "c": 28 - }, - { - "i": 2885, - "n": "Coventry", - "f": "Conor", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2888, - "n": "Joe Powell", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2979, - "n": "Xande Silva", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 2987, - "n": "Nasri", - "f": "Samir", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "1.02", - "Mp": "5", - "p": { - "31": { - "n": 6.5, - "s": 1 - } - } - }, - "c": 28 - }, - { - "i": 3744, - "n": "Martin", - "f": "David", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 5449, - "n": "Haller", - "f": "S\u00e9bastien", - "p": "A", - "r": 18, - "s": { - "n": 0 - }, - "c": 28 - }, - { - "i": 39, - "n": "Ghezzal", - "f": "Rachid", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "87", - "On": "19", - "Oa": "4.61", - "Od": "0.58", - "Mp": "17", - "Ap": "2", - "p": { - "32": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 148, - "n": "Ricardo Pereira", - "f": "", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "2", - "Os": "181", - "On": "35", - "Oa": "5.19", - "Od": "1.21", - "Mp": "7", - "Dp": "27", - "Ap": "1", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 7 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 7 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 29 - }, - { - "i": 610, - "n": "Vardy", - "f": "Jamie", - "p": "A", - "r": 28, - "s": { - "n": 0, - "Og": "18", - "Os": "181", - "On": "34", - "Oa": "5.32", - "Od": "1.32", - "Ap": "34", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6.5, - "g": 1 - }, - "33": { - "n": 7.5, - "g": 2 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "36": { - "n": 8, - "g": 2 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 29 - }, - { - "i": 648, - "n": "Slimani", - "f": "Islam", - "p": "A", - "r": 8, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 660, - "n": "Okazaki", - "f": "Shinji", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "95", - "On": "21", - "Oa": "4.55", - "Od": "0.34", - "Ap": "21", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 689, - "n": "Schmeichel", - "f": "Kasper", - "p": "G", - "r": 19, - "s": { - "n": 0, - "Os": "203", - "On": "38", - "Oa": "5.36", - "Od": "0.95", - "Gp": "38", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 29 - }, - { - "i": 701, - "n": "Morgan", - "f": "Wes", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "3", - "Os": "117", - "On": "22", - "Oa": "5.32", - "Od": "1.09", - "Dp": "22", - "p": { - "31": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "32": { - "n": 7.5, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - } - } - }, - "c": 29 - }, - { - "i": 734, - "n": "Albrighton", - "f": "Marc", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "142", - "On": "27", - "Oa": "5.28", - "Od": "0.81", - "Mp": "23", - "Ap": "4", - "p": { - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 29 - }, - { - "i": 735, - "n": "Jonny Evans", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "128", - "On": "24", - "Oa": "5.33", - "Od": "0.98", - "Dp": "24", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 7 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 29 - }, - { - "i": 756, - "n": "Fuchs", - "f": "Christian", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.62", - "Dp": "3", - "p": { - "31": { - "n": 5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 785, - "n": "King", - "f": "Andy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 798, - "n": "Jakupovic", - "f": "Eldin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 838, - "n": "Iheanacho", - "f": "Kelechi", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "134", - "On": "30", - "Oa": "4.47", - "Od": "0.71", - "Mp": "3", - "Ap": "27", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 851, - "n": "Mendy", - "f": "Nampalys", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "159", - "On": "31", - "Oa": "5.15", - "Od": "0.93", - "Mp": "31", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 858, - "n": "Simpson", - "f": "Danny", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "30", - "On": "6", - "Oa": "5", - "Od": "1.04", - "Dp": "6", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 864, - "n": "Gray", - "f": "Demarai", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "4", - "Os": "167", - "On": "34", - "Oa": "4.91", - "Od": "0.82", - "Mp": "30", - "Ap": "4", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 880, - "n": "Amartey", - "f": "Daniel", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "44", - "On": "9", - "Oa": "4.94", - "Od": "0.8", - "Mp": "2", - "Dp": "7" - }, - "c": 29 - }, - { - "i": 898, - "n": "Maguire", - "f": "Harry", - "p": "D", - "r": 23, - "s": { - "n": 0, - "Og": "3", - "Os": "167", - "On": "31", - "Oa": "5.4", - "Od": "1.07", - "Dp": "31", - "p": { - "31": { - "n": 3.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 29 - }, - { - "i": 1015, - "n": "Wilfred Ndidi", - "f": "", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "2", - "Os": "212", - "On": "38", - "Oa": "5.59", - "Od": "0.89", - "Mp": "38", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 8 - }, - "33": { - "n": 6 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 29 - }, - { - "i": 1041, - "n": "Kapustka", - "f": "Bartosz", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 1053, - "n": "Benalouane", - "f": "Yohan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 1057, - "n": "Chilwell", - "f": "Ben", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Os": "174", - "On": "36", - "Oa": "4.85", - "Od": "0.95", - "Mp": "2", - "Dp": "34", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 29 - }, - { - "i": 1160, - "n": "Tielemans", - "f": "Youri", - "p": "M", - "r": 21, - "s": { - "n": 0, - "Og": "8", - "Os": "178", - "On": "33", - "Oa": "5.41", - "Od": "1.01", - "Mp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 7.5 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 7, - "g": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 29 - }, - { - "i": 1368, - "n": "Knight", - "f": "Josh", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 1371, - "n": "James", - "f": "Matty", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 1383, - "n": "Ward", - "f": "Danny", - "p": "G", - "r": 5, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 2067, - "n": "Choudhury", - "f": "Hamza", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "49", - "On": "9", - "Oa": "5.44", - "Od": "0.76", - "Mp": "9", - "p": { - "33": { - "n": 5, - "s": 1 - }, - "36": { - "n": 7 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 29 - }, - { - "i": 2132, - "n": "Ayoze P\u00e9rez", - "f": "", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "12", - "Os": "195", - "On": "37", - "Oa": "5.27", - "Od": "1.31", - "Mp": "20", - "Ap": "17", - "p": { - "31": { - "n": 5, - "e": 3468, - "c": 46 - }, - "32": { - "n": 4, - "e": 3478, - "c": 46 - }, - "33": { - "n": 5.5, - "e": 3493, - "c": 46 - }, - "34": { - "n": 7, - "e": 3502, - "c": 46, - "g": 1 - }, - "35": { - "n": 8, - "e": 3515, - "c": 46, - "g": 3 - }, - "36": { - "n": 6, - "e": 3518, - "c": 46, - "g": 1 - }, - "37": { - "n": 3.5, - "e": 3535, - "c": 46 - }, - "38": { - "n": 7.5, - "e": 3541, - "c": 46, - "g": 1 - } - } - }, - "c": 29 - }, - { - "i": 2198, - "n": "Adrien Silva", - "f": "", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "90", - "On": "17", - "Oa": "5.32", - "Od": "0.51", - "Mp": "17", - "p": { - "31": { - "n": 5, - "e": 3035, - "c": 13 - }, - "32": { - "n": 6, - "e": 3046, - "c": 13 - }, - "33": { - "n": 5, - "e": 3058, - "c": 13 - }, - "34": { - "n": 4.5, - "e": 3070, - "c": 13 - }, - "35": { - "n": 5.5, - "e": 3075, - "c": 13 - }, - "36": { - "n": 5, - "e": 3089, - "c": 13 - }, - "37": { - "n": 5.5, - "e": 3096, - "c": 13 - }, - "38": { - "n": 5.5, - "e": 3108, - "c": 13 - } - } - }, - "c": 29 - }, - { - "i": 2207, - "n": "Barnes", - "f": "Harvey", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "76", - "On": "15", - "Oa": "5.1", - "Od": "0.73", - "Mp": "12", - "Ap": "3", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 7, - "g": 1, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 29 - }, - { - "i": 2261, - "n": "Diabat\u00e9", - "f": "Fousseni", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1" - }, - "c": 29 - }, - { - "i": 2567, - "n": "Maddison", - "f": "James", - "p": "M", - "r": 24, - "s": { - "n": 0, - "Og": "7", - "Os": "200", - "On": "36", - "Oa": "5.56", - "Od": "1.03", - "Mp": "29", - "Ap": "7", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 7.5, - "g": 1 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 7 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 29 - }, - { - "i": 2572, - "n": "Elder", - "f": "Callum", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 2754, - "n": "S\u00f6y\u00fcnc\u00fc", - "f": "\u00c7aglar", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "28", - "On": "6", - "Oa": "4.75", - "Od": "0.25", - "Dp": "6", - "p": { - "33": { - "n": 4.5 - } - } - }, - "c": 29 - }, - { - "i": 2755, - "n": "Benkovic", - "f": "Filip", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 2925, - "n": "Leshabela", - "f": "Thakgalo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 3658, - "n": "Justin", - "f": "James", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 3690, - "n": "Thomas", - "f": "George", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5411, - "n": "Fitzhugh", - "f": "Ethan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5418, - "n": "Tavares", - "f": "Sidnei", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5422, - "n": "Pennant", - "f": "Terell", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5425, - "n": "Wright", - "f": "Callum", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5430, - "n": "Daley-Campbell", - "f": "Vontae", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5434, - "n": "Johansson", - "f": "Viktor", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5443, - "n": "Moore", - "f": "Elliott", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5444, - "n": "Muskwe", - "f": "Admiral", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 5445, - "n": "Ndukwu", - "f": "Layton", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 29 - }, - { - "i": 586, - "n": "Lukaku", - "f": "Romelu", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "12", - "Os": "160", - "On": "32", - "Oa": "5", - "Od": "1.16", - "Ap": "32", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 3 - }, - "36": { - "n": 5 - } - } - }, - "c": 31 - }, - { - "i": 587, - "n": "S\u00e1nchez", - "f": "Alexis", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "100", - "On": "20", - "Oa": "5", - "Od": "0.65", - "Mp": "1", - "Ap": "19", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 31 - }, - { - "i": 595, - "n": "Pogba", - "f": "Paul", - "p": "M", - "r": 30, - "s": { - "n": 0, - "Og": "13", - "Os": "187", - "On": "35", - "Oa": "5.36", - "Od": "1.41", - "Mp": "35", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 7, - "g": 2 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 31 - }, - { - "i": 600, - "n": "de Gea", - "f": "David", - "p": "G", - "r": 18, - "s": { - "n": 0, - "Os": "201", - "On": "38", - "Oa": "5.3", - "Od": "1.08", - "Gp": "38", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 7 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 31 - }, - { - "i": 604, - "n": "Mata", - "f": "Juan", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "112", - "On": "22", - "Oa": "5.11", - "Od": "0.93", - "Mp": "16", - "Ap": "6", - "p": { - "32": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 31 - }, - { - "i": 608, - "n": "Antonio Valencia", - "f": "", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "30", - "On": "6", - "Oa": "5.08", - "Od": "0.79", - "Mp": "2", - "Dp": "4", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 31 - }, - { - "i": 616, - "n": "Matic", - "f": "Nemanja", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "1", - "Os": "146", - "On": "28", - "Oa": "5.21", - "Od": "0.8", - "Mp": "27", - "Dp": "1", - "p": { - "32": { - "n": 3.5 - }, - "35": { - "n": 3 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - } - } - }, - "c": 31 - }, - { - "i": 626, - "n": "Martial", - "f": "Anthony", - "p": "A", - "r": 15, - "s": { - "n": 0, - "Og": "10", - "Os": "139", - "On": "27", - "Oa": "5.15", - "Od": "1.21", - "Mp": "4", - "Ap": "23", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 31 - }, - { - "i": 637, - "n": "Fellaini", - "f": "Marouane", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "71", - "On": "14", - "Oa": "5.07", - "Od": "0.59", - "Mp": "14" - }, - "c": 31 - }, - { - "i": 641, - "n": "Rashford", - "f": "Marcus", - "p": "A", - "r": 28, - "s": { - "n": 0, - "Og": "10", - "Os": "170", - "On": "33", - "Oa": "5.17", - "Od": "1.24", - "Mp": "4", - "Ap": "29", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6, - "g": 1 - }, - "34": { - "n": 4, - "s": 1 - }, - "35": { - "n": 3 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 31 - }, - { - "i": 706, - "n": "Bailly", - "f": "Eric", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "59", - "On": "12", - "Oa": "4.92", - "Od": "0.86", - "Dp": "12", - "p": { - "36": { - "n": 6 - } - } - }, - "c": 31 - }, - { - "i": 731, - "n": "Rojo", - "f": "Marcos", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Oao": "1", - "Os": "22", - "On": "5", - "Oa": "4.5", - "Od": "0.77", - "Dp": "5", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 31 - }, - { - "i": 743, - "n": "Jones", - "f": "Phil", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "98", - "On": "18", - "Oa": "5.44", - "Od": "0.93", - "Dp": "18", - "p": { - "32": { - "n": 6.5 - }, - "33": { - "n": 5.5, - "s": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 3.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 31 - }, - { - "i": 749, - "n": "Smalling", - "f": "Chris", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "118", - "On": "24", - "Oa": "4.92", - "Od": "0.91", - "Dp": "24", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 3, - "a": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 3 - }, - "38": { - "n": 5 - } - } - }, - "c": 31 - }, - { - "i": 768, - "n": "Lingard", - "f": "Jesse", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "4", - "Os": "132", - "On": "27", - "Oa": "4.89", - "Od": "0.81", - "Mp": "16", - "Ap": "11", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 31 - }, - { - "i": 797, - "n": "Darmian", - "f": "Matteo", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.8", - "Mp": "1", - "Dp": "5", - "p": { - "31": { - "n": 4 - } - } - }, - "c": 31 - }, - { - "i": 804, - "n": "Shaw", - "f": "Luke", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "143", - "On": "29", - "Oa": "4.95", - "Od": "0.98", - "Mp": "2", - "Dp": "27", - "p": { - "31": { - "n": 3 - }, - "32": { - "n": 7 - }, - "33": { - "n": 3.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 31 - }, - { - "i": 876, - "n": "Grant", - "f": "Lee", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 889, - "n": "Romero", - "f": "Sergio", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 947, - "n": "Young", - "f": "Ashley", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "147", - "On": "30", - "Oa": "4.92", - "Od": "0.89", - "Dp": "30", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3 - }, - "35": { - "n": 3.5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 31 - }, - { - "i": 1062, - "n": "Tuanzebe", - "f": "Axel", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 1063, - "n": "Fosu-Mensah", - "f": "Timothy", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Oao": "1", - "Os": "53", - "On": "12", - "Oa": "4.42", - "Od": "0.67", - "Dp": "12", - "p": { - "31": { - "n": 5, - "e": 3472, - "c": 71 - }, - "32": { - "n": 4, - "e": 3483, - "c": 71 - }, - "34": { - "n": 5.5, - "e": 3501, - "c": 71 - } - } - }, - "c": 31 - }, - { - "i": 1079, - "n": "James", - "f": "Daniel", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 1080, - "n": "Joel Pereira", - "f": "", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 1095, - "n": "Wan-Bissaka", - "f": "Aaron", - "p": "D", - "r": 21, - "s": { - "n": 0, - "Os": "181", - "On": "35", - "Oa": "5.19", - "Od": "0.78", - "Dp": "35", - "p": { - "31": { - "n": 5, - "e": 3474, - "c": 26 - }, - "32": { - "n": 6, - "e": 3482, - "c": 26 - }, - "33": { - "n": 6, - "e": 3493, - "c": 26 - }, - "34": { - "n": 5, - "e": 3500, - "c": 26 - }, - "35": { - "n": 5.5, - "e": 3509, - "c": 26 - }, - "36": { - "n": 5.5, - "e": 3520, - "c": 26 - }, - "37": { - "n": 5, - "e": 3530, - "c": 26 - }, - "38": { - "n": 4.5, - "e": 3540, - "c": 26 - } - } - }, - "c": 31 - }, - { - "i": 1286, - "n": "Lindel\u00f6f", - "f": "Victor", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "157", - "On": "30", - "Oa": "5.23", - "Od": "0.94", - "Dp": "30", - "p": { - "31": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "35": { - "n": 3 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 31 - }, - { - "i": 1355, - "n": "Andreas Pereira", - "f": "", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "70", - "On": "15", - "Oa": "4.67", - "Od": "0.75", - "Mp": "15", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 31 - }, - { - "i": 2062, - "n": "McTominay", - "f": "Scott", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "2", - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "0.73", - "Mp": "14", - "Dp": "2", - "p": { - "33": { - "n": 6, - "g": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5.5, - "g": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 31 - }, - { - "i": 2286, - "n": "Gomes", - "f": "Angel", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "2", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 31 - }, - { - "i": 2341, - "n": "Hamilton", - "f": "Ethan", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 2541, - "n": "Diogo Dalot", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "0.68", - "Mp": "4", - "Dp": "11", - "Ap": "1", - "p": { - "33": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 3.5 - }, - "37": { - "n": 5.5, - "s": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 31 - }, - { - "i": 2601, - "n": "Fred", - "f": "", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "83", - "On": "17", - "Oa": "4.88", - "Od": "0.9", - "Mp": "17", - "p": { - "31": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 3.5 - } - } - }, - "c": 31 - }, - { - "i": 2750, - "n": "Kovar", - "f": "Matej", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 2751, - "n": "Chong", - "f": "Tahith", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "37": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 31 - }, - { - "i": 2752, - "n": "Bohui", - "f": "Joshua", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 2757, - "n": "O'Hara", - "f": "Kieran", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 31 - }, - { - "i": 2976, - "n": "Greenwood", - "f": "Mason", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.24", - "Ap": "3", - "p": { - "34": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 31 - }, - { - "i": 3118, - "n": "Garner", - "f": "James", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 31 - }, - { - "i": 450, - "n": "Lukebakio", - "f": "Dodi", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 640, - "n": "Deeney", - "f": "Troy", - "p": "A", - "r": 19, - "s": { - "n": 0, - "Og": "9", - "Os": "161", - "On": "32", - "Oa": "5.05", - "Od": "1.31", - "Ap": "32", - "p": { - "32": { - "n": 5 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 2.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 4 - } - } - }, - "c": 33 - }, - { - "i": 653, - "n": "Dawson", - "f": "Craig", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 688, - "n": "Gray", - "f": "Andre", - "p": "A", - "r": 12, - "s": { - "n": 0, - "Og": "7", - "Os": "140", - "On": "29", - "Oa": "4.83", - "Od": "0.87", - "Ap": "29", - "p": { - "31": { - "n": 6, - "g": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 7, - "s": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 33 - }, - { - "i": 702, - "n": "Heurelho Gomes", - "f": "", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 730, - "n": "Holebas", - "f": "Jos\u00e9", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "3", - "Os": "137", - "On": "28", - "Oa": "4.89", - "Od": "1.03", - "Dp": "28", - "p": { - "33": { - "n": 5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 4 - }, - "38": { - "n": 3 - } - } - }, - "c": 33 - }, - { - "i": 738, - "n": "Foster", - "f": "Ben", - "p": "G", - "r": 17, - "s": { - "n": 0, - "Os": "208", - "On": "38", - "Oa": "5.47", - "Od": "0.97", - "Gp": "38", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 33 - }, - { - "i": 739, - "n": "Pereyra", - "f": "Roberto", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "6", - "Os": "163", - "On": "33", - "Oa": "4.95", - "Od": "1.29", - "Mp": "33", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 33 - }, - { - "i": 758, - "n": "Capoue", - "f": "Etienne", - "p": "M", - "r": 21, - "s": { - "n": 0, - "Og": "1", - "Os": "190", - "On": "33", - "Oa": "5.76", - "Od": "1", - "Mp": "33", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 33 - }, - { - "i": 782, - "n": "Kaboul", - "f": "Younes", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 812, - "n": "Pr\u00f6dl", - "f": "Sebastian", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1" - }, - "c": 33 - }, - { - "i": 823, - "n": "Kabasele", - "f": "Christian", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "102", - "On": "21", - "Oa": "4.88", - "Od": "0.84", - "Dp": "21", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 33 - }, - { - "i": 836, - "n": "Britos", - "f": "Miguel", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.47", - "Dp": "3", - "p": { - "32": { - "n": 4 - } - } - }, - "c": 33 - }, - { - "i": 845, - "n": "Okaka", - "f": "Stefano", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4.25", - "Od": "0.25", - "Ap": "2" - }, - "c": 33 - }, - { - "i": 865, - "n": "Janmaat", - "f": "Daryl", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "92", - "On": "18", - "Oa": "5.14", - "Od": "0.72", - "Dp": "18", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 6 - } - } - }, - "c": 33 - }, - { - "i": 869, - "n": "Isaac Success", - "f": "", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "142", - "On": "30", - "Oa": "4.73", - "Od": "0.67", - "Mp": "2", - "Ap": "28", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 6, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 33 - }, - { - "i": 933, - "n": "Cleverley", - "f": "Tom", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "65", - "On": "13", - "Oa": "5.04", - "Od": "0.63", - "Mp": "13", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 33 - }, - { - "i": 944, - "n": "Doucour\u00e9", - "f": "Abdoulaye", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "5", - "Oao": "1", - "Os": "182", - "On": "35", - "Oa": "5.2", - "Od": "1.12", - "Mp": "35", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 33 - }, - { - "i": 948, - "n": "Cathcart", - "f": "Craig", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Og": "3", - "Oao": "2", - "Os": "181", - "On": "36", - "Oa": "5.03", - "Od": "0.99", - "Dp": "36", - "p": { - "31": { - "n": 3.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 33 - }, - { - "i": 953, - "n": "Dja Dj\u00e9dj\u00e9", - "f": "Brice", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 979, - "n": "Chalobah", - "f": "Nathaniel", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "42", - "On": "9", - "Oa": "4.67", - "Od": "0.24", - "Mp": "9", - "p": { - "35": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 33 - }, - { - "i": 1081, - "n": "Mariappa", - "f": "Adrian", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "125", - "On": "26", - "Oa": "4.81", - "Od": "0.82", - "Dp": "26", - "p": { - "33": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 33 - }, - { - "i": 1086, - "n": "Bachmann", - "f": "Daniel", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 1107, - "n": "Quina", - "f": "Domingos", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Og": "1", - "Os": "39", - "On": "8", - "Oa": "4.94", - "Od": "0.53", - "Mp": "8", - "p": { - "33": { - "n": 5, - "s": 1 - } - } - }, - "c": 33 - }, - { - "i": 1298, - "n": "Kiko Femen\u00eda", - "f": "", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "143", - "On": "29", - "Oa": "4.95", - "Od": "1.04", - "Mp": "2", - "Dp": "27", - "p": { - "31": { - "n": 6, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 2 - } - } - }, - "c": 33 - }, - { - "i": 1311, - "n": "Hughes", - "f": "Will", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "2", - "Os": "159", - "On": "32", - "Oa": "4.98", - "Od": "0.97", - "Mp": "32", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 33 - }, - { - "i": 1335, - "n": "Sinclair", - "f": "Jerome", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 1535, - "n": "Foulquier", - "f": "Dimitri", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "3", - "Os": "120", - "On": "25", - "Oa": "4.82", - "Od": "0.9", - "Mp": "20", - "Dp": "5", - "p": { - "31": { - "n": 3, - "e": 2276, - "c": 58 - }, - "36": { - "n": 6, - "e": 2323, - "c": 58 - }, - "37": { - "n": 4.5, - "e": 2334, - "c": 58 - }, - "38": { - "n": 4, - "e": 2345, - "c": 58 - } - } - }, - "c": 33 - }, - { - "i": 1724, - "n": "Deulofeu", - "f": "Gerard", - "p": "A", - "r": 18, - "s": { - "n": 0, - "Og": "10", - "Os": "149", - "On": "30", - "Oa": "4.97", - "Od": "1.41", - "Mp": "1", - "Ap": "29", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4 - }, - "35": { - "n": 8, - "g": 2 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 33 - }, - { - "i": 1942, - "n": "Pe\u00f1aranda", - "f": "Adalberto", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 2023, - "n": "Zeegelaar", - "f": "Marvin", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 2229, - "n": "Tom Dele-Bashiru", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 2536, - "n": "Wilmot", - "f": "Ben", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Od": "0.5", - "Dp": "2" - }, - "c": 33 - }, - { - "i": 2547, - "n": "Dahlberg", - "f": "Pontus", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 2559, - "n": "Oular\u00e9", - "f": "Obbi", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 2578, - "n": "Sema", - "f": "Ken", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Og": "1", - "Os": "80", - "On": "17", - "Oa": "4.74", - "Od": "0.73", - "Mp": "17", - "p": { - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5 - } - } - }, - "c": 33 - }, - { - "i": 2579, - "n": "Masina", - "f": "Adam", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "66", - "On": "14", - "Oa": "4.75", - "Od": "0.82", - "Dp": "14", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 33 - }, - { - "i": 5415, - "n": "Forster", - "f": "Harry", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 33 - }, - { - "i": 66, - "n": "Carrillo", - "f": "Guido", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "6", - "Os": "156", - "On": "32", - "Oa": "4.88", - "Od": "0.91", - "Ap": "32", - "p": { - "32": { - "n": 4, - "e": 2285, - "c": 47 - }, - "33": { - "n": 4, - "e": 2301, - "c": 47 - }, - "34": { - "n": 4, - "e": 2306, - "c": 47 - }, - "35": { - "n": 5, - "e": 2318, - "c": 47, - "s": 1 - }, - "36": { - "n": 4.5, - "e": 2331, - "c": 47, - "s": 1 - }, - "37": { - "n": 4.5, - "e": 2340, - "c": 47, - "s": 1 - }, - "38": { - "n": 5, - "e": 2346, - "c": 47 - } - } - }, - "c": 35 - }, - { - "i": 669, - "n": "Long", - "f": "Shane", - "p": "A", - "r": 13, - "s": { - "n": 0, - "Og": "5", - "Os": "119", - "On": "26", - "Oa": "4.58", - "Od": "1.03", - "Mp": "1", - "Ap": "25", - "p": { - "31": { - "n": 6, - "g": 1 - }, - "33": { - "n": 5.5, - "g": 1 - }, - "34": { - "n": 6, - "g": 1, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 3 - }, - "38": { - "n": 3 - } - } - }, - "c": 35 - }, - { - "i": 673, - "n": "Redmond", - "f": "Nathan", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "6", - "Os": "189", - "On": "38", - "Oa": "4.97", - "Od": "1.11", - "Mp": "17", - "Ap": "21", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 8, - "g": 2 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 35 - }, - { - "i": 693, - "n": "Austin", - "f": "Charlie", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Og": "2", - "Os": "111", - "On": "25", - "Oa": "4.44", - "Od": "0.83", - "Ap": "25", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 3.5, - "s": 1 - }, - "38": { - "n": 4, - "s": 1 - } - } - }, - "c": 35 - }, - { - "i": 710, - "n": "Oriol Romeu", - "f": "", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "161", - "On": "31", - "Oa": "5.19", - "Od": "0.92", - "Mp": "31", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 4 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 6 - } - } - }, - "c": 35 - }, - { - "i": 721, - "n": "Bertrand", - "f": "Ryan", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "106", - "On": "24", - "Oa": "4.42", - "Od": "0.81", - "Mp": "10", - "Dp": "14", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 35 - }, - { - "i": 725, - "n": "Forster", - "f": "Fraser", - "p": "G", - "r": 11, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Gp": "1", - "p": { - "37": { - "n": 4.5 - } - } - }, - "c": 35 - }, - { - "i": 727, - "n": "H\u00f8jbjerg", - "f": "Pierre-Emile", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "4", - "Os": "166", - "On": "31", - "Oa": "5.37", - "Od": "1.12", - "Mp": "31", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6.5, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 35 - }, - { - "i": 745, - "n": "Davis", - "f": "Steven", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "17", - "On": "3", - "Oa": "5.67", - "Od": "0.94", - "Mp": "3" - }, - "c": 35 - }, - { - "i": 755, - "n": "C\u00e9dric Soares", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "84", - "On": "18", - "Oa": "4.67", - "Od": "1.12", - "Mp": "3", - "Dp": "15" - }, - "c": 35 - }, - { - "i": 826, - "n": "Boufal", - "f": "Sofiane", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "3", - "Os": "173", - "On": "35", - "Oa": "4.96", - "Od": "0.81", - "Mp": "34", - "Ap": "1", - "p": { - "31": { - "n": 5, - "e": 2274, - "c": 51 - }, - "32": { - "n": 6, - "e": 2283, - "c": 51 - }, - "33": { - "n": 7, - "e": 2295, - "c": 51, - "g": 1 - }, - "35": { - "n": 4.5, - "e": 2318, - "c": 51 - }, - "36": { - "n": 5.5, - "e": 2329, - "c": 51 - }, - "37": { - "n": 4.5, - "e": 2332, - "c": 51, - "s": 1 - }, - "38": { - "n": 5, - "e": 2343, - "c": 51, - "s": 1 - } - } - }, - "c": 35 - }, - { - "i": 857, - "n": "Ward-Prowse", - "f": "James", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "7", - "Oao": "1", - "Os": "137", - "On": "26", - "Oa": "5.29", - "Od": "1.02", - "Mp": "24", - "Ap": "2", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 35 - }, - { - "i": 879, - "n": "Yoshida", - "f": "Maya", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "87", - "On": "17", - "Oa": "5.12", - "Od": "1.05", - "Dp": "17", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 4 - } - } - }, - "c": 35 - }, - { - "i": 940, - "n": "McCarthy", - "f": "Alex", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "131", - "On": "25", - "Oa": "5.26", - "Od": "1.16", - "Gp": "25" - }, - "c": 35 - }, - { - "i": 962, - "n": "Clasie", - "f": "Jordy", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 1010, - "n": "Danny Ings", - "f": "", - "p": "A", - "r": 15, - "s": { - "n": 0, - "Og": "7", - "Os": "120", - "On": "24", - "Oa": "5.02", - "Od": "1.1", - "Ap": "24", - "p": { - "32": { - "n": 4.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 3 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 35 - }, - { - "i": 1030, - "n": "Josh Sims", - "f": "", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "33", - "On": "7", - "Oa": "4.79", - "Od": "0.96", - "Mp": "5", - "Ap": "2", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 3 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 35 - }, - { - "i": 1037, - "n": "McQueen", - "f": "Sam", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 1050, - "n": "Stephens", - "f": "Jack", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "112", - "On": "24", - "Oa": "4.67", - "Od": "1.04", - "Dp": "24", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 35 - }, - { - "i": 1051, - "n": "Reed", - "f": "Harrison", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 1077, - "n": "Lewis", - "f": "Harry", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 1078, - "n": "Hesketh", - "f": "Jake", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 1105, - "n": "Gunn", - "f": "Angus", - "p": "G", - "r": 9, - "s": { - "n": 0, - "Os": "62", - "On": "12", - "Oa": "5.21", - "Od": "1.56", - "Gp": "12", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 2.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 35 - }, - { - "i": 1302, - "n": "Hoedt", - "f": "Wesley", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Oao": "2", - "Os": "104", - "On": "23", - "Oa": "4.52", - "Od": "1.17", - "Dp": "23", - "p": { - "34": { - "n": 5, - "e": 2308, - "c": 51 - }, - "37": { - "n": 4, - "e": 2332, - "c": 51 - } - } - }, - "c": 35 - }, - { - "i": 1315, - "n": "Lemina", - "f": "Mario", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Og": "1", - "Os": "105", - "On": "21", - "Oa": "5.02", - "Od": "0.93", - "Mp": "21", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "35": { - "n": 6, - "g": 1, - "s": 1 - }, - "37": { - "n": 4 - } - } - }, - "c": 35 - }, - { - "i": 1333, - "n": "Bednarek", - "f": "Jan", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "125", - "On": "25", - "Oa": "5", - "Od": "1.01", - "Dp": "25", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 35 - }, - { - "i": 2264, - "n": "Obafemi", - "f": "Michael", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Og": "1", - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "1", - "Ap": "2" - }, - "c": 35 - }, - { - "i": 2484, - "n": "Mohamed Elyounoussi", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "78", - "On": "16", - "Oa": "4.88", - "Od": "0.6", - "Mp": "16", - "p": { - "37": { - "n": 3 - } - } - }, - "c": 35 - }, - { - "i": 2486, - "n": "Vestergaard", - "f": "Jannik", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "121", - "On": "23", - "Oa": "5.28", - "Od": "0.79", - "Dp": "23", - "p": { - "33": { - "n": 5.5 - }, - "34": { - "n": 6 - } - } - }, - "c": 35 - }, - { - "i": 2488, - "n": "Armstrong", - "f": "Stuart", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "3", - "Os": "141", - "On": "29", - "Oa": "4.88", - "Od": "0.74", - "Mp": "21", - "Ap": "8", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 3.5 - } - } - }, - "c": 35 - }, - { - "i": 2543, - "n": "Valery", - "f": "Yan", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "2", - "Os": "105", - "On": "23", - "Oa": "4.57", - "Od": "0.74", - "Mp": "14", - "Dp": "9", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 35 - }, - { - "i": 2561, - "n": "Jones", - "f": "Alfie", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 2581, - "n": "Flannigan", - "f": "Jake", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 2582, - "n": "Gallagher", - "f": "Sam", - "p": "A", - "r": 3, - "s": { - "n": 0, - "Os": "17", - "On": "4", - "Oa": "4.38", - "Od": "0.22", - "Ap": "4", - "p": { - "32": { - "n": 4, - "s": 1 - } - } - }, - "c": 35 - }, - { - "i": 2974, - "n": "Ramsay", - "f": "Kayne", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 2982, - "n": "Johnson", - "f": "Tyreke", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 2983, - "n": "Slattery", - "f": "Callum", - "p": "M", - "r": 2, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.24", - "Mp": "3" - }, - "c": 35 - }, - { - "i": 2985, - "n": "Barnes", - "f": "Marcus", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 3643, - "n": "Djenepo", - "f": "Moussa", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 3668, - "n": "Adams", - "f": "Che", - "p": "A", - "r": 7, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 5436, - "n": "Vokins", - "f": "Jake", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 5437, - "n": "Smallbone", - "f": "William", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 35 - }, - { - "i": 597, - "n": "Defoe", - "f": "Jermain", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.5", - "Ap": "4" - }, - "c": 36 - }, - { - "i": 651, - "n": "King", - "f": "Joshua", - "p": "A", - "r": 17, - "s": { - "n": 0, - "Og": "12", - "Os": "171", - "On": "35", - "Oa": "4.9", - "Od": "1.33", - "Mp": "2", - "Ap": "33", - "p": { - "31": { - "n": 7, - "g": 2 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 36 - }, - { - "i": 729, - "n": "Daniels", - "f": "Charlie", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Og": "1", - "Os": "98", - "On": "21", - "Oa": "4.67", - "Od": "1", - "Mp": "2", - "Dp": "19", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4.5 - } - } - }, - "c": 36 - }, - { - "i": 736, - "n": "Stanislas", - "f": "Junior", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "2", - "Os": "112", - "On": "23", - "Oa": "4.89", - "Od": "0.97", - "Mp": "19", - "Dp": "2", - "Ap": "2", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "35": { - "n": 5 - } - } - }, - "c": 36 - }, - { - "i": 744, - "n": "Fraser", - "f": "Ryan", - "p": "M", - "r": 23, - "s": { - "n": 0, - "Og": "7", - "Os": "211", - "On": "38", - "Oa": "5.55", - "Od": "1.38", - "Mp": "34", - "Ap": "4", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 8, - "g": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6, - "s": 1 - }, - "37": { - "n": 8 - }, - "38": { - "n": 4 - } - } - }, - "c": 36 - }, - { - "i": 754, - "n": "Arter", - "f": "Harry", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "126", - "On": "25", - "Oa": "5.04", - "Od": "0.93", - "Mp": "24", - "Ap": "1", - "p": { - "32": { - "n": 6.5, - "e": 3481, - "c": 70 - }, - "34": { - "n": 5, - "e": 3499, - "c": 70 - } - } - }, - "c": 36 - }, - { - "i": 784, - "n": "Steve Cook", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "155", - "On": "31", - "Oa": "5", - "Od": "1.32", - "Dp": "31", - "p": { - "34": { - "n": 7 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 3 - } - } - }, - "c": 36 - }, - { - "i": 809, - "n": "Wilson", - "f": "Callum", - "p": "A", - "r": 24, - "s": { - "n": 0, - "Og": "14", - "Os": "161", - "On": "30", - "Oa": "5.38", - "Od": "1.64", - "Ap": "30", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 8, - "g": 1 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 8, - "g": 2 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 36 - }, - { - "i": 827, - "n": "Francis", - "f": "Simon", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "81", - "On": "17", - "Oa": "4.76", - "Od": "0.84", - "Dp": "17" - }, - "c": 36 - }, - { - "i": 832, - "n": "Smith", - "f": "Brad", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 840, - "n": "Ak\u00e9", - "f": "Nathan", - "p": "D", - "r": 23, - "s": { - "n": 0, - "Og": "4", - "Os": "194", - "On": "38", - "Oa": "5.11", - "Od": "1.17", - "Mp": "2", - "Dp": "36", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 36 - }, - { - "i": 867, - "n": "Surman", - "f": "Andrew", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "88", - "On": "18", - "Oa": "4.89", - "Od": "1.03", - "Mp": "18" - }, - "c": 36 - }, - { - "i": 891, - "n": "Smith", - "f": "Adam", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "124", - "On": "25", - "Oa": "4.96", - "Od": "0.9", - "Mp": "4", - "Dp": "21", - "p": { - "33": { - "n": 4 - }, - "34": { - "n": 6.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 36 - }, - { - "i": 892, - "n": "Boruc", - "f": "Artur", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "67", - "On": "12", - "Oa": "5.58", - "Od": "1.17", - "Gp": "12", - "p": { - "31": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 4.5 - } - } - }, - "c": 36 - }, - { - "i": 916, - "n": "Ibe", - "f": "Jordon", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "87", - "On": "19", - "Oa": "4.61", - "Od": "0.66", - "Mp": "18", - "Ap": "1", - "p": { - "31": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 36 - }, - { - "i": 950, - "n": "Gosling", - "f": "Dan", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "130", - "On": "25", - "Oa": "5.22", - "Od": "0.99", - "Mp": "25", - "p": { - "32": { - "n": 4 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 8, - "g": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 36 - }, - { - "i": 985, - "n": "Pugh", - "f": "Marc", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 1117, - "n": "Simpson", - "f": "Jack", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "27", - "On": "6", - "Oa": "4.5", - "Od": "1.15", - "Dp": "6", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 6 - }, - "38": { - "n": 2.5, - "a": 1 - } - } - }, - "c": 36 - }, - { - "i": 1119, - "n": "Ramsdale", - "f": "Aaron", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 1120, - "n": "Solanke", - "f": "Dominic", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "48", - "On": "10", - "Oa": "4.85", - "Od": "0.5", - "Ap": "10", - "p": { - "31": { - "n": 6, - "s": 1 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 36 - }, - { - "i": 1147, - "n": "Begovic", - "f": "Asmir", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "115", - "On": "24", - "Oa": "4.79", - "Od": "1.46", - "Gp": "24", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 2 - } - } - }, - "c": 36 - }, - { - "i": 1359, - "n": "Lewis Cook", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "65", - "On": "13", - "Oa": "5.04", - "Od": "0.63", - "Mp": "13" - }, - "c": 36 - }, - { - "i": 1494, - "n": "Billing", - "f": "Philip", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Og": "2", - "Os": "140", - "On": "27", - "Oa": "5.2", - "Od": "1.12", - "Mp": "27", - "p": { - "31": { - "n": 5, - "e": 3476, - "c": 44, - "s": 1 - } - } - }, - "c": 36 - }, - { - "i": 1738, - "n": "Lerma", - "f": "Jefferson", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "2", - "Oao": "1", - "Os": "161", - "On": "30", - "Oa": "5.38", - "Od": "1.02", - "Mp": "30", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5, - "g": 1 - } - } - }, - "c": 36 - }, - { - "i": 1747, - "n": "Rico", - "f": "Diego", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "54", - "On": "12", - "Oa": "4.54", - "Od": "0.63", - "Mp": "2", - "Dp": "10", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 36 - }, - { - "i": 2119, - "n": "Butcher", - "f": "Matt", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 2265, - "n": "Taylor", - "f": "Kyle", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 2595, - "n": "Brooks", - "f": "David", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "7", - "Os": "155", - "On": "30", - "Oa": "5.17", - "Od": "1.32", - "Mp": "24", - "Ap": "6", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 8, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - } - } - }, - "c": 36 - }, - { - "i": 2843, - "n": "Ofoborh", - "f": "Nathan", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 2849, - "n": "Travers", - "f": "Mark", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "2", - "Gp": "2", - "p": { - "37": { - "n": 7.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 36 - }, - { - "i": 2853, - "n": "Dobre", - "f": "Mihai-Alexandru", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 3223, - "n": "Mepham", - "f": "Chris", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "0.85", - "Dp": "13", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 36 - }, - { - "i": 3500, - "n": "Surridge", - "f": "Sam", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2", - "p": { - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 36 - }, - { - "i": 3646, - "n": "Kelly", - "f": "Lloyd", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 3693, - "n": "Stacey", - "f": "Jack", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 36 - }, - { - "i": 2, - "n": "Lacazette", - "f": "Alexandre", - "p": "A", - "r": 42, - "s": { - "n": 0, - "Og": "13", - "Os": "192", - "On": "35", - "Oa": "5.49", - "Od": "1.11", - "Ap": "35", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6.5, - "g": 1 - }, - "33": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 6 - } - } - }, - "c": 39 - }, - { - "i": 572, - "n": "Guendouzi", - "f": "Matteo", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "168", - "On": "33", - "Oa": "5.09", - "Od": "0.64", - "Mp": "33", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 6 - } - } - }, - "c": 39 - }, - { - "i": 591, - "n": "\u00d6zil", - "f": "Mesut", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "5", - "Os": "122", - "On": "24", - "Oa": "5.1", - "Od": "1.2", - "Mp": "19", - "Ap": "5", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "g": 1 - }, - "37": { - "n": 5 - } - } - }, - "c": 39 - }, - { - "i": 609, - "n": "Cech", - "f": "Petr", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "40", - "On": "7", - "Oa": "5.71", - "Od": "0.84", - "Gp": "7" - }, - "c": 39 - }, - { - "i": 621, - "n": "Koscielny", - "f": "Laurent", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "91", - "On": "17", - "Oa": "5.38", - "Od": "1.13", - "Dp": "17", - "p": { - "31": { - "n": 4 - }, - "34": { - "n": 6 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 39 - }, - { - "i": 665, - "n": "Mustafi", - "f": "Shkodran", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "2", - "Os": "156", - "On": "31", - "Oa": "5.05", - "Od": "1.16", - "Dp": "31", - "p": { - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 2.5 - }, - "36": { - "n": 3 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 7 - } - } - }, - "c": 39 - }, - { - "i": 676, - "n": "Mkhitaryan", - "f": "Henrikh", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "6", - "Os": "132", - "On": "25", - "Oa": "5.28", - "Od": "1.05", - "Mp": "19", - "Ap": "6", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 39 - }, - { - "i": 705, - "n": "Iwobi", - "f": "Alex", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "3", - "Os": "168", - "On": "35", - "Oa": "4.81", - "Od": "0.99", - "Mp": "27", - "Ap": "8", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 3.5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 7 - } - } - }, - "c": 39 - }, - { - "i": 728, - "n": "Xhaka", - "f": "Granit", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "4", - "Os": "157", - "On": "29", - "Oa": "5.41", - "Od": "1.25", - "Mp": "27", - "Dp": "2", - "p": { - "31": { - "n": 4.5 - }, - "34": { - "n": 6.5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 39 - }, - { - "i": 732, - "n": "Monreal", - "f": "Nacho", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Og": "1", - "Os": "117", - "On": "22", - "Oa": "5.34", - "Od": "0.7", - "Mp": "1", - "Dp": "21", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 39 - }, - { - "i": 795, - "n": "Beller\u00edn", - "f": "H\u00e9ctor", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "98", - "On": "19", - "Oa": "5.16", - "Od": "0.95", - "Mp": "5", - "Dp": "14" - }, - "c": 39 - }, - { - "i": 860, - "n": "Chambers", - "f": "Calum", - "p": "D", - "r": 17, - "s": { - "n": 0, - "Og": "2", - "Os": "158", - "On": "31", - "Oa": "5.1", - "Od": "1.09", - "Mp": "22", - "Dp": "9", - "p": { - "31": { - "n": 5, - "e": 3472, - "c": 71 - }, - "32": { - "n": 4.5, - "e": 3483, - "c": 71 - }, - "33": { - "n": 2.5, - "e": 3496, - "c": 71 - }, - "34": { - "n": 5.5, - "e": 3501, - "c": 71 - }, - "35": { - "n": 6, - "e": 3508, - "c": 71 - }, - "36": { - "n": 5.5, - "e": 3521, - "c": 71 - }, - "37": { - "n": 5.5, - "e": 3537, - "c": 71 - }, - "38": { - "n": 4, - "e": 3541, - "c": 71 - } - } - }, - "c": 39 - }, - { - "i": 917, - "n": "Mohamed Elneny", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "39", - "On": "8", - "Oa": "4.88", - "Od": "0.82", - "Mp": "8", - "p": { - "32": { - "n": 5.5, - "s": 1 - }, - "33": { - "n": 3.5 - }, - "35": { - "n": 5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 39 - }, - { - "i": 983, - "n": "Holding", - "f": "Rob", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "54", - "On": "10", - "Oa": "5.45", - "Od": "0.65", - "Dp": "10" - }, - "c": 39 - }, - { - "i": 1038, - "n": "Welbeck", - "f": "Danny", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Og": "1", - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "0.71", - "Ap": "8" - }, - "c": 39 - }, - { - "i": 1090, - "n": "Jenkinson", - "f": "Carl", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.5", - "Od": "0.71", - "Mp": "2", - "Dp": "1", - "p": { - "35": { - "n": 3.5 - } - } - }, - "c": 39 - }, - { - "i": 1124, - "n": "Maitland-Niles", - "f": "Ainsley", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "75", - "On": "16", - "Oa": "4.69", - "Od": "0.83", - "Mp": "12", - "Dp": "4", - "p": { - "31": { - "n": 3 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 3 - } - } - }, - "c": 39 - }, - { - "i": 1289, - "n": "Kolasinac", - "f": "Sead", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "115", - "On": "24", - "Oa": "4.79", - "Od": "1.03", - "Mp": "13", - "Dp": "11", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 3.5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 39 - }, - { - "i": 1346, - "n": "Joe Willock", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Mp": "2", - "p": { - "38": { - "n": 4.5 - } - } - }, - "c": 39 - }, - { - "i": 1389, - "n": "Nelson", - "f": "Reiss", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 1702, - "n": "Dani Ceballos", - "f": "", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "3", - "Os": "123", - "On": "23", - "Oa": "5.37", - "Od": "0.94", - "Mp": "21", - "Ap": "2", - "p": { - "35": { - "n": 4, - "e": 2316, - "c": 62 - } - } - }, - "c": 39 - }, - { - "i": 1817, - "n": "Campbell", - "f": "Joel", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2013, - "n": "Mart\u00ednez", - "f": "Emiliano", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2064, - "n": "Macey", - "f": "Matt", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2066, - "n": "Eddie Nketiah", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Og": "1", - "Os": "24", - "On": "5", - "Oa": "4.8", - "Od": "0.68", - "Ap": "5", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4, - "s": 1 - }, - "38": { - "n": 6, - "g": 1, - "s": 1 - } - } - }, - "c": 39 - }, - { - "i": 2071, - "n": "Gilmour", - "f": "Charlie", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2123, - "n": "Iliev", - "f": "Dejan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2125, - "n": "Osei-Tutu", - "f": "Jordi", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2203, - "n": "Mavropanos", - "f": "Konstantinos", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "0.54", - "Dp": "4", - "p": { - "34": { - "n": 5.5 - }, - "35": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 39 - }, - { - "i": 2302, - "n": "Aubameyang", - "f": "Pierre-Emerick", - "p": "A", - "r": 46, - "s": { - "n": 0, - "Og": "22", - "Os": "198", - "On": "36", - "Oa": "5.51", - "Od": "1.28", - "Mp": "7", - "Ap": "29", - "p": { - "32": { - "n": 6, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6, - "g": 1 - }, - "38": { - "n": 8, - "g": 2 - } - } - }, - "c": 39 - }, - { - "i": 2500, - "n": "Leno", - "f": "Bernd", - "p": "G", - "r": 13, - "s": { - "n": 0, - "Os": "174", - "On": "32", - "Oa": "5.45", - "Od": "0.97", - "Gp": "32", - "p": { - "31": { - "n": 2.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 39 - }, - { - "i": 2531, - "n": "Sokratis", - "f": "", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "126", - "On": "25", - "Oa": "5.06", - "Od": "1.01", - "Dp": "25", - "p": { - "31": { - "n": 4.5, - "g": 1 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5.5 - }, - "36": { - "n": 3 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 39 - }, - { - "i": 2535, - "n": "Lichtsteiner", - "f": "Stephan", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "61", - "On": "14", - "Oa": "4.39", - "Od": "0.63", - "Dp": "14", - "p": { - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 39 - }, - { - "i": 2549, - "n": "Torreira", - "f": "Lucas", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "2", - "Os": "185", - "On": "34", - "Oa": "5.46", - "Od": "1", - "Mp": "34", - "p": { - "31": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 39 - }, - { - "i": 2887, - "n": "Smith Rowe", - "f": "Emile", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2926, - "n": "John-Jules", - "f": "Tyreece", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2927, - "n": "Saka", - "f": "Bukayo", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 39 - }, - { - "i": 2931, - "n": "Medley", - "f": "Zech", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 2934, - "n": "Pleguezuelo", - "f": "Julio", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 5416, - "n": "Gabriel Martinelli", - "f": "", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 5428, - "n": "Thompson", - "f": "Dominic", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 5429, - "n": "Olayinka", - "f": "James", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 5440, - "n": "Burton", - "f": "Robbie", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 39 - }, - { - "i": 14, - "n": "Mendy", - "f": "Benjamin", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "57", - "On": "10", - "Oa": "5.7", - "Od": "0.81", - "Mp": "1", - "Dp": "9", - "p": { - "34": { - "n": 5 - } - } - }, - "c": 40 - }, - { - "i": 25, - "n": "Bernardo Silva", - "f": "", - "p": "M", - "r": 32, - "s": { - "n": 0, - "Og": "7", - "Os": "204", - "On": "36", - "Oa": "5.67", - "Od": "0.93", - "Mp": "27", - "Ap": "9", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 7.5, - "g": 1 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 40 - }, - { - "i": 588, - "n": "Ag\u00fcero", - "f": "Sergio", - "p": "A", - "r": 47, - "s": { - "n": 0, - "Og": "21", - "Os": "193", - "On": "33", - "Oa": "5.86", - "Od": "1.23", - "Ap": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 7, - "g": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 40 - }, - { - "i": 593, - "n": "De Bruyne", - "f": "Kevin", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "2", - "Os": "102", - "On": "19", - "Oa": "5.39", - "Od": "0.94", - "Mp": "19", - "p": { - "32": { - "n": 5.5 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 7.5 - }, - "35": { - "n": 4.5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 594, - "n": "Sterling", - "f": "Raheem", - "p": "A", - "r": 44, - "s": { - "n": 0, - "Og": "17", - "Os": "201", - "On": "34", - "Oa": "5.91", - "Od": "1.34", - "Mp": "4", - "Ap": "30", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 5.5 - }, - "34": { - "n": 7, - "g": 2 - }, - "35": { - "n": 3 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 6 - } - } - }, - "c": 40 - }, - { - "i": 599, - "n": "Silva", - "f": "David", - "p": "M", - "r": 28, - "s": { - "n": 0, - "Og": "6", - "Os": "191", - "On": "33", - "Oa": "5.8", - "Od": "1.02", - "Mp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 40 - }, - { - "i": 603, - "n": "Mahrez", - "f": "Riyad", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "7", - "Os": "145", - "On": "27", - "Oa": "5.39", - "Od": "1.26", - "Mp": "4", - "Ap": "23", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 6 - }, - "38": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 40 - }, - { - "i": 639, - "n": "Fernandinho", - "f": "", - "p": "M", - "r": 22, - "s": { - "n": 0, - "Og": "1", - "Os": "170", - "On": "29", - "Oa": "5.86", - "Od": "0.95", - "Mp": "28", - "Dp": "1", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 6 - }, - "35": { - "n": 5, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 654, - "n": "Stones", - "f": "John", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Os": "132", - "On": "24", - "Oa": "5.52", - "Od": "0.62", - "Mp": "1", - "Dp": "23", - "p": { - "33": { - "n": 5.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 662, - "n": "San\u00e9", - "f": "Leroy", - "p": "A", - "r": 25, - "s": { - "n": 0, - "Og": "10", - "Os": "171", - "On": "31", - "Oa": "5.53", - "Od": "1.26", - "Mp": "1", - "Ap": "30", - "p": { - "31": { - "n": 6, - "g": 1, - "s": 1 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 674, - "n": "Otamendi", - "f": "Nicol\u00e1s", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "101", - "On": "18", - "Oa": "5.61", - "Od": "0.72", - "Dp": "18", - "p": { - "32": { - "n": 6 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 678, - "n": "Walker", - "f": "Kyle", - "p": "D", - "r": 22, - "s": { - "n": 0, - "Og": "1", - "Os": "179", - "On": "33", - "Oa": "5.42", - "Od": "0.65", - "Dp": "33", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 40 - }, - { - "i": 863, - "n": "Bravo", - "f": "Claudio", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 866, - "n": "G\u00fcndogan", - "f": "Ilkay", - "p": "M", - "r": 23, - "s": { - "n": 0, - "Og": "6", - "Os": "179", - "On": "31", - "Oa": "5.77", - "Od": "0.87", - "Mp": "31", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6.5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 40 - }, - { - "i": 931, - "n": "Kompany", - "f": "Vincent", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "95", - "On": "17", - "Oa": "5.62", - "Od": "0.56", - "Dp": "17", - "p": { - "31": { - "n": 6 - }, - "34": { - "n": 5.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 40 - }, - { - "i": 966, - "n": "Gabriel Jesus", - "f": "", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "7", - "Os": "144", - "On": "29", - "Oa": "4.97", - "Od": "1.02", - "Ap": "29", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6, - "g": 1, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 1005, - "n": "Foden", - "f": "Phil", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "63", - "On": "13", - "Oa": "4.88", - "Od": "0.76", - "Mp": "4", - "Ap": "9", - "p": { - "33": { - "n": 6.5 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "37": { - "n": 4 - } - } - }, - "c": 40 - }, - { - "i": 1049, - "n": "Aleix Garc\u00eda", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Og": "2", - "Os": "155", - "On": "31", - "Oa": "5.02", - "Od": "0.94", - "Mp": "30", - "Ap": "1", - "p": { - "32": { - "n": 6, - "e": 2284, - "c": 53 - }, - "33": { - "n": 3.5, - "e": 2295, - "c": 53 - }, - "35": { - "n": 5, - "e": 2315, - "c": 53, - "s": 1 - }, - "36": { - "n": 5, - "e": 2323, - "c": 53 - } - } - }, - "c": 40 - }, - { - "i": 1099, - "n": "Tosin Adarabioyo", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 1279, - "n": "Ederson", - "f": "", - "p": "G", - "r": 20, - "s": { - "n": 0, - "Os": "206", - "On": "38", - "Oa": "5.43", - "Od": "0.69", - "Gp": "38", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 7 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 40 - }, - { - "i": 1292, - "n": "Danilo", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "58", - "On": "11", - "Oa": "5.32", - "Od": "0.96", - "Dp": "11", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "33": { - "n": 6.5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 40 - }, - { - "i": 1305, - "n": "Mangala", - "f": "Eliaquim", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 1357, - "n": "Zinchenko", - "f": "Oleksandr", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "75", - "On": "14", - "Oa": "5.39", - "Od": "0.83", - "Mp": "1", - "Dp": "13", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 40 - }, - { - "i": 1367, - "n": "Grimshaw", - "f": "Daniel", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 1617, - "n": "Laporte", - "f": "Aymeric", - "p": "D", - "r": 25, - "s": { - "n": 0, - "Og": "3", - "Os": "200", - "On": "35", - "Oa": "5.71", - "Od": "0.79", - "Dp": "35", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 7 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 40 - }, - { - "i": 1915, - "n": "Moreno", - "f": "Marlos", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2124, - "n": "Nmecha", - "f": "Lukas", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2427, - "n": "Rodrigo", - "f": "", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "3", - "Os": "205", - "On": "34", - "Oa": "6.04", - "Od": "0.89", - "Mp": "34", - "p": { - "31": { - "n": 5.5, - "e": 2277, - "c": 54 - }, - "32": { - "n": 7.5, - "e": 2283, - "c": 54 - }, - "33": { - "n": 6.5, - "e": 2298, - "c": 54 - }, - "34": { - "n": 5.5, - "e": 2303, - "c": 54 - }, - "35": { - "n": 6, - "e": 2312, - "c": 54, - "s": 1 - }, - "36": { - "n": 4, - "e": 2328, - "c": 54 - }, - "37": { - "n": 6, - "e": 2333, - "c": 54 - }, - "38": { - "n": 7, - "e": 2348, - "c": 54, - "g": 1 - } - } - }, - "c": 40 - }, - { - "i": 2756, - "n": "Arzani", - "f": "Daniel", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2818, - "n": "Sandler", - "f": "Philippe", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2830, - "n": "Muric", - "f": "Arijanet", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2883, - "n": "Bernab\u00e9", - "f": "Adri\u00e1n", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2928, - "n": "Gomes", - "f": "Claudio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 2973, - "n": "Garcia", - "f": "Eric", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 3224, - "n": "Poveda-Ocampo", - "f": "Ian Carlo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 3226, - "n": "Bolton", - "f": "Luke", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 3499, - "n": "Nmecha", - "f": "Felix", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 3514, - "n": "Humphreys-Grant", - "f": "Cameron", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 3692, - "n": "Palmer-Brown", - "f": "Erik", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 3696, - "n": "Angeli\u00f1o", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 5412, - "n": "Bazunu", - "f": "Gavin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 5417, - "n": "Dionkou", - "f": "Alpha Richard", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 5419, - "n": "Zoubdi Touaizi", - "f": "Nabili", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 5420, - "n": "Harwood-Bellis", - "f": "Taylor", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 5421, - "n": "Knight", - "f": "Ben", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 5438, - "n": "Iker Pozo", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 40 - }, - { - "i": 388, - "n": "Bissouma", - "f": "Yves", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "133", - "On": "28", - "Oa": "4.77", - "Od": "0.85", - "Mp": "17", - "Ap": "11", - "p": { - "32": { - "n": 6.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 3 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4 - } - } - }, - "c": 45 - }, - { - "i": 1056, - "n": "Bernardo", - "f": "", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Os": "110", - "On": "22", - "Oa": "5", - "Od": "0.93", - "Dp": "22", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 2.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4 - } - } - }, - "c": 45 - }, - { - "i": 1281, - "n": "Murray", - "f": "Glenn", - "p": "A", - "r": 19, - "s": { - "n": 0, - "Og": "13", - "Os": "179", - "On": "38", - "Oa": "4.72", - "Od": "1.1", - "Ap": "38", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5, - "g": 1 - }, - "38": { - "n": 4.5, - "g": 1 - } - } - }, - "c": 45 - }, - { - "i": 1282, - "n": "Knockaert", - "f": "Anthony", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "2", - "Os": "151", - "On": "30", - "Oa": "5.05", - "Od": "0.95", - "Mp": "26", - "Ap": "4", - "p": { - "32": { - "n": 5 - }, - "34": { - "n": 2 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 45 - }, - { - "i": 1283, - "n": "Hemed", - "f": "Tomer", - "p": "A", - "r": 7, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 1284, - "n": "Bruno", - "f": "", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "69", - "On": "14", - "Oa": "4.96", - "Od": "0.92", - "Dp": "14", - "p": { - "31": { - "n": 4 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 45 - }, - { - "i": 1294, - "n": "Stephens", - "f": "Dale", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "1", - "Os": "154", - "On": "30", - "Oa": "5.15", - "Od": "0.83", - "Mp": "30", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 3 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - } - } - }, - "c": 45 - }, - { - "i": 1296, - "n": "Dunk", - "f": "Lewis", - "p": "D", - "r": 20, - "s": { - "n": 0, - "Og": "2", - "Os": "182", - "On": "36", - "Oa": "5.07", - "Od": "1.1", - "Dp": "36", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 7 - }, - "34": { - "n": 2.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 45 - }, - { - "i": 1303, - "n": "Gro\u00df", - "f": "Pascal", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "124", - "On": "25", - "Oa": "4.98", - "Od": "0.91", - "Mp": "19", - "Ap": "6", - "p": { - "31": { - "n": 3.5 - }, - "33": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 45 - }, - { - "i": 1306, - "n": "Solly March", - "f": "", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "183", - "On": "35", - "Oa": "5.24", - "Od": "0.75", - "Mp": "22", - "Ap": "13", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6, - "s": 1 - }, - "37": { - "n": 6 - } - } - }, - "c": 45 - }, - { - "i": 1308, - "n": "Pr\u00f6pper", - "f": "Davy", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "150", - "On": "30", - "Oa": "5.02", - "Od": "0.82", - "Mp": "30", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5 - } - } - }, - "c": 45 - }, - { - "i": 1312, - "n": "Duffy", - "f": "Shane", - "p": "D", - "r": 25, - "s": { - "n": 0, - "Og": "5", - "Os": "187", - "On": "35", - "Oa": "5.34", - "Od": "1.26", - "Dp": "35", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 3 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 45 - }, - { - "i": 1313, - "n": "Izquierdo", - "f": "Jos\u00e9", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "71", - "On": "15", - "Oa": "4.77", - "Od": "0.4", - "Mp": "7", - "Ap": "8", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4 - } - } - }, - "c": 45 - }, - { - "i": 1323, - "n": "Ryan", - "f": "Mat", - "p": "G", - "r": 17, - "s": { - "n": 0, - "Os": "181", - "On": "34", - "Oa": "5.32", - "Od": "1.24", - "Gp": "34", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 2.5 - }, - "35": { - "n": 7 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 45 - }, - { - "i": 1324, - "n": "Suttner", - "f": "Markus", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 1336, - "n": "Bong", - "f": "Ga\u00ebtan", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "99", - "On": "22", - "Oa": "4.5", - "Od": "0.66", - "Dp": "22", - "p": { - "35": { - "n": 5 - } - } - }, - "c": 45 - }, - { - "i": 1338, - "n": "Kayal", - "f": "Beram", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "90", - "On": "18", - "Oa": "5.03", - "Od": "0.87", - "Mp": "18", - "p": { - "33": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 45 - }, - { - "i": 1356, - "n": "Molumby", - "f": "Jayson", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 1361, - "n": "Towell", - "f": "Richard", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 1378, - "n": "Connolly", - "f": "Aaron", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 1612, - "n": "Andone", - "f": "Florin", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "3", - "Os": "100", - "On": "23", - "Oa": "4.37", - "Od": "0.86", - "Ap": "23", - "p": { - "31": { - "n": 3.5, - "s": 1 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 3.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 45 - }, - { - "i": 1761, - "n": "Montoya", - "f": "Mart\u00edn", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "117", - "On": "25", - "Oa": "4.7", - "Od": "0.71", - "Dp": "25", - "p": { - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 2.5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 45 - }, - { - "i": 2025, - "n": "Schelotto", - "f": "Ezequiel", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2255, - "n": "Locadia", - "f": "J\u00fcrgen", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Og": "2", - "Os": "118", - "On": "26", - "Oa": "4.56", - "Od": "0.84", - "Mp": "6", - "Ap": "20", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 3 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 45 - }, - { - "i": 2519, - "n": "Balogun", - "f": "Leon", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Og": "1", - "Os": "39", - "On": "8", - "Oa": "4.88", - "Od": "0.99", - "Dp": "8" - }, - "c": 45 - }, - { - "i": 2520, - "n": "Button", - "f": "David", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "23", - "On": "4", - "Oa": "5.88", - "Od": "0.74", - "Gp": "4" - }, - "c": 45 - }, - { - "i": 2525, - "n": "Steele", - "f": "Jason", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2537, - "n": "Tau", - "f": "Percy", - "p": "A", - "r": 11, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2576, - "n": "Jahanbakhsh", - "f": "Alireza", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Os": "82", - "On": "19", - "Oa": "4.32", - "Od": "0.69", - "Mp": "7", - "Ap": "12", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 45 - }, - { - "i": 2850, - "n": "Gyokeres", - "f": "Viktor", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2854, - "n": "Collar", - "f": "Will", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2856, - "n": "Barclay", - "f": "Ben", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2933, - "n": "White", - "f": "Ben", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 2986, - "n": "Burn", - "f": "Dan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3119, - "n": "Sanders", - "f": "Max", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3225, - "n": "Richards", - "f": "Taylor", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3353, - "n": "S\u00e1nchez", - "f": "Robert", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3511, - "n": "Ostigard", - "f": "Leo", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3663, - "n": "Baluta", - "f": "Tudor", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3665, - "n": "Mlakar", - "f": "Jan", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3686, - "n": "Clarke", - "f": "Matthew", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 3699, - "n": "Trossard", - "f": "Leandro", - "p": "M", - "r": 11, - "s": { - "n": 0 - }, - "c": 45 - }, - { - "i": 132, - "n": "Saivet", - "f": "Henri", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 707, - "n": "Rond\u00f3n", - "f": "Salom\u00f3n", - "p": "A", - "r": 25, - "s": { - "n": 0, - "Og": "11", - "Os": "171", - "On": "32", - "Oa": "5.34", - "Od": "1.25", - "Ap": "32", - "p": { - "31": { - "n": 6.5, - "g": 1 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 46 - }, - { - "i": 814, - "n": "Manquillo", - "f": "Javier", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "90", - "On": "18", - "Oa": "5.03", - "Od": "0.68", - "Mp": "1", - "Dp": "17", - "p": { - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - } - } - }, - "c": 46 - }, - { - "i": 839, - "n": "Ki Sung-yueng", - "f": "", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "94", - "On": "18", - "Oa": "5.22", - "Od": "0.56", - "Mp": "18", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5 - } - } - }, - "c": 46 - }, - { - "i": 913, - "n": "Federico Fern\u00e1ndez", - "f": "", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "94", - "On": "19", - "Oa": "4.95", - "Od": "0.87", - "Dp": "19", - "p": { - "31": { - "n": 3.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 46 - }, - { - "i": 1468, - "n": "Ritchie", - "f": "Matt", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "2", - "Os": "192", - "On": "36", - "Oa": "5.35", - "Od": "0.92", - "Mp": "16", - "Dp": "20", - "p": { - "31": { - "n": 6, - "g": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 7.5 - } - } - }, - "c": 46 - }, - { - "i": 1469, - "n": "Lascelles", - "f": "Jamaal", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Os": "171", - "On": "32", - "Oa": "5.36", - "Od": "0.95", - "Dp": "32", - "p": { - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7 - }, - "35": { - "n": 6 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 7.5 - } - } - }, - "c": 46 - }, - { - "i": 1475, - "n": "Darlow", - "f": "Karl", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 1476, - "n": "Shelvey", - "f": "Jonjo", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Og": "1", - "Os": "84", - "On": "16", - "Oa": "5.25", - "Od": "0.79", - "Mp": "16", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5 - }, - "38": { - "n": 7.5, - "g": 1 - } - } - }, - "c": 46 - }, - { - "i": 1485, - "n": "Lejeune", - "f": "Florian", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "65", - "On": "12", - "Oa": "5.42", - "Od": "0.86", - "Dp": "12", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5.5 - } - } - }, - "c": 46 - }, - { - "i": 1487, - "n": "Atsu", - "f": "Christian", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "143", - "On": "28", - "Oa": "5.11", - "Od": "0.57", - "Mp": "28", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 46 - }, - { - "i": 1488, - "n": "Hayden", - "f": "Isaac", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "136", - "On": "25", - "Oa": "5.46", - "Od": "0.93", - "Mp": "24", - "Dp": "1", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 46 - }, - { - "i": 1491, - "n": "Dummett", - "f": "Paul", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "133", - "On": "26", - "Oa": "5.12", - "Od": "0.81", - "Dp": "26", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 46 - }, - { - "i": 1492, - "n": "Yedlin", - "f": "DeAndre", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "134", - "On": "29", - "Oa": "4.64", - "Od": "0.79", - "Mp": "3", - "Dp": "26", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4 - } - } - }, - "c": 46 - }, - { - "i": 1495, - "n": "Diam\u00e9", - "f": "Mohamed", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "142", - "On": "29", - "Oa": "4.91", - "Od": "0.73", - "Mp": "29", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "38": { - "n": 7 - } - } - }, - "c": 46 - }, - { - "i": 1497, - "n": "Colback", - "f": "Jack", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 1499, - "n": "Clark", - "f": "Ciaran", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Og": "3", - "Os": "60", - "On": "11", - "Oa": "5.45", - "Od": "0.86", - "Dp": "11" - }, - "c": 46 - }, - { - "i": 1504, - "n": "Murphy", - "f": "Jacob", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "44", - "On": "9", - "Oa": "4.94", - "Od": "0.64", - "Mp": "9" - }, - "c": 46 - }, - { - "i": 1508, - "n": "Elliot", - "f": "Robert", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 1515, - "n": "Aarons", - "f": "Rolando", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 1516, - "n": "Sterry", - "f": "Jamie", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 1519, - "n": "Lazaar", - "f": "Achraf", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 1725, - "n": "Sch\u00e4r", - "f": "Fabian", - "p": "D", - "r": 18, - "s": { - "n": 0, - "Og": "4", - "Os": "127", - "On": "24", - "Oa": "5.29", - "Od": "1.11", - "Dp": "24", - "p": { - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 46 - }, - { - "i": 2306, - "n": "Dubravka", - "f": "Martin", - "p": "G", - "r": 15, - "s": { - "n": 0, - "Os": "208", - "On": "38", - "Oa": "5.49", - "Od": "0.95", - "Gp": "38", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 7 - } - } - }, - "c": 46 - }, - { - "i": 2553, - "n": "Muto", - "f": "Yoshinori", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Og": "1", - "Os": "77", - "On": "17", - "Oa": "4.53", - "Od": "0.53", - "Ap": "17", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 46 - }, - { - "i": 2580, - "n": "Freddy Woodman", - "f": "", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 2758, - "n": "Longstaff", - "f": "Sean", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "50", - "On": "9", - "Oa": "5.56", - "Od": "0.83", - "Mp": "9" - }, - "c": 46 - }, - { - "i": 2759, - "n": "Roberts", - "f": "Callum", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 2981, - "n": "Harker", - "f": "Nathan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 3356, - "n": "Almir\u00f3n", - "f": "Miguel", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "55", - "On": "10", - "Oa": "5.55", - "Od": "0.61", - "Mp": "9", - "Ap": "1", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 6 - } - } - }, - "c": 46 - }, - { - "i": 3648, - "n": "Watts", - "f": "Kelland", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 3649, - "n": "Cass", - "f": "Lewis", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 5423, - "n": "Sorensen", - "f": "Elias", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 5426, - "n": "Allan", - "f": "Thomas", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 5433, - "n": "Longstaff", - "f": "Matthew", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 5435, - "n": "Bailey", - "f": "Owen", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 5442, - "n": "Joelinton", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 46 - }, - { - "i": 75, - "n": "Jo\u00e3o Moutinho", - "f": "", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "1", - "Os": "207", - "On": "38", - "Oa": "5.45", - "Od": "0.99", - "Mp": "37", - "Ap": "1", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 69 - }, - { - "i": 1710, - "n": "Jonny", - "f": "", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "161", - "On": "33", - "Oa": "4.89", - "Od": "0.89", - "Mp": "32", - "Dp": "1", - "p": { - "31": { - "n": 6.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 69 - }, - { - "i": 1839, - "n": "Vallejo", - "f": "Jes\u00fas", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "1.22", - "Dp": "5", - "p": { - "33": { - "n": 6.5, - "e": 2297, - "c": 62 - }, - "35": { - "n": 4.5, - "e": 2316, - "c": 62 - }, - "36": { - "n": 6, - "e": 2326, - "c": 62, - "g": 1 - }, - "37": { - "n": 3, - "e": 2341, - "c": 62 - } - } - }, - "c": 69 - }, - { - "i": 2485, - "n": "Coady", - "f": "Conor", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Oao": "3", - "Os": "193", - "On": "38", - "Oa": "5.08", - "Od": "0.87", - "Dp": "38", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3, - "a": 1 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 69 - }, - { - "i": 2490, - "n": "Boly", - "f": "Willy", - "p": "D", - "r": 20, - "s": { - "n": 0, - "Og": "4", - "Os": "190", - "On": "36", - "Oa": "5.28", - "Od": "0.97", - "Dp": "36", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 69 - }, - { - "i": 2492, - "n": "Doherty", - "f": "Matt", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "4", - "Oao": "1", - "Os": "196", - "On": "38", - "Oa": "5.17", - "Od": "1.01", - "Mp": "35", - "Dp": "3", - "p": { - "31": { - "n": 6.5, - "g": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 69 - }, - { - "i": 2503, - "n": "Batth", - "f": "Danny", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2508, - "n": "Mason", - "f": "Joe", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2528, - "n": "Bennett", - "f": "Ryan", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "169", - "On": "34", - "Oa": "4.97", - "Od": "0.8", - "Dp": "34", - "p": { - "31": { - "n": 6 - }, - "33": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 69 - }, - { - "i": 2533, - "n": "Rui Patr\u00edcio", - "f": "", - "p": "G", - "r": 15, - "s": { - "n": 0, - "Os": "198", - "On": "37", - "Oa": "5.36", - "Od": "0.78", - "Gp": "37", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 69 - }, - { - "i": 2538, - "n": "Gibbs-White", - "f": "Morgan", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "125", - "On": "26", - "Oa": "4.83", - "Od": "0.46", - "Mp": "23", - "Ap": "3", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 2540, - "n": "R\u00faben Vinagre", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "82", - "On": "17", - "Oa": "4.85", - "Od": "0.48", - "Mp": "7", - "Dp": "10", - "p": { - "33": { - "n": 5 - }, - "35": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 2542, - "n": "Deslandes", - "f": "Sylvain", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2550, - "n": "Enobakhare", - "f": "Bright", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2556, - "n": "Diogo Jota", - "f": "", - "p": "M", - "r": 23, - "s": { - "n": 0, - "Og": "9", - "Os": "174", - "On": "33", - "Oa": "5.27", - "Od": "1.27", - "Mp": "4", - "Ap": "29", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 7.5, - "g": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 69 - }, - { - "i": 2557, - "n": "Ruddy", - "f": "John", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1" - }, - "c": 69 - }, - { - "i": 2563, - "n": "Graham", - "f": "Jordan", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2568, - "n": "R\u00faben Neves", - "f": "", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "4", - "Os": "194", - "On": "35", - "Oa": "5.54", - "Od": "1.03", - "Mp": "35", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 69 - }, - { - "i": 2571, - "n": "Norris", - "f": "Will", - "p": "G", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 2574, - "n": "Cavaleiro", - "f": "Ivan", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "106", - "On": "23", - "Oa": "4.61", - "Od": "0.85", - "Ap": "23", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "32": { - "n": 3 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 2575, - "n": "H\u00e9lder Costa", - "f": "", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "1", - "Os": "115", - "On": "25", - "Oa": "4.6", - "Od": "0.8", - "Ap": "25", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 2584, - "n": "L\u00e9o Bonatini", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "31", - "On": "7", - "Oa": "4.5", - "Od": "0.71", - "Ap": "7" - }, - "c": 69 - }, - { - "i": 2597, - "n": "Sa\u00efss", - "f": "Romain", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "100", - "On": "19", - "Oa": "5.26", - "Od": "1.06", - "Mp": "13", - "Dp": "6", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 3.5 - } - } - }, - "c": 69 - }, - { - "i": 2600, - "n": "Jim\u00e9nez", - "f": "Ra\u00fal", - "p": "A", - "r": 28, - "s": { - "n": 0, - "Og": "13", - "Os": "202", - "On": "38", - "Oa": "5.33", - "Od": "1.27", - "Ap": "38", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 7 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6.5, - "g": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 69 - }, - { - "i": 2603, - "n": "Ofosu-Ayeh", - "f": "Phil", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2762, - "n": "Dendoncker", - "f": "Leander", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "2", - "Os": "104", - "On": "19", - "Oa": "5.5", - "Od": "1.04", - "Mp": "19", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6, - "g": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 69 - }, - { - "i": 2798, - "n": "Traor\u00e9", - "f": "Adama", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "133", - "On": "28", - "Oa": "4.77", - "Od": "0.75", - "Mp": "2", - "Ap": "26", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 2842, - "n": "Ashley-Seal", - "f": "Ben", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2844, - "n": "Pote", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2846, - "n": "Watt", - "f": "Elliot", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2847, - "n": "Giles", - "f": "Ryan John", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2889, - "n": "Benny Ashley-Seal", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 2978, - "n": "Kilman", - "f": "Max", - "p": "D", - "r": 2, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 69 - }, - { - "i": 3352, - "n": "John", - "f": "Cameron", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 3501, - "n": "Ennis", - "f": "Niall", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 3659, - "n": "Rafa Mir", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 3724, - "n": "Roderick Miranda", - "f": "", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 5431, - "n": "Sanderson", - "f": "Dion", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 69 - }, - { - "i": 872, - "n": "Byram", - "f": "Sam", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 1101, - "n": "Husband", - "f": "James", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 1352, - "n": "Roberts", - "f": "Patrick", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "88", - "On": "19", - "Oa": "4.63", - "Od": "0.56", - "Mp": "15", - "Ap": "4", - "p": { - "31": { - "n": 5, - "e": 2279, - "c": 53, - "s": 1 - }, - "32": { - "n": 4, - "e": 2284, - "c": 53 - }, - "33": { - "n": 3.5, - "e": 2295, - "c": 53 - }, - "36": { - "n": 4.5, - "e": 2323, - "c": 53, - "s": 1 - }, - "38": { - "n": 4, - "e": 2342, - "c": 53, - "s": 1 - } - } - }, - "c": 76 - }, - { - "i": 1506, - "n": "Hanley", - "f": "Grant", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 1521, - "n": "Krul", - "f": "Tim", - "p": "G", - "r": 14, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3647, - "n": "Aarons", - "f": "Maximillian", - "p": "D", - "r": 13, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3654, - "n": "Payne", - "f": "Alfie", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3657, - "n": "Timi Odusina", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3670, - "n": "Godfrey", - "f": "Ben", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3671, - "n": "Buend\u00eda", - "f": "Emiliano", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3674, - "n": "Lewis", - "f": "Jamal", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3675, - "n": "Cantwell", - "f": "Todd", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3676, - "n": "Zimmermann", - "f": "Christoph", - "p": "D", - "r": 13, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3683, - "n": "Srbeny", - "f": "Dennis", - "p": "A", - "r": 7, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3684, - "n": "Oxborough", - "f": "Aston", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3704, - "n": "Thompson", - "f": "Louis", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3706, - "n": "Heise", - "f": "Philip", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3708, - "n": "Trybull", - "f": "Tom", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3709, - "n": "Hern\u00e1ndez", - "f": "Onel", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3712, - "n": "Leitner", - "f": "Moritz", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3715, - "n": "Klose", - "f": "Timm", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3717, - "n": "Drmic", - "f": "Josip", - "p": "A", - "r": 8, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3720, - "n": "Kenny McLean", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3722, - "n": "Stiepermann", - "f": "Marco", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3723, - "n": "Marshall", - "f": "Ben", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3728, - "n": "Pukki", - "f": "Teemu", - "p": "A", - "r": 15, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3729, - "n": "N\u00e9lson Oliveira", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3739, - "n": "Vrancic", - "f": "Mario", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3741, - "n": "F\u00e4hrmann", - "f": "Ralf", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3747, - "n": "Tettey", - "f": "Alexander", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 3748, - "n": "McGovern", - "f": "Michael", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 76 - }, - { - "i": 720, - "n": "Jagielka", - "f": "Phil", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "35", - "On": "7", - "Oa": "5", - "Od": "1.04", - "Dp": "7", - "p": { - "33": { - "n": 7, - "e": 3490, - "c": 22, - "g": 1 - }, - "34": { - "n": 3.5, - "e": 3501, - "c": 22 - }, - "35": { - "n": 5, - "e": 3512, - "c": 22, - "s": 1 - }, - "37": { - "n": 5, - "e": 3532, - "c": 22, - "s": 1 - } - } - }, - "c": 77 - }, - { - "i": 1071, - "n": "Mousset", - "f": "Lys", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "107", - "On": "24", - "Oa": "4.46", - "Od": "0.32", - "Ap": "24", - "p": { - "35": { - "n": 4, - "e": 3508, - "c": 36, - "s": 1 - }, - "37": { - "n": 4.5, - "e": 3528, - "c": 36, - "s": 1 - }, - "38": { - "n": 5, - "e": 3540, - "c": 36, - "s": 1 - } - } - }, - "c": 77 - }, - { - "i": 2501, - "n": "Norwood", - "f": "Oliver", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3691, - "n": "Robinson", - "f": "Callum", - "p": "A", - "r": 9, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3694, - "n": "Lundstram", - "f": "John", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3695, - "n": "O'Connell", - "f": "Jack", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3701, - "n": "Heneghan", - "f": "Ben", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3702, - "n": "Carruthers", - "f": "Samir", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3703, - "n": "Bryan", - "f": "Kean", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3705, - "n": "Egan", - "f": "John", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3713, - "n": "Freeman", - "f": "Kieron", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3716, - "n": "Baldock", - "f": "George", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3721, - "n": "Moore", - "f": "Simon", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3725, - "n": "Stevens", - "f": "Enda", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3726, - "n": "Duffy", - "f": "Mark", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3727, - "n": "Holmes", - "f": "Ricky", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3731, - "n": "Freeman", - "f": "Luke", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3732, - "n": "Evans", - "f": "Ched", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3734, - "n": "Fleck", - "f": "John", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3738, - "n": "Basham", - "f": "Chris", - "p": "D", - "r": 14, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3743, - "n": "McGoldrick", - "f": "David", - "p": "A", - "r": 11, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3745, - "n": "Sharp", - "f": "Billy", - "p": "A", - "r": 13, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3746, - "n": "Stearman", - "f": "Richard", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3749, - "n": "Clarke", - "f": "Leon", - "p": "A", - "r": 8, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 3750, - "n": "Wright", - "f": "Jake", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 5446, - "n": "Henderson", - "f": "Dean", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 5447, - "n": "Osborn", - "f": "Ben", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 5450, - "n": "Morrison", - "f": "Ravel", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 77 - }, - { - "i": 193, - "n": "El Ghazi", - "f": "Anwar", - "p": "A", - "r": 9, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 344, - "n": "Guilbert", - "f": "Frederic", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "165", - "On": "34", - "Oa": "4.87", - "Od": "1.02", - "Mp": "4", - "Dp": "30", - "p": { - "31": { - "n": 3.5, - "e": 3038, - "c": 5 - }, - "32": { - "n": 4.5, - "e": 3042, - "c": 5 - }, - "33": { - "n": 5, - "e": 3056, - "c": 5, - "s": 1 - }, - "34": { - "n": 5, - "e": 3065, - "c": 5 - }, - "35": { - "n": 5.5, - "e": 3073, - "c": 5 - }, - "36": { - "n": 7, - "e": 3084, - "c": 5, - "g": 1 - }, - "37": { - "n": 3, - "e": 3095, - "c": 5 - }, - "38": { - "n": 5, - "e": 3104, - "c": 5 - } - } - }, - "c": 78 - }, - { - "i": 939, - "n": "Targett", - "f": "Matt", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "81", - "On": "16", - "Oa": "5.06", - "Od": "0.81", - "Mp": "9", - "Dp": "7", - "p": { - "36": { - "n": 6.5, - "e": 3525, - "c": 35, - "g": 1, - "s": 1 - }, - "38": { - "n": 5.5, - "e": 3545, - "c": 35, - "s": 1 - } - } - }, - "c": 78 - }, - { - "i": 1059, - "n": "Mings", - "f": "Tyrone", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "25", - "On": "5", - "Oa": "5", - "Od": "0.32", - "Dp": "5" - }, - "c": 78 - }, - { - "i": 1885, - "n": "Douglas Luiz", - "f": "", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "119", - "On": "23", - "Oa": "5.2", - "Od": "0.78", - "Mp": "23", - "p": { - "31": { - "n": 5.5, - "e": 2279, - "c": 53, - "s": 1 - }, - "33": { - "n": 4, - "e": 2295, - "c": 53 - }, - "34": { - "n": 4, - "e": 2310, - "c": 53, - "s": 1 - }, - "35": { - "n": 6.5, - "e": 2315, - "c": 53 - }, - "37": { - "n": 5, - "e": 2336, - "c": 53 - } - } - }, - "c": 78 - }, - { - "i": 2587, - "n": "Hause", - "f": "Kortney", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 2823, - "n": "Engels", - "f": "Bj\u00f6rn", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "176", - "On": "33", - "Oa": "5.33", - "Od": "0.84", - "Dp": "33", - "p": { - "31": { - "n": 5.5, - "e": 3040, - "c": 68 - }, - "32": { - "n": 5.5, - "e": 3046, - "c": 68 - }, - "33": { - "n": 4, - "e": 3059, - "c": 68, - "a": 1 - }, - "34": { - "n": 5, - "e": 3063, - "c": 68 - }, - "35": { - "n": 3, - "e": 3079, - "c": 68 - }, - "36": { - "n": 4.5, - "e": 3084, - "c": 68 - }, - "37": { - "n": 6, - "e": 3092, - "c": 68 - } - } - }, - "c": 78 - }, - { - "i": 3651, - "n": "Jacob Ramsey", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3653, - "n": "Revan", - "f": "Dominic", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3656, - "n": "Davis", - "f": "Keinan", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3661, - "n": "Doyle-Hayes", - "f": "Jake", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3662, - "n": "Wesley", - "f": "", - "p": "A", - "r": 12, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3669, - "n": "Konsa Ngoyo", - "f": "Ezri", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3677, - "n": "Clark", - "f": "Mitchell", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3678, - "n": "Bree", - "f": "James", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3680, - "n": "O'Hare", - "f": "Callum", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3688, - "n": "Hepburn-Murphy", - "f": "Rushian", - "p": "A", - "r": 7, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3689, - "n": "Green", - "f": "Andre", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3698, - "n": "McGinn", - "f": "John", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3700, - "n": "Grealish", - "f": "Jack", - "p": "M", - "r": 11, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3707, - "n": "Nyland", - "f": "\u00d8rjan", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3710, - "n": "Jota", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3711, - "n": "Kalinic", - "f": "Lovre", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3714, - "n": "Hourihane", - "f": "Conor", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3718, - "n": "Hogan", - "f": "Scott", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3719, - "n": "Steer", - "f": "Jed", - "p": "G", - "r": 13, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3730, - "n": "Kodjia", - "f": "Jonathan", - "p": "A", - "r": 13, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3733, - "n": "Taylor", - "f": "Neil", - "p": "D", - "r": 13, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3735, - "n": "Chester", - "f": "James", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3737, - "n": "Lansbury", - "f": "Henri", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3740, - "n": "Ahmed El Mohamady", - "f": "", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 3742, - "n": "Bjarnason", - "f": "Birkir", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 78 - }, - { - "i": 5448, - "n": "Tr\u00e9z\u00e9guet", - "f": "", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 78 - } - ], - "c": { - "21": { - "n": "Liverpool", - "rn": "Liverpool", - "cn": "Liverpool", - "a": "LIV", - "l": 2, - "el": 1356, - "nM": 4298, - "nMWC": "0.8859", - "pM": { - "31": 3472, - "32": 3485, - "33": 3494, - "34": 3503, - "35": 3510, - "37": 3535, - "38": 3543, - "36": 3523 - }, - "DMI": [ - ] - }, - "22": { - "n": "Everton", - "rn": "Everton", - "cn": "Everton", - "a": "EVE", - "l": 2, - "el": 1116, - "nM": 4302, - "nMWC": "0.5029", - "pM": { - "31": 3471, - "32": 3487, - "33": 3490, - "34": 3501, - "35": 3512, - "36": 3520, - "37": 3532, - "38": 3546 - }, - "DMI": [ - 3520 - ] - }, - "23": { - "n": "Burnley", - "rn": "Burnley", - "cn": "Burnley", - "a": "BUR", - "l": 2, - "el": 1024, - "nM": 4301, - "nMWC": "0.5431", - "pM": { - "33": 3488, - "37": 3532, - "34": 3499, - "31": 3470, - "32": 3480, - "35": 3511, - "36": 3519, - "38": 3539 - }, - "DMI": [ - ] - }, - "24": { - "n": "Tottenham", - "rn": "Tottenham", - "cn": "Tottenham", - "a": "TOT", - "l": 2, - "el": 1078, - "nM": 4304, - "nMWC": "0.6104", - "pM": { - "32": 3485, - "37": 3528, - "38": 3546, - "31": 3474, - "33": 3495, - "34": 3506, - "35": 3514, - "36": 3526 - }, - "DMI": [ - ] - }, - "25": { - "n": "Chelsea", - "rn": "Chelsea", - "cn": "Chelsea", - "a": "CHE", - "l": 2, - "el": 1117, - "nM": 4307, - "nMWC": "0.5316", - "pM": { - "34": 3503, - "31": 3471, - "32": 3481, - "35": 3511, - "33": 3489, - "36": 3524, - "37": 3531, - "38": 3542 - }, - "DMI": [ - 3524 - ] - }, - "26": { - "n": "Crystal Palace", - "rn": "Crystal Palace", - "cn": "Crystal-Palace", - "a": "CRY", - "l": 2, - "el": 1114, - "nM": 4302, - "nMWC": "0.4971", - "pM": { - "38": 3540, - "36": 3520, - "31": 3474, - "32": 3482, - "33": 3493, - "37": 3530, - "34": 3500, - "35": 3509 - }, - "DMI": [ - 3520 - ] - }, - "28": { - "n": "West Ham", - "rn": "West Ham Utd", - "cn": "West-Ham-Utd", - "a": "WHU", - "l": 2, - "el": 1090, - "nM": 4299, - "nMWC": "0.1555", - "pM": { - "32": 3487, - "31": 3476, - "36": 3526, - "33": 3489, - "37": 3536, - "38": 3547, - "34": 3504, - "35": 3516 - }, - "DMI": [ - ] - }, - "29": { - "n": "Leicester", - "rn": "Leicester City", - "cn": "Leicester-City", - "a": "LEI", - "l": 2, - "el": 1064, - "nM": 4305, - "nMWC": "0.4413", - "pM": { - "32": 3484, - "31": 3470, - "38": 3542, - "35": 3516, - "33": 3491, - "34": 3502, - "36": 3522, - "37": 3534 - }, - "DMI": [ - ] - }, - "31": { - "n": "Man United", - "rn": "Manchester United", - "cn": "Manchester-United", - "a": "MUN", - "l": 2, - "el": 1095, - "nM": 4307, - "nMWC": "0.4684", - "pM": { - "35": 3512, - "37": 3533, - "36": 3524, - "34": 3504, - "31": 3473, - "33": 3497, - "32": 3486, - "38": 3544 - }, - "DMI": [ - 3524 - ] - }, - "33": { - "n": "Watford", - "rn": "Watford", - "cn": "Watford", - "a": "WAT", - "l": 2, - "el": 1000, - "nM": 4303, - "nMWC": "0.4871", - "pM": { - "35": 3513, - "37": 3531, - "38": 3547, - "32": 3486, - "33": 3496, - "34": 3507, - "31": 3475, - "36": 3527 - }, - "DMI": [ - ] - }, - "35": { - "n": "Southampton", - "rn": "Southampton", - "cn": "Southampton", - "a": "SOU", - "l": 2, - "el": 994, - "nM": 4301, - "nMWC": "0.4569", - "pM": { - "33": 3494, - "36": 3525, - "37": 3536, - "35": 3515, - "31": 3475, - "34": 3505, - "38": 3545, - "32": 3479 - }, - "DMI": [ - ] - }, - "36": { - "n": "Bournemouth", - "rn": "Bournemouth", - "cn": "Bournemouth", - "a": "BOU", - "l": 2, - "el": 989, - "nM": 4300, - "nMWC": "0.4842", - "pM": { - "31": 3468, - "32": 3484, - "33": 3488, - "36": 3525, - "37": 3528, - "38": 3540, - "34": 3498, - "35": 3508 - }, - "DMI": [ - ] - }, - "39": { - "n": "Arsenal", - "rn": "Arsenal", - "cn": "Arsenal", - "a": "ARS", - "l": 2, - "el": 1165, - "nM": 4306, - "nMWC": "0.6321", - "pM": { - "33": 3490, - "38": 3539, - "32": 3478, - "35": 3509, - "36": 3522, - "34": 3507, - "31": 3477, - "37": 3529 - }, - "DMI": [ - 3478 - ] - }, - "40": { - "n": "Man City", - "rn": "Manchester City", - "cn": "Manchester-City", - "a": "MCI", - "l": 2, - "el": 1384, - "nM": 4299, - "nMWC": "0.8445", - "pM": { - "33": 3492, - "36": 3519, - "35": 3514, - "34": 3500, - "37": 3534, - "31": 3473, - "32": 3483, - "38": 3538 - }, - "DMI": [ - ] - }, - "45": { - "n": "Brighton", - "rn": "Brighton", - "cn": "Brighton", - "a": "BHA", - "l": 2, - "el": 1009, - "nM": 4303, - "nMWC": "0.5129", - "pM": { - "31": 3469, - "33": 3495, - "36": 3518, - "32": 3479, - "34": 3498, - "37": 3529, - "38": 3538, - "35": 3517 - }, - "DMI": [ - ] - }, - "46": { - "n": "Newcastle", - "rn": "Newcastle Utd", - "cn": "Newcastle-Utd", - "a": "NEW", - "l": 2, - "el": 1071, - "nM": 4306, - "nMWC": "0.3679", - "pM": { - "37": 3535, - "31": 3468, - "38": 3541, - "33": 3493, - "32": 3478, - "36": 3518, - "34": 3502, - "35": 3515 - }, - "DMI": [ - 3478 - ] - }, - "69": { - "n": "Wolverhampton", - "rn": "Wolverhampton Wanderers", - "cn": "Wolverhampton-Wanderers", - "a": "WOL", - "l": 2, - "el": 1105, - "nM": 4305, - "nMWC": "0.5587", - "pM": { - "38": 3543, - "37": 3537, - "32": 3480, - "33": 3497, - "36": 3527, - "34": 3505, - "31": 3477, - "35": 3517 - }, - "DMI": [ - ] - }, - "76": { - "n": "Norwich", - "rn": "Norwich City", - "cn": "Norwich-City", - "a": "NOR", - "l": 2, - "el": 1000, - "nM": 4298, - "nMWC": "0.1141", - "pM": [ - ], - "DMI": [ - ] - }, - "77": { - "n": "Sheffield", - "rn": "Sheffield", - "cn": "Sheffield", - "a": "SHE", - "l": 2, - "el": 1000, - "nM": 4300, - "nMWC": "0.5158", - "pM": [ - ], - "DMI": [ - ] - }, - "78": { - "n": "Aston Villa", - "rn": "Aston Villa", - "cn": "Aston-Villa", - "a": "AST", - "l": 2, - "el": 1000, - "nM": 4304, - "nMWC": "0.3896", - "pM": [ - ], - "DMI": [ - ] - } - }, - "op": { - "71": { - "n": "Fulham", - "l": 2, - "el": 895 - }, - "70": { - "n": "Cardiff", - "l": 2, - "el": 950 - }, - "44": { - "n": "Huddersfield", - "l": 2, - "el": 758 - }, - "42": { - "n": "Amiens", - "l": 1, - "el": 1029 - }, - "4": { - "n": "Saint Etienne", - "l": 1, - "el": 1154 - }, - "7": { - "n": "Dijon", - "l": 1, - "el": 1028 - }, - "8": { - "n": "Nantes", - "l": 1, - "el": 1059 - }, - "41": { - "n": "Strasbourg", - "l": 1, - "el": 1053 - }, - "15": { - "n": "Montpellier", - "l": 1, - "el": 1142 - }, - "10": { - "n": "Toulouse", - "l": 1, - "el": 950 - }, - "13": { - "n": "Monaco", - "l": 1, - "el": 1019 - }, - "14": { - "n": "Guingamp", - "l": 4, - "el": 931 - }, - "18": { - "n": "Lyon", - "l": 1, - "el": 1215 - }, - "16": { - "n": "Angers", - "l": 1, - "el": 1064 - }, - "3": { - "n": "Bordeaux", - "l": 1, - "el": 975 - }, - "12": { - "n": "Lille", - "l": 1, - "el": 1199 - }, - "9": { - "n": "Marseille", - "l": 1, - "el": 1147 - }, - "5": { - "n": "Caen", - "l": 4, - "el": 975 - }, - "67": { - "n": "N\u00eemes", - "l": 1, - "el": 1061 - }, - "68": { - "n": "Reims", - "l": 1, - "el": 1086 - }, - "2": { - "n": "Paris", - "l": 1, - "el": 1216 - }, - "53": { - "n": "Girona", - "l": 3, - "el": 860 - }, - "64": { - "n": "Villarreal", - "l": 3, - "el": 1082 - }, - "47": { - "n": "Legan\u00e9s", - "l": 3, - "el": 1014 - }, - "52": { - "n": "Real Sociedad", - "l": 3, - "el": 1080 - }, - "73": { - "n": "Huesca", - "l": 3, - "el": 1021 - }, - "62": { - "n": "Real Madrid", - "l": 3, - "el": 1105 - }, - "66": { - "n": "Eibar", - "l": 3, - "el": 1055 - }, - "20": { - "n": "Rennes", - "l": 1, - "el": 1095 - }, - "19": { - "n": "Nice", - "l": 1, - "el": 1097 - }, - "58": { - "n": "Getafe", - "l": 3, - "el": 1116 - }, - "57": { - "n": "Bilbao", - "l": 3, - "el": 1085 - }, - "59": { - "n": "Barcelona", - "l": 3, - "el": 1292 - }, - "51": { - "n": "Celta", - "l": 3, - "el": 1020 - }, - "55": { - "n": "Sevilla", - "l": 3, - "el": 1080 - }, - "56": { - "n": "Espanyol", - "l": 3, - "el": 1127 - }, - "54": { - "n": "Atl\u00e9tico", - "l": 3, - "el": 1204 - }, - "72": { - "n": "Rayo", - "l": 3, - "el": 924 - }, - "49": { - "n": "Valencia", - "l": 3, - "el": 1162 - }, - "74": { - "n": "Valladolid", - "l": 3, - "el": 1019 - }, - "63": { - "n": "Levante", - "l": 3, - "el": 1043 - }, - "48": { - "n": "Alav\u00e9s", - "l": 3, - "el": 996 - } - }, - "e": { - "3472": { - "d": 31, - "dB": "2019-03-17T14:15:00Z", - "t1s": 1, - "t2s": 2, - "t1": 71, - "t2": 21 - }, - "3485": { - "d": 32, - "dB": "2019-03-31T15:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 21, - "t2": 24 - }, - "3494": { - "d": 33, - "dB": "2019-04-05T19:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 35, - "t2": 21 - }, - "3503": { - "d": 34, - "dB": "2019-04-14T15:30:00Z", - "t1s": 2, - "t2s": 0, - "t1": 21, - "t2": 25 - }, - "3510": { - "d": 35, - "dB": "2019-04-21T15:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 70, - "t2": 21 - }, - "3535": { - "d": 37, - "dB": "2019-05-04T18:45:00Z", - "t1s": 2, - "t2s": 3, - "t1": 46, - "t2": 21 - }, - "3543": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 21, - "t2": 69 - }, - "3523": { - "d": 36, - "dB": "2019-04-26T19:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 21, - "t2": 44 - }, - "3468": { - "d": 31, - "dB": "2019-03-16T15:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 36, - "t2": 46 - }, - "3484": { - "d": 32, - "dB": "2019-03-30T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 29, - "t2": 36 - }, - "3488": { - "d": 33, - "dB": "2019-04-06T14:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 36, - "t2": 23 - }, - "3525": { - "d": 36, - "dB": "2019-04-27T14:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 35, - "t2": 36 - }, - "3528": { - "d": 37, - "dB": "2019-05-04T11:30:00Z", - "t1s": 1, - "t2s": 0, - "t1": 36, - "t2": 24 - }, - "3540": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 5, - "t2s": 3, - "t1": 26, - "t2": 36 - }, - "3537": { - "d": 37, - "dB": "2019-05-04T14:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 69, - "t2": 71 - }, - "3541": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 0, - "t2s": 4, - "t1": 71, - "t2": 46 - }, - "3471": { - "d": 31, - "dB": "2019-03-17T16:30:00Z", - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 25 - }, - "3487": { - "d": 32, - "dB": "2019-03-30T17:30:00Z", - "t1s": 0, - "t2s": 2, - "t1": 28, - "t2": 22 - }, - "3490": { - "d": 33, - "dB": "2019-04-07T13:05:00Z", - "t1s": 1, - "t2s": 0, - "t1": 22, - "t2": 39 - }, - "3501": { - "d": 34, - "dB": "2019-04-13T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 71, - "t2": 22 - }, - "3512": { - "d": 35, - "dB": "2019-04-21T12:30:00Z", - "t1s": 4, - "t2s": 0, - "t1": 22, - "t2": 31 - }, - "3520": { - "d": 36, - "dB": "2019-04-27T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 26, - "t2": 22 - }, - "3532": { - "d": 37, - "dB": "2019-05-03T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 23 - }, - "3546": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 24, - "t2": 22 - }, - "3469": { - "d": 31, - "dB": "2019-04-16T18:45:00Z", - "t1s": 0, - "t2s": 2, - "t1": 45, - "t2": 70 - }, - "3481": { - "d": 32, - "dB": "2019-03-31T13:05:00Z", - "t1s": 1, - "t2s": 2, - "t1": 70, - "t2": 25 - }, - "3492": { - "d": 33, - "dB": "2019-04-03T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 40, - "t2": 70 - }, - "3499": { - "d": 34, - "dB": "2019-04-13T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 70 - }, - "3521": { - "d": 36, - "dB": "2019-04-27T14:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 71, - "t2": 70 - }, - "3476": { - "d": 31, - "dB": "2019-03-16T15:00:00Z", - "t1s": 4, - "t2s": 3, - "t1": 28, - "t2": 44 - }, - "3513": { - "d": 35, - "dB": "2019-04-20T14:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 44, - "t2": 33 - }, - "3533": { - "d": 37, - "dB": "2019-05-05T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 44, - "t2": 31 - }, - "3470": { - "d": 31, - "dB": "2019-03-16T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 23, - "t2": 29 - }, - "3480": { - "d": 32, - "dB": "2019-03-30T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 69 - }, - "3511": { - "d": 35, - "dB": "2019-04-22T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 25, - "t2": 23 - }, - "3519": { - "d": 36, - "dB": "2019-04-28T13:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 23, - "t2": 40 - }, - "3539": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 23, - "t2": 39 - }, - "3032": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 42, - "t2": 4 - }, - "3043": { - "d": 32, - "dB": "2019-04-12T17:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 7, - "t2": 42 - }, - "3055": { - "d": 33, - "dB": "2019-04-21T13:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 42 - }, - "3062": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 41 - }, - "3076": { - "d": 35, - "dB": "2019-05-05T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 42 - }, - "3082": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 10 - }, - "3096": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 13, - "t2": 42 - }, - "3102": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 14 - }, - "3474": { - "d": 31, - "dB": "2019-04-03T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 24, - "t2": 26 - }, - "3495": { - "d": 33, - "dB": "2019-04-23T18:45:00Z", - "t1s": 1, - "t2s": 0, - "t1": 24, - "t2": 45 - }, - "3506": { - "d": 34, - "dB": "2019-04-13T11:30:00Z", - "t1s": 4, - "t2s": 0, - "t1": 24, - "t2": 44 - }, - "3514": { - "d": 35, - "dB": "2019-04-20T11:30:00Z", - "t1s": 1, - "t2s": 0, - "t1": 40, - "t2": 24 - }, - "3526": { - "d": 36, - "dB": "2019-04-27T11:30:00Z", - "t1s": 0, - "t2s": 1, - "t1": 24, - "t2": 28 - }, - "3036": { - "d": 31, - "dB": "2019-04-06T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 18, - "t2": 7 - }, - "3048": { - "d": 32, - "dB": "2019-04-12T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 8, - "t2": 18 - }, - "3054": { - "d": 33, - "dB": "2019-04-19T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 18, - "t2": 16 - }, - "3064": { - "d": 34, - "dB": "2019-04-26T18:45:00Z", - "t1s": 2, - "t2s": 3, - "t1": 3, - "t2": 18 - }, - "3074": { - "d": 35, - "dB": "2019-05-05T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 18, - "t2": 12 - }, - "3087": { - "d": 36, - "dB": "2019-05-12T19:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 9, - "t2": 18 - }, - "3095": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 18, - "t2": 5 - }, - "3109": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 18 - }, - "3489": { - "d": 33, - "dB": "2019-04-08T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 25, - "t2": 28 - }, - "3524": { - "d": 36, - "dB": "2019-04-28T15:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 31, - "t2": 25 - }, - "3531": { - "d": 37, - "dB": "2019-05-05T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 25, - "t2": 33 - }, - "3542": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 29, - "t2": 25 - }, - "3482": { - "d": 32, - "dB": "2019-03-30T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 26, - "t2": 44 - }, - "3493": { - "d": 33, - "dB": "2019-04-06T14:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 46, - "t2": 26 - }, - "3530": { - "d": 37, - "dB": "2019-05-04T16:30:00Z", - "t1s": 2, - "t2s": 3, - "t1": 70, - "t2": 26 - }, - "3478": { - "d": 32, - "dB": "2019-04-01T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 39, - "t2": 46 - }, - "3518": { - "d": 36, - "dB": "2019-04-27T16:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 45, - "t2": 46 - }, - "3040": { - "d": 31, - "dB": "2019-04-07T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 12 - }, - "3046": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 13, - "t2": 68 - }, - "3059": { - "d": 33, - "dB": "2019-04-21T15:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 68, - "t2": 4 - }, - "3063": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 68 - }, - "3079": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 68, - "t2": 67 - }, - "3110": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 3, - "t2s": 1, - "t1": 68, - "t2": 2 - }, - "3500": { - "d": 34, - "dB": "2019-04-14T13:05:00Z", - "t1s": 1, - "t2s": 3, - "t1": 26, - "t2": 40 - }, - "3509": { - "d": 35, - "dB": "2019-04-21T15:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 39, - "t2": 26 - }, - "3536": { - "d": 37, - "dB": "2019-05-04T14:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 28, - "t2": 35 - }, - "3547": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 1, - "t2s": 4, - "t1": 33, - "t2": 28 - }, - "3504": { - "d": 34, - "dB": "2019-04-13T16:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 28 - }, - "3516": { - "d": 35, - "dB": "2019-04-20T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 28, - "t2": 29 - }, - "2284": { - "d": 32, - "dB": "2019-04-14T16:30:00Z", - "t1s": 0, - "t2s": 1, - "t1": 53, - "t2": 64 - }, - "2301": { - "d": 33, - "dB": "2019-04-21T16:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 64, - "t2": 47 - }, - "2305": { - "d": 34, - "dB": "2019-04-25T18:30:00Z", - "t1s": 0, - "t2s": 1, - "t1": 52, - "t2": 64 - }, - "2321": { - "d": 35, - "dB": "2019-04-28T16:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 64, - "t2": 73 - }, - "2326": { - "d": 36, - "dB": "2019-05-05T14:15:00Z", - "t1s": 3, - "t2s": 2, - "t1": 62, - "t2": 64 - }, - "2339": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 1, - "t2s": 0, - "t1": 64, - "t2": 66 - }, - "3491": { - "d": 33, - "dB": "2019-04-06T14:00:00Z", - "t1s": 1, - "t2s": 4, - "t1": 44, - "t2": 29 - }, - "3502": { - "d": 34, - "dB": "2019-04-12T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 29, - "t2": 46 - }, - "3522": { - "d": 36, - "dB": "2019-04-28T11:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 29, - "t2": 39 - }, - "3534": { - "d": 37, - "dB": "2019-05-06T19:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 40, - "t2": 29 - }, - "3515": { - "d": 35, - "dB": "2019-04-20T16:30:00Z", - "t1s": 3, - "t2s": 1, - "t1": 46, - "t2": 35 - }, - "3035": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 13 - }, - "3058": { - "d": 33, - "dB": "2019-04-21T19:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 2, - "t2": 13 - }, - "3070": { - "d": 34, - "dB": "2019-05-01T17:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 20, - "t2": 13 - }, - "3075": { - "d": 35, - "dB": "2019-05-05T15:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 13, - "t2": 4 - }, - "3089": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 67, - "t2": 13 - }, - "3108": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 13 - }, - "3473": { - "d": 31, - "dB": "2019-04-24T19:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 31, - "t2": 40 - }, - "3497": { - "d": 33, - "dB": "2019-04-02T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 69, - "t2": 31 - }, - "3486": { - "d": 32, - "dB": "2019-03-30T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 33 - }, - "3544": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 31, - "t2": 70 - }, - "3483": { - "d": 32, - "dB": "2019-03-30T12:30:00Z", - "t1s": 0, - "t2s": 2, - "t1": 71, - "t2": 40 - }, - "3496": { - "d": 33, - "dB": "2019-04-02T18:45:00Z", - "t1s": 4, - "t2s": 1, - "t1": 33, - "t2": 71 - }, - "3507": { - "d": 34, - "dB": "2019-04-15T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 33, - "t2": 39 - }, - "3475": { - "d": 31, - "dB": "2019-04-23T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 33, - "t2": 35 - }, - "3527": { - "d": 36, - "dB": "2019-04-27T14:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 33, - "t2": 69 - }, - "2276": { - "d": 31, - "dB": "2019-04-07T12:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 58, - "t2": 57 - }, - "2323": { - "d": 36, - "dB": "2019-05-05T10:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 58, - "t2": 53 - }, - "2334": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 2, - "t2s": 0, - "t1": 59, - "t2": 58 - }, - "2345": { - "d": 38, - "dB": "2019-05-18T14:15:00Z", - "t1s": 2, - "t2s": 2, - "t1": 58, - "t2": 64 - }, - "2285": { - "d": 32, - "dB": "2019-04-15T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 47, - "t2": 62 - }, - "2306": { - "d": 34, - "dB": "2019-04-24T18:30:00Z", - "t1s": 0, - "t2s": 1, - "t1": 47, - "t2": 57 - }, - "2318": { - "d": 35, - "dB": "2019-04-27T16:30:00Z", - "t1s": 0, - "t2s": 0, - "t1": 47, - "t2": 51 - }, - "2331": { - "d": 36, - "dB": "2019-05-03T19:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 55, - "t2": 47 - }, - "2340": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 0, - "t2s": 2, - "t1": 47, - "t2": 56 - }, - "2346": { - "d": 38, - "dB": "2019-05-18T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 73, - "t2": 47 - }, - "3505": { - "d": 34, - "dB": "2019-04-13T14:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 35, - "t2": 69 - }, - "3545": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 35, - "t2": 44 - }, - "3479": { - "d": 32, - "dB": "2019-03-30T15:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 45, - "t2": 35 - }, - "2274": { - "d": 31, - "dB": "2019-04-07T16:30:00Z", - "t1s": 3, - "t2s": 1, - "t1": 51, - "t2": 52 - }, - "2283": { - "d": 32, - "dB": "2019-04-13T16:30:00Z", - "t1s": 2, - "t2s": 0, - "t1": 54, - "t2": 51 - }, - "2295": { - "d": 33, - "dB": "2019-04-20T11:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 51, - "t2": 53 - }, - "2329": { - "d": 36, - "dB": "2019-05-04T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 51, - "t2": 59 - }, - "2332": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 3, - "t2s": 1, - "t1": 57, - "t2": 51 - }, - "2343": { - "d": 38, - "dB": "2019-05-18T18:45:00Z", - "t1s": 2, - "t2s": 2, - "t1": 51, - "t2": 72 - }, - "2308": { - "d": 34, - "dB": "2019-04-24T18:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 56, - "t2": 51 - }, - "3498": { - "d": 34, - "dB": "2019-04-13T14:00:00Z", - "t1s": 0, - "t2s": 5, - "t1": 45, - "t2": 36 - }, - "3508": { - "d": 35, - "dB": "2019-04-20T14:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 36, - "t2": 71 - }, - "3477": { - "d": 31, - "dB": "2019-04-24T18:45:00Z", - "t1s": 3, - "t2s": 1, - "t1": 69, - "t2": 39 - }, - "3529": { - "d": 37, - "dB": "2019-05-05T15:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 39, - "t2": 45 - }, - "2316": { - "d": 35, - "dB": "2019-04-28T18:45:00Z", - "t1s": 1, - "t2s": 0, - "t1": 72, - "t2": 62 - }, - "3538": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 1, - "t2s": 4, - "t1": 45, - "t2": 40 - }, - "2315": { - "d": 35, - "dB": "2019-04-28T12:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 53, - "t2": 55 - }, - "2277": { - "d": 31, - "dB": "2019-04-06T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 59, - "t2": 54 - }, - "2298": { - "d": 33, - "dB": "2019-04-20T14:15:00Z", - "t1s": 0, - "t2s": 1, - "t1": 66, - "t2": 54 - }, - "2303": { - "d": 34, - "dB": "2019-04-24T17:30:00Z", - "t1s": 3, - "t2s": 2, - "t1": 54, - "t2": 49 - }, - "2312": { - "d": 35, - "dB": "2019-04-27T14:15:00Z", - "t1s": 1, - "t2s": 0, - "t1": 54, - "t2": 74 - }, - "2328": { - "d": 36, - "dB": "2019-05-04T14:15:00Z", - "t1s": 3, - "t2s": 0, - "t1": 56, - "t2": 54 - }, - "2333": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 54, - "t2": 55 - }, - "2348": { - "d": 38, - "dB": "2019-05-18T11:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 63, - "t2": 54 - }, - "3517": { - "d": 35, - "dB": "2019-04-20T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 69, - "t2": 45 - }, - "2297": { - "d": 33, - "dB": "2019-04-21T14:15:00Z", - "t1s": 3, - "t2s": 0, - "t1": 62, - "t2": 57 - }, - "2341": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 3, - "t2s": 1, - "t1": 52, - "t2": 62 - }, - "2279": { - "d": 31, - "dB": "2019-04-06T11:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 53, - "t2": 56 - }, - "2342": { - "d": 38, - "dB": "2019-05-18T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 48, - "t2": 53 - }, - "3038": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 67, - "t2": 5 - }, - "3042": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 16 - }, - "3056": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 5 - }, - "3065": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 7 - }, - "3073": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 5 - }, - "3084": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 5, - "t2": 68 - }, - "3104": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 3 - }, - "2310": { - "d": 34, - "dB": "2019-04-23T18:30:00Z", - "t1s": 1, - "t2s": 0, - "t1": 74, - "t2": 53 - }, - "2336": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 1, - "t2s": 2, - "t1": 53, - "t2": 63 - }, - "3092": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 68 - } - }, - "Ne": { - "4298": { - "d": 1, - "dB": "2019-08-09T19:00:00Z", - "t1": 21, - "t2": 76 - }, - "4302": { - "d": 1, - "dB": "2019-08-10T14:00:00Z", - "t1": 26, - "t2": 22 - }, - "4301": { - "d": 1, - "dB": "2019-08-10T14:00:00Z", - "t1": 23, - "t2": 35 - }, - "4304": { - "d": 1, - "dB": "2019-08-10T16:30:00Z", - "t1": 24, - "t2": 78 - }, - "4307": { - "d": 1, - "dB": "2019-08-11T15:30:00Z", - "t1": 31, - "t2": 25 - }, - "4299": { - "d": 1, - "dB": "2019-08-10T11:30:00Z", - "t1": 28, - "t2": 40 - }, - "4305": { - "d": 1, - "dB": "2019-08-11T13:00:00Z", - "t1": 29, - "t2": 69 - }, - "4303": { - "d": 1, - "dB": "2019-08-10T14:00:00Z", - "t1": 33, - "t2": 45 - }, - "4300": { - "d": 1, - "dB": "2019-08-10T14:00:00Z", - "t1": 36, - "t2": 77 - }, - "4306": { - "d": 1, - "dB": "2019-08-11T13:00:00Z", - "t1": 46, - "t2": 39 - } - }, - "k": "2d0695" -} diff --git a/src/test/resources/__files/mpgstats.premier-league.20190818.json b/src/test/resources/__files/mpgstats.premier-league.20190818.json deleted file mode 100644 index 9a126d9..0000000 --- a/src/test/resources/__files/mpgstats.premier-league.20190818.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-08-14T16:29:25Z","mL":{"i":2,"n":"Premier League","cN":"Premier-League","u":"\/league\/Premier-League","aS":{"cN":"Premier-League-2019-2020","i":10,"n":"Premier League 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":1,"lD":1}},"lS":{"cN":"Premier-League-2018-2019","i":7,"n":"Premier League 2018-2019","mD":38}},"mxD":1,"np":823,"le":{"2":"Premier-League","1":"Ligue-1","4":"Ligue-2","3":"Liga"},"p":[{"i":5,"n":"Fabinho","f":"","p":"M","r":14,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"159","On":"29","Oa":"5.48","Od":"0.79","Mp":"28","Dp":"1","p":{"32":{"n":5,"s":1},"33":{"n":5},"34":{"n":5.5},"35":{"n":5,"s":1},"37":{"n":5.5},"38":{"n":6},"1":{"n":7}}},"c":21},{"i":605,"n":"Man\u00e9","f":"Sadio","p":"A","r":50,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"20","Os":"206","On":"36","Oa":"5.72","Od":"1.09","Mp":"12","Ap":"24","p":{"32":{"n":5},"33":{"n":5},"34":{"n":7,"g":1},"35":{"n":5.5},"36":{"n":7.5,"g":2},"37":{"n":5},"38":{"n":7.5,"g":2},"1":{"n":4.5,"s":1}}},"c":21},{"i":606,"n":"Roberto Firmino","f":"","p":"A","r":26,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"12","Os":"186","On":"34","Oa":"5.49","Od":"1.11","Mp":"11","Ap":"23","p":{"32":{"n":6,"g":1},"33":{"n":7},"34":{"n":5},"35":{"n":5},"1":{"n":7}}},"c":21},{"i":618,"n":"Lallana","f":"Adam","p":"M","r":5,"s":{"n":0,"Os":"65","On":"13","Oa":"5","Od":"0.2","Mp":"12","Ap":"1"},"c":21},{"i":624,"n":"Milner","f":"James","p":"M","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"5","Os":"171","On":"31","Oa":"5.52","Od":"0.85","Mp":"25","Dp":"6","p":{"32":{"n":6},"33":{"n":5,"s":1},"34":{"n":5.5,"s":1},"35":{"n":7,"g":1,"s":1},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":21},{"i":630,"n":"Wijnaldum","f":"Georginio","p":"M","r":20,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"3","Os":"193","On":"35","Oa":"5.53","Od":"0.88","Mp":"35","p":{"32":{"n":5},"33":{"n":4},"34":{"n":5,"s":1},"35":{"n":7.5,"g":1},"36":{"n":7},"37":{"n":5},"38":{"n":5.5},"1":{"n":5.5}}},"c":21},{"i":636,"n":"Oxlade-Chamberlain","f":"Alex","p":"M","r":5,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"2","p":{"36":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":21},{"i":638,"n":"Sturridge","f":"Daniel","p":"A","r":11,"s":{"n":0,"Og":"1","Os":"81","On":"17","Oa":"4.79","Od":"0.62","Ap":"17","p":{"36":{"n":5},"37":{"n":4}}},"c":21},{"i":644,"n":"Henderson","f":"Jordan","p":"M","r":18,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"174","On":"32","Oa":"5.44","Od":"0.56","Mp":"31","Dp":"1","p":{"32":{"n":4.5},"33":{"n":6,"g":1,"s":1},"34":{"n":6.5},"35":{"n":6},"36":{"n":6.5},"37":{"n":5},"38":{"n":5},"1":{"n":6}}},"c":21},{"i":655,"n":"Lovren","f":"Dejan","p":"D","r":10,"s":{"n":0,"Og":"1","Os":"73","On":"13","Oa":"5.62","Od":"0.98","Dp":"13","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"36":{"n":7},"37":{"n":4.5}}},"c":21},{"i":668,"n":"van Dijk","f":"Virgil","p":"D","r":34,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"5","Os":"232","On":"38","Oa":"6.11","Od":"0.82","Dp":"38","p":{"32":{"n":6},"33":{"n":5.5},"34":{"n":6},"35":{"n":6},"36":{"n":6},"37":{"n":7,"g":1},"38":{"n":6},"1":{"n":7,"g":1}}},"c":21},{"i":672,"n":"Shaqiri","f":"Xherdan","p":"A","r":11,"s":{"n":0,"Og":"6","Os":"120","On":"23","Oa":"5.24","Od":"0.93","Mp":"20","Ap":"3","p":{"34":{"n":4,"s":1},"36":{"n":5,"s":1},"37":{"n":5.5,"s":1}}},"c":21},{"i":681,"n":"Origi","f":"Divock","p":"A","r":9,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"4","Os":"68","On":"13","Oa":"5.23","Od":"0.95","Ap":"13","p":{"32":{"n":5,"s":1},"37":{"n":6,"g":1,"s":1},"38":{"n":4.5},"1":{"n":7,"g":1}}},"c":21},{"i":711,"n":"Clyne","f":"Nathaniel","p":"D","r":10,"s":{"n":0,"Os":"81","On":"18","Oa":"4.53","Od":"0.98","Dp":"18","p":{"32":{"n":3.5,"e":3484,"c":36},"33":{"n":3,"e":3488,"c":36},"36":{"n":4,"e":3525,"c":36},"37":{"n":5,"e":3528,"c":36},"38":{"n":3,"e":3540,"c":36}}},"c":21},{"i":760,"n":"Mignolet","f":"Simon","p":"G","r":6,"s":{"n":0},"c":21},{"i":766,"n":"Matip","f":"Joel","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"122","On":"22","Oa":"5.55","Od":"0.69","Dp":"22","p":{"32":{"n":5.5},"33":{"n":6},"34":{"n":6},"35":{"n":5.5},"38":{"n":6.5}}},"c":21},{"i":776,"n":"Robertson","f":"Andrew","p":"D","r":20,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"195","On":"36","Oa":"5.42","Od":"0.77","Dp":"36","p":{"32":{"n":6.5},"33":{"n":5},"34":{"n":5},"35":{"n":6},"36":{"n":7.5},"37":{"n":4.5},"38":{"n":6},"1":{"n":5.5}}},"c":21},{"i":901,"n":"Adri\u00e1n","f":"","p":"G","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"1":{"n":4.5,"s":1}}},"c":21},{"i":970,"n":"Karius","f":"Loris","p":"G","r":9,"s":{"n":0},"c":21},{"i":995,"n":"Alexander-Arnold","f":"Trent","p":"D","r":22,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"164","On":"29","Oa":"5.66","Od":"0.94","Dp":"29","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":6.5},"35":{"n":6},"36":{"n":7},"37":{"n":6.5},"38":{"n":7},"1":{"n":6}}},"c":21},{"i":1009,"n":"Grujic","f":"Marko","p":"M","r":1,"s":{"n":0},"c":21},{"i":1096,"n":"Gomez","f":"Joseph","p":"D","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"86","On":"16","Oa":"5.38","Od":"0.38","Dp":"16","p":{"35":{"n":5,"s":1},"36":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":5.5}}},"c":21},{"i":1151,"n":"Woodburn","f":"Ben","p":"A","r":1,"s":{"n":0},"c":21},{"i":1278,"n":"Mohamed Salah","f":"","p":"A","r":50,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"22","Os":"222","On":"38","Oa":"5.84","Od":"1.21","Ap":"38","p":{"32":{"n":5.5},"33":{"n":6,"g":1},"34":{"n":7,"g":1},"35":{"n":6},"36":{"n":8,"g":2},"37":{"n":6.5,"g":1},"38":{"n":5.5},"1":{"n":7,"g":1}}},"c":21},{"i":1362,"n":"Brewster","f":"Rhian","p":"A","r":1,"s":{"n":0},"c":21},{"i":1374,"n":"Grabara","f":"Kamil","p":"G","r":1,"s":{"n":0},"c":21},{"i":1381,"n":"Kent","f":"Ryan","p":"M","r":8,"s":{"n":0},"c":21},{"i":2539,"n":"Camacho","f":"Rafael","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":21},{"i":2546,"n":"Jones","f":"Curtis","p":"M","r":1,"s":{"n":0},"c":21},{"i":2551,"n":"Phillips","f":"Nathaniel","p":"D","r":1,"s":{"n":0},"c":21},{"i":2565,"n":"Keita","f":"Naby","p":"M","r":12,"s":{"n":0,"Og":"2","Os":"124","On":"24","Oa":"5.17","Od":"0.85","Mp":"24","p":{"33":{"n":6,"g":1},"34":{"n":4.5},"35":{"n":6},"36":{"n":7.5,"g":1}}},"c":21},{"i":2566,"n":"Johnston","f":"George","p":"D","r":1,"s":{"n":0},"c":21},{"i":2591,"n":"Alisson","f":"","p":"G","r":24,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"209","On":"38","Oa":"5.5","Od":"0.78","Gp":"38","p":{"32":{"n":5},"33":{"n":4.5},"34":{"n":6},"35":{"n":5.5},"36":{"n":5.5},"37":{"n":6},"38":{"n":6},"1":{"n":5.5}}},"c":21},{"i":2884,"n":"Elliott","f":"Harvey","p":"M","r":3,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"2","p":{"37":{"n":5,"e":3537,"c":71,"s":1},"38":{"n":5,"e":3541,"c":71,"s":1}}},"c":21},{"i":3117,"n":"Hoever","f":"Ki-Jana","p":"D","r":1,"s":{"n":0},"c":21},{"i":3120,"n":"Kelleher","f":"Caoimhin","p":"G","r":1,"s":{"n":0},"c":21},{"i":3121,"n":"Christie-Davies","f":"Isaac","p":"M","r":1,"s":{"n":0},"c":21},{"i":3639,"n":"van den Berg","f":"Sepp","p":"D","r":1,"s":{"n":0},"c":21},{"i":3641,"n":"Larouci","f":"Yasser","p":"D","r":5,"s":{"n":0},"c":21},{"i":3642,"n":"Jaros","f":"Vitezslav","p":"G","r":1,"s":{"n":0},"c":21},{"i":3660,"n":"Duncan","f":"Bobby","p":"A","r":2,"s":{"n":0},"c":21},{"i":3666,"n":"Atherton","f":"Daniel","p":"G","r":1,"s":{"n":0},"c":21},{"i":3667,"n":"Glatzel","f":"Paul","p":"A","r":1,"s":{"n":0},"c":21},{"i":3672,"n":"Lewis","f":"Adam","p":"M","r":3,"s":{"n":0},"c":21},{"i":5451,"n":"Lonergan","f":"Andy","p":"G","r":1,"s":{"n":0},"c":21},{"i":6124,"n":"Chirivella","f":"Pedro","p":"M","r":1,"s":{"n":0},"c":21},{"i":24,"n":"Sidib\u00e9","f":"Djibril","p":"D","r":9,"s":{"n":0,"Os":"118","On":"26","Oa":"4.56","Od":"0.74","Mp":"5","Dp":"21","p":{"32":{"n":4.5,"e":3046,"c":13},"34":{"n":5.5,"e":3070,"c":13},"35":{"n":3,"e":3075,"c":13},"36":{"n":4.5,"e":3089,"c":13},"37":{"n":6,"e":3096,"c":13},"38":{"n":4,"e":3108,"c":13}}},"c":22},{"i":612,"n":"Sigurdsson","f":"Gylfi","p":"M","r":27,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"13","Os":"217","On":"38","Oa":"5.72","Od":"1.27","Mp":"34","Ap":"4","p":{"32":{"n":6},"33":{"n":6},"34":{"n":3.5},"35":{"n":8,"g":1},"36":{"n":4},"37":{"n":5},"38":{"n":6.5},"1":{"n":5}}},"c":22},{"i":614,"n":"Mirallas","f":"Kevin","p":"M","r":18,"s":{"n":0},"c":22},{"i":642,"n":"Walcott","f":"Theo","p":"A","r":12,"s":{"n":0,"Og":"5","Os":"175","On":"36","Oa":"4.88","Od":"0.84","Mp":"21","Ap":"15","p":{"32":{"n":4.5,"s":1},"33":{"n":5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":6.5,"g":1,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":7,"g":1}}},"c":22},{"i":645,"n":"Baines","f":"Leighton","p":"D","r":6,"s":{"n":0,"Os":"24","On":"5","Oa":"4.8","Od":"0.51","Dp":"5"},"c":22},{"i":697,"n":"Keane","f":"Michael","p":"D","r":19,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"173","On":"33","Oa":"5.24","Od":"1.1","Dp":"33","p":{"32":{"n":6.5},"35":{"n":6},"36":{"n":5},"37":{"n":6},"38":{"n":5},"1":{"n":5}}},"c":22},{"i":705,"n":"Iwobi","f":"Alex","p":"M","r":11,"s":{"n":0,"Og":"3","Os":"168","On":"35","Oa":"4.81","Od":"0.99","Mp":"27","Ap":"8","p":{"32":{"n":4,"e":3478,"c":39},"33":{"n":5,"e":3490,"c":39,"s":1},"34":{"n":5.5,"e":3507,"c":39},"35":{"n":3.5,"e":3509,"c":39,"s":1},"36":{"n":5,"e":3522,"c":39},"37":{"n":5,"e":3529,"c":39,"s":1},"38":{"n":7,"e":3539,"c":39}}},"c":22},{"i":715,"n":"Bolasie","f":"Yannick","p":"A","r":9,"s":{"n":0},"c":22},{"i":779,"n":"Stekelenburg","f":"Maarten","p":"G","r":3,"s":{"n":0},"c":22},{"i":833,"n":"Schneiderlin","f":"Morgan","p":"M","r":12,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"74","On":"14","Oa":"5.32","Od":"0.99","Mp":"14","p":{"35":{"n":7},"36":{"n":4.5},"37":{"n":7},"38":{"n":5},"1":{"n":4}}},"c":22},{"i":834,"n":"Davies","f":"Tom","p":"M","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"82","On":"17","Oa":"4.82","Od":"0.66","Mp":"17","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":22},{"i":844,"n":"Holgate","f":"Mason","p":"D","r":1,"s":{"n":0,"Os":"18","On":"4","Oa":"4.63","Od":"0.96","Dp":"4"},"c":22},{"i":909,"n":"Pickford","f":"Jordan","p":"G","r":21,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"204","On":"38","Oa":"5.37","Od":"1.21","Gp":"38","p":{"32":{"n":6},"33":{"n":6},"34":{"n":5},"35":{"n":6.5},"36":{"n":5.5},"37":{"n":6},"38":{"n":4.5},"1":{"n":6}}},"c":22},{"i":930,"n":"Coleman","f":"S\u00e9amus","p":"D","r":18,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Oao":"1","Os":"149","On":"29","Oa":"5.14","Od":"1.14","Mp":"2","Dp":"27","p":{"32":{"n":6.5},"33":{"n":5},"34":{"n":4.5},"35":{"n":6},"36":{"n":5},"37":{"n":7,"g":1},"1":{"n":5}}},"c":22},{"i":958,"n":"Delph","f":"Fabian","p":"M","r":6,"s":{"n":0,"Os":"57","On":"11","Oa":"5.18","Od":"0.68","Mp":"3","Dp":"8"},"c":22},{"i":967,"n":"Cuco Martina","f":"","p":"D","r":12,"s":{"n":0},"c":22},{"i":1028,"n":"Niasse","f":"Oumar","p":"A","r":10,"s":{"n":0,"Os":"71","On":"17","Oa":"4.21","Od":"0.62","Ap":"17","p":{"32":{"n":4,"e":3481,"c":70},"33":{"n":4.5,"e":3492,"c":70},"34":{"n":4.5,"e":3499,"c":70,"s":1},"35":{"n":3.5,"e":3510,"c":70},"36":{"n":4,"e":3521,"c":70}}},"c":22},{"i":1039,"n":"Lookman","f":"Ademola","p":"A","r":7,"s":{"n":0,"Os":"101","On":"21","Oa":"4.83","Od":"0.54","Mp":"3","Ap":"18","p":{"33":{"n":4.5,"s":1},"34":{"n":4,"s":1},"36":{"n":4,"s":1},"37":{"n":5,"s":1},"38":{"n":5.5,"s":1}}},"c":22},{"i":1066,"n":"Calvert-Lewin","f":"Dominic","p":"A","r":14,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"6","Os":"169","On":"36","Oa":"4.71","Od":"0.92","Mp":"2","Ap":"34","p":{"32":{"n":5.5},"33":{"n":6},"34":{"n":3},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":4.5},"1":{"n":4}}},"c":22},{"i":1094,"n":"Kenny","f":"Jonjoe","p":"D","r":5,"s":{"n":0,"Os":"45","On":"10","Oa":"4.5","Od":"0.67","Dp":"10"},"c":22},{"i":1114,"n":"Hewelt","f":"Mateusz","p":"G","r":1,"s":{"n":0},"c":22},{"i":1307,"n":"Richarlison","f":"","p":"A","r":21,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"11","Os":"178","On":"35","Oa":"5.1","Od":"1.13","Mp":"21","Ap":"14","p":{"32":{"n":6},"33":{"n":5},"34":{"n":4},"35":{"n":7,"g":1},"36":{"n":5.5},"37":{"n":5.5},"1":{"n":6}}},"c":22},{"i":1479,"n":"L\u00f6ssl","f":"Jonas","p":"G","r":8,"s":{"n":0,"Os":"161","On":"31","Oa":"5.21","Od":"1.11","Gp":"31","p":{"35":{"n":6,"e":3513,"c":44},"36":{"n":3,"e":3523,"c":44},"37":{"n":6,"e":3533,"c":44}}},"c":22},{"i":1751,"n":"Andr\u00e9 Gomes","f":"","p":"M","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"138","On":"28","Oa":"4.93","Od":"0.68","Mp":"28","p":{"32":{"n":5.5},"33":{"n":5.5},"34":{"n":4},"38":{"n":4,"s":1},"1":{"n":6}}},"c":22},{"i":1881,"n":"Digne","f":"Lucas","p":"D","r":23,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Oao":"1","Os":"186","On":"35","Oa":"5.31","Od":"1.22","Mp":"2","Dp":"33","p":{"32":{"n":7},"33":{"n":6},"34":{"n":3},"35":{"n":7.5,"g":1},"36":{"n":5},"37":{"n":6},"38":{"n":4.5},"1":{"n":4.5}}},"c":22},{"i":2026,"n":"Vlasic","f":"Nikola","p":"A","r":7,"s":{"n":0},"c":22},{"i":2118,"n":"Baningime","f":"Beni","p":"M","r":1,"s":{"n":0},"c":22},{"i":2197,"n":"Tosun","f":"Cenk","p":"A","r":7,"s":{"n":0,"Og":"3","Os":"113","On":"24","Oa":"4.73","Od":"0.76","Ap":"24","p":{"32":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"38":{"n":7,"g":1}}},"c":22},{"i":2241,"n":"Mina","f":"Yerry","p":"D","r":8,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"70","On":"14","Oa":"5","Od":"0.93","Dp":"14","p":{"38":{"n":4},"1":{"n":6}}},"c":22},{"i":2569,"n":"Dowell","f":"Kieran","p":"M","r":1,"s":{"n":0},"c":22},{"i":2583,"n":"Browning","f":"Tyias","p":"D","r":1,"s":{"n":0},"c":22},{"i":2593,"n":"Pennington","f":"Matthew","p":"D","r":5,"s":{"n":0},"c":22},{"i":2760,"n":"Williams","f":"Joe","p":"M","r":1,"s":{"n":0},"c":22},{"i":2764,"n":"Bernard","f":"","p":"M","r":18,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"176","On":"35","Oa":"5.03","Od":"0.92","Mp":"33","Ap":"2","p":{"32":{"n":7,"g":1},"33":{"n":6},"34":{"n":4},"35":{"n":7},"36":{"n":5},"37":{"n":5},"38":{"n":4},"1":{"n":5}}},"c":22},{"i":2851,"n":"Jo\u00e3o Virg\u00ednia","f":"","p":"G","r":1,"s":{"n":0},"c":22},{"i":3685,"n":"Tarashaj","f":"Shani","p":"A","r":3,"s":{"n":0},"c":22},{"i":4293,"n":"Kean","f":"Moise","p":"A","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":22},{"i":5998,"n":"Gbamin","f":"Jean-Philippe","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":22},{"i":717,"n":"Defour","f":"Steven","p":"M","r":1,"s":{"n":0,"Os":"24","On":"6","Oa":"4.08","Od":"0.61","Mp":"6"},"c":23},{"i":718,"n":"Rodriguez","f":"Jay","p":"A","r":18,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":23},{"i":722,"n":"Crouch","f":"Peter","p":"A","r":7,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"0.2","Ap":"5","p":{"38":{"n":4.5,"s":1}}},"c":23},{"i":742,"n":"Cork","f":"Jack","p":"M","r":18,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"187","On":"37","Oa":"5.07","Od":"0.79","Mp":"37","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":6},"35":{"n":5.5},"36":{"n":5},"37":{"n":4.5},"38":{"n":4},"1":{"n":6}}},"c":23},{"i":763,"n":"Gibson","f":"Ben","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"5","On":"1","Oa":"5","Dp":"1"},"c":23},{"i":764,"n":"Lowton","f":"Matthew","p":"D","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"93","On":"21","Oa":"4.45","Od":"0.92","Dp":"21","p":{"33":{"n":5.5},"34":{"n":6},"35":{"n":4.5},"36":{"n":4.5},"37":{"n":4},"38":{"n":4.5},"1":{"n":6}}},"c":23},{"i":765,"n":"Barnes","f":"Ashley","p":"A","r":23,"s":{"g":"2","s":"8","n":"1","a":"8","Sg":"2","Ss":"8","Sn":"1","Sa":"8","Og":"14","Oao":"1","Os":"188","On":"37","Oa":"5.08","Od":"1.19","Ap":"37","p":{"32":{"n":5},"33":{"n":6,"g":1,"a":1},"34":{"n":5},"35":{"n":7,"g":1},"36":{"n":4},"37":{"n":3},"38":{"n":6,"g":1},"1":{"n":8,"g":2}}},"c":23},{"i":767,"n":"Mee","f":"Ben","p":"D","r":11,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Oao":"2","Os":"183","On":"38","Oa":"4.83","Od":"1.1","Dp":"38","p":{"32":{"n":6},"33":{"n":5},"34":{"n":6},"35":{"n":6},"36":{"n":6},"37":{"n":4,"a":1},"38":{"n":3.5},"1":{"n":6}}},"c":23},{"i":769,"n":"Ward","f":"Stephen","p":"D","r":1,"s":{"n":0,"Os":"7","On":"2","Oa":"3.5","Dp":"2"},"c":23},{"i":803,"n":"Vokes","f":"Sam","p":"A","r":10,"s":{"n":0,"Og":"3","Os":"84","On":"19","Oa":"4.45","Od":"0.96","Ap":"19"},"c":23},{"i":811,"n":"Pieters","f":"Erik","p":"D","r":13,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"85","On":"16","Oa":"5.31","Od":"1.17","Mp":"1","Dp":"15","p":{"32":{"n":4.5,"e":3043,"c":42},"33":{"n":3,"e":3055,"c":42},"34":{"n":6,"e":3062,"c":42},"35":{"n":6.5,"e":3076,"c":42},"36":{"n":5.5,"e":3082,"c":42},"37":{"n":3.5,"e":3096,"c":42},"38":{"n":6,"e":3102,"c":42},"1":{"n":7}}},"c":23},{"i":813,"n":"Walters","f":"Jonathan","p":"A","r":1,"s":{"n":0},"c":23},{"i":816,"n":"Drinkwater","f":"Daniel","p":"M","r":9,"s":{"n":0},"c":23},{"i":846,"n":"Johann Gudmundsson","f":"","p":"M","r":9,"s":{"g":"1","s":"7","n":"1","a":"7.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"4","Os":"154","On":"29","Oa":"5.31","Od":"1.01","Mp":"29","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"36":{"n":5,"s":1},"37":{"n":5},"38":{"n":6,"s":1},"1":{"n":7.5,"g":1}}},"c":23},{"i":897,"n":"Brady","f":"Robbie","p":"M","r":5,"s":{"n":0,"Os":"75","On":"16","Oa":"4.72","Od":"0.5","Mp":"16","p":{"37":{"n":5},"38":{"n":4.5,"s":1}}},"c":23},{"i":899,"n":"Lennon","f":"Aaron","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"77","On":"16","Oa":"4.81","Od":"1.07","Mp":"16","p":{"1":{"n":5,"s":1}}},"c":23},{"i":932,"n":"Bardsley","f":"Phil","p":"D","r":7,"s":{"n":0,"Oao":"1","Os":"88","On":"19","Oa":"4.66","Od":"0.83","Dp":"19","p":{"32":{"n":5.5}}},"c":23},{"i":951,"n":"Tarkowski","f":"James","p":"D","r":18,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"171","On":"35","Oa":"4.9","Od":"1.31","Dp":"35","p":{"32":{"n":6.5},"33":{"n":5},"34":{"n":6},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":5},"38":{"n":4},"1":{"n":6}}},"c":23},{"i":997,"n":"Hendrick","f":"Jeff","p":"M","r":10,"s":{"n":0,"Og":"2","Os":"147","On":"31","Oa":"4.76","Od":"0.83","Mp":"25","Ap":"6","p":{"32":{"n":5},"33":{"n":5},"34":{"n":5.5},"35":{"n":6,"g":1},"36":{"n":4.5},"37":{"n":4.5,"s":1},"38":{"n":4.5}}},"c":23},{"i":1045,"n":"Pope","f":"Nick","p":"G","r":10,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"6","On":"1","Oa":"6.5","Gp":"1","p":{"1":{"n":6.5}}},"c":23},{"i":1054,"n":"Westwood","f":"Ashley","p":"M","r":19,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"186","On":"34","Oa":"5.49","Od":"1.02","Mp":"34","p":{"32":{"n":6},"33":{"n":8,"g":1},"34":{"n":6},"35":{"n":5.5},"36":{"n":5},"37":{"n":5},"38":{"n":4.5},"1":{"n":5.5}}},"c":23},{"i":1074,"n":"Long","f":"Kevin","p":"D","r":2,"s":{"n":0,"Os":"28","On":"6","Oa":"4.75","Od":"0.85","Dp":"6"},"c":23},{"i":1297,"n":"Taylor","f":"Charlie","p":"D","r":12,"s":{"n":0,"Os":"177","On":"37","Oa":"4.8","Od":"0.87","Dp":"37","p":{"32":{"n":6},"33":{"n":5},"34":{"n":6},"35":{"n":5},"36":{"n":4.5},"37":{"n":4.5},"38":{"n":4}}},"c":23},{"i":1299,"n":"Wood","f":"Chris","p":"A","r":18,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"10","Os":"181","On":"38","Oa":"4.76","Od":"1.27","Ap":"38","p":{"32":{"n":5.5},"33":{"n":7.5,"g":1},"34":{"n":8,"g":2},"35":{"n":5},"36":{"n":3},"37":{"n":4},"38":{"n":4},"1":{"n":4.5}}},"c":23},{"i":1320,"n":"Hart","f":"Joe","p":"G","r":6,"s":{"n":0,"Os":"96","On":"18","Oa":"5.36","Od":"1.16","Gp":"18"},"c":23},{"i":1345,"n":"Legzdins","f":"Adam","p":"G","r":1,"s":{"n":0},"c":23},{"i":1348,"n":"Agyei","f":"Daniel","p":"A","r":1,"s":{"n":0},"c":23},{"i":1478,"n":"Wells","f":"Nahki","p":"A","r":6,"s":{"n":0},"c":23},{"i":2061,"n":"Lindegaard","f":"Anders","p":"G","r":1,"s":{"n":0},"c":23},{"i":2200,"n":"O'Neill","f":"Aiden","p":"M","r":7,"s":{"n":0},"c":23},{"i":2497,"n":"Vydra","f":"Matej","p":"A","r":5,"s":{"n":0,"Og":"1","Os":"58","On":"13","Oa":"4.46","Od":"0.66","Ap":"13","p":{"36":{"n":4.5,"s":1},"37":{"n":4,"s":1}}},"c":23},{"i":2817,"n":"McNeil","f":"Dwight","p":"A","r":16,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"3","Os":"122","On":"22","Oa":"5.57","Od":"1.07","Mp":"20","Ap":"2","p":{"32":{"n":7,"g":1},"33":{"n":5.5},"34":{"n":7},"35":{"n":5.5},"36":{"n":5},"37":{"n":4,"s":1},"38":{"n":5.5},"1":{"n":7}}},"c":23},{"i":2972,"n":"Ali Koiki","f":"","p":"D","r":1,"s":{"n":0},"c":23},{"i":2984,"n":"Massanka","f":"Ntumba","p":"M","r":2,"s":{"n":0},"c":23},{"i":3351,"n":"Benson","f":"Josh","p":"M","r":1,"s":{"n":0},"c":23},{"i":3673,"n":"Driscoll-Glennon","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":23},{"i":5995,"n":"Peacock-Farrell","f":"Bailey","p":"G","r":8,"s":{"n":0},"c":23},{"i":6120,"n":"Jimmy Dunne","f":"","p":"D","r":2,"s":{"n":0},"c":23},{"i":8,"n":"Lucas Moura","f":"","p":"M","r":18,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"10","Os":"163","On":"32","Oa":"5.11","Od":"1.14","Mp":"15","Ap":"17","p":{"32":{"n":6,"g":1},"33":{"n":5},"34":{"n":8.5,"g":3},"35":{"n":4},"36":{"n":4},"37":{"n":5},"38":{"n":5},"1":{"n":6}}},"c":24},{"i":21,"n":"Aurier","f":"Serge","p":"D","r":5,"s":{"n":0,"Os":"32","On":"7","Oa":"4.57","Od":"0.68","Mp":"2","Dp":"5"},"c":24},{"i":295,"n":"Lo Celso","f":"Giovani","p":"M","r":15,"s":{"n":0,"Og":"9","Os":"174","On":"33","Oa":"5.27","Od":"1.29","Mp":"22","Ap":"11","p":{"31":{"n":8,"e":2273,"c":60,"g":2},"32":{"n":6,"e":2288,"c":60,"g":1},"33":{"n":5,"e":2294,"c":60,"g":1},"35":{"n":7,"e":2314,"c":60},"36":{"n":4,"e":2330,"c":60},"37":{"n":4.5,"e":2335,"c":60},"38":{"n":6.5,"e":2350,"c":60}}},"c":24},{"i":589,"n":"Kane","f":"Harry","p":"A","r":40,"s":{"g":"2","s":"8","n":"1","a":"8","Sg":"2","Ss":"8","Sn":"1","Sa":"8","Og":"19","Os":"163","On":"28","Oa":"5.84","Od":"1.27","Ap":"28","p":{"32":{"n":4},"1":{"n":8,"g":2}}},"c":24},{"i":596,"n":"Dele Alli","f":"","p":"M","r":18,"s":{"n":0,"Og":"4","Os":"124","On":"24","Oa":"5.19","Od":"1","Mp":"22","Ap":"2","p":{"32":{"n":4.5},"33":{"n":5},"35":{"n":5},"36":{"n":4.5},"37":{"n":5},"38":{"n":3.5}}},"c":24},{"i":611,"n":"Eriksen","f":"Christian","p":"M","r":24,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"8","Os":"197","On":"35","Oa":"5.63","Od":"1.14","Mp":"32","Ap":"3","p":{"32":{"n":5.5},"33":{"n":6.5,"g":1},"34":{"n":6},"35":{"n":5},"36":{"n":4.5},"37":{"n":5},"38":{"n":7,"g":1},"1":{"n":6,"s":1}}},"c":24},{"i":613,"n":"Lloris","f":"Hugo","p":"G","r":25,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"192","On":"33","Oa":"5.83","Od":"1.07","Gp":"33","p":{"32":{"n":4},"33":{"n":6},"34":{"n":5.5},"36":{"n":6.5},"37":{"n":6},"38":{"n":6.5},"1":{"n":5.5}}},"c":24},{"i":627,"n":"Llorente","f":"Fernando","p":"A","r":10,"s":{"n":0,"Og":"1","Oao":"1","Os":"92","On":"20","Oa":"4.6","Od":"0.64","Ap":"20","p":{"32":{"n":4.5,"s":1},"33":{"n":5},"34":{"n":6},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"38":{"n":5}}},"c":24},{"i":635,"n":"Wanyama","f":"Victor","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"67","On":"13","Oa":"5.15","Od":"0.79","Mp":"13","p":{"33":{"n":5.5},"34":{"n":7.5,"g":1},"35":{"n":5,"s":1},"36":{"n":5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1}}},"c":24},{"i":652,"n":"Alderweireld","f":"Toby","p":"D","r":20,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Oao":"1","Os":"190","On":"35","Oa":"5.43","Od":"0.77","Dp":"35","p":{"32":{"n":4,"a":1},"33":{"n":7},"35":{"n":5.5},"36":{"n":5},"37":{"n":5},"38":{"n":4},"1":{"n":6}}},"c":24},{"i":658,"n":"Vertonghen","f":"Jan","p":"D","r":20,"s":{"n":0,"Os":"111","On":"21","Oa":"5.29","Od":"1.02","Dp":"21","p":{"32":{"n":4},"33":{"n":6.5},"34":{"n":5.5},"35":{"n":5}}},"c":24},{"i":687,"n":"Sissoko","f":"Moussa","p":"M","r":15,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"157","On":"29","Oa":"5.43","Od":"0.82","Mp":"29","p":{"32":{"n":4.5},"34":{"n":6.5},"37":{"n":5.5},"38":{"n":5},"1":{"n":5.5}}},"c":24},{"i":714,"n":"Rose","f":"Danny","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"131","On":"27","Oa":"4.87","Od":"0.6","Mp":"8","Dp":"19","p":{"32":{"n":4},"33":{"n":5},"34":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":4.5},"37":{"n":5},"1":{"n":4.5}}},"c":24},{"i":724,"n":"Dier","f":"Eric","p":"M","r":7,"s":{"n":0,"Og":"3","Os":"98","On":"19","Oa":"5.18","Od":"0.61","Mp":"18","Dp":"1","p":{"35":{"n":4.5},"36":{"n":4.5},"37":{"n":5},"38":{"n":5.5,"g":1}}},"c":24},{"i":783,"n":"Demb\u00e9l\u00e9","f":"Mousa","p":"M","r":3,"s":{"n":0,"Os":"44","On":"9","Oa":"4.94","Od":"0.8","Mp":"9"},"c":24},{"i":786,"n":"Lamela","f":"Erik","p":"M","r":5,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"106","On":"20","Oa":"5.3","Od":"0.84","Mp":"19","Ap":"1","p":{"38":{"n":4.5},"1":{"n":6}}},"c":24},{"i":799,"n":"Vorm","f":"Michel","p":"G","r":1,"s":{"n":0,"Os":"11","On":"2","Oa":"5.75","Od":"1.25","Gp":"2"},"c":24},{"i":824,"n":"Son Heung-Min","f":"","p":"A","r":38,"s":{"n":0,"Og":"12","Os":"165","On":"30","Oa":"5.52","Od":"1.38","Mp":"9","Ap":"21","p":{"32":{"n":4.5,"s":1},"33":{"n":5},"34":{"n":6,"s":1},"35":{"n":5},"36":{"n":4.5},"37":{"n":3.5}}},"c":24},{"i":831,"n":"Winks","f":"Harry","p":"M","r":7,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"146","On":"27","Oa":"5.43","Od":"0.85","Mp":"27","p":{"1":{"n":5.5}}},"c":24},{"i":847,"n":"Janssen","f":"Vincent","p":"A","r":1,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.24","Ap":"3","p":{"33":{"n":4.5,"s":1},"36":{"n":5,"s":1},"38":{"n":4.5,"s":1}}},"c":24},{"i":896,"n":"Davies","f":"Ben","p":"D","r":9,"s":{"n":0,"Os":"128","On":"26","Oa":"4.94","Od":"0.82","Mp":"3","Dp":"23","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":6},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":5,"s":1},"38":{"n":4.5}}},"c":24},{"i":918,"n":"Nkoudou","f":"Georges-K\u00e9vin","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"21","On":"4","Oa":"5.25","Od":"0.43","Mp":"4","p":{"1":{"n":5,"s":1}}},"c":24},{"i":969,"n":"Onomah","f":"Josh","p":"M","r":3,"s":{"n":0},"c":24},{"i":999,"n":"Carter-Vickers","f":"Cameron","p":"D","r":5,"s":{"n":0},"c":24},{"i":1072,"n":"Whiteman","f":"Alfie","p":"G","r":1,"s":{"n":0},"c":24},{"i":1118,"n":"Walker-Peters","f":"Kyle","p":"D","r":5,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"38","On":"7","Oa":"5.43","Od":"0.82","Mp":"1","Dp":"6","p":{"34":{"n":6.5},"38":{"n":4.5},"1":{"n":6}}},"c":24},{"i":1314,"n":"S\u00e1nchez","f":"Davinson","p":"D","r":12,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"117","On":"23","Oa":"5.11","Od":"1.01","Dp":"23","p":{"32":{"n":5.5},"34":{"n":6},"35":{"n":5},"36":{"n":4.5},"37":{"n":5.5},"1":{"n":6}}},"c":24},{"i":1391,"n":"Gazzaniga","f":"Paulo","p":"G","r":6,"s":{"n":0,"Os":"18","On":"3","Oa":"6.17","Od":"0.62","Gp":"3","p":{"35":{"n":5.5}}},"c":24},{"i":1414,"n":"Ndombele","f":"Tanguy","p":"M","r":22,"s":{"g":"1","s":"5","n":"1","a":"5.5","Sg":"1","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"180","On":"34","Oa":"5.29","Od":"0.97","Mp":"34","p":{"32":{"n":6,"e":3048,"c":18},"33":{"n":6,"e":3054,"c":18},"34":{"n":5.5,"e":3064,"c":18},"35":{"n":5,"e":3074,"c":18},"36":{"n":7.5,"e":3087,"c":18},"37":{"n":6.5,"e":3095,"c":18},"38":{"n":7,"e":3109,"c":18,"g":1},"1":{"n":5.5,"g":1}}},"c":24},{"i":2028,"n":"Foyth","f":"Juan","p":"D","r":5,"s":{"n":0,"Og":"1","Os":"60","On":"12","Oa":"5.04","Od":"1.2","Dp":"12","p":{"33":{"n":5,"s":1},"34":{"n":7},"35":{"n":4.5},"36":{"n":5},"37":{"n":3.5,"s":1}}},"c":24},{"i":2063,"n":"Georgiou","f":"Anthony","p":"M","r":5,"s":{"n":0},"c":24},{"i":2205,"n":"Amos","f":"Luke","p":"M","r":1,"s":{"n":0},"c":24},{"i":2228,"n":"Sterling","f":"Kazaiah","p":"A","r":1,"s":{"n":0},"c":24},{"i":2558,"n":"Ryan Sessegnon","f":"","p":"M","r":8,"s":{"n":0,"Og":"2","Os":"154","On":"34","Oa":"4.53","Od":"1.04","Mp":"23","Dp":"4","Ap":"7","p":{"32":{"n":3.5,"e":3483,"c":71},"33":{"n":5.5,"e":3496,"c":71},"34":{"n":4.5,"e":3501,"c":71},"35":{"n":6,"e":3508,"c":71},"36":{"n":4,"e":3521,"c":71},"37":{"n":4.5,"e":3537,"c":71},"38":{"n":3,"e":3541,"c":71}}},"c":24},{"i":2929,"n":"Skipp","f":"Oliver","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"40","On":"8","Oa":"5.06","Od":"0.3","Mp":"8","p":{"34":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":24},{"i":2930,"n":"Eyoma","f":"Timothy","p":"D","r":1,"s":{"n":0},"c":24},{"i":2932,"n":"Marsh","f":"George","p":"M","r":1,"s":{"n":0},"c":24},{"i":5413,"n":"White","f":"Harvey","p":"M","r":1,"s":{"n":0},"c":24},{"i":5414,"n":"Parrott","f":"Troy","p":"A","r":1,"s":{"n":0},"c":24},{"i":5424,"n":"Jonathan De Bie","f":"","p":"G","r":1,"s":{"n":0},"c":24},{"i":5427,"n":"Lyons-Foster","f":"Brooklyn","p":"D","r":1,"s":{"n":0},"c":24},{"i":5432,"n":"Bowden","f":"Jamie","p":"M","r":1,"s":{"n":0},"c":24},{"i":5439,"n":"Roles","f":"Jack","p":"M","r":1,"s":{"n":0},"c":24},{"i":5441,"n":"Tanganga","f":"Japhet","p":"D","r":1,"s":{"n":0},"c":24},{"i":5996,"n":"Austin","f":"Brandon","p":"G","r":1,"s":{"n":0},"c":24},{"i":95,"n":"Bakayoko","f":"Tiemou\u00e9","p":"M","r":10,"s":{"n":0},"c":25},{"i":419,"n":"Jorginho","f":"","p":"M","r":18,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"200","On":"37","Oa":"5.41","Od":"1.01","Mp":"37","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":4},"35":{"n":5},"36":{"n":6},"37":{"n":7},"38":{"n":6},"1":{"n":3.5}}},"c":25},{"i":601,"n":"Giroud","f":"Olivier","p":"A","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"132","On":"28","Oa":"4.71","Od":"0.72","Ap":"28","p":{"32":{"n":4.5,"s":1},"33":{"n":5,"s":1},"35":{"n":4,"s":1},"37":{"n":4,"s":1},"38":{"n":4.5,"s":1},"1":{"n":4.5,"s":1}}},"c":25},{"i":602,"n":"Kant\u00e9","f":"N'Golo","p":"M","r":21,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"190","On":"36","Oa":"5.28","Od":"0.93","Mp":"36","p":{"33":{"n":5},"34":{"n":5.5},"35":{"n":6,"g":1},"36":{"n":5},"37":{"n":5},"1":{"n":4.5,"s":1}}},"c":25},{"i":607,"n":"Pedro","f":"","p":"A","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"7","Os":"162","On":"31","Oa":"5.24","Od":"1.11","Mp":"1","Ap":"30","p":{"32":{"n":4},"33":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":5.5,"s":1},"37":{"n":7},"38":{"n":5.5},"1":{"n":5}}},"c":25},{"i":619,"n":"Willian","f":"","p":"A","r":20,"s":{"n":0,"Og":"3","Os":"164","On":"31","Oa":"5.31","Od":"1.02","Ap":"31","p":{"32":{"n":6.5},"34":{"n":5},"36":{"n":5},"38":{"n":5}}},"c":25},{"i":625,"n":"Barkley","f":"Ross","p":"M","r":7,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"3","Os":"142","On":"27","Oa":"5.28","Od":"0.95","Mp":"27","p":{"32":{"n":5},"33":{"n":5.5,"s":1},"34":{"n":5,"s":1},"38":{"n":5.5},"1":{"n":4.5}}},"c":25},{"i":650,"n":"Azpilicueta","f":"C\u00e9sar","p":"D","r":23,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"195","On":"38","Oa":"5.13","Od":"1","Dp":"38","p":{"32":{"n":6.5,"g":1},"33":{"n":5},"34":{"n":4},"35":{"n":5},"36":{"n":5},"37":{"n":7},"38":{"n":5},"1":{"n":3}}},"c":25},{"i":656,"n":"Moses","f":"Victor","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":25},{"i":659,"n":"Alonso","f":"Marcos","p":"D","r":16,"s":{"n":0,"Og":"2","Os":"160","On":"30","Oa":"5.33","Od":"1.07","Dp":"30","p":{"32":{"n":4.5},"36":{"n":6,"g":1},"37":{"n":6},"38":{"n":5.5}}},"c":25},{"i":848,"n":"Caballero","f":"Willy","p":"G","r":7,"s":{"n":0,"Os":"12","On":"2","Oa":"6","Gp":"2","p":{"38":{"n":6}}},"c":25},{"i":850,"n":"Batshuayi","f":"Michy","p":"A","r":14,"s":{"n":0,"Og":"6","Os":"126","On":"26","Oa":"4.85","Od":"1.04","Ap":"26","p":{"32":{"n":4.5,"e":3482,"c":26},"33":{"n":4,"e":3493,"c":26},"37":{"n":6,"e":3530,"c":26,"g":1},"38":{"n":7.5,"e":3540,"c":26,"g":2}}},"c":25},{"i":959,"n":"Loftus-Cheek","f":"Ruben","p":"M","r":7,"s":{"n":0,"Og":"6","Os":"125","On":"23","Oa":"5.43","Od":"1.01","Mp":"23","p":{"32":{"n":6,"g":1,"s":1},"33":{"n":5.5},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":5,"s":1},"37":{"n":7,"g":1,"s":1},"38":{"n":6.5}}},"c":25},{"i":992,"n":"Zouma","f":"Kurt","p":"D","r":24,"s":{"s":"2","n":"1","a":"2","Ss":"2","Sn":"1","Sa":"2","Og":"2","Os":"164","On":"33","Oa":"4.97","Od":"1.27","Dp":"33","p":{"32":{"n":7.5,"e":3487,"c":22,"g":1},"33":{"n":6,"e":3490,"c":22},"34":{"n":4,"e":3501,"c":22},"35":{"n":6,"e":3512,"c":22},"36":{"n":5,"e":3520,"c":22},"37":{"n":6,"e":3532,"c":22},"38":{"n":4,"e":3546,"c":22},"1":{"n":2}}},"c":25},{"i":1043,"n":"Kenedy","f":"","p":"M","r":3,"s":{"n":0,"Og":"1","Os":"116","On":"24","Oa":"4.85","Od":"0.73","Mp":"23","Dp":"1","p":{"32":{"n":5,"e":3478,"c":46,"s":1},"36":{"n":5,"e":3518,"c":46,"s":1},"38":{"n":5,"e":3541,"c":46,"s":1}}},"c":25},{"i":1288,"n":"R\u00fcdiger","f":"Antonio","p":"D","r":12,"s":{"n":0,"Og":"1","Os":"163","On":"32","Oa":"5.09","Od":"1","Dp":"32","p":{"32":{"n":5},"33":{"n":6},"34":{"n":5},"36":{"n":5.5}}},"c":25},{"i":1309,"n":"Isaiah Brown","f":"","p":"A","r":6,"s":{"n":0},"c":25},{"i":1350,"n":"Abraham","f":"Tammy","p":"A","r":5,"s":{"s":"2","n":"1","a":"2.5","Ss":"2","Sn":"1","Sa":"2.5","Os":"2","On":"1","Oa":"2.5","Ap":"1","p":{"1":{"n":2.5}}},"c":25},{"i":1360,"n":"Charly Musonda","f":"","p":"M","r":1,"s":{"n":0},"c":25},{"i":1370,"n":"Christensen","f":"Andreas","p":"D","r":8,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"45","On":"9","Oa":"5.06","Od":"0.96","Dp":"9","p":{"34":{"n":4,"s":1},"35":{"n":4.5},"36":{"n":5,"s":1},"37":{"n":6.5},"1":{"n":4}}},"c":25},{"i":1386,"n":"Tomori","f":"Fikayo","p":"D","r":8,"s":{"n":0},"c":25},{"i":1482,"n":"Palmer","f":"Kasey","p":"M","r":1,"s":{"n":0},"c":25},{"i":1652,"n":"Arrizabalaga","f":"Kepa","p":"G","r":22,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"191","On":"36","Oa":"5.32","Od":"0.79","Gp":"36","p":{"32":{"n":5},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":6},"1":{"n":3.5}}},"c":25},{"i":1657,"n":"Kovacic","f":"Mateo","p":"M","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"169","On":"33","Oa":"5.12","Od":"0.72","Mp":"33","p":{"32":{"n":4},"35":{"n":5.5,"s":1},"36":{"n":5.5},"37":{"n":6},"38":{"n":5.5,"s":1},"1":{"n":4.5}}},"c":25},{"i":2022,"n":"Zappacosta","f":"Davide","p":"D","r":5,"s":{"n":0,"Os":"20","On":"4","Oa":"5.13","Od":"0.54","Dp":"4","p":{"38":{"n":6}}},"c":25},{"i":2029,"n":"Green","f":"Robert","p":"G","r":1,"s":{"n":0},"c":25},{"i":2068,"n":"Baba","f":"Abdul Rahman","p":"D","r":6,"s":{"n":0,"Og":"1","Os":"55","On":"11","Oa":"5","Od":"1.24","Dp":"11","p":{"32":{"n":6,"e":3046,"c":68},"33":{"n":3.5,"e":3059,"c":68},"34":{"n":5,"e":3063,"c":68},"35":{"n":3,"e":3079,"c":68},"38":{"n":7.5,"e":3110,"c":68,"g":1}}},"c":25},{"i":2072,"n":"Ampadu","f":"Ethan","p":"D","r":1,"s":{"n":0},"c":25},{"i":2075,"n":"Sterling","f":"Dujon","p":"M","r":1,"s":{"n":0},"c":25},{"i":2220,"n":"Hudson-Odoi","f":"Callum","p":"A","r":7,"s":{"n":0,"Os":"49","On":"10","Oa":"4.95","Od":"0.88","Ap":"10","p":{"33":{"n":6},"34":{"n":4},"35":{"n":5}}},"c":25},{"i":2303,"n":"Emerson","f":"","p":"D","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"52","On":"11","Oa":"4.77","Od":"0.62","Dp":"11","p":{"33":{"n":6},"34":{"n":4.5},"35":{"n":4.5},"1":{"n":4.5}}},"c":25},{"i":2494,"n":"Hector","f":"Michael","p":"D","r":1,"s":{"n":0},"c":25},{"i":2570,"n":"Collins","f":"Bradley","p":"G","r":1,"s":{"n":0},"c":25},{"i":2594,"n":"Lucas Piazon","f":"","p":"M","r":1,"s":{"n":0},"c":25},{"i":2795,"n":"Miazga","f":"Matt","p":"D","r":5,"s":{"n":0,"Os":"36","On":"8","Oa":"4.5","Od":"1","Dp":"8"},"c":25},{"i":2977,"n":"McEachran","f":"George","p":"M","r":1,"s":{"n":0},"c":25},{"i":2980,"n":"Cumming","f":"Jamie","p":"G","r":1,"s":{"n":0},"c":25},{"i":3640,"n":"Maatsen","f":"Ian","p":"D","r":1,"s":{"n":0},"c":25},{"i":3644,"n":"Gilmour","f":"Billy","p":"M","r":1,"s":{"n":0},"c":25},{"i":3650,"n":"Gallagher","f":"Conor","p":"M","r":1,"s":{"n":0},"c":25},{"i":3655,"n":"James","f":"Reece","p":"D","r":1,"s":{"n":0},"c":25},{"i":3664,"n":"Marc Guehi","f":"","p":"D","r":1,"s":{"n":0},"c":25},{"i":3679,"n":"Mount","f":"Mason","p":"M","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"1":{"n":4.5}}},"c":25},{"i":3681,"n":"Ugbo","f":"Ike","p":"A","r":1,"s":{"n":0},"c":25},{"i":3682,"n":"Chalobah","f":"Trevoh","p":"D","r":3,"s":{"n":0},"c":25},{"i":3687,"n":"Pulisic","f":"Christian","p":"M","r":35,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":25},{"i":3697,"n":"Baker","f":"Lewis","p":"M","r":2,"s":{"n":0},"c":25},{"i":5991,"n":"Ziger","f":"Karlo","p":"G","r":1,"s":{"n":0},"c":25},{"i":6127,"n":"van Ginkel","f":"Marco","p":"M","r":7,"s":{"n":0},"c":25},{"i":615,"n":"Benteke","f":"Christian","p":"A","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"72","On":"16","Oa":"4.5","Od":"0.83","Ap":"16","p":{"32":{"n":5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4},"35":{"n":7,"g":1},"36":{"n":4.5},"1":{"n":5}}},"c":26},{"i":633,"n":"Cahill","f":"Gary","p":"D","r":7,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Dp":"2","p":{"37":{"n":5,"e":3531,"c":25,"s":1}}},"c":26},{"i":663,"n":"van Aanholt","f":"Patrick","p":"D","r":16,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"3","Os":"185","On":"36","Oa":"5.14","Od":"0.9","Dp":"36","p":{"32":{"n":7.5,"g":1},"33":{"n":6},"34":{"n":4},"36":{"n":6},"38":{"n":6,"g":1},"1":{"n":5.5}}},"c":26},{"i":683,"n":"Hennessey","f":"Wayne","p":"G","r":7,"s":{"n":0,"Os":"88","On":"17","Oa":"5.18","Od":"1.1","Gp":"17"},"c":26},{"i":695,"n":"Zaha","f":"Wilfried","p":"A","r":22,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"9","Os":"180","On":"34","Oa":"5.31","Od":"1.15","Mp":"4","Ap":"30","p":{"32":{"n":6},"33":{"n":6},"34":{"n":3.5},"35":{"n":6.5,"g":1},"36":{"n":4},"37":{"n":6.5,"g":1},"38":{"n":7},"1":{"n":4.5,"s":1}}},"c":26},{"i":704,"n":"Ayew","f":"Jordan","p":"A","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"95","On":"21","Oa":"4.55","Od":"0.84","Ap":"21","p":{"35":{"n":5,"s":1},"37":{"n":4},"1":{"n":5}}},"c":26},{"i":740,"n":"Dann","f":"Scott","p":"D","r":13,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"56","On":"11","Oa":"5.14","Od":"0.61","Dp":"11","p":{"32":{"n":5.5},"33":{"n":5,"s":1},"34":{"n":4.5},"35":{"n":6},"36":{"n":6},"37":{"n":4.5},"1":{"n":5.5}}},"c":26},{"i":761,"n":"McCarthy","f":"James","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1","p":{"35":{"n":5,"e":3512,"c":22,"s":1}}},"c":26},{"i":777,"n":"Townsend","f":"Andros","p":"M","r":20,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"6","Os":"205","On":"38","Oa":"5.39","Od":"0.87","Mp":"17","Ap":"21","p":{"32":{"n":5.5},"33":{"n":5.5},"34":{"n":5.5},"35":{"n":4.5,"s":1},"36":{"n":5.5,"s":1},"37":{"n":8,"g":1},"38":{"n":7,"g":1},"1":{"n":5.5}}},"c":26},{"i":808,"n":"Wickham","f":"Connor","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"31","On":"7","Oa":"4.43","Od":"0.42","Ap":"7","p":{"38":{"n":4.5,"s":1},"1":{"n":4,"s":1}}},"c":26},{"i":828,"n":"McArthur","f":"James","p":"M","r":18,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"196","On":"38","Oa":"5.16","Od":"0.91","Mp":"38","p":{"32":{"n":5.5,"s":1},"33":{"n":5},"34":{"n":5},"35":{"n":7,"g":1},"36":{"n":5},"37":{"n":7},"38":{"n":6},"1":{"n":6}}},"c":26},{"i":843,"n":"Kelly","f":"Martin","p":"D","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Oao":"1","Os":"69","On":"14","Oa":"4.96","Od":"0.83","Dp":"14","p":{"33":{"n":6},"34":{"n":4},"35":{"n":5},"36":{"n":5.5},"37":{"n":4.5,"a":1},"38":{"n":5},"1":{"n":6}}},"c":26},{"i":855,"n":"Kouyat\u00e9","f":"Cheikhou","p":"M","r":9,"s":{"n":0,"Os":"147","On":"30","Oa":"4.92","Od":"0.68","Mp":"30","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"34":{"n":5.5,"s":1},"35":{"n":5},"36":{"n":5.5},"37":{"n":4.5,"s":1}}},"c":26},{"i":888,"n":"Ward","f":"Joel","p":"D","r":7,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"38","On":"8","Oa":"4.75","Od":"0.56","Dp":"8","p":{"35":{"n":4.5},"37":{"n":4.5},"38":{"n":5},"1":{"n":5.5}}},"c":26},{"i":895,"n":"Milivojevic","f":"Luka","p":"M","r":27,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"12","Os":"207","On":"38","Oa":"5.46","Od":"1.03","Mp":"38","p":{"32":{"n":6,"g":1},"33":{"n":6.5,"g":1},"34":{"n":6,"g":1},"35":{"n":6},"36":{"n":5.5},"37":{"n":5.5},"38":{"n":6},"1":{"n":4}}},"c":26},{"i":927,"n":"Sakho","f":"Mamadou","p":"D","r":10,"s":{"n":0,"Os":"133","On":"26","Oa":"5.12","Od":"0.88","Dp":"26"},"c":26},{"i":942,"n":"Tomkins","f":"James","p":"D","r":8,"s":{"n":0,"Og":"1","Os":"140","On":"28","Oa":"5.02","Od":"0.66","Dp":"28","p":{"32":{"n":5.5},"33":{"n":5}}},"c":26},{"i":987,"n":"Schlupp","f":"Jeffrey","p":"D","r":10,"s":{"n":0,"Og":"3","Os":"146","On":"29","Oa":"5.03","Od":"0.82","Mp":"16","Dp":"12","Ap":"1","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":4.5}}},"c":26},{"i":1004,"n":"Sako","f":"Bakary","p":"M","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"3","p":{"34":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":5,"s":1}}},"c":26},{"i":1061,"n":"Kaikai","f":"Sullay","p":"M","r":1,"s":{"n":0},"c":26},{"i":1073,"n":"Speroni","f":"Julian","p":"G","r":1,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Gp":"1"},"c":26},{"i":1111,"n":"Dreher","f":"Luke","p":"M","r":1,"s":{"n":0},"c":26},{"i":1304,"n":"Riedewald","f":"Jairo","p":"M","r":1,"s":{"n":0},"c":26},{"i":1342,"n":"Williams","f":"Jonathan","p":"M","r":1,"s":{"n":0},"c":26},{"i":1678,"n":"Guaita","f":"Vicente","p":"G","r":18,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"118","On":"21","Oa":"5.64","Od":"0.9","Gp":"21","p":{"32":{"n":7},"33":{"n":7},"34":{"n":4.5},"35":{"n":5.5},"36":{"n":6.5},"37":{"n":6.5},"38":{"n":5},"1":{"n":6}}},"c":26},{"i":1679,"n":"Camarasa","f":"V\u00edctor","p":"M","r":8,"s":{"n":0,"Og":"5","Os":"157","On":"32","Oa":"4.91","Od":"1.06","Mp":"31","Ap":"1","p":{"32":{"n":6,"e":3481,"c":70,"g":1},"33":{"n":4.5,"e":3492,"c":70},"34":{"n":4,"e":3499,"c":70},"35":{"n":3.5,"e":3510,"c":70},"36":{"n":4.5,"e":3521,"c":70},"37":{"n":5,"e":3530,"c":70}}},"c":26},{"i":2122,"n":"Henry","f":"Dion","p":"G","r":1,"s":{"n":0},"c":26},{"i":2304,"n":"S\u00f8rloth","f":"Alexander","p":"A","r":6,"s":{"n":0,"Os":"49","On":"11","Oa":"4.45","Od":"0.33","Ap":"11"},"c":26},{"i":2337,"n":"Kirby","f":"Nya","p":"M","r":1,"s":{"n":0},"c":26},{"i":2585,"n":"Meyer","f":"Max","p":"M","r":8,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"154","On":"30","Oa":"5.13","Od":"0.53","Mp":"30","p":{"32":{"n":4},"34":{"n":5,"s":1},"35":{"n":5.5},"36":{"n":6},"37":{"n":5,"s":1},"38":{"n":5.5},"1":{"n":6}}},"c":26},{"i":2845,"n":"Gio McGregor","f":"","p":"M","r":1,"s":{"n":0},"c":26},{"i":2852,"n":"Woods","f":"Sam","p":"D","r":1,"s":{"n":0},"c":26},{"i":3184,"n":"Tupper","f":"Joe","p":"G","r":1,"s":{"n":0},"c":26},{"i":3354,"n":"Lucas Perri","f":"","p":"G","r":1,"s":{"n":0},"c":26},{"i":3645,"n":"Tavares","f":"Nikola","p":"D","r":1,"s":{"n":0},"c":26},{"i":3736,"n":"Henderson","f":"Stephen","p":"G","r":5,"s":{"n":0},"c":26},{"i":6126,"n":"Inniss","f":"Ryan","p":"D","r":4,"s":{"n":0},"c":26},{"i":174,"n":"Diop","f":"Issa","p":"D","r":21,"s":{"s":"2","n":"1","a":"2","Ss":"2","Sn":"1","Sa":"2","Og":"1","Oao":"1","Os":"178","On":"34","Oa":"5.24","Od":"1.24","Dp":"34","p":{"32":{"n":4},"36":{"n":7.5},"37":{"n":7},"38":{"n":6.5},"1":{"n":2}}},"c":28},{"i":620,"n":"Lanzini","f":"Manuel","p":"M","r":12,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"55","On":"11","Oa":"5.05","Od":"1.14","Mp":"11","p":{"32":{"n":3.5},"33":{"n":5},"34":{"n":5.5},"37":{"n":6.5},"38":{"n":7,"g":1},"1":{"n":3.5}}},"c":28},{"i":622,"n":"Wilshere","f":"Jack","p":"M","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"42","On":"8","Oa":"5.25","Od":"0.56","Mp":"8","p":{"35":{"n":4.5,"s":1},"37":{"n":5,"s":1},"38":{"n":6,"s":1},"1":{"n":4.5}}},"c":28},{"i":632,"n":"Antonio","f":"Michail","p":"M","r":17,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"6","Os":"165","On":"33","Oa":"5.02","Od":"1.16","Mp":"26","Dp":"3","Ap":"4","p":{"32":{"n":4.5,"s":1},"34":{"n":5.5,"s":1},"35":{"n":5,"g":1},"36":{"n":6,"g":1},"37":{"n":6},"38":{"n":7},"1":{"n":3.5}}},"c":28},{"i":634,"n":"Snodgrass","f":"Robert","p":"M","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"163","On":"33","Oa":"4.94","Od":"0.99","Mp":"33","p":{"32":{"n":4.5},"33":{"n":5,"s":1},"34":{"n":5},"35":{"n":5},"36":{"n":5.5},"1":{"n":5,"s":1}}},"c":28},{"i":664,"n":"Arnautovic","f":"Marko","p":"A","r":16,"s":{"n":0,"Og":"10","Os":"144","On":"27","Oa":"5.33","Od":"1.45","Mp":"1","Ap":"26","p":{"32":{"n":4},"33":{"n":4.5},"35":{"n":4.5},"36":{"n":6},"37":{"n":8,"g":2},"38":{"n":7,"g":1}}},"c":28},{"i":684,"n":"Noble","f":"Mark","p":"M","r":19,"s":{"n":0,"Og":"5","Os":"159","On":"30","Oa":"5.32","Od":"1.23","Mp":"30","p":{"33":{"n":4},"34":{"n":7},"35":{"n":6},"36":{"n":6},"37":{"n":7},"38":{"n":8,"g":2}}},"c":28},{"i":700,"n":"Zabaleta","f":"Pablo","p":"D","r":8,"s":{"n":0,"Os":"125","On":"26","Oa":"4.83","Od":"0.84","Dp":"26","p":{"32":{"n":3.5},"34":{"n":5.5},"35":{"n":5},"38":{"n":4,"s":1}}},"c":28},{"i":709,"n":"Reid","f":"Winston","p":"D","r":1,"s":{"n":0},"c":28},{"i":762,"n":"Ogbonna","f":"Angelo","p":"D","r":10,"s":{"n":0,"Og":"1","Os":"116","On":"23","Oa":"5.07","Od":"0.92","Dp":"23","p":{"32":{"n":4.5},"33":{"n":4},"34":{"n":7},"35":{"n":4},"36":{"n":5,"s":1}}},"c":28},{"i":861,"n":"Cresswell","f":"Aaron","p":"D","r":6,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"103","On":"21","Oa":"4.93","Od":"0.74","Dp":"21","p":{"32":{"n":5},"33":{"n":4},"1":{"n":3}}},"c":28},{"i":870,"n":"Fabianski","f":"Lukasz","p":"G","r":25,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"225","On":"38","Oa":"5.93","Od":"0.83","Gp":"38","p":{"32":{"n":7},"33":{"n":6},"34":{"n":5.5},"35":{"n":5},"36":{"n":7.5},"37":{"n":6},"38":{"n":7},"1":{"n":5}}},"c":28},{"i":934,"n":"Masuaku","f":"Arthur","p":"D","r":12,"s":{"n":0,"Os":"110","On":"22","Oa":"5.02","Od":"0.91","Dp":"22","p":{"34":{"n":6.5},"35":{"n":4},"36":{"n":5.5},"37":{"n":6.5},"38":{"n":5.5}}},"c":28},{"i":996,"n":"Fernandes","f":"Edimilson","p":"M","r":8,"s":{"n":0},"c":28},{"i":1087,"n":"Rice","f":"Declan","p":"M","r":20,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"2","Os":"197","On":"34","Oa":"5.79","Od":"0.76","Mp":"34","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":6.5},"35":{"n":5.5},"36":{"n":6.5},"38":{"n":6},"1":{"n":4}}},"c":28},{"i":1132,"n":"Diangana","f":"Grady","p":"M","r":7,"s":{"n":0,"Os":"75","On":"16","Oa":"4.72","Od":"0.59","Mp":"16","p":{"32":{"n":4.5,"s":1},"34":{"n":5.5,"s":1},"37":{"n":5.5}}},"c":28},{"i":1280,"n":"Chicharito","f":"","p":"A","r":9,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"7","Os":"123","On":"25","Oa":"4.94","Od":"1.13","Ap":"25","p":{"32":{"n":4,"s":1},"33":{"n":3.5},"34":{"n":4},"1":{"n":4,"s":1}}},"c":28},{"i":1627,"n":"Fornals","f":"Pablo","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"173","On":"35","Oa":"4.94","Od":"0.92","Mp":"32","Ap":"3","p":{"32":{"n":6.5,"e":2284,"c":64},"33":{"n":5,"e":2301,"c":64},"34":{"n":5,"e":2305,"c":64},"35":{"n":6,"e":2321,"c":64,"g":1},"36":{"n":3.5,"e":2326,"c":64},"37":{"n":5,"e":2339,"c":64},"1":{"n":5,"s":1}}},"c":28},{"i":1727,"n":"Jim\u00e9nez","f":"Roberto","p":"G","r":6,"s":{"n":0},"c":28},{"i":2073,"n":"Holland","f":"Nathan","p":"M","r":1,"s":{"n":0},"c":28},{"i":2211,"n":"Cullen","f":"Josh","p":"M","r":2,"s":{"n":0},"c":28},{"i":2221,"n":"Johnson","f":"Ben","p":"M","r":3,"s":{"n":0},"c":28},{"i":2260,"n":"Oxford","f":"Reece","p":"D","r":1,"s":{"n":0},"c":28},{"i":2293,"n":"Carlos S\u00e1nchez","f":"","p":"M","r":5,"s":{"n":0,"Os":"33","On":"7","Oa":"4.71","Od":"0.36","Mp":"7","p":{"37":{"n":5,"s":1},"38":{"n":4.5,"s":1}}},"c":28},{"i":2307,"n":"Hugill","f":"Jordan","p":"A","r":3,"s":{"n":0},"c":28},{"i":2498,"n":"Fredericks","f":"Ryan","p":"D","r":16,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"77","On":"15","Oa":"5.17","Od":"1.11","Dp":"15","p":{"33":{"n":4.5},"34":{"n":4,"s":1},"36":{"n":6.5},"37":{"n":8,"g":1},"38":{"n":5},"1":{"n":3.5}}},"c":28},{"i":2514,"n":"Yarmolenko","f":"Andriy","p":"A","r":7,"s":{"n":0,"Og":"2","Os":"39","On":"8","Oa":"4.88","Od":"0.54","Mp":"4","Ap":"4"},"c":28},{"i":2560,"n":"Toni Mart\u00ednez","f":"","p":"A","r":2,"s":{"n":0},"c":28},{"i":2573,"n":"Balbuena","f":"Fabi\u00e1n","p":"D","r":14,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"1","Os":"117","On":"23","Oa":"5.09","Od":"1.2","Dp":"23","p":{"33":{"n":4.5},"34":{"n":5.5},"35":{"n":4},"36":{"n":5},"37":{"n":6},"38":{"n":6.5},"1":{"n":3}}},"c":28},{"i":2602,"n":"Felipe Anderson","f":"","p":"M","r":16,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"9","Os":"192","On":"36","Oa":"5.35","Od":"1.44","Mp":"34","Ap":"2","p":{"33":{"n":4.5},"34":{"n":6,"g":1},"35":{"n":5},"36":{"n":5},"38":{"n":7},"1":{"n":3}}},"c":28},{"i":2885,"n":"Coventry","f":"Conor","p":"M","r":1,"s":{"n":0},"c":28},{"i":2888,"n":"Joe Powell","f":"","p":"M","r":1,"s":{"n":0},"c":28},{"i":2979,"n":"Xande Silva","f":"","p":"A","r":1,"s":{"n":0},"c":28},{"i":2987,"n":"Nasri","f":"Samir","p":"M","r":4,"s":{"n":0,"Os":"24","On":"5","Oa":"4.9","Od":"1.02","Mp":"5"},"c":28},{"i":3744,"n":"Martin","f":"David","p":"G","r":1,"s":{"n":0},"c":28},{"i":5449,"n":"Haller","f":"S\u00e9bastien","p":"A","r":18,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Ap":"1","p":{"1":{"n":3.5}}},"c":28},{"i":5986,"n":"Gon\u00e7alo Cardoso","f":"","p":"D","r":5,"s":{"n":0},"c":28},{"i":6123,"n":"Ajeti","f":"Albian","p":"A","r":4,"s":{"n":0},"c":28},{"i":39,"n":"Ghezzal","f":"Rachid","p":"M","r":6,"s":{"n":0,"Og":"1","Os":"82","On":"18","Oa":"4.58","Od":"0.58","Mp":"16","Ap":"2","p":{"32":{"n":4.5,"s":1}}},"c":29},{"i":148,"n":"Ricardo Pereira","f":"","p":"D","r":16,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"181","On":"35","Oa":"5.19","Od":"1.21","Mp":"6","Dp":"28","Ap":"1","p":{"32":{"n":6.5},"33":{"n":7},"34":{"n":4.5},"35":{"n":4.5},"36":{"n":7},"37":{"n":6},"38":{"n":5},"1":{"n":5}}},"c":29},{"i":610,"n":"Vardy","f":"Jamie","p":"A","r":28,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"17","Os":"179","On":"34","Oa":"5.28","Od":"1.32","Ap":"34","p":{"32":{"n":6.5,"g":1},"33":{"n":7.5,"g":2},"34":{"n":3.5},"35":{"n":6.5,"g":1},"36":{"n":8,"g":2},"37":{"n":4},"38":{"n":5},"1":{"n":4.5}}},"c":29},{"i":648,"n":"Slimani","f":"Islam","p":"A","r":8,"s":{"n":0},"c":29},{"i":660,"n":"Okazaki","f":"Shinji","p":"A","r":3,"s":{"n":0,"Os":"95","On":"21","Oa":"4.55","Od":"0.34","Ap":"21","p":{"33":{"n":4,"s":1},"38":{"n":4.5,"s":1}}},"c":29},{"i":689,"n":"Schmeichel","f":"Kasper","p":"G","r":19,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"203","On":"38","Oa":"5.36","Od":"0.95","Gp":"38","p":{"32":{"n":6},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":6},"37":{"n":6},"38":{"n":6.5},"1":{"n":6}}},"c":29},{"i":701,"n":"Morgan","f":"Wes","p":"D","r":8,"s":{"n":0,"Og":"3","Os":"112","On":"21","Oa":"5.33","Od":"1.12","Dp":"21","p":{"32":{"n":7.5,"g":1},"33":{"n":6},"34":{"n":5}}},"c":29},{"i":734,"n":"Albrighton","f":"Marc","p":"M","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"147","On":"28","Oa":"5.27","Od":"0.8","Mp":"24","Ap":"4","p":{"34":{"n":5.5,"s":1},"35":{"n":4.5},"36":{"n":6.5},"37":{"n":5},"38":{"n":5},"1":{"n":5,"s":1}}},"c":29},{"i":735,"n":"Evans","f":"Jonny","p":"D","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"134","On":"25","Oa":"5.36","Od":"0.96","Dp":"25","p":{"32":{"n":6},"35":{"n":4.5},"36":{"n":7},"37":{"n":6},"38":{"n":5.5},"1":{"n":6}}},"c":29},{"i":756,"n":"Fuchs","f":"Christian","p":"D","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.83","Od":"0.62","Dp":"3"},"c":29},{"i":785,"n":"King","f":"Andy","p":"M","r":1,"s":{"n":0},"c":29},{"i":798,"n":"Jakupovic","f":"Eldin","p":"G","r":1,"s":{"n":0},"c":29},{"i":838,"n":"Iheanacho","f":"Kelechi","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"130","On":"29","Oa":"4.48","Od":"0.71","Mp":"3","Ap":"26","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"37":{"n":4,"s":1}}},"c":29},{"i":851,"n":"Mendy","f":"Nampalys","p":"M","r":7,"s":{"n":0,"Os":"159","On":"31","Oa":"5.15","Od":"0.93","Mp":"31","p":{"32":{"n":5,"s":1},"34":{"n":5.5,"s":1},"35":{"n":5,"s":1},"36":{"n":5,"s":1}}},"c":29},{"i":858,"n":"Simpson","f":"Danny","p":"D","r":4,"s":{"n":0,"Os":"30","On":"6","Oa":"5","Od":"1.04","Dp":"6","p":{"38":{"n":5,"s":1}}},"c":29},{"i":864,"n":"Gray","f":"Demarai","p":"M","r":10,"s":{"n":0,"Og":"4","Os":"161","On":"33","Oa":"4.89","Od":"0.82","Mp":"29","Ap":"4","p":{"32":{"n":5.5},"33":{"n":5.5},"34":{"n":4},"35":{"n":5},"36":{"n":5,"s":1},"37":{"n":5,"s":1}}},"c":29},{"i":880,"n":"Amartey","f":"Daniel","p":"M","r":1,"s":{"n":0,"Os":"41","On":"8","Oa":"5.13","Od":"0.65","Mp":"2","Dp":"6"},"c":29},{"i":1015,"n":"Wilfred Ndidi","f":"","p":"M","r":17,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"213","On":"38","Oa":"5.61","Od":"0.89","Mp":"38","p":{"32":{"n":8},"33":{"n":6},"34":{"n":3.5},"35":{"n":5.5},"36":{"n":5.5},"37":{"n":7},"38":{"n":5.5},"1":{"n":6}}},"c":29},{"i":1041,"n":"Kapustka","f":"Bartosz","p":"M","r":3,"s":{"n":0},"c":29},{"i":1053,"n":"Benalouane","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":29},{"i":1057,"n":"Chilwell","f":"Ben","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"175","On":"36","Oa":"4.86","Od":"0.95","Mp":"2","Dp":"34","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":4.5},"35":{"n":5.5},"36":{"n":6},"37":{"n":5},"38":{"n":6},"1":{"n":5}}},"c":29},{"i":1160,"n":"Tielemans","f":"Youri","p":"M","r":21,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"8","Os":"178","On":"33","Oa":"5.41","Od":"1.01","Mp":"33","p":{"32":{"n":7.5},"33":{"n":7,"g":1},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":7,"g":1},"37":{"n":4.5},"38":{"n":5.5},"1":{"n":6}}},"c":29},{"i":1368,"n":"Knight","f":"Josh","p":"D","r":1,"s":{"n":0},"c":29},{"i":1371,"n":"James","f":"Matty","p":"M","r":1,"s":{"n":0},"c":29},{"i":1383,"n":"Ward","f":"Danny","p":"G","r":5,"s":{"n":0},"c":29},{"i":2067,"n":"Choudhury","f":"Hamza","p":"M","r":8,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"54","On":"10","Oa":"5.45","Od":"0.72","Mp":"10","p":{"33":{"n":5,"s":1},"36":{"n":7},"37":{"n":6},"38":{"n":5.5},"1":{"n":5.5}}},"c":29},{"i":2132,"n":"Ayoze P\u00e9rez","f":"","p":"A","r":20,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"12","Os":"195","On":"37","Oa":"5.28","Od":"1.3","Mp":"21","Ap":"16","p":{"32":{"n":4,"e":3478,"c":46},"33":{"n":5.5,"e":3493,"c":46},"34":{"n":7,"e":3502,"c":46,"g":1},"35":{"n":8,"e":3515,"c":46,"g":3},"36":{"n":6,"e":3518,"c":46,"g":1},"37":{"n":3.5,"e":3535,"c":46},"38":{"n":7.5,"e":3541,"c":46,"g":1},"1":{"n":5}}},"c":29},{"i":2198,"n":"Adrien Silva","f":"","p":"M","r":8,"s":{"n":0,"Os":"86","On":"16","Oa":"5.38","Od":"0.48","Mp":"16","p":{"32":{"n":6,"e":3046,"c":13},"33":{"n":5,"e":3058,"c":13},"34":{"n":4.5,"e":3070,"c":13},"35":{"n":5.5,"e":3075,"c":13},"36":{"n":5,"e":3089,"c":13},"37":{"n":5.5,"e":3096,"c":13},"38":{"n":5.5,"e":3108,"c":13}}},"c":29},{"i":2207,"n":"Barnes","f":"Harvey","p":"M","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"81","On":"16","Oa":"5.09","Od":"0.71","Mp":"13","Ap":"3","p":{"32":{"n":5},"33":{"n":4.5},"34":{"n":4.5},"35":{"n":7,"g":1,"s":1},"36":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1},"1":{"n":5,"s":1}}},"c":29},{"i":2261,"n":"Diabat\u00e9","f":"Fousseni","p":"A","r":3,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Mp":"1"},"c":29},{"i":2567,"n":"Maddison","f":"James","p":"M","r":24,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"7","Os":"201","On":"36","Oa":"5.58","Od":"1.02","Mp":"29","Ap":"7","p":{"32":{"n":5.5},"33":{"n":7.5,"g":1},"34":{"n":4},"35":{"n":5},"36":{"n":7},"37":{"n":5},"38":{"n":4.5},"1":{"n":6}}},"c":29},{"i":2572,"n":"Elder","f":"Callum","p":"D","r":1,"s":{"n":0},"c":29},{"i":2754,"n":"S\u00f6y\u00fcnc\u00fc","f":"\u00c7aglar","p":"D","r":4,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"34","On":"7","Oa":"4.86","Od":"0.35","Dp":"7","p":{"33":{"n":4.5},"1":{"n":5.5}}},"c":29},{"i":2755,"n":"Benkovic","f":"Filip","p":"D","r":8,"s":{"n":0},"c":29},{"i":2925,"n":"Leshabela","f":"Thakgalo","p":"M","r":1,"s":{"n":0},"c":29},{"i":3658,"n":"Justin","f":"James","p":"D","r":1,"s":{"n":0},"c":29},{"i":3690,"n":"Thomas","f":"George","p":"A","r":4,"s":{"n":0},"c":29},{"i":4601,"n":"Praet","f":"Dennis","p":"M","r":12,"s":{"n":0},"c":29},{"i":5411,"n":"Fitzhugh","f":"Ethan","p":"M","r":1,"s":{"n":0},"c":29},{"i":5418,"n":"Tavares","f":"Sidnei","p":"M","r":1,"s":{"n":0},"c":29},{"i":5422,"n":"Pennant","f":"Terell","p":"A","r":1,"s":{"n":0},"c":29},{"i":5425,"n":"Wright","f":"Callum","p":"M","r":1,"s":{"n":0},"c":29},{"i":5430,"n":"Daley-Campbell","f":"Vontae","p":"D","r":1,"s":{"n":0},"c":29},{"i":5434,"n":"Johansson","f":"Viktor","p":"G","r":1,"s":{"n":0},"c":29},{"i":5443,"n":"Moore","f":"Elliott","p":"D","r":1,"s":{"n":0},"c":29},{"i":5444,"n":"Muskwe","f":"Admiral","p":"A","r":1,"s":{"n":0},"c":29},{"i":5445,"n":"Ndukwu","f":"Layton","p":"A","r":4,"s":{"n":0},"c":29},{"i":587,"n":"S\u00e1nchez","f":"Alexis","p":"A","r":7,"s":{"n":0,"Og":"1","Os":"95","On":"19","Oa":"5","Od":"0.67","Mp":"1","Ap":"18","p":{"36":{"n":4.5,"s":1},"37":{"n":4.5}}},"c":31},{"i":595,"n":"Pogba","f":"Paul","p":"M","r":30,"s":{"s":"7","n":"1","a":"7.5","Ss":"7","Sn":"1","Sa":"7.5","Og":"12","Os":"188","On":"35","Oa":"5.39","Od":"1.44","Mp":"35","p":{"32":{"n":4.5},"33":{"n":4},"34":{"n":7,"g":2},"35":{"n":4},"36":{"n":4.5},"37":{"n":4},"38":{"n":4.5},"1":{"n":7.5}}},"c":31},{"i":600,"n":"de Gea","f":"David","p":"G","r":18,"s":{"s":"7","n":"1","a":"7.5","Ss":"7","Sn":"1","Sa":"7.5","Os":"203","On":"38","Oa":"5.34","Od":"1.13","Gp":"38","p":{"32":{"n":7},"33":{"n":4.5},"34":{"n":5.5},"35":{"n":4.5},"36":{"n":4},"37":{"n":5},"38":{"n":5.5},"1":{"n":7.5}}},"c":31},{"i":604,"n":"Mata","f":"Juan","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"111","On":"22","Oa":"5.07","Od":"0.91","Mp":"17","Ap":"5","p":{"32":{"n":4.5},"34":{"n":5},"36":{"n":6,"g":1},"37":{"n":4.5},"1":{"n":5,"s":1}}},"c":31},{"i":608,"n":"Antonio Valencia","f":"","p":"D","r":4,"s":{"n":0,"Os":"30","On":"6","Oa":"5.08","Od":"0.79","Mp":"2","Dp":"4","p":{"38":{"n":5,"s":1}}},"c":31},{"i":616,"n":"Matic","f":"Nemanja","p":"M","r":18,"s":{"n":0,"Og":"1","Os":"146","On":"28","Oa":"5.21","Od":"0.8","Mp":"27","Dp":"1","p":{"32":{"n":3.5},"35":{"n":3},"36":{"n":6},"37":{"n":5}}},"c":31},{"i":626,"n":"Martial","f":"Anthony","p":"A","r":15,"s":{"g":"1","s":"7","n":"1","a":"7","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"11","Os":"146","On":"28","Oa":"5.21","Od":"1.24","Mp":"4","Ap":"24","p":{"32":{"n":6,"g":1},"33":{"n":4.5,"s":1},"34":{"n":4.5},"35":{"n":3},"38":{"n":4.5,"s":1},"1":{"n":7,"g":1}}},"c":31},{"i":637,"n":"Fellaini","f":"Marouane","p":"M","r":7,"s":{"n":0,"Os":"66","On":"13","Oa":"5.12","Od":"0.59","Mp":"13"},"c":31},{"i":641,"n":"Rashford","f":"Marcus","p":"A","r":28,"s":{"g":"2","s":"8","n":"1","a":"8","Sg":"2","Ss":"8","Sn":"1","Sa":"8","Og":"12","Os":"174","On":"33","Oa":"5.27","Od":"1.32","Mp":"5","Ap":"28","p":{"32":{"n":6,"g":1},"34":{"n":4,"s":1},"35":{"n":3},"36":{"n":4.5},"37":{"n":6},"38":{"n":5},"1":{"n":8,"g":2}}},"c":31},{"i":706,"n":"Bailly","f":"Eric","p":"D","r":7,"s":{"n":0,"Os":"53","On":"11","Oa":"4.82","Od":"0.83","Dp":"11","p":{"36":{"n":6}}},"c":31},{"i":731,"n":"Rojo","f":"Marcos","p":"D","r":1,"s":{"n":0,"Oao":"1","Os":"22","On":"5","Oa":"4.5","Od":"0.77","Dp":"5","p":{"32":{"n":4.5,"s":1},"34":{"n":5},"36":{"n":5,"s":1}}},"c":31},{"i":743,"n":"Jones","f":"Phil","p":"D","r":9,"s":{"n":0,"Os":"98","On":"18","Oa":"5.44","Od":"0.93","Dp":"18","p":{"32":{"n":6.5},"33":{"n":5.5,"s":1},"34":{"n":6},"35":{"n":3.5},"37":{"n":5.5},"38":{"n":4}}},"c":31},{"i":749,"n":"Smalling","f":"Chris","p":"D","r":9,"s":{"n":0,"Og":"1","Oao":"1","Os":"118","On":"24","Oa":"4.92","Od":"0.91","Dp":"24","p":{"32":{"n":5},"33":{"n":3,"a":1},"34":{"n":5.5},"35":{"n":3},"38":{"n":5}}},"c":31},{"i":768,"n":"Lingard","f":"Jesse","p":"M","r":15,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"138","On":"28","Oa":"4.93","Od":"0.82","Mp":"17","Ap":"11","p":{"32":{"n":5,"s":1},"33":{"n":4},"34":{"n":5.5},"38":{"n":4},"1":{"n":6}}},"c":31},{"i":797,"n":"Darmian","f":"Matteo","p":"D","r":4,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"0.86","Mp":"1","Dp":"4"},"c":31},{"i":804,"n":"Shaw","f":"Luke","p":"D","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"143","On":"29","Oa":"4.93","Od":"0.95","Mp":"2","Dp":"27","p":{"32":{"n":7},"33":{"n":3.5},"36":{"n":6},"37":{"n":4.5},"1":{"n":6}}},"c":31},{"i":876,"n":"Grant","f":"Lee","p":"G","r":1,"s":{"n":0},"c":31},{"i":889,"n":"Romero","f":"Sergio","p":"G","r":6,"s":{"n":0},"c":31},{"i":898,"n":"Maguire","f":"Harry","p":"D","r":26,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"3","Os":"169","On":"31","Oa":"5.47","Od":"1.1","Dp":"31","p":{"34":{"n":5.5,"e":3502,"c":29},"35":{"n":4,"e":3516,"c":29},"36":{"n":6,"e":3522,"c":29},"37":{"n":5.5,"e":3534,"c":29},"38":{"n":6,"e":3542,"c":29},"1":{"n":7}}},"c":31},{"i":947,"n":"Young","f":"Ashley","p":"D","r":14,"s":{"n":0,"Og":"2","Os":"147","On":"30","Oa":"4.92","Od":"0.89","Dp":"30","p":{"32":{"n":5.5},"33":{"n":3},"35":{"n":3.5,"s":1},"36":{"n":5},"37":{"n":5.5},"38":{"n":4.5}}},"c":31},{"i":1062,"n":"Tuanzebe","f":"Axel","p":"D","r":5,"s":{"n":0},"c":31},{"i":1063,"n":"Fosu-Mensah","f":"Timothy","p":"D","r":3,"s":{"n":0,"Oao":"1","Os":"53","On":"12","Oa":"4.42","Od":"0.67","Dp":"12","p":{"32":{"n":4,"e":3483,"c":71},"34":{"n":5.5,"e":3501,"c":71}}},"c":31},{"i":1079,"n":"James","f":"Daniel","p":"M","r":1,"s":{"g":"1","s":"6","n":"1","a":"6.5","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"6","On":"1","Oa":"6.5","Mp":"1","p":{"1":{"n":6.5,"g":1,"s":1}}},"c":31},{"i":1080,"n":"Joel Pereira","f":"","p":"G","r":1,"s":{"n":0},"c":31},{"i":1095,"n":"Wan-Bissaka","f":"Aaron","p":"D","r":22,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"181","On":"35","Oa":"5.19","Od":"0.78","Dp":"35","p":{"32":{"n":6,"e":3482,"c":26},"33":{"n":6,"e":3493,"c":26},"34":{"n":5,"e":3500,"c":26},"35":{"n":5.5,"e":3509,"c":26},"36":{"n":5.5,"e":3520,"c":26},"37":{"n":5,"e":3530,"c":26},"38":{"n":4.5,"e":3540,"c":26},"1":{"n":7}}},"c":31},{"i":1286,"n":"Lindel\u00f6f","f":"Victor","p":"D","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Oao":"1","Os":"157","On":"30","Oa":"5.25","Od":"0.95","Dp":"30","p":{"33":{"n":4},"35":{"n":3},"36":{"n":5.5},"37":{"n":5.5},"1":{"n":6}}},"c":31},{"i":1355,"n":"Andreas Pereira","f":"","p":"M","r":6,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"70","On":"15","Oa":"4.7","Od":"0.81","Mp":"15","p":{"32":{"n":4,"s":1},"33":{"n":5,"s":1},"34":{"n":5,"s":1},"35":{"n":4.5,"s":1},"38":{"n":4.5},"1":{"n":6.5}}},"c":31},{"i":2062,"n":"McTominay","f":"Scott","p":"M","r":12,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"2","Os":"79","On":"16","Oa":"4.94","Od":"0.83","Mp":"14","Dp":"2","p":{"33":{"n":6,"g":1},"35":{"n":4,"s":1},"36":{"n":4.5,"s":1},"37":{"n":5.5,"g":1},"38":{"n":5.5},"1":{"n":6.5}}},"c":31},{"i":2286,"n":"Gomes","f":"Angel","p":"M","r":1,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"2","p":{"38":{"n":5,"s":1}}},"c":31},{"i":2341,"n":"Hamilton","f":"Ethan","p":"M","r":8,"s":{"n":0},"c":31},{"i":2541,"n":"Diogo Dalot","f":"","p":"D","r":9,"s":{"n":0,"Os":"77","On":"16","Oa":"4.81","Od":"0.68","Mp":"4","Dp":"11","Ap":"1","p":{"33":{"n":4.5},"34":{"n":5},"35":{"n":3.5},"37":{"n":5.5,"s":1},"38":{"n":4}}},"c":31},{"i":2601,"n":"Fred","f":"","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"78","On":"16","Oa":"4.91","Od":"0.92","Mp":"16","p":{"33":{"n":4},"34":{"n":5.5},"35":{"n":3.5}}},"c":31},{"i":2750,"n":"Kovar","f":"Matej","p":"G","r":1,"s":{"n":0},"c":31},{"i":2751,"n":"Chong","f":"Tahith","p":"M","r":3,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"37":{"n":4.5,"s":1}}},"c":31},{"i":2752,"n":"Bohui","f":"Joshua","p":"A","r":1,"s":{"n":0},"c":31},{"i":2757,"n":"O'Hara","f":"Kieran","p":"G","r":1,"s":{"n":0},"c":31},{"i":2976,"n":"Greenwood","f":"Mason","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"18","On":"4","Oa":"4.63","Od":"0.22","Ap":"4","p":{"34":{"n":4.5,"s":1},"38":{"n":5},"1":{"n":4.5,"s":1}}},"c":31},{"i":3118,"n":"Garner","f":"James","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":31},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":16,"s":{"n":0,"Og":"8","Os":"185","On":"34","Oa":"5.44","Od":"1.03","Mp":"23","Ap":"11","p":{"32":{"n":5,"e":3049,"c":20,"s":1},"33":{"n":3.5,"e":3052,"c":20},"35":{"n":6,"e":3081,"c":20,"g":1},"36":{"n":7,"e":3090,"c":20,"g":1},"37":{"n":6,"e":3100,"c":20},"38":{"n":7,"e":3111,"c":20,"g":1}}},"c":33},{"i":450,"n":"Lukebakio","f":"Dodi","p":"M","r":7,"s":{"n":0},"c":33},{"i":640,"n":"Deeney","f":"Troy","p":"A","r":19,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"9","Os":"160","On":"32","Oa":"5","Od":"1.33","Ap":"32","p":{"32":{"n":5},"33":{"n":6.5,"g":1},"34":{"n":2.5},"37":{"n":4},"38":{"n":4},"1":{"n":3.5}}},"c":33},{"i":653,"n":"Dawson","f":"Craig","p":"D","r":6,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"1":{"n":4}}},"c":33},{"i":688,"n":"Gray","f":"Andre","p":"A","r":12,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"7","Os":"138","On":"29","Oa":"4.76","Od":"0.93","Ap":"29","p":{"32":{"n":4.5,"s":1},"33":{"n":7,"s":1},"34":{"n":4.5},"35":{"n":4},"36":{"n":6,"g":1},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1},"1":{"n":3}}},"c":33},{"i":702,"n":"Heurelho Gomes","f":"","p":"G","r":6,"s":{"n":0},"c":33},{"i":730,"n":"Holebas","f":"Jos\u00e9","p":"D","r":10,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Og":"3","Os":"133","On":"28","Oa":"4.75","Od":"1","Dp":"28","p":{"33":{"n":5},"36":{"n":4},"37":{"n":4},"38":{"n":3},"1":{"n":3}}},"c":33},{"i":738,"n":"Foster","f":"Ben","p":"G","r":17,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"205","On":"38","Oa":"5.41","Od":"1.01","Gp":"38","p":{"32":{"n":5},"33":{"n":6.5},"34":{"n":5},"35":{"n":5},"36":{"n":3.5},"37":{"n":6},"38":{"n":5},"1":{"n":3.5}}},"c":33},{"i":739,"n":"Pereyra","f":"Roberto","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"160","On":"33","Oa":"4.86","Od":"1.18","Mp":"33","p":{"32":{"n":5},"33":{"n":4},"36":{"n":5},"37":{"n":4},"38":{"n":3.5},"1":{"n":5,"s":1}}},"c":33},{"i":758,"n":"Capoue","f":"Etienne","p":"M","r":21,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"187","On":"33","Oa":"5.68","Od":"1.07","Mp":"33","p":{"32":{"n":5.5},"33":{"n":5.5},"34":{"n":6.5},"35":{"n":6},"36":{"n":6.5},"38":{"n":4},"1":{"n":3.5}}},"c":33},{"i":782,"n":"Kaboul","f":"Younes","p":"D","r":1,"s":{"n":0},"c":33},{"i":812,"n":"Pr\u00f6dl","f":"Sebastian","p":"D","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5.5","Dp":"1"},"c":33},{"i":823,"n":"Kabasele","f":"Christian","p":"D","r":7,"s":{"n":0,"Os":"97","On":"20","Oa":"4.85","Od":"0.85","Dp":"20","p":{"32":{"n":5},"34":{"n":5.5},"36":{"n":5,"s":1},"38":{"n":3.5}}},"c":33},{"i":836,"n":"Britos","f":"Miguel","p":"D","r":4,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Dp":"3","p":{"32":{"n":4}}},"c":33},{"i":845,"n":"Okaka","f":"Stefano","p":"A","r":8,"s":{"n":0,"Os":"8","On":"2","Oa":"4.25","Od":"0.25","Ap":"2"},"c":33},{"i":865,"n":"Janmaat","f":"Daryl","p":"D","r":7,"s":{"n":0,"Os":"86","On":"17","Oa":"5.06","Od":"0.66","Dp":"17","p":{"32":{"n":5},"33":{"n":5,"s":1},"34":{"n":6}}},"c":33},{"i":869,"n":"Isaac Success","f":"","p":"A","r":7,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"141","On":"30","Oa":"4.7","Od":"0.68","Mp":"2","Ap":"28","p":{"32":{"n":6,"s":1},"34":{"n":5,"s":1},"35":{"n":4,"s":1},"36":{"n":4,"s":1},"37":{"n":5,"s":1},"1":{"n":4,"s":1}}},"c":33},{"i":933,"n":"Cleverley","f":"Tom","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"65","On":"13","Oa":"5.04","Od":"0.63","Mp":"13","p":{"37":{"n":5,"s":1}}},"c":33},{"i":944,"n":"Doucour\u00e9","f":"Abdoulaye","p":"M","r":18,"s":{"ao":"1","s":"3","n":"1","a":"3.5","Sao":"1","Ss":"3","Sn":"1","Sa":"3.5","Og":"5","Oao":"2","Os":"179","On":"35","Oa":"5.13","Od":"1.14","Mp":"35","p":{"32":{"n":6,"g":1},"33":{"n":6,"g":1},"34":{"n":5},"35":{"n":6.5},"36":{"n":5},"37":{"n":3.5},"38":{"n":4.5},"1":{"n":3.5,"a":1}}},"c":33},{"i":948,"n":"Cathcart","f":"Craig","p":"D","r":15,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"3","Oao":"2","Os":"179","On":"36","Oa":"4.97","Od":"1.02","Dp":"36","p":{"33":{"n":6},"34":{"n":6},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":4},"38":{"n":3.5},"1":{"n":3.5}}},"c":33},{"i":953,"n":"Dja Dj\u00e9dj\u00e9","f":"Brice","p":"D","r":1,"s":{"n":0},"c":33},{"i":979,"n":"Chalobah","f":"Nathaniel","p":"M","r":3,"s":{"n":0,"Os":"42","On":"9","Oa":"4.67","Od":"0.24","Mp":"9","p":{"35":{"n":4.5,"s":1},"37":{"n":4.5}}},"c":33},{"i":1038,"n":"Welbeck","f":"Danny","p":"A","r":4,"s":{"n":0,"Og":"1","Os":"38","On":"8","Oa":"4.75","Od":"0.71","Ap":"8"},"c":33},{"i":1081,"n":"Mariappa","f":"Adrian","p":"D","r":10,"s":{"n":0,"Os":"125","On":"26","Oa":"4.81","Od":"0.82","Dp":"26","p":{"33":{"n":4},"35":{"n":5},"36":{"n":4.5},"37":{"n":3.5},"38":{"n":5,"s":1}}},"c":33},{"i":1086,"n":"Bachmann","f":"Daniel","p":"G","r":1,"s":{"n":0},"c":33},{"i":1107,"n":"Quina","f":"Domingos","p":"M","r":1,"s":{"n":0,"Og":"1","Os":"39","On":"8","Oa":"4.94","Od":"0.53","Mp":"8","p":{"33":{"n":5,"s":1}}},"c":33},{"i":1298,"n":"Kiko Femen\u00eda","f":"","p":"D","r":11,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"142","On":"29","Oa":"4.9","Od":"1.05","Mp":"2","Dp":"27","p":{"32":{"n":5,"s":1},"33":{"n":7,"g":1},"34":{"n":4.5},"35":{"n":6},"36":{"n":4.5},"37":{"n":4},"38":{"n":2},"1":{"n":4}}},"c":33},{"i":1311,"n":"Hughes","f":"Will","p":"M","r":12,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"2","Os":"157","On":"32","Oa":"4.91","Od":"0.99","Mp":"32","p":{"32":{"n":5.5},"33":{"n":6.5,"g":1},"34":{"n":5.5},"35":{"n":5},"36":{"n":5},"37":{"n":4},"38":{"n":3.5},"1":{"n":3.5}}},"c":33},{"i":1335,"n":"Sinclair","f":"Jerome","p":"A","r":3,"s":{"n":0},"c":33},{"i":1535,"n":"Foulquier","f":"Dimitri","p":"D","r":10,"s":{"n":0,"Og":"3","Os":"120","On":"25","Oa":"4.82","Od":"0.9","Mp":"20","Dp":"5","p":{"31":{"n":3,"e":2276,"c":58},"36":{"n":6,"e":2323,"c":58},"37":{"n":4.5,"e":2334,"c":58},"38":{"n":4,"e":2345,"c":58}}},"c":33},{"i":1724,"n":"Deulofeu","f":"Gerard","p":"A","r":18,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"10","Os":"152","On":"31","Oa":"4.92","Od":"1.41","Mp":"2","Ap":"29","p":{"32":{"n":4},"33":{"n":4},"35":{"n":8,"g":2},"36":{"n":4.5},"37":{"n":3.5},"38":{"n":6.5,"g":1},"1":{"n":3.5}}},"c":33},{"i":1942,"n":"Pe\u00f1aranda","f":"Adalberto","p":"A","r":1,"s":{"n":0},"c":33},{"i":2023,"n":"Zeegelaar","f":"Marvin","p":"D","r":7,"s":{"n":0},"c":33},{"i":2229,"n":"Tom Dele-Bashiru","f":"","p":"M","r":1,"s":{"n":0},"c":33},{"i":2536,"n":"Wilmot","f":"Ben","p":"D","r":1,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2"},"c":33},{"i":2547,"n":"Dahlberg","f":"Pontus","p":"G","r":1,"s":{"n":0},"c":33},{"i":2559,"n":"Oular\u00e9","f":"Obbi","p":"A","r":5,"s":{"n":0},"c":33},{"i":2578,"n":"Sema","f":"Ken","p":"M","r":1,"s":{"n":0,"Og":"1","Os":"75","On":"16","Oa":"4.72","Od":"0.75","Mp":"16","p":{"34":{"n":4.5,"s":1},"35":{"n":4.5}}},"c":33},{"i":2579,"n":"Masina","f":"Adam","p":"D","r":5,"s":{"n":0,"Os":"66","On":"14","Oa":"4.75","Od":"0.82","Dp":"14","p":{"32":{"n":4.5},"34":{"n":5},"35":{"n":5},"38":{"n":4.5,"s":1}}},"c":33},{"i":5415,"n":"Forster","f":"Harry","p":"M","r":1,"s":{"n":0},"c":33},{"i":5985,"n":"Crichlow","f":"Kane","p":"M","r":3,"s":{"n":0},"c":33},{"i":66,"n":"Carrillo","f":"Guido","p":"A","r":10,"s":{"n":0,"Og":"6","Os":"156","On":"32","Oa":"4.88","Od":"0.91","Ap":"32","p":{"32":{"n":4,"e":2285,"c":47},"33":{"n":4,"e":2301,"c":47},"34":{"n":4,"e":2306,"c":47},"35":{"n":5,"e":2318,"c":47,"s":1},"36":{"n":4.5,"e":2331,"c":47,"s":1},"37":{"n":4.5,"e":2340,"c":47,"s":1},"38":{"n":5,"e":2346,"c":47}}},"c":35},{"i":669,"n":"Long","f":"Shane","p":"A","r":13,"s":{"n":0,"Og":"5","Os":"119","On":"26","Oa":"4.58","Od":"1.03","Mp":"1","Ap":"25","p":{"33":{"n":5.5,"g":1},"34":{"n":6,"g":1,"s":1},"35":{"n":4.5,"s":1},"36":{"n":6,"g":1},"37":{"n":3},"38":{"n":3}}},"c":35},{"i":673,"n":"Redmond","f":"Nathan","p":"M","r":15,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"6","Os":"188","On":"38","Oa":"4.95","Od":"1.12","Mp":"17","Ap":"21","p":{"32":{"n":6},"33":{"n":3.5},"34":{"n":8,"g":2},"35":{"n":3.5},"36":{"n":6},"37":{"n":4,"s":1},"38":{"n":7,"g":1},"1":{"n":4}}},"c":35},{"i":693,"n":"Austin","f":"Charlie","p":"A","r":3,"s":{"n":0,"Og":"2","Os":"106","On":"24","Oa":"4.42","Od":"0.84","Ap":"24","p":{"33":{"n":4.5,"s":1},"36":{"n":3.5,"s":1},"38":{"n":4,"s":1}}},"c":35},{"i":710,"n":"Oriol Romeu","f":"","p":"M","r":13,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"159","On":"31","Oa":"5.15","Od":"0.97","Mp":"31","p":{"32":{"n":5.5},"33":{"n":5.5},"34":{"n":5.5,"s":1},"35":{"n":4},"36":{"n":3.5},"37":{"n":5,"s":1},"38":{"n":6},"1":{"n":3.5}}},"c":35},{"i":721,"n":"Bertrand","f":"Ryan","p":"D","r":10,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Os":"103","On":"24","Oa":"4.31","Od":"0.76","Mp":"10","Dp":"14","p":{"32":{"n":5},"33":{"n":4.5},"34":{"n":5},"35":{"n":3.5},"36":{"n":4},"37":{"n":3},"38":{"n":4.5},"1":{"n":3.5}}},"c":35},{"i":725,"n":"Forster","f":"Fraser","p":"G","r":11,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"37":{"n":4.5}}},"c":35},{"i":727,"n":"H\u00f8jbjerg","f":"Pierre-Emile","p":"M","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"4","Os":"171","On":"32","Oa":"5.34","Od":"1.11","Mp":"32","p":{"32":{"n":6.5,"g":1},"33":{"n":6},"34":{"n":6},"35":{"n":4},"36":{"n":6},"37":{"n":3.5},"38":{"n":4.5},"1":{"n":4.5,"s":1}}},"c":35},{"i":745,"n":"Davis","f":"Steven","p":"M","r":5,"s":{"n":0,"Os":"17","On":"3","Oa":"5.67","Od":"0.94","Mp":"3"},"c":35},{"i":755,"n":"C\u00e9dric Soares","f":"","p":"D","r":9,"s":{"n":0,"Og":"1","Os":"79","On":"17","Oa":"4.65","Od":"1.15","Mp":"2","Dp":"15"},"c":35},{"i":826,"n":"Boufal","f":"Sofiane","p":"M","r":12,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"174","On":"35","Oa":"4.97","Od":"0.8","Mp":"34","Ap":"1","p":{"31":{"n":5,"e":2274,"c":51},"32":{"n":6,"e":2283,"c":51},"33":{"n":7,"e":2295,"c":51,"g":1},"35":{"n":4.5,"e":2318,"c":51},"36":{"n":5.5,"e":2329,"c":51},"37":{"n":4.5,"e":2332,"c":51,"s":1},"38":{"n":5,"e":2343,"c":51,"s":1},"1":{"n":5,"s":1}}},"c":35},{"i":857,"n":"Ward-Prowse","f":"James","p":"M","r":20,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"7","Oao":"1","Os":"141","On":"27","Oa":"5.22","Od":"1.06","Mp":"25","Ap":"2","p":{"32":{"n":5},"33":{"n":4.5},"34":{"n":5},"35":{"n":4.5},"36":{"n":6,"g":1},"37":{"n":4.5,"s":1},"38":{"n":5},"1":{"n":3.5}}},"c":35},{"i":879,"n":"Yoshida","f":"Maya","p":"D","r":7,"s":{"n":0,"Os":"87","On":"17","Oa":"5.12","Od":"1.05","Dp":"17","p":{"32":{"n":6},"33":{"n":5},"34":{"n":6.5},"35":{"n":4}}},"c":35},{"i":940,"n":"McCarthy","f":"Alex","p":"G","r":3,"s":{"n":0,"Os":"123","On":"24","Oa":"5.15","Od":"1.04","Gp":"24"},"c":35},{"i":962,"n":"Clasie","f":"Jordy","p":"M","r":5,"s":{"n":0},"c":35},{"i":1010,"n":"Danny Ings","f":"","p":"A","r":15,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Og":"7","Os":"119","On":"24","Oa":"4.96","Od":"1.14","Ap":"24","p":{"32":{"n":4.5},"34":{"n":6},"35":{"n":3},"36":{"n":6},"37":{"n":3.5},"38":{"n":4.5},"1":{"n":3.5}}},"c":35},{"i":1030,"n":"Josh Sims","f":"","p":"M","r":4,"s":{"n":0,"Os":"33","On":"7","Oa":"4.79","Od":"0.96","Mp":"5","Ap":"2","p":{"32":{"n":5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":6},"35":{"n":3},"38":{"n":4.5,"s":1}}},"c":35},{"i":1037,"n":"McQueen","f":"Sam","p":"D","r":5,"s":{"n":0},"c":35},{"i":1050,"n":"Stephens","f":"Jack","p":"D","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"110","On":"24","Oa":"4.58","Od":"1.01","Dp":"24","p":{"32":{"n":5,"s":1},"34":{"n":5,"s":1},"35":{"n":3.5},"36":{"n":4},"37":{"n":4},"38":{"n":5},"1":{"n":4}}},"c":35},{"i":1051,"n":"Reed","f":"Harrison","p":"M","r":3,"s":{"n":0},"c":35},{"i":1077,"n":"Lewis","f":"Harry","p":"G","r":1,"s":{"n":0},"c":35},{"i":1078,"n":"Hesketh","f":"Jake","p":"M","r":5,"s":{"n":0},"c":35},{"i":1105,"n":"Gunn","f":"Angus","p":"G","r":9,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"66","On":"13","Oa":"5.12","Od":"1.53","Gp":"13","p":{"32":{"n":6},"33":{"n":4},"34":{"n":5},"35":{"n":4},"36":{"n":2.5},"38":{"n":3.5},"1":{"n":4}}},"c":35},{"i":1302,"n":"Hoedt","f":"Wesley","p":"D","r":7,"s":{"n":0,"Oao":"2","Os":"99","On":"22","Oa":"4.5","Od":"1.19","Dp":"22","p":{"34":{"n":5,"e":2308,"c":51},"37":{"n":4,"e":2332,"c":51}}},"c":35},{"i":1315,"n":"Lemina","f":"Mario","p":"M","r":3,"s":{"n":0,"Og":"1","Os":"100","On":"20","Oa":"5.03","Od":"0.95","Mp":"20","p":{"35":{"n":6,"g":1,"s":1},"37":{"n":4}}},"c":35},{"i":1333,"n":"Bednarek","f":"Jan","p":"D","r":11,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"128","On":"26","Oa":"4.94","Od":"1.03","Dp":"26","p":{"32":{"n":5.5},"33":{"n":3.5},"34":{"n":6},"35":{"n":4},"36":{"n":4.5},"37":{"n":4},"38":{"n":5.5},"1":{"n":3.5}}},"c":35},{"i":2264,"n":"Obafemi","f":"Michael","p":"A","r":3,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"15","On":"3","Oa":"5","Od":"1.08","Ap":"3","p":{"1":{"n":4,"s":1}}},"c":35},{"i":2484,"n":"Mohamed Elyounoussi","f":"","p":"M","r":7,"s":{"n":0,"Os":"73","On":"15","Oa":"4.87","Od":"0.62","Mp":"15","p":{"37":{"n":3}}},"c":35},{"i":2486,"n":"Vestergaard","f":"Jannik","p":"D","r":12,"s":{"s":"3","n":"1","a":"3","Ss":"3","Sn":"1","Sa":"3","Os":"118","On":"23","Oa":"5.15","Od":"0.9","Dp":"23","p":{"33":{"n":5.5},"34":{"n":6},"1":{"n":3}}},"c":35},{"i":2488,"n":"Armstrong","f":"Stuart","p":"M","r":11,"s":{"n":0,"Og":"3","Os":"136","On":"28","Oa":"4.88","Od":"0.75","Mp":"21","Ap":"7","p":{"32":{"n":5},"33":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":3.5}}},"c":35},{"i":2543,"n":"Valery","f":"Yan","p":"D","r":11,"s":{"s":"2","n":"1","a":"2.5","Ss":"2","Sn":"1","Sa":"2.5","Og":"2","Os":"107","On":"24","Oa":"4.48","Od":"0.84","Mp":"15","Dp":"9","p":{"32":{"n":5},"33":{"n":4},"34":{"n":5},"36":{"n":5},"37":{"n":3},"38":{"n":4.5},"1":{"n":2.5}}},"c":35},{"i":2561,"n":"Jones","f":"Alfie","p":"M","r":1,"s":{"n":0},"c":35},{"i":2581,"n":"Flannigan","f":"Jake","p":"M","r":1,"s":{"n":0},"c":35},{"i":2582,"n":"Gallagher","f":"Sam","p":"A","r":3,"s":{"n":0,"Os":"17","On":"4","Oa":"4.38","Od":"0.22","Ap":"4","p":{"32":{"n":4,"s":1}}},"c":35},{"i":2974,"n":"Ramsay","f":"Kayne","p":"D","r":1,"s":{"n":0},"c":35},{"i":2982,"n":"Johnson","f":"Tyreke","p":"M","r":1,"s":{"n":0},"c":35},{"i":2983,"n":"Slattery","f":"Callum","p":"M","r":2,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"3"},"c":35},{"i":2985,"n":"Barnes","f":"Marcus","p":"A","r":1,"s":{"n":0},"c":35},{"i":3643,"n":"Djenepo","f":"Moussa","p":"M","r":12,"s":{"n":0},"c":35},{"i":3668,"n":"Adams","f":"Che","p":"A","r":7,"s":{"s":"2","n":"1","a":"2.5","Ss":"2","Sn":"1","Sa":"2.5","Os":"2","On":"1","Oa":"2.5","Ap":"1","p":{"1":{"n":2.5}}},"c":35},{"i":5436,"n":"Vokins","f":"Jake","p":"D","r":1,"s":{"n":0},"c":35},{"i":5437,"n":"Smallbone","f":"William","p":"A","r":1,"s":{"n":0},"c":35},{"i":6148,"n":"N'Lundulu","f":"Daniel","p":"A","r":1,"s":{"n":0},"c":35},{"i":6149,"n":"Danso","f":"Kevin","p":"D","r":8,"s":{"n":0},"c":35},{"i":597,"n":"Defoe","f":"Jermain","p":"A","r":6,"s":{"n":0,"Os":"13","On":"3","Oa":"4.5","Ap":"3"},"c":36},{"i":651,"n":"King","f":"Joshua","p":"A","r":17,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"12","Os":"172","On":"35","Oa":"4.93","Od":"1.33","Mp":"2","Ap":"33","p":{"32":{"n":3.5},"33":{"n":4},"34":{"n":4.5},"35":{"n":4},"36":{"n":3.5},"37":{"n":5},"38":{"n":6,"g":1},"1":{"n":5.5}}},"c":36},{"i":729,"n":"Daniels","f":"Charlie","p":"D","r":4,"s":{"n":0,"Og":"1","Os":"92","On":"20","Oa":"4.63","Od":"1.01","Mp":"2","Dp":"18","p":{"32":{"n":4.5}}},"c":36},{"i":736,"n":"Stanislas","f":"Junior","p":"M","r":7,"s":{"n":0,"Og":"2","Os":"112","On":"23","Oa":"4.89","Od":"0.97","Mp":"19","Dp":"2","Ap":"2","p":{"32":{"n":4.5,"s":1},"33":{"n":4.5,"s":1},"34":{"n":6.5,"g":1,"s":1},"35":{"n":5}}},"c":36},{"i":744,"n":"Fraser","f":"Ryan","p":"M","r":23,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"6","Os":"209","On":"38","Oa":"5.51","Od":"1.36","Mp":"33","Ap":"5","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":8,"g":1},"35":{"n":5},"36":{"n":6,"s":1},"37":{"n":8},"38":{"n":4},"1":{"n":5.5}}},"c":36},{"i":754,"n":"Arter","f":"Harry","p":"M","r":6,"s":{"n":0,"Os":"126","On":"25","Oa":"5.04","Od":"0.93","Mp":"24","Ap":"1","p":{"32":{"n":6.5,"e":3481,"c":70},"34":{"n":5,"e":3499,"c":70}}},"c":36},{"i":784,"n":"Steve Cook","f":"","p":"D","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Oao":"1","Os":"154","On":"31","Oa":"4.98","Od":"1.32","Dp":"31","p":{"34":{"n":7},"35":{"n":5},"36":{"n":3.5},"37":{"n":6},"38":{"n":3},"1":{"n":5}}},"c":36},{"i":809,"n":"Callum Wilson","f":"","p":"A","r":24,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"13","Os":"159","On":"30","Oa":"5.32","Od":"1.59","Ap":"30","p":{"32":{"n":3.5},"33":{"n":4},"34":{"n":8,"g":1},"35":{"n":3.5},"36":{"n":8,"g":2},"37":{"n":5},"38":{"n":4},"1":{"n":5.5}}},"c":36},{"i":827,"n":"Francis","f":"Simon","p":"D","r":1,"s":{"n":0,"Os":"75","On":"16","Oa":"4.69","Od":"0.81","Dp":"16"},"c":36},{"i":832,"n":"Smith","f":"Brad","p":"D","r":1,"s":{"n":0},"c":36},{"i":840,"n":"Ak\u00e9","f":"Nathan","p":"D","r":23,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"4","Os":"193","On":"38","Oa":"5.09","Od":"1.16","Mp":"2","Dp":"36","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":7},"35":{"n":5.5},"36":{"n":3.5},"37":{"n":7,"g":1},"38":{"n":5},"1":{"n":5.5}}},"c":36},{"i":867,"n":"Surman","f":"Andrew","p":"M","r":6,"s":{"n":0,"Os":"82","On":"17","Oa":"4.85","Od":"1.05","Mp":"17"},"c":36},{"i":891,"n":"Smith","f":"Adam","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"122","On":"25","Oa":"4.9","Od":"0.88","Mp":"5","Dp":"20","p":{"33":{"n":4},"34":{"n":6.5},"37":{"n":6},"38":{"n":5},"1":{"n":4.5}}},"c":36},{"i":892,"n":"Boruc","f":"Artur","p":"G","r":7,"s":{"n":0,"Os":"67","On":"12","Oa":"5.58","Od":"1.17","Gp":"12","p":{"34":{"n":6},"35":{"n":6.5},"36":{"n":4.5}}},"c":36},{"i":916,"n":"Ibe","f":"Jordon","p":"M","r":9,"s":{"n":0,"Og":"1","Os":"87","On":"19","Oa":"4.61","Od":"0.66","Mp":"18","Ap":"1","p":{"37":{"n":4.5},"38":{"n":6,"g":1}}},"c":36},{"i":950,"n":"Gosling","f":"Dan","p":"M","r":14,"s":{"n":0,"Og":"2","Os":"124","On":"24","Oa":"5.19","Od":"1","Mp":"24","p":{"32":{"n":4},"33":{"n":3.5},"34":{"n":8,"g":1},"35":{"n":5.5},"36":{"n":5.5,"g":1}}},"c":36},{"i":985,"n":"Pugh","f":"Marc","p":"M","r":1,"s":{"n":0},"c":36},{"i":1092,"n":"Harry Wilson","f":"","p":"M","r":1,"s":{"n":0},"c":36},{"i":1117,"n":"Simpson","f":"Jack","p":"D","r":10,"s":{"n":0,"Oao":"1","Os":"27","On":"6","Oa":"4.5","Od":"1.15","Dp":"6","p":{"34":{"n":5,"s":1},"35":{"n":4,"s":1},"36":{"n":4},"37":{"n":6},"38":{"n":2.5,"a":1}}},"c":36},{"i":1119,"n":"Ramsdale","f":"Aaron","p":"G","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5}}},"c":36},{"i":1120,"n":"Solanke","f":"Dominic","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"53","On":"11","Oa":"4.82","Od":"0.49","Ap":"11","p":{"32":{"n":4,"s":1},"33":{"n":4.5,"s":1},"34":{"n":5,"s":1},"35":{"n":4.5,"s":1},"36":{"n":5,"s":1},"1":{"n":4.5,"s":1}}},"c":36},{"i":1123,"n":"Jordan","f":"Corey","p":"D","r":1,"s":{"n":0},"c":36},{"i":1147,"n":"Begovic","f":"Asmir","p":"G","r":10,"s":{"n":0,"Os":"109","On":"23","Oa":"4.74","Od":"1.47","Gp":"23","p":{"32":{"n":4.5},"33":{"n":2}}},"c":36},{"i":1359,"n":"Lewis Cook","f":"","p":"M","r":1,"s":{"n":0,"Os":"65","On":"13","Oa":"5.04","Od":"0.63","Mp":"13"},"c":36},{"i":1494,"n":"Billing","f":"Philip","p":"M","r":4,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"141","On":"27","Oa":"5.24","Od":"1.12","Mp":"27","p":{"1":{"n":5.5}}},"c":36},{"i":1738,"n":"Lerma","f":"Jefferson","p":"M","r":15,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Oao":"1","Os":"167","On":"31","Oa":"5.39","Od":"1.01","Mp":"31","p":{"32":{"n":5},"33":{"n":5},"34":{"n":7},"35":{"n":5.5},"36":{"n":5},"37":{"n":6},"38":{"n":5.5,"g":1},"1":{"n":5.5}}},"c":36},{"i":1747,"n":"Rico","f":"Diego","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"59","On":"13","Oa":"4.58","Od":"0.62","Mp":"3","Dp":"10","p":{"32":{"n":5,"s":1},"33":{"n":4.5,"s":1},"1":{"n":5}}},"c":36},{"i":2119,"n":"Butcher","f":"Matt","p":"A","r":1,"s":{"n":0},"c":36},{"i":2265,"n":"Taylor","f":"Kyle","p":"M","r":1,"s":{"n":0},"c":36},{"i":2595,"n":"Brooks","f":"David","p":"M","r":17,"s":{"n":0,"Og":"7","Os":"150","On":"29","Oa":"5.17","Od":"1.34","Mp":"23","Ap":"6","p":{"32":{"n":4},"33":{"n":4.5},"34":{"n":8,"g":1},"35":{"n":4.5},"36":{"n":5.5}}},"c":36},{"i":2843,"n":"Ofoborh","f":"Nathan","p":"A","r":1,"s":{"n":0},"c":36},{"i":2849,"n":"Travers","f":"Mark","p":"G","r":10,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"2","Gp":"2","p":{"37":{"n":7.5},"38":{"n":3.5}}},"c":36},{"i":2853,"n":"Dobre","f":"Mihai-Alexandru","p":"M","r":1,"s":{"n":0},"c":36},{"i":3223,"n":"Mepham","f":"Chris","p":"D","r":10,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"67","On":"14","Oa":"4.82","Od":"0.88","Dp":"14","p":{"32":{"n":4.5},"33":{"n":3.5},"34":{"n":6},"35":{"n":5},"36":{"n":4},"38":{"n":5.5,"s":1},"1":{"n":6,"g":1}}},"c":36},{"i":3500,"n":"Surridge","f":"Sam","p":"A","r":2,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"38":{"n":4.5,"s":1}}},"c":36},{"i":3646,"n":"Kelly","f":"Lloyd","p":"D","r":3,"s":{"n":0},"c":36},{"i":3693,"n":"Stacey","f":"Jack","p":"D","r":6,"s":{"n":0},"c":36},{"i":5987,"n":"Sherring","f":"Sam","p":"D","r":1,"s":{"n":0},"c":36},{"i":5989,"n":"Zemura","f":"Jordan","p":"D","r":1,"s":{"n":0},"c":36},{"i":5990,"n":"Dennis","f":"William","p":"G","r":1,"s":{"n":0},"c":36},{"i":5994,"n":"Danjuma Groeneveld","f":"Arnaut","p":"M","r":8,"s":{"n":0},"c":36},{"i":6147,"n":"Kilkenny","f":"Gavin","p":"M","r":1,"s":{"n":0},"c":36},{"i":2,"n":"Lacazette","f":"Alexandre","p":"A","r":42,"s":{"n":0,"Og":"13","Os":"188","On":"34","Oa":"5.53","Od":"1.09","Ap":"34","p":{"32":{"n":6.5,"g":1},"33":{"n":4.5},"35":{"n":5},"36":{"n":3.5},"37":{"n":6}}},"c":39},{"i":211,"n":"P\u00e9p\u00e9","f":"Nicolas","p":"A","r":28,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"21","Os":"224","On":"38","Oa":"5.89","Od":"1.47","Mp":"35","Ap":"3","p":{"32":{"n":8,"e":3044,"c":12,"g":1},"33":{"n":4.5,"e":3061,"c":12},"34":{"n":7,"e":3066,"c":12,"g":1},"35":{"n":4.5,"e":3074,"c":12},"36":{"n":4,"e":3086,"c":12},"37":{"n":7.5,"e":3094,"c":12,"g":2},"38":{"n":4.5,"e":3111,"c":12,"s":1},"1":{"n":4.5,"s":1}}},"c":39},{"i":572,"n":"Guendouzi","f":"Matteo","p":"M","r":11,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"169","On":"33","Oa":"5.12","Od":"0.64","Mp":"33","p":{"32":{"n":6},"33":{"n":4},"34":{"n":5,"s":1},"35":{"n":5},"36":{"n":5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":6},"1":{"n":5.5}}},"c":39},{"i":591,"n":"\u00d6zil","f":"Mesut","p":"M","r":13,"s":{"n":0,"Og":"5","Os":"118","On":"23","Oa":"5.13","Od":"1.22","Mp":"18","Ap":"5","p":{"32":{"n":5.5},"33":{"n":3.5},"34":{"n":5,"s":1},"35":{"n":5,"g":1},"37":{"n":5}}},"c":39},{"i":609,"n":"Cech","f":"Petr","p":"G","r":7,"s":{"n":0,"Os":"34","On":"6","Oa":"5.67","Od":"0.9","Gp":"6"},"c":39},{"i":623,"n":"David Luiz","f":"","p":"D","r":29,"s":{"n":0,"Og":"3","Os":"195","On":"35","Oa":"5.59","Od":"1.31","Dp":"35","p":{"32":{"n":5.5,"e":3481,"c":25},"33":{"n":6,"e":3489,"c":25},"34":{"n":5,"e":3503,"c":25},"35":{"n":4.5,"e":3511,"c":25},"36":{"n":5,"e":3524,"c":25},"37":{"n":7,"e":3531,"c":25,"g":1},"38":{"n":5,"e":3542,"c":25}}},"c":39},{"i":665,"n":"Mustafi","f":"Shkodran","p":"D","r":12,"s":{"n":0,"Og":"2","Os":"152","On":"30","Oa":"5.07","Od":"1.17","Dp":"30","p":{"32":{"n":6},"33":{"n":5},"34":{"n":6},"35":{"n":2.5},"36":{"n":3},"37":{"n":6.5},"38":{"n":7}}},"c":39},{"i":676,"n":"Mkhitaryan","f":"Henrikh","p":"M","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"6","Os":"132","On":"25","Oa":"5.3","Od":"1.04","Mp":"19","Ap":"6","p":{"32":{"n":5,"s":1},"33":{"n":4.5},"34":{"n":6},"36":{"n":4},"37":{"n":5},"38":{"n":6.5},"1":{"n":5}}},"c":39},{"i":728,"n":"Xhaka","f":"Granit","p":"M","r":12,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"159","On":"29","Oa":"5.48","Od":"1.22","Mp":"27","Dp":"2","p":{"34":{"n":6.5},"36":{"n":3.5},"37":{"n":4.5},"1":{"n":6}}},"c":39},{"i":732,"n":"Monreal","f":"Nacho","p":"D","r":15,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"122","On":"23","Oa":"5.33","Od":"0.69","Mp":"1","Dp":"22","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":6},"37":{"n":6},"38":{"n":6},"1":{"n":5}}},"c":39},{"i":795,"n":"Beller\u00edn","f":"H\u00e9ctor","p":"D","r":10,"s":{"n":0,"Oao":"1","Os":"93","On":"18","Oa":"5.17","Od":"0.97","Mp":"5","Dp":"13"},"c":39},{"i":860,"n":"Chambers","f":"Calum","p":"D","r":17,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"159","On":"31","Oa":"5.15","Od":"1.07","Mp":"22","Dp":"9","p":{"32":{"n":4.5,"e":3483,"c":71},"33":{"n":2.5,"e":3496,"c":71},"34":{"n":5.5,"e":3501,"c":71},"35":{"n":6,"e":3508,"c":71},"36":{"n":5.5,"e":3521,"c":71},"37":{"n":5.5,"e":3537,"c":71},"38":{"n":4,"e":3541,"c":71},"1":{"n":5.5}}},"c":39},{"i":917,"n":"Mohamed Elneny","f":"","p":"M","r":7,"s":{"n":0,"Os":"39","On":"8","Oa":"4.88","Od":"0.82","Mp":"8","p":{"32":{"n":5.5,"s":1},"33":{"n":3.5},"35":{"n":5},"38":{"n":6.5}}},"c":39},{"i":983,"n":"Holding","f":"Rob","p":"D","r":4,"s":{"n":0,"Os":"54","On":"10","Oa":"5.45","Od":"0.65","Dp":"10"},"c":39},{"i":1090,"n":"Jenkinson","f":"Carl","p":"D","r":3,"s":{"n":0,"Os":"13","On":"3","Oa":"4.5","Od":"0.71","Mp":"2","Dp":"1","p":{"35":{"n":3.5}}},"c":39},{"i":1124,"n":"Maitland-Niles","f":"Ainsley","p":"M","r":8,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"1","Os":"76","On":"16","Oa":"4.78","Od":"0.93","Mp":"12","Dp":"4","p":{"32":{"n":5.5},"33":{"n":4},"34":{"n":5.5,"s":1},"35":{"n":5,"s":1},"36":{"n":3},"1":{"n":6.5}}},"c":39},{"i":1289,"n":"Kolasinac","f":"Sead","p":"D","r":10,"s":{"n":0,"Oao":"1","Os":"115","On":"24","Oa":"4.79","Od":"1.03","Mp":"13","Dp":"11","p":{"32":{"n":5},"33":{"n":3.5},"35":{"n":3.5},"36":{"n":3.5},"37":{"n":5,"s":1}}},"c":39},{"i":1346,"n":"Joe Willock","f":"","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"3","p":{"38":{"n":4.5},"1":{"n":5}}},"c":39},{"i":1389,"n":"Nelson","f":"Reiss","p":"A","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"1":{"n":5.5}}},"c":39},{"i":1702,"n":"Dani Ceballos","f":"","p":"M","r":17,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"3","Os":"123","On":"23","Oa":"5.37","Od":"0.94","Mp":"21","Ap":"2","p":{"35":{"n":4,"e":2316,"c":62},"1":{"n":5,"s":1}}},"c":39},{"i":1817,"n":"Campbell","f":"Joel","p":"A","r":1,"s":{"n":0},"c":39},{"i":2013,"n":"Mart\u00ednez","f":"Emiliano","p":"G","r":7,"s":{"n":0},"c":39},{"i":2064,"n":"Macey","f":"Matt","p":"G","r":1,"s":{"n":0},"c":39},{"i":2066,"n":"Eddie Nketiah","f":"","p":"A","r":1,"s":{"n":0,"Og":"1","Os":"24","On":"5","Oa":"4.8","Od":"0.68","Ap":"5","p":{"36":{"n":4,"s":1},"38":{"n":6,"g":1,"s":1}}},"c":39},{"i":2071,"n":"Gilmour","f":"Charlie","p":"M","r":1,"s":{"n":0},"c":39},{"i":2123,"n":"Iliev","f":"Dejan","p":"G","r":1,"s":{"n":0},"c":39},{"i":2125,"n":"Osei-Tutu","f":"Jordi","p":"D","r":1,"s":{"n":0},"c":39},{"i":2203,"n":"Mavropanos","f":"Konstantinos","p":"D","r":5,"s":{"n":0,"Os":"19","On":"4","Oa":"4.88","Od":"0.54","Dp":"4","p":{"34":{"n":5.5},"35":{"n":4},"38":{"n":5}}},"c":39},{"i":2302,"n":"Aubameyang","f":"Pierre-Emerick","p":"A","r":46,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"23","Os":"200","On":"36","Oa":"5.57","Od":"1.26","Mp":"7","Ap":"29","p":{"32":{"n":6,"s":1},"33":{"n":4.5,"s":1},"34":{"n":6,"g":1},"35":{"n":6,"g":1},"36":{"n":4.5},"37":{"n":6,"g":1},"38":{"n":8,"g":2},"1":{"n":6,"g":1}}},"c":39},{"i":2500,"n":"Leno","f":"Bernd","p":"G","r":13,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Os":"181","On":"33","Oa":"5.5","Od":"0.99","Gp":"33","p":{"32":{"n":6},"33":{"n":6},"34":{"n":6},"35":{"n":4.5},"36":{"n":6.5},"37":{"n":6},"38":{"n":6},"1":{"n":7}}},"c":39},{"i":2531,"n":"Sokratis","f":"","p":"D","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"128","On":"25","Oa":"5.12","Od":"1.02","Dp":"25","p":{"32":{"n":6},"33":{"n":5.5},"36":{"n":3},"37":{"n":5.5},"1":{"n":6}}},"c":39},{"i":2535,"n":"Lichtsteiner","f":"Stephan","p":"D","r":5,"s":{"n":0,"Os":"57","On":"13","Oa":"4.42","Od":"0.65","Dp":"13","p":{"37":{"n":5},"38":{"n":5.5}}},"c":39},{"i":2549,"n":"Torreira","f":"Lucas","p":"M","r":13,"s":{"n":0,"Og":"2","Os":"180","On":"33","Oa":"5.45","Od":"1.01","Mp":"33","p":{"34":{"n":5},"35":{"n":4.5,"s":1},"36":{"n":4.5},"37":{"n":5.5}}},"c":39},{"i":2887,"n":"Smith Rowe","f":"Emile","p":"M","r":1,"s":{"n":0},"c":39},{"i":2926,"n":"John-Jules","f":"Tyreece","p":"A","r":1,"s":{"n":0},"c":39},{"i":2927,"n":"Saka","f":"Bukayo","p":"A","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1"},"c":39},{"i":2931,"n":"Medley","f":"Zech","p":"D","r":1,"s":{"n":0},"c":39},{"i":2934,"n":"Pleguezuelo","f":"Julio","p":"D","r":1,"s":{"n":0},"c":39},{"i":5416,"n":"Gabriel Martinelli","f":"","p":"M","r":4,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":39},{"i":5428,"n":"Thompson","f":"Dominic","p":"D","r":1,"s":{"n":0},"c":39},{"i":5429,"n":"Olayinka","f":"James","p":"M","r":1,"s":{"n":0},"c":39},{"i":5440,"n":"Burton","f":"Robbie","p":"M","r":1,"s":{"n":0},"c":39},{"i":6122,"n":"Tierney","f":"Kieran","p":"D","r":11,"s":{"n":0},"c":39},{"i":14,"n":"Mendy","f":"Benjamin","p":"D","r":10,"s":{"n":0,"Os":"50","On":"9","Oa":"5.56","Od":"0.72","Mp":"1","Dp":"8","p":{"34":{"n":5}}},"c":40},{"i":25,"n":"Bernardo Silva","f":"","p":"M","r":32,"s":{"n":0,"Og":"6","Os":"198","On":"35","Oa":"5.66","Od":"0.94","Mp":"26","Ap":"9","p":{"32":{"n":7.5,"g":1},"34":{"n":5.5,"s":1},"35":{"n":6},"36":{"n":5.5},"37":{"n":5},"38":{"n":5.5}}},"c":40},{"i":588,"n":"Ag\u00fcero","f":"Sergio","p":"A","r":47,"s":{"g":"1","s":"5","n":"1","a":"5","Sg":"1","Ss":"5","Sn":"1","Sa":"5","Og":"22","Os":"193","On":"33","Oa":"5.85","Od":"1.24","Ap":"33","p":{"32":{"n":6.5,"g":1},"34":{"n":5},"35":{"n":6},"36":{"n":7,"g":1},"37":{"n":5},"38":{"n":7,"g":1},"1":{"n":5,"g":1,"s":1}}},"c":40},{"i":593,"n":"De Bruyne","f":"Kevin","p":"M","r":18,"s":{"s":"7","n":"1","a":"7.5","Ss":"7","Sn":"1","Sa":"7.5","Og":"2","Os":"104","On":"19","Oa":"5.5","Od":"1.05","Mp":"19","p":{"32":{"n":5.5},"33":{"n":7,"g":1},"34":{"n":7.5},"35":{"n":4.5},"38":{"n":5,"s":1},"1":{"n":7.5}}},"c":40},{"i":594,"n":"Sterling","f":"Raheem","p":"A","r":44,"s":{"g":"3","s":"8","n":"1","a":"8.5","Sg":"3","Ss":"8","Sn":"1","Sa":"8.5","Og":"19","Os":"203","On":"34","Oa":"5.99","Od":"1.41","Mp":"3","Ap":"31","p":{"32":{"n":5.5},"34":{"n":7,"g":2},"35":{"n":3},"36":{"n":5},"37":{"n":4},"38":{"n":6},"1":{"n":8.5,"g":3}}},"c":40},{"i":599,"n":"Silva","f":"David","p":"M","r":28,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"6","Os":"197","On":"34","Oa":"5.79","Od":"1.01","Mp":"34","p":{"32":{"n":5.5},"34":{"n":4.5},"35":{"n":5,"s":1},"36":{"n":5},"37":{"n":5},"38":{"n":6},"1":{"n":5.5}}},"c":40},{"i":603,"n":"Mahrez","f":"Riyad","p":"M","r":11,"s":{"s":"8","n":"1","a":"8","Ss":"8","Sn":"1","Sa":"8","Og":"7","Os":"148","On":"27","Oa":"5.5","Od":"1.35","Mp":"3","Ap":"24","p":{"32":{"n":4.5,"s":1},"33":{"n":6},"38":{"n":7.5,"g":1},"1":{"n":8}}},"c":40},{"i":639,"n":"Fernandinho","f":"","p":"M","r":22,"s":{"n":0,"Og":"1","Os":"164","On":"28","Oa":"5.86","Od":"0.97","Mp":"27","Dp":"1","p":{"32":{"n":4.5,"s":1},"33":{"n":6},"35":{"n":5,"s":1}}},"c":40},{"i":654,"n":"Stones","f":"John","p":"D","r":14,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"133","On":"24","Oa":"5.54","Od":"0.64","Mp":"1","Dp":"23","p":{"33":{"n":5.5},"34":{"n":5,"s":1},"35":{"n":6},"36":{"n":5.5,"s":1},"37":{"n":5,"s":1},"1":{"n":6.5}}},"c":40},{"i":662,"n":"San\u00e9","f":"Leroy","p":"A","r":25,"s":{"n":0,"Og":"10","Os":"167","On":"30","Oa":"5.57","Od":"1.26","Mp":"1","Ap":"29","p":{"33":{"n":7,"g":1},"34":{"n":6},"35":{"n":4.5,"s":1},"36":{"n":5},"37":{"n":4,"s":1}}},"c":40},{"i":674,"n":"Otamendi","f":"Nicol\u00e1s","p":"D","r":9,"s":{"n":0,"Os":"101","On":"18","Oa":"5.61","Od":"0.72","Dp":"18","p":{"32":{"n":6},"36":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":40},{"i":678,"n":"Walker","f":"Kyle","p":"D","r":22,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"180","On":"33","Oa":"5.45","Od":"0.7","Dp":"33","p":{"32":{"n":5},"33":{"n":6,"s":1},"34":{"n":5.5},"35":{"n":5.5},"36":{"n":6.5},"37":{"n":5.5},"38":{"n":5},"1":{"n":7}}},"c":40},{"i":863,"n":"Bravo","f":"Claudio","p":"G","r":6,"s":{"n":0},"c":40},{"i":866,"n":"G\u00fcndogan","f":"Ilkay","p":"M","r":23,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"6","Os":"178","On":"31","Oa":"5.76","Od":"0.88","Mp":"31","p":{"32":{"n":6.5},"34":{"n":6.5},"35":{"n":6},"36":{"n":5},"37":{"n":6},"38":{"n":7.5,"g":1},"1":{"n":5,"s":1}}},"c":40},{"i":931,"n":"Kompany","f":"Vincent","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"95","On":"17","Oa":"5.62","Od":"0.56","Dp":"17","p":{"34":{"n":5.5},"36":{"n":5.5},"37":{"n":7,"g":1},"38":{"n":5.5}}},"c":40},{"i":966,"n":"Gabriel Jesus","f":"","p":"A","r":14,"s":{"g":"1","s":"6","n":"1","a":"6.5","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"8","Os":"146","On":"29","Oa":"5.05","Od":"1.05","Ap":"29","p":{"32":{"n":4,"s":1},"33":{"n":6},"34":{"n":6,"g":1,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4,"s":1},"1":{"n":6.5,"g":1}}},"c":40},{"i":1005,"n":"Foden","f":"Phil","p":"M","r":8,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"67","On":"14","Oa":"4.82","Od":"0.77","Mp":"4","Ap":"10","p":{"33":{"n":6.5},"35":{"n":6.5,"g":1},"37":{"n":4},"1":{"n":4,"s":1}}},"c":40},{"i":1049,"n":"Aleix Garc\u00eda","f":"","p":"M","r":1,"s":{"n":0,"Og":"2","Os":"155","On":"31","Oa":"5.02","Od":"0.94","Mp":"30","Ap":"1","p":{"32":{"n":6,"e":2284,"c":53},"33":{"n":3.5,"e":2295,"c":53},"35":{"n":5,"e":2315,"c":53,"s":1},"36":{"n":5,"e":2323,"c":53}}},"c":40},{"i":1099,"n":"Tosin Adarabioyo","f":"","p":"D","r":1,"s":{"n":0},"c":40},{"i":1279,"n":"Ederson","f":"","p":"G","r":20,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"206","On":"38","Oa":"5.43","Od":"0.69","Gp":"38","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":5},"35":{"n":7},"36":{"n":5.5},"37":{"n":5.5},"38":{"n":5},"1":{"n":6.5}}},"c":40},{"i":1357,"n":"Zinchenko","f":"Oleksandr","p":"M","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"81","On":"15","Oa":"5.43","Od":"0.81","Mp":"1","Dp":"14","p":{"32":{"n":5.5},"33":{"n":5},"35":{"n":5},"36":{"n":6.5},"37":{"n":4.5},"38":{"n":5},"1":{"n":6}}},"c":40},{"i":1367,"n":"Grimshaw","f":"Daniel","p":"G","r":1,"s":{"n":0},"c":40},{"i":1617,"n":"Laporte","f":"Aymeric","p":"D","r":25,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"200","On":"35","Oa":"5.71","Od":"0.79","Dp":"35","p":{"32":{"n":6},"33":{"n":7},"34":{"n":5.5},"35":{"n":6},"36":{"n":6.5},"37":{"n":6},"38":{"n":7,"g":1},"1":{"n":6}}},"c":40},{"i":1915,"n":"Moreno","f":"Marlos","p":"A","r":1,"s":{"n":0},"c":40},{"i":2124,"n":"Nmecha","f":"Lukas","p":"A","r":3,"s":{"n":0},"c":40},{"i":2427,"n":"Rodrigo","f":"","p":"M","r":17,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"3","Os":"212","On":"35","Oa":"6.06","Od":"0.88","Mp":"35","p":{"31":{"n":5.5,"e":2277,"c":54},"32":{"n":7.5,"e":2283,"c":54},"33":{"n":6.5,"e":2298,"c":54},"34":{"n":5.5,"e":2303,"c":54},"35":{"n":6,"e":2312,"c":54,"s":1},"36":{"n":4,"e":2328,"c":54},"37":{"n":6,"e":2333,"c":54},"38":{"n":7,"e":2348,"c":54,"g":1},"1":{"n":6.5}}},"c":40},{"i":2756,"n":"Arzani","f":"Daniel","p":"M","r":8,"s":{"n":0},"c":40},{"i":2818,"n":"Sandler","f":"Philippe","p":"D","r":1,"s":{"n":0},"c":40},{"i":2830,"n":"Muric","f":"Arijanet","p":"G","r":1,"s":{"n":0},"c":40},{"i":2883,"n":"Bernab\u00e9","f":"Adri\u00e1n","p":"M","r":1,"s":{"n":0},"c":40},{"i":2928,"n":"Gomes","f":"Claudio","p":"M","r":1,"s":{"n":0},"c":40},{"i":2973,"n":"Eric Garcia","f":"","p":"D","r":1,"s":{"n":0},"c":40},{"i":3224,"n":"Poveda-Ocampo","f":"Ian Carlo","p":"A","r":1,"s":{"n":0},"c":40},{"i":3226,"n":"Bolton","f":"Luke","p":"M","r":1,"s":{"n":0},"c":40},{"i":3499,"n":"Nmecha","f":"Felix","p":"M","r":3,"s":{"n":0},"c":40},{"i":3514,"n":"Humphreys-Grant","f":"Cameron","p":"D","r":1,"s":{"n":0},"c":40},{"i":3692,"n":"Palmer-Brown","f":"Erik","p":"D","r":1,"s":{"n":0},"c":40},{"i":3696,"n":"Angeli\u00f1o","f":"","p":"D","r":9,"s":{"n":0},"c":40},{"i":4567,"n":"Jo\u00e3o Cancelo","f":"","p":"D","r":19,"s":{"n":0},"c":40},{"i":5412,"n":"Bazunu","f":"Gavin","p":"G","r":1,"s":{"n":0},"c":40},{"i":5417,"n":"Dionkou","f":"Alpha Richard","p":"D","r":1,"s":{"n":0},"c":40},{"i":5419,"n":"Zoubdi Touaizi","f":"Nabili","p":"A","r":1,"s":{"n":0},"c":40},{"i":5420,"n":"Harwood-Bellis","f":"Taylor","p":"D","r":1,"s":{"n":0},"c":40},{"i":5421,"n":"Knight","f":"Ben","p":"M","r":1,"s":{"n":0},"c":40},{"i":5438,"n":"Iker Pozo","f":"","p":"M","r":1,"s":{"n":0},"c":40},{"i":5993,"n":"Doyle","f":"Tommy","p":"M","r":1,"s":{"n":0},"c":40},{"i":6128,"n":"Carson","f":"Scott","p":"G","r":2,"s":{"n":0},"c":40},{"i":388,"n":"Bissouma","f":"Yves","p":"M","r":11,"s":{"n":0,"Os":"128","On":"27","Oa":"4.76","Od":"0.86","Mp":"17","Ap":"10","p":{"32":{"n":6.5},"33":{"n":5.5},"34":{"n":3},"36":{"n":5,"s":1},"37":{"n":6},"38":{"n":4}}},"c":45},{"i":1056,"n":"Bernardo","f":"","p":"D","r":14,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"111","On":"22","Oa":"5.05","Od":"0.9","Dp":"22","p":{"32":{"n":5},"33":{"n":5},"34":{"n":2.5},"35":{"n":5,"s":1},"36":{"n":6},"37":{"n":6},"38":{"n":4},"1":{"n":5,"s":1}}},"c":45},{"i":1281,"n":"Murray","f":"Glenn","p":"A","r":19,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"13","Os":"179","On":"38","Oa":"4.72","Od":"1.1","Ap":"38","p":{"32":{"n":4},"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":4.5},"36":{"n":5.5},"37":{"n":5.5,"g":1},"38":{"n":4.5,"g":1},"1":{"n":4}}},"c":45},{"i":1282,"n":"Knockaert","f":"Anthony","p":"M","r":8,"s":{"n":0,"Og":"2","Os":"148","On":"29","Oa":"5.1","Od":"0.92","Mp":"25","Ap":"4","p":{"32":{"n":5},"34":{"n":2},"36":{"n":5.5,"s":1},"37":{"n":5,"s":1},"38":{"n":4.5}}},"c":45},{"i":1283,"n":"Hemed","f":"Tomer","p":"A","r":7,"s":{"n":0},"c":45},{"i":1284,"n":"Bruno","f":"","p":"D","r":10,"s":{"n":0,"Os":"64","On":"13","Oa":"4.96","Od":"0.95","Dp":"13","p":{"35":{"n":5.5},"36":{"n":5},"37":{"n":5.5},"38":{"n":3.5}}},"c":45},{"i":1294,"n":"Stephens","f":"Dale","p":"M","r":17,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"155","On":"30","Oa":"5.18","Od":"0.84","Mp":"30","p":{"32":{"n":4},"33":{"n":5},"34":{"n":3},"35":{"n":6},"36":{"n":5.5},"37":{"n":6},"1":{"n":6}}},"c":45},{"i":1296,"n":"Dunk","f":"Lewis","p":"D","r":20,"s":{"s":"7","n":"1","a":"7.5","Ss":"7","Sn":"1","Sa":"7.5","Og":"2","Os":"185","On":"36","Oa":"5.15","Od":"1.17","Dp":"36","p":{"32":{"n":4.5},"33":{"n":7},"34":{"n":2.5},"35":{"n":6},"36":{"n":5},"37":{"n":5.5},"38":{"n":3.5},"1":{"n":7.5}}},"c":45},{"i":1303,"n":"Gro\u00df","f":"Pascal","p":"M","r":14,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"126","On":"25","Oa":"5.06","Od":"0.91","Mp":"20","Ap":"5","p":{"33":{"n":5.5},"35":{"n":5.5},"36":{"n":6,"g":1},"37":{"n":5.5},"38":{"n":4.5},"1":{"n":6}}},"c":45},{"i":1306,"n":"Solly March","f":"","p":"M","r":10,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"185","On":"35","Oa":"5.3","Od":"0.73","Mp":"21","Dp":"1","Ap":"13","p":{"32":{"n":5,"s":1},"33":{"n":5,"s":1},"35":{"n":5},"36":{"n":6,"s":1},"37":{"n":6},"1":{"n":6}}},"c":45},{"i":1308,"n":"Pr\u00f6pper","f":"Davy","p":"M","r":8,"s":{"s":"7","n":"1","a":"7","Ss":"7","Sn":"1","Sa":"7","Og":"1","Os":"154","On":"30","Oa":"5.13","Od":"0.85","Mp":"30","p":{"32":{"n":4},"34":{"n":3.5},"35":{"n":5},"1":{"n":7}}},"c":45},{"i":1312,"n":"Duffy","f":"Shane","p":"D","r":25,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Og":"5","Os":"189","On":"35","Oa":"5.4","Od":"1.26","Dp":"35","p":{"32":{"n":5},"33":{"n":5},"34":{"n":3},"35":{"n":6},"36":{"n":5},"37":{"n":7.5},"38":{"n":3.5},"1":{"n":6.5}}},"c":45},{"i":1313,"n":"Izquierdo","f":"Jos\u00e9","p":"A","r":6,"s":{"n":0,"Os":"71","On":"15","Oa":"4.77","Od":"0.4","Mp":"7","Ap":"8","p":{"34":{"n":4.5,"s":1},"35":{"n":4.5},"36":{"n":4}}},"c":45},{"i":1323,"n":"Ryan","f":"Mat","p":"G","r":17,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"182","On":"34","Oa":"5.37","Od":"1.26","Gp":"34","p":{"32":{"n":5},"33":{"n":6},"34":{"n":2.5},"35":{"n":7},"36":{"n":5},"37":{"n":7.5},"38":{"n":4.5},"1":{"n":6.5}}},"c":45},{"i":1324,"n":"Suttner","f":"Markus","p":"D","r":1,"s":{"n":0},"c":45},{"i":1336,"n":"Bong","f":"Ga\u00ebtan","p":"D","r":6,"s":{"n":0,"Os":"94","On":"21","Oa":"4.5","Od":"0.67","Dp":"21","p":{"35":{"n":5}}},"c":45},{"i":1338,"n":"Kayal","f":"Beram","p":"M","r":6,"s":{"n":0,"Og":"1","Os":"90","On":"18","Oa":"5.03","Od":"0.87","Mp":"18","p":{"33":{"n":5,"s":1},"35":{"n":5,"s":1},"36":{"n":4.5},"37":{"n":5,"s":1},"38":{"n":3.5}}},"c":45},{"i":1356,"n":"Molumby","f":"Jayson","p":"M","r":1,"s":{"n":0},"c":45},{"i":1361,"n":"Towell","f":"Richard","p":"A","r":1,"s":{"n":0},"c":45},{"i":1378,"n":"Connolly","f":"Aaron","p":"A","r":1,"s":{"n":0},"c":45},{"i":1473,"n":"Mooy","f":"Aaron","p":"M","r":12,"s":{"n":0,"Og":"3","Os":"141","On":"28","Oa":"5.05","Od":"1.02","Mp":"26","Ap":"2","p":{"32":{"n":4.5,"e":3482,"c":44},"33":{"n":4,"e":3491,"c":44,"g":1},"34":{"n":4.5,"e":3506,"c":44,"s":1},"35":{"n":5,"e":3513,"c":44},"37":{"n":5,"e":3533,"c":44},"38":{"n":5.5,"e":3545,"c":44}}},"c":45},{"i":1612,"n":"Andone","f":"Florin","p":"A","r":6,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"106","On":"24","Oa":"4.44","Od":"0.9","Ap":"24","p":{"33":{"n":3.5},"34":{"n":3.5},"36":{"n":4},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1},"1":{"n":6,"g":1,"s":1}}},"c":45},{"i":1761,"n":"Montoya","f":"Mart\u00edn","p":"D","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"122","On":"26","Oa":"4.71","Od":"0.7","Dp":"26","p":{"32":{"n":5},"33":{"n":5},"34":{"n":2.5},"38":{"n":5,"s":1},"1":{"n":5}}},"c":45},{"i":2025,"n":"Schelotto","f":"Ezequiel","p":"D","r":5,"s":{"n":0},"c":45},{"i":2255,"n":"Locadia","f":"J\u00fcrgen","p":"A","r":5,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"2","Os":"124","On":"27","Oa":"4.59","Od":"0.84","Mp":"7","Ap":"20","p":{"32":{"n":5,"s":1},"33":{"n":4.5},"34":{"n":3},"38":{"n":4.5,"s":1},"1":{"n":5.5}}},"c":45},{"i":2519,"n":"Balogun","f":"Leon","p":"D","r":3,"s":{"n":0,"Og":"1","Os":"39","On":"8","Oa":"4.88","Od":"0.99","Dp":"8"},"c":45},{"i":2520,"n":"Button","f":"David","p":"G","r":7,"s":{"n":0,"Os":"23","On":"4","Oa":"5.88","Od":"0.74","Gp":"4"},"c":45},{"i":2525,"n":"Steele","f":"Jason","p":"G","r":1,"s":{"n":0},"c":45},{"i":2537,"n":"Tau","f":"Percy","p":"A","r":11,"s":{"n":0},"c":45},{"i":2576,"n":"Jahanbakhsh","f":"Alireza","p":"A","r":9,"s":{"n":0,"Os":"77","On":"18","Oa":"4.31","Od":"0.71","Mp":"7","Ap":"11","p":{"32":{"n":4},"33":{"n":4},"37":{"n":3},"38":{"n":3.5}}},"c":45},{"i":2850,"n":"Gyokeres","f":"Viktor","p":"A","r":1,"s":{"n":0},"c":45},{"i":2854,"n":"Collar","f":"Will","p":"M","r":1,"s":{"n":0},"c":45},{"i":2856,"n":"Barclay","f":"Ben","p":"D","r":1,"s":{"n":0},"c":45},{"i":2933,"n":"White","f":"Ben","p":"D","r":1,"s":{"n":0},"c":45},{"i":2986,"n":"Burn","f":"Dan","p":"D","r":1,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Dp":"1","p":{"1":{"n":6}}},"c":45},{"i":3119,"n":"Sanders","f":"Max","p":"M","r":1,"s":{"n":0},"c":45},{"i":3225,"n":"Richards","f":"Taylor","p":"A","r":1,"s":{"n":0},"c":45},{"i":3353,"n":"S\u00e1nchez","f":"Robert","p":"G","r":1,"s":{"n":0},"c":45},{"i":3511,"n":"Ostigard","f":"Leo","p":"D","r":1,"s":{"n":0},"c":45},{"i":3663,"n":"Baluta","f":"Tudor","p":"D","r":3,"s":{"n":0},"c":45},{"i":3665,"n":"Mlakar","f":"Jan","p":"A","r":1,"s":{"n":0},"c":45},{"i":3686,"n":"Clarke","f":"Matthew","p":"D","r":2,"s":{"n":0},"c":45},{"i":3699,"n":"Trossard","f":"Leandro","p":"M","r":11,"s":{"n":0},"c":45},{"i":5999,"n":"Maupay","f":"Neal","p":"A","r":13,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"1":{"n":6,"g":1,"s":1}}},"c":45},{"i":6000,"n":"Webster","f":"Adam","p":"D","r":9,"s":{"n":0},"c":45},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":16,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"6","Os":"172","On":"34","Oa":"5.06","Od":"1.1","Mp":"3","Ap":"31","p":{"32":{"n":5,"e":3049,"c":19},"33":{"n":5,"e":3056,"c":19},"34":{"n":6,"e":3069,"c":19},"35":{"n":3.5,"e":3078,"c":19},"36":{"n":5,"e":3088,"c":19},"37":{"n":3.5,"e":3099,"c":19},"38":{"n":6,"e":3108,"c":19},"1":{"n":4.5,"s":1}}},"c":46},{"i":132,"n":"Saivet","f":"Henri","p":"M","r":3,"s":{"n":0},"c":46},{"i":628,"n":"Carroll","f":"Andy","p":"A","r":3,"s":{"n":0,"Os":"53","On":"12","Oa":"4.42","Od":"0.49","Ap":"12"},"c":46},{"i":707,"n":"Rond\u00f3n","f":"Salom\u00f3n","p":"A","r":25,"s":{"n":0,"Og":"11","Os":"166","On":"31","Oa":"5.37","Od":"1.26","Ap":"31","p":{"32":{"n":4},"33":{"n":5},"34":{"n":4.5},"35":{"n":6.5},"36":{"n":5.5},"37":{"n":7,"g":1},"38":{"n":7,"g":1}}},"c":46},{"i":814,"n":"Manquillo","f":"Javier","p":"D","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"95","On":"19","Oa":"5","Od":"0.67","Mp":"2","Dp":"17","p":{"34":{"n":6},"35":{"n":5},"36":{"n":5},"37":{"n":5},"1":{"n":4.5}}},"c":46},{"i":839,"n":"Ki Sung-yueng","f":"","p":"M","r":10,"s":{"n":0,"Os":"94","On":"18","Oa":"5.22","Od":"0.56","Mp":"18","p":{"32":{"n":5,"s":1},"33":{"n":5},"34":{"n":6},"35":{"n":6},"36":{"n":4.5,"s":1},"37":{"n":5}}},"c":46},{"i":913,"n":"Federico Fern\u00e1ndez","f":"","p":"D","r":7,"s":{"n":0,"Os":"94","On":"19","Oa":"4.95","Od":"0.87","Dp":"19","p":{"35":{"n":5,"s":1},"36":{"n":5},"38":{"n":5,"s":1}}},"c":46},{"i":1466,"n":"Gayle","f":"Dwight","p":"A","r":12,"s":{"n":0},"c":46},{"i":1468,"n":"Ritchie","f":"Matt","p":"M","r":20,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"2","Os":"191","On":"36","Oa":"5.32","Od":"0.93","Mp":"16","Dp":"20","p":{"32":{"n":5},"33":{"n":5},"34":{"n":6},"35":{"n":6},"36":{"n":5},"37":{"n":5.5},"38":{"n":7.5},"1":{"n":4.5}}},"c":46},{"i":1469,"n":"Lascelles","f":"Jamaal","p":"D","r":15,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"172","On":"32","Oa":"5.38","Od":"0.94","Dp":"32","p":{"32":{"n":5.5},"33":{"n":5},"34":{"n":7},"35":{"n":6},"37":{"n":4.5},"38":{"n":7.5},"1":{"n":4.5}}},"c":46},{"i":1475,"n":"Darlow","f":"Karl","p":"G","r":1,"s":{"n":0},"c":46},{"i":1476,"n":"Shelvey","f":"Jonjo","p":"M","r":3,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"82","On":"16","Oa":"5.16","Od":"0.84","Mp":"16","p":{"33":{"n":4.5,"s":1},"36":{"n":5},"38":{"n":7.5,"g":1},"1":{"n":4}}},"c":46},{"i":1485,"n":"Lejeune","f":"Florian","p":"D","r":10,"s":{"n":0,"Os":"65","On":"12","Oa":"5.42","Od":"0.86","Dp":"12","p":{"32":{"n":4.5},"33":{"n":5.5}}},"c":46},{"i":1487,"n":"Atsu","f":"Christian","p":"M","r":10,"s":{"n":0,"Og":"1","Os":"138","On":"27","Oa":"5.11","Od":"0.58","Mp":"27","p":{"33":{"n":4.5,"s":1},"34":{"n":4.5,"s":1},"35":{"n":5,"s":1},"36":{"n":5},"37":{"n":7,"g":1},"38":{"n":6.5}}},"c":46},{"i":1488,"n":"Hayden","f":"Isaac","p":"M","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"142","On":"26","Oa":"5.48","Od":"0.91","Mp":"25","Dp":"1","p":{"32":{"n":5},"33":{"n":5},"34":{"n":6.5},"35":{"n":5.5},"36":{"n":6},"37":{"n":5},"38":{"n":6},"1":{"n":6}}},"c":46},{"i":1491,"n":"Dummett","f":"Paul","p":"D","r":11,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"134","On":"26","Oa":"5.17","Od":"0.78","Dp":"26","p":{"32":{"n":4.5},"33":{"n":5,"s":1},"34":{"n":6},"35":{"n":5.5},"36":{"n":4.5},"37":{"n":4},"38":{"n":6.5},"1":{"n":5.5}}},"c":46},{"i":1492,"n":"Yedlin","f":"DeAndre","p":"D","r":8,"s":{"n":0,"Og":"1","Oao":"1","Os":"131","On":"28","Oa":"4.7","Od":"0.74","Mp":"3","Dp":"25","p":{"32":{"n":4},"33":{"n":4}}},"c":46},{"i":1495,"n":"Diam\u00e9","f":"Mohamed","p":"M","r":6,"s":{"n":0,"Os":"138","On":"28","Oa":"4.93","Od":"0.74","Mp":"28","p":{"32":{"n":4.5},"34":{"n":5,"s":1},"35":{"n":5,"s":1},"38":{"n":7}}},"c":46},{"i":1497,"n":"Colback","f":"Jack","p":"M","r":3,"s":{"n":0},"c":46},{"i":1499,"n":"Clark","f":"Ciaran","p":"D","r":3,"s":{"n":0,"Og":"3","Os":"55","On":"10","Oa":"5.55","Od":"0.85","Dp":"10"},"c":46},{"i":1504,"n":"Murphy","f":"Jacob","p":"M","r":5,"s":{"n":0,"Os":"44","On":"9","Oa":"4.94","Od":"0.64","Mp":"9"},"c":46},{"i":1508,"n":"Elliot","f":"Robert","p":"G","r":6,"s":{"n":0},"c":46},{"i":1515,"n":"Aarons","f":"Rolando","p":"M","r":1,"s":{"n":0},"c":46},{"i":1516,"n":"Sterry","f":"Jamie","p":"D","r":1,"s":{"n":0},"c":46},{"i":1519,"n":"Lazaar","f":"Achraf","p":"D","r":1,"s":{"n":0},"c":46},{"i":1725,"n":"Sch\u00e4r","f":"Fabian","p":"D","r":18,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"132","On":"25","Oa":"5.28","Od":"1.09","Dp":"25","p":{"33":{"n":5},"34":{"n":6},"35":{"n":5},"36":{"n":5},"37":{"n":4},"38":{"n":7,"g":1},"1":{"n":5}}},"c":46},{"i":2306,"n":"Dubravka","f":"Martin","p":"G","r":15,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"208","On":"38","Oa":"5.49","Od":"0.95","Gp":"38","p":{"32":{"n":4.5},"33":{"n":5},"34":{"n":7.5},"35":{"n":5.5},"36":{"n":5},"37":{"n":4.5},"38":{"n":7},"1":{"n":5}}},"c":46},{"i":2553,"n":"Muto","f":"Yoshinori","p":"A","r":8,"s":{"n":0,"Og":"1","Os":"72","On":"16","Oa":"4.5","Od":"0.53","Ap":"16","p":{"32":{"n":4.5,"s":1},"36":{"n":4.5,"s":1},"37":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":46},{"i":2580,"n":"Freddy Woodman","f":"","p":"G","r":1,"s":{"n":0},"c":46},{"i":2758,"n":"Sean Longstaff","f":"","p":"M","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"54","On":"10","Oa":"5.45","Od":"0.85","Mp":"10","p":{"1":{"n":4.5}}},"c":46},{"i":2759,"n":"Roberts","f":"Callum","p":"M","r":1,"s":{"n":0},"c":46},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":11,"s":{"n":0,"Og":"1","Os":"162","On":"35","Oa":"4.64","Od":"0.59","Mp":"2","Dp":"33","p":{"32":{"n":5,"e":3043,"c":42},"33":{"n":3.5,"e":3055,"c":42},"34":{"n":5,"e":3062,"c":42},"36":{"n":5.5,"e":3082,"c":42},"37":{"n":4,"e":3096,"c":42},"38":{"n":5,"e":3102,"c":42}}},"c":46},{"i":2981,"n":"Harker","f":"Nathan","p":"G","r":1,"s":{"n":0},"c":46},{"i":3356,"n":"Almir\u00f3n","f":"Miguel","p":"M","r":12,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"59","On":"11","Oa":"5.41","Od":"0.73","Mp":"9","Ap":"2","p":{"32":{"n":5},"33":{"n":5.5},"34":{"n":5.5},"35":{"n":6},"1":{"n":4}}},"c":46},{"i":3648,"n":"Watts","f":"Kelland","p":"M","r":1,"s":{"n":0},"c":46},{"i":3649,"n":"Cass","f":"Lewis","p":"D","r":2,"s":{"n":0},"c":46},{"i":5423,"n":"Sorensen","f":"Elias","p":"A","r":1,"s":{"n":0},"c":46},{"i":5426,"n":"Allan","f":"Thomas","p":"A","r":1,"s":{"n":0},"c":46},{"i":5433,"n":"Matthew Longstaff","f":"","p":"M","r":7,"s":{"n":0},"c":46},{"i":5435,"n":"Bailey","f":"Owen","p":"D","r":1,"s":{"n":0},"c":46},{"i":5442,"n":"Joelinton","f":"","p":"A","r":16,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Ap":"1","p":{"1":{"n":5}}},"c":46},{"i":6001,"n":"Willems","f":"Jetro","p":"D","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5,"s":1}}},"c":46},{"i":75,"n":"Jo\u00e3o Moutinho","f":"","p":"M","r":18,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"207","On":"38","Oa":"5.45","Od":"0.99","Mp":"37","Ap":"1","p":{"32":{"n":5},"33":{"n":6},"34":{"n":5},"35":{"n":6.5},"36":{"n":5.5},"37":{"n":5.5},"38":{"n":5},"1":{"n":5.5}}},"c":69},{"i":1710,"n":"Jonny","f":"","p":"D","r":11,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"161","On":"33","Oa":"4.89","Od":"0.89","Mp":"32","Dp":"1","p":{"32":{"n":4.5},"33":{"n":4.5,"s":1},"34":{"n":3.5},"35":{"n":5},"36":{"n":5},"37":{"n":5},"38":{"n":4.5},"1":{"n":4}}},"c":69},{"i":1839,"n":"Vallejo","f":"Jes\u00fas","p":"D","r":12,"s":{"n":0,"Og":"1","Os":"25","On":"5","Oa":"5","Od":"1.22","Dp":"5","p":{"33":{"n":6.5,"e":2297,"c":62},"35":{"n":4.5,"e":2316,"c":62},"36":{"n":6,"e":2326,"c":62,"g":1},"37":{"n":3,"e":2341,"c":62}}},"c":69},{"i":2485,"n":"Coady","f":"Conor","p":"D","r":12,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Oao":"3","Os":"194","On":"38","Oa":"5.11","Od":"0.87","Dp":"38","p":{"32":{"n":3,"a":1},"33":{"n":5.5},"34":{"n":4},"35":{"n":6},"36":{"n":6},"37":{"n":5.5},"38":{"n":4},"1":{"n":5.5}}},"c":69},{"i":2490,"n":"Boly","f":"Willy","p":"D","r":20,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"4","Os":"191","On":"36","Oa":"5.32","Od":"0.97","Dp":"36","p":{"32":{"n":4},"33":{"n":5.5},"34":{"n":6,"g":1},"35":{"n":5},"36":{"n":6},"37":{"n":6},"38":{"n":4.5},"1":{"n":6}}},"c":69},{"i":2492,"n":"Doherty","f":"Matt","p":"D","r":16,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"4","Oao":"1","Os":"196","On":"38","Oa":"5.16","Od":"1.03","Mp":"35","Dp":"3","p":{"32":{"n":5,"s":1},"33":{"n":5},"34":{"n":4},"35":{"n":6},"36":{"n":4.5},"37":{"n":6},"38":{"n":4.5},"1":{"n":4}}},"c":69},{"i":2503,"n":"Batth","f":"Danny","p":"D","r":1,"s":{"n":0},"c":69},{"i":2508,"n":"Mason","f":"Joe","p":"A","r":1,"s":{"n":0},"c":69},{"i":2528,"n":"Bennett","f":"Ryan","p":"D","r":13,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"169","On":"34","Oa":"4.99","Od":"0.81","Dp":"34","p":{"33":{"n":4.5},"35":{"n":6},"36":{"n":4.5},"37":{"n":5},"38":{"n":4.5},"1":{"n":5.5}}},"c":69},{"i":2533,"n":"Rui Patr\u00edcio","f":"","p":"G","r":15,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"199","On":"37","Oa":"5.38","Od":"0.77","Gp":"37","p":{"32":{"n":4},"33":{"n":6},"34":{"n":4},"35":{"n":5.5},"36":{"n":5},"37":{"n":5.5},"38":{"n":5},"1":{"n":5.5}}},"c":69},{"i":2538,"n":"Gibbs-White","f":"Morgan","p":"M","r":5,"s":{"n":0,"Os":"121","On":"25","Oa":"4.84","Od":"0.46","Mp":"22","Ap":"3","p":{"34":{"n":5,"s":1},"35":{"n":5},"36":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":69},{"i":2540,"n":"R\u00faben Vinagre","f":"","p":"D","r":9,"s":{"n":0,"Os":"77","On":"16","Oa":"4.84","Od":"0.49","Mp":"7","Dp":"9","p":{"33":{"n":5},"35":{"n":5,"s":1},"37":{"n":5,"s":1},"38":{"n":5,"s":1}}},"c":69},{"i":2542,"n":"Deslandes","f":"Sylvain","p":"D","r":1,"s":{"n":0},"c":69},{"i":2550,"n":"Enobakhare","f":"Bright","p":"A","r":1,"s":{"n":0},"c":69},{"i":2556,"n":"Diogo Jota","f":"","p":"M","r":23,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Og":"9","Os":"174","On":"33","Oa":"5.27","Od":"1.27","Mp":"4","Ap":"29","p":{"32":{"n":4},"33":{"n":6.5,"g":1},"34":{"n":4},"35":{"n":5},"36":{"n":7.5,"g":1},"37":{"n":5},"38":{"n":4},"1":{"n":4}}},"c":69},{"i":2557,"n":"Ruddy","f":"John","p":"G","r":7,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1"},"c":69},{"i":2563,"n":"Graham","f":"Jordan","p":"M","r":5,"s":{"n":0},"c":69},{"i":2568,"n":"R\u00faben Neves","f":"","p":"M","r":20,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"3","Os":"192","On":"35","Oa":"5.49","Od":"0.97","Mp":"35","p":{"32":{"n":3.5},"33":{"n":6},"34":{"n":3.5},"35":{"n":6},"36":{"n":6.5},"37":{"n":5},"38":{"n":4},"1":{"n":5.5}}},"c":69},{"i":2571,"n":"Norris","f":"Will","p":"G","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Gp":"1","p":{"37":{"n":5,"s":1}}},"c":69},{"i":2574,"n":"Cavaleiro","f":"Ivan","p":"A","r":7,"s":{"n":0,"Og":"3","Os":"106","On":"23","Oa":"4.61","Od":"0.85","Ap":"23","p":{"32":{"n":3},"33":{"n":4.5,"s":1},"36":{"n":4.5,"s":1}}},"c":69},{"i":2575,"n":"H\u00e9lder Costa","f":"","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"110","On":"24","Oa":"4.58","Od":"0.81","Ap":"24","p":{"32":{"n":4.5,"s":1},"34":{"n":4,"s":1}}},"c":69},{"i":2584,"n":"L\u00e9o Bonatini","f":"","p":"A","r":1,"s":{"n":0,"Os":"27","On":"6","Oa":"4.5","Od":"0.76","Ap":"6"},"c":69},{"i":2597,"n":"Sa\u00efss","f":"Romain","p":"M","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"105","On":"20","Oa":"5.25","Od":"1.03","Mp":"14","Dp":"6","p":{"32":{"n":4.5},"33":{"n":5,"s":1},"34":{"n":3.5},"1":{"n":5,"s":1}}},"c":69},{"i":2600,"n":"Jim\u00e9nez","f":"Ra\u00fal","p":"A","r":28,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"12","Os":"201","On":"38","Oa":"5.3","Od":"1.27","Ap":"38","p":{"32":{"n":4.5,"s":1},"33":{"n":7},"34":{"n":3.5},"35":{"n":4.5},"36":{"n":6.5,"g":1},"37":{"n":4.5},"38":{"n":4.5},"1":{"n":5}}},"c":69},{"i":2603,"n":"Ofosu-Ayeh","f":"Phil","p":"D","r":1,"s":{"n":0},"c":69},{"i":2762,"n":"Dendoncker","f":"Leander","p":"M","r":16,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Og":"2","Os":"110","On":"20","Oa":"5.53","Od":"1.02","Mp":"20","p":{"32":{"n":3.5},"33":{"n":6},"34":{"n":5.5},"35":{"n":5,"s":1},"36":{"n":5.5},"37":{"n":6,"g":1},"38":{"n":4.5},"1":{"n":6}}},"c":69},{"i":2798,"n":"Traor\u00e9","f":"Adama","p":"M","r":5,"s":{"n":0,"Og":"1","Os":"133","On":"28","Oa":"4.77","Od":"0.75","Mp":"2","Ap":"26","p":{"32":{"n":4.5},"34":{"n":4.5,"s":1},"35":{"n":4.5,"s":1},"38":{"n":4.5,"s":1}}},"c":69},{"i":2842,"n":"Ashley-Seal","f":"Ben","p":"A","r":1,"s":{"n":0},"c":69},{"i":2844,"n":"Pote","f":"","p":"M","r":1,"s":{"n":0},"c":69},{"i":2846,"n":"Watt","f":"Elliot","p":"M","r":1,"s":{"n":0},"c":69},{"i":2847,"n":"Giles","f":"Ryan John","p":"M","r":1,"s":{"n":0},"c":69},{"i":2889,"n":"Benny Ashley-Seal","f":"","p":"A","r":1,"s":{"n":0},"c":69},{"i":2978,"n":"Kilman","f":"Max","p":"D","r":2,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Dp":"1","p":{"37":{"n":5,"s":1}}},"c":69},{"i":3352,"n":"John","f":"Cameron","p":"D","r":1,"s":{"n":0},"c":69},{"i":3501,"n":"Ennis","f":"Niall","p":"A","r":3,"s":{"n":0},"c":69},{"i":3659,"n":"Rafa Mir","f":"","p":"A","r":5,"s":{"n":0},"c":69},{"i":3724,"n":"Roderick Miranda","f":"","p":"D","r":3,"s":{"n":0},"c":69},{"i":4258,"n":"Bruno Jordao","f":"","p":"M","r":5,"s":{"n":0},"c":69},{"i":4282,"n":"Pedro Neto","f":"","p":"M","r":5,"s":{"n":0},"c":69},{"i":4380,"n":"Cutrone","f":"Patrick","p":"A","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"1":{"n":4,"s":1}}},"c":69},{"i":5431,"n":"Sanderson","f":"Dion","p":"D","r":1,"s":{"n":0},"c":69},{"i":5988,"n":"S\u00f6ndergaard","f":"Andreas","p":"G","r":1,"s":{"n":0},"c":69},{"i":5992,"n":"Perry","f":"Taylor","p":"M","r":1,"s":{"n":0},"c":69},{"i":133,"n":"Amadou","f":"Ibrahim","p":"M","r":10,"s":{"n":0,"Os":"85","On":"17","Oa":"5","Od":"0.66","Mp":"16","Dp":"1","p":{"33":{"n":4,"e":2296,"c":55},"37":{"n":5.5,"e":2333,"c":55,"s":1},"38":{"n":6.5,"e":2347,"c":55}}},"c":76},{"i":872,"n":"Byram","f":"Sam","p":"D","r":4,"s":{"n":0},"c":76},{"i":1101,"n":"Husband","f":"James","p":"D","r":1,"s":{"n":0},"c":76},{"i":1352,"n":"Roberts","f":"Patrick","p":"M","r":11,"s":{"n":0,"Os":"88","On":"19","Oa":"4.63","Od":"0.56","Mp":"15","Ap":"4","p":{"31":{"n":5,"e":2279,"c":53,"s":1},"32":{"n":4,"e":2284,"c":53},"33":{"n":3.5,"e":2295,"c":53},"36":{"n":4.5,"e":2323,"c":53,"s":1},"38":{"n":4,"e":2342,"c":53,"s":1}}},"c":76},{"i":1506,"n":"Hanley","f":"Grant","p":"D","r":8,"s":{"ao":"1","s":"2","n":"1","a":"2","Sao":"1","Ss":"2","Sn":"1","Sa":"2","Oao":"1","Os":"2","On":"1","Oa":"2","Dp":"1","p":{"1":{"n":2,"a":1}}},"c":76},{"i":1521,"n":"Krul","f":"Tim","p":"G","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"1":{"n":4.5}}},"c":76},{"i":3647,"n":"Max Aarons","f":"","p":"D","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"1":{"n":4}}},"c":76},{"i":3654,"n":"Payne","f":"Alfie","p":"M","r":1,"s":{"n":0},"c":76},{"i":3657,"n":"Timi Odusina","f":"","p":"D","r":1,"s":{"n":0},"c":76},{"i":3670,"n":"Godfrey","f":"Ben","p":"D","r":11,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"1":{"n":4}}},"c":76},{"i":3671,"n":"Buend\u00eda","f":"Emiliano","p":"M","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5}}},"c":76},{"i":3674,"n":"Lewis","f":"Jamal","p":"D","r":11,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"1":{"n":3.5}}},"c":76},{"i":3675,"n":"Cantwell","f":"Todd","p":"M","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":76},{"i":3676,"n":"Zimmermann","f":"Christoph","p":"D","r":13,"s":{"n":0},"c":76},{"i":3683,"n":"Srbeny","f":"Dennis","p":"A","r":7,"s":{"n":0},"c":76},{"i":3684,"n":"Oxborough","f":"Aston","p":"G","r":1,"s":{"n":0},"c":76},{"i":3704,"n":"Thompson","f":"Louis","p":"M","r":3,"s":{"n":0},"c":76},{"i":3706,"n":"Heise","f":"Philip","p":"D","r":6,"s":{"n":0},"c":76},{"i":3708,"n":"Trybull","f":"Tom","p":"M","r":10,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"1":{"n":3.5}}},"c":76},{"i":3709,"n":"Hern\u00e1ndez","f":"Onel","p":"M","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"1":{"n":4.5,"s":1}}},"c":76},{"i":3712,"n":"Leitner","f":"Moritz","p":"M","r":10,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":76},{"i":3715,"n":"Klose","f":"Timm","p":"D","r":8,"s":{"n":0},"c":76},{"i":3717,"n":"Drmic","f":"Josip","p":"A","r":8,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":76},{"i":3720,"n":"Kenny McLean","f":"","p":"M","r":7,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Mp":"1","p":{"1":{"n":3.5}}},"c":76},{"i":3722,"n":"Stiepermann","f":"Marco","p":"M","r":13,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":76},{"i":3723,"n":"Marshall","f":"Ben","p":"M","r":5,"s":{"n":0},"c":76},{"i":3728,"n":"Pukki","f":"Teemu","p":"A","r":15,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"1":{"n":6,"g":1}}},"c":76},{"i":3729,"n":"N\u00e9lson Oliveira","f":"","p":"A","r":5,"s":{"n":0},"c":76},{"i":3739,"n":"Vrancic","f":"Mario","p":"M","r":12,"s":{"n":0},"c":76},{"i":3741,"n":"F\u00e4hrmann","f":"Ralf","p":"G","r":7,"s":{"n":0},"c":76},{"i":3747,"n":"Tettey","f":"Alexander","p":"M","r":10,"s":{"n":0},"c":76},{"i":3748,"n":"McGovern","f":"Michael","p":"G","r":7,"s":{"n":0},"c":76},{"i":6119,"n":"Idah","f":"Adam","p":"A","r":5,"s":{"n":0},"c":76},{"i":720,"n":"Jagielka","f":"Phil","p":"D","r":8,"s":{"n":0,"Og":"1","Os":"31","On":"6","Oa":"5.17","Od":"1.03","Dp":"6","p":{"33":{"n":7,"e":3490,"c":22,"g":1},"34":{"n":3.5,"e":3501,"c":22},"35":{"n":5,"e":3512,"c":22,"s":1},"37":{"n":5,"e":3532,"c":22,"s":1}}},"c":77},{"i":980,"n":"McBurnie","f":"Oliver","p":"A","r":12,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":77},{"i":1071,"n":"Mousset","f":"Lys","p":"A","r":7,"s":{"n":0,"Og":"1","Os":"102","On":"23","Oa":"4.46","Od":"0.33","Ap":"23","p":{"35":{"n":4,"e":3508,"c":36,"s":1},"37":{"n":4.5,"e":3528,"c":36,"s":1},"38":{"n":5,"e":3540,"c":36,"s":1}}},"c":77},{"i":1085,"n":"Besic","f":"Muhamed","p":"M","r":4,"s":{"n":0},"c":77},{"i":2501,"n":"Norwood","f":"Oliver","p":"M","r":8,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":77},{"i":3691,"n":"Robinson","f":"Callum","p":"A","r":9,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5}}},"c":77},{"i":3694,"n":"Lundstram","f":"John","p":"D","r":3,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":77},{"i":3695,"n":"O'Connell","f":"Jack","p":"D","r":11,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"1":{"n":5}}},"c":77},{"i":3701,"n":"Heneghan","f":"Ben","p":"D","r":3,"s":{"n":0},"c":77},{"i":3702,"n":"Carruthers","f":"Samir","p":"M","r":4,"s":{"n":0},"c":77},{"i":3703,"n":"Bryan","f":"Kean","p":"D","r":3,"s":{"n":0},"c":77},{"i":3705,"n":"Egan","f":"John","p":"D","r":12,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Dp":"1","p":{"1":{"n":5.5}}},"c":77},{"i":3713,"n":"Freeman","f":"Kieron","p":"D","r":8,"s":{"n":0},"c":77},{"i":3716,"n":"Baldock","f":"George","p":"D","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":77},{"i":3721,"n":"Moore","f":"Simon","p":"G","r":9,"s":{"n":0},"c":77},{"i":3725,"n":"Stevens","f":"Enda","p":"D","r":12,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"1":{"n":4.5}}},"c":77},{"i":3726,"n":"Duffy","f":"Mark","p":"M","r":12,"s":{"n":0},"c":77},{"i":3727,"n":"Holmes","f":"Ricky","p":"M","r":2,"s":{"n":0},"c":77},{"i":3731,"n":"Freeman","f":"Luke","p":"M","r":6,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":77},{"i":3732,"n":"Evans","f":"Ched","p":"A","r":5,"s":{"n":0},"c":77},{"i":3734,"n":"Fleck","f":"John","p":"M","r":13,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5}}},"c":77},{"i":3738,"n":"Basham","f":"Chris","p":"D","r":14,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":77},{"i":3743,"n":"McGoldrick","f":"David","p":"A","r":11,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5}}},"c":77},{"i":3745,"n":"Sharp","f":"Billy","p":"A","r":13,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"6","On":"1","Oa":"6","Ap":"1","p":{"1":{"n":6,"g":1,"s":1}}},"c":77},{"i":3746,"n":"Stearman","f":"Richard","p":"D","r":12,"s":{"n":0},"c":77},{"i":3749,"n":"Clarke","f":"Leon","p":"A","r":8,"s":{"n":0},"c":77},{"i":3750,"n":"Wright","f":"Jake","p":"D","r":3,"s":{"n":0},"c":77},{"i":5446,"n":"Henderson","f":"Dean","p":"G","r":9,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"1":{"n":5}}},"c":77},{"i":5447,"n":"Osborn","f":"Ben","p":"M","r":1,"s":{"n":0},"c":77},{"i":5450,"n":"Morrison","f":"Ravel","p":"M","r":4,"s":{"n":0},"c":77},{"i":6121,"n":"Verrips","f":"Michael","p":"G","r":9,"s":{"n":0},"c":77},{"i":193,"n":"El Ghazi","f":"Anwar","p":"A","r":9,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"1":{"n":4}}},"c":78},{"i":344,"n":"Guilbert","f":"Frederic","p":"D","r":13,"s":{"n":0,"Og":"1","Os":"165","On":"34","Oa":"4.87","Od":"1.02","Mp":"4","Dp":"30","p":{"32":{"n":4.5,"e":3042,"c":5},"33":{"n":5,"e":3056,"c":5,"s":1},"34":{"n":5,"e":3065,"c":5},"35":{"n":5.5,"e":3073,"c":5},"36":{"n":7,"e":3084,"c":5,"g":1},"37":{"n":3,"e":3095,"c":5},"38":{"n":5,"e":3104,"c":5}}},"c":78},{"i":708,"n":"Heaton","f":"Tom","p":"G","r":18,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"108","On":"20","Oa":"5.43","Od":"1.22","Gp":"20","p":{"32":{"n":6.5,"e":3480,"c":23},"33":{"n":5,"e":3488,"c":23},"34":{"n":6.5,"e":3499,"c":23},"35":{"n":6,"e":3511,"c":23},"36":{"n":6,"e":3519,"c":23},"37":{"n":4,"e":3532,"c":23},"38":{"n":4,"e":3539,"c":23},"1":{"n":4.5}}},"c":78},{"i":939,"n":"Targett","f":"Matt","p":"D","r":8,"s":{"n":0,"Og":"1","Os":"81","On":"16","Oa":"5.06","Od":"0.81","Mp":"9","Dp":"7","p":{"36":{"n":6.5,"e":3525,"c":35,"g":1,"s":1},"38":{"n":5.5,"e":3545,"c":35,"s":1}}},"c":78},{"i":1059,"n":"Mings","f":"Tyrone","p":"D","r":10,"s":{"s":"6","n":"1","a":"6.5","Ss":"6","Sn":"1","Sa":"6.5","Os":"31","On":"6","Oa":"5.25","Od":"0.63","Dp":"6","p":{"1":{"n":6.5}}},"c":78},{"i":1885,"n":"Douglas Luiz","f":"","p":"M","r":8,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"124","On":"24","Oa":"5.19","Od":"0.76","Mp":"24","p":{"31":{"n":5.5,"e":2279,"c":53,"s":1},"33":{"n":4,"e":2295,"c":53},"34":{"n":4,"e":2310,"c":53,"s":1},"35":{"n":6.5,"e":2315,"c":53},"37":{"n":5,"e":2336,"c":53},"1":{"n":5,"s":1}}},"c":78},{"i":2587,"n":"Hause","f":"Kortney","p":"D","r":1,"s":{"n":0},"c":78},{"i":2823,"n":"Engels","f":"Bj\u00f6rn","p":"D","r":10,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Oao":"1","Os":"180","On":"34","Oa":"5.31","Od":"0.84","Dp":"34","p":{"32":{"n":5.5,"e":3046,"c":68},"33":{"n":4,"e":3059,"c":68,"a":1},"34":{"n":5,"e":3063,"c":68},"35":{"n":3,"e":3079,"c":68},"36":{"n":4.5,"e":3084,"c":68},"37":{"n":6,"e":3092,"c":68},"1":{"n":4.5}}},"c":78},{"i":3651,"n":"Jacob Ramsey","f":"","p":"M","r":1,"s":{"n":0},"c":78},{"i":3653,"n":"Revan","f":"Dominic","p":"D","r":1,"s":{"n":0},"c":78},{"i":3656,"n":"Davis","f":"Keinan","p":"M","r":4,"s":{"n":0},"c":78},{"i":3661,"n":"Doyle-Hayes","f":"Jake","p":"M","r":3,"s":{"n":0},"c":78},{"i":3662,"n":"Wesley","f":"","p":"A","r":12,"s":{"s":"3","n":"1","a":"3.5","Ss":"3","Sn":"1","Sa":"3.5","Os":"3","On":"1","Oa":"3.5","Ap":"1","p":{"1":{"n":3.5}}},"c":78},{"i":3669,"n":"Konsa Ngoyo","f":"Ezri","p":"D","r":10,"s":{"n":0},"c":78},{"i":3677,"n":"Clark","f":"Mitchell","p":"D","r":3,"s":{"n":0},"c":78},{"i":3678,"n":"Bree","f":"James","p":"D","r":3,"s":{"n":0},"c":78},{"i":3680,"n":"O'Hare","f":"Callum","p":"M","r":1,"s":{"n":0},"c":78},{"i":3688,"n":"Hepburn-Murphy","f":"Rushian","p":"A","r":7,"s":{"n":0},"c":78},{"i":3689,"n":"Green","f":"Andre","p":"M","r":7,"s":{"n":0},"c":78},{"i":3698,"n":"McGinn","f":"John","p":"M","r":12,"s":{"g":"1","s":"6","n":"1","a":"6","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6,"g":1}}},"c":78},{"i":3700,"n":"Grealish","f":"Jack","p":"M","r":11,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":78},{"i":3707,"n":"Nyland","f":"\u00d8rjan","p":"G","r":3,"s":{"n":0},"c":78},{"i":3710,"n":"Jota","f":"","p":"M","r":7,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"1":{"n":5,"s":1}}},"c":78},{"i":3711,"n":"Kalinic","f":"Lovre","p":"G","r":7,"s":{"n":0},"c":78},{"i":3714,"n":"Hourihane","f":"Conor","p":"M","r":13,"s":{"s":"6","n":"1","a":"6","Ss":"6","Sn":"1","Sa":"6","Os":"6","On":"1","Oa":"6","Mp":"1","p":{"1":{"n":6}}},"c":78},{"i":3718,"n":"Hogan","f":"Scott","p":"A","r":5,"s":{"n":0},"c":78},{"i":3719,"n":"Steer","f":"Jed","p":"G","r":13,"s":{"n":0},"c":78},{"i":3730,"n":"Kodjia","f":"Jonathan","p":"A","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"1":{"n":4.5,"s":1}}},"c":78},{"i":3733,"n":"Taylor","f":"Neil","p":"D","r":13,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Dp":"1","p":{"1":{"n":4.5}}},"c":78},{"i":3735,"n":"Chester","f":"James","p":"D","r":10,"s":{"n":0},"c":78},{"i":3737,"n":"Lansbury","f":"Henri","p":"M","r":4,"s":{"n":0},"c":78},{"i":3740,"n":"Ahmed El Mohamady","f":"","p":"D","r":10,"s":{"s":"4","n":"1","a":"4","Ss":"4","Sn":"1","Sa":"4","Os":"4","On":"1","Oa":"4","Dp":"1","p":{"1":{"n":4}}},"c":78},{"i":3742,"n":"Bjarnason","f":"Birkir","p":"M","r":12,"s":{"n":0},"c":78},{"i":5448,"n":"Tr\u00e9z\u00e9guet","f":"","p":"M","r":9,"s":{"s":"5","n":"1","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"5","On":"1","Oa":"5.5","Mp":"1","p":{"1":{"n":5.5}}},"c":78},{"i":5997,"n":"Nakamba","f":"Marvelous","p":"M","r":6,"s":{"n":0},"c":78},{"i":6125,"n":"Tshibola","f":"Aaron","p":"M","r":6,"s":{"n":0},"c":78}],"c":{"21":{"n":"Liverpool","rn":"Liverpool","cn":"Liverpool","a":"LIV","l":2,"el":1361,"s":{"p":3},"nM":4293,"nMWC":"0.9100","pM":{"32":3485,"33":3494,"34":3503,"35":3510,"37":3535,"38":3543,"1":4298,"36":3523},"DMI":[3494]},"22":{"n":"Everton","rn":"Everton","cn":"Everton","a":"EVE","l":2,"el":1115,"s":{"p":1},"nM":4291,"nMWC":"0.6912","pM":{"32":3487,"33":3490,"34":3501,"35":3512,"36":3520,"37":3532,"38":3546,"1":4302},"DMI":[]},"23":{"n":"Burnley","rn":"Burnley","cn":"Burnley","a":"BUR","l":2,"el":1046,"s":{"p":3},"nM":4288,"nMWC":"0.3137","pM":{"33":3488,"37":3532,"38":3539,"34":3499,"1":4301,"32":3480,"35":3511,"36":3519},"DMI":[3539]},"24":{"n":"Tottenham","rn":"Tottenham","cn":"Tottenham","a":"TOT","l":2,"el":1097,"s":{"p":3},"nM":4294,"nMWC":"0.1555","pM":{"32":3485,"37":3528,"38":3546,"33":3495,"34":3506,"35":3514,"36":3526,"1":4304},"DMI":[3514]},"25":{"n":"Chelsea","rn":"Chelsea","cn":"Chelsea","a":"CHE","l":2,"el":1092,"s":{"p":0},"nM":4296,"nMWC":"0.5373","pM":{"34":3503,"32":3481,"35":3511,"33":3489,"36":3524,"37":3531,"38":3542,"1":4307},"DMI":[3542]},"26":{"n":"Crystal Palace","rn":"Crystal Palace","cn":"Crystal-Palace","a":"CRY","l":2,"el":1114,"s":{"p":1},"nM":4295,"nMWC":"0.6597","pM":{"38":3540,"36":3520,"1":4302,"35":3509,"32":3482,"33":3493,"37":3530,"34":3500},"DMI":[]},"28":{"n":"West Ham","rn":"West Ham Utd","cn":"West-Ham-Utd","a":"WHU","l":2,"el":1082,"s":{"p":0},"nM":4290,"nMWC":"0.5729","pM":{"32":3487,"36":3526,"33":3489,"37":3536,"38":3547,"1":4299,"34":3504,"35":3516},"DMI":[]},"29":{"n":"Leicester","rn":"Leicester City","cn":"Leicester-City","a":"LEI","l":2,"el":1066,"s":{"p":1},"nM":4296,"nMWC":"0.4627","pM":{"32":3484,"36":3522,"38":3542,"35":3516,"33":3491,"34":3502,"37":3534,"1":4305},"DMI":[3542]},"31":{"n":"Man United","rn":"Manchester United","cn":"Manchester-United","a":"MUN","l":2,"el":1121,"s":{"p":3},"nM":4297,"nMWC":"0.5273","pM":{"35":3512,"37":3533,"36":3524,"1":4307,"34":3504,"32":3486,"33":3497,"38":3544},"DMI":[3497]},"33":{"n":"Watford","rn":"Watford","cn":"Watford","a":"WAT","l":2,"el":975,"s":{"p":0},"nM":4291,"nMWC":"0.3088","pM":{"34":3507,"35":3513,"33":3496,"37":3531,"38":3547,"32":3486,"1":4303,"36":3527},"DMI":[]},"35":{"n":"Southampton","rn":"Southampton","cn":"Southampton","a":"SOU","l":2,"el":959,"s":{"p":0},"nM":4293,"nMWC":"0.0900","pM":{"33":3494,"36":3525,"1":4301,"37":3536,"35":3515,"34":3505,"38":3545,"32":3479},"DMI":[3494]},"36":{"n":"Bournemouth","rn":"Bournemouth","cn":"Bournemouth","a":"BOU","l":2,"el":990,"s":{"p":1},"nM":4289,"nMWC":"0.5129","pM":{"32":3484,"33":3488,"36":3525,"37":3528,"38":3540,"35":3508,"34":3498,"1":4300},"DMI":[]},"39":{"n":"Arsenal","rn":"Arsenal","cn":"Arsenal","a":"ARS","l":2,"el":1182,"s":{"p":3},"nM":4288,"nMWC":"0.6863","pM":{"33":3490,"32":3478,"34":3507,"35":3509,"36":3522,"37":3529,"38":3539,"1":4306},"DMI":[3539]},"40":{"n":"Man City","rn":"Manchester City","cn":"Manchester-City","a":"MCI","l":2,"el":1391,"s":{"p":3},"nM":4294,"nMWC":"0.8445","pM":{"33":3492,"36":3519,"35":3514,"32":3483,"34":3500,"1":4299,"37":3534,"38":3538},"DMI":[3514]},"45":{"n":"Brighton","rn":"Brighton","cn":"Brighton","a":"BHA","l":2,"el":1031,"s":{"p":3},"nM":4290,"nMWC":"0.4271","pM":{"37":3529,"33":3495,"36":3518,"1":4303,"32":3479,"34":3498,"38":3538,"35":3517},"DMI":[]},"46":{"n":"Newcastle","rn":"Newcastle Utd","cn":"Newcastle-Utd","a":"NEW","l":2,"el":1052,"s":{"p":0},"nM":4292,"nMWC":"0.5827","pM":{"37":3535,"38":3541,"32":3478,"33":3493,"36":3518,"34":3502,"35":3515,"1":4306},"DMI":[]},"69":{"n":"Wolverhampton","rn":"Wolverhampton Wanderers","cn":"Wolverhampton-Wanderers","a":"WOL","l":2,"el":1102,"s":{"p":1},"nM":4297,"nMWC":"0.4727","pM":{"38":3543,"37":3537,"32":3480,"1":4305,"33":3497,"36":3527,"34":3505,"35":3517},"DMI":[3497]},"76":{"n":"Norwich","rn":"Norwich City","cn":"Norwich-City","a":"NOR","l":2,"el":994,"s":{"p":0},"nM":4292,"nMWC":"0.4173","pM":{"1":4298},"DMI":[]},"77":{"n":"Sheffield","rn":"Sheffield","cn":"Sheffield","a":"SHE","l":2,"el":999,"s":{"p":1},"nM":4295,"nMWC":"0.3403","pM":{"1":4300},"DMI":[]},"78":{"n":"Aston Villa","rn":"Aston Villa","cn":"Aston-Villa","a":"AST","l":2,"el":981,"s":{"p":0},"nM":4289,"nMWC":"0.4871","pM":{"1":4304},"DMI":[]}},"op":{"70":{"n":"Cardiff","l":2,"el":950},"44":{"n":"Huddersfield","l":2,"el":758},"71":{"n":"Fulham","l":2,"el":895},"13":{"n":"Monaco","l":1,"el":1006},"68":{"n":"Reims","l":1,"el":1113},"20":{"n":"Rennes","l":1,"el":1121},"4":{"n":"Saint-\u00c9tienne","l":1,"el":1169},"67":{"n":"N\u00eemes","l":1,"el":1046},"42":{"n":"Amiens","l":1,"el":1010},"19":{"n":"Nice","l":1,"el":1117},"7":{"n":"Dijon","l":1,"el":1011},"8":{"n":"Nantes","l":1,"el":1044},"41":{"n":"Strasbourg","l":1,"el":1039},"15":{"n":"Montpellier","l":1,"el":1113},"10":{"n":"Toulouse","l":1,"el":955},"14":{"n":"Guingamp","l":4,"el":949},"60":{"n":"Betis","l":3,"el":1050},"64":{"n":"Villarreal","l":3,"el":1082},"55":{"n":"Sevilla","l":3,"el":1080},"49":{"n":"Valencia","l":3,"el":1162},"56":{"n":"Espanyol","l":3,"el":1127},"66":{"n":"Eibar","l":3,"el":1055},"73":{"n":"Huesca","l":3,"el":1021},"62":{"n":"Real Madrid","l":3,"el":1105},"18":{"n":"Lyon","l":1,"el":1226},"16":{"n":"Angers","l":1,"el":1082},"3":{"n":"Bordeaux","l":1,"el":946},"12":{"n":"Lille","l":1,"el":1214},"9":{"n":"Marseille","l":1,"el":1117},"5":{"n":"Caen","l":4,"el":984},"2":{"n":"Paris","l":1,"el":1217},"53":{"n":"Girona","l":3,"el":860},"47":{"n":"Legan\u00e9s","l":3,"el":1014},"52":{"n":"Real Sociedad","l":3,"el":1080},"58":{"n":"Getafe","l":3,"el":1116},"57":{"n":"Bilbao","l":3,"el":1085},"59":{"n":"Barcelona","l":3,"el":1292},"51":{"n":"Celta","l":3,"el":1020},"54":{"n":"Atl\u00e9tico","l":3,"el":1204},"72":{"n":"Rayo","l":3,"el":924},"74":{"n":"Valladolid","l":3,"el":1019},"63":{"n":"Levante","l":3,"el":1043},"48":{"n":"Alav\u00e9s","l":3,"el":996}},"e":{"3485":{"d":32,"dB":"2019-03-31T15:30:00Z","t1s":2,"t2s":1,"t1":21,"t2":24},"3494":{"d":33,"dB":"2019-04-05T19:00:00Z","t1s":1,"t2s":3,"t1":35,"t2":21},"3503":{"d":34,"dB":"2019-04-14T15:30:00Z","t1s":2,"t2s":0,"t1":21,"t2":25},"3510":{"d":35,"dB":"2019-04-21T15:00:00Z","t1s":0,"t2s":2,"t1":70,"t2":21},"3535":{"d":37,"dB":"2019-05-04T18:45:00Z","t1s":2,"t2s":3,"t1":46,"t2":21},"3543":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":2,"t2s":0,"t1":21,"t2":69},"4298":{"d":1,"dB":"2019-08-09T19:00:00Z","t1s":4,"t2s":1,"t1":21,"t2":76},"3523":{"d":36,"dB":"2019-04-26T19:00:00Z","t1s":5,"t2s":0,"t1":21,"t2":44},"3484":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":2,"t2s":0,"t1":29,"t2":36},"3488":{"d":33,"dB":"2019-04-06T14:00:00Z","t1s":1,"t2s":3,"t1":36,"t2":23},"3525":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":3,"t2s":3,"t1":35,"t2":36},"3528":{"d":37,"dB":"2019-05-04T11:30:00Z","t1s":1,"t2s":0,"t1":36,"t2":24},"3540":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":5,"t2s":3,"t1":26,"t2":36},"3537":{"d":37,"dB":"2019-05-04T14:00:00Z","t1s":1,"t2s":0,"t1":69,"t2":71},"3541":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":0,"t2s":4,"t1":71,"t2":46},"3046":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":0,"t1":13,"t2":68},"3070":{"d":34,"dB":"2019-05-01T17:00:00Z","t1s":2,"t2s":2,"t1":20,"t2":13},"3075":{"d":35,"dB":"2019-05-05T15:00:00Z","t1s":2,"t2s":3,"t1":13,"t2":4},"3089":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":0,"t1":67,"t2":13},"3096":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":2,"t2s":0,"t1":13,"t2":42},"3108":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":0,"t1":19,"t2":13},"3487":{"d":32,"dB":"2019-03-30T17:30:00Z","t1s":0,"t2s":2,"t1":28,"t2":22},"3490":{"d":33,"dB":"2019-04-07T13:05:00Z","t1s":1,"t2s":0,"t1":22,"t2":39},"3501":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":2,"t2s":0,"t1":71,"t2":22},"3512":{"d":35,"dB":"2019-04-21T12:30:00Z","t1s":4,"t2s":0,"t1":22,"t2":31},"3520":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":0,"t2s":0,"t1":26,"t2":22},"3532":{"d":37,"dB":"2019-05-03T19:00:00Z","t1s":2,"t2s":0,"t1":22,"t2":23},"3546":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":2,"t2s":2,"t1":24,"t2":22},"4302":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":0,"t2s":0,"t1":26,"t2":22},"3478":{"d":32,"dB":"2019-04-01T19:00:00Z","t1s":2,"t2s":0,"t1":39,"t2":46},"3507":{"d":34,"dB":"2019-04-15T19:00:00Z","t1s":0,"t2s":1,"t1":33,"t2":39},"3509":{"d":35,"dB":"2019-04-21T15:00:00Z","t1s":2,"t2s":3,"t1":39,"t2":26},"3522":{"d":36,"dB":"2019-04-28T11:00:00Z","t1s":3,"t2s":0,"t1":29,"t2":39},"3529":{"d":37,"dB":"2019-05-05T15:30:00Z","t1s":1,"t2s":1,"t1":39,"t2":45},"3539":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":1,"t2s":3,"t1":23,"t2":39},"3481":{"d":32,"dB":"2019-03-31T13:05:00Z","t1s":1,"t2s":2,"t1":70,"t2":25},"3492":{"d":33,"dB":"2019-04-03T18:45:00Z","t1s":2,"t2s":0,"t1":40,"t2":70},"3499":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":2,"t2s":0,"t1":23,"t2":70},"3521":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":1,"t2s":0,"t1":71,"t2":70},"3513":{"d":35,"dB":"2019-04-20T14:00:00Z","t1s":1,"t2s":2,"t1":44,"t2":33},"3533":{"d":37,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":44,"t2":31},"4301":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":3,"t2s":0,"t1":23,"t2":35},"3480":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":2,"t2s":0,"t1":23,"t2":69},"3511":{"d":35,"dB":"2019-04-22T19:00:00Z","t1s":2,"t2s":2,"t1":25,"t2":23},"3519":{"d":36,"dB":"2019-04-28T13:05:00Z","t1s":0,"t2s":1,"t1":23,"t2":40},"3043":{"d":32,"dB":"2019-04-12T17:00:00Z","t1s":0,"t2s":0,"t1":7,"t2":42},"3055":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":3,"t2s":2,"t1":8,"t2":42},"3062":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":41},"3076":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":1,"t2s":1,"t1":15,"t2":42},"3082":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":0,"t2s":0,"t1":42,"t2":10},"3102":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":1,"t1":42,"t2":14},"3495":{"d":33,"dB":"2019-04-23T18:45:00Z","t1s":1,"t2s":0,"t1":24,"t2":45},"3506":{"d":34,"dB":"2019-04-13T11:30:00Z","t1s":4,"t2s":0,"t1":24,"t2":44},"3514":{"d":35,"dB":"2019-04-20T11:30:00Z","t1s":1,"t2s":0,"t1":40,"t2":24},"3526":{"d":36,"dB":"2019-04-27T11:30:00Z","t1s":0,"t2s":1,"t1":24,"t2":28},"4304":{"d":1,"dB":"2019-08-10T16:30:00Z","t1s":3,"t2s":1,"t1":24,"t2":78},"2273":{"d":31,"dB":"2019-04-07T18:45:00Z","t1s":2,"t2s":1,"t1":60,"t2":64},"2288":{"d":32,"dB":"2019-04-13T18:45:00Z","t1s":3,"t2s":2,"t1":55,"t2":60},"2294":{"d":33,"dB":"2019-04-21T18:45:00Z","t1s":1,"t2s":2,"t1":60,"t2":49},"2314":{"d":35,"dB":"2019-04-29T19:00:00Z","t1s":1,"t2s":1,"t1":60,"t2":56},"2330":{"d":36,"dB":"2019-05-05T12:00:00Z","t1s":1,"t2s":0,"t1":66,"t2":60},"2335":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":2,"t2s":1,"t1":60,"t2":73},"2350":{"d":38,"dB":"2019-05-19T10:00:00Z","t1s":0,"t2s":2,"t1":62,"t2":60},"3048":{"d":32,"dB":"2019-04-12T18:45:00Z","t1s":2,"t2s":1,"t1":8,"t2":18},"3054":{"d":33,"dB":"2019-04-19T18:45:00Z","t1s":2,"t2s":1,"t1":18,"t2":16},"3064":{"d":34,"dB":"2019-04-26T18:45:00Z","t1s":2,"t2s":3,"t1":3,"t2":18},"3074":{"d":35,"dB":"2019-05-05T19:00:00Z","t1s":2,"t2s":2,"t1":18,"t2":12},"3087":{"d":36,"dB":"2019-05-12T19:00:00Z","t1s":0,"t2s":3,"t1":9,"t2":18},"3095":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":4,"t2s":0,"t1":18,"t2":5},"3109":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":2,"t2s":3,"t1":67,"t2":18},"3483":{"d":32,"dB":"2019-03-30T12:30:00Z","t1s":0,"t2s":2,"t1":71,"t2":40},"3496":{"d":33,"dB":"2019-04-02T18:45:00Z","t1s":4,"t2s":1,"t1":33,"t2":71},"3508":{"d":35,"dB":"2019-04-20T14:00:00Z","t1s":0,"t2s":1,"t1":36,"t2":71},"3489":{"d":33,"dB":"2019-04-08T19:00:00Z","t1s":2,"t2s":0,"t1":25,"t2":28},"3524":{"d":36,"dB":"2019-04-28T15:30:00Z","t1s":1,"t2s":1,"t1":31,"t2":25},"3531":{"d":37,"dB":"2019-05-05T13:00:00Z","t1s":3,"t2s":0,"t1":25,"t2":33},"3542":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":0,"t2s":0,"t1":29,"t2":25},"4307":{"d":1,"dB":"2019-08-11T15:30:00Z","t1s":4,"t2s":0,"t1":31,"t2":25},"3482":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":2,"t2s":0,"t1":26,"t2":44},"3493":{"d":33,"dB":"2019-04-06T14:00:00Z","t1s":0,"t2s":1,"t1":46,"t2":26},"3530":{"d":37,"dB":"2019-05-04T16:30:00Z","t1s":2,"t2s":3,"t1":70,"t2":26},"3518":{"d":36,"dB":"2019-04-27T16:30:00Z","t1s":1,"t2s":1,"t1":45,"t2":46},"3059":{"d":33,"dB":"2019-04-21T15:00:00Z","t1s":0,"t2s":2,"t1":68,"t2":4},"3063":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":1,"t1":16,"t2":68},"3079":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":3,"t1":68,"t2":67},"3110":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":3,"t2s":1,"t1":68,"t2":2},"3500":{"d":34,"dB":"2019-04-14T13:05:00Z","t1s":1,"t2s":3,"t1":26,"t2":40},"3536":{"d":37,"dB":"2019-05-04T14:00:00Z","t1s":3,"t2s":0,"t1":28,"t2":35},"3547":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":1,"t2s":4,"t1":33,"t2":28},"4299":{"d":1,"dB":"2019-08-10T11:30:00Z","t1s":0,"t2s":5,"t1":28,"t2":40},"3504":{"d":34,"dB":"2019-04-13T16:30:00Z","t1s":2,"t2s":1,"t1":31,"t2":28},"3516":{"d":35,"dB":"2019-04-20T14:00:00Z","t1s":2,"t2s":2,"t1":28,"t2":29},"2284":{"d":32,"dB":"2019-04-14T16:30:00Z","t1s":0,"t2s":1,"t1":53,"t2":64},"2301":{"d":33,"dB":"2019-04-21T16:30:00Z","t1s":2,"t2s":1,"t1":64,"t2":47},"2305":{"d":34,"dB":"2019-04-25T18:30:00Z","t1s":0,"t2s":1,"t1":52,"t2":64},"2321":{"d":35,"dB":"2019-04-28T16:30:00Z","t1s":1,"t2s":1,"t1":64,"t2":73},"2326":{"d":36,"dB":"2019-05-05T14:15:00Z","t1s":3,"t2s":2,"t1":62,"t2":64},"2339":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":0,"t1":64,"t2":66},"3491":{"d":33,"dB":"2019-04-06T14:00:00Z","t1s":1,"t2s":4,"t1":44,"t2":29},"3502":{"d":34,"dB":"2019-04-12T19:00:00Z","t1s":0,"t2s":1,"t1":29,"t2":46},"3534":{"d":37,"dB":"2019-05-06T19:00:00Z","t1s":1,"t2s":0,"t1":40,"t2":29},"4305":{"d":1,"dB":"2019-08-11T13:00:00Z","t1s":0,"t2s":0,"t1":29,"t2":69},"3515":{"d":35,"dB":"2019-04-20T16:30:00Z","t1s":3,"t2s":1,"t1":46,"t2":35},"3058":{"d":33,"dB":"2019-04-21T19:00:00Z","t1s":3,"t2s":1,"t1":2,"t2":13},"3486":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":2,"t2s":1,"t1":31,"t2":33},"3497":{"d":33,"dB":"2019-04-02T18:45:00Z","t1s":2,"t2s":1,"t1":69,"t2":31},"3544":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":0,"t2s":2,"t1":31,"t2":70},"3049":{"d":32,"dB":"2019-04-14T13:00:00Z","t1s":0,"t2s":0,"t1":20,"t2":19},"3052":{"d":33,"dB":"2019-04-19T17:00:00Z","t1s":3,"t2s":2,"t1":7,"t2":20},"3081":{"d":35,"dB":"2019-05-05T13:00:00Z","t1s":2,"t2s":2,"t1":10,"t2":20},"3090":{"d":36,"dB":"2019-05-12T13:00:00Z","t1s":1,"t2s":1,"t1":20,"t2":14},"3100":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":2,"t1":41,"t2":20},"3111":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":3,"t2s":1,"t1":20,"t2":12},"4303":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":0,"t2s":3,"t1":33,"t2":45},"3527":{"d":36,"dB":"2019-04-27T14:00:00Z","t1s":1,"t2s":2,"t1":33,"t2":69},"2276":{"d":31,"dB":"2019-04-07T12:00:00Z","t1s":1,"t2s":0,"t1":58,"t2":57},"2323":{"d":36,"dB":"2019-05-05T10:00:00Z","t1s":2,"t2s":0,"t1":58,"t2":53},"2334":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":2,"t2s":0,"t1":59,"t2":58},"2345":{"d":38,"dB":"2019-05-18T14:15:00Z","t1s":2,"t2s":2,"t1":58,"t2":64},"2285":{"d":32,"dB":"2019-04-15T19:00:00Z","t1s":1,"t2s":1,"t1":47,"t2":62},"2306":{"d":34,"dB":"2019-04-24T18:30:00Z","t1s":0,"t2s":1,"t1":47,"t2":57},"2318":{"d":35,"dB":"2019-04-27T16:30:00Z","t1s":0,"t2s":0,"t1":47,"t2":51},"2331":{"d":36,"dB":"2019-05-03T19:00:00Z","t1s":0,"t2s":3,"t1":55,"t2":47},"2340":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":0,"t2s":2,"t1":47,"t2":56},"2346":{"d":38,"dB":"2019-05-18T18:45:00Z","t1s":2,"t2s":1,"t1":73,"t2":47},"3505":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":3,"t2s":1,"t1":35,"t2":69},"3545":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":1,"t2s":1,"t1":35,"t2":44},"3479":{"d":32,"dB":"2019-03-30T15:00:00Z","t1s":0,"t2s":1,"t1":45,"t2":35},"2274":{"d":31,"dB":"2019-04-07T16:30:00Z","t1s":3,"t2s":1,"t1":51,"t2":52},"2283":{"d":32,"dB":"2019-04-13T16:30:00Z","t1s":2,"t2s":0,"t1":54,"t2":51},"2295":{"d":33,"dB":"2019-04-20T11:00:00Z","t1s":2,"t2s":1,"t1":51,"t2":53},"2329":{"d":36,"dB":"2019-05-04T18:45:00Z","t1s":2,"t2s":0,"t1":51,"t2":59},"2332":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":3,"t2s":1,"t1":57,"t2":51},"2343":{"d":38,"dB":"2019-05-18T18:45:00Z","t1s":2,"t2s":2,"t1":51,"t2":72},"2308":{"d":34,"dB":"2019-04-24T18:30:00Z","t1s":1,"t2s":1,"t1":56,"t2":51},"3498":{"d":34,"dB":"2019-04-13T14:00:00Z","t1s":0,"t2s":5,"t1":45,"t2":36},"4300":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":1,"t2s":1,"t1":36,"t2":77},"3044":{"d":32,"dB":"2019-04-14T19:00:00Z","t1s":5,"t2s":1,"t1":12,"t2":2},"3061":{"d":33,"dB":"2019-04-21T13:00:00Z","t1s":0,"t2s":0,"t1":10,"t2":12},"3066":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":67},"3086":{"d":36,"dB":"2019-05-12T15:00:00Z","t1s":1,"t2s":0,"t1":12,"t2":3},"3094":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":5,"t2s":0,"t1":12,"t2":16},"4306":{"d":1,"dB":"2019-08-11T13:00:00Z","t1s":0,"t2s":1,"t1":46,"t2":39},"2316":{"d":35,"dB":"2019-04-28T18:45:00Z","t1s":1,"t2s":0,"t1":72,"t2":62},"3538":{"d":38,"dB":"2019-05-12T14:00:00Z","t1s":1,"t2s":4,"t1":45,"t2":40},"2315":{"d":35,"dB":"2019-04-28T12:00:00Z","t1s":1,"t2s":0,"t1":53,"t2":55},"2277":{"d":31,"dB":"2019-04-06T18:45:00Z","t1s":2,"t2s":0,"t1":59,"t2":54},"2298":{"d":33,"dB":"2019-04-20T14:15:00Z","t1s":0,"t2s":1,"t1":66,"t2":54},"2303":{"d":34,"dB":"2019-04-24T17:30:00Z","t1s":3,"t2s":2,"t1":54,"t2":49},"2312":{"d":35,"dB":"2019-04-27T14:15:00Z","t1s":1,"t2s":0,"t1":54,"t2":74},"2328":{"d":36,"dB":"2019-05-04T14:15:00Z","t1s":3,"t2s":0,"t1":56,"t2":54},"2333":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":1,"t1":54,"t2":55},"2348":{"d":38,"dB":"2019-05-18T11:00:00Z","t1s":2,"t2s":2,"t1":63,"t2":54},"3517":{"d":35,"dB":"2019-04-20T14:00:00Z","t1s":0,"t2s":0,"t1":69,"t2":45},"3056":{"d":33,"dB":"2019-04-20T18:00:00Z","t1s":0,"t2s":1,"t1":19,"t2":5},"3069":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":3,"t2s":0,"t1":19,"t2":14},"3078":{"d":35,"dB":"2019-05-04T15:00:00Z","t1s":1,"t2s":1,"t1":2,"t2":19},"3088":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":1,"t2s":1,"t1":19,"t2":8},"3099":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":3,"t2s":0,"t1":4,"t2":19},"2297":{"d":33,"dB":"2019-04-21T14:15:00Z","t1s":3,"t2s":0,"t1":62,"t2":57},"2341":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":3,"t2s":1,"t1":52,"t2":62},"2296":{"d":33,"dB":"2019-04-21T12:00:00Z","t1s":3,"t2s":0,"t1":58,"t2":55},"2347":{"d":38,"dB":"2019-05-18T14:15:00Z","t1s":2,"t2s":0,"t1":55,"t2":57},"2279":{"d":31,"dB":"2019-04-06T11:00:00Z","t1s":1,"t2s":2,"t1":53,"t2":56},"2342":{"d":38,"dB":"2019-05-18T18:45:00Z","t1s":2,"t2s":1,"t1":48,"t2":53},"3042":{"d":32,"dB":"2019-04-13T18:00:00Z","t1s":0,"t2s":1,"t1":5,"t2":16},"3065":{"d":34,"dB":"2019-04-28T13:00:00Z","t1s":1,"t2s":0,"t1":5,"t2":7},"3073":{"d":35,"dB":"2019-05-04T18:00:00Z","t1s":0,"t2s":0,"t1":14,"t2":5},"3084":{"d":36,"dB":"2019-05-11T18:00:00Z","t1s":3,"t2s":2,"t1":5,"t2":68},"3104":{"d":38,"dB":"2019-05-24T19:05:00Z","t1s":0,"t2s":1,"t1":5,"t2":3},"2310":{"d":34,"dB":"2019-04-23T18:30:00Z","t1s":1,"t2s":0,"t1":74,"t2":53},"2336":{"d":37,"dB":"2019-05-12T16:30:00Z","t1s":1,"t2s":2,"t1":53,"t2":63},"3092":{"d":37,"dB":"2019-05-18T19:00:00Z","t1s":0,"t2s":1,"t1":3,"t2":68}},"Ne":{"4293":{"d":2,"dB":"2019-08-17T14:00:00Z","t1":35,"t2":21},"4291":{"d":2,"dB":"2019-08-17T14:00:00Z","t1":22,"t2":33},"4288":{"d":2,"dB":"2019-08-17T11:30:00Z","t1":39,"t2":23},"4294":{"d":2,"dB":"2019-08-17T16:30:00Z","t1":40,"t2":24},"4296":{"d":2,"dB":"2019-08-18T15:30:00Z","t1":25,"t2":29},"4295":{"d":2,"dB":"2019-08-18T13:00:00Z","t1":77,"t2":26},"4290":{"d":2,"dB":"2019-08-17T14:00:00Z","t1":45,"t2":28},"4297":{"d":2,"dB":"2019-08-19T19:00:00Z","t1":69,"t2":31},"4289":{"d":2,"dB":"2019-08-17T14:00:00Z","t1":78,"t2":36},"4292":{"d":2,"dB":"2019-08-17T14:00:00Z","t1":76,"t2":46}},"k":"e24735"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.premier-league.20191212.json b/src/test/resources/__files/mpgstats.premier-league.20191212.json deleted file mode 100644 index 37f288c..0000000 --- a/src/test/resources/__files/mpgstats.premier-league.20191212.json +++ /dev/null @@ -1 +0,0 @@ -{"cN":"Customteam","bD":"2019-12-11T18:11:15Z","mL":{"i":2,"n":"Premier League","cN":"Premier-League","u":"\/league\/Premier-League","aS":{"cN":"Premier-League-2019-2020","i":10,"n":"Premier League 2019-2020","mD":38,"cD":{"cN":"CurrentDay","d":16,"lD":16}},"lS":{"cN":"Premier-League-2018-2019","i":7,"n":"Premier League 2018-2019","mD":38}},"mxD":17,"np":815,"le":{"2":"Premier-League"},"p":[{"i":5,"n":"Fabinho","f":"","p":"M","r":14,"s":{"g":"1","s":"68","n":"12","a":"5.67","d":"0.77","Og":"2","Os":"183","On":"33","Oa":"5.55","Od":"0.75","Mp":"32","Dp":"1","p":{"28":{"n":7},"1":{"n":7},"2":{"n":5,"s":1},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"12":{"n":6.5,"g":1},"13":{"n":4}}},"c":21},{"i":605,"n":"Man\u00e9","f":"Sadio","p":"A","r":53,"s":{"g":"9","s":"90","n":"15","a":"6","d":"1.2","Og":"25","Os":"221","On":"37","Oa":"5.97","Od":"1.08","Mp":"8","Ap":"29","p":{"28":{"n":7,"g":2},"1":{"n":4.5,"s":1},"2":{"n":7,"g":1},"3":{"n":5.5},"4":{"n":6,"g":1},"5":{"n":7.5,"g":2},"6":{"n":5},"7":{"n":4},"8":{"n":7,"g":1},"9":{"n":4},"10":{"n":6},"11":{"n":7,"g":1},"12":{"n":6.5,"g":1},"13":{"n":6.5,"g":1},"14":{"n":5.5},"15":{"n":8,"g":1}}},"c":21},{"i":606,"n":"Roberto Firmino","f":"","p":"A","r":28,"s":{"g":"4","s":"91","n":"16","a":"5.72","d":"0.85","Sg":"4","Ss":"91","Sn":"16","Sa":"5.72","Sd":"0.85","Og":"12","Os":"192","On":"34","Oa":"5.65","Od":"1.07","Mp":"6","Ap":"28","p":{"1":{"n":7},"2":{"n":6,"g":1},"3":{"n":5.5},"4":{"n":7.5,"g":1},"5":{"n":6.5,"s":1},"6":{"n":6.5,"g":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":5},"11":{"n":5},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":5},"15":{"n":5.5,"s":1},"16":{"n":6}}},"c":21},{"i":618,"n":"Lallana","f":"Adam","p":"M","r":9,"s":{"g":"1","s":"35","n":"7","a":"5.07","d":"0.68","Og":"1","Os":"81","On":"16","Oa":"5.06","Od":"0.46","Mp":"16","p":{"28":{"n":5,"s":1},"3":{"n":4.5,"s":1},"6":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":6.5,"g":1,"s":1},"11":{"n":5.5},"14":{"n":4.5,"s":1},"15":{"n":5}}},"c":21},{"i":624,"n":"Milner","f":"James","p":"M","r":11,"s":{"g":"1","s":"63","n":"12","a":"5.25","d":"0.8","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"3","Os":"150","On":"28","Oa":"5.38","Od":"0.82","Mp":"23","Dp":"5","p":{"28":{"n":6},"1":{"n":5,"s":1},"2":{"n":5},"3":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":7,"g":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":4.5},"16":{"n":7}}},"c":21},{"i":630,"n":"Wijnaldum","f":"Georginio","p":"M","r":26,"s":{"g":"2","s":"86","n":"15","a":"5.77","d":"0.68","Og":"4","Os":"195","On":"35","Oa":"5.57","Od":"0.86","Mp":"35","p":{"28":{"n":5.5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6},"6":{"n":5.5},"7":{"n":7,"g":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":5},"11":{"n":5},"12":{"n":7},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":7,"g":1}}},"c":21},{"i":636,"n":"Oxlade-Chamberlain","f":"Alex","p":"M","r":11,"s":{"g":"1","s":"57","n":"11","a":"5.18","d":"0.61","Sg":"1","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"67","On":"13","Oa":"5.15","Od":"0.57","Mp":"11","Ap":"2","p":{"2":{"n":6},"3":{"n":4.5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":5},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":4},"14":{"n":6},"16":{"n":6,"g":1}}},"c":21},{"i":638,"n":"Sturridge","f":"Daniel","p":"A","r":11,"s":{"n":0,"Os":"42","On":"9","Oa":"4.72","Od":"0.58","Ap":"9"},"c":21},{"i":644,"n":"Henderson","f":"Jordan","p":"M","r":23,"s":{"g":"1","s":"88","n":"15","a":"5.87","d":"0.85","Sg":"1","Ss":"65","Sn":"11","Sa":"5.95","Sd":"0.94","Og":"2","Os":"192","On":"34","Oa":"5.65","Od":"0.75","Mp":"33","Dp":"1","p":{"28":{"n":5.5,"s":1},"1":{"n":6},"2":{"n":5,"s":1},"3":{"n":5.5},"4":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":7,"g":1},"11":{"n":7},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":6,"s":1},"16":{"n":8}}},"c":21},{"i":655,"n":"Lovren","f":"Dejan","p":"D","r":11,"s":{"s":"46","n":"8","a":"5.81","d":"0.56","Ss":"40","Sn":"7","Sa":"5.79","Sd":"0.59","Og":"1","Os":"97","On":"17","Oa":"5.71","Od":"0.94","Dp":"17","p":{"8":{"n":6},"10":{"n":6},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":6},"14":{"n":5.5},"15":{"n":7},"16":{"n":5}}},"c":21},{"i":668,"n":"van Dijk","f":"Virgil","p":"D","r":35,"s":{"g":"3","s":"96","n":"16","a":"6","d":"0.68","Sg":"3","Ss":"96","Sn":"16","Sa":"6","Sd":"0.68","Og":"7","Os":"230","On":"38","Oa":"6.07","Od":"0.8","Dp":"38","p":{"28":{"n":8.5,"g":2},"1":{"n":7,"g":1},"2":{"n":6},"3":{"n":5.5},"4":{"n":6.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":6},"13":{"n":6},"14":{"n":8,"g":2},"15":{"n":5},"16":{"n":6}}},"c":21},{"i":672,"n":"Shaqiri","f":"Xherdan","p":"A","r":8,"s":{"g":"1","s":"21","n":"4","a":"5.25","d":"1.03","Sg":"1","Ss":"11","Sn":"2","Sa":"5.75","Sd":"1.25","Og":"4","Os":"84","On":"16","Oa":"5.25","Od":"1.09","Mp":"11","Ap":"5","p":{"4":{"n":5,"s":1},"5":{"n":4.5,"s":1},"15":{"n":7,"g":1},"16":{"n":4.5,"s":1}}},"c":21},{"i":681,"n":"Origi","f":"Divock","p":"A","r":11,"s":{"g":"3","s":"58","n":"12","a":"4.88","d":"1.12","Og":"5","Os":"108","On":"22","Oa":"4.91","Od":"1.01","Ap":"22","p":{"28":{"n":7,"g":1},"1":{"n":7,"g":1},"2":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4},"10":{"n":4,"s":1},"11":{"n":5,"s":1},"13":{"n":4,"s":1},"14":{"n":4,"s":1},"15":{"n":7.5,"g":2}}},"c":21},{"i":711,"n":"Clyne","f":"Nathaniel","p":"D","r":5,"s":{"n":0,"Os":"81","On":"18","Oa":"4.53","Od":"0.98","Dp":"18"},"c":21},{"i":760,"n":"Mignolet","f":"Simon","p":"G","r":6,"s":{"n":0},"c":21},{"i":766,"n":"Matip","f":"Joel","p":"D","r":7,"s":{"g":"1","s":"42","n":"7","a":"6","d":"0.71","Og":"1","Os":"120","On":"21","Oa":"5.74","Od":"0.65","Dp":"21","p":{"28":{"n":6},"2":{"n":6},"3":{"n":7.5,"g":1},"4":{"n":6},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"9":{"n":5}}},"c":21},{"i":776,"n":"Robertson","f":"Andrew","p":"D","r":23,"s":{"g":"1","s":"91","n":"16","a":"5.69","d":"0.77","Sg":"1","Ss":"91","Sn":"16","Sa":"5.69","Sd":"0.77","Og":"1","Os":"209","On":"38","Oa":"5.51","Od":"0.82","Dp":"38","p":{"28":{"n":6.5},"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":5.5},"5":{"n":7},"6":{"n":7},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6.5},"10":{"n":6},"11":{"n":6.5,"g":1},"12":{"n":5.5},"13":{"n":6},"14":{"n":5},"15":{"n":4},"16":{"n":5.5}}},"c":21},{"i":901,"n":"Adri\u00e1n","f":"","p":"G","r":7,"s":{"s":"47","n":"10","a":"4.75","d":"0.72","Os":"47","On":"10","Oa":"4.75","Od":"0.72","Gp":"10","p":{"1":{"n":4.5,"s":1},"2":{"n":4},"3":{"n":4.5},"4":{"n":6},"5":{"n":4},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"14":{"n":4,"s":1},"15":{"n":5}}},"c":21},{"i":970,"n":"Karius","f":"Loris","p":"G","r":9,"s":{"n":0},"c":21},{"i":995,"n":"Alexander-Arnold","f":"Trent","p":"D","r":25,"s":{"g":"1","s":"87","n":"16","a":"5.47","d":"0.87","Sg":"1","Ss":"87","Sn":"16","Sa":"5.47","Sd":"0.87","Og":"1","Os":"180","On":"32","Oa":"5.63","Od":"0.99","Dp":"32","p":{"28":{"n":8},"1":{"n":6},"2":{"n":4},"3":{"n":6},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":7,"g":1},"7":{"n":5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":6.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":6.5},"15":{"n":5},"16":{"n":6,"s":1}}},"c":21},{"i":1009,"n":"Grujic","f":"Marko","p":"M","r":1,"s":{"n":0},"c":21},{"i":1096,"n":"Gomez","f":"Joseph","p":"D","r":9,"s":{"s":"36","n":"7","a":"5.21","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"51","On":"10","Oa":"5.15","Od":"0.23","Dp":"10","p":{"1":{"n":5.5},"6":{"n":5,"s":1},"10":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5.5}}},"c":21},{"i":1151,"n":"Woodburn","f":"Ben","p":"A","r":1,"s":{"n":0},"c":21},{"i":1278,"n":"Mohamed Salah","f":"","p":"A","r":47,"s":{"g":"7","s":"75","n":"13","a":"5.81","d":"1.19","Sg":"1","Ss":"7","Sn":"1","Sa":"7","Og":"19","Os":"200","On":"35","Oa":"5.71","Od":"1.25","Ap":"35","p":{"28":{"n":5.5},"1":{"n":7,"g":1},"2":{"n":4},"3":{"n":7,"g":2},"4":{"n":6},"5":{"n":7,"g":1},"6":{"n":5},"7":{"n":4.5},"8":{"n":6},"10":{"n":6.5,"g":1},"11":{"n":4},"12":{"n":7,"g":1},"14":{"n":4.5},"16":{"n":7,"g":1}}},"c":21},{"i":1362,"n":"Brewster","f":"Rhian","p":"A","r":1,"s":{"n":0},"c":21},{"i":1374,"n":"Grabara","f":"Kamil","p":"G","r":1,"s":{"n":0},"c":21},{"i":1381,"n":"Kent","f":"Ryan","p":"M","r":8,"s":{"n":0},"c":21},{"i":2539,"n":"Camacho","f":"Rafael","p":"M","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Mp":"1"},"c":21},{"i":2546,"n":"Jones","f":"Curtis","p":"M","r":3,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"16":{"n":4.5,"s":1}}},"c":21},{"i":2551,"n":"Phillips","f":"Nathaniel","p":"D","r":1,"s":{"n":0},"c":21},{"i":2565,"n":"Keita","f":"Naby","p":"M","r":12,"s":{"g":"1","s":"18","n":"3","a":"6.17","d":"1.65","Sg":"1","Ss":"8","Sn":"1","Sa":"8.5","Og":"3","Os":"85","On":"16","Oa":"5.31","Od":"1.24","Mp":"16","p":{"28":{"n":4.5,"s":1},"9":{"n":5,"s":1},"11":{"n":5,"s":1},"16":{"n":8.5,"g":1}}},"c":21},{"i":2566,"n":"Johnston","f":"George","p":"D","r":1,"s":{"n":0},"c":21},{"i":2591,"n":"Alisson","f":"","p":"G","r":17,"s":{"s":"42","n":"8","a":"5.25","d":"0.66","Ss":"5","Sn":"1","Sa":"5.5","Os":"159","On":"30","Oa":"5.32","Od":"0.85","Gp":"30","p":{"28":{"n":6.5},"1":{"n":5.5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":6},"14":{"n":4},"16":{"n":5.5}}},"c":21},{"i":2884,"n":"Elliott","f":"Harvey","p":"M","r":1,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"2"},"c":21},{"i":3117,"n":"Hoever","f":"Ki-Jana","p":"D","r":1,"s":{"n":0},"c":21},{"i":3120,"n":"Kelleher","f":"Caoimhin","p":"G","r":1,"s":{"n":0},"c":21},{"i":3121,"n":"Christie-Davies","f":"Isaac","p":"M","r":1,"s":{"n":0},"c":21},{"i":3639,"n":"van den Berg","f":"Sepp","p":"D","r":1,"s":{"n":0},"c":21},{"i":3641,"n":"Larouci","f":"Yasser","p":"D","r":5,"s":{"n":0},"c":21},{"i":3642,"n":"Jaros","f":"Vitezslav","p":"G","r":1,"s":{"n":0},"c":21},{"i":3666,"n":"Atherton","f":"Daniel","p":"G","r":1,"s":{"n":0},"c":21},{"i":3667,"n":"Glatzel","f":"Paul","p":"A","r":1,"s":{"n":0},"c":21},{"i":3672,"n":"Lewis","f":"Adam","p":"M","r":3,"s":{"n":0},"c":21},{"i":5451,"n":"Lonergan","f":"Andy","p":"G","r":1,"s":{"n":0},"c":21},{"i":6124,"n":"Chirivella","f":"Pedro","p":"M","r":1,"s":{"n":0},"c":21},{"i":24,"n":"Sidib\u00e9","f":"Djibril","p":"D","r":11,"s":{"s":"44","n":"9","a":"4.94","d":"1.01","Ss":"44","Sn":"9","Sa":"4.94","Sd":"1.01","Os":"124","On":"26","Oa":"4.77","Od":"0.86","Mp":"4","Dp":"22","p":{"8":{"n":4.5,"s":1},"9":{"n":6},"10":{"n":4},"11":{"n":4.5},"12":{"n":6.5},"13":{"n":4},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":6}}},"c":22},{"i":612,"n":"Sigurdsson","f":"Gylfi","p":"M","r":19,"s":{"g":"1","s":"84","n":"16","a":"5.28","d":"0.81","Sg":"1","Ss":"84","Sn":"16","Sa":"5.28","Sd":"0.81","Og":"8","Os":"208","On":"38","Oa":"5.49","Od":"1.14","Mp":"36","Ap":"2","p":{"35":{"n":8,"g":1},"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":6},"5":{"n":4.5},"6":{"n":5},"7":{"n":6},"8":{"n":5.5},"9":{"n":7,"g":1,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":6},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":3.5},"16":{"n":6}}},"c":22},{"i":614,"n":"Mirallas","f":"Kevin","p":"M","r":18,"s":{"n":0},"c":22},{"i":642,"n":"Walcott","f":"Theo","p":"A","r":10,"s":{"s":"53","n":"11","a":"4.82","d":"0.98","Ss":"5","Sn":"1","Sa":"5.5","Og":"3","Os":"153","On":"32","Oa":"4.8","Od":"0.91","Mp":"14","Ap":"18","p":{"35":{"n":6.5,"g":1,"s":1},"2":{"n":4,"s":1},"3":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"9":{"n":7},"10":{"n":4},"11":{"n":4.5},"12":{"n":6},"13":{"n":3.5},"16":{"n":5.5}}},"c":22},{"i":645,"n":"Baines","f":"Leighton","p":"D","r":4,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"14","On":"3","Oa":"4.83","Od":"0.62","Dp":"3","p":{"16":{"n":5,"s":1}}},"c":22},{"i":697,"n":"Keane","f":"Michael","p":"D","r":10,"s":{"g":"1","s":"62","n":"14","a":"4.43","d":"1","Sg":"1","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.94","Og":"1","Os":"163","On":"34","Oa":"4.79","Od":"1.18","Dp":"34","p":{"35":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":4},"4":{"n":5.5},"5":{"n":3},"6":{"n":3.5},"7":{"n":3.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":3},"12":{"n":4.5,"s":1},"14":{"n":4},"15":{"n":4,"g":1},"16":{"n":6}}},"c":22},{"i":705,"n":"Iwobi","f":"Alex","p":"M","r":12,"s":{"g":"1","s":"72","n":"14","a":"5.18","d":"0.77","Sg":"1","Ss":"72","Sn":"14","Sa":"5.18","Sd":"0.77","Og":"3","Os":"181","On":"36","Oa":"5.03","Od":"0.97","Mp":"30","Ap":"6","p":{"3":{"n":5.5,"s":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":5.5},"9":{"n":6},"10":{"n":5},"11":{"n":4.5},"12":{"n":6,"s":1},"13":{"n":5,"s":1},"14":{"n":4},"15":{"n":4.5},"16":{"n":4.5}}},"c":22},{"i":715,"n":"Bolasie","f":"Yannick","p":"A","r":9,"s":{"n":0},"c":22},{"i":779,"n":"Stekelenburg","f":"Maarten","p":"G","r":1,"s":{"n":0},"c":22},{"i":833,"n":"Schneiderlin","f":"Morgan","p":"M","r":10,"s":{"s":"51","n":"11","a":"4.68","d":"0.53","Ss":"25","Sn":"5","Sa":"5","Sd":"0.32","Os":"96","On":"19","Oa":"5.08","Od":"0.89","Mp":"19","p":{"35":{"n":7},"1":{"n":4},"3":{"n":5.5},"5":{"n":4.5},"6":{"n":4},"7":{"n":4.5},"8":{"n":4},"12":{"n":5},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":5.5}}},"c":22},{"i":834,"n":"Davies","f":"Tom","p":"M","r":10,"s":{"g":"1","s":"50","n":"10","a":"5.05","d":"1.01","Sg":"1","Ss":"41","Sn":"8","Sa":"5.13","Sd":"1.11","Og":"1","Os":"97","On":"20","Oa":"4.88","Od":"0.89","Mp":"20","p":{"1":{"n":5,"s":1},"7":{"n":4.5,"s":1},"9":{"n":6.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":4.5},"15":{"n":3.5},"16":{"n":5,"s":1}}},"c":22},{"i":844,"n":"Holgate","f":"Mason","p":"D","r":11,"s":{"s":"43","n":"9","a":"4.83","d":"0.97","Ss":"38","Sn":"8","Sa":"4.81","Sd":"1.03","Os":"43","On":"9","Oa":"4.83","Od":"0.97","Dp":"9","p":{"2":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":3},"16":{"n":6}}},"c":22},{"i":909,"n":"Pickford","f":"Jordan","p":"G","r":13,"s":{"s":"78","n":"16","a":"4.91","d":"1.13","Ss":"78","Sn":"16","Sa":"4.91","Sd":"1.13","Os":"194","On":"38","Oa":"5.11","Od":"1.16","Gp":"38","p":{"35":{"n":6.5},"1":{"n":6},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":4},"6":{"n":4},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":7},"10":{"n":4},"11":{"n":4.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":2},"16":{"n":5.5}}},"c":22},{"i":930,"n":"Coleman","f":"S\u00e9amus","p":"D","r":8,"s":{"s":"40","n":"9","a":"4.5","d":"0.78","Og":"1","Os":"129","On":"26","Oa":"4.96","Od":"1.19","Mp":"2","Dp":"24","p":{"35":{"n":6},"1":{"n":5},"2":{"n":4.5},"3":{"n":4},"4":{"n":5},"5":{"n":3.5},"6":{"n":5},"7":{"n":5.5},"8":{"n":3},"13":{"n":5,"s":1}}},"c":22},{"i":958,"n":"Delph","f":"Fabian","p":"M","r":6,"s":{"s":"35","n":"7","a":"5","d":"0.6","Os":"55","On":"11","Oa":"5.05","Od":"0.66","Mp":"8","Dp":"3","p":{"4":{"n":5},"5":{"n":4.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":5},"10":{"n":5,"s":1},"11":{"n":6}}},"c":22},{"i":967,"n":"Cuco Martina","f":"","p":"D","r":1,"s":{"n":0},"c":22},{"i":1028,"n":"Niasse","f":"Oumar","p":"A","r":4,"s":{"n":0,"Os":"58","On":"14","Oa":"4.18","Od":"0.67","Ap":"14"},"c":22},{"i":1039,"n":"Lookman","f":"Ademola","p":"A","r":7,"s":{"n":0,"Os":"53","On":"11","Oa":"4.82","Od":"0.61","Mp":"2","Ap":"9"},"c":22},{"i":1066,"n":"Calvert-Lewin","f":"Dominic","p":"A","r":14,"s":{"g":"5","s":"66","n":"14","a":"4.75","d":"1.21","Sg":"3","Ss":"35","Sn":"7","Sa":"5","Sd":"1.44","Og":"9","Os":"169","On":"35","Oa":"4.84","Od":"1.09","Ap":"35","p":{"35":{"n":5.5},"1":{"n":4},"2":{"n":4},"3":{"n":3.5},"4":{"n":4.5,"s":1},"5":{"n":5.5,"g":1},"7":{"n":6,"g":1},"8":{"n":4},"10":{"n":6,"g":1,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":3.5},"15":{"n":4},"16":{"n":8,"g":2}}},"c":22},{"i":1094,"n":"Kenny","f":"Jonjoe","p":"D","r":5,"s":{"n":0,"Os":"26","On":"6","Oa":"4.42","Od":"0.73","Dp":"6"},"c":22},{"i":1114,"n":"Hewelt","f":"Mateusz","p":"G","r":1,"s":{"n":0},"c":22},{"i":1307,"n":"Richarlison","f":"","p":"A","r":27,"s":{"g":"6","s":"91","n":"16","a":"5.72","d":"1.09","Sg":"6","Ss":"91","Sn":"16","Sa":"5.72","Sd":"1.09","Og":"11","Os":"193","On":"37","Oa":"5.23","Od":"1.2","Mp":"26","Ap":"11","p":{"35":{"n":7,"g":1},"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":8,"g":2},"5":{"n":6.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":7.5,"g":1},"13":{"n":4},"14":{"n":6.5,"g":1},"15":{"n":5.5,"g":1},"16":{"n":6.5,"g":1}}},"c":22},{"i":1479,"n":"L\u00f6ssl","f":"Jonas","p":"G","r":7,"s":{"n":0,"Os":"90","On":"17","Oa":"5.29","Od":"1.37","Gp":"17"},"c":22},{"i":1751,"n":"Andr\u00e9 Gomes","f":"","p":"M","r":1,"s":{"s":"38","n":"8","a":"4.81","d":"0.9","Og":"1","Os":"130","On":"27","Oa":"4.81","Od":"0.81","Mp":"27","p":{"1":{"n":6},"2":{"n":5},"3":{"n":3},"4":{"n":5.5},"8":{"n":5,"s":1},"9":{"n":5.5},"10":{"n":4},"11":{"n":4.5}}},"c":22},{"i":1881,"n":"Digne","f":"Lucas","p":"D","r":15,"s":{"ao":"1","s":"75","n":"16","a":"4.69","d":"0.83","Sao":"1","Ss":"75","Sn":"16","Sa":"4.69","Sd":"0.83","Og":"3","Oao":"2","Os":"185","On":"37","Oa":"5.01","Od":"1.25","Mp":"3","Dp":"34","p":{"35":{"n":7.5,"g":1},"1":{"n":4.5},"2":{"n":6},"3":{"n":4},"4":{"n":5.5},"5":{"n":3.5},"6":{"n":4},"7":{"n":4},"8":{"n":5},"9":{"n":6},"10":{"n":4.5,"a":1},"11":{"n":6},"12":{"n":5},"13":{"n":4},"14":{"n":4.5},"15":{"n":3.5},"16":{"n":5}}},"c":22},{"i":2026,"n":"Vlasic","f":"Nikola","p":"A","r":7,"s":{"n":0},"c":22},{"i":2118,"n":"Baningime","f":"Beni","p":"M","r":1,"s":{"n":0},"c":22},{"i":2197,"n":"Tosun","f":"Cenk","p":"A","r":7,"s":{"g":"1","s":"18","n":"4","a":"4.63","d":"0.82","Og":"2","Os":"74","On":"16","Oa":"4.66","Od":"0.76","Ap":"16","p":{"6":{"n":4,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4},"13":{"n":4.5}}},"c":22},{"i":2241,"n":"Mina","f":"Yerry","p":"D","r":12,"s":{"ao":"1","s":"66","n":"14","a":"4.75","d":"1.03","Og":"1","Oao":"1","Os":"100","On":"21","Oa":"4.79","Od":"1.08","Dp":"21","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":3,"a":1},"7":{"n":4.5},"8":{"n":5},"9":{"n":6},"11":{"n":5},"12":{"n":6},"13":{"n":3.5},"14":{"n":5},"15":{"n":3}}},"c":22},{"i":2569,"n":"Dowell","f":"Kieran","p":"M","r":1,"s":{"n":0},"c":22},{"i":2583,"n":"Browning","f":"Tyias","p":"D","r":1,"s":{"n":0},"c":22},{"i":2593,"n":"Pennington","f":"Matthew","p":"D","r":5,"s":{"n":0},"c":22},{"i":2760,"n":"Williams","f":"Joe","p":"M","r":1,"s":{"n":0},"c":22},{"i":2764,"n":"Bernard","f":"","p":"M","r":10,"s":{"g":"2","s":"51","n":"10","a":"5.1","d":"1.16","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"3","Os":"157","On":"31","Oa":"5.06","Od":"1.11","Mp":"25","Ap":"6","p":{"35":{"n":7},"1":{"n":5},"2":{"n":7,"g":1},"3":{"n":4.5},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":3.5},"9":{"n":7.5,"g":1},"10":{"n":5},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":22},{"i":2851,"n":"Jo\u00e3o Virg\u00ednia","f":"","p":"G","r":1,"s":{"n":0},"c":22},{"i":3685,"n":"Tarashaj","f":"Shani","p":"A","r":3,"s":{"n":0},"c":22},{"i":4293,"n":"Kean","f":"Moise","p":"A","r":7,"s":{"s":"49","n":"11","a":"4.5","d":"0.3","Os":"49","On":"11","Oa":"4.5","Od":"0.3","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":4.5,"s":1},"8":{"n":4,"s":1},"9":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4,"s":1}}},"c":22},{"i":5998,"n":"Gbamin","f":"Jean-Philippe","p":"M","r":5,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"1":{"n":5,"s":1},"2":{"n":5}}},"c":22},{"i":717,"n":"Defour","f":"Steven","p":"M","r":1,"s":{"n":0},"c":23},{"i":718,"n":"Rodriguez","f":"Jay","p":"A","r":10,"s":{"g":"2","s":"69","n":"16","a":"4.31","d":"0.92","Sg":"2","Ss":"69","Sn":"16","Sa":"4.31","Sd":"0.92","Og":"2","Os":"69","On":"16","Oa":"4.31","Od":"0.92","Ap":"16","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4,"s":1},"6":{"n":4.5,"s":1},"7":{"n":6,"g":1,"s":1},"8":{"n":5,"s":1},"9":{"n":4},"10":{"n":6,"g":1},"11":{"n":2.5},"12":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":2.5}}},"c":23},{"i":722,"n":"Crouch","f":"Peter","p":"A","r":7,"s":{"n":0,"Os":"23","On":"5","Oa":"4.6","Od":"0.2","Ap":"5","p":{"28":{"n":4.5,"s":1}}},"c":23},{"i":742,"n":"Cork","f":"Jack","p":"M","r":12,"s":{"s":"66","n":"14","a":"4.75","d":"1.24","Ss":"31","Sn":"7","Sa":"4.5","Sd":"1.41","Os":"179","On":"36","Oa":"4.97","Od":"0.98","Mp":"36","p":{"28":{"n":4.5},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":4},"5":{"n":4},"6":{"n":6.5},"7":{"n":4},"10":{"n":5.5},"11":{"n":3},"12":{"n":7},"13":{"n":5.5},"14":{"n":4},"15":{"n":3.5},"16":{"n":3}}},"c":23},{"i":763,"n":"Gibson","f":"Ben","p":"D","r":1,"s":{"n":0,"Og":"1","Os":"5","On":"1","Oa":"5","Dp":"1"},"c":23},{"i":764,"n":"Lowton","f":"Matthew","p":"D","r":9,"s":{"s":"55","n":"12","a":"4.58","d":"1.26","Ss":"2","Sn":"1","Sa":"2.5","Os":"97","On":"21","Oa":"4.62","Od":"1.09","Dp":"21","p":{"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5},"6":{"n":6},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":4},"10":{"n":3},"11":{"n":3},"16":{"n":2.5}}},"c":23},{"i":765,"n":"Barnes","f":"Ashley","p":"A","r":22,"s":{"g":"6","s":"70","n":"14","a":"5","d":"1.56","Og":"16","Oao":"1","Os":"185","On":"36","Oa":"5.15","Od":"1.34","Ap":"36","p":{"28":{"n":4.5},"1":{"n":8,"g":2},"2":{"n":6.5,"g":1},"3":{"n":6,"g":1},"4":{"n":3},"5":{"n":4},"6":{"n":5.5},"7":{"n":4.5},"8":{"n":4.5},"10":{"n":4},"11":{"n":2.5},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1},"14":{"n":3.5},"15":{"n":4.5,"s":1}}},"c":23},{"i":767,"n":"Mee","f":"Ben","p":"D","r":10,"s":{"s":"75","n":"16","a":"4.72","d":"1.32","Ss":"75","Sn":"16","Sa":"4.72","Sd":"1.32","Oao":"1","Os":"185","On":"38","Oa":"4.88","Od":"1.2","Dp":"38","p":{"28":{"n":5},"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":6},"9":{"n":4},"10":{"n":3.5},"11":{"n":3},"12":{"n":7},"13":{"n":6},"14":{"n":3},"15":{"n":3.5},"16":{"n":3}}},"c":23},{"i":769,"n":"Ward","f":"Stephen","p":"D","r":1,"s":{"n":0},"c":23},{"i":803,"n":"Vokes","f":"Sam","p":"A","r":10,"s":{"n":0,"Os":"20","On":"5","Oa":"4.1","Od":"0.8","Ap":"5"},"c":23},{"i":811,"n":"Pieters","f":"Erik","p":"D","r":10,"s":{"s":"61","n":"14","a":"4.39","d":"1.23","Ss":"10","Sn":"3","Sa":"3.5","Sd":"0.41","Og":"1","Os":"139","On":"29","Oa":"4.81","Od":"1.24","Mp":"1","Dp":"28","p":{"1":{"n":7},"2":{"n":5},"3":{"n":3.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":6},"7":{"n":5},"8":{"n":5},"9":{"n":4},"10":{"n":3},"11":{"n":2.5},"14":{"n":4,"s":1},"15":{"n":3.5},"16":{"n":3}}},"c":23},{"i":813,"n":"Walters","f":"Jonathan","p":"A","r":1,"s":{"n":0},"c":23},{"i":816,"n":"Drinkwater","f":"Daniel","p":"M","r":6,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Mp":"1","p":{"15":{"n":4}}},"c":23},{"i":846,"n":"Johann Gudmundsson","f":"","p":"M","r":7,"s":{"g":"1","s":"23","n":"4","a":"5.88","d":"1.02","Og":"2","Os":"101","On":"19","Oa":"5.32","Od":"0.8","Mp":"19","p":{"28":{"n":5},"1":{"n":7.5,"g":1},"2":{"n":5},"3":{"n":5},"8":{"n":6}}},"c":23},{"i":897,"n":"Brady","f":"Robbie","p":"M","r":8,"s":{"g":"1","s":"44","n":"9","a":"4.94","d":"0.83","Sg":"1","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.25","Og":"1","Os":"87","On":"18","Oa":"4.86","Od":"0.66","Mp":"18","p":{"28":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":4.5},"10":{"n":6,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"14":{"n":5},"15":{"n":6,"g":1,"s":1},"16":{"n":3}}},"c":23},{"i":899,"n":"Lennon","f":"Aaron","p":"M","r":6,"s":{"s":"52","n":"11","a":"4.77","d":"0.39","Ss":"14","Sn":"3","Sa":"4.67","Sd":"0.47","Os":"58","On":"12","Oa":"4.83","Od":"0.42","Mp":"12","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":4},"5":{"n":4.5},"6":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4},"16":{"n":5,"s":1}}},"c":23},{"i":932,"n":"Bardsley","f":"Phil","p":"D","r":9,"s":{"s":"21","n":"4","a":"5.38","d":"1.43","Oao":"1","Os":"90","On":"19","Oa":"4.76","Od":"1.09","Dp":"19","p":{"28":{"n":3.5},"12":{"n":6.5},"13":{"n":7},"14":{"n":4.5},"15":{"n":3.5}}},"c":23},{"i":951,"n":"Tarkowski","f":"James","p":"D","r":14,"s":{"g":"1","s":"79","n":"16","a":"4.97","d":"1.47","Sg":"1","Ss":"79","Sn":"16","Sa":"4.97","Sd":"1.47","Og":"1","Os":"189","On":"38","Oa":"4.99","Od":"1.35","Dp":"38","p":{"28":{"n":3.5},"1":{"n":6},"2":{"n":4.5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":7},"9":{"n":5},"10":{"n":4},"11":{"n":3},"12":{"n":7.5},"13":{"n":7.5,"g":1},"14":{"n":3.5},"15":{"n":3.5},"16":{"n":3}}},"c":23},{"i":997,"n":"Hendrick","f":"Jeff","p":"M","r":14,"s":{"g":"2","s":"65","n":"13","a":"5.04","d":"1.25","Sg":"2","Ss":"60","Sn":"12","Sa":"5.04","Sd":"1.3","Og":"3","Os":"163","On":"33","Oa":"4.94","Od":"0.97","Mp":"32","Ap":"1","p":{"28":{"n":4},"3":{"n":5,"s":1},"5":{"n":7,"g":1,"s":1},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":4},"10":{"n":4},"11":{"n":3.5},"12":{"n":6.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":4},"16":{"n":3}}},"c":23},{"i":1045,"n":"Pope","f":"Nick","p":"G","r":13,"s":{"s":"84","n":"16","a":"5.25","d":"1.26","Ss":"84","Sn":"16","Sa":"5.25","Sd":"1.26","Os":"84","On":"16","Oa":"5.25","Od":"1.26","Gp":"16","p":{"1":{"n":6.5},"2":{"n":7},"3":{"n":5.5},"4":{"n":4},"5":{"n":6.5},"6":{"n":6.5},"7":{"n":4},"8":{"n":6},"9":{"n":4},"10":{"n":4},"11":{"n":4},"12":{"n":6.5},"13":{"n":7},"14":{"n":4},"15":{"n":5},"16":{"n":3.5}}},"c":23},{"i":1054,"n":"Westwood","f":"Ashley","p":"M","r":15,"s":{"s":"68","n":"13","a":"5.23","d":"1.15","Og":"2","Os":"185","On":"34","Oa":"5.46","Od":"1.11","Mp":"34","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":6},"4":{"n":3.5},"5":{"n":5},"6":{"n":6.5},"7":{"n":4},"8":{"n":7},"9":{"n":4.5},"10":{"n":4},"11":{"n":4},"12":{"n":6},"13":{"n":7}}},"c":23},{"i":1074,"n":"Long","f":"Kevin","p":"D","r":1,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Od":"1","Dp":"2"},"c":23},{"i":1297,"n":"Taylor","f":"Charlie","p":"D","r":8,"s":{"s":"28","n":"5","a":"5.6","d":"0.58","Os":"135","On":"27","Oa":"5.02","Od":"0.78","Dp":"27","p":{"28":{"n":4.5},"8":{"n":5.5,"s":1},"11":{"n":5,"s":1},"12":{"n":6},"13":{"n":6.5},"14":{"n":5}}},"c":23},{"i":1299,"n":"Wood","f":"Chris","p":"A","r":19,"s":{"g":"6","ao":"1","s":"66","n":"14","a":"4.71","d":"1.64","Sg":"2","Ss":"23","Sn":"5","Sa":"4.7","Sd":"1.75","Og":"15","Oao":"1","Os":"178","On":"36","Oa":"4.96","Od":"1.57","Ap":"36","p":{"28":{"n":3.5},"1":{"n":4.5},"2":{"n":3.5},"3":{"n":4},"4":{"n":2.5,"a":1},"5":{"n":3.5},"6":{"n":8,"g":2},"7":{"n":6,"g":1},"8":{"n":4.5},"9":{"n":6,"g":1},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1},"14":{"n":4},"15":{"n":3.5},"16":{"n":2.5}}},"c":23},{"i":1320,"n":"Hart","f":"Joe","p":"G","r":7,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"1.03","Gp":"3"},"c":23},{"i":1345,"n":"Legzdins","f":"Adam","p":"G","r":1,"s":{"n":0},"c":23},{"i":1348,"n":"Agyei","f":"Daniel","p":"A","r":1,"s":{"n":0},"c":23},{"i":1478,"n":"Wells","f":"Nahki","p":"A","r":6,"s":{"n":0},"c":23},{"i":2061,"n":"Lindegaard","f":"Anders","p":"G","r":1,"s":{"n":0},"c":23},{"i":2200,"n":"O'Neill","f":"Aiden","p":"M","r":7,"s":{"n":0},"c":23},{"i":2497,"n":"Vydra","f":"Matej","p":"A","r":4,"s":{"s":"22","n":"5","a":"4.4","d":"0.37","Ss":"4","Sn":"1","Sa":"4","Os":"48","On":"11","Oa":"4.41","Od":"0.47","Ap":"11","p":{"28":{"n":4,"s":1},"5":{"n":5,"s":1},"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"16":{"n":4,"s":1}}},"c":23},{"i":2817,"n":"McNeil","f":"Dwight","p":"A","r":17,"s":{"g":"1","s":"92","n":"16","a":"5.78","d":"1.15","Sg":"1","Ss":"92","Sn":"16","Sa":"5.78","Sd":"1.15","Og":"4","Os":"203","On":"36","Oa":"5.64","Od":"1.11","Mp":"34","Ap":"2","p":{"28":{"n":3.5},"1":{"n":7},"2":{"n":6},"3":{"n":6},"4":{"n":5},"5":{"n":5},"6":{"n":7},"7":{"n":5.5},"8":{"n":6},"9":{"n":6},"10":{"n":7,"g":1},"11":{"n":3.5},"12":{"n":8},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":4}}},"c":23},{"i":2972,"n":"Ali Koiki","f":"","p":"D","r":1,"s":{"n":0},"c":23},{"i":2984,"n":"Massanka","f":"Ntumba","p":"M","r":2,"s":{"n":0},"c":23},{"i":3351,"n":"Benson","f":"Josh","p":"M","r":1,"s":{"n":0},"c":23},{"i":3673,"n":"Driscoll-Glennon","f":"Anthony","p":"D","r":1,"s":{"n":0},"c":23},{"i":5995,"n":"Peacock-Farrell","f":"Bailey","p":"G","r":1,"s":{"n":0},"c":23},{"i":6120,"n":"Jimmy Dunne","f":"","p":"D","r":2,"s":{"n":0},"c":23},{"i":6240,"n":"Richardson","f":"Lewis","p":"A","r":1,"s":{"n":0},"c":23},{"i":8,"n":"Lucas Moura","f":"","p":"M","r":20,"s":{"g":"3","s":"73","n":"14","a":"5.21","d":"0.92","Sg":"2","Ss":"47","Sn":"9","Sa":"5.28","Sd":"0.92","Og":"8","Os":"159","On":"31","Oa":"5.13","Od":"1.06","Mp":"19","Ap":"12","p":{"20":{"n":4.5,"s":1},"1":{"n":6},"2":{"n":6,"g":1,"s":1},"3":{"n":3.5},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":4},"12":{"n":5.5,"s":1},"13":{"n":5.5,"g":1},"14":{"n":4.5,"s":1},"15":{"n":5},"16":{"n":7.5,"g":1}}},"c":24},{"i":21,"n":"Aurier","f":"Serge","p":"D","r":12,"s":{"s":"55","n":"11","a":"5","d":"1.21","Ss":"42","Sn":"8","Sa":"5.25","Sd":"0.94","Os":"64","On":"13","Oa":"4.92","Od":"1.12","Mp":"3","Dp":"10","p":{"5":{"n":6.5},"6":{"n":3},"7":{"n":3.5},"9":{"n":5},"10":{"n":3},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":5},"15":{"n":6},"16":{"n":5.5}}},"c":24},{"i":295,"n":"Lo Celso","f":"Giovani","p":"M","r":10,"s":{"s":"39","n":"8","a":"4.88","d":"0.22","Og":"5","Os":"136","On":"27","Oa":"5.04","Od":"1.14","Mp":"19","Ap":"8","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":5},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1}}},"c":24},{"i":589,"n":"Kane","f":"Harry","p":"A","r":42,"s":{"g":"9","s":"82","n":"15","a":"5.47","d":"1.53","Sg":"3","Ss":"27","Sn":"5","Sa":"5.5","Sd":"1.7","Og":"17","Os":"153","On":"27","Oa":"5.67","Od":"1.36","Ap":"27","p":{"20":{"n":6,"g":1},"1":{"n":8,"g":2},"2":{"n":4},"3":{"n":3.5},"4":{"n":6,"g":1},"5":{"n":6},"6":{"n":7,"g":1},"7":{"n":6,"g":1},"8":{"n":3.5},"9":{"n":4.5},"10":{"n":6,"g":1},"12":{"n":3.5},"13":{"n":6,"g":1},"14":{"n":5},"15":{"n":4.5},"16":{"n":8.5,"g":2}}},"c":24},{"i":596,"n":"Dele Alli","f":"","p":"M","r":29,"s":{"g":"5","s":"56","n":"9","a":"6.22","d":"1.06","Sg":"5","Ss":"51","Sn":"8","Sa":"6.44","Sd":"0.92","Og":"7","Os":"125","On":"23","Oa":"5.46","Od":"1.09","Mp":"21","Ap":"2","p":{"20":{"n":4},"4":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":5},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":6},"14":{"n":8,"g":2},"15":{"n":7,"g":1},"16":{"n":7}}},"c":24},{"i":611,"n":"Eriksen","f":"Christian","p":"M","r":17,"s":{"g":"1","s":"61","n":"12","a":"5.13","d":"0.92","Og":"9","Os":"189","On":"34","Oa":"5.56","Od":"1.11","Mp":"30","Ap":"4","p":{"20":{"n":4.5},"1":{"n":6,"s":1},"2":{"n":5},"3":{"n":5,"s":1},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":4.5,"s":1},"7":{"n":6.5},"8":{"n":4},"10":{"n":4},"11":{"n":4.5},"13":{"n":4.5,"s":1},"15":{"n":5,"s":1}}},"c":24},{"i":613,"n":"Lloris","f":"Hugo","p":"G","r":6,"s":{"s":"39","n":"7","a":"5.57","d":"1.37","Os":"157","On":"28","Oa":"5.63","Od":"1.21","Gp":"28","p":{"20":{"n":4},"1":{"n":5.5},"2":{"n":7.5},"3":{"n":5},"4":{"n":6},"5":{"n":7},"7":{"n":5},"8":{"n":3}}},"c":24},{"i":635,"n":"Wanyama","f":"Victor","p":"M","r":1,"s":{"s":"10","n":"2","a":"5","Og":"1","Os":"56","On":"11","Oa":"5.14","Od":"0.83","Mp":"11","p":{"6":{"n":5,"s":1},"7":{"n":5,"s":1}}},"c":24},{"i":652,"n":"Alderweireld","f":"Toby","p":"D","r":16,"s":{"s":"76","n":"15","a":"5.1","d":"0.82","Ss":"21","Sn":"4","Sa":"5.25","Sd":"0.56","Oao":"1","Os":"181","On":"35","Oa":"5.17","Od":"0.79","Dp":"35","p":{"20":{"n":4},"1":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":4},"5":{"n":7},"6":{"n":4},"7":{"n":5.5},"8":{"n":4},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":24},{"i":658,"n":"Vertonghen","f":"Jan","p":"D","r":13,"s":{"s":"46","n":"9","a":"5.17","d":"1.03","Ss":"16","Sn":"3","Sa":"5.5","Sd":"1.08","Os":"116","On":"22","Oa":"5.27","Od":"0.94","Dp":"22","p":{"4":{"n":4},"5":{"n":6},"6":{"n":5},"7":{"n":6},"8":{"n":3.5},"9":{"n":5.5},"14":{"n":5},"15":{"n":4.5},"16":{"n":7}}},"c":24},{"i":687,"n":"Sissoko","f":"Moussa","p":"M","r":19,"s":{"g":"2","s":"85","n":"16","a":"5.34","d":"0.98","Sg":"2","Ss":"85","Sn":"16","Sa":"5.34","Sd":"0.98","Og":"2","Os":"182","On":"34","Oa":"5.37","Od":"0.93","Mp":"33","Dp":"1","p":{"20":{"n":4.5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":6},"4":{"n":5},"5":{"n":6},"6":{"n":5.5},"7":{"n":6},"8":{"n":3},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4.5,"s":1},"14":{"n":7,"g":1},"15":{"n":4},"16":{"n":7,"g":1}}},"c":24},{"i":714,"n":"Rose","f":"Danny","p":"D","r":7,"s":{"s":"47","n":"10","a":"4.75","d":"0.25","Os":"136","On":"28","Oa":"4.86","Od":"0.53","Mp":"8","Dp":"20","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5},"6":{"n":5},"7":{"n":5},"9":{"n":4.5},"10":{"n":4.5},"13":{"n":5,"s":1}}},"c":24},{"i":724,"n":"Dier","f":"Eric","p":"M","r":12,"s":{"s":"28","n":"6","a":"4.75","d":"0.63","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"62","On":"13","Oa":"4.81","Od":"0.5","Mp":"11","Dp":"2","p":{"7":{"n":4.5,"s":1},"8":{"n":4},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":5},"16":{"n":6}}},"c":24},{"i":783,"n":"Demb\u00e9l\u00e9","f":"Mousa","p":"M","r":3,"s":{"n":0},"c":24},{"i":786,"n":"Lamela","f":"Erik","p":"M","r":11,"s":{"g":"2","s":"48","n":"9","a":"5.33","d":"1.2","Og":"2","Os":"98","On":"19","Oa":"5.16","Od":"1","Mp":"18","Ap":"1","p":{"1":{"n":6},"2":{"n":7,"g":1},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":5,"s":1}}},"c":24},{"i":799,"n":"Vorm","f":"Michel","p":"G","r":1,"s":{"n":0},"c":24},{"i":824,"n":"Son Heung-Min","f":"","p":"A","r":36,"s":{"g":"5","s":"83","n":"14","a":"5.93","d":"1.47","Sg":"5","Ss":"83","Sn":"14","Sa":"5.93","Sd":"1.47","Og":"14","Os":"192","On":"34","Oa":"5.66","Od":"1.51","Mp":"14","Ap":"20","p":{"20":{"n":4.5},"3":{"n":4.5},"4":{"n":6},"5":{"n":8,"g":2},"6":{"n":5},"7":{"n":6},"8":{"n":3.5},"9":{"n":4,"s":1},"10":{"n":6},"11":{"n":4.5},"12":{"n":6.5,"g":1},"13":{"n":8,"g":1},"14":{"n":7.5},"15":{"n":5.5},"16":{"n":8,"g":1}}},"c":24},{"i":831,"n":"Winks","f":"Harry","p":"M","r":9,"s":{"s":"71","n":"14","a":"5.07","d":"0.73","Og":"1","Os":"141","On":"26","Oa":"5.44","Od":"0.89","Mp":"26","p":{"20":{"n":4.5},"1":{"n":5.5},"2":{"n":4.5},"3":{"n":5},"4":{"n":5},"5":{"n":7},"6":{"n":5},"7":{"n":6},"8":{"n":4,"s":1},"9":{"n":4.5},"10":{"n":4.5},"12":{"n":5,"s":1},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":5.5}}},"c":24},{"i":847,"n":"Janssen","f":"Vincent","p":"A","r":1,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.24","Ap":"3"},"c":24},{"i":896,"n":"Davies","f":"Ben","p":"D","r":3,"s":{"s":"27","n":"6","a":"4.5","d":"0.58","Os":"101","On":"21","Oa":"4.83","Od":"0.73","Mp":"1","Dp":"20","p":{"20":{"n":3},"3":{"n":5,"s":1},"5":{"n":5,"s":1},"8":{"n":3.5},"11":{"n":4.5},"12":{"n":4},"13":{"n":5}}},"c":24},{"i":918,"n":"Nkoudou","f":"Georges-K\u00e9vin","p":"M","r":5,"s":{"s":"5","n":"1","a":"5","Os":"21","On":"4","Oa":"5.25","Od":"0.43","Mp":"4","p":{"1":{"n":5,"s":1}}},"c":24},{"i":969,"n":"Onomah","f":"Josh","p":"M","r":3,"s":{"n":0},"c":24},{"i":999,"n":"Carter-Vickers","f":"Cameron","p":"D","r":5,"s":{"n":0},"c":24},{"i":1072,"n":"Whiteman","f":"Alfie","p":"G","r":7,"s":{"n":0},"c":24},{"i":1118,"n":"Walker-Peters","f":"Kyle","p":"D","r":3,"s":{"s":"14","n":"3","a":"4.83","d":"0.85","Os":"41","On":"8","Oa":"5.19","Od":"0.93","Mp":"1","Dp":"7","p":{"1":{"n":6},"2":{"n":4},"3":{"n":4.5}}},"c":24},{"i":1314,"n":"S\u00e1nchez","f":"Davinson","p":"D","r":12,"s":{"s":"60","n":"12","a":"5","d":"0.65","Ss":"40","Sn":"8","Sa":"5.06","Sd":"0.58","Og":"1","Os":"134","On":"27","Oa":"4.98","Od":"0.92","Dp":"27","p":{"20":{"n":3},"1":{"n":6},"2":{"n":5},"3":{"n":4.5},"4":{"n":4},"9":{"n":4},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":6}}},"c":24},{"i":1391,"n":"Gazzaniga","f":"Paulo","p":"G","r":16,"s":{"s":"54","n":"10","a":"5.45","d":"1.06","Ss":"48","Sn":"9","Sa":"5.39","Sd":"1.1","Os":"60","On":"11","Oa":"5.45","Od":"1.01","Gp":"11","p":{"6":{"n":6},"8":{"n":4,"s":1},"9":{"n":4.5},"10":{"n":8},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":6},"15":{"n":5},"16":{"n":6}}},"c":24},{"i":1414,"n":"Ndombele","f":"Tanguy","p":"M","r":16,"s":{"g":"2","s":"62","n":"12","a":"5.17","d":"0.96","Og":"3","Os":"158","On":"29","Oa":"5.45","Od":"1.03","Mp":"29","p":{"1":{"n":5.5,"g":1},"2":{"n":6.5},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":7.5,"g":1},"8":{"n":4},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5},"12":{"n":4},"14":{"n":5.5},"15":{"n":5,"s":1}}},"c":24},{"i":2028,"n":"Foyth","f":"Juan","p":"D","r":5,"s":{"s":"10","n":"2","a":"5","Os":"46","On":"9","Oa":"5.11","Od":"0.99","Dp":"9","p":{"11":{"n":5,"s":1},"12":{"n":5,"s":1}}},"c":24},{"i":2063,"n":"Georgiou","f":"Anthony","p":"M","r":5,"s":{"n":0},"c":24},{"i":2205,"n":"Amos","f":"Luke","p":"M","r":1,"s":{"n":0},"c":24},{"i":2228,"n":"Sterling","f":"Kazaiah","p":"A","r":1,"s":{"n":0},"c":24},{"i":2558,"n":"Ryan Sessegnon","f":"","p":"M","r":8,"s":{"s":"10","n":"2","a":"5","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"95","On":"21","Oa":"4.55","Od":"0.86","Mp":"16","Dp":"1","Ap":"4","p":{"11":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":24},{"i":2929,"n":"Skipp","f":"Oliver","p":"M","r":3,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Ss":"4","Sn":"1","Sa":"4.5","Os":"50","On":"10","Oa":"5","Od":"0.32","Mp":"10","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":24},{"i":2930,"n":"Eyoma","f":"Timothy","p":"D","r":1,"s":{"n":0},"c":24},{"i":2932,"n":"Marsh","f":"George","p":"M","r":1,"s":{"n":0},"c":24},{"i":5413,"n":"White","f":"Harvey","p":"M","r":1,"s":{"n":0},"c":24},{"i":5414,"n":"Parrott","f":"Troy","p":"A","r":1,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"4","On":"1","Oa":"4.5","Ap":"1","p":{"16":{"n":4.5,"s":1}}},"c":24},{"i":5424,"n":"Jonathan De Bie","f":"","p":"G","r":1,"s":{"n":0},"c":24},{"i":5427,"n":"Lyons-Foster","f":"Brooklyn","p":"D","r":1,"s":{"n":0},"c":24},{"i":5432,"n":"Bowden","f":"Jamie","p":"M","r":1,"s":{"n":0},"c":24},{"i":5439,"n":"Roles","f":"Jack","p":"M","r":1,"s":{"n":0},"c":24},{"i":5441,"n":"Tanganga","f":"Japhet","p":"D","r":1,"s":{"n":0},"c":24},{"i":5996,"n":"Austin","f":"Brandon","p":"G","r":1,"s":{"n":0},"c":24},{"i":419,"n":"Jorginho","f":"","p":"M","r":21,"s":{"g":"1","s":"78","n":"14","a":"5.57","d":"1.42","Og":"2","Os":"198","On":"36","Oa":"5.51","Od":"1.22","Mp":"36","p":{"24":{"n":3.5},"1":{"n":3.5},"2":{"n":4},"3":{"n":6},"4":{"n":6},"5":{"n":7},"6":{"n":4.5},"7":{"n":8,"g":1},"8":{"n":7},"9":{"n":6.5},"10":{"n":6},"11":{"n":7},"13":{"n":4},"14":{"n":3.5},"15":{"n":5,"s":1}}},"c":25},{"i":601,"n":"Giroud","f":"Olivier","p":"A","r":5,"s":{"s":"21","n":"5","a":"4.2","d":"0.51","Og":"1","Os":"85","On":"19","Oa":"4.47","Od":"0.6","Ap":"19","p":{"24":{"n":4.5,"s":1},"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":4,"s":1},"10":{"n":4,"s":1},"14":{"n":3.5}}},"c":25},{"i":602,"n":"Kant\u00e9","f":"N'Golo","p":"M","r":23,"s":{"g":"3","s":"51","n":"9","a":"5.72","d":"1","Sg":"1","Ss":"28","Sn":"5","Sa":"5.6","Sd":"0.86","Og":"5","Os":"156","On":"29","Oa":"5.4","Od":"1.03","Mp":"29","p":{"24":{"n":3.5},"1":{"n":4.5,"s":1},"2":{"n":5},"6":{"n":7,"g":1},"8":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":7,"g":1},"14":{"n":4.5,"s":1},"15":{"n":6},"16":{"n":5}}},"c":25},{"i":607,"n":"Pedro","f":"","p":"A","r":5,"s":{"s":"20","n":"4","a":"5","Og":"3","Os":"107","On":"21","Oa":"5.1","Od":"0.97","Mp":"3","Ap":"18","p":{"24":{"n":5},"1":{"n":5},"2":{"n":5},"7":{"n":5},"14":{"n":5}}},"c":25},{"i":619,"n":"Willian","f":"","p":"A","r":18,"s":{"g":"2","s":"86","n":"15","a":"5.73","d":"1.08","Sg":"2","Ss":"86","Sn":"15","Sa":"5.73","Sd":"1.08","Og":"3","Os":"177","On":"32","Oa":"5.53","Od":"0.94","Mp":"6","Ap":"26","p":{"24":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":6},"6":{"n":4.5},"7":{"n":7,"g":1},"8":{"n":7},"9":{"n":6},"10":{"n":7,"g":1},"11":{"n":5.5},"12":{"n":7.5},"13":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":7},"16":{"n":5}}},"c":25},{"i":625,"n":"Barkley","f":"Ross","p":"M","r":3,"s":{"s":"31","n":"6","a":"5.25","d":"0.63","Os":"103","On":"20","Oa":"5.18","Od":"0.69","Mp":"20","p":{"1":{"n":4.5},"3":{"n":6.5},"4":{"n":5},"5":{"n":5,"s":1},"7":{"n":5.5},"9":{"n":5}}},"c":25},{"i":650,"n":"Azpilicueta","f":"C\u00e9sar","p":"D","r":17,"s":{"s":"65","n":"14","a":"4.68","d":"0.64","Ss":"9","Sn":"2","Sa":"4.5","Sd":"0.5","Og":"1","Os":"176","On":"36","Oa":"4.9","Od":"0.96","Mp":"1","Dp":"35","p":{"24":{"n":3.5},"1":{"n":3},"2":{"n":5},"3":{"n":5.5},"4":{"n":4},"5":{"n":5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":5},"13":{"n":5},"15":{"n":5},"16":{"n":4}}},"c":25},{"i":656,"n":"Moses","f":"Victor","p":"D","r":1,"s":{"n":0},"c":25},{"i":659,"n":"Alonso","f":"Marcos","p":"D","r":7,"s":{"g":"1","s":"36","n":"7","a":"5.21","d":"0.52","Og":"2","Os":"113","On":"22","Oa":"5.14","Od":"0.97","Mp":"1","Dp":"21","p":{"3":{"n":4.5,"s":1},"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":5},"8":{"n":6},"9":{"n":6,"g":1},"10":{"n":5}}},"c":25},{"i":848,"n":"Caballero","f":"Willy","p":"G","r":7,"s":{"n":0,"Os":"12","On":"2","Oa":"6","Gp":"2"},"c":25},{"i":850,"n":"Batshuayi","f":"Michy","p":"A","r":8,"s":{"g":"1","s":"47","n":"10","a":"4.7","d":"0.6","Ss":"9","Sn":"2","Sa":"4.5","Og":"6","Os":"115","On":"23","Oa":"5","Od":"1","Ap":"23","p":{"4":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":4,"s":1},"7":{"n":4.5,"s":1},"8":{"n":6,"g":1,"s":1},"11":{"n":4.5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":25},{"i":959,"n":"Loftus-Cheek","f":"Ruben","p":"M","r":3,"s":{"n":0,"Og":"3","Os":"95","On":"18","Oa":"5.28","Od":"0.95","Mp":"18","p":{"24":{"n":4.5,"s":1}}},"c":25},{"i":992,"n":"Zouma","f":"Kurt","p":"D","r":18,"s":{"ao":"1","s":"74","n":"15","a":"4.93","d":"1.21","Ss":"49","Sn":"9","Sa":"5.44","Sd":"0.93","Og":"2","Oao":"1","Os":"175","On":"35","Oa":"5.01","Od":"1.29","Dp":"35","p":{"1":{"n":2},"2":{"n":5.5},"3":{"n":5},"4":{"n":4,"a":1},"5":{"n":3.5,"s":1},"6":{"n":5,"s":1},"8":{"n":6},"9":{"n":6},"10":{"n":5},"11":{"n":7},"12":{"n":6},"13":{"n":4},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4}}},"c":25},{"i":1288,"n":"R\u00fcdiger","f":"Antonio","p":"D","r":8,"s":{"s":"5","n":"1","a":"5","Os":"87","On":"18","Oa":"4.83","Od":"1.01","Dp":"18","p":{"24":{"n":3},"5":{"n":5}}},"c":25},{"i":1309,"n":"Isaiah Brown","f":"","p":"A","r":6,"s":{"n":0},"c":25},{"i":1350,"n":"Abraham","f":"Tammy","p":"A","r":39,"s":{"g":"11","ao":"1","s":"83","n":"15","a":"5.53","d":"1.64","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"1.75","Og":"11","Oao":"1","Os":"83","On":"15","Oa":"5.53","Od":"1.64","Ap":"15","p":{"1":{"n":2.5},"2":{"n":4.5,"s":1},"3":{"n":7,"g":2},"4":{"n":7.5,"g":2},"5":{"n":8,"g":3,"a":1},"6":{"n":3.5},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":5},"10":{"n":5},"11":{"n":7,"g":1},"12":{"n":6,"g":1},"13":{"n":4},"15":{"n":7,"g":1},"16":{"n":3.5}}},"c":25},{"i":1360,"n":"Charly Musonda","f":"","p":"M","r":1,"s":{"n":0},"c":25},{"i":1370,"n":"Christensen","f":"Andreas","p":"D","r":9,"s":{"s":"39","n":"8","a":"4.88","d":"0.7","Ss":"9","Sn":"2","Sa":"4.5","Sd":"1","Os":"76","On":"15","Oa":"5.1","Od":"0.82","Dp":"15","p":{"1":{"n":4},"2":{"n":5.5},"3":{"n":5},"5":{"n":5},"6":{"n":5},"7":{"n":5.5},"15":{"n":5.5},"16":{"n":3.5}}},"c":25},{"i":1386,"n":"Tomori","f":"Fikayo","p":"D","r":11,"s":{"g":"1","s":"59","n":"11","a":"5.41","d":"0.85","Og":"1","Os":"59","On":"11","Oa":"5.41","Od":"0.85","Dp":"11","p":{"4":{"n":5},"5":{"n":7.5,"g":1},"6":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":5},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4.5},"14":{"n":4.5}}},"c":25},{"i":1482,"n":"Palmer","f":"Kasey","p":"M","r":1,"s":{"n":0},"c":25},{"i":1652,"n":"Arrizabalaga","f":"Kepa","p":"G","r":15,"s":{"s":"81","n":"16","a":"5.06","d":"0.77","Ss":"81","Sn":"16","Sa":"5.06","Sd":"0.77","Os":"187","On":"36","Oa":"5.19","Od":"0.79","Gp":"36","p":{"24":{"n":4},"1":{"n":3.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":4},"5":{"n":5.5},"6":{"n":4},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":4.5}}},"c":25},{"i":1657,"n":"Kovacic","f":"Mateo","p":"M","r":19,"s":{"g":"1","s":"91","n":"16","a":"5.69","d":"0.88","Sg":"1","Ss":"91","Sn":"16","Sa":"5.69","Sd":"0.88","Og":"1","Os":"179","On":"34","Oa":"5.26","Od":"0.88","Mp":"34","p":{"24":{"n":4},"1":{"n":4.5},"2":{"n":5,"s":1},"3":{"n":6.5},"4":{"n":5},"5":{"n":5.5},"6":{"n":5},"7":{"n":5.5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":6,"s":1},"10":{"n":5.5},"11":{"n":7.5},"12":{"n":7},"13":{"n":7},"14":{"n":5},"15":{"n":4.5},"16":{"n":6,"g":1}}},"c":25},{"i":2029,"n":"Green","f":"Robert","p":"G","r":1,"s":{"n":0},"c":25},{"i":2072,"n":"Ampadu","f":"Ethan","p":"D","r":1,"s":{"n":0},"c":25},{"i":2075,"n":"Sterling","f":"Dujon","p":"M","r":1,"s":{"n":0},"c":25},{"i":2220,"n":"Hudson-Odoi","f":"Callum","p":"A","r":8,"s":{"s":"45","n":"9","a":"5.06","d":"0.72","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"95","On":"19","Oa":"5","Od":"0.81","Mp":"1","Ap":"18","p":{"7":{"n":5,"s":1},"8":{"n":6},"9":{"n":6.5},"10":{"n":5,"s":1},"11":{"n":4,"s":1},"12":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":25},{"i":2303,"n":"Emerson","f":"","p":"D","r":13,"s":{"s":"44","n":"9","a":"4.94","d":"0.55","Os":"92","On":"19","Oa":"4.87","Od":"0.6","Dp":"19","p":{"24":{"n":3.5},"1":{"n":4.5},"2":{"n":5},"3":{"n":6},"4":{"n":4.5},"6":{"n":5},"11":{"n":5.5},"12":{"n":5},"13":{"n":4},"14":{"n":5}}},"c":25},{"i":2494,"n":"Hector","f":"Michael","p":"D","r":1,"s":{"n":0},"c":25},{"i":2570,"n":"Collins","f":"Bradley","p":"G","r":1,"s":{"n":0},"c":25},{"i":2594,"n":"Lucas Piazon","f":"","p":"M","r":1,"s":{"n":0},"c":25},{"i":2795,"n":"Miazga","f":"Matt","p":"D","r":5,"s":{"n":0},"c":25},{"i":2977,"n":"McEachran","f":"George","p":"M","r":1,"s":{"n":0},"c":25},{"i":2980,"n":"Cumming","f":"Jamie","p":"G","r":1,"s":{"n":0},"c":25},{"i":3640,"n":"Maatsen","f":"Ian","p":"D","r":1,"s":{"n":0},"c":25},{"i":3644,"n":"Gilmour","f":"Billy","p":"M","r":1,"s":{"s":"9","n":"2","a":"4.75","d":"0.25","Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2","p":{"4":{"n":4.5,"s":1},"12":{"n":5,"s":1}}},"c":25},{"i":3650,"n":"Gallagher","f":"Conor","p":"M","r":1,"s":{"n":0},"c":25},{"i":3655,"n":"James","f":"Reece","p":"D","r":10,"s":{"s":"41","n":"8","a":"5.13","d":"0.41","Ss":"41","Sn":"8","Sa":"5.13","Sd":"0.41","Os":"41","On":"8","Oa":"5.13","Od":"0.41","Dp":"8","p":{"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":6},"16":{"n":4.5}}},"c":25},{"i":3664,"n":"Marc Guehi","f":"","p":"D","r":1,"s":{"n":0},"c":25},{"i":3679,"n":"Mount","f":"Mason","p":"M","r":28,"s":{"g":"5","s":"89","n":"16","a":"5.56","d":"1.1","Sg":"5","Ss":"89","Sn":"16","Sa":"5.56","Sd":"1.1","Og":"5","Os":"89","On":"16","Oa":"5.56","Od":"1.1","Mp":"12","Ap":"4","p":{"1":{"n":4.5},"2":{"n":7,"g":1},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":7.5,"g":1},"6":{"n":3.5},"7":{"n":6},"8":{"n":7,"g":1},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":6},"13":{"n":5,"s":1},"14":{"n":5},"15":{"n":6,"g":1},"16":{"n":4.5}}},"c":25},{"i":3681,"n":"Ugbo","f":"Ike","p":"A","r":1,"s":{"n":0},"c":25},{"i":3682,"n":"Chalobah","f":"Trevoh","p":"D","r":3,"s":{"n":0},"c":25},{"i":3687,"n":"Pulisic","f":"Christian","p":"M","r":30,"s":{"g":"5","s":"71","n":"13","a":"5.5","d":"1.34","Sg":"5","Ss":"51","Sn":"9","Sa":"5.67","Sd":"1.51","Og":"5","Os":"71","On":"13","Oa":"5.5","Od":"1.34","Mp":"10","Ap":"3","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":6},"4":{"n":5.5},"8":{"n":6,"s":1},"9":{"n":5,"s":1},"10":{"n":8.5,"g":3},"11":{"n":7,"g":1},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":4},"15":{"n":5.5},"16":{"n":4}}},"c":25},{"i":3697,"n":"Baker","f":"Lewis","p":"M","r":2,"s":{"n":0},"c":25},{"i":5991,"n":"Ziger","f":"Karlo","p":"G","r":1,"s":{"n":0},"c":25},{"i":6127,"n":"van Ginkel","f":"Marco","p":"M","r":1,"s":{"n":0},"c":25},{"i":615,"n":"Benteke","f":"Christian","p":"A","r":6,"s":{"s":"61","n":"13","a":"4.69","d":"0.37","Ss":"4","Sn":"1","Sa":"4.5","Og":"1","Os":"117","On":"25","Oa":"4.68","Od":"0.63","Ap":"25","p":{"30":{"n":4.5,"s":1},"1":{"n":5},"2":{"n":5},"3":{"n":4.5,"s":1},"4":{"n":4,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":4,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":26},{"i":633,"n":"Cahill","f":"Gary","p":"D","r":10,"s":{"s":"60","n":"12","a":"5","d":"0.89","Ss":"6","Sn":"1","Sa":"6","Os":"65","On":"13","Oa":"5","Od":"0.85","Dp":"13","p":{"3":{"n":5},"4":{"n":6},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":6},"8":{"n":6},"9":{"n":4.5},"10":{"n":5},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":4.5},"16":{"n":6}}},"c":26},{"i":663,"n":"van Aanholt","f":"Patrick","p":"D","r":14,"s":{"g":"2","ao":"1","s":"75","n":"15","a":"5","d":"1.08","Og":"4","Oao":"1","Os":"182","On":"35","Oa":"5.21","Od":"1.04","Dp":"35","p":{"30":{"n":4},"1":{"n":5.5},"2":{"n":3.5},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":3,"a":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":5},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":4},"13":{"n":4.5},"14":{"n":6},"15":{"n":5}}},"c":26},{"i":683,"n":"Hennessey","f":"Wayne","p":"G","r":7,"s":{"s":"12","n":"2","a":"6","d":"0.5","Os":"22","On":"4","Oa":"5.5","Od":"0.94","Gp":"4","p":{"9":{"n":6.5},"10":{"n":5.5}}},"c":26},{"i":695,"n":"Zaha","f":"Wilfried","p":"A","r":22,"s":{"g":"2","s":"88","n":"16","a":"5.53","d":"0.89","Sg":"2","Ss":"88","Sn":"16","Sa":"5.53","Sd":"0.89","Og":"9","Os":"199","On":"36","Oa":"5.54","Od":"1.14","Mp":"17","Ap":"19","p":{"30":{"n":5},"1":{"n":4.5,"s":1},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5},"5":{"n":4},"6":{"n":6.5},"7":{"n":6.5},"8":{"n":5.5},"9":{"n":5},"10":{"n":5},"11":{"n":5.5},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":7.5,"g":1},"15":{"n":6},"16":{"n":5}}},"c":26},{"i":704,"n":"Ayew","f":"Jordan","p":"A","r":19,"s":{"g":"4","s":"72","n":"15","a":"4.83","d":"1.18","Sg":"4","Ss":"67","Sn":"14","Sa":"4.82","Sd":"1.22","Og":"5","Os":"121","On":"25","Oa":"4.84","Od":"1.15","Ap":"25","p":{"1":{"n":5},"3":{"n":6,"g":1},"4":{"n":6.5,"g":1},"5":{"n":3.5},"6":{"n":4},"7":{"n":5},"8":{"n":6,"g":1},"9":{"n":3.5},"10":{"n":7,"g":1},"11":{"n":3.5},"12":{"n":4},"13":{"n":3},"14":{"n":5.5},"15":{"n":5},"16":{"n":5}}},"c":26},{"i":740,"n":"Dann","f":"Scott","p":"D","r":7,"s":{"s":"21","n":"4","a":"5.38","d":"0.41","Os":"72","On":"14","Oa":"5.18","Od":"0.59","Dp":"14","p":{"30":{"n":4},"1":{"n":5.5},"2":{"n":5},"9":{"n":5,"s":1},"14":{"n":6}}},"c":26},{"i":761,"n":"McCarthy","f":"James","p":"M","r":6,"s":{"s":"54","n":"11","a":"4.91","d":"0.36","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"59","On":"12","Oa":"4.92","Od":"0.34","Mp":"12","p":{"2":{"n":5,"s":1},"3":{"n":5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5.5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5,"s":1},"15":{"n":5.5,"s":1},"16":{"n":4.5,"s":1}}},"c":26},{"i":777,"n":"Townsend","f":"Andros","p":"M","r":13,"s":{"g":"1","s":"74","n":"14","a":"5.32","d":"0.7","Ss":"27","Sn":"5","Sa":"5.5","Sd":"0.71","Og":"5","Os":"197","On":"36","Oa":"5.47","Od":"0.82","Mp":"26","Ap":"10","p":{"30":{"n":5},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":4},"7":{"n":6.5,"g":1,"s":1},"8":{"n":4.5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":5.5},"12":{"n":4.5},"13":{"n":6.5},"14":{"n":6},"15":{"n":5.5},"16":{"n":5}}},"c":26},{"i":808,"n":"Wickham","f":"Connor","p":"A","r":1,"s":{"s":"8","n":"2","a":"4","Os":"31","On":"7","Oa":"4.43","Od":"0.42","Ap":"7","p":{"1":{"n":4,"s":1},"2":{"n":4,"s":1}}},"c":26},{"i":828,"n":"McArthur","f":"James","p":"M","r":20,"s":{"s":"83","n":"15","a":"5.53","d":"0.72","Ss":"61","Sn":"11","Sa":"5.59","Sd":"0.76","Og":"1","Os":"200","On":"37","Oa":"5.42","Od":"0.76","Mp":"37","p":{"30":{"n":4.5},"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":5.5},"6":{"n":5.5},"7":{"n":7},"8":{"n":6},"9":{"n":5.5},"10":{"n":6.5},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":5},"14":{"n":6},"15":{"n":6},"16":{"n":5}}},"c":26},{"i":843,"n":"Kelly","f":"Martin","p":"D","r":12,"s":{"s":"60","n":"11","a":"5.5","d":"0.8","Ss":"26","Sn":"5","Sa":"5.3","Sd":"0.98","Oao":"1","Os":"110","On":"21","Oa":"5.26","Od":"0.87","Dp":"21","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":6},"7":{"n":6},"8":{"n":6},"12":{"n":4,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":7},"16":{"n":5}}},"c":26},{"i":855,"n":"Kouyat\u00e9","f":"Cheikhou","p":"M","r":14,"s":{"s":"73","n":"14","a":"5.21","d":"0.94","Ss":"73","Sn":"14","Sa":"5.21","Sd":"0.94","Os":"156","On":"31","Oa":"5.05","Od":"0.83","Mp":"31","p":{"3":{"n":6.5},"4":{"n":5.5},"5":{"n":3.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":4},"12":{"n":5.5},"13":{"n":6},"14":{"n":4.5},"15":{"n":7},"16":{"n":5}}},"c":26},{"i":888,"n":"Ward","f":"Joel","p":"D","r":10,"s":{"s":"63","n":"13","a":"4.88","d":"0.68","Og":"1","Os":"87","On":"18","Oa":"4.86","Od":"0.6","Dp":"18","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":6},"5":{"n":3.5},"6":{"n":4.5},"7":{"n":6},"8":{"n":5},"9":{"n":4},"10":{"n":5},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":5}}},"c":26},{"i":895,"n":"Milivojevic","f":"Luka","p":"M","r":19,"s":{"g":"2","s":"76","n":"15","a":"5.07","d":"1.08","Sg":"1","Ss":"40","Sn":"8","Sa":"5.06","Sd":"0.85","Og":"11","Os":"202","On":"37","Oa":"5.46","Od":"1.03","Mp":"37","p":{"30":{"n":6,"g":1},"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":6},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":7.5,"g":1},"9":{"n":4.5},"10":{"n":7,"g":1},"11":{"n":4.5},"12":{"n":4},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5}}},"c":26},{"i":927,"n":"Sakho","f":"Mamadou","p":"D","r":8,"s":{"s":"22","n":"5","a":"4.4","d":"0.58","Os":"80","On":"16","Oa":"5.03","Od":"0.86","Dp":"16","p":{"4":{"n":5,"s":1},"5":{"n":3.5},"6":{"n":4.5},"14":{"n":5,"s":1},"15":{"n":4}}},"c":26},{"i":942,"n":"Tomkins","f":"James","p":"D","r":13,"s":{"s":"39","n":"8","a":"4.88","d":"0.99","Ss":"39","Sn":"8","Sa":"4.88","Sd":"0.99","Og":"1","Os":"117","On":"23","Oa":"5.09","Od":"0.8","Dp":"23","p":{"30":{"n":4},"9":{"n":4},"10":{"n":4},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":6.5},"15":{"n":6},"16":{"n":5}}},"c":26},{"i":987,"n":"Schlupp","f":"Jeffrey","p":"D","r":11,"s":{"g":"2","s":"71","n":"14","a":"5.11","d":"0.99","Sg":"2","Ss":"31","Sn":"6","Sa":"5.17","Sd":"1.03","Og":"4","Os":"156","On":"30","Oa":"5.22","Od":"0.93","Mp":"18","Dp":"10","Ap":"2","p":{"30":{"n":5.5},"2":{"n":5,"s":1},"3":{"n":6},"4":{"n":6},"5":{"n":3},"6":{"n":5},"7":{"n":6},"8":{"n":5},"9":{"n":4.5},"11":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":6,"g":1,"s":1},"15":{"n":7,"g":1,"s":1},"16":{"n":4}}},"c":26},{"i":1004,"n":"Sako","f":"Bakary","p":"M","r":4,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"3"},"c":26},{"i":1061,"n":"Kaikai","f":"Sullay","p":"M","r":1,"s":{"n":0},"c":26},{"i":1073,"n":"Speroni","f":"Julian","p":"G","r":1,"s":{"n":0,"Os":"3","On":"1","Oa":"3.5","Gp":"1"},"c":26},{"i":1111,"n":"Dreher","f":"Luke","p":"M","r":1,"s":{"n":0},"c":26},{"i":1304,"n":"Riedewald","f":"Jairo","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Ss":"5","Sn":"1","Sa":"5","Os":"5","On":"1","Oa":"5","Mp":"1","p":{"16":{"n":5,"s":1}}},"c":26},{"i":1342,"n":"Williams","f":"Jonathan","p":"M","r":1,"s":{"n":0},"c":26},{"i":1678,"n":"Guaita","f":"Vicente","p":"G","r":19,"s":{"s":"79","n":"14","a":"5.64","d":"0.89","Ss":"34","Sn":"6","Sa":"5.75","Sd":"0.8","Os":"191","On":"34","Oa":"5.63","Od":"0.91","Gp":"34","p":{"30":{"n":4.5},"1":{"n":6},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":3.5},"6":{"n":5.5},"7":{"n":7},"8":{"n":6},"11":{"n":5},"12":{"n":5},"13":{"n":5},"14":{"n":6.5},"15":{"n":7},"16":{"n":6}}},"c":26},{"i":1679,"n":"Camarasa","f":"V\u00edctor","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Og":"4","Os":"91","On":"18","Oa":"5.08","Od":"1.08","Mp":"17","Ap":"1","p":{"5":{"n":5,"s":1}}},"c":26},{"i":2122,"n":"Henry","f":"Dion","p":"G","r":1,"s":{"n":0},"c":26},{"i":2304,"n":"S\u00f8rloth","f":"Alexander","p":"A","r":6,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Ap":"1"},"c":26},{"i":2337,"n":"Kirby","f":"Nya","p":"M","r":1,"s":{"n":0},"c":26},{"i":2585,"n":"Meyer","f":"Max","p":"M","r":5,"s":{"s":"19","n":"4","a":"4.88","d":"0.74","Og":"1","Os":"102","On":"20","Oa":"5.13","Od":"0.59","Mp":"20","p":{"30":{"n":5,"s":1},"1":{"n":6},"2":{"n":4.5},"7":{"n":5,"s":1},"11":{"n":4,"s":1}}},"c":26},{"i":2845,"n":"Gio McGregor","f":"","p":"M","r":1,"s":{"n":0},"c":26},{"i":2852,"n":"Woods","f":"Sam","p":"D","r":1,"s":{"n":0},"c":26},{"i":3184,"n":"Tupper","f":"Joe","p":"G","r":1,"s":{"n":0},"c":26},{"i":3354,"n":"Lucas Perri","f":"","p":"G","r":1,"s":{"n":0},"c":26},{"i":3645,"n":"Tavares","f":"Nikola","p":"D","r":1,"s":{"n":0},"c":26},{"i":3736,"n":"Henderson","f":"Stephen","p":"G","r":1,"s":{"n":0},"c":26},{"i":6126,"n":"Inniss","f":"Ryan","p":"D","r":4,"s":{"n":0},"c":26},{"i":174,"n":"Diop","f":"Issa","p":"D","r":12,"s":{"s":"61","n":"13","a":"4.69","d":"1.37","Og":"1","Os":"163","On":"32","Oa":"5.11","Od":"1.25","Dp":"32","p":{"19":{"n":6},"37":{"n":7},"1":{"n":2},"2":{"n":5},"3":{"n":5.5},"4":{"n":7},"5":{"n":6},"6":{"n":6},"7":{"n":4},"8":{"n":5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":3.5},"12":{"n":4.5},"13":{"n":2.5}}},"c":28},{"i":620,"n":"Lanzini","f":"Manuel","p":"M","r":10,"s":{"s":"59","n":"11","a":"5.36","d":"1.02","Og":"1","Os":"111","On":"21","Oa":"5.29","Od":"1.05","Mp":"21","p":{"37":{"n":6.5},"1":{"n":3.5},"2":{"n":7},"3":{"n":7},"4":{"n":6},"5":{"n":6},"7":{"n":5,"s":1},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1}}},"c":28},{"i":622,"n":"Wilshere","f":"Jack","p":"M","r":7,"s":{"s":"27","n":"6","a":"4.5","d":"0.5","Os":"42","On":"9","Oa":"4.72","Od":"0.63","Mp":"9","p":{"37":{"n":5,"s":1},"1":{"n":4.5},"2":{"n":3.5},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":5,"s":1},"9":{"n":4.5,"s":1}}},"c":28},{"i":632,"n":"Antonio","f":"Michail","p":"M","r":9,"s":{"g":"1","s":"29","n":"6","a":"4.83","d":"0.99","Ss":"4","Sn":"1","Sa":"4","Og":"6","Os":"133","On":"26","Oa":"5.13","Od":"1.23","Mp":"19","Dp":"2","Ap":"5","p":{"19":{"n":6.5},"37":{"n":6},"1":{"n":3.5},"2":{"n":4.5,"s":1},"3":{"n":5.5,"s":1},"13":{"n":6.5,"g":1,"s":1},"14":{"n":5},"16":{"n":4}}},"c":28},{"i":634,"n":"Snodgrass","f":"Robert","p":"M","r":13,"s":{"g":"2","s":"56","n":"11","a":"5.09","d":"0.73","Sg":"2","Ss":"35","Sn":"7","Sa":"5.07","Sd":"0.9","Og":"3","Os":"143","On":"29","Oa":"4.93","Od":"0.86","Mp":"28","Ap":"1","p":{"19":{"n":4.5},"1":{"n":5,"s":1},"2":{"n":5.5},"4":{"n":5,"s":1},"6":{"n":5,"s":1},"10":{"n":6,"g":1},"11":{"n":5,"g":1},"12":{"n":3.5},"13":{"n":6},"14":{"n":6},"15":{"n":4.5},"16":{"n":4.5}}},"c":28},{"i":664,"n":"Arnautovic","f":"Marko","p":"A","r":16,"s":{"n":0,"Og":"5","Os":"77","On":"15","Oa":"5.13","Od":"1.44","Mp":"1","Ap":"14","p":{"37":{"n":8,"g":2}}},"c":28},{"i":684,"n":"Noble","f":"Mark","p":"M","r":11,"s":{"g":"1","s":"65","n":"14","a":"4.64","d":"1.08","Sg":"1","Ss":"65","Sn":"14","Sa":"4.64","Sd":"1.08","Og":"6","Os":"174","On":"34","Oa":"5.13","Od":"1.23","Mp":"34","p":{"19":{"n":5,"s":1},"37":{"n":7},"3":{"n":7,"g":1},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":6},"7":{"n":4},"8":{"n":4},"9":{"n":4.5},"10":{"n":4},"11":{"n":2.5},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":3.5},"16":{"n":4.5}}},"c":28},{"i":700,"n":"Zabaleta","f":"Pablo","p":"D","r":5,"s":{"s":"23","n":"5","a":"4.7","d":"0.6","Os":"88","On":"19","Oa":"4.66","Od":"0.76","Dp":"19","p":{"5":{"n":5,"s":1},"6":{"n":5,"s":1},"8":{"n":5,"s":1},"10":{"n":5},"11":{"n":3.5}}},"c":28},{"i":709,"n":"Reid","f":"Winston","p":"D","r":1,"s":{"n":0},"c":28},{"i":762,"n":"Ogbonna","f":"Angelo","p":"D","r":11,"s":{"g":"2","s":"62","n":"12","a":"5.21","d":"0.78","Sg":"2","Ss":"19","Sn":"4","Sa":"4.88","Sd":"1.08","Og":"3","Os":"158","On":"31","Oa":"5.11","Od":"0.91","Dp":"31","p":{"19":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":5},"9":{"n":5},"13":{"n":5,"g":1},"14":{"n":6.5},"15":{"n":3.5},"16":{"n":4.5,"g":1}}},"c":28},{"i":861,"n":"Cresswell","f":"Aaron","p":"D","r":12,"s":{"g":"3","s":"52","n":"11","a":"4.77","d":"1.34","Sg":"1","Ss":"32","Sn":"7","Sa":"4.57","Sd":"1.24","Og":"3","Os":"116","On":"24","Oa":"4.85","Od":"1.02","Dp":"24","p":{"19":{"n":5},"1":{"n":3},"6":{"n":7,"g":1},"7":{"n":5.5,"g":1},"8":{"n":5},"10":{"n":5.5},"11":{"n":3.5},"12":{"n":3.5},"13":{"n":3.5},"14":{"n":7,"g":1},"15":{"n":4},"16":{"n":5}}},"c":28},{"i":870,"n":"Fabianski","f":"Lukasz","p":"G","r":8,"s":{"s":"39","n":"7","a":"5.64","d":"0.91","Os":"171","On":"29","Oa":"5.91","Od":"0.84","Gp":"29","p":{"19":{"n":6},"37":{"n":6},"1":{"n":5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":7},"6":{"n":6.5},"7":{"n":4}}},"c":28},{"i":934,"n":"Masuaku","f":"Arthur","p":"D","r":7,"s":{"s":"36","n":"7","a":"5.14","d":"1.36","Ss":"4","Sn":"1","Sa":"4.5","Os":"94","On":"18","Oa":"5.22","Od":"1.13","Dp":"18","p":{"19":{"n":5,"s":1},"37":{"n":6.5},"2":{"n":5},"3":{"n":6.5},"4":{"n":7.5},"5":{"n":4.5},"9":{"n":3},"14":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":28},{"i":996,"n":"Fernandes","f":"Edimilson","p":"M","r":8,"s":{"n":0},"c":28},{"i":1087,"n":"Rice","f":"Declan","p":"M","r":19,"s":{"s":"88","n":"16","a":"5.53","d":"1.1","Ss":"88","Sn":"16","Sa":"5.53","Sd":"1.1","Og":"2","Os":"210","On":"37","Oa":"5.69","Od":"0.94","Mp":"37","p":{"19":{"n":6},"1":{"n":4},"2":{"n":4.5},"3":{"n":6},"4":{"n":6.5},"5":{"n":6.5},"6":{"n":6.5},"7":{"n":7},"8":{"n":4.5},"9":{"n":5},"10":{"n":6},"11":{"n":4},"12":{"n":3.5},"13":{"n":6},"14":{"n":7},"15":{"n":6},"16":{"n":5.5}}},"c":28},{"i":1132,"n":"Diangana","f":"Grady","p":"M","r":7,"s":{"n":0,"Os":"43","On":"9","Oa":"4.78","Od":"0.58","Mp":"9","p":{"19":{"n":4},"37":{"n":5.5}}},"c":28},{"i":1627,"n":"Fornals","f":"Pablo","p":"M","r":10,"s":{"s":"73","n":"15","a":"4.87","d":"0.5","Ss":"23","Sn":"5","Sa":"4.7","Sd":"0.51","Og":"1","Os":"168","On":"34","Oa":"4.96","Od":"0.7","Mp":"30","Ap":"4","p":{"1":{"n":5,"s":1},"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5.5,"s":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":4.5,"s":1},"9":{"n":4.5},"10":{"n":5.5,"s":1},"12":{"n":4},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":4.5}}},"c":28},{"i":1727,"n":"Jim\u00e9nez","f":"Roberto","p":"G","r":6,"s":{"ao":"1","s":"34","n":"7","a":"4.93","d":"1.08","Oao":"1","Os":"34","On":"7","Oa":"4.93","Od":"1.08","Gp":"7","p":{"7":{"n":4,"s":1},"8":{"n":4.5},"9":{"n":7},"10":{"n":5},"11":{"n":4},"12":{"n":6,"a":1},"13":{"n":4}}},"c":28},{"i":2073,"n":"Holland","f":"Nathan","p":"M","r":1,"s":{"s":"10","n":"2","a":"5","d":"0.5","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Os":"10","On":"2","Oa":"5","Od":"0.5","Mp":"2","p":{"15":{"n":4.5,"s":1},"16":{"n":5.5,"s":1}}},"c":28},{"i":2211,"n":"Cullen","f":"Josh","p":"M","r":2,"s":{"n":0},"c":28},{"i":2221,"n":"Johnson","f":"Ben","p":"M","r":3,"s":{"n":0},"c":28},{"i":2260,"n":"Oxford","f":"Reece","p":"D","r":1,"s":{"n":0},"c":28},{"i":2293,"n":"Carlos S\u00e1nchez","f":"","p":"M","r":3,"s":{"s":"20","n":"4","a":"5","Os":"29","On":"6","Oa":"4.92","Od":"0.19","Mp":"6","p":{"37":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":28},{"i":2307,"n":"Hugill","f":"Jordan","p":"A","r":3,"s":{"n":0},"c":28},{"i":2498,"n":"Fredericks","f":"Ryan","p":"D","r":11,"s":{"s":"68","n":"15","a":"4.57","d":"0.85","Ss":"26","Sn":"6","Sa":"4.33","Sd":"0.85","Og":"1","Os":"128","On":"26","Oa":"4.92","Od":"1.06","Dp":"26","p":{"37":{"n":8,"g":1},"1":{"n":3.5},"2":{"n":5},"3":{"n":5},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":3},"11":{"n":4.5,"s":1},"12":{"n":4},"13":{"n":3.5},"14":{"n":6},"15":{"n":4.5},"16":{"n":3.5}}},"c":28},{"i":2514,"n":"Yarmolenko","f":"Andriy","p":"A","r":15,"s":{"g":"3","s":"71","n":"14","a":"5.07","d":"1.44","Og":"3","Os":"71","On":"14","Oa":"5.07","Od":"1.44","Mp":"9","Ap":"5","p":{"2":{"n":4,"s":1},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":7,"g":1},"7":{"n":7.5,"g":1},"8":{"n":5},"9":{"n":4,"s":1},"10":{"n":7},"11":{"n":3},"12":{"n":3.5,"s":1},"13":{"n":4},"14":{"n":4,"s":1},"15":{"n":4.5,"s":1}}},"c":28},{"i":2560,"n":"Toni Mart\u00ednez","f":"","p":"A","r":2,"s":{"n":0},"c":28},{"i":2573,"n":"Balbuena","f":"Fabi\u00e1n","p":"D","r":10,"s":{"g":"1","s":"33","n":"8","a":"4.19","d":"1.34","Ss":"14","Sn":"3","Sa":"4.67","Sd":"1.7","Og":"1","Os":"75","On":"16","Oa":"4.69","Od":"1.25","Dp":"16","p":{"37":{"n":6},"1":{"n":3},"5":{"n":5,"s":1},"10":{"n":4.5},"11":{"n":4.5,"g":1},"12":{"n":2.5},"14":{"n":7},"15":{"n":3},"16":{"n":4}}},"c":28},{"i":2602,"n":"Felipe Anderson","f":"","p":"M","r":18,"s":{"s":"78","n":"15","a":"5.2","d":"1.34","Ss":"75","Sn":"14","Sa":"5.36","Sd":"1.25","Og":"3","Os":"182","On":"35","Oa":"5.21","Od":"1.32","Mp":"32","Ap":"3","p":{"19":{"n":8,"g":2},"1":{"n":3},"3":{"n":7.5},"4":{"n":7},"5":{"n":6},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":3.5},"10":{"n":5.5},"11":{"n":6},"12":{"n":3.5},"13":{"n":3.5},"14":{"n":5},"15":{"n":6},"16":{"n":4}}},"c":28},{"i":2885,"n":"Coventry","f":"Conor","p":"M","r":1,"s":{"n":0},"c":28},{"i":2888,"n":"Joe Powell","f":"","p":"M","r":1,"s":{"n":0},"c":28},{"i":2979,"n":"Xande Silva","f":"","p":"A","r":1,"s":{"n":0},"c":28},{"i":2987,"n":"Nasri","f":"Samir","p":"M","r":4,"s":{"n":0,"Os":"24","On":"5","Oa":"4.9","Od":"1.02","Mp":"5"},"c":28},{"i":3744,"n":"Martin","f":"David","p":"G","r":12,"s":{"s":"17","n":"3","a":"5.67","d":"2.05","Ss":"17","Sn":"3","Sa":"5.67","Sd":"2.05","Os":"17","On":"3","Oa":"5.67","Od":"2.05","Gp":"3","p":{"14":{"n":8},"15":{"n":6},"16":{"n":3}}},"c":28},{"i":5449,"n":"Haller","f":"S\u00e9bastien","p":"A","r":18,"s":{"g":"4","s":"75","n":"15","a":"5.03","d":"1.3","Sg":"4","Ss":"72","Sn":"14","Sa":"5.14","Sd":"1.27","Og":"4","Os":"75","On":"15","Oa":"5.03","Od":"1.3","Ap":"15","p":{"1":{"n":3.5},"3":{"n":8,"g":2},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":5},"7":{"n":6},"8":{"n":6,"g":1},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":6},"12":{"n":3},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":4},"16":{"n":4.5,"s":1}}},"c":28},{"i":5986,"n":"Gon\u00e7alo Cardoso","f":"","p":"D","r":1,"s":{"n":0},"c":28},{"i":6123,"n":"Ajeti","f":"Albian","p":"A","r":5,"s":{"s":"21","n":"5","a":"4.2","d":"0.24","Os":"21","On":"5","Oa":"4.2","Od":"0.24","Ap":"5","p":{"9":{"n":4,"s":1},"10":{"n":4.5,"s":1},"11":{"n":4,"s":1},"12":{"n":4,"s":1},"15":{"n":4.5,"s":1}}},"c":28},{"i":148,"n":"Ricardo Pereira","f":"","p":"D","r":25,"s":{"g":"2","s":"88","n":"16","a":"5.5","d":"0.94","Sg":"2","Ss":"88","Sn":"16","Sa":"5.5","Sd":"0.94","Og":"3","Os":"206","On":"38","Oa":"5.42","Od":"1.06","Mp":"2","Dp":"35","Ap":"1","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5},"5":{"n":4},"6":{"n":7,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":6},"13":{"n":6.5},"14":{"n":5},"15":{"n":7},"16":{"n":5}}},"c":29},{"i":610,"n":"Vardy","f":"Jamie","p":"A","r":50,"s":{"g":"16","s":"97","n":"16","a":"6.09","d":"1.63","Sg":"16","Ss":"97","Sn":"16","Sa":"6.09","Sd":"1.63","Og":"29","Os":"217","On":"38","Oa":"5.71","Od":"1.54","Ap":"38","p":{"1":{"n":4.5},"2":{"n":3.5},"3":{"n":6,"g":1},"4":{"n":8,"g":2},"5":{"n":4},"6":{"n":5},"7":{"n":7.5,"g":2},"8":{"n":3.5},"9":{"n":6,"g":1},"10":{"n":9,"g":3},"11":{"n":6.5,"g":1},"12":{"n":7.5,"g":1},"13":{"n":7,"g":1},"14":{"n":6,"g":1},"15":{"n":5.5,"g":1},"16":{"n":8,"g":2}}},"c":29},{"i":660,"n":"Okazaki","f":"Shinji","p":"A","r":3,"s":{"n":0,"Os":"48","On":"11","Oa":"4.41","Od":"0.19","Ap":"11"},"c":29},{"i":689,"n":"Schmeichel","f":"Kasper","p":"G","r":24,"s":{"s":"94","n":"16","a":"5.88","d":"0.67","Ss":"94","Sn":"16","Sa":"5.88","Sd":"0.67","Os":"211","On":"38","Oa":"5.57","Od":"0.9","Gp":"38","p":{"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":5.5},"8":{"n":7.5},"9":{"n":6},"10":{"n":7},"11":{"n":6},"12":{"n":6},"13":{"n":6},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":5}}},"c":29},{"i":701,"n":"Morgan","f":"Wes","p":"D","r":5,"s":{"s":"20","n":"4","a":"5","d":"0.35","Og":"3","Os":"77","On":"14","Oa":"5.54","Od":"0.93","Dp":"14","p":{"3":{"n":5,"s":1},"9":{"n":5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":5.5,"s":1}}},"c":29},{"i":734,"n":"Albrighton","f":"Marc","p":"M","r":7,"s":{"s":"42","n":"8","a":"5.31","d":"0.5","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"105","On":"20","Oa":"5.28","Od":"0.78","Mp":"16","Ap":"4","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"4":{"n":5},"7":{"n":6.5,"s":1},"8":{"n":5,"s":1},"10":{"n":5.5,"s":1},"14":{"n":5,"s":1},"16":{"n":5.5,"s":1}}},"c":29},{"i":735,"n":"Evans","f":"Jonny","p":"D","r":24,"s":{"g":"1","s":"95","n":"16","a":"5.97","d":"0.67","Sg":"1","Ss":"95","Sn":"16","Sa":"5.97","Sd":"0.67","Og":"2","Os":"176","On":"31","Oa":"5.68","Od":"0.86","Dp":"31","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":7},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":7},"16":{"n":7.5,"g":1}}},"c":29},{"i":756,"n":"Fuchs","f":"Christian","p":"D","r":5,"s":{"s":"21","n":"4","a":"5.25","d":"0.56","Os":"35","On":"7","Oa":"5.07","Od":"0.62","Dp":"7","p":{"2":{"n":5},"3":{"n":4.5},"4":{"n":5.5,"s":1},"15":{"n":6}}},"c":29},{"i":785,"n":"King","f":"Andy","p":"M","r":1,"s":{"n":0},"c":29},{"i":798,"n":"Jakupovic","f":"Eldin","p":"G","r":1,"s":{"n":0},"c":29},{"i":838,"n":"Iheanacho","f":"Kelechi","p":"A","r":9,"s":{"g":"2","s":"14","n":"2","a":"7","d":"0.5","Sg":"1","Ss":"7","Sn":"1","Sa":"7.5","Og":"2","Os":"79","On":"17","Oa":"4.68","Od":"0.91","Ap":"17","p":{"14":{"n":6.5,"g":1,"s":1},"16":{"n":7.5,"g":1}}},"c":29},{"i":851,"n":"Mendy","f":"Nampalys","p":"M","r":3,"s":{"s":"5","n":"1","a":"5","Os":"91","On":"18","Oa":"5.08","Od":"0.9","Mp":"18","p":{"3":{"n":5,"s":1}}},"c":29},{"i":858,"n":"Simpson","f":"Danny","p":"D","r":4,"s":{"n":0,"Os":"19","On":"4","Oa":"4.88","Od":"1.24","Dp":"4"},"c":29},{"i":864,"n":"Gray","f":"Demarai","p":"M","r":8,"s":{"s":"48","n":"9","a":"5.33","d":"0.33","Og":"2","Os":"149","On":"30","Oa":"4.97","Od":"0.76","Mp":"28","Ap":"2","p":{"4":{"n":5.5,"s":1},"5":{"n":5.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":6,"s":1},"13":{"n":5.5,"s":1}}},"c":29},{"i":880,"n":"Amartey","f":"Daniel","p":"M","r":1,"s":{"n":0},"c":29},{"i":1015,"n":"Wilfred Ndidi","f":"","p":"M","r":27,"s":{"g":"2","s":"95","n":"15","a":"6.33","d":"0.7","Sg":"1","Ss":"83","Sn":"13","Sa":"6.38","Sd":"0.74","Og":"3","Os":"215","On":"37","Oa":"5.82","Od":"0.98","Mp":"37","p":{"1":{"n":6},"2":{"n":6,"g":1},"4":{"n":6},"5":{"n":6},"6":{"n":6},"7":{"n":8,"g":1},"8":{"n":6},"9":{"n":5.5},"10":{"n":7.5},"11":{"n":7},"12":{"n":7},"13":{"n":6},"14":{"n":6.5},"15":{"n":5.5},"16":{"n":6}}},"c":29},{"i":1041,"n":"Kapustka","f":"Bartosz","p":"M","r":3,"s":{"n":0},"c":29},{"i":1053,"n":"Benalouane","f":"Yohan","p":"D","r":1,"s":{"n":0},"c":29},{"i":1057,"n":"Chilwell","f":"Ben","p":"D","r":19,"s":{"g":"1","s":"72","n":"13","a":"5.54","d":"1.05","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"171","On":"33","Oa":"5.18","Od":"0.98","Mp":"1","Dp":"32","p":{"1":{"n":5},"4":{"n":5.5},"5":{"n":5},"6":{"n":5},"7":{"n":6.5},"8":{"n":4},"9":{"n":4.5},"10":{"n":8,"g":1},"11":{"n":5.5},"12":{"n":6},"13":{"n":7},"14":{"n":5},"16":{"n":5}}},"c":29},{"i":1160,"n":"Tielemans","f":"Youri","p":"M","r":24,"s":{"g":"3","s":"92","n":"16","a":"5.75","d":"0.97","Sg":"3","Ss":"92","Sn":"16","Sa":"5.75","Sd":"0.97","Og":"7","Os":"191","On":"34","Oa":"5.63","Od":"1","Mp":"34","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":5},"7":{"n":6.5},"8":{"n":4.5},"9":{"n":5.5,"g":1},"10":{"n":8,"g":1},"11":{"n":6},"12":{"n":7},"13":{"n":6},"14":{"n":4.5},"15":{"n":4.5},"16":{"n":5.5}}},"c":29},{"i":1368,"n":"Knight","f":"Josh","p":"D","r":1,"s":{"n":0},"c":29},{"i":1371,"n":"James","f":"Matty","p":"M","r":1,"s":{"n":0},"c":29},{"i":1383,"n":"Ward","f":"Danny","p":"G","r":7,"s":{"n":0},"c":29},{"i":2067,"n":"Choudhury","f":"Hamza","p":"M","r":5,"s":{"s":"45","n":"9","a":"5.06","d":"0.5","Os":"94","On":"18","Oa":"5.25","Od":"0.67","Mp":"18","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":6},"4":{"n":5.5,"s":1},"5":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1},"15":{"n":4.5,"s":1}}},"c":29},{"i":2132,"n":"Ayoze P\u00e9rez","f":"","p":"A","r":15,"s":{"g":"4","s":"76","n":"14","a":"5.43","d":"1.18","Og":"14","Os":"189","On":"35","Oa":"5.41","Od":"1.39","Mp":"29","Ap":"6","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":4.5},"5":{"n":5,"s":1},"6":{"n":5},"7":{"n":5.5},"8":{"n":5.5,"s":1},"9":{"n":5},"10":{"n":9,"g":3},"11":{"n":5},"12":{"n":5},"13":{"n":7,"g":1},"14":{"n":5},"15":{"n":4}}},"c":29},{"i":2207,"n":"Barnes","f":"Harvey","p":"M","r":13,"s":{"g":"1","s":"83","n":"15","a":"5.53","d":"1.01","Sg":"1","Ss":"78","Sn":"14","Sa":"5.57","Sd":"1.03","Og":"2","Os":"159","On":"30","Oa":"5.32","Od":"0.91","Mp":"27","Ap":"3","p":{"1":{"n":5,"s":1},"3":{"n":6.5,"g":1,"s":1},"4":{"n":5},"5":{"n":5,"s":1},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":3.5},"9":{"n":6.5},"10":{"n":8},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":6.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":4.5,"s":1}}},"c":29},{"i":2567,"n":"Maddison","f":"James","p":"M","r":35,"s":{"g":"5","s":"94","n":"15","a":"6.27","d":"1.15","Sg":"4","Ss":"59","Sn":"9","Sa":"6.56","Sd":"1.19","Og":"7","Os":"208","On":"36","Oa":"5.79","Od":"1.12","Mp":"31","Ap":"5","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":7},"4":{"n":4.5},"5":{"n":5},"6":{"n":7,"g":1},"8":{"n":6,"g":1},"9":{"n":4.5},"10":{"n":8,"g":1},"11":{"n":8},"12":{"n":7,"g":1},"13":{"n":7},"14":{"n":5},"15":{"n":6,"g":1},"16":{"n":7.5}}},"c":29},{"i":2572,"n":"Elder","f":"Callum","p":"D","r":1,"s":{"n":0},"c":29},{"i":2754,"n":"S\u00f6y\u00fcnc\u00fc","f":"\u00c7aglar","p":"D","r":22,"s":{"g":"1","s":"91","n":"16","a":"5.72","d":"0.81","Sg":"1","Ss":"91","Sn":"16","Sa":"5.72","Sd":"0.81","Og":"1","Os":"101","On":"18","Oa":"5.61","Od":"0.83","Dp":"18","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":6},"5":{"n":3.5},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":7.5,"g":1},"12":{"n":6},"13":{"n":6.5},"14":{"n":5},"15":{"n":6},"16":{"n":6}}},"c":29},{"i":2755,"n":"Benkovic","f":"Filip","p":"D","r":1,"s":{"n":0},"c":29},{"i":2925,"n":"Leshabela","f":"Thakgalo","p":"M","r":1,"s":{"n":0},"c":29},{"i":3658,"n":"Justin","f":"James","p":"D","r":3,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"15":{"n":5.5,"s":1},"16":{"n":5,"s":1}}},"c":29},{"i":3690,"n":"Thomas","f":"George","p":"A","r":4,"s":{"n":0},"c":29},{"i":4601,"n":"Praet","f":"Dennis","p":"M","r":9,"s":{"s":"58","n":"11","a":"5.27","d":"0.58","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Os":"58","On":"11","Oa":"5.27","Od":"0.58","Mp":"11","p":{"2":{"n":5,"s":1},"3":{"n":5},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":7}}},"c":29},{"i":5411,"n":"Fitzhugh","f":"Ethan","p":"M","r":1,"s":{"n":0},"c":29},{"i":5418,"n":"Tavares","f":"Sidnei","p":"M","r":1,"s":{"n":0},"c":29},{"i":5422,"n":"Pennant","f":"Terell","p":"A","r":1,"s":{"n":0},"c":29},{"i":5425,"n":"Wright","f":"Callum","p":"M","r":1,"s":{"n":0},"c":29},{"i":5430,"n":"Daley-Campbell","f":"Vontae","p":"D","r":1,"s":{"n":0},"c":29},{"i":5434,"n":"Johansson","f":"Viktor","p":"G","r":1,"s":{"n":0},"c":29},{"i":5443,"n":"Moore","f":"Elliott","p":"D","r":1,"s":{"n":0},"c":29},{"i":5444,"n":"Muskwe","f":"Admiral","p":"A","r":1,"s":{"n":0},"c":29},{"i":5445,"n":"Ndukwu","f":"Layton","p":"A","r":4,"s":{"n":0},"c":29},{"i":595,"n":"Pogba","f":"Paul","p":"M","r":16,"s":{"s":"26","n":"5","a":"5.2","d":"1.29","Og":"10","Os":"145","On":"26","Oa":"5.6","Od":"1.52","Mp":"26","p":{"35":{"n":4},"1":{"n":7.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"7":{"n":5}}},"c":31},{"i":600,"n":"de Gea","f":"David","p":"G","r":16,"s":{"s":"84","n":"16","a":"5.28","d":"0.97","Ss":"84","Sn":"16","Sa":"5.28","Sd":"0.97","Os":"201","On":"38","Oa":"5.29","Od":"1.06","Gp":"38","p":{"35":{"n":4.5},"1":{"n":7.5},"2":{"n":4.5},"3":{"n":4},"4":{"n":5},"5":{"n":6.5},"6":{"n":5},"7":{"n":6},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":6},"12":{"n":5},"13":{"n":4},"14":{"n":4},"15":{"n":6},"16":{"n":6}}},"c":31},{"i":604,"n":"Mata","f":"Juan","p":"M","r":8,"s":{"s":"39","n":"8","a":"4.94","d":"0.17","Og":"1","Os":"94","On":"19","Oa":"4.95","Od":"0.46","Mp":"18","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5},"5":{"n":5},"6":{"n":4.5},"8":{"n":5},"14":{"n":5}}},"c":31},{"i":608,"n":"Antonio Valencia","f":"","p":"D","r":4,"s":{"n":0,"Os":"10","On":"2","Oa":"5.25","Od":"0.25","Mp":"1","Dp":"1"},"c":31},{"i":616,"n":"Matic","f":"Nemanja","p":"M","r":8,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Og":"1","Os":"92","On":"18","Oa":"5.11","Od":"0.95","Mp":"18","p":{"35":{"n":3},"4":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4.5}}},"c":31},{"i":626,"n":"Martial","f":"Anthony","p":"A","r":21,"s":{"g":"4","s":"55","n":"10","a":"5.55","d":"1.08","Sg":"1","Ss":"6","Sn":"1","Sa":"6.5","Og":"7","Os":"130","On":"25","Oa":"5.22","Od":"1.1","Mp":"3","Ap":"22","p":{"35":{"n":3},"1":{"n":7,"g":1},"2":{"n":6,"g":1},"3":{"n":5.5},"9":{"n":4,"s":1},"10":{"n":6,"g":1},"11":{"n":4},"12":{"n":7},"13":{"n":4.5},"14":{"n":5},"16":{"n":6.5,"g":1}}},"c":31},{"i":637,"n":"Fellaini","f":"Marouane","p":"M","r":7,"s":{"n":0,"Os":"9","On":"2","Oa":"4.75","Od":"0.25","Mp":"2"},"c":31},{"i":641,"n":"Rashford","f":"Marcus","p":"A","r":39,"s":{"g":"10","s":"95","n":"16","a":"5.94","d":"1.4","Sg":"10","Ss":"95","Sn":"16","Sa":"5.94","Sd":"1.4","Og":"17","Os":"201","On":"36","Oa":"5.6","Od":"1.34","Mp":"11","Ap":"25","p":{"35":{"n":3},"1":{"n":8,"g":2},"2":{"n":6},"3":{"n":3.5},"4":{"n":5},"5":{"n":6,"g":1},"6":{"n":4},"7":{"n":6},"8":{"n":4},"9":{"n":6,"g":1},"10":{"n":8,"g":1},"11":{"n":5},"12":{"n":6.5,"g":1},"13":{"n":7,"g":1},"14":{"n":5},"15":{"n":8,"g":2},"16":{"n":7,"g":1}}},"c":31},{"i":706,"n":"Bailly","f":"Eric","p":"D","r":5,"s":{"n":0,"Os":"31","On":"6","Oa":"5.25","Od":"0.69","Dp":"6"},"c":31},{"i":731,"n":"Rojo","f":"Marcos","p":"D","r":5,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"29","On":"6","Oa":"4.83","Od":"0.24","Dp":"6","p":{"8":{"n":5,"s":1},"9":{"n":4.5},"12":{"n":5,"s":1}}},"c":31},{"i":743,"n":"Jones","f":"Phil","p":"D","r":5,"s":{"s":"3","n":"1","a":"3.5","Os":"86","On":"16","Oa":"5.38","Od":"1.02","Dp":"16","p":{"35":{"n":3.5},"13":{"n":3.5}}},"c":31},{"i":768,"n":"Lingard","f":"Jesse","p":"M","r":12,"s":{"s":"66","n":"13","a":"5.08","d":"0.55","Ss":"36","Sn":"7","Sa":"5.21","Sd":"0.45","Og":"3","Os":"141","On":"28","Oa":"5.04","Od":"0.81","Mp":"23","Ap":"5","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":4},"4":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5},"10":{"n":5.5,"s":1},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":4.5,"s":1},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":6}}},"c":31},{"i":804,"n":"Shaw","f":"Luke","p":"D","r":10,"s":{"s":"30","n":"6","a":"5.08","d":"0.45","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"117","On":"23","Oa":"5.11","Od":"0.93","Mp":"1","Dp":"22","p":{"1":{"n":6},"2":{"n":5},"3":{"n":5},"14":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":5}}},"c":31},{"i":876,"n":"Grant","f":"Lee","p":"G","r":1,"s":{"n":0},"c":31},{"i":889,"n":"Romero","f":"Sergio","p":"G","r":7,"s":{"n":0},"c":31},{"i":898,"n":"Maguire","f":"Harry","p":"D","r":20,"s":{"s":"85","n":"16","a":"5.34","d":"0.78","Ss":"85","Sn":"16","Sa":"5.34","Sd":"0.78","Og":"1","Os":"190","On":"36","Oa":"5.29","Od":"0.9","Dp":"36","p":{"1":{"n":7},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5},"5":{"n":6.5},"6":{"n":4},"7":{"n":5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"11":{"n":5},"12":{"n":5},"13":{"n":4.5},"14":{"n":4},"15":{"n":5.5},"16":{"n":6}}},"c":31},{"i":947,"n":"Young","f":"Ashley","p":"D","r":10,"s":{"s":"52","n":"11","a":"4.73","d":"0.33","Ss":"10","Sn":"2","Sa":"5","Og":"1","Os":"144","On":"30","Oa":"4.8","Od":"0.67","Mp":"1","Dp":"29","p":{"35":{"n":3.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5},"5":{"n":5},"6":{"n":4},"7":{"n":4.5},"8":{"n":5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5},"15":{"n":5},"16":{"n":5,"s":1}}},"c":31},{"i":1062,"n":"Tuanzebe","f":"Axel","p":"D","r":6,"s":{"s":"22","n":"5","a":"4.4","d":"0.58","Ss":"5","Sn":"1","Sa":"5","Os":"22","On":"5","Oa":"4.4","Od":"0.58","Dp":"5","p":{"5":{"n":5,"s":1},"7":{"n":3.5},"8":{"n":4},"13":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":31},{"i":1063,"n":"Fosu-Mensah","f":"Timothy","p":"D","r":1,"s":{"n":0,"Os":"23","On":"5","Oa":"4.7","Od":"0.6","Dp":"5"},"c":31},{"i":1079,"n":"James","f":"Daniel","p":"M","r":20,"s":{"g":"3","s":"92","n":"16","a":"5.75","d":"0.87","Sg":"3","Ss":"92","Sn":"16","Sa":"5.75","Sd":"0.87","Og":"3","Os":"92","On":"16","Oa":"5.75","Od":"0.87","Mp":"14","Ap":"2","p":{"1":{"n":6.5,"g":1,"s":1},"2":{"n":5.5},"3":{"n":6,"g":1},"4":{"n":7,"g":1},"5":{"n":5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":6},"10":{"n":7},"11":{"n":5.5},"12":{"n":6.5},"13":{"n":6},"14":{"n":4.5},"15":{"n":5},"16":{"n":7}}},"c":31},{"i":1080,"n":"Joel Pereira","f":"","p":"G","r":1,"s":{"n":0},"c":31},{"i":1095,"n":"Wan-Bissaka","f":"Aaron","p":"D","r":17,"s":{"s":"70","n":"14","a":"5","d":"0.85","Ss":"40","Sn":"8","Sa":"5.06","Sd":"0.58","Os":"176","On":"34","Oa":"5.19","Od":"0.77","Mp":"2","Dp":"32","p":{"1":{"n":7},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"5":{"n":5},"6":{"n":4},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4},"14":{"n":5},"15":{"n":5},"16":{"n":6}}},"c":31},{"i":1286,"n":"Lindel\u00f6f","f":"Victor","p":"D","r":17,"s":{"g":"1","s":"78","n":"15","a":"5.23","d":"0.85","Sg":"1","Ss":"42","Sn":"8","Sa":"5.31","Sd":"0.66","Og":"2","Os":"175","On":"33","Oa":"5.32","Od":"0.91","Dp":"33","p":{"35":{"n":3},"1":{"n":6},"2":{"n":5},"3":{"n":4},"4":{"n":6},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":5.5},"13":{"n":4},"14":{"n":6,"g":1},"15":{"n":5.5},"16":{"n":6}}},"c":31},{"i":1355,"n":"Andreas Pereira","f":"","p":"M","r":10,"s":{"g":"1","s":"76","n":"15","a":"5.07","d":"0.73","Sg":"1","Ss":"64","Sn":"13","Sa":"4.96","Sd":"0.66","Og":"2","Os":"126","On":"26","Oa":"4.87","Od":"0.74","Mp":"25","Ap":"1","p":{"35":{"n":4.5,"s":1},"1":{"n":6.5},"2":{"n":5,"s":1},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":5},"9":{"n":5},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":6.5,"g":1},"13":{"n":4},"14":{"n":4},"15":{"n":4.5,"s":1},"16":{"n":5.5,"s":1}}},"c":31},{"i":2062,"n":"McTominay","f":"Scott","p":"M","r":19,"s":{"g":"2","s":"77","n":"14","a":"5.54","d":"0.81","Ss":"12","Sn":"2","Sa":"6.25","Sd":"0.25","Og":"4","Os":"128","On":"24","Oa":"5.35","Od":"0.78","Mp":"24","p":{"35":{"n":4,"s":1},"1":{"n":6.5},"2":{"n":4.5},"3":{"n":5},"4":{"n":6},"5":{"n":6},"6":{"n":4.5},"7":{"n":6.5,"g":1},"8":{"n":4.5},"9":{"n":5},"10":{"n":6.5,"g":1},"11":{"n":4.5},"12":{"n":5.5},"15":{"n":6},"16":{"n":6.5}}},"c":31},{"i":2286,"n":"Gomes","f":"Angel","p":"M","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Mp":"2","Ap":"1","p":{"6":{"n":4.5,"s":1}}},"c":31},{"i":2341,"n":"Hamilton","f":"Ethan","p":"M","r":8,"s":{"n":0},"c":31},{"i":2541,"n":"Diogo Dalot","f":"","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"66","On":"14","Oa":"4.71","Od":"0.65","Mp":"3","Dp":"10","Ap":"1","p":{"35":{"n":3.5},"8":{"n":5}}},"c":31},{"i":2601,"n":"Fred","f":"","p":"M","r":14,"s":{"s":"65","n":"12","a":"5.46","d":"0.59","Ss":"65","Sn":"12","Sa":"5.46","Sd":"0.59","Os":"107","On":"21","Oa":"5.12","Od":"0.74","Mp":"21","p":{"35":{"n":3.5},"5":{"n":5.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":5},"9":{"n":5},"10":{"n":6.5},"11":{"n":6.5},"12":{"n":6},"13":{"n":5.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5.5}}},"c":31},{"i":2750,"n":"Kovar","f":"Matej","p":"G","r":1,"s":{"n":0},"c":31},{"i":2751,"n":"Chong","f":"Tahith","p":"M","r":1,"s":{"s":"8","n":"2","a":"4.25","d":"0.25","Os":"17","On":"4","Oa":"4.38","Od":"0.22","Ap":"4","p":{"5":{"n":4.5,"s":1},"8":{"n":4,"s":1}}},"c":31},{"i":2752,"n":"Bohui","f":"Joshua","p":"A","r":1,"s":{"n":0},"c":31},{"i":2757,"n":"O'Hara","f":"Kieran","p":"G","r":1,"s":{"n":0},"c":31},{"i":2976,"n":"Greenwood","f":"Mason","p":"A","r":6,"s":{"g":"1","s":"55","n":"12","a":"4.63","d":"0.51","Og":"1","Os":"69","On":"15","Oa":"4.63","Od":"0.46","Ap":"15","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"7":{"n":4,"s":1},"8":{"n":5,"s":1},"10":{"n":4,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":6,"g":1,"s":1},"14":{"n":4.5,"s":1},"15":{"n":5}}},"c":31},{"i":3118,"n":"Garner","f":"James","p":"M","r":1,"s":{"s":"5","n":"1","a":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"10":{"n":5,"s":1}}},"c":31},{"i":6285,"n":"Williams","f":"Brandon","p":"D","r":7,"s":{"g":"1","s":"18","n":"4","a":"4.63","d":"0.65","Og":"1","Os":"18","On":"4","Oa":"4.63","Od":"0.65","Mp":"1","Dp":"3","p":{"11":{"n":5,"s":1},"12":{"n":5},"13":{"n":5,"g":1},"14":{"n":3.5}}},"c":31},{"i":6339,"n":"Bernard","f":"Di'Shon","p":"D","r":1,"s":{"n":0},"c":31},{"i":230,"n":"Sarr","f":"Ismaila","p":"A","r":14,"s":{"g":"1","s":"47","n":"9","a":"5.22","d":"0.97","Sg":"1","Ss":"23","Sn":"4","Sa":"5.88","Sd":"0.89","Og":"4","Os":"142","On":"27","Oa":"5.28","Od":"1.1","Mp":"22","Ap":"5","p":{"3":{"n":5,"s":1},"5":{"n":5.5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":3.5},"8":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":6.5,"g":1},"15":{"n":5},"16":{"n":7}}},"c":33},{"i":450,"n":"Lukebakio","f":"Dodi","p":"M","r":7,"s":{"n":0},"c":33},{"i":640,"n":"Deeney","f":"Troy","p":"A","r":14,"s":{"s":"21","n":"5","a":"4.2","d":"0.51","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"7","Os":"117","On":"24","Oa":"4.9","Od":"1.35","Ap":"24","p":{"28":{"n":2.5},"1":{"n":3.5},"2":{"n":4},"13":{"n":4,"s":1},"15":{"n":4.5},"16":{"n":5}}},"c":33},{"i":653,"n":"Dawson","f":"Craig","p":"D","r":8,"s":{"s":"60","n":"13","a":"4.65","d":"1.12","Os":"60","On":"13","Oa":"4.65","Od":"1.12","Dp":"13","p":{"1":{"n":4},"2":{"n":5},"3":{"n":3.5},"4":{"n":5},"5":{"n":4.5},"6":{"n":2},"7":{"n":4},"8":{"n":5.5,"s":1},"9":{"n":6},"10":{"n":6},"11":{"n":4},"12":{"n":6},"13":{"n":5}}},"c":33},{"i":688,"n":"Gray","f":"Andre","p":"A","r":10,"s":{"g":"2","s":"66","n":"15","a":"4.43","d":"0.91","Sg":"1","Ss":"30","Sn":"7","Sa":"4.36","Sd":"0.83","Og":"6","Os":"136","On":"29","Oa":"4.71","Od":"0.97","Ap":"29","p":{"28":{"n":4.5,"s":1},"1":{"n":3},"2":{"n":4.5,"s":1},"3":{"n":6.5,"g":1},"4":{"n":4},"5":{"n":4},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":4},"12":{"n":6,"g":1,"s":1},"13":{"n":3},"14":{"n":4,"s":1},"15":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":33},{"i":702,"n":"Heurelho Gomes","f":"","p":"G","r":7,"s":{"n":0},"c":33},{"i":730,"n":"Holebas","f":"Jos\u00e9","p":"D","r":9,"s":{"s":"45","n":"11","a":"4.09","d":"1.08","Og":"1","Os":"115","On":"26","Oa":"4.44","Od":"1.02","Dp":"26","p":{"1":{"n":3},"2":{"n":5},"3":{"n":4.5},"5":{"n":4},"6":{"n":2.5},"7":{"n":4},"8":{"n":5.5},"9":{"n":4.5},"12":{"n":6},"13":{"n":3},"14":{"n":3}}},"c":33},{"i":738,"n":"Foster","f":"Ben","p":"G","r":16,"s":{"s":"83","n":"16","a":"5.19","d":"1.33","Ss":"83","Sn":"16","Sa":"5.19","Sd":"1.33","Os":"203","On":"38","Oa":"5.34","Od":"1.17","Gp":"38","p":{"28":{"n":4},"1":{"n":3.5},"2":{"n":4.5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":2.5},"7":{"n":4},"8":{"n":6.5},"9":{"n":4},"10":{"n":7},"11":{"n":7},"12":{"n":7},"13":{"n":5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5.5}}},"c":33},{"i":739,"n":"Pereyra","f":"Roberto","p":"M","r":10,"s":{"g":"1","s":"61","n":"12","a":"5.08","d":"0.79","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"142","On":"29","Oa":"4.9","Od":"0.93","Mp":"24","Ap":"5","p":{"28":{"n":3},"1":{"n":5,"s":1},"2":{"n":4},"4":{"n":5.5},"5":{"n":7,"g":1,"s":1},"6":{"n":4.5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":6},"9":{"n":5},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":4.5},"16":{"n":5}}},"c":33},{"i":758,"n":"Capoue","f":"Etienne","p":"M","r":16,"s":{"s":"56","n":"11","a":"5.09","d":"1.04","Ss":"28","Sn":"5","Sa":"5.7","Sd":"0.81","Os":"169","On":"31","Oa":"5.47","Od":"1.08","Mp":"31","p":{"28":{"n":3},"1":{"n":3.5},"2":{"n":5.5},"3":{"n":4.5},"5":{"n":6},"6":{"n":3.5},"7":{"n":4.5},"12":{"n":6.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":6.5},"16":{"n":5}}},"c":33},{"i":782,"n":"Kaboul","f":"Younes","p":"D","r":1,"s":{"n":0},"c":33},{"i":812,"n":"Pr\u00f6dl","f":"Sebastian","p":"D","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Dp":"1","p":{"8":{"n":5}}},"c":33},{"i":823,"n":"Kabasele","f":"Christian","p":"D","r":11,"s":{"s":"41","n":"8","a":"5.13","d":"0.96","Ss":"5","Sn":"1","Sa":"5.5","Os":"90","On":"18","Oa":"5.03","Od":"0.81","Dp":"18","p":{"4":{"n":5.5},"5":{"n":4},"8":{"n":6},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":3.5},"12":{"n":4.5},"16":{"n":5.5}}},"c":33},{"i":836,"n":"Britos","f":"Miguel","p":"D","r":4,"s":{"n":0,"Os":"13","On":"3","Oa":"4.33","Od":"0.47","Dp":"3"},"c":33},{"i":865,"n":"Janmaat","f":"Daryl","p":"D","r":9,"s":{"ao":"1","s":"40","n":"8","a":"5.06","d":"1.1","Oao":"1","Os":"99","On":"20","Oa":"4.95","Od":"0.84","Mp":"1","Dp":"19","p":{"28":{"n":3.5},"4":{"n":4.5},"5":{"n":5,"s":1},"7":{"n":3,"a":1},"8":{"n":6},"9":{"n":6.5},"10":{"n":5.5},"11":{"n":4},"12":{"n":6}}},"c":33},{"i":869,"n":"Isaac Success","f":"","p":"A","r":3,"s":{"s":"13","n":"3","a":"4.5","d":"0.41","Os":"78","On":"17","Oa":"4.59","Od":"0.49","Mp":"1","Ap":"16","p":{"1":{"n":4,"s":1},"4":{"n":5,"s":1},"15":{"n":4.5,"s":1}}},"c":33},{"i":933,"n":"Cleverley","f":"Tom","p":"M","r":8,"s":{"g":"1","s":"47","n":"9","a":"5.22","d":"1.06","Og":"2","Os":"112","On":"22","Oa":"5.11","Od":"0.84","Mp":"21","Ap":"1","p":{"28":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":7.5,"g":1},"6":{"n":3.5},"7":{"n":4.5},"8":{"n":5},"9":{"n":6},"10":{"n":5}}},"c":33},{"i":944,"n":"Doucour\u00e9","f":"Abdoulaye","p":"M","r":17,"s":{"g":"1","ao":"1","s":"82","n":"16","a":"5.13","d":"1.13","Sg":"1","Sao":"1","Ss":"82","Sn":"16","Sa":"5.13","Sd":"1.13","Og":"4","Oao":"1","Os":"177","On":"35","Oa":"5.07","Od":"1.1","Mp":"35","p":{"28":{"n":3.5},"1":{"n":3.5,"a":1},"2":{"n":5},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":3},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":7.5,"g":1},"10":{"n":5.5},"11":{"n":6},"12":{"n":7},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5}}},"c":33},{"i":948,"n":"Cathcart","f":"Craig","p":"D","r":13,"s":{"s":"68","n":"14","a":"4.89","d":"0.78","Ss":"51","Sn":"10","Sa":"5.1","Sd":"0.62","Og":"2","Oao":"1","Os":"168","On":"34","Oa":"4.96","Od":"0.89","Dp":"34","p":{"28":{"n":3},"1":{"n":3.5},"2":{"n":5},"3":{"n":3.5},"4":{"n":5.5},"7":{"n":4},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":6},"13":{"n":4},"14":{"n":5},"15":{"n":5.5},"16":{"n":5}}},"c":33},{"i":953,"n":"Dja Dj\u00e9dj\u00e9","f":"Brice","p":"D","r":1,"s":{"n":0},"c":33},{"i":979,"n":"Chalobah","f":"Nathaniel","p":"M","r":7,"s":{"s":"29","n":"6","a":"4.92","d":"0.53","Ss":"5","Sn":"1","Sa":"5","Os":"43","On":"9","Oa":"4.78","Od":"0.48","Mp":"9","p":{"4":{"n":4.5,"s":1},"9":{"n":6},"10":{"n":5},"11":{"n":4.5},"14":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":33},{"i":1038,"n":"Welbeck","f":"Danny","p":"A","r":5,"s":{"s":"23","n":"5","a":"4.6","d":"0.37","Os":"23","On":"5","Oa":"4.6","Od":"0.37","Ap":"5","p":{"2":{"n":4.5,"s":1},"3":{"n":5,"s":1},"7":{"n":5},"8":{"n":4},"9":{"n":4.5}}},"c":33},{"i":1081,"n":"Mariappa","f":"Adrian","p":"D","r":8,"s":{"s":"26","n":"6","a":"4.42","d":"0.93","Os":"108","On":"23","Oa":"4.7","Od":"0.83","Dp":"23","p":{"28":{"n":3},"6":{"n":2.5},"11":{"n":4.5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5}}},"c":33},{"i":1086,"n":"Bachmann","f":"Daniel","p":"G","r":1,"s":{"n":0},"c":33},{"i":1107,"n":"Domingos Quina","f":"","p":"M","r":3,"s":{"s":"10","n":"2","a":"5","Og":"1","Os":"39","On":"8","Oa":"4.94","Od":"0.53","Mp":"8","p":{"3":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":33},{"i":1298,"n":"Kiko Femen\u00eda","f":"","p":"D","r":10,"s":{"s":"53","n":"12","a":"4.46","d":"0.72","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.43","Og":"1","Os":"127","On":"27","Oa":"4.72","Od":"1.01","Mp":"3","Dp":"24","p":{"1":{"n":4},"2":{"n":4.5},"3":{"n":4},"4":{"n":4.5},"5":{"n":5},"6":{"n":2.5},"9":{"n":5,"s":1},"11":{"n":5,"s":1},"13":{"n":4},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":33},{"i":1311,"n":"Hughes","f":"Will","p":"M","r":8,"s":{"g":"1","s":"65","n":"13","a":"5","d":"0.96","Og":"2","Os":"149","On":"30","Oa":"4.98","Od":"0.96","Mp":"29","Ap":"1","p":{"28":{"n":4},"1":{"n":3.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":7,"g":1},"5":{"n":5.5},"6":{"n":4},"9":{"n":5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":6.5},"13":{"n":4},"14":{"n":4.5},"15":{"n":4.5}}},"c":33},{"i":1335,"n":"Sinclair","f":"Jerome","p":"A","r":3,"s":{"n":0},"c":33},{"i":1535,"n":"Foulquier","f":"Dimitri","p":"D","r":3,"s":{"s":"14","n":"3","a":"4.67","d":"0.47","Og":"1","Os":"89","On":"19","Oa":"4.71","Od":"0.82","Mp":"14","Dp":"5","p":{"6":{"n":4},"10":{"n":5,"s":1},"14":{"n":5,"s":1}}},"c":33},{"i":1724,"n":"Deulofeu","f":"Gerard","p":"A","r":16,"s":{"g":"2","s":"76","n":"16","a":"4.75","d":"1.37","Sg":"2","Ss":"76","Sn":"16","Sa":"4.75","Sd":"1.37","Og":"11","Os":"183","On":"37","Oa":"4.95","Od":"1.52","Mp":"3","Ap":"34","p":{"28":{"n":2.5},"1":{"n":3.5},"2":{"n":4.5},"3":{"n":5},"4":{"n":4,"s":1},"5":{"n":7.5},"6":{"n":3},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":3.5},"11":{"n":6,"g":1},"12":{"n":7.5,"g":1},"13":{"n":5},"14":{"n":3.5},"15":{"n":3.5},"16":{"n":6}}},"c":33},{"i":1942,"n":"Pe\u00f1aranda","f":"Adalberto","p":"A","r":1,"s":{"n":0},"c":33},{"i":2023,"n":"Zeegelaar","f":"Marvin","p":"D","r":1,"s":{"n":0},"c":33},{"i":2229,"n":"Tom Dele-Bashiru","f":"","p":"M","r":1,"s":{"n":0},"c":33},{"i":2536,"n":"Wilmot","f":"Ben","p":"D","r":1,"s":{"n":0,"Os":"4","On":"1","Oa":"4","Dp":"1"},"c":33},{"i":2547,"n":"Dahlberg","f":"Pontus","p":"G","r":1,"s":{"n":0},"c":33},{"i":2559,"n":"Oular\u00e9","f":"Obbi","p":"A","r":5,"s":{"n":0},"c":33},{"i":2579,"n":"Masina","f":"Adam","p":"D","r":9,"s":{"s":"30","n":"7","a":"4.29","d":"0.59","Ss":"30","Sn":"7","Sa":"4.29","Sd":"0.59","Os":"76","On":"17","Oa":"4.5","Od":"0.66","Dp":"17","p":{"28":{"n":3},"10":{"n":5},"11":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":4,"s":1},"14":{"n":3.5},"15":{"n":4.5},"16":{"n":4.5}}},"c":33},{"i":5415,"n":"Forster","f":"Harry","p":"M","r":1,"s":{"n":0},"c":33},{"i":5985,"n":"Crichlow","f":"Kane","p":"M","r":3,"s":{"n":0},"c":33},{"i":669,"n":"Long","f":"Shane","p":"A","r":10,"s":{"s":"37","n":"8","a":"4.69","d":"0.66","Ss":"20","Sn":"4","Sa":"5.13","Sd":"0.54","Og":"5","Os":"119","On":"25","Oa":"4.78","Od":"0.97","Ap":"25","p":{"19":{"n":4,"s":1},"37":{"n":3},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":6},"16":{"n":5}}},"c":35},{"i":673,"n":"Redmond","f":"Nathan","p":"M","r":13,"s":{"g":"1","s":"70","n":"14","a":"5.04","d":"1.01","Ss":"54","Sn":"11","Sa":"4.95","Sd":"0.78","Og":"7","Os":"185","On":"36","Oa":"5.15","Od":"1.14","Mp":"9","Ap":"27","p":{"19":{"n":5.5,"g":1},"37":{"n":4,"s":1},"1":{"n":4},"2":{"n":4.5},"3":{"n":7.5,"g":1},"6":{"n":5},"7":{"n":4.5},"8":{"n":4},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":6}}},"c":35},{"i":693,"n":"Austin","f":"Charlie","p":"A","r":3,"s":{"n":0,"Og":"1","Os":"58","On":"13","Oa":"4.46","Od":"0.84","Ap":"13","p":{"19":{"n":4.5,"s":1}}},"c":35},{"i":710,"n":"Oriol Romeu","f":"","p":"M","r":8,"s":{"s":"63","n":"13","a":"4.88","d":"1.02","Og":"1","Os":"181","On":"35","Oa":"5.19","Od":"1.04","Mp":"35","p":{"19":{"n":6},"37":{"n":5,"s":1},"1":{"n":3.5},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6},"5":{"n":6.5},"6":{"n":6},"7":{"n":4.5},"8":{"n":4},"9":{"n":4.5},"10":{"n":3},"11":{"n":5.5},"12":{"n":4},"15":{"n":5,"s":1}}},"c":35},{"i":721,"n":"Bertrand","f":"Ryan","p":"D","r":10,"s":{"g":"1","s":"46","n":"11","a":"4.23","d":"1.07","Sg":"1","Ss":"18","Sn":"4","Sa":"4.63","Sd":"1.08","Og":"1","Os":"97","On":"23","Oa":"4.24","Od":"0.9","Mp":"13","Dp":"10","p":{"37":{"n":3},"1":{"n":3.5},"2":{"n":4},"6":{"n":4.5,"s":1},"7":{"n":5},"8":{"n":2.5},"9":{"n":5.5},"10":{"n":3},"13":{"n":5},"14":{"n":4.5},"15":{"n":6,"g":1},"16":{"n":3}}},"c":35},{"i":725,"n":"Forster","f":"Fraser","p":"G","r":11,"s":{"n":0,"Os":"4","On":"1","Oa":"4.5","Gp":"1","p":{"37":{"n":4.5}}},"c":35},{"i":727,"n":"H\u00f8jbjerg","f":"Pierre-Emile","p":"M","r":11,"s":{"s":"75","n":"15","a":"5","d":"1.02","Ss":"23","Sn":"4","Sa":"5.75","Sd":"1.35","Og":"2","Os":"173","On":"33","Oa":"5.26","Od":"1.03","Mp":"32","Dp":"1","p":{"37":{"n":3.5},"1":{"n":4.5,"s":1},"2":{"n":5},"3":{"n":5},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":4.5},"10":{"n":3},"11":{"n":4.5},"13":{"n":5},"14":{"n":6.5},"15":{"n":7.5},"16":{"n":4}}},"c":35},{"i":745,"n":"Davis","f":"Steven","p":"M","r":5,"s":{"n":0},"c":35},{"i":755,"n":"C\u00e9dric Soares","f":"","p":"D","r":10,"s":{"s":"35","n":"8","a":"4.44","d":"0.68","Ss":"21","Sn":"5","Sa":"4.3","Sd":"0.75","Os":"50","On":"11","Oa":"4.59","Od":"0.63","Mp":"2","Dp":"9","p":{"4":{"n":5},"5":{"n":5},"6":{"n":4},"12":{"n":4},"13":{"n":4.5},"14":{"n":5},"15":{"n":5},"16":{"n":3}}},"c":35},{"i":826,"n":"Boufal","f":"Sofiane","p":"M","r":9,"s":{"s":"61","n":"12","a":"5.13","d":"0.65","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"165","On":"33","Oa":"5.02","Od":"0.69","Mp":"30","Ap":"3","p":{"1":{"n":5,"s":1},"3":{"n":6,"s":1},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":4},"8":{"n":4.5,"s":1},"9":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":5.5,"s":1},"14":{"n":5.5,"s":1},"16":{"n":5,"s":1}}},"c":35},{"i":857,"n":"Ward-Prowse","f":"James","p":"M","r":22,"s":{"g":"4","s":"85","n":"16","a":"5.34","d":"1.07","Sg":"4","Ss":"85","Sn":"16","Sa":"5.34","Sd":"1.07","Og":"11","Oao":"1","Os":"191","On":"35","Oa":"5.46","Od":"1.02","Mp":"31","Ap":"4","p":{"37":{"n":4.5,"s":1},"1":{"n":3.5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":5.5},"6":{"n":7,"g":1},"7":{"n":4},"8":{"n":4},"9":{"n":6},"10":{"n":4},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":6,"g":1},"14":{"n":6,"g":1},"15":{"n":6.5},"16":{"n":4.5}}},"c":35},{"i":879,"n":"Yoshida","f":"Maya","p":"D","r":6,"s":{"s":"36","n":"8","a":"4.56","d":"1.29","Os":"102","On":"20","Oa":"5.13","Od":"1.17","Dp":"20","p":{"19":{"n":4.5},"2":{"n":4.5},"4":{"n":5.5,"s":1},"5":{"n":6},"7":{"n":5},"8":{"n":3},"9":{"n":5.5},"10":{"n":2},"15":{"n":5,"s":1}}},"c":35},{"i":940,"n":"McCarthy","f":"Alex","p":"G","r":14,"s":{"s":"30","n":"6","a":"5.08","d":"0.45","Ss":"30","Sn":"6","Sa":"5.08","Sd":"0.45","Os":"77","On":"15","Oa":"5.13","Od":"0.69","Gp":"15","p":{"19":{"n":5},"11":{"n":5},"12":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":35},{"i":962,"n":"Clasie","f":"Jordy","p":"M","r":5,"s":{"n":0},"c":35},{"i":1010,"n":"Ings","f":"Danny","p":"A","r":32,"s":{"g":"9","s":"88","n":"16","a":"5.5","d":"0.92","Sg":"9","Ss":"88","Sn":"16","Sa":"5.5","Sd":"0.92","Og":"12","Os":"151","On":"29","Oa":"5.22","Od":"1.09","Ap":"29","p":{"19":{"n":4},"37":{"n":3.5},"1":{"n":3.5},"2":{"n":6,"g":1,"s":1},"3":{"n":6},"4":{"n":4.5},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":6,"g":1},"8":{"n":6,"g":1},"9":{"n":6,"g":1},"10":{"n":4.5},"11":{"n":4.5},"12":{"n":6,"g":1},"13":{"n":6,"g":1},"14":{"n":7,"g":1},"15":{"n":6.5,"g":1},"16":{"n":6,"g":1}}},"c":35},{"i":1030,"n":"Josh Sims","f":"","p":"M","r":4,"s":{"n":0,"Os":"33","On":"7","Oa":"4.79","Od":"0.96","Mp":"5","Ap":"2"},"c":35},{"i":1037,"n":"McQueen","f":"Sam","p":"D","r":1,"s":{"n":0},"c":35},{"i":1050,"n":"Stephens","f":"Jack","p":"D","r":10,"s":{"s":"33","n":"8","a":"4.19","d":"0.75","Ss":"29","Sn":"7","Sa":"4.21","Sd":"0.8","Og":"1","Os":"108","On":"24","Oa":"4.52","Od":"0.82","Dp":"24","p":{"37":{"n":4},"1":{"n":4},"10":{"n":4,"s":1},"11":{"n":5},"12":{"n":3},"13":{"n":3.5},"14":{"n":4.5},"15":{"n":5.5},"16":{"n":4}}},"c":35},{"i":1051,"n":"Reed","f":"Harrison","p":"M","r":3,"s":{"n":0},"c":35},{"i":1077,"n":"Lewis","f":"Harry","p":"G","r":1,"s":{"n":0},"c":35},{"i":1078,"n":"Hesketh","f":"Jake","p":"M","r":5,"s":{"n":0},"c":35},{"i":1105,"n":"Gunn","f":"Angus","p":"G","r":7,"s":{"s":"50","n":"10","a":"5","d":"1.2","Os":"112","On":"22","Oa":"5.11","Od":"1.41","Gp":"22","p":{"1":{"n":4},"2":{"n":6},"3":{"n":6.5},"4":{"n":6.5},"5":{"n":6.5},"6":{"n":3.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":5},"10":{"n":3.5}}},"c":35},{"i":1302,"n":"Hoedt","f":"Wesley","p":"D","r":7,"s":{"n":0,"Os":"46","On":"10","Oa":"4.65","Od":"0.81","Dp":"10"},"c":35},{"i":1315,"n":"Lemina","f":"Mario","p":"M","r":3,"s":{"n":0,"Og":"1","Os":"28","On":"6","Oa":"4.75","Od":"0.8","Mp":"6","p":{"19":{"n":5},"37":{"n":4}}},"c":35},{"i":1333,"n":"Bednarek","f":"Jan","p":"D","r":10,"s":{"s":"70","n":"16","a":"4.38","d":"1.21","Ss":"70","Sn":"16","Sa":"4.38","Sd":"1.21","Os":"180","On":"38","Oa":"4.74","Od":"1.17","Dp":"38","p":{"19":{"n":3.5},"37":{"n":4},"1":{"n":3.5},"2":{"n":3.5},"3":{"n":6},"4":{"n":5},"5":{"n":5.5},"6":{"n":3},"7":{"n":4.5},"8":{"n":3},"9":{"n":5.5},"10":{"n":1.5},"11":{"n":5.5},"12":{"n":3.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5}}},"c":35},{"i":2264,"n":"Obafemi","f":"Michael","p":"A","r":5,"s":{"s":"26","n":"6","a":"4.33","d":"0.24","Og":"1","Os":"37","On":"8","Oa":"4.63","Od":"0.74","Ap":"8","p":{"1":{"n":4,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"12":{"n":4.5,"s":1},"13":{"n":4.5},"14":{"n":4}}},"c":35},{"i":2484,"n":"Mohamed Elyounoussi","f":"","p":"M","r":7,"s":{"n":0,"Os":"27","On":"6","Oa":"4.5","Od":"0.71","Mp":"6","p":{"19":{"n":5,"s":1},"37":{"n":3}}},"c":35},{"i":2486,"n":"Vestergaard","f":"Jannik","p":"D","r":7,"s":{"g":"1","s":"53","n":"11","a":"4.82","d":"1.37","Og":"1","Os":"136","On":"26","Oa":"5.25","Od":"1.08","Dp":"26","p":{"19":{"n":5},"1":{"n":3},"2":{"n":5},"3":{"n":7},"4":{"n":6.5,"g":1},"5":{"n":6},"6":{"n":3},"7":{"n":4.5},"9":{"n":5.5},"10":{"n":3},"11":{"n":5.5},"12":{"n":4}}},"c":35},{"i":2488,"n":"Armstrong","f":"Stuart","p":"M","r":7,"s":{"s":"48","n":"10","a":"4.8","d":"0.46","Os":"128","On":"27","Oa":"4.76","Od":"0.6","Mp":"21","Ap":"6","p":{"19":{"n":4.5},"37":{"n":3.5},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5},"12":{"n":3.5},"13":{"n":5}}},"c":35},{"i":2543,"n":"Valery","f":"Yan","p":"D","r":8,"s":{"s":"31","n":"8","a":"3.88","d":"1.36","Og":"2","Os":"129","On":"29","Oa":"4.47","Od":"0.97","Mp":"17","Dp":"12","p":{"19":{"n":3.5},"37":{"n":3},"1":{"n":2.5},"2":{"n":5},"3":{"n":4.5},"8":{"n":3.5},"9":{"n":5},"10":{"n":1},"11":{"n":4.5},"14":{"n":5,"s":1}}},"c":35},{"i":2561,"n":"Jones","f":"Alfie","p":"M","r":1,"s":{"n":0},"c":35},{"i":2581,"n":"Flannigan","f":"Jake","p":"M","r":1,"s":{"n":0},"c":35},{"i":2582,"n":"Gallagher","f":"Sam","p":"A","r":3,"s":{"n":0,"Os":"17","On":"4","Oa":"4.38","Od":"0.22","Ap":"4"},"c":35},{"i":2974,"n":"Ramsay","f":"Kayne","p":"D","r":1,"s":{"n":0},"c":35},{"i":2982,"n":"Johnson","f":"Tyreke","p":"M","r":1,"s":{"n":0},"c":35},{"i":2983,"n":"Slattery","f":"Callum","p":"M","r":1,"s":{"n":0,"Os":"14","On":"3","Oa":"4.67","Od":"0.24","Mp":"3"},"c":35},{"i":2985,"n":"Barnes","f":"Marcus","p":"A","r":1,"s":{"n":0},"c":35},{"i":3643,"n":"Djenepo","f":"Moussa","p":"M","r":13,"s":{"g":"2","s":"50","n":"9","a":"5.56","d":"1.09","Ss":"31","Sn":"6","Sa":"5.17","Sd":"0.9","Og":"2","Os":"50","On":"9","Oa":"5.56","Od":"1.09","Mp":"8","Ap":"1","p":{"2":{"n":5,"s":1},"3":{"n":6.5,"g":1,"s":1},"5":{"n":7.5,"g":1},"11":{"n":5,"s":1},"12":{"n":4},"13":{"n":5,"s":1},"14":{"n":7},"15":{"n":5},"16":{"n":5}}},"c":35},{"i":3668,"n":"Adams","f":"Che","p":"A","r":8,"s":{"s":"48","n":"11","a":"4.36","d":"0.91","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Os":"48","On":"11","Oa":"4.36","Od":"0.91","Ap":"11","p":{"1":{"n":2.5},"2":{"n":3.5},"3":{"n":5},"4":{"n":4},"5":{"n":6},"6":{"n":5.5},"8":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"15":{"n":4,"s":1},"16":{"n":4.5,"s":1}}},"c":35},{"i":5436,"n":"Vokins","f":"Jake","p":"D","r":1,"s":{"n":0},"c":35},{"i":5437,"n":"Smallbone","f":"William","p":"A","r":1,"s":{"n":0},"c":35},{"i":6148,"n":"N'Lundulu","f":"Daniel","p":"A","r":1,"s":{"n":0},"c":35},{"i":6149,"n":"Danso","f":"Kevin","p":"D","r":5,"s":{"s":"27","n":"6","a":"4.58","d":"0.79","Os":"27","On":"6","Oa":"4.58","Od":"0.79","Mp":"3","Dp":"3","p":{"3":{"n":5},"4":{"n":4.5},"6":{"n":3},"9":{"n":4.5,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1}}},"c":35},{"i":597,"n":"Defoe","f":"Jermain","p":"A","r":6,"s":{"n":0},"c":36},{"i":651,"n":"King","f":"Joshua","p":"A","r":15,"s":{"g":"3","s":"63","n":"12","a":"5.29","d":"1.05","Og":"10","Os":"172","On":"34","Oa":"5.06","Od":"1.25","Mp":"6","Ap":"28","p":{"24":{"n":9,"g":2},"1":{"n":5.5},"2":{"n":5,"g":1},"3":{"n":4.5},"4":{"n":4},"5":{"n":7.5},"6":{"n":5},"7":{"n":7,"g":1},"8":{"n":5.5},"9":{"n":4.5,"s":1},"10":{"n":5},"11":{"n":6,"g":1},"12":{"n":4}}},"c":36},{"i":729,"n":"Daniels","f":"Charlie","p":"D","r":1,"s":{"s":"10","n":"2","a":"5.25","d":"0.75","Og":"1","Os":"64","On":"14","Oa":"4.57","Od":"1.1","Mp":"1","Dp":"13","p":{"24":{"n":6,"g":1,"s":1},"2":{"n":6},"3":{"n":4.5}}},"c":36},{"i":736,"n":"Stanislas","f":"Junior","p":"M","r":7,"s":{"n":0,"Og":"1","Os":"63","On":"13","Oa":"4.88","Od":"1.11","Mp":"9","Dp":"2","Ap":"2","p":{"24":{"n":7.5}}},"c":36},{"i":744,"n":"Fraser","f":"Ryan","p":"M","r":18,"s":{"g":"1","s":"82","n":"15","a":"5.5","d":"0.63","Ss":"48","Sn":"9","Sa":"5.39","Sd":"0.57","Og":"4","Os":"203","On":"37","Oa":"5.49","Od":"1.1","Mp":"34","Ap":"3","p":{"24":{"n":6},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5},"4":{"n":6},"5":{"n":7,"g":1,"s":1},"6":{"n":5,"s":1},"8":{"n":5.5,"s":1},"9":{"n":6},"10":{"n":6},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":6},"14":{"n":4.5},"15":{"n":5,"s":1},"16":{"n":4.5}}},"c":36},{"i":754,"n":"Arter","f":"Harry","p":"M","r":6,"s":{"n":0,"Os":"59","On":"12","Oa":"4.96","Od":"1.09","Mp":"11","Ap":"1"},"c":36},{"i":784,"n":"Steve Cook","f":"","p":"D","r":10,"s":{"g":"1","s":"74","n":"14","a":"5.32","d":"0.84","Og":"1","Os":"147","On":"29","Oa":"5.07","Od":"1.11","Dp":"29","p":{"24":{"n":7},"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":6},"6":{"n":6},"7":{"n":4.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":6},"11":{"n":6},"12":{"n":4},"13":{"n":6.5,"g":1},"14":{"n":4}}},"c":36},{"i":809,"n":"Callum Wilson","f":"","p":"A","r":21,"s":{"g":"5","s":"80","n":"16","a":"5.03","d":"1.22","Sg":"5","Ss":"80","Sn":"16","Sa":"5.03","Sd":"1.22","Og":"11","Os":"157","On":"31","Oa":"5.06","Od":"1.48","Ap":"31","p":{"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":6,"g":1},"5":{"n":7.5,"g":2},"6":{"n":7,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5},"9":{"n":4},"10":{"n":4},"11":{"n":5},"12":{"n":4},"13":{"n":4.5},"14":{"n":4},"15":{"n":3.5},"16":{"n":3.5}}},"c":36},{"i":827,"n":"Francis","f":"Simon","p":"D","r":8,"s":{"s":"27","n":"6","a":"4.5","d":"0.91","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.75","Os":"36","On":"8","Oa":"4.56","Od":"0.88","Dp":"8","p":{"7":{"n":5,"s":1},"8":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":3},"15":{"n":5,"s":1},"16":{"n":3.5}}},"c":36},{"i":832,"n":"Smith","f":"Brad","p":"D","r":1,"s":{"n":0},"c":36},{"i":840,"n":"Ak\u00e9","f":"Nathan","p":"D","r":18,"s":{"g":"1","s":"85","n":"16","a":"5.34","d":"0.9","Sg":"1","Ss":"85","Sn":"16","Sa":"5.34","Sd":"0.9","Og":"4","Os":"199","On":"38","Oa":"5.25","Od":"1.1","Mp":"2","Dp":"36","p":{"24":{"n":7},"1":{"n":5.5},"2":{"n":5.5},"3":{"n":5},"4":{"n":4},"5":{"n":6},"6":{"n":7.5,"g":1},"7":{"n":5.5},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":4},"15":{"n":4.5},"16":{"n":5.5}}},"c":36},{"i":867,"n":"Surman","f":"Andrew","p":"M","r":5,"s":{"s":"15","n":"3","a":"5","Os":"65","On":"13","Oa":"5","Od":"0.98","Mp":"13","p":{"24":{"n":7},"2":{"n":5,"s":1},"4":{"n":5,"s":1},"6":{"n":5,"s":1}}},"c":36},{"i":891,"n":"Smith","f":"Adam","p":"D","r":8,"s":{"s":"48","n":"10","a":"4.8","d":"0.68","Os":"109","On":"23","Oa":"4.76","Od":"0.86","Mp":"4","Dp":"19","p":{"24":{"n":5.5},"1":{"n":4.5},"2":{"n":5},"3":{"n":4},"4":{"n":4.5},"9":{"n":5},"10":{"n":5.5},"11":{"n":6},"12":{"n":4},"13":{"n":4},"15":{"n":5.5}}},"c":36},{"i":892,"n":"Boruc","f":"Artur","p":"G","r":7,"s":{"n":0,"Os":"67","On":"12","Oa":"5.58","Od":"1.17","Gp":"12","p":{"24":{"n":7.5}}},"c":36},{"i":916,"n":"Ibe","f":"Jordon","p":"M","r":4,"s":{"s":"10","n":"2","a":"5","Og":"1","Os":"74","On":"16","Oa":"4.66","Od":"0.7","Mp":"15","Ap":"1","p":{"24":{"n":5.5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1}}},"c":36},{"i":950,"n":"Gosling","f":"Dan","p":"M","r":5,"s":{"s":"14","n":"3","a":"4.67","d":"0.24","Ss":"5","Sn":"1","Sa":"5","Og":"2","Os":"82","On":"16","Oa":"5.13","Od":"1.1","Mp":"16","p":{"24":{"n":6.5},"13":{"n":4.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":5,"s":1}}},"c":36},{"i":985,"n":"Pugh","f":"Marc","p":"M","r":1,"s":{"n":0},"c":36},{"i":1092,"n":"Harry Wilson","f":"","p":"M","r":22,"s":{"g":"6","s":"80","n":"14","a":"5.75","d":"1.08","Og":"6","Os":"80","On":"14","Oa":"5.75","Od":"1.08","Mp":"13","Ap":"1","p":{"2":{"n":7,"g":1},"3":{"n":7,"g":1,"s":1},"4":{"n":4},"5":{"n":5},"6":{"n":6.5,"g":1},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5.5,"s":1},"11":{"n":5.5},"12":{"n":6.5,"g":1},"13":{"n":4.5},"14":{"n":8,"g":2,"s":1},"15":{"n":4.5}}},"c":36},{"i":1117,"n":"Simpson","f":"Jack","p":"D","r":6,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Oao":"1","Os":"31","On":"7","Oa":"4.5","Od":"1.07","Dp":"7","p":{"16":{"n":4.5,"s":1}}},"c":36},{"i":1119,"n":"Ramsdale","f":"Aaron","p":"G","r":18,"s":{"s":"88","n":"16","a":"5.5","d":"1.02","Ss":"88","Sn":"16","Sa":"5.5","Sd":"1.02","Os":"88","On":"16","Oa":"5.5","Od":"1.02","Gp":"16","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":4},"4":{"n":4},"5":{"n":6},"6":{"n":7},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":6.5},"11":{"n":7},"12":{"n":6},"13":{"n":6},"14":{"n":4},"15":{"n":4.5},"16":{"n":6}}},"c":36},{"i":1120,"n":"Solanke","f":"Dominic","p":"A","r":9,"s":{"s":"60","n":"14","a":"4.29","d":"0.67","Ss":"12","Sn":"3","Sa":"4","Sd":"0.41","Os":"108","On":"24","Oa":"4.52","Od":"0.67","Ap":"24","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":4},"7":{"n":4},"8":{"n":3},"9":{"n":3.5},"10":{"n":4,"s":1},"12":{"n":4.5,"s":1},"14":{"n":4.5},"15":{"n":4},"16":{"n":3.5}}},"c":36},{"i":1123,"n":"Jordan","f":"Corey","p":"D","r":1,"s":{"n":0},"c":36},{"i":1147,"n":"Begovic","f":"Asmir","p":"G","r":10,"s":{"n":0,"Os":"33","On":"8","Oa":"4.13","Od":"1.49","Gp":"8"},"c":36},{"i":1359,"n":"Lewis Cook","f":"","p":"M","r":9,"s":{"s":"50","n":"10","a":"5.05","d":"0.15","Ss":"30","Sn":"6","Sa":"5.08","Sd":"0.19","Os":"50","On":"10","Oa":"5.05","Od":"0.15","Mp":"10","p":{"5":{"n":5},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"9":{"n":5},"11":{"n":5,"s":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":5},"15":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":36},{"i":1494,"n":"Billing","f":"Philip","p":"M","r":11,"s":{"s":"77","n":"15","a":"5.13","d":"0.64","Ss":"9","Sn":"2","Sa":"4.75","Sd":"0.25","Og":"1","Os":"139","On":"27","Oa":"5.17","Od":"0.77","Mp":"27","p":{"1":{"n":5.5},"2":{"n":4.5},"3":{"n":5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":6},"12":{"n":5},"13":{"n":4},"15":{"n":5},"16":{"n":4.5}}},"c":36},{"i":1738,"n":"Lerma","f":"Jefferson","p":"M","r":14,"s":{"s":"74","n":"14","a":"5.29","d":"0.56","Ss":"20","Sn":"4","Sa":"5","Sd":"0.35","Og":"1","Os":"170","On":"32","Oa":"5.31","Od":"0.77","Mp":"32","p":{"1":{"n":5.5},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4.5,"s":1},"6":{"n":6},"7":{"n":6},"8":{"n":5.5},"10":{"n":6},"11":{"n":6},"13":{"n":5,"s":1},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":5}}},"c":36},{"i":1747,"n":"Rico","f":"Diego","p":"D","r":11,"s":{"s":"64","n":"13","a":"4.96","d":"0.84","Ss":"59","Sn":"12","Sa":"4.96","Sd":"0.88","Os":"100","On":"21","Oa":"4.76","Od":"0.83","Mp":"3","Dp":"18","p":{"1":{"n":5},"5":{"n":6},"6":{"n":6.5},"7":{"n":4.5},"8":{"n":4},"9":{"n":5},"10":{"n":5},"11":{"n":6.5},"12":{"n":4},"13":{"n":4.5},"14":{"n":4},"15":{"n":5},"16":{"n":4.5}}},"c":36},{"i":2119,"n":"Butcher","f":"Matt","p":"A","r":1,"s":{"n":0},"c":36},{"i":2265,"n":"Taylor","f":"Kyle","p":"M","r":1,"s":{"n":0},"c":36},{"i":2595,"n":"Brooks","f":"David","p":"M","r":4,"s":{"n":0,"Og":"4","Os":"78","On":"15","Oa":"5.23","Od":"1.55","Mp":"12","Ap":"3","p":{"24":{"n":7.5,"g":1}}},"c":36},{"i":2843,"n":"Ofoborh","f":"Nathan","p":"A","r":1,"s":{"n":0},"c":36},{"i":2849,"n":"Travers","f":"Mark","p":"G","r":1,"s":{"n":0,"Os":"11","On":"2","Oa":"5.5","Od":"2","Gp":"2"},"c":36},{"i":2853,"n":"Dobre","f":"Mihai-Alexandru","p":"M","r":1,"s":{"n":0},"c":36},{"i":3223,"n":"Mepham","f":"Chris","p":"D","r":9,"s":{"g":"1","s":"27","n":"6","a":"4.5","d":"0.91","Ss":"8","Sn":"2","Sa":"4.25","Sd":"0.25","Og":"1","Os":"88","On":"19","Oa":"4.66","Od":"0.87","Dp":"19","p":{"24":{"n":5,"s":1},"1":{"n":6,"g":1},"3":{"n":4.5},"4":{"n":3},"5":{"n":5,"s":1},"15":{"n":4.5},"16":{"n":4}}},"c":36},{"i":3500,"n":"Surridge","f":"Sam","p":"A","r":2,"s":{"n":0,"Os":"9","On":"2","Oa":"4.5","Ap":"2"},"c":36},{"i":3646,"n":"Kelly","f":"Lloyd","p":"D","r":1,"s":{"n":0},"c":36},{"i":3693,"n":"Stacey","f":"Jack","p":"D","r":4,"s":{"s":"24","n":"5","a":"4.9","d":"0.49","Os":"24","On":"5","Oa":"4.9","Od":"0.49","Dp":"5","p":{"5":{"n":5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5},"14":{"n":4}}},"c":36},{"i":5987,"n":"Sherring","f":"Sam","p":"D","r":1,"s":{"n":0},"c":36},{"i":5989,"n":"Zemura","f":"Jordan","p":"D","r":1,"s":{"n":0},"c":36},{"i":5990,"n":"Dennis","f":"William","p":"G","r":1,"s":{"n":0},"c":36},{"i":5994,"n":"Danjuma Groeneveld","f":"Arnaut","p":"M","r":10,"s":{"s":"43","n":"9","a":"4.83","d":"0.53","Ss":"24","Sn":"5","Sa":"4.8","Sd":"0.68","Os":"43","On":"9","Oa":"4.83","Od":"0.53","Mp":"4","Ap":"5","p":{"7":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":4.5},"12":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":6},"15":{"n":4.5},"16":{"n":4}}},"c":36},{"i":6147,"n":"Kilkenny","f":"Gavin","p":"M","r":1,"s":{"n":0},"c":36},{"i":2,"n":"Lacazette","f":"Alexandre","p":"A","r":30,"s":{"g":"5","s":"54","n":"10","a":"5.4","d":"1.14","Og":"12","Os":"162","On":"30","Oa":"5.42","Od":"1.07","Ap":"30","p":{"25":{"n":4},"2":{"n":6,"g":1},"3":{"n":4,"s":1},"4":{"n":7,"g":1},"9":{"n":4.5,"s":1},"10":{"n":6},"11":{"n":6},"12":{"n":4},"13":{"n":7,"g":2},"14":{"n":4},"15":{"n":5.5,"g":1}}},"c":39},{"i":211,"n":"P\u00e9p\u00e9","f":"Nicolas","p":"A","r":20,"s":{"g":"2","s":"75","n":"14","a":"5.36","d":"0.91","Sg":"1","Ss":"12","Sn":"2","Sa":"6","Sd":"1","Og":"13","Os":"200","On":"35","Oa":"5.71","Od":"1.36","Mp":"24","Ap":"11","p":{"1":{"n":4.5,"s":1},"2":{"n":5,"s":1},"3":{"n":5},"4":{"n":6.5},"5":{"n":4.5},"6":{"n":7,"g":1},"7":{"n":4},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":6},"12":{"n":5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":5,"s":1},"16":{"n":7,"g":1}}},"c":39},{"i":572,"n":"Guendouzi","f":"Matteo","p":"M","r":17,"s":{"s":"82","n":"15","a":"5.5","d":"0.86","Ss":"5","Sn":"1","Sa":"5","Os":"183","On":"35","Oa":"5.24","Od":"0.81","Mp":"35","p":{"25":{"n":5.5},"1":{"n":5.5},"2":{"n":6},"3":{"n":5},"4":{"n":7},"5":{"n":4},"6":{"n":6.5},"7":{"n":6},"8":{"n":6.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":4.5},"12":{"n":4.5},"13":{"n":6.5},"14":{"n":5},"16":{"n":5,"s":1}}},"c":39},{"i":591,"n":"\u00d6zil","f":"Mesut","p":"M","r":13,"s":{"s":"37","n":"7","a":"5.36","d":"0.35","Ss":"32","Sn":"6","Sa":"5.42","Sd":"0.34","Og":"2","Os":"107","On":"21","Oa":"5.1","Od":"0.93","Mp":"14","Ap":"7","p":{"5":{"n":5},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5},"14":{"n":6},"15":{"n":5},"16":{"n":5.5}}},"c":39},{"i":609,"n":"Cech","f":"Petr","p":"G","r":7,"s":{"n":0},"c":39},{"i":623,"n":"David Luiz","f":"","p":"D","r":18,"s":{"g":"2","s":"68","n":"14","a":"4.89","d":"1.06","Og":"4","Os":"182","On":"35","Oa":"5.21","Od":"1.35","Dp":"35","p":{"2":{"n":5.5},"3":{"n":3},"4":{"n":5.5},"5":{"n":4},"6":{"n":5},"7":{"n":5.5},"8":{"n":7,"g":1},"9":{"n":4.5},"10":{"n":6.5,"g":1},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":4.5},"15":{"n":3.5}}},"c":39},{"i":665,"n":"Mustafi","f":"Shkodran","p":"D","r":5,"s":{"s":"5","n":"1","a":"5","Os":"75","On":"16","Oa":"4.72","Od":"1.33","Dp":"16","p":{"25":{"n":3.5},"14":{"n":5}}},"c":39},{"i":728,"n":"Xhaka","f":"Granit","p":"M","r":10,"s":{"s":"60","n":"12","a":"5","d":"0.54","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.47","Og":"2","Os":"134","On":"26","Oa":"5.17","Od":"1.05","Mp":"25","Dp":"1","p":{"1":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":4.5}}},"c":39},{"i":795,"n":"Beller\u00edn","f":"H\u00e9ctor","p":"D","r":10,"s":{"s":"10","n":"3","a":"3.33","d":"0.24","Os":"26","On":"6","Oa":"4.42","Od":"1.51","Mp":"3","Dp":"3","p":{"12":{"n":3.5},"13":{"n":3.5},"15":{"n":3}}},"c":39},{"i":860,"n":"Chambers","f":"Calum","p":"D","r":10,"s":{"g":"1","s":"52","n":"11","a":"4.77","d":"0.99","Ss":"6","Sn":"1","Sa":"6","Og":"3","Os":"160","On":"32","Oa":"5.02","Od":"1.18","Mp":"18","Dp":"14","p":{"1":{"n":5.5},"6":{"n":7,"g":1,"s":1},"7":{"n":5},"8":{"n":5},"9":{"n":4},"10":{"n":4},"11":{"n":4},"12":{"n":4},"13":{"n":4},"14":{"n":4},"16":{"n":6}}},"c":39},{"i":917,"n":"Mohamed Elneny","f":"","p":"M","r":7,"s":{"n":0,"Os":"39","On":"8","Oa":"4.88","Od":"0.82","Mp":"8"},"c":39},{"i":983,"n":"Holding","f":"Rob","p":"D","r":7,"s":{"s":"3","n":"1","a":"3.5","Os":"3","On":"1","Oa":"3.5","Dp":"1","p":{"12":{"n":3.5}}},"c":39},{"i":1090,"n":"Jenkinson","f":"Carl","p":"D","r":3,"s":{"n":0,"Os":"13","On":"3","Oa":"4.5","Od":"0.71","Mp":"2","Dp":"1"},"c":39},{"i":1124,"n":"Maitland-Niles","f":"Ainsley","p":"M","r":8,"s":{"s":"34","n":"7","a":"4.86","d":"1.19","Ss":"6","Sn":"1","Sa":"6","Og":"1","Os":"104","On":"22","Oa":"4.73","Od":"0.97","Mp":"12","Dp":"10","p":{"1":{"n":6.5},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":5.5},"5":{"n":5},"6":{"n":3},"16":{"n":6}}},"c":39},{"i":1289,"n":"Kolasinac","f":"Sead","p":"D","r":12,"s":{"s":"66","n":"13","a":"5.08","d":"0.55","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.85","Oao":"1","Os":"153","On":"31","Oa":"4.94","Od":"0.9","Mp":"10","Dp":"21","p":{"25":{"n":4},"2":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":5.5},"6":{"n":5},"7":{"n":5},"8":{"n":6},"9":{"n":5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"12":{"n":4.5},"14":{"n":4.5},"15":{"n":4},"16":{"n":6,"s":1}}},"c":39},{"i":1346,"n":"Willock","f":"Joseph","p":"M","r":7,"s":{"s":"57","n":"12","a":"4.75","d":"0.66","Os":"66","On":"14","Oa":"4.71","Od":"0.62","Mp":"14","p":{"1":{"n":5},"2":{"n":5},"3":{"n":4},"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5,"s":1},"8":{"n":5,"s":1},"9":{"n":3.5},"12":{"n":5,"s":1},"13":{"n":5.5,"s":1},"14":{"n":5},"15":{"n":3.5}}},"c":39},{"i":1389,"n":"Nelson","f":"Reiss","p":"A","r":4,"s":{"s":"23","n":"5","a":"4.7","d":"0.51","Ss":"4","Sn":"1","Sa":"4.5","Os":"23","On":"5","Oa":"4.7","Od":"0.51","Mp":"2","Ap":"3","p":{"1":{"n":5.5},"2":{"n":4},"5":{"n":4.5,"s":1},"7":{"n":5,"s":1},"16":{"n":4.5,"s":1}}},"c":39},{"i":1702,"n":"Dani Ceballos","f":"","p":"M","r":14,"s":{"s":"58","n":"11","a":"5.27","d":"0.72","Og":"2","Os":"113","On":"21","Oa":"5.4","Od":"0.89","Mp":"20","Ap":"1","p":{"1":{"n":5,"s":1},"2":{"n":7},"3":{"n":4},"4":{"n":6,"s":1},"5":{"n":5},"6":{"n":5},"7":{"n":5,"s":1},"8":{"n":5.5},"9":{"n":5,"s":1},"10":{"n":5.5},"11":{"n":5}}},"c":39},{"i":1817,"n":"Campbell","f":"Joel","p":"A","r":1,"s":{"n":0},"c":39},{"i":2013,"n":"Mart\u00ednez","f":"Emiliano","p":"G","r":7,"s":{"n":0},"c":39},{"i":2064,"n":"Macey","f":"Matt","p":"G","r":1,"s":{"n":0},"c":39},{"i":2066,"n":"Eddie Nketiah","f":"","p":"A","r":1,"s":{"n":0,"Og":"1","Os":"19","On":"4","Oa":"4.88","Od":"0.74","Ap":"4"},"c":39},{"i":2071,"n":"Gilmour","f":"Charlie","p":"M","r":1,"s":{"n":0},"c":39},{"i":2123,"n":"Iliev","f":"Dejan","p":"G","r":1,"s":{"n":0},"c":39},{"i":2125,"n":"Osei-Tutu","f":"Jordi","p":"D","r":1,"s":{"n":0},"c":39},{"i":2203,"n":"Mavropanos","f":"Konstantinos","p":"D","r":3,"s":{"n":0,"Os":"19","On":"4","Oa":"4.88","Od":"0.54","Dp":"4","p":{"25":{"n":5,"s":1}}},"c":39},{"i":2302,"n":"Aubameyang","f":"Pierre-Emerick","p":"A","r":49,"s":{"g":"11","s":"93","n":"16","a":"5.84","d":"1.11","Sg":"11","Ss":"93","Sn":"16","Sa":"5.84","Sd":"1.11","Og":"23","Os":"202","On":"36","Oa":"5.61","Od":"1.21","Mp":"3","Ap":"33","p":{"25":{"n":4.5},"1":{"n":6,"g":1},"2":{"n":6,"g":1},"3":{"n":5},"4":{"n":7,"g":1},"5":{"n":7.5,"g":2},"6":{"n":6,"g":1},"7":{"n":6.5,"g":1},"8":{"n":5},"9":{"n":4.5},"10":{"n":4},"11":{"n":6,"g":1},"12":{"n":4.5},"13":{"n":5.5},"14":{"n":8,"g":2},"15":{"n":5},"16":{"n":7,"g":1}}},"c":39},{"i":2500,"n":"Leno","f":"Bernd","p":"G","r":24,"s":{"s":"95","n":"16","a":"5.97","d":"0.7","Ss":"95","Sn":"16","Sa":"5.97","Sd":"0.7","Os":"216","On":"38","Oa":"5.7","Od":"0.97","Gp":"38","p":{"25":{"n":7},"1":{"n":7},"2":{"n":5.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":6.5},"6":{"n":6.5},"7":{"n":5.5},"8":{"n":6},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":7},"12":{"n":6},"13":{"n":6},"14":{"n":7},"15":{"n":6},"16":{"n":6}}},"c":39},{"i":2531,"n":"Sokratis","f":"","p":"D","r":15,"s":{"g":"1","s":"71","n":"14","a":"5.07","d":"0.68","Ss":"10","Sn":"2","Sa":"5","Sd":"0.5","Og":"2","Os":"150","On":"29","Oa":"5.17","Od":"0.95","Dp":"29","p":{"1":{"n":6},"2":{"n":6},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":5.5},"7":{"n":5},"8":{"n":5},"9":{"n":4},"10":{"n":6,"g":1},"11":{"n":5.5},"13":{"n":4.5},"15":{"n":4.5},"16":{"n":5.5}}},"c":39},{"i":2535,"n":"Lichtsteiner","f":"Stephan","p":"D","r":5,"s":{"n":0,"Os":"39","On":"9","Oa":"4.33","Od":"0.71","Dp":"9","p":{"25":{"n":3.5}}},"c":39},{"i":2549,"n":"Torreira","f":"Lucas","p":"M","r":14,"s":{"g":"1","s":"69","n":"13","a":"5.31","d":"0.82","Ss":"32","Sn":"6","Sa":"5.33","Sd":"0.8","Og":"1","Os":"157","On":"31","Oa":"5.08","Od":"0.77","Mp":"31","p":{"25":{"n":5},"2":{"n":5,"s":1},"3":{"n":7,"g":1,"s":1},"4":{"n":6},"5":{"n":5,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4.5},"8":{"n":5,"s":1},"11":{"n":6},"12":{"n":4},"13":{"n":5.5},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":6.5}}},"c":39},{"i":2887,"n":"Smith Rowe","f":"Emile","p":"M","r":1,"s":{"n":0},"c":39},{"i":2926,"n":"John-Jules","f":"Tyreece","p":"A","r":1,"s":{"n":0},"c":39},{"i":2927,"n":"Saka","f":"Bukayo","p":"A","r":6,"s":{"s":"35","n":"7","a":"5","d":"0.76","Os":"40","On":"8","Oa":"5","Od":"0.71","Mp":"3","Dp":"4","Ap":"1","p":{"6":{"n":5.5},"7":{"n":6.5},"8":{"n":5},"9":{"n":5},"10":{"n":4.5,"s":1},"11":{"n":4,"s":1},"14":{"n":4.5,"s":1}}},"c":39},{"i":2931,"n":"Medley","f":"Zech","p":"D","r":1,"s":{"n":0},"c":39},{"i":2934,"n":"Pleguezuelo","f":"Julio","p":"D","r":1,"s":{"n":0},"c":39},{"i":5416,"n":"Gabriel Martinelli","f":"","p":"M","r":9,"s":{"g":"1","s":"42","n":"8","a":"5.25","d":"0.66","Sg":"1","Ss":"22","Sn":"4","Sa":"5.5","Sd":"0.87","Og":"1","Os":"42","On":"8","Oa":"5.25","Od":"0.66","Mp":"8","p":{"1":{"n":5,"s":1},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"11":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":5,"s":1},"16":{"n":7,"g":1}}},"c":39},{"i":5428,"n":"Thompson","f":"Dominic","p":"D","r":1,"s":{"n":0},"c":39},{"i":5429,"n":"Olayinka","f":"James","p":"M","r":1,"s":{"n":0},"c":39},{"i":5440,"n":"Burton","f":"Robbie","p":"M","r":1,"s":{"n":0},"c":39},{"i":6122,"n":"Tierney","f":"Kieran","p":"D","r":10,"s":{"s":"24","n":"5","a":"4.9","d":"0.49","Ss":"10","Sn":"2","Sa":"5","Os":"24","On":"5","Oa":"4.9","Od":"0.49","Mp":"1","Dp":"4","p":{"10":{"n":5},"11":{"n":5.5},"13":{"n":4},"15":{"n":5,"s":1},"16":{"n":5}}},"c":39},{"i":14,"n":"Mendy","f":"Benjamin","p":"D","r":11,"s":{"s":"23","n":"5","a":"4.7","d":"0.75","Os":"28","On":"6","Oa":"4.75","Od":"0.69","Dp":"6","p":{"6":{"n":4},"9":{"n":5},"10":{"n":6},"13":{"n":4.5},"14":{"n":4}}},"c":40},{"i":25,"n":"Bernardo Silva","f":"","p":"M","r":33,"s":{"g":"5","s":"84","n":"14","a":"6","d":"1.27","Ss":"15","Sn":"3","Sa":"5.17","Sd":"1.31","Og":"8","Os":"202","On":"35","Oa":"5.79","Od":"1","Mp":"19","Ap":"16","p":{"25":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":6.5,"g":1,"s":1},"5":{"n":6.5},"6":{"n":9,"g":3},"7":{"n":5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":7,"g":1},"14":{"n":4.5,"s":1},"15":{"n":7},"16":{"n":4}}},"c":40},{"i":588,"n":"Ag\u00fcero","f":"Sergio","p":"A","r":40,"s":{"g":"9","s":"67","n":"12","a":"5.63","d":"1.31","Og":"22","Os":"183","On":"32","Oa":"5.72","Od":"1.23","Ap":"32","p":{"25":{"n":8.5,"g":3},"1":{"n":5,"g":1,"s":1},"2":{"n":6,"g":1},"3":{"n":8,"g":2},"4":{"n":8,"g":2},"5":{"n":5.5,"g":1},"6":{"n":6.5,"g":1},"7":{"n":5.5,"s":1},"8":{"n":4},"10":{"n":4.5,"s":1},"11":{"n":6,"g":1},"12":{"n":4},"13":{"n":4.5}}},"c":40},{"i":593,"n":"De Bruyne","f":"Kevin","p":"M","r":34,"s":{"g":"4","s":"98","n":"15","a":"6.57","d":"1.12","Sg":"2","Ss":"50","Sn":"8","Sa":"6.25","Sd":"0.94","Og":"6","Os":"186","On":"31","Oa":"6.02","Od":"1.17","Mp":"31","p":{"25":{"n":5},"1":{"n":7.5},"2":{"n":7.5},"3":{"n":5.5},"4":{"n":8,"g":1},"5":{"n":5,"s":1},"6":{"n":8.5,"g":1},"7":{"n":6.5},"9":{"n":5},"10":{"n":7},"11":{"n":6.5},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":8,"g":1},"15":{"n":6},"16":{"n":6}}},"c":40},{"i":594,"n":"Sterling","f":"Raheem","p":"A","r":43,"s":{"g":"8","s":"87","n":"15","a":"5.83","d":"1.16","Sg":"3","Ss":"54","Sn":"10","Sa":"5.4","Sd":"0.89","Og":"17","Os":"205","On":"36","Oa":"5.69","Od":"1.34","Mp":"4","Ap":"32","p":{"25":{"n":7},"1":{"n":8.5,"g":3},"2":{"n":7,"g":1},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":6},"7":{"n":6,"g":1},"8":{"n":4.5},"9":{"n":6.5},"10":{"n":7,"g":1},"11":{"n":4},"12":{"n":5},"13":{"n":5},"14":{"n":6,"g":1},"15":{"n":5},"16":{"n":5}}},"c":40},{"i":599,"n":"David Silva","f":"","p":"M","r":27,"s":{"g":"3","s":"85","n":"15","a":"5.7","d":"1.41","Ss":"21","Sn":"4","Sa":"5.38","Sd":"0.65","Og":"4","Os":"191","On":"34","Oa":"5.62","Od":"1.11","Mp":"34","p":{"25":{"n":5.5},"1":{"n":5.5},"2":{"n":4.5,"s":1},"3":{"n":8},"4":{"n":7},"5":{"n":3.5},"6":{"n":8,"g":1},"7":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":7,"g":1},"10":{"n":7,"g":1},"11":{"n":5},"13":{"n":5},"14":{"n":5},"15":{"n":6.5},"16":{"n":5}}},"c":40},{"i":603,"n":"Mahrez","f":"Riyad","p":"M","r":15,"s":{"g":"4","s":"71","n":"12","a":"5.96","d":"1.53","Sg":"2","Ss":"23","Sn":"4","Sa":"5.88","Sd":"0.82","Og":"6","Os":"135","On":"24","Oa":"5.63","Od":"1.38","Mp":"2","Ap":"22","p":{"25":{"n":4.5,"s":1},"1":{"n":8},"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":7},"5":{"n":4.5,"s":1},"6":{"n":8,"g":1},"7":{"n":8,"g":1},"8":{"n":4},"13":{"n":6.5,"g":1},"14":{"n":4.5},"15":{"n":6.5,"g":1,"s":1},"16":{"n":6,"s":1}}},"c":40},{"i":639,"n":"Fernandinho","f":"","p":"M","r":17,"s":{"s":"64","n":"12","a":"5.38","d":"0.82","Ss":"58","Sn":"11","Sa":"5.27","Sd":"0.78","Os":"135","On":"25","Oa":"5.42","Od":"0.88","Mp":"13","Dp":"12","p":{"25":{"n":5.5},"4":{"n":6.5,"s":1},"6":{"n":6.5},"7":{"n":6},"8":{"n":4},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":6},"14":{"n":4},"15":{"n":5.5},"16":{"n":5}}},"c":40},{"i":654,"n":"Stones","f":"John","p":"D","r":10,"s":{"s":"47","n":"9","a":"5.22","d":"0.92","Ss":"4","Sn":"1","Sa":"4.5","Os":"118","On":"22","Oa":"5.36","Od":"0.8","Mp":"1","Dp":"21","p":{"1":{"n":6.5},"5":{"n":4},"9":{"n":5,"s":1},"10":{"n":6.5},"11":{"n":6},"12":{"n":4},"13":{"n":5},"14":{"n":5.5},"16":{"n":4.5}}},"c":40},{"i":662,"n":"San\u00e9","f":"Leroy","p":"A","r":7,"s":{"n":0,"Og":"4","Os":"89","On":"17","Oa":"5.26","Od":"1.23","Mp":"1","Ap":"16"},"c":40},{"i":674,"n":"Otamendi","f":"Nicol\u00e1s","p":"D","r":15,"s":{"g":"2","s":"50","n":"10","a":"5","d":"0.95","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"2","Os":"115","On":"22","Oa":"5.25","Od":"0.88","Dp":"22","p":{"25":{"n":6},"2":{"n":5},"3":{"n":5},"4":{"n":5.5},"5":{"n":3.5},"6":{"n":7,"g":1},"7":{"n":4.5},"8":{"n":4},"11":{"n":5,"s":1},"15":{"n":4.5},"16":{"n":6,"g":1,"s":1}}},"c":40},{"i":678,"n":"Walker","f":"Kyle","p":"D","r":18,"s":{"g":"1","s":"65","n":"13","a":"5","d":"1.11","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.62","Og":"1","Os":"171","On":"33","Oa":"5.18","Od":"0.89","Dp":"33","p":{"25":{"n":5},"1":{"n":7},"2":{"n":5},"3":{"n":4.5},"4":{"n":5},"5":{"n":4},"6":{"n":5},"7":{"n":5},"8":{"n":4},"11":{"n":7.5,"g":1},"12":{"n":3.5},"14":{"n":4},"15":{"n":5.5},"16":{"n":5}}},"c":40},{"i":863,"n":"Bravo","f":"Claudio","p":"G","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"12":{"n":4}}},"c":40},{"i":866,"n":"G\u00fcndogan","f":"Ilkay","p":"M","r":21,"s":{"g":"1","s":"75","n":"14","a":"5.36","d":"0.87","Ss":"5","Sn":"1","Sa":"5","Og":"4","Os":"189","On":"34","Oa":"5.56","Od":"0.86","Mp":"34","p":{"25":{"n":5.5},"1":{"n":5,"s":1},"2":{"n":5.5},"3":{"n":5},"4":{"n":4.5,"s":1},"5":{"n":4},"7":{"n":5.5},"8":{"n":5},"9":{"n":7},"10":{"n":7.5,"g":1},"11":{"n":5.5},"12":{"n":5},"13":{"n":5.5,"s":1},"14":{"n":5},"16":{"n":5,"s":1}}},"c":40},{"i":931,"n":"Kompany","f":"Vincent","p":"D","r":14,"s":{"n":0,"Og":"1","Os":"57","On":"10","Oa":"5.7","Od":"0.51","Dp":"10"},"c":40},{"i":966,"n":"Gabriel Jesus","f":"","p":"A","r":19,"s":{"g":"5","s":"70","n":"13","a":"5.42","d":"1.27","Sg":"4","Ss":"53","Sn":"10","Sa":"5.35","Sd":"1.4","Og":"11","Os":"151","On":"29","Oa":"5.21","Od":"1.19","Ap":"29","p":{"25":{"n":4.5,"s":1},"1":{"n":6.5,"g":1},"2":{"n":5,"s":1},"5":{"n":5.5,"s":1},"7":{"n":7,"g":1},"8":{"n":4,"s":1},"9":{"n":7.5,"g":1},"10":{"n":5.5},"11":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":4,"s":1},"14":{"n":5},"15":{"n":7.5,"g":2},"16":{"n":4}}},"c":40},{"i":1005,"n":"Foden","f":"Phil","p":"M","r":6,"s":{"s":"32","n":"7","a":"4.64","d":"0.44","Og":"1","Os":"58","On":"12","Oa":"4.88","Od":"0.82","Mp":"3","Ap":"9","p":{"1":{"n":4,"s":1},"9":{"n":4.5,"s":1},"10":{"n":5.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1}}},"c":40},{"i":1049,"n":"Aleix Garc\u00eda","f":"","p":"M","r":1,"s":{"n":0,"Og":"2","Os":"83","On":"17","Oa":"4.91","Od":"0.93","Mp":"16","Ap":"1"},"c":40},{"i":1099,"n":"Tosin Adarabioyo","f":"","p":"D","r":1,"s":{"n":0},"c":40},{"i":1279,"n":"Ederson","f":"","p":"G","r":16,"s":{"s":"80","n":"15","a":"5.37","d":"1.35","Ss":"20","Sn":"4","Sa":"5","Sd":"1.17","Os":"200","On":"37","Oa":"5.41","Od":"1.01","Gp":"37","p":{"25":{"n":5},"1":{"n":6.5},"2":{"n":4},"3":{"n":6.5},"4":{"n":6},"5":{"n":3},"6":{"n":6.5},"7":{"n":7},"8":{"n":4},"9":{"n":6},"10":{"n":7},"11":{"n":4},"13":{"n":4.5},"14":{"n":4},"15":{"n":4.5},"16":{"n":7}}},"c":40},{"i":1357,"n":"Zinchenko","f":"Oleksandr","p":"M","r":7,"s":{"s":"34","n":"7","a":"4.93","d":"0.78","Os":"98","On":"19","Oa":"5.18","Od":"0.76","Mp":"2","Dp":"17","p":{"1":{"n":6},"2":{"n":4.5},"3":{"n":5},"4":{"n":5.5},"5":{"n":3.5},"7":{"n":5.5},"8":{"n":4.5,"s":1}}},"c":40},{"i":1367,"n":"Grimshaw","f":"Daniel","p":"G","r":1,"s":{"n":0},"c":40},{"i":1617,"n":"Laporte","f":"Aymeric","p":"D","r":7,"s":{"s":"22","n":"4","a":"5.5","d":"0.35","Og":"2","Os":"133","On":"23","Oa":"5.8","Od":"0.79","Dp":"23","p":{"25":{"n":6.5},"1":{"n":6},"2":{"n":5.5},"3":{"n":5.5},"4":{"n":5}}},"c":40},{"i":1915,"n":"Moreno","f":"Marlos","p":"A","r":1,"s":{"n":0},"c":40},{"i":2124,"n":"Nmecha","f":"Lukas","p":"A","r":3,"s":{"n":0},"c":40},{"i":2427,"n":"Rodrigo","f":"","p":"M","r":22,"s":{"g":"2","s":"84","n":"14","a":"6","d":"1.1","Sg":"1","Ss":"29","Sn":"5","Sa":"5.8","Sd":"1.21","Og":"3","Os":"211","On":"35","Oa":"6.04","Od":"0.94","Mp":"34","Dp":"1","p":{"1":{"n":6.5},"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":7.5},"5":{"n":7,"g":1},"6":{"n":7.5},"7":{"n":5.5},"8":{"n":5},"9":{"n":6},"12":{"n":5},"13":{"n":6},"14":{"n":4.5,"s":1},"15":{"n":8,"g":1},"16":{"n":5.5}}},"c":40},{"i":2756,"n":"Arzani","f":"Daniel","p":"M","r":8,"s":{"n":0},"c":40},{"i":2818,"n":"Sandler","f":"Philippe","p":"D","r":1,"s":{"n":0},"c":40},{"i":2830,"n":"Muric","f":"Arijanet","p":"G","r":1,"s":{"n":0},"c":40},{"i":2883,"n":"Bernab\u00e9","f":"Adri\u00e1n","p":"M","r":1,"s":{"n":0},"c":40},{"i":2928,"n":"Gomes","f":"Claudio","p":"M","r":1,"s":{"n":0},"c":40},{"i":2973,"n":"Eric Garc\u00eda","f":"","p":"D","r":5,"s":{"s":"10","n":"2","a":"5.25","d":"0.25","Os":"10","On":"2","Oa":"5.25","Od":"0.25","Dp":"2","p":{"6":{"n":5.5,"s":1},"15":{"n":5,"s":1}}},"c":40},{"i":3224,"n":"Poveda-Ocampo","f":"Ian Carlo","p":"A","r":1,"s":{"n":0},"c":40},{"i":3226,"n":"Bolton","f":"Luke","p":"M","r":1,"s":{"n":0},"c":40},{"i":3499,"n":"Nmecha","f":"Felix","p":"M","r":3,"s":{"n":0},"c":40},{"i":3514,"n":"Humphreys-Grant","f":"Cameron","p":"D","r":1,"s":{"n":0},"c":40},{"i":3692,"n":"Palmer-Brown","f":"Erik","p":"D","r":1,"s":{"n":0},"c":40},{"i":3696,"n":"Angeli\u00f1o","f":"","p":"D","r":13,"s":{"s":"30","n":"6","a":"5","d":"0.29","Ss":"10","Sn":"2","Sa":"5","Os":"30","On":"6","Oa":"5","Od":"0.29","Dp":"6","p":{"6":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5},"12":{"n":4.5},"15":{"n":5},"16":{"n":5}}},"c":40},{"i":4567,"n":"Jo\u00e3o Cancelo","f":"","p":"D","r":14,"s":{"s":"30","n":"6","a":"5.08","d":"0.98","Os":"30","On":"6","Oa":"5.08","Od":"0.98","Dp":"6","p":{"3":{"n":4.5,"s":1},"6":{"n":5,"s":1},"8":{"n":3.5},"9":{"n":6.5},"10":{"n":6},"13":{"n":5}}},"c":40},{"i":5412,"n":"Bazunu","f":"Gavin","p":"G","r":1,"s":{"n":0},"c":40},{"i":5417,"n":"Dionkou","f":"Alpha Richard","p":"D","r":1,"s":{"n":0},"c":40},{"i":5419,"n":"Zoubdi Touaizi","f":"Nabili","p":"A","r":1,"s":{"n":0},"c":40},{"i":5420,"n":"Harwood-Bellis","f":"Taylor","p":"D","r":1,"s":{"n":0},"c":40},{"i":5421,"n":"Knight","f":"Ben","p":"M","r":1,"s":{"n":0},"c":40},{"i":5438,"n":"Iker Pozo","f":"","p":"M","r":1,"s":{"n":0},"c":40},{"i":5993,"n":"Doyle","f":"Tommy","p":"M","r":1,"s":{"n":0},"c":40},{"i":6128,"n":"Carson","f":"Scott","p":"G","r":1,"s":{"n":0},"c":40},{"i":388,"n":"Bissouma","f":"Yves","p":"M","r":5,"s":{"s":"22","n":"5","a":"4.5","d":"0.32","Os":"90","On":"19","Oa":"4.74","Od":"0.77","Mp":"13","Ap":"6","p":{"30":{"n":5},"6":{"n":4.5,"s":1},"7":{"n":4},"8":{"n":4.5,"s":1},"13":{"n":5,"s":1},"14":{"n":4.5}}},"c":45},{"i":1056,"n":"Bernardo","f":"","p":"D","r":3,"s":{"s":"8","n":"2","a":"4.25","d":"0.75","Os":"87","On":"18","Oa":"4.83","Od":"0.94","Mp":"1","Dp":"17","p":{"30":{"n":5.5},"1":{"n":5,"s":1},"4":{"n":3.5}}},"c":45},{"i":1281,"n":"Murray","f":"Glenn","p":"A","r":8,"s":{"s":"47","n":"11","a":"4.27","d":"0.25","Ss":"4","Sn":"1","Sa":"4.5","Og":"5","Os":"146","On":"33","Oa":"4.42","Od":"0.78","Ap":"33","p":{"30":{"n":6,"g":1},"1":{"n":4},"2":{"n":4},"3":{"n":4.5,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"12":{"n":4,"s":1},"13":{"n":4.5,"s":1},"16":{"n":4.5,"s":1}}},"c":45},{"i":1282,"n":"Knockaert","f":"Anthony","p":"M","r":8,"s":{"n":0,"Og":"1","Os":"77","On":"16","Oa":"4.81","Od":"1","Mp":"12","Ap":"4","p":{"30":{"n":6.5,"g":1}}},"c":45},{"i":1283,"n":"Hemed","f":"Tomer","p":"A","r":7,"s":{"n":0},"c":45},{"i":1284,"n":"Bruno","f":"","p":"D","r":10,"s":{"n":0,"Os":"28","On":"6","Oa":"4.67","Od":"0.75","Dp":"6"},"c":45},{"i":1294,"n":"Stephens","f":"Dale","p":"M","r":18,"s":{"s":"88","n":"16","a":"5.53","d":"0.94","Ss":"88","Sn":"16","Sa":"5.53","Sd":"0.94","Og":"1","Os":"189","On":"35","Oa":"5.4","Od":"0.93","Mp":"35","p":{"30":{"n":7},"1":{"n":6},"2":{"n":6},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":5.5},"6":{"n":7},"7":{"n":5},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":4.5},"12":{"n":5},"13":{"n":4},"14":{"n":5.5},"15":{"n":5.5},"16":{"n":7}}},"c":45},{"i":1296,"n":"Dunk","f":"Lewis","p":"D","r":22,"s":{"g":"2","s":"79","n":"15","a":"5.27","d":"1.35","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"1.03","Og":"2","Os":"182","On":"36","Oa":"5.07","Od":"1.26","Dp":"36","p":{"30":{"n":6.5},"1":{"n":7.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":3},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":7.5},"9":{"n":4},"10":{"n":5},"11":{"n":7},"12":{"n":4,"g":1},"14":{"n":6.5,"g":1},"15":{"n":5.5},"16":{"n":4}}},"c":45},{"i":1303,"n":"Gro\u00df","f":"Pascal","p":"M","r":14,"s":{"g":"1","s":"81","n":"15","a":"5.43","d":"0.77","Ss":"15","Sn":"3","Sa":"5","Og":"3","Os":"167","On":"32","Oa":"5.22","Od":"0.8","Mp":"25","Ap":"7","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5},"6":{"n":5},"7":{"n":4.5},"8":{"n":7},"9":{"n":7},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":6,"s":1},"14":{"n":5},"15":{"n":5},"16":{"n":5}}},"c":45},{"i":1306,"n":"March","f":"Solly","p":"M","r":7,"s":{"s":"40","n":"8","a":"5","d":"0.83","Og":"1","Os":"138","On":"27","Oa":"5.11","Od":"0.72","Mp":"18","Dp":"1","Ap":"8","p":{"30":{"n":5,"s":1},"1":{"n":6},"2":{"n":5},"3":{"n":5.5},"4":{"n":3.5},"5":{"n":6},"9":{"n":5,"s":1},"12":{"n":4,"s":1},"13":{"n":5}}},"c":45},{"i":1308,"n":"Pr\u00f6pper","f":"Davy","p":"M","r":14,"s":{"g":"1","ao":"1","s":"74","n":"14","a":"5.32","d":"0.94","Sg":"1","Sao":"1","Ss":"43","Sn":"8","Sa":"5.44","Sd":"0.92","Og":"2","Oao":"1","Os":"164","On":"32","Oa":"5.14","Od":"0.89","Mp":"32","p":{"30":{"n":4.5},"1":{"n":7},"2":{"n":4.5},"3":{"n":5},"4":{"n":4},"5":{"n":5.5},"6":{"n":5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7},"12":{"n":3.5,"a":1},"13":{"n":5},"14":{"n":6},"15":{"n":5.5},"16":{"n":5.5,"g":1}}},"c":45},{"i":1312,"n":"Duffy","f":"Shane","p":"D","r":12,"s":{"g":"1","s":"44","n":"9","a":"4.94","d":"0.83","Og":"3","Os":"146","On":"29","Oa":"5.05","Od":"1.09","Dp":"29","p":{"30":{"n":6},"1":{"n":6.5},"2":{"n":5},"3":{"n":4},"5":{"n":5},"9":{"n":5,"s":1},"11":{"n":6,"g":1,"s":1},"12":{"n":4},"13":{"n":4},"15":{"n":5,"s":1}}},"c":45},{"i":1313,"n":"Izquierdo","f":"Jos\u00e9","p":"A","r":1,"s":{"n":0,"Os":"26","On":"6","Oa":"4.42","Od":"0.19","Mp":"1","Ap":"5"},"c":45},{"i":1323,"n":"Ryan","f":"Mat","p":"G","r":22,"s":{"s":"92","n":"16","a":"5.75","d":"0.97","Ss":"92","Sn":"16","Sa":"5.75","Sd":"0.97","Os":"182","On":"34","Oa":"5.37","Od":"1.18","Gp":"34","p":{"30":{"n":6},"1":{"n":6.5},"2":{"n":5},"3":{"n":5},"4":{"n":4},"5":{"n":4},"6":{"n":7},"7":{"n":7.5},"8":{"n":6.5},"9":{"n":6},"10":{"n":6},"11":{"n":5},"12":{"n":6},"13":{"n":6.5},"14":{"n":6},"15":{"n":6},"16":{"n":5}}},"c":45},{"i":1324,"n":"Suttner","f":"Markus","p":"D","r":1,"s":{"n":0},"c":45},{"i":1336,"n":"Bong","f":"Ga\u00ebtan","p":"D","r":3,"s":{"s":"20","n":"4","a":"5","Os":"64","On":"14","Oa":"4.57","Od":"0.59","Dp":"14","p":{"5":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1}}},"c":45},{"i":1338,"n":"Kayal","f":"Beram","p":"M","r":6,"s":{"n":0,"Os":"38","On":"8","Oa":"4.75","Od":"0.5","Mp":"8"},"c":45},{"i":1356,"n":"Molumby","f":"Jayson","p":"M","r":1,"s":{"n":0},"c":45},{"i":1361,"n":"Towell","f":"Richard","p":"A","r":1,"s":{"n":0},"c":45},{"i":1378,"n":"Connolly","f":"Aaron","p":"A","r":10,"s":{"g":"2","s":"54","n":"11","a":"4.91","d":"1.24","Og":"2","Os":"54","On":"11","Oa":"4.91","Od":"1.24","Ap":"11","p":{"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":8,"g":2},"9":{"n":5},"10":{"n":6},"11":{"n":5},"12":{"n":3},"14":{"n":3.5},"15":{"n":5}}},"c":45},{"i":1473,"n":"Mooy","f":"Aaron","p":"M","r":12,"s":{"s":"51","n":"10","a":"5.15","d":"1.29","Ss":"23","Sn":"4","Sa":"5.75","Sd":"1.3","Og":"1","Os":"117","On":"24","Oa":"4.9","Od":"0.96","Mp":"19","Ap":"5","p":{"2":{"n":4.5,"s":1},"5":{"n":5,"s":1},"6":{"n":4.5},"7":{"n":4},"8":{"n":7},"9":{"n":3.5},"13":{"n":5},"14":{"n":5},"15":{"n":8},"16":{"n":5}}},"c":45},{"i":1612,"n":"Andone","f":"Florin","p":"A","r":6,"s":{"g":"1","s":"13","n":"3","a":"4.5","d":"1.47","Og":"2","Os":"85","On":"20","Oa":"4.28","Od":"0.84","Ap":"20","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":5,"s":1},"3":{"n":2.5}}},"c":45},{"i":1761,"n":"Montoya","f":"Mart\u00edn","p":"D","r":9,"s":{"s":"64","n":"14","a":"4.61","d":"0.95","Os":"143","On":"31","Oa":"4.61","Od":"0.82","Mp":"5","Dp":"26","p":{"30":{"n":5},"1":{"n":5},"2":{"n":4.5},"3":{"n":5},"4":{"n":3},"6":{"n":5},"7":{"n":5},"8":{"n":4.5},"9":{"n":5},"10":{"n":4},"11":{"n":7},"12":{"n":3},"13":{"n":4},"14":{"n":4.5},"15":{"n":5,"s":1}}},"c":45},{"i":2025,"n":"Schelotto","f":"Ezequiel","p":"D","r":5,"s":{"s":"14","n":"3","a":"4.83","d":"0.24","Os":"14","On":"3","Oa":"4.83","Od":"0.24","Dp":"3","p":{"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":5,"s":1}}},"c":45},{"i":2255,"n":"Locadia","f":"J\u00fcrgen","p":"A","r":5,"s":{"s":"9","n":"2","a":"4.75","d":"0.75","Og":"2","Os":"84","On":"18","Oa":"4.69","Od":"0.96","Mp":"7","Ap":"11","p":{"30":{"n":4.5,"s":1},"1":{"n":5.5},"3":{"n":4,"s":1}}},"c":45},{"i":2519,"n":"Balogun","f":"Leon","p":"D","r":1,"s":{"n":0,"Os":"12","On":"3","Oa":"4","Od":"0.41","Dp":"3"},"c":45},{"i":2520,"n":"Button","f":"David","p":"G","r":7,"s":{"n":0,"Os":"23","On":"4","Oa":"5.88","Od":"0.74","Gp":"4"},"c":45},{"i":2525,"n":"Steele","f":"Jason","p":"G","r":1,"s":{"n":0},"c":45},{"i":2537,"n":"Tau","f":"Percy","p":"A","r":11,"s":{"n":0},"c":45},{"i":2576,"n":"Jahanbakhsh","f":"Alireza","p":"A","r":5,"s":{"s":"4","n":"1","a":"4.5","Ss":"4","Sn":"1","Sa":"4.5","Os":"40","On":"10","Oa":"4","Od":"0.63","Mp":"3","Ap":"7","p":{"30":{"n":5},"16":{"n":4.5,"s":1}}},"c":45},{"i":2850,"n":"Gyokeres","f":"Viktor","p":"A","r":1,"s":{"n":0},"c":45},{"i":2854,"n":"Collar","f":"Will","p":"M","r":1,"s":{"n":0},"c":45},{"i":2856,"n":"Barclay","f":"Ben","p":"D","r":1,"s":{"n":0},"c":45},{"i":2933,"n":"White","f":"Ben","p":"D","r":1,"s":{"n":0},"c":45},{"i":2986,"n":"Burn","f":"Dan","p":"D","r":11,"s":{"s":"73","n":"16","a":"4.59","d":"1.08","Ss":"73","Sn":"16","Sa":"4.59","Sd":"1.08","Os":"73","On":"16","Oa":"4.59","Od":"1.08","Mp":"1","Dp":"15","p":{"1":{"n":6},"2":{"n":5.5},"3":{"n":4},"4":{"n":2.5},"5":{"n":4},"6":{"n":4},"7":{"n":5},"8":{"n":5.5},"9":{"n":4},"10":{"n":5.5},"11":{"n":5},"12":{"n":3},"13":{"n":5},"14":{"n":5.5},"15":{"n":6},"16":{"n":3}}},"c":45},{"i":3119,"n":"Sanders","f":"Max","p":"M","r":1,"s":{"n":0},"c":45},{"i":3225,"n":"Richards","f":"Taylor","p":"M","r":1,"s":{"n":0},"c":45},{"i":3353,"n":"S\u00e1nchez","f":"Robert","p":"G","r":1,"s":{"n":0},"c":45},{"i":3511,"n":"Ostigard","f":"Leo","p":"D","r":1,"s":{"n":0},"c":45},{"i":3663,"n":"Baluta","f":"Tudor","p":"D","r":1,"s":{"n":0},"c":45},{"i":3665,"n":"Mlakar","f":"Jan","p":"A","r":1,"s":{"n":0},"c":45},{"i":3686,"n":"Clarke","f":"Matthew","p":"D","r":2,"s":{"n":0},"c":45},{"i":3699,"n":"Trossard","f":"Leandro","p":"M","r":10,"s":{"g":"2","s":"51","n":"10","a":"5.15","d":"1.23","Sg":"1","Ss":"36","Sn":"7","Sa":"5.21","Sd":"1.13","Og":"2","Os":"51","On":"10","Oa":"5.15","Od":"1.23","Mp":"5","Ap":"5","p":{"2":{"n":6,"g":1},"3":{"n":6},"4":{"n":3},"10":{"n":5.5,"s":1},"11":{"n":7.5,"g":1,"s":1},"12":{"n":4.5},"13":{"n":4},"14":{"n":4.5,"s":1},"15":{"n":4.5,"s":1},"16":{"n":6}}},"c":45},{"i":5999,"n":"Maupay","f":"Neal","p":"A","r":21,"s":{"g":"6","s":"83","n":"16","a":"5.19","d":"1.18","Sg":"6","Ss":"83","Sn":"16","Sa":"5.19","Sd":"1.18","Og":"6","Os":"83","On":"16","Oa":"5.19","Od":"1.18","Ap":"16","p":{"1":{"n":6,"g":1,"s":1},"2":{"n":4,"s":1},"3":{"n":5},"4":{"n":3.5},"5":{"n":6,"g":1},"6":{"n":5},"7":{"n":3.5},"8":{"n":7,"g":1},"9":{"n":5.5},"10":{"n":6,"g":1},"11":{"n":5},"12":{"n":4},"13":{"n":4.5},"14":{"n":4,"s":1},"15":{"n":7,"g":1},"16":{"n":7,"g":1}}},"c":45},{"i":6000,"n":"Webster","f":"Adam","p":"D","r":13,"s":{"g":"2","ao":"1","s":"59","n":"12","a":"4.92","d":"1.34","Sg":"1","Ss":"19","Sn":"4","Sa":"4.88","Sd":"1.63","Og":"2","Oao":"1","Os":"59","On":"12","Oa":"4.92","Od":"1.34","Dp":"12","p":{"4":{"n":3},"5":{"n":5},"6":{"n":5.5},"7":{"n":4},"8":{"n":7},"9":{"n":5.5,"g":1},"10":{"n":4,"a":1},"11":{"n":5.5},"13":{"n":3},"14":{"n":4.5},"15":{"n":7.5,"g":1},"16":{"n":4.5}}},"c":45},{"i":6242,"n":"Roberts","f":"Haydon","p":"D","r":1,"s":{"n":0},"c":45},{"i":6243,"n":"Alzate","f":"Steven","p":"M","r":12,"s":{"s":"51","n":"10","a":"5.15","d":"0.63","Ss":"14","Sn":"3","Sa":"4.83","Sd":"0.24","Os":"51","On":"10","Oa":"5.15","Od":"0.63","Mp":"6","Dp":"2","Ap":"2","p":{"6":{"n":5},"7":{"n":4.5},"8":{"n":6.5},"9":{"n":4.5,"s":1},"10":{"n":5},"11":{"n":6},"12":{"n":5.5},"14":{"n":5,"s":1},"15":{"n":5},"16":{"n":4.5}}},"c":45},{"i":6244,"n":"Davies","f":"Jordan","p":"M","r":1,"s":{"n":0},"c":45},{"i":6245,"n":"Cochrane","f":"Alex","p":"D","r":1,"s":{"n":0},"c":45},{"i":6284,"n":"Gwargis","f":"Peter","p":"M","r":1,"s":{"n":0},"c":45},{"i":6286,"n":"Longman","f":"Ryan","p":"M","r":1,"s":{"n":0},"c":45},{"i":6287,"n":"Archie Davies","f":"","p":"D","r":1,"s":{"n":0},"c":45},{"i":30,"n":"Saint-Maximin","f":"Allan","p":"M","r":20,"s":{"g":"1","s":"67","n":"12","a":"5.58","d":"0.57","Sg":"1","Ss":"52","Sn":"9","Sa":"5.83","Sd":"0.41","Og":"3","Os":"157","On":"30","Oa":"5.25","Od":"0.93","Mp":"12","Ap":"18","p":{"1":{"n":4.5,"s":1},"3":{"n":5},"6":{"n":5,"s":1},"8":{"n":6},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":6},"12":{"n":6},"13":{"n":5},"14":{"n":6},"15":{"n":6,"g":1},"16":{"n":6.5}}},"c":46},{"i":132,"n":"Saivet","f":"Henri","p":"M","r":3,"s":{"n":0},"c":46},{"i":628,"n":"Carroll","f":"Andy","p":"A","r":9,"s":{"s":"44","n":"9","a":"4.94","d":"0.6","Ss":"12","Sn":"2","Sa":"6","Os":"87","On":"19","Oa":"4.61","Od":"0.6","Ap":"19","p":{"6":{"n":4.5,"s":1},"7":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"15":{"n":6},"16":{"n":6,"s":1}}},"c":46},{"i":707,"n":"Rond\u00f3n","f":"Salom\u00f3n","p":"A","r":25,"s":{"n":0,"Og":"8","Os":"119","On":"21","Oa":"5.69","Od":"1.06","Ap":"21","p":{"28":{"n":5}}},"c":46},{"i":814,"n":"Manquillo","f":"Javier","p":"D","r":9,"s":{"s":"37","n":"7","a":"5.36","d":"0.83","Ss":"17","Sn":"3","Sa":"5.67","Sd":"1.03","Os":"100","On":"19","Oa":"5.29","Od":"0.75","Mp":"2","Dp":"17","p":{"28":{"n":6},"1":{"n":4.5},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":6},"14":{"n":4.5},"15":{"n":7},"16":{"n":5.5}}},"c":46},{"i":839,"n":"Ki Sung-Yueng","f":"","p":"M","r":3,"s":{"s":"15","n":"3","a":"5","d":"0.41","Os":"61","On":"12","Oa":"5.13","Od":"0.58","Mp":"12","p":{"2":{"n":4.5},"6":{"n":5,"s":1},"7":{"n":5.5,"s":1}}},"c":46},{"i":913,"n":"Fern\u00e1ndez","f":"Federico","p":"D","r":14,"s":{"g":"2","s":"56","n":"10","a":"5.6","d":"0.73","Sg":"2","Ss":"40","Sn":"7","Sa":"5.79","Sd":"0.8","Og":"2","Os":"83","On":"16","Oa":"5.22","Od":"0.9","Dp":"16","p":{"3":{"n":5.5,"s":1},"4":{"n":5,"s":1},"5":{"n":5,"s":1},"10":{"n":6.5},"11":{"n":7,"g":1},"12":{"n":5.5},"13":{"n":4.5},"14":{"n":5},"15":{"n":6},"16":{"n":6,"g":1}}},"c":46},{"i":1466,"n":"Gayle","f":"Dwight","p":"A","r":3,"s":{"s":"17","n":"4","a":"4.25","d":"0.25","Os":"17","On":"4","Oa":"4.25","Od":"0.25","Ap":"4","p":{"9":{"n":4.5,"s":1},"10":{"n":4,"s":1},"13":{"n":4.5,"s":1},"14":{"n":4,"s":1}}},"c":46},{"i":1468,"n":"Ritchie","f":"Matt","p":"M","r":3,"s":{"s":"14","n":"3","a":"4.83","d":"0.85","Og":"2","Os":"136","On":"25","Oa":"5.44","Od":"0.93","Mp":"5","Dp":"20","p":{"28":{"n":5.5},"1":{"n":4.5},"2":{"n":4},"3":{"n":6}}},"c":46},{"i":1469,"n":"Lascelles","f":"Jamaal","p":"D","r":10,"s":{"g":"1","s":"60","n":"12","a":"5.04","d":"1.05","Og":"1","Os":"171","On":"32","Oa":"5.34","Od":"1.07","Dp":"32","p":{"28":{"n":6.5},"1":{"n":4.5},"2":{"n":4},"3":{"n":7},"4":{"n":5},"5":{"n":5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":7,"g":1},"11":{"n":5},"12":{"n":4}}},"c":46},{"i":1475,"n":"Darlow","f":"Karl","p":"G","r":7,"s":{"n":0},"c":46},{"i":1476,"n":"Shelvey","f":"Jonjo","p":"M","r":18,"s":{"g":"5","s":"62","n":"11","a":"5.68","d":"1.01","Sg":"4","Ss":"42","Sn":"7","Sa":"6.07","Sd":"0.9","Og":"6","Os":"99","On":"18","Oa":"5.53","Od":"0.99","Mp":"18","p":{"1":{"n":4},"2":{"n":5.5,"g":1},"5":{"n":4.5},"6":{"n":6},"10":{"n":5,"s":1},"11":{"n":6.5,"g":1},"12":{"n":5.5},"13":{"n":5},"14":{"n":7,"g":1},"15":{"n":7.5,"g":1},"16":{"n":6,"g":1}}},"c":46},{"i":1485,"n":"Lejeune","f":"Florian","p":"D","r":7,"s":{"n":0,"Os":"65","On":"12","Oa":"5.42","Od":"0.86","Dp":"12","p":{"28":{"n":6}}},"c":46},{"i":1487,"n":"Atsu","f":"Christian","p":"M","r":7,"s":{"s":"67","n":"13","a":"5.19","d":"0.82","Og":"1","Os":"159","On":"31","Oa":"5.15","Od":"0.75","Mp":"31","p":{"3":{"n":7,"s":1},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":3.5},"8":{"n":5,"s":1},"9":{"n":5,"s":1},"10":{"n":5,"s":1},"11":{"n":5.5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5.5,"s":1},"15":{"n":5.5,"s":1}}},"c":46},{"i":1488,"n":"Hayden","f":"Isaac","p":"M","r":13,"s":{"s":"68","n":"13","a":"5.27","d":"0.7","Ss":"31","Sn":"6","Sa":"5.25","Sd":"0.48","Og":"1","Os":"184","On":"34","Oa":"5.43","Od":"0.88","Mp":"33","Dp":"1","p":{"28":{"n":6},"1":{"n":6},"2":{"n":4},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":5.5},"7":{"n":4},"11":{"n":6},"12":{"n":5},"13":{"n":4.5},"14":{"n":5},"15":{"n":5.5},"16":{"n":5.5}}},"c":46},{"i":1491,"n":"Dummett","f":"Paul","p":"D","r":10,"s":{"ao":"1","s":"62","n":"13","a":"4.81","d":"1.08","Ss":"29","Sn":"6","Sa":"4.92","Sd":"0.73","Oao":"1","Os":"144","On":"29","Oa":"4.98","Od":"1.01","Dp":"29","p":{"28":{"n":5,"s":1},"1":{"n":5.5},"2":{"n":3},"3":{"n":6.5},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":3,"a":1},"11":{"n":5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":4},"14":{"n":5},"15":{"n":6},"16":{"n":4}}},"c":46},{"i":1492,"n":"Yedlin","f":"DeAndre","p":"D","r":10,"s":{"g":"1","s":"35","n":"7","a":"5.07","d":"0.86","Og":"1","Os":"102","On":"21","Oa":"4.86","Od":"0.77","Mp":"2","Dp":"19","p":{"7":{"n":5,"s":1},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":4},"12":{"n":6.5,"g":1},"13":{"n":4}}},"c":46},{"i":1495,"n":"Diam\u00e9","f":"Mohamed","p":"M","r":6,"s":{"n":0,"Os":"67","On":"13","Oa":"5.19","Od":"0.72","Mp":"13","p":{"28":{"n":5,"s":1}}},"c":46},{"i":1497,"n":"Colback","f":"Jack","p":"M","r":3,"s":{"n":0},"c":46},{"i":1499,"n":"Clark","f":"Ciaran","p":"D","r":14,"s":{"g":"2","s":"48","n":"9","a":"5.33","d":"0.88","Sg":"2","Ss":"48","Sn":"9","Sa":"5.33","Sd":"0.88","Og":"3","Os":"60","On":"11","Oa":"5.5","Od":"0.93","Dp":"11","p":{"8":{"n":5.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":6,"g":1},"12":{"n":7,"g":1},"13":{"n":4},"14":{"n":5.5},"15":{"n":6},"16":{"n":4.5}}},"c":46},{"i":1504,"n":"Murphy","f":"Jacob","p":"M","r":5,"s":{"n":0,"Os":"10","On":"2","Oa":"5","Mp":"2"},"c":46},{"i":1508,"n":"Elliot","f":"Robert","p":"G","r":1,"s":{"n":0},"c":46},{"i":1515,"n":"Aarons","f":"Rolando","p":"M","r":1,"s":{"n":0},"c":46},{"i":1516,"n":"Sterry","f":"Jamie","p":"D","r":1,"s":{"n":0},"c":46},{"i":1519,"n":"Lazaar","f":"Achraf","p":"D","r":1,"s":{"n":0},"c":46},{"i":1725,"n":"Sch\u00e4r","f":"Fabian","p":"D","r":13,"s":{"g":"1","s":"49","n":"10","a":"4.9","d":"1.2","Ss":"5","Sn":"1","Sa":"5","Og":"5","Os":"146","On":"28","Oa":"5.23","Od":"1.12","Dp":"28","p":{"28":{"n":7,"g":1},"1":{"n":5},"2":{"n":4},"3":{"n":7},"4":{"n":6,"g":1},"5":{"n":3.5},"6":{"n":6},"7":{"n":3},"8":{"n":5.5},"9":{"n":4},"16":{"n":5,"s":1}}},"c":46},{"i":2306,"n":"Dubravka","f":"Martin","p":"G","r":18,"s":{"s":"90","n":"16","a":"5.63","d":"1.26","Ss":"90","Sn":"16","Sa":"5.63","Sd":"1.26","Os":"210","On":"38","Oa":"5.53","Od":"1.1","Gp":"38","p":{"28":{"n":6.5},"1":{"n":5},"2":{"n":4.5},"3":{"n":6.5},"4":{"n":5.5},"5":{"n":4},"6":{"n":6},"7":{"n":3},"8":{"n":6.5},"9":{"n":7},"10":{"n":4},"11":{"n":6},"12":{"n":5.5},"13":{"n":6},"14":{"n":7},"15":{"n":8},"16":{"n":5.5}}},"c":46},{"i":2553,"n":"Muto","f":"Yoshinori","p":"A","r":3,"s":{"s":"22","n":"5","a":"4.4","d":"0.37","Os":"53","On":"12","Oa":"4.46","Od":"0.32","Mp":"1","Ap":"11","p":{"2":{"n":4,"s":1},"3":{"n":4,"s":1},"4":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"7":{"n":5}}},"c":46},{"i":2580,"n":"Freddy Woodman","f":"","p":"G","r":1,"s":{"n":0},"c":46},{"i":2758,"n":"Sean Longstaff","f":"","p":"M","r":11,"s":{"s":"45","n":"9","a":"5.06","d":"1.21","Ss":"5","Sn":"1","Sa":"5.5","Og":"1","Os":"95","On":"18","Oa":"5.31","Od":"1.07","Mp":"18","p":{"28":{"n":7,"g":1},"1":{"n":4.5},"2":{"n":6,"s":1},"3":{"n":5.5},"4":{"n":5.5},"7":{"n":2.5},"8":{"n":7},"9":{"n":5},"10":{"n":4},"16":{"n":5.5,"s":1}}},"c":46},{"i":2759,"n":"Roberts","f":"Callum","p":"M","r":1,"s":{"n":0},"c":46},{"i":2796,"n":"Krafth","f":"Emil","p":"D","r":5,"s":{"s":"32","n":"7","a":"4.57","d":"1.02","Os":"125","On":"27","Oa":"4.63","Od":"0.67","Mp":"1","Dp":"26","p":{"2":{"n":3.5},"3":{"n":6},"4":{"n":5},"5":{"n":4},"7":{"n":3},"8":{"n":5,"s":1},"15":{"n":5.5,"s":1}}},"c":46},{"i":2981,"n":"Harker","f":"Nathan","p":"G","r":1,"s":{"n":0},"c":46},{"i":3356,"n":"Almir\u00f3n","f":"Miguel","p":"M","r":15,"s":{"s":"82","n":"16","a":"5.16","d":"0.91","Ss":"82","Sn":"16","Sa":"5.16","Sd":"0.91","Os":"138","On":"26","Oa":"5.31","Od":"0.83","Mp":"23","Ap":"3","p":{"28":{"n":5.5},"1":{"n":4},"2":{"n":4},"3":{"n":5.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":5.5},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":6.5},"12":{"n":5.5},"13":{"n":4},"14":{"n":6.5},"15":{"n":6},"16":{"n":6}}},"c":46},{"i":3648,"n":"Watts","f":"Kelland","p":"M","r":1,"s":{"n":0},"c":46},{"i":3649,"n":"Cass","f":"Lewis","p":"D","r":2,"s":{"n":0},"c":46},{"i":5423,"n":"Sorensen","f":"Elias","p":"A","r":1,"s":{"n":0},"c":46},{"i":5426,"n":"Allan","f":"Thomas","p":"A","r":1,"s":{"n":0},"c":46},{"i":5433,"n":"Matthew Longstaff","f":"","p":"M","r":6,"s":{"g":"1","s":"15","n":"3","a":"5.17","d":"1.43","Og":"1","Os":"15","On":"3","Oa":"5.17","Od":"1.43","Mp":"3","p":{"8":{"n":7,"g":1},"9":{"n":3.5},"10":{"n":5}}},"c":46},{"i":5435,"n":"Bailey","f":"Owen","p":"D","r":1,"s":{"n":0},"c":46},{"i":5442,"n":"Joelinton","f":"","p":"A","r":12,"s":{"g":"1","s":"75","n":"16","a":"4.69","d":"0.85","Sg":"1","Ss":"75","Sn":"16","Sa":"4.69","Sd":"0.85","Og":"1","Os":"75","On":"16","Oa":"4.69","Od":"0.85","Ap":"16","p":{"1":{"n":5},"2":{"n":3.5},"3":{"n":7,"g":1},"4":{"n":4.5},"5":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":4},"9":{"n":3.5},"10":{"n":4.5},"11":{"n":6},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4.5,"s":1},"16":{"n":4.5}}},"c":46},{"i":6001,"n":"Willems","f":"Jetro","p":"D","r":16,"s":{"g":"2","s":"73","n":"13","a":"5.62","d":"0.71","Sg":"1","Ss":"52","Sn":"9","Sa":"5.78","Sd":"0.79","Og":"2","Os":"73","On":"13","Oa":"5.62","Od":"0.71","Dp":"13","p":{"1":{"n":5,"s":1},"4":{"n":5.5},"5":{"n":5.5,"g":1},"6":{"n":5},"8":{"n":6.5},"9":{"n":5},"10":{"n":6},"11":{"n":7},"12":{"n":6.5},"13":{"n":4.5},"14":{"n":6,"g":1},"15":{"n":5.5},"16":{"n":5}}},"c":46},{"i":75,"n":"Jo\u00e3o Moutinho","f":"","p":"M","r":22,"s":{"g":"1","s":"89","n":"16","a":"5.59","d":"0.99","Sg":"1","Ss":"89","Sn":"16","Sa":"5.59","Sd":"0.99","Og":"1","Os":"213","On":"38","Oa":"5.61","Od":"1","Mp":"37","Ap":"1","p":{"20":{"n":6,"s":1},"1":{"n":5.5},"2":{"n":6},"3":{"n":4.5},"4":{"n":5,"s":1},"5":{"n":4.5},"6":{"n":4.5},"7":{"n":6},"8":{"n":6.5},"9":{"n":4.5},"10":{"n":4.5},"11":{"n":7},"12":{"n":6},"13":{"n":7,"g":1},"14":{"n":5.5},"15":{"n":7.5},"16":{"n":5}}},"c":69},{"i":1710,"n":"Jonny","f":"","p":"D","r":13,"s":{"g":"1","s":"72","n":"15","a":"4.83","d":"0.81","Sg":"1","Ss":"59","Sn":"12","Sa":"4.92","Sd":"0.86","Og":"1","Os":"172","On":"36","Oa":"4.79","Od":"0.79","Mp":"34","Dp":"2","p":{"20":{"n":5},"1":{"n":4},"2":{"n":5},"3":{"n":4.5},"5":{"n":2.5},"6":{"n":4.5},"7":{"n":6},"8":{"n":5,"s":1},"9":{"n":5},"10":{"n":5.5,"g":1},"11":{"n":5},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":6},"16":{"n":5}}},"c":69},{"i":1839,"n":"Vallejo","f":"Jes\u00fas","p":"D","r":3,"s":{"s":"7","n":"2","a":"3.5","d":"1.5","Og":"1","Os":"32","On":"7","Oa":"4.57","Od":"1.47","Dp":"7","p":{"5":{"n":2},"9":{"n":5,"s":1}}},"c":69},{"i":2485,"n":"Coady","f":"Conor","p":"D","r":12,"s":{"s":"79","n":"16","a":"4.97","d":"1.1","Ss":"79","Sn":"16","Sa":"4.97","Sd":"1.1","Oao":"3","Os":"192","On":"38","Oa":"5.07","Od":"1.03","Dp":"38","p":{"20":{"n":6},"1":{"n":5.5},"2":{"n":4.5},"3":{"n":5.5},"4":{"n":3},"5":{"n":2},"6":{"n":5},"7":{"n":6},"8":{"n":6.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5},"15":{"n":6},"16":{"n":4.5}}},"c":69},{"i":2490,"n":"Boly","f":"Willy","p":"D","r":9,"s":{"s":"45","n":"8","a":"5.69","d":"0.9","Og":"3","Os":"153","On":"28","Oa":"5.46","Od":"0.94","Dp":"28","p":{"20":{"n":7.5,"g":1},"1":{"n":6},"2":{"n":5},"3":{"n":6},"4":{"n":5},"6":{"n":5},"7":{"n":7},"8":{"n":7},"9":{"n":4.5}}},"c":69},{"i":2492,"n":"Doherty","f":"Matt","p":"D","r":14,"s":{"g":"2","s":"78","n":"15","a":"5.2","d":"0.81","Sg":"2","Ss":"64","Sn":"12","Sa":"5.38","Sd":"0.79","Og":"3","Os":"191","On":"37","Oa":"5.18","Od":"0.83","Mp":"30","Dp":"7","p":{"20":{"n":7},"1":{"n":4},"2":{"n":4.5},"3":{"n":5},"5":{"n":5.5,"s":1},"6":{"n":5},"7":{"n":7,"g":1},"8":{"n":5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":5.5},"13":{"n":5},"14":{"n":6.5,"g":1},"15":{"n":6},"16":{"n":4}}},"c":69},{"i":2503,"n":"Batth","f":"Danny","p":"D","r":1,"s":{"n":0},"c":69},{"i":2508,"n":"Mason","f":"Joe","p":"A","r":1,"s":{"n":0},"c":69},{"i":2528,"n":"Bennett","f":"Ryan","p":"D","r":7,"s":{"s":"40","n":"8","a":"5.06","d":"0.53","Og":"1","Os":"137","On":"27","Oa":"5.07","Od":"0.66","Dp":"27","p":{"20":{"n":5.5},"1":{"n":5.5},"2":{"n":5},"3":{"n":5},"4":{"n":4},"8":{"n":6,"s":1},"9":{"n":5},"12":{"n":5,"s":1},"15":{"n":5,"s":1}}},"c":69},{"i":2533,"n":"Rui Patr\u00edcio","f":"","p":"G","r":15,"s":{"s":"85","n":"16","a":"5.31","d":"1.38","Ss":"85","Sn":"16","Sa":"5.31","Sd":"1.38","Os":"197","On":"37","Oa":"5.32","Od":"1.07","Gp":"37","p":{"20":{"n":5},"1":{"n":5.5},"2":{"n":6},"3":{"n":5.5},"4":{"n":3},"5":{"n":2.5},"6":{"n":6},"7":{"n":7.5},"8":{"n":6.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":5.5},"12":{"n":5.5},"13":{"n":5},"14":{"n":6},"15":{"n":7},"16":{"n":3}}},"c":69},{"i":2538,"n":"Gibbs-White","f":"Morgan","p":"M","r":1,"s":{"s":"14","n":"3","a":"4.83","d":"0.47","Os":"90","On":"19","Oa":"4.76","Od":"0.34","Mp":"17","Ap":"2","p":{"20":{"n":5,"s":1},"3":{"n":4.5},"5":{"n":4.5,"s":1},"7":{"n":5.5,"s":1}}},"c":69},{"i":2540,"n":"R\u00faben Vinagre","f":"","p":"D","r":6,"s":{"s":"28","n":"6","a":"4.75","d":"0.8","Ss":"5","Sn":"1","Sa":"5","Os":"74","On":"15","Oa":"4.93","Od":"0.6","Mp":"5","Dp":"10","p":{"4":{"n":3},"8":{"n":5.5},"10":{"n":5,"s":1},"11":{"n":5,"s":1},"13":{"n":5,"s":1},"16":{"n":5,"s":1}}},"c":69},{"i":2542,"n":"Deslandes","f":"Sylvain","p":"D","r":1,"s":{"n":0},"c":69},{"i":2550,"n":"Enobakhare","f":"Bright","p":"A","r":1,"s":{"n":0},"c":69},{"i":2556,"n":"Diogo Jota","f":"","p":"M","r":16,"s":{"g":"3","s":"71","n":"14","a":"5.11","d":"1.02","Sg":"2","Ss":"43","Sn":"8","Sa":"5.44","Sd":"0.98","Og":"10","Os":"171","On":"32","Oa":"5.36","Od":"1.26","Mp":"1","Ap":"31","p":{"1":{"n":4},"2":{"n":4},"3":{"n":5},"4":{"n":4.5,"s":1},"5":{"n":4},"6":{"n":6.5,"g":1},"9":{"n":5,"s":1},"10":{"n":5},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":6.5},"14":{"n":4.5},"15":{"n":5},"16":{"n":7.5,"g":2}}},"c":69},{"i":2557,"n":"Ruddy","f":"John","p":"G","r":7,"s":{"n":0,"Os":"6","On":"1","Oa":"6","Gp":"1"},"c":69},{"i":2563,"n":"Graham","f":"Jordan","p":"M","r":5,"s":{"n":0},"c":69},{"i":2568,"n":"R\u00faben Neves","f":"","p":"M","r":20,"s":{"g":"2","s":"84","n":"16","a":"5.25","d":"0.9","Sg":"2","Ss":"84","Sn":"16","Sa":"5.25","Sd":"0.9","Og":"4","Os":"194","On":"36","Oa":"5.39","Od":"1.01","Mp":"36","p":{"20":{"n":6},"1":{"n":5.5},"2":{"n":6,"g":1},"3":{"n":4.5},"4":{"n":5},"5":{"n":3.5},"6":{"n":4.5,"s":1},"7":{"n":5,"s":1},"8":{"n":7},"9":{"n":4.5},"10":{"n":5.5},"11":{"n":5},"12":{"n":7,"g":1},"13":{"n":6},"14":{"n":5.5},"15":{"n":5},"16":{"n":4.5}}},"c":69},{"i":2571,"n":"Norris","f":"Will","p":"G","r":1,"s":{"n":0,"Os":"5","On":"1","Oa":"5","Gp":"1"},"c":69},{"i":2574,"n":"Cavaleiro","f":"Ivan","p":"A","r":7,"s":{"n":0,"Og":"1","Os":"63","On":"14","Oa":"4.54","Od":"0.81","Ap":"14","p":{"20":{"n":6}}},"c":69},{"i":2575,"n":"H\u00e9lder Costa","f":"","p":"A","r":6,"s":{"n":0,"Og":"1","Os":"43","On":"9","Oa":"4.78","Od":"0.82","Ap":"9","p":{"20":{"n":6.5,"g":1,"s":1}}},"c":69},{"i":2584,"n":"L\u00e9o Bonatini","f":"","p":"A","r":1,"s":{"n":0},"c":69},{"i":2597,"n":"Sa\u00efss","f":"Romain","p":"M","r":12,"s":{"g":"1","s":"59","n":"12","a":"4.92","d":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"1.25","Og":"3","Os":"133","On":"26","Oa":"5.13","Od":"1.13","Mp":"11","Dp":"15","p":{"1":{"n":5,"s":1},"4":{"n":5,"g":1},"5":{"n":2.5},"6":{"n":4},"7":{"n":6},"8":{"n":5},"10":{"n":5.5},"11":{"n":5},"12":{"n":5},"13":{"n":5.5},"15":{"n":6.5},"16":{"n":4}}},"c":69},{"i":2600,"n":"Jim\u00e9nez","f":"Ra\u00fal","p":"A","r":33,"s":{"g":"6","s":"92","n":"16","a":"5.75","d":"1.08","Sg":"6","Ss":"92","Sn":"16","Sa":"5.75","Sd":"1.08","Og":"15","Os":"212","On":"38","Oa":"5.58","Od":"1.26","Ap":"38","p":{"20":{"n":7,"g":1},"1":{"n":5},"2":{"n":4.5},"3":{"n":6,"g":1},"4":{"n":6,"g":1},"5":{"n":3},"6":{"n":5.5},"7":{"n":5},"8":{"n":7},"9":{"n":5,"g":1},"10":{"n":5.5},"11":{"n":7.5,"g":1},"12":{"n":7,"g":1},"13":{"n":6.5,"g":1},"14":{"n":6.5},"15":{"n":6},"16":{"n":6}}},"c":69},{"i":2603,"n":"Ofosu-Ayeh","f":"Phil","p":"D","r":1,"s":{"n":0},"c":69},{"i":2762,"n":"Dendoncker","f":"Leander","p":"M","r":15,"s":{"g":"1","ao":"1","s":"81","n":"16","a":"5.06","d":"1.09","Sg":"1","Sao":"1","Ss":"81","Sn":"16","Sa":"5.06","Sd":"1.09","Og":"3","Oao":"1","Os":"180","On":"34","Oa":"5.31","Od":"1.1","Mp":"28","Dp":"6","p":{"20":{"n":5.5},"1":{"n":6},"2":{"n":4},"3":{"n":5,"s":1},"4":{"n":4.5},"5":{"n":3},"6":{"n":3.5,"a":1},"7":{"n":5.5},"8":{"n":6},"9":{"n":4},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":5.5},"15":{"n":7.5,"g":1},"16":{"n":5}}},"c":69},{"i":2798,"n":"Traor\u00e9","f":"Adama","p":"M","r":16,"s":{"g":"2","s":"83","n":"15","a":"5.53","d":"1.41","Sg":"2","Ss":"83","Sn":"15","Sa":"5.53","Sd":"1.41","Og":"2","Os":"154","On":"30","Oa":"5.13","Od":"1.19","Mp":"7","Ap":"23","p":{"20":{"n":6},"2":{"n":5,"s":1},"3":{"n":5,"s":1},"4":{"n":3},"5":{"n":3},"6":{"n":6.5},"7":{"n":6},"8":{"n":8.5,"g":2},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":7},"13":{"n":7},"14":{"n":5},"15":{"n":6},"16":{"n":6}}},"c":69},{"i":2842,"n":"Ashley-Seal","f":"Ben","p":"A","r":1,"s":{"n":0},"c":69},{"i":2844,"n":"Pote","f":"","p":"M","r":1,"s":{"n":0},"c":69},{"i":2846,"n":"Watt","f":"Elliot","p":"M","r":1,"s":{"n":0},"c":69},{"i":2847,"n":"Giles","f":"Ryan John","p":"M","r":1,"s":{"n":0},"c":69},{"i":2889,"n":"Benny Ashley-Seal","f":"","p":"A","r":1,"s":{"n":0},"c":69},{"i":2978,"n":"Kilman","f":"Max","p":"D","r":3,"s":{"s":"4","n":"1","a":"4","Os":"9","On":"2","Oa":"4.5","Od":"0.5","Dp":"2","p":{"14":{"n":4}}},"c":69},{"i":3352,"n":"John","f":"Cameron","p":"D","r":1,"s":{"n":0},"c":69},{"i":3501,"n":"Ennis","f":"Niall","p":"A","r":3,"s":{"n":0},"c":69},{"i":3659,"n":"Rafa Mir","f":"","p":"A","r":5,"s":{"n":0},"c":69},{"i":3724,"n":"Roderick Miranda","f":"","p":"D","r":3,"s":{"n":0},"c":69},{"i":4258,"n":"Bruno Jordao","f":"","p":"M","r":1,"s":{"n":0},"c":69},{"i":4282,"n":"Pedro Neto","f":"","p":"M","r":7,"s":{"s":"46","n":"10","a":"4.6","d":"0.73","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Os":"46","On":"10","Oa":"4.6","Od":"0.73","Ap":"10","p":{"2":{"n":4,"s":1},"3":{"n":4.5,"s":1},"4":{"n":4,"s":1},"6":{"n":4,"s":1},"7":{"n":6},"10":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4,"s":1},"15":{"n":6,"s":1},"16":{"n":4.5,"s":1}}},"c":69},{"i":4380,"n":"Cutrone","f":"Patrick","p":"A","r":8,"s":{"g":"2","s":"51","n":"11","a":"4.68","d":"0.65","Sg":"1","Ss":"10","Sn":"2","Sa":"5.25","Sd":"0.75","Og":"2","Os":"51","On":"11","Oa":"4.68","Od":"0.65","Ap":"11","p":{"1":{"n":4,"s":1},"2":{"n":4.5,"s":1},"4":{"n":4.5},"5":{"n":6,"g":1,"s":1},"6":{"n":4.5,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5},"9":{"n":4.5},"12":{"n":4.5,"s":1},"15":{"n":6,"g":1,"s":1},"16":{"n":4.5,"s":1}}},"c":69},{"i":5431,"n":"Sanderson","f":"Dion","p":"D","r":1,"s":{"n":0},"c":69},{"i":5988,"n":"S\u00f6ndergaard","f":"Andreas","p":"G","r":1,"s":{"n":0},"c":69},{"i":5992,"n":"Perry","f":"Taylor","p":"M","r":1,"s":{"n":0},"c":69},{"i":133,"n":"Amadou","f":"Ibrahim","p":"M","r":9,"s":{"s":"44","n":"10","a":"4.45","d":"1.11","Os":"98","On":"21","Oa":"4.69","Od":"0.98","Mp":"15","Dp":"6","p":{"4":{"n":4.5,"s":1},"5":{"n":5},"6":{"n":3.5},"7":{"n":4},"8":{"n":3},"9":{"n":6.5},"10":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":6},"15":{"n":3.5}}},"c":76},{"i":872,"n":"Byram","f":"Sam","p":"D","r":10,"s":{"s":"38","n":"8","a":"4.81","d":"0.79","Ss":"19","Sn":"4","Sa":"4.75","Sd":"0.83","Os":"38","On":"8","Oa":"4.81","Od":"0.79","Dp":"8","p":{"2":{"n":5,"s":1},"5":{"n":6},"6":{"n":4},"10":{"n":4.5,"s":1},"13":{"n":6},"14":{"n":5},"15":{"n":4},"16":{"n":4}}},"c":76},{"i":1101,"n":"Husband","f":"James","p":"D","r":1,"s":{"n":0},"c":76},{"i":1352,"n":"Roberts","f":"Patrick","p":"M","r":3,"s":{"s":"15","n":"3","a":"5","Os":"55","On":"12","Oa":"4.58","Od":"0.49","Mp":"12","p":{"6":{"n":5,"s":1},"7":{"n":5,"s":1},"8":{"n":5,"s":1}}},"c":76},{"i":1506,"n":"Hanley","f":"Grant","p":"D","r":6,"s":{"ao":"1","s":"11","n":"3","a":"3.83","d":"1.43","Oao":"1","Os":"11","On":"3","Oa":"3.83","Od":"1.43","Dp":"3","p":{"1":{"n":2,"a":1},"2":{"n":5.5},"3":{"n":4}}},"c":76},{"i":1521,"n":"Krul","f":"Tim","p":"G","r":14,"s":{"s":"78","n":"14","a":"5.61","d":"1.37","Ss":"46","Sn":"8","Sa":"5.75","Sd":"1.58","Os":"78","On":"14","Oa":"5.61","Od":"1.37","Gp":"14","p":{"1":{"n":4.5},"2":{"n":5.5},"3":{"n":4},"4":{"n":6},"5":{"n":7},"6":{"n":5.5},"9":{"n":6},"10":{"n":8.5},"11":{"n":5},"12":{"n":4},"13":{"n":8},"14":{"n":5.5},"15":{"n":5},"16":{"n":4}}},"c":76},{"i":3647,"n":"Aarons","f":"Max","p":"D","r":10,"s":{"s":"58","n":"14","a":"4.14","d":"0.97","Ss":"42","Sn":"10","Sa":"4.2","Sd":"1.05","Os":"58","On":"14","Oa":"4.14","Od":"0.97","Dp":"14","p":{"1":{"n":4},"2":{"n":5},"3":{"n":3},"4":{"n":4},"7":{"n":4.5},"8":{"n":2.5},"9":{"n":5},"10":{"n":3.5},"11":{"n":3.5},"12":{"n":4},"13":{"n":6},"14":{"n":5.5},"15":{"n":3},"16":{"n":4.5}}},"c":76},{"i":3654,"n":"Payne","f":"Alfie","p":"M","r":1,"s":{"n":0},"c":76},{"i":3657,"n":"Timi Odusina","f":"","p":"D","r":1,"s":{"n":0},"c":76},{"i":3670,"n":"Godfrey","f":"Ben","p":"D","r":10,"s":{"s":"73","n":"16","a":"4.59","d":"1","Ss":"73","Sn":"16","Sa":"4.59","Sd":"1","Os":"73","On":"16","Oa":"4.59","Od":"1","Dp":"16","p":{"1":{"n":4},"2":{"n":6},"3":{"n":5},"4":{"n":4},"5":{"n":4.5},"6":{"n":4},"7":{"n":5},"8":{"n":2.5},"9":{"n":5.5},"10":{"n":3},"11":{"n":5},"12":{"n":4.5},"13":{"n":6.5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":4}}},"c":76},{"i":3671,"n":"Buend\u00eda","f":"Emiliano","p":"M","r":11,"s":{"s":"83","n":"16","a":"5.22","d":"1.06","Ss":"83","Sn":"16","Sa":"5.22","Sd":"1.06","Os":"83","On":"16","Oa":"5.22","Od":"1.06","Mp":"16","p":{"1":{"n":5},"2":{"n":5.5},"3":{"n":6},"4":{"n":4},"5":{"n":7.5},"6":{"n":4.5},"7":{"n":6},"8":{"n":4},"9":{"n":5.5},"10":{"n":4},"11":{"n":5.5},"12":{"n":3.5},"13":{"n":5,"s":1},"14":{"n":5.5,"s":1},"15":{"n":5,"s":1},"16":{"n":7}}},"c":76},{"i":3674,"n":"Lewis","f":"Jamal","p":"D","r":8,"s":{"s":"54","n":"13","a":"4.19","d":"0.93","Ss":"4","Sn":"1","Sa":"4.5","Os":"54","On":"13","Oa":"4.19","Od":"0.93","Dp":"13","p":{"1":{"n":3.5},"2":{"n":6},"3":{"n":3},"4":{"n":5},"5":{"n":5},"6":{"n":4},"7":{"n":5},"8":{"n":3},"9":{"n":5},"10":{"n":3},"11":{"n":3.5},"12":{"n":4},"16":{"n":4.5,"s":1}}},"c":76},{"i":3675,"n":"Cantwell","f":"Todd","p":"M","r":13,"s":{"g":"4","s":"83","n":"16","a":"5.22","d":"1.37","Sg":"4","Ss":"83","Sn":"16","Sa":"5.22","Sd":"1.37","Og":"4","Os":"83","On":"16","Oa":"5.22","Od":"1.37","Mp":"16","p":{"1":{"n":4},"2":{"n":7},"3":{"n":5.5,"g":1},"4":{"n":4},"5":{"n":7,"g":1},"6":{"n":5.5},"7":{"n":3.5},"8":{"n":5},"9":{"n":5},"10":{"n":2.5},"11":{"n":4.5,"s":1},"12":{"n":5.5,"s":1},"13":{"n":8,"g":1},"14":{"n":6.5,"g":1},"15":{"n":5},"16":{"n":5,"s":1}}},"c":76},{"i":3676,"n":"Zimmermann","f":"Christoph","p":"D","r":10,"s":{"s":"24","n":"5","a":"4.9","d":"0.58","Ss":"20","Sn":"4","Sa":"5","Sd":"0.61","Os":"24","On":"5","Oa":"4.9","Od":"0.58","Dp":"5","p":{"4":{"n":4.5},"13":{"n":6},"14":{"n":5},"15":{"n":4.5},"16":{"n":4.5}}},"c":76},{"i":3683,"n":"Srbeny","f":"Dennis","p":"A","r":5,"s":{"g":"1","s":"32","n":"7","a":"4.64","d":"0.58","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"32","On":"7","Oa":"4.64","Od":"0.58","Ap":"7","p":{"3":{"n":4.5,"s":1},"5":{"n":4.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"11":{"n":4.5,"s":1},"13":{"n":6,"g":1,"s":1},"16":{"n":4,"s":1}}},"c":76},{"i":3684,"n":"Oxborough","f":"Aston","p":"G","r":1,"s":{"n":0},"c":76},{"i":3704,"n":"Thompson","f":"Louis","p":"M","r":3,"s":{"n":0},"c":76},{"i":3706,"n":"Heise","f":"Philip","p":"D","r":1,"s":{"n":0},"c":76},{"i":3708,"n":"Trybull","f":"Tom","p":"M","r":10,"s":{"s":"51","n":"10","a":"5.15","d":"1.1","Os":"51","On":"10","Oa":"5.15","Od":"1.1","Mp":"10","p":{"1":{"n":3.5},"2":{"n":7},"3":{"n":4.5},"4":{"n":5},"9":{"n":5.5,"s":1},"11":{"n":4.5},"12":{"n":5},"13":{"n":7},"14":{"n":5.5},"15":{"n":4}}},"c":76},{"i":3709,"n":"Hern\u00e1ndez","f":"Onel","p":"M","r":11,"s":{"g":"1","s":"48","n":"9","a":"5.33","d":"1.11","Sg":"1","Ss":"43","Sn":"8","Sa":"5.44","Sd":"1.13","Og":"1","Os":"48","On":"9","Oa":"5.33","Od":"1.11","Mp":"9","p":{"1":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":6.5,"g":1,"s":1},"11":{"n":4},"12":{"n":5},"13":{"n":7},"14":{"n":7},"15":{"n":4.5},"16":{"n":4.5}}},"c":76},{"i":3712,"n":"Leitner","f":"Moritz","p":"M","r":7,"s":{"s":"43","n":"9","a":"4.78","d":"1.11","Os":"43","On":"9","Oa":"4.78","Od":"1.11","Mp":"9","p":{"1":{"n":5,"s":1},"2":{"n":7},"3":{"n":5},"4":{"n":4},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":3},"9":{"n":5},"10":{"n":3.5}}},"c":76},{"i":3715,"n":"Klose","f":"Timm","p":"D","r":1,"s":{"n":0},"c":76},{"i":3717,"n":"Drmic","f":"Josip","p":"A","r":3,"s":{"g":"1","s":"36","n":"8","a":"4.5","d":"0.61","Og":"1","Os":"36","On":"8","Oa":"4.5","Od":"0.61","Ap":"8","p":{"1":{"n":4.5,"s":1},"4":{"n":4,"s":1},"5":{"n":4.5,"s":1},"6":{"n":4,"s":1},"7":{"n":4,"s":1},"8":{"n":6,"g":1,"s":1},"11":{"n":4.5,"s":1},"12":{"n":4.5,"s":1}}},"c":76},{"i":3720,"n":"McLean","f":"Kenny","p":"M","r":11,"s":{"g":"1","s":"76","n":"15","a":"5.07","d":"1.25","Sg":"1","Ss":"72","Sn":"14","Sa":"5.18","Sd":"1.22","Og":"1","Os":"76","On":"15","Oa":"5.07","Od":"1.25","Mp":"15","p":{"1":{"n":3.5},"3":{"n":5,"s":1},"4":{"n":5.5,"s":1},"5":{"n":8,"g":1},"6":{"n":5},"7":{"n":5},"8":{"n":2.5},"9":{"n":4.5},"10":{"n":5},"11":{"n":4},"12":{"n":5},"13":{"n":7},"14":{"n":5.5},"15":{"n":5},"16":{"n":5.5}}},"c":76},{"i":3722,"n":"Stiepermann","f":"Marco","p":"M","r":7,"s":{"s":"53","n":"12","a":"4.46","d":"0.72","Os":"53","On":"12","Oa":"4.46","Od":"0.72","Mp":"12","p":{"1":{"n":4},"2":{"n":6.5},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"6":{"n":4.5},"7":{"n":4.5},"8":{"n":3.5},"10":{"n":4,"s":1},"11":{"n":4.5},"12":{"n":4.5},"15":{"n":4,"s":1}}},"c":76},{"i":3723,"n":"Marshall","f":"Ben","p":"M","r":5,"s":{"n":0},"c":76},{"i":3728,"n":"Pukki","f":"Teemu","p":"A","r":26,"s":{"g":"8","s":"88","n":"16","a":"5.5","d":"1.43","Sg":"8","Ss":"88","Sn":"16","Sa":"5.5","Sd":"1.43","Og":"8","Os":"88","On":"16","Oa":"5.5","Od":"1.43","Ap":"16","p":{"1":{"n":6,"g":1},"2":{"n":9,"g":3},"3":{"n":7,"g":1},"4":{"n":4.5},"5":{"n":7,"g":1},"6":{"n":4.5},"7":{"n":5},"8":{"n":3.5},"9":{"n":5},"10":{"n":3.5},"11":{"n":4.5},"12":{"n":5},"13":{"n":6},"14":{"n":7,"g":1},"15":{"n":6,"g":1},"16":{"n":4.5}}},"c":76},{"i":3729,"n":"N\u00e9lson Oliveira","f":"","p":"A","r":5,"s":{"n":0},"c":76},{"i":3739,"n":"Vrancic","f":"Mario","p":"M","r":8,"s":{"s":"18","n":"4","a":"4.5","d":"0.61","Ss":"3","Sn":"1","Sa":"3.5","Os":"18","On":"4","Oa":"4.5","Od":"0.61","Mp":"4","p":{"2":{"n":5,"s":1},"3":{"n":4.5,"s":1},"12":{"n":5,"s":1},"16":{"n":3.5}}},"c":76},{"i":3741,"n":"F\u00e4hrmann","f":"Ralf","p":"G","r":7,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"7":{"n":5}}},"c":76},{"i":3747,"n":"Tettey","f":"Alexander","p":"M","r":11,"s":{"g":"1","s":"54","n":"10","a":"5.45","d":"0.91","Sg":"1","Ss":"13","Sn":"2","Sa":"6.75","Sd":"0.25","Og":"1","Os":"54","On":"10","Oa":"5.45","Od":"0.91","Mp":"8","Dp":"2","p":{"2":{"n":5,"s":1},"5":{"n":5.5},"6":{"n":4.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":4.5},"12":{"n":4},"13":{"n":6},"15":{"n":7,"s":1},"16":{"n":6.5,"g":1}}},"c":76},{"i":3748,"n":"McGovern","f":"Michael","p":"G","r":1,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Gp":"2","p":{"7":{"n":4.5,"s":1},"8":{"n":4.5}}},"c":76},{"i":6119,"n":"Idah","f":"Adam","p":"A","r":1,"s":{"n":0},"c":76},{"i":720,"n":"Jagielka","f":"Phil","p":"D","r":5,"s":{"s":"20","n":"4","a":"5","d":"0.35","Og":"1","Os":"46","On":"9","Oa":"5.11","Od":"0.87","Dp":"9","p":{"2":{"n":5,"s":1},"6":{"n":5.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5}}},"c":77},{"i":980,"n":"McBurnie","f":"Oliver","p":"A","r":8,"s":{"g":"2","s":"65","n":"14","a":"4.68","d":"0.77","Sg":"1","Ss":"20","Sn":"4","Sa":"5","Sd":"0.94","Og":"2","Os":"65","On":"14","Oa":"4.68","Od":"0.77","Ap":"14","p":{"1":{"n":4.5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":6,"g":1,"s":1},"4":{"n":4.5},"5":{"n":3.5},"6":{"n":5},"7":{"n":4},"8":{"n":4},"9":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":6.5,"g":1,"s":1},"14":{"n":5,"s":1},"15":{"n":4},"16":{"n":4.5,"s":1}}},"c":77},{"i":1071,"n":"Mousset","f":"Lys","p":"A","r":16,"s":{"g":"5","s":"68","n":"13","a":"5.27","d":"0.91","Sg":"5","Ss":"68","Sn":"13","Sa":"5.27","Sd":"0.91","Og":"6","Os":"141","On":"29","Oa":"4.88","Od":"0.74","Ap":"29","p":{"4":{"n":5,"s":1},"5":{"n":4.5,"s":1},"6":{"n":6,"g":1,"s":1},"7":{"n":4,"s":1},"8":{"n":4.5,"s":1},"9":{"n":6,"g":1},"10":{"n":6,"g":1,"s":1},"11":{"n":7},"12":{"n":5},"13":{"n":6,"g":1},"14":{"n":6,"g":1},"15":{"n":4.5,"s":1},"16":{"n":4}}},"c":77},{"i":1085,"n":"Besic","f":"Muhamed","p":"M","r":3,"s":{"s":"11","n":"2","a":"5.5","Ss":"5","Sn":"1","Sa":"5.5","Os":"11","On":"2","Oa":"5.5","Mp":"2","p":{"10":{"n":5.5,"s":1},"16":{"n":5.5,"s":1}}},"c":77},{"i":2501,"n":"Norwood","f":"Oliver","p":"M","r":15,"s":{"s":"87","n":"16","a":"5.44","d":"0.68","Ss":"87","Sn":"16","Sa":"5.44","Sd":"0.68","Os":"87","On":"16","Oa":"5.44","Od":"0.68","Mp":"16","p":{"1":{"n":6},"2":{"n":6.5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":6},"6":{"n":5.5},"7":{"n":5},"8":{"n":6},"9":{"n":6},"10":{"n":4.5},"11":{"n":6},"12":{"n":5.5},"13":{"n":5},"14":{"n":6},"15":{"n":4},"16":{"n":5}}},"c":77},{"i":3691,"n":"Robinson","f":"Callum","p":"A","r":7,"s":{"g":"1","s":"59","n":"13","a":"4.54","d":"0.84","Ss":"4","Sn":"1","Sa":"4","Og":"1","Os":"59","On":"13","Oa":"4.54","Od":"0.84","Ap":"13","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":3.5},"4":{"n":7,"g":1},"5":{"n":4.5,"s":1},"6":{"n":4.5},"7":{"n":4},"8":{"n":4.5},"10":{"n":4},"12":{"n":4,"s":1},"13":{"n":5.5,"s":1},"14":{"n":4.5,"s":1},"16":{"n":4,"s":1}}},"c":77},{"i":3694,"n":"Lundstram","f":"John","p":"D","r":17,"s":{"g":"3","s":"88","n":"16","a":"5.5","d":"1.15","Sg":"3","Ss":"88","Sn":"16","Sa":"5.5","Sd":"1.15","Og":"3","Os":"88","On":"16","Oa":"5.5","Od":"1.15","Mp":"16","p":{"1":{"n":6},"2":{"n":7.5,"g":1},"3":{"n":4},"4":{"n":5},"5":{"n":5},"6":{"n":7.5},"7":{"n":5.5},"8":{"n":4.5},"9":{"n":5.5},"10":{"n":5},"11":{"n":8,"g":2},"12":{"n":5},"13":{"n":4.5},"14":{"n":5},"15":{"n":4.5},"16":{"n":5.5}}},"c":77},{"i":3695,"n":"O'Connell","f":"Jack","p":"D","r":14,"s":{"s":"85","n":"16","a":"5.31","d":"0.88","Ss":"85","Sn":"16","Sa":"5.31","Sd":"0.88","Os":"85","On":"16","Oa":"5.31","Od":"0.88","Dp":"16","p":{"1":{"n":5},"2":{"n":6},"3":{"n":4.5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":7},"7":{"n":5.5},"8":{"n":5.5},"9":{"n":7},"10":{"n":6},"11":{"n":6},"12":{"n":4.5},"13":{"n":5},"14":{"n":4.5},"15":{"n":4},"16":{"n":5.5}}},"c":77},{"i":3701,"n":"Heneghan","f":"Ben","p":"D","r":3,"s":{"n":0},"c":77},{"i":3702,"n":"Carruthers","f":"Samir","p":"M","r":4,"s":{"n":0},"c":77},{"i":3703,"n":"Bryan","f":"Kean","p":"D","r":1,"s":{"n":0},"c":77},{"i":3705,"n":"Egan","f":"John","p":"D","r":16,"s":{"s":"80","n":"15","a":"5.33","d":"0.85","Ss":"14","Sn":"3","Sa":"4.83","Sd":"1.03","Os":"80","On":"15","Oa":"5.33","Od":"0.85","Dp":"15","p":{"1":{"n":5.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":4},"5":{"n":5},"6":{"n":7},"7":{"n":6},"8":{"n":5.5},"9":{"n":6},"10":{"n":5.5},"11":{"n":6},"12":{"n":5},"14":{"n":5},"15":{"n":3.5},"16":{"n":6}}},"c":77},{"i":3713,"n":"Kieron Freeman","f":"","p":"D","r":1,"s":{"n":0},"c":77},{"i":3716,"n":"Baldock","f":"George","p":"D","r":19,"s":{"g":"2","s":"85","n":"16","a":"5.34","d":"0.88","Sg":"2","Ss":"85","Sn":"16","Sa":"5.34","Sd":"0.88","Og":"2","Os":"85","On":"16","Oa":"5.34","Od":"0.88","Mp":"16","p":{"1":{"n":4},"2":{"n":6},"3":{"n":5.5},"4":{"n":4.5},"5":{"n":4.5},"6":{"n":5.5},"7":{"n":5},"8":{"n":5},"9":{"n":6},"10":{"n":5},"11":{"n":6.5},"12":{"n":6,"g":1},"13":{"n":4.5},"14":{"n":5.5},"15":{"n":4.5},"16":{"n":7.5,"g":1}}},"c":77},{"i":3721,"n":"Moore","f":"Simon","p":"G","r":7,"s":{"s":"2","n":"1","a":"2.5","Os":"2","On":"1","Oa":"2.5","Gp":"1","p":{"13":{"n":2.5}}},"c":77},{"i":3725,"n":"Stevens","f":"Enda","p":"D","r":14,"s":{"g":"1","s":"81","n":"16","a":"5.09","d":"0.87","Sg":"1","Ss":"81","Sn":"16","Sa":"5.09","Sd":"0.87","Og":"1","Os":"81","On":"16","Oa":"5.09","Od":"0.87","Mp":"16","p":{"1":{"n":4.5},"2":{"n":5.5},"3":{"n":4.5},"4":{"n":5.5},"5":{"n":4.5},"6":{"n":6},"7":{"n":5.5},"8":{"n":5},"9":{"n":5.5},"10":{"n":6},"11":{"n":6.5},"12":{"n":4},"13":{"n":4},"14":{"n":4},"15":{"n":4},"16":{"n":6.5,"g":1}}},"c":77},{"i":3726,"n":"Duffy","f":"Mark","p":"M","r":12,"s":{"n":0},"c":77},{"i":3727,"n":"Holmes","f":"Ricky","p":"M","r":2,"s":{"n":0},"c":77},{"i":3731,"n":"Luke Freeman","f":"","p":"M","r":6,"s":{"s":"38","n":"8","a":"4.75","d":"0.25","Os":"38","On":"8","Oa":"4.75","Od":"0.25","Mp":"8","p":{"1":{"n":5,"s":1},"2":{"n":4.5,"s":1},"3":{"n":4.5},"4":{"n":4.5},"9":{"n":5,"s":1},"12":{"n":5,"s":1},"14":{"n":5,"s":1},"15":{"n":4.5,"s":1}}},"c":77},{"i":3732,"n":"Evans","f":"Ched","p":"A","r":5,"s":{"n":0},"c":77},{"i":3734,"n":"Fleck","f":"John","p":"M","r":16,"s":{"g":"2","s":"79","n":"14","a":"5.64","d":"0.83","Sg":"2","Ss":"69","Sn":"12","Sa":"5.79","Sd":"0.8","Og":"2","Os":"79","On":"14","Oa":"5.64","Od":"0.83","Mp":"14","p":{"1":{"n":5},"2":{"n":4.5},"5":{"n":5.5},"6":{"n":6.5},"7":{"n":6},"8":{"n":5.5},"9":{"n":5.5},"10":{"n":5.5},"11":{"n":7.5,"g":1},"12":{"n":5.5},"13":{"n":6.5,"g":1},"14":{"n":6},"15":{"n":4},"16":{"n":5.5}}},"c":77},{"i":3738,"n":"Basham","f":"Chris","p":"D","r":12,"s":{"s":"79","n":"16","a":"4.97","d":"0.99","Ss":"79","Sn":"16","Sa":"4.97","Sd":"0.99","Os":"79","On":"16","Oa":"4.97","Od":"0.99","Dp":"16","p":{"1":{"n":4.5},"2":{"n":6.5},"3":{"n":3},"4":{"n":5},"5":{"n":4},"6":{"n":6},"7":{"n":4},"8":{"n":5.5},"9":{"n":6},"10":{"n":6},"11":{"n":5.5},"12":{"n":4.5},"13":{"n":4.5},"14":{"n":6},"15":{"n":3.5},"16":{"n":5}}},"c":77},{"i":3743,"n":"McGoldrick","f":"David","p":"A","r":11,"s":{"s":"60","n":"13","a":"4.65","d":"0.69","Ss":"39","Sn":"8","Sa":"4.94","Sd":"0.73","Os":"60","On":"13","Oa":"4.65","Od":"0.69","Ap":"13","p":{"1":{"n":4.5},"2":{"n":4.5},"3":{"n":4},"4":{"n":4,"s":1},"5":{"n":4},"9":{"n":4},"10":{"n":5},"11":{"n":6},"12":{"n":6},"13":{"n":5},"14":{"n":4},"15":{"n":4.5,"s":1},"16":{"n":5}}},"c":77},{"i":3745,"n":"Sharp","f":"Billy","p":"A","r":7,"s":{"g":"1","s":"40","n":"9","a":"4.5","d":"0.88","Og":"1","Os":"40","On":"9","Oa":"4.5","Od":"0.88","Ap":"9","p":{"1":{"n":6,"g":1,"s":1},"3":{"n":5,"s":1},"5":{"n":2.5,"s":1},"8":{"n":4.5,"s":1},"9":{"n":4.5,"s":1},"10":{"n":4.5,"s":1},"11":{"n":5,"s":1},"13":{"n":4.5,"s":1},"15":{"n":4}}},"c":77},{"i":3746,"n":"Stearman","f":"Richard","p":"D","r":1,"s":{"n":0},"c":77},{"i":3749,"n":"Clarke","f":"Leon","p":"A","r":1,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Ap":"1","p":{"7":{"n":4,"s":1}}},"c":77},{"i":3750,"n":"Wright","f":"Jake","p":"D","r":3,"s":{"n":0},"c":77},{"i":5446,"n":"Henderson","f":"Dean","p":"G","r":16,"s":{"s":"83","n":"15","a":"5.53","d":"0.9","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.94","Os":"83","On":"15","Oa":"5.53","Od":"0.9","Gp":"15","p":{"1":{"n":5},"2":{"n":6.5},"3":{"n":4},"4":{"n":5},"5":{"n":6},"6":{"n":7},"7":{"n":4},"8":{"n":6},"9":{"n":6},"10":{"n":5.5},"11":{"n":6},"12":{"n":6},"14":{"n":6},"15":{"n":4},"16":{"n":6}}},"c":77},{"i":5447,"n":"Osborn","f":"Ben","p":"M","r":1,"s":{"s":"10","n":"2","a":"5","Os":"10","On":"2","Oa":"5","Mp":"2","p":{"4":{"n":5,"s":1},"6":{"n":5,"s":1}}},"c":77},{"i":5450,"n":"Morrison","f":"Ravel","p":"M","r":1,"s":{"s":"4","n":"1","a":"4.5","Os":"4","On":"1","Oa":"4.5","Mp":"1","p":{"3":{"n":4.5,"s":1}}},"c":77},{"i":6121,"n":"Verrips","f":"Michael","p":"G","r":1,"s":{"n":0},"c":77},{"i":193,"n":"El Ghazi","f":"Anwar","p":"A","r":13,"s":{"g":"3","s":"74","n":"14","a":"5.32","d":"1.08","Ss":"4","Sn":"1","Sa":"4","Og":"3","Os":"74","On":"14","Oa":"5.32","Od":"1.08","Mp":"4","Ap":"10","p":{"1":{"n":4},"2":{"n":4},"3":{"n":7,"g":1,"s":1},"5":{"n":5},"6":{"n":6},"7":{"n":6.5,"g":1},"8":{"n":7},"9":{"n":4},"10":{"n":5,"s":1},"11":{"n":5},"12":{"n":5},"13":{"n":6.5,"g":1},"14":{"n":5.5},"16":{"n":4}}},"c":78},{"i":344,"n":"Guilbert","f":"Frederic","p":"D","r":11,"s":{"s":"64","n":"13","a":"4.96","d":"0.69","Ss":"5","Sn":"1","Sa":"5","Og":"1","Os":"154","On":"32","Oa":"4.83","Od":"0.96","Mp":"4","Dp":"28","p":{"3":{"n":6},"4":{"n":4.5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5},"9":{"n":6.5},"10":{"n":4},"11":{"n":5},"12":{"n":4},"13":{"n":5},"14":{"n":4.5},"16":{"n":5,"s":1}}},"c":78},{"i":708,"n":"Heaton","f":"Tom","p":"G","r":14,"s":{"ao":"1","s":"81","n":"15","a":"5.4","d":"0.99","Sao":"1","Ss":"23","Sn":"4","Sa":"5.88","Sd":"1.24","Oao":"1","Os":"185","On":"34","Oa":"5.44","Od":"1.13","Gp":"34","p":{"1":{"n":4.5},"2":{"n":4},"3":{"n":6},"4":{"n":6},"5":{"n":5.5},"6":{"n":5},"7":{"n":4},"8":{"n":6},"9":{"n":6.5},"10":{"n":5},"11":{"n":5},"13":{"n":7},"14":{"n":5.5,"a":1},"15":{"n":7},"16":{"n":4}}},"c":78},{"i":939,"n":"Targett","f":"Matt","p":"D","r":13,"s":{"g":"1","s":"52","n":"10","a":"5.25","d":"1.33","Sg":"1","Ss":"52","Sn":"10","Sa":"5.25","Sd":"1.33","Og":"2","Os":"109","On":"21","Oa":"5.21","Od":"1.1","Mp":"8","Dp":"13","p":{"7":{"n":5.5},"8":{"n":6},"9":{"n":7,"g":1},"10":{"n":3.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":7},"14":{"n":6.5},"15":{"n":4.5},"16":{"n":3}}},"c":78},{"i":1059,"n":"Mings","f":"Tyrone","p":"D","r":16,"s":{"g":"1","s":"85","n":"16","a":"5.31","d":"0.77","Sg":"1","Ss":"85","Sn":"16","Sa":"5.31","Sd":"0.77","Og":"1","Os":"95","On":"18","Oa":"5.31","Od":"0.73","Dp":"18","p":{"1":{"n":6.5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":5.5},"6":{"n":4.5},"7":{"n":5},"8":{"n":5.5},"9":{"n":6},"10":{"n":4.5},"11":{"n":5},"12":{"n":4.5},"13":{"n":7},"14":{"n":6,"g":1},"15":{"n":4.5},"16":{"n":4.5}}},"c":78},{"i":1885,"n":"Douglas Luiz","f":"","p":"M","r":12,"s":{"g":"2","s":"74","n":"14","a":"5.29","d":"0.72","Sg":"1","Ss":"47","Sn":"9","Sa":"5.28","Sd":"0.85","Og":"2","Os":"144","On":"28","Oa":"5.16","Od":"0.82","Mp":"28","p":{"1":{"n":5,"s":1},"2":{"n":5.5,"g":1},"3":{"n":6},"4":{"n":5},"5":{"n":5,"s":1},"8":{"n":6.5,"g":1,"s":1},"9":{"n":5.5,"s":1},"10":{"n":4.5},"11":{"n":5},"12":{"n":5},"13":{"n":6},"14":{"n":5.5},"15":{"n":6,"s":1},"16":{"n":3.5}}},"c":78},{"i":2587,"n":"Hause","f":"Kortney","p":"D","r":1,"s":{"n":0},"c":78},{"i":2823,"n":"Engels","f":"Bj\u00f6rn","p":"D","r":10,"s":{"s":"58","n":"12","a":"4.83","d":"1.01","Ss":"3","Sn":"1","Sa":"3.5","Og":"1","Oao":"1","Os":"163","On":"32","Oa":"5.11","Od":"0.97","Dp":"32","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":6},"4":{"n":5},"5":{"n":5.5},"6":{"n":3.5},"7":{"n":4.5},"8":{"n":7},"9":{"n":5},"10":{"n":3.5},"11":{"n":5},"16":{"n":3.5,"s":1}}},"c":78},{"i":3651,"n":"Ramsey","f":"Jacob","p":"M","r":1,"s":{"n":0},"c":78},{"i":3653,"n":"Revan","f":"Dominic","p":"D","r":1,"s":{"n":0},"c":78},{"i":3656,"n":"Davis","f":"Keinan","p":"M","r":2,"s":{"s":"26","n":"6","a":"4.42","d":"0.45","Os":"26","On":"6","Oa":"4.42","Od":"0.45","Ap":"6","p":{"2":{"n":4,"s":1},"4":{"n":5,"s":1},"5":{"n":4,"s":1},"7":{"n":4.5,"s":1},"9":{"n":5,"s":1},"10":{"n":4,"s":1}}},"c":78},{"i":3661,"n":"Doyle-Hayes","f":"Jake","p":"M","r":3,"s":{"n":0},"c":78},{"i":3662,"n":"Wesley","f":"","p":"A","r":16,"s":{"g":"4","s":"74","n":"16","a":"4.66","d":"1.35","Sg":"4","Ss":"74","Sn":"16","Sa":"4.66","Sd":"1.35","Og":"4","Os":"74","On":"16","Oa":"4.66","Od":"1.35","Ap":"16","p":{"1":{"n":3.5},"2":{"n":5},"3":{"n":7,"g":1},"4":{"n":5},"5":{"n":4.5},"6":{"n":6,"g":1},"7":{"n":4},"8":{"n":8,"g":2},"9":{"n":4},"10":{"n":3},"11":{"n":3},"12":{"n":4.5},"13":{"n":5},"14":{"n":5},"15":{"n":3.5},"16":{"n":3.5}}},"c":78},{"i":3669,"n":"Konsa Ngoyo","f":"Ezri","p":"D","r":10,"s":{"s":"28","n":"6","a":"4.67","d":"0.8","Ss":"23","Sn":"5","Sa":"4.6","Sd":"0.86","Os":"28","On":"6","Oa":"4.67","Od":"0.8","Dp":"6","p":{"8":{"n":5,"s":1},"12":{"n":4},"13":{"n":6},"14":{"n":4.5},"15":{"n":5},"16":{"n":3.5}}},"c":78},{"i":3677,"n":"Clark","f":"Mitchell","p":"D","r":3,"s":{"n":0},"c":78},{"i":3678,"n":"Bree","f":"James","p":"D","r":3,"s":{"n":0},"c":78},{"i":3680,"n":"O'Hare","f":"Callum","p":"M","r":1,"s":{"n":0},"c":78},{"i":3688,"n":"Hepburn-Murphy","f":"Rushian","p":"A","r":7,"s":{"n":0},"c":78},{"i":3689,"n":"Green","f":"Andre","p":"M","r":7,"s":{"n":0},"c":78},{"i":3698,"n":"McGinn","f":"John","p":"M","r":23,"s":{"g":"3","s":"98","n":"16","a":"6.13","d":"1.04","Sg":"3","Ss":"98","Sn":"16","Sa":"6.13","Sd":"1.04","Og":"3","Os":"98","On":"16","Oa":"6.13","Od":"1.04","Mp":"16","p":{"1":{"n":6,"g":1},"2":{"n":6},"3":{"n":7},"4":{"n":6},"5":{"n":6},"6":{"n":8,"g":1},"7":{"n":7,"g":1},"8":{"n":7},"9":{"n":7},"10":{"n":4},"11":{"n":7},"12":{"n":5.5},"13":{"n":5.5},"14":{"n":6},"15":{"n":6},"16":{"n":4}}},"c":78},{"i":3700,"n":"Grealish","f":"Jack","p":"M","r":26,"s":{"g":"4","s":"87","n":"14","a":"6.25","d":"0.94","Sg":"2","Ss":"25","Sn":"4","Sa":"6.25","Sd":"0.9","Og":"4","Os":"87","On":"14","Oa":"6.25","Od":"0.94","Mp":"8","Ap":"6","p":{"1":{"n":6},"2":{"n":6},"3":{"n":6},"4":{"n":5.5},"5":{"n":6},"6":{"n":7},"7":{"n":6},"8":{"n":7.5,"g":1},"9":{"n":8,"g":1},"10":{"n":4.5},"13":{"n":7.5},"14":{"n":6.5,"g":1},"15":{"n":5},"16":{"n":6,"g":1}}},"c":78},{"i":3707,"n":"Nyland","f":"\u00d8rjan","p":"G","r":7,"s":{"s":"4","n":"1","a":"4","Os":"4","On":"1","Oa":"4","Gp":"1","p":{"12":{"n":4,"s":1}}},"c":78},{"i":3710,"n":"Jota","f":"","p":"M","r":5,"s":{"s":"30","n":"6","a":"5","d":"1","Os":"30","On":"6","Oa":"5","Od":"1","Mp":"4","Ap":"2","p":{"1":{"n":5,"s":1},"2":{"n":5,"s":1},"3":{"n":7},"4":{"n":4},"5":{"n":4},"15":{"n":5,"s":1}}},"c":78},{"i":3711,"n":"Kalinic","f":"Lovre","p":"G","r":1,"s":{"n":0},"c":78},{"i":3714,"n":"Hourihane","f":"Conor","p":"M","r":11,"s":{"g":"2","s":"58","n":"10","a":"5.85","d":"1.16","Og":"2","Os":"58","On":"10","Oa":"5.85","Od":"1.16","Mp":"10","p":{"1":{"n":6},"4":{"n":5,"s":1},"6":{"n":5,"s":1},"7":{"n":5.5},"8":{"n":8,"g":1},"9":{"n":5.5},"11":{"n":5,"s":1},"13":{"n":8,"g":1},"14":{"n":6},"15":{"n":4.5}}},"c":78},{"i":3718,"n":"Hogan","f":"Scott","p":"A","r":5,"s":{"n":0},"c":78},{"i":3719,"n":"Steer","f":"Jed","p":"G","r":3,"s":{"s":"5","n":"1","a":"5","Os":"5","On":"1","Oa":"5","Gp":"1","p":{"12":{"n":5}}},"c":78},{"i":3730,"n":"Kodjia","f":"Jonathan","p":"A","r":3,"s":{"s":"9","n":"2","a":"4.5","Os":"9","On":"2","Oa":"4.5","Ap":"2","p":{"1":{"n":4.5,"s":1},"11":{"n":4.5,"s":1}}},"c":78},{"i":3733,"n":"Taylor","f":"Neil","p":"D","r":4,"s":{"s":"38","n":"8","a":"4.81","d":"0.35","Os":"38","On":"8","Oa":"4.81","Od":"0.35","Dp":"8","p":{"1":{"n":4.5},"2":{"n":5},"3":{"n":5.5},"4":{"n":5},"5":{"n":5},"6":{"n":4.5},"7":{"n":4.5,"s":1},"12":{"n":4.5,"s":1}}},"c":78},{"i":3735,"n":"Chester","f":"James","p":"D","r":1,"s":{"n":0},"c":78},{"i":3737,"n":"Lansbury","f":"Henri","p":"M","r":3,"s":{"s":"25","n":"5","a":"5","Os":"25","On":"5","Oa":"5","Mp":"5","p":{"4":{"n":5,"s":1},"6":{"n":5,"s":1},"12":{"n":5,"s":1},"13":{"n":5,"s":1},"14":{"n":5,"s":1}}},"c":78},{"i":3740,"n":"Ahmed El Mohamady","f":"","p":"D","r":8,"s":{"s":"39","n":"8","a":"4.94","d":"1.07","Ss":"9","Sn":"2","Sa":"4.75","Sd":"1.25","Os":"39","On":"8","Oa":"4.94","Od":"1.07","Dp":"8","p":{"1":{"n":4},"2":{"n":7},"3":{"n":5,"s":1},"5":{"n":5,"s":1},"6":{"n":4,"s":1},"11":{"n":5,"s":1},"15":{"n":6},"16":{"n":3.5}}},"c":78},{"i":3742,"n":"Bjarnason","f":"Birkir","p":"M","r":12,"s":{"n":0},"c":78},{"i":5448,"n":"Tr\u00e9z\u00e9guet","f":"","p":"M","r":15,"s":{"g":"3","s":"72","n":"14","a":"5.14","d":"0.97","Sg":"1","Ss":"16","Sn":"3","Sa":"5.33","Sd":"0.62","Og":"3","Os":"72","On":"14","Oa":"5.14","Od":"0.97","Mp":"8","Ap":"6","p":{"1":{"n":5.5},"2":{"n":4},"3":{"n":5},"4":{"n":2.5},"6":{"n":5},"7":{"n":6,"s":1},"8":{"n":5,"s":1},"9":{"n":5.5,"s":1},"10":{"n":5},"11":{"n":6,"g":1},"12":{"n":6.5,"g":1},"14":{"n":5.5,"s":1},"15":{"n":6,"g":1},"16":{"n":4.5,"s":1}}},"c":78},{"i":5997,"n":"Nakamba","f":"Marvelous","p":"M","r":12,"s":{"s":"53","n":"10","a":"5.35","d":"0.98","Ss":"9","Sn":"2","Sa":"4.75","Sd":"1.25","Os":"53","On":"10","Oa":"5.35","Od":"0.98","Mp":"10","p":{"5":{"n":5.5},"6":{"n":5.5},"7":{"n":5.5},"8":{"n":7.5},"9":{"n":5.5},"10":{"n":4.5},"11":{"n":5},"12":{"n":5},"15":{"n":6},"16":{"n":3.5}}},"c":78},{"i":6125,"n":"Tshibola","f":"Aaron","p":"M","r":6,"s":{"n":0},"c":78},{"i":6241,"n":"Archer","f":"Cameron","p":"A","r":1,"s":{"n":0},"c":78}],"c":{"21":{"n":"Liverpool","rn":"Liverpool","cn":"Liverpool","a":"LIV","l":2,"el":1438,"s":{"p":46},"nM":4143,"nMWC":"0.9520","pM":{"28":3446,"1":4298,"2":4293,"3":4285,"4":4275,"5":4258,"6":4257,"7":4238,"8":4230,"9":4224,"10":4211,"12":4190,"13":4182,"11":4199,"14":4171,"15":4167,"16":4149},"DMI":[3446]},"22":{"n":"Everton","rn":"Everton","cn":"Everton","a":"EVE","l":2,"el":1054,"s":{"p":17},"nM":4144,"nMWC":"0.3639","pM":{"15":4167,"8":4229,"9":4222,"10":4209,"11":4203,"12":4193,"13":4183,"14":4170,"16":4151,"35":3512,"1":4302,"2":4291,"3":4278,"4":4276,"5":4265,"6":4252,"7":4246},"DMI":[3512]},"23":{"n":"Burnley","rn":"Burnley","cn":"Burnley","a":"BUR","l":2,"el":1004,"s":{"p":18},"nM":4139,"nMWC":"0.3468","pM":{"4":4275,"8":4229,"1":4301,"2":4288,"3":4284,"5":4259,"6":4250,"7":4239,"9":4223,"10":4210,"11":4205,"12":4188,"13":4186,"14":4168,"15":4159,"16":4155,"28":3444},"DMI":[3444]},"24":{"n":"Tottenham","rn":"Tottenham","cn":"Tottenham","a":"TOT","l":2,"el":1096,"s":{"p":23},"nM":4147,"nMWC":"0.4342","pM":{"10":4211,"11":4203,"16":4155,"20":3366,"1":4304,"2":4294,"3":4287,"5":4262,"6":4249,"8":4228,"9":4226,"12":4194,"13":4187,"14":4173,"15":4163,"7":4243,"4":4277},"DMI":[3366]},"25":{"n":"Chelsea","rn":"Chelsea","cn":"Chelsea","a":"CHE","l":2,"el":1136,"s":{"p":29},"nM":4140,"nMWC":"0.7058","pM":{"6":4257,"16":4151,"10":4210,"24":3398,"1":4307,"2":4296,"3":4279,"4":4269,"5":4263,"7":4241,"8":4233,"9":4220,"11":4206,"13":4184,"14":4169,"15":4164,"12":4189},"DMI":[3398]},"26":{"n":"Crystal Palace","rn":"Crystal Palace","cn":"Crystal-Palace","a":"CRY","l":2,"el":1104,"s":{"p":22},"nM":4141,"nMWC":"0.5729","pM":{"13":4182,"1":4302,"14":4168,"5":4262,"12":4189,"30":3461,"2":4295,"3":4281,"4":4270,"6":4251,"8":4235,"9":4221,"10":4208,"11":4202,"16":4156,"7":4242,"15":4166},"DMI":[3461]},"28":{"n":"West Ham","rn":"West Ham Utd","cn":"West-Ham-Utd","a":"WHU","l":2,"el":1008,"s":{"p":16},"nM":4146,"nMWC":"0.5173","pM":{"9":4222,"12":4188,"13":4187,"14":4169,"8":4235,"19":3355,"37":3536,"1":4299,"2":4290,"3":4283,"4":4274,"5":4267,"6":4255,"7":4240,"10":4217,"11":4207,"16":4157,"15":4162},"DMI":[3355,3536]},"29":{"n":"Leicester","rn":"Leicester City","cn":"Leicester-City","a":"LEI","l":2,"el":1239,"s":{"p":38},"nM":4142,"nMWC":"0.8679","pM":{"8":4230,"14":4170,"9":4223,"6":4249,"2":4296,"11":4202,"1":4305,"3":4282,"4":4271,"5":4260,"7":4245,"10":4215,"12":4196,"13":4181,"15":4160,"16":4148},"DMI":[]},"31":{"n":"Man. United","rn":"Manchester United","cn":"Manchester-United","a":"MUN","l":2,"el":1151,"s":{"p":24},"nM":4144,"nMWC":"0.6361","pM":{"9":4224,"35":3512,"15":4163,"1":4307,"3":4281,"6":4255,"5":4260,"2":4297,"4":4268,"7":4247,"8":4237,"10":4214,"11":4200,"12":4197,"13":4185,"14":4175,"16":4152},"DMI":[3512]},"33":{"n":"Watford","rn":"Watford","cn":"Watford","a":"WAT","l":2,"el":919,"s":{"p":9},"nM":4143,"nMWC":"0.0480","pM":{"28":3446,"2":4291,"13":4186,"9":4226,"11":4206,"16":4156,"3":4283,"15":4160,"5":4266,"6":4253,"7":4244,"8":4234,"14":4177,"1":4303,"4":4273,"10":4216,"12":4192},"DMI":[3446]},"35":{"n":"Southampton","rn":"Southampton","cn":"Southampton","a":"SOU","l":2,"el":996,"s":{"p":15},"nM":4146,"nMWC":"0.4827","pM":{"2":4293,"12":4193,"1":4301,"7":4243,"8":4233,"19":3355,"37":3536,"10":4215,"4":4268,"14":4177,"5":4261,"13":4178,"15":4165,"16":4153,"3":4280,"6":4248,"9":4227,"11":4204},"DMI":[3355,3536]},"36":{"n":"Bournemouth","rn":"Bournemouth","cn":"Bournemouth","a":"BOU","l":2,"el":984,"s":{"p":16},"nM":4140,"nMWC":"0.2942","pM":{"16":4149,"5":4265,"14":4173,"24":3398,"15":4166,"7":4240,"4":4271,"11":4200,"10":4216,"6":4248,"1":4300,"2":4289,"3":4286,"8":4236,"9":4219,"12":4191,"13":4180},"DMI":[3398]},"39":{"n":"Arsenal","rn":"Arsenal","cn":"Arsenal","a":"ARS","l":2,"el":1089,"s":{"p":22},"nM":4138,"nMWC":"0.2445","pM":{"3":4285,"2":4288,"4":4277,"10":4208,"16":4157,"12":4196,"7":4247,"5":4266,"13":4178,"8":4236,"25":3415,"9":4225,"11":4198,"14":4176,"15":4158,"1":4306,"6":4256},"DMI":[3415]},"40":{"n":"Man. City","rn":"Manchester City","cn":"Manchester-City","a":"MCI","l":2,"el":1285,"s":{"p":32},"nM":4138,"nMWC":"0.7555","pM":{"12":4190,"7":4246,"15":4159,"2":4294,"13":4184,"9":4221,"1":4299,"16":4152,"6":4253,"11":4204,"3":4286,"25":3415,"10":4212,"14":4172,"4":4272,"5":4264,"8":4231},"DMI":[3415]},"45":{"n":"Brighton","rn":"Brighton","cn":"Brighton","a":"BHA","l":2,"el":1053,"s":{"p":19},"nM":4141,"nMWC":"0.4271","pM":{"14":4171,"10":4209,"5":4259,"8":4228,"7":4241,"30":3461,"2":4290,"13":4181,"12":4197,"1":4303,"3":4280,"15":4158,"4":4272,"6":4254,"16":4150,"9":4218,"11":4201},"DMI":[3461]},"46":{"n":"Newcastle","rn":"Newcastle Utd","cn":"Newcastle-Utd","a":"NEW","l":2,"el":1114,"s":{"p":22},"nM":4139,"nMWC":"0.6532","pM":{"5":4258,"28":3444,"3":4287,"9":4220,"11":4207,"7":4245,"8":4237,"4":4273,"16":4153,"12":4191,"1":4306,"14":4172,"6":4254,"10":4213,"13":4179,"15":4161,"2":4292},"DMI":[3444]},"69":{"n":"Wolverhampton","rn":"Wolverhampton Wanderers","cn":"Wolverhampton-Wanderers","a":"WOL","l":2,"el":1142,"s":{"p":24},"nM":4147,"nMWC":"0.5658","pM":{"4":4276,"3":4284,"20":3366,"5":4263,"6":4251,"15":4162,"1":4305,"2":4297,"7":4244,"9":4227,"13":4180,"11":4198,"8":4231,"16":4150,"10":4213,"12":4195,"14":4174},"DMI":[3366]},"76":{"n":"Norwich","rn":"Norwich City","cn":"Norwich-City","a":"NOR","l":2,"el":912,"s":{"p":11},"nM":4142,"nMWC":"0.1321","pM":{"1":4298,"13":4183,"6":4250,"3":4279,"7":4242,"4":4274,"10":4214,"12":4192,"15":4165,"9":4219,"14":4176,"5":4264,"11":4201,"2":4292,"8":4232,"16":4154},"DMI":[]},"77":{"n":"Sheffield","rn":"Sheffield","cn":"Sheffield","a":"SHE","l":2,"el":1070,"s":{"p":22},"nM":4145,"nMWC":"0.5757","pM":{"7":4238,"6":4252,"11":4205,"12":4194,"4":4269,"2":4295,"10":4217,"3":4282,"13":4185,"8":4234,"5":4261,"1":4300,"9":4225,"15":4161,"14":4174,"16":4154},"DMI":[]},"78":{"n":"Aston Villa","rn":"Aston Villa","cn":"Aston-Villa","a":"AST","l":2,"el":1017,"s":{"p":15},"nM":4145,"nMWC":"0.4243","pM":{"11":4199,"3":4278,"7":4239,"1":4304,"15":4164,"4":4270,"5":4267,"16":4148,"14":4175,"2":4289,"6":4256,"10":4212,"9":4218,"13":4179,"12":4195,"8":4232},"DMI":[]}},"e":{"3446":{"d":28,"dB":"2019-02-27T20:00:00Z","t1s":5,"t2s":0,"t1":21,"t2":33},"4298":{"d":1,"dB":"2019-08-09T19:00:00Z","t1s":4,"t2s":1,"t1":21,"t2":76},"4293":{"d":2,"dB":"2019-08-17T14:00:00Z","t1s":1,"t2s":2,"t1":35,"t2":21},"4285":{"d":3,"dB":"2019-08-24T16:30:00Z","t1s":3,"t2s":1,"t1":21,"t2":39},"4275":{"d":4,"dB":"2019-08-31T16:30:00Z","t1s":0,"t2s":3,"t1":23,"t2":21},"4258":{"d":5,"dB":"2019-09-14T11:30:00Z","t1s":3,"t2s":1,"t1":21,"t2":46},"4257":{"d":6,"dB":"2019-09-22T15:30:00Z","t1s":1,"t2s":2,"t1":25,"t2":21},"4238":{"d":7,"dB":"2019-09-28T11:30:00Z","t1s":0,"t2s":1,"t1":77,"t2":21},"4230":{"d":8,"dB":"2019-10-05T14:00:00Z","t1s":2,"t2s":1,"t1":21,"t2":29},"4224":{"d":9,"dB":"2019-10-20T15:30:00Z","t1s":1,"t2s":1,"t1":31,"t2":21},"4211":{"d":10,"dB":"2019-10-27T16:30:00Z","t1s":2,"t2s":1,"t1":21,"t2":24},"4190":{"d":12,"dB":"2019-11-10T16:30:00Z","t1s":3,"t2s":1,"t1":21,"t2":40},"4182":{"d":13,"dB":"2019-11-23T15:00:00Z","t1s":1,"t2s":2,"t1":26,"t2":21},"4199":{"d":11,"dB":"2019-11-02T15:00:00Z","t1s":1,"t2s":2,"t1":78,"t2":21},"4171":{"d":14,"dB":"2019-11-30T15:00:00Z","t1s":2,"t2s":1,"t1":21,"t2":45},"4167":{"d":15,"dB":"2019-12-04T20:15:00Z","t1s":5,"t2s":2,"t1":21,"t2":22},"4149":{"d":16,"dB":"2019-12-07T15:00:00Z","t1s":0,"t2s":3,"t1":36,"t2":21},"4229":{"d":8,"dB":"2019-10-05T14:00:00Z","t1s":1,"t2s":0,"t1":23,"t2":22},"4222":{"d":9,"dB":"2019-10-19T11:30:00Z","t1s":2,"t2s":0,"t1":22,"t2":28},"4209":{"d":10,"dB":"2019-10-26T14:00:00Z","t1s":3,"t2s":2,"t1":45,"t2":22},"4203":{"d":11,"dB":"2019-11-03T16:30:00Z","t1s":1,"t2s":1,"t1":22,"t2":24},"4193":{"d":12,"dB":"2019-11-09T15:00:00Z","t1s":1,"t2s":2,"t1":35,"t2":22},"4183":{"d":13,"dB":"2019-11-23T15:00:00Z","t1s":0,"t2s":2,"t1":22,"t2":76},"4170":{"d":14,"dB":"2019-12-01T16:30:00Z","t1s":2,"t2s":1,"t1":29,"t2":22},"4151":{"d":16,"dB":"2019-12-07T12:30:00Z","t1s":3,"t2s":1,"t1":22,"t2":25},"3512":{"d":35,"dB":"2019-04-21T12:30:00Z","t1s":4,"t2s":0,"t1":22,"t2":31},"4302":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":0,"t2s":0,"t1":26,"t2":22},"4291":{"d":2,"dB":"2019-08-17T14:00:00Z","t1s":1,"t2s":0,"t1":22,"t2":33},"4278":{"d":3,"dB":"2019-08-23T19:00:00Z","t1s":2,"t2s":0,"t1":78,"t2":22},"4276":{"d":4,"dB":"2019-09-01T13:00:00Z","t1s":3,"t2s":2,"t1":22,"t2":69},"4265":{"d":5,"dB":"2019-09-15T13:00:00Z","t1s":3,"t2s":1,"t1":36,"t2":22},"4252":{"d":6,"dB":"2019-09-21T14:00:00Z","t1s":0,"t2s":2,"t1":22,"t2":77},"4246":{"d":7,"dB":"2019-09-28T16:30:00Z","t1s":1,"t2s":3,"t1":22,"t2":40},"4301":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":3,"t2s":0,"t1":23,"t2":35},"4288":{"d":2,"dB":"2019-08-17T11:30:00Z","t1s":2,"t2s":1,"t1":39,"t2":23},"4284":{"d":3,"dB":"2019-08-25T15:30:00Z","t1s":1,"t2s":1,"t1":69,"t2":23},"4259":{"d":5,"dB":"2019-09-14T14:00:00Z","t1s":1,"t2s":1,"t1":45,"t2":23},"4250":{"d":6,"dB":"2019-09-21T14:00:00Z","t1s":2,"t2s":0,"t1":23,"t2":76},"4239":{"d":7,"dB":"2019-09-28T14:00:00Z","t1s":2,"t2s":2,"t1":78,"t2":23},"4223":{"d":9,"dB":"2019-10-19T14:00:00Z","t1s":2,"t2s":1,"t1":29,"t2":23},"4210":{"d":10,"dB":"2019-10-26T16:30:00Z","t1s":2,"t2s":4,"t1":23,"t2":25},"4205":{"d":11,"dB":"2019-11-02T15:00:00Z","t1s":3,"t2s":0,"t1":77,"t2":23},"4188":{"d":12,"dB":"2019-11-09T15:00:00Z","t1s":3,"t2s":0,"t1":23,"t2":28},"4186":{"d":13,"dB":"2019-11-23T15:00:00Z","t1s":0,"t2s":3,"t1":33,"t2":23},"4168":{"d":14,"dB":"2019-11-30T15:00:00Z","t1s":0,"t2s":2,"t1":23,"t2":26},"4159":{"d":15,"dB":"2019-12-03T20:15:00Z","t1s":1,"t2s":4,"t1":23,"t2":40},"4155":{"d":16,"dB":"2019-12-07T15:00:00Z","t1s":5,"t2s":0,"t1":24,"t2":23},"3444":{"d":28,"dB":"2019-02-26T20:00:00Z","t1s":2,"t2s":0,"t1":46,"t2":23},"3366":{"d":20,"dB":"2018-12-29T17:00:00Z","t1s":1,"t2s":3,"t1":24,"t2":69},"4304":{"d":1,"dB":"2019-08-10T16:30:00Z","t1s":3,"t2s":1,"t1":24,"t2":78},"4294":{"d":2,"dB":"2019-08-17T16:30:00Z","t1s":2,"t2s":2,"t1":40,"t2":24},"4287":{"d":3,"dB":"2019-08-25T15:30:00Z","t1s":0,"t2s":1,"t1":24,"t2":46},"4262":{"d":5,"dB":"2019-09-14T14:00:00Z","t1s":4,"t2s":0,"t1":24,"t2":26},"4249":{"d":6,"dB":"2019-09-21T11:30:00Z","t1s":2,"t2s":1,"t1":29,"t2":24},"4228":{"d":8,"dB":"2019-10-05T11:30:00Z","t1s":3,"t2s":0,"t1":45,"t2":24},"4226":{"d":9,"dB":"2019-10-19T14:00:00Z","t1s":1,"t2s":1,"t1":24,"t2":33},"4194":{"d":12,"dB":"2019-11-09T15:00:00Z","t1s":1,"t2s":1,"t1":24,"t2":77},"4187":{"d":13,"dB":"2019-11-23T12:30:00Z","t1s":2,"t2s":3,"t1":28,"t2":24},"4173":{"d":14,"dB":"2019-11-30T15:00:00Z","t1s":3,"t2s":2,"t1":24,"t2":36},"4163":{"d":15,"dB":"2019-12-04T19:30:00Z","t1s":2,"t2s":1,"t1":31,"t2":24},"4243":{"d":7,"dB":"2019-09-28T14:00:00Z","t1s":2,"t2s":1,"t1":24,"t2":35},"4277":{"d":4,"dB":"2019-09-01T15:30:00Z","t1s":2,"t2s":2,"t1":39,"t2":24},"3398":{"d":24,"dB":"2019-01-30T19:45:00Z","t1s":4,"t2s":0,"t1":36,"t2":25},"4307":{"d":1,"dB":"2019-08-11T15:30:00Z","t1s":4,"t2s":0,"t1":31,"t2":25},"4296":{"d":2,"dB":"2019-08-18T15:30:00Z","t1s":1,"t2s":1,"t1":25,"t2":29},"4279":{"d":3,"dB":"2019-08-24T11:30:00Z","t1s":2,"t2s":3,"t1":76,"t2":25},"4269":{"d":4,"dB":"2019-08-31T14:00:00Z","t1s":2,"t2s":2,"t1":25,"t2":77},"4263":{"d":5,"dB":"2019-09-14T14:00:00Z","t1s":2,"t2s":5,"t1":69,"t2":25},"4241":{"d":7,"dB":"2019-09-28T14:00:00Z","t1s":2,"t2s":0,"t1":25,"t2":45},"4233":{"d":8,"dB":"2019-10-06T13:00:00Z","t1s":1,"t2s":4,"t1":35,"t2":25},"4220":{"d":9,"dB":"2019-10-19T14:00:00Z","t1s":1,"t2s":0,"t1":25,"t2":46},"4206":{"d":11,"dB":"2019-11-02T17:30:00Z","t1s":1,"t2s":2,"t1":33,"t2":25},"4184":{"d":13,"dB":"2019-11-23T17:30:00Z","t1s":2,"t2s":1,"t1":40,"t2":25},"4169":{"d":14,"dB":"2019-11-30T15:00:00Z","t1s":0,"t2s":1,"t1":25,"t2":28},"4164":{"d":15,"dB":"2019-12-04T19:30:00Z","t1s":2,"t2s":1,"t1":25,"t2":78},"4189":{"d":12,"dB":"2019-11-09T12:30:00Z","t1s":2,"t2s":0,"t1":25,"t2":26},"3461":{"d":30,"dB":"2019-03-09T12:30:00Z","t1s":1,"t2s":2,"t1":26,"t2":45},"4295":{"d":2,"dB":"2019-08-18T13:00:00Z","t1s":1,"t2s":0,"t1":77,"t2":26},"4281":{"d":3,"dB":"2019-08-24T14:00:00Z","t1s":1,"t2s":2,"t1":31,"t2":26},"4270":{"d":4,"dB":"2019-08-31T14:00:00Z","t1s":1,"t2s":0,"t1":26,"t2":78},"4251":{"d":6,"dB":"2019-09-22T13:00:00Z","t1s":1,"t2s":1,"t1":26,"t2":69},"4235":{"d":8,"dB":"2019-10-05T16:30:00Z","t1s":1,"t2s":2,"t1":28,"t2":26},"4221":{"d":9,"dB":"2019-10-19T16:30:00Z","t1s":0,"t2s":2,"t1":26,"t2":40},"4208":{"d":10,"dB":"2019-10-27T16:30:00Z","t1s":2,"t2s":2,"t1":39,"t2":26},"4202":{"d":11,"dB":"2019-11-03T14:00:00Z","t1s":0,"t2s":2,"t1":26,"t2":29},"4156":{"d":16,"dB":"2019-12-07T15:00:00Z","t1s":0,"t2s":0,"t1":33,"t2":26},"4242":{"d":7,"dB":"2019-09-28T14:00:00Z","t1s":2,"t2s":0,"t1":26,"t2":76},"4166":{"d":15,"dB":"2019-12-03T19:30:00Z","t1s":1,"t2s":0,"t1":26,"t2":36},"3355":{"d":19,"dB":"2018-12-27T19:45:00Z","t1s":1,"t2s":2,"t1":35,"t2":28},"3536":{"d":37,"dB":"2019-05-04T14:00:00Z","t1s":3,"t2s":0,"t1":28,"t2":35},"4299":{"d":1,"dB":"2019-08-10T11:30:00Z","t1s":0,"t2s":5,"t1":28,"t2":40},"4290":{"d":2,"dB":"2019-08-17T14:00:00Z","t1s":1,"t2s":1,"t1":45,"t2":28},"4283":{"d":3,"dB":"2019-08-24T14:00:00Z","t1s":1,"t2s":3,"t1":33,"t2":28},"4274":{"d":4,"dB":"2019-08-31T14:00:00Z","t1s":2,"t2s":0,"t1":28,"t2":76},"4267":{"d":5,"dB":"2019-09-16T19:00:00Z","t1s":0,"t2s":0,"t1":78,"t2":28},"4255":{"d":6,"dB":"2019-09-22T13:00:00Z","t1s":2,"t2s":0,"t1":28,"t2":31},"4240":{"d":7,"dB":"2019-09-28T14:00:00Z","t1s":2,"t2s":2,"t1":36,"t2":28},"4217":{"d":10,"dB":"2019-10-26T14:00:00Z","t1s":1,"t2s":1,"t1":28,"t2":77},"4207":{"d":11,"dB":"2019-11-02T15:00:00Z","t1s":2,"t2s":3,"t1":28,"t2":46},"4157":{"d":16,"dB":"2019-12-09T20:00:00Z","t1s":1,"t2s":3,"t1":28,"t2":39},"4162":{"d":15,"dB":"2019-12-04T19:30:00Z","t1s":2,"t2s":0,"t1":69,"t2":28},"4305":{"d":1,"dB":"2019-08-11T13:00:00Z","t1s":0,"t2s":0,"t1":29,"t2":69},"4282":{"d":3,"dB":"2019-08-24T14:00:00Z","t1s":1,"t2s":2,"t1":77,"t2":29},"4271":{"d":4,"dB":"2019-08-31T14:00:00Z","t1s":3,"t2s":1,"t1":29,"t2":36},"4260":{"d":5,"dB":"2019-09-14T14:00:00Z","t1s":1,"t2s":0,"t1":31,"t2":29},"4245":{"d":7,"dB":"2019-09-29T15:30:00Z","t1s":5,"t2s":0,"t1":29,"t2":46},"4215":{"d":10,"dB":"2019-10-25T19:00:00Z","t1s":0,"t2s":9,"t1":35,"t2":29},"4196":{"d":12,"dB":"2019-11-09T17:30:00Z","t1s":2,"t2s":0,"t1":29,"t2":39},"4181":{"d":13,"dB":"2019-11-23T15:00:00Z","t1s":0,"t2s":2,"t1":45,"t2":29},"4160":{"d":15,"dB":"2019-12-04T19:30:00Z","t1s":2,"t2s":0,"t1":29,"t2":33},"4148":{"d":16,"dB":"2019-12-08T14:00:00Z","t1s":1,"t2s":4,"t1":78,"t2":29},"4297":{"d":2,"dB":"2019-08-19T19:00:00Z","t1s":1,"t2s":1,"t1":69,"t2":31},"4268":{"d":4,"dB":"2019-08-31T11:30:00Z","t1s":1,"t2s":1,"t1":35,"t2":31},"4247":{"d":7,"dB":"2019-09-30T19:00:00Z","t1s":1,"t2s":1,"t1":31,"t2":39},"4237":{"d":8,"dB":"2019-10-06T15:30:00Z","t1s":1,"t2s":0,"t1":46,"t2":31},"4214":{"d":10,"dB":"2019-10-27T16:30:00Z","t1s":1,"t2s":3,"t1":76,"t2":31},"4200":{"d":11,"dB":"2019-11-02T12:30:00Z","t1s":1,"t2s":0,"t1":36,"t2":31},"4197":{"d":12,"dB":"2019-11-10T14:00:00Z","t1s":3,"t2s":1,"t1":31,"t2":45},"4185":{"d":13,"dB":"2019-11-24T16:30:00Z","t1s":3,"t2s":3,"t1":77,"t2":31},"4175":{"d":14,"dB":"2019-12-01T16:30:00Z","t1s":2,"t2s":2,"t1":31,"t2":78},"4152":{"d":16,"dB":"2019-12-07T17:30:00Z","t1s":1,"t2s":2,"t1":40,"t2":31},"4266":{"d":5,"dB":"2019-09-15T15:30:00Z","t1s":2,"t2s":2,"t1":33,"t2":39},"4253":{"d":6,"dB":"2019-09-21T14:00:00Z","t1s":8,"t2s":0,"t1":40,"t2":33},"4244":{"d":7,"dB":"2019-09-28T14:00:00Z","t1s":2,"t2s":0,"t1":69,"t2":33},"4234":{"d":8,"dB":"2019-10-05T14:00:00Z","t1s":0,"t2s":0,"t1":33,"t2":77},"4177":{"d":14,"dB":"2019-11-30T17:30:00Z","t1s":2,"t2s":1,"t1":35,"t2":33},"4303":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":0,"t2s":3,"t1":33,"t2":45},"4273":{"d":4,"dB":"2019-08-31T14:00:00Z","t1s":1,"t2s":1,"t1":46,"t2":33},"4216":{"d":10,"dB":"2019-10-26T14:00:00Z","t1s":0,"t2s":0,"t1":33,"t2":36},"4192":{"d":12,"dB":"2019-11-08T20:00:00Z","t1s":0,"t2s":2,"t1":76,"t2":33},"4261":{"d":5,"dB":"2019-09-14T14:00:00Z","t1s":0,"t2s":1,"t1":77,"t2":35},"4178":{"d":13,"dB":"2019-11-23T15:00:00Z","t1s":2,"t2s":2,"t1":39,"t2":35},"4165":{"d":15,"dB":"2019-12-04T19:30:00Z","t1s":2,"t2s":1,"t1":35,"t2":76},"4153":{"d":16,"dB":"2019-12-08T14:00:00Z","t1s":2,"t2s":1,"t1":46,"t2":35},"4280":{"d":3,"dB":"2019-08-24T14:00:00Z","t1s":0,"t2s":2,"t1":45,"t2":35},"4248":{"d":6,"dB":"2019-09-20T19:00:00Z","t1s":1,"t2s":3,"t1":35,"t2":36},"4227":{"d":9,"dB":"2019-10-19T14:00:00Z","t1s":1,"t2s":1,"t1":69,"t2":35},"4204":{"d":11,"dB":"2019-11-02T15:00:00Z","t1s":2,"t2s":1,"t1":40,"t2":35},"4300":{"d":1,"dB":"2019-08-10T14:00:00Z","t1s":1,"t2s":1,"t1":36,"t2":77},"4289":{"d":2,"dB":"2019-08-17T14:00:00Z","t1s":1,"t2s":2,"t1":78,"t2":36},"4286":{"d":3,"dB":"2019-08-25T13:00:00Z","t1s":1,"t2s":3,"t1":36,"t2":40},"4236":{"d":8,"dB":"2019-10-06T13:00:00Z","t1s":1,"t2s":0,"t1":39,"t2":36},"4219":{"d":9,"dB":"2019-10-19T14:00:00Z","t1s":0,"t2s":0,"t1":36,"t2":76},"4191":{"d":12,"dB":"2019-11-09T15:00:00Z","t1s":2,"t2s":1,"t1":46,"t2":36},"4180":{"d":13,"dB":"2019-11-23T15:00:00Z","t1s":1,"t2s":2,"t1":36,"t2":69},"3415":{"d":25,"dB":"2019-02-03T16:30:00Z","t1s":3,"t2s":1,"t1":40,"t2":39},"4225":{"d":9,"dB":"2019-10-21T19:00:00Z","t1s":1,"t2s":0,"t1":77,"t2":39},"4198":{"d":11,"dB":"2019-11-02T15:00:00Z","t1s":1,"t2s":1,"t1":39,"t2":69},"4176":{"d":14,"dB":"2019-12-01T14:00:00Z","t1s":2,"t2s":2,"t1":76,"t2":39},"4158":{"d":15,"dB":"2019-12-05T20:15:00Z","t1s":1,"t2s":2,"t1":39,"t2":45},"4306":{"d":1,"dB":"2019-08-11T13:00:00Z","t1s":0,"t2s":1,"t1":46,"t2":39},"4256":{"d":6,"dB":"2019-09-22T15:30:00Z","t1s":3,"t2s":2,"t1":39,"t2":78},"4212":{"d":10,"dB":"2019-10-26T11:30:00Z","t1s":3,"t2s":0,"t1":40,"t2":78},"4172":{"d":14,"dB":"2019-11-30T12:30:00Z","t1s":2,"t2s":2,"t1":46,"t2":40},"4272":{"d":4,"dB":"2019-08-31T14:00:00Z","t1s":4,"t2s":0,"t1":40,"t2":45},"4264":{"d":5,"dB":"2019-09-14T16:30:00Z","t1s":3,"t2s":2,"t1":76,"t2":40},"4231":{"d":8,"dB":"2019-10-06T13:00:00Z","t1s":0,"t2s":2,"t1":40,"t2":69},"4254":{"d":6,"dB":"2019-09-21T16:30:00Z","t1s":0,"t2s":0,"t1":46,"t2":45},"4150":{"d":16,"dB":"2019-12-08T16:30:00Z","t1s":2,"t2s":2,"t1":45,"t2":69},"4218":{"d":9,"dB":"2019-10-19T14:00:00Z","t1s":2,"t2s":1,"t1":78,"t2":45},"4201":{"d":11,"dB":"2019-11-02T15:00:00Z","t1s":2,"t2s":0,"t1":45,"t2":76},"4213":{"d":10,"dB":"2019-10-27T14:00:00Z","t1s":1,"t2s":1,"t1":46,"t2":69},"4179":{"d":13,"dB":"2019-11-25T20:00:00Z","t1s":2,"t2s":0,"t1":78,"t2":46},"4161":{"d":15,"dB":"2019-12-05T19:30:00Z","t1s":0,"t2s":2,"t1":77,"t2":46},"4292":{"d":2,"dB":"2019-08-17T14:00:00Z","t1s":3,"t2s":1,"t1":76,"t2":46},"4195":{"d":12,"dB":"2019-11-10T14:00:00Z","t1s":2,"t2s":1,"t1":69,"t2":78},"4174":{"d":14,"dB":"2019-12-01T14:00:00Z","t1s":1,"t2s":1,"t1":69,"t2":77},"4232":{"d":8,"dB":"2019-10-05T14:00:00Z","t1s":1,"t2s":5,"t1":76,"t2":78},"4154":{"d":16,"dB":"2019-12-08T14:00:00Z","t1s":1,"t2s":2,"t1":76,"t2":77}},"Ne":{"4143":{"d":17,"dB":"2019-12-14T12:30:00Z","t1":21,"t2":33},"4144":{"d":17,"dB":"2019-12-15T14:00:00Z","t1":31,"t2":22},"4139":{"d":17,"dB":"2019-12-14T15:00:00Z","t1":23,"t2":46},"4147":{"d":17,"dB":"2019-12-15T14:00:00Z","t1":69,"t2":24},"4140":{"d":17,"dB":"2019-12-14T15:00:00Z","t1":25,"t2":36},"4141":{"d":17,"dB":"2019-12-16T19:45:00Z","t1":26,"t2":45},"4146":{"d":17,"dB":"2019-12-14T17:30:00Z","t1":35,"t2":28},"4142":{"d":17,"dB":"2019-12-14T15:00:00Z","t1":29,"t2":76},"4138":{"d":17,"dB":"2019-12-15T16:30:00Z","t1":39,"t2":40},"4145":{"d":17,"dB":"2019-12-14T15:00:00Z","t1":77,"t2":78}},"k":"e5a831"} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.premier-league.20191220.json b/src/test/resources/__files/mpgstats.premier-league.20191220.json deleted file mode 100644 index 937cd7a..0000000 --- a/src/test/resources/__files/mpgstats.premier-league.20191220.json +++ /dev/null @@ -1 +0,0 @@ -{"bD":"2019-12-18T22:37:07.903Z","mL":{"i":2,"n":"Premier League","cN":"Premier-League","aS":{"i":10,"n":"Premier League 2019-2020","cN":"Premier-League-2019-2020","mD":38,"cD":{"d":17,"lD":17}},"lS":{"i":7,"n":"Premier League 2018-2019","cN":"Premier-League-2018-2019","mD":38}},"le":[[2,"Premier-League"],[1,"Ligue-1"],[3,"Liga"]],"p":[[2,{"n":"Lacazette","f":"Alexandre","fp":"A","r":30,"c":39,"s":{"g":5,"s":54,"n":10,"a":5.4,"d":1.2,"Og":12,"Os":158,"On":29,"Oa":5.45,"Od":1.09,"pa":29},"p":[[15,{"n":5.5,"e":4158,"g":1}],[14,{"n":4,"e":4176}],[13,{"n":7,"e":4178,"g":2}],[12,{"n":4,"e":4196}],[11,{"n":6,"e":4198}],[10,{"n":6,"e":4208}],[9,{"n":4.5,"e":4225}],[4,{"n":7,"e":4277,"g":1}],[3,{"n":4,"e":4285}],[2,{"n":6,"e":4288,"g":1}],[-37,{"n":6,"e":3529}],[-36,{"n":3.5,"e":3522}],[-31,{"n":4.5,"e":3477}],[-35,{"n":5,"e":3509}],[-33,{"n":4.5,"e":3490}],[-32,{"n":6.5,"e":3478,"g":1}],[-30,{"n":6,"e":3458}],[-29,{"n":5,"e":3454}],[-28,{"n":6.5,"e":3438,"g":1}],[-27,{"n":7,"e":3429,"g":1}],[-26,{"n":6,"e":3421,"g":1}],[-25,{"n":4,"e":3415}],[-24,{"n":6,"e":3399,"g":1}],[-23,{"n":7,"e":3389,"g":1}],[-22,{"n":4,"e":3387}],[-21,{"n":6,"e":3369,"g":1}],[-20,{"n":4.5,"e":3363}],[-19,{"n":6,"e":3348}],[-18,{"n":6,"e":3339}]],"a":{"m":31,"a":47,"M":67,"n":13}}],[211,{"n":"Pépé","f":"Nicolas","fp":"A","r":20,"c":39,"s":{"g":2,"s":79.5,"n":15,"a":5.3,"d":0.94,"Sg":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1.32,"Og":12,"Os":197,"On":35,"Oa":5.63,"Od":1.36,"pm":24,"pa":11},"p":[[17,{"n":4.5,"e":4138}],[16,{"n":7,"e":4157,"g":1}],[8,{"n":5.5,"e":4236}],[7,{"n":4,"e":4247}],[6,{"n":7,"e":4256,"g":1}],[5,{"n":4.5,"e":4266}],[1,{"n":4.5,"e":4306}],[-38,{"n":4.5,"e":3111}],[-37,{"n":7.5,"e":3094,"g":2}],[-36,{"n":4,"e":3086}],[-35,{"n":4.5,"e":3074}],[-34,{"n":7,"e":3066,"g":1}],[-33,{"n":4.5,"e":3061}],[-32,{"n":8,"e":3044,"g":1}],[-31,{"n":6.5,"e":3040}],[-30,{"n":7.5,"e":3027,"g":1}],[-29,{"n":5,"e":3016}],[-28,{"n":7.5,"e":3009,"g":1}],[-27,{"n":5,"e":2996}],[-26,{"n":4.5,"e":2990}],[-25,{"n":5,"e":2975}],[-24,{"n":5,"e":2964}],[-23,{"n":7.5,"e":2955,"g":1}],[-22,{"n":8,"e":2945,"g":2}],[-21,{"n":3.5,"e":2935}],[-20,{"n":8,"e":2923,"g":1}],[-19,{"n":4.5,"e":2914}],[15,{"n":5,"e":4158}],[13,{"n":4.5,"e":4178}],[12,{"n":5,"e":4196}],[10,{"n":6,"e":4208}],[9,{"n":5.5,"e":4225}],[4,{"n":6.5,"e":4277}],[3,{"n":5,"e":4285}],[2,{"n":5,"e":4288}]],"a":{"m":27,"a":62,"M":100,"n":7}}],[572,{"n":"Guendouzi","f":"Matteo","fp":"MD","r":17,"c":39,"s":{"s":86,"n":16,"a":5.38,"d":0.99,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Os":182,"On":35,"Oa":5.2,"Od":0.87,"pm":35},"p":[[-38,{"n":6,"e":3539}],[-34,{"n":5,"e":3507}],[-37,{"n":4.5,"e":3529}],[-36,{"n":5,"e":3522}],[-35,{"n":5,"e":3509}],[-33,{"n":4,"e":3490}],[-32,{"n":6,"e":3478}],[-31,{"n":5,"e":3477}],[-29,{"n":3.5,"e":3454}],[-28,{"n":6,"e":3438}],[-26,{"n":4.5,"e":3421}],[-25,{"n":5.5,"e":3415}],[-24,{"n":5.5,"e":3399}],[-23,{"n":5.5,"e":3389}],[-22,{"n":5,"e":3387}],[-21,{"n":6,"e":3369}],[-20,{"n":4.5,"e":3363}],[-19,{"n":5.5,"e":3348}],[-18,{"n":4,"e":3339}],[17,{"n":3.5,"e":4138}],[16,{"n":5,"e":4157}],[14,{"n":5,"e":4176}],[13,{"n":6.5,"e":4178}],[12,{"n":4.5,"e":4196}],[11,{"n":4.5,"e":4198}],[10,{"n":5,"e":4208}],[9,{"n":5.5,"e":4225}],[8,{"n":6.5,"e":4236}],[7,{"n":6,"e":4247}],[6,{"n":6.5,"e":4256}],[5,{"n":4,"e":4266}],[4,{"n":7,"e":4277}],[3,{"n":5,"e":4285}],[2,{"n":6,"e":4288}],[1,{"n":5.5,"e":4306}]]}],[591,{"n":"Özil","f":"Mesut","fp":"MO","r":13,"c":39,"s":{"s":42,"n":8,"a":5.25,"d":0.46,"Ss":37,"Sn":7,"Sa":5.29,"Sd":0.49,"Og":2,"Os":106.5,"On":21,"Oa":5.07,"Od":0.97,"pm":14,"pa":7},"p":[[-37,{"n":5,"e":3529}],[-35,{"n":5,"e":3509,"g":1}],[-34,{"n":5,"e":3507}],[-33,{"n":3.5,"e":3490}],[-32,{"n":5.5,"e":3478}],[-31,{"n":3.5,"e":3477}],[-30,{"n":5.5,"e":3458}],[-29,{"n":4.5,"e":3454}],[-28,{"n":8,"e":3438,"g":1}],[-27,{"n":5,"e":3429}],[-24,{"n":5,"e":3399}],[-19,{"n":3.5,"e":3348}],[-18,{"n":5.5,"e":3339}],[17,{"n":4.5,"e":4138}],[16,{"n":5.5,"e":4157}],[15,{"n":5,"e":4158}],[14,{"n":6,"e":4176}],[13,{"n":5.5,"e":4178}],[12,{"n":5,"e":4196}],[11,{"n":5.5,"e":4198}],[5,{"n":5,"e":4266}]]}],[609,{"n":"Cech","f":"Petr","fp":"G","r":7,"c":39}],[623,{"n":"David Luiz","f":"","fp":"DC","r":18,"c":39,"s":{"g":2,"s":68.5,"n":14,"a":4.89,"d":1.1,"Og":4,"Os":177.5,"On":34,"Oa":5.22,"Od":1.39,"pd":34},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":7,"e":3531,"g":1}],[-36,{"n":5,"e":3524}],[-35,{"n":4.5,"e":3511}],[-34,{"n":5,"e":3503}],[-33,{"n":6,"e":3489}],[-27,{"n":6,"e":3432}],[-32,{"n":5.5,"e":3481}],[-31,{"n":4,"e":3471}],[-30,{"n":5.5,"e":3460}],[-28,{"n":7,"e":3443}],[-26,{"n":2.5,"e":3423}],[-25,{"n":8,"e":3411,"g":1}],[-24,{"n":2,"e":3398}],[-22,{"n":7.5,"e":3381}],[-21,{"n":6,"e":3371}],[-20,{"n":7.5,"e":3360}],[-19,{"n":5,"e":3357}],[-18,{"n":5.5,"e":3341}],[-23,{"n":4.5,"e":3389}],[15,{"n":3.5,"e":4158}],[14,{"n":4.5,"e":4176}],[13,{"n":5,"e":4178}],[12,{"n":4,"e":4196}],[11,{"n":5,"e":4198}],[10,{"n":6.5,"e":4208,"g":1}],[9,{"n":4.5,"e":4225}],[8,{"n":7,"e":4236,"g":1}],[7,{"n":5.5,"e":4247}],[6,{"n":5,"e":4256}],[5,{"n":4,"e":4266}],[4,{"n":5.5,"e":4277}],[3,{"n":3,"e":4285}],[2,{"n":5.5,"e":4288}]]}],[665,{"n":"Mustafi","f":"Shkodran","fp":"DC","r":5,"c":39,"s":{"s":5,"n":1,"a":5,"Os":75.5,"On":16,"Oa":4.72,"Od":1.38,"pd":16},"p":[[-38,{"n":7,"e":3539}],[-37,{"n":6.5,"e":3529}],[-36,{"n":3,"e":3522}],[-35,{"n":2.5,"e":3509}],[-34,{"n":6,"e":3507}],[-33,{"n":5,"e":3490}],[-32,{"n":6,"e":3478}],[-29,{"n":3.5,"e":3454}],[-27,{"n":5.5,"e":3429}],[-26,{"n":5.5,"e":3421}],[-25,{"n":3.5,"e":3415}],[-24,{"n":5.5,"e":3399}],[-22,{"n":4,"e":3387}],[-21,{"n":4,"e":3369}],[-20,{"n":3,"e":3363}],[14,{"n":5,"e":4176}]]}],[728,{"n":"Xhaka","f":"Granit","fp":"MD","r":10,"c":39,"s":{"s":60,"n":12,"a":5,"d":0.56,"Og":2,"Os":131,"On":25,"Oa":5.24,"Od":1.03,"pm":25},"p":[[-37,{"n":4.5,"e":3529}],[-36,{"n":3.5,"e":3522}],[-34,{"n":6.5,"e":3507}],[-31,{"n":4.5,"e":3477}],[-30,{"n":7,"e":3458,"g":1}],[-29,{"n":5.5,"e":3454}],[-27,{"n":6,"e":3429}],[-23,{"n":7,"e":3389}],[-22,{"n":3.5,"e":3387}],[-21,{"n":7,"e":3369,"g":1}],[-20,{"n":4,"e":3363}],[-19,{"n":6,"e":3348}],[-18,{"n":6,"e":3339}],[16,{"n":4.5,"e":4157}],[15,{"n":4.5,"e":4158}],[14,{"n":5.5,"e":4176}],[10,{"n":5,"e":4208}],[9,{"n":4.5,"e":4225}],[8,{"n":5.5,"e":4236}],[7,{"n":4.5,"e":4247}],[6,{"n":4.5,"e":4256}],[5,{"n":5.5,"e":4266}],[4,{"n":4.5,"e":4277}],[3,{"n":5.5,"e":4285}],[1,{"n":6,"e":4306}]]}],[795,{"n":"Bellerín","f":"Héctor","fp":"DL","r":10,"c":39,"s":{"s":10,"n":3,"a":3.33,"d":0.29,"Os":22.5,"On":5,"Oa":4.5,"Od":1.84,"pd":3,"pm":2},"p":[[-23,{"n":7.5,"e":3389}],[-22,{"n":5,"e":3387}],[15,{"n":3,"e":4158}],[13,{"n":3.5,"e":4178}],[12,{"n":3.5,"e":4196}]]}],[860,{"n":"Chambers","f":"Calum","fp":"DC","r":10,"c":39,"s":{"g":1,"s":55.5,"n":12,"a":4.63,"d":1.11,"Ss":9,"Sn":2,"Sa":4.5,"Sd":2.12,"Og":3,"Os":159.5,"On":32,"Oa":4.98,"Od":1.23,"pd":15,"pm":17},"p":[[-38,{"n":4,"e":3541}],[-37,{"n":5.5,"e":3537}],[-36,{"n":5.5,"e":3521}],[-35,{"n":6,"e":3508}],[-34,{"n":5.5,"e":3501}],[-33,{"n":2.5,"e":3496}],[-32,{"n":4.5,"e":3483}],[-31,{"n":5,"e":3472}],[-30,{"n":3.5,"e":3463}],[-29,{"n":7.5,"e":3452,"g":1}],[-28,{"n":4.5,"e":3445}],[-27,{"n":5.5,"e":3437}],[-26,{"n":4,"e":3420}],[-25,{"n":4.5,"e":3412}],[-24,{"n":7.5,"e":3400,"g":1}],[-23,{"n":6,"e":3390}],[-22,{"n":4,"e":3379}],[-20,{"n":6.5,"e":3361}],[-19,{"n":6,"e":3351}],[-18,{"n":6,"e":3345}],[17,{"n":3,"e":4138}],[16,{"n":6,"e":4157}],[14,{"n":4,"e":4176}],[13,{"n":4,"e":4178}],[12,{"n":4,"e":4196}],[11,{"n":4,"e":4198}],[10,{"n":4,"e":4208}],[9,{"n":4,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":7,"e":4256,"g":1}],[1,{"n":5.5,"e":4306}]],"a":{"m":12,"a":16,"M":21,"n":7}}],[917,{"n":"Mohamed Elneny","f":"","fp":"MD","r":7,"c":39,"s":{"Os":39,"On":8,"Oa":4.88,"Od":0.88,"pm":8},"p":[[-38,{"n":6.5,"e":3539}],[-35,{"n":5,"e":3509}],[-33,{"n":3.5,"e":3490}],[-32,{"n":5.5,"e":3478}],[-26,{"n":4.5,"e":3421}],[-24,{"n":4.5,"e":3399}],[-23,{"n":5,"e":3389}],[-18,{"n":4.5,"e":3339}]]}],[983,{"n":"Holding","f":"Rob","fp":"DC","r":7,"c":39,"s":{"s":3.5,"n":1,"a":3.5,"Os":3.5,"On":1,"Oa":3.5,"pd":1},"p":[[12,{"n":3.5,"e":4196}]]}],[1090,{"n":"Jenkinson","f":"Carl","fp":"DC","r":3,"c":39,"s":{"Os":13.5,"On":3,"Oa":4.5,"Od":0.87,"pd":1,"pm":2},"p":[[-35,{"n":3.5,"e":3509}],[-28,{"n":5,"e":3438}],[-24,{"n":5,"e":3399}]]}],[1124,{"n":"Maitland-Niles","f":"Ainsley","fp":"MO","r":8,"c":39,"s":{"s":38.5,"n":8,"a":4.81,"d":1.19,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":1,"Os":103.5,"On":22,"Oa":4.7,"Od":1,"pd":11,"pm":11},"p":[[-36,{"n":3,"e":3522}],[-35,{"n":5,"e":3509}],[-34,{"n":5.5,"e":3507}],[-33,{"n":4,"e":3490}],[-32,{"n":5.5,"e":3478}],[-31,{"n":3,"e":3477}],[-30,{"n":5,"e":3458}],[-26,{"n":5.5,"e":3421}],[-23,{"n":5.5,"e":3389}],[-22,{"n":4,"e":3387}],[-21,{"n":5.5,"e":3369}],[-20,{"n":5,"e":3363,"g":1}],[-19,{"n":4,"e":3348}],[-18,{"n":4.5,"e":3339}],[17,{"n":4.5,"e":4138}],[16,{"n":6,"e":4157}],[6,{"n":3,"e":4256}],[5,{"n":5,"e":4266}],[4,{"n":5.5,"e":4277}],[3,{"n":3.5,"e":4285}],[2,{"n":4.5,"e":4288}],[1,{"n":6.5,"e":4306}]]}],[1289,{"n":"Kolasinac","f":"Sead","fp":"DC","r":12,"c":39,"s":{"s":70.5,"n":14,"a":5.04,"d":0.57,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.87,"Oao":1,"Os":157.5,"On":32,"Oa":4.92,"Od":0.9,"pd":22,"pm":10},"p":[[-37,{"n":5,"e":3529}],[-36,{"n":3.5,"e":3522}],[-35,{"n":3.5,"e":3509}],[-33,{"n":3.5,"e":3490}],[-32,{"n":5,"e":3478}],[-31,{"n":4.5,"e":3477}],[-30,{"n":5,"e":3458}],[-28,{"n":5,"e":3438}],[-27,{"n":6.5,"e":3429}],[-26,{"n":5,"e":3421,"a":1}],[-25,{"n":4,"e":3415}],[-24,{"n":5,"e":3399}],[-23,{"n":7,"e":3389}],[-22,{"n":4.5,"e":3387}],[-21,{"n":6.5,"e":3369}],[-20,{"n":3,"e":3363}],[-19,{"n":5,"e":3348}],[-18,{"n":5.5,"e":3339}],[17,{"n":4.5,"e":4138}],[16,{"n":6,"e":4157}],[15,{"n":4,"e":4158}],[14,{"n":4.5,"e":4176}],[12,{"n":4.5,"e":4196}],[11,{"n":5,"e":4198}],[10,{"n":5,"e":4208}],[9,{"n":5,"e":4225}],[8,{"n":6,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4256}],[5,{"n":5.5,"e":4266}],[4,{"n":5.5,"e":4277}],[2,{"n":5,"e":4288}]]}],[1346,{"n":"Willock","f":"Joseph","fp":"MD","r":7,"c":39,"s":{"s":61.5,"n":13,"a":4.73,"d":0.67,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":70.5,"On":15,"Oa":4.7,"Od":0.62,"pm":15},"p":[[-38,{"n":4.5,"e":3539}],[-26,{"n":4.5,"e":3421}],[17,{"n":4.5,"e":4138}],[15,{"n":3.5,"e":4158}],[14,{"n":5,"e":4176}],[13,{"n":5.5,"e":4178}],[12,{"n":5,"e":4196}],[9,{"n":3.5,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":5.5,"e":4247}],[6,{"n":5,"e":4256}],[5,{"n":5,"e":4266}],[3,{"n":4,"e":4285}],[2,{"n":5,"e":4288}],[1,{"n":5,"e":4306}]]}],[1389,{"n":"Nelson","f":"Reiss","fp":"A","r":4,"c":39,"s":{"s":23.5,"n":5,"a":4.7,"d":0.57,"Os":23.5,"On":5,"Oa":4.7,"Od":0.57,"pm":2,"pa":3},"p":[[16,{"n":4.5,"e":4157}],[7,{"n":5,"e":4247}],[5,{"n":4.5,"e":4266}],[2,{"n":4,"e":4288}],[1,{"n":5.5,"e":4306}]]}],[1702,{"n":"Dani Ceballos","f":"","fp":"MO","r":14,"c":39,"s":{"s":58,"n":11,"a":5.27,"d":0.75,"Og":2,"Os":113.5,"On":21,"Oa":5.4,"Od":0.92,"pm":20,"pa":1},"p":[[-35,{"n":4,"e":2316}],[-29,{"n":6.5,"e":2260,"g":1}],[-28,{"n":6,"e":2247}],[-27,{"n":5,"e":2240}],[-24,{"n":4.5,"e":2209}],[-23,{"n":5,"e":2192}],[-22,{"n":7,"e":2186}],[-20,{"n":7,"e":2168}],[-19,{"n":6,"e":2155,"g":1}],[-18,{"n":4.5,"e":2145}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4208}],[9,{"n":5,"e":4225}],[8,{"n":5.5,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4256}],[5,{"n":5,"e":4266}],[4,{"n":6,"e":4277}],[3,{"n":4,"e":4285}],[2,{"n":7,"e":4288}],[1,{"n":5,"e":4306}]]}],[1817,{"n":"Campbell","f":"Joel","fp":"A","r":1,"c":39}],[2013,{"n":"Martínez","f":"Emiliano","fp":"G","r":7,"c":39}],[2064,{"n":"Macey","f":"Matt","fp":"G","r":1,"c":39}],[2066,{"n":"Eddie Nketiah","f":"","fp":"A","r":1,"c":39,"s":{"Og":1,"Os":19.5,"On":4,"Oa":4.88,"Od":0.85,"pa":4},"p":[[-38,{"n":6,"e":3539,"g":1}],[-36,{"n":4,"e":3522}],[-31,{"n":5,"e":3477}],[-30,{"n":4.5,"e":3458}]]}],[2071,{"n":"Gilmour","f":"Charlie","fp":"MD","r":1,"c":39}],[2123,{"n":"Iliev","f":"Dejan","fp":"G","r":1,"c":39}],[2125,{"n":"Osei-Tutu","f":"Jordi","fp":"DC","r":1,"c":39}],[2203,{"n":"Mavropanos","f":"Konstantinos","fp":"DC","r":3,"c":39,"s":{"Os":19.5,"On":4,"Oa":4.88,"Od":0.63,"pd":4},"p":[[-38,{"n":5,"e":3539}],[-35,{"n":4,"e":3509}],[-34,{"n":5.5,"e":3507}],[-25,{"n":5,"e":3415}]]}],[2302,{"n":"Aubameyang","f":"Pierre-Emerick","fp":"A","r":49,"c":39,"s":{"g":11,"s":96.5,"n":17,"a":5.68,"d":1.31,"Sg":11,"Ss":96.5,"Sn":17,"Sa":5.68,"Sd":1.31,"Og":23,"Os":201,"On":36,"Oa":5.58,"Od":1.27,"pm":3,"pa":33},"p":[[-38,{"n":8,"e":3539,"g":2}],[-37,{"n":6,"e":3529,"g":1}],[-36,{"n":4.5,"e":3522}],[-35,{"n":6,"e":3509,"g":1}],[-34,{"n":6,"e":3507,"g":1}],[-33,{"n":4.5,"e":3490}],[-32,{"n":6,"e":3478}],[-30,{"n":6,"e":3458,"g":1}],[-29,{"n":4,"e":3454}],[-28,{"n":6.5,"e":3438,"g":1}],[-27,{"n":4.5,"e":3429}],[-25,{"n":4.5,"e":3415}],[-24,{"n":6,"e":3399,"g":1}],[-23,{"n":5,"e":3389}],[-22,{"n":4,"e":3387}],[-21,{"n":6,"e":3369,"g":1}],[-20,{"n":3,"e":3363}],[-19,{"n":6.5,"e":3348,"g":1}],[-18,{"n":7.5,"e":3339,"g":2}],[17,{"n":3,"e":4138}],[16,{"n":7,"e":4157,"g":1}],[15,{"n":5,"e":4158}],[14,{"n":8,"e":4176,"g":2}],[13,{"n":5.5,"e":4178}],[12,{"n":4.5,"e":4196}],[11,{"n":6,"e":4198,"g":1}],[10,{"n":4,"e":4208}],[9,{"n":4.5,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":6.5,"e":4247,"g":1}],[6,{"n":6,"e":4256,"g":1}],[5,{"n":7.5,"e":4266,"g":2}],[4,{"n":7,"e":4277,"g":1}],[3,{"n":5,"e":4285}],[2,{"n":6,"e":4288,"g":1}],[1,{"n":6,"e":4306,"g":1}]],"a":{"m":79,"a":97,"M":123,"n":7}}],[2500,{"n":"Leno","f":"Bernd","fp":"G","r":24,"c":39,"s":{"s":100.5,"n":17,"a":5.91,"d":0.73,"Ss":100.5,"Sn":17,"Sa":5.91,"Sd":0.73,"Os":218.5,"On":38,"Oa":5.75,"Od":0.88,"pg":38},"p":[[-38,{"n":6,"e":3539}],[-37,{"n":6,"e":3529}],[-36,{"n":6.5,"e":3522}],[-35,{"n":4.5,"e":3509}],[-34,{"n":6,"e":3507}],[-33,{"n":6,"e":3490}],[-32,{"n":6,"e":3478}],[-31,{"n":2.5,"e":3477}],[-30,{"n":7,"e":3458}],[-29,{"n":5.5,"e":3454}],[-28,{"n":5.5,"e":3438}],[-27,{"n":6.5,"e":3429}],[-26,{"n":6,"e":3421}],[-25,{"n":7,"e":3415}],[-24,{"n":5,"e":3399}],[-23,{"n":6,"e":3389}],[-22,{"n":5,"e":3387}],[-21,{"n":6,"e":3369}],[-20,{"n":5,"e":3363}],[-19,{"n":5,"e":3348}],[-18,{"n":5,"e":3339}],[17,{"n":5,"e":4138}],[16,{"n":6,"e":4157}],[15,{"n":6,"e":4158}],[14,{"n":7,"e":4176}],[13,{"n":6,"e":4178}],[12,{"n":6,"e":4196}],[11,{"n":7,"e":4198}],[10,{"n":5.5,"e":4208}],[9,{"n":4.5,"e":4225}],[8,{"n":6,"e":4236}],[7,{"n":5.5,"e":4247}],[6,{"n":6.5,"e":4256}],[5,{"n":6.5,"e":4266}],[4,{"n":5.5,"e":4277}],[3,{"n":5,"e":4285}],[2,{"n":5.5,"e":4288}],[1,{"n":7,"e":4306}]],"a":{"m":22,"a":28,"M":38,"n":7}}],[2531,{"n":"Sokratis","f":"","fp":"DC","r":15,"c":39,"s":{"g":1,"s":74,"n":15,"a":4.93,"d":0.86,"Ss":13,"Sn":3,"Sa":4.33,"Sd":1.26,"Og":2,"Os":153,"On":30,"Oa":5.1,"Od":1.03,"pd":30},"p":[[-37,{"n":5.5,"e":3529}],[-36,{"n":3,"e":3522}],[-33,{"n":5.5,"e":3490}],[-32,{"n":6,"e":3478}],[-31,{"n":4.5,"e":3477,"g":1}],[-30,{"n":6,"e":3458}],[-29,{"n":5.5,"e":3454}],[-28,{"n":4.5,"e":3438}],[-27,{"n":6,"e":3429}],[-23,{"n":7.5,"e":3389}],[-22,{"n":5,"e":3387}],[-21,{"n":6,"e":3369}],[-20,{"n":3,"e":3363}],[-19,{"n":5,"e":3348}],[-18,{"n":6,"e":3339}],[17,{"n":3,"e":4138}],[16,{"n":5.5,"e":4157}],[15,{"n":4.5,"e":4158}],[13,{"n":4.5,"e":4178}],[11,{"n":5.5,"e":4198}],[10,{"n":6,"e":4208,"g":1}],[9,{"n":4,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4247}],[6,{"n":5.5,"e":4256}],[5,{"n":4,"e":4266}],[4,{"n":5,"e":4277}],[3,{"n":4.5,"e":4285}],[2,{"n":6,"e":4288}],[1,{"n":6,"e":4306}]]}],[2535,{"n":"Lichtsteiner","f":"Stephan","fp":"DC","r":5,"c":39,"s":{"Os":35,"On":8,"Oa":4.38,"Od":0.79,"pd":8},"p":[[-38,{"n":5.5,"e":3539}],[-37,{"n":5,"e":3529}],[-27,{"n":4.5,"e":3429}],[-25,{"n":3.5,"e":3415}],[-24,{"n":4.5,"e":3399}],[-20,{"n":3.5,"e":3363}],[-19,{"n":3.5,"e":3348}],[-18,{"n":5,"e":3339}]]}],[2549,{"n":"Torreira","f":"Lucas","fp":"MD","r":14,"c":39,"s":{"g":1,"s":74,"n":14,"a":5.29,"d":0.83,"Ss":37,"Sn":7,"Sa":5.29,"Sd":0.81,"Og":1,"Os":157.5,"On":31,"Oa":5.08,"Od":0.79,"pm":31},"p":[[-37,{"n":5.5,"e":3529}],[-36,{"n":4.5,"e":3522}],[-35,{"n":4.5,"e":3509}],[-34,{"n":5,"e":3507}],[-31,{"n":4.5,"e":3477}],[-29,{"n":4,"e":3454}],[-28,{"n":5.5,"e":3438}],[-27,{"n":6,"e":3429}],[-26,{"n":5,"e":3421}],[-25,{"n":5,"e":3415}],[-24,{"n":5,"e":3399}],[-23,{"n":6,"e":3389}],[-22,{"n":5,"e":3387}],[-21,{"n":4.5,"e":3369}],[-20,{"n":3,"e":3363}],[-19,{"n":5.5,"e":3348}],[-18,{"n":5,"e":3339}],[17,{"n":5,"e":4138}],[16,{"n":6.5,"e":4157}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4176}],[13,{"n":5.5,"e":4178}],[12,{"n":4,"e":4196}],[11,{"n":6,"e":4198}],[8,{"n":5,"e":4236}],[7,{"n":4.5,"e":4247}],[6,{"n":4.5,"e":4256}],[5,{"n":5,"e":4266}],[4,{"n":6,"e":4277}],[3,{"n":7,"e":4285,"g":1}],[2,{"n":5,"e":4288}]]}],[2887,{"n":"Smith Rowe","f":"Emile","fp":"MO","r":1,"c":39,"s":{"s":5,"n":1,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":5,"On":1,"Oa":5,"pm":1},"p":[[17,{"n":5,"e":4138}]]}],[2926,{"n":"John-Jules","f":"Tyreece","fp":"A","r":1,"c":39}],[2927,{"n":"Saka","f":"Bukayo","fp":"A","r":6,"c":39,"s":{"s":40,"n":8,"a":5,"d":0.76,"Ss":5,"Sn":1,"Sa":5,"Os":45,"On":9,"Oa":5,"Od":0.71,"pd":5,"pm":3,"pa":1},"p":[[-21,{"n":5,"e":3369}],[17,{"n":5,"e":4138}],[14,{"n":4.5,"e":4176}],[11,{"n":4,"e":4198}],[10,{"n":4.5,"e":4208}],[9,{"n":5,"e":4225}],[8,{"n":5,"e":4236}],[7,{"n":6.5,"e":4247}],[6,{"n":5.5,"e":4256}]]}],[2931,{"n":"Medley","f":"Zech","fp":"DC","r":1,"c":39}],[2934,{"n":"Pleguezuelo","f":"Julio","fp":"DC","r":1,"c":39}],[5416,{"n":"Gabriel Martinelli","f":"","fp":"MO","r":9,"c":39,"s":{"g":1,"s":46.5,"n":9,"a":5.17,"d":0.71,"Sg":1,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.97,"Og":1,"Os":46.5,"On":9,"Oa":5.17,"Od":0.71,"pm":9},"p":[[17,{"n":4.5,"e":4138}],[16,{"n":7,"e":4157,"g":1}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4176}],[13,{"n":5,"e":4178}],[11,{"n":5,"e":4198}],[9,{"n":5,"e":4225}],[8,{"n":5,"e":4236}],[1,{"n":5,"e":4306}]]}],[5428,{"n":"Thompson","f":"Dominic","fp":"DC","r":1,"c":39}],[5429,{"n":"Olayinka","f":"James","fp":"MD","r":1,"c":39}],[5440,{"n":"Burton","f":"Robbie","fp":"MD","r":1,"c":39}],[6122,{"n":"Tierney","f":"Kieran","fp":"DL","r":10,"c":39,"s":{"s":24.5,"n":5,"a":4.9,"d":0.55,"Os":24.5,"On":5,"Oa":4.9,"Od":0.55,"pd":4,"pm":1},"p":[[16,{"n":5,"e":4157}],[15,{"n":5,"e":4158}],[13,{"n":4,"e":4178}],[11,{"n":5.5,"e":4198}],[10,{"n":5,"e":4208}]]}],[193,{"n":"El Ghazi","f":"Anwar","fp":"A","r":13,"c":78,"s":{"g":3,"s":79,"n":15,"a":5.27,"d":1.1,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":0.35,"Og":3,"Os":79,"On":15,"Oa":5.27,"Od":1.1,"pm":4,"pa":11},"p":[[17,{"n":4.5,"e":4145}],[16,{"n":4,"e":4148}],[14,{"n":5.5,"e":4175}],[13,{"n":6.5,"e":4179,"g":1}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4212}],[9,{"n":4,"e":4218}],[8,{"n":7,"e":4232}],[7,{"n":6.5,"e":4239,"g":1}],[5,{"n":5,"e":4267}],[3,{"n":7,"e":4278,"g":1}],[2,{"n":4,"e":4289}],[1,{"n":4,"e":4304}],[6,{"n":6,"e":4256}]]}],[344,{"n":"Guilbert","f":"Frederic","fp":"DL","r":11,"c":78,"s":{"s":69,"n":14,"a":4.93,"d":0.7,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":1,"Os":152.5,"On":32,"Oa":4.77,"Od":0.92,"pd":28,"pm":4},"p":[[4,{"n":4.5,"e":4270}],[-38,{"n":5,"e":3104}],[-37,{"n":3,"e":3095}],[-36,{"n":7,"e":3084,"g":1}],[-35,{"n":5.5,"e":3073}],[-34,{"n":5,"e":3065}],[-33,{"n":5,"e":3056}],[-32,{"n":4.5,"e":3042}],[-31,{"n":3.5,"e":3038}],[-30,{"n":5.5,"e":3025}],[-29,{"n":2.5,"e":3014}],[-27,{"n":5,"e":2994}],[-26,{"n":5,"e":2991}],[-25,{"n":5,"e":2974}],[-23,{"n":5,"e":2954}],[-24,{"n":4.5,"e":2962}],[-21,{"n":3,"e":2934}],[-19,{"n":5,"e":2918}],[-20,{"n":4.5,"e":2923}],[17,{"n":4.5,"e":4145}],[16,{"n":5,"e":4148}],[14,{"n":4.5,"e":4175}],[13,{"n":5,"e":4179}],[12,{"n":4,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4,"e":4212}],[9,{"n":6.5,"e":4218}],[8,{"n":5,"e":4232}],[7,{"n":5,"e":4239}],[6,{"n":4.5,"e":4256}],[5,{"n":5.5,"e":4267}],[3,{"n":6,"e":4278}]]}],[708,{"n":"Heaton","f":"Tom","fp":"G","r":14,"c":78,"s":{"ao":1,"s":85,"n":16,"a":5.31,"d":1.05,"Ss":8,"Sn":2,"Sa":4,"Oao":1,"Os":189,"On":35,"Oa":5.4,"Od":1.16,"pg":35},"p":[[15,{"n":7,"e":4164}],[-37,{"n":4,"e":3532}],[-36,{"n":6,"e":3519}],[-34,{"n":6.5,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6.5,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":2.5,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":5,"e":3444}],[-27,{"n":7,"e":3430}],[-26,{"n":6.5,"e":3418}],[-25,{"n":5.5,"e":3409}],[-24,{"n":7,"e":3403}],[-23,{"n":6.5,"e":3396}],[-21,{"n":5,"e":3373}],[-20,{"n":7,"e":3359}],[-38,{"n":4,"e":3539}],[-35,{"n":6,"e":3511}],[-22,{"n":5.5,"e":3379}],[17,{"n":4,"e":4145}],[16,{"n":4,"e":4148}],[14,{"n":5.5,"e":4175,"a":1}],[13,{"n":7,"e":4179}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4212}],[9,{"n":6.5,"e":4218}],[8,{"n":6,"e":4232}],[7,{"n":4,"e":4239}],[6,{"n":5,"e":4256}],[5,{"n":5.5,"e":4267}],[4,{"n":6,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":4,"e":4289}],[1,{"n":4.5,"e":4304}]]}],[939,{"n":"Targett","f":"Matt","fp":"DL","r":13,"c":78,"s":{"g":1,"s":55.5,"n":11,"a":5.05,"d":1.49,"Sg":1,"Ss":55.5,"Sn":11,"Sa":5.05,"Sd":1.49,"Og":2,"Os":106.5,"On":21,"Oa":5.07,"Od":1.21,"pd":14,"pm":7},"p":[[-38,{"n":5.5,"e":3545}],[-36,{"n":6.5,"e":3525,"g":1}],[-24,{"n":5,"e":3405}],[-23,{"n":4.5,"e":3395}],[-22,{"n":6,"e":3384}],[-20,{"n":4,"e":3365}],[-19,{"n":4,"e":3355}],[-18,{"n":5,"e":3343}],[-27,{"n":4.5,"e":3429}],[-25,{"n":6,"e":3409}],[17,{"n":3,"e":4145}],[16,{"n":3,"e":4148}],[15,{"n":4.5,"e":4164}],[14,{"n":6.5,"e":4175}],[13,{"n":7,"e":4179}],[12,{"n":4.5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":3.5,"e":4212}],[9,{"n":7,"e":4218,"g":1}],[8,{"n":6,"e":4232}],[7,{"n":5.5,"e":4239}]],"a":{"m":10,"a":13,"M":17,"n":6}}],[1059,{"n":"Mings","f":"Tyrone","fp":"DC","r":16,"c":78,"s":{"g":1,"s":85,"n":16,"a":5.31,"d":0.79,"Og":1,"Os":90,"On":17,"Oa":5.29,"Od":0.77,"pd":17},"p":[[-20,{"n":5,"e":3364}],[16,{"n":4.5,"e":4148}],[15,{"n":4.5,"e":4164}],[14,{"n":6,"e":4175,"g":1}],[13,{"n":7,"e":4179}],[12,{"n":4.5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4.5,"e":4212}],[9,{"n":6,"e":4218}],[8,{"n":5.5,"e":4232}],[7,{"n":5,"e":4239}],[6,{"n":4.5,"e":4256}],[5,{"n":5.5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":6.5,"e":4304}]]}],[1885,{"n":"Douglas Luiz","f":"","fp":"MD","r":12,"c":78,"s":{"g":2,"s":79,"n":15,"a":5.27,"d":0.73,"Sg":1,"Ss":52.5,"Sn":10,"Sa":5.25,"Sd":0.86,"Og":2,"Os":149.5,"On":29,"Oa":5.16,"Od":0.82,"pm":29},"p":[[-37,{"n":5,"e":2336}],[-35,{"n":6.5,"e":2315}],[-34,{"n":4,"e":2310}],[-33,{"n":4,"e":2295}],[-31,{"n":5.5,"e":2279}],[-30,{"n":5,"e":2263}],[-26,{"n":6.5,"e":2231}],[-25,{"n":5,"e":2217}],[-22,{"n":5,"e":2184}],[-21,{"n":4.5,"e":2177}],[-20,{"n":4,"e":2163}],[-19,{"n":4,"e":2157}],[-18,{"n":5,"e":2150}],[-24,{"n":6.5,"e":2209}],[17,{"n":5,"e":4145}],[16,{"n":3.5,"e":4148}],[15,{"n":6,"e":4164}],[14,{"n":5.5,"e":4175}],[13,{"n":6,"e":4179}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4.5,"e":4212}],[9,{"n":5.5,"e":4218}],[8,{"n":6.5,"e":4232,"g":1}],[5,{"n":5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":5.5,"e":4289,"g":1}],[1,{"n":5,"e":4304}]]}],[2587,{"n":"Hause","f":"Kortney","fp":"DC","r":1,"c":78,"s":{"s":3.5,"n":1,"a":3.5,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":3.5,"On":1,"Oa":3.5,"pd":1},"p":[[17,{"n":3.5,"e":4145}]]}],[2823,{"n":"Engels","f":"Björn","fp":"DC","r":10,"c":78,"s":{"s":62.5,"n":13,"a":4.81,"d":1.01,"Ss":8,"Sn":2,"Sa":4,"Sd":0.71,"Og":1,"Oao":1,"Os":163,"On":32,"Oa":5.09,"Od":0.99,"pd":32},"p":[[-37,{"n":6,"e":3092}],[-35,{"n":3,"e":3079}],[-34,{"n":5,"e":3063}],[-33,{"n":4,"e":3059,"a":1}],[-32,{"n":5.5,"e":3046}],[-30,{"n":3.5,"e":3030}],[-29,{"n":5.5,"e":3021}],[-28,{"n":6.5,"e":3003}],[-27,{"n":5.5,"e":3001}],[-26,{"n":5,"e":2986}],[-25,{"n":6.5,"e":2980}],[-24,{"n":5.5,"e":2971}],[-23,{"n":6,"e":2959}],[-22,{"n":6,"e":2944}],[-21,{"n":5.5,"e":2939}],[-20,{"n":5.5,"e":2926}],[-36,{"n":4.5,"e":3084}],[-31,{"n":5.5,"e":3040}],[-19,{"n":6,"e":2918,"g":1}],[17,{"n":4.5,"e":4145}],[16,{"n":3.5,"e":4148}],[11,{"n":5,"e":4199}],[10,{"n":3.5,"e":4212}],[9,{"n":5,"e":4218}],[8,{"n":7,"e":4232}],[7,{"n":4.5,"e":4239}],[6,{"n":3.5,"e":4256}],[5,{"n":5.5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4304}]]}],[3651,{"n":"Ramsey","f":"Jacob","fp":"MO","r":1,"c":78}],[3653,{"n":"Revan","f":"Dominic","fp":"DC","r":1,"c":78}],[3656,{"n":"Davis","f":"Keinan","fp":"MO","r":2,"c":78,"s":{"s":26.5,"n":6,"a":4.42,"d":0.49,"Os":26.5,"On":6,"Oa":4.42,"Od":0.49,"pa":6},"p":[[10,{"n":4,"e":4212}],[9,{"n":5,"e":4218}],[7,{"n":4.5,"e":4239}],[5,{"n":4,"e":4267}],[4,{"n":5,"e":4270}],[2,{"n":4,"e":4289}]]}],[3661,{"n":"Doyle-Hayes","f":"Jake","fp":"MD","r":3,"c":78}],[3662,{"n":"Wesley","f":"","fp":"A","r":16,"c":78,"s":{"g":4,"s":78.5,"n":17,"a":4.62,"d":1.36,"Sg":4,"Ss":78.5,"Sn":17,"Sa":4.62,"Sd":1.36,"Og":4,"Os":78.5,"On":17,"Oa":4.62,"Od":1.36,"pa":17},"p":[[17,{"n":4,"e":4145}],[16,{"n":3.5,"e":4148}],[15,{"n":3.5,"e":4164}],[14,{"n":5,"e":4175}],[13,{"n":5,"e":4179}],[12,{"n":4.5,"e":4195}],[11,{"n":3,"e":4199}],[10,{"n":3,"e":4212}],[9,{"n":4,"e":4218}],[8,{"n":8,"e":4232,"g":2}],[7,{"n":4,"e":4239}],[6,{"n":6,"e":4256,"g":1}],[5,{"n":4.5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":7,"e":4278,"g":1}],[2,{"n":5,"e":4289}],[1,{"n":3.5,"e":4304}]],"a":{"m":22,"a":24,"M":30,"n":10}}],[3669,{"n":"Konsa Ngoyo","f":"Ezri","fp":"DC","r":10,"c":78,"s":{"s":28,"n":6,"a":4.67,"d":0.88,"Os":28,"On":6,"Oa":4.67,"Od":0.88,"pd":6},"p":[[16,{"n":3.5,"e":4148}],[15,{"n":5,"e":4164}],[14,{"n":4.5,"e":4175}],[13,{"n":6,"e":4179}],[12,{"n":4,"e":4195}],[8,{"n":5,"e":4232}]]}],[3677,{"n":"Clark","f":"Mitchell","fp":"DC","r":3,"c":78}],[3678,{"n":"Bree","f":"James","fp":"DC","r":3,"c":78}],[3680,{"n":"O'Hare","f":"Callum","fp":"MD","r":1,"c":78}],[3688,{"n":"Hepburn-Murphy","f":"Rushian","fp":"A","r":7,"c":78}],[3689,{"n":"Green","f":"Andre","fp":"MD","r":7,"c":78}],[3698,{"n":"McGinn","f":"John","fp":"MD","r":23,"c":78,"s":{"g":3,"s":103,"n":17,"a":6.06,"d":1.07,"Sg":3,"Ss":103,"Sn":17,"Sa":6.06,"Sd":1.07,"Og":3,"Os":103,"On":17,"Oa":6.06,"Od":1.07,"pm":17},"p":[[17,{"n":5,"e":4145}],[16,{"n":4,"e":4148}],[15,{"n":6,"e":4164}],[14,{"n":6,"e":4175}],[13,{"n":5.5,"e":4179}],[12,{"n":5.5,"e":4195}],[11,{"n":7,"e":4199}],[10,{"n":4,"e":4212}],[9,{"n":7,"e":4218}],[8,{"n":7,"e":4232}],[7,{"n":7,"e":4239,"g":1}],[6,{"n":8,"e":4256,"g":1}],[5,{"n":6,"e":4267}],[4,{"n":6,"e":4270}],[3,{"n":7,"e":4278}],[2,{"n":6,"e":4289}],[1,{"n":6,"e":4304,"g":1}]],"a":{"m":23,"a":26,"M":33,"n":6}}],[3700,{"n":"Grealish","f":"Jack","fp":"MO","r":26,"c":78,"s":{"g":4,"s":90,"n":15,"a":6,"d":1.35,"Sg":2,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.9,"Og":4,"Os":90,"On":15,"Oa":6,"Od":1.35,"pm":8,"pa":7},"p":[[17,{"n":2.5,"e":4145}],[16,{"n":6,"e":4148,"g":1}],[15,{"n":5,"e":4164}],[14,{"n":6.5,"e":4175,"g":1}],[13,{"n":7.5,"e":4179}],[10,{"n":4.5,"e":4212}],[9,{"n":8,"e":4218,"g":1}],[8,{"n":7.5,"e":4232,"g":1}],[7,{"n":6,"e":4239}],[6,{"n":7,"e":4256}],[5,{"n":6,"e":4267}],[4,{"n":5.5,"e":4270}],[3,{"n":6,"e":4278}],[2,{"n":6,"e":4289}],[1,{"n":6,"e":4304}]]}],[3707,{"n":"Nyland","f":"Ørjan","fp":"G","r":7,"c":78,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pg":1},"p":[[12,{"n":4,"e":4195}]]}],[3710,{"n":"Jota","f":"","fp":"MO","r":5,"c":78,"s":{"s":30,"n":6,"a":5,"d":1.1,"Os":30,"On":6,"Oa":5,"Od":1.1,"pm":4,"pa":2},"p":[[15,{"n":5,"e":4164}],[5,{"n":4,"e":4267}],[4,{"n":4,"e":4270}],[3,{"n":7,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":5,"e":4304}]]}],[3711,{"n":"Kalinic","f":"Lovre","fp":"G","r":1,"c":78}],[3714,{"n":"Hourihane","f":"Conor","fp":"MD","r":11,"c":78,"s":{"g":2,"s":58.5,"n":10,"a":5.85,"d":1.23,"Og":2,"Os":58.5,"On":10,"Oa":5.85,"Od":1.23,"pm":10},"p":[[15,{"n":4.5,"e":4164}],[14,{"n":6,"e":4175}],[13,{"n":8,"e":4179,"g":1}],[11,{"n":5,"e":4199}],[9,{"n":5.5,"e":4218}],[8,{"n":8,"e":4232,"g":1}],[7,{"n":5.5,"e":4239}],[6,{"n":5,"e":4256}],[4,{"n":5,"e":4270}],[1,{"n":6,"e":4304}]]}],[3718,{"n":"Hogan","f":"Scott","fp":"A","r":5,"c":78}],[3719,{"n":"Steer","f":"Jed","fp":"G","r":3,"c":78,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[12,{"n":5,"e":4195}]]}],[3730,{"n":"Kodjia","f":"Jonathan","fp":"A","r":3,"c":78,"s":{"s":13.5,"n":3,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":13.5,"On":3,"Oa":4.5,"pa":3},"p":[[17,{"n":4.5,"e":4145}],[11,{"n":4.5,"e":4199}],[1,{"n":4.5,"e":4304}]]}],[3733,{"n":"Taylor","f":"Neil","fp":"DL","r":4,"c":78,"s":{"s":38.5,"n":8,"a":4.81,"d":0.37,"Os":38.5,"On":8,"Oa":4.81,"Od":0.37,"pd":8},"p":[[12,{"n":4.5,"e":4195}],[7,{"n":4.5,"e":4239}],[6,{"n":4.5,"e":4256}],[5,{"n":5,"e":4267}],[4,{"n":5,"e":4270}],[3,{"n":5.5,"e":4278}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4304}]]}],[3735,{"n":"Chester","f":"James","fp":"DC","r":1,"c":78}],[3737,{"n":"Lansbury","f":"Henri","fp":"MO","r":3,"c":78,"s":{"s":29.5,"n":6,"a":4.92,"d":0.2,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":29.5,"On":6,"Oa":4.92,"Od":0.2,"pm":6},"p":[[17,{"n":4.5,"e":4145}],[14,{"n":5,"e":4175}],[13,{"n":5,"e":4179}],[12,{"n":5,"e":4195}],[6,{"n":5,"e":4256}],[4,{"n":5,"e":4270}]]}],[3740,{"n":"Ahmed El Mohamady","f":"","fp":"DL","r":8,"c":78,"s":{"s":39.5,"n":8,"a":4.94,"d":1.15,"Os":39.5,"On":8,"Oa":4.94,"Od":1.15,"pd":8},"p":[[16,{"n":3.5,"e":4148}],[15,{"n":6,"e":4164}],[11,{"n":5,"e":4199}],[6,{"n":4,"e":4256}],[5,{"n":5,"e":4267}],[3,{"n":5,"e":4278}],[2,{"n":7,"e":4289}],[1,{"n":4,"e":4304}]]}],[3742,{"n":"Bjarnason","f":"Birkir","fp":"MD","r":12,"c":78}],[5448,{"n":"Trézéguet","f":"","fp":"MO","r":15,"c":78,"s":{"g":3,"s":77,"n":15,"a":5.13,"d":0.97,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":0.65,"Og":3,"Os":77,"On":15,"Oa":5.13,"Od":0.97,"pm":9,"pa":6},"p":[[17,{"n":5,"e":4145}],[16,{"n":4.5,"e":4148}],[15,{"n":6,"e":4164,"g":1}],[14,{"n":5.5,"e":4175}],[12,{"n":6.5,"e":4195,"g":1}],[11,{"n":6,"e":4199,"g":1}],[10,{"n":5,"e":4212}],[9,{"n":5.5,"e":4218}],[8,{"n":5,"e":4232}],[7,{"n":6,"e":4239}],[6,{"n":5,"e":4256}],[4,{"n":2.5,"e":4270}],[3,{"n":5,"e":4278}],[2,{"n":4,"e":4289}],[1,{"n":5.5,"e":4304}]]}],[5997,{"n":"Nakamba","f":"Marvelous","fp":"MD","r":12,"c":78,"s":{"s":59,"n":11,"a":5.36,"d":0.98,"Ss":15,"Sn":3,"Sa":5,"Sd":1.32,"Os":59,"On":11,"Oa":5.36,"Od":0.98,"pm":11},"p":[[17,{"n":5.5,"e":4145}],[16,{"n":3.5,"e":4148}],[15,{"n":6,"e":4164}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4199}],[10,{"n":4.5,"e":4212}],[9,{"n":5.5,"e":4218}],[8,{"n":7.5,"e":4232}],[7,{"n":5.5,"e":4239}],[6,{"n":5.5,"e":4256}],[5,{"n":5.5,"e":4267}]]}],[6125,{"n":"Tshibola","f":"Aaron","fp":"MD","r":6,"c":78}],[6241,{"n":"Archer","f":"Cameron","fp":"A","r":1,"c":78}],[597,{"n":"Defoe","f":"Jermain","fp":"A","r":6,"c":36}],[651,{"n":"King","f":"Joshua","fp":"A","r":15,"c":36,"s":{"g":3,"s":68.5,"n":13,"a":5.27,"d":1.05,"Ss":5,"Sn":1,"Sa":5,"Og":10,"Os":172,"On":34,"Oa":5.06,"Od":1.27,"pm":6,"pa":28},"p":[[17,{"n":5,"e":4140}],[12,{"n":4,"e":4191}],[11,{"n":6,"e":4200,"g":1}],[10,{"n":5,"e":4216}],[9,{"n":4.5,"e":4219}],[7,{"n":7,"e":4240,"g":1}],[6,{"n":5,"e":4248}],[5,{"n":7.5,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":4.5,"e":4286}],[1,{"n":5.5,"e":4300}],[-38,{"n":6,"e":3540,"g":1}],[-37,{"n":5,"e":3528}],[-34,{"n":4.5,"e":3498}],[-32,{"n":3.5,"e":3484}],[-31,{"n":7,"e":3468,"g":2}],[-30,{"n":5.5,"e":3462}],[-29,{"n":3.5,"e":3448}],[-27,{"n":5.5,"e":3428,"g":1}],[-26,{"n":3.5,"e":3422}],[-25,{"n":5,"e":3410}],[-23,{"n":7,"e":3388,"g":1}],[-22,{"n":5,"e":3383}],[-21,{"n":4,"e":3368}],[-19,{"n":4.5,"e":3356}],[-18,{"n":5,"e":3338}],[-36,{"n":3.5,"e":3525}],[-35,{"n":4,"e":3508}],[-33,{"n":4,"e":3488}],[-28,{"n":4.5,"e":3438}],[-24,{"n":9,"e":3398,"g":2}],[-20,{"n":4,"e":3364}],[8,{"n":5.5,"e":4236}],[2,{"n":5,"e":4289,"g":1}]],"a":{"m":22,"a":31,"M":40,"n":8}}],[729,{"n":"Daniels","f":"Charlie","fp":"DL","r":1,"c":36,"s":{"s":10.5,"n":2,"a":5.25,"d":1.06,"Og":1,"Os":61,"On":13,"Oa":4.69,"Od":1.09,"pd":13},"p":[[-32,{"n":4.5,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":6,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":4,"e":3438}],[-24,{"n":6,"e":3398,"g":1}],[-23,{"n":5,"e":3388}],[-21,{"n":4,"e":3368}],[-20,{"n":3,"e":3364}],[-19,{"n":3,"e":3356}],[-18,{"n":6,"e":3338}],[3,{"n":4.5,"e":4286}],[2,{"n":6,"e":4289}]]}],[736,{"n":"Stanislas","f":"Junior","fp":"MO","r":7,"c":36,"s":{"Og":1,"Os":59.5,"On":12,"Oa":4.96,"Od":1.18,"pd":2,"pm":9,"pa":1},"p":[[-35,{"n":5,"e":3508}],[-34,{"n":6.5,"e":3498,"g":1}],[-33,{"n":4.5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-25,{"n":4,"e":3410}],[-24,{"n":7.5,"e":3398}],[-23,{"n":5,"e":3388}],[-22,{"n":5.5,"e":3383}],[-21,{"n":5,"e":3368}],[-20,{"n":3,"e":3364}],[-19,{"n":4,"e":3356}],[-18,{"n":5,"e":3338}]]}],[744,{"n":"Fraser","f":"Ryan","fp":"MO","r":18,"c":36,"s":{"g":1,"s":89.5,"n":16,"a":5.59,"d":0.74,"Ss":7,"Sn":1,"Sa":7,"Og":4,"Os":205.5,"On":37,"Oa":5.55,"Od":1.13,"pm":35,"pa":2},"p":[[16,{"n":4.5,"e":4149}],[15,{"n":5,"e":4166}],[14,{"n":4.5,"e":4173}],[13,{"n":6,"e":4180}],[-38,{"n":4,"e":3540}],[-37,{"n":8,"e":3528}],[-36,{"n":6,"e":3525}],[-35,{"n":5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-31,{"n":5.5,"e":3468}],[-30,{"n":8,"e":3462,"g":1}],[-29,{"n":4.5,"e":3448}],[-28,{"n":3.5,"e":3438}],[-27,{"n":6,"e":3428}],[-26,{"n":4.5,"e":3422}],[-25,{"n":4.5,"e":3410}],[-24,{"n":6,"e":3398}],[-23,{"n":6.5,"e":3388}],[-22,{"n":5.5,"e":3383}],[-21,{"n":7,"e":3368,"g":1}],[-20,{"n":5,"e":3364}],[-19,{"n":3.5,"e":3356}],[-18,{"n":5.5,"e":3338}],[17,{"n":7,"e":4140}],[12,{"n":5.5,"e":4191}],[11,{"n":5.5,"e":4200}],[10,{"n":6,"e":4216}],[9,{"n":6,"e":4219}],[8,{"n":5.5,"e":4236}],[6,{"n":5,"e":4248}],[5,{"n":7,"e":4265,"g":1}],[4,{"n":6,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":5.5,"e":4289}],[1,{"n":5.5,"e":4300}]],"a":{"m":22,"a":23,"M":25,"n":5}}],[754,{"n":"Arter","f":"Harry","fp":"MD","r":6,"c":36,"s":{"Os":54,"On":11,"Oa":4.91,"Od":1.18,"pm":10,"pa":1},"p":[[-30,{"n":6,"e":3459}],[-27,{"n":2.5,"e":3431}],[-26,{"n":5,"e":3424}],[-22,{"n":5,"e":3380}],[-21,{"n":3.5,"e":3370}],[-20,{"n":6,"e":3362}],[-19,{"n":5,"e":3350}],[-18,{"n":4,"e":3340}],[-34,{"n":5,"e":3499}],[-32,{"n":6.5,"e":3481}],[-24,{"n":5.5,"e":3399}]]}],[784,{"n":"Steve Cook","f":"","fp":"DC","r":10,"c":36,"s":{"g":1,"s":74.5,"n":14,"a":5.32,"d":0.87,"Og":1,"Os":142.5,"On":28,"Oa":5.09,"Od":1.15,"pd":28},"p":[[-38,{"n":3,"e":3540}],[-37,{"n":6,"e":3528}],[-36,{"n":3.5,"e":3525}],[-35,{"n":5,"e":3508}],[-34,{"n":7,"e":3498}],[-26,{"n":4,"e":3422}],[-25,{"n":4.5,"e":3410}],[-24,{"n":7,"e":3398}],[-23,{"n":6,"e":3388}],[-22,{"n":4,"e":3383}],[-21,{"n":5,"e":3368}],[-20,{"n":4,"e":3364}],[-19,{"n":3,"e":3356}],[-18,{"n":6,"e":3338}],[14,{"n":4,"e":4173}],[13,{"n":6.5,"e":4180,"g":1}],[12,{"n":4,"e":4191}],[11,{"n":6,"e":4200}],[10,{"n":6,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":6,"e":4236}],[7,{"n":4.5,"e":4240}],[6,{"n":6,"e":4248}],[5,{"n":6,"e":4265}],[4,{"n":4.5,"e":4271}],[3,{"n":4.5,"e":4286}],[2,{"n":6,"e":4289}],[1,{"n":5,"e":4300}]]}],[809,{"n":"Callum Wilson","f":"","fp":"A","r":21,"c":36,"s":{"g":5,"s":80.5,"n":16,"a":5.03,"d":1.26,"Og":11,"Os":152.5,"On":30,"Oa":5.08,"Od":1.53,"pa":30},"p":[[-38,{"n":4,"e":3540}],[-37,{"n":5,"e":3528}],[-36,{"n":8,"e":3525,"g":2}],[-35,{"n":3.5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":4,"e":3488}],[-32,{"n":3.5,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":7,"e":3462,"g":1}],[-23,{"n":7,"e":3388,"g":1}],[-21,{"n":6.5,"e":3368,"g":1}],[-20,{"n":3,"e":3364}],[-19,{"n":3,"e":3356}],[-18,{"n":5.5,"e":3338}],[16,{"n":3.5,"e":4149}],[15,{"n":3.5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":4.5,"e":4180}],[12,{"n":4,"e":4191}],[11,{"n":5,"e":4200}],[10,{"n":4,"e":4216}],[9,{"n":4,"e":4219}],[8,{"n":5,"e":4236}],[7,{"n":6.5,"e":4240,"g":1}],[6,{"n":7,"e":4248,"g":1}],[5,{"n":7.5,"e":4265,"g":2}],[4,{"n":6,"e":4271,"g":1}],[3,{"n":4.5,"e":4286}],[2,{"n":6,"e":4289}],[1,{"n":5.5,"e":4300}]],"a":{"m":33,"a":35,"M":40,"n":9}}],[827,{"n":"Francis","f":"Simon","fp":"DL","r":8,"c":36,"s":{"s":33.5,"n":7,"a":4.79,"d":1.19,"Ss":15,"Sn":3,"Sa":5,"Sd":1.5,"Os":43,"On":9,"Oa":4.78,"Od":1.09,"pd":9},"p":[[-19,{"n":4,"e":3356}],[-18,{"n":5.5,"e":3338}],[17,{"n":6.5,"e":4140}],[16,{"n":3.5,"e":4149}],[15,{"n":5,"e":4166}],[13,{"n":3,"e":4180}],[12,{"n":5,"e":4191}],[8,{"n":5.5,"e":4236}],[7,{"n":5,"e":4240}]]}],[832,{"n":"Smith","f":"Brad","fp":"DC","r":1,"c":36,"a":{"m":7,"a":9,"M":10,"n":5}}],[840,{"n":"Aké","f":"Nathan","fp":"DC","r":18,"c":36,"s":{"g":1,"s":85.5,"n":16,"a":5.34,"d":0.93,"Og":4,"Os":195,"On":37,"Oa":5.27,"Od":1.12,"pd":35,"pm":2},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":7,"e":3528,"g":1}],[-36,{"n":3.5,"e":3525}],[-35,{"n":5.5,"e":3508}],[-34,{"n":7,"e":3498}],[-33,{"n":5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-31,{"n":5.5,"e":3468}],[-30,{"n":6,"e":3462}],[-29,{"n":5.5,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":6.5,"e":3428}],[-26,{"n":4,"e":3422}],[-25,{"n":4.5,"e":3410}],[-24,{"n":7,"e":3398}],[-23,{"n":6,"e":3388}],[-22,{"n":5,"e":3383}],[-21,{"n":6,"e":3368,"g":1}],[-20,{"n":4.5,"e":3364,"g":1}],[-19,{"n":2.5,"e":3356}],[-18,{"n":6,"e":3338}],[16,{"n":5.5,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":4.5,"e":4180}],[12,{"n":4.5,"e":4191}],[11,{"n":6.5,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":6,"e":4236}],[7,{"n":5.5,"e":4240}],[6,{"n":7.5,"e":4248,"g":1}],[5,{"n":6,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":5.5,"e":4289}],[1,{"n":5.5,"e":4300}]],"a":{"m":23,"a":26,"M":34,"n":12}}],[867,{"n":"Surman","f":"Andrew","fp":"MD","r":5,"c":36,"s":{"s":15,"n":3,"a":5,"Os":60,"On":12,"Oa":5,"Od":1.07,"pm":12},"p":[[-30,{"n":6,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":4,"e":3438}],[-26,{"n":4.5,"e":3422}],[-25,{"n":5.5,"e":3410}],[-24,{"n":7,"e":3398}],[-20,{"n":4,"e":3364}],[-19,{"n":3,"e":3356}],[-18,{"n":6,"e":3338}],[6,{"n":5,"e":4248}],[4,{"n":5,"e":4271}],[2,{"n":5,"e":4289}]]}],[891,{"n":"Smith","f":"Adam","fp":"DL","r":8,"c":36,"s":{"s":48,"n":10,"a":4.8,"d":0.71,"Os":109.5,"On":23,"Oa":4.76,"Od":0.88,"pd":19,"pm":4},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":6,"e":3528}],[-34,{"n":6.5,"e":3498}],[-33,{"n":4,"e":3488}],[-30,{"n":5,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":3.5,"e":3438}],[-27,{"n":4,"e":3428}],[-26,{"n":4,"e":3422}],[-25,{"n":4.5,"e":3410}],[-24,{"n":5.5,"e":3398}],[-23,{"n":5.5,"e":3388}],[-22,{"n":3,"e":3383}],[15,{"n":5.5,"e":4166}],[13,{"n":4,"e":4180}],[12,{"n":4,"e":4191}],[11,{"n":6,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5,"e":4219}],[4,{"n":4.5,"e":4271}],[3,{"n":4,"e":4286}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4300}]]}],[892,{"n":"Boruc","f":"Artur","fp":"G","r":7,"c":36,"s":{"Os":67,"On":12,"Oa":5.58,"Od":1.22,"pg":12},"p":[[-36,{"n":4.5,"e":3525}],[-35,{"n":6.5,"e":3508}],[-34,{"n":6,"e":3498}],[-31,{"n":5,"e":3468}],[-30,{"n":5.5,"e":3462}],[-29,{"n":7,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":5,"e":3428}],[-26,{"n":5,"e":3422}],[-25,{"n":5.5,"e":3410}],[-24,{"n":7.5,"e":3398}],[-23,{"n":6.5,"e":3388}]]}],[916,{"n":"Ibe","f":"Jordon","fp":"MO","r":4,"c":36,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":70.5,"On":15,"Oa":4.7,"Od":0.73,"pm":14,"pa":1},"p":[[-38,{"n":6,"e":3540,"g":1}],[-37,{"n":4.5,"e":3528}],[-31,{"n":4.5,"e":3468}],[-29,{"n":5,"e":3448}],[-28,{"n":3.5,"e":3438}],[-27,{"n":5,"e":3428}],[-26,{"n":3.5,"e":3422}],[-25,{"n":5,"e":3410}],[-24,{"n":5.5,"e":3398}],[-22,{"n":5,"e":3383}],[-21,{"n":4.5,"e":3368}],[-20,{"n":3.5,"e":3364}],[-18,{"n":5,"e":3338}],[4,{"n":5,"e":4271}],[3,{"n":5,"e":4286}]]}],[950,{"n":"Gosling","f":"Dan","fp":"MD","r":5,"c":36,"s":{"g":1,"s":21,"n":4,"a":5.25,"d":1.19,"Sg":1,"Ss":12,"Sn":2,"Sa":6,"Sd":1.41,"Og":3,"Os":89,"On":17,"Oa":5.24,"Od":1.19,"pm":17},"p":[[-36,{"n":5.5,"e":3525,"g":1}],[-35,{"n":5.5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":3.5,"e":3488}],[-32,{"n":4,"e":3484}],[-28,{"n":5.5,"e":3438}],[-27,{"n":6,"e":3428}],[-26,{"n":4.5,"e":3422}],[-25,{"n":4.5,"e":3410}],[-24,{"n":6.5,"e":3398}],[-23,{"n":6,"e":3388}],[-22,{"n":4,"e":3383}],[-21,{"n":4.5,"e":3368}],[17,{"n":7,"e":4140,"g":1}],[16,{"n":5,"e":4149}],[14,{"n":4.5,"e":4173}],[13,{"n":4.5,"e":4180}]]}],[985,{"n":"Pugh","f":"Marc","fp":"MD","r":1,"c":36}],[1092,{"n":"Harry Wilson","f":"","fp":"MO","r":22,"c":36,"s":{"g":6,"s":80.5,"n":14,"a":5.75,"d":1.12,"Og":6,"Os":80.5,"On":14,"Oa":5.75,"Od":1.12,"pm":13,"pa":1},"p":[[15,{"n":4.5,"e":4166}],[14,{"n":8,"e":4173,"g":2}],[13,{"n":4.5,"e":4180}],[12,{"n":6.5,"e":4191,"g":1}],[11,{"n":5.5,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":5.5,"e":4236}],[7,{"n":5.5,"e":4240}],[6,{"n":6.5,"e":4248,"g":1}],[5,{"n":5,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":7,"e":4286,"g":1}],[2,{"n":7,"e":4289,"g":1}]]}],[1117,{"n":"Simpson","f":"Jack","fp":"DC","r":6,"c":36,"s":{"s":4.5,"n":1,"a":4.5,"Oao":1,"Os":31.5,"On":7,"Oa":4.5,"Od":1.15,"pd":7},"p":[[-38,{"n":2.5,"e":3540,"a":1}],[-37,{"n":6,"e":3528}],[-36,{"n":4,"e":3525}],[-35,{"n":4,"e":3508}],[-34,{"n":5,"e":3498}],[-29,{"n":5.5,"e":3448}],[16,{"n":4.5,"e":4149}]]}],[1119,{"n":"Ramsdale","f":"Aaron","fp":"G","r":18,"c":36,"s":{"s":95,"n":17,"a":5.59,"d":1.08,"Ss":95,"Sn":17,"Sa":5.59,"Sd":1.08,"Os":95,"On":17,"Oa":5.59,"Od":1.08,"pg":17},"p":[[17,{"n":7,"e":4140}],[16,{"n":6,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":6,"e":4180}],[12,{"n":6,"e":4191}],[11,{"n":7,"e":4200}],[10,{"n":6.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":4.5,"e":4236}],[7,{"n":5.5,"e":4240}],[6,{"n":7,"e":4248}],[5,{"n":6,"e":4265}],[4,{"n":4,"e":4271}],[3,{"n":4,"e":4286}],[2,{"n":6.5,"e":4289}],[1,{"n":5,"e":4300}]]}],[1120,{"n":"Solanke","f":"Dominic","fp":"A","r":9,"c":36,"s":{"s":64.5,"n":15,"a":4.3,"d":0.68,"Ss":16.5,"Sn":4,"Sa":4.13,"Sd":0.48,"Os":113,"On":25,"Oa":4.52,"Od":0.67,"pa":25},"p":[[-36,{"n":5,"e":3525}],[-35,{"n":4.5,"e":3508}],[-34,{"n":5,"e":3498}],[-33,{"n":4.5,"e":3488}],[-32,{"n":4,"e":3484}],[-31,{"n":6,"e":3468}],[-30,{"n":5,"e":3462}],[-27,{"n":5,"e":3428}],[-26,{"n":4.5,"e":3422}],[-25,{"n":5,"e":3410}],[17,{"n":4.5,"e":4140}],[16,{"n":3.5,"e":4149}],[15,{"n":4,"e":4166}],[14,{"n":4.5,"e":4173}],[12,{"n":4.5,"e":4191}],[10,{"n":4,"e":4216}],[9,{"n":3.5,"e":4219}],[8,{"n":3,"e":4236}],[7,{"n":4,"e":4240}],[6,{"n":4,"e":4248}],[5,{"n":5.5,"e":4265}],[4,{"n":5,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":5,"e":4289}],[1,{"n":4.5,"e":4300}]]}],[1123,{"n":"Jordan","f":"Corey","fp":"DC","r":1,"c":36}],[1147,{"n":"Begovic","f":"Asmir","fp":"G","r":10,"c":36,"s":{"Os":28.5,"On":7,"Oa":4.07,"Od":1.72,"pg":7},"p":[[-33,{"n":2,"e":3488}],[-32,{"n":4.5,"e":3484}],[-22,{"n":4,"e":3383}],[-21,{"n":3.5,"e":3368}],[-20,{"n":4,"e":3364}],[-19,{"n":3,"e":3356}],[-18,{"n":7.5,"e":3338}]]}],[1359,{"n":"Lewis Cook","f":"","fp":"MD","r":9,"c":36,"s":{"s":55.5,"n":11,"a":5.05,"d":0.15,"Ss":35.5,"Sn":7,"Sa":5.07,"Sd":0.19,"Os":55.5,"On":11,"Oa":5.05,"Od":0.15,"pm":11},"p":[[17,{"n":5,"e":4140}],[16,{"n":5,"e":4149}],[15,{"n":5,"e":4166}],[14,{"n":5,"e":4173}],[13,{"n":5,"e":4180}],[12,{"n":5.5,"e":4191}],[11,{"n":5,"e":4200}],[9,{"n":5,"e":4219}],[7,{"n":5,"e":4240}],[6,{"n":5,"e":4248}],[5,{"n":5,"e":4265}]]}],[1494,{"n":"Billing","f":"Philip","fp":"MD","r":11,"c":36,"s":{"s":83,"n":16,"a":5.19,"d":0.68,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.76,"Og":1,"Os":139.5,"On":27,"Oa":5.17,"Od":0.78,"pm":27},"p":[[-31,{"n":5,"e":3476}],[-29,{"n":5,"e":3449}],[-28,{"n":5,"e":3440}],[-27,{"n":5,"e":3436}],[-19,{"n":5,"e":3354}],[-30,{"n":3.5,"e":3462}],[-25,{"n":4,"e":3411}],[-22,{"n":6,"e":3380}],[-21,{"n":6,"e":3373}],[-20,{"n":5,"e":3361}],[-18,{"n":7,"e":3343,"g":1}],[17,{"n":6,"e":4140}],[16,{"n":4.5,"e":4149}],[15,{"n":5,"e":4166}],[13,{"n":4,"e":4180}],[12,{"n":5,"e":4191}],[11,{"n":6,"e":4200}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4219}],[8,{"n":5.5,"e":4236}],[7,{"n":4.5,"e":4240}],[6,{"n":6.5,"e":4248}],[5,{"n":5.5,"e":4265}],[4,{"n":4.5,"e":4271}],[3,{"n":5,"e":4286}],[2,{"n":4.5,"e":4289}],[1,{"n":5.5,"e":4300}]]}],[1738,{"n":"Lerma","f":"Jefferson","fp":"MD","r":14,"c":36,"s":{"s":81.5,"n":15,"a":5.43,"d":0.8,"Ss":27.5,"Sn":5,"Sa":5.5,"Sd":1.17,"Og":1,"Os":172,"On":32,"Oa":5.38,"Od":0.87,"pm":32},"p":[[-38,{"n":5.5,"e":3540,"g":1}],[-37,{"n":6,"e":3528}],[-36,{"n":5,"e":3525}],[-35,{"n":5.5,"e":3508}],[-34,{"n":7,"e":3498}],[-33,{"n":5,"e":3488}],[-32,{"n":5,"e":3484}],[-31,{"n":4.5,"e":3468}],[-30,{"n":7,"e":3462}],[-27,{"n":5.5,"e":3428}],[-26,{"n":4,"e":3422}],[-25,{"n":4.5,"e":3410}],[-23,{"n":6.5,"e":3388}],[-22,{"n":5,"e":3383}],[-21,{"n":5.5,"e":3368}],[-19,{"n":3.5,"e":3356}],[-18,{"n":5.5,"e":3338}],[17,{"n":7.5,"e":4140}],[16,{"n":5,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":5.5,"e":4173}],[13,{"n":5,"e":4180}],[11,{"n":6,"e":4200}],[10,{"n":6,"e":4216}],[8,{"n":5.5,"e":4236}],[7,{"n":6,"e":4240}],[6,{"n":6,"e":4248}],[5,{"n":4.5,"e":4265}],[4,{"n":5,"e":4271}],[3,{"n":4.5,"e":4286}],[2,{"n":5,"e":4289}],[1,{"n":5.5,"e":4300}]]}],[1747,{"n":"Rico","f":"Diego","fp":"DL","r":11,"c":36,"s":{"s":71,"n":14,"a":5.07,"d":0.94,"Ss":66,"Sn":13,"Sa":5.08,"Sd":0.98,"Os":101.5,"On":21,"Oa":4.83,"Od":0.93,"pd":18,"pm":3},"p":[[-33,{"n":4.5,"e":3488}],[-32,{"n":5,"e":3484}],[-29,{"n":5,"e":3448}],[-28,{"n":5,"e":3438}],[-26,{"n":4,"e":3422}],[-20,{"n":3,"e":3364}],[-19,{"n":4,"e":3356}],[17,{"n":6.5,"e":4140}],[16,{"n":4.5,"e":4149}],[15,{"n":5,"e":4166}],[14,{"n":4,"e":4173}],[13,{"n":4.5,"e":4180}],[12,{"n":4,"e":4191}],[11,{"n":6.5,"e":4200}],[10,{"n":5,"e":4216}],[9,{"n":5,"e":4219}],[8,{"n":4,"e":4236}],[7,{"n":4.5,"e":4240}],[6,{"n":6.5,"e":4248}],[5,{"n":6,"e":4265}],[1,{"n":5,"e":4300}]]}],[2119,{"n":"Butcher","f":"Matt","fp":"A","r":1,"c":36}],[2265,{"n":"Taylor","f":"Kyle","fp":"MD","r":1,"c":36}],[2595,{"n":"Brooks","f":"David","fp":"MO","r":4,"c":36,"s":{"Og":4,"Os":78.5,"On":15,"Oa":5.23,"Od":1.6,"pm":12,"pa":3},"p":[[-36,{"n":5.5,"e":3525}],[-35,{"n":4.5,"e":3508}],[-34,{"n":8,"e":3498,"g":1}],[-33,{"n":4.5,"e":3488}],[-32,{"n":4,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":5,"e":3462}],[-29,{"n":4.5,"e":3448}],[-24,{"n":7.5,"e":3398,"g":1}],[-23,{"n":7,"e":3388}],[-22,{"n":4,"e":3383}],[-21,{"n":4.5,"e":3368}],[-20,{"n":4.5,"e":3364}],[-19,{"n":3,"e":3356}],[-18,{"n":8,"e":3338,"g":2}]]}],[2843,{"n":"Ofoborh","f":"Nathan","fp":"A","r":1,"c":36}],[2849,{"n":"Travers","f":"Mark","fp":"G","r":1,"c":36,"s":{"Os":11,"On":2,"Oa":5.5,"Od":2.83,"pg":2},"p":[[-38,{"n":3.5,"e":3540}],[-37,{"n":7.5,"e":3528}]]}],[2853,{"n":"Dobre","f":"Mihai-Alexandru","fp":"MO","r":1,"c":36}],[3223,{"n":"Mepham","f":"Chris","fp":"DC","r":9,"c":36,"s":{"g":1,"s":33,"n":7,"a":4.71,"d":1.07,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.04,"Og":1,"Os":94.5,"On":20,"Oa":4.72,"Od":0.92,"pd":20},"p":[[-38,{"n":5.5,"e":3540}],[-36,{"n":4,"e":3525}],[-35,{"n":5,"e":3508}],[-34,{"n":6,"e":3498}],[-33,{"n":3.5,"e":3488}],[-32,{"n":4.5,"e":3484}],[-31,{"n":4.5,"e":3468}],[-30,{"n":6,"e":3462}],[-29,{"n":4.5,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":5,"e":3428}],[-26,{"n":5,"e":3422}],[-24,{"n":5,"e":3398}],[17,{"n":6,"e":4140}],[16,{"n":4,"e":4149}],[15,{"n":4.5,"e":4166}],[5,{"n":5,"e":4265}],[4,{"n":3,"e":4271}],[3,{"n":4.5,"e":4286}],[1,{"n":6,"e":4300,"g":1}]]}],[3500,{"n":"Surridge","f":"Sam","fp":"A","r":2,"c":36,"s":{"Os":9,"On":2,"Oa":4.5,"pa":2},"p":[[-38,{"n":4.5,"e":3540}],[-28,{"n":4.5,"e":3438}]]}],[3646,{"n":"Kelly","f":"Lloyd","fp":"DL","r":1,"c":36}],[3693,{"n":"Stacey","f":"Jack","fp":"DL","r":4,"c":36,"s":{"s":30,"n":6,"a":5,"d":0.55,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":30,"On":6,"Oa":5,"Od":0.55,"pd":6},"p":[[17,{"n":5.5,"e":4140}],[14,{"n":4,"e":4173}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4240}],[6,{"n":5.5,"e":4248}],[5,{"n":5,"e":4265}]]}],[5987,{"n":"Sherring","f":"Sam","fp":"DC","r":1,"c":36}],[5989,{"n":"Zemura","f":"Jordan","fp":"DC","r":1,"c":36}],[5990,{"n":"Dennis","f":"William","fp":"G","r":1,"c":36}],[5994,{"n":"Danjuma Groeneveld","f":"Arnaut","fp":"MO","r":10,"c":36,"s":{"s":43.5,"n":9,"a":4.83,"d":0.56,"Os":43.5,"On":9,"Oa":4.83,"Od":0.56,"pm":4,"pa":5},"p":[[16,{"n":4,"e":4149}],[15,{"n":4.5,"e":4166}],[14,{"n":6,"e":4173}],[13,{"n":5,"e":4180}],[12,{"n":4.5,"e":4191}],[10,{"n":4.5,"e":4216}],[9,{"n":5,"e":4219}],[8,{"n":5,"e":4236}],[7,{"n":5,"e":4240}]]}],[6147,{"n":"Kilkenny","f":"Gavin","fp":"MO","r":1,"c":36}],[388,{"n":"Bissouma","f":"Yves","fp":"MD","r":5,"c":45,"s":{"s":28,"n":6,"a":4.67,"d":0.52,"Ss":5.5,"Sn":1,"Sa":5.5,"Os":91,"On":19,"Oa":4.79,"Od":0.8,"pm":14,"pa":5},"p":[[17,{"n":5.5,"e":4141}],[14,{"n":4.5,"e":4171}],[13,{"n":5,"e":4181}],[8,{"n":4.5,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":4.5,"e":4254}],[-38,{"n":4,"e":3538}],[-36,{"n":5,"e":3518}],[-33,{"n":5.5,"e":3495}],[-32,{"n":6.5,"e":3479}],[-30,{"n":5,"e":3461}],[-28,{"n":4.5,"e":3441}],[-25,{"n":5.5,"e":3408}],[-37,{"n":6,"e":3529}],[-34,{"n":3,"e":3498}],[-29,{"n":4.5,"e":3449}],[-27,{"n":4,"e":3432}],[-26,{"n":5,"e":3418}],[-18,{"n":4.5,"e":3338}]]}],[1056,{"n":"Bernardo","f":"","fp":"DL","r":3,"c":45,"s":{"s":13.5,"n":3,"a":4.5,"d":0.87,"Ss":5,"Sn":1,"Sa":5,"Os":87,"On":18,"Oa":4.83,"Od":0.97,"pd":17,"pm":1},"p":[[4,{"n":3.5,"e":4272}],[1,{"n":5,"e":4303}],[-35,{"n":5,"e":3517}],[-31,{"n":3.5,"e":3469}],[-21,{"n":5,"e":3376}],[-20,{"n":6,"e":3358}],[-38,{"n":4,"e":3538}],[-37,{"n":6,"e":3529}],[-36,{"n":6,"e":3518}],[-34,{"n":2.5,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-30,{"n":5.5,"e":3461}],[-29,{"n":5.5,"e":3449}],[-27,{"n":5.5,"e":3432}],[-19,{"n":5,"e":3348}],[-18,{"n":4,"e":3338}],[17,{"n":5,"e":4141}]]}],[1281,{"n":"Murray","f":"Glenn","fp":"A","r":8,"c":45,"s":{"s":47,"n":11,"a":4.27,"d":0.26,"Og":5,"Os":142,"On":32,"Oa":4.44,"Od":0.8,"pa":32},"p":[[16,{"n":4.5,"e":4150}],[12,{"n":4,"e":4197}],[10,{"n":4.5,"e":4209}],[5,{"n":4,"e":4259}],[3,{"n":4.5,"e":4280}],[2,{"n":4,"e":4290}],[-23,{"n":4,"e":3393}],[-22,{"n":3.5,"e":3378}],[-38,{"n":4.5,"e":3538,"g":1}],[-37,{"n":5.5,"e":3529,"g":1}],[-36,{"n":5.5,"e":3518}],[-35,{"n":4.5,"e":3517}],[-34,{"n":4.5,"e":3498}],[-33,{"n":4.5,"e":3495}],[-32,{"n":4,"e":3479}],[-31,{"n":4,"e":3469}],[-30,{"n":6,"e":3461,"g":1}],[-29,{"n":3.5,"e":3449}],[-28,{"n":3,"e":3441}],[-27,{"n":4.5,"e":3432}],[-26,{"n":4.5,"e":3418}],[-25,{"n":4,"e":3408}],[-24,{"n":7.5,"e":3400,"g":2}],[-21,{"n":4.5,"e":3376}],[-20,{"n":4.5,"e":3358}],[-19,{"n":4,"e":3348}],[-18,{"n":4.5,"e":3338}],[13,{"n":4.5,"e":4181}],[8,{"n":4.5,"e":4228}],[7,{"n":4,"e":4241}],[4,{"n":4.5,"e":4272}],[1,{"n":4,"e":4303}]]}],[1282,{"n":"Knockaert","f":"Anthony","fp":"MD","r":8,"c":45,"s":{"Og":1,"Os":71.5,"On":15,"Oa":4.77,"Od":1.05,"pm":11,"pa":4},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":5,"e":3529}],[-36,{"n":5.5,"e":3518}],[-34,{"n":2,"e":3498}],[-32,{"n":5,"e":3479}],[-30,{"n":6.5,"e":3461,"g":1}],[-29,{"n":6,"e":3449}],[-28,{"n":4.5,"e":3441}],[-27,{"n":3.5,"e":3432}],[-26,{"n":5.5,"e":3418}],[-24,{"n":4.5,"e":3400}],[-23,{"n":5,"e":3393}],[-22,{"n":4.5,"e":3378}],[-19,{"n":5,"e":3348}],[-18,{"n":4.5,"e":3338}]]}],[1283,{"n":"Hemed","f":"Tomer","fp":"A","r":7,"c":45}],[1284,{"n":"Bruno","f":"","fp":"DC","r":10,"c":45,"s":{"Os":28,"On":6,"Oa":4.67,"Od":0.82,"pd":6},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":5.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":5.5,"e":3517}],[-31,{"n":4,"e":3469}],[-27,{"n":4.5,"e":3432}]]}],[1294,{"n":"Stephens","f":"Dale","fp":"MD","r":18,"c":45,"s":{"s":88.5,"n":16,"a":5.53,"d":0.97,"Og":1,"Os":184,"On":34,"Oa":5.41,"Od":0.96,"pm":34},"p":[[11,{"n":4.5,"e":4201}],[-37,{"n":6,"e":3529}],[-36,{"n":5.5,"e":3518}],[-35,{"n":6,"e":3517}],[-34,{"n":3,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":4,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":7,"e":3461}],[-29,{"n":6,"e":3449}],[-28,{"n":5.5,"e":3441}],[-27,{"n":5,"e":3432}],[-26,{"n":5,"e":3418}],[-24,{"n":4.5,"e":3400}],[-23,{"n":5,"e":3393}],[-22,{"n":6,"e":3378}],[-21,{"n":6.5,"e":3376,"g":1}],[-20,{"n":6,"e":3358}],[-19,{"n":5,"e":3348}],[16,{"n":7,"e":4150}],[15,{"n":5.5,"e":4158}],[14,{"n":5.5,"e":4171}],[13,{"n":4,"e":4181}],[12,{"n":5,"e":4197}],[10,{"n":6,"e":4209}],[9,{"n":6,"e":4218}],[8,{"n":6.5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":7,"e":4254}],[5,{"n":5.5,"e":4259}],[4,{"n":3.5,"e":4272}],[3,{"n":5.5,"e":4280}],[2,{"n":6,"e":4290}],[1,{"n":6,"e":4303}]]}],[1296,{"n":"Dunk","f":"Lewis","fp":"DC","r":22,"c":45,"s":{"g":2,"s":84,"n":16,"a":5.25,"d":1.35,"Sg":1,"Ss":21,"Sn":4,"Sa":5.25,"Sd":1.04,"Og":2,"Os":183,"On":36,"Oa":5.08,"Od":1.28,"pd":36},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":5.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":6,"e":3517}],[-34,{"n":2.5,"e":3498}],[-33,{"n":7,"e":3495}],[-32,{"n":4.5,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":6.5,"e":3461}],[-29,{"n":5.5,"e":3449}],[-28,{"n":3.5,"e":3441}],[-27,{"n":3.5,"e":3432}],[-26,{"n":4.5,"e":3418}],[-25,{"n":5.5,"e":3408}],[-24,{"n":4,"e":3400}],[-23,{"n":5.5,"e":3393}],[-22,{"n":6,"e":3378}],[-21,{"n":5,"e":3376}],[-20,{"n":7,"e":3358}],[-18,{"n":4,"e":3338}],[17,{"n":5,"e":4141}],[16,{"n":4,"e":4150}],[15,{"n":5.5,"e":4158}],[14,{"n":6.5,"e":4171,"g":1}],[12,{"n":4,"e":4197,"g":1}],[11,{"n":7,"e":4201}],[10,{"n":5,"e":4209}],[9,{"n":4,"e":4218}],[8,{"n":7.5,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":5.5,"e":4254}],[5,{"n":5,"e":4259}],[4,{"n":3,"e":4272}],[3,{"n":4.5,"e":4280}],[2,{"n":6,"e":4290}],[1,{"n":7.5,"e":4303}]],"a":{"m":22,"a":24,"M":28,"n":6}}],[1303,{"n":"Groß","f":"Pascal","fp":"MO","r":14,"c":45,"s":{"g":1,"s":88,"n":16,"a":5.5,"d":0.82,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.75,"Og":3,"Os":169.5,"On":32,"Oa":5.3,"Od":0.81,"pm":26,"pa":6},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":5.5,"e":3529}],[-36,{"n":6,"e":3518,"g":1}],[-35,{"n":5.5,"e":3517}],[-33,{"n":5.5,"e":3495}],[-31,{"n":3.5,"e":3469}],[-28,{"n":5.5,"e":3441}],[-26,{"n":5,"e":3418}],[-25,{"n":6.5,"e":3408}],[-24,{"n":5,"e":3400}],[-23,{"n":6,"e":3393,"g":1}],[-22,{"n":4,"e":3378}],[-21,{"n":5,"e":3376}],[-20,{"n":4.5,"e":3358}],[-19,{"n":5,"e":3348}],[-18,{"n":4.5,"e":3338}],[17,{"n":6.5,"e":4141}],[16,{"n":5,"e":4150}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4171}],[12,{"n":6,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209,"g":1}],[9,{"n":7,"e":4218}],[8,{"n":7,"e":4228}],[7,{"n":4.5,"e":4241}],[6,{"n":5,"e":4254}],[5,{"n":5,"e":4259}],[4,{"n":5,"e":4272}],[3,{"n":4.5,"e":4280}],[2,{"n":5.5,"e":4290}],[1,{"n":6,"e":4303}]]}],[1306,{"n":"March","f":"Solly","fp":"MO","r":7,"c":45,"s":{"s":40,"n":8,"a":5,"d":0.89,"Os":131,"On":26,"Oa":5.04,"Od":0.65,"pd":1,"pm":17,"pa":8},"p":[[-37,{"n":6,"e":3529}],[-36,{"n":6,"e":3518}],[-35,{"n":5,"e":3517}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-31,{"n":5,"e":3469}],[-30,{"n":5,"e":3461}],[-28,{"n":4.5,"e":3441}],[-27,{"n":4.5,"e":3432}],[-26,{"n":5,"e":3418}],[-25,{"n":6,"e":3408}],[-24,{"n":5,"e":3400}],[-23,{"n":5,"e":3393}],[-22,{"n":4,"e":3378}],[-21,{"n":5.5,"e":3376}],[-20,{"n":5,"e":3358}],[-19,{"n":5,"e":3348}],[-18,{"n":4.5,"e":3338}],[13,{"n":5,"e":4181}],[12,{"n":4,"e":4197}],[9,{"n":5,"e":4218}],[5,{"n":6,"e":4259}],[4,{"n":3.5,"e":4272}],[3,{"n":5.5,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6,"e":4303}]],"a":{"m":12,"a":13,"M":21,"n":7}}],[1308,{"n":"Pröpper","f":"Davy","fp":"MD","r":14,"c":45,"s":{"g":1,"ao":1,"s":80.5,"n":15,"a":5.37,"d":0.95,"Sg":1,"Sao":1,"Ss":49.5,"Sn":9,"Sa":5.5,"Sd":0.94,"Og":2,"Oao":1,"Os":165.5,"On":32,"Oa":5.17,"Od":0.91,"pm":32},"p":[[-35,{"n":5,"e":3517}],[-34,{"n":3.5,"e":3498}],[-32,{"n":4,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":4.5,"e":3461}],[-29,{"n":5,"e":3449}],[-28,{"n":6.5,"e":3441,"g":1}],[-27,{"n":4.5,"e":3432}],[-26,{"n":4,"e":3418}],[-25,{"n":6,"e":3408}],[-24,{"n":5,"e":3400}],[-23,{"n":6,"e":3393}],[-22,{"n":6,"e":3378}],[-21,{"n":4.5,"e":3376}],[-20,{"n":6,"e":3358}],[-19,{"n":5.5,"e":3348}],[-18,{"n":4.5,"e":3338}],[17,{"n":6,"e":4141}],[16,{"n":5.5,"e":4150,"g":1}],[15,{"n":5.5,"e":4158}],[14,{"n":6,"e":4171}],[13,{"n":5,"e":4181}],[12,{"n":3.5,"e":4197,"a":1}],[11,{"n":7,"e":4201}],[10,{"n":5.5,"e":4209}],[9,{"n":5.5,"e":4218}],[6,{"n":5,"e":4254}],[5,{"n":5.5,"e":4259}],[4,{"n":4,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":4.5,"e":4290}],[1,{"n":7,"e":4303}]]}],[1312,{"n":"Duffy","f":"Shane","fp":"DC","r":12,"c":45,"s":{"g":1,"s":49.5,"n":10,"a":4.95,"d":0.83,"Ss":5,"Sn":1,"Sa":5,"Og":3,"Os":151.5,"On":30,"Oa":5.05,"Od":1.09,"pd":30},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":7.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":6,"e":3517}],[-34,{"n":3,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-31,{"n":3.5,"e":3469}],[-30,{"n":6,"e":3461}],[-29,{"n":7,"e":3449}],[-28,{"n":4,"e":3441}],[-27,{"n":4,"e":3432}],[-26,{"n":4.5,"e":3418,"g":1}],[-25,{"n":6,"e":3408}],[-24,{"n":4,"e":3400}],[-23,{"n":6,"e":3393}],[-22,{"n":5,"e":3378}],[-21,{"n":6,"e":3376,"g":1}],[-20,{"n":6,"e":3358}],[-19,{"n":5,"e":3348}],[17,{"n":5,"e":4141}],[15,{"n":5,"e":4158}],[13,{"n":4,"e":4181}],[12,{"n":4,"e":4197}],[11,{"n":6,"e":4201,"g":1}],[9,{"n":5,"e":4218}],[5,{"n":5,"e":4259}],[3,{"n":4,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6.5,"e":4303}]]}],[1313,{"n":"Izquierdo","f":"José","fp":"A","r":1,"c":45,"s":{"Os":26.5,"On":6,"Oa":4.42,"Od":0.2,"pm":1,"pa":5},"p":[[-36,{"n":4,"e":3518}],[-35,{"n":4.5,"e":3517}],[-34,{"n":4.5,"e":3498}],[-31,{"n":4.5,"e":3469}],[-29,{"n":4.5,"e":3449}],[-28,{"n":4.5,"e":3441}]]}],[1323,{"n":"Ryan","f":"Mat","fp":"G","r":22,"c":45,"s":{"s":97.5,"n":17,"a":5.74,"d":0.97,"Ss":97.5,"Sn":17,"Sa":5.74,"Sd":0.97,"Os":184,"On":34,"Oa":5.41,"Od":1.18,"pg":34},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":7.5,"e":3529}],[-36,{"n":5,"e":3518}],[-35,{"n":7,"e":3517}],[-34,{"n":2.5,"e":3498}],[-33,{"n":6,"e":3495}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":6,"e":3461}],[-29,{"n":6.5,"e":3449}],[-28,{"n":4.5,"e":3441}],[-27,{"n":3.5,"e":3432}],[-26,{"n":4,"e":3418}],[-25,{"n":5.5,"e":3408}],[-24,{"n":4,"e":3400}],[-19,{"n":6,"e":3348}],[-18,{"n":4.5,"e":3338}],[17,{"n":5.5,"e":4141}],[16,{"n":5,"e":4150}],[15,{"n":6,"e":4158}],[14,{"n":6,"e":4171}],[13,{"n":6.5,"e":4181}],[12,{"n":6,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209}],[9,{"n":6,"e":4218}],[8,{"n":6.5,"e":4228}],[7,{"n":7.5,"e":4241}],[6,{"n":7,"e":4254}],[5,{"n":4,"e":4259}],[4,{"n":4,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6.5,"e":4303}]]}],[1324,{"n":"Suttner","f":"Markus","fp":"DC","r":1,"c":45}],[1336,{"n":"Bong","f":"Gaëtan","fp":"DL","r":3,"c":45,"s":{"s":20,"n":4,"a":5,"Os":64,"On":14,"Oa":4.57,"Od":0.62,"pd":14},"p":[[-35,{"n":5,"e":3517}],[-28,{"n":4,"e":3441}],[-27,{"n":4,"e":3432}],[-26,{"n":4.5,"e":3418}],[-25,{"n":5,"e":3408}],[-24,{"n":3,"e":3400}],[-23,{"n":4,"e":3393}],[-22,{"n":5,"e":3378}],[-21,{"n":5,"e":3376}],[-18,{"n":4.5,"e":3338}],[8,{"n":5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":5,"e":4254}],[5,{"n":5,"e":4259}]]}],[1338,{"n":"Kayal","f":"Beram","fp":"MD","r":6,"c":45,"s":{"Os":38,"On":8,"Oa":4.75,"Od":0.53,"pm":8},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":5,"e":3529}],[-36,{"n":4.5,"e":3518}],[-35,{"n":5,"e":3517}],[-33,{"n":5,"e":3495}],[-29,{"n":5,"e":3449}],[-23,{"n":5,"e":3393}],[-22,{"n":5,"e":3378}]]}],[1356,{"n":"Molumby","f":"Jayson","fp":"MD","r":1,"c":45}],[1361,{"n":"Towell","f":"Richard","fp":"A","r":1,"c":45}],[1378,{"n":"Connolly","f":"Aaron","fp":"A","r":10,"c":45,"s":{"g":2,"s":54,"n":11,"a":4.91,"d":1.3,"Og":2,"Os":54,"On":11,"Oa":4.91,"Od":1.3,"pa":11},"p":[[15,{"n":5,"e":4158}],[14,{"n":3.5,"e":4171}],[12,{"n":3,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209}],[9,{"n":5,"e":4218}],[8,{"n":8,"e":4228,"g":2}],[7,{"n":4.5,"e":4241}],[6,{"n":5,"e":4254}],[5,{"n":4.5,"e":4259}],[4,{"n":4.5,"e":4272}]]}],[1473,{"n":"Mooy","f":"Aaron","fp":"MO","r":12,"c":45,"s":{"s":56.5,"n":11,"a":5.14,"d":1.29,"Ss":28,"Sn":5,"Sa":5.6,"Sd":1.34,"Og":1,"Os":122.5,"On":25,"Oa":4.9,"Od":0.96,"pm":20,"pa":5},"p":[[-37,{"n":5,"e":3533}],[-35,{"n":5,"e":3513}],[-34,{"n":4.5,"e":3506}],[-33,{"n":4,"e":3491,"g":1}],[-32,{"n":4.5,"e":3482}],[-24,{"n":4.5,"e":3401}],[-38,{"n":5.5,"e":3545}],[-31,{"n":6,"e":3476}],[-30,{"n":5,"e":3462}],[-29,{"n":4.5,"e":3449}],[-28,{"n":5,"e":3440}],[-27,{"n":4,"e":3436}],[-26,{"n":4,"e":3421}],[-25,{"n":4.5,"e":3411}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4150}],[15,{"n":8,"e":4158}],[14,{"n":5,"e":4171}],[13,{"n":5,"e":4181}],[9,{"n":3.5,"e":4218}],[8,{"n":7,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":4.5,"e":4254}],[5,{"n":5,"e":4259}],[2,{"n":4.5,"e":4290}]]}],[1612,{"n":"Andone","f":"Florin","fp":"A","r":6,"c":45,"s":{"g":1,"s":13.5,"n":3,"a":4.5,"d":1.8,"Og":2,"Os":81,"On":19,"Oa":4.26,"Od":0.89,"pa":19},"p":[[-38,{"n":4.5,"e":3538}],[-37,{"n":4.5,"e":3529}],[-36,{"n":4,"e":3518}],[-34,{"n":3.5,"e":3498}],[-33,{"n":3.5,"e":3495}],[-31,{"n":3.5,"e":3469}],[-29,{"n":6,"e":3449,"g":1}],[-27,{"n":3,"e":3432}],[-25,{"n":4.5,"e":3408}],[-24,{"n":5,"e":3400}],[-23,{"n":4.5,"e":3393}],[-22,{"n":4,"e":3378}],[-21,{"n":4.5,"e":3376}],[-20,{"n":4.5,"e":3358}],[-19,{"n":4,"e":3348}],[-18,{"n":4,"e":3338}],[3,{"n":2.5,"e":4280}],[2,{"n":5,"e":4290}],[1,{"n":6,"e":4303,"g":1}]]}],[1761,{"n":"Montoya","f":"Martín","fp":"DL","r":9,"c":45,"s":{"s":69.5,"n":15,"a":4.63,"d":0.95,"Ss":5,"Sn":1,"Sa":5,"Os":143.5,"On":31,"Oa":4.63,"Od":0.84,"pd":26,"pm":5},"p":[[-38,{"n":5,"e":3538}],[-34,{"n":2.5,"e":3498}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3479}],[-30,{"n":5,"e":3461}],[-29,{"n":5,"e":3449}],[-28,{"n":3.5,"e":3441}],[-26,{"n":4,"e":3418}],[-25,{"n":5,"e":3408}],[-24,{"n":4.5,"e":3400}],[-23,{"n":5,"e":3393}],[-22,{"n":5,"e":3378}],[-21,{"n":4.5,"e":3376}],[-20,{"n":5.5,"e":3358}],[-19,{"n":5,"e":3348}],[-18,{"n":4.5,"e":3338}],[17,{"n":5,"e":4141}],[15,{"n":5,"e":4158}],[14,{"n":4.5,"e":4171}],[13,{"n":4,"e":4181}],[12,{"n":3,"e":4197}],[11,{"n":7,"e":4201}],[10,{"n":4,"e":4209}],[9,{"n":5,"e":4218}],[8,{"n":4.5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":5,"e":4254}],[4,{"n":3,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":4.5,"e":4290}],[1,{"n":5,"e":4303}]]}],[2025,{"n":"Schelotto","f":"Ezequiel","fp":"DL","r":5,"c":45,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pd":3},"p":[[13,{"n":5,"e":4181}],[11,{"n":5,"e":4201}],[10,{"n":4.5,"e":4209}]]}],[2255,{"n":"Locadia","f":"Jürgen","fp":"A","r":5,"c":45,"s":{"s":9.5,"n":2,"a":4.75,"d":1.06,"Og":2,"Os":80,"On":17,"Oa":4.71,"Od":1.02,"pm":7,"pa":10},"p":[[-38,{"n":4.5,"e":3538}],[-34,{"n":3,"e":3498}],[-33,{"n":4.5,"e":3495}],[-32,{"n":5,"e":3479}],[-30,{"n":4.5,"e":3461}],[-28,{"n":4.5,"e":3441}],[-26,{"n":4,"e":3418}],[-25,{"n":5,"e":3408}],[-24,{"n":4,"e":3400}],[-23,{"n":4.5,"e":3393}],[-22,{"n":4.5,"e":3378}],[-21,{"n":4.5,"e":3376}],[-20,{"n":7,"e":3358,"g":1}],[-19,{"n":7,"e":3348,"g":1}],[-18,{"n":4,"e":3338}],[3,{"n":4,"e":4280}],[1,{"n":5.5,"e":4303}]]}],[2519,{"n":"Balogun","f":"Leon","fp":"DC","r":1,"c":45,"s":{"Os":8.5,"On":2,"Oa":4.25,"Od":0.35,"pd":2},"p":[[-19,{"n":4.5,"e":3348}],[-18,{"n":4,"e":3338}]]}],[2520,{"n":"Button","f":"David","fp":"G","r":7,"c":45,"s":{"Os":23.5,"On":4,"Oa":5.88,"Od":0.85,"pg":4},"p":[[-23,{"n":5.5,"e":3393}],[-22,{"n":6,"e":3378}],[-21,{"n":5,"e":3376}],[-20,{"n":7,"e":3358}]]}],[2525,{"n":"Steele","f":"Jason","fp":"G","r":1,"c":45}],[2537,{"n":"Tau","f":"Percy","fp":"A","r":11,"c":45}],[2576,{"n":"Jahanbakhsh","f":"Alireza","fp":"A","r":5,"c":45,"s":{"s":4.5,"n":1,"a":4.5,"Os":40,"On":10,"Oa":4,"Od":0.67,"pm":3,"pa":7},"p":[[-38,{"n":3.5,"e":3538}],[-37,{"n":3,"e":3529}],[-33,{"n":4,"e":3495}],[-32,{"n":4,"e":3479}],[-31,{"n":4.5,"e":3469}],[-30,{"n":5,"e":3461}],[-29,{"n":4.5,"e":3449}],[-27,{"n":3,"e":3432}],[-26,{"n":4,"e":3418}],[16,{"n":4.5,"e":4150}]]}],[2850,{"n":"Gyokeres","f":"Viktor","fp":"A","r":1,"c":45}],[2854,{"n":"Collar","f":"Will","fp":"MD","r":1,"c":45}],[2856,{"n":"Barclay","f":"Ben","fp":"DC","r":1,"c":45}],[2933,{"n":"White","f":"Ben","fp":"DC","r":1,"c":45}],[2986,{"n":"Burn","f":"Dan","fp":"DC","r":11,"c":45,"s":{"s":78,"n":17,"a":4.59,"d":1.08,"Ss":78,"Sn":17,"Sa":4.59,"Sd":1.08,"Os":78,"On":17,"Oa":4.59,"Od":1.08,"pd":16,"pm":1},"p":[[17,{"n":4.5,"e":4141}],[16,{"n":3,"e":4150}],[15,{"n":6,"e":4158}],[14,{"n":5.5,"e":4171}],[13,{"n":5,"e":4181}],[12,{"n":3,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":5.5,"e":4209}],[9,{"n":4,"e":4218}],[8,{"n":5.5,"e":4228}],[7,{"n":5,"e":4241}],[6,{"n":4,"e":4254}],[5,{"n":4,"e":4259}],[4,{"n":2.5,"e":4272}],[3,{"n":4,"e":4280}],[2,{"n":5.5,"e":4290}],[1,{"n":6,"e":4303}]]}],[3119,{"n":"Sanders","f":"Max","fp":"MD","r":1,"c":45}],[3225,{"n":"Richards","f":"Taylor","fp":"MO","r":1,"c":45}],[3353,{"n":"Sánchez","f":"Robert","fp":"G","r":1,"c":45}],[3511,{"n":"Ostigard","f":"Leo","fp":"DC","r":1,"c":45}],[3663,{"n":"Baluta","f":"Tudor","fp":"DC","r":1,"c":45}],[3665,{"n":"Mlakar","f":"Jan","fp":"A","r":1,"c":45}],[3686,{"n":"Clarke","f":"Matthew","fp":"DC","r":2,"c":45}],[3699,{"n":"Trossard","f":"Leandro","fp":"MO","r":10,"c":45,"s":{"g":2,"s":57,"n":11,"a":5.18,"d":1.23,"Sg":1,"Ss":42,"Sn":8,"Sa":5.25,"Sd":1.13,"Og":2,"Os":57,"On":11,"Oa":5.18,"Od":1.23,"pm":6,"pa":5},"p":[[17,{"n":5.5,"e":4141}],[16,{"n":6,"e":4150}],[15,{"n":4.5,"e":4158}],[14,{"n":4.5,"e":4171}],[13,{"n":4,"e":4181}],[12,{"n":4.5,"e":4197}],[11,{"n":7.5,"e":4201,"g":1}],[10,{"n":5.5,"e":4209}],[4,{"n":3,"e":4272}],[3,{"n":6,"e":4280}],[2,{"n":6,"e":4290,"g":1}]]}],[5999,{"n":"Maupay","f":"Neal","fp":"A","r":21,"c":45,"s":{"g":7,"s":89,"n":17,"a":5.24,"d":1.2,"Sg":7,"Ss":89,"Sn":17,"Sa":5.24,"Sd":1.2,"Og":7,"Os":89,"On":17,"Oa":5.24,"Od":1.2,"pa":17},"p":[[17,{"n":6,"e":4141,"g":1}],[16,{"n":7,"e":4150,"g":1}],[15,{"n":7,"e":4158,"g":1}],[14,{"n":4,"e":4171}],[13,{"n":4.5,"e":4181}],[12,{"n":4,"e":4197}],[11,{"n":5,"e":4201}],[10,{"n":6,"e":4209,"g":1}],[9,{"n":5.5,"e":4218}],[8,{"n":7,"e":4228,"g":1}],[7,{"n":3.5,"e":4241}],[6,{"n":5,"e":4254}],[5,{"n":6,"e":4259,"g":1}],[4,{"n":3.5,"e":4272}],[3,{"n":5,"e":4280}],[2,{"n":4,"e":4290}],[1,{"n":6,"e":4303,"g":1}]]}],[6000,{"n":"Webster","f":"Adam","fp":"DC","r":13,"c":45,"s":{"g":2,"ao":1,"s":63.5,"n":13,"a":4.88,"d":1.34,"Sg":1,"Ss":24,"Sn":5,"Sa":4.8,"Sd":1.64,"Og":2,"Oao":1,"Os":63.5,"On":13,"Oa":4.88,"Od":1.34,"pd":13},"p":[[17,{"n":4.5,"e":4141}],[16,{"n":4.5,"e":4150}],[15,{"n":7.5,"e":4158,"g":1}],[14,{"n":4.5,"e":4171}],[13,{"n":3,"e":4181}],[11,{"n":5.5,"e":4201}],[10,{"n":4,"e":4209,"a":1}],[9,{"n":5.5,"e":4218,"g":1}],[8,{"n":7,"e":4228}],[7,{"n":4,"e":4241}],[6,{"n":5.5,"e":4254}],[5,{"n":5,"e":4259}],[4,{"n":3,"e":4272}]]}],[6242,{"n":"Roberts","f":"Haydon","fp":"DC","r":1,"c":45}],[6243,{"n":"Alzate","f":"Steven","fp":"MO","r":12,"c":45,"s":{"s":56,"n":11,"a":5.09,"d":0.66,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":56,"On":11,"Oa":5.09,"Od":0.66,"pd":2,"pm":6,"pa":3},"p":[[17,{"n":4.5,"e":4141}],[16,{"n":4.5,"e":4150}],[15,{"n":5,"e":4158}],[14,{"n":5,"e":4171}],[12,{"n":5.5,"e":4197}],[11,{"n":6,"e":4201}],[10,{"n":5,"e":4209}],[9,{"n":4.5,"e":4218}],[8,{"n":6.5,"e":4228}],[7,{"n":4.5,"e":4241}],[6,{"n":5,"e":4254}]]}],[6244,{"n":"Davies","f":"Jordan","fp":"MO","r":1,"c":45}],[6245,{"n":"Cochrane","f":"Alex","fp":"DL","r":1,"c":45}],[6284,{"n":"Gwargis","f":"Peter","fp":"MO","r":1,"c":45}],[6286,{"n":"Longman","f":"Ryan","fp":"MO","r":1,"c":45}],[6287,{"n":"Archie Davies","f":"","fp":"DL","r":1,"c":45}],[717,{"n":"Defour","f":"Steven","fp":"MD","r":1,"c":23}],[718,{"n":"Rodriguez","f":"Jay","fp":"A","r":10,"c":23,"s":{"g":2,"s":73.5,"n":17,"a":4.32,"d":0.92,"Sg":2,"Ss":47.5,"Sn":11,"Sa":4.32,"Sd":1.15,"Og":2,"Os":73.5,"On":17,"Oa":4.32,"Od":0.92,"pa":17},"p":[[17,{"n":4.5,"e":4139}],[16,{"n":2.5,"e":4155}],[15,{"n":4.5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":4.5,"e":4186}],[12,{"n":4,"e":4188}],[11,{"n":2.5,"e":4205}],[10,{"n":6,"e":4210,"g":1}],[9,{"n":4,"e":4223}],[8,{"n":5,"e":4229}],[6,{"n":4.5,"e":4250}],[4,{"n":4.5,"e":4275}],[3,{"n":4.5,"e":4284}],[1,{"n":4,"e":4301}],[7,{"n":6,"e":4239,"g":1}],[5,{"n":4,"e":4259}],[2,{"n":4.5,"e":4288}]]}],[722,{"n":"Crouch","f":"Peter","fp":"A","r":7,"c":23,"s":{"Os":23,"On":5,"Oa":4.6,"Od":0.22,"pa":5},"p":[[-38,{"n":4.5,"e":3539}],[-31,{"n":4.5,"e":3470}],[-30,{"n":4.5,"e":3464}],[-29,{"n":5,"e":3450}],[-28,{"n":4.5,"e":3444}]]}],[742,{"n":"Cork","f":"Jack","fp":"MD","r":12,"c":23,"s":{"s":71.5,"n":15,"a":4.77,"d":1.24,"Ss":36.5,"Sn":8,"Sa":4.56,"Sd":1.43,"Os":179,"On":36,"Oa":4.97,"Od":0.99,"pm":36},"p":[[-19,{"n":4,"e":3349}],[-38,{"n":4,"e":3539}],[-37,{"n":4.5,"e":3532}],[-36,{"n":5,"e":3519}],[-35,{"n":5.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5.5,"e":3488}],[-32,{"n":5,"e":3480}],[-31,{"n":6,"e":3470}],[-30,{"n":4,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":4.5,"e":3444}],[-27,{"n":4.5,"e":3430}],[-26,{"n":6,"e":3418}],[-25,{"n":5.5,"e":3409}],[-24,{"n":5.5,"e":3403}],[-23,{"n":5.5,"e":3396}],[-22,{"n":6,"e":3379}],[-21,{"n":6,"e":3373}],[-20,{"n":6,"e":3359}],[-18,{"n":4.5,"e":3339}],[17,{"n":5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":5.5,"e":4186}],[12,{"n":7,"e":4188}],[11,{"n":3,"e":4205}],[10,{"n":5.5,"e":4210}],[7,{"n":4,"e":4239}],[6,{"n":6.5,"e":4250}],[5,{"n":4,"e":4259}],[4,{"n":4,"e":4275}],[3,{"n":5,"e":4284}],[2,{"n":5.5,"e":4288}],[1,{"n":6,"e":4301}]]}],[763,{"n":"Gibson","f":"Ben","fp":"DC","r":1,"c":23,"s":{"Og":1,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[-19,{"n":5,"e":3349,"g":1}]]}],[764,{"n":"Lowton","f":"Matthew","fp":"DL","r":9,"c":23,"s":{"s":55,"n":12,"a":4.58,"d":1.31,"Os":97,"On":21,"Oa":4.62,"Od":1.12,"pd":21},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":4,"e":3532}],[-36,{"n":4.5,"e":3519}],[-35,{"n":4.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5.5,"e":3488}],[-21,{"n":5,"e":3373}],[-19,{"n":3,"e":3349}],[-18,{"n":5,"e":3339}],[16,{"n":2.5,"e":4155}],[11,{"n":3,"e":4205}],[10,{"n":3,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":5.5,"e":4229}],[7,{"n":5.5,"e":4239}],[6,{"n":6,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":6,"e":4301}]]}],[765,{"n":"Barnes","f":"Ashley","fp":"A","r":22,"c":23,"s":{"g":6,"s":75,"n":15,"a":5,"d":1.56,"Ss":5,"Sn":1,"Sa":5,"Og":16,"Oao":1,"Os":187,"On":36,"Oa":5.19,"Od":1.33,"pa":36},"p":[[-38,{"n":6,"e":3539,"g":1}],[-37,{"n":3,"e":3532}],[-36,{"n":4,"e":3519}],[-35,{"n":7,"e":3511,"g":1}],[-34,{"n":5,"e":3499}],[-33,{"n":6,"e":3488,"g":1,"a":1}],[-32,{"n":5,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":4,"e":3464}],[-29,{"n":6,"e":3450,"g":1}],[-28,{"n":4.5,"e":3444}],[-27,{"n":6,"e":3430,"g":1}],[-26,{"n":7,"e":3418,"g":1}],[-25,{"n":6,"e":3409,"g":1}],[-24,{"n":6.5,"e":3403,"g":1}],[-23,{"n":4,"e":3396}],[-22,{"n":5.5,"e":3379}],[-21,{"n":6,"e":3373,"g":1}],[-20,{"n":6.5,"e":3359}],[-19,{"n":3.5,"e":3349}],[-18,{"n":6,"e":3339,"g":1}],[17,{"n":5,"e":4139}],[15,{"n":4.5,"e":4159}],[14,{"n":3.5,"e":4168}],[13,{"n":6.5,"e":4186,"g":1}],[12,{"n":7,"e":4188,"g":1}],[11,{"n":2.5,"e":4205}],[10,{"n":4,"e":4210}],[8,{"n":4.5,"e":4229}],[7,{"n":4.5,"e":4239}],[6,{"n":5.5,"e":4250}],[5,{"n":4,"e":4259}],[4,{"n":3,"e":4275}],[3,{"n":6,"e":4284,"g":1}],[2,{"n":6.5,"e":4288,"g":1}],[1,{"n":8,"e":4301,"g":2}]],"a":{"m":27,"a":31,"M":52,"n":15}}],[767,{"n":"Mee","f":"Ben","fp":"DC","r":10,"c":23,"s":{"s":81,"n":17,"a":4.76,"d":1.34,"Ss":81,"Sn":17,"Sa":4.76,"Sd":1.34,"Oao":1,"Os":185.5,"On":38,"Oa":4.88,"Od":1.22,"pd":38},"p":[[-38,{"n":3.5,"e":3539}],[-37,{"n":4,"e":3532,"a":1}],[-36,{"n":6,"e":3519}],[-35,{"n":6,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6,"e":3480}],[-31,{"n":4,"e":3470}],[-30,{"n":3.5,"e":3464}],[-29,{"n":4.5,"e":3450}],[-28,{"n":5,"e":3444}],[-27,{"n":5.5,"e":3430}],[-26,{"n":5.5,"e":3418}],[-25,{"n":4.5,"e":3409}],[-24,{"n":6,"e":3403}],[-23,{"n":6,"e":3396}],[-22,{"n":5.5,"e":3379}],[-21,{"n":6,"e":3373}],[-20,{"n":6,"e":3359}],[-19,{"n":2,"e":3349}],[-18,{"n":4,"e":3339}],[17,{"n":5.5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":3,"e":4168}],[13,{"n":6,"e":4186}],[12,{"n":7,"e":4188}],[11,{"n":3,"e":4205}],[10,{"n":3.5,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":6,"e":4229}],[7,{"n":4.5,"e":4239}],[6,{"n":6,"e":4250}],[5,{"n":5.5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":6,"e":4301}]]}],[769,{"n":"Ward","f":"Stephen","fp":"DC","r":1,"c":23}],[803,{"n":"Vokes","f":"Sam","fp":"A","r":10,"c":23,"s":{"Os":16,"On":4,"Oa":4,"Od":1,"pa":4},"p":[[-22,{"n":4.5,"e":3379}],[-20,{"n":4.5,"e":3359}],[-19,{"n":2.5,"e":3349}],[-18,{"n":4.5,"e":3339}]]}],[811,{"n":"Pieters","f":"Erik","fp":"DL","r":10,"c":23,"s":{"s":66.5,"n":15,"a":4.43,"d":1.24,"Ss":15.5,"Sn":4,"Sa":3.88,"Sd":0.85,"Og":1,"Os":144.5,"On":30,"Oa":4.82,"Od":1.24,"pd":29,"pm":1},"p":[[-38,{"n":6,"e":3102}],[-37,{"n":3.5,"e":3096}],[-36,{"n":5.5,"e":3082}],[-35,{"n":6.5,"e":3076}],[-34,{"n":6,"e":3062}],[-33,{"n":3,"e":3055}],[-32,{"n":4.5,"e":3043}],[-31,{"n":5,"e":3032}],[-30,{"n":5.5,"e":3022}],[-29,{"n":5,"e":3012}],[-28,{"n":7.5,"e":3002,"g":1}],[-26,{"n":5,"e":2982}],[-25,{"n":6,"e":2977}],[-27,{"n":4,"e":3001}],[-24,{"n":5,"e":2962}],[17,{"n":5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":4,"e":4168}],[11,{"n":2.5,"e":4205}],[10,{"n":3,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":5,"e":4229}],[7,{"n":5,"e":4239}],[6,{"n":6,"e":4250}],[5,{"n":5.5,"e":4259}],[4,{"n":4.5,"e":4275}],[3,{"n":3.5,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":7,"e":4301}]]}],[813,{"n":"Walters","f":"Jonathan","fp":"A","r":1,"c":23}],[816,{"n":"Drinkwater","f":"Daniel","fp":"MD","r":6,"c":23,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pm":1},"p":[[15,{"n":4,"e":4159}]]}],[846,{"n":"Johann Gudmundsson","f":"","fp":"MO","r":7,"c":23,"s":{"g":1,"s":23.5,"n":4,"a":5.88,"d":1.18,"Og":2,"Os":101,"On":19,"Oa":5.32,"Od":0.82,"pm":19},"p":[[-38,{"n":6,"e":3539}],[-37,{"n":5,"e":3532}],[-36,{"n":5,"e":3519}],[-33,{"n":4.5,"e":3488}],[-32,{"n":4.5,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":7,"e":3464,"g":1}],[-29,{"n":4.5,"e":3450}],[-28,{"n":5,"e":3444}],[-27,{"n":5.5,"e":3430}],[-25,{"n":5.5,"e":3409}],[-24,{"n":5,"e":3403}],[-21,{"n":5,"e":3373}],[-20,{"n":5.5,"e":3359}],[-19,{"n":5,"e":3349}],[8,{"n":6,"e":4229}],[3,{"n":5,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":7.5,"e":4301,"g":1}]]}],[897,{"n":"Brady","f":"Robbie","fp":"MD","r":8,"c":23,"s":{"g":1,"s":44.5,"n":9,"a":4.94,"d":0.88,"Og":1,"Os":83.5,"On":17,"Oa":4.91,"Od":0.67,"pm":17},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":5,"e":3532}],[-31,{"n":5,"e":3470}],[-29,{"n":4.5,"e":3450}],[-28,{"n":4.5,"e":3444}],[-27,{"n":5,"e":3430}],[-25,{"n":5,"e":3409}],[-21,{"n":5.5,"e":3373}],[16,{"n":3,"e":4155}],[15,{"n":6,"e":4159,"g":1}],[14,{"n":5,"e":4168}],[12,{"n":5,"e":4188}],[11,{"n":5,"e":4205}],[10,{"n":6,"e":4210}],[9,{"n":4.5,"e":4223}],[7,{"n":5,"e":4239}],[6,{"n":5,"e":4250}]]}],[899,{"n":"Lennon","f":"Aaron","fp":"MO","r":6,"c":23,"s":{"s":52.5,"n":11,"a":4.77,"d":0.41,"Os":52.5,"On":11,"Oa":4.77,"Od":0.41,"pm":11},"p":[[16,{"n":5,"e":4155}],[15,{"n":4,"e":4159}],[14,{"n":5,"e":4168}],[9,{"n":5,"e":4223}],[8,{"n":5,"e":4229}],[6,{"n":5,"e":4250}],[5,{"n":4.5,"e":4259}],[4,{"n":4,"e":4275}],[3,{"n":5,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":5,"e":4301}]]}],[932,{"n":"Bardsley","f":"Phil","fp":"DL","r":9,"c":23,"s":{"s":27,"n":5,"a":5.4,"d":1.43,"Ss":5.5,"Sn":1,"Sa":5.5,"Oao":1,"Os":91,"On":19,"Oa":4.79,"Od":1.13,"pd":19},"p":[[-32,{"n":5.5,"e":3480}],[-31,{"n":4,"e":3470}],[-30,{"n":3,"e":3464}],[-29,{"n":2.5,"e":3450,"a":1}],[-28,{"n":3.5,"e":3444}],[-27,{"n":5,"e":3430}],[-26,{"n":5,"e":3418}],[-25,{"n":5,"e":3409}],[-24,{"n":5,"e":3403}],[-23,{"n":5,"e":3396}],[-22,{"n":5,"e":3379}],[-21,{"n":5,"e":3373}],[-20,{"n":6,"e":3359}],[-18,{"n":4.5,"e":3339}],[17,{"n":5.5,"e":4139}],[15,{"n":3.5,"e":4159}],[14,{"n":4.5,"e":4168}],[13,{"n":7,"e":4186}],[12,{"n":6.5,"e":4188}]]}],[951,{"n":"Tarkowski","f":"James","fp":"DC","r":14,"c":23,"s":{"g":1,"s":85.5,"n":17,"a":5.03,"d":1.49,"Sg":1,"Ss":85.5,"Sn":17,"Sa":5.03,"Sd":1.49,"Og":1,"Os":190,"On":38,"Oa":5,"Od":1.38,"pd":38},"p":[[-38,{"n":4,"e":3539}],[-37,{"n":5,"e":3532}],[-36,{"n":5.5,"e":3519}],[-35,{"n":4.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6.5,"e":3480}],[-31,{"n":4,"e":3470}],[-30,{"n":3.5,"e":3464}],[-29,{"n":3,"e":3450}],[-28,{"n":3.5,"e":3444}],[-27,{"n":6.5,"e":3430}],[-26,{"n":6,"e":3418}],[-25,{"n":6,"e":3409}],[-24,{"n":6,"e":3403}],[-23,{"n":6,"e":3396}],[-22,{"n":6,"e":3379}],[-21,{"n":6,"e":3373}],[-20,{"n":6,"e":3359}],[-19,{"n":2,"e":3349}],[-18,{"n":3.5,"e":3339}],[17,{"n":6,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":3.5,"e":4168}],[13,{"n":7.5,"e":4186,"g":1}],[12,{"n":7.5,"e":4188}],[11,{"n":3,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":5,"e":4223}],[8,{"n":7,"e":4229}],[7,{"n":5,"e":4239}],[6,{"n":5.5,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":4.5,"e":4288}],[1,{"n":6,"e":4301}]]}],[997,{"n":"Hendrick","f":"Jeff","fp":"MO","r":14,"c":23,"s":{"g":2,"s":70.5,"n":14,"a":5.04,"d":1.25,"Sg":2,"Ss":65.5,"Sn":13,"Sa":5.04,"Sd":1.3,"Og":3,"Os":163,"On":33,"Oa":4.94,"Od":0.98,"pm":32,"pa":1},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":4.5,"e":3532}],[-36,{"n":4.5,"e":3519}],[-35,{"n":6,"e":3511,"g":1}],[-34,{"n":5.5,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":5,"e":3480}],[-30,{"n":4.5,"e":3464}],[-29,{"n":3.5,"e":3450}],[-28,{"n":4,"e":3444}],[-27,{"n":5.5,"e":3430}],[-26,{"n":6,"e":3418}],[-25,{"n":4,"e":3409}],[-24,{"n":4.5,"e":3403}],[-23,{"n":4.5,"e":3396}],[-22,{"n":6.5,"e":3379}],[-21,{"n":5,"e":3373}],[-19,{"n":5,"e":3349}],[-18,{"n":4.5,"e":3339}],[17,{"n":5,"e":4139}],[16,{"n":3,"e":4155}],[15,{"n":4,"e":4159}],[14,{"n":5,"e":4168}],[13,{"n":5.5,"e":4186}],[12,{"n":6.5,"e":4188}],[11,{"n":3.5,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":7,"e":4229,"g":1}],[7,{"n":5.5,"e":4239}],[6,{"n":5.5,"e":4250}],[5,{"n":7,"e":4259,"g":1}],[3,{"n":5,"e":4284}]]}],[1045,{"n":"Pope","f":"Nick","fp":"G","r":13,"c":23,"s":{"s":90,"n":17,"a":5.29,"d":1.28,"Ss":90,"Sn":17,"Sa":5.29,"Sd":1.28,"Os":90,"On":17,"Oa":5.29,"Od":1.28,"pg":17},"p":[[17,{"n":6,"e":4139}],[16,{"n":3.5,"e":4155}],[15,{"n":5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":7,"e":4186}],[12,{"n":6.5,"e":4188}],[11,{"n":4,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":4,"e":4223}],[8,{"n":6,"e":4229}],[7,{"n":4,"e":4239}],[6,{"n":6.5,"e":4250}],[5,{"n":6.5,"e":4259}],[4,{"n":4,"e":4275}],[3,{"n":5.5,"e":4284}],[2,{"n":7,"e":4288}],[1,{"n":6.5,"e":4301}]],"a":{"m":17,"a":20,"M":32,"n":10}}],[1054,{"n":"Westwood","f":"Ashley","fp":"MD","r":15,"c":23,"s":{"s":74.5,"n":14,"a":5.32,"d":1.2,"Ss":6.5,"Sn":1,"Sa":6.5,"Og":2,"Os":186,"On":34,"Oa":5.47,"Od":1.14,"pm":34},"p":[[-38,{"n":4.5,"e":3539}],[-37,{"n":5,"e":3532}],[-36,{"n":5,"e":3519}],[-35,{"n":5.5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":8,"e":3488,"g":1}],[-32,{"n":6,"e":3480}],[-31,{"n":5,"e":3470}],[-30,{"n":5,"e":3464,"g":1}],[-29,{"n":5.5,"e":3450}],[-27,{"n":5.5,"e":3430}],[-26,{"n":6.5,"e":3418}],[-25,{"n":4.5,"e":3409}],[-24,{"n":6,"e":3403}],[-23,{"n":6,"e":3396}],[-22,{"n":5.5,"e":3379}],[-21,{"n":7,"e":3373}],[-20,{"n":7.5,"e":3359}],[-19,{"n":3.5,"e":3349}],[-18,{"n":4,"e":3339}],[17,{"n":6.5,"e":4139}],[13,{"n":7,"e":4186}],[12,{"n":6,"e":4188}],[11,{"n":4,"e":4205}],[10,{"n":4,"e":4210}],[9,{"n":4.5,"e":4223}],[8,{"n":7,"e":4229}],[7,{"n":4,"e":4239}],[6,{"n":6.5,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":3.5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4288}],[1,{"n":5.5,"e":4301}]]}],[1074,{"n":"Long","f":"Kevin","fp":"DC","r":1,"c":23,"s":{"Os":3.5,"On":1,"Oa":3.5,"pd":1},"p":[[-18,{"n":3.5,"e":3339}]]}],[1297,{"n":"Taylor","f":"Charlie","fp":"DL","r":8,"c":23,"s":{"s":28,"n":5,"a":5.6,"d":0.65,"Os":130.5,"On":26,"Oa":5.02,"Od":0.81,"pd":26},"p":[[-38,{"n":4,"e":3539}],[-37,{"n":4.5,"e":3532}],[-36,{"n":4.5,"e":3519}],[-35,{"n":5,"e":3511}],[-34,{"n":6,"e":3499}],[-33,{"n":5,"e":3488}],[-32,{"n":6,"e":3480}],[-31,{"n":4.5,"e":3470}],[-30,{"n":4.5,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":4.5,"e":3444}],[-27,{"n":5,"e":3430}],[-26,{"n":5.5,"e":3418}],[-25,{"n":5,"e":3409}],[-24,{"n":6,"e":3403}],[-23,{"n":5.5,"e":3396}],[-22,{"n":5,"e":3379}],[-21,{"n":5,"e":3373}],[-20,{"n":6,"e":3359}],[-19,{"n":3,"e":3349}],[-18,{"n":4,"e":3339}],[14,{"n":5,"e":4168}],[13,{"n":6.5,"e":4186}],[12,{"n":6,"e":4188}],[11,{"n":5,"e":4205}],[8,{"n":5.5,"e":4229}]]}],[1299,{"n":"Wood","f":"Chris","fp":"A","r":19,"c":23,"s":{"g":7,"ao":1,"s":72,"n":15,"a":4.8,"d":1.68,"Sg":3,"Ss":29.5,"Sn":6,"Sa":4.92,"Sd":1.83,"Og":16,"Oao":1,"Os":180,"On":36,"Oa":5,"Od":1.6,"pa":36},"p":[[-38,{"n":4,"e":3539}],[-37,{"n":4,"e":3532}],[-36,{"n":3,"e":3519}],[-35,{"n":5,"e":3511}],[-34,{"n":8,"e":3499,"g":2}],[-33,{"n":7.5,"e":3488,"g":1}],[-32,{"n":5.5,"e":3480}],[-31,{"n":3.5,"e":3470}],[-30,{"n":4,"e":3464}],[-29,{"n":4.5,"e":3450}],[-28,{"n":3.5,"e":3444}],[-27,{"n":6.5,"e":3430,"g":1}],[-26,{"n":8,"e":3418,"g":2}],[-25,{"n":4.5,"e":3409}],[-24,{"n":6.5,"e":3403,"g":1}],[-23,{"n":5,"e":3396}],[-22,{"n":4,"e":3379}],[-21,{"n":6,"e":3373,"g":1}],[-20,{"n":7,"e":3359,"g":1}],[-19,{"n":4.5,"e":3349}],[-18,{"n":3.5,"e":3339}],[17,{"n":6,"e":4139,"g":1}],[16,{"n":2.5,"e":4155}],[15,{"n":3.5,"e":4159}],[14,{"n":4,"e":4168}],[13,{"n":6.5,"e":4186,"g":1}],[12,{"n":7,"e":4188,"g":1}],[9,{"n":6,"e":4223,"g":1}],[8,{"n":4.5,"e":4229}],[7,{"n":6,"e":4239,"g":1}],[6,{"n":8,"e":4250,"g":2}],[5,{"n":3.5,"e":4259}],[4,{"n":2.5,"e":4275,"a":1}],[3,{"n":4,"e":4284}],[2,{"n":3.5,"e":4288}],[1,{"n":4.5,"e":4301}]],"a":{"m":21,"a":26,"M":30,"n":5}}],[1320,{"n":"Hart","f":"Joe","fp":"G","r":7,"c":23,"s":{"Os":7.5,"On":2,"Oa":3.75,"Od":1.06,"pg":2},"p":[[-19,{"n":3,"e":3349}],[-18,{"n":4.5,"e":3339}]]}],[1345,{"n":"Legzdins","f":"Adam","fp":"G","r":1,"c":23}],[1348,{"n":"Agyei","f":"Daniel","fp":"A","r":1,"c":23}],[1478,{"n":"Wells","f":"Nahki","fp":"A","r":6,"c":23}],[2061,{"n":"Lindegaard","f":"Anders","fp":"G","r":1,"c":23}],[2200,{"n":"O'Neill","f":"Aiden","fp":"MD","r":7,"c":23}],[2497,{"n":"Vydra","f":"Matej","fp":"A","r":4,"c":23,"s":{"s":22,"n":5,"a":4.4,"d":0.42,"Os":48.5,"On":11,"Oa":4.41,"Od":0.49,"pa":11},"p":[[-37,{"n":4,"e":3532}],[-36,{"n":4.5,"e":3519}],[-31,{"n":4.5,"e":3470}],[-30,{"n":5.5,"e":3464}],[-28,{"n":4,"e":3444}],[-18,{"n":4,"e":3339}],[16,{"n":4,"e":4155}],[11,{"n":4.5,"e":4205}],[10,{"n":4.5,"e":4210}],[9,{"n":4,"e":4223}],[5,{"n":5,"e":4259}]]}],[2817,{"n":"McNeil","f":"Dwight","fp":"A","r":17,"c":23,"s":{"g":1,"s":99.5,"n":17,"a":5.85,"d":1.18,"Sg":1,"Ss":99.5,"Sn":17,"Sa":5.85,"Sd":1.18,"Og":4,"Os":210,"On":37,"Oa":5.68,"Od":1.13,"pm":35,"pa":2},"p":[[-38,{"n":5.5,"e":3539}],[-37,{"n":4,"e":3532}],[-36,{"n":5,"e":3519}],[-35,{"n":5.5,"e":3511}],[-34,{"n":7,"e":3499}],[-33,{"n":5.5,"e":3488}],[-32,{"n":7,"e":3480,"g":1}],[-31,{"n":7,"e":3470,"g":1}],[-30,{"n":4.5,"e":3464}],[-29,{"n":4,"e":3450}],[-28,{"n":3.5,"e":3444}],[-27,{"n":6,"e":3430}],[-26,{"n":6.5,"e":3418}],[-25,{"n":6,"e":3409}],[-24,{"n":6,"e":3403}],[-23,{"n":4.5,"e":3396}],[-22,{"n":5.5,"e":3379}],[-21,{"n":6,"e":3373}],[-20,{"n":7,"e":3359,"g":1}],[-19,{"n":4.5,"e":3349}],[17,{"n":7,"e":4139}],[16,{"n":4,"e":4155}],[15,{"n":4.5,"e":4159}],[14,{"n":6,"e":4168}],[13,{"n":6,"e":4186}],[12,{"n":8,"e":4188}],[11,{"n":3.5,"e":4205}],[10,{"n":7,"e":4210,"g":1}],[9,{"n":6,"e":4223}],[8,{"n":6,"e":4229}],[7,{"n":5.5,"e":4239}],[6,{"n":7,"e":4250}],[5,{"n":5,"e":4259}],[4,{"n":5,"e":4275}],[3,{"n":6,"e":4284}],[2,{"n":6,"e":4288}],[1,{"n":7,"e":4301}]],"a":{"m":20,"a":26,"M":39,"n":6}}],[2972,{"n":"Ali Koiki","f":"","fp":"DC","r":1,"c":23}],[2984,{"n":"Massanka","f":"Ntumba","fp":"MD","r":2,"c":23}],[3351,{"n":"Benson","f":"Josh","fp":"MD","r":1,"c":23}],[3673,{"n":"Driscoll-Glennon","f":"Anthony","fp":"DC","r":1,"c":23}],[5995,{"n":"Peacock-Farrell","f":"Bailey","fp":"G","r":1,"c":23}],[6120,{"n":"Jimmy Dunne","f":"","fp":"DC","r":2,"c":23}],[6240,{"n":"Richardson","f":"Lewis","fp":"A","r":1,"c":23}],[419,{"n":"Jorginho","f":"","fp":"MD","r":21,"c":25,"s":{"g":1,"s":84,"n":15,"a":5.6,"d":1.43,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":199,"On":36,"Oa":5.53,"Od":1.24,"pm":36},"p":[[14,{"n":3.5,"e":4169}],[13,{"n":4,"e":4184}],[11,{"n":7,"e":4206}],[9,{"n":6.5,"e":4220}],[8,{"n":7,"e":4233}],[6,{"n":4.5,"e":4257}],[5,{"n":7,"e":4263}],[4,{"n":6,"e":4269}],[3,{"n":6,"e":4279}],[2,{"n":4,"e":4296}],[1,{"n":3.5,"e":4307}],[-38,{"n":6,"e":3542}],[-37,{"n":7,"e":3531}],[-36,{"n":6,"e":3524}],[-35,{"n":5,"e":3511}],[-34,{"n":4,"e":3503}],[-33,{"n":5.5,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":5.5,"e":3471}],[-30,{"n":4,"e":3460}],[-29,{"n":6,"e":3452,"g":1}],[-28,{"n":6.5,"e":3443}],[-27,{"n":7,"e":3432}],[-26,{"n":3,"e":3423}],[-25,{"n":7,"e":3411}],[-24,{"n":3.5,"e":3398}],[-23,{"n":5,"e":3389}],[-22,{"n":6,"e":3381}],[-21,{"n":6,"e":3371}],[-20,{"n":6,"e":3360}],[-19,{"n":6,"e":3357}],[-18,{"n":5,"e":3341}],[17,{"n":6,"e":4140}],[15,{"n":5,"e":4164}],[10,{"n":6,"e":4210}],[7,{"n":8,"e":4241,"g":1}]]}],[601,{"n":"Giroud","f":"Olivier","fp":"A","r":5,"c":25,"s":{"s":21,"n":5,"a":4.2,"d":0.57,"Og":1,"Os":80.5,"On":18,"Oa":4.47,"Od":0.63,"pa":18},"p":[[-38,{"n":4.5,"e":3542}],[-37,{"n":4,"e":3531}],[-35,{"n":4,"e":3511}],[-33,{"n":5,"e":3489}],[-32,{"n":4.5,"e":3481}],[-31,{"n":4.5,"e":3471}],[-28,{"n":4.5,"e":3443}],[-27,{"n":6.5,"e":3432,"g":1}],[-24,{"n":4.5,"e":3398}],[-23,{"n":4.5,"e":3389}],[-22,{"n":4.5,"e":3381}],[-20,{"n":4.5,"e":3360}],[-18,{"n":4,"e":3341}],[14,{"n":3.5,"e":4169}],[10,{"n":4,"e":4210}],[3,{"n":4,"e":4279}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307}]]}],[602,{"n":"Kanté","f":"N'Golo","fp":"MD","r":23,"c":25,"s":{"g":3,"s":56,"n":10,"a":5.6,"d":1.07,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":5,"Os":156,"On":29,"Oa":5.38,"Od":1.06,"pm":29},"p":[[16,{"n":5,"e":4151}],[12,{"n":5.5,"e":4189}],[-37,{"n":5,"e":3531}],[-36,{"n":5,"e":3524}],[-35,{"n":6,"e":3511,"g":1}],[-34,{"n":5.5,"e":3503}],[-33,{"n":5,"e":3489}],[-31,{"n":4.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":6,"e":3452}],[-28,{"n":5.5,"e":3443}],[-27,{"n":5.5,"e":3432}],[-26,{"n":3.5,"e":3423}],[-25,{"n":7.5,"e":3411}],[-24,{"n":3.5,"e":3398}],[-23,{"n":4,"e":3389}],[-22,{"n":5.5,"e":3381}],[-21,{"n":5.5,"e":3371}],[-20,{"n":7.5,"e":3360,"g":1}],[-19,{"n":5,"e":3357}],[-18,{"n":5,"e":3341}],[17,{"n":4.5,"e":4140}],[15,{"n":6,"e":4164}],[14,{"n":4.5,"e":4169}],[13,{"n":7,"e":4184,"g":1}],[8,{"n":7,"e":4233,"g":1}],[6,{"n":7,"e":4257,"g":1}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307}]]}],[607,{"n":"Pedro","f":"","fp":"A","r":5,"c":25,"s":{"s":20,"n":4,"a":5,"Og":2,"Os":101,"On":20,"Oa":5.05,"Od":1,"pm":3,"pa":17},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":7,"e":3531}],[-36,{"n":5.5,"e":3524}],[-35,{"n":4.5,"e":3511}],[-33,{"n":4.5,"e":3489}],[-32,{"n":4,"e":3481}],[-31,{"n":5.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":4.5,"e":3452}],[-28,{"n":7,"e":3443,"g":1}],[-26,{"n":3.5,"e":3423}],[-24,{"n":5,"e":3398}],[-23,{"n":4,"e":3389}],[-22,{"n":7,"e":3381,"g":1}],[-19,{"n":4,"e":3357}],[-18,{"n":4.5,"e":3341}],[14,{"n":5,"e":4169}],[7,{"n":5,"e":4241}],[2,{"n":5,"e":4296}],[1,{"n":5,"e":4307}]]}],[619,{"n":"Willian","f":"","fp":"A","r":18,"c":25,"s":{"g":2,"s":91.5,"n":16,"a":5.72,"d":1.08,"Sg":2,"Ss":91.5,"Sn":16,"Sa":5.72,"Sd":1.08,"Og":3,"Os":176.5,"On":32,"Oa":5.52,"Od":0.95,"pm":7,"pa":25},"p":[[-38,{"n":5,"e":3542}],[-36,{"n":5,"e":3524}],[-34,{"n":5,"e":3503}],[-32,{"n":6.5,"e":3481}],[-30,{"n":5.5,"e":3460}],[-29,{"n":6,"e":3452}],[-28,{"n":5,"e":3443}],[-27,{"n":4.5,"e":3432}],[-25,{"n":7,"e":3411}],[-24,{"n":4.5,"e":3398}],[-23,{"n":5,"e":3389}],[-22,{"n":6,"e":3381,"g":1}],[-21,{"n":5,"e":3371}],[-20,{"n":5,"e":3360}],[-19,{"n":6,"e":3357}],[-18,{"n":4,"e":3341}],[17,{"n":5.5,"e":4140}],[16,{"n":5,"e":4151}],[15,{"n":7,"e":4164}],[14,{"n":5,"e":4169}],[13,{"n":4.5,"e":4184}],[12,{"n":7.5,"e":4189}],[11,{"n":5.5,"e":4206}],[10,{"n":7,"e":4210,"g":1}],[9,{"n":6,"e":4220}],[8,{"n":7,"e":4233}],[7,{"n":7,"e":4241,"g":1}],[6,{"n":4.5,"e":4257}],[5,{"n":6,"e":4263}],[4,{"n":5,"e":4269}],[3,{"n":4.5,"e":4279}],[2,{"n":4.5,"e":4296}]],"a":{"m":18,"a":26,"M":41,"n":11}}],[625,{"n":"Barkley","f":"Ross","fp":"MO","r":3,"c":25,"s":{"s":31.5,"n":6,"a":5.25,"d":0.69,"Os":98.5,"On":19,"Oa":5.18,"Od":0.73,"pm":19},"p":[[-38,{"n":5.5,"e":3542}],[-34,{"n":5,"e":3503}],[-33,{"n":5.5,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":5.5,"e":3471}],[-29,{"n":5.5,"e":3452}],[-26,{"n":3.5,"e":3423}],[-25,{"n":7,"e":3411}],[-23,{"n":5,"e":3389}],[-22,{"n":5,"e":3381}],[-21,{"n":4.5,"e":3371}],[-20,{"n":5,"e":3360}],[-19,{"n":5,"e":3357}],[9,{"n":5,"e":4220}],[7,{"n":5.5,"e":4241}],[5,{"n":5,"e":4263}],[4,{"n":5,"e":4269}],[3,{"n":6.5,"e":4279}],[1,{"n":4.5,"e":4307}]]}],[650,{"n":"Azpilicueta","f":"César","fp":"DL","r":17,"c":25,"s":{"s":71.5,"n":15,"a":4.77,"d":0.73,"Ss":15,"Sn":3,"Sa":5,"Sd":1,"Og":1,"Os":177.5,"On":36,"Oa":4.93,"Od":0.99,"pd":35,"pm":1},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":7,"e":3531}],[-36,{"n":5,"e":3524}],[-35,{"n":5,"e":3511}],[-34,{"n":4,"e":3503}],[-33,{"n":5,"e":3489}],[-32,{"n":6.5,"e":3481,"g":1}],[-31,{"n":4.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":6,"e":3452}],[-28,{"n":5.5,"e":3443}],[-27,{"n":6,"e":3432}],[-26,{"n":2,"e":3423}],[-25,{"n":7,"e":3411}],[-24,{"n":3.5,"e":3398}],[-23,{"n":4,"e":3389}],[-22,{"n":4.5,"e":3381}],[-21,{"n":5,"e":3371}],[-20,{"n":5.5,"e":3360}],[-19,{"n":5,"e":3357}],[-18,{"n":5,"e":3341}],[17,{"n":6,"e":4140}],[16,{"n":4,"e":4151}],[15,{"n":5,"e":4164}],[13,{"n":5,"e":4184}],[11,{"n":5,"e":4206}],[10,{"n":4.5,"e":4210}],[9,{"n":4.5,"e":4220}],[8,{"n":5,"e":4233}],[7,{"n":5.5,"e":4241}],[6,{"n":4.5,"e":4257}],[5,{"n":5,"e":4263}],[4,{"n":4,"e":4269}],[3,{"n":5.5,"e":4279}],[2,{"n":5,"e":4296}],[1,{"n":3,"e":4307}]]}],[656,{"n":"Moses","f":"Victor","fp":"DC","r":1,"c":25}],[659,{"n":"Alonso","f":"Marcos","fp":"DL","r":7,"c":25,"s":{"g":1,"s":36.5,"n":7,"a":5.21,"d":0.57,"Og":2,"Os":108,"On":21,"Oa":5.14,"Od":1.01,"pd":20,"pm":1},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3531}],[-36,{"n":6,"e":3524,"g":1}],[-32,{"n":4.5,"e":3481}],[-31,{"n":3,"e":3471}],[-28,{"n":7,"e":3443}],[-26,{"n":3,"e":3423}],[-25,{"n":6.5,"e":3411}],[-23,{"n":4,"e":3389}],[-22,{"n":5,"e":3381}],[-21,{"n":6,"e":3371}],[-20,{"n":5,"e":3360}],[-19,{"n":5,"e":3357}],[-18,{"n":5,"e":3341}],[10,{"n":5,"e":4210}],[9,{"n":6,"e":4220,"g":1}],[8,{"n":6,"e":4233}],[7,{"n":5,"e":4241}],[6,{"n":5,"e":4257}],[5,{"n":5,"e":4263}],[3,{"n":4.5,"e":4279}]]}],[848,{"n":"Caballero","f":"Willy","fp":"G","r":7,"c":25,"s":{"Os":12,"On":2,"Oa":6,"pg":2},"p":[[-38,{"n":6,"e":3542}],[-28,{"n":6,"e":3443}]]}],[850,{"n":"Batshuayi","f":"Michy","fp":"A","r":8,"c":25,"s":{"g":1,"s":51.5,"n":11,"a":4.68,"d":0.6,"Ss":13.5,"Sn":3,"Sa":4.5,"Og":6,"Os":119.5,"On":24,"Oa":4.98,"Od":1.01,"pa":24},"p":[[-37,{"n":6,"e":3530,"g":1}],[-33,{"n":4,"e":3493}],[-31,{"n":4.5,"e":3474}],[-28,{"n":4,"e":3442}],[-27,{"n":7,"e":3434,"g":1}],[-26,{"n":4.5,"e":3419}],[-18,{"n":4,"e":2142}],[-17,{"n":4.5,"e":2139}],[-38,{"n":7.5,"e":3540,"g":2}],[-32,{"n":4.5,"e":3482}],[-30,{"n":5,"e":3461}],[-29,{"n":6.5,"e":3450,"g":1}],[-25,{"n":6,"e":3412}],[17,{"n":4.5,"e":4140}],[16,{"n":4.5,"e":4151}],[15,{"n":4.5,"e":4164}],[13,{"n":4,"e":4184}],[12,{"n":5.5,"e":4189}],[11,{"n":4.5,"e":4206}],[8,{"n":6,"e":4233,"g":1}],[7,{"n":4.5,"e":4241}],[6,{"n":4,"e":4257}],[5,{"n":5,"e":4263}],[4,{"n":4.5,"e":4269}]]}],[959,{"n":"Loftus-Cheek","f":"Ruben","fp":"MO","r":3,"c":25,"s":{"Og":3,"Os":90.5,"On":17,"Oa":5.32,"Od":0.98,"pm":17},"p":[[-38,{"n":6.5,"e":3542}],[-37,{"n":7,"e":3531,"g":1}],[-36,{"n":5,"e":3524}],[-35,{"n":5.5,"e":3511}],[-34,{"n":3.5,"e":3503}],[-33,{"n":5.5,"e":3489}],[-32,{"n":6,"e":3481,"g":1}],[-31,{"n":4.5,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":4.5,"e":3452}],[-28,{"n":5.5,"e":3443}],[-27,{"n":7.5,"e":3432,"g":1}],[-26,{"n":5,"e":3423}],[-25,{"n":5,"e":3411}],[-24,{"n":4.5,"e":3398}],[-21,{"n":5,"e":3371}],[-18,{"n":5,"e":3341}]]}],[992,{"n":"Zouma","f":"Kurt","fp":"DC","r":18,"c":25,"s":{"ao":1,"s":80,"n":16,"a":5,"d":1.24,"Ss":55,"Sn":10,"Sa":5.5,"Sd":0.94,"Og":2,"Oao":1,"Os":177.5,"On":35,"Oa":5.07,"Od":1.31,"pd":35},"p":[[-38,{"n":4,"e":3546}],[-36,{"n":5,"e":3520}],[-35,{"n":6,"e":3512}],[-32,{"n":7.5,"e":3487,"g":1}],[-30,{"n":4,"e":3466}],[-29,{"n":6,"e":3451}],[-27,{"n":4.5,"e":3433}],[-26,{"n":6,"e":3426}],[-25,{"n":4,"e":3413}],[-21,{"n":5.5,"e":3372}],[-18,{"n":1,"e":3342}],[-37,{"n":6,"e":3532}],[-34,{"n":4,"e":3501}],[-33,{"n":6,"e":3490}],[-24,{"n":6,"e":3401}],[-23,{"n":5.5,"e":3395}],[-22,{"n":6,"e":3383,"g":1}],[-20,{"n":4.5,"e":3358}],[-19,{"n":6,"e":3349}],[17,{"n":6,"e":4140}],[16,{"n":4,"e":4151}],[15,{"n":5.5,"e":4164}],[14,{"n":5.5,"e":4169}],[13,{"n":4,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":7,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":6,"e":4220}],[8,{"n":6,"e":4233}],[6,{"n":5,"e":4257}],[5,{"n":3.5,"e":4263}],[4,{"n":4,"e":4269,"a":1}],[3,{"n":5,"e":4279}],[2,{"n":5.5,"e":4296}],[1,{"n":2,"e":4307}]]}],[1288,{"n":"Rüdiger","f":"Antonio","fp":"DC","r":8,"c":25,"s":{"s":10,"n":2,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":87,"On":18,"Oa":4.83,"Od":1.04,"pd":18},"p":[[-36,{"n":5.5,"e":3524}],[-34,{"n":5,"e":3503}],[-33,{"n":6,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":3,"e":3471}],[-30,{"n":5,"e":3460}],[-29,{"n":5,"e":3452}],[-28,{"n":6,"e":3443}],[-26,{"n":2.5,"e":3423}],[-24,{"n":3,"e":3398}],[-23,{"n":4.5,"e":3389}],[-22,{"n":5,"e":3381}],[-21,{"n":6,"e":3371}],[-20,{"n":6,"e":3360}],[-19,{"n":5,"e":3357}],[-18,{"n":4.5,"e":3341}],[17,{"n":5,"e":4140}],[5,{"n":5,"e":4263}]]}],[1309,{"n":"Isaiah Brown","f":"","fp":"A","r":6,"c":25}],[1350,{"n":"Abraham","f":"Tammy","fp":"A","r":39,"c":25,"s":{"g":11,"ao":1,"s":87,"n":16,"a":5.44,"d":1.68,"Sg":1,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.89,"Og":11,"Oao":1,"Os":87,"On":16,"Oa":5.44,"Od":1.68,"pa":16},"p":[[17,{"n":4,"e":4140}],[16,{"n":3.5,"e":4151}],[15,{"n":7,"e":4164,"g":1}],[13,{"n":4,"e":4184}],[12,{"n":6,"e":4189,"g":1}],[11,{"n":7,"e":4206,"g":1}],[10,{"n":5,"e":4210}],[9,{"n":5,"e":4220}],[8,{"n":7,"e":4233,"g":1}],[7,{"n":5.5,"e":4241}],[6,{"n":3.5,"e":4257}],[5,{"n":8,"e":4263,"g":3,"a":1}],[4,{"n":7.5,"e":4269,"g":2}],[3,{"n":7,"e":4279,"g":2}],[2,{"n":4.5,"e":4296}],[1,{"n":2.5,"e":4307}]]}],[1360,{"n":"Charly Musonda","f":"","fp":"MD","r":1,"c":25}],[1370,{"n":"Christensen","f":"Andreas","fp":"DC","r":9,"c":25,"s":{"s":39,"n":8,"a":4.88,"d":0.74,"Os":76.5,"On":15,"Oa":5.1,"Od":0.85,"pd":15},"p":[[-37,{"n":6.5,"e":3531}],[-36,{"n":5,"e":3524}],[-35,{"n":4.5,"e":3511}],[-34,{"n":4,"e":3503}],[-29,{"n":5.5,"e":3452}],[-27,{"n":5.5,"e":3432}],[-25,{"n":6.5,"e":3411}],[16,{"n":3.5,"e":4151}],[15,{"n":5.5,"e":4164}],[7,{"n":5.5,"e":4241}],[6,{"n":5,"e":4257}],[5,{"n":5,"e":4263}],[3,{"n":5,"e":4279}],[2,{"n":5.5,"e":4296}],[1,{"n":4,"e":4307}]]}],[1386,{"n":"Tomori","f":"Fikayo","fp":"DC","r":11,"c":25,"s":{"g":1,"s":59.5,"n":11,"a":5.41,"d":0.89,"Og":1,"Os":59.5,"On":11,"Oa":5.41,"Od":0.89,"pd":11},"p":[[14,{"n":4.5,"e":4169}],[13,{"n":4.5,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":6,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":5,"e":4220}],[8,{"n":5,"e":4233}],[7,{"n":6,"e":4241}],[6,{"n":5,"e":4257}],[5,{"n":7.5,"e":4263,"g":1}],[4,{"n":5,"e":4269}]]}],[1482,{"n":"Palmer","f":"Kasey","fp":"MD","r":1,"c":25}],[1652,{"n":"Arrizabalaga","f":"Kepa","fp":"G","r":15,"c":25,"s":{"s":86,"n":17,"a":5.06,"d":0.77,"Ss":86,"Sn":17,"Sa":5.06,"Sd":0.77,"Os":187,"On":36,"Oa":5.19,"Od":0.8,"pg":36},"p":[[-37,{"n":6,"e":3531}],[-36,{"n":5.5,"e":3524}],[-35,{"n":4.5,"e":3511}],[-34,{"n":6,"e":3503}],[-33,{"n":6,"e":3489}],[-32,{"n":5,"e":3481}],[-31,{"n":7,"e":3471}],[-30,{"n":4.5,"e":3460}],[-29,{"n":6,"e":3452}],[-27,{"n":5.5,"e":3432}],[-26,{"n":3.5,"e":3423}],[-25,{"n":6,"e":3411}],[-24,{"n":4,"e":3398}],[-23,{"n":5,"e":3389}],[-22,{"n":5,"e":3381}],[-21,{"n":6,"e":3371}],[-20,{"n":5.5,"e":3360}],[-19,{"n":5,"e":3357}],[-18,{"n":5,"e":3341}],[17,{"n":5,"e":4140}],[16,{"n":4.5,"e":4151}],[15,{"n":5.5,"e":4164}],[14,{"n":5.5,"e":4169}],[13,{"n":4.5,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":6,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":5.5,"e":4220}],[8,{"n":4.5,"e":4233}],[7,{"n":5.5,"e":4241}],[6,{"n":4,"e":4257}],[5,{"n":5.5,"e":4263}],[4,{"n":4,"e":4269}],[3,{"n":5.5,"e":4279}],[2,{"n":6,"e":4296}],[1,{"n":3.5,"e":4307}]],"a":{"m":20,"a":25,"M":35,"n":8}}],[1657,{"n":"Kovacic","f":"Mateo","fp":"MO","r":19,"c":25,"s":{"g":1,"s":95.5,"n":17,"a":5.62,"d":0.93,"Sg":1,"Ss":95.5,"Sn":17,"Sa":5.62,"Sd":0.93,"Og":1,"Os":179.5,"On":34,"Oa":5.28,"Od":0.88,"pm":34},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3531}],[-36,{"n":5.5,"e":3524}],[-35,{"n":5.5,"e":3511}],[-32,{"n":4,"e":3481}],[-30,{"n":4.5,"e":3460}],[-29,{"n":5,"e":3452}],[-28,{"n":5.5,"e":3443}],[-27,{"n":5,"e":3432}],[-26,{"n":5,"e":3423}],[-25,{"n":5,"e":3411}],[-24,{"n":4,"e":3398}],[-23,{"n":4.5,"e":3389}],[-22,{"n":3.5,"e":3381}],[-20,{"n":5,"e":3360}],[-19,{"n":6,"e":3357}],[-18,{"n":4.5,"e":3341}],[17,{"n":4.5,"e":4140}],[16,{"n":6,"e":4151,"g":1}],[15,{"n":4.5,"e":4164}],[14,{"n":5,"e":4169}],[13,{"n":7,"e":4184}],[12,{"n":7,"e":4189}],[11,{"n":7.5,"e":4206}],[10,{"n":5.5,"e":4210}],[9,{"n":6,"e":4220}],[8,{"n":5.5,"e":4233}],[7,{"n":5.5,"e":4241}],[6,{"n":5,"e":4257}],[5,{"n":5.5,"e":4263}],[4,{"n":5,"e":4269}],[3,{"n":6.5,"e":4279}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307}]]}],[2029,{"n":"Green","f":"Robert","fp":"G","r":1,"c":25}],[2072,{"n":"Ampadu","f":"Ethan","fp":"DC","r":1,"c":25}],[2075,{"n":"Sterling","f":"Dujon","fp":"MD","r":1,"c":25}],[2220,{"n":"Hudson-Odoi","f":"Callum","fp":"A","r":8,"c":25,"s":{"s":50,"n":10,"a":5,"d":0.75,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.29,"Os":99.5,"On":20,"Oa":4.97,"Od":0.82,"pm":1,"pa":19},"p":[[-35,{"n":5,"e":3511}],[-34,{"n":4,"e":3503}],[-33,{"n":6,"e":3489}],[-31,{"n":5,"e":3471}],[-30,{"n":4.5,"e":3460}],[-27,{"n":7,"e":3432}],[-25,{"n":4,"e":3411}],[-23,{"n":5,"e":3389}],[-22,{"n":4.5,"e":3381}],[-19,{"n":4.5,"e":3357}],[17,{"n":4.5,"e":4140}],[16,{"n":4.5,"e":4151}],[15,{"n":5,"e":4164}],[14,{"n":5,"e":4169}],[12,{"n":4.5,"e":4189}],[11,{"n":4,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":6.5,"e":4220}],[8,{"n":6,"e":4233}],[7,{"n":5,"e":4241}]]}],[2303,{"n":"Emerson","f":"","fp":"DL","r":13,"c":25,"s":{"s":49.5,"n":10,"a":4.95,"d":0.55,"Ss":5,"Sn":1,"Sa":5,"Os":97.5,"On":20,"Oa":4.88,"Od":0.6,"pd":20},"p":[[-35,{"n":4.5,"e":3511}],[-34,{"n":4.5,"e":3503}],[-33,{"n":6,"e":3489}],[-30,{"n":4.5,"e":3460}],[-29,{"n":4.5,"e":3452}],[-27,{"n":5,"e":3432}],[-26,{"n":5,"e":3423}],[-24,{"n":3.5,"e":3398}],[-20,{"n":5.5,"e":3360}],[-19,{"n":5,"e":3357}],[17,{"n":5,"e":4140}],[14,{"n":5,"e":4169}],[13,{"n":4,"e":4184}],[12,{"n":5,"e":4189}],[11,{"n":5.5,"e":4206}],[6,{"n":5,"e":4257}],[4,{"n":4.5,"e":4269}],[3,{"n":6,"e":4279}],[2,{"n":5,"e":4296}],[1,{"n":4.5,"e":4307}]],"a":{"m":16,"a":16,"M":16,"n":5}}],[2494,{"n":"Hector","f":"Michael","fp":"DC","r":1,"c":25}],[2570,{"n":"Collins","f":"Bradley","fp":"G","r":1,"c":25}],[2594,{"n":"Lucas Piazon","f":"","fp":"MD","r":1,"c":25}],[2795,{"n":"Miazga","f":"Matt","fp":"DC","r":5,"c":25}],[2977,{"n":"McEachran","f":"George","fp":"MD","r":1,"c":25}],[2980,{"n":"Cumming","f":"Jamie","fp":"G","r":1,"c":25}],[3640,{"n":"Maatsen","f":"Ian","fp":"DC","r":1,"c":25}],[3644,{"n":"Gilmour","f":"Billy","fp":"MO","r":1,"c":25,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pm":2},"p":[[12,{"n":5,"e":4189}],[4,{"n":4.5,"e":4269}]]}],[3650,{"n":"Gallagher","f":"Conor","fp":"MD","r":1,"c":25}],[3655,{"n":"James","f":"Reece","fp":"DL","r":10,"c":25,"s":{"s":41,"n":8,"a":5.13,"d":0.44,"Os":41,"On":8,"Oa":5.13,"Od":0.44,"pd":8},"p":[[16,{"n":4.5,"e":4151}],[15,{"n":6,"e":4164}],[14,{"n":5.5,"e":4169}],[13,{"n":5,"e":4184}],[12,{"n":5,"e":4189}],[11,{"n":5,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":5,"e":4220}]]}],[3664,{"n":"Marc Guehi","f":"","fp":"DC","r":1,"c":25}],[3679,{"n":"Mount","f":"Mason","fp":"MO","r":28,"c":25,"s":{"g":5,"s":93.5,"n":17,"a":5.5,"d":1.13,"Sg":5,"Ss":93.5,"Sn":17,"Sa":5.5,"Sd":1.13,"Og":5,"Os":93.5,"On":17,"Oa":5.5,"Od":1.13,"pm":13,"pa":4},"p":[[17,{"n":4.5,"e":4140}],[16,{"n":4.5,"e":4151}],[15,{"n":6,"e":4164,"g":1}],[14,{"n":5,"e":4169}],[13,{"n":5,"e":4184}],[12,{"n":6,"e":4189}],[11,{"n":5.5,"e":4206}],[10,{"n":5,"e":4210}],[9,{"n":4.5,"e":4220}],[8,{"n":7,"e":4233,"g":1}],[7,{"n":6,"e":4241}],[6,{"n":3.5,"e":4257}],[5,{"n":7.5,"e":4263,"g":1}],[4,{"n":5,"e":4269}],[3,{"n":7,"e":4279,"g":1}],[2,{"n":7,"e":4296,"g":1}],[1,{"n":4.5,"e":4307}]]}],[3681,{"n":"Ugbo","f":"Ike","fp":"A","r":1,"c":25}],[3682,{"n":"Chalobah","f":"Trevoh","fp":"DC","r":3,"c":25}],[3687,{"n":"Pulisic","f":"Christian","fp":"MO","r":30,"c":25,"s":{"g":5,"s":76,"n":14,"a":5.43,"d":1.37,"Sg":5,"Ss":55.5,"Sn":10,"Sa":5.55,"Sd":1.55,"Og":5,"Os":76,"On":14,"Oa":5.43,"Od":1.37,"pm":11,"pa":3},"p":[[17,{"n":4.5,"e":4140}],[16,{"n":4,"e":4151}],[15,{"n":5.5,"e":4164}],[14,{"n":4,"e":4169}],[13,{"n":4,"e":4184}],[12,{"n":7,"e":4189,"g":1}],[11,{"n":7,"e":4206,"g":1}],[10,{"n":8.5,"e":4210,"g":3}],[9,{"n":5,"e":4220}],[8,{"n":6,"e":4233}],[4,{"n":5.5,"e":4269}],[3,{"n":6,"e":4279}],[2,{"n":4,"e":4296}],[1,{"n":5,"e":4307}]],"a":{"m":25,"a":42,"M":51,"n":9}}],[3697,{"n":"Baker","f":"Lewis","fp":"MD","r":2,"c":25}],[5991,{"n":"Ziger","f":"Karlo","fp":"G","r":1,"c":25}],[6127,{"n":"van Ginkel","f":"Marco","fp":"MD","r":1,"c":25}],[615,{"n":"Benteke","f":"Christian","fp":"A","r":6,"c":26,"s":{"s":66,"n":14,"a":4.71,"d":0.38,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":122,"On":26,"Oa":4.69,"Od":0.63,"pa":26},"p":[[16,{"n":4.5,"e":4156}],[13,{"n":4.5,"e":4182}],[11,{"n":5,"e":4202}],[9,{"n":5,"e":4221}],[8,{"n":4,"e":4235}],[6,{"n":5,"e":4251}],[5,{"n":5,"e":4262}],[3,{"n":4.5,"e":4281}],[2,{"n":5,"e":4295}],[1,{"n":5,"e":4302}],[-34,{"n":4,"e":3500}],[-22,{"n":4.5,"e":3382}],[-36,{"n":4.5,"e":3520}],[-35,{"n":7,"e":3509,"g":1}],[-33,{"n":4.5,"e":3493}],[-32,{"n":5,"e":3482}],[-31,{"n":4,"e":3474}],[-30,{"n":4.5,"e":3461}],[-29,{"n":4,"e":3450}],[-28,{"n":4.5,"e":3442}],[-26,{"n":4,"e":3419}],[-25,{"n":5.5,"e":3412}],[17,{"n":5,"e":4141}],[14,{"n":4.5,"e":4168}],[10,{"n":5,"e":4208}],[4,{"n":4,"e":4270}]]}],[633,{"n":"Cahill","f":"Gary","fp":"DC","r":10,"c":26,"s":{"s":60,"n":12,"a":5,"d":0.93,"Os":65,"On":13,"Oa":5,"Od":0.89,"pd":13},"p":[[7,{"n":6,"e":4242}],[-37,{"n":5,"e":3531}],[16,{"n":6,"e":4156}],[13,{"n":4.5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":3.5,"e":4202}],[10,{"n":5,"e":4208}],[9,{"n":4.5,"e":4221}],[8,{"n":6,"e":4235}],[6,{"n":5.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}]]}],[663,{"n":"van Aanholt","f":"Patrick","fp":"DL","r":14,"c":26,"s":{"g":2,"ao":1,"s":75,"n":15,"a":5,"d":1.12,"Og":4,"Oao":1,"Os":177.5,"On":34,"Oa":5.22,"Od":1.07,"pd":34},"p":[[-23,{"n":4.5,"e":3392}],[-21,{"n":7,"e":3377}],[-18,{"n":4.5,"e":3344}],[-38,{"n":6,"e":3540,"g":1}],[-36,{"n":6,"e":3520}],[-34,{"n":4,"e":3500}],[-33,{"n":6,"e":3493}],[-32,{"n":7.5,"e":3482,"g":1}],[-31,{"n":4.5,"e":3474}],[-30,{"n":4,"e":3461}],[-29,{"n":5.5,"e":3450}],[-28,{"n":4,"e":3442}],[-27,{"n":5.5,"e":3434}],[-26,{"n":6,"e":3419}],[-25,{"n":6,"e":3412}],[-24,{"n":6,"e":3405}],[-22,{"n":4.5,"e":3382}],[-20,{"n":5,"e":3360}],[-19,{"n":6,"e":3350}],[15,{"n":5,"e":4166}],[14,{"n":6,"e":4168}],[13,{"n":4.5,"e":4182}],[12,{"n":4,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":4.5,"e":4208}],[9,{"n":5,"e":4221}],[8,{"n":7,"e":4235,"g":1}],[7,{"n":5.5,"e":4242}],[6,{"n":5,"e":4251}],[5,{"n":3,"e":4262,"a":1}],[4,{"n":5,"e":4270}],[3,{"n":7,"e":4281,"g":1}],[2,{"n":3.5,"e":4295}],[1,{"n":5.5,"e":4302}]]}],[683,{"n":"Hennessey","f":"Wayne","fp":"G","r":7,"c":26,"s":{"s":12,"n":2,"a":6,"d":0.71,"Os":22,"On":4,"Oa":5.5,"Od":1.08,"pg":4},"p":[[-29,{"n":6,"e":3450}],[-22,{"n":4,"e":3382}],[10,{"n":5.5,"e":4208}],[9,{"n":6.5,"e":4221}]]}],[695,{"n":"Zaha","f":"Wilfried","fp":"A","r":22,"c":26,"s":{"g":3,"s":95.5,"n":17,"a":5.62,"d":0.96,"Sg":3,"Ss":95.5,"Sn":17,"Sa":5.62,"Sd":0.96,"Og":10,"Os":206.5,"On":37,"Oa":5.58,"Od":1.16,"pm":17,"pa":20},"p":[[-38,{"n":7,"e":3540}],[-37,{"n":6.5,"e":3530,"g":1}],[-36,{"n":4,"e":3520}],[-35,{"n":6.5,"e":3509,"g":1}],[-34,{"n":3.5,"e":3500}],[-33,{"n":6,"e":3493}],[-32,{"n":6,"e":3482}],[-31,{"n":3.5,"e":3474}],[-30,{"n":5,"e":3461}],[-29,{"n":7,"e":3450,"g":1}],[-28,{"n":4.5,"e":3442}],[-27,{"n":7.5,"e":3434,"g":2}],[-26,{"n":7.5,"e":3419,"g":1}],[-24,{"n":7,"e":3405,"g":1}],[-23,{"n":5.5,"e":3392}],[-22,{"n":5,"e":3382}],[-21,{"n":6,"e":3377}],[-20,{"n":4,"e":3360}],[-19,{"n":5,"e":3350}],[-18,{"n":4,"e":3344}],[17,{"n":7,"e":4141,"g":1}],[16,{"n":5,"e":4156}],[15,{"n":6,"e":4166}],[14,{"n":7.5,"e":4168,"g":1}],[13,{"n":6.5,"e":4182,"g":1}],[12,{"n":5,"e":4189}],[11,{"n":5.5,"e":4202}],[10,{"n":5,"e":4208}],[9,{"n":5,"e":4221}],[8,{"n":5.5,"e":4235}],[7,{"n":6.5,"e":4242}],[6,{"n":6.5,"e":4251}],[5,{"n":4,"e":4262}],[4,{"n":5.5,"e":4270}],[3,{"n":6,"e":4281}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4302}]],"a":{"m":26,"a":31,"M":35,"n":5}}],[704,{"n":"Ayew","f":"Jordan","fp":"A","r":19,"c":26,"s":{"g":4,"s":77.5,"n":16,"a":4.84,"d":1.18,"Sg":4,"Ss":72.5,"Sn":15,"Sa":4.83,"Sd":1.22,"Og":5,"Os":122.5,"On":25,"Oa":4.9,"Od":1.14,"pa":25},"p":[[-37,{"n":4,"e":3530}],[-35,{"n":5,"e":3509}],[-27,{"n":6,"e":3434}],[-25,{"n":6,"e":3412}],[-24,{"n":5,"e":3405}],[-23,{"n":4,"e":3392}],[-22,{"n":4,"e":3382}],[-21,{"n":7,"e":3377,"g":1}],[-18,{"n":4,"e":3344}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":5,"e":4166}],[14,{"n":5.5,"e":4168}],[13,{"n":3,"e":4182}],[12,{"n":4,"e":4189}],[11,{"n":3.5,"e":4202}],[10,{"n":7,"e":4208,"g":1}],[9,{"n":3.5,"e":4221}],[8,{"n":6,"e":4235,"g":1}],[7,{"n":5,"e":4242}],[6,{"n":4,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6.5,"e":4270,"g":1}],[3,{"n":6,"e":4281,"g":1}],[1,{"n":5,"e":4302}]]}],[740,{"n":"Dann","f":"Scott","fp":"DC","r":7,"c":26,"s":{"s":26.5,"n":5,"a":5.3,"d":0.45,"Ss":5,"Sn":1,"Sa":5,"Os":77.5,"On":15,"Oa":5.17,"Od":0.59,"pd":15},"p":[[-37,{"n":4.5,"e":3530}],[-36,{"n":6,"e":3520}],[-35,{"n":6,"e":3509}],[-34,{"n":4.5,"e":3500}],[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3482}],[-30,{"n":4,"e":3461}],[-29,{"n":5.5,"e":3450}],[-27,{"n":5,"e":3434}],[-24,{"n":5,"e":3405}],[17,{"n":5,"e":4141}],[14,{"n":6,"e":4168}],[9,{"n":5,"e":4221}],[2,{"n":5,"e":4295}],[1,{"n":5.5,"e":4302}]]}],[761,{"n":"McCarthy","f":"James","fp":"MD","r":6,"c":26,"s":{"s":59.5,"n":12,"a":4.96,"d":0.4,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":0.58,"Os":64.5,"On":13,"Oa":4.96,"Od":0.38,"pm":13},"p":[[-35,{"n":5,"e":3512}],[17,{"n":5.5,"e":4141}],[16,{"n":4.5,"e":4156}],[15,{"n":5.5,"e":4166}],[12,{"n":4.5,"e":4189}],[11,{"n":5,"e":4202}],[10,{"n":5,"e":4208}],[8,{"n":5.5,"e":4235}],[7,{"n":4.5,"e":4242}],[6,{"n":5,"e":4251}],[5,{"n":4.5,"e":4262}],[3,{"n":5,"e":4281}],[2,{"n":5,"e":4295}]]}],[777,{"n":"Townsend","f":"Andros","fp":"MO","r":13,"c":26,"s":{"g":1,"s":74.5,"n":14,"a":5.32,"d":0.72,"Og":5,"Os":192,"On":35,"Oa":5.49,"Od":0.84,"pm":26,"pa":9},"p":[[-38,{"n":7,"e":3540,"g":1}],[-37,{"n":8,"e":3530,"g":1}],[-36,{"n":5.5,"e":3520}],[-35,{"n":4.5,"e":3509}],[-34,{"n":5.5,"e":3500}],[-33,{"n":5.5,"e":3493}],[-32,{"n":5.5,"e":3482}],[-31,{"n":5,"e":3474}],[-30,{"n":5,"e":3461}],[-29,{"n":5,"e":3450}],[-28,{"n":5.5,"e":3442}],[-27,{"n":5,"e":3434}],[-26,{"n":6,"e":3419}],[-25,{"n":5,"e":3412}],[-24,{"n":5,"e":3405}],[-23,{"n":6,"e":3392,"g":1}],[-22,{"n":5,"e":3382}],[-21,{"n":6,"e":3377}],[-20,{"n":4.5,"e":3360}],[-19,{"n":5.5,"e":3350}],[-18,{"n":7.5,"e":3344,"g":1}],[16,{"n":5,"e":4156}],[15,{"n":5.5,"e":4166}],[14,{"n":6,"e":4168}],[13,{"n":6.5,"e":4182}],[12,{"n":4.5,"e":4189}],[10,{"n":5.5,"e":4208}],[9,{"n":5.5,"e":4221}],[8,{"n":4.5,"e":4235}],[7,{"n":6.5,"e":4242,"g":1}],[5,{"n":4,"e":4262}],[4,{"n":5,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":5.5,"e":4295}],[1,{"n":5.5,"e":4302}]],"a":{"m":16,"a":22,"M":30,"n":5}}],[808,{"n":"Wickham","f":"Connor","fp":"A","r":1,"c":26,"s":{"s":8,"n":2,"a":4,"Os":31,"On":7,"Oa":4.43,"Od":0.45,"pa":7},"p":[[-38,{"n":4.5,"e":3540}],[-23,{"n":5,"e":3392}],[-21,{"n":4,"e":3377}],[-20,{"n":4.5,"e":3360}],[-19,{"n":5,"e":3350}],[2,{"n":4,"e":4295}],[1,{"n":4,"e":4302}]]}],[828,{"n":"McArthur","f":"James","fp":"MD","r":20,"c":26,"s":{"s":88,"n":16,"a":5.5,"d":0.73,"Ss":66.5,"Sn":12,"Sa":5.54,"Sd":0.78,"Og":1,"Os":200.5,"On":37,"Oa":5.42,"Od":0.77,"pm":37},"p":[[-38,{"n":6,"e":3540}],[-37,{"n":7,"e":3530}],[-36,{"n":5,"e":3520}],[-35,{"n":7,"e":3509,"g":1}],[-34,{"n":5,"e":3500}],[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3482}],[-31,{"n":5,"e":3474}],[-30,{"n":4.5,"e":3461}],[-29,{"n":4.5,"e":3450}],[-28,{"n":5,"e":3442}],[-27,{"n":6.5,"e":3434}],[-26,{"n":5.5,"e":3419}],[-25,{"n":5.5,"e":3412}],[-24,{"n":5,"e":3405}],[-23,{"n":4.5,"e":3392}],[-22,{"n":4,"e":3382}],[-21,{"n":6,"e":3377}],[-20,{"n":5,"e":3360}],[-19,{"n":5,"e":3350}],[-18,{"n":6,"e":3344}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":6,"e":4166}],[14,{"n":6,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":6.5,"e":4208}],[9,{"n":5.5,"e":4221}],[8,{"n":6,"e":4235}],[7,{"n":7,"e":4242}],[6,{"n":5.5,"e":4251}],[4,{"n":5.5,"e":4270}],[3,{"n":5.5,"e":4281}],[2,{"n":4.5,"e":4295}],[1,{"n":6,"e":4302}]]}],[843,{"n":"Kelly","f":"Martin","fp":"DL","r":12,"c":26,"s":{"s":65.5,"n":12,"a":5.46,"d":0.81,"Ss":31.5,"Sn":6,"Sa":5.25,"Sd":0.99,"Oao":1,"Os":109,"On":21,"Oa":5.19,"Od":0.84,"pd":21},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":4.5,"e":3530,"a":1}],[-36,{"n":5.5,"e":3520}],[-35,{"n":5,"e":3509}],[-34,{"n":4,"e":3500}],[-33,{"n":6,"e":3493}],[-31,{"n":4.5,"e":3474}],[-28,{"n":3.5,"e":3442}],[-26,{"n":5.5,"e":3419}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":7,"e":4166}],[14,{"n":5.5,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":4,"e":4189}],[8,{"n":6,"e":4235}],[7,{"n":6,"e":4242}],[4,{"n":6,"e":4270}],[3,{"n":5.5,"e":4281}],[2,{"n":4.5,"e":4295}],[1,{"n":6,"e":4302}]]}],[855,{"n":"Kouyaté","f":"Cheikhou","fp":"MD","r":14,"c":26,"s":{"s":78,"n":15,"a":5.2,"d":0.94,"Ss":78,"Sn":15,"Sa":5.2,"Sd":0.94,"Os":154.5,"On":31,"Oa":4.98,"Od":0.76,"pm":31},"p":[[-37,{"n":4.5,"e":3530}],[-36,{"n":5.5,"e":3520}],[-35,{"n":5,"e":3509}],[-34,{"n":5.5,"e":3500}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3482}],[-31,{"n":5,"e":3474}],[-29,{"n":5,"e":3450}],[-28,{"n":5,"e":3442}],[-27,{"n":4.5,"e":3434}],[-24,{"n":4,"e":3405}],[-23,{"n":4,"e":3392}],[-22,{"n":5,"e":3382}],[-21,{"n":4.5,"e":3377}],[-20,{"n":4,"e":3360}],[-19,{"n":5,"e":3350}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":7,"e":4166}],[14,{"n":4.5,"e":4168}],[13,{"n":6,"e":4182}],[12,{"n":5.5,"e":4189}],[11,{"n":4,"e":4202}],[10,{"n":4.5,"e":4208}],[9,{"n":4.5,"e":4221}],[8,{"n":5,"e":4235}],[7,{"n":5.5,"e":4242}],[6,{"n":6,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":5.5,"e":4270}],[3,{"n":6.5,"e":4281}]]}],[888,{"n":"Ward","f":"Joel","fp":"DL","r":10,"c":26,"s":{"s":63.5,"n":13,"a":4.88,"d":0.71,"Og":1,"Os":87.5,"On":18,"Oa":4.86,"Od":0.61,"pd":18},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":4.5,"e":3530}],[-35,{"n":4.5,"e":3509}],[-28,{"n":5,"e":3442,"g":1}],[-27,{"n":5,"e":3434}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":5,"e":4208}],[9,{"n":4,"e":4221}],[8,{"n":5,"e":4235}],[7,{"n":6,"e":4242}],[6,{"n":4.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":5,"e":4295}],[1,{"n":5.5,"e":4302}]]}],[895,{"n":"Milivojevic","f":"Luka","fp":"MD","r":19,"c":26,"s":{"g":2,"s":81,"n":16,"a":5.06,"d":1.08,"Sg":1,"Ss":45.5,"Sn":9,"Sa":5.06,"Sd":0.85,"Og":10,"Os":200,"On":37,"Oa":5.41,"Od":1.01,"pm":37},"p":[[-38,{"n":6,"e":3540}],[-37,{"n":5.5,"e":3530}],[-36,{"n":5.5,"e":3520}],[-35,{"n":6,"e":3509}],[-34,{"n":6,"e":3500,"g":1}],[-33,{"n":6.5,"e":3493,"g":1}],[-32,{"n":6,"e":3482,"g":1}],[-31,{"n":3.5,"e":3474}],[-30,{"n":6,"e":3461,"g":1}],[-29,{"n":4.5,"e":3450}],[-28,{"n":4.5,"e":3442}],[-27,{"n":7,"e":3434,"g":1}],[-26,{"n":6,"e":3419}],[-25,{"n":6.5,"e":3412,"g":1}],[-24,{"n":5.5,"e":3405}],[-23,{"n":6,"e":3392}],[-22,{"n":5,"e":3382}],[-21,{"n":6.5,"e":3377,"g":1}],[-20,{"n":4.5,"e":3360}],[-19,{"n":5,"e":3350}],[-18,{"n":7,"e":3344,"g":1}],[17,{"n":5,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":5.5,"e":4166}],[14,{"n":5,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":4,"e":4189}],[11,{"n":4.5,"e":4202}],[10,{"n":7,"e":4208,"g":1}],[9,{"n":4.5,"e":4221}],[7,{"n":7.5,"e":4242,"g":1}],[6,{"n":5.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":4,"e":4295}],[1,{"n":4,"e":4302}]],"a":{"m":26,"a":53,"M":61,"n":6}}],[927,{"n":"Sakho","f":"Mamadou","fp":"DC","r":8,"c":26,"s":{"s":22,"n":5,"a":4.4,"d":0.65,"Os":74.5,"On":15,"Oa":4.97,"Od":0.88,"pd":15},"p":[[-27,{"n":6,"e":3434}],[-26,{"n":6,"e":3419}],[-25,{"n":6.5,"e":3412}],[-24,{"n":5,"e":3405}],[-23,{"n":4,"e":3392}],[-22,{"n":4.5,"e":3382}],[-21,{"n":6,"e":3377}],[-20,{"n":5.5,"e":3360}],[-19,{"n":4.5,"e":3350}],[-18,{"n":4.5,"e":3344}],[15,{"n":4,"e":4166}],[14,{"n":5,"e":4168}],[6,{"n":4.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":5,"e":4270}]]}],[942,{"n":"Tomkins","f":"James","fp":"DC","r":13,"c":26,"s":{"s":46,"n":9,"a":5.11,"d":1.22,"Ss":46,"Sn":9,"Sa":5.11,"Sd":1.22,"Og":1,"Os":124,"On":24,"Oa":5.17,"Od":0.89,"pd":24},"p":[[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3482}],[-31,{"n":5.5,"e":3474}],[-30,{"n":4,"e":3461}],[-29,{"n":5.5,"e":3450}],[-28,{"n":4,"e":3442}],[-27,{"n":6,"e":3434}],[-25,{"n":6,"e":3412}],[-24,{"n":5.5,"e":3405}],[-23,{"n":5.5,"e":3392,"g":1}],[-22,{"n":4,"e":3382}],[-21,{"n":5.5,"e":3377}],[-20,{"n":5.5,"e":3360}],[-19,{"n":5,"e":3350}],[-18,{"n":5.5,"e":3344}],[17,{"n":7,"e":4141}],[16,{"n":5,"e":4156}],[15,{"n":6,"e":4166}],[14,{"n":6.5,"e":4168}],[13,{"n":5.5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":3.5,"e":4202}],[10,{"n":4,"e":4208}],[9,{"n":4,"e":4221}]]}],[987,{"n":"Schlupp","f":"Jeffrey","fp":"DL","r":11,"c":26,"s":{"g":2,"s":71.5,"n":14,"a":5.11,"d":1.02,"Og":4,"Os":152,"On":29,"Oa":5.24,"Od":0.95,"pd":9,"pm":18,"pa":2},"p":[[-34,{"n":4.5,"e":3500}],[-33,{"n":5,"e":3493}],[-32,{"n":4.5,"e":3482}],[-31,{"n":4.5,"e":3474}],[-30,{"n":5.5,"e":3461}],[-29,{"n":6,"e":3450}],[-28,{"n":5.5,"e":3442}],[-27,{"n":6.5,"e":3434}],[-26,{"n":6,"e":3419}],[-25,{"n":7.5,"e":3412,"g":1}],[-24,{"n":5,"e":3405}],[-23,{"n":4.5,"e":3392}],[-22,{"n":5,"e":3382}],[-20,{"n":4.5,"e":3360}],[-18,{"n":6,"e":3344,"g":1}],[16,{"n":4,"e":4156}],[15,{"n":7,"e":4166,"g":1}],[14,{"n":6,"e":4168,"g":1}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4189}],[11,{"n":4.5,"e":4202}],[9,{"n":4.5,"e":4221}],[8,{"n":5,"e":4235}],[7,{"n":6,"e":4242}],[6,{"n":5,"e":4251}],[5,{"n":3,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":6,"e":4281}],[2,{"n":5,"e":4295}]]}],[1004,{"n":"Sako","f":"Bakary","fp":"MD","r":4,"c":26,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":4.5,"e":3530}],[-34,{"n":4.5,"e":3500}]]}],[1061,{"n":"Kaikai","f":"Sullay","fp":"MD","r":1,"c":26}],[1073,{"n":"Speroni","f":"Julian","fp":"G","r":1,"c":26,"s":{"Os":3.5,"On":1,"Oa":3.5,"pg":1},"p":[[-23,{"n":3.5,"e":3392}]]}],[1111,{"n":"Dreher","f":"Luke","fp":"MD","r":1,"c":26}],[1304,{"n":"Riedewald","f":"Jairo","fp":"MD","r":3,"c":26,"s":{"s":9.5,"n":2,"a":4.75,"d":0.35,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Os":9.5,"On":2,"Oa":4.75,"Od":0.35,"pd":1,"pm":1},"p":[[17,{"n":4.5,"e":4141}],[16,{"n":5,"e":4156}]]}],[1342,{"n":"Williams","f":"Jonathan","fp":"MD","r":1,"c":26}],[1678,{"n":"Guaita","f":"Vicente","fp":"G","r":19,"c":26,"s":{"s":86.5,"n":15,"a":5.77,"d":1.02,"Ss":42,"Sn":7,"Sa":6,"Sd":1.04,"Os":193,"On":34,"Oa":5.68,"Od":0.98,"pg":34},"p":[[-38,{"n":5,"e":3540}],[-37,{"n":6.5,"e":3530}],[-36,{"n":6.5,"e":3520}],[-35,{"n":5.5,"e":3509}],[-34,{"n":4.5,"e":3500}],[-33,{"n":7,"e":3493}],[-32,{"n":7,"e":3482}],[-31,{"n":7,"e":3474}],[-30,{"n":4.5,"e":3461}],[-28,{"n":3.5,"e":3442}],[-27,{"n":6,"e":3434}],[-26,{"n":5,"e":3419}],[-25,{"n":6,"e":3412}],[-24,{"n":5,"e":3405}],[-22,{"n":5,"e":3382}],[-21,{"n":6,"e":3377}],[-20,{"n":5.5,"e":3360}],[-19,{"n":6,"e":3350}],[-18,{"n":5,"e":3344}],[17,{"n":7.5,"e":4141}],[16,{"n":6,"e":4156}],[15,{"n":7,"e":4166}],[14,{"n":6.5,"e":4168}],[13,{"n":5,"e":4182}],[12,{"n":5,"e":4189}],[11,{"n":5,"e":4202}],[8,{"n":6,"e":4235}],[7,{"n":7,"e":4242}],[6,{"n":5.5,"e":4251}],[5,{"n":3.5,"e":4262}],[4,{"n":6,"e":4270}],[3,{"n":5,"e":4281}],[2,{"n":5.5,"e":4295}],[1,{"n":6,"e":4302}]]}],[1679,{"n":"Camarasa","f":"Víctor","fp":"MO","r":3,"c":26,"s":{"s":5,"n":1,"a":5,"Og":4,"Os":86,"On":17,"Oa":5.06,"Od":1.14,"pm":16,"pa":1},"p":[[-35,{"n":3.5,"e":3510}],[-33,{"n":4.5,"e":3492}],[-29,{"n":5,"e":3457}],[-23,{"n":3.5,"e":3394}],[-37,{"n":5,"e":3530}],[-36,{"n":4.5,"e":3521}],[-34,{"n":4,"e":3499}],[-32,{"n":6,"e":3481,"g":1}],[-31,{"n":6,"e":3469}],[-30,{"n":7,"e":3459,"g":1}],[-26,{"n":5.5,"e":3424}],[-22,{"n":4.5,"e":3380}],[-21,{"n":3.5,"e":3370}],[-20,{"n":7,"e":3362,"g":1}],[-19,{"n":6.5,"e":3350}],[-18,{"n":5,"e":3340,"g":1}],[5,{"n":5,"e":4262}]]}],[2122,{"n":"Henry","f":"Dion","fp":"G","r":1,"c":26}],[2304,{"n":"Sørloth","f":"Alexander","fp":"A","r":6,"c":26}],[2337,{"n":"Kirby","f":"Nya","fp":"MO","r":1,"c":26}],[2585,{"n":"Meyer","f":"Max","fp":"MO","r":5,"c":26,"s":{"s":24.5,"n":5,"a":4.9,"d":0.74,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":102.5,"On":20,"Oa":5.13,"Od":0.6,"pm":20},"p":[[-38,{"n":5.5,"e":3540}],[-37,{"n":5,"e":3530}],[-36,{"n":6,"e":3520}],[-35,{"n":5.5,"e":3509}],[-34,{"n":5,"e":3500}],[-32,{"n":4,"e":3482}],[-30,{"n":5,"e":3461}],[-29,{"n":5.5,"e":3450}],[-28,{"n":5,"e":3442}],[-26,{"n":5,"e":3419}],[-25,{"n":5,"e":3412}],[-23,{"n":6,"e":3392,"g":1}],[-20,{"n":5,"e":3360}],[-19,{"n":4.5,"e":3350}],[-18,{"n":6,"e":3344}],[17,{"n":5,"e":4141}],[11,{"n":4,"e":4202}],[7,{"n":5,"e":4242}],[2,{"n":4.5,"e":4295}],[1,{"n":6,"e":4302}]]}],[2845,{"n":"Gio McGregor","f":"","fp":"MD","r":1,"c":26}],[2852,{"n":"Woods","f":"Sam","fp":"DC","r":1,"c":26}],[3184,{"n":"Tupper","f":"Joe","fp":"G","r":1,"c":26}],[3354,{"n":"Lucas Perri","f":"","fp":"G","r":1,"c":26}],[3645,{"n":"Tavares","f":"Nikola","fp":"DC","r":1,"c":26}],[3736,{"n":"Henderson","f":"Stephen","fp":"G","r":1,"c":26}],[6126,{"n":"Inniss","f":"Ryan","fp":"DC","r":4,"c":26}],[24,{"n":"Sidibé","f":"Djibril","fp":"DL","r":11,"c":22,"s":{"s":44.5,"n":9,"a":4.94,"d":1.07,"Os":128.5,"On":27,"Oa":4.76,"Od":0.86,"pd":23,"pm":4},"p":[[15,{"n":3.5,"e":4167}],[14,{"n":5.5,"e":4170}],[13,{"n":4,"e":4183}],[12,{"n":6.5,"e":4193}],[11,{"n":4.5,"e":4203}],[9,{"n":6,"e":4222}],[-38,{"n":4,"e":3108}],[-36,{"n":4.5,"e":3089}],[-35,{"n":3,"e":3075}],[-34,{"n":5.5,"e":3070}],[-31,{"n":4.5,"e":3035}],[-28,{"n":5,"e":3005}],[-27,{"n":4.5,"e":2992}],[-26,{"n":5,"e":2985}],[-25,{"n":5.5,"e":2978}],[-24,{"n":5.5,"e":2965}],[-23,{"n":5,"e":2957}],[-22,{"n":3.5,"e":2943}],[-21,{"n":4,"e":2936}],[-17,{"n":4.5,"e":2895}],[-37,{"n":6,"e":3096}],[-32,{"n":4.5,"e":3046}],[-30,{"n":4.5,"e":3025}],[-29,{"n":5,"e":3016}],[16,{"n":6,"e":4151}],[10,{"n":4,"e":4209}],[8,{"n":4.5,"e":4229}]]}],[612,{"n":"Sigurdsson","f":"Gylfi","fp":"MO","r":19,"c":22,"s":{"g":1,"s":84.5,"n":16,"a":5.28,"d":0.84,"Og":8,"Os":204.5,"On":37,"Oa":5.53,"Od":1.14,"pm":35,"pa":2},"p":[[7,{"n":6,"e":4246}],[6,{"n":5,"e":4252}],[4,{"n":6,"e":4276}],[2,{"n":5.5,"e":4291}],[-28,{"n":8,"e":3439,"g":2}],[-38,{"n":6.5,"e":3546}],[-37,{"n":5,"e":3532}],[-36,{"n":4,"e":3520}],[-35,{"n":8,"e":3512,"g":1}],[-34,{"n":3.5,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":6,"e":3487}],[-31,{"n":7,"e":3471,"g":1}],[-30,{"n":4.5,"e":3466}],[-29,{"n":5,"e":3451}],[-27,{"n":5.5,"e":3433}],[-26,{"n":5,"e":3426}],[-25,{"n":5,"e":3413}],[-24,{"n":7,"e":3401}],[-23,{"n":6,"e":3395,"g":1}],[-22,{"n":4.5,"e":3383}],[-21,{"n":6,"e":3372}],[-20,{"n":5,"e":3358}],[-19,{"n":8,"e":3349,"g":1}],[-18,{"n":4.5,"e":3342,"g":1}],[16,{"n":6,"e":4151}],[15,{"n":3.5,"e":4167}],[14,{"n":5.5,"e":4170}],[13,{"n":4.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":5,"e":4203}],[10,{"n":5,"e":4209}],[9,{"n":7,"e":4222,"g":1}],[8,{"n":5.5,"e":4229}],[5,{"n":4.5,"e":4265}],[3,{"n":4.5,"e":4278}],[1,{"n":5,"e":4302}]],"a":{"m":26,"a":38,"M":53,"n":10}}],[614,{"n":"Mirallas","f":"Kevin","fp":"MD","r":18,"c":22}],[642,{"n":"Walcott","f":"Theo","fp":"A","r":10,"c":22,"s":{"s":53,"n":11,"a":4.82,"d":1.03,"Og":3,"Os":148.5,"On":31,"Oa":4.79,"Od":0.94,"pm":14,"pa":17},"p":[[-38,{"n":7,"e":3546,"g":1}],[-37,{"n":4.5,"e":3532}],[-36,{"n":4.5,"e":3520}],[-35,{"n":6.5,"e":3512,"g":1}],[-34,{"n":4.5,"e":3501}],[-33,{"n":5,"e":3490}],[-32,{"n":4.5,"e":3487}],[-31,{"n":4.5,"e":3471}],[-30,{"n":4.5,"e":3466}],[-29,{"n":4,"e":3451}],[-28,{"n":5,"e":3439}],[-27,{"n":5,"e":3433}],[-26,{"n":5,"e":3426}],[-25,{"n":4.5,"e":3413}],[-23,{"n":4,"e":3395}],[-22,{"n":4,"e":3383}],[-21,{"n":3.5,"e":3372}],[-20,{"n":4,"e":3358}],[-19,{"n":6.5,"e":3349}],[-18,{"n":4.5,"e":3342,"g":1}],[16,{"n":5.5,"e":4151}],[13,{"n":3.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[9,{"n":7,"e":4222}],[7,{"n":5,"e":4246}],[6,{"n":5,"e":4252}],[5,{"n":4.5,"e":4265}],[3,{"n":4,"e":4278}],[2,{"n":4,"e":4291}]]}],[645,{"n":"Baines","f":"Leighton","fp":"DL","r":4,"c":22,"s":{"s":10,"n":2,"a":5,"Ss":10,"Sn":2,"Sa":5,"Os":19.5,"On":4,"Oa":4.88,"Od":0.63,"pd":4},"p":[[17,{"n":5,"e":4144}],[-25,{"n":4,"e":3413}],[-24,{"n":5.5,"e":3401}],[16,{"n":5,"e":4151}]]}],[697,{"n":"Keane","f":"Michael","fp":"DC","r":10,"c":22,"s":{"g":1,"s":67,"n":15,"a":4.47,"d":1.01,"Sg":1,"Ss":19,"Sn":4,"Sa":4.75,"Sd":0.96,"Og":1,"Os":163.5,"On":34,"Oa":4.81,"Od":1.2,"pd":34},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":6,"e":3532}],[-36,{"n":5,"e":3520}],[-35,{"n":6,"e":3512}],[-32,{"n":6.5,"e":3487}],[-31,{"n":6,"e":3471}],[-30,{"n":3.5,"e":3466}],[-29,{"n":6,"e":3451}],[-28,{"n":5,"e":3439}],[-27,{"n":4.5,"e":3433}],[-26,{"n":5,"e":3426}],[-25,{"n":3.5,"e":3413}],[-24,{"n":5.5,"e":3401}],[-23,{"n":4,"e":3395}],[-22,{"n":7,"e":3383}],[-21,{"n":4,"e":3372}],[-20,{"n":5,"e":3358}],[-19,{"n":7,"e":3349}],[-18,{"n":2,"e":3342}],[17,{"n":5,"e":4144}],[16,{"n":6,"e":4151}],[15,{"n":4,"e":4167,"g":1}],[14,{"n":4,"e":4170}],[12,{"n":4.5,"e":4193}],[10,{"n":3,"e":4209}],[9,{"n":6,"e":4222}],[8,{"n":4.5,"e":4229}],[7,{"n":3.5,"e":4246}],[6,{"n":3.5,"e":4252}],[5,{"n":3,"e":4265}],[4,{"n":5.5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":5.5,"e":4291}],[1,{"n":5,"e":4302}]]}],[705,{"n":"Iwobi","f":"Alex","fp":"MO","r":12,"c":22,"s":{"g":1,"s":78.5,"n":15,"a":5.23,"d":0.8,"Sg":1,"Ss":78.5,"Sn":15,"Sa":5.23,"Sd":0.8,"Og":3,"Os":183.5,"On":36,"Oa":5.1,"Od":0.96,"pm":31,"pa":5},"p":[[-38,{"n":7,"e":3539}],[-37,{"n":5,"e":3529}],[-36,{"n":5,"e":3522}],[-35,{"n":3.5,"e":3509}],[-34,{"n":5.5,"e":3507}],[-33,{"n":5,"e":3490}],[-32,{"n":4,"e":3478}],[-31,{"n":3.5,"e":3477}],[-30,{"n":4.5,"e":3458}],[-29,{"n":6,"e":3454}],[-28,{"n":5,"e":3438}],[-27,{"n":5,"e":3429}],[-26,{"n":6,"e":3421,"g":1}],[-25,{"n":3,"e":3415}],[-24,{"n":5,"e":3399}],[-23,{"n":4.5,"e":3389}],[-22,{"n":5,"e":3387}],[-21,{"n":7,"e":3369}],[-20,{"n":4.5,"e":3363}],[-19,{"n":4.5,"e":3348}],[-18,{"n":6.5,"e":3339,"g":1}],[17,{"n":6,"e":4144}],[16,{"n":4.5,"e":4151}],[15,{"n":4.5,"e":4167}],[14,{"n":4,"e":4170}],[13,{"n":5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":4.5,"e":4203}],[10,{"n":5,"e":4209}],[9,{"n":6,"e":4222}],[8,{"n":5.5,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":4.5,"e":4252}],[5,{"n":5,"e":4265}],[4,{"n":7,"e":4276,"g":1}],[3,{"n":5.5,"e":4278}]],"a":{"m":14,"a":15,"M":21,"n":9}}],[715,{"n":"Bolasie","f":"Yannick","fp":"A","r":9,"c":22}],[779,{"n":"Stekelenburg","f":"Maarten","fp":"G","r":1,"c":22}],[833,{"n":"Schneiderlin","f":"Morgan","fp":"MD","r":10,"c":22,"s":{"s":51.5,"n":11,"a":4.68,"d":0.56,"Os":96.5,"On":19,"Oa":5.08,"Od":0.92,"pm":19},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":7,"e":3532}],[-36,{"n":4.5,"e":3520}],[-35,{"n":7,"e":3512}],[-31,{"n":5,"e":3471}],[-29,{"n":5.5,"e":3451}],[-28,{"n":6.5,"e":3439}],[-18,{"n":4.5,"e":3342}],[16,{"n":5.5,"e":4151}],[15,{"n":5,"e":4167}],[14,{"n":5,"e":4170}],[13,{"n":4.5,"e":4183}],[12,{"n":5,"e":4193}],[8,{"n":4,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":4.5,"e":4265}],[3,{"n":5.5,"e":4278}],[1,{"n":4,"e":4302}]]}],[834,{"n":"Davies","f":"Tom","fp":"MD","r":10,"c":22,"s":{"g":1,"s":55.5,"n":11,"a":5.05,"d":1.01,"Sg":1,"Ss":46,"Sn":9,"Sa":5.11,"Sd":1.11,"Og":1,"Os":97.5,"On":20,"Oa":4.88,"Od":0.92,"pm":20},"p":[[-33,{"n":5,"e":3490}],[-32,{"n":5,"e":3487}],[-31,{"n":4.5,"e":3471}],[-27,{"n":5,"e":3433}],[-26,{"n":4.5,"e":3426}],[-25,{"n":3.5,"e":3413}],[-24,{"n":6,"e":3401}],[-19,{"n":5,"e":3349}],[-18,{"n":3.5,"e":3342}],[17,{"n":5,"e":4144}],[16,{"n":5,"e":4151}],[15,{"n":3.5,"e":4167}],[14,{"n":4.5,"e":4170}],[13,{"n":4,"e":4183}],[12,{"n":7,"e":4193,"g":1}],[11,{"n":5.5,"e":4203}],[10,{"n":5,"e":4209}],[9,{"n":6.5,"e":4222}],[7,{"n":4.5,"e":4246}],[1,{"n":5,"e":4302}]]}],[844,{"n":"Holgate","f":"Mason","fp":"DC","r":11,"c":22,"s":{"s":49.5,"n":10,"a":4.95,"d":1.04,"Ss":44.5,"Sn":9,"Sa":4.94,"Sd":1.1,"Os":49.5,"On":10,"Oa":4.95,"Od":1.04,"pd":9,"pm":1},"p":[[17,{"n":6,"e":4144}],[16,{"n":6,"e":4151}],[15,{"n":3,"e":4167}],[14,{"n":4.5,"e":4170}],[13,{"n":3.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":5,"e":4203}],[10,{"n":5.5,"e":4209}],[9,{"n":5,"e":4222}],[2,{"n":5,"e":4291}]]}],[909,{"n":"Pickford","f":"Jordan","fp":"G","r":13,"c":22,"s":{"s":85,"n":17,"a":5,"d":1.2,"Ss":85,"Sn":17,"Sa":5,"Sd":1.2,"Os":196.5,"On":38,"Oa":5.17,"Od":1.18,"pg":38},"p":[[-38,{"n":4.5,"e":3546}],[-37,{"n":6,"e":3532}],[-36,{"n":5.5,"e":3520}],[-35,{"n":6.5,"e":3512}],[-34,{"n":5,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":6,"e":3487}],[-31,{"n":7,"e":3471}],[-30,{"n":3.5,"e":3466}],[-29,{"n":6,"e":3451}],[-28,{"n":5.5,"e":3439}],[-27,{"n":5,"e":3433}],[-26,{"n":5,"e":3426}],[-25,{"n":4.5,"e":3413}],[-24,{"n":6,"e":3401}],[-23,{"n":5,"e":3395}],[-22,{"n":7.5,"e":3383}],[-21,{"n":5,"e":3372}],[-20,{"n":5,"e":3358}],[-19,{"n":5,"e":3349}],[-18,{"n":2,"e":3342}],[17,{"n":6.5,"e":4144}],[16,{"n":5.5,"e":4151}],[15,{"n":2,"e":4167}],[14,{"n":5.5,"e":4170}],[13,{"n":5.5,"e":4183}],[12,{"n":5,"e":4193}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[9,{"n":7,"e":4222}],[8,{"n":5.5,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":4,"e":4265}],[4,{"n":5.5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":6,"e":4291}],[1,{"n":6,"e":4302}]]}],[930,{"n":"Coleman","f":"Séamus","fp":"DL","r":8,"c":22,"s":{"s":45.5,"n":10,"a":4.55,"d":0.8,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":130,"On":26,"Oa":5,"Od":1.2,"pd":24,"pm":2},"p":[[-37,{"n":7,"e":3532,"g":1}],[-36,{"n":5,"e":3520}],[-35,{"n":6,"e":3512}],[-34,{"n":4.5,"e":3501}],[-33,{"n":5,"e":3490}],[-32,{"n":6.5,"e":3487}],[-31,{"n":7,"e":3471}],[-29,{"n":5,"e":3451}],[-28,{"n":7,"e":3439}],[-25,{"n":3,"e":3413}],[-24,{"n":6,"e":3401}],[-23,{"n":4.5,"e":3395}],[-22,{"n":6,"e":3383}],[-20,{"n":4.5,"e":3358}],[-19,{"n":5,"e":3349}],[-18,{"n":2.5,"e":3342}],[17,{"n":5,"e":4144}],[13,{"n":5,"e":4183}],[8,{"n":3,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":5,"e":4252}],[5,{"n":3.5,"e":4265}],[4,{"n":5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":4.5,"e":4291}],[1,{"n":5,"e":4302}]]}],[958,{"n":"Delph","f":"Fabian","fp":"MD","r":6,"c":22,"s":{"s":35,"n":7,"a":5,"d":0.65,"Os":49.5,"On":10,"Oa":4.95,"Od":0.64,"pd":2,"pm":8},"p":[[-23,{"n":5,"e":3391}],[-19,{"n":4,"e":3352}],[-18,{"n":5.5,"e":3344}],[11,{"n":6,"e":4203}],[10,{"n":5,"e":4209}],[8,{"n":5,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":4.5,"e":4265}],[4,{"n":5,"e":4276}]]}],[967,{"n":"Cuco Martina","f":"","fp":"DL","r":1,"c":22}],[1028,{"n":"Niasse","f":"Oumar","fp":"A","r":4,"c":22,"s":{"s":4.5,"n":1,"a":4.5,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":63,"On":15,"Oa":4.2,"Od":0.68,"pa":15},"p":[[-36,{"n":4,"e":3521}],[-35,{"n":3.5,"e":3510}],[-34,{"n":4.5,"e":3499}],[-33,{"n":4.5,"e":3492}],[-32,{"n":4,"e":3481}],[-31,{"n":4,"e":3469}],[-30,{"n":5,"e":3459}],[-29,{"n":4,"e":3457}],[-27,{"n":3,"e":3431}],[-26,{"n":4,"e":3424}],[-25,{"n":6,"e":3410}],[-24,{"n":4,"e":3399}],[-23,{"n":4,"e":3394}],[-20,{"n":4,"e":3358}],[17,{"n":4.5,"e":4144}]]}],[1039,{"n":"Lookman","f":"Ademola","fp":"A","r":7,"c":22,"s":{"Os":47.5,"On":10,"Oa":4.75,"Od":0.63,"pm":2,"pa":8},"p":[[-38,{"n":5.5,"e":3546}],[-37,{"n":5,"e":3532}],[-36,{"n":4,"e":3520}],[-34,{"n":4,"e":3501}],[-33,{"n":4.5,"e":3490}],[-30,{"n":4.5,"e":3466}],[-28,{"n":4.5,"e":3439}],[-25,{"n":5,"e":3413}],[-23,{"n":4.5,"e":3395}],[-22,{"n":6,"e":3383}]]}],[1066,{"n":"Calvert-Lewin","f":"Dominic","fp":"A","r":14,"c":22,"s":{"g":5,"s":70.5,"n":15,"a":4.7,"d":1.22,"Sg":3,"Ss":39,"Sn":8,"Sa":4.88,"Sd":1.48,"Og":8,"Os":167.5,"On":35,"Oa":4.79,"Od":1.1,"pa":35},"p":[[-37,{"n":4.5,"e":3532}],[-36,{"n":4.5,"e":3520}],[-35,{"n":5.5,"e":3512}],[-34,{"n":3,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":5.5,"e":3487}],[-31,{"n":6,"e":3471}],[-30,{"n":6,"e":3466,"g":1}],[-29,{"n":4.5,"e":3451}],[-28,{"n":7,"e":3439,"g":1}],[-27,{"n":3.5,"e":3433}],[-26,{"n":5,"e":3426}],[-25,{"n":4.5,"e":3413}],[-24,{"n":4,"e":3401}],[-23,{"n":3.5,"e":3395}],[-22,{"n":6,"e":3383,"g":1}],[-21,{"n":4,"e":3372}],[-20,{"n":4.5,"e":3358}],[-19,{"n":5,"e":3349}],[-18,{"n":4.5,"e":3342}],[17,{"n":4,"e":4144}],[16,{"n":8,"e":4151,"g":2}],[15,{"n":4,"e":4167}],[14,{"n":3.5,"e":4170}],[13,{"n":5,"e":4183}],[12,{"n":4.5,"e":4193}],[11,{"n":4,"e":4203}],[10,{"n":6,"e":4209,"g":1}],[8,{"n":4,"e":4229}],[7,{"n":6,"e":4246,"g":1}],[5,{"n":5.5,"e":4265,"g":1}],[4,{"n":4.5,"e":4276}],[3,{"n":3.5,"e":4278}],[2,{"n":4,"e":4291}],[1,{"n":4,"e":4302}]]}],[1094,{"n":"Kenny","f":"Jonjoe","fp":"DC","r":5,"c":22,"s":{"Os":26.5,"On":6,"Oa":4.42,"Od":0.8,"pd":6},"p":[[-30,{"n":3,"e":3466}],[-27,{"n":4.5,"e":3433}],[-26,{"n":5,"e":3426}],[-25,{"n":5,"e":3413}],[-24,{"n":5,"e":3401}],[-21,{"n":4,"e":3372}]]}],[1114,{"n":"Hewelt","f":"Mateusz","fp":"G","r":1,"c":22}],[1307,{"n":"Richarlison","f":"","fp":"A","r":27,"c":22,"s":{"g":6,"s":95.5,"n":17,"a":5.62,"d":1.17,"Sg":6,"Ss":95.5,"Sn":17,"Sa":5.62,"Sd":1.17,"Og":11,"Os":193.5,"On":37,"Oa":5.23,"Od":1.22,"pm":25,"pa":12},"p":[[-37,{"n":5.5,"e":3532}],[-36,{"n":5.5,"e":3520}],[-35,{"n":7,"e":3512,"g":1}],[-34,{"n":4,"e":3501}],[-33,{"n":5,"e":3490}],[-32,{"n":6,"e":3487}],[-31,{"n":7,"e":3471,"g":1}],[-30,{"n":5.5,"e":3466,"g":1}],[-29,{"n":5,"e":3451}],[-28,{"n":4.5,"e":3439}],[-27,{"n":4.5,"e":3433}],[-26,{"n":4.5,"e":3426}],[-25,{"n":4,"e":3413}],[-24,{"n":6,"e":3401,"g":1}],[-23,{"n":3,"e":3395}],[-22,{"n":4.5,"e":3383}],[-21,{"n":4,"e":3372}],[-20,{"n":4,"e":3358}],[-19,{"n":6,"e":3349,"g":1}],[-18,{"n":2.5,"e":3342}],[17,{"n":4,"e":4144}],[16,{"n":6.5,"e":4151,"g":1}],[15,{"n":5.5,"e":4167,"g":1}],[14,{"n":6.5,"e":4170,"g":1}],[13,{"n":4,"e":4183}],[12,{"n":7.5,"e":4193,"g":1}],[11,{"n":4.5,"e":4203}],[10,{"n":5.5,"e":4209}],[9,{"n":6,"e":4222}],[8,{"n":5.5,"e":4229}],[7,{"n":5.5,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":6.5,"e":4265}],[4,{"n":8,"e":4276,"g":2}],[3,{"n":5,"e":4278}],[2,{"n":5,"e":4291}],[1,{"n":6,"e":4302}]]}],[1479,{"n":"Lössl","f":"Jonas","fp":"G","r":7,"c":22,"s":{"Os":84.5,"On":16,"Oa":5.28,"Od":1.46,"pg":16},"p":[[-36,{"n":3,"e":3523}],[-37,{"n":6,"e":3533}],[-35,{"n":6,"e":3513}],[-31,{"n":2.5,"e":3476}],[-30,{"n":5,"e":3462}],[-29,{"n":5.5,"e":3449}],[-28,{"n":6,"e":3440}],[-27,{"n":8,"e":3436}],[-25,{"n":4,"e":3411}],[-24,{"n":5.5,"e":3401}],[-23,{"n":3.5,"e":3391}],[-22,{"n":6,"e":3380}],[-21,{"n":6.5,"e":3373}],[-20,{"n":7,"e":3361}],[-19,{"n":5,"e":3354}],[-18,{"n":5,"e":3343}]]}],[1751,{"n":"André Gomes","f":"","fp":"MO","r":1,"c":22,"s":{"s":38.5,"n":8,"a":4.81,"d":0.96,"Og":1,"Os":125.5,"On":26,"Oa":4.83,"Od":0.84,"pm":26},"p":[[-38,{"n":4,"e":3546}],[-34,{"n":4,"e":3501}],[-33,{"n":5.5,"e":3490}],[-32,{"n":5.5,"e":3487}],[-31,{"n":4.5,"e":3471}],[-30,{"n":4,"e":3466}],[-29,{"n":5,"e":3451}],[-28,{"n":5,"e":3439}],[-27,{"n":4.5,"e":3433}],[-26,{"n":6,"e":3426}],[-25,{"n":6,"e":3413,"g":1}],[-24,{"n":6,"e":3401}],[-23,{"n":3.5,"e":3395}],[-22,{"n":5.5,"e":3383}],[-21,{"n":4,"e":3372}],[-20,{"n":4,"e":3358}],[-19,{"n":5,"e":3349}],[-18,{"n":5,"e":3342}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4209}],[9,{"n":5.5,"e":4222}],[8,{"n":5,"e":4229}],[4,{"n":5.5,"e":4276}],[3,{"n":3,"e":4278}],[2,{"n":5,"e":4291}],[1,{"n":6,"e":4302}]]}],[1881,{"n":"Digne","f":"Lucas","fp":"DL","r":15,"c":22,"s":{"ao":1,"s":80,"n":17,"a":4.71,"d":0.83,"Sao":1,"Ss":80,"Sn":17,"Sa":4.71,"Sd":0.83,"Og":3,"Oao":2,"Os":185,"On":37,"Oa":5,"Od":1.26,"pd":34,"pm":3},"p":[[-38,{"n":4.5,"e":3546}],[-37,{"n":6,"e":3532}],[-36,{"n":5,"e":3520}],[-35,{"n":7.5,"e":3512,"g":1}],[-34,{"n":3,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":7,"e":3487}],[-31,{"n":5.5,"e":3471}],[-30,{"n":5,"e":3466}],[-29,{"n":5.5,"e":3451}],[-28,{"n":6,"e":3439}],[-27,{"n":5,"e":3433}],[-26,{"n":5.5,"e":3426}],[-24,{"n":4.5,"e":3401}],[-23,{"n":3,"e":3395,"a":1}],[-22,{"n":7,"e":3383}],[-21,{"n":4.5,"e":3372}],[-20,{"n":4.5,"e":3358}],[-19,{"n":8,"e":3349,"g":2}],[-18,{"n":2,"e":3342}],[17,{"n":5,"e":4144}],[16,{"n":5,"e":4151}],[15,{"n":3.5,"e":4167}],[14,{"n":4.5,"e":4170}],[13,{"n":4,"e":4183}],[12,{"n":5,"e":4193}],[11,{"n":6,"e":4203}],[10,{"n":4.5,"e":4209,"a":1}],[9,{"n":6,"e":4222}],[8,{"n":5,"e":4229}],[7,{"n":4,"e":4246}],[6,{"n":4,"e":4252}],[5,{"n":3.5,"e":4265}],[4,{"n":5.5,"e":4276}],[3,{"n":4,"e":4278}],[2,{"n":6,"e":4291}],[1,{"n":4.5,"e":4302}]]}],[2026,{"n":"Vlasic","f":"Nikola","fp":"A","r":7,"c":22}],[2118,{"n":"Baningime","f":"Beni","fp":"MD","r":1,"c":22}],[2197,{"n":"Tosun","f":"Cenk","fp":"A","r":7,"c":22,"s":{"g":1,"s":18.5,"n":4,"a":4.63,"d":0.95,"Og":2,"Os":74.5,"On":16,"Oa":4.66,"Od":0.79,"pa":16},"p":[[-38,{"n":7,"e":3546,"g":1}],[-36,{"n":4.5,"e":3520}],[-34,{"n":4.5,"e":3501}],[-32,{"n":4.5,"e":3487}],[-29,{"n":4.5,"e":3451}],[-27,{"n":4.5,"e":3433}],[-26,{"n":4.5,"e":3426}],[-25,{"n":4,"e":3413}],[-24,{"n":4.5,"e":3401}],[-23,{"n":4,"e":3395}],[-21,{"n":5,"e":3372}],[-18,{"n":4.5,"e":3342}],[13,{"n":4.5,"e":4183}],[12,{"n":4,"e":4193}],[11,{"n":6,"e":4203,"g":1}],[6,{"n":4,"e":4252}]]}],[2241,{"n":"Mina","f":"Yerry","fp":"DC","r":12,"c":22,"s":{"ao":1,"s":72,"n":15,"a":4.8,"d":1.05,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Oao":1,"Os":102,"On":21,"Oa":4.86,"Od":1.1,"pd":21},"p":[[-38,{"n":4,"e":3546}],[-31,{"n":6,"e":3471}],[-30,{"n":4.5,"e":3466}],[-22,{"n":5,"e":3383}],[-20,{"n":3.5,"e":3358}],[-19,{"n":7,"e":3349,"g":1}],[17,{"n":5.5,"e":4144}],[15,{"n":3,"e":4167}],[14,{"n":5,"e":4170}],[13,{"n":3.5,"e":4183}],[12,{"n":6,"e":4193}],[11,{"n":5,"e":4203}],[9,{"n":6,"e":4222}],[8,{"n":5,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":3,"e":4252,"a":1}],[5,{"n":4,"e":4265}],[4,{"n":5,"e":4276}],[3,{"n":4.5,"e":4278}],[2,{"n":6,"e":4291}],[1,{"n":6,"e":4302}]]}],[2569,{"n":"Dowell","f":"Kieran","fp":"MD","r":1,"c":22}],[2583,{"n":"Browning","f":"Tyias","fp":"DC","r":1,"c":22}],[2593,{"n":"Pennington","f":"Matthew","fp":"DC","r":5,"c":22}],[2760,{"n":"Williams","f":"Joe","fp":"MD","r":1,"c":22}],[2764,{"n":"Bernard","f":"","fp":"MO","r":10,"c":22,"s":{"g":2,"s":55.5,"n":11,"a":5.05,"d":1.17,"Ss":14,"Sn":3,"Sa":4.67,"Sd":0.29,"Og":3,"Os":157.5,"On":31,"Oa":5.08,"Od":1.11,"pm":25,"pa":6},"p":[[-38,{"n":4,"e":3546}],[-37,{"n":5,"e":3532}],[-36,{"n":5,"e":3520}],[-35,{"n":7,"e":3512}],[-34,{"n":4,"e":3501}],[-33,{"n":6,"e":3490}],[-32,{"n":7,"e":3487,"g":1}],[-31,{"n":5.5,"e":3471}],[-30,{"n":3.5,"e":3466}],[-29,{"n":4,"e":3451}],[-28,{"n":4.5,"e":3439}],[-27,{"n":4,"e":3433}],[-26,{"n":5,"e":3426}],[-24,{"n":6,"e":3401}],[-23,{"n":4.5,"e":3395}],[-22,{"n":5,"e":3383}],[-21,{"n":4.5,"e":3372}],[-20,{"n":5,"e":3358}],[-19,{"n":7.5,"e":3349}],[-18,{"n":5,"e":3342}],[17,{"n":4.5,"e":4144}],[16,{"n":4.5,"e":4151}],[15,{"n":5,"e":4167}],[10,{"n":5,"e":4209}],[9,{"n":7.5,"e":4222,"g":1}],[6,{"n":3.5,"e":4252}],[5,{"n":4.5,"e":4265}],[4,{"n":4.5,"e":4276}],[3,{"n":4.5,"e":4278}],[2,{"n":7,"e":4291,"g":1}],[1,{"n":5,"e":4302}]],"a":{"m":11,"a":18,"M":19,"n":6}}],[2851,{"n":"João Virgínia","f":"","fp":"G","r":1,"c":22}],[3685,{"n":"Tarashaj","f":"Shani","fp":"A","r":3,"c":22}],[4293,{"n":"Kean","f":"Moise","fp":"A","r":7,"c":22,"s":{"s":53,"n":12,"a":4.42,"d":0.42,"Ss":3.5,"Sn":1,"Sa":3.5,"Os":53,"On":12,"Oa":4.42,"Od":0.42,"pa":12},"p":[[17,{"n":3.5,"e":4144}],[15,{"n":4,"e":4167}],[14,{"n":4.5,"e":4170}],[9,{"n":4.5,"e":4222}],[8,{"n":4,"e":4229}],[7,{"n":4.5,"e":4246}],[6,{"n":4.5,"e":4252}],[5,{"n":4.5,"e":4265}],[4,{"n":5,"e":4276}],[3,{"n":5,"e":4278}],[2,{"n":4.5,"e":4291}],[1,{"n":4.5,"e":4302}]],"a":{"m":15,"a":26,"M":50,"n":5}}],[5998,{"n":"Gbamin","f":"Jean-Philippe","fp":"MD","r":5,"c":22,"s":{"s":10,"n":2,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[2,{"n":5,"e":4291}],[1,{"n":5,"e":4302}]]}],[148,{"n":"Ricardo Pereira","f":"","fp":"DL","r":25,"c":29,"s":{"g":2,"s":92.5,"n":17,"a":5.44,"d":0.97,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":3,"Os":207,"On":38,"Oa":5.45,"Od":1.04,"pd":35,"pm":2,"pa":1},"p":[[17,{"n":4.5,"e":4142}],[15,{"n":7,"e":4160}],[10,{"n":6,"e":4215}],[8,{"n":5,"e":4230}],[7,{"n":6.5,"e":4245,"g":1}],[6,{"n":7,"e":4249,"g":1}],[5,{"n":4,"e":4260}],[3,{"n":4,"e":4282}],[1,{"n":5,"e":4305}],[-37,{"n":6,"e":3534}],[-35,{"n":4.5,"e":3516}],[-34,{"n":4.5,"e":3502}],[-29,{"n":3.5,"e":3455}],[-26,{"n":5,"e":3425}],[-25,{"n":4.5,"e":3414}],[-24,{"n":5,"e":3406}],[-23,{"n":5,"e":3397}],[-38,{"n":5,"e":3542}],[-36,{"n":7,"e":3522}],[-33,{"n":7,"e":3491}],[-32,{"n":6.5,"e":3484}],[-31,{"n":5.5,"e":3470}],[-30,{"n":5.5,"e":3463}],[-28,{"n":5,"e":3441}],[-27,{"n":3.5,"e":3434}],[-22,{"n":5.5,"e":3384}],[-21,{"n":7,"e":3372}],[-20,{"n":5,"e":3362}],[-19,{"n":7,"e":3352,"g":1}],[-18,{"n":7,"e":3341}],[16,{"n":5,"e":4148}],[14,{"n":5,"e":4170}],[13,{"n":6.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":6,"e":4202}],[9,{"n":5.5,"e":4223}],[4,{"n":4.5,"e":4271}],[2,{"n":5,"e":4296}]]}],[610,{"n":"Vardy","f":"Jamie","fp":"A","r":50,"c":29,"s":{"g":16,"s":103.5,"n":17,"a":6.09,"d":1.63,"Sg":16,"Ss":103.5,"Sn":17,"Sa":6.09,"Sd":1.63,"Og":29,"Os":219,"On":38,"Oa":5.76,"Od":1.53,"pa":38},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":4,"e":3534}],[-36,{"n":8,"e":3522,"g":2}],[-35,{"n":6.5,"e":3516,"g":1}],[-34,{"n":3.5,"e":3502}],[-33,{"n":7.5,"e":3491,"g":2}],[-32,{"n":6.5,"e":3484,"g":1}],[-31,{"n":6,"e":3470}],[-30,{"n":8,"e":3463,"g":2}],[-29,{"n":6,"e":3455,"g":1}],[-28,{"n":6,"e":3441,"g":1}],[-27,{"n":4,"e":3434}],[-26,{"n":5.5,"e":3425,"g":1}],[-25,{"n":4,"e":3414}],[-24,{"n":4.5,"e":3406}],[-23,{"n":5,"e":3397}],[-22,{"n":3.5,"e":3384}],[-21,{"n":6,"e":3372,"g":1}],[-20,{"n":3.5,"e":3362}],[-19,{"n":6,"e":3352}],[-18,{"n":6.5,"e":3341,"g":1}],[17,{"n":6,"e":4142}],[16,{"n":8,"e":4148,"g":2}],[15,{"n":5.5,"e":4160,"g":1}],[14,{"n":6,"e":4170,"g":1}],[13,{"n":7,"e":4181,"g":1}],[12,{"n":7.5,"e":4196,"g":1}],[11,{"n":6.5,"e":4202,"g":1}],[10,{"n":9,"e":4215,"g":3}],[9,{"n":6,"e":4223,"g":1}],[8,{"n":3.5,"e":4230}],[7,{"n":7.5,"e":4245,"g":2}],[6,{"n":5,"e":4249}],[5,{"n":4,"e":4260}],[4,{"n":8,"e":4271,"g":2}],[3,{"n":6,"e":4282,"g":1}],[2,{"n":3.5,"e":4296}],[1,{"n":4.5,"e":4305}]],"a":{"m":35,"a":51,"M":91,"n":12}}],[660,{"n":"Okazaki","f":"Shinji","fp":"A","r":3,"c":29,"s":{"Os":44,"On":10,"Oa":4.4,"Od":0.21,"pa":10},"p":[[-38,{"n":4.5,"e":3542}],[-33,{"n":4,"e":3491}],[-30,{"n":4.5,"e":3463}],[-28,{"n":4,"e":3441}],[-27,{"n":4.5,"e":3434}],[-26,{"n":4.5,"e":3425}],[-25,{"n":4.5,"e":3414}],[-24,{"n":4.5,"e":3406}],[-20,{"n":4.5,"e":3362}],[-19,{"n":4.5,"e":3352}]]}],[689,{"n":"Schmeichel","f":"Kasper","fp":"G","r":24,"c":29,"s":{"s":99,"n":17,"a":5.82,"d":0.71,"Ss":99,"Sn":17,"Sa":5.82,"Sd":0.71,"Os":212,"On":38,"Oa":5.58,"Od":0.9,"pg":38},"p":[[-38,{"n":6.5,"e":3542}],[-37,{"n":6,"e":3534}],[-36,{"n":6,"e":3522}],[-35,{"n":4.5,"e":3516}],[-34,{"n":6,"e":3502}],[-33,{"n":6,"e":3491}],[-32,{"n":6,"e":3484}],[-31,{"n":6,"e":3470}],[-30,{"n":5.5,"e":3463}],[-29,{"n":5,"e":3455}],[-28,{"n":5,"e":3441}],[-27,{"n":2.5,"e":3434}],[-26,{"n":4,"e":3425}],[-25,{"n":5.5,"e":3414}],[-24,{"n":5.5,"e":3406}],[-23,{"n":4,"e":3397}],[-22,{"n":5,"e":3384}],[-21,{"n":6,"e":3372}],[-20,{"n":5,"e":3362}],[-19,{"n":6,"e":3352}],[-18,{"n":7,"e":3341}],[17,{"n":5,"e":4142}],[16,{"n":5,"e":4148}],[15,{"n":5.5,"e":4160}],[14,{"n":5.5,"e":4170}],[13,{"n":6,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":6,"e":4202}],[10,{"n":7,"e":4215}],[9,{"n":6,"e":4223}],[8,{"n":7.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":6,"e":4249}],[5,{"n":6,"e":4260}],[4,{"n":4.5,"e":4271}],[3,{"n":5.5,"e":4282}],[2,{"n":6,"e":4296}],[1,{"n":6,"e":4305}]],"a":{"m":22,"a":25,"M":28,"n":7}}],[701,{"n":"Morgan","f":"Wes","fp":"DC","r":5,"c":29,"s":{"s":20,"n":4,"a":5,"d":0.41,"Og":3,"Os":72.5,"On":13,"Oa":5.58,"Od":1,"pd":13},"p":[[-34,{"n":5,"e":3502}],[-33,{"n":6,"e":3491}],[-32,{"n":7.5,"e":3484,"g":1}],[-31,{"n":7.5,"e":3470,"g":1}],[-29,{"n":5,"e":3455}],[-23,{"n":4.5,"e":3397,"g":1}],[-22,{"n":5,"e":3384}],[-19,{"n":6,"e":3352}],[-18,{"n":6,"e":3341}],[13,{"n":5.5,"e":4181}],[11,{"n":4.5,"e":4202}],[9,{"n":5,"e":4223}],[3,{"n":5,"e":4282}]]}],[734,{"n":"Albrighton","f":"Marc","fp":"MO","r":7,"c":29,"s":{"s":42.5,"n":8,"a":5.31,"d":0.53,"Og":1,"Os":101,"On":19,"Oa":5.32,"Od":0.8,"pm":15,"pa":4},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":6.5,"e":3522}],[-35,{"n":4.5,"e":3516}],[-34,{"n":5.5,"e":3502}],[-24,{"n":6,"e":3406}],[-22,{"n":4,"e":3384}],[-21,{"n":5,"e":3372}],[-20,{"n":4,"e":3362}],[-19,{"n":7,"e":3352,"g":1}],[-18,{"n":6,"e":3341}],[16,{"n":5.5,"e":4148}],[14,{"n":5,"e":4170}],[10,{"n":5.5,"e":4215}],[8,{"n":5,"e":4230}],[7,{"n":6.5,"e":4245}],[4,{"n":5,"e":4271}],[2,{"n":5,"e":4296}],[1,{"n":5,"e":4305}]]}],[735,{"n":"Evans","f":"Jonny","fp":"DC","r":24,"c":29,"s":{"g":1,"s":100.5,"n":17,"a":5.91,"d":0.71,"Sg":1,"Ss":100.5,"Sn":17,"Sa":5.91,"Sd":0.71,"Og":2,"Os":181,"On":32,"Oa":5.66,"Od":0.87,"pd":32},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3534}],[-36,{"n":7,"e":3522}],[-35,{"n":4.5,"e":3516}],[-32,{"n":6,"e":3484}],[-31,{"n":7,"e":3470}],[-30,{"n":5.5,"e":3463}],[-29,{"n":4,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":4.5,"e":3434,"g":1}],[-26,{"n":4,"e":3425}],[-25,{"n":5,"e":3414}],[-24,{"n":5.5,"e":3406}],[-23,{"n":4.5,"e":3397}],[-21,{"n":6,"e":3372}],[17,{"n":5,"e":4142}],[16,{"n":7.5,"e":4148,"g":1}],[15,{"n":7,"e":4160}],[14,{"n":5.5,"e":4170}],[13,{"n":5.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":6.5,"e":4202}],[10,{"n":6,"e":4215}],[9,{"n":5.5,"e":4223}],[8,{"n":5.5,"e":4230}],[7,{"n":7,"e":4245}],[6,{"n":5.5,"e":4249}],[5,{"n":5.5,"e":4260}],[4,{"n":6,"e":4271}],[3,{"n":5.5,"e":4282}],[2,{"n":5,"e":4296}],[1,{"n":6,"e":4305}]],"a":{"m":20,"a":22,"M":26,"n":6}}],[756,{"n":"Fuchs","f":"Christian","fp":"DL","r":5,"c":29,"s":{"s":21,"n":4,"a":5.25,"d":0.65,"Os":30,"On":6,"Oa":5,"Od":0.71,"pd":6},"p":[[-31,{"n":5,"e":3470}],[-27,{"n":4,"e":3434}],[15,{"n":6,"e":4160}],[4,{"n":5.5,"e":4271}],[3,{"n":4.5,"e":4282}],[2,{"n":5,"e":4296}]]}],[785,{"n":"King","f":"Andy","fp":"MD","r":1,"c":29}],[798,{"n":"Jakupovic","f":"Eldin","fp":"G","r":1,"c":29}],[838,{"n":"Iheanacho","f":"Kelechi","fp":"A","r":9,"c":29,"s":{"g":2,"s":17.5,"n":3,"a":5.83,"d":2.08,"Sg":1,"Ss":11,"Sn":2,"Sa":5.5,"Sd":2.83,"Og":2,"Os":78,"On":17,"Oa":4.59,"Od":0.97,"pa":17},"p":[[-37,{"n":4,"e":3534}],[-35,{"n":4.5,"e":3516}],[-34,{"n":4.5,"e":3502}],[-33,{"n":4.5,"e":3491}],[-32,{"n":4.5,"e":3484}],[-29,{"n":4.5,"e":3455}],[-28,{"n":4,"e":3441}],[-27,{"n":4.5,"e":3434}],[-26,{"n":4,"e":3425}],[-25,{"n":4,"e":3414}],[-24,{"n":4.5,"e":3406}],[-23,{"n":4.5,"e":3397}],[-20,{"n":4,"e":3362}],[-18,{"n":4.5,"e":3341}],[17,{"n":3.5,"e":4142}],[16,{"n":7.5,"e":4148,"g":1}],[14,{"n":6.5,"e":4170,"g":1}]]}],[851,{"n":"Mendy","f":"Nampalys","fp":"MD","r":3,"c":29,"s":{"s":5,"n":1,"a":5,"Os":86.5,"On":17,"Oa":5.09,"Od":0.96,"pm":17},"p":[[-36,{"n":5,"e":3522}],[-35,{"n":5,"e":3516}],[-34,{"n":5.5,"e":3502}],[-32,{"n":5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":5,"e":3463}],[-29,{"n":5,"e":3455}],[-28,{"n":5,"e":3441}],[-25,{"n":5,"e":3414}],[-24,{"n":6,"e":3406}],[-23,{"n":4,"e":3397}],[-22,{"n":2.5,"e":3384}],[-21,{"n":7,"e":3372}],[-20,{"n":4.5,"e":3362}],[-19,{"n":6,"e":3352}],[-18,{"n":6,"e":3341}],[3,{"n":5,"e":4282}]]}],[858,{"n":"Simpson","f":"Danny","fp":"DC","r":4,"c":29,"s":{"Os":19.5,"On":4,"Oa":4.88,"Od":1.44,"pd":4},"p":[[-38,{"n":5,"e":3542}],[-23,{"n":3,"e":3397}],[-21,{"n":6.5,"e":3372}],[-19,{"n":5,"e":3352}]]}],[864,{"n":"Gray","f":"Demarai","fp":"MO","r":8,"c":29,"s":{"s":53.5,"n":10,"a":5.35,"d":0.34,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":2,"Os":151,"On":30,"Oa":5.03,"Od":0.73,"pm":28,"pa":2},"p":[[-37,{"n":5,"e":3534}],[-36,{"n":5,"e":3522}],[-35,{"n":5,"e":3516}],[-34,{"n":4,"e":3502}],[-33,{"n":5.5,"e":3491}],[-32,{"n":5.5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":3.5,"e":3463}],[-29,{"n":5,"e":3455}],[-28,{"n":7,"e":3441,"g":1}],[-27,{"n":4.5,"e":3434}],[-26,{"n":3.5,"e":3425}],[-25,{"n":4.5,"e":3414}],[-24,{"n":5.5,"e":3406}],[-23,{"n":6,"e":3397,"g":1}],[-22,{"n":5,"e":3384}],[-21,{"n":5,"e":3372}],[-20,{"n":4,"e":3362}],[-19,{"n":4.5,"e":3352}],[-18,{"n":4.5,"e":3341}],[17,{"n":5.5,"e":4142}],[13,{"n":5.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":5.5,"e":4202}],[10,{"n":5,"e":4215}],[9,{"n":5,"e":4223}],[7,{"n":5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5.5,"e":4260}],[4,{"n":5.5,"e":4271}]]}],[880,{"n":"Amartey","f":"Daniel","fp":"MD","r":1,"c":29}],[1015,{"n":"Wilfred Ndidi","f":"","fp":"MD","r":27,"c":29,"s":{"g":2,"s":101,"n":16,"a":6.31,"d":0.7,"Sg":1,"Ss":89,"Sn":14,"Sa":6.36,"Sd":0.74,"Og":3,"Os":216.5,"On":37,"Oa":5.85,"Od":0.99,"pm":37},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":7,"e":3534}],[-36,{"n":5.5,"e":3522}],[-35,{"n":5.5,"e":3516}],[-34,{"n":3.5,"e":3502}],[-33,{"n":6,"e":3491}],[-32,{"n":8,"e":3484}],[-31,{"n":5.5,"e":3470}],[-30,{"n":6.5,"e":3463}],[-29,{"n":6,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":4,"e":3434}],[-26,{"n":5.5,"e":3425}],[-25,{"n":5,"e":3414}],[-24,{"n":5.5,"e":3406}],[-23,{"n":4,"e":3397}],[-22,{"n":6,"e":3384,"g":1}],[-21,{"n":5,"e":3372}],[-20,{"n":4.5,"e":3362}],[-19,{"n":6.5,"e":3352}],[-18,{"n":5,"e":3341}],[17,{"n":6,"e":4142}],[16,{"n":6,"e":4148}],[15,{"n":5.5,"e":4160}],[14,{"n":6.5,"e":4170}],[13,{"n":6,"e":4181}],[12,{"n":7,"e":4196}],[11,{"n":7,"e":4202}],[10,{"n":7.5,"e":4215}],[9,{"n":5.5,"e":4223}],[8,{"n":6,"e":4230}],[7,{"n":8,"e":4245,"g":1}],[6,{"n":6,"e":4249}],[5,{"n":6,"e":4260}],[4,{"n":6,"e":4271}],[2,{"n":6,"e":4296,"g":1}],[1,{"n":6,"e":4305}]]}],[1041,{"n":"Kapustka","f":"Bartosz","fp":"MD","r":3,"c":29}],[1053,{"n":"Benalouane","f":"Yohan","fp":"DC","r":1,"c":29}],[1057,{"n":"Chilwell","f":"Ben","fp":"DL","r":19,"c":29,"s":{"g":1,"s":77,"n":14,"a":5.5,"d":1.06,"Ss":10,"Sn":2,"Sa":5,"Og":1,"Os":176,"On":34,"Oa":5.18,"Od":0.98,"pd":33,"pm":1},"p":[[-38,{"n":6,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":6,"e":3522}],[-35,{"n":5.5,"e":3516}],[-34,{"n":4.5,"e":3502}],[-33,{"n":5.5,"e":3491}],[-32,{"n":5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":5,"e":3463}],[-29,{"n":3.5,"e":3455}],[-28,{"n":5,"e":3441}],[-26,{"n":4,"e":3425}],[-25,{"n":5,"e":3414}],[-24,{"n":7,"e":3406}],[-23,{"n":3,"e":3397}],[-22,{"n":4.5,"e":3384}],[-21,{"n":5,"e":3372}],[-20,{"n":4.5,"e":3362}],[-19,{"n":4.5,"e":3352}],[-18,{"n":5.5,"e":3341}],[17,{"n":5,"e":4142}],[16,{"n":5,"e":4148}],[14,{"n":5,"e":4170}],[13,{"n":7,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":5.5,"e":4202}],[10,{"n":8,"e":4215,"g":1}],[9,{"n":4.5,"e":4223}],[8,{"n":4,"e":4230}],[7,{"n":6.5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4260}],[4,{"n":5.5,"e":4271}],[1,{"n":5,"e":4305}]]}],[1160,{"n":"Tielemans","f":"Youri","fp":"MO","r":24,"c":29,"s":{"g":3,"s":97.5,"n":17,"a":5.74,"d":0.97,"Sg":3,"Ss":97.5,"Sn":17,"Sa":5.74,"Sd":0.97,"Og":7,"Os":197.5,"On":35,"Oa":5.64,"Od":0.98,"pm":35},"p":[[-20,{"n":7,"e":2927,"g":1}],[-19,{"n":5,"e":2915}],[-38,{"n":5.5,"e":3542}],[-37,{"n":4.5,"e":3534}],[-36,{"n":7,"e":3522,"g":1}],[-35,{"n":5.5,"e":3516}],[-34,{"n":5.5,"e":3502}],[-33,{"n":7,"e":3491,"g":1}],[-32,{"n":7.5,"e":3484}],[-31,{"n":5,"e":3470}],[-30,{"n":6,"e":3463,"g":1}],[-29,{"n":6,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":4,"e":3434}],[-26,{"n":5,"e":3425}],[-22,{"n":4.5,"e":2943}],[-21,{"n":5,"e":2936}],[-17,{"n":4.5,"e":2895}],[17,{"n":5.5,"e":4142}],[16,{"n":5.5,"e":4148}],[15,{"n":4.5,"e":4160}],[14,{"n":4.5,"e":4170}],[13,{"n":6,"e":4181}],[12,{"n":7,"e":4196}],[11,{"n":6,"e":4202}],[10,{"n":8,"e":4215,"g":1}],[9,{"n":5.5,"e":4223,"g":1}],[8,{"n":4.5,"e":4230}],[7,{"n":6.5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5.5,"e":4260}],[4,{"n":7,"e":4271,"g":1}],[3,{"n":5.5,"e":4282}],[2,{"n":5,"e":4296}],[1,{"n":6,"e":4305}]],"a":{"m":23,"a":28,"M":35,"n":8}}],[1368,{"n":"Knight","f":"Josh","fp":"DC","r":1,"c":29}],[1371,{"n":"James","f":"Matty","fp":"MD","r":1,"c":29}],[1383,{"n":"Ward","f":"Danny","fp":"G","r":7,"c":29}],[2067,{"n":"Choudhury","f":"Hamza","fp":"MD","r":5,"c":29,"s":{"s":45.5,"n":9,"a":5.06,"d":0.53,"Os":94.5,"On":18,"Oa":5.25,"Od":0.69,"pm":18},"p":[[-38,{"n":5.5,"e":3542}],[-37,{"n":6,"e":3534}],[-36,{"n":7,"e":3522}],[-33,{"n":5,"e":3491}],[-24,{"n":5,"e":3406}],[-22,{"n":4.5,"e":3384}],[-21,{"n":6,"e":3372}],[-19,{"n":4.5,"e":3352}],[-18,{"n":5.5,"e":3341}],[15,{"n":4.5,"e":4160}],[8,{"n":5,"e":4230}],[7,{"n":5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":4.5,"e":4260}],[4,{"n":5.5,"e":4271}],[3,{"n":6,"e":4282}],[2,{"n":4.5,"e":4296}],[1,{"n":5.5,"e":4305}]]}],[2132,{"n":"Ayoze Pérez","f":"","fp":"A","r":15,"c":29,"s":{"g":4,"s":76,"n":14,"a":5.43,"d":1.22,"Og":14,"Os":184.5,"On":34,"Oa":5.43,"Od":1.43,"pm":29,"pa":5},"p":[[-37,{"n":3.5,"e":3535}],[-35,{"n":8,"e":3515,"g":3}],[-29,{"n":3,"e":3456}],[-26,{"n":5,"e":3427}],[-25,{"n":5,"e":3416}],[-24,{"n":5,"e":3404}],[-21,{"n":4,"e":3375}],[-20,{"n":4,"e":3367}],[-38,{"n":7.5,"e":3541,"g":1}],[-36,{"n":6,"e":3518,"g":1}],[-34,{"n":7,"e":3502,"g":1}],[-33,{"n":5.5,"e":3493}],[-32,{"n":4,"e":3478}],[-31,{"n":5,"e":3468}],[-30,{"n":8.5,"e":3466,"g":2}],[-28,{"n":5,"e":3444}],[-27,{"n":7,"e":3436,"g":1}],[-23,{"n":7,"e":3394,"g":1}],[-22,{"n":4,"e":3381}],[-18,{"n":4.5,"e":3345}],[15,{"n":4,"e":4160}],[14,{"n":5,"e":4170}],[13,{"n":7,"e":4181,"g":1}],[12,{"n":5,"e":4196}],[11,{"n":5,"e":4202}],[10,{"n":9,"e":4215,"g":3}],[9,{"n":5,"e":4223}],[8,{"n":5.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4260}],[3,{"n":4.5,"e":4282}],[2,{"n":5.5,"e":4296}],[1,{"n":5,"e":4305}]],"a":{"m":16,"a":29,"M":42,"n":7}}],[2207,{"n":"Barnes","f":"Harvey","fp":"MO","r":13,"c":29,"s":{"g":1,"s":87.5,"n":16,"a":5.47,"d":1.04,"Sg":1,"Ss":82.5,"Sn":15,"Sa":5.5,"Sd":1.07,"Og":2,"Os":164,"On":31,"Oa":5.29,"Od":0.92,"pm":28,"pa":3},"p":[[-38,{"n":5,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":5,"e":3522}],[-35,{"n":7,"e":3516,"g":1}],[-34,{"n":4.5,"e":3502}],[-33,{"n":4.5,"e":3491}],[-32,{"n":5,"e":3484}],[-31,{"n":5.5,"e":3470}],[-30,{"n":6,"e":3463}],[-29,{"n":4,"e":3455}],[-28,{"n":6,"e":3441}],[-27,{"n":5,"e":3434}],[-26,{"n":4.5,"e":3425}],[-25,{"n":5,"e":3414}],[-23,{"n":4.5,"e":3397}],[17,{"n":4.5,"e":4142}],[16,{"n":4.5,"e":4148}],[15,{"n":5.5,"e":4160}],[14,{"n":5,"e":4170}],[13,{"n":6.5,"e":4181}],[12,{"n":5.5,"e":4196}],[11,{"n":5.5,"e":4202}],[10,{"n":8,"e":4215}],[9,{"n":6.5,"e":4223}],[8,{"n":3.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":5.5,"e":4249}],[5,{"n":5,"e":4260}],[4,{"n":5,"e":4271}],[3,{"n":6.5,"e":4282,"g":1}],[1,{"n":5,"e":4305}]]}],[2567,{"n":"Maddison","f":"James","fp":"MO","r":35,"c":29,"s":{"g":5,"s":99.5,"n":16,"a":6.22,"d":1.17,"Sg":4,"Ss":64.5,"Sn":10,"Sa":6.45,"Sd":1.23,"Og":7,"Os":209.5,"On":36,"Oa":5.82,"Od":1.12,"pm":31,"pa":5},"p":[[-38,{"n":4.5,"e":3542}],[-37,{"n":5,"e":3534}],[-36,{"n":7,"e":3522}],[-35,{"n":5,"e":3516}],[-34,{"n":4,"e":3502}],[-33,{"n":7.5,"e":3491,"g":1}],[-32,{"n":5.5,"e":3484}],[-31,{"n":7.5,"e":3470,"g":1}],[-30,{"n":6,"e":3463}],[-29,{"n":5,"e":3455}],[-28,{"n":5.5,"e":3441}],[-27,{"n":5.5,"e":3434}],[-26,{"n":5.5,"e":3425}],[-25,{"n":5.5,"e":3414}],[-24,{"n":4,"e":3406}],[-23,{"n":5.5,"e":3397}],[-22,{"n":6,"e":3384}],[-20,{"n":4.5,"e":3362}],[-19,{"n":5,"e":3352}],[-18,{"n":6,"e":3341}],[17,{"n":5.5,"e":4142}],[16,{"n":7.5,"e":4148}],[15,{"n":6,"e":4160,"g":1}],[14,{"n":5,"e":4170}],[13,{"n":7,"e":4181}],[12,{"n":7,"e":4196,"g":1}],[11,{"n":8,"e":4202}],[10,{"n":8,"e":4215,"g":1}],[9,{"n":4.5,"e":4223}],[8,{"n":6,"e":4230,"g":1}],[6,{"n":7,"e":4249,"g":1}],[5,{"n":5,"e":4260}],[4,{"n":4.5,"e":4271}],[3,{"n":7,"e":4282}],[2,{"n":5.5,"e":4296}],[1,{"n":6,"e":4305}]]}],[2572,{"n":"Elder","f":"Callum","fp":"DC","r":1,"c":29}],[2754,{"n":"Söyüncü","f":"Çaglar","fp":"DC","r":22,"c":29,"s":{"g":1,"s":97.5,"n":17,"a":5.74,"d":0.81,"Sg":1,"Ss":97.5,"Sn":17,"Sa":5.74,"Sd":0.81,"Og":1,"Os":107,"On":19,"Oa":5.63,"Od":0.83,"pd":19},"p":[[-33,{"n":4.5,"e":3491}],[-20,{"n":5,"e":3362}],[17,{"n":6,"e":4142}],[16,{"n":6,"e":4148}],[15,{"n":6,"e":4160}],[14,{"n":5,"e":4170}],[13,{"n":6.5,"e":4181}],[12,{"n":6,"e":4196}],[11,{"n":7.5,"e":4202,"g":1}],[10,{"n":6,"e":4215}],[9,{"n":5.5,"e":4223}],[8,{"n":5.5,"e":4230}],[7,{"n":6,"e":4245}],[6,{"n":6,"e":4249}],[5,{"n":3.5,"e":4260}],[4,{"n":6,"e":4271}],[3,{"n":5.5,"e":4282}],[2,{"n":5,"e":4296}],[1,{"n":5.5,"e":4305}]]}],[2755,{"n":"Benkovic","f":"Filip","fp":"DC","r":1,"c":29}],[2925,{"n":"Leshabela","f":"Thakgalo","fp":"MD","r":1,"c":29}],[3658,{"n":"Justin","f":"James","fp":"DL","r":3,"c":29,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":2},"p":[[16,{"n":5,"e":4148}],[15,{"n":5.5,"e":4160}]]}],[3690,{"n":"Thomas","f":"George","fp":"A","r":4,"c":29}],[4601,{"n":"Praet","f":"Dennis","fp":"MO","r":9,"c":29,"s":{"s":62.5,"n":12,"a":5.21,"d":0.62,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1.32,"Os":62.5,"On":12,"Oa":5.21,"Od":0.62,"pm":12},"p":[[17,{"n":4.5,"e":4142}],[16,{"n":7,"e":4148}],[15,{"n":5,"e":4160}],[13,{"n":5,"e":4181}],[12,{"n":5,"e":4196}],[11,{"n":5,"e":4202}],[9,{"n":5,"e":4223}],[8,{"n":5.5,"e":4230}],[7,{"n":5.5,"e":4245}],[6,{"n":5,"e":4249}],[3,{"n":5,"e":4282}],[2,{"n":5,"e":4296}]]}],[5411,{"n":"Fitzhugh","f":"Ethan","fp":"MD","r":1,"c":29}],[5418,{"n":"Tavares","f":"Sidnei","fp":"MD","r":1,"c":29}],[5422,{"n":"Pennant","f":"Terell","fp":"A","r":1,"c":29}],[5425,{"n":"Wright","f":"Callum","fp":"MD","r":1,"c":29}],[5430,{"n":"Daley-Campbell","f":"Vontae","fp":"DC","r":1,"c":29}],[5434,{"n":"Johansson","f":"Viktor","fp":"G","r":1,"c":29}],[5443,{"n":"Moore","f":"Elliott","fp":"DC","r":1,"c":29}],[5444,{"n":"Muskwe","f":"Admiral","fp":"A","r":1,"c":29}],[5445,{"n":"Ndukwu","f":"Layton","fp":"A","r":4,"c":29}],[5,{"n":"Fabinho","f":"","fp":"MD","r":14,"c":21,"s":{"g":1,"s":68,"n":12,"a":5.67,"d":0.81,"Og":2,"Os":176,"On":32,"Oa":5.5,"Od":0.73,"pd":1,"pm":31},"p":[[12,{"n":6.5,"e":4190,"g":1}],[10,{"n":6,"e":4211}],[9,{"n":5.5,"e":4224}],[7,{"n":6,"e":4238}],[5,{"n":5.5,"e":4258}],[2,{"n":5,"e":4293}],[1,{"n":7,"e":4298}],[-38,{"n":6,"e":3543}],[-33,{"n":5,"e":3494}],[-32,{"n":5,"e":3485}],[-28,{"n":7,"e":3446}],[-27,{"n":6,"e":3435}],[-25,{"n":5,"e":3417}],[-21,{"n":4.5,"e":3374}],[-19,{"n":6,"e":3353,"g":1}],[-18,{"n":5.5,"e":3347}],[-37,{"n":5.5,"e":3535}],[-35,{"n":5,"e":3510}],[-34,{"n":5.5,"e":3503}],[-31,{"n":4.5,"e":3472}],[-30,{"n":4.5,"e":3464}],[-29,{"n":5,"e":3451}],[-26,{"n":6.5,"e":3422}],[-24,{"n":5,"e":3406}],[-23,{"n":5,"e":3392}],[-22,{"n":6,"e":3378}],[-20,{"n":5.5,"e":3363}],[13,{"n":4,"e":4182}],[8,{"n":5,"e":4230}],[6,{"n":5.5,"e":4257}],[4,{"n":5.5,"e":4275}],[3,{"n":6.5,"e":4285}]]}],[605,{"n":"Mané","f":"Sadio","fp":"A","r":53,"c":21,"s":{"g":9,"s":96,"n":16,"a":6,"d":1.2,"Ss":6,"Sn":1,"Sa":6,"Og":24,"Os":221,"On":37,"Oa":5.97,"Od":1.1,"pm":8,"pa":29},"p":[[17,{"n":6,"e":4143}],[-38,{"n":7.5,"e":3543,"g":2}],[-37,{"n":5,"e":3535}],[-36,{"n":7.5,"e":3523,"g":2}],[-35,{"n":5.5,"e":3510}],[-34,{"n":7,"e":3503,"g":1}],[-33,{"n":5,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":7,"e":3472,"g":1}],[-30,{"n":7.5,"e":3464,"g":2}],[-29,{"n":4.5,"e":3451}],[-28,{"n":7,"e":3446,"g":2}],[-27,{"n":5,"e":3435}],[-26,{"n":6,"e":3422,"g":1}],[-25,{"n":6.5,"e":3417,"g":1}],[-24,{"n":6,"e":3406,"g":1}],[-23,{"n":6,"e":3392,"g":1}],[-22,{"n":5,"e":3378}],[-21,{"n":4,"e":3374}],[-20,{"n":6.5,"e":3363,"g":1}],[-19,{"n":6,"e":3353}],[-18,{"n":5.5,"e":3347}],[15,{"n":8,"e":4167,"g":1}],[14,{"n":5.5,"e":4171}],[13,{"n":6.5,"e":4182,"g":1}],[12,{"n":6.5,"e":4190,"g":1}],[11,{"n":7,"e":4199,"g":1}],[10,{"n":6,"e":4211}],[9,{"n":4,"e":4224}],[8,{"n":7,"e":4230,"g":1}],[7,{"n":4,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":7.5,"e":4258,"g":2}],[4,{"n":6,"e":4275,"g":1}],[3,{"n":5.5,"e":4285}],[2,{"n":7,"e":4293,"g":1}],[1,{"n":4.5,"e":4298}]],"a":{"m":91,"a":110,"M":160,"n":10}}],[606,{"n":"Roberto Firmino","f":"","fp":"A","r":28,"c":21,"s":{"g":4,"s":97.5,"n":17,"a":5.74,"d":0.85,"Sg":4,"Ss":97.5,"Sn":17,"Sa":5.74,"Sd":0.85,"Og":12,"Os":191.5,"On":34,"Oa":5.63,"Od":1.08,"pm":7,"pa":27},"p":[[-35,{"n":5,"e":3510}],[-34,{"n":5,"e":3503}],[-33,{"n":7,"e":3494}],[-32,{"n":6,"e":3485,"g":1}],[-31,{"n":6,"e":3472}],[-30,{"n":7.5,"e":3464,"g":2}],[-29,{"n":4,"e":3451}],[-27,{"n":4.5,"e":3435}],[-26,{"n":6.5,"e":3422}],[-25,{"n":4.5,"e":3417}],[-24,{"n":4,"e":3406}],[-23,{"n":5.5,"e":3392,"g":1}],[-22,{"n":4,"e":3378}],[-21,{"n":6,"e":3374,"g":1}],[-20,{"n":8.5,"e":3363,"g":3}],[-19,{"n":5,"e":3353}],[-18,{"n":5,"e":3347}],[17,{"n":6,"e":4143}],[16,{"n":6,"e":4149}],[15,{"n":5.5,"e":4167}],[14,{"n":5,"e":4171}],[13,{"n":6.5,"e":4182,"g":1}],[12,{"n":5,"e":4190}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4211}],[9,{"n":5,"e":4224}],[8,{"n":4.5,"e":4230}],[7,{"n":5,"e":4238}],[6,{"n":6.5,"e":4257,"g":1}],[5,{"n":6.5,"e":4258}],[4,{"n":7.5,"e":4275,"g":1}],[3,{"n":5.5,"e":4285}],[2,{"n":6,"e":4293,"g":1}],[1,{"n":7,"e":4298}]]}],[618,{"n":"Lallana","f":"Adam","fp":"MO","r":9,"c":21,"s":{"g":1,"s":35.5,"n":7,"a":5.07,"d":0.73,"Og":1,"Os":81,"On":16,"Oa":5.06,"Od":0.48,"pm":16},"p":[[-31,{"n":5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":5,"e":3451}],[-28,{"n":5,"e":3446}],[-25,{"n":5,"e":3417}],[-24,{"n":5,"e":3406}],[-23,{"n":5,"e":3392}],[-20,{"n":5,"e":3363}],[-18,{"n":5.5,"e":3347}],[15,{"n":5,"e":4167}],[14,{"n":4.5,"e":4171}],[11,{"n":5.5,"e":4199}],[9,{"n":6.5,"e":4224,"g":1}],[8,{"n":5,"e":4230}],[6,{"n":4.5,"e":4257}],[3,{"n":4.5,"e":4285}]]}],[624,{"n":"Milner","f":"James","fp":"MD","r":11,"c":21,"s":{"g":1,"s":69,"n":13,"a":5.31,"d":0.83,"Ss":17.5,"Sn":3,"Sa":5.83,"Sd":1.26,"Og":3,"Os":156.5,"On":29,"Oa":5.4,"Od":0.83,"pd":6,"pm":23},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":4.5,"e":3535}],[-35,{"n":7,"e":3510,"g":1}],[-34,{"n":5.5,"e":3503}],[-33,{"n":5,"e":3494}],[-32,{"n":6,"e":3485}],[-31,{"n":6.5,"e":3472,"g":1}],[-29,{"n":5,"e":3451}],[-28,{"n":6,"e":3446}],[-27,{"n":5,"e":3435}],[-26,{"n":7,"e":3422}],[-25,{"n":6,"e":3417}],[-23,{"n":4.5,"e":3392}],[-22,{"n":5,"e":3378}],[-21,{"n":4.5,"e":3374}],[-18,{"n":5,"e":3347}],[17,{"n":6,"e":4143}],[16,{"n":7,"e":4149}],[15,{"n":4.5,"e":4167}],[13,{"n":4.5,"e":4182}],[12,{"n":5,"e":4190}],[10,{"n":5,"e":4211}],[8,{"n":7,"e":4230,"g":1}],[7,{"n":5,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":5,"e":4258}],[3,{"n":5,"e":4285}],[2,{"n":5,"e":4293}],[1,{"n":5,"e":4298}]]}],[630,{"n":"Wijnaldum","f":"Georginio","fp":"MO","r":26,"c":21,"s":{"g":2,"s":91,"n":16,"a":5.69,"d":0.75,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":4,"Os":194,"On":35,"Oa":5.54,"Od":0.89,"pm":35},"p":[[-38,{"n":5.5,"e":3543}],[-37,{"n":5,"e":3535}],[-36,{"n":7,"e":3523}],[-35,{"n":7.5,"e":3510,"g":1}],[-34,{"n":5,"e":3503}],[-33,{"n":4,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":5,"e":3472}],[-30,{"n":4.5,"e":3464}],[-29,{"n":4,"e":3451}],[-28,{"n":5.5,"e":3446}],[-27,{"n":5.5,"e":3435}],[-26,{"n":7,"e":3422,"g":1}],[-24,{"n":6,"e":3406}],[-22,{"n":6,"e":3378}],[-21,{"n":4,"e":3374}],[-20,{"n":6,"e":3363}],[-19,{"n":5.5,"e":3353}],[-18,{"n":5,"e":3347}],[17,{"n":4.5,"e":4143}],[15,{"n":7,"e":4167,"g":1}],[14,{"n":5.5,"e":4171}],[13,{"n":5.5,"e":4182}],[12,{"n":7,"e":4190}],[11,{"n":5,"e":4199}],[10,{"n":5,"e":4211}],[9,{"n":5.5,"e":4224}],[8,{"n":5,"e":4230}],[7,{"n":7,"e":4238,"g":1}],[6,{"n":5.5,"e":4257}],[5,{"n":6,"e":4258}],[4,{"n":6,"e":4275}],[3,{"n":5.5,"e":4285}],[2,{"n":5.5,"e":4293}],[1,{"n":5.5,"e":4298}]]}],[636,{"n":"Oxlade-Chamberlain","f":"Alex","fp":"MO","r":11,"c":21,"s":{"g":1,"s":61.5,"n":12,"a":5.13,"d":0.64,"Sg":1,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":1.06,"Og":1,"Os":71.5,"On":14,"Oa":5.11,"Od":0.59,"pm":12,"pa":2},"p":[[-38,{"n":5,"e":3543}],[-36,{"n":5,"e":3523}],[17,{"n":4.5,"e":4143}],[16,{"n":6,"e":4149,"g":1}],[14,{"n":6,"e":4171}],[13,{"n":4,"e":4182}],[12,{"n":5,"e":4190}],[11,{"n":5,"e":4199}],[9,{"n":5,"e":4224}],[7,{"n":5,"e":4238}],[5,{"n":5,"e":4258}],[4,{"n":5.5,"e":4275}],[3,{"n":4.5,"e":4285}],[2,{"n":6,"e":4293}]]}],[638,{"n":"Sturridge","f":"Daniel","fp":"A","r":11,"c":21,"s":{"Os":42.5,"On":9,"Oa":4.72,"Od":0.62,"pa":9},"p":[[-37,{"n":4,"e":3535}],[-36,{"n":5,"e":3523}],[-31,{"n":4.5,"e":3472}],[-30,{"n":6,"e":3464}],[-27,{"n":5,"e":3435}],[-26,{"n":4.5,"e":3422}],[-24,{"n":4,"e":3406}],[-21,{"n":4.5,"e":3374}],[-19,{"n":5,"e":3353}]]}],[644,{"n":"Henderson","f":"Jordan","fp":"MD","r":23,"c":21,"s":{"g":1,"s":92.5,"n":16,"a":5.78,"d":0.91,"Sg":1,"Ss":70,"Sn":12,"Sa":5.83,"Sd":1.03,"Og":2,"Os":191.5,"On":34,"Oa":5.63,"Od":0.78,"pd":1,"pm":33},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5,"e":3535}],[-36,{"n":6.5,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":6.5,"e":3503}],[-33,{"n":6,"e":3494,"g":1}],[-32,{"n":4.5,"e":3485}],[-30,{"n":5,"e":3464}],[-29,{"n":5,"e":3451}],[-28,{"n":5.5,"e":3446}],[-27,{"n":4.5,"e":3435}],[-24,{"n":5,"e":3406}],[-23,{"n":6,"e":3392}],[-22,{"n":6,"e":3378}],[-21,{"n":5.5,"e":3374}],[-20,{"n":5,"e":3363}],[-19,{"n":6,"e":3353}],[-18,{"n":6,"e":3347}],[17,{"n":4.5,"e":4143}],[16,{"n":8,"e":4149}],[15,{"n":6,"e":4167}],[14,{"n":5.5,"e":4171}],[13,{"n":5.5,"e":4182}],[12,{"n":6,"e":4190}],[11,{"n":7,"e":4199}],[10,{"n":7,"e":4211,"g":1}],[9,{"n":5,"e":4224}],[8,{"n":5,"e":4230}],[7,{"n":5,"e":4238}],[6,{"n":5.5,"e":4257}],[4,{"n":6,"e":4275}],[3,{"n":5.5,"e":4285}],[2,{"n":5,"e":4293}],[1,{"n":6,"e":4298}]],"a":{"m":19,"a":24,"M":30,"n":10}}],[655,{"n":"Lovren","f":"Dejan","fp":"DC","r":11,"c":21,"s":{"s":46.5,"n":8,"a":5.81,"d":0.59,"Og":1,"Os":91,"On":16,"Oa":5.69,"Od":1,"pd":16},"p":[[-37,{"n":4.5,"e":3535}],[-36,{"n":7,"e":3523}],[-33,{"n":5,"e":3494}],[-32,{"n":5,"e":3485}],[-21,{"n":3.5,"e":3374}],[-20,{"n":6,"e":3363}],[-19,{"n":7.5,"e":3353,"g":1}],[-18,{"n":6,"e":3347}],[16,{"n":5,"e":4149}],[15,{"n":7,"e":4167}],[14,{"n":5.5,"e":4171}],[13,{"n":6,"e":4182}],[12,{"n":5.5,"e":4190}],[11,{"n":5.5,"e":4199}],[10,{"n":6,"e":4211}],[8,{"n":6,"e":4230}]]}],[668,{"n":"van Dijk","f":"Virgil","fp":"DC","r":35,"c":21,"s":{"g":3,"s":102,"n":17,"a":6,"d":0.68,"Sg":3,"Ss":102,"Sn":17,"Sa":6,"Sd":0.68,"Og":7,"Os":230.5,"On":38,"Oa":6.07,"Od":0.81,"pd":38},"p":[[-38,{"n":6,"e":3543}],[-37,{"n":7,"e":3535,"g":1}],[-36,{"n":6,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":6,"e":3503}],[-33,{"n":5.5,"e":3494}],[-32,{"n":6,"e":3485}],[-31,{"n":5.5,"e":3472}],[-30,{"n":6,"e":3464}],[-29,{"n":6.5,"e":3451}],[-28,{"n":8.5,"e":3446,"g":2}],[-27,{"n":6,"e":3435}],[-26,{"n":7,"e":3422}],[-25,{"n":5,"e":3417}],[-24,{"n":5.5,"e":3406}],[-23,{"n":5,"e":3392}],[-22,{"n":6,"e":3378}],[-21,{"n":5,"e":3374}],[-20,{"n":5.5,"e":3363}],[-19,{"n":6.5,"e":3353}],[-18,{"n":8,"e":3347,"g":1}],[17,{"n":6,"e":4143}],[16,{"n":6,"e":4149}],[15,{"n":5,"e":4167}],[14,{"n":8,"e":4171,"g":2}],[13,{"n":6,"e":4182}],[12,{"n":6,"e":4190}],[11,{"n":5.5,"e":4199}],[10,{"n":5.5,"e":4211}],[9,{"n":5.5,"e":4224}],[8,{"n":6,"e":4230}],[7,{"n":6,"e":4238}],[6,{"n":5.5,"e":4257}],[5,{"n":6,"e":4258}],[4,{"n":6.5,"e":4275}],[3,{"n":5.5,"e":4285}],[2,{"n":6,"e":4293}],[1,{"n":7,"e":4298,"g":1}]],"a":{"m":35,"a":52,"M":72,"n":9}}],[672,{"n":"Shaqiri","f":"Xherdan","fp":"A","r":8,"c":21,"s":{"g":1,"s":26,"n":5,"a":5.2,"d":1.04,"Sg":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":1.32,"Og":2,"Os":81.5,"On":16,"Oa":5.09,"Od":0.95,"pm":11,"pa":5},"p":[[-37,{"n":5.5,"e":3535}],[-36,{"n":5,"e":3523}],[-34,{"n":4,"e":3503}],[-27,{"n":5,"e":3435}],[-25,{"n":4.5,"e":3417}],[-24,{"n":4,"e":3406}],[-23,{"n":4.5,"e":3392}],[-22,{"n":5,"e":3378}],[-21,{"n":4.5,"e":3374}],[-20,{"n":6.5,"e":3363}],[-19,{"n":7,"e":3353,"g":1}],[17,{"n":5,"e":4143}],[16,{"n":4.5,"e":4149}],[15,{"n":7,"e":4167,"g":1}],[5,{"n":4.5,"e":4258}],[4,{"n":5,"e":4275}]]}],[681,{"n":"Origi","f":"Divock","fp":"A","r":11,"c":21,"s":{"g":3,"s":63.5,"n":13,"a":4.88,"d":1.12,"Ss":5,"Sn":1,"Sa":5,"Og":5,"Os":113,"On":23,"Oa":4.91,"Od":1.01,"pa":23},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3535,"g":1}],[-32,{"n":5,"e":3485}],[-31,{"n":4.5,"e":3472}],[-29,{"n":4,"e":3451}],[-28,{"n":7,"e":3446,"g":1}],[-27,{"n":4.5,"e":3435}],[-26,{"n":4.5,"e":3422}],[-25,{"n":5,"e":3417}],[-22,{"n":4.5,"e":3378}],[17,{"n":5,"e":4143}],[15,{"n":7.5,"e":4167,"g":2}],[14,{"n":4,"e":4171}],[13,{"n":4,"e":4182}],[11,{"n":5,"e":4199}],[10,{"n":4,"e":4211}],[9,{"n":4,"e":4224}],[8,{"n":5,"e":4230}],[7,{"n":4.5,"e":4238}],[5,{"n":4.5,"e":4258}],[4,{"n":4.5,"e":4275}],[2,{"n":4.5,"e":4293}],[1,{"n":7,"e":4298,"g":1}]],"a":{"m":11,"a":15,"M":17,"n":6}}],[711,{"n":"Clyne","f":"Nathaniel","fp":"DL","r":5,"c":21,"s":{"Os":76,"On":17,"Oa":4.47,"Od":1.01,"pd":17},"p":[[-38,{"n":3,"e":3540}],[-37,{"n":5,"e":3528}],[-36,{"n":4,"e":3525}],[-33,{"n":3,"e":3488}],[-32,{"n":3.5,"e":3484}],[-31,{"n":4,"e":3468}],[-30,{"n":5.5,"e":3462}],[-29,{"n":5,"e":3448}],[-28,{"n":3,"e":3438}],[-27,{"n":5,"e":3428}],[-25,{"n":4,"e":3410}],[-24,{"n":6.5,"e":3398}],[-23,{"n":5.5,"e":3388}],[-22,{"n":4,"e":3383}],[-20,{"n":5,"e":3363}],[-19,{"n":5,"e":3353}],[-18,{"n":5,"e":3347}]]}],[760,{"n":"Mignolet","f":"Simon","fp":"G","r":6,"c":21}],[766,{"n":"Matip","f":"Joel","fp":"DC","r":7,"c":21,"s":{"g":1,"s":42,"n":7,"a":6,"d":0.76,"Og":1,"Os":120.5,"On":21,"Oa":5.74,"Od":0.66,"pd":21},"p":[[-38,{"n":6.5,"e":3543}],[-35,{"n":5.5,"e":3510}],[-34,{"n":6,"e":3503}],[-33,{"n":6,"e":3494}],[-32,{"n":5.5,"e":3485}],[-31,{"n":5.5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":6,"e":3451}],[-28,{"n":6,"e":3446}],[-27,{"n":4.5,"e":3435}],[-26,{"n":6.5,"e":3422}],[-25,{"n":5.5,"e":3417}],[-24,{"n":5,"e":3406}],[-23,{"n":5,"e":3392}],[9,{"n":5,"e":4224}],[7,{"n":6,"e":4238}],[6,{"n":5.5,"e":4257}],[5,{"n":6,"e":4258}],[4,{"n":6,"e":4275}],[3,{"n":7.5,"e":4285,"g":1}],[2,{"n":6,"e":4293}]],"a":{"m":16,"a":19,"M":25,"n":7}}],[776,{"n":"Robertson","f":"Andrew","fp":"DL","r":23,"c":21,"s":{"g":1,"s":96,"n":17,"a":5.65,"d":0.79,"Sg":1,"Ss":96,"Sn":17,"Sa":5.65,"Sd":0.79,"Og":1,"Os":208.5,"On":38,"Oa":5.49,"Od":0.83,"pd":38},"p":[[-38,{"n":6,"e":3543}],[-37,{"n":4.5,"e":3535}],[-36,{"n":7.5,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":5,"e":3503}],[-33,{"n":5,"e":3494}],[-32,{"n":6.5,"e":3485}],[-31,{"n":5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":4,"e":3451}],[-28,{"n":6.5,"e":3446}],[-27,{"n":5,"e":3435}],[-26,{"n":6,"e":3422}],[-25,{"n":5,"e":3417}],[-24,{"n":4.5,"e":3406}],[-23,{"n":4,"e":3392}],[-22,{"n":5.5,"e":3378}],[-21,{"n":5.5,"e":3374}],[-20,{"n":5,"e":3363}],[-19,{"n":6,"e":3353}],[-18,{"n":5,"e":3347}],[17,{"n":5,"e":4143}],[16,{"n":5.5,"e":4149}],[15,{"n":4,"e":4167}],[14,{"n":5,"e":4171}],[13,{"n":6,"e":4182}],[12,{"n":5.5,"e":4190}],[11,{"n":6.5,"e":4199,"g":1}],[10,{"n":6,"e":4211}],[9,{"n":6.5,"e":4224}],[8,{"n":5.5,"e":4230}],[7,{"n":5.5,"e":4238}],[6,{"n":7,"e":4257}],[5,{"n":7,"e":4258}],[4,{"n":5.5,"e":4275}],[3,{"n":5,"e":4285}],[2,{"n":5,"e":4293}],[1,{"n":5.5,"e":4298}]],"a":{"m":24,"a":28,"M":35,"n":6}}],[901,{"n":"Adrián","f":"","fp":"G","r":7,"c":21,"s":{"s":47.5,"n":10,"a":4.75,"d":0.75,"Os":47.5,"On":10,"Oa":4.75,"Od":0.75,"pg":10},"p":[[15,{"n":5,"e":4167}],[14,{"n":4,"e":4171}],[8,{"n":4.5,"e":4230}],[7,{"n":6,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":4,"e":4258}],[4,{"n":6,"e":4275}],[3,{"n":4.5,"e":4285}],[2,{"n":4,"e":4293}],[1,{"n":4.5,"e":4298}]]}],[970,{"n":"Karius","f":"Loris","fp":"G","r":9,"c":21}],[995,{"n":"Alexander-Arnold","f":"Trent","fp":"DL","r":25,"c":21,"s":{"g":1,"s":92,"n":17,"a":5.41,"d":0.91,"Sg":1,"Ss":92,"Sn":17,"Sa":5.41,"Sd":0.91,"Og":1,"Os":184.5,"On":33,"Oa":5.59,"Od":1.01,"pd":33},"p":[[-38,{"n":7,"e":3543}],[-37,{"n":6.5,"e":3535}],[-36,{"n":7,"e":3523}],[-35,{"n":6,"e":3510}],[-34,{"n":6.5,"e":3503}],[-33,{"n":5.5,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":4.5,"e":3472}],[-30,{"n":5,"e":3464}],[-29,{"n":5,"e":3451}],[-28,{"n":8,"e":3446}],[-26,{"n":5.5,"e":3422}],[-22,{"n":5,"e":3378}],[-21,{"n":4,"e":3374}],[-20,{"n":5,"e":3363}],[-19,{"n":7,"e":3353}],[17,{"n":4.5,"e":4143}],[16,{"n":6,"e":4149}],[15,{"n":5,"e":4167}],[14,{"n":6.5,"e":4171}],[13,{"n":5,"e":4182}],[12,{"n":4.5,"e":4190}],[11,{"n":6.5,"e":4199}],[10,{"n":5,"e":4211}],[9,{"n":4.5,"e":4224}],[8,{"n":4.5,"e":4230}],[7,{"n":5,"e":4238}],[6,{"n":7,"e":4257,"g":1}],[5,{"n":6.5,"e":4258}],[4,{"n":5.5,"e":4275}],[3,{"n":6,"e":4285}],[2,{"n":4,"e":4293}],[1,{"n":6,"e":4298}]]}],[1009,{"n":"Grujic","f":"Marko","fp":"MD","r":1,"c":21}],[1096,{"n":"Gomez","f":"Joseph","fp":"DC","r":9,"c":21,"s":{"s":42.5,"n":8,"a":5.31,"d":0.37,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.5,"Os":57.5,"On":11,"Oa":5.23,"Od":0.34,"pd":11},"p":[[-38,{"n":5,"e":3543}],[-36,{"n":5,"e":3523}],[-35,{"n":5,"e":3510}],[17,{"n":6,"e":4143}],[16,{"n":5.5,"e":4149}],[15,{"n":5,"e":4167}],[13,{"n":5.5,"e":4182}],[12,{"n":5,"e":4190}],[10,{"n":5,"e":4211}],[6,{"n":5,"e":4257}],[1,{"n":5.5,"e":4298}]]}],[1151,{"n":"Woodburn","f":"Ben","fp":"A","r":1,"c":21}],[1278,{"n":"Mohamed Salah","f":"","fp":"A","r":47,"c":21,"s":{"g":9,"s":83,"n":14,"a":5.93,"d":1.27,"Sg":3,"Ss":14.5,"Sn":2,"Sa":7.25,"Sd":0.35,"Og":21,"Os":202.5,"On":35,"Oa":5.79,"Od":1.3,"pa":35},"p":[[-38,{"n":5.5,"e":3543}],[-37,{"n":6.5,"e":3535,"g":1}],[-36,{"n":8,"e":3523,"g":2}],[-35,{"n":6,"e":3510}],[-34,{"n":7,"e":3503,"g":1}],[-33,{"n":6,"e":3494,"g":1}],[-32,{"n":5.5,"e":3485}],[-31,{"n":4,"e":3472}],[-30,{"n":4,"e":3464}],[-29,{"n":4,"e":3451}],[-28,{"n":5.5,"e":3446}],[-27,{"n":3.5,"e":3435}],[-26,{"n":7,"e":3422,"g":1}],[-25,{"n":4.5,"e":3417}],[-24,{"n":4,"e":3406}],[-23,{"n":7,"e":3392,"g":2}],[-22,{"n":6,"e":3378,"g":1}],[-21,{"n":4.5,"e":3374}],[-20,{"n":7,"e":3363,"g":1}],[-19,{"n":7,"e":3353,"g":1}],[-18,{"n":7,"e":3347,"g":1}],[17,{"n":7.5,"e":4143,"g":2}],[16,{"n":7,"e":4149,"g":1}],[14,{"n":4.5,"e":4171}],[12,{"n":7,"e":4190,"g":1}],[11,{"n":4,"e":4199}],[10,{"n":6.5,"e":4211,"g":1}],[8,{"n":6,"e":4230}],[7,{"n":4.5,"e":4238}],[6,{"n":5,"e":4257}],[5,{"n":7,"e":4258,"g":1}],[4,{"n":6,"e":4275}],[3,{"n":7,"e":4285,"g":2}],[2,{"n":4,"e":4293}],[1,{"n":7,"e":4298,"g":1}]],"a":{"m":62,"a":83,"M":105,"n":14}}],[1362,{"n":"Brewster","f":"Rhian","fp":"A","r":1,"c":21}],[1374,{"n":"Grabara","f":"Kamil","fp":"G","r":1,"c":21}],[1381,{"n":"Kent","f":"Ryan","fp":"MD","r":8,"c":21}],[2539,{"n":"Camacho","f":"Rafael","fp":"MD","r":1,"c":21,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-23,{"n":5,"e":3392}]]}],[2546,{"n":"Jones","f":"Curtis","fp":"MO","r":3,"c":21,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[16,{"n":4.5,"e":4149}]]}],[2551,{"n":"Phillips","f":"Nathaniel","fp":"DC","r":1,"c":21}],[2565,{"n":"Keita","f":"Naby","fp":"MD","r":12,"c":21,"s":{"g":1,"s":18.5,"n":3,"a":6.17,"d":2.02,"Og":3,"Os":81,"On":15,"Oa":5.4,"Od":1.27,"pm":15},"p":[[-36,{"n":7.5,"e":3523,"g":1}],[-35,{"n":6,"e":3510}],[-34,{"n":4.5,"e":3503}],[-33,{"n":6,"e":3494,"g":1}],[-30,{"n":4.5,"e":3464}],[-28,{"n":4.5,"e":3446}],[-26,{"n":6.5,"e":3422}],[-25,{"n":5,"e":3417}],[-24,{"n":4,"e":3406}],[-23,{"n":4.5,"e":3392}],[-22,{"n":5,"e":3378}],[-18,{"n":4.5,"e":3347}],[16,{"n":8.5,"e":4149,"g":1}],[11,{"n":5,"e":4199}],[9,{"n":5,"e":4224}]]}],[2566,{"n":"Johnston","f":"George","fp":"DC","r":1,"c":21}],[2591,{"n":"Alisson","f":"","fp":"G","r":17,"c":21,"s":{"s":48,"n":9,"a":5.33,"d":0.71,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":0.35,"Os":161.5,"On":30,"Oa":5.38,"Od":0.84,"pg":30},"p":[[-38,{"n":6,"e":3543}],[-37,{"n":6,"e":3535}],[-36,{"n":5.5,"e":3523}],[-35,{"n":5.5,"e":3510}],[-34,{"n":6,"e":3503}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3485}],[-31,{"n":4,"e":3472}],[-30,{"n":4.5,"e":3464}],[-29,{"n":6,"e":3451}],[-28,{"n":6.5,"e":3446}],[-27,{"n":6,"e":3435}],[-26,{"n":6,"e":3422}],[-25,{"n":5,"e":3417}],[-24,{"n":5,"e":3406}],[-23,{"n":3.5,"e":3392}],[-22,{"n":5,"e":3378}],[-21,{"n":5,"e":3374}],[-20,{"n":5,"e":3363}],[-19,{"n":6,"e":3353}],[-18,{"n":7.5,"e":3347}],[17,{"n":6,"e":4143}],[16,{"n":5.5,"e":4149}],[14,{"n":4,"e":4171}],[13,{"n":6,"e":4182}],[12,{"n":6,"e":4190}],[11,{"n":5,"e":4199}],[10,{"n":5.5,"e":4211}],[9,{"n":4.5,"e":4224}],[1,{"n":5.5,"e":4298}]]}],[2884,{"n":"Elliott","f":"Harvey","fp":"MO","r":1,"c":21,"s":{"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-38,{"n":5,"e":3541}],[-37,{"n":5,"e":3537}]]}],[3117,{"n":"Hoever","f":"Ki-Jana","fp":"DL","r":1,"c":21}],[3120,{"n":"Kelleher","f":"Caoimhin","fp":"G","r":1,"c":21}],[3121,{"n":"Christie-Davies","f":"Isaac","fp":"MD","r":1,"c":21}],[3639,{"n":"van den Berg","f":"Sepp","fp":"DC","r":1,"c":21}],[3641,{"n":"Larouci","f":"Yasser","fp":"DC","r":5,"c":21}],[3642,{"n":"Jaros","f":"Vitezslav","fp":"G","r":1,"c":21}],[3666,{"n":"Atherton","f":"Daniel","fp":"G","r":1,"c":21}],[3667,{"n":"Glatzel","f":"Paul","fp":"A","r":1,"c":21}],[3672,{"n":"Lewis","f":"Adam","fp":"MD","r":3,"c":21}],[5451,{"n":"Lonergan","f":"Andy","fp":"G","r":1,"c":21}],[6124,{"n":"Chirivella","f":"Pedro","fp":"MD","r":1,"c":21}],[14,{"n":"Mendy","f":"Benjamin","fp":"DL","r":11,"c":40,"s":{"s":28.5,"n":6,"a":4.75,"d":0.76,"Ss":5,"Sn":1,"Sa":5,"Os":33.5,"On":7,"Oa":4.79,"Od":0.7,"pd":7},"p":[[14,{"n":4,"e":4172}],[6,{"n":4,"e":4253}],[-34,{"n":5,"e":3500}],[17,{"n":5,"e":4138}],[13,{"n":4.5,"e":4184}],[10,{"n":6,"e":4212}],[9,{"n":5,"e":4221}]]}],[25,{"n":"Bernardo Silva","f":"","fp":"MO","r":33,"c":40,"s":{"g":5,"s":89.5,"n":15,"a":5.97,"d":1.27,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":8,"Os":203.5,"On":35,"Oa":5.81,"Od":0.99,"pm":19,"pa":16},"p":[[16,{"n":4,"e":4152}],[11,{"n":6,"e":4204}],[8,{"n":4.5,"e":4231}],[5,{"n":6.5,"e":4264}],[2,{"n":5.5,"e":4294}],[-31,{"n":7,"e":3473,"g":1}],[-35,{"n":6,"e":3514}],[-30,{"n":6,"e":3465}],[-28,{"n":6,"e":3447}],[-22,{"n":6,"e":3385}],[-38,{"n":5.5,"e":3538}],[-37,{"n":5,"e":3534}],[-36,{"n":5.5,"e":3519}],[-34,{"n":5.5,"e":3500}],[-32,{"n":7.5,"e":3483,"g":1}],[-29,{"n":5,"e":3448}],[-27,{"n":5,"e":3433}],[-26,{"n":5.5,"e":3423}],[-25,{"n":6,"e":3415}],[-24,{"n":4.5,"e":3404}],[-23,{"n":4.5,"e":3391}],[-21,{"n":6,"e":3374}],[-20,{"n":6,"e":3365}],[-19,{"n":6,"e":3352,"g":1}],[-18,{"n":5.5,"e":3344}],[17,{"n":5.5,"e":4138}],[15,{"n":7,"e":4159}],[14,{"n":4.5,"e":4172}],[12,{"n":7,"e":4190,"g":1}],[10,{"n":6,"e":4212}],[9,{"n":7,"e":4221}],[7,{"n":5,"e":4246}],[6,{"n":9,"e":4253,"g":3}],[4,{"n":6.5,"e":4272,"g":1}],[3,{"n":5.5,"e":4286}]],"a":{"m":35,"a":47,"M":90,"n":8}}],[588,{"n":"Agüero","f":"Sergio","fp":"A","r":40,"c":40,"s":{"g":9,"s":67.5,"n":12,"a":5.63,"d":1.37,"Og":22,"Os":183,"On":32,"Oa":5.72,"Od":1.25,"pa":32},"p":[[1,{"n":5,"e":4299,"g":1}],[-38,{"n":7,"e":3538,"g":1}],[-37,{"n":5,"e":3534}],[-36,{"n":7,"e":3519,"g":1}],[-35,{"n":6,"e":3514}],[-34,{"n":5,"e":3500}],[-32,{"n":6.5,"e":3483,"g":1}],[-31,{"n":5,"e":3473}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":6,"e":3447,"g":1}],[-27,{"n":4.5,"e":3433}],[-26,{"n":8,"e":3423,"g":3}],[-25,{"n":8.5,"e":3415,"g":3}],[-24,{"n":6,"e":3404,"g":1}],[-23,{"n":5,"e":3391}],[-22,{"n":4.5,"e":3385}],[-21,{"n":6,"e":3374,"g":1}],[-20,{"n":6.5,"e":3365,"g":1}],[-19,{"n":5,"e":3352}],[-18,{"n":4,"e":3344}],[13,{"n":4.5,"e":4184}],[12,{"n":4,"e":4190}],[11,{"n":6,"e":4204,"g":1}],[10,{"n":4.5,"e":4212}],[8,{"n":4,"e":4231}],[7,{"n":5.5,"e":4246}],[6,{"n":6.5,"e":4253,"g":1}],[5,{"n":5.5,"e":4264,"g":1}],[4,{"n":8,"e":4272,"g":2}],[3,{"n":8,"e":4286,"g":2}],[2,{"n":6,"e":4294,"g":1}]],"a":{"m":54,"a":73,"M":101,"n":5}}],[593,{"n":"De Bruyne","f":"Kevin","fp":"MO","r":34,"c":40,"s":{"g":6,"s":106.5,"n":16,"a":6.66,"d":1.18,"Sg":4,"Ss":58,"Sn":9,"Sa":6.44,"Sd":1.1,"Og":8,"Os":190,"On":31,"Oa":6.13,"Od":1.2,"pm":31},"p":[[-38,{"n":5,"e":3538}],[-35,{"n":4.5,"e":3514}],[-34,{"n":7.5,"e":3500}],[-33,{"n":7,"e":3492,"g":1}],[-32,{"n":5.5,"e":3483}],[-29,{"n":5,"e":3448}],[-28,{"n":5.5,"e":3447}],[-27,{"n":6,"e":3433}],[-26,{"n":6.5,"e":3423}],[-25,{"n":5,"e":3415}],[-24,{"n":4.5,"e":3404}],[-23,{"n":5.5,"e":3391}],[-22,{"n":5.5,"e":3385}],[-19,{"n":4,"e":3352}],[-18,{"n":6.5,"e":3344,"g":1}],[17,{"n":8,"e":4138,"g":2}],[16,{"n":6,"e":4152}],[15,{"n":6,"e":4159}],[14,{"n":8,"e":4172,"g":1}],[13,{"n":6.5,"e":4184,"g":1}],[12,{"n":5,"e":4190}],[11,{"n":6.5,"e":4204}],[10,{"n":7,"e":4212}],[9,{"n":5,"e":4221}],[7,{"n":6.5,"e":4246}],[6,{"n":8.5,"e":4253,"g":1}],[5,{"n":5,"e":4264}],[4,{"n":8,"e":4272,"g":1}],[3,{"n":5.5,"e":4286}],[2,{"n":7.5,"e":4294}],[1,{"n":7.5,"e":4299}]],"a":{"m":35,"a":46,"M":92,"n":11}}],[594,{"n":"Sterling","f":"Raheem","fp":"A","r":43,"c":40,"s":{"g":9,"s":94.5,"n":16,"a":5.91,"d":1.2,"Sg":4,"Ss":61,"Sn":11,"Sa":5.55,"Sd":1.01,"Og":17,"Os":206,"On":36,"Oa":5.72,"Od":1.38,"pm":5,"pa":31},"p":[[-38,{"n":6,"e":3538}],[-37,{"n":4,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":3,"e":3514}],[-34,{"n":7,"e":3500,"g":2}],[-32,{"n":5.5,"e":3483}],[-31,{"n":7,"e":3473}],[-30,{"n":8,"e":3465,"g":3}],[-29,{"n":5,"e":3448}],[-28,{"n":5,"e":3447}],[-27,{"n":4.5,"e":3433}],[-26,{"n":8,"e":3423,"g":2}],[-25,{"n":7,"e":3415}],[-24,{"n":3.5,"e":3404}],[-23,{"n":7,"e":3391,"g":1}],[-22,{"n":6,"e":3385}],[-21,{"n":6.5,"e":3374}],[-20,{"n":6,"e":3365}],[-19,{"n":4,"e":3352}],[-18,{"n":3.5,"e":3344}],[17,{"n":7,"e":4138,"g":1}],[16,{"n":5,"e":4152}],[15,{"n":5,"e":4159}],[14,{"n":6,"e":4172,"g":1}],[13,{"n":5,"e":4184}],[12,{"n":5,"e":4190}],[11,{"n":4,"e":4204}],[10,{"n":7,"e":4212,"g":1}],[9,{"n":6.5,"e":4221}],[8,{"n":4.5,"e":4231}],[7,{"n":6,"e":4246,"g":1}],[5,{"n":6,"e":4264}],[4,{"n":5,"e":4272}],[3,{"n":7,"e":4286,"g":1}],[2,{"n":7,"e":4294,"g":1}],[1,{"n":8.5,"e":4299,"g":3}]],"a":{"m":64,"a":79,"M":112,"n":5}}],[599,{"n":"David Silva","f":"","fp":"MO","r":27,"c":40,"s":{"g":3,"s":85.5,"n":15,"a":5.7,"d":1.46,"Og":4,"Os":191,"On":34,"Oa":5.62,"Od":1.13,"pm":34},"p":[[-38,{"n":6,"e":3538}],[-37,{"n":5,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":5,"e":3514}],[-34,{"n":4.5,"e":3500}],[-32,{"n":5.5,"e":3483}],[-31,{"n":5,"e":3473}],[-30,{"n":7.5,"e":3465}],[-29,{"n":6,"e":3448}],[-28,{"n":5,"e":3447}],[-27,{"n":6,"e":3433}],[-26,{"n":5,"e":3423}],[-25,{"n":5.5,"e":3415}],[-24,{"n":6.5,"e":3404}],[-23,{"n":6,"e":3391}],[-22,{"n":5.5,"e":3385}],[-21,{"n":4.5,"e":3374}],[-20,{"n":7,"e":3365,"g":1}],[-19,{"n":5,"e":3352}],[16,{"n":5,"e":4152}],[15,{"n":6.5,"e":4159}],[14,{"n":5,"e":4172}],[13,{"n":5,"e":4184}],[11,{"n":5,"e":4204}],[10,{"n":7,"e":4212,"g":1}],[9,{"n":7,"e":4221,"g":1}],[8,{"n":3.5,"e":4231}],[7,{"n":5,"e":4246}],[6,{"n":8,"e":4253,"g":1}],[5,{"n":3.5,"e":4264}],[4,{"n":7,"e":4272}],[3,{"n":8,"e":4286}],[2,{"n":4.5,"e":4294}],[1,{"n":5.5,"e":4299}]],"a":{"m":28,"a":38,"M":51,"n":11}}],[603,{"n":"Mahrez","f":"Riyad","fp":"MO","r":15,"c":40,"s":{"g":4,"s":76,"n":13,"a":5.85,"d":1.59,"Sg":2,"Ss":28,"Sn":5,"Sa":5.6,"Sd":1.02,"Og":6,"Os":134.5,"On":24,"Oa":5.6,"Od":1.42,"pm":2,"pa":22},"p":[[-38,{"n":7.5,"e":3538,"g":1}],[-33,{"n":6,"e":3492}],[-32,{"n":4.5,"e":3483}],[-30,{"n":7,"e":3465}],[-29,{"n":6.5,"e":3448,"g":1}],[-28,{"n":4.5,"e":3447}],[-26,{"n":4,"e":3423}],[-25,{"n":4.5,"e":3415}],[-20,{"n":5,"e":3365}],[-19,{"n":4.5,"e":3352}],[-18,{"n":4.5,"e":3344}],[17,{"n":4.5,"e":4138}],[16,{"n":6,"e":4152}],[15,{"n":6.5,"e":4159,"g":1}],[14,{"n":4.5,"e":4172}],[13,{"n":6.5,"e":4184,"g":1}],[8,{"n":4,"e":4231}],[7,{"n":8,"e":4246,"g":1}],[6,{"n":8,"e":4253,"g":1}],[5,{"n":4.5,"e":4264}],[4,{"n":7,"e":4272}],[3,{"n":4.5,"e":4286}],[2,{"n":4,"e":4294}],[1,{"n":8,"e":4299}]],"a":{"m":18,"a":21,"M":24,"n":9}}],[639,{"n":"Fernandinho","f":"","fp":"MD","r":17,"c":40,"s":{"s":70.5,"n":13,"a":5.42,"d":0.84,"Ss":64,"Sn":12,"Sa":5.33,"Sd":0.81,"Os":135,"On":25,"Oa":5.4,"Od":0.88,"pd":13,"pm":12},"p":[[-35,{"n":5,"e":3514}],[-33,{"n":6,"e":3492}],[-32,{"n":4.5,"e":3483}],[-31,{"n":5,"e":3473}],[-27,{"n":6,"e":3433}],[-26,{"n":6.5,"e":3423}],[-25,{"n":5.5,"e":3415}],[-24,{"n":4,"e":3404}],[-23,{"n":4,"e":3391}],[-22,{"n":7,"e":3385}],[-21,{"n":5,"e":3374}],[-20,{"n":6,"e":3365}],[17,{"n":6,"e":4138}],[16,{"n":5,"e":4152}],[15,{"n":5.5,"e":4159}],[14,{"n":4,"e":4172}],[13,{"n":6,"e":4184}],[12,{"n":4.5,"e":4190}],[11,{"n":5.5,"e":4204}],[10,{"n":5.5,"e":4212}],[9,{"n":5.5,"e":4221}],[8,{"n":4,"e":4231}],[7,{"n":6,"e":4246}],[6,{"n":6.5,"e":4253}],[4,{"n":6.5,"e":4272}]],"a":{"m":21,"a":24,"M":28,"n":5}}],[654,{"n":"Stones","f":"John","fp":"DC","r":10,"c":40,"s":{"s":47,"n":9,"a":5.22,"d":0.97,"Os":118,"On":22,"Oa":5.36,"Od":0.82,"pd":21,"pm":1},"p":[[-37,{"n":5,"e":3534}],[-36,{"n":5.5,"e":3519}],[-35,{"n":6,"e":3514}],[-34,{"n":5,"e":3500}],[-33,{"n":5.5,"e":3492}],[-29,{"n":6,"e":3448}],[-27,{"n":6,"e":3433}],[-26,{"n":6.5,"e":3423}],[-24,{"n":4.5,"e":3404}],[-22,{"n":6,"e":3385}],[-21,{"n":6,"e":3374}],[-19,{"n":4,"e":3352}],[-18,{"n":5,"e":3344}],[16,{"n":4.5,"e":4152}],[14,{"n":5.5,"e":4172}],[13,{"n":5,"e":4184}],[12,{"n":4,"e":4190}],[11,{"n":6,"e":4204}],[10,{"n":6.5,"e":4212}],[9,{"n":5,"e":4221}],[5,{"n":4,"e":4264}],[1,{"n":6.5,"e":4299}]]}],[662,{"n":"Sané","f":"Leroy","fp":"A","r":7,"c":40,"s":{"Og":4,"Os":82.5,"On":16,"Oa":5.16,"Od":1.22,"pm":1,"pa":15},"p":[[-37,{"n":4,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":4.5,"e":3514}],[-34,{"n":6,"e":3500}],[-33,{"n":7,"e":3492,"g":1}],[-31,{"n":6,"e":3473,"g":1}],[-30,{"n":4,"e":3465}],[-28,{"n":4.5,"e":3447}],[-27,{"n":4,"e":3433}],[-24,{"n":4,"e":3404}],[-23,{"n":7,"e":3391,"g":1}],[-22,{"n":7,"e":3385}],[-21,{"n":6.5,"e":3374,"g":1}],[-20,{"n":4,"e":3365}],[-19,{"n":4,"e":3352}],[-18,{"n":5,"e":3344}]]}],[674,{"n":"Otamendi","f":"Nicolás","fp":"DC","r":15,"c":40,"s":{"g":2,"s":56,"n":11,"a":5.09,"d":1,"Sg":1,"Ss":16.5,"Sn":3,"Sa":5.5,"Sd":0.87,"Og":2,"Os":116,"On":22,"Oa":5.27,"Od":0.91,"pd":22},"p":[[-38,{"n":5,"e":3538}],[-36,{"n":5,"e":3519}],[-32,{"n":6,"e":3483}],[-30,{"n":5.5,"e":3465}],[-29,{"n":6,"e":3448}],[-28,{"n":5.5,"e":3447}],[-27,{"n":6,"e":3433}],[-25,{"n":6,"e":3415}],[-23,{"n":6.5,"e":3391}],[-21,{"n":5,"e":3374}],[-18,{"n":3.5,"e":3344}],[17,{"n":6,"e":4138}],[16,{"n":6,"e":4152,"g":1}],[15,{"n":4.5,"e":4159}],[11,{"n":5,"e":4204}],[8,{"n":4,"e":4231}],[7,{"n":4.5,"e":4246}],[6,{"n":7,"e":4253,"g":1}],[5,{"n":3.5,"e":4264}],[4,{"n":5.5,"e":4272}],[3,{"n":5,"e":4286}],[2,{"n":5,"e":4294}]]}],[678,{"n":"Walker","f":"Kyle","fp":"DL","r":18,"c":40,"s":{"g":1,"s":71,"n":14,"a":5.07,"d":1.14,"Ss":20.5,"Sn":4,"Sa":5.13,"Sd":0.85,"Og":1,"Os":172,"On":33,"Oa":5.21,"Od":0.91,"pd":33},"p":[[-38,{"n":5,"e":3538}],[-37,{"n":5.5,"e":3534}],[-36,{"n":6.5,"e":3519}],[-35,{"n":5.5,"e":3514}],[-34,{"n":5.5,"e":3500}],[-33,{"n":6,"e":3492}],[-32,{"n":5,"e":3483}],[-31,{"n":5.5,"e":3473}],[-30,{"n":5,"e":3465}],[-29,{"n":5,"e":3448}],[-27,{"n":6,"e":3433}],[-26,{"n":6,"e":3423}],[-25,{"n":5,"e":3415}],[-24,{"n":4.5,"e":3404}],[-23,{"n":5,"e":3391}],[-22,{"n":6.5,"e":3385}],[-21,{"n":5,"e":3374}],[-20,{"n":5,"e":3365}],[-18,{"n":3.5,"e":3344}],[17,{"n":6,"e":4138}],[16,{"n":5,"e":4152}],[15,{"n":5.5,"e":4159}],[14,{"n":4,"e":4172}],[12,{"n":3.5,"e":4190}],[11,{"n":7.5,"e":4204,"g":1}],[8,{"n":4,"e":4231}],[7,{"n":5,"e":4246}],[6,{"n":5,"e":4253}],[5,{"n":4,"e":4264}],[4,{"n":5,"e":4272}],[3,{"n":4.5,"e":4286}],[2,{"n":5,"e":4294}],[1,{"n":7,"e":4299}]],"a":{"m":22,"a":25,"M":30,"n":8}}],[863,{"n":"Bravo","f":"Claudio","fp":"G","r":7,"c":40,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pg":1},"p":[[12,{"n":4,"e":4190}]]}],[866,{"n":"Gündogan","f":"Ilkay","fp":"MD","r":21,"c":40,"s":{"g":1,"s":81,"n":15,"a":5.4,"d":0.89,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":4,"Os":189.5,"On":34,"Oa":5.57,"Od":0.87,"pm":34},"p":[[-38,{"n":7.5,"e":3538,"g":1}],[-37,{"n":6,"e":3534}],[-36,{"n":5,"e":3519}],[-35,{"n":6,"e":3514}],[-34,{"n":6.5,"e":3500}],[-32,{"n":6.5,"e":3483}],[-31,{"n":6,"e":3473}],[-30,{"n":6.5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":6,"e":3447}],[-27,{"n":5.5,"e":3433}],[-26,{"n":7,"e":3423,"g":1}],[-25,{"n":5.5,"e":3415}],[-24,{"n":5,"e":3404}],[-23,{"n":5,"e":3391}],[-22,{"n":5,"e":3385}],[-21,{"n":5,"e":3374}],[-19,{"n":4,"e":3352}],[-18,{"n":5,"e":3344,"g":1}],[17,{"n":6,"e":4138}],[16,{"n":5,"e":4152}],[14,{"n":5,"e":4172}],[13,{"n":5.5,"e":4184}],[12,{"n":5,"e":4190}],[11,{"n":5.5,"e":4204}],[10,{"n":7.5,"e":4212,"g":1}],[9,{"n":7,"e":4221}],[8,{"n":5,"e":4231}],[7,{"n":5.5,"e":4246}],[5,{"n":4,"e":4264}],[4,{"n":4.5,"e":4272}],[3,{"n":5,"e":4286}],[2,{"n":5.5,"e":4294}],[1,{"n":5,"e":4299}]],"a":{"m":23,"a":27,"M":30,"n":8}}],[931,{"n":"Kompany","f":"Vincent","fp":"DC","r":14,"c":40,"s":{"Og":1,"Os":57,"On":10,"Oa":5.7,"Od":0.54,"pd":10},"p":[[-38,{"n":5.5,"e":3538}],[-37,{"n":7,"e":3534,"g":1}],[-36,{"n":5.5,"e":3519}],[-34,{"n":5.5,"e":3500}],[-31,{"n":6,"e":3473}],[-30,{"n":5.5,"e":3465}],[-29,{"n":5,"e":3448}],[-28,{"n":6,"e":3447}],[-21,{"n":5.5,"e":3374}],[-20,{"n":5.5,"e":3365}]]}],[966,{"n":"Gabriel Jesus","f":"","fp":"A","r":19,"c":40,"s":{"g":5,"s":76.5,"n":14,"a":5.46,"d":1.28,"Sg":4,"Ss":59.5,"Sn":11,"Sa":5.41,"Sd":1.41,"Og":9,"Os":149.5,"On":29,"Oa":5.16,"Od":1.13,"pa":29},"p":[[-37,{"n":4,"e":3534}],[-36,{"n":4.5,"e":3519}],[-34,{"n":6,"e":3500,"g":1}],[-33,{"n":6,"e":3492}],[-32,{"n":4,"e":3483}],[-31,{"n":4.5,"e":3473}],[-30,{"n":4.5,"e":3465}],[-29,{"n":4,"e":3448}],[-27,{"n":6,"e":3433,"g":1}],[-26,{"n":4.5,"e":3423}],[-25,{"n":4.5,"e":3415}],[-24,{"n":4.5,"e":3404}],[-22,{"n":7,"e":3385,"g":2}],[-20,{"n":5,"e":3365}],[-18,{"n":4,"e":3344}],[17,{"n":6,"e":4138}],[16,{"n":4,"e":4152}],[15,{"n":7.5,"e":4159,"g":2}],[14,{"n":5,"e":4172}],[13,{"n":4,"e":4184}],[12,{"n":4,"e":4190}],[11,{"n":5,"e":4204}],[10,{"n":5.5,"e":4212}],[9,{"n":7.5,"e":4221,"g":1}],[8,{"n":4,"e":4231}],[7,{"n":7,"e":4246,"g":1}],[5,{"n":5.5,"e":4264}],[2,{"n":5,"e":4294}],[1,{"n":6.5,"e":4299,"g":1}]],"a":{"m":14,"a":19,"M":23,"n":6}}],[1005,{"n":"Foden","f":"Phil","fp":"MO","r":6,"c":40,"s":{"s":38,"n":8,"a":4.75,"d":0.53,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":64,"On":13,"Oa":4.92,"Od":0.84,"pm":4,"pa":9},"p":[[-37,{"n":4,"e":3534}],[-35,{"n":6.5,"e":3514,"g":1}],[-33,{"n":6.5,"e":3492}],[-30,{"n":4.5,"e":3465}],[-28,{"n":4.5,"e":3447}],[17,{"n":5.5,"e":4138}],[15,{"n":4.5,"e":4159}],[14,{"n":4.5,"e":4172}],[13,{"n":5,"e":4184}],[11,{"n":4.5,"e":4204}],[10,{"n":5.5,"e":4212}],[9,{"n":4.5,"e":4221}],[1,{"n":4,"e":4299}]]}],[1049,{"n":"Aleix García","f":"","fp":"MD","r":1,"c":40,"s":{"Og":2,"Os":83.5,"On":17,"Oa":4.91,"Od":0.96,"pm":16,"pa":1},"p":[[-36,{"n":5,"e":2323}],[-32,{"n":6,"e":2284}],[-28,{"n":5,"e":2249}],[-27,{"n":4,"e":2237}],[-23,{"n":4,"e":2196}],[-17,{"n":4.5,"e":2138}],[-35,{"n":5,"e":2315}],[-33,{"n":3.5,"e":2295}],[-30,{"n":4.5,"e":2263}],[-26,{"n":5,"e":2231}],[-25,{"n":4.5,"e":2217}],[-24,{"n":5,"e":2209}],[-22,{"n":4.5,"e":2184}],[-21,{"n":4.5,"e":2177}],[-20,{"n":7,"e":2163,"g":1}],[-19,{"n":4.5,"e":2157}],[-18,{"n":7,"e":2150,"g":1}]]}],[1099,{"n":"Tosin Adarabioyo","f":"","fp":"DC","r":1,"c":40}],[1279,{"n":"Ederson","f":"","fp":"G","r":16,"c":40,"s":{"s":86.5,"n":16,"a":5.41,"d":1.36,"Ss":26,"Sn":5,"Sa":5.2,"Sd":1.25,"Os":201,"On":37,"Oa":5.43,"Od":1.02,"pg":37},"p":[[-38,{"n":5,"e":3538}],[-37,{"n":5.5,"e":3534}],[-36,{"n":5.5,"e":3519}],[-35,{"n":7,"e":3514}],[-34,{"n":5,"e":3500}],[-33,{"n":5.5,"e":3492}],[-32,{"n":5,"e":3483}],[-31,{"n":6,"e":3473}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":6,"e":3447}],[-27,{"n":6,"e":3433}],[-26,{"n":6.5,"e":3423}],[-25,{"n":5,"e":3415}],[-24,{"n":4.5,"e":3404}],[-23,{"n":6,"e":3391}],[-22,{"n":5.5,"e":3385}],[-21,{"n":6,"e":3374}],[-20,{"n":5.5,"e":3365}],[-19,{"n":5,"e":3352}],[-18,{"n":4,"e":3344}],[17,{"n":6,"e":4138}],[16,{"n":7,"e":4152}],[15,{"n":4.5,"e":4159}],[14,{"n":4,"e":4172}],[13,{"n":4.5,"e":4184}],[11,{"n":4,"e":4204}],[10,{"n":7,"e":4212}],[9,{"n":6,"e":4221}],[8,{"n":4,"e":4231}],[7,{"n":7,"e":4246}],[6,{"n":6.5,"e":4253}],[5,{"n":3,"e":4264}],[4,{"n":6,"e":4272}],[3,{"n":6.5,"e":4286}],[2,{"n":4,"e":4294}],[1,{"n":6.5,"e":4299}]],"a":{"m":22,"a":31,"M":41,"n":11}}],[1357,{"n":"Zinchenko","f":"Oleksandr","fp":"MD","r":7,"c":40,"s":{"s":39.5,"n":8,"a":4.94,"d":0.78,"Ss":5,"Sn":1,"Sa":5,"Os":103.5,"On":20,"Oa":5.18,"Od":0.77,"pd":18,"pm":2},"p":[[-38,{"n":5,"e":3538}],[-37,{"n":4.5,"e":3534}],[-36,{"n":6.5,"e":3519}],[-35,{"n":5,"e":3514}],[-33,{"n":5,"e":3492}],[-32,{"n":5.5,"e":3483}],[-31,{"n":5,"e":3473}],[-30,{"n":5,"e":3465}],[-29,{"n":5.5,"e":3448}],[-28,{"n":4.5,"e":3447}],[-26,{"n":7,"e":3423}],[-20,{"n":5.5,"e":3365}],[17,{"n":5,"e":4138}],[8,{"n":4.5,"e":4231}],[7,{"n":5.5,"e":4246}],[5,{"n":3.5,"e":4264}],[4,{"n":5.5,"e":4272}],[3,{"n":5,"e":4286}],[2,{"n":4.5,"e":4294}],[1,{"n":6,"e":4299}]]}],[1367,{"n":"Grimshaw","f":"Daniel","fp":"G","r":1,"c":40}],[1617,{"n":"Laporte","f":"Aymeric","fp":"DC","r":7,"c":40,"s":{"s":22,"n":4,"a":5.5,"d":0.41,"Og":2,"Os":127.5,"On":22,"Oa":5.8,"Od":0.83,"pd":22},"p":[[-38,{"n":7,"e":3538,"g":1}],[-37,{"n":6,"e":3534}],[-36,{"n":6.5,"e":3519}],[-35,{"n":6,"e":3514}],[-34,{"n":5.5,"e":3500}],[-33,{"n":7,"e":3492}],[-32,{"n":6,"e":3483}],[-31,{"n":6,"e":3473}],[-27,{"n":7,"e":3433,"g":1}],[-26,{"n":6,"e":3423}],[-25,{"n":6.5,"e":3415}],[-24,{"n":5,"e":3404}],[-23,{"n":6.5,"e":3391}],[-22,{"n":6,"e":3385}],[-21,{"n":4.5,"e":3374}],[-20,{"n":5.5,"e":3365}],[-19,{"n":4,"e":3352}],[-18,{"n":4.5,"e":3344}],[4,{"n":5,"e":4272}],[3,{"n":5.5,"e":4286}],[2,{"n":5.5,"e":4294}],[1,{"n":6,"e":4299}]]}],[1915,{"n":"Moreno","f":"Marlos","fp":"A","r":1,"c":40}],[2124,{"n":"Nmecha","f":"Lukas","fp":"A","r":3,"c":40}],[2427,{"n":"Rodrigo","f":"","fp":"MD","r":22,"c":40,"s":{"g":2,"s":89.5,"n":15,"a":5.97,"d":1.11,"Sg":1,"Ss":34.5,"Sn":6,"Sa":5.75,"Sd":1.21,"Og":3,"Os":217,"On":36,"Oa":6.03,"Od":0.95,"pd":1,"pm":35},"p":[[-38,{"n":7,"e":2348,"g":1}],[-37,{"n":6,"e":2333}],[-36,{"n":4,"e":2328}],[-35,{"n":6,"e":2312}],[-34,{"n":5.5,"e":2303}],[-33,{"n":6.5,"e":2298}],[-32,{"n":7.5,"e":2283}],[-31,{"n":5.5,"e":2277}],[-28,{"n":5.5,"e":2242}],[-27,{"n":6.5,"e":2234}],[-26,{"n":6.5,"e":2229}],[-25,{"n":7,"e":2214}],[-24,{"n":5,"e":2207}],[-22,{"n":5.5,"e":2188}],[-21,{"n":6,"e":2174}],[-20,{"n":7,"e":2171}],[-19,{"n":6,"e":2153}],[-18,{"n":7,"e":2147}],[-17,{"n":6,"e":2133}],[-30,{"n":6.5,"e":2263}],[-23,{"n":5,"e":2192}],[17,{"n":5.5,"e":4138}],[16,{"n":5.5,"e":4152}],[15,{"n":8,"e":4159,"g":1}],[14,{"n":4.5,"e":4172}],[13,{"n":6,"e":4184}],[12,{"n":5,"e":4190}],[9,{"n":6,"e":4221}],[8,{"n":5,"e":4231}],[7,{"n":5.5,"e":4246}],[6,{"n":7.5,"e":4253}],[5,{"n":7,"e":4264,"g":1}],[4,{"n":7.5,"e":4272}],[3,{"n":4.5,"e":4286}],[2,{"n":5.5,"e":4294}],[1,{"n":6.5,"e":4299}]],"a":{"m":26,"a":29,"M":31,"n":5}}],[2756,{"n":"Arzani","f":"Daniel","fp":"MD","r":8,"c":40}],[2818,{"n":"Sandler","f":"Philippe","fp":"DC","r":1,"c":40}],[2830,{"n":"Muric","f":"Arijanet","fp":"G","r":1,"c":40}],[2883,{"n":"Bernabé","f":"Adrián","fp":"MD","r":1,"c":40}],[2928,{"n":"Gomes","f":"Claudio","fp":"MD","r":1,"c":40}],[2973,{"n":"Eric García","f":"","fp":"DC","r":5,"c":40,"s":{"s":10.5,"n":2,"a":5.25,"d":0.35,"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":2},"p":[[15,{"n":5,"e":4159}],[6,{"n":5.5,"e":4253}]]}],[3224,{"n":"Poveda-Ocampo","f":"Ian Carlo","fp":"A","r":1,"c":40}],[3226,{"n":"Bolton","f":"Luke","fp":"MD","r":1,"c":40}],[3499,{"n":"Nmecha","f":"Felix","fp":"MD","r":3,"c":40}],[3514,{"n":"Humphreys-Grant","f":"Cameron","fp":"DC","r":1,"c":40}],[3692,{"n":"Palmer-Brown","f":"Erik","fp":"DC","r":1,"c":40}],[3696,{"n":"Angeliño","f":"","fp":"DL","r":13,"c":40,"s":{"s":30,"n":6,"a":5,"d":0.32,"Os":30,"On":6,"Oa":5,"Od":0.32,"pd":6},"p":[[16,{"n":5,"e":4152}],[15,{"n":5,"e":4159}],[12,{"n":4.5,"e":4190}],[11,{"n":5.5,"e":4204}],[10,{"n":5,"e":4212}],[6,{"n":5,"e":4253}]]}],[4567,{"n":"João Cancelo","f":"","fp":"DL","r":14,"c":40,"s":{"s":30.5,"n":6,"a":5.08,"d":1.07,"Os":30.5,"On":6,"Oa":5.08,"Od":1.07,"pd":6},"p":[[13,{"n":5,"e":4184}],[10,{"n":6,"e":4212}],[9,{"n":6.5,"e":4221}],[8,{"n":3.5,"e":4231}],[6,{"n":5,"e":4253}],[3,{"n":4.5,"e":4286}]]}],[5412,{"n":"Bazunu","f":"Gavin","fp":"G","r":1,"c":40}],[5417,{"n":"Dionkou","f":"Alpha Richard","fp":"DC","r":1,"c":40}],[5419,{"n":"Zoubdi Touaizi","f":"Nabili","fp":"A","r":1,"c":40}],[5420,{"n":"Harwood-Bellis","f":"Taylor","fp":"DC","r":1,"c":40}],[5421,{"n":"Knight","f":"Ben","fp":"MD","r":1,"c":40}],[5438,{"n":"Iker Pozo","f":"","fp":"MD","r":1,"c":40}],[5993,{"n":"Doyle","f":"Tommy","fp":"MD","r":1,"c":40}],[6128,{"n":"Carson","f":"Scott","fp":"G","r":1,"c":40}],[595,{"n":"Pogba","f":"Paul","fp":"MD","r":16,"c":31,"s":{"s":26,"n":5,"a":5.2,"d":1.44,"Og":10,"Os":145.5,"On":26,"Oa":5.6,"Od":1.55,"pm":26},"p":[[4,{"n":5,"e":4268}],[2,{"n":5,"e":4297}],[-38,{"n":4.5,"e":3544}],[-34,{"n":7,"e":3504,"g":2}],[-33,{"n":4,"e":3497}],[-32,{"n":4.5,"e":3486}],[-29,{"n":3.5,"e":3453}],[-22,{"n":6.5,"e":3386}],[-37,{"n":4,"e":3533}],[-36,{"n":4.5,"e":3524}],[-35,{"n":4,"e":3512}],[-31,{"n":4.5,"e":3473}],[-30,{"n":4.5,"e":3458}],[-28,{"n":6,"e":3442}],[-27,{"n":5.5,"e":3435}],[-26,{"n":7.5,"e":3420,"g":2}],[-25,{"n":7,"e":3414}],[-24,{"n":6,"e":3403,"g":1}],[-23,{"n":7,"e":3393,"g":1}],[-21,{"n":4.5,"e":3375}],[-20,{"n":9,"e":3364,"g":2}],[-19,{"n":8,"e":3354,"g":2}],[-18,{"n":7.5,"e":3340}],[7,{"n":5,"e":4247}],[3,{"n":3.5,"e":4281}],[1,{"n":7.5,"e":4307}]],"a":{"m":29,"a":31,"M":32,"n":5}}],[600,{"n":"de Gea","f":"David","fp":"G","r":16,"c":31,"s":{"s":88.5,"n":17,"a":5.21,"d":1.02,"Ss":10,"Sn":2,"Sa":5,"Sd":1.41,"Os":200,"On":38,"Oa":5.26,"Od":1.09,"pg":38},"p":[[15,{"n":6,"e":4163}],[13,{"n":4,"e":4185}],[10,{"n":5,"e":4214}],[8,{"n":4.5,"e":4237}],[6,{"n":5,"e":4255}],[-38,{"n":5.5,"e":3544}],[-37,{"n":5,"e":3533}],[-36,{"n":4,"e":3524}],[-35,{"n":4.5,"e":3512}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4.5,"e":3497}],[-32,{"n":7,"e":3486}],[-31,{"n":4,"e":3473}],[-30,{"n":3.5,"e":3458}],[-29,{"n":4.5,"e":3453}],[-28,{"n":5,"e":3442}],[-27,{"n":5.5,"e":3435}],[-26,{"n":6,"e":3420}],[-25,{"n":7,"e":3414}],[-24,{"n":4.5,"e":3403}],[-23,{"n":5,"e":3393}],[-22,{"n":8.5,"e":3386}],[-21,{"n":6,"e":3375}],[-20,{"n":5,"e":3364}],[-19,{"n":5,"e":3354}],[-18,{"n":6,"e":3340}],[17,{"n":4,"e":4144}],[16,{"n":6,"e":4152}],[14,{"n":4,"e":4175}],[12,{"n":5,"e":4197}],[11,{"n":6,"e":4200}],[9,{"n":5.5,"e":4224}],[7,{"n":6,"e":4247}],[5,{"n":6.5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":4,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":7.5,"e":4307}]],"a":{"m":20,"a":22,"M":25,"n":8}}],[604,{"n":"Mata","f":"Juan","fp":"MO","r":8,"c":31,"s":{"s":44.5,"n":9,"a":4.94,"d":0.17,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":94,"On":19,"Oa":4.95,"Od":0.47,"pm":18,"pa":1},"p":[[-37,{"n":4.5,"e":3533}],[-36,{"n":6,"e":3524,"g":1}],[-34,{"n":5,"e":3504}],[-32,{"n":4.5,"e":3486}],[-27,{"n":5,"e":3435}],[-26,{"n":6,"e":3420}],[-24,{"n":4.5,"e":3403}],[-23,{"n":5,"e":3393}],[-21,{"n":4,"e":3375}],[-19,{"n":5,"e":3354}],[17,{"n":5,"e":4144}],[14,{"n":5,"e":4175}],[8,{"n":5,"e":4237}],[6,{"n":4.5,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":5,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":5,"e":4307}]]}],[608,{"n":"Antonio Valencia","f":"","fp":"DC","r":4,"c":31,"s":{"Os":10.5,"On":2,"Oa":5.25,"Od":0.35,"pd":1,"pm":1},"p":[[-38,{"n":5,"e":3544}],[-21,{"n":5.5,"e":3375}]]}],[616,{"n":"Matic","f":"Nemanja","fp":"MD","r":8,"c":31,"s":{"s":14,"n":3,"a":4.67,"d":0.29,"Og":1,"Os":87,"On":17,"Oa":5.12,"Od":1.01,"pm":17},"p":[[-37,{"n":5,"e":3533}],[-36,{"n":6,"e":3524}],[-35,{"n":3,"e":3512}],[-32,{"n":3.5,"e":3486}],[-30,{"n":5,"e":3458}],[-26,{"n":4.5,"e":3420}],[-25,{"n":5,"e":3414}],[-24,{"n":5,"e":3403}],[-23,{"n":5.5,"e":3393}],[-22,{"n":6,"e":3386}],[-21,{"n":6.5,"e":3375}],[-20,{"n":5,"e":3364}],[-19,{"n":6,"e":3354,"g":1}],[-18,{"n":7,"e":3340}],[6,{"n":4.5,"e":4255}],[5,{"n":4.5,"e":4260}],[4,{"n":5,"e":4268}]]}],[626,{"n":"Martial","f":"Anthony","fp":"A","r":21,"c":31,"s":{"g":4,"s":60.5,"n":11,"a":5.5,"d":1.1,"Sg":1,"Ss":11.5,"Sn":2,"Sa":5.75,"Sd":1.06,"Og":7,"Os":131,"On":25,"Oa":5.24,"Od":1.11,"pm":3,"pa":22},"p":[[-38,{"n":4.5,"e":3544}],[-35,{"n":3,"e":3512}],[-34,{"n":4.5,"e":3504}],[-33,{"n":4.5,"e":3497}],[-32,{"n":6,"e":3486,"g":1}],[-31,{"n":4.5,"e":3473}],[-30,{"n":4.5,"e":3458}],[-26,{"n":7,"e":3420,"g":1}],[-25,{"n":5,"e":3414}],[-23,{"n":5,"e":3393}],[-22,{"n":5,"e":3386}],[-21,{"n":4,"e":3375}],[-20,{"n":6,"e":3364}],[-18,{"n":7,"e":3340,"g":1}],[17,{"n":5,"e":4144}],[16,{"n":6.5,"e":4152,"g":1}],[14,{"n":5,"e":4175}],[13,{"n":4.5,"e":4185}],[12,{"n":7,"e":4197}],[11,{"n":4,"e":4200}],[10,{"n":6,"e":4214,"g":1}],[9,{"n":4,"e":4224}],[3,{"n":5.5,"e":4281}],[2,{"n":6,"e":4297,"g":1}],[1,{"n":7,"e":4307,"g":1}]],"a":{"m":19,"a":26,"M":43,"n":6}}],[637,{"n":"Fellaini","f":"Marouane","fp":"MD","r":7,"c":31,"s":{"Os":5,"On":1,"Oa":5,"pm":1},"p":[[-18,{"n":5,"e":3340}]]}],[641,{"n":"Rashford","f":"Marcus","fp":"A","r":39,"c":31,"s":{"g":10,"s":100,"n":17,"a":5.88,"d":1.42,"Sg":10,"Ss":100,"Sn":17,"Sa":5.88,"Sd":1.42,"Og":17,"Os":202.5,"On":36,"Oa":5.63,"Od":1.33,"pm":11,"pa":25},"p":[[-38,{"n":5,"e":3544}],[-37,{"n":6,"e":3533}],[-36,{"n":4.5,"e":3524}],[-35,{"n":3,"e":3512}],[-34,{"n":4,"e":3504}],[-32,{"n":6,"e":3486,"g":1}],[-31,{"n":4.5,"e":3473}],[-30,{"n":5,"e":3458}],[-29,{"n":4.5,"e":3453}],[-28,{"n":4.5,"e":3442}],[-27,{"n":5,"e":3435}],[-25,{"n":7,"e":3414,"g":1}],[-24,{"n":4,"e":3403}],[-23,{"n":6.5,"e":3393,"g":1}],[-22,{"n":6,"e":3386,"g":1}],[-21,{"n":7.5,"e":3375,"g":1}],[-20,{"n":7,"e":3364,"g":1}],[-19,{"n":5.5,"e":3354}],[-18,{"n":7,"e":3340,"g":1}],[17,{"n":5,"e":4144}],[16,{"n":7,"e":4152,"g":1}],[15,{"n":8,"e":4163,"g":2}],[14,{"n":5,"e":4175}],[13,{"n":7,"e":4185,"g":1}],[12,{"n":6.5,"e":4197,"g":1}],[11,{"n":5,"e":4200}],[10,{"n":8,"e":4214,"g":1}],[9,{"n":6,"e":4224,"g":1}],[8,{"n":4,"e":4237}],[7,{"n":6,"e":4247}],[6,{"n":4,"e":4255}],[5,{"n":6,"e":4260,"g":1}],[4,{"n":5,"e":4268}],[3,{"n":3.5,"e":4281}],[2,{"n":6,"e":4297}],[1,{"n":8,"e":4307,"g":2}]],"a":{"m":29,"a":48,"M":115,"n":8}}],[706,{"n":"Bailly","f":"Eric","fp":"DC","r":5,"c":31,"s":{"Os":27.5,"On":5,"Oa":5.5,"Od":0.5,"pd":5},"p":[[-36,{"n":6,"e":3524}],[-28,{"n":5,"e":3442}],[-26,{"n":5,"e":3420}],[-25,{"n":6,"e":3414}],[-20,{"n":5.5,"e":3364}]]}],[731,{"n":"Rojo","f":"Marcos","fp":"DC","r":5,"c":31,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":29,"On":6,"Oa":4.83,"Od":0.26,"pd":6},"p":[[-36,{"n":5,"e":3524}],[-34,{"n":5,"e":3504}],[-32,{"n":4.5,"e":3486}],[12,{"n":5,"e":4197}],[9,{"n":4.5,"e":4224}],[8,{"n":5,"e":4237}]]}],[743,{"n":"Jones","f":"Phil","fp":"DC","r":5,"c":31,"s":{"s":3.5,"n":1,"a":3.5,"Os":86,"On":16,"Oa":5.38,"Od":1.06,"pd":16},"p":[[-38,{"n":4,"e":3544}],[-37,{"n":5.5,"e":3533}],[-35,{"n":3.5,"e":3512}],[-34,{"n":6,"e":3504}],[-33,{"n":5.5,"e":3497}],[-32,{"n":6.5,"e":3486}],[-26,{"n":7,"e":3420}],[-25,{"n":5,"e":3414}],[-24,{"n":5,"e":3403}],[-23,{"n":5.5,"e":3393}],[-22,{"n":5.5,"e":3386}],[-21,{"n":6,"e":3375}],[-20,{"n":5,"e":3364}],[-19,{"n":5.5,"e":3354}],[-18,{"n":7,"e":3340}],[13,{"n":3.5,"e":4185}]]}],[768,{"n":"Lingard","f":"Jesse","fp":"MO","r":12,"c":31,"s":{"s":70,"n":14,"a":5,"d":0.62,"Ss":40.5,"Sn":8,"Sa":5.06,"Sd":0.62,"Og":2,"Os":139,"On":28,"Oa":4.96,"Od":0.83,"pm":24,"pa":4},"p":[[-38,{"n":4,"e":3544}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4,"e":3497}],[-32,{"n":5,"e":3486}],[-31,{"n":4.5,"e":3473}],[-27,{"n":4.5,"e":3435}],[-25,{"n":5.5,"e":3414}],[-24,{"n":5,"e":3403}],[-23,{"n":4,"e":3393}],[-22,{"n":5,"e":3386}],[-21,{"n":5,"e":3375}],[-20,{"n":4.5,"e":3364}],[-19,{"n":4.5,"e":3354}],[-18,{"n":8,"e":3340,"g":2}],[17,{"n":4,"e":4144}],[16,{"n":6,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":5,"e":4175}],[13,{"n":4.5,"e":4185}],[12,{"n":5.5,"e":4197}],[11,{"n":5,"e":4200}],[10,{"n":5.5,"e":4214}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4255}],[4,{"n":5,"e":4268}],[3,{"n":4,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":6,"e":4307}]]}],[804,{"n":"Shaw","f":"Luke","fp":"DL","r":10,"c":31,"s":{"s":35.5,"n":7,"a":5.07,"d":0.45,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":0.25,"Os":122.5,"On":24,"Oa":5.1,"Od":0.93,"pd":23,"pm":1},"p":[[-37,{"n":4.5,"e":3533}],[-36,{"n":6,"e":3524}],[-33,{"n":3.5,"e":3497}],[-32,{"n":7,"e":3486}],[-31,{"n":3,"e":3473}],[-30,{"n":5,"e":3458}],[-29,{"n":4.5,"e":3453}],[-28,{"n":6.5,"e":3442}],[-27,{"n":5,"e":3435}],[-26,{"n":5,"e":3420}],[-25,{"n":5.5,"e":3414}],[-24,{"n":4.5,"e":3403}],[-22,{"n":6.5,"e":3386}],[-21,{"n":5,"e":3375}],[-20,{"n":5.5,"e":3364}],[-19,{"n":4,"e":3354}],[-18,{"n":6,"e":3340}],[17,{"n":5,"e":4144}],[16,{"n":5,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4175}],[3,{"n":5,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":6,"e":4307}]]}],[876,{"n":"Grant","f":"Lee","fp":"G","r":1,"c":31}],[889,{"n":"Romero","f":"Sergio","fp":"G","r":7,"c":31}],[898,{"n":"Maguire","f":"Harry","fp":"DC","r":20,"c":31,"s":{"s":91.5,"n":17,"a":5.38,"d":0.8,"Ss":91.5,"Sn":17,"Sa":5.38,"Sd":0.8,"Og":1,"Os":191,"On":36,"Oa":5.31,"Od":0.92,"pd":36},"p":[[-38,{"n":6,"e":3542}],[-37,{"n":5.5,"e":3534}],[-36,{"n":6,"e":3522}],[-35,{"n":4,"e":3516}],[-34,{"n":5.5,"e":3502}],[-31,{"n":3.5,"e":3470}],[-30,{"n":5.5,"e":3463}],[-29,{"n":4.5,"e":3455}],[-28,{"n":6,"e":3441}],[-27,{"n":3.5,"e":3434}],[-26,{"n":4,"e":3425}],[-25,{"n":5,"e":3414}],[-24,{"n":7,"e":3406,"g":1}],[-23,{"n":4,"e":3397}],[-22,{"n":5.5,"e":3384}],[-21,{"n":6.5,"e":3372}],[-20,{"n":5.5,"e":3362}],[-19,{"n":6,"e":3352}],[-18,{"n":6,"e":3341}],[17,{"n":6,"e":4144}],[16,{"n":6,"e":4152}],[15,{"n":5.5,"e":4163}],[14,{"n":4,"e":4175}],[13,{"n":4.5,"e":4185}],[12,{"n":5,"e":4197}],[11,{"n":5,"e":4200}],[10,{"n":6,"e":4214}],[9,{"n":5.5,"e":4224}],[8,{"n":5.5,"e":4237}],[7,{"n":5,"e":4247}],[6,{"n":4,"e":4255}],[5,{"n":6.5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":5.5,"e":4281}],[2,{"n":5.5,"e":4297}],[1,{"n":7,"e":4307}]],"a":{"m":26,"a":30,"M":33,"n":6}}],[947,{"n":"Young","f":"Ashley","fp":"DL","r":10,"c":31,"s":{"s":52,"n":11,"a":4.73,"d":0.34,"Og":1,"Os":139.5,"On":29,"Oa":4.81,"Od":0.69,"pd":28,"pm":1},"p":[[-38,{"n":4.5,"e":3544}],[-37,{"n":5.5,"e":3533}],[-36,{"n":5,"e":3524}],[-35,{"n":3.5,"e":3512}],[-33,{"n":3,"e":3497}],[-32,{"n":5.5,"e":3486}],[-31,{"n":5,"e":3473}],[-30,{"n":4,"e":3458}],[-29,{"n":4,"e":3453}],[-28,{"n":6.5,"e":3442,"g":1}],[-27,{"n":5.5,"e":3435}],[-25,{"n":5.5,"e":3414}],[-24,{"n":4.5,"e":3403}],[-23,{"n":5,"e":3393}],[-22,{"n":5.5,"e":3386}],[-20,{"n":5,"e":3364}],[-19,{"n":5,"e":3354}],[-18,{"n":5,"e":3340}],[16,{"n":5,"e":4152}],[15,{"n":5,"e":4163}],[11,{"n":5,"e":4200}],[10,{"n":5,"e":4214}],[9,{"n":4.5,"e":4224}],[8,{"n":5,"e":4237}],[7,{"n":4.5,"e":4247}],[6,{"n":4,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":4.5,"e":4268}],[3,{"n":4.5,"e":4281}]]}],[1062,{"n":"Tuanzebe","f":"Axel","fp":"DC","r":6,"c":31,"s":{"s":22,"n":5,"a":4.4,"d":0.65,"Os":22,"On":5,"Oa":4.4,"Od":0.65,"pd":5},"p":[[16,{"n":5,"e":4152}],[13,{"n":4.5,"e":4185}],[8,{"n":4,"e":4237}],[7,{"n":3.5,"e":4247}],[5,{"n":5,"e":4260}]]}],[1063,{"n":"Fosu-Mensah","f":"Timothy","fp":"DL","r":1,"c":31,"s":{"Os":23.5,"On":5,"Oa":4.7,"Od":0.67,"pd":5},"p":[[-34,{"n":5.5,"e":3501}],[-32,{"n":4,"e":3483}],[-31,{"n":5,"e":3472}],[-25,{"n":5,"e":3412}],[-21,{"n":4,"e":3369}]]}],[1079,{"n":"James","f":"Daniel","fp":"MO","r":20,"c":31,"s":{"g":3,"s":98,"n":17,"a":5.76,"d":0.87,"Sg":3,"Ss":98,"Sn":17,"Sa":5.76,"Sd":0.87,"Og":3,"Os":98,"On":17,"Oa":5.76,"Od":0.87,"pm":15,"pa":2},"p":[[17,{"n":6,"e":4144}],[16,{"n":7,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4175}],[13,{"n":6,"e":4185}],[12,{"n":6.5,"e":4197}],[11,{"n":5.5,"e":4200}],[10,{"n":7,"e":4214}],[9,{"n":6,"e":4224}],[8,{"n":4.5,"e":4237}],[7,{"n":5.5,"e":4247}],[6,{"n":4.5,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":7,"e":4268,"g":1}],[3,{"n":6,"e":4281,"g":1}],[2,{"n":5.5,"e":4297}],[1,{"n":6.5,"e":4307,"g":1}]],"a":{"m":18,"a":21,"M":26,"n":8}}],[1080,{"n":"Joel Pereira","f":"","fp":"G","r":1,"c":31}],[1095,{"n":"Wan-Bissaka","f":"Aaron","fp":"DL","r":17,"c":31,"s":{"s":76,"n":15,"a":5.07,"d":0.88,"Ss":46.5,"Sn":9,"Sa":5.17,"Sd":0.66,"Os":176.5,"On":34,"Oa":5.19,"Od":0.78,"pd":32,"pm":2},"p":[[-38,{"n":4.5,"e":3540}],[-37,{"n":5,"e":3530}],[-36,{"n":5.5,"e":3520}],[-35,{"n":5.5,"e":3509}],[-34,{"n":5,"e":3500}],[-33,{"n":6,"e":3493}],[-32,{"n":6,"e":3482}],[-31,{"n":5,"e":3474}],[-30,{"n":4.5,"e":3461}],[-29,{"n":7,"e":3450}],[-26,{"n":5,"e":3419}],[-25,{"n":6,"e":3412}],[-24,{"n":5,"e":3405}],[-23,{"n":4,"e":3392}],[-22,{"n":5,"e":3382}],[-21,{"n":6,"e":3377}],[-20,{"n":5,"e":3360}],[-19,{"n":5.5,"e":3350}],[-18,{"n":5,"e":3344}],[17,{"n":6,"e":4144}],[16,{"n":6,"e":4152}],[15,{"n":5,"e":4163}],[14,{"n":5,"e":4175}],[13,{"n":4,"e":4185}],[12,{"n":5.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":5.5,"e":4214}],[9,{"n":5,"e":4224}],[6,{"n":4,"e":4255}],[5,{"n":5,"e":4260}],[4,{"n":5,"e":4268}],[3,{"n":3.5,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":7,"e":4307}]]}],[1286,{"n":"Lindelöf","f":"Victor","fp":"DC","r":17,"c":31,"s":{"g":1,"ao":1,"s":82.5,"n":16,"a":5.16,"d":0.91,"Sg":1,"Sao":1,"Ss":46.5,"Sn":9,"Sa":5.17,"Sd":0.79,"Og":2,"Oao":1,"Os":175,"On":33,"Oa":5.3,"Od":0.94,"pd":33},"p":[[-37,{"n":5.5,"e":3533}],[-36,{"n":5.5,"e":3524}],[-35,{"n":3,"e":3512}],[-33,{"n":4,"e":3497}],[-31,{"n":4.5,"e":3473}],[-30,{"n":5,"e":3458}],[-29,{"n":5,"e":3453}],[-28,{"n":7,"e":3442}],[-27,{"n":5.5,"e":3435}],[-25,{"n":6,"e":3414}],[-24,{"n":6,"e":3403,"g":1}],[-23,{"n":5.5,"e":3393}],[-22,{"n":6,"e":3386}],[-21,{"n":7,"e":3375}],[-20,{"n":5.5,"e":3364}],[-19,{"n":5.5,"e":3354}],[-18,{"n":6,"e":3340}],[17,{"n":4,"e":4144,"a":1}],[16,{"n":6,"e":4152}],[15,{"n":5.5,"e":4163}],[14,{"n":6,"e":4175,"g":1}],[13,{"n":4,"e":4185}],[12,{"n":5.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":5.5,"e":4214}],[9,{"n":5.5,"e":4224}],[7,{"n":5,"e":4247}],[6,{"n":3.5,"e":4255}],[5,{"n":6.5,"e":4260}],[4,{"n":6,"e":4268}],[3,{"n":4,"e":4281}],[2,{"n":5,"e":4297}],[1,{"n":6,"e":4307}]]}],[1355,{"n":"Andreas Pereira","f":"","fp":"MO","r":10,"c":31,"s":{"g":1,"s":76,"n":15,"a":5.07,"d":0.75,"Og":2,"Os":126.5,"On":26,"Oa":4.87,"Od":0.76,"pm":25,"pa":1},"p":[[-38,{"n":4.5,"e":3544}],[-35,{"n":4.5,"e":3512}],[-34,{"n":5,"e":3504}],[-33,{"n":5,"e":3497}],[-32,{"n":4,"e":3486}],[-31,{"n":4,"e":3473}],[-29,{"n":5.5,"e":3453,"g":1}],[-27,{"n":5,"e":3435}],[-24,{"n":3,"e":3403}],[-20,{"n":5,"e":3364}],[-18,{"n":5,"e":3340}],[16,{"n":5.5,"e":4152}],[15,{"n":4.5,"e":4163}],[14,{"n":4,"e":4175}],[13,{"n":4,"e":4185}],[12,{"n":6.5,"e":4197,"g":1}],[11,{"n":4.5,"e":4200}],[10,{"n":5.5,"e":4214}],[9,{"n":5,"e":4224}],[8,{"n":5,"e":4237}],[7,{"n":5,"e":4247}],[6,{"n":5,"e":4255}],[5,{"n":5.5,"e":4260}],[4,{"n":4.5,"e":4268}],[2,{"n":5,"e":4297}],[1,{"n":6.5,"e":4307}]]}],[2062,{"n":"McTominay","f":"Scott","fp":"MD","r":19,"c":31,"s":{"g":2,"s":84,"n":15,"a":5.6,"d":0.85,"Ss":19,"Sn":3,"Sa":6.33,"Sd":0.29,"Og":4,"Os":135,"On":25,"Oa":5.4,"Od":0.82,"pm":25},"p":[[-38,{"n":5.5,"e":3544}],[-37,{"n":5.5,"e":3533,"g":1}],[-36,{"n":4.5,"e":3524}],[-35,{"n":4,"e":3512}],[-33,{"n":6,"e":3497,"g":1}],[-29,{"n":4.5,"e":3453}],[-28,{"n":5.5,"e":3442}],[-27,{"n":6,"e":3435}],[-26,{"n":4.5,"e":3420}],[-22,{"n":5,"e":3386}],[17,{"n":6.5,"e":4144}],[16,{"n":6.5,"e":4152}],[15,{"n":6,"e":4163}],[12,{"n":5.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":6.5,"e":4214,"g":1}],[9,{"n":5,"e":4224}],[8,{"n":4.5,"e":4237}],[7,{"n":6.5,"e":4247,"g":1}],[6,{"n":4.5,"e":4255}],[5,{"n":6,"e":4260}],[4,{"n":6,"e":4268}],[3,{"n":5,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":6.5,"e":4307}]]}],[2286,{"n":"Gomes","f":"Angel","fp":"MO","r":1,"c":31,"s":{"s":4.5,"n":1,"a":4.5,"Os":14.5,"On":3,"Oa":4.83,"Od":0.29,"pm":2,"pa":1},"p":[[-38,{"n":5,"e":3544}],[-19,{"n":5,"e":3354}],[6,{"n":4.5,"e":4255}]]}],[2341,{"n":"Hamilton","f":"Ethan","fp":"MD","r":8,"c":31}],[2541,{"n":"Diogo Dalot","f":"","fp":"DL","r":3,"c":31,"s":{"s":5,"n":1,"a":5,"Os":62.5,"On":13,"Oa":4.81,"Od":0.6,"pd":10,"pm":2,"pa":1},"p":[[-38,{"n":4,"e":3544}],[-37,{"n":5.5,"e":3533}],[-35,{"n":3.5,"e":3512}],[-34,{"n":5,"e":3504}],[-33,{"n":4.5,"e":3497}],[-30,{"n":4.5,"e":3458}],[-29,{"n":5.5,"e":3453}],[-28,{"n":5.5,"e":3442}],[-26,{"n":5,"e":3420}],[-23,{"n":5,"e":3393}],[-22,{"n":5,"e":3386}],[-19,{"n":4.5,"e":3354}],[8,{"n":5,"e":4237}]]}],[2601,{"n":"Fred","f":"","fp":"MO","r":14,"c":31,"s":{"s":71,"n":13,"a":5.46,"d":0.59,"Ss":71,"Sn":13,"Sa":5.46,"Sd":0.59,"Os":113,"On":22,"Oa":5.14,"Od":0.74,"pm":22},"p":[[-35,{"n":3.5,"e":3512}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4,"e":3497}],[-31,{"n":4.5,"e":3473}],[-30,{"n":5.5,"e":3458}],[-29,{"n":5,"e":3453}],[-28,{"n":5,"e":3442}],[-19,{"n":4,"e":3354}],[-18,{"n":5,"e":3340}],[17,{"n":5.5,"e":4144}],[16,{"n":5.5,"e":4152}],[15,{"n":5.5,"e":4163}],[14,{"n":5,"e":4175}],[13,{"n":5.5,"e":4185}],[12,{"n":6,"e":4197}],[11,{"n":6.5,"e":4200}],[10,{"n":6.5,"e":4214}],[9,{"n":5,"e":4224}],[8,{"n":5,"e":4237}],[7,{"n":5,"e":4247}],[6,{"n":4.5,"e":4255}],[5,{"n":5.5,"e":4260}]]}],[2750,{"n":"Kovar","f":"Matej","fp":"G","r":1,"c":31}],[2751,{"n":"Chong","f":"Tahith","fp":"MO","r":1,"c":31,"s":{"s":8.5,"n":2,"a":4.25,"d":0.35,"Os":17.5,"On":4,"Oa":4.38,"Od":0.25,"pa":4},"p":[[-37,{"n":4.5,"e":3533}],[-29,{"n":4.5,"e":3453}],[8,{"n":4,"e":4237}],[5,{"n":4.5,"e":4260}]]}],[2752,{"n":"Bohui","f":"Joshua","fp":"A","r":1,"c":31}],[2757,{"n":"O'Hara","f":"Kieran","fp":"G","r":1,"c":31}],[2976,{"n":"Greenwood","f":"Mason","fp":"A","r":6,"c":31,"s":{"g":2,"s":61.5,"n":13,"a":4.73,"d":0.63,"Sg":1,"Ss":6,"Sn":1,"Sa":6,"Og":2,"Os":75.5,"On":16,"Oa":4.72,"Od":0.58,"pa":16},"p":[[-38,{"n":5,"e":3544}],[-34,{"n":4.5,"e":3504}],[-30,{"n":4.5,"e":3458}],[17,{"n":6,"e":4144,"g":1}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4175}],[13,{"n":6,"e":4185,"g":1}],[12,{"n":4.5,"e":4197}],[11,{"n":4.5,"e":4200}],[10,{"n":4,"e":4214}],[8,{"n":5,"e":4237}],[7,{"n":4,"e":4247}],[4,{"n":4.5,"e":4268}],[3,{"n":4.5,"e":4281}],[2,{"n":4.5,"e":4297}],[1,{"n":4.5,"e":4307}]]}],[3118,{"n":"Garner","f":"James","fp":"MD","r":1,"c":31,"s":{"s":5,"n":1,"a":5,"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-28,{"n":5,"e":3442}],[10,{"n":5,"e":4214}]]}],[6285,{"n":"Williams","f":"Brandon","fp":"DL","r":7,"c":31,"s":{"g":1,"s":18.5,"n":4,"a":4.63,"d":0.75,"Og":1,"Os":18.5,"On":4,"Oa":4.63,"Od":0.75,"pd":3,"pm":1},"p":[[14,{"n":3.5,"e":4175}],[13,{"n":5,"e":4185,"g":1}],[12,{"n":5,"e":4197}],[11,{"n":5,"e":4200}]]}],[6339,{"n":"Bernard","f":"Di'Shon","fp":"DC","r":1,"c":31}],[30,{"n":"Saint-Maximin","f":"Allan","fp":"MO","r":20,"c":46,"s":{"g":1,"s":67,"n":12,"a":5.58,"d":0.6,"Og":4,"Os":157,"On":30,"Oa":5.23,"Od":0.94,"pm":12,"pa":18},"p":[[16,{"n":6.5,"e":4153}],[15,{"n":6,"e":4161,"g":1}],[11,{"n":6,"e":4207}],[10,{"n":5.5,"e":4213}],[3,{"n":5,"e":4287}],[-37,{"n":3.5,"e":3099}],[-36,{"n":5,"e":3088}],[-35,{"n":3.5,"e":3078}],[-34,{"n":6,"e":3069}],[-32,{"n":5,"e":3049}],[-31,{"n":5,"e":3037}],[-29,{"n":4,"e":3018}],[-28,{"n":4,"e":3004}],[-27,{"n":6.5,"e":2999}],[-24,{"n":5,"e":2967}],[-22,{"n":7,"e":2948,"g":1}],[-20,{"n":6.5,"e":2929,"g":1}],[-38,{"n":6,"e":3108}],[-33,{"n":5,"e":3056}],[-26,{"n":4.5,"e":2982}],[-23,{"n":3.5,"e":2955}],[-21,{"n":5,"e":2939}],[-17,{"n":5,"e":2895,"g":1}],[14,{"n":6,"e":4172}],[13,{"n":5,"e":4179}],[12,{"n":6,"e":4191}],[9,{"n":5.5,"e":4220}],[8,{"n":6,"e":4237}],[6,{"n":5,"e":4254}],[1,{"n":4.5,"e":4306}]]}],[132,{"n":"Saivet","f":"Henri","fp":"MD","r":3,"c":46}],[628,{"n":"Carroll","f":"Andy","fp":"A","r":9,"c":46,"s":{"s":48,"n":10,"a":4.8,"d":0.75,"Ss":15.5,"Sn":3,"Sa":5.17,"Sd":1.44,"Os":86.5,"On":19,"Oa":4.55,"Od":0.66,"pa":19},"p":[[-24,{"n":4.5,"e":3402}],[-18,{"n":4.5,"e":3346}],[-28,{"n":3.5,"e":3447}],[-25,{"n":4,"e":3417}],[-23,{"n":4,"e":3388}],[-22,{"n":4.5,"e":3387}],[-21,{"n":4,"e":3376}],[-20,{"n":5,"e":3359}],[-19,{"n":4.5,"e":3355}],[17,{"n":3.5,"e":4139}],[16,{"n":6,"e":4153}],[15,{"n":6,"e":4161}],[13,{"n":5,"e":4179}],[12,{"n":5,"e":4191}],[11,{"n":4.5,"e":4207}],[9,{"n":4.5,"e":4220}],[8,{"n":4.5,"e":4237}],[7,{"n":4.5,"e":4245}],[6,{"n":4.5,"e":4254}]]}],[707,{"n":"Rondón","f":"Salomón","fp":"A","r":25,"c":46,"s":{"Og":7,"Os":113.5,"On":20,"Oa":5.68,"Od":1.12,"pa":20},"p":[[-38,{"n":7,"e":3541,"g":1}],[-37,{"n":7,"e":3535,"g":1}],[-36,{"n":5.5,"e":3518}],[-35,{"n":6.5,"e":3515}],[-34,{"n":4.5,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":4,"e":3478}],[-31,{"n":6.5,"e":3468,"g":1}],[-30,{"n":7,"e":3466,"g":1}],[-29,{"n":5.5,"e":3456}],[-28,{"n":5,"e":3444}],[-27,{"n":8,"e":3436,"g":1}],[-26,{"n":5,"e":3427}],[-25,{"n":4.5,"e":3416}],[-24,{"n":6,"e":3404,"g":1}],[-23,{"n":6,"e":3394}],[-22,{"n":5,"e":3381}],[-21,{"n":4,"e":3375}],[-20,{"n":6.5,"e":3367,"g":1}],[-18,{"n":5,"e":3345}]]}],[814,{"n":"Manquillo","f":"Javier","fp":"DL","r":9,"c":46,"s":{"s":42.5,"n":8,"a":5.31,"d":0.84,"Ss":22,"Sn":4,"Sa":5.5,"Sd":1.08,"Os":98.5,"On":19,"Oa":5.18,"Od":0.65,"pd":18,"pm":1},"p":[[4,{"n":5,"e":4273}],[-37,{"n":5,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515}],[-34,{"n":6,"e":3502}],[-29,{"n":4.5,"e":3456}],[-28,{"n":6,"e":3444}],[-26,{"n":5,"e":3427}],[-24,{"n":4.5,"e":3404}],[-23,{"n":5,"e":3394}],[-22,{"n":5,"e":3381}],[-18,{"n":5,"e":3345}],[17,{"n":5,"e":4139}],[16,{"n":5.5,"e":4153}],[15,{"n":7,"e":4161}],[14,{"n":4.5,"e":4172}],[6,{"n":6,"e":4254}],[5,{"n":5,"e":4258}],[1,{"n":4.5,"e":4306}]]}],[839,{"n":"Ki Sung-Yueng","f":"","fp":"MD","r":3,"c":46,"s":{"s":15,"n":3,"a":5,"d":0.5,"Os":56,"On":11,"Oa":5.09,"Od":0.63,"pm":11},"p":[[2,{"n":4.5,"e":4292}],[-37,{"n":5,"e":3535}],[-36,{"n":4.5,"e":3518}],[-35,{"n":6,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3478}],[-30,{"n":4,"e":3466}],[-18,{"n":5.5,"e":3345}],[7,{"n":5.5,"e":4245}],[6,{"n":5,"e":4254}]]}],[913,{"n":"Fernández","f":"Federico","fp":"DC","r":14,"c":46,"s":{"g":2,"s":60.5,"n":11,"a":5.5,"d":0.81,"Sg":2,"Ss":45,"Sn":8,"Sa":5.63,"Sd":0.92,"Og":2,"Os":88,"On":17,"Oa":5.18,"Od":0.92,"pd":17},"p":[[-38,{"n":5,"e":3541}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515}],[-31,{"n":3.5,"e":3468}],[-20,{"n":5.5,"e":3367}],[-19,{"n":3.5,"e":3353}],[17,{"n":4.5,"e":4139}],[16,{"n":6,"e":4153,"g":1}],[15,{"n":6,"e":4161}],[14,{"n":5,"e":4172}],[13,{"n":4.5,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":7,"e":4207,"g":1}],[10,{"n":6.5,"e":4213}],[5,{"n":5,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":5.5,"e":4287}]]}],[1466,{"n":"Gayle","f":"Dwight","fp":"A","r":3,"c":46,"s":{"s":21,"n":5,"a":4.2,"d":0.27,"Ss":4,"Sn":1,"Sa":4,"Os":21,"On":5,"Oa":4.2,"Od":0.27,"pa":5},"p":[[17,{"n":4,"e":4139}],[14,{"n":4,"e":4172}],[13,{"n":4.5,"e":4179}],[10,{"n":4,"e":4213}],[9,{"n":4.5,"e":4220}]]}],[1468,{"n":"Ritchie","f":"Matt","fp":"MD","r":3,"c":46,"s":{"s":14.5,"n":3,"a":4.83,"d":1.04,"Og":2,"Os":131,"On":24,"Oa":5.46,"Od":0.97,"pd":20,"pm":4},"p":[[-38,{"n":7.5,"e":3541}],[-37,{"n":5.5,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":6,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3478}],[-31,{"n":6,"e":3468,"g":1}],[-30,{"n":5,"e":3466}],[-29,{"n":4.5,"e":3456}],[-28,{"n":5.5,"e":3444}],[-27,{"n":6,"e":3436}],[-26,{"n":5,"e":3427}],[-25,{"n":7,"e":3416}],[-24,{"n":7,"e":3404,"g":1}],[-23,{"n":5,"e":3394}],[-22,{"n":5,"e":3381}],[-21,{"n":4,"e":3375}],[-20,{"n":7,"e":3367}],[-19,{"n":4.5,"e":3353}],[-18,{"n":5,"e":3345}],[3,{"n":6,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":4.5,"e":4306}]]}],[1469,{"n":"Lascelles","f":"Jamaal","fp":"DC","r":10,"c":46,"s":{"g":1,"s":60.5,"n":12,"a":5.04,"d":1.1,"Og":1,"Os":165,"On":31,"Oa":5.32,"Od":1.1,"pd":31},"p":[[-38,{"n":7.5,"e":3541}],[-37,{"n":4.5,"e":3535}],[-35,{"n":6,"e":3515}],[-34,{"n":7,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5.5,"e":3478}],[-30,{"n":4,"e":3466}],[-29,{"n":4.5,"e":3456}],[-28,{"n":6.5,"e":3444}],[-27,{"n":6,"e":3436}],[-26,{"n":6,"e":3427}],[-25,{"n":5.5,"e":3416}],[-24,{"n":5,"e":3404}],[-23,{"n":7.5,"e":3394}],[-22,{"n":5,"e":3381}],[-21,{"n":4,"e":3375}],[-20,{"n":4.5,"e":3367}],[-19,{"n":4.5,"e":3353}],[-18,{"n":6,"e":3345}],[12,{"n":4,"e":4191}],[11,{"n":5,"e":4207}],[10,{"n":7,"e":4213,"g":1}],[9,{"n":4.5,"e":4220}],[8,{"n":5.5,"e":4237}],[7,{"n":3.5,"e":4245}],[6,{"n":5.5,"e":4254}],[5,{"n":5,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":7,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":4.5,"e":4306}]],"a":{"m":18,"a":20,"M":27,"n":5}}],[1475,{"n":"Darlow","f":"Karl","fp":"G","r":7,"c":46}],[1476,{"n":"Shelvey","f":"Jonjo","fp":"MO","r":18,"c":46,"s":{"g":5,"s":62.5,"n":11,"a":5.68,"d":1.06,"Og":6,"Os":99.5,"On":18,"Oa":5.53,"Od":1.02,"pm":18},"p":[[-38,{"n":7.5,"e":3541,"g":1}],[-36,{"n":5,"e":3518}],[-33,{"n":4.5,"e":3493}],[-31,{"n":5,"e":3468}],[-30,{"n":5,"e":3466}],[-21,{"n":5,"e":3375}],[-20,{"n":5,"e":3367}],[16,{"n":6,"e":4153,"g":1}],[15,{"n":7.5,"e":4161,"g":1}],[14,{"n":7,"e":4172,"g":1}],[13,{"n":5,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":6.5,"e":4207,"g":1}],[10,{"n":5,"e":4213}],[6,{"n":6,"e":4254}],[5,{"n":4.5,"e":4258}],[2,{"n":5.5,"e":4292,"g":1}],[1,{"n":4,"e":4306}]]}],[1485,{"n":"Lejeune","f":"Florian","fp":"DC","r":7,"c":46,"s":{"Os":65,"On":12,"Oa":5.42,"Od":0.9,"pd":12},"p":[[-33,{"n":5.5,"e":3493}],[-32,{"n":4.5,"e":3478}],[-31,{"n":6,"e":3468}],[-30,{"n":5,"e":3466}],[-29,{"n":3.5,"e":3456}],[-28,{"n":6,"e":3444}],[-27,{"n":6,"e":3436}],[-26,{"n":5,"e":3427}],[-25,{"n":5.5,"e":3416}],[-24,{"n":6,"e":3404}],[-23,{"n":7,"e":3394}],[-22,{"n":5,"e":3381}]]}],[1487,{"n":"Atsu","f":"Christian","fp":"MO","r":7,"c":46,"s":{"s":72,"n":14,"a":5.14,"d":0.84,"Ss":4.5,"Sn":1,"Sa":4.5,"Og":1,"Os":159.5,"On":31,"Oa":5.15,"Od":0.77,"pm":31},"p":[[-38,{"n":6.5,"e":3541}],[-37,{"n":7,"e":3535,"g":1}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515}],[-34,{"n":4.5,"e":3502}],[-33,{"n":4.5,"e":3493}],[-31,{"n":5,"e":3468}],[-29,{"n":5,"e":3456}],[-27,{"n":4.5,"e":3436}],[-26,{"n":6,"e":3427}],[-25,{"n":5,"e":3416}],[-24,{"n":4.5,"e":3404}],[-23,{"n":5,"e":3394}],[-22,{"n":5,"e":3381}],[-21,{"n":4.5,"e":3375}],[-20,{"n":5.5,"e":3367}],[-18,{"n":5,"e":3345}],[17,{"n":4.5,"e":4139}],[15,{"n":5.5,"e":4161}],[14,{"n":5.5,"e":4172}],[13,{"n":5,"e":4179}],[12,{"n":5,"e":4191}],[11,{"n":5.5,"e":4207}],[10,{"n":5,"e":4213}],[9,{"n":5,"e":4220}],[8,{"n":5,"e":4237}],[7,{"n":3.5,"e":4245}],[6,{"n":6,"e":4254}],[5,{"n":4,"e":4258}],[4,{"n":5.5,"e":4273}],[3,{"n":7,"e":4287}]]}],[1488,{"n":"Hayden","f":"Isaac","fp":"MD","r":13,"c":46,"s":{"s":73.5,"n":14,"a":5.25,"d":0.7,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.49,"Og":1,"Os":184,"On":34,"Oa":5.41,"Od":0.89,"pd":1,"pm":33},"p":[[-38,{"n":6,"e":3541}],[-37,{"n":5,"e":3535}],[-36,{"n":6,"e":3518}],[-35,{"n":5.5,"e":3515}],[-34,{"n":6.5,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":5,"e":3478}],[-31,{"n":5.5,"e":3468}],[-30,{"n":5,"e":3466}],[-29,{"n":3.5,"e":3456}],[-28,{"n":6,"e":3444}],[-27,{"n":7,"e":3436}],[-26,{"n":7,"e":3427,"g":1}],[-25,{"n":6,"e":3416}],[-24,{"n":6,"e":3404}],[-23,{"n":7,"e":3394}],[-22,{"n":5,"e":3381}],[-21,{"n":4.5,"e":3375}],[-20,{"n":5.5,"e":3367}],[-19,{"n":3.5,"e":3353}],[17,{"n":5,"e":4139}],[16,{"n":5.5,"e":4153}],[15,{"n":5.5,"e":4161}],[14,{"n":5,"e":4172}],[13,{"n":4.5,"e":4179}],[12,{"n":5,"e":4191}],[11,{"n":6,"e":4207}],[7,{"n":4,"e":4245}],[6,{"n":5.5,"e":4254}],[5,{"n":5.5,"e":4258}],[4,{"n":6,"e":4273}],[3,{"n":6,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":6,"e":4306}]]}],[1491,{"n":"Dummett","f":"Paul","fp":"DL","r":10,"c":46,"s":{"ao":1,"s":67,"n":14,"a":4.79,"d":1.09,"Ss":34,"Sn":7,"Sa":4.86,"Sd":0.75,"Oao":1,"Os":144,"On":29,"Oa":4.97,"Od":1.03,"pd":29},"p":[[-38,{"n":6.5,"e":3541}],[-37,{"n":4,"e":3535}],[-36,{"n":4.5,"e":3518}],[-35,{"n":5.5,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":4.5,"e":3478}],[-31,{"n":6,"e":3468}],[-30,{"n":6,"e":3466}],[-29,{"n":5,"e":3456}],[-28,{"n":5,"e":3444}],[-21,{"n":4,"e":3375}],[-20,{"n":6,"e":3367}],[-19,{"n":3,"e":3353}],[-18,{"n":6,"e":3345}],[17,{"n":4.5,"e":4139}],[16,{"n":4,"e":4153}],[15,{"n":6,"e":4161}],[14,{"n":5,"e":4172}],[13,{"n":4,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":5,"e":4207}],[7,{"n":3,"e":4245,"a":1}],[6,{"n":6,"e":4254}],[5,{"n":4,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":6.5,"e":4287}],[2,{"n":3,"e":4292}],[1,{"n":5.5,"e":4306}]]}],[1492,{"n":"Yedlin","f":"DeAndre","fp":"DL","r":10,"c":46,"s":{"g":1,"s":35.5,"n":7,"a":5.07,"d":0.93,"Og":1,"Os":102,"On":21,"Oa":4.86,"Od":0.79,"pd":19,"pm":2},"p":[[-33,{"n":4,"e":3493}],[-32,{"n":4,"e":3478}],[-31,{"n":6,"e":3468}],[-30,{"n":5,"e":3466}],[-27,{"n":5.5,"e":3436}],[-26,{"n":4.5,"e":3427}],[-25,{"n":6,"e":3416}],[-24,{"n":5,"e":3404}],[-23,{"n":5,"e":3394}],[-22,{"n":4,"e":3381}],[-21,{"n":4,"e":3375}],[-20,{"n":4.5,"e":3367}],[-19,{"n":4,"e":3353}],[-18,{"n":5,"e":3345}],[13,{"n":4,"e":4179}],[12,{"n":6.5,"e":4191,"g":1}],[11,{"n":4,"e":4207}],[10,{"n":5,"e":4213}],[9,{"n":6,"e":4220}],[8,{"n":5,"e":4237}],[7,{"n":5,"e":4245}]]}],[1495,{"n":"Diamé","f":"Mohamed","fp":"MD","r":6,"c":46,"s":{"Os":62,"On":12,"Oa":5.17,"Od":0.78,"pm":12},"p":[[-38,{"n":7,"e":3541}],[-35,{"n":5,"e":3515}],[-34,{"n":5,"e":3502}],[-32,{"n":4.5,"e":3478}],[-31,{"n":4.5,"e":3468}],[-29,{"n":5.5,"e":3456}],[-28,{"n":5,"e":3444}],[-26,{"n":5,"e":3427}],[-21,{"n":5,"e":3375}],[-20,{"n":5.5,"e":3367}],[-19,{"n":4,"e":3353}],[-18,{"n":6,"e":3345}]]}],[1497,{"n":"Colback","f":"Jack","fp":"MD","r":3,"c":46}],[1499,{"n":"Clark","f":"Ciaran","fp":"DC","r":14,"c":46,"s":{"g":2,"s":48,"n":9,"a":5.33,"d":0.94,"Og":3,"Os":53.5,"On":10,"Oa":5.35,"Od":0.88,"pd":10},"p":[[-22,{"n":5.5,"e":3381,"g":1}],[16,{"n":4.5,"e":4153}],[15,{"n":6,"e":4161}],[14,{"n":5.5,"e":4172}],[13,{"n":4,"e":4179}],[12,{"n":7,"e":4191,"g":1}],[11,{"n":6,"e":4207,"g":1}],[10,{"n":5,"e":4213}],[9,{"n":4.5,"e":4220}],[8,{"n":5.5,"e":4237}]]}],[1504,{"n":"Murphy","f":"Jacob","fp":"MD","r":5,"c":46,"s":{"Os":10,"On":2,"Oa":5,"pm":2},"p":[[-22,{"n":5,"e":3381}],[-19,{"n":5,"e":3353}]]}],[1508,{"n":"Elliot","f":"Robert","fp":"G","r":1,"c":46}],[1515,{"n":"Aarons","f":"Rolando","fp":"MD","r":1,"c":46}],[1516,{"n":"Sterry","f":"Jamie","fp":"DC","r":1,"c":46}],[1519,{"n":"Lazaar","f":"Achraf","fp":"DC","r":1,"c":46}],[1725,{"n":"Schär","f":"Fabian","fp":"DC","r":13,"c":46,"s":{"g":1,"s":54,"n":11,"a":4.91,"d":1.2,"Ss":10,"Sn":2,"Sa":5,"Og":5,"Os":145.5,"On":28,"Oa":5.2,"Od":1.13,"pd":28},"p":[[-38,{"n":7,"e":3541,"g":1}],[-37,{"n":4,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":5,"e":3515}],[-34,{"n":6,"e":3502}],[-33,{"n":5,"e":3493}],[-30,{"n":4.5,"e":3466}],[-29,{"n":4,"e":3456}],[-28,{"n":7,"e":3444,"g":1}],[-27,{"n":6,"e":3436}],[-26,{"n":5.5,"e":3427}],[-25,{"n":6,"e":3416}],[-24,{"n":4.5,"e":3404}],[-23,{"n":7.5,"e":3394,"g":2}],[-21,{"n":4,"e":3375}],[-20,{"n":5,"e":3367}],[-18,{"n":5.5,"e":3345}],[17,{"n":5,"e":4139}],[16,{"n":5,"e":4153}],[9,{"n":4,"e":4220}],[8,{"n":5.5,"e":4237}],[7,{"n":3,"e":4245}],[6,{"n":6,"e":4254}],[5,{"n":3.5,"e":4258}],[4,{"n":6,"e":4273,"g":1}],[3,{"n":7,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":5,"e":4306}]],"a":{"m":16,"a":22,"M":23,"n":6}}],[2306,{"n":"Dubravka","f":"Martin","fp":"G","r":18,"c":46,"s":{"s":96,"n":17,"a":5.65,"d":1.26,"Ss":96,"Sn":17,"Sa":5.65,"Sd":1.26,"Os":209,"On":38,"Oa":5.5,"Od":1.09,"pg":38},"p":[[-38,{"n":7,"e":3541}],[-37,{"n":4.5,"e":3535}],[-36,{"n":5,"e":3518}],[-35,{"n":5.5,"e":3515}],[-34,{"n":7.5,"e":3502}],[-33,{"n":5,"e":3493}],[-32,{"n":4.5,"e":3478}],[-31,{"n":5,"e":3468}],[-30,{"n":4,"e":3466}],[-29,{"n":5,"e":3456}],[-28,{"n":6.5,"e":3444}],[-27,{"n":6,"e":3436}],[-26,{"n":6,"e":3427}],[-25,{"n":4,"e":3416}],[-24,{"n":5.5,"e":3404}],[-23,{"n":6,"e":3394}],[-22,{"n":5.5,"e":3381}],[-21,{"n":4,"e":3375}],[-20,{"n":5.5,"e":3367}],[-19,{"n":5,"e":3353}],[-18,{"n":6,"e":3345}],[17,{"n":6,"e":4139}],[16,{"n":5.5,"e":4153}],[15,{"n":8,"e":4161}],[14,{"n":7,"e":4172}],[13,{"n":6,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":6,"e":4207}],[10,{"n":4,"e":4213}],[9,{"n":7,"e":4220}],[8,{"n":6.5,"e":4237}],[7,{"n":3,"e":4245}],[6,{"n":6,"e":4254}],[5,{"n":4,"e":4258}],[4,{"n":5.5,"e":4273}],[3,{"n":6.5,"e":4287}],[2,{"n":4.5,"e":4292}],[1,{"n":5,"e":4306}]]}],[2553,{"n":"Muto","f":"Yoshinori","fp":"A","r":3,"c":46,"s":{"s":26.5,"n":6,"a":4.42,"d":0.38,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":58,"On":13,"Oa":4.46,"Od":0.32,"pm":1,"pa":12},"p":[[-38,{"n":4.5,"e":3541}],[-37,{"n":4.5,"e":3535}],[-36,{"n":4.5,"e":3518}],[-32,{"n":4.5,"e":3478}],[-31,{"n":4.5,"e":3468}],[-21,{"n":5,"e":3375}],[-19,{"n":4,"e":3353}],[17,{"n":4.5,"e":4139}],[7,{"n":5,"e":4245}],[5,{"n":4.5,"e":4258}],[4,{"n":4.5,"e":4273}],[3,{"n":4,"e":4287}],[2,{"n":4,"e":4292}]]}],[2580,{"n":"Freddy Woodman","f":"","fp":"G","r":1,"c":46}],[2758,{"n":"Sean Longstaff","f":"","fp":"MO","r":11,"c":46,"s":{"s":49.5,"n":10,"a":4.95,"d":1.26,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.06,"Og":1,"Os":99.5,"On":19,"Oa":5.24,"Od":1.11,"pm":19},"p":[[-29,{"n":4,"e":3456}],[-28,{"n":7,"e":3444,"g":1}],[-27,{"n":6.5,"e":3436}],[-26,{"n":5.5,"e":3427}],[-25,{"n":6,"e":3416}],[-24,{"n":5.5,"e":3404}],[-23,{"n":5.5,"e":3394}],[-22,{"n":5,"e":3381}],[-19,{"n":5,"e":3353}],[17,{"n":4,"e":4139}],[16,{"n":5.5,"e":4153}],[10,{"n":4,"e":4213}],[9,{"n":5,"e":4220}],[8,{"n":7,"e":4237}],[7,{"n":2.5,"e":4245}],[4,{"n":5.5,"e":4273}],[3,{"n":5.5,"e":4287}],[2,{"n":6,"e":4292}],[1,{"n":4.5,"e":4306}]]}],[2759,{"n":"Roberts","f":"Callum","fp":"MD","r":1,"c":46}],[2796,{"n":"Krafth","f":"Emil","fp":"DL","r":5,"c":46,"s":{"s":32,"n":7,"a":4.57,"d":1.1,"Os":125,"On":27,"Oa":4.63,"Od":0.69,"pd":26,"pm":1},"p":[[-23,{"n":5,"e":2960}],[-22,{"n":4.5,"e":2942}],[-20,{"n":4,"e":2922}],[-18,{"n":5,"e":2902}],[-19,{"n":5,"e":2913}],[-38,{"n":5,"e":3102}],[-37,{"n":4,"e":3096}],[-36,{"n":5.5,"e":3082}],[-34,{"n":5,"e":3062}],[-33,{"n":3.5,"e":3055}],[-32,{"n":5,"e":3043}],[-31,{"n":4.5,"e":3032}],[-30,{"n":4.5,"e":3022}],[-29,{"n":5,"e":3012}],[-28,{"n":5,"e":3002}],[-27,{"n":4.5,"e":3001}],[-26,{"n":5,"e":2982}],[-25,{"n":4,"e":2977}],[-24,{"n":5,"e":2962}],[-21,{"n":4,"e":2935}],[15,{"n":5.5,"e":4161}],[8,{"n":5,"e":4237}],[7,{"n":3,"e":4245}],[5,{"n":4,"e":4258}],[4,{"n":5,"e":4273}],[3,{"n":6,"e":4287}],[2,{"n":3.5,"e":4292}]]}],[2981,{"n":"Harker","f":"Nathan","fp":"G","r":1,"c":46}],[3356,{"n":"Almirón","f":"Miguel","fp":"MO","r":15,"c":46,"s":{"s":82.5,"n":16,"a":5.16,"d":0.94,"Os":138,"On":26,"Oa":5.31,"Od":0.85,"pm":23,"pa":3},"p":[[-35,{"n":6,"e":3515}],[-34,{"n":5.5,"e":3502}],[-33,{"n":5.5,"e":3493}],[-32,{"n":5,"e":3478}],[-31,{"n":5,"e":3468}],[-30,{"n":6,"e":3466}],[-29,{"n":5,"e":3456}],[-28,{"n":5.5,"e":3444}],[-27,{"n":7,"e":3436}],[-26,{"n":5,"e":3427}],[16,{"n":6,"e":4153}],[15,{"n":6,"e":4161}],[14,{"n":6.5,"e":4172}],[13,{"n":4,"e":4179}],[12,{"n":5.5,"e":4191}],[11,{"n":6.5,"e":4207}],[10,{"n":5.5,"e":4213}],[9,{"n":4.5,"e":4220}],[8,{"n":5.5,"e":4237}],[7,{"n":3.5,"e":4245}],[6,{"n":5.5,"e":4254}],[5,{"n":4.5,"e":4258}],[4,{"n":5.5,"e":4273}],[3,{"n":5.5,"e":4287}],[2,{"n":4,"e":4292}],[1,{"n":4,"e":4306}]]}],[3648,{"n":"Watts","f":"Kelland","fp":"MD","r":1,"c":46}],[3649,{"n":"Cass","f":"Lewis","fp":"DC","r":2,"c":46}],[5423,{"n":"Sorensen","f":"Elias","fp":"A","r":1,"c":46}],[5426,{"n":"Allan","f":"Thomas","fp":"A","r":1,"c":46}],[5433,{"n":"Matthew Longstaff","f":"","fp":"MD","r":6,"c":46,"s":{"g":1,"s":15.5,"n":3,"a":5.17,"d":1.76,"Og":1,"Os":15.5,"On":3,"Oa":5.17,"Od":1.76,"pm":3},"p":[[10,{"n":5,"e":4213}],[9,{"n":3.5,"e":4220}],[8,{"n":7,"e":4237,"g":1}]]}],[5435,{"n":"Bailey","f":"Owen","fp":"DC","r":1,"c":46}],[5442,{"n":"Joelinton","f":"","fp":"A","r":12,"c":46,"s":{"g":1,"s":80.5,"n":17,"a":4.74,"d":0.87,"Sg":1,"Ss":80.5,"Sn":17,"Sa":4.74,"Sd":0.87,"Og":1,"Os":80.5,"On":17,"Oa":4.74,"Od":0.87,"pm":1,"pa":16},"p":[[17,{"n":5.5,"e":4139}],[16,{"n":4.5,"e":4153}],[15,{"n":4.5,"e":4161}],[14,{"n":4.5,"e":4172}],[13,{"n":5,"e":4179}],[12,{"n":4.5,"e":4191}],[11,{"n":6,"e":4207}],[10,{"n":4.5,"e":4213}],[9,{"n":3.5,"e":4220}],[8,{"n":4,"e":4237}],[7,{"n":5,"e":4245}],[6,{"n":4,"e":4254}],[5,{"n":5,"e":4258}],[4,{"n":4.5,"e":4273}],[3,{"n":7,"e":4287,"g":1}],[2,{"n":3.5,"e":4292}],[1,{"n":5,"e":4306}]]}],[6001,{"n":"Willems","f":"Jetro","fp":"DL","r":16,"c":46,"s":{"g":2,"s":77.5,"n":14,"a":5.54,"d":0.77,"Sg":1,"Ss":56.5,"Sn":10,"Sa":5.65,"Sd":0.88,"Og":2,"Os":77.5,"On":14,"Oa":5.54,"Od":0.77,"pd":14},"p":[[17,{"n":4.5,"e":4139}],[16,{"n":5,"e":4153}],[15,{"n":5.5,"e":4161}],[14,{"n":6,"e":4172,"g":1}],[13,{"n":4.5,"e":4179}],[12,{"n":6.5,"e":4191}],[11,{"n":7,"e":4207}],[10,{"n":6,"e":4213}],[9,{"n":5,"e":4220}],[8,{"n":6.5,"e":4237}],[6,{"n":5,"e":4254}],[5,{"n":5.5,"e":4258,"g":1}],[4,{"n":5.5,"e":4273}],[1,{"n":5,"e":4306}]]}],[133,{"n":"Amadou","f":"Ibrahim","fp":"MD","r":9,"c":76,"s":{"s":44.5,"n":10,"a":4.45,"d":1.17,"Os":98.5,"On":21,"Oa":4.69,"Od":1.01,"pd":6,"pm":15},"p":[[15,{"n":3.5,"e":4165}],[4,{"n":4.5,"e":4274}],[-38,{"n":6.5,"e":2347}],[-33,{"n":4,"e":2296}],[-29,{"n":4,"e":2256}],[-28,{"n":5,"e":2244}],[-25,{"n":4.5,"e":2220}],[-24,{"n":4,"e":2211}],[-22,{"n":4.5,"e":2183}],[-21,{"n":5,"e":2181}],[-17,{"n":6,"e":2136}],[-37,{"n":5.5,"e":2333}],[-18,{"n":5,"e":2147}],[14,{"n":6,"e":4176}],[13,{"n":5,"e":4183}],[10,{"n":3.5,"e":4214}],[9,{"n":6.5,"e":4219}],[8,{"n":3,"e":4232}],[7,{"n":4,"e":4242}],[6,{"n":3.5,"e":4250}],[5,{"n":5,"e":4264}]]}],[872,{"n":"Byram","f":"Sam","fp":"DL","r":10,"c":76,"s":{"s":43.5,"n":9,"a":4.83,"d":0.79,"Ss":5,"Sn":1,"Sa":5,"Os":43.5,"On":9,"Oa":4.83,"Od":0.79,"pd":9},"p":[[16,{"n":4,"e":4154}],[17,{"n":5,"e":4142}],[15,{"n":4,"e":4165}],[14,{"n":5,"e":4176}],[13,{"n":6,"e":4183}],[10,{"n":4.5,"e":4214}],[6,{"n":4,"e":4250}],[5,{"n":6,"e":4264}],[2,{"n":5,"e":4292}]]}],[1101,{"n":"Husband","f":"James","fp":"DC","r":1,"c":76}],[1352,{"n":"Roberts","f":"Patrick","fp":"MO","r":3,"c":76,"s":{"s":15,"n":3,"a":5,"Os":55,"On":12,"Oa":4.58,"Od":0.51,"pm":12},"p":[[-38,{"n":4,"e":2342}],[-29,{"n":5,"e":2257}],[-36,{"n":4.5,"e":2323}],[-33,{"n":3.5,"e":2295}],[-32,{"n":4,"e":2284}],[-31,{"n":5,"e":2279}],[-30,{"n":5,"e":2263}],[-27,{"n":4.5,"e":2237}],[-26,{"n":4.5,"e":2231}],[8,{"n":5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":5,"e":4250}]]}],[1506,{"n":"Hanley","f":"Grant","fp":"DC","r":6,"c":76,"s":{"ao":1,"s":11.5,"n":3,"a":3.83,"d":1.76,"Oao":1,"Os":11.5,"On":3,"Oa":3.83,"Od":1.76,"pd":3},"p":[[3,{"n":4,"e":4279}],[2,{"n":5.5,"e":4292}],[1,{"n":2,"e":4298,"a":1}]]}],[1521,{"n":"Krul","f":"Tim","fp":"G","r":14,"c":76,"s":{"ao":1,"s":84,"n":15,"a":5.6,"d":1.37,"Sao":1,"Ss":28,"Sn":5,"Sa":5.6,"Sd":1.47,"Oao":1,"Os":84,"On":15,"Oa":5.6,"Od":1.37,"pg":15},"p":[[12,{"n":4,"e":4192}],[17,{"n":5.5,"e":4142,"a":1}],[16,{"n":4,"e":4154}],[15,{"n":5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":8,"e":4183}],[11,{"n":5,"e":4201}],[10,{"n":8.5,"e":4214}],[9,{"n":6,"e":4219}],[6,{"n":5.5,"e":4250}],[5,{"n":7,"e":4264}],[4,{"n":6,"e":4274}],[3,{"n":4,"e":4279}],[2,{"n":5.5,"e":4292}],[1,{"n":4.5,"e":4298}]]}],[3647,{"n":"Aarons","f":"Max","fp":"DL","r":10,"c":76,"s":{"s":63.5,"n":15,"a":4.23,"d":1.03,"Ss":47.5,"Sn":11,"Sa":4.32,"Sd":1.12,"Os":63.5,"On":15,"Oa":4.23,"Od":1.03,"pd":15},"p":[[17,{"n":5.5,"e":4142}],[16,{"n":4.5,"e":4154}],[15,{"n":3,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":6,"e":4183}],[12,{"n":4,"e":4192}],[11,{"n":3.5,"e":4201}],[10,{"n":3.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":2.5,"e":4232}],[7,{"n":4.5,"e":4242}],[4,{"n":4,"e":4274}],[3,{"n":3,"e":4279}],[2,{"n":5,"e":4292}],[1,{"n":4,"e":4298}]]}],[3654,{"n":"Payne","f":"Alfie","fp":"MD","r":1,"c":76}],[3657,{"n":"Timi Odusina","f":"","fp":"DC","r":1,"c":76}],[3670,{"n":"Godfrey","f":"Ben","fp":"DC","r":10,"c":76,"s":{"s":78.5,"n":17,"a":4.62,"d":1.01,"Ss":78.5,"Sn":17,"Sa":4.62,"Sd":1.01,"Os":78.5,"On":17,"Oa":4.62,"Od":1.01,"pd":17},"p":[[17,{"n":5,"e":4142}],[16,{"n":4,"e":4154}],[15,{"n":4.5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":6.5,"e":4183}],[12,{"n":4.5,"e":4192}],[11,{"n":5,"e":4201}],[10,{"n":3,"e":4214}],[9,{"n":5.5,"e":4219}],[8,{"n":2.5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":4,"e":4250}],[5,{"n":4.5,"e":4264}],[4,{"n":4,"e":4274}],[3,{"n":5,"e":4279}],[2,{"n":6,"e":4292}],[1,{"n":4,"e":4298}]]}],[3671,{"n":"Buendía","f":"Emiliano","fp":"MO","r":11,"c":76,"s":{"s":90.5,"n":17,"a":5.32,"d":1.14,"Ss":90.5,"Sn":17,"Sa":5.32,"Sd":1.14,"Os":90.5,"On":17,"Oa":5.32,"Od":1.14,"pm":17},"p":[[17,{"n":7,"e":4142}],[16,{"n":7,"e":4154}],[15,{"n":5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":5,"e":4183}],[12,{"n":3.5,"e":4192}],[11,{"n":5.5,"e":4201}],[10,{"n":4,"e":4214}],[9,{"n":5.5,"e":4219}],[8,{"n":4,"e":4232}],[7,{"n":6,"e":4242}],[6,{"n":4.5,"e":4250}],[5,{"n":7.5,"e":4264}],[4,{"n":4,"e":4274}],[3,{"n":6,"e":4279}],[2,{"n":5.5,"e":4292}],[1,{"n":5,"e":4298}]]}],[3674,{"n":"Lewis","f":"Jamal","fp":"DL","r":8,"c":76,"s":{"s":54.5,"n":13,"a":4.19,"d":0.97,"Os":54.5,"On":13,"Oa":4.19,"Od":0.97,"pd":13},"p":[[16,{"n":4.5,"e":4154}],[12,{"n":4,"e":4192}],[11,{"n":3.5,"e":4201}],[10,{"n":3,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":3,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":4,"e":4250}],[5,{"n":5,"e":4264}],[4,{"n":5,"e":4274}],[3,{"n":3,"e":4279}],[2,{"n":6,"e":4292}],[1,{"n":3.5,"e":4298}]]}],[3675,{"n":"Cantwell","f":"Todd","fp":"MO","r":13,"c":76,"s":{"g":4,"s":89.5,"n":17,"a":5.26,"d":1.38,"Sg":4,"Ss":89.5,"Sn":17,"Sa":5.26,"Sd":1.38,"Og":4,"Os":89.5,"On":17,"Oa":5.26,"Od":1.38,"pm":17},"p":[[17,{"n":6,"e":4142}],[16,{"n":5,"e":4154}],[15,{"n":5,"e":4165}],[14,{"n":6.5,"e":4176,"g":1}],[13,{"n":8,"e":4183,"g":1}],[12,{"n":5.5,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":2.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":5,"e":4232}],[7,{"n":3.5,"e":4242}],[6,{"n":5.5,"e":4250}],[5,{"n":7,"e":4264,"g":1}],[4,{"n":4,"e":4274}],[3,{"n":5.5,"e":4279,"g":1}],[2,{"n":7,"e":4292}],[1,{"n":4,"e":4298}]]}],[3676,{"n":"Zimmermann","f":"Christoph","fp":"DC","r":10,"c":76,"s":{"s":29.5,"n":6,"a":4.92,"d":0.58,"Ss":25,"Sn":5,"Sa":5,"Sd":0.61,"Os":29.5,"On":6,"Oa":4.92,"Od":0.58,"pd":6},"p":[[17,{"n":5,"e":4142}],[16,{"n":4.5,"e":4154}],[15,{"n":4.5,"e":4165}],[14,{"n":5,"e":4176}],[13,{"n":6,"e":4183}],[4,{"n":4.5,"e":4274}]]}],[3683,{"n":"Srbeny","f":"Dennis","fp":"A","r":5,"c":76,"s":{"g":1,"s":32.5,"n":7,"a":4.64,"d":0.63,"Og":1,"Os":32.5,"On":7,"Oa":4.64,"Od":0.63,"pa":7},"p":[[16,{"n":4,"e":4154}],[13,{"n":6,"e":4183,"g":1}],[11,{"n":4.5,"e":4201}],[9,{"n":4.5,"e":4219}],[8,{"n":4.5,"e":4232}],[5,{"n":4.5,"e":4264}],[3,{"n":4.5,"e":4279}]]}],[3684,{"n":"Oxborough","f":"Aston","fp":"G","r":1,"c":76}],[3704,{"n":"Thompson","f":"Louis","fp":"MD","r":3,"c":76}],[3706,{"n":"Heise","f":"Philip","fp":"DL","r":1,"c":76}],[3708,{"n":"Trybull","f":"Tom","fp":"MD","r":10,"c":76,"s":{"s":56,"n":11,"a":5.09,"d":1.11,"Ss":4.5,"Sn":1,"Sa":4.5,"Os":56,"On":11,"Oa":5.09,"Od":1.11,"pm":11},"p":[[17,{"n":4.5,"e":4142}],[15,{"n":4,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":7,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4.5,"e":4201}],[9,{"n":5.5,"e":4219}],[4,{"n":5,"e":4274}],[3,{"n":4.5,"e":4279}],[2,{"n":7,"e":4292}],[1,{"n":3.5,"e":4298}]]}],[3709,{"n":"Hernández","f":"Onel","fp":"MO","r":11,"c":76,"s":{"g":1,"s":53,"n":10,"a":5.3,"d":1.11,"Sg":1,"Ss":48.5,"Sn":9,"Sa":5.39,"Sd":1.14,"Og":1,"Os":53,"On":10,"Oa":5.3,"Od":1.11,"pm":10},"p":[[17,{"n":5,"e":4142}],[16,{"n":4.5,"e":4154}],[15,{"n":4.5,"e":4165}],[14,{"n":7,"e":4176}],[13,{"n":7,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4,"e":4201}],[10,{"n":6.5,"e":4214,"g":1}],[9,{"n":5,"e":4219}],[1,{"n":4.5,"e":4298}]]}],[3712,{"n":"Leitner","f":"Moritz","fp":"MO","r":7,"c":76,"s":{"s":43,"n":9,"a":4.78,"d":1.18,"Os":43,"On":9,"Oa":4.78,"Od":1.18,"pm":9},"p":[[10,{"n":3.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":3,"e":4232}],[7,{"n":5.5,"e":4242}],[6,{"n":5,"e":4250}],[4,{"n":4,"e":4274}],[3,{"n":5,"e":4279}],[2,{"n":7,"e":4292}],[1,{"n":5,"e":4298}]]}],[3715,{"n":"Klose","f":"Timm","fp":"DC","r":1,"c":76}],[3717,{"n":"Drmic","f":"Josip","fp":"A","r":3,"c":76,"s":{"g":1,"s":36,"n":8,"a":4.5,"d":0.65,"Og":1,"Os":36,"On":8,"Oa":4.5,"Od":0.65,"pa":8},"p":[[12,{"n":4.5,"e":4192}],[11,{"n":4.5,"e":4201}],[8,{"n":6,"e":4232,"g":1}],[7,{"n":4,"e":4242}],[6,{"n":4,"e":4250}],[5,{"n":4.5,"e":4264}],[4,{"n":4,"e":4274}],[1,{"n":4.5,"e":4298}]]}],[3720,{"n":"McLean","f":"Kenny","fp":"MO","r":11,"c":76,"s":{"g":1,"s":82,"n":16,"a":5.13,"d":1.27,"Sg":1,"Ss":78.5,"Sn":15,"Sa":5.23,"Sd":1.24,"Og":1,"Os":82,"On":16,"Oa":5.13,"Od":1.27,"pm":16},"p":[[17,{"n":6,"e":4142}],[16,{"n":5.5,"e":4154}],[15,{"n":5,"e":4165}],[14,{"n":5.5,"e":4176}],[13,{"n":7,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4,"e":4201}],[10,{"n":5,"e":4214}],[9,{"n":4.5,"e":4219}],[8,{"n":2.5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":5,"e":4250}],[5,{"n":8,"e":4264,"g":1}],[4,{"n":5.5,"e":4274}],[3,{"n":5,"e":4279}],[1,{"n":3.5,"e":4298}]]}],[3722,{"n":"Stiepermann","f":"Marco","fp":"MO","r":7,"c":76,"s":{"s":58.5,"n":13,"a":4.5,"d":0.74,"Ss":5,"Sn":1,"Sa":5,"Os":58.5,"On":13,"Oa":4.5,"Od":0.74,"pm":13},"p":[[17,{"n":5,"e":4142}],[15,{"n":4,"e":4165}],[12,{"n":4.5,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":4,"e":4214}],[8,{"n":3.5,"e":4232}],[7,{"n":4.5,"e":4242}],[6,{"n":4.5,"e":4250}],[5,{"n":5,"e":4264}],[4,{"n":4,"e":4274}],[3,{"n":4.5,"e":4279}],[2,{"n":6.5,"e":4292}],[1,{"n":4,"e":4298}]]}],[3723,{"n":"Marshall","f":"Ben","fp":"MD","r":5,"c":76}],[3728,{"n":"Pukki","f":"Teemu","fp":"A","r":26,"c":76,"s":{"g":9,"s":94,"n":17,"a":5.53,"d":1.43,"Sg":9,"Ss":94,"Sn":17,"Sa":5.53,"Sd":1.43,"Og":9,"Os":94,"On":17,"Oa":5.53,"Od":1.43,"pa":17},"p":[[17,{"n":6,"e":4142,"g":1}],[16,{"n":4.5,"e":4154}],[15,{"n":6,"e":4165,"g":1}],[14,{"n":7,"e":4176,"g":1}],[13,{"n":6,"e":4183}],[12,{"n":5,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":3.5,"e":4214}],[9,{"n":5,"e":4219}],[8,{"n":3.5,"e":4232}],[7,{"n":5,"e":4242}],[6,{"n":4.5,"e":4250}],[5,{"n":7,"e":4264,"g":1}],[4,{"n":4.5,"e":4274}],[3,{"n":7,"e":4279,"g":1}],[2,{"n":9,"e":4292,"g":3}],[1,{"n":6,"e":4298,"g":1}]]}],[3729,{"n":"Nélson Oliveira","f":"","fp":"A","r":5,"c":76}],[3739,{"n":"Vrancic","f":"Mario","fp":"MO","r":8,"c":76,"s":{"s":23,"n":5,"a":4.6,"d":0.65,"Ss":8.5,"Sn":2,"Sa":4.25,"Sd":1.06,"Os":23,"On":5,"Oa":4.6,"Od":0.65,"pm":5},"p":[[17,{"n":5,"e":4142}],[16,{"n":3.5,"e":4154}],[12,{"n":5,"e":4192}],[3,{"n":4.5,"e":4279}],[2,{"n":5,"e":4292}]]}],[3741,{"n":"Fährmann","f":"Ralf","fp":"G","r":7,"c":76,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pg":1},"p":[[7,{"n":5,"e":4242}]]}],[3747,{"n":"Tettey","f":"Alexander","fp":"MD","r":11,"c":76,"s":{"g":1,"s":59.5,"n":11,"a":5.41,"d":0.92,"Sg":1,"Ss":18.5,"Sn":3,"Sa":6.17,"Sd":1.04,"Og":1,"Os":59.5,"On":11,"Oa":5.41,"Od":0.92,"pd":2,"pm":9},"p":[[17,{"n":5,"e":4142}],[16,{"n":6.5,"e":4154,"g":1}],[15,{"n":7,"e":4165}],[13,{"n":6,"e":4183}],[12,{"n":4,"e":4192}],[11,{"n":4.5,"e":4201}],[10,{"n":5.5,"e":4214}],[9,{"n":6,"e":4219}],[6,{"n":4.5,"e":4250}],[5,{"n":5.5,"e":4264}],[2,{"n":5,"e":4292}]]}],[3748,{"n":"McGovern","f":"Michael","fp":"G","r":1,"c":76,"s":{"s":9,"n":2,"a":4.5,"Os":9,"On":2,"Oa":4.5,"pg":2},"p":[[8,{"n":4.5,"e":4232}],[7,{"n":4.5,"e":4242}]]}],[6119,{"n":"Idah","f":"Adam","fp":"A","r":1,"c":76}],[720,{"n":"Jagielka","f":"Phil","fp":"DC","r":5,"c":77,"s":{"s":20,"n":4,"a":5,"d":0.41,"Og":1,"Os":46,"On":9,"Oa":5.11,"Od":0.93,"pd":9},"p":[[-37,{"n":5,"e":3532}],[-35,{"n":5,"e":3512}],[-34,{"n":3.5,"e":3501}],[-33,{"n":7,"e":3490,"g":1}],[-28,{"n":5.5,"e":3439}],[13,{"n":4.5,"e":4185}],[11,{"n":5,"e":4205}],[6,{"n":5.5,"e":4252}],[2,{"n":5,"e":4295}]]}],[980,{"n":"McBurnie","f":"Oliver","fp":"A","r":8,"c":77,"s":{"g":2,"s":70.5,"n":15,"a":4.7,"d":0.77,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":2,"Os":70.5,"On":15,"Oa":4.7,"Od":0.77,"pa":15},"p":[[14,{"n":5,"e":4174}],[8,{"n":4,"e":4234}],[5,{"n":3.5,"e":4261}],[17,{"n":5,"e":4145}],[16,{"n":4.5,"e":4154}],[15,{"n":4,"e":4161}],[13,{"n":6.5,"e":4185,"g":1}],[11,{"n":5,"e":4205}],[9,{"n":4.5,"e":4225}],[7,{"n":4,"e":4238}],[6,{"n":5,"e":4252}],[4,{"n":4.5,"e":4269}],[3,{"n":6,"e":4282,"g":1}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4300}]]}],[1071,{"n":"Mousset","f":"Lys","fp":"A","r":16,"c":77,"s":{"g":5,"s":72.5,"n":14,"a":5.18,"d":0.97,"Sg":2,"Ss":24.5,"Sn":5,"Sa":4.9,"Sd":1.02,"Og":6,"Os":141.5,"On":29,"Oa":4.88,"Od":0.75,"pa":29},"p":[[12,{"n":5,"e":4194}],[10,{"n":6,"e":4217,"g":1}],[-38,{"n":5,"e":3540}],[-37,{"n":4.5,"e":3528}],[-35,{"n":4,"e":3508}],[-30,{"n":4.5,"e":3462}],[-29,{"n":4.5,"e":3448}],[-28,{"n":5,"e":3438,"g":1}],[-27,{"n":4.5,"e":3428}],[-26,{"n":5,"e":3422}],[-25,{"n":4.5,"e":3410}],[-23,{"n":4.5,"e":3388}],[-22,{"n":5,"e":3383}],[-21,{"n":4.5,"e":3368}],[-20,{"n":4.5,"e":3364}],[-19,{"n":4.5,"e":3356}],[-18,{"n":4.5,"e":3338}],[17,{"n":4,"e":4145}],[16,{"n":4,"e":4154}],[15,{"n":4.5,"e":4161}],[14,{"n":6,"e":4174,"g":1}],[13,{"n":6,"e":4185,"g":1}],[11,{"n":7,"e":4205}],[9,{"n":6,"e":4225,"g":1}],[8,{"n":4.5,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":6,"e":4252,"g":1}],[5,{"n":4.5,"e":4261}],[4,{"n":5,"e":4269}]]}],[1085,{"n":"Besic","f":"Muhamed","fp":"MD","r":3,"c":77,"s":{"s":16,"n":3,"a":5.33,"d":0.29,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":16,"On":3,"Oa":5.33,"Od":0.29,"pm":3},"p":[[17,{"n":5,"e":4145}],[16,{"n":5.5,"e":4154}],[10,{"n":5.5,"e":4217}]],"a":{"m":4,"a":4,"M":4,"n":5}}],[2501,{"n":"Norwood","f":"Oliver","fp":"MD","r":15,"c":77,"s":{"s":94,"n":17,"a":5.53,"d":0.78,"Ss":94,"Sn":17,"Sa":5.53,"Sd":0.78,"Os":94,"On":17,"Oa":5.53,"Od":0.78,"pm":17},"p":[[17,{"n":7,"e":4145}],[16,{"n":5,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":6,"e":4174}],[13,{"n":5,"e":4185}],[12,{"n":5.5,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":4.5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":6,"e":4234}],[7,{"n":5,"e":4238}],[6,{"n":5.5,"e":4252}],[5,{"n":6,"e":4261}],[4,{"n":5.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":6.5,"e":4295}],[1,{"n":6,"e":4300}]]}],[3691,{"n":"Robinson","f":"Callum","fp":"A","r":7,"c":77,"s":{"g":1,"s":59,"n":13,"a":4.54,"d":0.88,"Og":1,"Os":59,"On":13,"Oa":4.54,"Od":0.88,"pa":13},"p":[[16,{"n":4,"e":4154}],[14,{"n":4.5,"e":4174}],[13,{"n":5.5,"e":4185}],[12,{"n":4,"e":4194}],[10,{"n":4,"e":4217}],[8,{"n":4.5,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":4.5,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":7,"e":4269,"g":1}],[3,{"n":3.5,"e":4282}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4300}]]}],[3694,{"n":"Lundstram","f":"John","fp":"DC","r":17,"c":77,"s":{"g":3,"s":94.5,"n":17,"a":5.56,"d":1.17,"Sg":3,"Ss":94.5,"Sn":17,"Sa":5.56,"Sd":1.17,"Og":3,"Os":94.5,"On":17,"Oa":5.56,"Od":1.17,"pm":17},"p":[[17,{"n":6.5,"e":4145}],[16,{"n":5.5,"e":4154}],[15,{"n":4.5,"e":4161}],[14,{"n":5,"e":4174}],[13,{"n":4.5,"e":4185}],[12,{"n":5,"e":4194}],[11,{"n":8,"e":4205,"g":2}],[10,{"n":5,"e":4217}],[9,{"n":5.5,"e":4225}],[8,{"n":4.5,"e":4234}],[7,{"n":5.5,"e":4238}],[6,{"n":7.5,"e":4252}],[5,{"n":5,"e":4261}],[4,{"n":5,"e":4269}],[3,{"n":4,"e":4282}],[2,{"n":7.5,"e":4295,"g":1}],[1,{"n":6,"e":4300}]],"a":{"m":15,"a":17,"M":25,"n":11}}],[3695,{"n":"O'Connell","f":"Jack","fp":"DC","r":14,"c":77,"s":{"s":91,"n":17,"a":5.35,"d":0.9,"Ss":91,"Sn":17,"Sa":5.35,"Sd":0.9,"Os":91,"On":17,"Oa":5.35,"Od":0.9,"pd":17},"p":[[17,{"n":6,"e":4145}],[16,{"n":5.5,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":4.5,"e":4174}],[13,{"n":5,"e":4185}],[12,{"n":4.5,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":6,"e":4217}],[9,{"n":7,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":5.5,"e":4238}],[6,{"n":7,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":4.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":6,"e":4295}],[1,{"n":5,"e":4300}]]}],[3701,{"n":"Heneghan","f":"Ben","fp":"DC","r":3,"c":77}],[3702,{"n":"Carruthers","f":"Samir","fp":"MD","r":4,"c":77}],[3703,{"n":"Bryan","f":"Kean","fp":"DC","r":1,"c":77}],[3705,{"n":"Egan","f":"John","fp":"DC","r":16,"c":77,"s":{"s":84.5,"n":16,"a":5.28,"d":0.88,"Ss":19,"Sn":4,"Sa":4.75,"Sd":1.04,"Os":84.5,"On":16,"Oa":5.28,"Od":0.88,"pd":16},"p":[[17,{"n":4.5,"e":4145}],[16,{"n":6,"e":4154}],[15,{"n":3.5,"e":4161}],[14,{"n":5,"e":4174}],[12,{"n":5,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":5.5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":6,"e":4238}],[6,{"n":7,"e":4252}],[5,{"n":5,"e":4261}],[4,{"n":4,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":5.5,"e":4295}],[1,{"n":5.5,"e":4300}]],"a":{"m":16,"a":17,"M":21,"n":6}}],[3713,{"n":"Kieron Freeman","f":"","fp":"DL","r":1,"c":77}],[3716,{"n":"Baldock","f":"George","fp":"DL","r":19,"c":77,"s":{"g":2,"s":90.5,"n":17,"a":5.32,"d":0.88,"Sg":2,"Ss":90.5,"Sn":17,"Sa":5.32,"Sd":0.88,"Og":2,"Os":90.5,"On":17,"Oa":5.32,"Od":0.88,"pm":17},"p":[[17,{"n":5,"e":4145}],[16,{"n":7.5,"e":4154,"g":1}],[15,{"n":4.5,"e":4161}],[14,{"n":5.5,"e":4174}],[13,{"n":4.5,"e":4185}],[12,{"n":6,"e":4194,"g":1}],[11,{"n":6.5,"e":4205}],[10,{"n":5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":5,"e":4234}],[7,{"n":5,"e":4238}],[6,{"n":5.5,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":4.5,"e":4269}],[3,{"n":5.5,"e":4282}],[2,{"n":6,"e":4295}],[1,{"n":4,"e":4300}]]}],[3721,{"n":"Moore","f":"Simon","fp":"G","r":7,"c":77,"s":{"s":2.5,"n":1,"a":2.5,"Os":2.5,"On":1,"Oa":2.5,"pg":1},"p":[[13,{"n":2.5,"e":4185}]]}],[3725,{"n":"Stevens","f":"Enda","fp":"DL","r":14,"c":77,"s":{"g":1,"s":86.5,"n":17,"a":5.09,"d":0.87,"Sg":1,"Ss":86.5,"Sn":17,"Sa":5.09,"Sd":0.87,"Og":1,"Os":86.5,"On":17,"Oa":5.09,"Od":0.87,"pm":17},"p":[[17,{"n":5,"e":4145}],[16,{"n":6.5,"e":4154,"g":1}],[15,{"n":4,"e":4161}],[14,{"n":4,"e":4174}],[13,{"n":4,"e":4185}],[12,{"n":4,"e":4194}],[11,{"n":6.5,"e":4205}],[10,{"n":6,"e":4217}],[9,{"n":5.5,"e":4225}],[8,{"n":5,"e":4234}],[7,{"n":5.5,"e":4238}],[6,{"n":6,"e":4252}],[5,{"n":4.5,"e":4261}],[4,{"n":5.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":5.5,"e":4295}],[1,{"n":4.5,"e":4300}]]}],[3726,{"n":"Duffy","f":"Mark","fp":"MD","r":12,"c":77}],[3727,{"n":"Holmes","f":"Ricky","fp":"MD","r":2,"c":77}],[3731,{"n":"Luke Freeman","f":"","fp":"MO","r":6,"c":77,"s":{"s":38,"n":8,"a":4.75,"d":0.27,"Os":38,"On":8,"Oa":4.75,"Od":0.27,"pm":8},"p":[[15,{"n":4.5,"e":4161}],[14,{"n":5,"e":4174}],[12,{"n":5,"e":4194}],[9,{"n":5,"e":4225}],[4,{"n":4.5,"e":4269}],[3,{"n":4.5,"e":4282}],[2,{"n":4.5,"e":4295}],[1,{"n":5,"e":4300}]]}],[3732,{"n":"Evans","f":"Ched","fp":"A","r":5,"c":77}],[3734,{"n":"Fleck","f":"John","fp":"MO","r":16,"c":77,"s":{"g":4,"s":87,"n":15,"a":5.8,"d":1.03,"Sg":4,"Ss":77.5,"Sn":13,"Sa":5.96,"Sd":1.01,"Og":4,"Os":87,"On":15,"Oa":5.8,"Od":1.03,"pm":15},"p":[[17,{"n":8,"e":4145,"g":2}],[16,{"n":5.5,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":6,"e":4174}],[13,{"n":6.5,"e":4185,"g":1}],[12,{"n":5.5,"e":4194}],[11,{"n":7.5,"e":4205,"g":1}],[10,{"n":5.5,"e":4217}],[9,{"n":5.5,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":6,"e":4238}],[6,{"n":6.5,"e":4252}],[5,{"n":5.5,"e":4261}],[2,{"n":4.5,"e":4295}],[1,{"n":5,"e":4300}]]}],[3738,{"n":"Basham","f":"Chris","fp":"DC","r":12,"c":77,"s":{"s":86,"n":17,"a":5.06,"d":1.06,"Ss":86,"Sn":17,"Sa":5.06,"Sd":1.06,"Os":86,"On":17,"Oa":5.06,"Od":1.06,"pd":17},"p":[[17,{"n":6.5,"e":4145}],[16,{"n":5,"e":4154}],[15,{"n":3.5,"e":4161}],[14,{"n":6,"e":4174}],[13,{"n":4.5,"e":4185}],[12,{"n":4.5,"e":4194}],[11,{"n":5.5,"e":4205}],[10,{"n":6,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":6,"e":4252}],[5,{"n":4,"e":4261}],[4,{"n":5,"e":4269}],[3,{"n":3,"e":4282}],[2,{"n":6.5,"e":4295}],[1,{"n":4.5,"e":4300}]]}],[3743,{"n":"McGoldrick","f":"David","fp":"A","r":11,"c":77,"s":{"s":66.5,"n":14,"a":4.75,"d":0.78,"Ss":45.5,"Sn":9,"Sa":5.06,"Sd":0.81,"Os":66.5,"On":14,"Oa":4.75,"Od":0.78,"pa":14},"p":[[17,{"n":6,"e":4145}],[16,{"n":5,"e":4154}],[15,{"n":4.5,"e":4161}],[14,{"n":4,"e":4174}],[13,{"n":5,"e":4185}],[12,{"n":6,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":5,"e":4217}],[9,{"n":4,"e":4225}],[5,{"n":4,"e":4261}],[4,{"n":4,"e":4269}],[3,{"n":4,"e":4282}],[2,{"n":4.5,"e":4295}],[1,{"n":4.5,"e":4300}]]}],[3745,{"n":"Sharp","f":"Billy","fp":"A","r":7,"c":77,"s":{"g":1,"s":40.5,"n":9,"a":4.5,"d":0.94,"Og":1,"Os":40.5,"On":9,"Oa":4.5,"Od":0.94,"pa":9},"p":[[15,{"n":4,"e":4161}],[13,{"n":4.5,"e":4185}],[11,{"n":5,"e":4205}],[10,{"n":4.5,"e":4217}],[9,{"n":4.5,"e":4225}],[8,{"n":4.5,"e":4234}],[5,{"n":2.5,"e":4261}],[3,{"n":5,"e":4282}],[1,{"n":6,"e":4300,"g":1}]]}],[3746,{"n":"Stearman","f":"Richard","fp":"DC","r":1,"c":77}],[3749,{"n":"Clarke","f":"Leon","fp":"A","r":1,"c":77,"s":{"s":4,"n":1,"a":4,"Os":4,"On":1,"Oa":4,"pa":1},"p":[[7,{"n":4,"e":4238}]]}],[3750,{"n":"Wright","f":"Jake","fp":"DC","r":3,"c":77}],[5446,{"n":"Henderson","f":"Dean","fp":"G","r":16,"c":77,"s":{"s":88.5,"n":16,"a":5.53,"d":0.9,"Ss":21.5,"Sn":4,"Sa":5.38,"Sd":0.95,"Os":88.5,"On":16,"Oa":5.53,"Od":0.9,"pg":16},"p":[[17,{"n":5.5,"e":4145}],[16,{"n":6,"e":4154}],[15,{"n":4,"e":4161}],[14,{"n":6,"e":4174}],[12,{"n":6,"e":4194}],[11,{"n":6,"e":4205}],[10,{"n":5.5,"e":4217}],[9,{"n":6,"e":4225}],[8,{"n":6,"e":4234}],[7,{"n":4,"e":4238}],[6,{"n":7,"e":4252}],[5,{"n":6,"e":4261}],[4,{"n":5,"e":4269}],[3,{"n":4,"e":4282}],[2,{"n":6.5,"e":4295}],[1,{"n":5,"e":4300}]]}],[5447,{"n":"Osborn","f":"Ben","fp":"MD","r":1,"c":77,"s":{"s":15,"n":3,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":15,"On":3,"Oa":5,"pm":3},"p":[[17,{"n":5,"e":4145}],[6,{"n":5,"e":4252}],[4,{"n":5,"e":4269}]]}],[5450,{"n":"Morrison","f":"Ravel","fp":"MO","r":1,"c":77,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pm":1},"p":[[3,{"n":4.5,"e":4282}]]}],[6121,{"n":"Verrips","f":"Michael","fp":"G","r":1,"c":77}],[669,{"n":"Long","f":"Shane","fp":"A","r":10,"c":35,"s":{"s":41.5,"n":9,"a":4.61,"d":0.7,"Ss":15,"Sn":3,"Sa":5,"Sd":1,"Og":5,"Os":118,"On":25,"Oa":4.72,"Od":0.99,"pa":25},"p":[[17,{"n":4,"e":4146}],[14,{"n":4.5,"e":4177}],[7,{"n":4.5,"e":4243}],[-37,{"n":3,"e":3536}],[-31,{"n":6,"e":3475,"g":1}],[-34,{"n":6,"e":3505,"g":1}],[-30,{"n":5,"e":3467}],[-38,{"n":3,"e":3545}],[-36,{"n":6,"e":3525,"g":1}],[-35,{"n":4.5,"e":3515}],[-33,{"n":5.5,"e":3494,"g":1}],[-28,{"n":5,"e":3445}],[-26,{"n":3.5,"e":3424}],[-25,{"n":4,"e":3409}],[-23,{"n":5,"e":3395}],[-22,{"n":7,"e":3384,"g":1}],[-21,{"n":4.5,"e":3371}],[-20,{"n":4.5,"e":3365}],[-19,{"n":4,"e":3355}],[16,{"n":5,"e":4153}],[15,{"n":6,"e":4165}],[13,{"n":5,"e":4178}],[8,{"n":3.5,"e":4233}],[5,{"n":4.5,"e":4261}],[4,{"n":4.5,"e":4268}]]}],[673,{"n":"Redmond","f":"Nathan","fp":"MO","r":13,"c":35,"s":{"g":1,"s":74,"n":15,"a":4.93,"d":1.08,"Ss":39,"Sn":8,"Sa":4.88,"Sd":1.03,"Og":7,"Os":183,"On":36,"Oa":5.08,"Od":1.17,"pm":10,"pa":26},"p":[[9,{"n":5.5,"e":4227}],[-38,{"n":7,"e":3545,"g":1}],[-37,{"n":4,"e":3536}],[-36,{"n":6,"e":3525}],[-35,{"n":3.5,"e":3515}],[-34,{"n":8,"e":3505,"g":2}],[-33,{"n":3.5,"e":3494}],[-32,{"n":6,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":4.5,"e":3467}],[-29,{"n":5,"e":3453}],[-28,{"n":6,"e":3445}],[-27,{"n":4,"e":3429}],[-26,{"n":5,"e":3424}],[-25,{"n":6.5,"e":3409,"g":1}],[-24,{"n":4,"e":3405}],[-23,{"n":4,"e":3395}],[-22,{"n":5.5,"e":3384}],[-21,{"n":4.5,"e":3371}],[-20,{"n":4.5,"e":3365}],[-19,{"n":5.5,"e":3355,"g":1}],[-18,{"n":7,"e":3343,"g":1}],[17,{"n":3.5,"e":4146}],[16,{"n":6,"e":4153}],[15,{"n":5.5,"e":4165}],[14,{"n":4.5,"e":4177}],[13,{"n":6.5,"e":4178}],[12,{"n":4,"e":4193}],[11,{"n":4.5,"e":4204}],[10,{"n":4.5,"e":4215}],[8,{"n":4,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":5,"e":4248}],[3,{"n":7.5,"e":4280,"g":1}],[2,{"n":4.5,"e":4293}],[1,{"n":4,"e":4301}]],"a":{"m":15,"a":17,"M":22,"n":7}}],[693,{"n":"Austin","f":"Charlie","fp":"A","r":3,"c":35,"s":{"Os":51.5,"On":12,"Oa":4.29,"Od":0.66,"pa":12},"p":[[-38,{"n":4,"e":3545}],[-36,{"n":3.5,"e":3525}],[-33,{"n":4.5,"e":3494}],[-30,{"n":4,"e":3467}],[-29,{"n":4,"e":3453}],[-28,{"n":4.5,"e":3445}],[-27,{"n":4,"e":3429}],[-26,{"n":6,"e":3424}],[-25,{"n":4.5,"e":3409}],[-21,{"n":4.5,"e":3371}],[-20,{"n":3.5,"e":3365}],[-19,{"n":4.5,"e":3355}]]}],[710,{"n":"Oriol Romeu","f":"","fp":"MD","r":8,"c":35,"s":{"s":69,"n":14,"a":4.93,"d":1.04,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":1,"Os":181.5,"On":35,"Oa":5.19,"Od":1.06,"pm":35},"p":[[-38,{"n":6,"e":3545}],[-37,{"n":5,"e":3536}],[-36,{"n":3.5,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":5.5,"e":3505}],[-33,{"n":5.5,"e":3494}],[-32,{"n":5.5,"e":3479}],[-31,{"n":5.5,"e":3475}],[-30,{"n":4,"e":3467}],[-29,{"n":5,"e":3453}],[-28,{"n":8,"e":3445,"g":1}],[-27,{"n":4.5,"e":3429}],[-26,{"n":4,"e":3424}],[-25,{"n":6.5,"e":3409}],[-24,{"n":5,"e":3405}],[-23,{"n":5.5,"e":3395}],[-22,{"n":6,"e":3384}],[-21,{"n":5.5,"e":3371}],[-20,{"n":5,"e":3365}],[-19,{"n":6,"e":3355}],[-18,{"n":7,"e":3343}],[17,{"n":5.5,"e":4146}],[15,{"n":5,"e":4165}],[12,{"n":4,"e":4193}],[11,{"n":5.5,"e":4204}],[10,{"n":3,"e":4215}],[9,{"n":4.5,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":6,"e":4248}],[5,{"n":6.5,"e":4261}],[4,{"n":6,"e":4268}],[3,{"n":5.5,"e":4280}],[2,{"n":5.5,"e":4293}],[1,{"n":3.5,"e":4301}]]}],[721,{"n":"Bertrand","f":"Ryan","fp":"DL","r":10,"c":35,"s":{"g":1,"s":51.5,"n":12,"a":4.29,"d":1.1,"Sg":1,"Ss":23.5,"Sn":5,"Sa":4.7,"Sd":1.1,"Og":1,"Os":102.5,"On":24,"Oa":4.27,"Od":0.91,"pd":11,"pm":13},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3,"e":3536}],[-36,{"n":4,"e":3525}],[-35,{"n":3.5,"e":3515}],[-34,{"n":5,"e":3505}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3475}],[-30,{"n":5,"e":3467}],[-29,{"n":3.5,"e":3453}],[-28,{"n":5,"e":3445}],[-26,{"n":3.5,"e":3424}],[17,{"n":5,"e":4146}],[16,{"n":3,"e":4153}],[15,{"n":6,"e":4165,"g":1}],[14,{"n":4.5,"e":4177}],[13,{"n":5,"e":4178}],[10,{"n":3,"e":4215}],[9,{"n":5.5,"e":4227}],[8,{"n":2.5,"e":4233}],[7,{"n":5,"e":4243}],[6,{"n":4.5,"e":4248}],[2,{"n":4,"e":4293}],[1,{"n":3.5,"e":4301}]]}],[725,{"n":"Forster","f":"Fraser","fp":"G","r":11,"c":35,"s":{"Os":4.5,"On":1,"Oa":4.5,"pg":1},"p":[[-37,{"n":4.5,"e":3536}]]}],[727,{"n":"Højbjerg","f":"Pierre-Emile","fp":"MO","r":11,"c":35,"s":{"s":80,"n":16,"a":5,"d":1.02,"Ss":28,"Sn":5,"Sa":5.6,"Sd":1.39,"Og":2,"Os":172.5,"On":33,"Oa":5.23,"Od":1.04,"pd":1,"pm":32},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3.5,"e":3536}],[-36,{"n":6,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":6,"e":3505}],[-33,{"n":6,"e":3494}],[-32,{"n":6.5,"e":3479,"g":1}],[-31,{"n":5,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":5.5,"e":3453}],[-28,{"n":7,"e":3445}],[-27,{"n":4.5,"e":3429}],[-26,{"n":4.5,"e":3424}],[-24,{"n":4.5,"e":3405}],[-23,{"n":6,"e":3395}],[-20,{"n":6,"e":3365,"g":1}],[-18,{"n":7,"e":3343}],[17,{"n":5,"e":4146}],[16,{"n":4,"e":4153}],[15,{"n":7.5,"e":4165}],[14,{"n":6.5,"e":4177}],[13,{"n":5,"e":4178}],[11,{"n":4.5,"e":4204}],[10,{"n":3,"e":4215}],[9,{"n":4.5,"e":4227}],[8,{"n":4.5,"e":4233}],[7,{"n":5.5,"e":4243}],[6,{"n":4.5,"e":4248}],[5,{"n":5.5,"e":4261}],[4,{"n":5.5,"e":4268}],[3,{"n":5,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":4.5,"e":4301}]]}],[745,{"n":"Davis","f":"Steven","fp":"MD","r":5,"c":35}],[755,{"n":"Cédric Soares","f":"","fp":"DL","r":10,"c":35,"s":{"s":40,"n":9,"a":4.44,"d":0.68,"Ss":26,"Sn":6,"Sa":4.33,"Sd":0.75,"Os":55,"On":12,"Oa":4.58,"Od":0.63,"pd":10,"pm":2},"p":[[-23,{"n":5,"e":3395}],[-22,{"n":5,"e":3384}],[-21,{"n":5,"e":3371}],[17,{"n":4.5,"e":4146}],[16,{"n":3,"e":4153}],[15,{"n":5,"e":4165}],[14,{"n":5,"e":4177}],[13,{"n":4.5,"e":4178}],[12,{"n":4,"e":4193}],[6,{"n":4,"e":4248}],[5,{"n":5,"e":4261}],[4,{"n":5,"e":4268}]]}],[826,{"n":"Boufal","f":"Sofiane","fp":"MO","r":9,"c":35,"s":{"s":61.5,"n":12,"a":5.13,"d":0.68,"Og":1,"Os":165.5,"On":33,"Oa":5.02,"Od":0.7,"pm":30,"pa":3},"p":[[-38,{"n":5,"e":2343}],[-37,{"n":4.5,"e":2332}],[-36,{"n":5.5,"e":2329}],[-35,{"n":4.5,"e":2318}],[-31,{"n":5,"e":2274}],[-30,{"n":5,"e":2270}],[-29,{"n":4.5,"e":2254}],[-27,{"n":5,"e":2239}],[-26,{"n":5,"e":2230}],[-25,{"n":4.5,"e":2212}],[-24,{"n":3.5,"e":2203}],[-23,{"n":4.5,"e":2199}],[-21,{"n":5,"e":2178}],[-20,{"n":4.5,"e":2164}],[-19,{"n":4,"e":2158}],[-18,{"n":5,"e":2146}],[-17,{"n":5.5,"e":2134}],[-33,{"n":7,"e":2295,"g":1}],[-32,{"n":6,"e":2283}],[-28,{"n":5,"e":2247}],[-22,{"n":5.5,"e":2183}],[16,{"n":5,"e":4153}],[14,{"n":5.5,"e":4177}],[13,{"n":5.5,"e":4178}],[12,{"n":4,"e":4193}],[9,{"n":5,"e":4227}],[8,{"n":4.5,"e":4233}],[7,{"n":4,"e":4243}],[6,{"n":5.5,"e":4248}],[5,{"n":6,"e":4261}],[4,{"n":5.5,"e":4268}],[3,{"n":6,"e":4280}],[1,{"n":5,"e":4301}]]}],[857,{"n":"Ward-Prowse","f":"James","fp":"MO","r":22,"c":35,"s":{"g":4,"s":90,"n":17,"a":5.29,"d":1.09,"Sg":4,"Ss":90,"Sn":17,"Sa":5.29,"Sd":1.09,"Og":11,"Oao":1,"Os":195.5,"On":36,"Oa":5.43,"Od":1.04,"pm":32,"pa":4},"p":[[-38,{"n":5,"e":3545}],[-37,{"n":4.5,"e":3536}],[-36,{"n":6,"e":3525,"g":1}],[-35,{"n":4.5,"e":3515}],[-34,{"n":5,"e":3505}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":7,"e":3467,"g":1}],[-29,{"n":6.5,"e":3453,"g":1}],[-28,{"n":7,"e":3445,"g":1}],[-27,{"n":4,"e":3429}],[-26,{"n":4.5,"e":3424}],[-25,{"n":6,"e":3409}],[-24,{"n":6.5,"e":3405,"g":1}],[-23,{"n":6.5,"e":3395,"g":1}],[-22,{"n":7,"e":3384,"g":1}],[-21,{"n":6,"e":3371}],[-20,{"n":5,"e":3365,"a":1}],[17,{"n":4.5,"e":4146}],[16,{"n":4.5,"e":4153}],[15,{"n":6.5,"e":4165}],[14,{"n":6,"e":4177,"g":1}],[13,{"n":6,"e":4178,"g":1}],[12,{"n":5.5,"e":4193}],[11,{"n":7,"e":4204,"g":1}],[10,{"n":4,"e":4215}],[9,{"n":6,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4,"e":4243}],[6,{"n":7,"e":4248,"g":1}],[5,{"n":5.5,"e":4261}],[4,{"n":5,"e":4268}],[3,{"n":6,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":3.5,"e":4301}]]}],[879,{"n":"Yoshida","f":"Maya","fp":"DC","r":6,"c":35,"s":{"s":36.5,"n":8,"a":4.56,"d":1.37,"Os":97.5,"On":19,"Oa":5.13,"Od":1.23,"pd":19},"p":[[-35,{"n":4,"e":3515}],[-34,{"n":6.5,"e":3505}],[-33,{"n":5,"e":3494}],[-32,{"n":6,"e":3479}],[-31,{"n":6,"e":3475}],[-30,{"n":5,"e":3467}],[-29,{"n":4.5,"e":3453}],[-28,{"n":7,"e":3445}],[-21,{"n":6.5,"e":3371}],[-19,{"n":4.5,"e":3355}],[-18,{"n":6,"e":3343}],[15,{"n":5,"e":4165}],[10,{"n":2,"e":4215}],[9,{"n":5.5,"e":4227}],[8,{"n":3,"e":4233}],[7,{"n":5,"e":4243}],[5,{"n":6,"e":4261}],[4,{"n":5.5,"e":4268}],[2,{"n":4.5,"e":4293}]]}],[940,{"n":"McCarthy","f":"Alex","fp":"G","r":14,"c":35,"s":{"s":36.5,"n":7,"a":5.21,"d":0.57,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.57,"Os":77.5,"On":15,"Oa":5.17,"Od":0.75,"pg":15},"p":[[-26,{"n":4,"e":3424}],[-25,{"n":6.5,"e":3409}],[-24,{"n":4.5,"e":3405}],[-23,{"n":5,"e":3395}],[-22,{"n":6.5,"e":3384}],[-20,{"n":5,"e":3365}],[-19,{"n":5,"e":3355}],[-18,{"n":4.5,"e":3343}],[17,{"n":6,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":5,"e":4165}],[14,{"n":5,"e":4177}],[13,{"n":6,"e":4178}],[12,{"n":4.5,"e":4193}],[11,{"n":5,"e":4204}]]}],[962,{"n":"Clasie","f":"Jordy","fp":"MD","r":5,"c":35}],[1010,{"n":"Ings","f":"Danny","fp":"A","r":32,"c":35,"s":{"g":9,"s":92.5,"n":17,"a":5.44,"d":0.95,"Sg":9,"Ss":92.5,"Sn":17,"Sa":5.44,"Sd":0.95,"Og":10,"Os":148.5,"On":29,"Oa":5.12,"Od":1.02,"pa":29},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3.5,"e":3536}],[-36,{"n":6,"e":3525}],[-35,{"n":3,"e":3515}],[-34,{"n":6,"e":3505}],[-32,{"n":4.5,"e":3479}],[-25,{"n":4,"e":3409}],[-24,{"n":5,"e":3405}],[-23,{"n":5,"e":3395}],[-21,{"n":4.5,"e":3371}],[-19,{"n":4,"e":3355}],[-18,{"n":6,"e":3343,"g":1}],[17,{"n":4.5,"e":4146}],[16,{"n":6,"e":4153,"g":1}],[15,{"n":6.5,"e":4165,"g":1}],[14,{"n":7,"e":4177,"g":1}],[13,{"n":6,"e":4178,"g":1}],[12,{"n":6,"e":4193,"g":1}],[11,{"n":4.5,"e":4204}],[10,{"n":4.5,"e":4215}],[9,{"n":6,"e":4227,"g":1}],[8,{"n":6,"e":4233,"g":1}],[7,{"n":6,"e":4243,"g":1}],[6,{"n":5,"e":4248}],[5,{"n":4.5,"e":4261}],[4,{"n":4.5,"e":4268}],[3,{"n":6,"e":4280}],[2,{"n":6,"e":4293,"g":1}],[1,{"n":3.5,"e":4301}]],"a":{"m":21,"a":27,"M":32,"n":5}}],[1030,{"n":"Josh Sims","f":"","fp":"MD","r":4,"c":35,"s":{"Os":33.5,"On":7,"Oa":4.79,"Od":1.04,"pm":5,"pa":2},"p":[[-38,{"n":4.5,"e":3545}],[-35,{"n":3,"e":3515}],[-34,{"n":6,"e":3505}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3475}],[-30,{"n":6,"e":3467}]]}],[1037,{"n":"McQueen","f":"Sam","fp":"DL","r":1,"c":35}],[1050,{"n":"Stephens","f":"Jack","fp":"DC","r":10,"c":35,"s":{"s":38,"n":9,"a":4.22,"d":0.75,"Ss":34,"Sn":8,"Sa":4.25,"Sd":0.8,"Og":1,"Os":113,"On":25,"Oa":4.52,"Od":0.82,"pd":25},"p":[[-38,{"n":5,"e":3545}],[-37,{"n":4,"e":3536}],[-36,{"n":4,"e":3525}],[-35,{"n":3.5,"e":3515}],[-34,{"n":5,"e":3505}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3475}],[-27,{"n":3,"e":3429}],[-26,{"n":5.5,"e":3424,"g":1}],[-25,{"n":4.5,"e":3409}],[-24,{"n":5,"e":3405}],[-23,{"n":6,"e":3395}],[-22,{"n":6,"e":3384}],[-21,{"n":5,"e":3371}],[-20,{"n":4,"e":3365}],[-18,{"n":5,"e":3343}],[17,{"n":4.5,"e":4146}],[16,{"n":4,"e":4153}],[15,{"n":5.5,"e":4165}],[14,{"n":4.5,"e":4177}],[13,{"n":3.5,"e":4178}],[12,{"n":3,"e":4193}],[11,{"n":5,"e":4204}],[10,{"n":4,"e":4215}],[1,{"n":4,"e":4301}]]}],[1051,{"n":"Reed","f":"Harrison","fp":"MD","r":3,"c":35}],[1077,{"n":"Lewis","f":"Harry","fp":"G","r":1,"c":35}],[1078,{"n":"Hesketh","f":"Jake","fp":"MD","r":5,"c":35}],[1105,{"n":"Gunn","f":"Angus","fp":"G","r":7,"c":35,"s":{"s":50,"n":10,"a":5,"d":1.27,"Os":112.5,"On":22,"Oa":5.11,"Od":1.45,"pg":22},"p":[[-38,{"n":3.5,"e":3545}],[-36,{"n":2.5,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":5,"e":3505}],[-33,{"n":4,"e":3494}],[-32,{"n":6,"e":3479}],[-31,{"n":6,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":6.5,"e":3453}],[-28,{"n":7,"e":3445}],[-27,{"n":4,"e":3429}],[-21,{"n":8,"e":3371}],[10,{"n":3.5,"e":4215}],[9,{"n":5,"e":4227}],[8,{"n":4,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":3.5,"e":4248}],[5,{"n":6.5,"e":4261}],[4,{"n":6.5,"e":4268}],[3,{"n":6.5,"e":4280}],[2,{"n":6,"e":4293}],[1,{"n":4,"e":4301}]],"a":{"m":15,"a":15,"M":15,"n":5}}],[1302,{"n":"Hoedt","f":"Wesley","fp":"DC","r":7,"c":35,"s":{"Os":46.5,"On":10,"Oa":4.65,"Od":0.85,"pd":10},"p":[[-34,{"n":5,"e":2308}],[-37,{"n":4,"e":2332}],[-30,{"n":4.5,"e":2270}],[-29,{"n":4.5,"e":2254}],[-28,{"n":5,"e":2247}],[-26,{"n":5.5,"e":2230}],[-25,{"n":6,"e":2212}],[-24,{"n":3,"e":2203}],[-23,{"n":5,"e":2199}],[-21,{"n":4,"e":2178}]]}],[1315,{"n":"Lemina","f":"Mario","fp":"MD","r":3,"c":35,"s":{"Og":1,"Os":28.5,"On":6,"Oa":4.75,"Od":0.88,"pm":6},"p":[[-37,{"n":4,"e":3536}],[-35,{"n":6,"e":3515,"g":1}],[-31,{"n":5,"e":3475}],[-20,{"n":3.5,"e":3365}],[-19,{"n":5,"e":3355}],[-18,{"n":5,"e":3343}]]}],[1333,{"n":"Bednarek","f":"Jan","fp":"DC","r":10,"c":35,"s":{"s":74.5,"n":17,"a":4.38,"d":1.21,"Ss":74.5,"Sn":17,"Sa":4.38,"Sd":1.21,"Os":179.5,"On":38,"Oa":4.72,"Od":1.19,"pd":38},"p":[[-38,{"n":5.5,"e":3545}],[-37,{"n":4,"e":3536}],[-36,{"n":4.5,"e":3525}],[-35,{"n":4,"e":3515}],[-34,{"n":6,"e":3505}],[-33,{"n":3.5,"e":3494}],[-32,{"n":5.5,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":4,"e":3453}],[-28,{"n":6,"e":3445}],[-27,{"n":4,"e":3429}],[-26,{"n":4,"e":3424}],[-25,{"n":5.5,"e":3409}],[-24,{"n":6,"e":3405}],[-23,{"n":6,"e":3395}],[-22,{"n":7,"e":3384}],[-21,{"n":6,"e":3371}],[-20,{"n":3,"e":3365}],[-19,{"n":3.5,"e":3355}],[-18,{"n":6,"e":3343}],[17,{"n":4.5,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":5.5,"e":4165}],[14,{"n":5,"e":4177}],[13,{"n":4.5,"e":4178}],[12,{"n":3.5,"e":4193}],[11,{"n":5.5,"e":4204}],[10,{"n":1.5,"e":4215}],[9,{"n":5.5,"e":4227}],[8,{"n":3,"e":4233}],[7,{"n":4.5,"e":4243}],[6,{"n":3,"e":4248}],[5,{"n":5.5,"e":4261}],[4,{"n":5,"e":4268}],[3,{"n":6,"e":4280}],[2,{"n":3.5,"e":4293}],[1,{"n":3.5,"e":4301}]]}],[2264,{"n":"Obafemi","f":"Michael","fp":"A","r":5,"c":35,"s":{"s":26,"n":6,"a":4.33,"d":0.26,"Og":1,"Os":37,"On":8,"Oa":4.63,"Od":0.79,"pa":8},"p":[[-27,{"n":4.5,"e":3429}],[-18,{"n":6.5,"e":3343,"g":1}],[14,{"n":4,"e":4177}],[13,{"n":4.5,"e":4178}],[12,{"n":4.5,"e":4193}],[8,{"n":4.5,"e":4233}],[7,{"n":4.5,"e":4243}],[1,{"n":4,"e":4301}]]}],[2484,{"n":"Mohamed Elyounoussi","f":"","fp":"MD","r":7,"c":35,"s":{"Os":27,"On":6,"Oa":4.5,"Od":0.77,"pm":6},"p":[[-37,{"n":3,"e":3536}],[-27,{"n":5,"e":3429}],[-26,{"n":4.5,"e":3424}],[-24,{"n":5,"e":3405}],[-20,{"n":4.5,"e":3365}],[-19,{"n":5,"e":3355}]]}],[2486,{"n":"Vestergaard","f":"Jannik","fp":"DC","r":7,"c":35,"s":{"g":1,"s":53,"n":11,"a":4.82,"d":1.44,"Og":1,"Os":131,"On":25,"Oa":5.24,"Od":1.12,"pd":25},"p":[[-34,{"n":6,"e":3505}],[-33,{"n":5.5,"e":3494}],[-30,{"n":5.5,"e":3467}],[-29,{"n":5,"e":3453}],[-28,{"n":7,"e":3445}],[-27,{"n":4.5,"e":3429}],[-26,{"n":5,"e":3424}],[-25,{"n":6,"e":3409}],[-24,{"n":5,"e":3405}],[-23,{"n":5.5,"e":3395}],[-22,{"n":6,"e":3384}],[-21,{"n":5.5,"e":3371}],[-19,{"n":5,"e":3355}],[-18,{"n":6.5,"e":3343}],[12,{"n":4,"e":4193}],[11,{"n":5.5,"e":4204}],[10,{"n":3,"e":4215}],[9,{"n":5.5,"e":4227}],[7,{"n":4.5,"e":4243}],[6,{"n":3,"e":4248}],[5,{"n":6,"e":4261}],[4,{"n":6.5,"e":4268,"g":1}],[3,{"n":7,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":3,"e":4301}]],"a":{"m":15,"a":19,"M":25,"n":16}}],[2488,{"n":"Armstrong","f":"Stuart","fp":"MO","r":7,"c":35,"s":{"s":53,"n":11,"a":4.82,"d":0.46,"Ss":5,"Sn":1,"Sa":5,"Os":128,"On":27,"Oa":4.74,"Od":0.59,"pm":22,"pa":5},"p":[[-37,{"n":3.5,"e":3536}],[-36,{"n":4.5,"e":3525}],[-35,{"n":4.5,"e":3515}],[-33,{"n":4.5,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":4.5,"e":3475}],[-30,{"n":6,"e":3467}],[-29,{"n":4.5,"e":3453}],[-27,{"n":3.5,"e":3429}],[-25,{"n":4.5,"e":3409}],[-24,{"n":4.5,"e":3405}],[-23,{"n":4.5,"e":3395}],[-22,{"n":5.5,"e":3384}],[-21,{"n":5.5,"e":3371}],[-19,{"n":4.5,"e":3355}],[-18,{"n":5.5,"e":3343}],[17,{"n":5,"e":4146}],[13,{"n":5,"e":4178}],[12,{"n":3.5,"e":4193}],[11,{"n":5,"e":4204}],[10,{"n":4.5,"e":4215}],[7,{"n":5,"e":4243}],[6,{"n":5,"e":4248}],[5,{"n":5,"e":4261}],[4,{"n":5,"e":4268}],[3,{"n":5,"e":4280}],[2,{"n":5,"e":4293}]]}],[2543,{"n":"Valery","f":"Yan","fp":"DL","r":8,"c":35,"s":{"s":31,"n":8,"a":3.88,"d":1.46,"Og":2,"Os":125,"On":28,"Oa":4.46,"Od":1.01,"pd":12,"pm":16},"p":[[-38,{"n":4.5,"e":3545}],[-37,{"n":3,"e":3536}],[-36,{"n":5,"e":3525}],[-34,{"n":5,"e":3505}],[-33,{"n":4,"e":3494}],[-32,{"n":5,"e":3479}],[-31,{"n":5,"e":3475}],[-30,{"n":5,"e":3467,"g":1}],[-29,{"n":5,"e":3453,"g":1}],[-28,{"n":5.5,"e":3445}],[-27,{"n":4.5,"e":3429}],[-26,{"n":5,"e":3424}],[-25,{"n":5,"e":3409}],[-24,{"n":5,"e":3405}],[-23,{"n":5,"e":3395}],[-22,{"n":3.5,"e":3384}],[-21,{"n":5.5,"e":3371}],[-20,{"n":5,"e":3365}],[-19,{"n":3.5,"e":3355}],[-18,{"n":5,"e":3343}],[14,{"n":5,"e":4177}],[11,{"n":4.5,"e":4204}],[10,{"n":1,"e":4215}],[9,{"n":5,"e":4227}],[8,{"n":3.5,"e":4233}],[3,{"n":4.5,"e":4280}],[2,{"n":5,"e":4293}],[1,{"n":2.5,"e":4301}]]}],[2561,{"n":"Jones","f":"Alfie","fp":"MD","r":1,"c":35}],[2581,{"n":"Flannigan","f":"Jake","fp":"MD","r":1,"c":35}],[2582,{"n":"Gallagher","f":"Sam","fp":"A","r":3,"c":35,"s":{"Os":17.5,"On":4,"Oa":4.38,"Od":0.25,"pa":4},"p":[[-32,{"n":4,"e":3479}],[-29,{"n":4.5,"e":3453}],[-26,{"n":4.5,"e":3424}],[-22,{"n":4.5,"e":3384}]]}],[2974,{"n":"Ramsay","f":"Kayne","fp":"DL","r":1,"c":35}],[2982,{"n":"Johnson","f":"Tyreke","fp":"MD","r":1,"c":35}],[2983,{"n":"Slattery","f":"Callum","fp":"MO","r":1,"c":35,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pm":3},"p":[[-25,{"n":4.5,"e":3409}],[-24,{"n":4.5,"e":3405}],[-22,{"n":5,"e":3384}]]}],[2985,{"n":"Barnes","f":"Marcus","fp":"A","r":1,"c":35}],[3643,{"n":"Djenepo","f":"Moussa","fp":"MO","r":13,"c":35,"s":{"g":2,"s":55.5,"n":10,"a":5.55,"d":1.09,"Ss":36.5,"Sn":7,"Sa":5.21,"Sd":0.91,"Og":2,"Os":55.5,"On":10,"Oa":5.55,"Od":1.09,"pm":9,"pa":1},"p":[[17,{"n":5.5,"e":4146}],[16,{"n":5,"e":4153}],[15,{"n":5,"e":4165}],[14,{"n":7,"e":4177}],[13,{"n":5,"e":4178}],[12,{"n":4,"e":4193}],[11,{"n":5,"e":4204}],[5,{"n":7.5,"e":4261,"g":1}],[3,{"n":6.5,"e":4280,"g":1}],[2,{"n":5,"e":4293}]]}],[3668,{"n":"Adams","f":"Che","fp":"A","r":8,"c":35,"s":{"s":52.5,"n":12,"a":4.38,"d":0.91,"Ss":13,"Sn":3,"Sa":4.33,"Sd":0.29,"Os":52.5,"On":12,"Oa":4.38,"Od":0.91,"pa":12},"p":[[17,{"n":4.5,"e":4146}],[16,{"n":4.5,"e":4153}],[15,{"n":4,"e":4165}],[12,{"n":4,"e":4193}],[11,{"n":4.5,"e":4204}],[8,{"n":4.5,"e":4233}],[6,{"n":5.5,"e":4248}],[5,{"n":6,"e":4261}],[4,{"n":4,"e":4268}],[3,{"n":5,"e":4280}],[2,{"n":3.5,"e":4293}],[1,{"n":2.5,"e":4301}]]}],[5436,{"n":"Vokins","f":"Jake","fp":"DL","r":1,"c":35}],[5437,{"n":"Smallbone","f":"William","fp":"A","r":1,"c":35}],[6148,{"n":"N'Lundulu","f":"Daniel","fp":"A","r":1,"c":35}],[6149,{"n":"Danso","f":"Kevin","fp":"DC","r":5,"c":35,"s":{"s":27.5,"n":6,"a":4.58,"d":0.86,"Os":27.5,"On":6,"Oa":4.58,"Od":0.86,"pd":3,"pm":3},"p":[[11,{"n":5.5,"e":4204}],[10,{"n":5,"e":4215}],[9,{"n":4.5,"e":4227}],[6,{"n":3,"e":4248}],[4,{"n":4.5,"e":4268}],[3,{"n":5,"e":4280}]]}],[8,{"n":"Lucas Moura","f":"","fp":"MO","r":20,"c":24,"s":{"g":4,"s":80,"n":15,"a":5.33,"d":1.03,"Sg":2,"Ss":24,"Sn":4,"Sa":6,"Sd":1.47,"Og":9,"Os":161.5,"On":31,"Oa":5.21,"Od":1.12,"pm":19,"pa":12},"p":[[17,{"n":7,"e":4147,"g":1}],[13,{"n":5.5,"e":4187,"g":1}],[9,{"n":5,"e":4226}],[-36,{"n":4,"e":3526}],[-24,{"n":5.5,"e":3407}],[-20,{"n":4.5,"e":3366}],[-38,{"n":5,"e":3546}],[-37,{"n":5,"e":3528}],[-35,{"n":4,"e":3514}],[-34,{"n":8.5,"e":3506,"g":3}],[-33,{"n":5,"e":3495}],[-32,{"n":6,"e":3485,"g":1}],[-31,{"n":4.5,"e":3474}],[-30,{"n":4,"e":3467}],[-28,{"n":4.5,"e":3443}],[-27,{"n":4.5,"e":3430}],[-25,{"n":4,"e":3416}],[-19,{"n":7,"e":3356,"g":1}],[-18,{"n":5.5,"e":3342}],[16,{"n":7.5,"e":4155,"g":1}],[15,{"n":5,"e":4163}],[14,{"n":4.5,"e":4173}],[12,{"n":5.5,"e":4194}],[11,{"n":4,"e":4203}],[10,{"n":5,"e":4211}],[8,{"n":5.5,"e":4228}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4262}],[3,{"n":3.5,"e":4287}],[2,{"n":6,"e":4294,"g":1}],[1,{"n":6,"e":4304}]],"a":{"m":19,"a":32,"M":45,"n":10}}],[21,{"n":"Aurier","f":"Serge","fp":"DL","r":12,"c":24,"s":{"s":60,"n":12,"a":5,"d":1.21,"Ss":47,"Sn":9,"Sa":5.22,"Sd":0.94,"Os":69,"On":14,"Oa":4.93,"Od":1.12,"pd":11,"pm":3},"p":[[-27,{"n":4.5,"e":3430}],[-24,{"n":4.5,"e":3407}],[17,{"n":5,"e":4147}],[16,{"n":5.5,"e":4155}],[15,{"n":6,"e":4163}],[14,{"n":5,"e":4173}],[13,{"n":6,"e":4187}],[12,{"n":5.5,"e":4194}],[11,{"n":6,"e":4203}],[10,{"n":3,"e":4211}],[9,{"n":5,"e":4226}],[7,{"n":3.5,"e":4243}],[6,{"n":3,"e":4249}],[5,{"n":6.5,"e":4262}]]}],[295,{"n":"Lo Celso","f":"Giovani","fp":"MO","r":10,"c":24,"s":{"s":39,"n":8,"a":4.88,"d":0.23,"Og":5,"Os":136,"On":27,"Oa":5.04,"Od":1.16,"pm":19,"pa":8},"p":[[-38,{"n":6.5,"e":2350}],[-37,{"n":4.5,"e":2335}],[-36,{"n":4,"e":2330}],[-35,{"n":7,"e":2314}],[-33,{"n":5,"e":2294,"g":1}],[-32,{"n":6,"e":2288,"g":1}],[-31,{"n":8,"e":2273,"g":2}],[-30,{"n":4.5,"e":2269}],[-29,{"n":4,"e":2258}],[-28,{"n":4,"e":2246}],[-26,{"n":3.5,"e":2222}],[-24,{"n":7,"e":2205,"g":1}],[-23,{"n":3.5,"e":2198}],[-21,{"n":5,"e":2173}],[-18,{"n":4.5,"e":2149}],[-17,{"n":4,"e":2135}],[-27,{"n":5,"e":2239}],[-20,{"n":4,"e":2163}],[-19,{"n":7,"e":2155}],[15,{"n":4.5,"e":4163}],[14,{"n":5,"e":4173}],[12,{"n":5,"e":4194}],[11,{"n":4.5,"e":4203}],[10,{"n":5,"e":4211}],[4,{"n":5,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":5,"e":4294}]]}],[589,{"n":"Kane","f":"Harry","fp":"A","r":42,"c":24,"s":{"g":9,"s":87.5,"n":16,"a":5.47,"d":1.53,"Sg":3,"Ss":33,"Sn":6,"Sa":5.5,"Sd":1.7,"Og":17,"Os":152.5,"On":27,"Oa":5.65,"Od":1.39,"pa":27},"p":[[-32,{"n":4,"e":3485}],[-31,{"n":5,"e":3474}],[-30,{"n":6.5,"e":3467,"g":1}],[-29,{"n":6,"e":3454,"g":1}],[-28,{"n":4,"e":3443}],[-27,{"n":6,"e":3430,"g":1}],[-22,{"n":6,"e":3386}],[-21,{"n":7,"e":3370,"g":1}],[-20,{"n":6,"e":3366,"g":1}],[-19,{"n":7,"e":3356,"g":1}],[-18,{"n":7.5,"e":3342,"g":2}],[17,{"n":5.5,"e":4147}],[16,{"n":8.5,"e":4155,"g":2}],[15,{"n":4.5,"e":4163}],[14,{"n":5,"e":4173}],[13,{"n":6,"e":4187,"g":1}],[12,{"n":3.5,"e":4194}],[10,{"n":6,"e":4211,"g":1}],[9,{"n":4.5,"e":4226}],[8,{"n":3.5,"e":4228}],[7,{"n":6,"e":4243,"g":1}],[6,{"n":7,"e":4249,"g":1}],[5,{"n":6,"e":4262}],[4,{"n":6,"e":4277,"g":1}],[3,{"n":3.5,"e":4287}],[2,{"n":4,"e":4294}],[1,{"n":8,"e":4304,"g":2}]],"a":{"m":51,"a":87,"M":111,"n":11}}],[596,{"n":"Dele Alli","f":"","fp":"MO","r":29,"c":24,"s":{"g":5,"s":62.5,"n":10,"a":6.25,"d":1.06,"Sg":5,"Ss":58,"Sn":9,"Sa":6.44,"Sd":0.92,"Og":7,"Os":127,"On":23,"Oa":5.52,"Od":1.13,"pm":21,"pa":2},"p":[[-38,{"n":3.5,"e":3546}],[-37,{"n":5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-33,{"n":5,"e":3495}],[-32,{"n":4.5,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":5.5,"e":3467}],[-23,{"n":5.5,"e":3390,"g":1}],[-22,{"n":4,"e":3386}],[-21,{"n":5.5,"e":3370}],[-20,{"n":4,"e":3366}],[-18,{"n":6.5,"e":3342,"g":1}],[17,{"n":6.5,"e":4147}],[16,{"n":7,"e":4155}],[15,{"n":7,"e":4163,"g":1}],[14,{"n":8,"e":4173,"g":2}],[13,{"n":6,"e":4187}],[12,{"n":5.5,"e":4194}],[11,{"n":7,"e":4203,"g":1}],[10,{"n":5,"e":4211}],[9,{"n":6,"e":4226,"g":1}],[4,{"n":4.5,"e":4277}]]}],[611,{"n":"Eriksen","f":"Christian","fp":"MO","r":17,"c":24,"s":{"g":1,"s":67,"n":13,"a":5.15,"d":0.92,"Ss":5.5,"Sn":1,"Sa":5.5,"Og":8,"Os":188,"On":34,"Oa":5.53,"Od":1.11,"pm":30,"pa":4},"p":[[-38,{"n":7,"e":3546,"g":1}],[-37,{"n":5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":6,"e":3506}],[-33,{"n":6.5,"e":3495,"g":1}],[-32,{"n":5.5,"e":3485}],[-31,{"n":7.5,"e":3474,"g":1}],[-30,{"n":6,"e":3467}],[-29,{"n":4.5,"e":3454}],[-28,{"n":3.5,"e":3443}],[-27,{"n":5,"e":3430}],[-26,{"n":7,"e":3425,"g":1}],[-25,{"n":5.5,"e":3416}],[-24,{"n":5.5,"e":3407}],[-23,{"n":5.5,"e":3390}],[-22,{"n":5,"e":3386}],[-21,{"n":6.5,"e":3370,"g":1}],[-20,{"n":4.5,"e":3366}],[-19,{"n":8,"e":3356,"g":1}],[-18,{"n":7.5,"e":3342,"g":1}],[17,{"n":5.5,"e":4147}],[15,{"n":5,"e":4163}],[13,{"n":4.5,"e":4187}],[11,{"n":4.5,"e":4203}],[10,{"n":4,"e":4211}],[8,{"n":4,"e":4228}],[7,{"n":6.5,"e":4243}],[6,{"n":4.5,"e":4249}],[5,{"n":5.5,"e":4262}],[4,{"n":7,"e":4277,"g":1}],[3,{"n":5,"e":4287}],[2,{"n":5,"e":4294}],[1,{"n":6,"e":4304}]],"a":{"m":25,"a":27,"M":32,"n":5}}],[613,{"n":"Lloris","f":"Hugo","fp":"G","r":6,"c":24,"s":{"s":39,"n":7,"a":5.57,"d":1.48,"Os":152.5,"On":27,"Oa":5.65,"Od":1.25,"pg":27},"p":[[-38,{"n":6.5,"e":3546}],[-37,{"n":6,"e":3528}],[-36,{"n":6.5,"e":3526}],[-34,{"n":5.5,"e":3506}],[-33,{"n":6,"e":3495}],[-32,{"n":4,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":4.5,"e":3467}],[-29,{"n":6.5,"e":3454}],[-28,{"n":4,"e":3443}],[-27,{"n":4.5,"e":3430}],[-26,{"n":8.5,"e":3425}],[-25,{"n":6,"e":3416}],[-24,{"n":4.5,"e":3407}],[-23,{"n":5.5,"e":3390}],[-22,{"n":7,"e":3386}],[-21,{"n":6,"e":3370}],[-20,{"n":4,"e":3366}],[-19,{"n":7,"e":3356}],[-18,{"n":5,"e":3342}],[8,{"n":3,"e":4228}],[7,{"n":5,"e":4243}],[5,{"n":7,"e":4262}],[4,{"n":6,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":7.5,"e":4294}],[1,{"n":5.5,"e":4304}]],"a":{"m":25,"a":31,"M":41,"n":5}}],[635,{"n":"Wanyama","f":"Victor","fp":"MD","r":1,"c":24,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":56.5,"On":11,"Oa":5.14,"Od":0.87,"pm":11},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":4.5,"e":3528}],[-36,{"n":5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":7.5,"e":3506,"g":1}],[-33,{"n":5.5,"e":3495}],[-31,{"n":5,"e":3474}],[-29,{"n":4,"e":3454}],[-26,{"n":5,"e":3425}],[7,{"n":5,"e":4243}],[6,{"n":5,"e":4249}]]}],[652,{"n":"Alderweireld","f":"Toby","fp":"DC","r":16,"c":24,"s":{"s":82,"n":16,"a":5.13,"d":0.83,"Ss":26.5,"Sn":5,"Sa":5.3,"Sd":0.57,"Oao":1,"Os":180.5,"On":35,"Oa":5.16,"Od":0.79,"pd":35},"p":[[-38,{"n":4,"e":3546}],[-37,{"n":5,"e":3528}],[-36,{"n":5,"e":3526}],[-35,{"n":5.5,"e":3514}],[-33,{"n":7,"e":3495}],[-32,{"n":4,"e":3485,"a":1}],[-31,{"n":6,"e":3474}],[-29,{"n":5,"e":3454}],[-28,{"n":4.5,"e":3443}],[-27,{"n":4.5,"e":3430}],[-26,{"n":5,"e":3425}],[-25,{"n":5.5,"e":3416}],[-24,{"n":5.5,"e":3407}],[-23,{"n":5.5,"e":3390}],[-22,{"n":5,"e":3386}],[-21,{"n":6,"e":3370}],[-20,{"n":4,"e":3366}],[-19,{"n":6,"e":3356}],[-18,{"n":5.5,"e":3342}],[17,{"n":5.5,"e":4147}],[16,{"n":5.5,"e":4155}],[15,{"n":5,"e":4163}],[14,{"n":6,"e":4173}],[13,{"n":4.5,"e":4187}],[11,{"n":4.5,"e":4203}],[10,{"n":5.5,"e":4211}],[9,{"n":5,"e":4226}],[8,{"n":4,"e":4228}],[7,{"n":5.5,"e":4243}],[6,{"n":4,"e":4249}],[5,{"n":7,"e":4262}],[4,{"n":4,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":5,"e":4294}],[1,{"n":6,"e":4304}]]}],[658,{"n":"Vertonghen","f":"Jan","fp":"DC","r":13,"c":24,"s":{"g":1,"s":52.5,"n":10,"a":5.25,"d":1.06,"Sg":1,"Ss":22.5,"Sn":4,"Sa":5.63,"Sd":1.11,"Og":1,"Os":122,"On":23,"Oa":5.3,"Od":0.95,"pd":23},"p":[[-35,{"n":5,"e":3514}],[-34,{"n":5.5,"e":3506}],[-33,{"n":6.5,"e":3495}],[-32,{"n":4,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":4,"e":3467}],[-29,{"n":6,"e":3454}],[-27,{"n":4.5,"e":3430}],[-26,{"n":4.5,"e":3425}],[-25,{"n":6.5,"e":3416}],[-24,{"n":6,"e":3407}],[-23,{"n":6,"e":3390}],[-22,{"n":5,"e":3386}],[17,{"n":6,"e":4147,"g":1}],[16,{"n":7,"e":4155}],[15,{"n":4.5,"e":4163}],[14,{"n":5,"e":4173}],[9,{"n":5.5,"e":4226}],[8,{"n":3.5,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":6,"e":4262}],[4,{"n":4,"e":4277}]]}],[687,{"n":"Sissoko","f":"Moussa","fp":"MO","r":19,"c":24,"s":{"g":2,"s":91.5,"n":17,"a":5.38,"d":0.99,"Sg":2,"Ss":91.5,"Sn":17,"Sa":5.38,"Sd":0.99,"Og":2,"Os":183,"On":34,"Oa":5.38,"Od":0.95,"pd":1,"pm":33},"p":[[-38,{"n":5,"e":3546}],[-37,{"n":5.5,"e":3528}],[-34,{"n":6.5,"e":3506}],[-32,{"n":4.5,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":4.5,"e":3467}],[-29,{"n":4.5,"e":3454}],[-28,{"n":5,"e":3443}],[-27,{"n":4.5,"e":3430}],[-26,{"n":7,"e":3425}],[-25,{"n":5,"e":3416}],[-24,{"n":5,"e":3407}],[-22,{"n":4.5,"e":3386}],[-21,{"n":6,"e":3370}],[-20,{"n":4.5,"e":3366}],[-19,{"n":7,"e":3356}],[-18,{"n":6.5,"e":3342}],[17,{"n":6,"e":4147}],[16,{"n":7,"e":4155,"g":1}],[15,{"n":4,"e":4163}],[14,{"n":7,"e":4173,"g":1}],[13,{"n":4.5,"e":4187}],[12,{"n":5,"e":4194}],[11,{"n":5.5,"e":4203}],[10,{"n":5,"e":4211}],[9,{"n":5,"e":4226}],[8,{"n":3,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5.5,"e":4249}],[5,{"n":6,"e":4262}],[4,{"n":5,"e":4277}],[3,{"n":6,"e":4287}],[2,{"n":5.5,"e":4294}],[1,{"n":5.5,"e":4304}]]}],[714,{"n":"Rose","f":"Danny","fp":"DL","r":7,"c":24,"s":{"s":47.5,"n":10,"a":4.75,"d":0.26,"Os":131,"On":27,"Oa":4.85,"Od":0.55,"pd":19,"pm":8},"p":[[-37,{"n":5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":5,"e":3506}],[-33,{"n":5,"e":3495}],[-32,{"n":4,"e":3485}],[-31,{"n":4,"e":3474}],[-30,{"n":4,"e":3467}],[-29,{"n":4.5,"e":3454}],[-28,{"n":4.5,"e":3443}],[-27,{"n":5.5,"e":3430}],[-26,{"n":4.5,"e":3425}],[-25,{"n":5,"e":3416}],[-24,{"n":6.5,"e":3407}],[-23,{"n":5.5,"e":3390}],[-21,{"n":5.5,"e":3370}],[-19,{"n":5.5,"e":3356}],[13,{"n":5,"e":4187}],[10,{"n":4.5,"e":4211}],[9,{"n":4.5,"e":4226}],[7,{"n":5,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":5,"e":4262}],[4,{"n":4.5,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":4.5,"e":4294}],[1,{"n":4.5,"e":4304}]]}],[724,{"n":"Dier","f":"Eric","fp":"MD","r":12,"c":24,"s":{"s":33.5,"n":7,"a":4.79,"d":0.64,"Ss":11,"Sn":2,"Sa":5.5,"Sd":0.71,"Og":1,"Os":67.5,"On":14,"Oa":4.82,"Od":0.5,"pd":2,"pm":12},"p":[[-38,{"n":5.5,"e":3546,"g":1}],[-37,{"n":5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":4.5,"e":3514}],[-30,{"n":4.5,"e":3467}],[-25,{"n":5,"e":3416}],[-23,{"n":5,"e":3390}],[17,{"n":5,"e":4147}],[16,{"n":6,"e":4155}],[14,{"n":5,"e":4173}],[13,{"n":4.5,"e":4187}],[12,{"n":4.5,"e":4194}],[8,{"n":4,"e":4228}],[7,{"n":4.5,"e":4243}]]}],[783,{"n":"Dembélé","f":"Mousa","fp":"MD","r":3,"c":24}],[786,{"n":"Lamela","f":"Erik","fp":"MO","r":11,"c":24,"s":{"g":2,"s":48,"n":9,"a":5.33,"d":1.27,"Og":2,"Os":92.5,"On":18,"Oa":5.14,"Od":1.05,"pm":17,"pa":1},"p":[[-38,{"n":4.5,"e":3546}],[-29,{"n":5,"e":3454}],[-28,{"n":4,"e":3443}],[-27,{"n":4.5,"e":3430}],[-25,{"n":6.5,"e":3416}],[-24,{"n":5,"e":3407}],[-23,{"n":4.5,"e":3390}],[-22,{"n":4.5,"e":3386}],[-18,{"n":6,"e":3342}],[9,{"n":5,"e":4226}],[8,{"n":3.5,"e":4228}],[7,{"n":5,"e":4243}],[6,{"n":5.5,"e":4249}],[5,{"n":7,"e":4262,"g":1}],[4,{"n":5.5,"e":4277}],[3,{"n":3.5,"e":4287}],[2,{"n":7,"e":4294,"g":1}],[1,{"n":6,"e":4304}]]}],[799,{"n":"Vorm","f":"Michel","fp":"G","r":1,"c":24}],[824,{"n":"Son Heung-Min","f":"","fp":"A","r":36,"c":24,"s":{"g":5,"s":88.5,"n":15,"a":5.9,"d":1.48,"Sg":5,"Ss":88.5,"Sn":15,"Sa":5.9,"Sd":1.48,"Og":14,"Os":194,"On":34,"Oa":5.71,"Od":1.5,"pm":15,"pa":19},"p":[[-37,{"n":3.5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":6,"e":3506}],[-33,{"n":5,"e":3495}],[-32,{"n":4.5,"e":3485}],[-31,{"n":7,"e":3474,"g":1}],[-30,{"n":4.5,"e":3467}],[-29,{"n":4,"e":3454}],[-28,{"n":4,"e":3443}],[-27,{"n":4,"e":3430}],[-26,{"n":6.5,"e":3425,"g":1}],[-25,{"n":7,"e":3416,"g":1}],[-24,{"n":6.5,"e":3407,"g":1}],[-22,{"n":5,"e":3386}],[-21,{"n":7,"e":3370,"g":1}],[-20,{"n":4.5,"e":3366}],[-19,{"n":8,"e":3356,"g":2}],[-18,{"n":9,"e":3342,"g":2}],[17,{"n":5.5,"e":4147}],[16,{"n":8,"e":4155,"g":1}],[15,{"n":5.5,"e":4163}],[14,{"n":7.5,"e":4173}],[13,{"n":8,"e":4187,"g":1}],[12,{"n":6.5,"e":4194,"g":1}],[11,{"n":4.5,"e":4203}],[10,{"n":6,"e":4211}],[9,{"n":4,"e":4226}],[8,{"n":3.5,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":8,"e":4262,"g":2}],[4,{"n":6,"e":4277}],[3,{"n":4.5,"e":4287}]],"a":{"m":37,"a":49,"M":75,"n":7}}],[831,{"n":"Winks","f":"Harry","fp":"MD","r":9,"c":24,"s":{"s":76,"n":15,"a":5.07,"d":0.73,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":146.5,"On":27,"Oa":5.43,"Od":0.9,"pm":27},"p":[[-31,{"n":5.5,"e":3474}],[-28,{"n":6,"e":3443}],[-27,{"n":4.5,"e":3430}],[-26,{"n":6,"e":3425}],[-25,{"n":6,"e":3416}],[-24,{"n":5,"e":3407}],[-23,{"n":6.5,"e":3390,"g":1}],[-22,{"n":5.5,"e":3386}],[-21,{"n":7,"e":3370}],[-20,{"n":4.5,"e":3366}],[-19,{"n":7,"e":3356}],[-18,{"n":7,"e":3342}],[17,{"n":5,"e":4147}],[15,{"n":5.5,"e":4163}],[14,{"n":5,"e":4173}],[13,{"n":4.5,"e":4187}],[12,{"n":5,"e":4194}],[10,{"n":4.5,"e":4211}],[9,{"n":4.5,"e":4226}],[8,{"n":4,"e":4228}],[7,{"n":6,"e":4243}],[6,{"n":5,"e":4249}],[5,{"n":7,"e":4262}],[4,{"n":5,"e":4277}],[3,{"n":5,"e":4287}],[2,{"n":4.5,"e":4294}],[1,{"n":5.5,"e":4304}]]}],[847,{"n":"Janssen","f":"Vincent","fp":"A","r":1,"c":24,"s":{"Os":14,"On":3,"Oa":4.67,"Od":0.29,"pa":3},"p":[[-38,{"n":4.5,"e":3546}],[-36,{"n":5,"e":3526}],[-33,{"n":4.5,"e":3495}]]}],[896,{"n":"Davies","f":"Ben","fp":"DL","r":3,"c":24,"s":{"s":27,"n":6,"a":4.5,"d":0.63,"Os":95.5,"On":20,"Oa":4.78,"Od":0.72,"pd":19,"pm":1},"p":[[-38,{"n":4.5,"e":3546}],[-37,{"n":5,"e":3528}],[-36,{"n":5.5,"e":3526}],[-35,{"n":4.5,"e":3514}],[-34,{"n":6,"e":3506}],[-33,{"n":5,"e":3495}],[-32,{"n":5,"e":3485}],[-31,{"n":6,"e":3474}],[-30,{"n":5,"e":3467}],[-28,{"n":4.5,"e":3443}],[-22,{"n":4.5,"e":3386}],[-20,{"n":3,"e":3366}],[-19,{"n":5,"e":3356}],[-18,{"n":5,"e":3342}],[13,{"n":5,"e":4187}],[12,{"n":4,"e":4194}],[11,{"n":4.5,"e":4203}],[8,{"n":3.5,"e":4228}],[5,{"n":5,"e":4262}],[3,{"n":5,"e":4287}]]}],[918,{"n":"Nkoudou","f":"Georges-Kévin","fp":"MD","r":5,"c":24,"s":{"s":5,"n":1,"a":5,"Os":25.5,"On":5,"Oa":5.1,"Od":0.55,"pm":5},"p":[[-25,{"n":5,"e":2978}],[-24,{"n":5,"e":2965}],[-23,{"n":4.5,"e":2957}],[-23,{"n":6,"e":3390}],[1,{"n":5,"e":4304}]]}],[969,{"n":"Onomah","f":"Josh","fp":"MD","r":3,"c":24}],[999,{"n":"Carter-Vickers","f":"Cameron","fp":"DC","r":5,"c":24}],[1072,{"n":"Whiteman","f":"Alfie","fp":"G","r":7,"c":24}],[1118,{"n":"Walker-Peters","f":"Kyle","fp":"DL","r":3,"c":24,"s":{"s":14.5,"n":3,"a":4.83,"d":1.04,"Os":41.5,"On":8,"Oa":5.19,"Od":1,"pd":7,"pm":1},"p":[[-38,{"n":4.5,"e":3546}],[-34,{"n":6.5,"e":3506}],[-30,{"n":4.5,"e":3467}],[-26,{"n":5,"e":3425}],[-19,{"n":6.5,"e":3356}],[3,{"n":4.5,"e":4287}],[2,{"n":4,"e":4294}],[1,{"n":6,"e":4304}]]}],[1314,{"n":"Sánchez","f":"Davinson","fp":"DC","r":12,"c":24,"s":{"s":65,"n":13,"a":5,"d":0.65,"Ss":45.5,"Sn":9,"Sa":5.06,"Sd":0.58,"Og":1,"Os":139.5,"On":28,"Oa":4.98,"Od":0.92,"pd":28},"p":[[-37,{"n":5.5,"e":3528}],[-36,{"n":4.5,"e":3526}],[-35,{"n":5,"e":3514}],[-34,{"n":6,"e":3506}],[-32,{"n":5.5,"e":3485}],[-30,{"n":4,"e":3467}],[-29,{"n":3,"e":3454}],[-28,{"n":4,"e":3443}],[-26,{"n":7,"e":3425,"g":1}],[-25,{"n":6,"e":3416}],[-24,{"n":5.5,"e":3407}],[-23,{"n":4.5,"e":3390}],[-21,{"n":5.5,"e":3370}],[-20,{"n":3,"e":3366}],[-18,{"n":5.5,"e":3342}],[17,{"n":5,"e":4147}],[16,{"n":6,"e":4155}],[15,{"n":5.5,"e":4163}],[14,{"n":4.5,"e":4173}],[13,{"n":5,"e":4187}],[12,{"n":5,"e":4194}],[11,{"n":5,"e":4203}],[10,{"n":5.5,"e":4211}],[9,{"n":4,"e":4226}],[4,{"n":4,"e":4277}],[3,{"n":4.5,"e":4287}],[2,{"n":5,"e":4294}],[1,{"n":6,"e":4304}]],"a":{"m":13,"a":16,"M":20,"n":8}}],[1391,{"n":"Gazzaniga","f":"Paulo","fp":"G","r":16,"c":24,"s":{"s":60.5,"n":11,"a":5.5,"d":1.07,"Ss":54.5,"Sn":10,"Sa":5.45,"Sd":1.12,"Os":66,"On":12,"Oa":5.5,"Od":1.02,"pg":12},"p":[[-35,{"n":5.5,"e":3514}],[17,{"n":6,"e":4147}],[16,{"n":6,"e":4155}],[15,{"n":5,"e":4163}],[14,{"n":6,"e":4173}],[13,{"n":5,"e":4187}],[12,{"n":5,"e":4194}],[11,{"n":5,"e":4203}],[10,{"n":8,"e":4211}],[9,{"n":4.5,"e":4226}],[8,{"n":4,"e":4228}],[6,{"n":6,"e":4249}]]}],[1414,{"n":"Ndombele","f":"Tanguy","fp":"MD","r":16,"c":24,"s":{"g":2,"s":62,"n":12,"a":5.17,"d":1.01,"Og":3,"Os":163.5,"On":30,"Oa":5.45,"Od":1.03,"pm":30},"p":[[-38,{"n":7,"e":3109,"g":1}],[-36,{"n":7.5,"e":3087}],[-34,{"n":5.5,"e":3064}],[-33,{"n":6,"e":3054}],[-32,{"n":6,"e":3048}],[-31,{"n":4.5,"e":3036}],[-30,{"n":6,"e":3028}],[-29,{"n":7,"e":3017}],[-27,{"n":6,"e":2997}],[-23,{"n":5,"e":2956}],[-21,{"n":6,"e":2941}],[-17,{"n":5.5,"e":2901}],[-37,{"n":6.5,"e":3095}],[-35,{"n":5,"e":3074}],[-26,{"n":4.5,"e":2985}],[-24,{"n":3.5,"e":2967}],[-22,{"n":5.5,"e":2942}],[-20,{"n":4.5,"e":2926}],[15,{"n":5,"e":4163}],[14,{"n":5.5,"e":4173}],[12,{"n":4,"e":4194}],[11,{"n":5,"e":4203}],[10,{"n":5,"e":4211}],[9,{"n":5,"e":4226}],[8,{"n":4,"e":4228}],[7,{"n":7.5,"e":4243,"g":1}],[6,{"n":4.5,"e":4249}],[5,{"n":4.5,"e":4262}],[2,{"n":6.5,"e":4294}],[1,{"n":5.5,"e":4304,"g":1}]]}],[2028,{"n":"Foyth","f":"Juan","fp":"DC","r":5,"c":24,"s":{"s":15,"n":3,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":51,"On":10,"Oa":5.1,"Od":0.99,"pd":10},"p":[[-37,{"n":3.5,"e":3528}],[-36,{"n":5,"e":3526}],[-35,{"n":4.5,"e":3514}],[-34,{"n":7,"e":3506}],[-33,{"n":5,"e":3495}],[-27,{"n":4.5,"e":3430}],[-19,{"n":6.5,"e":3356}],[17,{"n":5,"e":4147}],[12,{"n":5,"e":4194}],[11,{"n":5,"e":4203}]]}],[2063,{"n":"Georgiou","f":"Anthony","fp":"MD","r":5,"c":24}],[2205,{"n":"Amos","f":"Luke","fp":"MD","r":1,"c":24}],[2228,{"n":"Sterling","f":"Kazaiah","fp":"A","r":1,"c":24}],[2558,{"n":"Ryan Sessegnon","f":"","fp":"MO","r":8,"c":24,"s":{"s":10,"n":2,"a":5,"Og":1,"Os":95.5,"On":21,"Oa":4.55,"Od":0.88,"pd":1,"pm":16,"pa":4},"p":[[-38,{"n":3,"e":3541}],[-37,{"n":4.5,"e":3537}],[-36,{"n":4,"e":3521}],[-35,{"n":6,"e":3508}],[-34,{"n":4.5,"e":3501}],[-33,{"n":5.5,"e":3496}],[-32,{"n":3.5,"e":3483}],[-31,{"n":5,"e":3472}],[-30,{"n":3,"e":3463}],[-29,{"n":4.5,"e":3452}],[-28,{"n":4.5,"e":3445}],[-27,{"n":3.5,"e":3437}],[-26,{"n":4.5,"e":3420}],[-24,{"n":5,"e":3400}],[-23,{"n":4.5,"e":3390}],[-22,{"n":3.5,"e":3379}],[-21,{"n":5,"e":3369}],[-20,{"n":6,"e":3361}],[-19,{"n":5.5,"e":3351,"g":1}],[16,{"n":5,"e":4155}],[11,{"n":5,"e":4203}]]}],[2929,{"n":"Skipp","f":"Oliver","fp":"MD","r":3,"c":24,"s":{"s":14.5,"n":3,"a":4.83,"d":0.29,"Os":44.5,"On":9,"Oa":4.94,"Od":0.3,"pm":9},"p":[[-38,{"n":5,"e":3546}],[-34,{"n":5,"e":3506}],[-26,{"n":5,"e":3425}],[-21,{"n":5,"e":3370}],[-19,{"n":4.5,"e":3356}],[-18,{"n":5.5,"e":3342}],[16,{"n":4.5,"e":4155}],[2,{"n":5,"e":4294}],[1,{"n":5,"e":4304}]]}],[2930,{"n":"Eyoma","f":"Timothy","fp":"DC","r":1,"c":24}],[2932,{"n":"Marsh","f":"George","fp":"MD","r":1,"c":24}],[5413,{"n":"White","f":"Harvey","fp":"MD","r":1,"c":24}],[5414,{"n":"Parrott","f":"Troy","fp":"A","r":1,"c":24,"s":{"s":4.5,"n":1,"a":4.5,"Os":4.5,"On":1,"Oa":4.5,"pa":1},"p":[[16,{"n":4.5,"e":4155}]]}],[5424,{"n":"Jonathan De Bie","f":"","fp":"G","r":1,"c":24}],[5427,{"n":"Lyons-Foster","f":"Brooklyn","fp":"DC","r":1,"c":24}],[5432,{"n":"Bowden","f":"Jamie","fp":"MD","r":1,"c":24}],[5439,{"n":"Roles","f":"Jack","fp":"MD","r":1,"c":24}],[5441,{"n":"Tanganga","f":"Japhet","fp":"DC","r":1,"c":24}],[5996,{"n":"Austin","f":"Brandon","fp":"G","r":1,"c":24}],[230,{"n":"Sarr","f":"Ismaila","fp":"A","r":14,"c":33,"s":{"g":1,"s":52,"n":10,"a":5.2,"d":0.98,"Sg":1,"Ss":28.5,"Sn":5,"Sa":5.7,"Sd":0.97,"Og":4,"Os":147.5,"On":28,"Oa":5.27,"Od":1.1,"pm":23,"pa":5},"p":[[7,{"n":3.5,"e":4244}],[3,{"n":5,"e":4283}],[-37,{"n":6,"e":3100}],[-36,{"n":7,"e":3090,"g":1}],[-35,{"n":6,"e":3081,"g":1}],[-33,{"n":3.5,"e":3052}],[-31,{"n":4.5,"e":3033}],[-29,{"n":5,"e":3013}],[-28,{"n":7,"e":3008}],[-26,{"n":4.5,"e":2989}],[-24,{"n":6,"e":2969}],[-22,{"n":3,"e":2949}],[-21,{"n":5,"e":2940}],[-18,{"n":4.5,"e":2905}],[-20,{"n":4.5,"e":2928}],[-19,{"n":6.5,"e":2919}],[-38,{"n":7,"e":3111,"g":1}],[-32,{"n":5,"e":3049}],[-30,{"n":4.5,"e":3028}],[-23,{"n":6,"e":2960}],[17,{"n":5,"e":4143}],[16,{"n":7,"e":4156}],[15,{"n":5,"e":4160}],[14,{"n":6.5,"e":4177,"g":1}],[13,{"n":5,"e":4186}],[8,{"n":5,"e":4234}],[6,{"n":4.5,"e":4253}],[5,{"n":5.5,"e":4266}]]}],[450,{"n":"Lukebakio","f":"Dodi","fp":"MD","r":7,"c":33}],[640,{"n":"Deeney","f":"Troy","fp":"A","r":14,"c":33,"s":{"s":25,"n":6,"a":4.17,"d":0.52,"Ss":13.5,"Sn":3,"Sa":4.5,"Sd":0.5,"Og":7,"Os":117,"On":24,"Oa":4.88,"Od":1.39,"pa":24},"p":[[-38,{"n":4,"e":3547}],[-37,{"n":4,"e":3531}],[-34,{"n":2.5,"e":3507}],[-33,{"n":6.5,"e":3496,"g":1}],[-32,{"n":5,"e":3486}],[-30,{"n":6,"e":3465}],[-29,{"n":7,"e":3455,"g":1}],[-28,{"n":2.5,"e":3446}],[-27,{"n":8,"e":3431,"g":2}],[-26,{"n":5,"e":3426}],[-25,{"n":4,"e":3408}],[-24,{"n":5,"e":3407}],[-23,{"n":5,"e":3396}],[-22,{"n":5,"e":3382}],[-21,{"n":7.5,"e":3368,"g":2}],[-20,{"n":4.5,"e":3367}],[-19,{"n":4.5,"e":3357}],[-18,{"n":6,"e":3346,"g":1}],[17,{"n":4,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":4.5,"e":4160}],[13,{"n":4,"e":4186}],[2,{"n":4,"e":4291}],[1,{"n":3.5,"e":4303}]]}],[653,{"n":"Dawson","f":"Craig","fp":"DC","r":8,"c":33,"s":{"s":60.5,"n":13,"a":4.65,"d":1.16,"Os":60.5,"On":13,"Oa":4.65,"Od":1.16,"pd":13},"p":[[13,{"n":5,"e":4186}],[12,{"n":6,"e":4192}],[11,{"n":4,"e":4206}],[10,{"n":6,"e":4216}],[9,{"n":6,"e":4226}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4244}],[6,{"n":2,"e":4253}],[5,{"n":4.5,"e":4266}],[4,{"n":5,"e":4273}],[3,{"n":3.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":4,"e":4303}]]}],[688,{"n":"Gray","f":"Andre","fp":"A","r":10,"c":33,"s":{"g":2,"s":71,"n":16,"a":4.44,"d":0.91,"Sg":1,"Ss":35,"Sn":8,"Sa":4.38,"Sd":0.83,"Og":6,"Os":141,"On":30,"Oa":4.7,"Od":0.97,"pa":30},"p":[[-36,{"n":6,"e":3527,"g":1}],[-38,{"n":4.5,"e":3547}],[-37,{"n":4.5,"e":3531}],[-35,{"n":4,"e":3513}],[-34,{"n":4.5,"e":3507}],[-33,{"n":7,"e":3496}],[-32,{"n":4.5,"e":3486}],[-31,{"n":6,"e":3475,"g":1}],[-30,{"n":4,"e":3465}],[-29,{"n":6,"e":3455,"g":1}],[-28,{"n":4.5,"e":3446}],[-27,{"n":4.5,"e":3431}],[-26,{"n":6,"e":3426,"g":1}],[-25,{"n":4,"e":3408}],[17,{"n":4.5,"e":4143}],[16,{"n":4.5,"e":4156}],[15,{"n":4.5,"e":4160}],[14,{"n":4,"e":4177}],[13,{"n":3,"e":4186}],[12,{"n":6,"e":4192,"g":1}],[11,{"n":4,"e":4206}],[10,{"n":4.5,"e":4216}],[8,{"n":4,"e":4234}],[7,{"n":5,"e":4244}],[6,{"n":5,"e":4253}],[5,{"n":4,"e":4266}],[4,{"n":4,"e":4273}],[3,{"n":6.5,"e":4283,"g":1}],[2,{"n":4.5,"e":4291}],[1,{"n":3,"e":4303}]]}],[702,{"n":"Heurelho Gomes","f":"","fp":"G","r":7,"c":33}],[730,{"n":"Holebas","f":"José","fp":"DL","r":9,"c":33,"s":{"s":45,"n":11,"a":4.09,"d":1.14,"Os":109.5,"On":25,"Oa":4.38,"Od":1.01,"pd":25},"p":[[-38,{"n":3,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":4,"e":3527}],[-33,{"n":5,"e":3496}],[-29,{"n":5,"e":3455}],[-26,{"n":5.5,"e":3426}],[-25,{"n":4.5,"e":3408}],[-24,{"n":3.5,"e":3407}],[-23,{"n":5,"e":3396}],[-22,{"n":5,"e":3382}],[-21,{"n":3.5,"e":3368}],[-20,{"n":5,"e":3367}],[-19,{"n":6,"e":3357}],[-18,{"n":5.5,"e":3346}],[14,{"n":3,"e":4177}],[13,{"n":3,"e":4186}],[12,{"n":6,"e":4192}],[9,{"n":4.5,"e":4226}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4244}],[6,{"n":2.5,"e":4253}],[5,{"n":4,"e":4266}],[3,{"n":4.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3,"e":4303}]]}],[738,{"n":"Foster","f":"Ben","fp":"G","r":16,"c":33,"s":{"s":89,"n":17,"a":5.24,"d":1.35,"Ss":89,"Sn":17,"Sa":5.24,"Sd":1.35,"Os":204,"On":38,"Oa":5.37,"Od":1.19,"pg":38},"p":[[-38,{"n":5,"e":3547}],[-37,{"n":6,"e":3531}],[-36,{"n":3.5,"e":3527}],[-35,{"n":5,"e":3513}],[-34,{"n":5,"e":3507}],[-33,{"n":6.5,"e":3496}],[-32,{"n":5,"e":3486}],[-31,{"n":5.5,"e":3475}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5,"e":3455}],[-28,{"n":4,"e":3446}],[-27,{"n":5.5,"e":3431}],[-26,{"n":7,"e":3426}],[-25,{"n":7,"e":3408}],[-24,{"n":5,"e":3407}],[-23,{"n":6,"e":3396}],[-22,{"n":6,"e":3382}],[-21,{"n":6,"e":3368}],[-20,{"n":5,"e":3367}],[-19,{"n":4.5,"e":3357}],[-18,{"n":8,"e":3346}],[17,{"n":6,"e":4143}],[16,{"n":5.5,"e":4156}],[15,{"n":5.5,"e":4160}],[14,{"n":5,"e":4177}],[13,{"n":5,"e":4186}],[12,{"n":7,"e":4192}],[11,{"n":7,"e":4206}],[10,{"n":7,"e":4216}],[9,{"n":4,"e":4226}],[8,{"n":6.5,"e":4234}],[7,{"n":4,"e":4244}],[6,{"n":2.5,"e":4253}],[5,{"n":4,"e":4266}],[4,{"n":5.5,"e":4273}],[3,{"n":6.5,"e":4283}],[2,{"n":4.5,"e":4291}],[1,{"n":3.5,"e":4303}]]}],[739,{"n":"Pereyra","f":"Roberto","fp":"MO","r":10,"c":33,"s":{"g":1,"s":61,"n":12,"a":5.08,"d":0.82,"Og":2,"Os":137.5,"On":28,"Oa":4.91,"Od":0.96,"pm":23,"pa":5},"p":[[-38,{"n":3.5,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":5,"e":3527}],[-33,{"n":4,"e":3496}],[-32,{"n":5,"e":3486}],[-31,{"n":4.5,"e":3475}],[-29,{"n":5.5,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":6,"e":3431}],[-24,{"n":4.5,"e":3407}],[-23,{"n":4,"e":3396}],[-22,{"n":5,"e":3382}],[-21,{"n":4.5,"e":3368}],[-20,{"n":4.5,"e":3367}],[-19,{"n":6.5,"e":3357,"g":1}],[-18,{"n":7,"e":3346}],[16,{"n":5,"e":4156}],[12,{"n":4.5,"e":4192}],[11,{"n":4.5,"e":4206}],[10,{"n":4.5,"e":4216}],[9,{"n":5,"e":4226}],[8,{"n":6,"e":4234}],[7,{"n":5.5,"e":4244}],[6,{"n":4.5,"e":4253}],[5,{"n":7,"e":4266,"g":1}],[4,{"n":5.5,"e":4273}],[2,{"n":4,"e":4291}],[1,{"n":5,"e":4303}]]}],[758,{"n":"Capoue","f":"Etienne","fp":"MD","r":16,"c":33,"s":{"s":60,"n":12,"a":5,"d":1.09,"Ss":32.5,"Sn":6,"Sa":5.42,"Sd":1.07,"Os":173.5,"On":32,"Oa":5.42,"Od":1.12,"pm":32},"p":[[-38,{"n":4,"e":3547}],[-36,{"n":6.5,"e":3527}],[-35,{"n":6,"e":3513}],[-34,{"n":6.5,"e":3507}],[-33,{"n":5.5,"e":3496}],[-32,{"n":5.5,"e":3486}],[-31,{"n":6,"e":3475}],[-30,{"n":6,"e":3465}],[-29,{"n":5.5,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":8,"e":3431}],[-26,{"n":5.5,"e":3426}],[-25,{"n":6,"e":3408}],[-24,{"n":5.5,"e":3407}],[-23,{"n":6,"e":3396}],[-22,{"n":5,"e":3382}],[-21,{"n":5,"e":3368}],[-20,{"n":5,"e":3367}],[-19,{"n":5.5,"e":3357}],[-18,{"n":7.5,"e":3346}],[17,{"n":4,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":6.5,"e":4160}],[14,{"n":6,"e":4177}],[13,{"n":4.5,"e":4186}],[12,{"n":6.5,"e":4192}],[7,{"n":4.5,"e":4244}],[6,{"n":3.5,"e":4253}],[5,{"n":6,"e":4266}],[3,{"n":4.5,"e":4283}],[2,{"n":5.5,"e":4291}],[1,{"n":3.5,"e":4303}]]}],[782,{"n":"Kaboul","f":"Younes","fp":"DC","r":1,"c":33}],[812,{"n":"Prödl","f":"Sebastian","fp":"DC","r":3,"c":33,"s":{"s":5,"n":1,"a":5,"Os":5,"On":1,"Oa":5,"pd":1},"p":[[8,{"n":5,"e":4234}]]}],[823,{"n":"Kabasele","f":"Christian","fp":"DC","r":11,"c":33,"s":{"s":46,"n":9,"a":5.11,"d":0.96,"Ss":10.5,"Sn":2,"Sa":5.25,"Sd":0.35,"Os":91,"On":18,"Oa":5.06,"Od":0.82,"pd":18},"p":[[-38,{"n":3.5,"e":3547}],[-36,{"n":5,"e":3527}],[-34,{"n":5.5,"e":3507}],[-32,{"n":5,"e":3486}],[-31,{"n":5,"e":3475}],[-30,{"n":4.5,"e":3465}],[-23,{"n":5.5,"e":3396}],[-19,{"n":5,"e":3357}],[-18,{"n":6,"e":3346}],[17,{"n":5,"e":4143}],[16,{"n":5.5,"e":4156}],[12,{"n":4.5,"e":4192}],[11,{"n":3.5,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":6.5,"e":4226}],[8,{"n":6,"e":4234}],[5,{"n":4,"e":4266}],[4,{"n":5.5,"e":4273}]]}],[836,{"n":"Britos","f":"Miguel","fp":"DC","r":4,"c":33,"s":{"Os":13,"On":3,"Oa":4.33,"Od":0.58,"pd":3},"p":[[-32,{"n":4,"e":3486}],[-30,{"n":4,"e":3465}],[-23,{"n":5,"e":3396}]]}],[865,{"n":"Janmaat","f":"Daryl","fp":"DL","r":9,"c":33,"s":{"ao":1,"s":40.5,"n":8,"a":5.06,"d":1.18,"Oao":1,"Os":99,"On":20,"Oa":4.95,"Od":0.86,"pd":19,"pm":1},"p":[[-34,{"n":6,"e":3507}],[-33,{"n":5,"e":3496}],[-32,{"n":5,"e":3486}],[-31,{"n":5,"e":3475}],[-30,{"n":4.5,"e":3465}],[-29,{"n":5,"e":3455}],[-28,{"n":3.5,"e":3446}],[-27,{"n":5.5,"e":3431}],[-26,{"n":5,"e":3426}],[-25,{"n":5,"e":3408}],[-24,{"n":4.5,"e":3407}],[-20,{"n":4.5,"e":3367}],[12,{"n":6,"e":4192}],[11,{"n":4,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":6.5,"e":4226}],[8,{"n":6,"e":4234}],[7,{"n":3,"e":4244,"a":1}],[5,{"n":5,"e":4266}],[4,{"n":4.5,"e":4273}]]}],[869,{"n":"Isaac Success","f":"","fp":"A","r":3,"c":33,"s":{"s":13.5,"n":3,"a":4.5,"d":0.5,"Os":73.5,"On":16,"Oa":4.59,"Od":0.52,"pm":1,"pa":15},"p":[[-37,{"n":5,"e":3531}],[-36,{"n":4,"e":3527}],[-35,{"n":4,"e":3513}],[-34,{"n":5,"e":3507}],[-32,{"n":6,"e":3486}],[-31,{"n":4.5,"e":3475}],[-30,{"n":4.5,"e":3465}],[-24,{"n":4,"e":3407}],[-23,{"n":4.5,"e":3396}],[-21,{"n":4.5,"e":3368}],[-20,{"n":5,"e":3367}],[-19,{"n":4.5,"e":3357}],[-18,{"n":4.5,"e":3346}],[15,{"n":4.5,"e":4160}],[4,{"n":5,"e":4273}],[1,{"n":4,"e":4303}]]}],[933,{"n":"Cleverley","f":"Tom","fp":"MO","r":8,"c":33,"s":{"g":1,"s":47,"n":9,"a":5.22,"d":1.12,"Og":2,"Os":107.5,"On":21,"Oa":5.12,"Od":0.88,"pm":20,"pa":1},"p":[[-37,{"n":5,"e":3531}],[-30,{"n":3.5,"e":3465}],[-29,{"n":5,"e":3455}],[-28,{"n":5,"e":3446}],[-27,{"n":5,"e":3431}],[-26,{"n":5,"e":3426}],[-25,{"n":5.5,"e":3408}],[-24,{"n":5.5,"e":3407}],[-23,{"n":5,"e":3396}],[-22,{"n":6.5,"e":3382,"g":1}],[-21,{"n":5,"e":3368}],[-18,{"n":4.5,"e":3346}],[10,{"n":5,"e":4216}],[9,{"n":6,"e":4226}],[8,{"n":5,"e":4234}],[7,{"n":4.5,"e":4244}],[6,{"n":3.5,"e":4253}],[5,{"n":7.5,"e":4266,"g":1}],[4,{"n":5.5,"e":4273}],[3,{"n":5.5,"e":4283}],[2,{"n":4.5,"e":4291}]]}],[944,{"n":"Doucouré","f":"Abdoulaye","fp":"MO","r":17,"c":33,"s":{"g":1,"ao":1,"s":87.5,"n":17,"a":5.15,"d":1.13,"Sg":1,"Sao":1,"Ss":87.5,"Sn":17,"Sa":5.15,"Sd":1.13,"Og":4,"Oao":1,"Os":177.5,"On":35,"Oa":5.07,"Od":1.12,"pm":35},"p":[[-38,{"n":4.5,"e":3547}],[-37,{"n":3.5,"e":3531}],[-36,{"n":5,"e":3527}],[-35,{"n":6.5,"e":3513}],[-34,{"n":5,"e":3507}],[-33,{"n":6,"e":3496,"g":1}],[-32,{"n":6,"e":3486,"g":1}],[-31,{"n":3.5,"e":3475}],[-30,{"n":3.5,"e":3465}],[-29,{"n":6,"e":3455}],[-28,{"n":3.5,"e":3446}],[-27,{"n":7,"e":3431}],[-26,{"n":5.5,"e":3426}],[-22,{"n":5,"e":3382}],[-21,{"n":4,"e":3368}],[-20,{"n":5.5,"e":3367,"g":1}],[-19,{"n":4,"e":3357}],[-18,{"n":6,"e":3346}],[17,{"n":5.5,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":4.5,"e":4160}],[14,{"n":5.5,"e":4177}],[13,{"n":4.5,"e":4186}],[12,{"n":7,"e":4192}],[11,{"n":6,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":7.5,"e":4226,"g":1}],[8,{"n":4.5,"e":4234}],[7,{"n":5.5,"e":4244}],[6,{"n":3,"e":4253}],[5,{"n":6,"e":4266}],[4,{"n":4.5,"e":4273}],[3,{"n":4.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3.5,"e":4303,"a":1}]]}],[948,{"n":"Cathcart","f":"Craig","fp":"DC","r":13,"c":33,"s":{"s":74,"n":15,"a":4.93,"d":0.8,"Ss":56.5,"Sn":11,"Sa":5.14,"Sd":0.64,"Og":2,"Oao":1,"Os":169.5,"On":34,"Oa":4.99,"Od":0.91,"pd":34},"p":[[-38,{"n":3.5,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":5.5,"e":3513}],[-34,{"n":6,"e":3507}],[-33,{"n":6,"e":3496}],[-31,{"n":3.5,"e":3475}],[-30,{"n":5,"e":3465}],[-29,{"n":6,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":5,"e":3431}],[-26,{"n":5.5,"e":3426}],[-25,{"n":6.5,"e":3408}],[-24,{"n":5.5,"e":3407,"g":1}],[-22,{"n":6,"e":3382,"g":1,"a":1}],[-21,{"n":4.5,"e":3368}],[-20,{"n":5,"e":3367}],[-19,{"n":4.5,"e":3357}],[-18,{"n":6,"e":3346}],[17,{"n":5.5,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":5.5,"e":4160}],[14,{"n":5,"e":4177}],[13,{"n":4,"e":4186}],[12,{"n":6,"e":4192}],[11,{"n":5,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":5.5,"e":4226}],[8,{"n":5.5,"e":4234}],[7,{"n":4,"e":4244}],[4,{"n":5.5,"e":4273}],[3,{"n":3.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3.5,"e":4303}]]}],[953,{"n":"Dja Djédjé","f":"Brice","fp":"DC","r":1,"c":33}],[979,{"n":"Chalobah","f":"Nathaniel","fp":"MD","r":7,"c":33,"s":{"s":29.5,"n":6,"a":4.92,"d":0.58,"Os":43,"On":9,"Oa":4.78,"Od":0.51,"pm":9},"p":[[-37,{"n":4.5,"e":3531}],[-35,{"n":4.5,"e":3513}],[-26,{"n":4.5,"e":3426}],[16,{"n":5,"e":4156}],[14,{"n":4.5,"e":4177}],[11,{"n":4.5,"e":4206}],[10,{"n":5,"e":4216}],[9,{"n":6,"e":4226}],[4,{"n":4.5,"e":4273}]]}],[1038,{"n":"Welbeck","f":"Danny","fp":"A","r":5,"c":33,"s":{"s":23,"n":5,"a":4.6,"d":0.42,"Os":23,"On":5,"Oa":4.6,"Od":0.42,"pa":5},"p":[[9,{"n":4.5,"e":4226}],[8,{"n":4,"e":4234}],[7,{"n":5,"e":4244}],[3,{"n":5,"e":4283}],[2,{"n":4.5,"e":4291}]]}],[1081,{"n":"Mariappa","f":"Adrian","fp":"DC","r":8,"c":33,"s":{"s":30.5,"n":7,"a":4.36,"d":0.94,"Ss":4,"Sn":1,"Sa":4,"Os":112,"On":24,"Oa":4.67,"Od":0.84,"pd":24},"p":[[-38,{"n":5,"e":3547}],[-37,{"n":3.5,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":5,"e":3513}],[-33,{"n":4,"e":3496}],[-29,{"n":5,"e":3455}],[-28,{"n":3,"e":3446}],[-27,{"n":6,"e":3431}],[-26,{"n":5.5,"e":3426}],[-25,{"n":5,"e":3408}],[-24,{"n":4.5,"e":3407}],[-23,{"n":5.5,"e":3396}],[-22,{"n":6,"e":3382}],[-21,{"n":4.5,"e":3368}],[-20,{"n":4.5,"e":3367}],[-19,{"n":5,"e":3357}],[-18,{"n":5,"e":3346}],[17,{"n":4,"e":4143}],[15,{"n":4.5,"e":4160}],[14,{"n":4.5,"e":4177}],[13,{"n":5,"e":4186}],[12,{"n":5.5,"e":4192}],[11,{"n":4.5,"e":4206}],[6,{"n":2.5,"e":4253}]]}],[1086,{"n":"Bachmann","f":"Daniel","fp":"G","r":1,"c":33}],[1107,{"n":"Domingos Quina","f":"","fp":"MO","r":3,"c":33,"s":{"s":15,"n":3,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":38.5,"On":8,"Oa":4.81,"Od":0.37,"pm":8},"p":[[-33,{"n":5,"e":3496}],[-27,{"n":4.5,"e":3431}],[-25,{"n":5,"e":3408}],[-20,{"n":4,"e":3367}],[-19,{"n":5,"e":3357}],[17,{"n":5,"e":4143}],[15,{"n":5,"e":4160}],[3,{"n":5,"e":4283}]]}],[1298,{"n":"Kiko Femenía","f":"","fp":"DL","r":10,"c":33,"s":{"s":58.5,"n":13,"a":4.5,"d":0.74,"Ss":24,"Sn":5,"Sa":4.8,"Sd":0.45,"Og":1,"Os":127.5,"On":27,"Oa":4.72,"Od":1.03,"pd":24,"pm":3},"p":[[-38,{"n":2,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":6,"e":3513}],[-34,{"n":4.5,"e":3507}],[-33,{"n":7,"e":3496,"g":1}],[-32,{"n":5,"e":3486}],[-31,{"n":6,"e":3475}],[-30,{"n":4,"e":3465}],[-23,{"n":6.5,"e":3396}],[-22,{"n":5,"e":3382}],[-21,{"n":4.5,"e":3368}],[-19,{"n":5,"e":3357}],[-18,{"n":5,"e":3346}],[17,{"n":5,"e":4143}],[16,{"n":5,"e":4156}],[15,{"n":5,"e":4160}],[14,{"n":5,"e":4177}],[13,{"n":4,"e":4186}],[11,{"n":5,"e":4206}],[9,{"n":5,"e":4226}],[6,{"n":2.5,"e":4253}],[5,{"n":5,"e":4266}],[4,{"n":4.5,"e":4273}],[3,{"n":4,"e":4283}],[2,{"n":4.5,"e":4291}],[1,{"n":4,"e":4303}]]}],[1311,{"n":"Hughes","f":"Will","fp":"MD","r":8,"c":33,"s":{"g":1,"s":70,"n":14,"a":5,"d":0.96,"Ss":5,"Sn":1,"Sa":5,"Og":2,"Os":154.5,"On":31,"Oa":4.98,"Od":0.96,"pm":30,"pa":1},"p":[[-38,{"n":3.5,"e":3547}],[-37,{"n":4,"e":3531}],[-36,{"n":5,"e":3527}],[-35,{"n":5,"e":3513}],[-34,{"n":5.5,"e":3507}],[-33,{"n":6.5,"e":3496,"g":1}],[-32,{"n":5.5,"e":3486}],[-31,{"n":4.5,"e":3475}],[-29,{"n":6,"e":3455}],[-28,{"n":4,"e":3446}],[-27,{"n":7,"e":3431}],[-26,{"n":6,"e":3426}],[-25,{"n":4,"e":3408}],[-24,{"n":4,"e":3407}],[-22,{"n":4.5,"e":3382}],[-21,{"n":5,"e":3368}],[-20,{"n":4.5,"e":3367}],[17,{"n":5,"e":4143}],[15,{"n":4.5,"e":4160}],[14,{"n":4.5,"e":4177}],[13,{"n":4,"e":4186}],[12,{"n":6.5,"e":4192}],[11,{"n":4.5,"e":4206}],[10,{"n":5.5,"e":4216}],[9,{"n":5,"e":4226}],[6,{"n":4,"e":4253}],[5,{"n":5.5,"e":4266}],[4,{"n":7,"e":4273,"g":1}],[3,{"n":5.5,"e":4283}],[2,{"n":5,"e":4291}],[1,{"n":3.5,"e":4303}]]}],[1335,{"n":"Sinclair","f":"Jerome","fp":"A","r":3,"c":33}],[1535,{"n":"Foulquier","f":"Dimitri","fp":"DL","r":3,"c":33,"s":{"s":14,"n":3,"a":4.67,"d":0.58,"Og":1,"Os":89.5,"On":19,"Oa":4.71,"Od":0.84,"pd":5,"pm":14},"p":[[-38,{"n":4,"e":2345}],[-37,{"n":4.5,"e":2334}],[-31,{"n":3,"e":2276}],[-30,{"n":4.5,"e":2265}],[-29,{"n":4,"e":2255}],[-28,{"n":4.5,"e":2248}],[-27,{"n":4,"e":2236}],[-25,{"n":5,"e":2216}],[-24,{"n":7,"e":2204,"g":1}],[-22,{"n":5,"e":2190}],[-19,{"n":5,"e":2160}],[-18,{"n":4.5,"e":2148}],[-36,{"n":6,"e":2323}],[-26,{"n":5,"e":2222}],[-23,{"n":4.5,"e":2199}],[-17,{"n":5,"e":2138}],[14,{"n":5,"e":4177}],[10,{"n":5,"e":4216}],[6,{"n":4,"e":4253}]]}],[1724,{"n":"Deulofeu","f":"Gerard","fp":"A","r":16,"c":33,"s":{"g":2,"s":80.5,"n":17,"a":4.74,"d":1.37,"Sg":2,"Ss":80.5,"Sn":17,"Sa":4.74,"Sd":1.37,"Og":10,"Os":181,"On":37,"Oa":4.89,"Od":1.52,"pm":4,"pa":33},"p":[[-38,{"n":6.5,"e":3547,"g":1}],[-37,{"n":3.5,"e":3531}],[-36,{"n":4.5,"e":3527}],[-35,{"n":8,"e":3513,"g":2}],[-33,{"n":4,"e":3496}],[-32,{"n":4,"e":3486}],[-31,{"n":4.5,"e":3475}],[-30,{"n":6.5,"e":3465,"g":1}],[-29,{"n":5.5,"e":3455}],[-28,{"n":2.5,"e":3446}],[-27,{"n":9,"e":3431,"g":3}],[-26,{"n":4.5,"e":3426}],[-25,{"n":4,"e":3408}],[-24,{"n":3.5,"e":3407}],[-23,{"n":4,"e":3396}],[-22,{"n":5,"e":3382}],[-21,{"n":4,"e":3368}],[-20,{"n":6,"e":3367}],[-19,{"n":4,"e":3357}],[-18,{"n":7,"e":3346,"g":1}],[17,{"n":4.5,"e":4143}],[16,{"n":6,"e":4156}],[15,{"n":3.5,"e":4160}],[14,{"n":3.5,"e":4177}],[13,{"n":5,"e":4186}],[12,{"n":7.5,"e":4192,"g":1}],[11,{"n":6,"e":4206,"g":1}],[10,{"n":3.5,"e":4216}],[9,{"n":5,"e":4226}],[8,{"n":5,"e":4234}],[7,{"n":3.5,"e":4244}],[6,{"n":3,"e":4253}],[5,{"n":7.5,"e":4266}],[4,{"n":4,"e":4273}],[3,{"n":5,"e":4283}],[2,{"n":4.5,"e":4291}],[1,{"n":3.5,"e":4303}]]}],[1942,{"n":"Peñaranda","f":"Adalberto","fp":"A","r":1,"c":33}],[2023,{"n":"Zeegelaar","f":"Marvin","fp":"DL","r":1,"c":33}],[2229,{"n":"Tom Dele-Bashiru","f":"","fp":"MD","r":1,"c":33}],[2536,{"n":"Wilmot","f":"Ben","fp":"DC","r":1,"c":33,"s":{"Os":4,"On":1,"Oa":4,"pd":1},"p":[[-24,{"n":4,"e":3407}]]}],[2547,{"n":"Dahlberg","f":"Pontus","fp":"G","r":1,"c":33}],[2559,{"n":"Oularé","f":"Obbi","fp":"A","r":5,"c":33}],[2579,{"n":"Masina","f":"Adam","fp":"DL","r":9,"c":33,"s":{"s":30,"n":7,"a":4.29,"d":0.64,"Os":76.5,"On":17,"Oa":4.5,"Od":0.68,"pd":17},"p":[[-38,{"n":4.5,"e":3547}],[-35,{"n":5,"e":3513}],[-34,{"n":5,"e":3507}],[-32,{"n":4.5,"e":3486}],[-31,{"n":5,"e":3475}],[-30,{"n":4,"e":3465}],[-28,{"n":3,"e":3446}],[-27,{"n":5,"e":3431}],[-22,{"n":5,"e":3382}],[-20,{"n":5.5,"e":3367}],[16,{"n":4.5,"e":4156}],[15,{"n":4.5,"e":4160}],[14,{"n":3.5,"e":4177}],[13,{"n":4,"e":4186}],[12,{"n":5,"e":4192}],[11,{"n":3.5,"e":4206}],[10,{"n":5,"e":4216}]]}],[5415,{"n":"Forster","f":"Harry","fp":"MD","r":1,"c":33}],[5985,{"n":"Crichlow","f":"Kane","fp":"MD","r":3,"c":33}],[174,{"n":"Diop","f":"Issa","fp":"DC","r":12,"c":28,"s":{"s":66,"n":14,"a":4.71,"d":1.37,"Ss":5,"Sn":1,"Sa":5,"Og":1,"Os":162.5,"On":32,"Oa":5.08,"Od":1.26,"pd":32},"p":[[-38,{"n":6.5,"e":3547}],[-37,{"n":7,"e":3536}],[-36,{"n":7.5,"e":3526}],[-32,{"n":4,"e":3487}],[-31,{"n":5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":6,"e":3447}],[-27,{"n":6.5,"e":3437,"g":1}],[-26,{"n":5.5,"e":3419}],[-25,{"n":5,"e":3417}],[-24,{"n":4,"e":3402}],[-23,{"n":4,"e":3388}],[-22,{"n":6,"e":3387}],[-21,{"n":5,"e":3376}],[-20,{"n":4,"e":3359}],[-19,{"n":6,"e":3355}],[-18,{"n":4,"e":3346}],[17,{"n":5,"e":4146}],[13,{"n":2.5,"e":4187}],[12,{"n":4.5,"e":4188}],[11,{"n":3.5,"e":4207}],[10,{"n":5.5,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":5,"e":4235}],[7,{"n":4,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":6,"e":4267}],[4,{"n":7,"e":4274}],[3,{"n":5.5,"e":4283}],[2,{"n":5,"e":4290}],[1,{"n":2,"e":4299}]]}],[620,{"n":"Lanzini","f":"Manuel","fp":"MO","r":10,"c":28,"s":{"s":59,"n":11,"a":5.36,"d":1.07,"Og":1,"Os":111,"On":21,"Oa":5.29,"Od":1.08,"pm":21},"p":[[-38,{"n":7,"e":3547,"g":1}],[-37,{"n":6.5,"e":3536}],[-34,{"n":5.5,"e":3504}],[-33,{"n":5,"e":3489}],[-32,{"n":3.5,"e":3487}],[-31,{"n":5,"e":3476}],[-30,{"n":3.5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":5,"e":3447}],[-27,{"n":5,"e":3437}],[12,{"n":5.5,"e":4188}],[11,{"n":5,"e":4207}],[10,{"n":5,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":4.5,"e":4235}],[7,{"n":5,"e":4240}],[5,{"n":6,"e":4267}],[4,{"n":6,"e":4274}],[3,{"n":7,"e":4283}],[2,{"n":7,"e":4290}],[1,{"n":3.5,"e":4299}]],"a":{"m":18,"a":22,"M":23,"n":10}}],[622,{"n":"Wilshere","f":"Jack","fp":"MO","r":7,"c":28,"s":{"s":27,"n":6,"a":4.5,"d":0.55,"Os":42.5,"On":9,"Oa":4.72,"Od":0.67,"pm":9},"p":[[-38,{"n":6,"e":3547}],[-37,{"n":5,"e":3536}],[-35,{"n":4.5,"e":3516}],[9,{"n":4.5,"e":4222}],[8,{"n":5,"e":4235}],[7,{"n":4.5,"e":4240}],[6,{"n":5,"e":4255}],[2,{"n":3.5,"e":4290}],[1,{"n":4.5,"e":4299}]]}],[632,{"n":"Antonio","f":"Michail","fp":"MO","r":9,"c":28,"s":{"g":1,"s":34.5,"n":7,"a":4.93,"d":1.02,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":1.06,"Og":5,"Os":132,"On":26,"Oa":5.08,"Od":1.2,"pd":2,"pm":19,"pa":5},"p":[[-38,{"n":7,"e":3547}],[-37,{"n":6,"e":3536}],[-36,{"n":6,"e":3526,"g":1}],[-35,{"n":5,"e":3516,"g":1}],[-34,{"n":5.5,"e":3504}],[-32,{"n":4.5,"e":3487}],[-31,{"n":3.5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-28,{"n":4.5,"e":3447}],[-27,{"n":7,"e":3437,"g":1}],[-26,{"n":5.5,"e":3419}],[-25,{"n":7,"e":3417,"g":1}],[-24,{"n":2.5,"e":3402}],[-23,{"n":3.5,"e":3388}],[-22,{"n":5,"e":3387}],[-21,{"n":5.5,"e":3376}],[-20,{"n":4,"e":3359}],[-19,{"n":6.5,"e":3355}],[-18,{"n":4.5,"e":3346}],[17,{"n":5.5,"e":4146}],[16,{"n":4,"e":4157}],[14,{"n":5,"e":4169}],[13,{"n":6.5,"e":4187,"g":1}],[3,{"n":5.5,"e":4283}],[2,{"n":4.5,"e":4290}],[1,{"n":3.5,"e":4299}]]}],[634,{"n":"Snodgrass","f":"Robert","fp":"MO","r":13,"c":28,"s":{"g":2,"s":61,"n":12,"a":5.08,"d":0.73,"Ss":9.5,"Sn":2,"Sa":4.75,"Sd":0.35,"Og":2,"Os":141,"On":29,"Oa":4.86,"Od":0.78,"pm":28,"pa":1},"p":[[15,{"n":4.5,"e":4162}],[-36,{"n":5.5,"e":3526}],[-35,{"n":5,"e":3516}],[-34,{"n":5,"e":3504}],[-33,{"n":5,"e":3489}],[-32,{"n":4.5,"e":3487}],[-30,{"n":3.5,"e":3459}],[-29,{"n":6,"e":3456}],[-27,{"n":6,"e":3437}],[-26,{"n":5,"e":3419}],[-25,{"n":5.5,"e":3417}],[-24,{"n":3.5,"e":3402}],[-23,{"n":4,"e":3388}],[-22,{"n":4.5,"e":3387}],[-21,{"n":4.5,"e":3376}],[-20,{"n":3.5,"e":3359}],[-19,{"n":4.5,"e":3355}],[-18,{"n":4.5,"e":3346}],[17,{"n":5,"e":4146}],[16,{"n":4.5,"e":4157}],[14,{"n":6,"e":4169}],[13,{"n":6,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":5,"e":4207,"g":1}],[10,{"n":6,"e":4217,"g":1}],[6,{"n":5,"e":4255}],[4,{"n":5,"e":4274}],[2,{"n":5.5,"e":4290}],[1,{"n":5,"e":4299}]]}],[664,{"n":"Arnautovic","f":"Marko","fp":"A","r":16,"c":28,"s":{"Og":5,"Os":77,"On":15,"Oa":5.13,"Od":1.49,"pm":1,"pa":14},"p":[[-38,{"n":7,"e":3547,"g":1}],[-37,{"n":8,"e":3536,"g":2}],[-36,{"n":6,"e":3526}],[-35,{"n":4.5,"e":3516}],[-33,{"n":4.5,"e":3489}],[-32,{"n":4,"e":3487}],[-31,{"n":4,"e":3476}],[-30,{"n":4,"e":3459}],[-29,{"n":4.5,"e":3456}],[-27,{"n":6,"e":3437}],[-26,{"n":4.5,"e":3419}],[-24,{"n":3.5,"e":3402}],[-22,{"n":4.5,"e":3387}],[-21,{"n":8,"e":3376,"g":2}],[-20,{"n":4,"e":3359}]]}],[684,{"n":"Noble","f":"Mark","fp":"MD","r":11,"c":28,"s":{"g":1,"s":71,"n":15,"a":4.73,"d":1.13,"Sg":1,"Ss":71,"Sn":15,"Sa":4.73,"Sd":1.13,"Og":6,"Os":175.5,"On":34,"Oa":5.16,"Od":1.25,"pm":34},"p":[[-38,{"n":8,"e":3547,"g":2}],[-37,{"n":7,"e":3536}],[-36,{"n":6,"e":3526}],[-35,{"n":6,"e":3516}],[-34,{"n":7,"e":3504}],[-33,{"n":4,"e":3489}],[-31,{"n":5,"e":3476,"g":1}],[-30,{"n":4,"e":3459}],[-29,{"n":7,"e":3456,"g":1}],[-27,{"n":5.5,"e":3437}],[-26,{"n":6.5,"e":3419,"g":1}],[-25,{"n":4.5,"e":3417}],[-24,{"n":3.5,"e":3402}],[-23,{"n":5,"e":3388}],[-22,{"n":5.5,"e":3387}],[-21,{"n":6.5,"e":3376}],[-20,{"n":4,"e":3359}],[-19,{"n":5,"e":3355}],[-18,{"n":4.5,"e":3346}],[17,{"n":6,"e":4146}],[16,{"n":4.5,"e":4157}],[15,{"n":3.5,"e":4162}],[14,{"n":5,"e":4169}],[13,{"n":5.5,"e":4187}],[12,{"n":4.5,"e":4188}],[11,{"n":2.5,"e":4207}],[10,{"n":4,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":4,"e":4235}],[7,{"n":4,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":4.5,"e":4267}],[4,{"n":5.5,"e":4274}],[3,{"n":7,"e":4283,"g":1}]],"a":{"m":20,"a":22,"M":23,"n":6}}],[700,{"n":"Zabaleta","f":"Pablo","fp":"DL","r":5,"c":28,"s":{"s":23.5,"n":5,"a":4.7,"d":0.67,"Os":82.5,"On":18,"Oa":4.58,"Od":0.73,"pd":18},"p":[[-38,{"n":4,"e":3547}],[-35,{"n":5,"e":3516}],[-34,{"n":5.5,"e":3504}],[-32,{"n":3.5,"e":3487}],[-31,{"n":3.5,"e":3476}],[-28,{"n":5,"e":3447}],[-27,{"n":4,"e":3437}],[-26,{"n":5,"e":3419}],[-24,{"n":4,"e":3402}],[-23,{"n":4,"e":3388}],[-22,{"n":6,"e":3387}],[-21,{"n":4.5,"e":3376}],[-18,{"n":5,"e":3346}],[11,{"n":3.5,"e":4207}],[10,{"n":5,"e":4217}],[8,{"n":5,"e":4235}],[6,{"n":5,"e":4255}],[5,{"n":5,"e":4267}]]}],[709,{"n":"Reid","f":"Winston","fp":"DC","r":1,"c":28}],[762,{"n":"Ogbonna","f":"Angelo","fp":"DC","r":11,"c":28,"s":{"g":2,"s":68.5,"n":13,"a":5.27,"d":0.81,"Sg":2,"Ss":25.5,"Sn":5,"Sa":5.1,"Sd":1.19,"Og":3,"Os":164.5,"On":32,"Oa":5.14,"Od":0.93,"pd":32},"p":[[-36,{"n":5,"e":3526}],[-35,{"n":4,"e":3516}],[-34,{"n":7,"e":3504}],[-33,{"n":4,"e":3489}],[-32,{"n":4.5,"e":3487}],[-31,{"n":5,"e":3476,"g":1}],[-30,{"n":5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":6,"e":3447}],[-27,{"n":6,"e":3437}],[-26,{"n":5.5,"e":3419}],[-25,{"n":5.5,"e":3417}],[-24,{"n":3.5,"e":3402}],[-23,{"n":4,"e":3388}],[-22,{"n":6,"e":3387}],[-21,{"n":4,"e":3376}],[-20,{"n":3.5,"e":3359}],[-19,{"n":6,"e":3355}],[-18,{"n":5.5,"e":3346}],[17,{"n":6,"e":4146}],[16,{"n":4.5,"e":4157,"g":1}],[15,{"n":3.5,"e":4162}],[14,{"n":6.5,"e":4169}],[13,{"n":5,"e":4187,"g":1}],[9,{"n":5,"e":4222}],[8,{"n":5,"e":4235}],[7,{"n":4.5,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":5.5,"e":4267}],[4,{"n":6,"e":4274}],[3,{"n":5.5,"e":4283}],[2,{"n":5.5,"e":4290}]]}],[861,{"n":"Cresswell","f":"Aaron","fp":"DL","r":12,"c":28,"s":{"g":3,"s":57.5,"n":12,"a":4.79,"d":1.34,"Sg":1,"Ss":37,"Sn":8,"Sa":4.63,"Sd":1.25,"Og":3,"Os":121.5,"On":25,"Oa":4.86,"Od":1.02,"pd":25},"p":[[-33,{"n":4,"e":3489}],[-32,{"n":5,"e":3487}],[-31,{"n":5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-29,{"n":5,"e":3456}],[-27,{"n":6,"e":3437}],[-26,{"n":5,"e":3419}],[-25,{"n":5.5,"e":3417}],[-23,{"n":4,"e":3388}],[-22,{"n":6,"e":3387}],[-21,{"n":4.5,"e":3376}],[-20,{"n":4.5,"e":3359}],[-19,{"n":5,"e":3355}],[17,{"n":5,"e":4146}],[16,{"n":5,"e":4157}],[15,{"n":4,"e":4162}],[14,{"n":7,"e":4169,"g":1}],[13,{"n":3.5,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":3.5,"e":4207}],[10,{"n":5.5,"e":4217}],[8,{"n":5,"e":4235}],[7,{"n":5.5,"e":4240,"g":1}],[6,{"n":7,"e":4255,"g":1}],[1,{"n":3,"e":4299}]]}],[870,{"n":"Fabianski","f":"Lukasz","fp":"G","r":8,"c":28,"s":{"s":39.5,"n":7,"a":5.64,"d":0.99,"Os":164,"On":28,"Oa":5.86,"Od":0.81,"pg":28},"p":[[-38,{"n":7,"e":3547}],[-37,{"n":6,"e":3536}],[-36,{"n":7.5,"e":3526}],[-35,{"n":5,"e":3516}],[-34,{"n":5.5,"e":3504}],[-33,{"n":6,"e":3489}],[-32,{"n":7,"e":3487}],[-31,{"n":4.5,"e":3476}],[-30,{"n":6,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":7,"e":3447}],[-27,{"n":6,"e":3437}],[-26,{"n":6,"e":3419}],[-25,{"n":6.5,"e":3417}],[-24,{"n":5.5,"e":3402}],[-23,{"n":5,"e":3388}],[-22,{"n":6,"e":3387}],[-21,{"n":5,"e":3376}],[-20,{"n":5.5,"e":3359}],[-19,{"n":6,"e":3355}],[-18,{"n":5.5,"e":3346}],[7,{"n":4,"e":4240}],[6,{"n":6.5,"e":4255}],[5,{"n":7,"e":4267}],[4,{"n":6,"e":4274}],[3,{"n":5.5,"e":4283}],[2,{"n":5.5,"e":4290}],[1,{"n":5,"e":4299}]],"a":{"m":25,"a":26,"M":27,"n":6}}],[934,{"n":"Masuaku","f":"Arthur","fp":"DL","r":7,"c":28,"s":{"s":36,"n":7,"a":5.14,"d":1.46,"Os":87.5,"On":17,"Oa":5.15,"Od":1.16,"pd":17},"p":[[-38,{"n":5.5,"e":3547}],[-37,{"n":6.5,"e":3536}],[-36,{"n":5.5,"e":3526}],[-35,{"n":4,"e":3516}],[-34,{"n":6.5,"e":3504}],[-29,{"n":5.5,"e":3456}],[-25,{"n":5,"e":3417}],[-24,{"n":3.5,"e":3402}],[-19,{"n":5,"e":3355}],[-18,{"n":4.5,"e":3346}],[16,{"n":4.5,"e":4157}],[14,{"n":5,"e":4169}],[9,{"n":3,"e":4222}],[5,{"n":4.5,"e":4267}],[4,{"n":7.5,"e":4274}],[3,{"n":6.5,"e":4283}],[2,{"n":5,"e":4290}]]}],[996,{"n":"Fernandes","f":"Edimilson","fp":"MD","r":8,"c":28}],[1087,{"n":"Rice","f":"Declan","fp":"MD","r":19,"c":28,"s":{"s":94,"n":17,"a":5.53,"d":1.1,"Ss":94,"Sn":17,"Sa":5.53,"Sd":1.1,"Og":2,"Os":210,"On":37,"Oa":5.68,"Od":0.95,"pm":37},"p":[[-38,{"n":6,"e":3547}],[-36,{"n":6.5,"e":3526}],[-35,{"n":5.5,"e":3516}],[-34,{"n":6.5,"e":3504}],[-33,{"n":5,"e":3489}],[-32,{"n":5.5,"e":3487}],[-31,{"n":5.5,"e":3476}],[-30,{"n":6,"e":3459}],[-29,{"n":7,"e":3456,"g":1}],[-28,{"n":6,"e":3447}],[-27,{"n":7,"e":3437}],[-26,{"n":4.5,"e":3419}],[-25,{"n":6,"e":3417}],[-24,{"n":5,"e":3402}],[-23,{"n":4.5,"e":3388}],[-22,{"n":7.5,"e":3387,"g":1}],[-21,{"n":5,"e":3376}],[-20,{"n":5.5,"e":3359}],[-19,{"n":6,"e":3355}],[-18,{"n":5.5,"e":3346}],[17,{"n":5.5,"e":4146}],[16,{"n":5.5,"e":4157}],[15,{"n":6,"e":4162}],[14,{"n":7,"e":4169}],[13,{"n":6,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":4,"e":4207}],[10,{"n":6,"e":4217}],[9,{"n":5,"e":4222}],[8,{"n":4.5,"e":4235}],[7,{"n":7,"e":4240}],[6,{"n":6.5,"e":4255}],[5,{"n":6.5,"e":4267}],[4,{"n":6.5,"e":4274}],[3,{"n":6,"e":4283}],[2,{"n":4.5,"e":4290}],[1,{"n":4,"e":4299}]],"a":{"m":21,"a":25,"M":28,"n":5}}],[1132,{"n":"Diangana","f":"Grady","fp":"MD","r":7,"c":28,"s":{"Os":37.5,"On":8,"Oa":4.69,"Od":0.59,"pm":8},"p":[[-37,{"n":5.5,"e":3536}],[-34,{"n":5.5,"e":3504}],[-32,{"n":4.5,"e":3487}],[-28,{"n":5,"e":3447}],[-23,{"n":4.5,"e":3388}],[-20,{"n":4,"e":3359}],[-19,{"n":4,"e":3355}],[-18,{"n":4.5,"e":3346}]]}],[1627,{"n":"Fornals","f":"Pablo","fp":"MO","r":10,"c":28,"s":{"s":79.5,"n":16,"a":4.97,"d":0.64,"Ss":30,"Sn":6,"Sa":5,"Sd":0.89,"Og":1,"Os":175,"On":35,"Oa":5,"Od":0.75,"pm":31,"pa":4},"p":[[-37,{"n":5,"e":2339}],[-36,{"n":3.5,"e":2326}],[-35,{"n":6,"e":2321,"g":1}],[-34,{"n":5,"e":2305}],[-33,{"n":5,"e":2301}],[-28,{"n":5,"e":2251}],[-27,{"n":4.5,"e":2238}],[-26,{"n":4.5,"e":2227}],[-23,{"n":5,"e":2197}],[-22,{"n":5,"e":2189}],[-21,{"n":4.5,"e":2176}],[-20,{"n":4,"e":2170}],[-18,{"n":5,"e":2143}],[-17,{"n":7,"e":2141}],[-32,{"n":6.5,"e":2284}],[-29,{"n":5,"e":2254}],[-25,{"n":4.5,"e":2214}],[-24,{"n":4.5,"e":2211}],[-19,{"n":6,"e":2160}],[17,{"n":6.5,"e":4146}],[16,{"n":4.5,"e":4157}],[15,{"n":4.5,"e":4162}],[14,{"n":5.5,"e":4169}],[13,{"n":5,"e":4187}],[12,{"n":4,"e":4188}],[10,{"n":5.5,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":4.5,"e":4235}],[7,{"n":5.5,"e":4240}],[6,{"n":5,"e":4255}],[5,{"n":5.5,"e":4267}],[4,{"n":5,"e":4274}],[3,{"n":5,"e":4283}],[2,{"n":4,"e":4290}],[1,{"n":5,"e":4299}]]}],[1727,{"n":"Jiménez","f":"Roberto","fp":"G","r":6,"c":28,"s":{"ao":1,"s":34.5,"n":7,"a":4.93,"d":1.17,"Oao":1,"Os":34.5,"On":7,"Oa":4.93,"Od":1.17,"pg":7},"p":[[13,{"n":4,"e":4187}],[12,{"n":6,"e":4188,"a":1}],[11,{"n":4,"e":4207}],[10,{"n":5,"e":4217}],[9,{"n":7,"e":4222}],[8,{"n":4.5,"e":4235}],[7,{"n":4,"e":4240}]]}],[2073,{"n":"Holland","f":"Nathan","fp":"MD","r":1,"c":28,"s":{"s":10,"n":2,"a":5,"d":0.71,"Os":10,"On":2,"Oa":5,"Od":0.71,"pm":2},"p":[[16,{"n":5.5,"e":4157}],[15,{"n":4.5,"e":4162}]]}],[2211,{"n":"Cullen","f":"Josh","fp":"MD","r":2,"c":28}],[2221,{"n":"Johnson","f":"Ben","fp":"MD","r":3,"c":28}],[2260,{"n":"Oxford","f":"Reece","fp":"DC","r":1,"c":28}],[2293,{"n":"Carlos Sánchez","f":"","fp":"MD","r":3,"c":28,"s":{"s":25,"n":5,"a":5,"Ss":5,"Sn":1,"Sa":5,"Os":34.5,"On":7,"Oa":4.93,"Od":0.19,"pm":7},"p":[[-38,{"n":4.5,"e":3547}],[-37,{"n":5,"e":3536}],[17,{"n":5,"e":4146}],[13,{"n":5,"e":4187}],[4,{"n":5,"e":4274}],[3,{"n":5,"e":4283}],[2,{"n":5,"e":4290}]]}],[2307,{"n":"Hugill","f":"Jordan","fp":"A","r":3,"c":28}],[2498,{"n":"Fredericks","f":"Ryan","fp":"DL","r":11,"c":28,"s":{"s":74.5,"n":16,"a":4.66,"d":0.93,"Ss":32,"Sn":7,"Sa":4.57,"Sd":1.06,"Og":1,"Os":134,"On":27,"Oa":4.96,"Od":1.08,"pd":27},"p":[[-38,{"n":5,"e":3547}],[-37,{"n":8,"e":3536,"g":1}],[-36,{"n":6.5,"e":3526}],[-34,{"n":4,"e":3504}],[-33,{"n":4.5,"e":3489}],[-30,{"n":4,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":6,"e":3447}],[-27,{"n":5,"e":3437}],[-26,{"n":5.5,"e":3419}],[-25,{"n":5,"e":3417}],[17,{"n":6,"e":4146}],[16,{"n":3.5,"e":4157}],[15,{"n":4.5,"e":4162}],[14,{"n":6,"e":4169}],[13,{"n":3.5,"e":4187}],[12,{"n":4,"e":4188}],[11,{"n":4.5,"e":4207}],[9,{"n":3,"e":4222}],[8,{"n":5.5,"e":4235}],[7,{"n":5,"e":4240}],[6,{"n":5.5,"e":4255}],[5,{"n":5,"e":4267}],[4,{"n":5,"e":4274}],[3,{"n":5,"e":4283}],[2,{"n":5,"e":4290}],[1,{"n":3.5,"e":4299}]]}],[2514,{"n":"Yarmolenko","f":"Andriy","fp":"A","r":15,"c":28,"s":{"g":3,"s":75,"n":15,"a":5,"d":1.46,"Ss":4,"Sn":1,"Sa":4,"Og":3,"Os":75,"On":15,"Oa":5,"Od":1.46,"pm":9,"pa":6},"p":[[17,{"n":4,"e":4146}],[15,{"n":4.5,"e":4162}],[14,{"n":4,"e":4169}],[13,{"n":4,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":3,"e":4207}],[10,{"n":7,"e":4217}],[9,{"n":4,"e":4222}],[8,{"n":5,"e":4235}],[7,{"n":7.5,"e":4240,"g":1}],[6,{"n":7,"e":4255,"g":1}],[5,{"n":5,"e":4267}],[4,{"n":7,"e":4274,"g":1}],[3,{"n":5.5,"e":4283}],[2,{"n":4,"e":4290}]]}],[2560,{"n":"Toni Martínez","f":"","fp":"A","r":2,"c":28}],[2573,{"n":"Balbuena","f":"Fabián","fp":"DC","r":10,"c":28,"s":{"g":1,"s":39,"n":9,"a":4.33,"d":1.41,"Ss":19.5,"Sn":4,"Sa":4.88,"Sd":1.75,"Og":1,"Os":74.5,"On":16,"Oa":4.66,"Od":1.26,"pd":16},"p":[[-38,{"n":6.5,"e":3547}],[-37,{"n":6,"e":3536}],[-36,{"n":5,"e":3526}],[-35,{"n":4,"e":3516}],[-34,{"n":5.5,"e":3504}],[-33,{"n":4.5,"e":3489}],[-18,{"n":4,"e":3346}],[17,{"n":5.5,"e":4146}],[16,{"n":4,"e":4157}],[15,{"n":3,"e":4162}],[14,{"n":7,"e":4169}],[12,{"n":2.5,"e":4188}],[11,{"n":4.5,"e":4207,"g":1}],[10,{"n":4.5,"e":4217}],[5,{"n":5,"e":4267}],[1,{"n":3,"e":4299}]]}],[2602,{"n":"Felipe Anderson","f":"","fp":"MO","r":18,"c":28,"s":{"s":78,"n":15,"a":5.2,"d":1.39,"Og":3,"Os":176,"On":34,"Oa":5.18,"Od":1.34,"pm":31,"pa":3},"p":[[-38,{"n":7,"e":3547}],[-36,{"n":5,"e":3526}],[-35,{"n":5,"e":3516}],[-34,{"n":6,"e":3504,"g":1}],[-33,{"n":4.5,"e":3489}],[-31,{"n":5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-29,{"n":6,"e":3456}],[-28,{"n":3.5,"e":3447}],[-27,{"n":4.5,"e":3437}],[-26,{"n":5.5,"e":3419}],[-25,{"n":7,"e":3417}],[-24,{"n":3,"e":3402}],[-23,{"n":4,"e":3388}],[-22,{"n":6,"e":3387}],[-21,{"n":5,"e":3376}],[-20,{"n":3,"e":3359}],[-19,{"n":8,"e":3355,"g":2}],[-18,{"n":5.5,"e":3346}],[16,{"n":4,"e":4157}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4169}],[13,{"n":3.5,"e":4187}],[12,{"n":3.5,"e":4188}],[11,{"n":6,"e":4207}],[10,{"n":5.5,"e":4217}],[9,{"n":3.5,"e":4222}],[8,{"n":5.5,"e":4235}],[7,{"n":6,"e":4240}],[6,{"n":6,"e":4255}],[5,{"n":6,"e":4267}],[4,{"n":7,"e":4274}],[3,{"n":7.5,"e":4283}],[1,{"n":3,"e":4299}]],"a":{"m":25,"a":26,"M":27,"n":7}}],[2885,{"n":"Coventry","f":"Conor","fp":"MD","r":1,"c":28}],[2888,{"n":"Joe Powell","f":"","fp":"MD","r":1,"c":28}],[2979,{"n":"Xande Silva","f":"","fp":"A","r":1,"c":28}],[2987,{"n":"Nasri","f":"Samir","fp":"MD","r":4,"c":28,"s":{"Os":24.5,"On":5,"Oa":4.9,"Od":1.14,"pm":5},"p":[[-31,{"n":6.5,"e":3476}],[-30,{"n":4.5,"e":3459}],[-28,{"n":3.5,"e":3447}],[-23,{"n":4.5,"e":3388}],[-22,{"n":5.5,"e":3387}]]}],[3744,{"n":"Martin","f":"David","fp":"G","r":12,"c":28,"s":{"s":23,"n":4,"a":5.75,"d":2.06,"Ss":23,"Sn":4,"Sa":5.75,"Sd":2.06,"Os":23,"On":4,"Oa":5.75,"Od":2.06,"pg":4},"p":[[17,{"n":6,"e":4146}],[16,{"n":3,"e":4157}],[15,{"n":6,"e":4162}],[14,{"n":8,"e":4169}]]}],[5449,{"n":"Haller","f":"Sébastien","fp":"A","r":18,"c":28,"s":{"g":5,"s":82.5,"n":16,"a":5.16,"d":1.39,"Sg":5,"Ss":79,"Sn":15,"Sa":5.27,"Sd":1.36,"Og":5,"Os":82.5,"On":16,"Oa":5.16,"Od":1.39,"pa":16},"p":[[17,{"n":7,"e":4146,"g":1}],[16,{"n":4.5,"e":4157}],[15,{"n":4,"e":4162}],[14,{"n":4.5,"e":4169}],[13,{"n":4,"e":4187}],[12,{"n":3,"e":4188}],[11,{"n":6,"e":4207}],[10,{"n":4.5,"e":4217}],[9,{"n":4.5,"e":4222}],[8,{"n":6,"e":4235,"g":1}],[7,{"n":6,"e":4240}],[6,{"n":5,"e":4255}],[5,{"n":5,"e":4267}],[4,{"n":7,"e":4274,"g":1}],[3,{"n":8,"e":4283,"g":2}],[1,{"n":3.5,"e":4299}]]}],[5986,{"n":"Gonçalo Cardoso","f":"","fp":"DC","r":1,"c":28}],[6123,{"n":"Ajeti","f":"Albian","fp":"A","r":5,"c":28,"s":{"s":21,"n":5,"a":4.2,"d":0.27,"Os":21,"On":5,"Oa":4.2,"Od":0.27,"pa":5},"p":[[15,{"n":4.5,"e":4162}],[12,{"n":4,"e":4188}],[11,{"n":4,"e":4207}],[10,{"n":4.5,"e":4217}],[9,{"n":4,"e":4222}]]}],[75,{"n":"João Moutinho","f":"","fp":"MO","r":22,"c":69,"s":{"g":1,"s":94.5,"n":17,"a":5.56,"d":1,"Sg":1,"Ss":94.5,"Sn":17,"Sa":5.56,"Sd":1,"Og":1,"Os":212,"On":38,"Oa":5.58,"Od":1.02,"pm":37,"pa":1},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5.5,"e":3537}],[-36,{"n":5.5,"e":3527}],[-35,{"n":6.5,"e":3517}],[-34,{"n":5,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":5,"e":3480}],[-31,{"n":6,"e":3477}],[-30,{"n":5.5,"e":3460}],[-29,{"n":5.5,"e":3457}],[-28,{"n":4.5,"e":3440}],[-27,{"n":4,"e":3428}],[-26,{"n":5,"e":3427}],[-25,{"n":7,"e":3413}],[-24,{"n":8,"e":3402}],[-23,{"n":7,"e":3397}],[-22,{"n":5,"e":3385}],[-21,{"n":4,"e":3377}],[-20,{"n":6,"e":3366}],[-19,{"n":7,"e":3351}],[-18,{"n":4.5,"e":3347}],[17,{"n":5,"e":4147}],[16,{"n":5,"e":4150}],[15,{"n":7.5,"e":4162}],[14,{"n":5.5,"e":4174}],[13,{"n":7,"e":4180,"g":1}],[12,{"n":6,"e":4195}],[11,{"n":7,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":4.5,"e":4227}],[8,{"n":6.5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":4.5,"e":4251}],[5,{"n":4.5,"e":4263}],[4,{"n":5,"e":4276}],[3,{"n":4.5,"e":4284}],[2,{"n":6,"e":4297}],[1,{"n":5.5,"e":4305}]],"a":{"m":19,"a":21,"M":25,"n":7}}],[1710,{"n":"Jonny","f":"","fp":"DL","r":13,"c":69,"s":{"g":1,"s":76.5,"n":16,"a":4.78,"d":0.84,"Sg":1,"Ss":63,"Sn":13,"Sa":4.85,"Sd":0.9,"Og":1,"Os":170.5,"On":36,"Oa":4.74,"Od":0.79,"pd":2,"pm":34},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":5,"e":3527}],[-35,{"n":5,"e":3517}],[-34,{"n":3.5,"e":3505}],[-33,{"n":4.5,"e":3497}],[-32,{"n":4.5,"e":3480}],[-31,{"n":6.5,"e":3477}],[-30,{"n":4.5,"e":3460}],[-28,{"n":4.5,"e":3440}],[-27,{"n":5,"e":3428}],[-26,{"n":5,"e":3427}],[-25,{"n":4.5,"e":3413}],[-24,{"n":6,"e":3402}],[-23,{"n":3,"e":3397}],[-22,{"n":5,"e":3385}],[-21,{"n":4,"e":3377}],[-20,{"n":5,"e":3366}],[-19,{"n":5,"e":3351}],[-18,{"n":4,"e":3347}],[17,{"n":4,"e":4147}],[16,{"n":5,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4174}],[13,{"n":5,"e":4180}],[12,{"n":4.5,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4213,"g":1}],[9,{"n":5,"e":4227}],[8,{"n":5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":4.5,"e":4251}],[5,{"n":2.5,"e":4263}],[3,{"n":4.5,"e":4284}],[2,{"n":5,"e":4297}],[1,{"n":4,"e":4305}]],"a":{"m":11,"a":12,"M":13,"n":7}}],[1839,{"n":"Vallejo","f":"Jesús","fp":"DC","r":3,"c":69,"s":{"s":7,"n":2,"a":3.5,"d":2.12,"Og":1,"Os":32,"On":7,"Oa":4.57,"Od":1.59,"pd":7},"p":[[-37,{"n":3,"e":2341}],[-33,{"n":6.5,"e":2297}],[-36,{"n":6,"e":2326,"g":1}],[-35,{"n":4.5,"e":2316}],[-27,{"n":5,"e":2240}],[9,{"n":5,"e":4227}],[5,{"n":2,"e":4263}]]}],[2485,{"n":"Coady","f":"Conor","fp":"DC","r":12,"c":69,"s":{"s":84,"n":17,"a":4.94,"d":1.1,"Ss":84,"Sn":17,"Sa":4.94,"Sd":1.1,"Oao":3,"Os":190,"On":38,"Oa":5,"Od":1,"pd":38},"p":[[-38,{"n":4,"e":3543}],[-37,{"n":5.5,"e":3537}],[-36,{"n":6,"e":3527}],[-35,{"n":6,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":5.5,"e":3497}],[-32,{"n":3,"e":3480,"a":1}],[-31,{"n":5.5,"e":3477}],[-30,{"n":5.5,"e":3460}],[-29,{"n":5.5,"e":3457}],[-28,{"n":5,"e":3440}],[-27,{"n":5.5,"e":3428}],[-26,{"n":5.5,"e":3427}],[-25,{"n":6,"e":3413}],[-24,{"n":6,"e":3402}],[-23,{"n":3.5,"e":3397,"a":1}],[-22,{"n":4,"e":3385,"a":1}],[-21,{"n":4.5,"e":3377}],[-20,{"n":6,"e":3366}],[-19,{"n":5.5,"e":3351}],[-18,{"n":4,"e":3347}],[17,{"n":4.5,"e":4147}],[16,{"n":4.5,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4174}],[13,{"n":5.5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":5.5,"e":4198}],[10,{"n":5,"e":4213}],[9,{"n":4.5,"e":4227}],[8,{"n":6.5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":5,"e":4251}],[5,{"n":2,"e":4263}],[4,{"n":3,"e":4276}],[3,{"n":5.5,"e":4284}],[2,{"n":4.5,"e":4297}],[1,{"n":5.5,"e":4305}]]}],[2490,{"n":"Boly","f":"Willy","fp":"DC","r":9,"c":69,"s":{"s":45.5,"n":8,"a":5.69,"d":0.96,"Og":3,"Os":147,"On":27,"Oa":5.44,"Od":0.97,"pd":27},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3537}],[-36,{"n":6,"e":3527}],[-35,{"n":5,"e":3517}],[-34,{"n":6,"e":3505,"g":1}],[-33,{"n":5.5,"e":3497}],[-32,{"n":4,"e":3480}],[-31,{"n":5,"e":3477}],[-30,{"n":6,"e":3460}],[-29,{"n":6,"e":3457}],[-28,{"n":5,"e":3440}],[-27,{"n":4.5,"e":3428}],[-26,{"n":7,"e":3427,"g":1}],[-25,{"n":5.5,"e":3413}],[-22,{"n":3.5,"e":3385}],[-21,{"n":5,"e":3377}],[-20,{"n":7.5,"e":3366,"g":1}],[-19,{"n":5,"e":3351}],[-18,{"n":4.5,"e":3347}],[9,{"n":4.5,"e":4227}],[8,{"n":7,"e":4231}],[7,{"n":7,"e":4244}],[6,{"n":5,"e":4251}],[4,{"n":5,"e":4276}],[3,{"n":6,"e":4284}],[2,{"n":5,"e":4297}],[1,{"n":6,"e":4305}]]}],[2492,{"n":"Doherty","f":"Matt","fp":"DL","r":14,"c":69,"s":{"g":2,"s":81.5,"n":16,"a":5.09,"d":0.92,"Sg":2,"Ss":68,"Sn":13,"Sa":5.23,"Sd":0.95,"Og":3,"Os":189,"On":37,"Oa":5.11,"Od":0.88,"pd":7,"pm":30},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3537}],[-36,{"n":4.5,"e":3527}],[-35,{"n":6,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":5,"e":3497}],[-32,{"n":5,"e":3480}],[-31,{"n":6.5,"e":3477,"g":1}],[-30,{"n":5,"e":3460}],[-29,{"n":6,"e":3457}],[-28,{"n":3.5,"e":3440}],[-27,{"n":5.5,"e":3428}],[-26,{"n":4.5,"e":3427}],[-25,{"n":5,"e":3413}],[-24,{"n":6,"e":3402}],[-23,{"n":5,"e":3397}],[-22,{"n":5,"e":3385}],[-21,{"n":4.5,"e":3377}],[-20,{"n":7,"e":3366}],[-19,{"n":4.5,"e":3351}],[-18,{"n":4.5,"e":3347}],[17,{"n":3.5,"e":4147}],[16,{"n":4,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":6.5,"e":4174,"g":1}],[13,{"n":5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":5.5,"e":4227}],[8,{"n":5,"e":4231}],[7,{"n":7,"e":4244,"g":1}],[6,{"n":5,"e":4251}],[5,{"n":5.5,"e":4263}],[3,{"n":5,"e":4284}],[2,{"n":4.5,"e":4297}],[1,{"n":4,"e":4305}]],"a":{"m":16,"a":19,"M":31,"n":13}}],[2503,{"n":"Batth","f":"Danny","fp":"DC","r":1,"c":69}],[2508,{"n":"Mason","f":"Joe","fp":"A","r":1,"c":69}],[2528,{"n":"Bennett","f":"Ryan","fp":"DC","r":7,"c":69,"s":{"s":40.5,"n":8,"a":5.06,"d":0.56,"Og":1,"Os":131,"On":26,"Oa":5.04,"Od":0.66,"pd":26},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":4.5,"e":3527}],[-35,{"n":6,"e":3517}],[-33,{"n":4.5,"e":3497}],[-31,{"n":6,"e":3477}],[-29,{"n":6,"e":3457}],[-28,{"n":4,"e":3440}],[-27,{"n":5.5,"e":3428}],[-26,{"n":6,"e":3427}],[-25,{"n":5,"e":3413}],[-24,{"n":5,"e":3402}],[-23,{"n":5.5,"e":3397,"g":1}],[-22,{"n":4,"e":3385}],[-21,{"n":4,"e":3377}],[-20,{"n":5.5,"e":3366}],[-19,{"n":5,"e":3351}],[-18,{"n":4.5,"e":3347}],[15,{"n":5,"e":4162}],[12,{"n":5,"e":4195}],[9,{"n":5,"e":4227}],[8,{"n":6,"e":4231}],[4,{"n":4,"e":4276}],[3,{"n":5,"e":4284}],[2,{"n":5,"e":4297}],[1,{"n":5.5,"e":4305}]]}],[2533,{"n":"Rui Patrício","f":"","fp":"G","r":15,"c":69,"s":{"s":90,"n":17,"a":5.29,"d":1.38,"Ss":90,"Sn":17,"Sa":5.29,"Sd":1.38,"Os":196,"On":37,"Oa":5.3,"Od":1.08,"pg":37},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5.5,"e":3537}],[-36,{"n":5,"e":3527}],[-35,{"n":5.5,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":4,"e":3480}],[-31,{"n":5,"e":3477}],[-30,{"n":6,"e":3460}],[-28,{"n":5.5,"e":3440}],[-27,{"n":6,"e":3428}],[-26,{"n":4,"e":3427}],[-25,{"n":6,"e":3413}],[-24,{"n":5.5,"e":3402}],[-23,{"n":5,"e":3397}],[-22,{"n":7,"e":3385}],[-21,{"n":5,"e":3377}],[-20,{"n":5,"e":3366}],[-19,{"n":5,"e":3351}],[-18,{"n":6,"e":3347}],[17,{"n":5,"e":4147}],[16,{"n":3,"e":4150}],[15,{"n":7,"e":4162}],[14,{"n":6,"e":4174}],[13,{"n":5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":5.5,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":6,"e":4227}],[8,{"n":6.5,"e":4231}],[7,{"n":7.5,"e":4244}],[6,{"n":6,"e":4251}],[5,{"n":2.5,"e":4263}],[4,{"n":3,"e":4276}],[3,{"n":5.5,"e":4284}],[2,{"n":6,"e":4297}],[1,{"n":5.5,"e":4305}]]}],[2538,{"n":"Gibbs-White","f":"Morgan","fp":"MO","r":1,"c":69,"s":{"s":14.5,"n":3,"a":4.83,"d":0.58,"Os":85.5,"On":18,"Oa":4.75,"Od":0.35,"pm":17,"pa":1},"p":[[-38,{"n":5,"e":3543}],[-36,{"n":5,"e":3527}],[-35,{"n":5,"e":3517}],[-34,{"n":5,"e":3505}],[-31,{"n":4.5,"e":3477}],[-30,{"n":5,"e":3460}],[-29,{"n":4,"e":3457}],[-28,{"n":4.5,"e":3440}],[-24,{"n":4.5,"e":3402}],[-23,{"n":4.5,"e":3397}],[-22,{"n":4.5,"e":3385}],[-21,{"n":5,"e":3377}],[-20,{"n":5,"e":3366}],[-19,{"n":4.5,"e":3351}],[-18,{"n":5,"e":3347}],[7,{"n":5.5,"e":4244}],[5,{"n":4.5,"e":4263}],[3,{"n":4.5,"e":4284}]]}],[2540,{"n":"Rúben Vinagre","f":"","fp":"DL","r":6,"c":69,"s":{"s":28.5,"n":6,"a":4.75,"d":0.88,"Os":74,"On":15,"Oa":4.93,"Od":0.62,"pd":10,"pm":5},"p":[[-38,{"n":5,"e":3543}],[-37,{"n":5,"e":3537}],[-35,{"n":5,"e":3517}],[-33,{"n":5,"e":3497}],[-29,{"n":6,"e":3457}],[-24,{"n":5,"e":3402}],[-23,{"n":4.5,"e":3397}],[-19,{"n":5,"e":3351}],[-18,{"n":5,"e":3347}],[16,{"n":5,"e":4150}],[13,{"n":5,"e":4180}],[11,{"n":5,"e":4198}],[10,{"n":5,"e":4213}],[8,{"n":5.5,"e":4231}],[4,{"n":3,"e":4276}]]}],[2542,{"n":"Deslandes","f":"Sylvain","fp":"DC","r":1,"c":69}],[2550,{"n":"Enobakhare","f":"Bright","fp":"A","r":1,"c":69}],[2556,{"n":"Diogo Jota","f":"","fp":"MO","r":16,"c":69,"s":{"g":3,"s":76.5,"n":15,"a":5.1,"d":1.02,"Sg":2,"Ss":48.5,"Sn":9,"Sa":5.39,"Sd":0.99,"Og":10,"Os":171.5,"On":32,"Oa":5.36,"Od":1.28,"pm":1,"pa":31},"p":[[-38,{"n":4,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":7.5,"e":3527,"g":1}],[-35,{"n":5,"e":3517}],[-34,{"n":4,"e":3505}],[-33,{"n":6.5,"e":3497,"g":1}],[-32,{"n":4,"e":3480}],[-31,{"n":7,"e":3477,"g":1}],[-30,{"n":6,"e":3460}],[-29,{"n":7,"e":3457,"g":1}],[-28,{"n":4,"e":3440}],[-27,{"n":4,"e":3428}],[-26,{"n":4.5,"e":3427}],[-25,{"n":6,"e":3413}],[-24,{"n":7,"e":3402}],[-23,{"n":8.5,"e":3397,"g":3}],[-22,{"n":5,"e":3385}],[17,{"n":5,"e":4147}],[16,{"n":7.5,"e":4150,"g":2}],[15,{"n":5,"e":4162}],[14,{"n":4.5,"e":4174}],[13,{"n":6.5,"e":4180}],[12,{"n":4.5,"e":4195}],[11,{"n":5.5,"e":4198}],[10,{"n":5,"e":4213}],[9,{"n":5,"e":4227}],[6,{"n":6.5,"e":4251,"g":1}],[5,{"n":4,"e":4263}],[4,{"n":4.5,"e":4276}],[3,{"n":5,"e":4284}],[2,{"n":4,"e":4297}],[1,{"n":4,"e":4305}]],"a":{"m":14,"a":25,"M":46,"n":5}}],[2557,{"n":"Ruddy","f":"John","fp":"G","r":7,"c":69,"s":{"Os":6,"On":1,"Oa":6,"pg":1},"p":[[-29,{"n":6,"e":3457}]]}],[2563,{"n":"Graham","f":"Jordan","fp":"MD","r":5,"c":69}],[2568,{"n":"Rúben Neves","f":"","fp":"MD","r":20,"c":69,"s":{"g":2,"s":89,"n":17,"a":5.24,"d":0.9,"Sg":2,"Ss":89,"Sn":17,"Sa":5.24,"Sd":0.9,"Og":4,"Os":192.5,"On":36,"Oa":5.35,"Od":1.01,"pm":36},"p":[[-38,{"n":4,"e":3543}],[-37,{"n":5,"e":3537}],[-36,{"n":6.5,"e":3527}],[-35,{"n":6,"e":3517}],[-34,{"n":3.5,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":3.5,"e":3480}],[-31,{"n":7,"e":3477,"g":1}],[-30,{"n":6,"e":3460}],[-28,{"n":4.5,"e":3440}],[-27,{"n":5,"e":3428}],[-26,{"n":5.5,"e":3427}],[-25,{"n":6,"e":3413,"g":1}],[-24,{"n":7,"e":3402}],[-23,{"n":7,"e":3397}],[-22,{"n":4.5,"e":3385}],[-21,{"n":5.5,"e":3377}],[-20,{"n":6,"e":3366}],[-18,{"n":5,"e":3347}],[17,{"n":5,"e":4147}],[16,{"n":4.5,"e":4150}],[15,{"n":5,"e":4162}],[14,{"n":5.5,"e":4174}],[13,{"n":6,"e":4180}],[12,{"n":7,"e":4195,"g":1}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4213}],[9,{"n":4.5,"e":4227}],[8,{"n":7,"e":4231}],[7,{"n":5,"e":4244}],[6,{"n":4.5,"e":4251}],[5,{"n":3.5,"e":4263}],[4,{"n":5,"e":4276}],[3,{"n":4.5,"e":4284}],[2,{"n":6,"e":4297,"g":1}],[1,{"n":5.5,"e":4305}]]}],[2571,{"n":"Norris","f":"Will","fp":"G","r":1,"c":69,"s":{"Os":5,"On":1,"Oa":5,"pg":1},"p":[[-37,{"n":5,"e":3537}]]}],[2574,{"n":"Cavaleiro","f":"Ivan","fp":"A","r":7,"c":69,"s":{"Os":57.5,"On":13,"Oa":4.42,"Od":0.76,"pa":13},"p":[[-36,{"n":4.5,"e":3527}],[-33,{"n":4.5,"e":3497}],[-32,{"n":3,"e":3480}],[-31,{"n":4,"e":3477}],[-29,{"n":4,"e":3457}],[-28,{"n":4,"e":3440}],[-27,{"n":3.5,"e":3428}],[-26,{"n":5,"e":3427}],[-24,{"n":4.5,"e":3402}],[-21,{"n":4.5,"e":3377}],[-20,{"n":6,"e":3366}],[-19,{"n":5,"e":3351}],[-18,{"n":5,"e":3347}]]}],[2575,{"n":"Hélder Costa","f":"","fp":"A","r":6,"c":69,"s":{"Og":1,"Os":37,"On":8,"Oa":4.63,"Od":0.79,"pa":8},"p":[[-34,{"n":4,"e":3505}],[-32,{"n":4.5,"e":3480}],[-28,{"n":4.5,"e":3440}],[-26,{"n":4.5,"e":3427}],[-25,{"n":4,"e":3413}],[-21,{"n":4.5,"e":3377}],[-20,{"n":6.5,"e":3366,"g":1}],[-19,{"n":4.5,"e":3351}]]}],[2584,{"n":"Léo Bonatini","f":"","fp":"A","r":1,"c":69}],[2597,{"n":"Saïss","f":"Romain","fp":"MD","r":12,"c":69,"s":{"g":1,"s":63,"n":13,"a":4.85,"d":1.03,"Ss":14.5,"Sn":3,"Sa":4.83,"Sd":1.44,"Og":3,"Os":132.5,"On":26,"Oa":5.1,"Od":1.17,"pd":16,"pm":10},"p":[[-34,{"n":3.5,"e":3505}],[-33,{"n":5,"e":3497}],[-32,{"n":4.5,"e":3480}],[-30,{"n":5,"e":3460}],[-29,{"n":8,"e":3457}],[-27,{"n":5,"e":3428}],[-25,{"n":4.5,"e":3413}],[-24,{"n":7.5,"e":3402,"g":1}],[-23,{"n":4,"e":3397}],[-22,{"n":5,"e":3385}],[-21,{"n":5.5,"e":3377}],[-19,{"n":6.5,"e":3351,"g":1}],[-18,{"n":5.5,"e":3347}],[17,{"n":4,"e":4147}],[16,{"n":4,"e":4150}],[15,{"n":6.5,"e":4162}],[13,{"n":5.5,"e":4180}],[12,{"n":5,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":5.5,"e":4213}],[8,{"n":5,"e":4231}],[7,{"n":6,"e":4244}],[6,{"n":4,"e":4251}],[5,{"n":2.5,"e":4263}],[4,{"n":5,"e":4276,"g":1}],[1,{"n":5,"e":4305}]]}],[2600,{"n":"Jiménez","f":"Raúl","fp":"A","r":33,"c":69,"s":{"g":6,"s":97,"n":17,"a":5.71,"d":1.09,"Sg":6,"Ss":97,"Sn":17,"Sa":5.71,"Sd":1.09,"Og":14,"Os":210,"On":38,"Oa":5.53,"Od":1.26,"pa":38},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":4.5,"e":3537}],[-36,{"n":6.5,"e":3527,"g":1}],[-35,{"n":4.5,"e":3517}],[-34,{"n":3.5,"e":3505}],[-33,{"n":7,"e":3497}],[-32,{"n":4.5,"e":3480}],[-31,{"n":4.5,"e":3477}],[-30,{"n":6.5,"e":3460,"g":1}],[-29,{"n":7.5,"e":3457,"g":1}],[-28,{"n":3,"e":3440}],[-27,{"n":5,"e":3428,"g":1}],[-26,{"n":5,"e":3427}],[-25,{"n":7,"e":3413,"g":1}],[-24,{"n":8,"e":3402,"g":2}],[-23,{"n":6,"e":3397}],[-22,{"n":5,"e":3385}],[-21,{"n":4,"e":3377}],[-20,{"n":7,"e":3366,"g":1}],[-19,{"n":5,"e":3351}],[-18,{"n":4.5,"e":3347}],[17,{"n":5,"e":4147}],[16,{"n":6,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":6.5,"e":4174}],[13,{"n":6.5,"e":4180,"g":1}],[12,{"n":7,"e":4195,"g":1}],[11,{"n":7.5,"e":4198,"g":1}],[10,{"n":5.5,"e":4213}],[9,{"n":5,"e":4227,"g":1}],[8,{"n":7,"e":4231}],[7,{"n":5,"e":4244}],[6,{"n":5.5,"e":4251}],[5,{"n":3,"e":4263}],[4,{"n":6,"e":4276,"g":1}],[3,{"n":6,"e":4284,"g":1}],[2,{"n":4.5,"e":4297}],[1,{"n":5,"e":4305}]],"a":{"m":30,"a":43,"M":51,"n":15}}],[2603,{"n":"Ofosu-Ayeh","f":"Phil","fp":"DC","r":1,"c":69}],[2762,{"n":"Dendoncker","f":"Leander","fp":"MD","r":15,"c":69,"s":{"g":1,"ao":1,"s":83.5,"n":17,"a":4.91,"d":1.25,"Sg":1,"Sao":1,"Ss":83.5,"Sn":17,"Sa":4.91,"Sd":1.25,"Og":3,"Oao":1,"Os":183,"On":35,"Oa":5.23,"Od":1.2,"pd":7,"pm":28},"p":[[-38,{"n":4.5,"e":3543}],[-37,{"n":6,"e":3537,"g":1}],[-36,{"n":5.5,"e":3527}],[-35,{"n":5,"e":3517}],[-34,{"n":5.5,"e":3505}],[-33,{"n":6,"e":3497}],[-32,{"n":3.5,"e":3480}],[-31,{"n":6,"e":3477}],[-30,{"n":6.5,"e":3460}],[-29,{"n":7,"e":3457}],[-28,{"n":4.5,"e":3440}],[-27,{"n":5.5,"e":3428}],[-26,{"n":5,"e":3427}],[-25,{"n":8,"e":3413,"g":1}],[-24,{"n":6.5,"e":3402}],[-23,{"n":4,"e":3397}],[-22,{"n":5,"e":3385}],[-20,{"n":5.5,"e":3366}],[17,{"n":2.5,"e":4147}],[16,{"n":5,"e":4150}],[15,{"n":7.5,"e":4162,"g":1}],[14,{"n":5.5,"e":4174}],[13,{"n":5.5,"e":4180}],[12,{"n":5.5,"e":4195}],[11,{"n":6,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":4,"e":4227}],[8,{"n":6,"e":4231}],[7,{"n":5.5,"e":4244}],[6,{"n":3.5,"e":4251,"a":1}],[5,{"n":3,"e":4263}],[4,{"n":4.5,"e":4276}],[3,{"n":5,"e":4284}],[2,{"n":4,"e":4297}],[1,{"n":6,"e":4305}]]}],[2798,{"n":"Traoré","f":"Adama","fp":"MO","r":16,"c":69,"s":{"g":3,"s":90,"n":16,"a":5.63,"d":1.45,"Sg":3,"Ss":90,"Sn":16,"Sa":5.63,"Sd":1.45,"Og":3,"Os":161,"On":31,"Oa":5.19,"Od":1.24,"pm":7,"pa":24},"p":[[-38,{"n":4.5,"e":3543}],[-35,{"n":4.5,"e":3517}],[-34,{"n":4.5,"e":3505}],[-32,{"n":4.5,"e":3480}],[-31,{"n":4.5,"e":3477}],[-30,{"n":4.5,"e":3460}],[-29,{"n":5,"e":3457}],[-27,{"n":5,"e":3428}],[-26,{"n":6,"e":3427}],[-25,{"n":4.5,"e":3413}],[-22,{"n":6,"e":3385}],[-21,{"n":4,"e":3377}],[-20,{"n":6,"e":3366}],[-19,{"n":3.5,"e":3351}],[-18,{"n":4,"e":3347}],[17,{"n":7,"e":4147,"g":1}],[16,{"n":6,"e":4150}],[15,{"n":6,"e":4162}],[14,{"n":5,"e":4174}],[13,{"n":7,"e":4180}],[12,{"n":7,"e":4195}],[11,{"n":5,"e":4198}],[10,{"n":4.5,"e":4213}],[9,{"n":5.5,"e":4227}],[8,{"n":8.5,"e":4231,"g":2}],[7,{"n":6,"e":4244}],[6,{"n":6.5,"e":4251}],[5,{"n":3,"e":4263}],[4,{"n":3,"e":4276}],[3,{"n":5,"e":4284}],[2,{"n":5,"e":4297}]],"a":{"m":16,"a":20,"M":22,"n":5}}],[2842,{"n":"Ashley-Seal","f":"Ben","fp":"A","r":1,"c":69}],[2844,{"n":"Pote","f":"","fp":"MD","r":1,"c":69}],[2846,{"n":"Watt","f":"Elliot","fp":"MD","r":1,"c":69}],[2847,{"n":"Giles","f":"Ryan John","fp":"MD","r":1,"c":69}],[2889,{"n":"Benny Ashley-Seal","f":"","fp":"A","r":1,"c":69}],[2978,{"n":"Kilman","f":"Max","fp":"DL","r":3,"c":69,"s":{"s":4,"n":1,"a":4,"Os":9,"On":2,"Oa":4.5,"Od":0.71,"pd":2},"p":[[-37,{"n":5,"e":3537}],[14,{"n":4,"e":4174}]]}],[3352,{"n":"John","f":"Cameron","fp":"DC","r":1,"c":69}],[3501,{"n":"Ennis","f":"Niall","fp":"A","r":3,"c":69}],[3659,{"n":"Rafa Mir","f":"","fp":"A","r":5,"c":69}],[3724,{"n":"Roderick Miranda","f":"","fp":"DC","r":3,"c":69}],[4258,{"n":"Bruno Jordao","f":"","fp":"MD","r":1,"c":69}],[4282,{"n":"Pedro Neto","f":"","fp":"MO","r":7,"c":69,"s":{"s":46,"n":10,"a":4.6,"d":0.77,"Os":46,"On":10,"Oa":4.6,"Od":0.77,"pa":10},"p":[[16,{"n":4.5,"e":4150}],[15,{"n":6,"e":4162}],[12,{"n":4,"e":4195}],[11,{"n":4.5,"e":4198}],[10,{"n":4.5,"e":4213}],[7,{"n":6,"e":4244}],[6,{"n":4,"e":4251}],[4,{"n":4,"e":4276}],[3,{"n":4.5,"e":4284}],[2,{"n":4,"e":4297}]]}],[4380,{"n":"Cutrone","f":"Patrick","fp":"A","r":8,"c":69,"s":{"g":2,"s":51.5,"n":11,"a":4.68,"d":0.68,"Og":2,"Os":51.5,"On":11,"Oa":4.68,"Od":0.68,"pa":11},"p":[[16,{"n":4.5,"e":4150}],[15,{"n":6,"e":4162,"g":1}],[12,{"n":4.5,"e":4195}],[9,{"n":4.5,"e":4227}],[8,{"n":4.5,"e":4231}],[7,{"n":4,"e":4244}],[6,{"n":4.5,"e":4251}],[5,{"n":6,"e":4263,"g":1}],[4,{"n":4.5,"e":4276}],[2,{"n":4.5,"e":4297}],[1,{"n":4,"e":4305}]]}],[5431,{"n":"Sanderson","f":"Dion","fp":"DC","r":1,"c":69}],[5988,{"n":"Söndergaard","f":"Andreas","fp":"G","r":1,"c":69}],[5992,{"n":"Perry","f":"Taylor","fp":"MO","r":1,"c":69}]],"np":815,"c":[[39,{"n":"Arsenal","rn":"Arsenal","cn":"Arsenal","crn":"Arsenal","a":"ARS","el":1076,"s":{"w":5,"l":5,"d":7,"pl":17,"GA":-3,"GS":24,"GT":27,"p":22},"nm":[[4131,0.523],[4119,0.557],[4119,0.557]],"pM":[null,4306,4288,4285,4277,4266,4256,4247,4236,4225,4208,4198,4196,4178,4176,4158,4157,4138,3339,3348,3363,3369,3387,3389,3399,3415,3421,3429,3438,3454,3458,3477,3478,3490,3507,3509,3522,3529,3539],"DMI":[3490]}],[78,{"n":"Aston Villa","rn":"Aston Villa","cn":"Aston-Villa","crn":"Aston-Villa","a":"AST","el":997,"s":{"w":4,"l":10,"d":3,"pl":17,"GA":-7,"GS":23,"GT":30,"p":15},"nm":[[4128,0.557],[4118,0.581],[4118,0.581]],"pM":[null,4304,4289,4278,4270,4267,4256,4239,4232,4218,4212,4199,4195,4179,4175,4164,4148,4145],"DMI":[]}],[36,{"n":"Bournemouth","rn":"Bournemouth","cn":"Bournemouth","crn":"Bournemouth","a":"BOU","el":1036,"s":{"w":5,"l":8,"d":4,"pl":17,"GA":-5,"GS":19,"GT":24,"p":19},"nm":[[4119,0.443],[4129,0.5],[4119,0.443],[4129,0.5]],"pM":[null,4300,4289,4286,4271,4265,4248,4240,4236,4219,4216,4200,4191,4180,4173,4166,4149,4140,3338,3356,3364,3368,3383,3388,3398,3410,3422,3428,3438,3448,3462,3468,3484,3488,3498,3508,3525,3528,3540],"DMI":[3488]}],[45,{"n":"Brighton","rn":"Brighton","cn":"Brighton","crn":"Brighton","a":"BHA","el":1056,"s":{"w":5,"l":7,"d":5,"pl":17,"GA":-4,"GS":21,"GT":25,"p":20},"nm":[[4130,0.45],[4126,0.406],[4130,0.45]],"pM":[null,4303,4290,4280,4272,4259,4254,4241,4228,4218,4209,4201,4197,4181,4171,4158,4150,4141,3338,3348,3358,3376,3378,3393,3400,3408,3418,3432,3441,3449,3461,3469,3479,3495,3498,3517,3518,3529,3538],"DMI":[]}],[23,{"n":"Burnley","rn":"Burnley","cn":"Burnley","crn":"Burnley","a":"BUR","el":1036,"s":{"w":6,"l":8,"d":3,"pl":17,"GA":-7,"GS":22,"GT":29,"p":21},"nm":[[4129,0.5],[4129,0.5],[4122,0.466]],"pM":[null,4301,4288,4284,4275,4259,4250,4239,4229,4223,4210,4205,4188,4186,4168,4159,4155,4139,3339,3349,3359,3373,3379,3396,3403,3409,3418,3430,3444,3450,3464,3470,3480,3488,3499,3511,3519,3532,3539],"DMI":[3488]}],[25,{"n":"Chelsea","rn":"Chelsea","cn":"Chelsea","crn":"Chelsea","a":"CHE","el":1100,"s":{"w":9,"l":6,"d":2,"pl":17,"GA":6,"GS":31,"GT":25,"p":29},"nm":[[4135,0.468],[4120,0.695]],"pM":[null,4307,4296,4279,4269,4263,4257,4241,4233,4220,4210,4206,4189,4184,4169,4164,4151,4140,3341,3357,3360,3371,3381,3389,3398,3411,3423,3432,3443,3452,3460,3471,3481,3489,3503,3511,3524,3531,3542],"DMI":[3443]}],[26,{"n":"Crystal Palace","rn":"Crystal Palace","cn":"Crystal-Palace","crn":"Crystal-Palace","a":"CRY","el":1100,"s":{"w":6,"l":6,"d":5,"pl":17,"GA":-4,"GS":15,"GT":19,"p":23},"nm":[[4133,0.524],[4121,0.601]],"pM":[null,4302,4295,4281,4270,4262,4251,4242,4235,4221,4208,4202,4189,4182,4168,4166,4156,4141,3344,3350,3360,3377,3382,3392,3405,3412,3419,3434,3442,3450,3461,3474,3482,3493,3500,3509,3520,3530,3540],"DMI":[3493]}],[22,{"n":"Everton","rn":"Everton","cn":"Everton","crn":"Everton","a":"EVE","el":1060,"s":{"w":5,"l":9,"d":3,"pl":17,"GA":-9,"GS":20,"GT":29,"p":18},"nm":[[4131,0.477],[4122,0.534]],"pM":[null,4302,4291,4278,4276,4265,4252,4246,4229,4222,4209,4203,4193,4183,4170,4167,4151,4144,3342,3349,3358,3372,3383,3395,3401,3413,3426,3433,3439,3451,3466,3471,3487,3490,3501,3512,3520,3532,3546],"DMI":[3490]}],[29,{"n":"Leicester","rn":"Leicester City","cn":"Leicester","crn":"Leicester-City","a":"LEI","el":1220,"s":{"w":12,"l":2,"d":3,"pl":17,"GA":29,"GS":40,"GT":11,"p":39},"nm":[[4132,0.392],[4123,0.22],[4123,0.22],[4132,0.392]],"pM":[null,4305,4296,4282,4271,4260,4249,4245,4230,4223,4215,4202,4196,4181,4170,4160,4148,4142,3341,3352,3362,3372,3384,3397,3406,3414,3425,3434,3441,3455,3463,3470,3484,3491,3502,3516,3522,3534,3542],"DMI":[3352,3534]}],[21,{"n":"Liverpool","rn":"Liverpool","cn":"Liverpool","crn":"Liverpool","a":"LIV","el":1440,"s":{"w":16,"l":0,"d":1,"pl":17,"GA":28,"GS":42,"GT":14,"p":49},"nm":[[4123,0.78],[4137,0.914],[4123,0.78]],"pM":[null,4298,4293,4285,4275,4258,4257,4238,4230,4224,4211,4199,4190,4182,4171,4167,4149,4143,3347,3353,3363,3374,3378,3392,3406,3417,3422,3435,3446,3451,3464,3472,3485,3494,3503,3510,3523,3535,3543],"DMI":[3417]}],[40,{"n":"Man. City","rn":"Manchester City","cn":"Man-City","crn":"Manchester-City","a":"MCI","el":1296,"s":{"w":11,"l":4,"d":2,"pl":17,"GA":28,"GS":47,"GT":19,"p":35},"nm":[[4132,0.608],[4132,0.608],[4127,0.741]],"pM":[null,4299,4294,4286,4272,4264,4253,4246,4231,4221,4212,4204,4190,4184,4172,4159,4152,4138,3344,3352,3365,3374,3385,3391,3404,3415,3423,3433,3447,3448,3465,3473,3483,3492,3500,3514,3519,3534,3538],"DMI":[3352,3534]}],[31,{"n":"Man. United","rn":"Manchester United","cn":"Man-United","crn":"Manchester-United","a":"MUN","el":1144,"s":{"w":6,"l":4,"d":7,"pl":17,"GA":6,"GS":26,"GT":20,"p":25},"nm":[[4136,0.789],[4124,0.587]],"pM":[null,4307,4297,4281,4268,4260,4255,4247,4237,4224,4214,4200,4197,4185,4175,4163,4152,4144,3340,3354,3364,3375,3386,3393,3403,3414,3420,3435,3442,3453,3458,3473,3486,3497,3504,3512,3524,3533,3544],"DMI":[3486]}],[46,{"n":"Newcastle","rn":"Newcastle Utd","cn":"Newcastle","crn":"Newcastle-Utd","a":"NEW","el":1083,"s":{"w":6,"l":7,"d":4,"pl":17,"GA":-7,"GS":17,"GT":24,"p":22},"nm":[[4133,0.476],[4124,0.413]],"pM":[null,4306,4292,4287,4273,4258,4254,4245,4237,4220,4213,4207,4191,4179,4172,4161,4153,4139,3345,3353,3367,3375,3381,3394,3404,3416,3427,3436,3444,3456,3466,3468,3478,3493,3502,3515,3518,3535,3541],"DMI":[3493]}],[76,{"n":"Norwich","rn":"Norwich City","cn":"Norwich","crn":"Norwich-City","a":"NOR","el":940,"s":{"w":3,"l":11,"d":3,"pl":17,"GA":-17,"GS":18,"GT":35,"p":12},"nm":[[4118,0.419],[4134,0.27],[4118,0.419]],"pM":[null,4298,4292,4279,4274,4264,4250,4242,4232,4219,4214,4201,4192,4183,4176,4165,4154,4142],"DMI":[]}],[77,{"n":"Sheffield","rn":"Sheffield","cn":"Sheffield","crn":"Sheffield","a":"SHE","el":1091,"s":{"w":6,"l":4,"d":7,"pl":17,"GA":5,"GS":21,"GT":16,"p":25},"nm":[[4130,0.55],[4130,0.55],[4125,0.734]],"pM":[null,4300,4295,4282,4269,4261,4252,4238,4234,4225,4217,4205,4194,4185,4174,4161,4154,4145],"DMI":[]}],[35,{"n":"Southampton","rn":"Southampton","cn":"Southampton","crn":"Southampton","a":"SOU","el":957,"s":{"w":4,"l":10,"d":3,"pl":17,"GA":-18,"GS":18,"GT":36,"p":15},"nm":[[4128,0.443],[4120,0.305]],"pM":[null,4301,4293,4280,4268,4261,4248,4243,4233,4227,4215,4204,4193,4178,4177,4165,4153,4146,3343,3355,3365,3371,3384,3395,3405,3409,3424,3429,3445,3453,3467,3475,3479,3494,3505,3515,3525,3536,3545],"DMI":[]}],[24,{"n":"Tottenham","rn":"Tottenham","cn":"Tottenham","crn":"Tottenham","a":"TOT","el":1122,"s":{"w":7,"l":5,"d":5,"pl":17,"GA":8,"GS":32,"GT":24,"p":26},"nm":[[4126,0.594],[4135,0.532]],"pM":[null,4304,4294,4287,4277,4262,4249,4243,4228,4226,4211,4203,4194,4187,4173,4163,4155,4147,3342,3356,3366,3370,3386,3390,3407,3416,3425,3430,3443,3454,3467,3474,3485,3495,3506,3514,3526,3528,3546],"DMI":[3443]}],[33,{"n":"Watford","rn":"Watford","cn":"Watford","crn":"Watford","a":"WAT","el":915,"s":{"w":1,"l":10,"d":6,"pl":17,"GA":-23,"GS":9,"GT":32,"p":9},"nm":[[4136,0.211],[4125,0.266]],"pM":[null,4303,4291,4283,4273,4266,4253,4244,4234,4226,4216,4206,4192,4186,4177,4160,4156,4143,3346,3357,3367,3368,3382,3396,3407,3408,3426,3431,3446,3455,3465,3475,3486,3496,3507,3513,3527,3531,3547],"DMI":[3486]}],[28,{"n":"West Ham","rn":"West Ham Utd","cn":"West-Ham","crn":"West-Ham-Utd","a":"WHU","el":1029,"s":{"w":5,"l":8,"d":4,"pl":17,"GA":-9,"GS":19,"GT":28,"p":19},"nm":[[4121,0.399],[4137,0.086]],"pM":[null,4299,4290,4283,4274,4267,4255,4240,4235,4222,4217,4207,4188,4187,4169,4162,4157,4146,3346,3355,3359,3376,3387,3388,3402,3417,3419,3437,3447,3456,3459,3476,3487,3489,3504,3516,3526,3536,3547],"DMI":[3417]}],[69,{"n":"Wolverhampton","rn":"Wolverhampton Wanderers","cn":"Wolverhampton","crn":"Wolverhampton-Wanderers","a":"WOL","el":1113,"s":{"w":5,"l":3,"d":9,"pl":17,"GA":3,"GS":24,"GT":21,"p":24},"nm":[[4127,0.259],[4134,0.73]],"pM":[null,4305,4297,4284,4276,4263,4251,4244,4231,4227,4213,4198,4195,4180,4174,4162,4150,4147,3347,3351,3366,3377,3385,3397,3402,3413,3427,3428,3440,3457,3460,3477,3480,3497,3505,3517,3527,3537,3543],"DMI":[]}]],"nc":20,"op":[[71,{"n":"Fulham"}],[70,{"n":"Cardiff"}],[44,{"n":"Huddersfield"}],[12,{"n":"Lille"}],[10,{"n":"Toulouse"}],[5,{"n":"Caen"}],[42,{"n":"Amiens"}],[9,{"n":"Marseille"}],[19,{"n":"Nice"}],[14,{"n":"Guingamp"}],[15,{"n":"Montpellier"}],[41,{"n":"Strasbourg"}],[7,{"n":"Dijon"}],[4,{"n":"Saint-Étienne"}],[13,{"n":"Monaco"}],[8,{"n":"Nantes"}],[68,{"n":"Reims"}],[2,{"n":"Paris"}],[67,{"n":"Nîmes"}],[18,{"n":"Lyon"}],[3,{"n":"Bordeaux"}],[16,{"n":"Angers"}],[20,{"n":"Rennes"}],[62,{"n":"Real Madrid"}],[52,{"n":"Real Sociedad"}],[60,{"n":"Betis"}],[55,{"n":"Sevilla"}],[48,{"n":"Alavés"}],[54,{"n":"Atlético"}],[53,{"n":"Girona"}],[74,{"n":"Valladolid"}],[51,{"n":"Celta"}],[73,{"n":"Huesca"}],[72,{"n":"Rayo"}],[63,{"n":"Levante"}],[59,{"n":"Barcelona"}],[66,{"n":"Eibar"}],[56,{"n":"Espanyol"}],[49,{"n":"Valencia"}],[58,{"n":"Getafe"}],[47,{"n":"Leganés"}],[64,{"n":"Villarreal"}],[57,{"n":"Bilbao"}]],"Ne":[[4131,{"d":18,"dB":1576931400,"t1":22,"t2":39}],[4119,{"d":19,"dB":1577372400,"t1":36,"t2":39,"o":{"h":3.25,"d":3.55,"a":1.86}}],[4128,{"d":18,"dB":1576940400,"t1":78,"t2":35,"o":{"h":2.19,"d":3.35,"a":2.7}}],[4118,{"d":19,"dB":1577372400,"t1":78,"t2":76,"o":{"h":1.84,"d":3.6,"a":3.25}}],[4129,{"d":18,"dB":1576940400,"t1":36,"t2":23,"o":{"h":2.11,"d":3.2,"a":2.9}}],[4130,{"d":18,"dB":1576940400,"t1":45,"t2":77}],[4126,{"d":19,"dB":1577363400,"t1":24,"t2":45}],[4122,{"d":19,"dB":1577372400,"t1":22,"t2":23}],[4135,{"d":18,"dB":1577032200,"t1":24,"t2":25,"o":{"h":2.24,"d":3.4,"a":2.6}}],[4120,{"d":19,"dB":1577372400,"t1":25,"t2":35,"o":{"h":1.29,"d":4.8,"a":7.15}}],[4133,{"d":18,"dB":1576940400,"t1":46,"t2":26,"o":{"h":2.38,"d":2.85,"a":2.82}}],[4121,{"d":19,"dB":1577372400,"t1":26,"t2":28,"o":{"h":1.97,"d":3.3,"a":3.2}}],[4132,{"d":18,"dB":1576949400,"t1":40,"t2":29,"o":{"h":1.33,"d":4.65,"a":6.35}}],[4123,{"d":19,"dB":1577390400,"t1":29,"t2":21,"o":{"h":2.95,"d":3.4,"a":2.03}}],[4137,{"d":18,"dB":1576940400,"t1":28,"t2":21}],[4127,{"d":19,"dB":1577475900,"t1":69,"t2":40,"o":{"h":6.6,"d":4.35,"a":1.34}}],[4136,{"d":18,"dB":1577023200,"t1":33,"t2":31,"o":{"h":3.95,"d":3.5,"a":1.7}}],[4124,{"d":19,"dB":1577381400,"t1":31,"t2":46,"o":{"h":1.29,"d":4.55,"a":7.65}}],[4134,{"d":18,"dB":1576940400,"t1":76,"t2":69,"o":{"h":3.45,"d":3.45,"a":1.83}}],[4125,{"d":19,"dB":1577372400,"t1":77,"t2":33,"o":{"h":1.8,"d":3.2,"a":3.85}}]],"e":[[3339,{"d":18,"dB":1545481800,"t1s":3,"t2s":1,"t1":39,"t2":23}],[3348,{"d":19,"dB":1545844500,"t1s":1,"t2s":1,"t1":45,"t2":39}],[3363,{"d":20,"dB":1546102800,"t1s":5,"t2s":1,"t1":21,"t2":39}],[3369,{"d":21,"dB":1546362000,"t1s":4,"t2s":1,"t1":39,"t2":71}],[3387,{"d":22,"dB":1547296200,"t1s":1,"t2s":0,"t1":28,"t2":39}],[3389,{"d":23,"dB":1547919000,"t1s":2,"t2s":0,"t1":39,"t2":25}],[3399,{"d":24,"dB":1548791100,"t1s":2,"t2s":1,"t1":39,"t2":70}],[3415,{"d":25,"dB":1549211400,"t1s":3,"t2s":1,"t1":40,"t2":39}],[3421,{"d":26,"dB":1549724400,"t1s":1,"t2s":2,"t1":44,"t2":39}],[3429,{"d":27,"dB":1551017100,"t1s":2,"t2s":0,"t1":39,"t2":35}],[3438,{"d":28,"dB":1551296700,"t1s":5,"t2s":1,"t1":39,"t2":36}],[3454,{"d":29,"dB":1551529800,"t1s":1,"t2s":1,"t1":24,"t2":39}],[3458,{"d":30,"dB":1552235400,"t1s":2,"t2s":0,"t1":39,"t2":31}],[3477,{"d":31,"dB":1556131500,"t1s":3,"t2s":1,"t1":69,"t2":39}],[3478,{"d":32,"dB":1554145200,"t1s":2,"t2s":0,"t1":39,"t2":46}],[3490,{"d":33,"dB":1554642300,"t1s":1,"t2s":0,"t1":22,"t2":39}],[3509,{"d":35,"dB":1555858800,"t1s":2,"t2s":3,"t1":39,"t2":26}],[3522,{"d":36,"dB":1556449200,"t1s":3,"t2s":0,"t1":29,"t2":39}],[3529,{"d":37,"dB":1557070200,"t1s":1,"t2s":1,"t1":39,"t2":45}],[4158,{"d":15,"dB":1575576900,"t1s":1,"t2s":2,"t1":39,"t2":45}],[4176,{"d":14,"dB":1575208800,"t1s":2,"t2s":2,"t1":76,"t2":39}],[4178,{"d":13,"dB":1574521200,"t1s":2,"t2s":2,"t1":39,"t2":35}],[4196,{"d":12,"dB":1573320600,"t1s":2,"t2s":0,"t1":29,"t2":39}],[4198,{"d":11,"dB":1572706800,"t1s":1,"t2s":1,"t1":39,"t2":69}],[4208,{"d":10,"dB":1572193800,"t1s":2,"t2s":2,"t1":39,"t2":26}],[4225,{"d":9,"dB":1571684400,"t1s":1,"t2s":0,"t1":77,"t2":39}],[4277,{"d":4,"dB":1567351800,"t1s":2,"t2s":2,"t1":39,"t2":24}],[4285,{"d":3,"dB":1566664200,"t1s":3,"t2s":1,"t1":21,"t2":39}],[4288,{"d":2,"dB":1566041400,"t1s":2,"t2s":1,"t1":39,"t2":23}],[2914,{"d":19,"dB":1545508800,"t1s":1,"t2s":2,"t1":12,"t2":10}],[2923,{"d":20,"dB":1547229600,"t1s":1,"t2s":3,"t1":5,"t2":12}],[2935,{"d":21,"dB":1547840700,"t1s":2,"t2s":1,"t1":12,"t2":42}],[2945,{"d":22,"dB":1548445500,"t1s":1,"t2s":2,"t1":9,"t2":12}],[2955,{"d":23,"dB":1549050300,"t1s":4,"t2s":0,"t1":12,"t2":19}],[2964,{"d":24,"dB":1549814400,"t1s":0,"t2s":2,"t1":14,"t2":12}],[2975,{"d":25,"dB":1550412000,"t1s":0,"t2s":0,"t1":12,"t2":15}],[2990,{"d":26,"dB":1550864700,"t1s":1,"t2s":1,"t1":41,"t2":12}],[2996,{"d":27,"dB":1551621600,"t1s":1,"t2s":0,"t1":12,"t2":7}],[3009,{"d":28,"dB":1552226400,"t1s":0,"t2s":1,"t1":4,"t2":12}],[3016,{"d":29,"dB":1552679100,"t1s":0,"t2s":1,"t1":12,"t2":13}],[3027,{"d":30,"dB":1554044400,"t1s":2,"t2s":3,"t1":8,"t2":12}],[3040,{"d":31,"dB":1554642000,"t1s":1,"t2s":1,"t1":68,"t2":12}],[3044,{"d":32,"dB":1555268400,"t1s":5,"t2s":1,"t1":12,"t2":2}],[3061,{"d":33,"dB":1555851600,"t1s":0,"t2s":0,"t1":10,"t2":12}],[3066,{"d":34,"dB":1556456400,"t1s":5,"t2s":0,"t1":12,"t2":67}],[3074,{"d":35,"dB":1557082800,"t1s":2,"t2s":2,"t1":18,"t2":12}],[3086,{"d":36,"dB":1557673200,"t1s":1,"t2s":0,"t1":12,"t2":3}],[3094,{"d":37,"dB":1558206000,"t1s":5,"t2s":0,"t1":12,"t2":16}],[3111,{"d":38,"dB":1558724700,"t1s":3,"t2s":1,"t1":20,"t2":12}],[4138,{"d":17,"dB":1576427400,"t1s":0,"t2s":3,"t1":39,"t2":40}],[4157,{"d":16,"dB":1575921600,"t1s":1,"t2s":3,"t1":28,"t2":39}],[4236,{"d":8,"dB":1570366800,"t1s":1,"t2s":0,"t1":39,"t2":36}],[4247,{"d":7,"dB":1569870000,"t1s":1,"t2s":1,"t1":31,"t2":39}],[4256,{"d":6,"dB":1569166200,"t1s":3,"t2s":2,"t1":39,"t2":78}],[4266,{"d":5,"dB":1568561400,"t1s":2,"t2s":2,"t1":33,"t2":39}],[4306,{"d":1,"dB":1565528400,"t1s":0,"t2s":1,"t1":46,"t2":39}],[3507,{"d":34,"dB":1555354800,"t1s":0,"t2s":1,"t1":33,"t2":39}],[3539,{"d":38,"dB":1557669600,"t1s":1,"t2s":3,"t1":23,"t2":39}],[3341,{"d":18,"dB":1545490800,"t1s":0,"t2s":1,"t1":25,"t2":29}],[3357,{"d":19,"dB":1545852600,"t1s":1,"t2s":2,"t1":33,"t2":25}],[3360,{"d":20,"dB":1546171200,"t1s":0,"t2s":1,"t1":26,"t2":25}],[3371,{"d":21,"dB":1546458300,"t1s":0,"t2s":0,"t1":25,"t2":35}],[3381,{"d":22,"dB":1547314200,"t1s":2,"t2s":1,"t1":25,"t2":46}],[3398,{"d":24,"dB":1548877500,"t1s":4,"t2s":0,"t1":36,"t2":25}],[3411,{"d":25,"dB":1549119600,"t1s":5,"t2s":0,"t1":25,"t2":44}],[3423,{"d":26,"dB":1549814400,"t1s":6,"t2s":0,"t1":40,"t2":25}],[3432,{"d":27,"dB":1554317100,"t1s":3,"t2s":0,"t1":25,"t2":45}],[3443,{"d":28,"dB":1551297600,"t1s":2,"t2s":0,"t1":25,"t2":24}],[3460,{"d":30,"dB":1552226700,"t1s":1,"t2s":1,"t1":25,"t2":69}],[3471,{"d":31,"dB":1552840200,"t1s":2,"t2s":0,"t1":22,"t2":25}],[3481,{"d":32,"dB":1554037500,"t1s":1,"t2s":2,"t1":70,"t2":25}],[3489,{"d":33,"dB":1554750000,"t1s":2,"t2s":0,"t1":25,"t2":28}],[3503,{"d":34,"dB":1555255800,"t1s":2,"t2s":0,"t1":21,"t2":25}],[3511,{"d":35,"dB":1555959600,"t1s":2,"t2s":2,"t1":25,"t2":23}],[3524,{"d":36,"dB":1556465400,"t1s":1,"t2s":1,"t1":31,"t2":25}],[3531,{"d":37,"dB":1557061200,"t1s":3,"t2s":0,"t1":25,"t2":33}],[3542,{"d":38,"dB":1557669600,"t1s":0,"t2s":0,"t1":29,"t2":25}],[3345,{"d":18,"dB":1545490800,"t1s":0,"t2s":0,"t1":46,"t2":71}],[3351,{"d":19,"dB":1545827400,"t1s":1,"t2s":1,"t1":71,"t2":69}],[3361,{"d":20,"dB":1546102800,"t1s":1,"t2s":0,"t1":71,"t2":44}],[3379,{"d":22,"dB":1547305200,"t1s":2,"t2s":1,"t1":23,"t2":71}],[3390,{"d":23,"dB":1548000000,"t1s":1,"t2s":2,"t1":71,"t2":24}],[3400,{"d":24,"dB":1548791100,"t1s":4,"t2s":2,"t1":71,"t2":45}],[3412,{"d":25,"dB":1549119600,"t1s":2,"t2s":0,"t1":26,"t2":71}],[3420,{"d":26,"dB":1549715400,"t1s":0,"t2s":3,"t1":71,"t2":31}],[3437,{"d":27,"dB":1550864700,"t1s":3,"t2s":1,"t1":28,"t2":71}],[3445,{"d":28,"dB":1551296700,"t1s":2,"t2s":0,"t1":35,"t2":71}],[3452,{"d":29,"dB":1551621900,"t1s":1,"t2s":2,"t1":71,"t2":25}],[3463,{"d":30,"dB":1552143600,"t1s":3,"t2s":1,"t1":29,"t2":71}],[3472,{"d":31,"dB":1552832100,"t1s":1,"t2s":2,"t1":71,"t2":21}],[3483,{"d":32,"dB":1553949000,"t1s":0,"t2s":2,"t1":71,"t2":40}],[3496,{"d":33,"dB":1554230700,"t1s":4,"t2s":1,"t1":33,"t2":71}],[3501,{"d":34,"dB":1555164000,"t1s":2,"t2s":0,"t1":71,"t2":22}],[3508,{"d":35,"dB":1555768800,"t1s":0,"t2s":1,"t1":36,"t2":71}],[3521,{"d":36,"dB":1556373600,"t1s":1,"t2s":0,"t1":71,"t2":70}],[3537,{"d":37,"dB":1556978400,"t1s":1,"t2s":0,"t1":69,"t2":71}],[3541,{"d":38,"dB":1557669600,"t1s":0,"t2s":4,"t1":71,"t2":46}],[2145,{"d":18,"dB":1546795800,"t1s":0,"t2s":2,"t1":62,"t2":52}],[2155,{"d":19,"dB":1547408700,"t1s":1,"t2s":2,"t1":60,"t2":62}],[2168,{"d":20,"dB":1547910900,"t1s":2,"t2s":0,"t1":62,"t2":55}],[2186,{"d":22,"dB":1549223100,"t1s":3,"t2s":0,"t1":62,"t2":48}],[2192,{"d":23,"dB":1549725300,"t1s":1,"t2s":3,"t1":54,"t2":62}],[2209,{"d":24,"dB":1550401200,"t1s":1,"t2s":2,"t1":62,"t2":53}],[2240,{"d":27,"dB":1552247100,"t1s":1,"t2s":4,"t1":74,"t2":62}],[2247,{"d":28,"dB":1552749300,"t1s":2,"t2s":0,"t1":62,"t2":51}],[2260,{"d":29,"dB":1554057900,"t1s":3,"t2s":2,"t1":62,"t2":73}],[2316,{"d":35,"dB":1556477100,"t1s":1,"t2s":0,"t1":72,"t2":62}],[4145,{"d":17,"dB":1576335600,"t1s":2,"t2s":0,"t1":77,"t2":78}],[4148,{"d":16,"dB":1575813600,"t1s":1,"t2s":4,"t1":78,"t2":29}],[4175,{"d":14,"dB":1575217800,"t1s":2,"t2s":2,"t1":31,"t2":78}],[4179,{"d":13,"dB":1574712000,"t1s":2,"t2s":0,"t1":78,"t2":46}],[4195,{"d":12,"dB":1573394400,"t1s":2,"t2s":1,"t1":69,"t2":78}],[4199,{"d":11,"dB":1572706800,"t1s":1,"t2s":2,"t1":78,"t2":21}],[4212,{"d":10,"dB":1572089400,"t1s":3,"t2s":0,"t1":40,"t2":78}],[4218,{"d":9,"dB":1571493600,"t1s":2,"t2s":1,"t1":78,"t2":45}],[4232,{"d":8,"dB":1570284000,"t1s":1,"t2s":5,"t1":76,"t2":78}],[4239,{"d":7,"dB":1569679200,"t1s":2,"t2s":2,"t1":78,"t2":23}],[4267,{"d":5,"dB":1568660400,"t1s":0,"t2s":0,"t1":78,"t2":28}],[4278,{"d":3,"dB":1566586800,"t1s":2,"t2s":0,"t1":78,"t2":22}],[4289,{"d":2,"dB":1566050400,"t1s":1,"t2s":2,"t1":78,"t2":36}],[4304,{"d":1,"dB":1565454600,"t1s":3,"t2s":1,"t1":24,"t2":78}],[2918,{"d":19,"dB":1545508800,"t1s":2,"t2s":2,"t1":68,"t2":5}],[2934,{"d":21,"dB":1548000000,"t1s":0,"t2s":1,"t1":5,"t2":9}],[2954,{"d":23,"dB":1550082600,"t1s":0,"t2s":1,"t1":5,"t2":8}],[2962,{"d":24,"dB":1549738800,"t1s":1,"t2s":0,"t1":42,"t2":5}],[2974,{"d":25,"dB":1550412000,"t1s":0,"t2s":0,"t1":5,"t2":41}],[2991,{"d":26,"dB":1551016800,"t1s":1,"t2s":1,"t1":10,"t2":5}],[2994,{"d":27,"dB":1551542400,"t1s":1,"t2s":2,"t1":5,"t2":2}],[3014,{"d":29,"dB":1552762800,"t1s":0,"t2s":5,"t1":5,"t2":4}],[3025,{"d":30,"dB":1554037200,"t1s":0,"t2s":1,"t1":13,"t2":5}],[3038,{"d":31,"dB":1554573600,"t1s":2,"t2s":0,"t1":67,"t2":5}],[3042,{"d":32,"dB":1555178400,"t1s":0,"t2s":1,"t1":5,"t2":16}],[3056,{"d":33,"dB":1555783200,"t1s":0,"t2s":1,"t1":19,"t2":5}],[3065,{"d":34,"dB":1556456400,"t1s":1,"t2s":0,"t1":5,"t2":7}],[3073,{"d":35,"dB":1556992800,"t1s":0,"t2s":0,"t1":14,"t2":5}],[3084,{"d":36,"dB":1557597600,"t1s":3,"t2s":2,"t1":5,"t2":68}],[3095,{"d":37,"dB":1558206000,"t1s":4,"t2s":0,"t1":18,"t2":5}],[3104,{"d":38,"dB":1558724700,"t1s":0,"t2s":1,"t1":5,"t2":3}],[4270,{"d":4,"dB":1567260000,"t1s":1,"t2s":0,"t1":26,"t2":78}],[3359,{"d":20,"dB":1546179300,"t1s":2,"t2s":0,"t1":23,"t2":28}],[3373,{"d":21,"dB":1546458300,"t1s":1,"t2s":2,"t1":44,"t2":23}],[3396,{"d":23,"dB":1547910000,"t1s":0,"t2s":0,"t1":33,"t2":23}],[3403,{"d":24,"dB":1548792000,"t1s":2,"t2s":2,"t1":31,"t2":23}],[3409,{"d":25,"dB":1549119600,"t1s":1,"t2s":1,"t1":23,"t2":35}],[3418,{"d":26,"dB":1549733400,"t1s":1,"t2s":3,"t1":45,"t2":23}],[3430,{"d":27,"dB":1550925000,"t1s":2,"t2s":1,"t1":23,"t2":24}],[3444,{"d":28,"dB":1551211200,"t1s":2,"t2s":0,"t1":46,"t2":23}],[3450,{"d":29,"dB":1551538800,"t1s":1,"t2s":3,"t1":23,"t2":26}],[3464,{"d":30,"dB":1552219200,"t1s":4,"t2s":2,"t1":21,"t2":23}],[3470,{"d":31,"dB":1552748400,"t1s":1,"t2s":2,"t1":23,"t2":29}],[3480,{"d":32,"dB":1553958000,"t1s":2,"t2s":0,"t1":23,"t2":69}],[3488,{"d":33,"dB":1554559200,"t1s":1,"t2s":3,"t1":36,"t2":23}],[3499,{"d":34,"dB":1555164000,"t1s":2,"t2s":0,"t1":23,"t2":70}],[3519,{"d":36,"dB":1556456700,"t1s":0,"t2s":1,"t1":23,"t2":40}],[3532,{"d":37,"dB":1556910000,"t1s":2,"t2s":0,"t1":22,"t2":23}],[4164,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":25,"t2":78}],[3343,{"d":18,"dB":1545490800,"t1s":1,"t2s":3,"t1":44,"t2":35}],[3355,{"d":19,"dB":1545939900,"t1s":1,"t2s":2,"t1":35,"t2":28}],[3365,{"d":20,"dB":1546179300,"t1s":1,"t2s":3,"t1":35,"t2":40}],[3384,{"d":22,"dB":1547305200,"t1s":1,"t2s":2,"t1":29,"t2":35}],[3395,{"d":23,"dB":1547910000,"t1s":2,"t2s":1,"t1":35,"t2":22}],[3405,{"d":24,"dB":1548877500,"t1s":1,"t2s":1,"t1":35,"t2":26}],[3525,{"d":36,"dB":1556373600,"t1s":3,"t2s":3,"t1":35,"t2":36}],[3545,{"d":38,"dB":1557669600,"t1s":1,"t2s":1,"t1":35,"t2":44}],[3364,{"d":20,"dB":1546187400,"t1s":4,"t2s":1,"t1":31,"t2":36}],[2150,{"d":18,"dB":1546624800,"t1s":2,"t2s":2,"t1":63,"t2":53}],[2157,{"d":19,"dB":1547314200,"t1s":1,"t2s":1,"t1":53,"t2":48}],[2163,{"d":20,"dB":1547982000,"t1s":3,"t2s":2,"t1":60,"t2":53}],[2177,{"d":21,"dB":1548602100,"t1s":0,"t2s":2,"t1":53,"t2":59}],[2184,{"d":22,"dB":1549215000,"t1s":3,"t2s":0,"t1":66,"t2":53}],[2217,{"d":25,"dB":1551124800,"t1s":0,"t2s":0,"t1":53,"t2":52}],[2231,{"d":26,"dB":1551470400,"t1s":0,"t2s":2,"t1":72,"t2":53}],[2263,{"d":30,"dB":1554226200,"t1s":2,"t2s":0,"t1":54,"t2":53}],[2279,{"d":31,"dB":1554548400,"t1s":1,"t2s":2,"t1":53,"t2":56}],[2295,{"d":33,"dB":1555758000,"t1s":2,"t2s":1,"t1":51,"t2":53}],[2310,{"d":34,"dB":1556044200,"t1s":1,"t2s":0,"t1":74,"t2":53}],[2315,{"d":35,"dB":1556452800,"t1s":1,"t2s":0,"t1":53,"t2":55}],[2336,{"d":37,"dB":1557678600,"t1s":1,"t2s":2,"t1":53,"t2":63}],[2926,{"d":20,"dB":1547235900,"t1s":1,"t2s":1,"t1":18,"t2":68}],[2939,{"d":21,"dB":1547924400,"t1s":1,"t2s":1,"t1":68,"t2":19}],[2944,{"d":22,"dB":1548529200,"t1s":0,"t2s":1,"t1":14,"t2":68}],[2959,{"d":23,"dB":1549137600,"t1s":2,"t2s":1,"t1":68,"t2":9}],[2971,{"d":24,"dB":1549807200,"t1s":1,"t2s":1,"t1":10,"t2":68}],[2980,{"d":25,"dB":1550419200,"t1s":2,"t2s":0,"t1":68,"t2":20}],[2986,{"d":26,"dB":1551016800,"t1s":2,"t2s":4,"t1":15,"t2":68}],[3001,{"d":27,"dB":1551553200,"t1s":2,"t2s":2,"t1":68,"t2":42}],[3003,{"d":28,"dB":1552158000,"t1s":1,"t2s":1,"t1":7,"t2":68}],[3021,{"d":29,"dB":1552831200,"t1s":1,"t2s":0,"t1":68,"t2":8}],[3030,{"d":30,"dB":1554310800,"t1s":4,"t2s":0,"t1":41,"t2":68}],[3046,{"d":32,"dB":1555178400,"t1s":0,"t2s":0,"t1":13,"t2":68}],[3059,{"d":33,"dB":1555858800,"t1s":0,"t2s":2,"t1":68,"t2":4}],[3063,{"d":34,"dB":1556456400,"t1s":1,"t2s":1,"t1":16,"t2":68}],[3079,{"d":35,"dB":1556992800,"t1s":0,"t2s":3,"t1":68,"t2":67}],[3092,{"d":37,"dB":1558206000,"t1s":0,"t2s":1,"t1":3,"t2":68}],[3338,{"d":18,"dB":1545490800,"t1s":2,"t2s":0,"t1":36,"t2":45}],[3356,{"d":19,"dB":1545836400,"t1s":5,"t2s":0,"t1":24,"t2":36}],[3368,{"d":21,"dB":1546458300,"t1s":3,"t2s":3,"t1":36,"t2":33}],[3383,{"d":22,"dB":1547388900,"t1s":2,"t2s":0,"t1":22,"t2":36}],[3388,{"d":23,"dB":1547910000,"t1s":2,"t2s":0,"t1":36,"t2":28}],[3410,{"d":25,"dB":1549128600,"t1s":2,"t2s":0,"t1":70,"t2":36}],[3422,{"d":26,"dB":1549724400,"t1s":3,"t2s":0,"t1":21,"t2":36}],[3428,{"d":27,"dB":1550934000,"t1s":1,"t2s":1,"t1":36,"t2":69}],[3448,{"d":29,"dB":1551538800,"t1s":0,"t2s":1,"t1":36,"t2":40}],[3462,{"d":30,"dB":1552143600,"t1s":0,"t2s":2,"t1":44,"t2":36}],[3468,{"d":31,"dB":1552748400,"t1s":2,"t2s":2,"t1":36,"t2":46}],[3484,{"d":32,"dB":1553958000,"t1s":2,"t2s":0,"t1":29,"t2":36}],[3498,{"d":34,"dB":1555164000,"t1s":0,"t2s":5,"t1":45,"t2":36}],[3528,{"d":37,"dB":1556969400,"t1s":1,"t2s":0,"t1":36,"t2":24}],[3540,{"d":38,"dB":1557669600,"t1s":5,"t2s":3,"t1":26,"t2":36}],[4140,{"d":17,"dB":1576335600,"t1s":0,"t2s":1,"t1":25,"t2":36}],[4191,{"d":12,"dB":1573311600,"t1s":2,"t2s":1,"t1":46,"t2":36}],[4200,{"d":11,"dB":1572697800,"t1s":1,"t2s":0,"t1":36,"t2":31}],[4216,{"d":10,"dB":1572098400,"t1s":0,"t2s":0,"t1":33,"t2":36}],[4219,{"d":9,"dB":1571493600,"t1s":0,"t2s":0,"t1":36,"t2":76}],[4240,{"d":7,"dB":1569679200,"t1s":2,"t2s":2,"t1":36,"t2":28}],[4248,{"d":6,"dB":1569006000,"t1s":1,"t2s":3,"t1":35,"t2":36}],[4265,{"d":5,"dB":1568552400,"t1s":3,"t2s":1,"t1":36,"t2":22}],[4271,{"d":4,"dB":1567260000,"t1s":3,"t2s":1,"t1":29,"t2":36}],[4286,{"d":3,"dB":1566738000,"t1s":1,"t2s":3,"t1":36,"t2":40}],[4300,{"d":1,"dB":1565445600,"t1s":1,"t2s":1,"t1":36,"t2":77}],[4149,{"d":16,"dB":1575730800,"t1s":0,"t2s":3,"t1":36,"t2":21}],[4166,{"d":15,"dB":1575401400,"t1s":1,"t2s":0,"t1":26,"t2":36}],[4173,{"d":14,"dB":1575126000,"t1s":3,"t2s":2,"t1":24,"t2":36}],[4180,{"d":13,"dB":1574521200,"t1s":1,"t2s":2,"t1":36,"t2":69}],[3340,{"d":18,"dB":1545499800,"t1s":1,"t2s":5,"t1":70,"t2":31}],[3350,{"d":19,"dB":1545836400,"t1s":0,"t2s":0,"t1":26,"t2":70}],[3362,{"d":20,"dB":1546102800,"t1s":0,"t2s":1,"t1":29,"t2":70}],[3370,{"d":21,"dB":1546362000,"t1s":0,"t2s":3,"t1":70,"t2":24}],[3380,{"d":22,"dB":1547305200,"t1s":0,"t2s":0,"t1":70,"t2":44}],[3424,{"d":26,"dB":1549724400,"t1s":1,"t2s":2,"t1":35,"t2":70}],[3431,{"d":27,"dB":1550864700,"t1s":1,"t2s":5,"t1":70,"t2":33}],[3459,{"d":30,"dB":1552143600,"t1s":2,"t2s":0,"t1":70,"t2":28}],[3354,{"d":19,"dB":1545836400,"t1s":3,"t2s":1,"t1":31,"t2":44}],[3436,{"d":27,"dB":1550934000,"t1s":2,"t2s":0,"t1":46,"t2":44}],[3440,{"d":28,"dB":1551210300,"t1s":1,"t2s":0,"t1":44,"t2":69}],[3449,{"d":29,"dB":1551538800,"t1s":1,"t2s":0,"t1":45,"t2":44}],[3476,{"d":31,"dB":1552748400,"t1s":4,"t2s":3,"t1":28,"t2":44}],[3408,{"d":25,"dB":1549119600,"t1s":0,"t2s":0,"t1":45,"t2":33}],[3441,{"d":28,"dB":1551210300,"t1s":2,"t2s":1,"t1":29,"t2":45}],[3461,{"d":30,"dB":1552134600,"t1s":1,"t2s":2,"t1":26,"t2":45}],[3479,{"d":32,"dB":1553958000,"t1s":0,"t2s":1,"t1":45,"t2":35}],[3495,{"d":33,"dB":1556045100,"t1s":1,"t2s":0,"t1":24,"t2":45}],[3518,{"d":36,"dB":1556382600,"t1s":1,"t2s":1,"t1":45,"t2":46}],[3538,{"d":38,"dB":1557669600,"t1s":1,"t2s":4,"t1":45,"t2":40}],[4141,{"d":17,"dB":1576525500,"t1s":1,"t2s":1,"t1":26,"t2":45}],[4171,{"d":14,"dB":1575126000,"t1s":2,"t2s":1,"t1":21,"t2":45}],[4181,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":45,"t2":29}],[4228,{"d":8,"dB":1570275000,"t1s":3,"t2s":0,"t1":45,"t2":24}],[4241,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":25,"t2":45}],[4254,{"d":6,"dB":1569083400,"t1s":0,"t2s":0,"t1":46,"t2":45}],[3358,{"d":20,"dB":1546102800,"t1s":1,"t2s":0,"t1":45,"t2":22}],[3376,{"d":21,"dB":1546458300,"t1s":2,"t2s":2,"t1":28,"t2":45}],[3469,{"d":31,"dB":1555440300,"t1s":0,"t2s":2,"t1":45,"t2":70}],[3517,{"d":35,"dB":1555768800,"t1s":0,"t2s":0,"t1":69,"t2":45}],[4272,{"d":4,"dB":1567260000,"t1s":4,"t2s":0,"t1":40,"t2":45}],[4303,{"d":1,"dB":1565445600,"t1s":0,"t2s":3,"t1":33,"t2":45}],[3378,{"d":22,"dB":1547305200,"t1s":0,"t2s":1,"t1":45,"t2":21}],[3393,{"d":23,"dB":1547910000,"t1s":2,"t2s":1,"t1":31,"t2":45}],[4150,{"d":16,"dB":1575822600,"t1s":2,"t2s":2,"t1":45,"t2":69}],[4197,{"d":12,"dB":1573394400,"t1s":3,"t2s":1,"t1":31,"t2":45}],[4209,{"d":10,"dB":1572098400,"t1s":3,"t2s":2,"t1":45,"t2":22}],[4259,{"d":5,"dB":1568469600,"t1s":1,"t2s":1,"t1":45,"t2":23}],[4280,{"d":3,"dB":1566655200,"t1s":0,"t2s":2,"t1":45,"t2":35}],[4290,{"d":2,"dB":1566050400,"t1s":1,"t2s":1,"t1":45,"t2":28}],[4201,{"d":11,"dB":1572706800,"t1s":2,"t2s":0,"t1":45,"t2":76}],[3401,{"d":24,"dB":1548791100,"t1s":0,"t2s":1,"t1":44,"t2":22}],[3482,{"d":32,"dB":1553958000,"t1s":2,"t2s":0,"t1":26,"t2":44}],[3491,{"d":33,"dB":1554559200,"t1s":1,"t2s":4,"t1":44,"t2":29}],[3506,{"d":34,"dB":1555155000,"t1s":4,"t2s":0,"t1":24,"t2":44}],[3513,{"d":35,"dB":1555768800,"t1s":1,"t2s":2,"t1":44,"t2":33}],[3533,{"d":37,"dB":1557061200,"t1s":1,"t2s":1,"t1":44,"t2":31}],[4139,{"d":17,"dB":1576335600,"t1s":1,"t2s":0,"t1":23,"t2":46}],[4155,{"d":16,"dB":1575730800,"t1s":5,"t2s":0,"t1":24,"t2":23}],[4159,{"d":15,"dB":1575404100,"t1s":1,"t2s":4,"t1":23,"t2":40}],[4168,{"d":14,"dB":1575126000,"t1s":0,"t2s":2,"t1":23,"t2":26}],[4186,{"d":13,"dB":1574521200,"t1s":0,"t2s":3,"t1":33,"t2":23}],[4188,{"d":12,"dB":1573311600,"t1s":3,"t2s":0,"t1":23,"t2":28}],[4205,{"d":11,"dB":1572706800,"t1s":3,"t2s":0,"t1":77,"t2":23}],[4210,{"d":10,"dB":1572107400,"t1s":2,"t2s":4,"t1":23,"t2":25}],[4223,{"d":9,"dB":1571493600,"t1s":2,"t2s":1,"t1":29,"t2":23}],[4229,{"d":8,"dB":1570284000,"t1s":1,"t2s":0,"t1":23,"t2":22}],[4250,{"d":6,"dB":1569074400,"t1s":2,"t2s":0,"t1":23,"t2":76}],[4275,{"d":4,"dB":1567269000,"t1s":0,"t2s":3,"t1":23,"t2":21}],[4284,{"d":3,"dB":1566747000,"t1s":1,"t2s":1,"t1":69,"t2":23}],[4301,{"d":1,"dB":1565445600,"t1s":3,"t2s":0,"t1":23,"t2":35}],[3349,{"d":19,"dB":1545836400,"t1s":1,"t2s":5,"t1":23,"t2":22}],[2977,{"d":25,"dB":1550332800,"t1s":2,"t2s":0,"t1":9,"t2":42}],[2982,{"d":26,"dB":1550948400,"t1s":1,"t2s":0,"t1":42,"t2":19}],[3002,{"d":28,"dB":1552158000,"t1s":2,"t2s":1,"t1":42,"t2":67}],[3012,{"d":29,"dB":1552762800,"t1s":0,"t2s":0,"t1":16,"t2":42}],[3022,{"d":30,"dB":1554037200,"t1s":0,"t2s":0,"t1":42,"t2":3}],[3032,{"d":31,"dB":1554573600,"t1s":2,"t2s":2,"t1":42,"t2":4}],[3043,{"d":32,"dB":1555088400,"t1s":0,"t2s":0,"t1":7,"t2":42}],[3055,{"d":33,"dB":1555851600,"t1s":3,"t2s":2,"t1":8,"t2":42}],[3062,{"d":34,"dB":1556456400,"t1s":0,"t2s":0,"t1":42,"t2":41}],[3076,{"d":35,"dB":1557061200,"t1s":1,"t2s":1,"t1":15,"t2":42}],[3082,{"d":36,"dB":1557597600,"t1s":0,"t2s":0,"t1":42,"t2":10}],[3096,{"d":37,"dB":1558206000,"t1s":2,"t2s":0,"t1":13,"t2":42}],[3102,{"d":38,"dB":1558724700,"t1s":2,"t2s":1,"t1":42,"t2":14}],[4169,{"d":14,"dB":1575126000,"t1s":0,"t2s":1,"t1":25,"t2":28}],[4184,{"d":13,"dB":1574530200,"t1s":2,"t2s":1,"t1":40,"t2":25}],[4206,{"d":11,"dB":1572715800,"t1s":1,"t2s":2,"t1":33,"t2":25}],[4220,{"d":9,"dB":1571493600,"t1s":1,"t2s":0,"t1":25,"t2":46}],[4233,{"d":8,"dB":1570366800,"t1s":1,"t2s":4,"t1":35,"t2":25}],[4257,{"d":6,"dB":1569166200,"t1s":1,"t2s":2,"t1":25,"t2":21}],[4263,{"d":5,"dB":1568469600,"t1s":2,"t2s":5,"t1":69,"t2":25}],[4269,{"d":4,"dB":1567260000,"t1s":2,"t2s":2,"t1":25,"t2":77}],[4279,{"d":3,"dB":1566646200,"t1s":2,"t2s":3,"t1":76,"t2":25}],[4296,{"d":2,"dB":1566142200,"t1s":1,"t2s":1,"t1":25,"t2":29}],[4307,{"d":1,"dB":1565537400,"t1s":4,"t2s":0,"t1":31,"t2":25}],[4151,{"d":16,"dB":1575721800,"t1s":3,"t2s":1,"t1":22,"t2":25}],[4189,{"d":12,"dB":1573302600,"t1s":2,"t2s":0,"t1":25,"t2":26}],[2139,{"d":17,"dB":1545562800,"t1s":2,"t2s":1,"t1":49,"t2":73}],[2142,{"d":18,"dB":1546701300,"t1s":2,"t2s":1,"t1":48,"t2":49}],[3419,{"d":26,"dB":1549724400,"t1s":1,"t2s":1,"t1":26,"t2":28}],[3434,{"d":27,"dB":1550943000,"t1s":1,"t2s":4,"t1":29,"t2":26}],[3442,{"d":28,"dB":1551297600,"t1s":1,"t2s":3,"t1":26,"t2":31}],[3474,{"d":31,"dB":1554317100,"t1s":2,"t2s":0,"t1":24,"t2":26}],[3493,{"d":33,"dB":1554559200,"t1s":0,"t2s":1,"t1":46,"t2":26}],[3530,{"d":37,"dB":1556987400,"t1s":2,"t2s":3,"t1":70,"t2":26}],[3342,{"d":18,"dB":1545580800,"t1s":2,"t2s":6,"t1":22,"t2":24}],[3372,{"d":21,"dB":1546362000,"t1s":0,"t2s":1,"t1":22,"t2":29}],[3413,{"d":25,"dB":1549119600,"t1s":1,"t2s":3,"t1":22,"t2":69}],[3426,{"d":26,"dB":1549724400,"t1s":1,"t2s":0,"t1":33,"t2":22}],[3433,{"d":27,"dB":1550941200,"t1s":0,"t2s":2,"t1":22,"t2":40}],[3451,{"d":29,"dB":1551629700,"t1s":0,"t2s":0,"t1":22,"t2":21}],[3466,{"d":30,"dB":1552143600,"t1s":3,"t2s":2,"t1":46,"t2":22}],[3487,{"d":32,"dB":1553967000,"t1s":0,"t2s":2,"t1":28,"t2":22}],[3512,{"d":35,"dB":1555849800,"t1s":4,"t2s":0,"t1":22,"t2":31}],[3520,{"d":36,"dB":1556373600,"t1s":0,"t2s":0,"t1":26,"t2":22}],[3546,{"d":38,"dB":1557669600,"t1s":2,"t2s":2,"t1":24,"t2":22}],[3382,{"d":22,"dB":1547305200,"t1s":1,"t2s":2,"t1":26,"t2":33}],[3500,{"d":34,"dB":1555247100,"t1s":1,"t2s":3,"t1":26,"t2":40}],[4156,{"d":16,"dB":1575730800,"t1s":0,"t2s":0,"t1":33,"t2":26}],[4182,{"d":13,"dB":1574521200,"t1s":1,"t2s":2,"t1":26,"t2":21}],[4202,{"d":11,"dB":1572789600,"t1s":0,"t2s":2,"t1":26,"t2":29}],[4221,{"d":9,"dB":1571502600,"t1s":0,"t2s":2,"t1":26,"t2":40}],[4235,{"d":8,"dB":1570293000,"t1s":1,"t2s":2,"t1":28,"t2":26}],[4251,{"d":6,"dB":1569157200,"t1s":1,"t2s":1,"t1":26,"t2":69}],[4262,{"d":5,"dB":1568469600,"t1s":4,"t2s":0,"t1":24,"t2":26}],[4281,{"d":3,"dB":1566655200,"t1s":1,"t2s":2,"t1":31,"t2":26}],[4295,{"d":2,"dB":1566133200,"t1s":1,"t2s":0,"t1":77,"t2":26}],[4302,{"d":1,"dB":1565445600,"t1s":0,"t2s":0,"t1":26,"t2":22}],[4242,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":26,"t2":76}],[3344,{"d":18,"dB":1545490800,"t1s":2,"t2s":3,"t1":40,"t2":26}],[3377,{"d":21,"dB":1546458300,"t1s":0,"t2s":2,"t1":69,"t2":26}],[3392,{"d":23,"dB":1547910000,"t1s":4,"t2s":3,"t1":21,"t2":26}],[3394,{"d":23,"dB":1547910000,"t1s":3,"t2s":0,"t1":46,"t2":70}],[3457,{"d":29,"dB":1551538800,"t1s":2,"t2s":0,"t1":69,"t2":70}],[3492,{"d":33,"dB":1554317100,"t1s":2,"t2s":0,"t1":40,"t2":70}],[3510,{"d":35,"dB":1555858800,"t1s":0,"t2s":2,"t1":70,"t2":21}],[2895,{"d":17,"dB":1547661600,"t1s":1,"t2s":1,"t1":13,"t2":19}],[2936,{"d":21,"dB":1547924400,"t1s":1,"t2s":5,"t1":13,"t2":41}],[2943,{"d":22,"dB":1548529200,"t1s":2,"t2s":0,"t1":7,"t2":13}],[2957,{"d":23,"dB":1549134000,"t1s":2,"t2s":1,"t1":13,"t2":10}],[2965,{"d":24,"dB":1549807200,"t1s":2,"t2s":2,"t1":15,"t2":13}],[2978,{"d":25,"dB":1550343600,"t1s":1,"t2s":0,"t1":13,"t2":8}],[2985,{"d":26,"dB":1551038400,"t1s":2,"t2s":0,"t1":13,"t2":18}],[2992,{"d":27,"dB":1551553200,"t1s":2,"t2s":2,"t1":16,"t2":13}],[3005,{"d":28,"dB":1552158000,"t1s":1,"t2s":1,"t1":13,"t2":3}],[3035,{"d":31,"dB":1554573600,"t1s":1,"t2s":1,"t1":14,"t2":13}],[3070,{"d":34,"dB":1556730000,"t1s":2,"t2s":2,"t1":20,"t2":13}],[3075,{"d":35,"dB":1557068400,"t1s":2,"t2s":3,"t1":13,"t2":4}],[3089,{"d":36,"dB":1557597600,"t1s":1,"t2s":0,"t1":67,"t2":13}],[3108,{"d":38,"dB":1558724700,"t1s":2,"t2s":0,"t1":19,"t2":13}],[4167,{"d":15,"dB":1575490500,"t1s":5,"t2s":2,"t1":21,"t2":22}],[4170,{"d":14,"dB":1575217800,"t1s":2,"t2s":1,"t1":29,"t2":22}],[4183,{"d":13,"dB":1574521200,"t1s":0,"t2s":2,"t1":22,"t2":76}],[4193,{"d":12,"dB":1573311600,"t1s":1,"t2s":2,"t1":35,"t2":22}],[4203,{"d":11,"dB":1572798600,"t1s":1,"t2s":1,"t1":22,"t2":24}],[4222,{"d":9,"dB":1571484600,"t1s":2,"t2s":0,"t1":22,"t2":28}],[3439,{"d":28,"dB":1551210300,"t1s":0,"t2s":3,"t1":70,"t2":22}],[4246,{"d":7,"dB":1569688200,"t1s":1,"t2s":3,"t1":22,"t2":40}],[4252,{"d":6,"dB":1569074400,"t1s":0,"t2s":2,"t1":22,"t2":77}],[4276,{"d":4,"dB":1567342800,"t1s":3,"t2s":2,"t1":22,"t2":69}],[4291,{"d":2,"dB":1566050400,"t1s":1,"t2s":0,"t1":22,"t2":33}],[4144,{"d":17,"dB":1576418400,"t1s":1,"t2s":1,"t1":31,"t2":22}],[3352,{"d":19,"dB":1545836400,"t1s":2,"t2s":1,"t1":29,"t2":40}],[3391,{"d":23,"dB":1547991000,"t1s":0,"t2s":3,"t1":44,"t2":40}],[3523,{"d":36,"dB":1556305200,"t1s":5,"t2s":0,"t1":21,"t2":44}],[3397,{"d":23,"dB":1547901000,"t1s":4,"t2s":3,"t1":69,"t2":29}],[3406,{"d":24,"dB":1548878400,"t1s":1,"t2s":1,"t1":21,"t2":29}],[3414,{"d":25,"dB":1549202700,"t1s":0,"t2s":1,"t1":29,"t2":31}],[3425,{"d":26,"dB":1549805400,"t1s":3,"t2s":1,"t1":24,"t2":29}],[3455,{"d":29,"dB":1551614400,"t1s":2,"t2s":1,"t1":33,"t2":29}],[3502,{"d":34,"dB":1555095600,"t1s":0,"t2s":1,"t1":29,"t2":46}],[3516,{"d":35,"dB":1555768800,"t1s":2,"t2s":2,"t1":28,"t2":29}],[3534,{"d":37,"dB":1557169200,"t1s":1,"t2s":0,"t1":40,"t2":29}],[4142,{"d":17,"dB":1576335600,"t1s":1,"t2s":1,"t1":29,"t2":76}],[4160,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":29,"t2":33}],[4215,{"d":10,"dB":1572030000,"t1s":0,"t2s":9,"t1":35,"t2":29}],[4230,{"d":8,"dB":1570284000,"t1s":2,"t2s":1,"t1":21,"t2":29}],[4245,{"d":7,"dB":1569771000,"t1s":5,"t2s":0,"t1":29,"t2":46}],[4249,{"d":6,"dB":1569065400,"t1s":2,"t2s":1,"t1":29,"t2":24}],[4260,{"d":5,"dB":1568469600,"t1s":1,"t2s":0,"t1":31,"t2":29}],[4282,{"d":3,"dB":1566655200,"t1s":1,"t2s":2,"t1":77,"t2":29}],[4305,{"d":1,"dB":1565528400,"t1s":0,"t2s":0,"t1":29,"t2":69}],[2915,{"d":19,"dB":1545508800,"t1s":0,"t2s":2,"t1":13,"t2":14}],[2927,{"d":20,"dB":1547409600,"t1s":1,"t2s":1,"t1":9,"t2":13}],[3367,{"d":20,"dB":1546102800,"t1s":1,"t2s":1,"t1":33,"t2":46}],[3375,{"d":21,"dB":1546459200,"t1s":0,"t2s":2,"t1":46,"t2":31}],[3404,{"d":24,"dB":1548792000,"t1s":2,"t2s":1,"t1":46,"t2":40}],[3416,{"d":25,"dB":1549110600,"t1s":1,"t2s":0,"t1":24,"t2":46}],[3427,{"d":26,"dB":1549915200,"t1s":1,"t2s":1,"t1":69,"t2":46}],[3456,{"d":29,"dB":1551547800,"t1s":2,"t2s":0,"t1":28,"t2":46}],[3515,{"d":35,"dB":1555777800,"t1s":3,"t2s":1,"t1":46,"t2":35}],[3535,{"d":37,"dB":1556995500,"t1s":2,"t2s":3,"t1":46,"t2":21}],[3347,{"d":18,"dB":1545422400,"t1s":0,"t2s":2,"t1":69,"t2":21}],[3353,{"d":19,"dB":1545836400,"t1s":4,"t2s":0,"t1":21,"t2":46}],[3374,{"d":21,"dB":1546545600,"t1s":2,"t2s":1,"t1":40,"t2":21}],[3417,{"d":25,"dB":1549310400,"t1s":1,"t2s":1,"t1":28,"t2":21}],[3435,{"d":27,"dB":1551017100,"t1s":0,"t2s":0,"t1":31,"t2":21}],[3446,{"d":28,"dB":1551297600,"t1s":5,"t2s":0,"t1":21,"t2":33}],[3485,{"d":32,"dB":1554046200,"t1s":2,"t2s":1,"t1":21,"t2":24}],[3494,{"d":33,"dB":1554490800,"t1s":1,"t2s":3,"t1":35,"t2":21}],[3543,{"d":38,"dB":1557669600,"t1s":2,"t2s":0,"t1":21,"t2":69}],[4190,{"d":12,"dB":1573403400,"t1s":3,"t2s":1,"t1":21,"t2":40}],[4211,{"d":10,"dB":1572193800,"t1s":2,"t2s":1,"t1":21,"t2":24}],[4224,{"d":9,"dB":1571585400,"t1s":1,"t2s":1,"t1":31,"t2":21}],[4238,{"d":7,"dB":1569670200,"t1s":0,"t2s":1,"t1":77,"t2":21}],[4258,{"d":5,"dB":1568460600,"t1s":3,"t2s":1,"t1":21,"t2":46}],[4293,{"d":2,"dB":1566050400,"t1s":1,"t2s":2,"t1":35,"t2":21}],[4298,{"d":1,"dB":1565377200,"t1s":4,"t2s":1,"t1":21,"t2":76}],[4143,{"d":17,"dB":1576326600,"t1s":2,"t2s":0,"t1":21,"t2":33}],[4172,{"d":14,"dB":1575117000,"t1s":2,"t2s":2,"t1":46,"t2":40}],[4253,{"d":6,"dB":1569074400,"t1s":8,"t2s":0,"t1":40,"t2":33}],[3385,{"d":22,"dB":1547496000,"t1s":3,"t2s":0,"t1":40,"t2":69}],[3447,{"d":28,"dB":1551297600,"t1s":1,"t2s":0,"t1":40,"t2":28}],[3465,{"d":30,"dB":1552152600,"t1s":3,"t2s":1,"t1":40,"t2":33}],[3473,{"d":31,"dB":1556132400,"t1s":0,"t2s":2,"t1":31,"t2":40}],[3514,{"d":35,"dB":1555759800,"t1s":1,"t2s":0,"t1":40,"t2":24}],[4152,{"d":16,"dB":1575739800,"t1s":1,"t2s":2,"t1":40,"t2":31}],[4204,{"d":11,"dB":1572706800,"t1s":2,"t2s":1,"t1":40,"t2":35}],[4231,{"d":8,"dB":1570366800,"t1s":0,"t2s":2,"t1":40,"t2":69}],[4264,{"d":5,"dB":1568478600,"t1s":3,"t2s":2,"t1":76,"t2":40}],[4294,{"d":2,"dB":1566059400,"t1s":2,"t2s":2,"t1":40,"t2":24}],[4299,{"d":1,"dB":1565436600,"t1s":0,"t2s":5,"t1":28,"t2":40}],[2138,{"d":17,"dB":1545417000,"t1s":1,"t2s":1,"t1":53,"t2":58}],[2196,{"d":23,"dB":1549741500,"t1s":0,"t2s":2,"t1":53,"t2":73}],[2237,{"d":27,"dB":1552230900,"t1s":2,"t2s":3,"t1":53,"t2":49}],[2249,{"d":28,"dB":1552765500,"t1s":0,"t2s":2,"t1":47,"t2":53}],[2284,{"d":32,"dB":1555259400,"t1s":0,"t2s":1,"t1":53,"t2":64}],[2323,{"d":36,"dB":1557050400,"t1s":2,"t2s":0,"t1":58,"t2":53}],[2133,{"d":17,"dB":1545491700,"t1s":1,"t2s":0,"t1":54,"t2":56}],[2147,{"d":18,"dB":1546787700,"t1s":1,"t2s":1,"t1":55,"t2":54}],[2153,{"d":19,"dB":1547377200,"t1s":1,"t2s":0,"t1":54,"t2":63}],[2171,{"d":20,"dB":1547919000,"t1s":0,"t2s":3,"t1":73,"t2":54}],[2174,{"d":21,"dB":1548515700,"t1s":2,"t2s":0,"t1":54,"t2":58}],[2188,{"d":22,"dB":1549206900,"t1s":1,"t2s":0,"t1":60,"t2":54}],[2207,{"d":24,"dB":1550330100,"t1s":0,"t2s":1,"t1":72,"t2":54}],[2214,{"d":25,"dB":1551021300,"t1s":2,"t2s":0,"t1":54,"t2":64}],[2229,{"d":26,"dB":1551634200,"t1s":0,"t2s":2,"t1":52,"t2":54}],[2234,{"d":27,"dB":1552144500,"t1s":1,"t2s":0,"t1":54,"t2":47}],[2242,{"d":28,"dB":1552757400,"t1s":2,"t2s":0,"t1":57,"t2":54}],[2277,{"d":31,"dB":1554576300,"t1s":2,"t2s":0,"t1":59,"t2":54}],[2283,{"d":32,"dB":1555173000,"t1s":2,"t2s":0,"t1":54,"t2":51}],[2298,{"d":33,"dB":1555769700,"t1s":0,"t2s":1,"t1":66,"t2":54}],[2303,{"d":34,"dB":1556127000,"t1s":3,"t2s":2,"t1":54,"t2":49}],[2312,{"d":35,"dB":1556374500,"t1s":1,"t2s":0,"t1":54,"t2":74}],[2328,{"d":36,"dB":1556979300,"t1s":3,"t2s":0,"t1":56,"t2":54}],[2333,{"d":37,"dB":1557678600,"t1s":1,"t2s":1,"t1":54,"t2":55}],[2348,{"d":38,"dB":1558177200,"t1s":2,"t2s":2,"t1":63,"t2":54}],[3386,{"d":22,"dB":1547397000,"t1s":0,"t2s":1,"t1":24,"t2":31}],[3453,{"d":29,"dB":1551538800,"t1s":3,"t2s":2,"t1":31,"t2":35}],[3486,{"d":32,"dB":1553958000,"t1s":2,"t2s":1,"t1":31,"t2":33}],[3497,{"d":33,"dB":1554230700,"t1s":2,"t2s":1,"t1":69,"t2":31}],[3504,{"d":34,"dB":1555173000,"t1s":2,"t2s":1,"t1":31,"t2":28}],[3544,{"d":38,"dB":1557669600,"t1s":0,"t2s":2,"t1":31,"t2":70}],[4268,{"d":4,"dB":1567251000,"t1s":1,"t2s":1,"t1":35,"t2":31}],[4297,{"d":2,"dB":1566241200,"t1s":1,"t2s":1,"t1":69,"t2":31}],[4163,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":31,"t2":24}],[4185,{"d":13,"dB":1574613000,"t1s":3,"t2s":3,"t1":77,"t2":31}],[4214,{"d":10,"dB":1572193800,"t1s":1,"t2s":3,"t1":76,"t2":31}],[4237,{"d":8,"dB":1570375800,"t1s":1,"t2s":0,"t1":46,"t2":31}],[4255,{"d":6,"dB":1569157200,"t1s":2,"t2s":0,"t1":28,"t2":31}],[2929,{"d":20,"dB":1547319600,"t1s":1,"t2s":0,"t1":19,"t2":3}],[2948,{"d":22,"dB":1548529200,"t1s":2,"t2s":0,"t1":19,"t2":67}],[2967,{"d":24,"dB":1549828800,"t1s":1,"t2s":0,"t1":19,"t2":18}],[2999,{"d":27,"dB":1551621600,"t1s":1,"t2s":0,"t1":19,"t2":41}],[3004,{"d":28,"dB":1552248000,"t1s":1,"t2s":0,"t1":9,"t2":19}],[3018,{"d":29,"dB":1552672800,"t1s":1,"t2s":1,"t1":19,"t2":10}],[3037,{"d":31,"dB":1554649200,"t1s":1,"t2s":0,"t1":19,"t2":15}],[3049,{"d":32,"dB":1555246800,"t1s":0,"t2s":0,"t1":20,"t2":19}],[3069,{"d":34,"dB":1556456400,"t1s":3,"t2s":0,"t1":19,"t2":14}],[3078,{"d":35,"dB":1556982000,"t1s":1,"t2s":1,"t1":2,"t2":19}],[3088,{"d":36,"dB":1557597600,"t1s":1,"t2s":1,"t1":19,"t2":8}],[3099,{"d":37,"dB":1558206000,"t1s":3,"t2s":0,"t1":4,"t2":19}],[4153,{"d":16,"dB":1575813600,"t1s":2,"t2s":1,"t1":46,"t2":35}],[4161,{"d":15,"dB":1575574200,"t1s":0,"t2s":2,"t1":77,"t2":46}],[4207,{"d":11,"dB":1572706800,"t1s":2,"t2s":3,"t1":28,"t2":46}],[4213,{"d":10,"dB":1572184800,"t1s":1,"t2s":1,"t1":46,"t2":69}],[4287,{"d":3,"dB":1566747000,"t1s":0,"t2s":1,"t1":24,"t2":46}],[3346,{"d":18,"dB":1545490800,"t1s":0,"t2s":2,"t1":28,"t2":33}],[3402,{"d":24,"dB":1548791100,"t1s":3,"t2s":0,"t1":69,"t2":28}],[4273,{"d":4,"dB":1567260000,"t1s":1,"t2s":1,"t1":46,"t2":33}],[4292,{"d":2,"dB":1566050400,"t1s":3,"t2s":1,"t1":76,"t2":46}],[2902,{"d":18,"dB":1546970400,"t1s":0,"t2s":0,"t1":42,"t2":16}],[2913,{"d":19,"dB":1545580800,"t1s":1,"t2s":1,"t1":3,"t2":42}],[2922,{"d":20,"dB":1547308800,"t1s":0,"t2s":3,"t1":42,"t2":2}],[2942,{"d":22,"dB":1548604800,"t1s":0,"t2s":1,"t1":42,"t2":18}],[2960,{"d":23,"dB":1549134000,"t1s":1,"t2s":0,"t1":20,"t2":42}],[2136,{"d":17,"dB":1545578100,"t1s":1,"t2s":1,"t1":47,"t2":55}],[2181,{"d":21,"dB":1548504000,"t1s":5,"t2s":0,"t1":55,"t2":63}],[2183,{"d":22,"dB":1549136700,"t1s":1,"t2s":0,"t1":51,"t2":55}],[2211,{"d":24,"dB":1550424600,"t1s":3,"t2s":0,"t1":64,"t2":55}],[2220,{"d":25,"dB":1550934900,"t1s":2,"t2s":4,"t1":55,"t2":59}],[2244,{"d":28,"dB":1552835700,"t1s":0,"t2s":1,"t1":56,"t2":55}],[2256,{"d":29,"dB":1554041700,"t1s":0,"t2s":1,"t1":55,"t2":49}],[2296,{"d":33,"dB":1555848000,"t1s":3,"t2s":0,"t1":58,"t2":55}],[2347,{"d":38,"dB":1558188900,"t1s":2,"t2s":0,"t1":55,"t2":57}],[4165,{"d":15,"dB":1575487800,"t1s":2,"t2s":1,"t1":35,"t2":76}],[4274,{"d":4,"dB":1567260000,"t1s":2,"t2s":0,"t1":28,"t2":76}],[4154,{"d":16,"dB":1575813600,"t1s":1,"t2s":2,"t1":76,"t2":77}],[2257,{"d":29,"dB":1553889600,"t1s":1,"t2s":2,"t1":53,"t2":57}],[2342,{"d":38,"dB":1558205100,"t1s":2,"t2s":1,"t1":48,"t2":53}],[4192,{"d":12,"dB":1573243200,"t1s":0,"t2s":2,"t1":76,"t2":33}],[4174,{"d":14,"dB":1575208800,"t1s":1,"t2s":1,"t1":69,"t2":77}],[4234,{"d":8,"dB":1570284000,"t1s":0,"t2s":0,"t1":33,"t2":77}],[4261,{"d":5,"dB":1568469600,"t1s":0,"t2s":1,"t1":77,"t2":35}],[4194,{"d":12,"dB":1573311600,"t1s":1,"t2s":1,"t1":24,"t2":77}],[4217,{"d":10,"dB":1572098400,"t1s":1,"t2s":1,"t1":28,"t2":77}],[3467,{"d":30,"dB":1552143600,"t1s":2,"t2s":1,"t1":35,"t2":24}],[3475,{"d":31,"dB":1556045100,"t1s":1,"t2s":1,"t1":33,"t2":35}],[3505,{"d":34,"dB":1555164000,"t1s":3,"t2s":1,"t1":35,"t2":69}],[3536,{"d":37,"dB":1556978400,"t1s":3,"t2s":0,"t1":28,"t2":35}],[4146,{"d":17,"dB":1576344600,"t1s":0,"t2s":1,"t1":35,"t2":28}],[4177,{"d":14,"dB":1575135000,"t1s":2,"t2s":1,"t1":35,"t2":33}],[4243,{"d":7,"dB":1569679200,"t1s":2,"t2s":1,"t1":24,"t2":35}],[4227,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":69,"t2":35}],[2134,{"d":17,"dB":1545499800,"t1s":2,"t2s":0,"t1":59,"t2":51}],[2146,{"d":18,"dB":1546891200,"t1s":1,"t2s":2,"t1":51,"t2":57}],[2158,{"d":19,"dB":1547236800,"t1s":4,"t2s":2,"t1":72,"t2":51}],[2164,{"d":20,"dB":1547927100,"t1s":1,"t2s":2,"t1":51,"t2":49}],[2178,{"d":21,"dB":1548586800,"t1s":2,"t2s":1,"t1":74,"t2":51}],[2199,{"d":23,"dB":1549713600,"t1s":3,"t2s":1,"t1":58,"t2":51}],[2203,{"d":24,"dB":1550318400,"t1s":1,"t2s":4,"t1":51,"t2":63}],[2212,{"d":25,"dB":1550943000,"t1s":0,"t2s":0,"t1":48,"t2":51}],[2230,{"d":26,"dB":1551610800,"t1s":1,"t2s":0,"t1":66,"t2":51}],[2239,{"d":27,"dB":1552215600,"t1s":0,"t2s":1,"t1":51,"t2":60}],[2254,{"d":29,"dB":1553967000,"t1s":3,"t2s":2,"t1":51,"t2":64}],[2270,{"d":30,"dB":1554316200,"t1s":3,"t2s":3,"t1":73,"t2":51}],[2274,{"d":31,"dB":1554654600,"t1s":3,"t2s":1,"t1":51,"t2":52}],[2318,{"d":35,"dB":1556382600,"t1s":0,"t2s":0,"t1":47,"t2":51}],[2329,{"d":36,"dB":1556995500,"t1s":2,"t2s":0,"t1":51,"t2":59}],[2332,{"d":37,"dB":1557678600,"t1s":3,"t2s":1,"t1":57,"t2":51}],[2343,{"d":38,"dB":1558205100,"t1s":2,"t2s":2,"t1":51,"t2":72}],[2308,{"d":34,"dB":1556130600,"t1s":1,"t2s":1,"t1":56,"t2":51}],[3366,{"d":20,"dB":1546102800,"t1s":1,"t2s":3,"t1":24,"t2":69}],[3407,{"d":24,"dB":1548878400,"t1s":2,"t2s":1,"t1":24,"t2":33}],[3526,{"d":36,"dB":1556364600,"t1s":0,"t2s":1,"t1":24,"t2":28}],[4147,{"d":17,"dB":1576418400,"t1s":1,"t2s":2,"t1":69,"t2":24}],[4187,{"d":13,"dB":1574512200,"t1s":2,"t2s":3,"t1":28,"t2":24}],[4226,{"d":9,"dB":1571493600,"t1s":1,"t2s":1,"t1":24,"t2":33}],[2135,{"d":17,"dB":1545480000,"t1s":1,"t2s":1,"t1":60,"t2":66}],[2149,{"d":18,"dB":1546717500,"t1s":2,"t2s":1,"t1":73,"t2":60}],[2173,{"d":21,"dB":1548610200,"t1s":1,"t2s":0,"t1":57,"t2":60}],[2198,{"d":23,"dB":1549796400,"t1s":3,"t2s":0,"t1":47,"t2":60}],[2205,{"d":24,"dB":1550432700,"t1s":1,"t2s":1,"t1":60,"t2":48}],[2222,{"d":26,"dB":1551626100,"t1s":1,"t2s":2,"t1":60,"t2":58}],[2246,{"d":28,"dB":1552851900,"t1s":1,"t2s":4,"t1":60,"t2":59}],[2258,{"d":29,"dB":1554033600,"t1s":1,"t2s":1,"t1":72,"t2":60}],[2269,{"d":30,"dB":1554406200,"t1s":2,"t2s":1,"t1":52,"t2":60}],[2273,{"d":31,"dB":1554662700,"t1s":2,"t2s":1,"t1":60,"t2":64}],[2288,{"d":32,"dB":1555181100,"t1s":3,"t2s":2,"t1":55,"t2":60}],[2294,{"d":33,"dB":1555872300,"t1s":1,"t2s":2,"t1":60,"t2":49}],[2314,{"d":35,"dB":1556564400,"t1s":1,"t2s":1,"t1":60,"t2":56}],[2330,{"d":36,"dB":1557057600,"t1s":1,"t2s":0,"t1":66,"t2":60}],[2335,{"d":37,"dB":1557678600,"t1s":2,"t2s":1,"t1":60,"t2":73}],[2350,{"d":38,"dB":1558260000,"t1s":0,"t2s":2,"t1":62,"t2":60}],[2901,{"d":17,"dB":1547661600,"t1s":2,"t2s":2,"t1":10,"t2":18}],[2941,{"d":21,"dB":1548014400,"t1s":1,"t2s":2,"t1":4,"t2":18}],[2956,{"d":23,"dB":1549224000,"t1s":2,"t2s":1,"t1":18,"t2":2}],[2997,{"d":27,"dB":1551628800,"t1s":5,"t2s":1,"t1":18,"t2":10}],[3017,{"d":29,"dB":1552829400,"t1s":3,"t2s":2,"t1":18,"t2":15}],[3028,{"d":30,"dB":1553888700,"t1s":0,"t2s":1,"t1":20,"t2":18}],[3036,{"d":31,"dB":1554562800,"t1s":1,"t2s":3,"t1":18,"t2":7}],[3048,{"d":32,"dB":1555094700,"t1s":2,"t2s":1,"t1":8,"t2":18}],[3054,{"d":33,"dB":1555699500,"t1s":2,"t2s":1,"t1":18,"t2":16}],[3064,{"d":34,"dB":1556304300,"t1s":2,"t2s":3,"t1":3,"t2":18}],[3087,{"d":36,"dB":1557687600,"t1s":0,"t2s":3,"t1":9,"t2":18}],[3109,{"d":38,"dB":1558724700,"t1s":2,"t2s":3,"t1":67,"t2":18}],[2905,{"d":18,"dB":1547661600,"t1s":2,"t2s":1,"t1":14,"t2":20}],[2919,{"d":19,"dB":1545508800,"t1s":4,"t2s":0,"t1":20,"t2":67}],[2928,{"d":20,"dB":1547388000,"t1s":0,"t2s":1,"t1":8,"t2":20}],[2940,{"d":21,"dB":1547992800,"t1s":0,"t2s":0,"t1":20,"t2":15}],[2949,{"d":22,"dB":1548619200,"t1s":4,"t2s":1,"t1":2,"t2":20}],[2969,{"d":24,"dB":1549814400,"t1s":3,"t2s":0,"t1":20,"t2":4}],[2989,{"d":26,"dB":1551024000,"t1s":1,"t2s":1,"t1":20,"t2":9}],[3008,{"d":28,"dB":1552233600,"t1s":3,"t2s":1,"t1":20,"t2":5}],[3013,{"d":29,"dB":1552838400,"t1s":1,"t2s":1,"t1":3,"t2":20}],[3033,{"d":31,"dB":1554573600,"t1s":3,"t2s":3,"t1":16,"t2":20}],[3052,{"d":33,"dB":1555693200,"t1s":3,"t2s":2,"t1":7,"t2":20}],[3081,{"d":35,"dB":1557061200,"t1s":2,"t2s":2,"t1":10,"t2":20}],[3090,{"d":36,"dB":1557666000,"t1s":1,"t2s":1,"t1":20,"t2":14}],[3100,{"d":37,"dB":1558206000,"t1s":0,"t2s":2,"t1":41,"t2":20}],[4244,{"d":7,"dB":1569679200,"t1s":2,"t2s":0,"t1":69,"t2":33}],[4283,{"d":3,"dB":1566655200,"t1s":1,"t2s":3,"t1":33,"t2":28}],[3547,{"d":38,"dB":1557669600,"t1s":1,"t2s":4,"t1":33,"t2":28}],[3527,{"d":36,"dB":1556373600,"t1s":1,"t2s":2,"t1":33,"t2":69}],[2148,{"d":18,"dB":1546803900,"t1s":1,"t2s":2,"t1":58,"t2":59}],[2160,{"d":19,"dB":1547322300,"t1s":1,"t2s":2,"t1":64,"t2":58}],[2190,{"d":22,"dB":1549108800,"t1s":0,"t2s":0,"t1":63,"t2":58}],[2204,{"d":24,"dB":1550260800,"t1s":2,"t2s":2,"t1":66,"t2":58}],[2216,{"d":25,"dB":1550923200,"t1s":2,"t2s":1,"t1":58,"t2":72}],[2236,{"d":27,"dB":1552160700,"t1s":2,"t2s":1,"t1":58,"t2":73}],[2248,{"d":28,"dB":1552843800,"t1s":0,"t2s":0,"t1":49,"t2":58}],[2255,{"d":29,"dB":1553947200,"t1s":0,"t2s":2,"t1":58,"t2":47}],[2265,{"d":30,"dB":1554229800,"t1s":1,"t2s":1,"t1":56,"t2":58}],[2276,{"d":31,"dB":1554638400,"t1s":1,"t2s":0,"t1":58,"t2":57}],[2334,{"d":37,"dB":1557678600,"t1s":2,"t2s":0,"t1":59,"t2":58}],[2345,{"d":38,"dB":1558188900,"t1s":2,"t2s":2,"t1":58,"t2":64}],[4162,{"d":15,"dB":1575487800,"t1s":2,"t2s":0,"t1":69,"t2":28}],[2141,{"d":17,"dB":1546547400,"t1s":2,"t2s":2,"t1":64,"t2":62}],[2143,{"d":18,"dB":1546772400,"t1s":0,"t2s":0,"t1":66,"t2":64}],[2170,{"d":20,"dB":1547997300,"t1s":1,"t2s":1,"t1":64,"t2":57}],[2176,{"d":21,"dB":1548531900,"t1s":3,"t2s":0,"t1":49,"t2":64}],[2189,{"d":22,"dB":1549191600,"t1s":2,"t2s":2,"t1":64,"t2":56}],[2197,{"d":23,"dB":1549656000,"t1s":0,"t2s":0,"t1":74,"t2":64}],[2227,{"d":26,"dB":1551539700,"t1s":1,"t2s":2,"t1":64,"t2":48}],[2238,{"d":27,"dB":1552239000,"t1s":0,"t2s":2,"t1":63,"t2":64}],[2251,{"d":28,"dB":1552843800,"t1s":3,"t2s":1,"t1":64,"t2":72}],[2301,{"d":33,"dB":1555864200,"t1s":2,"t2s":1,"t1":64,"t2":47}],[2305,{"d":34,"dB":1556217000,"t1s":0,"t2s":1,"t1":52,"t2":64}],[2321,{"d":35,"dB":1556469000,"t1s":1,"t2s":1,"t1":64,"t2":73}],[2326,{"d":36,"dB":1557065700,"t1s":3,"t2s":2,"t1":62,"t2":64}],[2339,{"d":37,"dB":1557678600,"t1s":1,"t2s":0,"t1":64,"t2":66}],[2297,{"d":33,"dB":1555856100,"t1s":3,"t2s":0,"t1":62,"t2":57}],[2341,{"d":37,"dB":1557678600,"t1s":3,"t2s":1,"t1":52,"t2":62}]]} \ No newline at end of file diff --git a/src/test/resources/__files/mpgstats.serie-a.20190805.json b/src/test/resources/__files/mpgstats.serie-a.20190805.json deleted file mode 100644 index 7d4ff15..0000000 --- a/src/test/resources/__files/mpgstats.serie-a.20190805.json +++ /dev/null @@ -1,20441 +0,0 @@ -{ - "cN": "Customteam", - "bD": "2019-08-05T11:24:37Z", - "mL": { - "i": 1, - "n": "Ligue 1", - "cN": "Ligue-1", - "u": "\/league\/Ligue-1", - "aS": { - "cN": "Ligue-1-2019-2020", - "i": 9, - "n": "Ligue 1 2019-2020", - "mD": 38, - "cD": { - "cN": "CurrentDay", - "d": 0, - "lD": 0 - } - }, - "lS": { - "cN": "Ligue-1-2018-2019", - "i": 6, - "n": "Ligue 1 2018-2019", - "mD": 38 - } - }, - "mxD": 2, - "np": 757, - "le": { - "1": "Ligue-1", - "4": "Ligue-2", - "2": "Premier-League", - "3": "Liga" - }, - "p": [ - { - "i": 1, - "n": "Cavani", - "f": "Edinson", - "p": "A", - "r": 39, - "s": { - "n": 0, - "Og": "18", - "Os": "123", - "On": "21", - "Oa": "5.86", - "Od": "1.5", - "Ap": "21", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "35": { - "n": 3 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 4, - "n": "Thiago Silva", - "f": "", - "p": "D", - "r": 23, - "s": { - "n": 0, - "Os": "148", - "On": "25", - "Oa": "5.94", - "Od": "0.64", - "Dp": "25", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 7, - "n": "Di Mar\u00eda", - "f": "\u00c1ngel", - "p": "M", - "r": 34, - "s": { - "n": 0, - "Og": "12", - "Os": "175", - "On": "30", - "Oa": "5.83", - "Od": "1.18", - "Mp": "14", - "Ap": "16", - "p": { - "34": { - "n": 5.5, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 12, - "n": "Draxler", - "f": "Julian", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "3", - "Os": "169", - "On": "31", - "Oa": "5.45", - "Od": "1.23", - "Mp": "27", - "Ap": "4", - "p": { - "31": { - "n": 7, - "s": 1 - }, - "32": { - "n": 3 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 17, - "n": "Verratti", - "f": "Marco", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Os": "147", - "On": "26", - "Oa": "5.65", - "Od": "1.18", - "Mp": "26", - "p": { - "31": { - "n": 6.5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 2 - }, - { - "i": 28, - "n": "Mbapp\u00e9", - "f": "Kylian", - "p": "A", - "r": 50, - "s": { - "n": 0, - "Og": "33", - "Os": "194", - "On": "29", - "Oa": "6.71", - "Od": "1.08", - "Mp": "2", - "Ap": "27", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 8, - "g": 3 - }, - "37": { - "n": 8, - "g": 2 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 44, - "n": "Marquinhos", - "f": "", - "p": "D", - "r": 28, - "s": { - "n": 0, - "Og": "3", - "Os": "179", - "On": "30", - "Oa": "5.97", - "Od": "0.93", - "Mp": "8", - "Dp": "22", - "p": { - "33": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 46, - "n": "Meunier", - "f": "Thomas", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "3", - "Oao": "1", - "Os": "126", - "On": "22", - "Oa": "5.75", - "Od": "1", - "Mp": "8", - "Dp": "14", - "p": { - "32": { - "n": 4, - "a": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 2 - }, - { - "i": 49, - "n": "Kurzawa", - "f": "Layvin", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "94", - "On": "19", - "Oa": "4.97", - "Od": "0.97", - "Mp": "6", - "Dp": "13", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4, - "s": 1 - }, - "35": { - "n": 5.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 2 - }, - { - "i": 100, - "n": "Areola", - "f": "Alphonse", - "p": "G", - "r": 20, - "s": { - "n": 0, - "Os": "118", - "On": "21", - "Oa": "5.62", - "Od": "0.86", - "Gp": "21", - "p": { - "32": { - "n": 2.5 - }, - "33": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "37": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 152, - "n": "Trapp", - "f": "Kevin", - "p": "G", - "r": 12, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 180, - "n": "Kimpembe", - "f": "Presnel", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "123", - "On": "24", - "Oa": "5.15", - "Od": "1.11", - "Dp": "24", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 3 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 3, - "a": 1 - }, - "35": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 432, - "n": "Diallo", - "f": "Abdou", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 458, - "n": "Nkunku", - "f": "Christopher", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "121", - "On": "22", - "Oa": "5.52", - "Od": "0.95", - "Mp": "17", - "Dp": "1", - "Ap": "4", - "p": { - "31": { - "n": 5 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 473, - "n": "Maisonnial", - "f": "Anthony", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 494, - "n": "Georgen", - "f": "Alec", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 520, - "n": "Descamps", - "f": "Remy", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 647, - "n": "Herrera", - "f": "Ander", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "125", - "On": "22", - "Oa": "5.68", - "Od": "0.85", - "Mp": "21", - "Dp": "1", - "p": { - "32": { - "n": 5, - "e": 3486, - "c": 31 - }, - "36": { - "n": 5, - "e": 3524, - "c": 31 - }, - "37": { - "n": 5.5, - "e": 3533, - "c": 31, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 657, - "n": "Gueye", - "f": "Idrissa", - "p": "M", - "r": 19, - "s": { - "n": 0, - "Os": "188", - "On": "33", - "Oa": "5.71", - "Od": "0.93", - "Mp": "33", - "p": { - "31": { - "n": 6, - "e": 3471, - "c": 22 - }, - "32": { - "n": 7, - "e": 3487, - "c": 22 - }, - "33": { - "n": 6.5, - "e": 3490, - "c": 22 - }, - "34": { - "n": 3.5, - "e": 3501, - "c": 22 - }, - "35": { - "n": 7, - "e": 3512, - "c": 22 - }, - "36": { - "n": 6.5, - "e": 3520, - "c": 22 - }, - "37": { - "n": 6, - "e": 3532, - "c": 22 - }, - "38": { - "n": 5.5, - "e": 3546, - "c": 22 - } - } - }, - "c": 2 - }, - { - "i": 1155, - "n": "Neymar", - "f": "", - "p": "A", - "r": 40, - "s": { - "n": 0, - "Og": "15", - "Os": "109", - "On": "17", - "Oa": "6.41", - "Od": "1.41", - "Mp": "5", - "Ap": "12", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 3 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "36": { - "n": 7, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 1157, - "n": "Dani Alves", - "f": "", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "124", - "On": "23", - "Oa": "5.39", - "Od": "1.26", - "Mp": "15", - "Dp": "6", - "Ap": "2", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 2.5 - }, - "33": { - "n": 7 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 1322, - "n": "Choupo-Moting", - "f": "Eric Maxim", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "3", - "Os": "103", - "On": "22", - "Oa": "4.68", - "Od": "0.59", - "Mp": "2", - "Ap": "20", - "p": { - "31": { - "n": 5.5, - "g": 1 - }, - "34": { - "n": 3.5 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 1325, - "n": "Jes\u00e9", - "f": "", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Og": "2", - "Os": "63", - "On": "14", - "Oa": "4.5", - "Od": "0.93", - "Ap": "14", - "p": { - "31": { - "n": 5, - "e": 2273, - "c": 60 - }, - "32": { - "n": 3.5, - "e": 2288, - "c": 60 - }, - "33": { - "n": 4, - "e": 2294, - "c": 60 - }, - "35": { - "n": 4, - "e": 2314, - "c": 60 - }, - "36": { - "n": 5, - "e": 2330, - "c": 60, - "s": 1 - }, - "37": { - "n": 4.5, - "e": 2335, - "c": 60, - "s": 1 - }, - "38": { - "n": 6, - "e": 2350, - "c": 60, - "g": 1, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 1369, - "n": "Bulka", - "f": "Marcin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 1609, - "n": "Sarabia", - "f": "Pablo", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "12", - "Os": "184", - "On": "33", - "Oa": "5.59", - "Od": "1.41", - "Mp": "24", - "Ap": "9", - "p": { - "31": { - "n": 6, - "e": 2281, - "c": 55 - }, - "32": { - "n": 7, - "e": 2288, - "c": 55, - "g": 1 - }, - "34": { - "n": 7, - "e": 2311, - "c": 55 - }, - "35": { - "n": 5, - "e": 2315, - "c": 55 - }, - "36": { - "n": 3, - "e": 2331, - "c": 55 - }, - "37": { - "n": 6, - "e": 2333, - "c": 55, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 2079, - "n": "Bernede", - "f": "Antoine", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Mp": "2" - }, - "c": 2 - }, - { - "i": 2151, - "n": "N'Soki", - "f": "Stanley", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "59", - "On": "12", - "Oa": "4.96", - "Od": "0.56", - "Mp": "4", - "Dp": "8" - }, - "c": 2 - }, - { - "i": 2267, - "n": "Lass Diarra", - "f": "", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.62", - "Mp": "3" - }, - "c": 2 - }, - { - "i": 2311, - "n": "Cibois", - "f": "Sebastien", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2327, - "n": "Rimane", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 2 - }, - { - "i": 2626, - "n": "Fressange", - "f": "Alexandre", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 2627, - "n": "Dagba", - "f": "Colin", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "81", - "On": "17", - "Oa": "4.79", - "Od": "0.69", - "Mp": "2", - "Dp": "15", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2668, - "n": "Diaby", - "f": "Moussa", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "125", - "On": "25", - "Oa": "5.02", - "Od": "0.9", - "Mp": "9", - "Ap": "16", - "p": { - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 6 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 2670, - "n": "Mbe Soh", - "f": "Lo\u00efc", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "11", - "On": "2", - "Oa": "5.5", - "Od": "0.5", - "Dp": "2", - "p": { - "36": { - "n": 5 - }, - "37": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 2821, - "n": "Kehrer", - "f": "Thilo", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "143", - "On": "27", - "Oa": "5.31", - "Od": "0.89", - "Dp": "27", - "p": { - "31": { - "n": 6, - "g": 1, - "s": 1 - }, - "32": { - "n": 3.5, - "s": 1 - }, - "33": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 2 - }, - { - "i": 2864, - "n": "Bernat", - "f": "Juan", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Og": "1", - "Os": "130", - "On": "25", - "Oa": "5.2", - "Od": "0.96", - "Mp": "10", - "Dp": "15", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5, - "g": 1 - }, - "34": { - "n": 2.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 3367, - "n": "Paredes", - "f": "Leandro", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "84", - "On": "15", - "Oa": "5.63", - "Od": "0.94", - "Mp": "15", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 6.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 8 - }, - "38": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 3505, - "n": "Toufiqui", - "f": "Azzeddine", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 3764, - "n": "Zagre", - "f": "Arthur", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 3770, - "n": "Hemans Arday", - "f": "Isaac", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 3778, - "n": "Guclu", - "f": "Metehan", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4029, - "n": "Kouassi", - "f": "Nianzou", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4030, - "n": "Aouchiche", - "f": "Adil", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4032, - "n": "Yapi", - "f": "Romaric", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4033, - "n": "Innocent", - "f": "Garissone", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4035, - "n": "Bakker", - "f": "Mitchel", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4835, - "n": "Mangonzo", - "f": "Jeremy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4836, - "n": "Hugonet", - "f": "Jean", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4837, - "n": "Matoug", - "f": "Sami", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4866, - "n": "Abdeldjelil", - "f": "Oussama", - "p": "A", - "r": 8, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "1": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 4885, - "n": "Wamangituka Fundu", - "f": "Silas", - "p": "A", - "r": 25, - "s": { - "s": "10", - "n": "2", - "a": "5", - "Os": "10", - "On": "2", - "Oa": "5", - "Ap": "2", - "p": { - "1": { - "n": 5, - "s": 1 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 4913, - "n": "Kant\u00e9", - "f": "Ousmane", - "p": "D", - "r": 20, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "1", - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "1", - "Dp": "2", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 4927, - "n": "Tanasijevic", - "f": "Strahinja", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 4942, - "n": "Bamba", - "f": "Axel", - "p": "D", - "r": 1, - "s": { - "g": "1", - "s": "10", - "n": "2", - "a": "5", - "d": "1", - "Og": "1", - "Os": "10", - "On": "2", - "Oa": "5", - "Od": "1", - "Dp": "2", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 6, - "g": 1 - } - } - }, - "c": 2 - }, - { - "i": 5023, - "n": "Mandouki", - "f": "Cyril", - "p": "M", - "r": 14, - "s": { - "s": "8", - "n": "2", - "a": "4.25", - "d": "0.75", - "Os": "8", - "On": "2", - "Oa": "4.25", - "Od": "0.75", - "Mp": "1", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 5042, - "n": "Yohou", - "f": "Samuel", - "p": "D", - "r": 18, - "s": { - "s": "3", - "n": "1", - "a": "3.5", - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1", - "p": { - "1": { - "n": 3.5 - } - } - }, - "c": 2 - }, - { - "i": 5068, - "n": "Sarr", - "f": "Adama", - "p": "A", - "r": 7, - "s": { - "s": "4", - "n": "1", - "a": "4.5", - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "2": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 5132, - "n": "Dilo", - "f": "Christopher", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 5136, - "n": "Maletic", - "f": "Marko", - "p": "A", - "r": 5, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.25", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Ap": "2", - "p": { - "1": { - "n": 4.5, - "s": 1 - }, - "2": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 5138, - "n": "Lopez", - "f": "Julien", - "p": "M", - "r": 16, - "s": { - "s": "9", - "n": "2", - "a": "4.75", - "d": "0.75", - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.75", - "Mp": "2", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 5146, - "n": "Nomenjanahary", - "f": "Lala\u00efna", - "p": "M", - "r": 17, - "s": { - "s": "6", - "n": "1", - "a": "6", - "Os": "6", - "On": "1", - "Oa": "6", - "Mp": "1", - "p": { - "2": { - "n": 6 - } - } - }, - "c": 2 - }, - { - "i": 5173, - "n": "Demarconnay", - "f": "Vincent", - "p": "G", - "r": 24, - "s": { - "s": "7", - "n": "2", - "a": "3.5", - "d": "0.5", - "Os": "7", - "On": "2", - "Oa": "3.5", - "Od": "0.5", - "Gp": "2", - "p": { - "1": { - "n": 3 - }, - "2": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 5181, - "n": "Martin", - "f": "Florian", - "p": "M", - "r": 17, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "d": "0.5", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Od": "0.5", - "Mp": "2", - "p": { - "1": { - "n": 4 - }, - "2": { - "n": 5 - } - } - }, - "c": 2 - }, - { - "i": 5209, - "n": "Armand", - "f": "Romain", - "p": "A", - "r": 15, - "s": { - "s": "9", - "n": "2", - "a": "4.5", - "d": "1", - "Os": "9", - "On": "2", - "Oa": "4.5", - "Od": "1", - "Mp": "2", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 5.5 - } - } - }, - "c": 2 - }, - { - "i": 5220, - "n": "Pitroipa", - "f": "Jonathan", - "p": "A", - "r": 13, - "s": { - "s": "8", - "n": "2", - "a": "4", - "d": "0.5", - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "0.5", - "Mp": "2", - "p": { - "1": { - "n": 3.5 - }, - "2": { - "n": 4.5 - } - } - }, - "c": 2 - }, - { - "i": 5344, - "n": "Tre", - "f": "Jason", - "p": "D", - "r": 5, - "s": { - "s": "4", - "n": "1", - "a": "4", - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1", - "p": { - "2": { - "n": 4 - } - } - }, - "c": 2 - }, - { - "i": 5354, - "n": "Garcia", - "f": "Thomas", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 5368, - "n": "Abdi", - "f": "Ali", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 2 - }, - { - "i": 5371, - "n": "Alceus", - "f": "Bryan", - "p": "M", - "r": 1, - "s": { - "s": "5", - "n": "1", - "a": "5", - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1", - "p": { - "2": { - "n": 5, - "s": 1 - } - } - }, - "c": 2 - }, - { - "i": 36, - "n": "Plasil", - "f": "Jaroslav", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "118", - "On": "23", - "Oa": "5.13", - "Od": "0.47", - "Mp": "23", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 38, - "n": "Costil", - "f": "Benoit", - "p": "G", - "r": 19, - "s": { - "n": 0, - "Os": "212", - "On": "37", - "Oa": "5.73", - "Od": "0.96", - "Gp": "37", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 56, - "n": "Briand", - "f": "Jimmy", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "7", - "Os": "167", - "On": "35", - "Oa": "4.77", - "Od": "1.04", - "Mp": "3", - "Ap": "32", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 4, - "s": 1 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 86, - "n": "Kamano", - "f": "Fran\u00e7ois", - "p": "A", - "r": 11, - "s": { - "n": 0, - "Og": "10", - "Os": "187", - "On": "37", - "Oa": "5.07", - "Od": "1.12", - "Mp": "13", - "Ap": "24", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 3 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 103, - "n": "Sankhar\u00e9", - "f": "Younousse", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "109", - "On": "22", - "Oa": "4.95", - "Od": "0.69", - "Mp": "20", - "Ap": "2", - "p": { - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 3 - }, - { - "i": 105, - "n": "Sabaly", - "f": "Youssouf", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "112", - "On": "23", - "Oa": "4.89", - "Od": "0.67", - "Mp": "6", - "Dp": "17", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 3 - }, - "33": { - "n": 5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 126, - "n": "Vada", - "f": "Valent\u00edn", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "72", - "On": "14", - "Oa": "5.18", - "Od": "0.7", - "Mp": "14", - "p": { - "31": { - "n": 4.5, - "e": 3032, - "c": 4 - }, - "33": { - "n": 4.5, - "e": 3059, - "c": 4, - "s": 1 - }, - "34": { - "n": 6, - "e": 3071, - "c": 4 - }, - "35": { - "n": 4.5, - "e": 3075, - "c": 4 - }, - "36": { - "n": 5, - "e": 3091, - "c": 4, - "s": 1 - }, - "37": { - "n": 5, - "e": 3099, - "c": 4, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 139, - "n": "Baysse", - "f": "Paul", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Oao": "1", - "Os": "100", - "On": "21", - "Oa": "4.76", - "Od": "0.7", - "Dp": "21" - }, - "c": 3 - }, - { - "i": 168, - "n": "Mexer", - "f": "", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "153", - "On": "29", - "Oa": "5.29", - "Od": "1", - "Dp": "29", - "p": { - "31": { - "n": 4.5, - "e": 3033, - "c": 20 - }, - "32": { - "n": 5, - "e": 3049, - "c": 20 - }, - "34": { - "n": 6, - "e": 3070, - "c": 20 - }, - "37": { - "n": 6, - "e": 3100, - "c": 20 - }, - "38": { - "n": 7, - "e": 3111, - "c": 20 - } - } - }, - "c": 3 - }, - { - "i": 189, - "n": "Jovanovic", - "f": "Vukasin", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "86", - "On": "16", - "Oa": "5.38", - "Od": "0.93", - "Dp": "16", - "p": { - "31": { - "n": 6 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 3.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 229, - "n": "Lewczuk", - "f": "Igor", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.69", - "Dp": "6", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 268, - "n": "de Preville", - "f": "Nicolas", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "111", - "On": "23", - "Oa": "4.83", - "Od": "0.88", - "Mp": "9", - "Ap": "14", - "p": { - "31": { - "n": 6.5, - "g": 1 - }, - "33": { - "n": 4 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 305, - "n": "Gajic", - "f": "Milan", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "3", - "On": "1", - "Oa": "3.5", - "Dp": "1" - }, - "c": 3 - }, - { - "i": 362, - "n": "Poundj\u00e9", - "f": "Maxime", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "150", - "On": "30", - "Oa": "5.02", - "Od": "0.74", - "Mp": "2", - "Dp": "28", - "p": { - "31": { - "n": 5.5 - }, - "33": { - "n": 5.5, - "s": 1 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - } - } - }, - "c": 3 - }, - { - "i": 376, - "n": "Mendy", - "f": "Alexandre", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "3", - "Os": "74", - "On": "16", - "Oa": "4.63", - "Od": "0.99", - "Ap": "16", - "p": { - "32": { - "n": 4.5, - "e": 3051, - "c": 14, - "s": 1 - }, - "33": { - "n": 4, - "e": 3053, - "c": 14, - "s": 1 - }, - "34": { - "n": 4, - "e": 3069, - "c": 14, - "s": 1 - }, - "35": { - "n": 4.5, - "e": 3073, - "c": 14, - "s": 1 - }, - "36": { - "n": 6.5, - "e": 3090, - "c": 14, - "g": 1, - "s": 1 - }, - "37": { - "n": 7, - "e": 3093, - "c": 14, - "g": 1 - }, - "38": { - "n": 6, - "e": 3102, - "c": 14, - "g": 1 - } - } - }, - "c": 3 - }, - { - "i": 445, - "n": "Kwateng", - "f": "Enock", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "146", - "On": "30", - "Oa": "4.88", - "Od": "0.85", - "Mp": "5", - "Dp": "25", - "p": { - "31": { - "n": 4.5, - "e": 3041, - "c": 8 - }, - "32": { - "n": 5, - "e": 3048, - "c": 8, - "s": 1 - }, - "33": { - "n": 5.5, - "e": 3055, - "c": 8, - "s": 1 - }, - "37": { - "n": 4.5, - "e": 3097, - "c": 8, - "s": 1 - }, - "38": { - "n": 5, - "e": 3107, - "c": 8 - } - } - }, - "c": 3 - }, - { - "i": 512, - "n": "Mancini", - "f": "Daniel", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 514, - "n": "Bernardoni", - "f": "Paul", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "213", - "On": "38", - "Oa": "5.62", - "Od": "1.13", - "Gp": "38", - "p": { - "31": { - "n": 6, - "e": 3038, - "c": 67 - }, - "32": { - "n": 5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 5, - "e": 3057, - "c": 67 - }, - "34": { - "n": 3.5, - "e": 3066, - "c": 67 - }, - "35": { - "n": 6.5, - "e": 3079, - "c": 67 - }, - "36": { - "n": 7, - "e": 3089, - "c": 67 - }, - "37": { - "n": 6.5, - "e": 3093, - "c": 67 - }, - "38": { - "n": 5, - "e": 3109, - "c": 67 - } - } - }, - "c": 3 - }, - { - "i": 1075, - "n": "Maja", - "f": "Josh", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "32", - "On": "7", - "Oa": "4.57", - "Od": "0.62", - "Ap": "7", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 6, - "g": 1 - } - } - }, - "c": 3 - }, - { - "i": 1168, - "n": "Jonathan Caf\u00fa", - "f": "", - "p": "A", - "r": 9, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1175, - "n": "Ot\u00e1vio", - "f": "", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "181", - "On": "33", - "Oa": "5.5", - "Od": "0.71", - "Mp": "33", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 3 - }, - { - "i": 1261, - "n": "Mandanda", - "f": "Over", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 1271, - "n": "Poussin", - "f": "Gaetan", - "p": "G", - "r": 1, - "s": { - "n": 0, - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "38": { - "n": 6 - } - } - }, - "c": 3 - }, - { - "i": 2080, - "n": "Carrique", - "f": "Thomas", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2142, - "n": "Adli", - "f": "Yacine", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "32", - "On": "7", - "Oa": "4.57", - "Od": "0.42", - "Mp": "7", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - } - } - }, - "c": 3 - }, - { - "i": 2152, - "n": "Pablo", - "f": "", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "136", - "On": "25", - "Oa": "5.44", - "Od": "0.97", - "Dp": "25", - "p": { - "31": { - "n": 6 - }, - "34": { - "n": 3 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 3 - }, - { - "i": 2238, - "n": "Tchouameni", - "f": "Aurelien", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "50", - "On": "10", - "Oa": "5", - "Od": "0.67", - "Mp": "10" - }, - "c": 3 - }, - { - "i": 2629, - "n": "Nilor", - "f": "Michael", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2630, - "n": "Diarra", - "f": "Ibrahim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 2695, - "n": "Benrahou", - "f": "Yassin", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.63", - "Od": "0.22", - "Mp": "4", - "p": { - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 2788, - "n": "Kalu", - "f": "Samuel", - "p": "A", - "r": 11, - "s": { - "n": 0, - "Og": "3", - "Os": "107", - "On": "21", - "Oa": "5.1", - "Od": "0.78", - "Mp": "8", - "Ap": "13", - "p": { - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 2792, - "n": "Basic", - "f": "Toma", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "2", - "Os": "110", - "On": "23", - "Oa": "4.8", - "Od": "0.67", - "Mp": "23", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 3 - }, - { - "i": 3523, - "n": "Lottin", - "f": "Albert-Nicolas", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 3754, - "n": "Lauray", - "f": "Alexandre", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 3789, - "n": "Bellanova", - "f": "Raoul", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 3792, - "n": "Hwang Ui-Jo", - "f": "", - "p": "A", - "r": 13, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 3816, - "n": "Benito", - "f": "Loris", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 5452, - "n": "Bakawa", - "f": "Dilanae", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 5453, - "n": "Cardoso", - "f": "David", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 5454, - "n": "Sow", - "f": "Ismael", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 5455, - "n": "Rouyard", - "f": "Davy", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 3 - }, - { - "i": 13, - "n": "Hamouma", - "f": "Romain", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "4", - "Os": "140", - "On": "27", - "Oa": "5.2", - "Od": "1", - "Mp": "20", - "Ap": "7", - "p": { - "31": { - "n": 5.5, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4 - }, - "37": { - "n": 7.5, - "g": 1 - }, - "38": { - "n": 6 - } - } - }, - "c": 4 - }, - { - "i": 31, - "n": "Boudebouz", - "f": "Ryad", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "96", - "On": "20", - "Oa": "4.8", - "Od": "0.95", - "Mp": "15", - "Ap": "5", - "p": { - "31": { - "n": 6.5, - "e": 2274, - "c": 51, - "s": 1 - }, - "32": { - "n": 4.5, - "e": 2283, - "c": 51 - }, - "33": { - "n": 5.5, - "e": 2295, - "c": 51 - }, - "34": { - "n": 5, - "e": 2308, - "c": 51 - }, - "35": { - "n": 4.5, - "e": 2318, - "c": 51, - "s": 1 - }, - "36": { - "n": 6.5, - "e": 2329, - "c": 51 - }, - "37": { - "n": 4, - "e": 2332, - "c": 51 - }, - "38": { - "n": 4, - "e": 2343, - "c": 51 - } - } - }, - "c": 4 - }, - { - "i": 47, - "n": "Ruffier", - "f": "St\u00e9phane", - "p": "G", - "r": 23, - "s": { - "n": 0, - "Os": "214", - "On": "37", - "Oa": "5.78", - "Od": "1.03", - "Gp": "37", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 8 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 7.5 - } - } - }, - "c": 4 - }, - { - "i": 51, - "n": "Cabella", - "f": "R\u00e9my", - "p": "M", - "r": 26, - "s": { - "n": 0, - "Og": "8", - "Os": "183", - "On": "34", - "Oa": "5.4", - "Od": "1.16", - "Mp": "22", - "Ap": "12", - "p": { - "31": { - "n": 5.5, - "g": 1 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 8, - "g": 1 - }, - "36": { - "n": 3.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 64, - "n": "Perrin", - "f": "Loic", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Og": "1", - "Os": "166", - "On": "31", - "Oa": "5.35", - "Od": "1.07", - "Dp": "31", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 98, - "n": "Monnet-Paquet", - "f": "K\u00e9vin", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "107", - "On": "23", - "Oa": "4.65", - "Od": "0.79", - "Mp": "16", - "Ap": "7" - }, - "c": 4 - }, - { - "i": 137, - "n": "Selnaes", - "f": "Ole", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "114", - "On": "20", - "Oa": "5.7", - "Od": "0.89", - "Mp": "20" - }, - "c": 4 - }, - { - "i": 138, - "n": "Diony", - "f": "Lois", - "p": "A", - "r": 11, - "s": { - "n": 0, - "Og": "5", - "Os": "146", - "On": "30", - "Oa": "4.88", - "Od": "0.95", - "Mp": "5", - "Ap": "25", - "p": { - "31": { - "n": 4, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 155, - "n": "Beric", - "f": "Robert", - "p": "A", - "r": 16, - "s": { - "n": 0, - "Og": "9", - "Os": "115", - "On": "23", - "Oa": "5", - "Od": "1.21", - "Ap": "23", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 7.5, - "g": 2 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 7, - "g": 2 - }, - "38": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 195, - "n": "Moulin", - "f": "Jessy", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Oao": "1", - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "38": { - "n": 6, - "a": 1 - } - } - }, - "c": 4 - }, - { - "i": 209, - "n": "Tannane", - "f": "Oussama", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 317, - "n": "M'Bengue", - "f": "Cheikh", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 400, - "n": "Polomat", - "f": "Pierre-Yves", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Os": "93", - "On": "18", - "Oa": "5.17", - "Od": "0.6", - "Mp": "5", - "Dp": "13", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 6, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 7 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 411, - "n": "Nordin", - "f": "Arnaud", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "132", - "On": "25", - "Oa": "5.28", - "Od": "0.79", - "Mp": "25", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6, - "s": 1 - }, - "35": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 4 - }, - { - "i": 428, - "n": "Lacroix", - "f": "L\u00e9o", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 887, - "n": "Khazri", - "f": "Wahbi", - "p": "M", - "r": 31, - "s": { - "n": 0, - "Og": "13", - "Os": "178", - "On": "32", - "Oa": "5.58", - "Od": "1.45", - "Mp": "10", - "Ap": "22", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 8, - "g": 1 - }, - "33": { - "n": 7 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4 - }, - "36": { - "n": 3.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 4 - }, - { - "i": 1031, - "n": "Debuchy", - "f": "Mathieu", - "p": "D", - "r": 17, - "s": { - "n": 0, - "Og": "4", - "Os": "124", - "On": "24", - "Oa": "5.19", - "Od": "1.12", - "Mp": "4", - "Dp": "20", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 8, - "g": 2 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 1170, - "n": "Diouss\u00e9", - "f": "Assane", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "35", - "On": "7", - "Oa": "5.07", - "Od": "0.42", - "Mp": "7" - }, - "c": 4 - }, - { - "i": 1192, - "n": "Gabriel Silva", - "f": "", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "99", - "On": "19", - "Oa": "5.21", - "Od": "0.71", - "Mp": "10", - "Dp": "9" - }, - "c": 4 - }, - { - "i": 1549, - "n": "Youssouf", - "f": "Zaydou", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.48", - "Mp": "7", - "Ap": "4", - "p": { - "31": { - "n": 5, - "e": 3034, - "c": 3, - "s": 1 - }, - "32": { - "n": 4.5, - "e": 3050, - "c": 3 - }, - "33": { - "n": 4.5, - "e": 3057, - "c": 3 - }, - "34": { - "n": 4.5, - "e": 3064, - "c": 3, - "s": 1 - }, - "35": { - "n": 4.5, - "e": 3072, - "c": 3, - "s": 1 - }, - "36": { - "n": 4, - "e": 3086, - "c": 3 - } - } - }, - "c": 4 - }, - { - "i": 2046, - "n": "Panos", - "f": "Mickael", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 4 - }, - { - "i": 2143, - "n": "Camara", - "f": "Mahdi", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 4 - }, - { - "i": 2233, - "n": "M'Vila", - "f": "Yann", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Os": "202", - "On": "37", - "Oa": "5.46", - "Od": "0.88", - "Mp": "37", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 7 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 4 - }, - { - "i": 2266, - "n": "Subotic", - "f": "Neven", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "131", - "On": "26", - "Oa": "5.04", - "Od": "0.99", - "Dp": "26", - "p": { - "31": { - "n": 4 - } - } - }, - "c": 4 - }, - { - "i": 2272, - "n": "Fofana", - "f": "Wesley", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2434, - "n": "Palencia", - "f": "Sergi", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "123", - "On": "25", - "Oa": "4.92", - "Od": "0.84", - "Mp": "2", - "Dp": "23", - "p": { - "32": { - "n": 3, - "e": 3050, - "c": 3 - }, - "34": { - "n": 4.5, - "e": 3064, - "c": 3, - "s": 1 - }, - "38": { - "n": 6, - "e": 3104, - "c": 3 - } - } - }, - "c": 4 - }, - { - "i": 2616, - "n": "Kolodziejczak", - "f": "Timoth\u00e9e", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "187", - "On": "36", - "Oa": "5.19", - "Od": "0.81", - "Dp": "36", - "p": { - "31": { - "n": 5.5, - "g": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "35": { - "n": 4.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 2766, - "n": "Saliba", - "f": "William", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Os": "84", - "On": "16", - "Oa": "5.28", - "Od": "1.07", - "Dp": "16", - "p": { - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 7.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - } - } - }, - "c": 4 - }, - { - "i": 2790, - "n": "Bouanga", - "f": "Denis", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "8", - "Os": "173", - "On": "35", - "Oa": "4.94", - "Od": "1.21", - "Mp": "20", - "Ap": "15", - "p": { - "31": { - "n": 6.5, - "e": 3038, - "c": 67, - "g": 1 - }, - "32": { - "n": 3.5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 5.5, - "e": 3057, - "c": 67 - }, - "34": { - "n": 3, - "e": 3066, - "c": 67 - }, - "35": { - "n": 7, - "e": 3079, - "c": 67, - "g": 1 - }, - "36": { - "n": 5, - "e": 3089, - "c": 67 - }, - "37": { - "n": 6.5, - "e": 3093, - "c": 67, - "g": 1 - }, - "38": { - "n": 4, - "e": 3109, - "c": 67 - } - } - }, - "c": 4 - }, - { - "i": 2891, - "n": "Vermot", - "f": "Th\u00e9o", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2893, - "n": "Bajic", - "f": "Stefan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2963, - "n": "Honorat", - "f": "Franck", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2990, - "n": "Tshibuabua", - "f": "Marvin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 2991, - "n": "Abi", - "f": "Charles Nathan", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Ap": "2", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 4 - }, - { - "i": 2992, - "n": "Benkhedim", - "f": "Bilal", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 3765, - "n": "Sissoko", - "f": "Nelson", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 3772, - "n": "Nade", - "f": "Mickael", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 3788, - "n": "Moukoudi", - "f": "Harold", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 4 - }, - { - "i": 45, - "n": "Gourcuff", - "f": "Yoann", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "39", - "On": "8", - "Oa": "4.88", - "Od": "0.33", - "Mp": "8" - }, - "c": 7 - }, - { - "i": 104, - "n": "J\u00falio Tavares", - "f": "", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "5", - "Os": "165", - "On": "36", - "Oa": "4.58", - "Od": "1.08", - "Mp": "1", - "Ap": "35", - "p": { - "31": { - "n": 6.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 4 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 7 - }, - { - "i": 112, - "n": "Abeid", - "f": "Mehdi", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "3", - "Os": "133", - "On": "26", - "Oa": "5.13", - "Od": "0.8", - "Mp": "26" - }, - "c": 7 - }, - { - "i": 165, - "n": "Said", - "f": "Wesley", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "4", - "Os": "162", - "On": "34", - "Oa": "4.78", - "Od": "1.07", - "Mp": "8", - "Dp": "1", - "Ap": "25", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 8, - "g": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 7 - } - } - }, - "c": 7 - }, - { - "i": 167, - "n": "Mari\u00e9", - "f": "Jordan", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "126", - "On": "26", - "Oa": "4.87", - "Od": "0.7", - "Mp": "26", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 187, - "n": "Sammaritano", - "f": "Frederic", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "67", - "On": "14", - "Oa": "4.82", - "Od": "0.77", - "Mp": "14", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 252, - "n": "Chafik", - "f": "Fouad", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "104", - "On": "21", - "Oa": "4.95", - "Od": "0.77", - "Mp": "2", - "Dp": "19", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 278, - "n": "Amalfitano", - "f": "Romain", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "145", - "On": "32", - "Oa": "4.53", - "Od": "0.76", - "Mp": "29", - "Dp": "1", - "Ap": "2", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 7 - }, - { - "i": 312, - "n": "Sliti", - "f": "Naim", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "3", - "Os": "177", - "On": "35", - "Oa": "5.07", - "Od": "0.98", - "Mp": "27", - "Ap": "8", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 7, - "g": 1, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 321, - "n": "Balmont", - "f": "Florent", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "94", - "On": "20", - "Oa": "4.7", - "Od": "0.73", - "Mp": "20", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 7 - }, - { - "i": 322, - "n": "Jeannot", - "f": "Benjamin", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "96", - "On": "21", - "Oa": "4.6", - "Od": "0.8", - "Mp": "5", - "Ap": "16", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 4 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 330, - "n": "Lautoa", - "f": "Wesley", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Oao": "1", - "Os": "161", - "On": "34", - "Oa": "4.74", - "Od": "0.94", - "Mp": "4", - "Dp": "30", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 7 - }, - { - "i": 380, - "n": "Haddadi", - "f": "Oussama", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "2", - "Os": "155", - "On": "32", - "Oa": "4.84", - "Od": "1.17", - "Mp": "4", - "Dp": "28", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 3 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3 - } - } - }, - "c": 7 - }, - { - "i": 437, - "n": "Bouka Moutou", - "f": "Arnold", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.47", - "Dp": "3", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 530, - "n": "Allain", - "f": "Bobby", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "76", - "On": "13", - "Oa": "5.88", - "Od": "0.88", - "Gp": "13" - }, - "c": 7 - }, - { - "i": 533, - "n": "Rosier", - "f": "Valentin", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "83", - "On": "18", - "Oa": "4.61", - "Od": "1.26", - "Mp": "4", - "Dp": "14" - }, - "c": 7 - }, - { - "i": 545, - "n": "Kwon Chang-Hoon", - "f": "", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "90", - "On": "19", - "Oa": "4.74", - "Od": "0.77", - "Mp": "17", - "Ap": "2", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6, - "g": 1, - "s": 1 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 1217, - "n": "Yamb\u00e9r\u00e9", - "f": "C\u00e9dric", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "157", - "On": "33", - "Oa": "4.77", - "Od": "0.91", - "Dp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2524, - "n": "Ecuele Manga", - "f": "Bruno", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "180", - "On": "38", - "Oa": "4.74", - "Od": "0.98", - "Dp": "38", - "p": { - "31": { - "n": 6.5, - "e": 3469, - "c": 70 - }, - "32": { - "n": 5, - "e": 3481, - "c": 70 - }, - "33": { - "n": 4, - "e": 3492, - "c": 70 - }, - "34": { - "n": 4.5, - "e": 3499, - "c": 70 - }, - "35": { - "n": 5.5, - "e": 3510, - "c": 70 - }, - "36": { - "n": 5.5, - "e": 3521, - "c": 70 - }, - "37": { - "n": 5, - "e": 3530, - "c": 70 - }, - "38": { - "n": 7, - "e": 3544, - "c": 70 - } - } - }, - "c": 7 - }, - { - "i": 2605, - "n": "Alphonse", - "f": "Micka\u00ebl", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "50", - "On": "11", - "Oa": "4.55", - "Od": "0.84", - "Dp": "11", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 2633, - "n": "Ntumba", - "f": "Levi", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2639, - "n": "Coulibaly", - "f": "Senou", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "44", - "On": "9", - "Oa": "4.89", - "Od": "0.66", - "Dp": "9", - "p": { - "33": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2640, - "n": "Theo Barbet", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2641, - "n": "Sahibeddine", - "f": "Adrian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2643, - "n": "Loiodice", - "f": "Enzo", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "58", - "On": "12", - "Oa": "4.88", - "Od": "1", - "Mp": "12", - "p": { - "35": { - "n": 5, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 2687, - "n": "Jules Keita", - "f": "", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "2", - "Os": "75", - "On": "17", - "Oa": "4.41", - "Od": "0.94", - "Mp": "1", - "Ap": "16" - }, - "c": 7 - }, - { - "i": 2692, - "n": "Aguerd", - "f": "Nayef", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "1.12", - "Dp": "13", - "p": { - "33": { - "n": 5.5, - "g": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 7 - }, - { - "i": 2725, - "n": "R\u00fanarsson", - "f": "R\u00fanar Alex", - "p": "G", - "r": 16, - "s": { - "n": 0, - "Os": "124", - "On": "25", - "Oa": "4.96", - "Od": "0.97", - "Gp": "25", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 7 - }, - { - "i": 2867, - "n": "Ciman", - "f": "Laurent", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "38", - "On": "9", - "Oa": "4.22", - "Od": "0.92", - "Dp": "9" - }, - "c": 7 - }, - { - "i": 2941, - "n": "Doumbouya", - "f": "Sory", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 2989, - "n": "Godard", - "f": "Theo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 3361, - "n": "Kaba", - "f": "Sory", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "37", - "On": "9", - "Oa": "4.17", - "Od": "0.33", - "Ap": "9", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4, - "s": 1 - } - } - }, - "c": 7 - }, - { - "i": 3526, - "n": "T\u00e9gar", - "f": "Alexandre", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 3755, - "n": "Soumar\u00e9", - "f": "Bryan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 3768, - "n": "Mama Bald\u00e9", - "f": "", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 7 - }, - { - "i": 23, - "n": "Majeed Waris", - "f": "", - "p": "A", - "r": 12, - "s": { - "n": 0, - "Og": "5", - "Os": "165", - "On": "33", - "Oa": "5", - "Od": "0.91", - "Mp": "6", - "Ap": "27", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 6.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 73, - "n": "Pallois", - "f": "Nicolas", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "2", - "Os": "123", - "On": "24", - "Oa": "5.15", - "Od": "1.08", - "Dp": "24", - "p": { - "31": { - "n": 5.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 7 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 82, - "n": "Lafont", - "f": "Alban", - "p": "G", - "r": 16, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 128, - "n": "Sala", - "f": "Emiliano", - "p": "A", - "r": 500, - "s": { - "n": 0, - "Og": "12", - "Os": "102", - "On": "19", - "Oa": "5.39", - "Od": "1.47", - "Ap": "19" - }, - "c": 8 - }, - { - "i": 200, - "n": "Coco", - "f": "Marcus", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "1", - "Os": "152", - "On": "33", - "Oa": "4.62", - "Od": "0.78", - "Mp": "25", - "Ap": "8", - "p": { - "31": { - "n": 5, - "e": 3035, - "c": 14, - "s": 1 - }, - "32": { - "n": 4.5, - "e": 3051, - "c": 14, - "s": 1 - }, - "33": { - "n": 4.5, - "e": 3053, - "c": 14, - "s": 1 - }, - "34": { - "n": 3.5, - "e": 3069, - "c": 14 - }, - "35": { - "n": 5, - "e": 3073, - "c": 14, - "s": 1 - }, - "36": { - "n": 5, - "e": 3090, - "c": 14 - }, - "38": { - "n": 5, - "e": 3102, - "c": 14, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 242, - "n": "Rongier", - "f": "Valentin", - "p": "M", - "r": 21, - "s": { - "n": 0, - "Og": "4", - "Os": "199", - "On": "36", - "Oa": "5.53", - "Od": "1.05", - "Mp": "35", - "Ap": "1", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 7.5, - "g": 1 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 7 - } - } - }, - "c": 8 - }, - { - "i": 308, - "n": "Kacaniklic", - "f": "Alexander", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 313, - "n": "Lucas Lima", - "f": "", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "147", - "On": "31", - "Oa": "4.76", - "Od": "0.99", - "Mp": "5", - "Dp": "24", - "Ap": "2", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5.5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 427, - "n": "Moimb\u00e9", - "f": "Wilfried", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 431, - "n": "Alexis Alegue", - "f": "", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 8 - }, - { - "i": 465, - "n": "Sigthorsson", - "f": "Kolbeinn", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 476, - "n": "Tour\u00e9", - "f": "Abdoulaye", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "3", - "Os": "182", - "On": "34", - "Oa": "5.37", - "Od": "1", - "Mp": "34", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 7.5, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 8 - }, - { - "i": 499, - "n": "Olliero", - "f": "Alexandre", - "p": "G", - "r": 2, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Gp": "1", - "p": { - "38": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 506, - "n": "Walongwa", - "f": "Anthony", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5.5", - "Dp": "1", - "p": { - "38": { - "n": 5.5 - } - } - }, - "c": 8 - }, - { - "i": 941, - "n": "Fabio", - "f": "", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "96", - "On": "20", - "Oa": "4.83", - "Od": "0.62", - "Mp": "3", - "Dp": "17", - "p": { - "32": { - "n": 5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 1007, - "n": "Wagu\u00e9", - "f": "Molla", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 1171, - "n": "Kalifa Coulibaly", - "f": "", - "p": "A", - "r": 18, - "s": { - "n": 0, - "Og": "8", - "Os": "150", - "On": "32", - "Oa": "4.7", - "Od": "1.04", - "Ap": "32", - "p": { - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 8, - "g": 2 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 6, - "g": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 8 - }, - { - "i": 1174, - "n": "Andrei Girotto", - "f": "", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "107", - "On": "20", - "Oa": "5.38", - "Od": "1.15", - "Mp": "19", - "Dp": "1", - "p": { - "31": { - "n": 3.5 - }, - "34": { - "n": 7.5, - "g": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - } - } - }, - "c": 8 - }, - { - "i": 1177, - "n": "El Ghanassy", - "f": "Yassine", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 1228, - "n": "Kayembe", - "f": "Joris", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 1255, - "n": "Moutoussamy", - "f": "Samuel", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "138", - "On": "28", - "Oa": "4.93", - "Od": "0.83", - "Mp": "24", - "Ap": "4", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 7 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 1444, - "n": "Charles Traor\u00e9", - "f": "", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "66", - "On": "13", - "Oa": "5.08", - "Od": "0.76", - "Mp": "4", - "Dp": "9", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "34": { - "n": 5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5 - } - } - }, - "c": 8 - }, - { - "i": 1539, - "n": "Krhin", - "f": "Rene", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "83", - "On": "16", - "Oa": "5.22", - "Od": "0.56", - "Mp": "16" - }, - "c": 8 - }, - { - "i": 1552, - "n": "Kolo Muani", - "f": "Randal", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "26", - "On": "6", - "Oa": "4.33", - "Od": "0.69", - "Mp": "5", - "Ap": "1", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2086, - "n": "Ngom", - "f": "Santy", - "p": "A", - "r": 8, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2669, - "n": "Dabo", - "f": "Abdoulaye", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "0.5", - "Mp": "1", - "Ap": "1" - }, - "c": 8 - }, - { - "i": 2686, - "n": "Mendy", - "f": "Batista", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2696, - "n": "Basila", - "f": "Thomas", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2", - "p": { - "32": { - "n": 5.5 - }, - "35": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2707, - "n": "Menig", - "f": "Queensy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2719, - "n": "Lucas Evangelista", - "f": "", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "67", - "On": "14", - "Oa": "4.79", - "Od": "0.92", - "Mp": "11", - "Ap": "3", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2782, - "n": "Ruiz", - "f": "Percy", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 2834, - "n": "Limbombe", - "f": "Anthony", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "150", - "On": "29", - "Oa": "5.19", - "Od": "0.56", - "Mp": "20", - "Ap": "9", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 7, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2865, - "n": "Kara Mbodji", - "f": "Serigne Modou", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "32", - "On": "6", - "Oa": "5.33", - "Od": "0.37", - "Dp": "6" - }, - "c": 8 - }, - { - "i": 2938, - "n": "Louza", - "f": "Imran", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "38": { - "n": 4.5 - } - } - }, - "c": 8 - }, - { - "i": 2947, - "n": "Youan", - "f": "Thody Elie", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1", - "p": { - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 2993, - "n": "Bamba", - "f": "Kader", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 3363, - "n": "Mance", - "f": "Antonio", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "22", - "On": "5", - "Oa": "4.4", - "Od": "0.2", - "Ap": "5", - "p": { - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 8 - }, - { - "i": 3516, - "n": "Homawoo", - "f": "Josu\u00e9", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 3767, - "n": "Ba", - "f": "Abou", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 3812, - "n": "Appiah", - "f": "Dennis", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 8 - }, - { - "i": 6, - "n": "Payet", - "f": "Dimitri", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "4", - "Os": "159", - "On": "31", - "Oa": "5.15", - "Od": "1.01", - "Mp": "24", - "Ap": "7", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 10, - "n": "Germain", - "f": "Val\u00e8re", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "8", - "Os": "180", - "On": "36", - "Oa": "5.01", - "Od": "1.06", - "Mp": "1", - "Ap": "35", - "p": { - "31": { - "n": 3 - }, - "32": { - "n": 6, - "g": 1, - "s": 1 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 4, - "s": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 22, - "n": "Thauvin", - "f": "Florian", - "p": "M", - "r": 25, - "s": { - "n": 0, - "Og": "16", - "Os": "179", - "On": "33", - "Oa": "5.42", - "Od": "1.39", - "Mp": "24", - "Ap": "9", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 8, - "g": 2 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 9 - }, - { - "i": 34, - "n": "Balotelli", - "f": "Mario", - "p": "A", - "r": 22, - "s": { - "n": 0, - "Og": "8", - "Os": "123", - "On": "25", - "Oa": "4.92", - "Od": "1.21", - "Ap": "25", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4 - }, - "38": { - "n": 2.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 41, - "n": "Sanson", - "f": "Morgan", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "5", - "Os": "176", - "On": "33", - "Oa": "5.33", - "Od": "1.1", - "Mp": "33", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5.5 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 74, - "n": "N'Jie", - "f": "Clinton", - "p": "A", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "84", - "On": "17", - "Oa": "4.94", - "Od": "0.82", - "Mp": "1", - "Ap": "16", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 7.5, - "g": 1, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 99, - "n": "Lopez", - "f": "Maxime", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "169", - "On": "32", - "Oa": "5.3", - "Od": "0.74", - "Mp": "32", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 102, - "n": "Pel\u00e9", - "f": "Yohann", - "p": "G", - "r": 8, - "s": { - "n": 0, - "Os": "46", - "On": "9", - "Oa": "5.17", - "Od": "1.11", - "Gp": "9", - "p": { - "38": { - "n": 7 - } - } - }, - "c": 9 - }, - { - "i": 210, - "n": "Sakai", - "f": "Hiroki", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "138", - "On": "27", - "Oa": "5.13", - "Od": "1.08", - "Mp": "1", - "Dp": "26", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 7.5, - "g": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 216, - "n": "Sarr", - "f": "Bouna", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "145", - "On": "29", - "Oa": "5.02", - "Od": "1.05", - "Mp": "6", - "Dp": "23", - "p": { - "32": { - "n": 5 - }, - "34": { - "n": 3.5 - } - } - }, - "c": 9 - }, - { - "i": 221, - "n": "Rolando", - "f": "", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "50", - "On": "10", - "Oa": "5", - "Od": "0.81", - "Dp": "10" - }, - "c": 9 - }, - { - "i": 253, - "n": "Sertic", - "f": "Gr\u00e9gory", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.5", - "Od": "0.35", - "Mp": "4" - }, - "c": 9 - }, - { - "i": 314, - "n": "Bedimo", - "f": "Henri", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 325, - "n": "Hubocan", - "f": "Tomas", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5.25", - "Od": "0.25", - "Dp": "2", - "p": { - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 480, - "n": "Khaoui", - "f": "Saif-Eddine", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "3", - "Os": "116", - "On": "25", - "Oa": "4.64", - "Od": "0.74", - "Mp": "23", - "Ap": "2", - "p": { - "32": { - "n": 4.5, - "e": 3042, - "c": 5 - }, - "33": { - "n": 4.5, - "e": 3056, - "c": 5 - }, - "36": { - "n": 5, - "e": 3084, - "c": 5 - }, - "37": { - "n": 4.5, - "e": 3095, - "c": 5 - }, - "38": { - "n": 4.5, - "e": 3104, - "c": 5, - "s": 1 - } - } - }, - "c": 9 - }, - { - "i": 516, - "n": "Cagnon", - "f": "Romain", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 578, - "n": "Escales", - "f": "Florian", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 800, - "n": "Mandanda", - "f": "Steve", - "p": "G", - "r": 17, - "s": { - "n": 0, - "Os": "165", - "On": "31", - "Oa": "5.34", - "Od": "0.91", - "Gp": "31", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 1158, - "n": "Luiz Gustavo", - "f": "", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "2", - "Os": "153", - "On": "30", - "Oa": "5.12", - "Od": "0.93", - "Mp": "18", - "Dp": "12", - "p": { - "32": { - "n": 7, - "g": 1 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 1162, - "n": "Rami", - "f": "Adil", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "80", - "On": "16", - "Oa": "5", - "Od": "1.12", - "Dp": "16", - "p": { - "35": { - "n": 4 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 1181, - "n": "Amavi", - "f": "Jordan", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "137", - "On": "28", - "Oa": "4.89", - "Od": "0.89", - "Mp": "1", - "Dp": "27", - "p": { - "31": { - "n": 5.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5 - } - } - }, - "c": 9 - }, - { - "i": 1250, - "n": "Kamara", - "f": "Boubacar", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Og": "1", - "Os": "158", - "On": "31", - "Oa": "5.1", - "Od": "0.89", - "Dp": "31", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 3 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 9 - }, - { - "i": 1522, - "n": "Mitroglou", - "f": "Kostas", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "3", - "Os": "64", - "On": "14", - "Oa": "4.61", - "Od": "0.83", - "Ap": "14" - }, - "c": 9 - }, - { - "i": 1525, - "n": "Abdennour", - "f": "Aymen", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 1553, - "n": "Sari", - "f": "Yusuf", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 1726, - "n": "Gonz\u00e1lez", - "f": "\u00c1lvaro", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "165", - "On": "33", - "Oa": "5.02", - "Od": "1.02", - "Dp": "33", - "p": { - "32": { - "n": 6, - "e": 2284, - "c": 64 - }, - "33": { - "n": 4, - "e": 2301, - "c": 64 - }, - "34": { - "n": 6, - "e": 2305, - "c": 64 - }, - "35": { - "n": 6, - "e": 2321, - "c": 64 - }, - "36": { - "n": 4.5, - "e": 2326, - "c": 64 - }, - "37": { - "n": 6, - "e": 2339, - "c": 64 - }, - "38": { - "n": 4, - "e": 2345, - "c": 64 - } - } - }, - "c": 9 - }, - { - "i": 2155, - "n": "Rocchia", - "f": "Christopher", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 9 - }, - { - "i": 2634, - "n": "Perrin", - "f": "Lucas", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2635, - "n": "Marasovic", - "f": "Sacha", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2712, - "n": "Caleta-Car", - "f": "Duje", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Os": "104", - "On": "20", - "Oa": "5.2", - "Od": "1.02", - "Dp": "20", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4 - }, - "38": { - "n": 6 - } - } - }, - "c": 9 - }, - { - "i": 2779, - "n": "Chabrolle", - "f": "Florian", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2835, - "n": "Strootman", - "f": "Kevin", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "141", - "On": "28", - "Oa": "5.04", - "Od": "0.81", - "Mp": "28", - "p": { - "31": { - "n": 5 - }, - "33": { - "n": 6, - "s": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 9 - }, - { - "i": 2860, - "n": "Radonjic", - "f": "Nemanja", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "71", - "On": "17", - "Oa": "4.21", - "Od": "0.49", - "Mp": "4", - "Ap": "13", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4, - "s": 1 - }, - "36": { - "n": 3 - } - } - }, - "c": 9 - }, - { - "i": 2939, - "n": "Philiponeau", - "f": "Alexandre", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 2953, - "n": "Ali Mohamed", - "f": "Abdallah", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 9 - }, - { - "i": 55, - "n": "Toivonen", - "f": "Ola", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 59, - "n": "Jullien", - "f": "Christopher", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "170", - "On": "34", - "Oa": "5.01", - "Od": "1.21", - "Dp": "34", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 60, - "n": "Vainqueur", - "f": "William", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.5", - "Od": "0.71", - "Mp": "3" - }, - "c": 10 - }, - { - "i": 122, - "n": "Reynet", - "f": "Baptiste", - "p": "G", - "r": 17, - "s": { - "n": 0, - "Oao": "1", - "Os": "168", - "On": "31", - "Oa": "5.42", - "Od": "1.25", - "Gp": "31", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5 - }, - "33": { - "n": 7 - }, - "34": { - "n": 6 - } - } - }, - "c": 10 - }, - { - "i": 144, - "n": "Issiaga Sylla", - "f": "", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "114", - "On": "24", - "Oa": "4.75", - "Od": "1.1", - "Mp": "7", - "Dp": "17", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 182, - "n": "Yago", - "f": "Steeve", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 191, - "n": "Moubandje", - "f": "Fran\u00e7ois", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "104", - "On": "22", - "Oa": "4.75", - "Od": "0.85", - "Mp": "1", - "Dp": "21", - "p": { - "33": { - "n": 6 - }, - "34": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 234, - "n": "Bodiger", - "f": "Yann", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1" - }, - "c": 10 - }, - { - "i": 251, - "n": "Durmaz", - "f": "Jimmy", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "4", - "Os": "172", - "On": "36", - "Oa": "4.79", - "Od": "0.87", - "Mp": "31", - "Ap": "5", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 260, - "n": "Mubele", - "f": "Firmin Ndombe", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "68", - "On": "15", - "Oa": "4.53", - "Od": "0.72", - "Ap": "15", - "p": { - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 261, - "n": "Som\u00e1lia", - "f": "", - "p": "M", - "r": 11, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 302, - "n": "Jean", - "f": "Corentin", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Os": "85", - "On": "19", - "Oa": "4.47", - "Od": "0.7", - "Mp": "3", - "Ap": "16" - }, - "c": 10 - }, - { - "i": 328, - "n": "Goicoechea", - "f": "Mauro", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "43", - "On": "8", - "Oa": "5.38", - "Od": "1.32", - "Gp": "8", - "p": { - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 10 - }, - { - "i": 355, - "n": "Moreira", - "f": "Steven", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "40", - "On": "10", - "Oa": "4.05", - "Od": "0.82", - "Mp": "3", - "Dp": "7", - "p": { - "38": { - "n": 3.5 - } - } - }, - "c": 10 - }, - { - "i": 359, - "n": "Leya Iseka", - "f": "Aaron", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "4", - "Os": "124", - "On": "28", - "Oa": "4.45", - "Od": "0.92", - "Ap": "28", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5.5, - "g": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 394, - "n": "Amian", - "f": "Kelvin", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "153", - "On": "32", - "Oa": "4.8", - "Od": "1.1", - "Mp": "2", - "Dp": "30", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3 - } - } - }, - "c": 10 - }, - { - "i": 449, - "n": "Makengo", - "f": "Jean-Victor", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "121", - "On": "25", - "Oa": "4.84", - "Od": "0.56", - "Mp": "18", - "Ap": "7", - "p": { - "34": { - "n": 6, - "e": 3069, - "c": 19 - }, - "35": { - "n": 5, - "e": 3078, - "c": 19, - "s": 1 - }, - "36": { - "n": 5, - "e": 3088, - "c": 19, - "s": 1 - }, - "37": { - "n": 5, - "e": 3099, - "c": 19, - "s": 1 - }, - "38": { - "n": 4.5, - "e": 3108, - "c": 19, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 517, - "n": "Vidal", - "f": "Marc", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 556, - "n": "Ibrahim Sangar\u00e9", - "f": "", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "150", - "On": "28", - "Oa": "5.38", - "Od": "0.94", - "Mp": "28", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 1024, - "n": "Sanogo", - "f": "Yaya", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "3", - "Os": "98", - "On": "21", - "Oa": "4.69", - "Od": "0.98", - "Ap": "21", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 1025, - "n": "Gradel", - "f": "Max-Alain", - "p": "A", - "r": 19, - "s": { - "n": 0, - "Og": "11", - "Os": "190", - "On": "36", - "Oa": "5.28", - "Od": "1.24", - "Mp": "25", - "Ap": "11", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 10 - }, - { - "i": 1273, - "n": "Boisgard", - "f": "Quentin", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 1528, - "n": "Dossevi", - "f": "Mathieu", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "4", - "Os": "173", - "On": "35", - "Oa": "4.96", - "Od": "0.92", - "Mp": "26", - "Ap": "9", - "p": { - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 2041, - "n": "Khalid", - "f": "Driss", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2621, - "n": "Bostock", - "f": "John", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "75", - "On": "16", - "Oa": "4.72", - "Od": "0.68", - "Mp": "16", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 2739, - "n": "Manu Garc\u00eda", - "f": "", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "148", - "On": "31", - "Oa": "4.77", - "Od": "0.9", - "Mp": "31", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 10 - }, - { - "i": 2780, - "n": "El Mokkedem", - "f": "Hakim", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2781, - "n": "Goncalves", - "f": "Mathieu", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2786, - "n": "Taoui", - "f": "Adil", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2824, - "n": "Mbia", - "f": "St\u00e9phane", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "23", - "On": "5", - "Oa": "4.7", - "Od": "1.08", - "Mp": "2", - "Dp": "3" - }, - "c": 10 - }, - { - "i": 2942, - "n": "N'Goumou Minpole", - "f": "Nathan", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1", - "p": { - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 2950, - "n": "Sidibe", - "f": "Kalidou", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "72", - "On": "15", - "Oa": "4.83", - "Od": "0.7", - "Mp": "15", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5, - "g": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4.5 - }, - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 2960, - "n": "Diakite", - "f": "Bafode", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "38", - "On": "8", - "Oa": "4.75", - "Od": "0.83", - "Mp": "2", - "Dp": "6", - "p": { - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 10 - }, - { - "i": 2962, - "n": "Bessile", - "f": "Loic", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 2996, - "n": "Shoji", - "f": "Gen", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "87", - "On": "18", - "Oa": "4.83", - "Od": "0.93", - "Dp": "18", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4 - } - } - }, - "c": 10 - }, - { - "i": 3228, - "n": "Kone", - "f": "Kouadio", - "p": "M", - "r": 2, - "s": { - "n": 0, - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1", - "p": { - "38": { - "n": 3.5 - } - } - }, - "c": 10 - }, - { - "i": 3753, - "n": "Diarra", - "f": "Moussa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 3798, - "n": "Koulouris", - "f": "Efthymios", - "p": "A", - "r": 14, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 4036, - "n": "Rogel", - "f": "Agust\u00edn", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 10 - }, - { - "i": 97, - "n": "Cohade", - "f": "Renaud", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 273, - "n": "Delecroix", - "f": "Paul", - "p": "G", - "r": 8, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 337, - "n": "Nguette", - "f": "Opa", - "p": "M", - "r": 12, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 408, - "n": "N'Doram", - "f": "Kevin", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.5", - "Od": "0.87", - "Dp": "4", - "p": { - "34": { - "n": 5, - "e": 3070, - "c": 13, - "s": 1 - } - } - }, - "c": 11 - }, - { - "i": 487, - "n": "Basin", - "f": "Nicolas", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 498, - "n": "Boulaya", - "f": "Farid", - "p": "M", - "r": 13, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 576, - "n": "Udol", - "f": "Matthieu", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 1185, - "n": "Diallo", - "f": "Habib", - "p": "A", - "r": 14, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 1232, - "n": "Niane", - "f": "Ibrahima", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 1246, - "n": "Jallow", - "f": "Ablie", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 1248, - "n": "Ma\u00efga", - "f": "Habib", - "p": "M", - "r": 8, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 1266, - "n": "Poblete", - "f": "Ger\u00f3nimo", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 1415, - "n": "Oukidja", - "f": "Alexandre", - "p": "G", - "r": 14, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3757, - "n": "Amadou Ndiaye", - "f": "", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3758, - "n": "Sabaly", - "f": "Cheick Tidiane", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3763, - "n": "Pierre", - "f": "Leverton", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3773, - "n": "Dietsch", - "f": "Guillaume", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3776, - "n": "Cabit", - "f": "Manuel", - "p": "D", - "r": 4, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3777, - "n": "Mroivili", - "f": "Raouf", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3781, - "n": "Fofana", - "f": "Mamadou", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3782, - "n": "Adama Traore I", - "f": "", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3783, - "n": "Monteiro", - "f": "Jamiro", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3787, - "n": "Centonze", - "f": "Fabien", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3790, - "n": "Angban", - "f": "Victorien", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3791, - "n": "Gakpa", - "f": "Marvin", - "p": "M", - "r": 10, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3800, - "n": "Ambrose", - "f": "Thierry", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3809, - "n": "Delaine", - "f": "Thomas", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3814, - "n": "Sunzu", - "f": "Stoppila", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 3815, - "n": "Boye", - "f": "John", - "p": "D", - "r": 10, - "s": { - "n": 0 - }, - "c": 11 - }, - { - "i": 101, - "n": "Andr\u00e9", - "f": "Benjamin", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "3", - "Os": "158", - "On": "30", - "Oa": "5.28", - "Od": "1.03", - "Mp": "30", - "p": { - "31": { - "n": 5.5, - "e": 3033, - "c": 20 - }, - "33": { - "n": 5, - "e": 3052, - "c": 20 - } - } - }, - "c": 12 - }, - { - "i": 181, - "n": "Soumaoro", - "f": "Adama", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Os": "114", - "On": "20", - "Oa": "5.7", - "Od": "0.75", - "Dp": "20", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "38": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 192, - "n": "Benzia", - "f": "Yassine", - "p": "A", - "r": 12, - "s": { - "n": 0, - "Os": "13", - "On": "2", - "Oa": "6.5", - "Od": "0.5", - "Mp": "2" - }, - "c": 12 - }, - { - "i": 211, - "n": "P\u00e9p\u00e9", - "f": "Nicolas", - "p": "A", - "r": 48, - "s": { - "n": 0, - "Og": "22", - "Os": "227", - "On": "38", - "Oa": "5.99", - "Od": "1.49", - "Mp": "36", - "Ap": "2", - "p": { - "31": { - "n": 6.5 - }, - "32": { - "n": 8, - "g": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 7.5, - "g": 2 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 316, - "n": "Maignan", - "f": "Mike", - "p": "G", - "r": 26, - "s": { - "n": 0, - "Os": "219", - "On": "38", - "Oa": "5.78", - "Od": "0.75", - "Gp": "38", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 425, - "n": "Xeka", - "f": "", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "140", - "On": "27", - "Oa": "5.19", - "Od": "0.95", - "Mp": "27", - "p": { - "32": { - "n": 7 - } - } - }, - "c": 12 - }, - { - "i": 430, - "n": "Bahlouli", - "f": "Fares", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 455, - "n": "Jonathan Ikone", - "f": "", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "3", - "Os": "191", - "On": "38", - "Oa": "5.04", - "Od": "0.73", - "Mp": "35", - "Ap": "3", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6.5, - "g": 1 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 12 - }, - { - "i": 482, - "n": "Bamba", - "f": "Jonathan", - "p": "M", - "r": 25, - "s": { - "n": 0, - "Og": "13", - "Os": "208", - "On": "38", - "Oa": "5.49", - "Od": "1.4", - "Mp": "37", - "Ap": "1", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 8, - "g": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 8, - "g": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 496, - "n": "Mendyl", - "f": "Hamza", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 819, - "n": "Jos\u00e9 Fonte", - "f": "", - "p": "D", - "r": 25, - "s": { - "n": 0, - "Og": "3", - "Os": "199", - "On": "36", - "Oa": "5.53", - "Od": "0.96", - "Dp": "36", - "p": { - "31": { - "n": 6, - "g": 1 - }, - "32": { - "n": 7.5, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 12 - }, - { - "i": 954, - "n": "Remy", - "f": "Lo\u00efc", - "p": "A", - "r": 16, - "s": { - "n": 0, - "Og": "7", - "Os": "129", - "On": "26", - "Oa": "4.96", - "Od": "0.95", - "Ap": "26", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - }, - "34": { - "n": 6.5, - "g": 1 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 12 - }, - { - "i": 1020, - "n": "Pied", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "54", - "On": "11", - "Oa": "4.95", - "Od": "0.81", - "Dp": "11", - "p": { - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 12 - }, - { - "i": 1167, - "n": "Thiago Maia", - "f": "", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "122", - "On": "24", - "Oa": "5.08", - "Od": "0.7", - "Mp": "24", - "p": { - "31": { - "n": 5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 1184, - "n": "Jakubech", - "f": "Adam", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1202, - "n": "Boukholda", - "f": "Chahreddine", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1215, - "n": "Luiz Araujo", - "f": "", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "3", - "Os": "118", - "On": "25", - "Oa": "4.74", - "Od": "0.6", - "Mp": "6", - "Ap": "19", - "p": { - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 6, - "g": 1, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 12 - }, - { - "i": 1226, - "n": "Dabila", - "f": "Kouadio", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "62", - "On": "12", - "Oa": "5.21", - "Od": "0.69", - "Dp": "12" - }, - "c": 12 - }, - { - "i": 1234, - "n": "Edgar I\u00e9", - "f": "", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "77", - "On": "16", - "Oa": "4.81", - "Od": "0.75", - "Dp": "16", - "p": { - "31": { - "n": 3.5, - "e": 3041, - "c": 8 - }, - "33": { - "n": 4.5, - "e": 3055, - "c": 8 - }, - "34": { - "n": 5, - "e": 3067, - "c": 8 - } - } - }, - "c": 12 - }, - { - "i": 1267, - "n": "Sadzoute", - "f": "Scotty", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1276, - "n": "Faraj", - "f": "Imad", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 1541, - "n": "Koffi", - "f": "Kouakou", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2037, - "n": "Verite", - "f": "Benjamin", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2039, - "n": "Soumare", - "f": "Boubakary", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "93", - "On": "18", - "Oa": "5.17", - "Od": "0.78", - "Mp": "18", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 7 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 2082, - "n": "Flips", - "f": "Alexis", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2328, - "n": "Weah", - "f": "Timothy", - "p": "A", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "10", - "On": "2", - "Oa": "5", - "Od": "1", - "Ap": "2" - }, - "c": 12 - }, - { - "i": 2512, - "n": "Rui Fonte", - "f": "", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "1", - "Os": "81", - "On": "18", - "Oa": "4.53", - "Od": "0.51", - "Ap": "18", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 6, - "g": 1, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2652, - "n": "Postolachi", - "f": "Virgiliu", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2714, - "n": "Zeki \u00c7elik", - "f": "Mehmet", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "175", - "On": "34", - "Oa": "5.16", - "Od": "0.71", - "Dp": "34", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 7.5, - "g": 1 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - } - } - }, - "c": 12 - }, - { - "i": 2738, - "n": "Gabriel", - "f": "", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "81", - "On": "14", - "Oa": "5.82", - "Od": "0.88", - "Dp": "14", - "p": { - "32": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 7 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2771, - "n": "Zekaj", - "f": "Arton", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 12 - }, - { - "i": 2784, - "n": "Ouro-Sama", - "f": "Hakim", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 2791, - "n": "Rafael Le\u00e3o", - "f": "", - "p": "A", - "r": 24, - "s": { - "n": 0, - "Og": "8", - "Os": "122", - "On": "24", - "Oa": "5.1", - "Od": "1.04", - "Ap": "24", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 12 - }, - { - "i": 2859, - "n": "Fernando Costanza", - "f": "", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3122, - "n": "Niasse", - "f": "Cheikh", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3123, - "n": "Okou", - "f": "Teddy", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3359, - "n": "Reinildo", - "f": "", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.67", - "Od": "0.47", - "Dp": "3", - "p": { - "35": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4 - } - } - }, - "c": 12 - }, - { - "i": 3751, - "n": "Agouzoul", - "f": "Saad", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3796, - "n": "L\u00e9o Jardim", - "f": "", - "p": "G", - "r": 8, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 4031, - "n": "Bradaric", - "f": "Domagoj", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 12 - }, - { - "i": 3, - "n": "Falcao", - "f": "Radamel", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "15", - "Os": "165", - "On": "33", - "Oa": "5.02", - "Od": "1.31", - "Ap": "33", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4 - }, - "34": { - "n": 7.5, - "g": 2 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6, - "g": 1 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 19, - "n": "Subasic", - "f": "Danijel", - "p": "G", - "r": 9, - "s": { - "n": 0, - "Os": "76", - "On": "14", - "Oa": "5.43", - "Od": "0.98", - "Gp": "14", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "35": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 24, - "n": "Sidibe", - "f": "Djibril", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "118", - "On": "26", - "Oa": "4.56", - "Od": "0.74", - "Mp": "5", - "Dp": "21", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 3 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 4 - } - } - }, - "c": 13 - }, - { - "i": 50, - "n": "Glik", - "f": "Kamil", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "160", - "On": "33", - "Oa": "4.86", - "Od": "0.96", - "Dp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 94, - "n": "Jemerson", - "f": "", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "127", - "On": "25", - "Oa": "5.08", - "Od": "0.84", - "Mp": "5", - "Dp": "20", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 13 - }, - { - "i": 140, - "n": "Boschilia", - "f": "Gabriel", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "4", - "Os": "146", - "On": "29", - "Oa": "5.05", - "Od": "1.02", - "Mp": "6", - "Ap": "23", - "p": { - "31": { - "n": 5, - "e": 3041, - "c": 8 - }, - "32": { - "n": 5, - "e": 3048, - "c": 8, - "s": 1 - }, - "34": { - "n": 4.5, - "e": 3067, - "c": 8, - "s": 1 - }, - "35": { - "n": 4.5, - "e": 3077, - "c": 8, - "s": 1 - }, - "36": { - "n": 4.5, - "e": 3088, - "c": 8, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 208, - "n": "A\u00eft Bennasser", - "f": "Youssef", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "143", - "On": "26", - "Oa": "5.52", - "Od": "0.98", - "Mp": "26", - "p": { - "32": { - "n": 4.5, - "e": 3050, - "c": 4, - "s": 1 - }, - "33": { - "n": 6.5, - "e": 3059, - "c": 4 - }, - "35": { - "n": 5, - "e": 3075, - "c": 4, - "s": 1 - }, - "36": { - "n": 5.5, - "e": 3091, - "c": 4 - }, - "37": { - "n": 5, - "e": 3099, - "c": 4 - } - } - }, - "c": 13 - }, - { - "i": 250, - "n": "Lecomte", - "f": "Benjamin", - "p": "G", - "r": 20, - "s": { - "n": 0, - "Os": "206", - "On": "37", - "Oa": "5.57", - "Od": "0.86", - "Gp": "37", - "p": { - "31": { - "n": 5.5, - "e": 3037, - "c": 15 - }, - "32": { - "n": 5, - "e": 3047, - "c": 15 - }, - "33": { - "n": 5, - "e": 3060, - "c": 15 - }, - "34": { - "n": 5, - "e": 3068, - "c": 15 - }, - "35": { - "n": 4.5, - "e": 3076, - "c": 15 - }, - "36": { - "n": 7.5, - "e": 3091, - "c": 15 - }, - "37": { - "n": 3.5, - "e": 3097, - "c": 15 - }, - "38": { - "n": 5, - "e": 3106, - "c": 15 - } - } - }, - "c": 13 - }, - { - "i": 274, - "n": "Almamy Tour\u00e9", - "f": "", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.63", - "Od": "0.41", - "Dp": "4" - }, - "c": 13 - }, - { - "i": 275, - "n": "Raggi", - "f": "Andrea", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "28", - "On": "6", - "Oa": "4.75", - "Od": "0.75", - "Mp": "1", - "Dp": "5" - }, - "c": 13 - }, - { - "i": 284, - "n": "Rony Lopes", - "f": "", - "p": "M", - "r": 19, - "s": { - "n": 0, - "Og": "2", - "Os": "124", - "On": "24", - "Oa": "5.17", - "Od": "1.08", - "Mp": "20", - "Ap": "4", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 336, - "n": "Jorge", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 368, - "n": "Pierre Gabriel", - "f": "Ronael", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "21", - "On": "4", - "Oa": "5.38", - "Od": "0.41", - "Dp": "4" - }, - "c": 13 - }, - { - "i": 405, - "n": "Gaspar", - "f": "Jordy", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 573, - "n": "Sy", - "f": "Seydou", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "11", - "On": "3", - "Oa": "3.83", - "Od": "0.62", - "Gp": "3", - "p": { - "34": { - "n": 4.5 - }, - "35": { - "n": 3, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 580, - "n": "Cardona", - "f": "Irvin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 646, - "n": "F\u00e0bregas", - "f": "Cesc", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "1", - "Os": "90", - "On": "18", - "Oa": "5", - "Od": "0.47", - "Mp": "18", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 698, - "n": "Chadli", - "f": "Nacer", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "73", - "On": "16", - "Oa": "4.56", - "Od": "0.5", - "Mp": "16", - "p": { - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 884, - "n": "Adama Traor\u00e9 II", - "f": "", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "28", - "On": "6", - "Oa": "4.67", - "Od": "0.47", - "Mp": "5", - "Ap": "1" - }, - "c": 13 - }, - { - "i": 1201, - "n": "Mboula", - "f": "Jordi", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Os": "31", - "On": "7", - "Oa": "4.43", - "Od": "0.49", - "Mp": "3", - "Ap": "4" - }, - "c": 13 - }, - { - "i": 1216, - "n": "Lacina Traor\u00e9", - "f": "", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 1254, - "n": "Benaglio", - "f": "Diego", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "119", - "On": "23", - "Oa": "5.17", - "Od": "0.93", - "Gp": "23", - "p": { - "33": { - "n": 4, - "s": 1 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 1256, - "n": "Ballo-Toure", - "f": "Fode", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Oao": "1", - "Os": "182", - "On": "36", - "Oa": "5.06", - "Od": "0.81", - "Mp": "3", - "Dp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 3.5, - "a": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 1275, - "n": "Sylla", - "f": "Moussa", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "75", - "On": "18", - "Oa": "4.19", - "Od": "0.48", - "Mp": "1", - "Ap": "17", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1433, - "n": "Aholou", - "f": "Jean Eudes", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "85", - "On": "17", - "Oa": "5.03", - "Od": "0.85", - "Mp": "17", - "p": { - "32": { - "n": 6, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 3.5 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 1523, - "n": "Jovetic", - "f": "Stevan", - "p": "A", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "41", - "On": "8", - "Oa": "5.19", - "Od": "0.83", - "Mp": "2", - "Ap": "6", - "p": { - "31": { - "n": 6, - "g": 1, - "s": 1 - }, - "32": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 2034, - "n": "Keita", - "f": "", - "p": "A", - "r": 18, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2038, - "n": "Geubbels", - "f": "Willem", - "p": "A", - "r": 2, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1" - }, - "c": 13 - }, - { - "i": 2040, - "n": "Serrano", - "f": "Julien", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5", - "Mp": "1", - "Dp": "2" - }, - "c": 13 - }, - { - "i": 2145, - "n": "Faivre", - "f": "Romain", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "3", - "On": "1", - "Oa": "3.5", - "Mp": "1" - }, - "c": 13 - }, - { - "i": 2275, - "n": "Pellegri", - "f": "Pietro", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "15", - "On": "3", - "Oa": "5", - "Od": "1.08", - "Ap": "3" - }, - "c": 13 - }, - { - "i": 2459, - "n": "Gelson Martins", - "f": "", - "p": "A", - "r": 22, - "s": { - "n": 0, - "Og": "4", - "Os": "119", - "On": "24", - "Oa": "4.98", - "Od": "0.96", - "Mp": "16", - "Ap": "8", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 13 - }, - { - "i": 2614, - "n": "Pel\u00e9", - "f": "", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "36", - "On": "8", - "Oa": "4.56", - "Od": "0.53", - "Mp": "8" - }, - "c": 13 - }, - { - "i": 2622, - "n": "Diop", - "f": "Sofiane", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "57", - "On": "13", - "Oa": "4.42", - "Od": "0.51", - "Mp": "12", - "Ap": "1" - }, - "c": 13 - }, - { - "i": 2623, - "n": "Robert Navarro", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2672, - "n": "Mbae", - "f": "Safwan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2691, - "n": "Mexique", - "f": "Jonathan", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2693, - "n": "Panzo", - "f": "Jonathan", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2720, - "n": "Golovin", - "f": "Aleksandr", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "3", - "Os": "148", - "On": "30", - "Oa": "4.93", - "Od": "0.98", - "Mp": "22", - "Ap": "8", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 7.5, - "g": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 13 - }, - { - "i": 2797, - "n": "Echi\u00e9jil\u00e9", - "f": "Elderson", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2833, - "n": "Henrichs", - "f": "Benjamin", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "103", - "On": "22", - "Oa": "4.68", - "Od": "0.68", - "Mp": "9", - "Dp": "13", - "p": { - "33": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 13 - }, - { - "i": 2892, - "n": "Isidor", - "f": "Wilson", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Ap": "1" - }, - "c": 13 - }, - { - "i": 2954, - "n": "Massengo", - "f": "Han-Noah", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 13 - }, - { - "i": 2955, - "n": "Gouano", - "f": "Gobe", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2956, - "n": "Biancone", - "f": "Giulian", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Dp": "1" - }, - "c": 13 - }, - { - "i": 2958, - "n": "Henin", - "f": "Yanis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 2961, - "n": "Badiashile Mukinayi", - "f": "Benoit", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "75", - "On": "16", - "Oa": "4.69", - "Od": "1.01", - "Dp": "16", - "p": { - "33": { - "n": 3.5 - }, - "34": { - "n": 4 - }, - "38": { - "n": 4, - "a": 1 - } - } - }, - "c": 13 - }, - { - "i": 3498, - "n": "Naldo", - "f": "", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "18", - "On": "4", - "Oa": "4.63", - "Od": "0.41", - "Dp": "4", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 13 - }, - { - "i": 3517, - "n": "Foster", - "f": "Lyle", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 3780, - "n": "Gil Dias", - "f": "", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 4034, - "n": "Hagege", - "f": "Hugo", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 13 - }, - { - "i": 40, - "n": "Delort", - "f": "Andy", - "p": "A", - "r": 30, - "s": { - "n": 0, - "Og": "14", - "Os": "199", - "On": "36", - "Oa": "5.53", - "Od": "0.96", - "Ap": "36", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 8, - "g": 2 - }, - "34": { - "n": 6, - "g": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 43, - "n": "Sio", - "f": "Giovanni", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1" - }, - "c": 15 - }, - { - "i": 114, - "n": "Skhiri", - "f": "Ellyes", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "3", - "Os": "207", - "On": "37", - "Oa": "5.59", - "Od": "0.86", - "Mp": "37", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 7, - "g": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 7.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 150, - "n": "Hilton", - "f": "", - "p": "D", - "r": 17, - "s": { - "n": 0, - "Oao": "1", - "Os": "194", - "On": "36", - "Oa": "5.39", - "Od": "0.88", - "Dp": "36", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 153, - "n": "Pedro Mendes", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "165", - "On": "31", - "Oa": "5.34", - "Od": "0.68", - "Dp": "31", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 197, - "n": "Congr\u00e9", - "f": "Daniel", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "2", - "Os": "188", - "On": "37", - "Oa": "5.08", - "Od": "0.85", - "Dp": "37", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 212, - "n": "Ferri", - "f": "Jordan", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "145", - "On": "28", - "Oa": "5.2", - "Od": "1.02", - "Mp": "28", - "p": { - "31": { - "n": 5, - "e": 3038, - "c": 67, - "s": 1 - }, - "32": { - "n": 5.5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 5, - "e": 3057, - "c": 67 - }, - "35": { - "n": 6.5, - "e": 3079, - "c": 67, - "g": 1 - }, - "36": { - "n": 6, - "e": 3089, - "c": 67 - }, - "37": { - "n": 6, - "e": 3093, - "c": 67 - }, - "38": { - "n": 6, - "e": 3109, - "c": 67 - } - } - }, - "c": 15 - }, - { - "i": 227, - "n": "Lasne", - "f": "Paul", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "178", - "On": "35", - "Oa": "5.1", - "Od": "0.83", - "Mp": "35", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 6 - } - } - }, - "c": 15 - }, - { - "i": 232, - "n": "Camara", - "f": "Souleymane", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "3", - "Os": "60", - "On": "12", - "Oa": "5", - "Od": "0.84", - "Ap": "12", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "34": { - "n": 6.5, - "g": 1, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 243, - "n": "Laborde", - "f": "Gaetan", - "p": "A", - "r": 22, - "s": { - "n": 0, - "Og": "11", - "Os": "190", - "On": "37", - "Oa": "5.14", - "Od": "1.32", - "Mp": "1", - "Ap": "36", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 7, - "g": 1 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 15 - }, - { - "i": 320, - "n": "Mollet", - "f": "Florent", - "p": "M", - "r": 22, - "s": { - "n": 0, - "Og": "6", - "Os": "178", - "On": "32", - "Oa": "5.56", - "Od": "0.97", - "Mp": "3", - "Ap": "29", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7, - "g": 1 - } - } - }, - "c": 15 - }, - { - "i": 410, - "n": "Ligali", - "f": "Jonathan", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 440, - "n": "Dolly", - "f": "Keagan", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "12", - "On": "3", - "Oa": "4.17", - "Od": "0.47", - "Mp": "1", - "Ap": "2" - }, - "c": 15 - }, - { - "i": 535, - "n": "Porsan-Clemente", - "f": "J\u00e9r\u00e9mie", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 541, - "n": "Sanson", - "f": "Killian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 1186, - "n": "P\u00edriz", - "f": "Facundo", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "29", - "On": "6", - "Oa": "4.92", - "Od": "0.34", - "Mp": "6" - }, - "c": 15 - }, - { - "i": 1227, - "n": "Aguilar", - "f": "Ruben", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "153", - "On": "29", - "Oa": "5.28", - "Od": "0.96", - "Mp": "27", - "Dp": "2", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 7 - }, - "33": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 1242, - "n": "Bertaud", - "f": "Dimitry", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1" - }, - "c": 15 - }, - { - "i": 1244, - "n": "Cozza", - "f": "Nicolas", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "56", - "On": "12", - "Oa": "4.71", - "Od": "1.18", - "Dp": "12", - "p": { - "37": { - "n": 3.5 - } - } - }, - "c": 15 - }, - { - "i": 1532, - "n": "Junior Sambia", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "146", - "On": "30", - "Oa": "4.88", - "Od": "0.36", - "Mp": "26", - "Ap": "4", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5.5, - "s": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 2268, - "n": "Oyongo", - "f": "Ambroise", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Og": "2", - "Oao": "1", - "Os": "126", - "On": "26", - "Oa": "4.87", - "Od": "0.93", - "Mp": "25", - "Dp": "1", - "p": { - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 3.5, - "a": 1 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 2326, - "n": "Ammour", - "f": "Yannis", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 15 - }, - { - "i": 2613, - "n": "Skuletic", - "f": "Petar", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "128", - "On": "28", - "Oa": "4.59", - "Od": "0.58", - "Ap": "28", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 2617, - "n": "Le Tallec", - "f": "Damien", - "p": "D", - "r": 17, - "s": { - "n": 0, - "Og": "3", - "Os": "193", - "On": "36", - "Oa": "5.36", - "Od": "0.92", - "Mp": "31", - "Dp": "5", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5 - } - } - }, - "c": 15 - }, - { - "i": 2636, - "n": "Adouyev", - "f": "Amir", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2637, - "n": "Kaiboue", - "f": "Kylian", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2638, - "n": "Vidal", - "f": "Clement", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2733, - "n": "Savanier", - "f": "T\u00e9ji", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "6", - "Os": "193", - "On": "32", - "Oa": "6.03", - "Od": "1.22", - "Mp": "32", - "p": { - "31": { - "n": 6, - "e": 3038, - "c": 67 - }, - "32": { - "n": 6.5, - "e": 3045, - "c": 67, - "g": 1 - }, - "33": { - "n": 7.5, - "e": 3057, - "c": 67, - "g": 1 - }, - "34": { - "n": 2.5, - "e": 3066, - "c": 67 - }, - "35": { - "n": 7.5, - "e": 3079, - "c": 67 - }, - "36": { - "n": 6, - "e": 3089, - "c": 67 - }, - "38": { - "n": 6, - "e": 3109, - "c": 67 - } - } - }, - "c": 15 - }, - { - "i": 2936, - "n": "Carvalho", - "f": "Matis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 2995, - "n": "Su\u00e1rez", - "f": "Math\u00edas", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "46", - "On": "10", - "Oa": "4.6", - "Od": "0.49", - "Mp": "7", - "Dp": "3", - "p": { - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 15 - }, - { - "i": 3126, - "n": "Ristic", - "f": "Mihailo", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "49", - "On": "10", - "Oa": "4.9", - "Od": "0.58", - "Mp": "3", - "Dp": "7", - "p": { - "31": { - "n": 4 - }, - "36": { - "n": 5.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 15 - }, - { - "i": 3520, - "n": "Boutobba", - "f": "Bilal", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 15 - }, - { - "i": 108, - "n": "Mangani", - "f": "Thomas", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "141", - "On": "29", - "Oa": "4.86", - "Od": "0.88", - "Mp": "29", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 113, - "n": "Santamar\u00eda", - "f": "Baptiste", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Os": "198", - "On": "38", - "Oa": "5.21", - "Od": "0.89", - "Mp": "38", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 143, - "n": "Thomas", - "f": "Romain", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Oao": "1", - "Os": "144", - "On": "28", - "Oa": "5.16", - "Od": "1.12", - "Dp": "28", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 6 - }, - "34": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 159, - "n": "Traor\u00e9", - "f": "Ismael", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "3", - "Os": "151", - "On": "30", - "Oa": "5.05", - "Od": "0.95", - "Dp": "30", - "p": { - "31": { - "n": 4.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 176, - "n": "Pajot", - "f": "Vincent", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "61", - "On": "13", - "Oa": "4.73", - "Od": "0.58", - "Mp": "13", - "p": { - "32": { - "n": 5.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 202, - "n": "Capelle", - "f": "Pierrick", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "134", - "On": "26", - "Oa": "5.17", - "Od": "0.99", - "Mp": "19", - "Dp": "7", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 7.5 - }, - "33": { - "n": 4 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 214, - "n": "Manceau", - "f": "Vincent", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "160", - "On": "31", - "Oa": "5.16", - "Od": "1.07", - "Mp": "4", - "Dp": "27", - "p": { - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 235, - "n": "Pavlovic", - "f": "Mateo", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "158", - "On": "30", - "Oa": "5.27", - "Od": "1", - "Dp": "30", - "p": { - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 2 - }, - "38": { - "n": 6 - } - } - }, - "c": 16 - }, - { - "i": 262, - "n": "Andreu", - "f": "Yoann", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1" - }, - "c": 16 - }, - { - "i": 283, - "n": "Lassana Coulibaly", - "f": "", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 287, - "n": "Bamba", - "f": "Abdoulaye", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "153", - "On": "30", - "Oa": "5.1", - "Od": "0.84", - "Mp": "5", - "Dp": "25", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 343, - "n": "Puyo", - "f": "Lo\u00efc", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 378, - "n": "Pellenard", - "f": "Th\u00e9o", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "27", - "On": "6", - "Oa": "4.58", - "Od": "0.98", - "Mp": "1", - "Dp": "5", - "p": { - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 390, - "n": "Mandrea", - "f": "Anthony", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 454, - "n": "Dor\u00e9", - "f": "F\u00e9r\u00e9bory", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 477, - "n": "Ketkeophomphone", - "f": "Billy", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 510, - "n": "Letellier", - "f": "Alexandre", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 1069, - "n": "Reine-Ad\u00e9la\u00efde", - "f": "Jeff", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "3", - "Os": "174", - "On": "35", - "Oa": "4.97", - "Od": "0.88", - "Mp": "18", - "Ap": "17", - "p": { - "31": { - "n": 7.5, - "g": 2 - }, - "32": { - "n": 6.5, - "g": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 1179, - "n": "Fulgini", - "f": "Angelo", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "4", - "Os": "156", - "On": "31", - "Oa": "5.03", - "Od": "0.97", - "Mp": "25", - "Ap": "6", - "p": { - "31": { - "n": 5 - }, - "33": { - "n": 5.5, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 3 - }, - "38": { - "n": 5 - } - } - }, - "c": 16 - }, - { - "i": 1189, - "n": "Ciss", - "f": "Saliou", - "p": "D", - "r": 8, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 1235, - "n": "Kanga", - "f": "Wilfried", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "83", - "On": "18", - "Oa": "4.64", - "Od": "0.76", - "Ap": "18", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 1401, - "n": "Bahoken", - "f": "St\u00e9phane", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "11", - "Os": "155", - "On": "32", - "Oa": "4.84", - "Od": "1.15", - "Ap": "32", - "p": { - "31": { - "n": 6, - "g": 1 - }, - "34": { - "n": 4 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 3 - }, - "38": { - "n": 4 - } - } - }, - "c": 16 - }, - { - "i": 2136, - "n": "Butelle", - "f": "Ludovic", - "p": "G", - "r": 20, - "s": { - "n": 0, - "Os": "203", - "On": "36", - "Oa": "5.64", - "Od": "1.05", - "Gp": "36", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 6 - }, - "33": { - "n": 7.5 - }, - "34": { - "n": 5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 16 - }, - { - "i": 2646, - "n": "Ait Nouri", - "f": "Rayan", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.94", - "Dp": "3", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "37": { - "n": 3, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2698, - "n": "Thioub", - "f": "Sada", - "p": "A", - "r": 15, - "s": { - "n": 0, - "Og": "3", - "Os": "191", - "On": "38", - "Oa": "5.03", - "Od": "1.12", - "Mp": "16", - "Ap": "22", - "p": { - "31": { - "n": 5.5, - "e": 3038, - "c": 67, - "s": 1 - }, - "32": { - "n": 5.5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 4.5, - "e": 3057, - "c": 67, - "s": 1 - }, - "34": { - "n": 2.5, - "e": 3066, - "c": 67 - }, - "35": { - "n": 5, - "e": 3079, - "c": 67 - }, - "36": { - "n": 5.5, - "e": 3089, - "c": 67 - }, - "37": { - "n": 5, - "e": 3093, - "c": 67 - }, - "38": { - "n": 5, - "e": 3109, - "c": 67 - } - } - }, - "c": 16 - }, - { - "i": 2731, - "n": "Alioui", - "f": "Rachid", - "p": "A", - "r": 18, - "s": { - "n": 0, - "Og": "5", - "Os": "133", - "On": "27", - "Oa": "4.94", - "Od": "0.82", - "Ap": "27", - "p": { - "31": { - "n": 5, - "e": 3038, - "c": 67, - "s": 1 - }, - "32": { - "n": 3.5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 5, - "e": 3057, - "c": 67 - }, - "34": { - "n": 4, - "e": 3066, - "c": 67, - "s": 1 - }, - "36": { - "n": 4, - "e": 3089, - "c": 67, - "s": 1 - }, - "37": { - "n": 5, - "e": 3093, - "c": 67, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2793, - "n": "Cisse", - "f": "Ibrahim", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2822, - "n": "N'Doye", - "f": "Cheikh", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "128", - "On": "26", - "Oa": "4.92", - "Od": "0.76", - "Mp": "26" - }, - "c": 16 - }, - { - "i": 2831, - "n": "El Melali", - "f": "Farid", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "80", - "On": "17", - "Oa": "4.71", - "Od": "0.39", - "Mp": "17", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 16 - }, - { - "i": 2866, - "n": "Cristian", - "f": "", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Og": "2", - "Os": "85", - "On": "19", - "Oa": "4.5", - "Od": "0.71", - "Ap": "19", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4.5 - } - } - }, - "c": 16 - }, - { - "i": 2890, - "n": "Mancini", - "f": "Anthony", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 2944, - "n": "Mouanga", - "f": "Kevin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 3528, - "n": "Soula", - "f": "Mazire", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 3769, - "n": "Masson", - "f": "Julien", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 4037, - "n": "Petkovic", - "f": "Danijel", - "p": "G", - "r": 9, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 5456, - "n": "Ould Khaled", - "f": "Zin\u00e9dine", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 16 - }, - { - "i": 72, - "n": "Depay", - "f": "Memphis", - "p": "A", - "r": 23, - "s": { - "n": 0, - "Og": "10", - "Os": "197", - "On": "36", - "Oa": "5.49", - "Od": "1.24", - "Mp": "9", - "Ap": "27", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 6.5, - "g": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5 - }, - "37": { - "n": 8, - "g": 2 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 130, - "n": "Cornet", - "f": "Maxwel", - "p": "A", - "r": 13, - "s": { - "n": 0, - "Og": "7", - "Os": "137", - "On": "27", - "Oa": "5.09", - "Od": "1.16", - "Mp": "8", - "Ap": "19", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7, - "g": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 8, - "g": 2 - }, - "37": { - "n": 8, - "g": 1 - }, - "38": { - "n": 7.5, - "g": 2 - } - } - }, - "c": 18 - }, - { - "i": 146, - "n": "Yanga-Mbiwa", - "f": "Mapou", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 204, - "n": "Mar\u00e7al", - "f": "", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "63", - "On": "12", - "Oa": "5.29", - "Od": "0.43", - "Dp": "12", - "p": { - "32": { - "n": 5 - } - } - }, - "c": 18 - }, - { - "i": 244, - "n": "Dubois", - "f": "L\u00e9o", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "134", - "On": "25", - "Oa": "5.36", - "Od": "1", - "Mp": "1", - "Dp": "24", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5, - "g": 1 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 256, - "n": "Rafael", - "f": "", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Oao": "1", - "Os": "89", - "On": "18", - "Oa": "4.97", - "Od": "0.75", - "Mp": "1", - "Dp": "17", - "p": { - "31": { - "n": 2.5, - "a": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 409, - "n": "Terrier", - "f": "Martin", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "9", - "Os": "174", - "On": "32", - "Oa": "5.45", - "Od": "0.84", - "Mp": "26", - "Ap": "6", - "p": { - "31": { - "n": 5.5, - "g": 1 - }, - "32": { - "n": 6, - "g": 1 - }, - "33": { - "n": 7.5, - "g": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5.5, - "g": 1 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 423, - "n": "Tousart", - "f": "Lucas", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "154", - "On": "30", - "Oa": "5.15", - "Od": "0.77", - "Mp": "30", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4, - "a": 1, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 527, - "n": "Kone", - "f": "Youssouf", - "p": "D", - "r": 15, - "s": { - "n": 0, - "Os": "108", - "On": "20", - "Oa": "5.43", - "Od": "0.79", - "Dp": "20", - "p": { - "31": { - "n": 5, - "e": 3040, - "c": 12 - }, - "32": { - "n": 6.5, - "e": 3044, - "c": 12 - }, - "33": { - "n": 5, - "e": 3061, - "c": 12 - }, - "34": { - "n": 7.5, - "e": 3066, - "c": 12 - }, - "35": { - "n": 4.5, - "e": 3074, - "c": 12 - }, - "36": { - "n": 6, - "e": 3086, - "c": 12 - }, - "37": { - "n": 6, - "e": 3094, - "c": 12 - } - } - }, - "c": 18 - }, - { - "i": 537, - "n": "Aouar", - "f": "Houssem", - "p": "M", - "r": 24, - "s": { - "n": 0, - "Og": "7", - "Os": "201", - "On": "37", - "Oa": "5.45", - "Od": "1.1", - "Mp": "36", - "Ap": "1", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 8 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 7 - }, - "37": { - "n": 7 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 18 - }, - { - "i": 1052, - "n": "Denayer", - "f": "Jason", - "p": "D", - "r": 19, - "s": { - "n": 0, - "Og": "2", - "Os": "164", - "On": "31", - "Oa": "5.29", - "Od": "0.96", - "Dp": "31", - "p": { - "31": { - "n": 3 - }, - "32": { - "n": 4 - }, - "33": { - "n": 6 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 1161, - "n": "Traor\u00e9", - "f": "Bertrand", - "p": "A", - "r": 17, - "s": { - "n": 0, - "Og": "7", - "Os": "176", - "On": "34", - "Oa": "5.19", - "Od": "1.06", - "Mp": "22", - "Ap": "12", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 18 - }, - { - "i": 1163, - "n": "Tatarusanu", - "f": "Ciprian", - "p": "G", - "r": 10, - "s": { - "n": 0, - "Os": "152", - "On": "27", - "Oa": "5.63", - "Od": "1", - "Gp": "27", - "p": { - "31": { - "n": 8, - "e": 3041, - "c": 8 - }, - "32": { - "n": 6, - "e": 3048, - "c": 8 - } - } - }, - "c": 18 - }, - { - "i": 1176, - "n": "Tete", - "f": "Kenny", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Os": "64", - "On": "13", - "Oa": "4.96", - "Od": "1.01", - "Mp": "6", - "Dp": "7", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 1191, - "n": "Thiago Mendes", - "f": "", - "p": "M", - "r": 27, - "s": { - "n": 0, - "Os": "214", - "On": "35", - "Oa": "6.13", - "Od": "0.92", - "Mp": "35", - "p": { - "31": { - "n": 6.5, - "e": 3040, - "c": 12 - }, - "32": { - "n": 6.5, - "e": 3044, - "c": 12 - }, - "33": { - "n": 6, - "e": 3061, - "c": 12 - }, - "34": { - "n": 8, - "e": 3066, - "c": 12 - }, - "36": { - "n": 6, - "e": 3086, - "c": 12 - }, - "37": { - "n": 7.5, - "e": 3094, - "c": 12 - }, - "38": { - "n": 4.5, - "e": 3111, - "c": 12 - } - } - }, - "c": 18 - }, - { - "i": 1210, - "n": "Gouiri", - "f": "Amine", - "p": "A", - "r": 2, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 1524, - "n": "Anthony Lopes", - "f": "", - "p": "G", - "r": 24, - "s": { - "n": 0, - "Os": "187", - "On": "34", - "Oa": "5.51", - "Od": "1.03", - "Gp": "34", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 8 - }, - "37": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 1527, - "n": "Pape Cheikh", - "f": "", - "p": "M", - "r": 6, - "s": { - "n": 0, - "Os": "56", - "On": "12", - "Oa": "4.71", - "Od": "0.43", - "Mp": "12" - }, - "c": 18 - }, - { - "i": 1545, - "n": "Martins Pereira", - "f": "Christopher", - "p": "M", - "r": 6, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2032, - "n": "Marcelo", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Oao": "1", - "Os": "184", - "On": "33", - "Oa": "5.58", - "Od": "0.8", - "Dp": "33", - "p": { - "31": { - "n": 4, - "a": 1 - }, - "33": { - "n": 6 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 18 - }, - { - "i": 2277, - "n": "Solet", - "f": "Oumar", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Dp": "1" - }, - "c": 18 - }, - { - "i": 2624, - "n": "Fekir", - "f": "Yassin", - "p": "A", - "r": 1, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1" - }, - "c": 18 - }, - { - "i": 2665, - "n": "Racioppi", - "f": "Anthony", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2681, - "n": "Griffiths", - "f": "Reo", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2685, - "n": "Caqueret", - "f": "Maxence", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 2861, - "n": "Dembele", - "f": "Moussa", - "p": "A", - "r": 29, - "s": { - "n": 0, - "Og": "15", - "Os": "176", - "On": "33", - "Oa": "5.35", - "Od": "1.16", - "Ap": "33", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 6, - "g": 1, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 6, - "g": 1, - "s": 1 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 18 - }, - { - "i": 2868, - "n": "Pintor", - "f": "Lenny", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Ap": "1" - }, - "c": 18 - }, - { - "i": 2952, - "n": "Ndiaye", - "f": "Ousseynou", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 3760, - "n": "Fofana", - "f": "Boubacar", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 3761, - "n": "Jean Lucas", - "f": "", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 3799, - "n": "Andersen", - "f": "Joachim", - "p": "D", - "r": 24, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 5459, - "n": "Augarreau", - "f": "Cedric", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 5460, - "n": "Kitala", - "f": "Yann", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 18 - }, - { - "i": 11, - "n": "Cyprien", - "f": "Wylan", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "4", - "Os": "158", - "On": "29", - "Oa": "5.47", - "Od": "1.15", - "Mp": "29", - "p": { - "31": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 30, - "n": "Saint-Maximin", - "f": "Allan", - "p": "M", - "r": 20, - "s": { - "n": 0, - "Og": "6", - "Os": "172", - "On": "34", - "Oa": "5.06", - "Od": "1.1", - "Mp": "3", - "Ap": "31", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 70, - "n": "Dante", - "f": "", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "1", - "Os": "191", - "On": "36", - "Oa": "5.31", - "Od": "0.95", - "Dp": "36", - "p": { - "31": { - "n": 7.5, - "g": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 71, - "n": "Lees-Melou", - "f": "Pierre", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "2", - "Os": "159", - "On": "30", - "Oa": "5.3", - "Od": "0.95", - "Mp": "28", - "Ap": "2", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 7 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 96, - "n": "Walter", - "f": "Remi", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "2", - "Os": "99", - "On": "19", - "Oa": "5.21", - "Od": "0.75", - "Mp": "19", - "p": { - "31": { - "n": 6.5, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 129, - "n": "Cardinale", - "f": "Yoan", - "p": "G", - "r": 7, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "1.03", - "Gp": "3" - }, - "c": 19 - }, - { - "i": 217, - "n": "Sarr", - "f": "Malang", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "180", - "On": "35", - "Oa": "5.16", - "Od": "0.85", - "Dp": "35", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 239, - "n": "Ben\u00edtez", - "f": "Walter", - "p": "G", - "r": 27, - "s": { - "n": 0, - "Os": "210", - "On": "35", - "Oa": "6.01", - "Od": "1.32", - "Gp": "35", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 7.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 8 - }, - "36": { - "n": 5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 7 - } - } - }, - "c": 19 - }, - { - "i": 270, - "n": "Souquet", - "f": "Arnaud", - "p": "D", - "r": 12, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 353, - "n": "Lusamba", - "f": "Arnaud", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 447, - "n": "Burner", - "f": "Patrick", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "83", - "On": "17", - "Oa": "4.91", - "Od": "0.9", - "Mp": "4", - "Dp": "13", - "p": { - "31": { - "n": 6.5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 452, - "n": "Srarfi", - "f": "Bassem", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "107", - "On": "22", - "Oa": "4.89", - "Od": "0.69", - "Mp": "15", - "Ap": "7", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 4 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 466, - "n": "Boscagli", - "f": "Olivier", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "70", - "On": "14", - "Oa": "5", - "Od": "0.93", - "Mp": "3", - "Dp": "11", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "37": { - "n": 4 - } - } - }, - "c": 19 - }, - { - "i": 474, - "n": "Marcel", - "f": "Vincent", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 495, - "n": "Lloris", - "f": "Gautier", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 540, - "n": "Mahou", - "f": "Hicham", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 561, - "n": "Le Bihan", - "f": "Mickael", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Og": "1", - "Os": "22", - "On": "5", - "Oa": "4.5", - "Od": "0.84", - "Ap": "5", - "p": { - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 19 - }, - { - "i": 1070, - "n": "Hassen", - "f": "Mouez", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 1204, - "n": "Tameze", - "f": "Adrien", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "195", - "On": "37", - "Oa": "5.28", - "Od": "1.04", - "Mp": "36", - "Dp": "1", - "p": { - "32": { - "n": 5.5, - "s": 1 - }, - "33": { - "n": 5 - }, - "34": { - "n": 7.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 6 - } - } - }, - "c": 19 - }, - { - "i": 1229, - "n": "Maolida", - "f": "Myziane", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Os": "64", - "On": "14", - "Oa": "4.57", - "Od": "0.68", - "Ap": "14" - }, - "c": 19 - }, - { - "i": 1272, - "n": "Ganago", - "f": "Ignatius", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "94", - "On": "20", - "Oa": "4.73", - "Od": "0.77", - "Ap": "20", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "34": { - "n": 4, - "s": 1 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 19 - }, - { - "i": 1426, - "n": "Herelle", - "f": "Christophe", - "p": "D", - "r": 19, - "s": { - "n": 0, - "Os": "178", - "On": "33", - "Oa": "5.41", - "Od": "0.92", - "Dp": "33", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6 - }, - "34": { - "n": 6 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 19 - }, - { - "i": 1439, - "n": "Sacko", - "f": "Ihsan", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "61", - "On": "13", - "Oa": "4.69", - "Od": "0.8", - "Mp": "9", - "Ap": "4", - "p": { - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 6 - }, - "36": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 19 - }, - { - "i": 1540, - "n": "Coly", - "f": "Racine", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "41", - "On": "9", - "Oa": "4.61", - "Od": "0.61", - "Mp": "5", - "Dp": "4", - "p": { - "37": { - "n": 3 - } - } - }, - "c": 19 - }, - { - "i": 2081, - "n": "Clementia", - "f": "Yannis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2144, - "n": "Diaby", - "f": "Mohamed Lamine", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Os": "26", - "On": "6", - "Oa": "4.33", - "Od": "0.24", - "Ap": "6", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 2276, - "n": "Pelmard", - "f": "Andy", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "17", - "On": "4", - "Oa": "4.38", - "Od": "0.96", - "Dp": "4", - "p": { - "36": { - "n": 4 - }, - "37": { - "n": 3 - } - } - }, - "c": 19 - }, - { - "i": 2659, - "n": "Atal", - "f": "Youcef", - "p": "D", - "r": 25, - "s": { - "n": 0, - "Og": "6", - "Os": "154", - "On": "29", - "Oa": "5.33", - "Od": "1.25", - "Mp": "12", - "Dp": "10", - "Ap": "7", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4 - }, - "34": { - "n": 9, - "g": 3 - }, - "35": { - "n": 6 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 19 - }, - { - "i": 2740, - "n": "Danilo", - "f": "", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "106", - "On": "22", - "Oa": "4.82", - "Od": "0.92", - "Mp": "20", - "Ap": "2", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5 - }, - "34": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 19 - }, - { - "i": 2945, - "n": "Hamache", - "f": "Yanis", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2946, - "n": "Sylvestre", - "f": "Eddy", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "0.58", - "Mp": "2", - "Ap": "3" - }, - "c": 19 - }, - { - "i": 2959, - "n": "Kephren Thuram", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 2988, - "n": "Drame", - "f": "Jawad", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 3502, - "n": "Wade", - "f": "Paul", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 3506, - "n": "Pelican", - "f": "Maxime", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Os": "3", - "On": "1", - "Oa": "3.5", - "Ap": "1" - }, - "c": 19 - }, - { - "i": 3527, - "n": "Jaziri", - "f": "Assil", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 3756, - "n": "Pedro Brazao", - "f": "", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 4141, - "n": "Cisse", - "f": "Ibrahim", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 19 - }, - { - "i": 106, - "n": "Baal", - "f": "Ludovic", - "p": "D", - "r": 2, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Od": "0.5", - "Dp": "2", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 117, - "n": "Danz\u00e9", - "f": "Romain", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 156, - "n": "Ben Arfa", - "f": "Hatem", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Og": "7", - "Os": "135", - "On": "26", - "Oa": "5.21", - "Od": "1.19", - "Mp": "13", - "Ap": "13", - "p": { - "31": { - "n": 7, - "g": 2 - }, - "32": { - "n": 6 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 188, - "n": "Da Silva", - "f": "Damien", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "2", - "Os": "174", - "On": "33", - "Oa": "5.27", - "Od": "1.21", - "Dp": "33", - "p": { - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 230, - "n": "Sarr", - "f": "Ismaila", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "8", - "Os": "189", - "On": "35", - "Oa": "5.4", - "Od": "1.04", - "Mp": "24", - "Ap": "11", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 3.5 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 7, - "g": 1 - }, - "37": { - "n": 6 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 20 - }, - { - "i": 248, - "n": "Morel", - "f": "J\u00e9r\u00e9my", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "60", - "On": "12", - "Oa": "5.04", - "Od": "1.11", - "Dp": "12", - "p": { - "36": { - "n": 6, - "e": 3087, - "c": 18 - }, - "37": { - "n": 6, - "e": 3095, - "c": 18 - }, - "38": { - "n": 5, - "e": 3109, - "c": 18 - } - } - }, - "c": 20 - }, - { - "i": 272, - "n": "Bensebaini", - "f": "Ramy", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "124", - "On": "25", - "Oa": "4.96", - "Od": "0.9", - "Dp": "25", - "p": { - "34": { - "n": 5 - }, - "35": { - "n": 6 - }, - "36": { - "n": 4.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 324, - "n": "Badiashile", - "f": "Loic", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 333, - "n": "Hunou", - "f": "Adrien", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "8", - "Os": "99", - "On": "19", - "Oa": "5.21", - "Od": "1.22", - "Mp": "9", - "Ap": "10", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 6, - "g": 1 - }, - "34": { - "n": 7.5, - "g": 2 - }, - "35": { - "n": 5 - }, - "37": { - "n": 6, - "g": 1, - "s": 1 - }, - "38": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 370, - "n": "Tait", - "f": "Flavien", - "p": "M", - "r": 18, - "s": { - "n": 0, - "Og": "5", - "Os": "199", - "On": "36", - "Oa": "5.53", - "Od": "1.04", - "Mp": "23", - "Ap": "13", - "p": { - "31": { - "n": 6, - "e": 3033, - "c": 16 - }, - "32": { - "n": 6, - "e": 3042, - "c": 16 - }, - "33": { - "n": 5.5, - "e": 3054, - "c": 16 - }, - "34": { - "n": 5.5, - "e": 3063, - "c": 16 - }, - "35": { - "n": 5.5, - "e": 3072, - "c": 16 - }, - "36": { - "n": 6, - "e": 3083, - "c": 16, - "g": 1 - }, - "37": { - "n": 5, - "e": 3094, - "c": 16 - }, - "38": { - "n": 5.5, - "e": 3103, - "c": 16 - } - } - }, - "c": 20 - }, - { - "i": 374, - "n": "Salin", - "f": "Romain", - "p": "G", - "r": 6, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 381, - "n": "Chant\u00f4me", - "f": "Cl\u00e9ment", - "p": "M", - "r": 4, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 420, - "n": "Gertmonas", - "f": "Edvinas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 438, - "n": "Zeffane", - "f": "Mehdi", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "98", - "On": "20", - "Oa": "4.9", - "Od": "0.78", - "Mp": "2", - "Dp": "18", - "p": { - "31": { - "n": 4.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5 - } - } - }, - "c": 20 - }, - { - "i": 439, - "n": "Faitout Maouassa", - "f": "", - "p": "M", - "r": 11, - "s": { - "n": 0, - "Os": "133", - "On": "27", - "Oa": "4.94", - "Od": "0.86", - "Mp": "2", - "Dp": "25", - "p": { - "31": { - "n": 6, - "e": 3038, - "c": 67 - }, - "32": { - "n": 5, - "e": 3045, - "c": 67 - }, - "33": { - "n": 5, - "e": 3057, - "c": 67 - }, - "34": { - "n": 5, - "e": 3066, - "c": 67, - "s": 1 - }, - "35": { - "n": 5.5, - "e": 3079, - "c": 67 - }, - "36": { - "n": 6, - "e": 3089, - "c": 67 - }, - "37": { - "n": 4.5, - "e": 3093, - "c": 67 - }, - "38": { - "n": 2.5, - "e": 3109, - "c": 67 - } - } - }, - "c": 20 - }, - { - "i": 491, - "n": "Janvier", - "f": "Nicolas", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Mp": "1" - }, - "c": 20 - }, - { - "i": 528, - "n": "Lea Siliki", - "f": "James", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "120", - "On": "24", - "Oa": "5", - "Od": "0.63", - "Mp": "23", - "Dp": "1", - "p": { - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 532, - "n": "Diallo", - "f": "Namakoro", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 874, - "n": "Sakho", - "f": "Diafra", - "p": "A", - "r": 6, - "s": { - "n": 0, - "Os": "8", - "On": "2", - "Oa": "4", - "Od": "0.5", - "Ap": "2" - }, - "c": 20 - }, - { - "i": 922, - "n": "Niang", - "f": "M'Baye", - "p": "A", - "r": 25, - "s": { - "n": 0, - "Og": "11", - "Os": "152", - "On": "28", - "Oa": "5.45", - "Od": "1.04", - "Mp": "5", - "Ap": "23", - "p": { - "31": { - "n": 7, - "g": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 6, - "g": 1 - }, - "35": { - "n": 7, - "g": 1 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5 - }, - "38": { - "n": 8, - "g": 2 - } - } - }, - "c": 20 - }, - { - "i": 1182, - "n": "Hamari Traor\u00e9", - "f": "", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Os": "166", - "On": "34", - "Oa": "4.88", - "Od": "0.93", - "Mp": "1", - "Dp": "33", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 1187, - "n": "Bourigeaud", - "f": "Benjamin", - "p": "M", - "r": 17, - "s": { - "n": 0, - "Og": "6", - "Os": "172", - "On": "34", - "Oa": "5.07", - "Od": "1.11", - "Mp": "32", - "Ap": "2", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 5.5, - "s": 1 - }, - "34": { - "n": 4 - }, - "35": { - "n": 5.5, - "s": 1 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7, - "g": 1 - } - } - }, - "c": 20 - }, - { - "i": 1194, - "n": "Grenier", - "f": "Cl\u00e9ment", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "2", - "Os": "170", - "On": "33", - "Oa": "5.17", - "Od": "1.01", - "Mp": "32", - "Ap": "1", - "p": { - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 6 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 1206, - "n": "Tell", - "f": "Jordan", - "p": "A", - "r": 6, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1213, - "n": "Diallo", - "f": "Abdoulaye", - "p": "G", - "r": 6, - "s": { - "n": 0, - "Os": "35", - "On": "6", - "Oa": "5.83", - "Od": "1.11", - "Gp": "6" - }, - "c": 20 - }, - { - "i": 1239, - "n": "Del Castillo", - "f": "Romain", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "139", - "On": "29", - "Oa": "4.81", - "Od": "0.76", - "Mp": "27", - "Dp": "1", - "Ap": "1", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "36": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 1252, - "n": "Toufiqui", - "f": "Sabri", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1268, - "n": "Salles-Lamonge", - "f": "Sebastien", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 1526, - "n": "Koubek", - "f": "Tomas", - "p": "G", - "r": 16, - "s": { - "n": 0, - "Os": "175", - "On": "33", - "Oa": "5.3", - "Od": "1.04", - "Gp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 6 - }, - "33": { - "n": 5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 8 - }, - "37": { - "n": 7 - }, - "38": { - "n": 7 - } - } - }, - "c": 20 - }, - { - "i": 2035, - "n": "Nyamsi", - "f": "Gerzino", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "34", - "On": "8", - "Oa": "4.25", - "Od": "0.94", - "Dp": "8", - "p": { - "31": { - "n": 4 - }, - "33": { - "n": 3 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5 - } - } - }, - "c": 20 - }, - { - "i": 2084, - "n": "Gelin", - "f": "Jeremy", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "106", - "On": "22", - "Oa": "4.84", - "Od": "0.71", - "Mp": "5", - "Dp": "17", - "p": { - "31": { - "n": 5.5 - }, - "34": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 20 - }, - { - "i": 2618, - "n": "Johansson", - "f": "Jakob", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "82", - "On": "16", - "Oa": "5.13", - "Od": "0.65", - "Mp": "16", - "p": { - "32": { - "n": 5.5 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 20 - }, - { - "i": 2677, - "n": "Guitane", - "f": "Rafik", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2690, - "n": "Poha", - "f": "Denis", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2" - }, - "c": 20 - }, - { - "i": 2697, - "n": "Jordan Siebatcheu", - "f": "", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "3", - "Os": "73", - "On": "15", - "Oa": "4.87", - "Od": "0.97", - "Ap": "15" - }, - "c": 20 - }, - { - "i": 2787, - "n": "Gboho", - "f": "Yann", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 2819, - "n": "Rutter", - "f": "Georginio", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3125, - "n": "Doumbia", - "f": "Souleyman", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "33", - "On": "7", - "Oa": "4.79", - "Od": "0.92", - "Dp": "7", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "37": { - "n": 6.5 - } - } - }, - "c": 20 - }, - { - "i": 3186, - "n": "Camavinga", - "f": "Eduardo", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "39", - "On": "7", - "Oa": "5.57", - "Od": "0.42", - "Mp": "7", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "37": { - "n": 6 - }, - "38": { - "n": 6 - } - } - }, - "c": 20 - }, - { - "i": 3229, - "n": "Matondo", - "f": "Isaac", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3358, - "n": "Lauriente", - "f": "Armand", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1" - }, - "c": 20 - }, - { - "i": 3522, - "n": "Nkada", - "f": "Timothee", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 3525, - "n": "Boey", - "f": "Sacha", - "p": "D", - "r": 3, - "s": { - "n": 0 - }, - "c": 20 - }, - { - "i": 332, - "n": "Djiku", - "f": "Alexander", - "p": "D", - "r": 12, - "s": { - "n": 0, - "Og": "1", - "Os": "155", - "On": "31", - "Oa": "5.02", - "Od": "1.18", - "Dp": "31", - "p": { - "31": { - "n": 3.5, - "e": 3038, - "c": 5 - }, - "32": { - "n": 4.5, - "e": 3042, - "c": 5 - }, - "33": { - "n": 6, - "e": 3056, - "c": 5, - "g": 1 - }, - "34": { - "n": 6, - "e": 3065, - "c": 5 - }, - "36": { - "n": 5.5, - "e": 3084, - "c": 5 - }, - "37": { - "n": 3, - "e": 3095, - "c": 5 - }, - "38": { - "n": 4, - "e": 3104, - "c": 5 - } - } - }, - "c": 41 - }, - { - "i": 357, - "n": "Thomasson", - "f": "Adrien", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "5", - "Os": "175", - "On": "34", - "Oa": "5.15", - "Od": "0.98", - "Mp": "23", - "Ap": "11", - "p": { - "32": { - "n": 5 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 4 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 442, - "n": "Corgnet", - "f": "Benjamin", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "85", - "On": "17", - "Oa": "5", - "Od": "0.45", - "Mp": "13", - "Ap": "4", - "p": { - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 486, - "n": "Kawashima", - "f": "Eiji", - "p": "G", - "r": 3, - "s": { - "n": 0, - "Os": "6", - "On": "1", - "Oa": "6", - "Gp": "1", - "p": { - "38": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 747, - "n": "Kon\u00e9", - "f": "Lamine", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "136", - "On": "27", - "Oa": "5.04", - "Od": "1", - "Dp": "27", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1400, - "n": "Martin", - "f": "Jonas", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "129", - "On": "23", - "Oa": "5.63", - "Od": "1.04", - "Mp": "22", - "Ap": "1", - "p": { - "33": { - "n": 4 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4 - } - } - }, - "c": 41 - }, - { - "i": 1405, - "n": "Saadi", - "f": "Idriss", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1" - }, - "c": 41 - }, - { - "i": 1409, - "n": "Lienard", - "f": "Dimitri", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "114", - "On": "22", - "Oa": "5.2", - "Od": "0.72", - "Mp": "19", - "Dp": "3", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 1413, - "n": "Ndour", - "f": "Abdallah", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "19", - "On": "4", - "Oa": "4.88", - "Od": "1.14", - "Mp": "2", - "Dp": "2", - "p": { - "36": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 1420, - "n": "Grimm", - "f": "Jeremy", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "23", - "On": "5", - "Oa": "4.7", - "Od": "0.4", - "Mp": "5" - }, - "c": 41 - }, - { - "i": 1428, - "n": "Kamara", - "f": "Bingourou", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 1458, - "n": "Nuno da Costa", - "f": "", - "p": "A", - "r": 12, - "s": { - "n": 0, - "Og": "8", - "Os": "168", - "On": "34", - "Oa": "4.94", - "Od": "1.1", - "Mp": "2", - "Ap": "32", - "p": { - "31": { - "n": 6, - "g": 1 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 5 - }, - "38": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1461, - "n": "Caci", - "f": "Anthony", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Os": "143", - "On": "29", - "Oa": "4.95", - "Od": "0.82", - "Mp": "9", - "Dp": "20", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1462, - "n": "Lala", - "f": "Kenny", - "p": "D", - "r": 25, - "s": { - "n": 0, - "Og": "5", - "Os": "181", - "On": "34", - "Oa": "5.32", - "Od": "1.19", - "Mp": "22", - "Dp": "12", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 6, - "g": 1 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 41 - }, - { - "i": 1463, - "n": "Zohi", - "f": "K\u00e9vin", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "97", - "On": "20", - "Oa": "4.85", - "Od": "0.59", - "Mp": "17", - "Ap": "3", - "p": { - "37": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 1871, - "n": "Carole", - "f": "Lionel", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "111", - "On": "22", - "Oa": "5.05", - "Od": "0.72", - "Mp": "12", - "Dp": "10", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5 - }, - "38": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 2043, - "n": "Bangou", - "f": "Duplexe Tchamba", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2077, - "n": "Aaneba", - "f": "Ismael", - "p": "D", - "r": 1, - "s": { - "n": 0, - "Os": "13", - "On": "3", - "Oa": "4.33", - "Od": "0.94", - "Mp": "2", - "Dp": "1" - }, - "c": 41 - }, - { - "i": 2289, - "n": "Zemzemi", - "f": "Moataz", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.75", - "Od": "0.25", - "Mp": "2" - }, - "c": 41 - }, - { - "i": 2309, - "n": "Mothiba", - "f": "Lebo", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "10", - "Os": "172", - "On": "35", - "Oa": "4.91", - "Od": "0.98", - "Ap": "35", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 6, - "g": 1 - } - } - }, - "c": 41 - }, - { - "i": 2609, - "n": "Sels", - "f": "Matz", - "p": "G", - "r": 17, - "s": { - "n": 0, - "Os": "208", - "On": "37", - "Oa": "5.62", - "Od": "0.95", - "Gp": "37", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2679, - "n": "Sissoko", - "f": "Ibrahima", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Og": "3", - "Os": "167", - "On": "32", - "Oa": "5.23", - "Od": "0.94", - "Mp": "32", - "p": { - "31": { - "n": 5.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 41 - }, - { - "i": 2717, - "n": "Ajorque", - "f": "Ludovic", - "p": "A", - "r": 16, - "s": { - "n": 0, - "Og": "9", - "Os": "128", - "On": "25", - "Oa": "5.14", - "Od": "1.14", - "Ap": "25", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 7.5, - "g": 2 - }, - "33": { - "n": 4, - "s": 1 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 5 - } - } - }, - "c": 41 - }, - { - "i": 2726, - "n": "Stefan Mitrovic", - "f": "", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Oao": "1", - "Os": "171", - "On": "34", - "Oa": "5.04", - "Od": "0.75", - "Dp": "34", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 41 - }, - { - "i": 2768, - "n": "Fofana", - "f": "Youssouf", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "89", - "On": "17", - "Oa": "5.26", - "Od": "1.02", - "Mp": "17", - "p": { - "32": { - "n": 4.5 - }, - "35": { - "n": 5 - }, - "36": { - "n": 4.5, - "s": 1 - } - } - }, - "c": 41 - }, - { - "i": 2769, - "n": "Simakan", - "f": "Mohamed", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 2820, - "n": "Pelletier", - "f": "Louis", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3187, - "n": "Valentin", - "f": "Leon", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3188, - "n": "Karamoko", - "f": "Mamoudoou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 3775, - "n": "Bellegarde", - "f": "Jean-Ricner", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 5457, - "n": "Lebeau", - "f": "Adrien", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 5458, - "n": "Botella", - "f": "Ivann", - "p": "A", - "r": 4, - "s": { - "n": 0 - }, - "c": 41 - }, - { - "i": 170, - "n": "Bodmer", - "f": "Mathieu", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Og": "1", - "Os": "121", - "On": "26", - "Oa": "4.65", - "Od": "0.58", - "Mp": "7", - "Dp": "16", - "Ap": "3", - "p": { - "33": { - "n": 5.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 238, - "n": "Blin", - "f": "Alexis", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "137", - "On": "27", - "Oa": "5.07", - "Od": "0.82", - "Mp": "27", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 6.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 6.5 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 309, - "n": "Dreyer", - "f": "Matthieu", - "p": "G", - "r": 7, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 367, - "n": "Jallet", - "f": "Christophe", - "p": "D", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "72", - "On": "14", - "Oa": "5.18", - "Od": "0.62", - "Mp": "4", - "Dp": "10", - "p": { - "38": { - "n": 5, - "e": 3108, - "c": 19, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1397, - "n": "Dibassy", - "f": "Bakaye", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "164", - "On": "34", - "Oa": "4.84", - "Od": "0.73", - "Dp": "34", - "p": { - "31": { - "n": 5.5, - "s": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 5.5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 6 - } - } - }, - "c": 42 - }, - { - "i": 1403, - "n": "Gurtner", - "f": "R\u00e9gis", - "p": "G", - "r": 20, - "s": { - "n": 0, - "Os": "210", - "On": "38", - "Oa": "5.53", - "Od": "1.04", - "Gp": "38", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 7 - }, - "33": { - "n": 4 - }, - "34": { - "n": 6 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 42 - }, - { - "i": 1404, - "n": "Monconduit", - "f": "Thomas", - "p": "M", - "r": 10, - "s": { - "n": 0, - "Os": "166", - "On": "33", - "Oa": "5.05", - "Od": "0.85", - "Mp": "33", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 5 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 6 - } - } - }, - "c": 42 - }, - { - "i": 1416, - "n": "Konat\u00e9", - "f": "Moussa", - "p": "A", - "r": 17, - "s": { - "n": 0, - "Og": "7", - "Os": "130", - "On": "27", - "Oa": "4.83", - "Od": "1.17", - "Ap": "27", - "p": { - "31": { - "n": 7.5, - "g": 2 - }, - "32": { - "n": 3.5 - }, - "34": { - "n": 4 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 4 - }, - "38": { - "n": 3.5 - } - } - }, - "c": 42 - }, - { - "i": 1419, - "n": "Ad\u00e9non", - "f": "Khaled", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Oao": "1", - "Os": "108", - "On": "23", - "Oa": "4.7", - "Od": "0.91", - "Dp": "23", - "p": { - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5.5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 1425, - "n": "Ielsch", - "f": "Julien", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1437, - "n": "Koita", - "f": "Bachibou", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1449, - "n": "Prince", - "f": "", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Oao": "1", - "Os": "143", - "On": "30", - "Oa": "4.78", - "Od": "0.97", - "Dp": "30", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 1453, - "n": "Cornette", - "f": "Quentin", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Os": "21", - "On": "5", - "Oa": "4.3", - "Od": "0.24", - "Mp": "2", - "Ap": "3" - }, - "c": 42 - }, - { - "i": 1454, - "n": "Talal", - "f": "Madih", - "p": "M", - "r": 2, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1460, - "n": "Banaziak", - "f": "Gauthier", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 1538, - "n": "Zungu", - "f": "Bongani", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Os": "24", - "On": "5", - "Oa": "4.9", - "Od": "0.97", - "Mp": "5", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 3.5 - } - } - }, - "c": 42 - }, - { - "i": 1701, - "n": "Ganso", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "59", - "On": "12", - "Oa": "4.96", - "Od": "0.69", - "Mp": "10", - "Ap": "2" - }, - "c": 42 - }, - { - "i": 2235, - "n": "Mendoza", - "f": "John Stiven", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Og": "2", - "Os": "119", - "On": "25", - "Oa": "4.78", - "Od": "1.09", - "Mp": "17", - "Ap": "8", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 3.5 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "36": { - "n": 4 - } - } - }, - "c": 42 - }, - { - "i": 2675, - "n": "Lefort", - "f": "Jordan", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "112", - "On": "23", - "Oa": "4.89", - "Od": "0.96", - "Mp": "4", - "Dp": "19", - "p": { - "31": { - "n": 4 - }, - "33": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2706, - "n": "Otero", - "f": "Juan Ferney", - "p": "A", - "r": 11, - "s": { - "n": 0, - "Og": "2", - "Os": "156", - "On": "33", - "Oa": "4.73", - "Od": "0.82", - "Mp": "13", - "Ap": "20", - "p": { - "31": { - "n": 4.5, - "s": 1 - }, - "32": { - "n": 4, - "s": 1 - }, - "33": { - "n": 6.5, - "g": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 4.5, - "s": 1 - }, - "37": { - "n": 3.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 2728, - "n": "Gnahore", - "f": "Eddy", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "4", - "Os": "175", - "On": "34", - "Oa": "5.15", - "Od": "0.94", - "Mp": "33", - "Ap": "1", - "p": { - "31": { - "n": 7 - }, - "32": { - "n": 5.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4.5, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2773, - "n": "Gauducheau", - "f": "Antonin", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2774, - "n": "Gneba", - "f": "Martin", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2775, - "n": "Traore", - "f": "Gaoussou", - "p": "M", - "r": 1, - "s": { - "n": 0, - "Os": "15", - "On": "3", - "Oa": "5.17", - "Od": "0.24", - "Mp": "3" - }, - "c": 42 - }, - { - "i": 2776, - "n": "Ngando", - "f": "Jean-Claude", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2777, - "n": "Sy", - "f": "Sanasi", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "5", - "On": "1", - "Oa": "5", - "Dp": "1" - }, - "c": 42 - }, - { - "i": 2778, - "n": "Gendrey", - "f": "Valentin", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2785, - "n": "Rabei", - "f": "Reda", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 2789, - "n": "Timite", - "f": "Cheick", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Og": "1", - "Os": "126", - "On": "27", - "Oa": "4.67", - "Od": "0.53", - "Mp": "20", - "Ap": "7", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 6, - "g": 1, - "s": 1 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 4, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 42 - }, - { - "i": 2794, - "n": "Kurzawa", - "f": "Rafal", - "p": "A", - "r": 5, - "s": { - "n": 0, - "Og": "1", - "Os": "49", - "On": "11", - "Oa": "4.5", - "Od": "0.74", - "Mp": "2", - "Ap": "9" - }, - "c": 42 - }, - { - "i": 2796, - "n": "Krafth", - "f": "Emil", - "p": "D", - "r": 11, - "s": { - "n": 0, - "Og": "1", - "Os": "162", - "On": "35", - "Oa": "4.64", - "Od": "0.59", - "Mp": "2", - "Dp": "33", - "p": { - "31": { - "n": 4.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 5 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 4 - }, - "38": { - "n": 5 - } - } - }, - "c": 42 - }, - { - "i": 2832, - "n": "Ghoddos", - "f": "Saman", - "p": "A", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "129", - "On": "26", - "Oa": "4.98", - "Od": "0.99", - "Mp": "11", - "Ap": "15", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "35": { - "n": 4.5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 4 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 42 - }, - { - "i": 2937, - "n": "Segarel", - "f": "Stanley", - "p": "A", - "r": 4, - "s": { - "n": 0, - "Os": "9", - "On": "2", - "Oa": "4.5", - "Ap": "2" - }, - "c": 42 - }, - { - "i": 2994, - "n": "Mathurin Sakho", - "f": "", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 3366, - "n": "Guirassy", - "f": "Serhou", - "p": "A", - "r": 14, - "s": { - "n": 0, - "Og": "3", - "Os": "63", - "On": "12", - "Oa": "5.25", - "Od": "1.15", - "Ap": "12", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 42 - }, - { - "i": 3515, - "n": "Gomis", - "f": "Iron", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 3759, - "n": "Lahne", - "f": "Jack", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 3762, - "n": "Eneme", - "f": "Ulrich", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 3774, - "n": "Mamilonne", - "f": "Yannick", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 3803, - "n": "Aleesami", - "f": "Haitam", - "p": "D", - "r": 11, - "s": { - "n": 0 - }, - "c": 42 - }, - { - "i": 87, - "n": "Diallo", - "f": "Moustapha", - "p": "M", - "r": 4, - "s": { - "n": 0, - "Os": "32", - "On": "7", - "Oa": "4.57", - "Od": "1.02", - "Mp": "7" - }, - "c": 67 - }, - { - "i": 310, - "n": "Philippoteaux", - "f": "Romain", - "p": "M", - "r": 7, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 460, - "n": "Martinez", - "f": "Pablo", - "p": "D", - "r": 13, - "s": { - "n": 0, - "Og": "3", - "Os": "170", - "On": "32", - "Oa": "5.33", - "Od": "0.89", - "Dp": "32", - "p": { - "31": { - "n": 4.5, - "e": 3039, - "c": 41 - }, - "32": { - "n": 4.5, - "e": 3051, - "c": 41 - }, - "33": { - "n": 5, - "e": 3060, - "c": 41, - "g": 1 - }, - "34": { - "n": 5.5, - "e": 3062, - "c": 41 - } - } - }, - "c": 67 - }, - { - "i": 2604, - "n": "Hsissane", - "f": "Abdelmalik", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2606, - "n": "Landre", - "f": "Lo\u00efck", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "3", - "Os": "111", - "On": "22", - "Oa": "5.07", - "Od": "1.11", - "Dp": "22" - }, - "c": 67 - }, - { - "i": 2611, - "n": "Vlachodimos", - "f": "Panagiotis", - "p": "M", - "r": 3, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2612, - "n": "Cadamuro", - "f": "Liassine", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2619, - "n": "Valdivia", - "f": "Pierrick", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "10", - "On": "2", - "Oa": "5", - "Mp": "2", - "p": { - "35": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - } - } - }, - "c": 67 - }, - { - "i": 2649, - "n": "Harek", - "f": "Fethi", - "p": "D", - "r": 4, - "s": { - "n": 0, - "Os": "14", - "On": "3", - "Oa": "4.83", - "Od": "0.62", - "Dp": "3" - }, - "c": 67 - }, - { - "i": 2651, - "n": "Guessoum", - "f": "Kelyan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2653, - "n": "Sainte Luce", - "f": "Theo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2654, - "n": "Buades", - "f": "Lucas", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2663, - "n": "Ben Amar", - "f": "Sami", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2674, - "n": "Marillat", - "f": "Yan", - "p": "G", - "r": 2, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 2680, - "n": "Alakouch", - "f": "Sofiane", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Og": "1", - "Os": "119", - "On": "25", - "Oa": "4.78", - "Od": "0.87", - "Dp": "25", - "p": { - "34": { - "n": 4, - "s": 1 - }, - "35": { - "n": 5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2699, - "n": "Depres", - "f": "Clement", - "p": "A", - "r": 7, - "s": { - "n": 0, - "Og": "4", - "Os": "84", - "On": "17", - "Oa": "4.94", - "Od": "1.11", - "Ap": "17" - }, - "c": 67 - }, - { - "i": 2700, - "n": "Miguel", - "f": "Florian", - "p": "D", - "r": 8, - "s": { - "n": 0, - "Os": "62", - "On": "13", - "Oa": "4.77", - "Od": "1.01", - "Dp": "13", - "p": { - "32": { - "n": 4.5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 2.5 - }, - "35": { - "n": 5.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 4.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2702, - "n": "Bobichon", - "f": "Antonin", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "7", - "Os": "156", - "On": "30", - "Oa": "5.2", - "Od": "1.19", - "Mp": "24", - "Ap": "6", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 3.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 3 - }, - "35": { - "n": 6 - }, - "36": { - "n": 5.5 - }, - "37": { - "n": 7 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 67 - }, - { - "i": 2704, - "n": "Valls", - "f": "Theo", - "p": "M", - "r": 13, - "s": { - "n": 0, - "Os": "153", - "On": "31", - "Oa": "4.95", - "Od": "0.61", - "Mp": "31", - "p": { - "31": { - "n": 5.5 - }, - "33": { - "n": 5, - "s": 1 - }, - "34": { - "n": 3 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5.5 - } - } - }, - "c": 67 - }, - { - "i": 2709, - "n": "Briancon", - "f": "Anthony", - "p": "D", - "r": 16, - "s": { - "n": 0, - "Og": "2", - "Os": "169", - "On": "33", - "Oa": "5.14", - "Od": "1.19", - "Dp": "33", - "p": { - "31": { - "n": 5.5 - }, - "35": { - "n": 6.5 - }, - "36": { - "n": 6 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2716, - "n": "Paquiez", - "f": "Gaetan", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "91", - "On": "20", - "Oa": "4.58", - "Od": "0.79", - "Dp": "20", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 4, - "s": 1 - }, - "34": { - "n": 3 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 4.5 - } - } - }, - "c": 67 - }, - { - "i": 2723, - "n": "Ripart", - "f": "Renaud", - "p": "A", - "r": 20, - "s": { - "n": 0, - "Og": "8", - "Os": "202", - "On": "38", - "Oa": "5.32", - "Od": "1.19", - "Mp": "9", - "Dp": "9", - "Ap": "20", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 7, - "g": 1 - }, - "34": { - "n": 3 - }, - "35": { - "n": 6.5, - "g": 1 - }, - "36": { - "n": 7, - "g": 1 - }, - "37": { - "n": 7, - "g": 1 - }, - "38": { - "n": 6.5, - "g": 1 - } - } - }, - "c": 67 - }, - { - "i": 2957, - "n": "Lionel Dias", - "f": "Lucas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 3771, - "n": "Denkey", - "f": "Ahouek\u00e8", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 3784, - "n": "Stojanovski", - "f": "Vlatko", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 3797, - "n": "Ferhat", - "f": "Zinedine", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 67 - }, - { - "i": 346, - "n": "Abdelhamid", - "f": "Yunis", - "p": "D", - "r": 14, - "s": { - "n": 0, - "Oao": "1", - "Os": "200", - "On": "38", - "Oa": "5.26", - "Od": "1.05", - "Dp": "38", - "p": { - "31": { - "n": 5.5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 350, - "n": "Martin", - "f": "Marvin", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "62", - "On": "13", - "Oa": "4.81", - "Od": "0.46", - "Mp": "13", - "p": { - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 563, - "n": "Cafaro", - "f": "Mathieu", - "p": "M", - "r": 15, - "s": { - "n": 0, - "Og": "7", - "Os": "175", - "On": "34", - "Oa": "5.15", - "Od": "0.94", - "Mp": "33", - "Ap": "1", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5 - }, - "33": { - "n": 5.5 - }, - "34": { - "n": 5.5, - "g": 1 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 7, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 1144, - "n": "Sheyi Ojo", - "f": "", - "p": "M", - "r": 7, - "s": { - "n": 0, - "Os": "67", - "On": "14", - "Oa": "4.79", - "Od": "0.41", - "Mp": "13", - "Ap": "1", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 1410, - "n": "Dingome", - "f": "Tristan", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "1", - "Os": "99", - "On": "20", - "Oa": "4.95", - "Od": "0.8", - "Mp": "20", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 4 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 4.5 - }, - "35": { - "n": 3.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 1459, - "n": "Diouf", - "f": "Yehvann", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 1543, - "n": "Suk Hyun-Jun", - "f": "", - "p": "A", - "r": 9, - "s": { - "n": 0, - "Og": "3", - "Os": "101", - "On": "22", - "Oa": "4.61", - "Od": "0.94", - "Ap": "22", - "p": { - "32": { - "n": 4, - "s": 1 - }, - "35": { - "n": 4, - "s": 1 - }, - "36": { - "n": 5, - "s": 1 - }, - "37": { - "n": 7, - "g": 1 - } - } - }, - "c": 68 - }, - { - "i": 2610, - "n": "M\u00e9tanire", - "f": "Romain", - "p": "D", - "r": 6, - "s": { - "n": 0, - "Os": "23", - "On": "5", - "Oa": "4.6", - "Od": "1.02", - "Dp": "5" - }, - "c": 68 - }, - { - "i": 2615, - "n": "Fontaine", - "f": "Thomas", - "p": "D", - "r": 7, - "s": { - "n": 0, - "Os": "35", - "On": "7", - "Oa": "5.07", - "Od": "0.49", - "Dp": "7" - }, - "c": 68 - }, - { - "i": 2620, - "n": "Ngamukol", - "f": "Anatole", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2647, - "n": "Costa", - "f": "Logan", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2648, - "n": "Carrasso", - "f": "Johann", - "p": "G", - "r": 3, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2650, - "n": "Kyei", - "f": "Scott", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2656, - "n": "Bana", - "f": "Moussa", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2660, - "n": "Piechocki", - "f": "Virgile", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2662, - "n": "Romao", - "f": "Jacques-Alaixys", - "p": "M", - "r": 16, - "s": { - "n": 0, - "Os": "194", - "On": "36", - "Oa": "5.39", - "Od": "0.78", - "Mp": "36", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4 - }, - "35": { - "n": 4 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2667, - "n": "Konan", - "f": "Ghislain", - "p": "D", - "r": 5, - "s": { - "n": 0, - "Os": "103", - "On": "20", - "Oa": "5.18", - "Od": "0.97", - "Dp": "20" - }, - "c": 68 - }, - { - "i": 2673, - "n": "Oudin", - "f": "Remi", - "p": "M", - "r": 28, - "s": { - "n": 0, - "Og": "10", - "Os": "188", - "On": "37", - "Oa": "5.08", - "Od": "1.18", - "Mp": "32", - "Ap": "5", - "p": { - "31": { - "n": 7, - "g": 1, - "s": 1 - }, - "32": { - "n": 4.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 4 - }, - "35": { - "n": 3 - }, - "36": { - "n": 4 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2676, - "n": "Mendy", - "f": "Edouard", - "p": "G", - "r": 22, - "s": { - "n": 0, - "Os": "218", - "On": "38", - "Oa": "5.75", - "Od": "1.06", - "Gp": "38", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 7.5 - }, - "33": { - "n": 4.5 - }, - "34": { - "n": 6 - }, - "35": { - "n": 4 - }, - "36": { - "n": 6 - }, - "37": { - "n": 7.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2683, - "n": "Disasi", - "f": "Axel", - "p": "D", - "r": 3, - "s": { - "n": 0, - "Os": "20", - "On": "4", - "Oa": "5", - "Od": "1.06", - "Dp": "4", - "p": { - "34": { - "n": 5, - "s": 1 - }, - "37": { - "n": 5, - "s": 1 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 68 - }, - { - "i": 2689, - "n": "Ndom", - "f": "Aly", - "p": "M", - "r": 3, - "s": { - "n": 0, - "Os": "56", - "On": "12", - "Oa": "4.67", - "Od": "0.59", - "Mp": "12" - }, - "c": 68 - }, - { - "i": 2694, - "n": "Lemaitre", - "f": "Nicolas", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2703, - "n": "Kyei", - "f": "Grejohn", - "p": "A", - "r": 13, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4", - "Ap": "1" - }, - "c": 68 - }, - { - "i": 2705, - "n": "Doumbia", - "f": "Moussa", - "p": "M", - "r": 12, - "s": { - "n": 0, - "Og": "3", - "Os": "143", - "On": "28", - "Oa": "5.13", - "Od": "0.84", - "Mp": "25", - "Ap": "3", - "p": { - "31": { - "n": 5, - "s": 1 - }, - "32": { - "n": 5, - "s": 1 - }, - "33": { - "n": 4.5, - "s": 1 - }, - "34": { - "n": 4.5, - "s": 1 - }, - "35": { - "n": 5, - "s": 1 - }, - "36": { - "n": 6, - "g": 1 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6.5 - } - } - }, - "c": 68 - }, - { - "i": 2708, - "n": "Mbemba", - "f": "Nolan", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "37", - "On": "8", - "Oa": "4.69", - "Od": "0.35", - "Mp": "7", - "Dp": "1" - }, - "c": 68 - }, - { - "i": 2715, - "n": "Kamara", - "f": "Hassane", - "p": "M", - "r": 8, - "s": { - "n": 0, - "Os": "81", - "On": "16", - "Oa": "5.09", - "Od": "0.62", - "Mp": "8", - "Dp": "8", - "p": { - "35": { - "n": 5.5, - "s": 1 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5.5 - }, - "38": { - "n": 6 - } - } - }, - "c": 68 - }, - { - "i": 2724, - "n": "Chavalerin", - "f": "Xavier", - "p": "M", - "r": 14, - "s": { - "n": 0, - "Og": "2", - "Os": "197", - "On": "36", - "Oa": "5.47", - "Od": "0.74", - "Mp": "36", - "p": { - "31": { - "n": 6 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 4 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4.5 - }, - "36": { - "n": 4.5 - }, - "37": { - "n": 6.5 - }, - "38": { - "n": 5.5 - } - } - }, - "c": 68 - }, - { - "i": 2730, - "n": "Cakin", - "f": "Hendrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2770, - "n": "Bahanack", - "f": "Patrick", - "p": "D", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2858, - "n": "Pinson", - "f": "Virgile", - "p": "A", - "r": 3, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 2862, - "n": "Foket", - "f": "Thomas", - "p": "D", - "r": 10, - "s": { - "n": 0, - "Os": "156", - "On": "32", - "Oa": "4.89", - "Od": "0.62", - "Dp": "32", - "p": { - "31": { - "n": 5 - }, - "32": { - "n": 5.5 - }, - "33": { - "n": 3.5 - }, - "34": { - "n": 5 - }, - "35": { - "n": 4 - }, - "36": { - "n": 3.5 - }, - "37": { - "n": 5 - } - } - }, - "c": 68 - }, - { - "i": 2951, - "n": "Dia", - "f": "Boulaye", - "p": "M", - "r": 9, - "s": { - "n": 0, - "Og": "2", - "Os": "65", - "On": "13", - "Oa": "5.04", - "Od": "0.93", - "Mp": "5", - "Ap": "8", - "p": { - "31": { - "n": 4 - }, - "32": { - "n": 5 - }, - "33": { - "n": 3.5 - } - } - }, - "c": 68 - }, - { - "i": 3360, - "n": "Sissoko", - "f": "Sambou", - "p": "D", - "r": 6, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 3364, - "n": "Zeneli", - "f": "Arb\u00ebr", - "p": "A", - "r": 8, - "s": { - "n": 0, - "Og": "3", - "Os": "68", - "On": "14", - "Oa": "4.86", - "Od": "1.17", - "Mp": "8", - "Ap": "6", - "p": { - "31": { - "n": 3.5 - }, - "32": { - "n": 4.5, - "s": 1 - }, - "33": { - "n": 4, - "s": 1 - }, - "34": { - "n": 5 - }, - "35": { - "n": 3.5 - }, - "36": { - "n": 6, - "g": 1, - "s": 1 - }, - "38": { - "n": 5, - "s": 1 - } - } - }, - "c": 68 - }, - { - "i": 3365, - "n": "Moreto Cassam\u00e3", - "f": "", - "p": "M", - "r": 5, - "s": { - "n": 0, - "Os": "4", - "On": "1", - "Oa": "4.5", - "Mp": "1", - "p": { - "34": { - "n": 4.5 - } - } - }, - "c": 68 - }, - { - "i": 3766, - "n": "Munetsi", - "f": "Marshall", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 3793, - "n": "Shamal", - "f": "Steve", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 3794, - "n": "Berthier", - "f": "Gregory", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 3807, - "n": "Rajkovic", - "f": "Predrag", - "p": "G", - "r": 10, - "s": { - "n": 0 - }, - "c": 68 - }, - { - "i": 552, - "n": "Perraud", - "f": "Romain", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 564, - "n": "Magnetti", - "f": "Hugo", - "p": "M", - "r": 1, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 1417, - "n": "Grandsir", - "f": "Samuel", - "p": "A", - "r": 15, - "s": { - "n": 0, - "Os": "93", - "On": "20", - "Oa": "4.68", - "Od": "0.51", - "Mp": "18", - "Ap": "2", - "p": { - "31": { - "n": 5, - "e": 3039, - "c": 41, - "s": 1 - }, - "32": { - "n": 5, - "e": 3051, - "c": 41, - "s": 1 - }, - "33": { - "n": 4.5, - "e": 3060, - "c": 41 - }, - "34": { - "n": 4.5, - "e": 3062, - "c": 41 - } - } - }, - "c": 75 - }, - { - "i": 2671, - "n": "Diallo", - "f": "Ibrahima", - "p": "M", - "r": 9, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 2783, - "n": "Osei Yaw", - "f": "Derick", - "p": "A", - "r": 1, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3779, - "n": "N'Goma", - "f": "Ferris", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3785, - "n": "Larsonneur", - "f": "Gautier", - "p": "G", - "r": 16, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3786, - "n": "Kiki", - "f": "Enangon David", - "p": "D", - "r": 2, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3795, - "n": "Belkebla", - "f": "Haris", - "p": "M", - "r": 14, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3801, - "n": "Chardonnet", - "f": "Brendan", - "p": "D", - "r": 5, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3802, - "n": "Castelletto", - "f": "Jean-Charles", - "p": "D", - "r": 14, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3804, - "n": "Fabri", - "f": "Julien", - "p": "G", - "r": 1, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3806, - "n": "Mayi", - "f": "K\u00e9vin", - "p": "A", - "r": 5, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3808, - "n": "L\u00e9on", - "f": "Donovan", - "p": "G", - "r": 8, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3810, - "n": "Bain", - "f": "Denys", - "p": "D", - "r": 9, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3811, - "n": "Battocchio", - "f": "Cristian", - "p": "M", - "r": 5, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3813, - "n": "Autret", - "f": "Mathias", - "p": "M", - "r": 15, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3817, - "n": "Court", - "f": "Yoann", - "p": "M", - "r": 14, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3818, - "n": "Charbonnier", - "f": "Ga\u00ebtan", - "p": "A", - "r": 15, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 3819, - "n": "Faussurier", - "f": "Julien", - "p": "D", - "r": 7, - "s": { - "n": 0 - }, - "c": 75 - }, - { - "i": 5515, - "n": "Belaud", - "f": "Ga\u00ebtan", - "p": "D", - "r": 14, - "s": { - "n": 0 - }, - "c": 75 - } - ], - "c": { - "2": { - "n": "Paris", - "rn": "Paris Saint-Germain", - "cn": "Paris-Saint-Germain", - "a": "PAR", - "l": 1, - "el": 1202, - "nM": 5044, - "nMWC": "0.7392", - "pM": { - "33": 3058, - "35": 3078, - "36": 3083, - "37": 3098, - "38": 3110, - "31": 3039, - "32": 3044, - "34": 3068, - "1": 5067, - "2": 5053 - }, - "DMI": [ - ] - }, - "3": { - "n": "Bordeaux", - "rn": "Girondins de Bordeaux", - "cn": "Girondins-de-Bordeaux", - "a": "BOD", - "l": 1, - "el": 975, - "nM": 3922, - "nMWC": "0.3746", - "pM": { - "31": 3034, - "32": 3050, - "35": 3072, - "36": 3086, - "37": 3092, - "38": 3104, - "33": 3057, - "34": 3064 - }, - "DMI": [ - 3072 - ] - }, - "4": { - "n": "Saint Etienne", - "rn": "AS Saint-Etienne", - "cn": "AS-Saint-Etienne", - "a": "STE", - "l": 1, - "el": 1154, - "nM": 3923, - "nMWC": "0.6738", - "pM": { - "32": 3050, - "31": 3032, - "33": 3059, - "34": 3071, - "35": 3075, - "36": 3091, - "37": 3099, - "38": 3103 - }, - "DMI": [ - ] - }, - "7": { - "n": "Dijon", - "rn": "Dijon FCO", - "cn": "Dijon-FCO", - "a": "DIJ", - "l": 1, - "el": 1028, - "nM": 3923, - "nMWC": "0.3262", - "pM": { - "37": 3098, - "31": 3036, - "32": 3043, - "33": 3052, - "34": 3065, - "35": 3077, - "36": 3085, - "38": 3105 - }, - "DMI": [ - ] - }, - "8": { - "n": "Nantes", - "rn": "FC Nantes", - "cn": "FC-Nantes", - "a": "NTE", - "l": 1, - "el": 1059, - "nM": 3925, - "nMWC": "0.3088", - "pM": { - "31": 3041, - "32": 3048, - "33": 3055, - "37": 3097, - "38": 3107, - "35": 3077, - "34": 3067, - "36": 3088 - }, - "DMI": [ - ] - }, - "9": { - "n": "Marseille", - "rn": "Olympique de Marseille", - "cn": "Olympique-de-Marseille", - "a": "MRS", - "l": 1, - "el": 1147, - "nM": 3924, - "nMWC": "0.5869", - "pM": { - "31": 3034, - "33": 3053, - "32": 3045, - "34": 3067, - "35": 3080, - "36": 3087, - "37": 3101, - "38": 3106 - }, - "DMI": [ - ] - }, - "10": { - "n": "Toulouse", - "rn": "Toulouse FC", - "cn": "Toulouse-FC", - "a": "TLS", - "l": 1, - "el": 950, - "nM": 3919, - "nMWC": "0.4285", - "pM": { - "34": 3071, - "31": 3041, - "38": 3105, - "37": 3101, - "32": 3047, - "33": 3061, - "35": 3081, - "36": 3082 - }, - "DMI": [ - ] - }, - "11": { - "n": "Metz", - "rn": "FC Metz", - "cn": "FC-Metz", - "a": "MTZ", - "l": 1, - "el": 850, - "nM": 3926, - "nMWC": "0.2371", - "pM": [ - ], - "DMI": [ - ] - }, - "12": { - "n": "Lille", - "rn": "LOSC", - "cn": "LOSC", - "a": "LIL", - "l": 1, - "el": 1199, - "nM": 3925, - "nMWC": "0.6912", - "pM": { - "32": 3044, - "36": 3086, - "38": 3111, - "34": 3066, - "33": 3061, - "31": 3040, - "35": 3074, - "37": 3094 - }, - "DMI": [ - ] - }, - "13": { - "n": "Monaco", - "rn": "AS Monaco", - "cn": "AS-Monaco", - "a": "MON", - "l": 1, - "el": 1019, - "nM": 3918, - "nMWC": "0.2445", - "pM": { - "33": 3058, - "35": 3075, - "34": 3070, - "36": 3089, - "31": 3035, - "38": 3108, - "32": 3046, - "37": 3096 - }, - "DMI": [ - ] - }, - "15": { - "n": "Montpellier", - "rn": "Montpellier H\u00e9rault SC", - "cn": "Montpellier-Herault-SC", - "a": "MTP", - "l": 1, - "el": 1142, - "nM": 3920, - "nMWC": "0.5672", - "pM": { - "34": 3068, - "36": 3091, - "37": 3097, - "38": 3106, - "32": 3047, - "31": 3037, - "33": 3060, - "35": 3076 - }, - "DMI": [ - ] - }, - "16": { - "n": "Angers", - "rn": "Angers SCO", - "cn": "Angers-SCO", - "a": "ANG", - "l": 1, - "el": 1064, - "nM": 3922, - "nMWC": "0.6254", - "pM": { - "36": 3083, - "35": 3072, - "31": 3033, - "38": 3103, - "32": 3042, - "37": 3094, - "33": 3054, - "34": 3063 - }, - "DMI": [ - 3072 - ] - }, - "18": { - "n": "Lyon", - "rn": "Olympique Lyonnais", - "cn": "Olympique-Lyonnais", - "a": "LYO", - "l": 1, - "el": 1215, - "nM": 3918, - "nMWC": "0.7555", - "pM": { - "34": 3064, - "32": 3048, - "38": 3109, - "31": 3036, - "36": 3087, - "37": 3095, - "35": 3074, - "33": 3054 - }, - "DMI": [ - ] - }, - "19": { - "n": "Nice", - "rn": "OGC Nice", - "cn": "OGC-Nice", - "a": "NCE", - "l": 1, - "el": 1097, - "nM": 3921, - "nMWC": "0.5966", - "pM": { - "35": 3078, - "37": 3099, - "32": 3049, - "34": 3069, - "36": 3088, - "33": 3056, - "38": 3108, - "31": 3037 - }, - "DMI": [ - ] - }, - "20": { - "n": "Rennes", - "rn": "Stade Rennais FC", - "cn": "Stade-Rennais-FC", - "a": "REN", - "l": 1, - "el": 1095, - "nM": 3920, - "nMWC": "0.4328", - "pM": { - "31": 3033, - "32": 3049, - "34": 3070, - "37": 3100, - "38": 3111, - "36": 3090, - "33": 3052, - "35": 3081 - }, - "DMI": [ - ] - }, - "41": { - "n": "Strasbourg", - "rn": "RC Strasbourg Alsace", - "cn": "RC-Strasbourg-Alsace", - "a": "STB", - "l": 1, - "el": 1053, - "nM": 3926, - "nMWC": "0.7629", - "pM": { - "31": 3039, - "37": 3100, - "32": 3051, - "38": 3107, - "36": 3085, - "35": 3080, - "33": 3060, - "34": 3062 - }, - "DMI": [ - ] - }, - "42": { - "n": "Amiens", - "rn": "Amiens SC", - "cn": "Amiens-SC", - "a": "AMI", - "l": 1, - "el": 1029, - "nM": 3921, - "nMWC": "0.4034", - "pM": { - "31": 3032, - "38": 3102, - "33": 3055, - "32": 3043, - "36": 3082, - "37": 3096, - "35": 3076, - "34": 3062 - }, - "DMI": [ - ] - }, - "67": { - "n": "N\u00eemes", - "rn": "N\u00eemes Olympique", - "cn": "Nimes-Olympique", - "a": "NIM", - "l": 1, - "el": 1061, - "nM": 3927, - "nMWC": "0.3075", - "pM": { - "33": 3057, - "37": 3093, - "31": 3038, - "32": 3045, - "34": 3066, - "35": 3079, - "36": 3089, - "38": 3109 - }, - "DMI": [ - ] - }, - "68": { - "n": "Reims", - "rn": "Stade de Reims", - "cn": "Stade-de-Reims", - "a": "REI", - "l": 1, - "el": 1086, - "nM": 3924, - "nMWC": "0.4131", - "pM": { - "38": 3110, - "37": 3092, - "33": 3059, - "35": 3079, - "36": 3084, - "31": 3040, - "32": 3046, - "34": 3063 - }, - "DMI": [ - ] - }, - "75": { - "n": "Brest", - "rn": "Stade Brestois 29", - "cn": "Stade-Brestois-29", - "a": "BRS", - "l": 1, - "el": 1000, - "nM": 3919, - "nMWC": "0.5715", - "pM": [ - ], - "DMI": [ - ] - } - }, - "op": { - "100": { - "n": "Rodez", - "l": 4, - "el": 1021 - }, - "31": { - "n": "Man United", - "l": 2, - "el": 1095 - }, - "33": { - "n": "Watford", - "l": 2, - "el": 1000 - }, - "25": { - "n": "Chelsea", - "l": 2, - "el": 1117 - }, - "44": { - "n": "Huddersfield", - "l": 2, - "el": 758 - }, - "22": { - "n": "Everton", - "l": 2, - "el": 1116 - }, - "28": { - "n": "West Ham", - "l": 2, - "el": 1090 - }, - "39": { - "n": "Arsenal", - "l": 2, - "el": 1165 - }, - "71": { - "n": "Fulham", - "l": 2, - "el": 895 - }, - "26": { - "n": "Crystal Palace", - "l": 2, - "el": 1114 - }, - "23": { - "n": "Burnley", - "l": 2, - "el": 1024 - }, - "24": { - "n": "Tottenham", - "l": 2, - "el": 1078 - }, - "60": { - "n": "Betis", - "l": 3, - "el": 1050 - }, - "64": { - "n": "Villarreal", - "l": 3, - "el": 1082 - }, - "55": { - "n": "Sevilla", - "l": 3, - "el": 1080 - }, - "49": { - "n": "Valencia", - "l": 3, - "el": 1162 - }, - "56": { - "n": "Espanyol", - "l": 3, - "el": 1127 - }, - "66": { - "n": "Eibar", - "l": 3, - "el": 1055 - }, - "73": { - "n": "Huesca", - "l": 3, - "el": 1021 - }, - "62": { - "n": "Real Madrid", - "l": 3, - "el": 1105 - }, - "74": { - "n": "Valladolid", - "l": 3, - "el": 1019 - }, - "72": { - "n": "Rayo", - "l": 3, - "el": 924 - }, - "53": { - "n": "Girona", - "l": 3, - "el": 860 - }, - "47": { - "n": "Legan\u00e9s", - "l": 3, - "el": 1014 - }, - "54": { - "n": "Atl\u00e9tico", - "l": 3, - "el": 1204 - }, - "6": { - "n": "Lorient", - "l": 4, - "el": 1016 - }, - "102": { - "n": "Sochaux", - "l": 4, - "el": 1018 - }, - "5": { - "n": "Caen", - "l": 4, - "el": 975 - }, - "14": { - "n": "Guingamp", - "l": 4, - "el": 903 - }, - "51": { - "n": "Celta", - "l": 3, - "el": 1020 - }, - "52": { - "n": "Real Sociedad", - "l": 3, - "el": 1080 - }, - "59": { - "n": "Barcelona", - "l": 3, - "el": 1292 - }, - "57": { - "n": "Bilbao", - "l": 3, - "el": 1085 - }, - "45": { - "n": "Brighton", - "l": 2, - "el": 1009 - }, - "70": { - "n": "Cardiff", - "l": 2, - "el": 950 - }, - "40": { - "n": "Man City", - "l": 2, - "el": 1384 - }, - "21": { - "n": "Liverpool", - "l": 2, - "el": 1356 - }, - "58": { - "n": "Getafe", - "l": 3, - "el": 1116 - } - }, - "e": { - "3058": { - "d": 33, - "dB": "2019-04-21T19:00:00Z", - "t1s": 3, - "t2s": 1, - "t1": 2, - "t2": 13 - }, - "3078": { - "d": 35, - "dB": "2019-05-04T15:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 2, - "t2": 19 - }, - "3083": { - "d": 36, - "dB": "2019-05-11T15:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 16, - "t2": 2 - }, - "3098": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 2, - "t2": 7 - }, - "3110": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 3, - "t2s": 1, - "t1": 68, - "t2": 2 - }, - "3039": { - "d": 31, - "dB": "2019-04-07T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 2, - "t2": 41 - }, - "3044": { - "d": 32, - "dB": "2019-04-14T19:00:00Z", - "t1s": 5, - "t2s": 1, - "t1": 12, - "t2": 2 - }, - "3068": { - "d": 34, - "dB": "2019-04-30T17:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 15, - "t2": 2 - }, - "3486": { - "d": 32, - "dB": "2019-03-30T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 31, - "t2": 33 - }, - "3524": { - "d": 36, - "dB": "2019-04-28T15:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 31, - "t2": 25 - }, - "3533": { - "d": 37, - "dB": "2019-05-05T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 44, - "t2": 31 - }, - "3471": { - "d": 31, - "dB": "2019-03-17T16:30:00Z", - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 25 - }, - "3487": { - "d": 32, - "dB": "2019-03-30T17:30:00Z", - "t1s": 0, - "t2s": 2, - "t1": 28, - "t2": 22 - }, - "3490": { - "d": 33, - "dB": "2019-04-07T13:05:00Z", - "t1s": 1, - "t2s": 0, - "t1": 22, - "t2": 39 - }, - "3501": { - "d": 34, - "dB": "2019-04-13T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 71, - "t2": 22 - }, - "3512": { - "d": 35, - "dB": "2019-04-21T12:30:00Z", - "t1s": 4, - "t2s": 0, - "t1": 22, - "t2": 31 - }, - "3520": { - "d": 36, - "dB": "2019-04-27T14:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 26, - "t2": 22 - }, - "3532": { - "d": 37, - "dB": "2019-05-03T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 22, - "t2": 23 - }, - "3546": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 24, - "t2": 22 - }, - "2273": { - "d": 31, - "dB": "2019-04-07T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 60, - "t2": 64 - }, - "2288": { - "d": 32, - "dB": "2019-04-13T18:45:00Z", - "t1s": 3, - "t2s": 2, - "t1": 55, - "t2": 60 - }, - "2294": { - "d": 33, - "dB": "2019-04-21T18:45:00Z", - "t1s": 1, - "t2s": 2, - "t1": 60, - "t2": 49 - }, - "2314": { - "d": 35, - "dB": "2019-04-29T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 60, - "t2": 56 - }, - "2330": { - "d": 36, - "dB": "2019-05-05T12:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 66, - "t2": 60 - }, - "2335": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 60, - "t2": 73 - }, - "2350": { - "d": 38, - "dB": "2019-05-19T10:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 62, - "t2": 60 - }, - "2281": { - "d": 31, - "dB": "2019-04-07T14:15:00Z", - "t1s": 0, - "t2s": 2, - "t1": 74, - "t2": 55 - }, - "2311": { - "d": 34, - "dB": "2019-04-25T17:30:00Z", - "t1s": 5, - "t2s": 0, - "t1": 55, - "t2": 72 - }, - "2315": { - "d": 35, - "dB": "2019-04-28T12:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 53, - "t2": 55 - }, - "2331": { - "d": 36, - "dB": "2019-05-03T19:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 55, - "t2": 47 - }, - "2333": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 54, - "t2": 55 - }, - "5067": { - "d": 1, - "dB": "2019-07-29T18:45:00Z", - "t1s": 3, - "t2s": 0, - "t1": 6, - "t2": 2 - }, - "5053": { - "d": 2, - "dB": "2019-08-02T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 2, - "t2": 102 - }, - "3034": { - "d": 31, - "dB": "2019-04-05T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 3, - "t2": 9 - }, - "3050": { - "d": 32, - "dB": "2019-04-14T15:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 3 - }, - "3072": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 16 - }, - "3086": { - "d": 36, - "dB": "2019-05-12T15:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 12, - "t2": 3 - }, - "3092": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 3, - "t2": 68 - }, - "3104": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 3 - }, - "3057": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 67, - "t2": 3 - }, - "3064": { - "d": 34, - "dB": "2019-04-26T18:45:00Z", - "t1s": 2, - "t2s": 3, - "t1": 3, - "t2": 18 - }, - "3032": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 42, - "t2": 4 - }, - "3059": { - "d": 33, - "dB": "2019-04-21T15:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 68, - "t2": 4 - }, - "3071": { - "d": 34, - "dB": "2019-04-28T15:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 4, - "t2": 10 - }, - "3075": { - "d": 35, - "dB": "2019-05-05T15:00:00Z", - "t1s": 2, - "t2s": 3, - "t1": 13, - "t2": 4 - }, - "3091": { - "d": 36, - "dB": "2019-05-10T18:45:00Z", - "t1s": 0, - "t2s": 1, - "t1": 4, - "t2": 15 - }, - "3099": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 4, - "t2": 19 - }, - "3033": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 16, - "t2": 20 - }, - "3049": { - "d": 32, - "dB": "2019-04-14T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 20, - "t2": 19 - }, - "3070": { - "d": 34, - "dB": "2019-05-01T17:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 20, - "t2": 13 - }, - "3100": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 41, - "t2": 20 - }, - "3111": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 3, - "t2s": 1, - "t1": 20, - "t2": 12 - }, - "3051": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 3, - "t2s": 3, - "t1": 41, - "t2": 14 - }, - "3053": { - "d": 33, - "dB": "2019-04-20T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 14, - "t2": 9 - }, - "3069": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 19, - "t2": 14 - }, - "3073": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 14, - "t2": 5 - }, - "3090": { - "d": 36, - "dB": "2019-05-12T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 20, - "t2": 14 - }, - "3093": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 14, - "t2": 67 - }, - "3102": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 1, - "t1": 42, - "t2": 14 - }, - "3041": { - "d": 31, - "dB": "2019-04-07T13:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 10, - "t2": 8 - }, - "3048": { - "d": 32, - "dB": "2019-04-12T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 8, - "t2": 18 - }, - "3055": { - "d": 33, - "dB": "2019-04-21T13:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 8, - "t2": 42 - }, - "3097": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 8 - }, - "3107": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 0, - "t2s": 1, - "t1": 8, - "t2": 41 - }, - "3038": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 67, - "t2": 5 - }, - "3045": { - "d": 32, - "dB": "2019-04-13T15:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 9, - "t2": 67 - }, - "3066": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 12, - "t2": 67 - }, - "3079": { - "d": 35, - "dB": "2019-05-04T18:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 68, - "t2": 67 - }, - "3089": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 67, - "t2": 13 - }, - "3109": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 3, - "t1": 67, - "t2": 18 - }, - "3103": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 4 - }, - "2274": { - "d": 31, - "dB": "2019-04-07T16:30:00Z", - "t1s": 3, - "t2s": 1, - "t1": 51, - "t2": 52 - }, - "2283": { - "d": 32, - "dB": "2019-04-13T16:30:00Z", - "t1s": 2, - "t2s": 0, - "t1": 54, - "t2": 51 - }, - "2295": { - "d": 33, - "dB": "2019-04-20T11:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 51, - "t2": 53 - }, - "2308": { - "d": 34, - "dB": "2019-04-24T18:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 56, - "t2": 51 - }, - "2318": { - "d": 35, - "dB": "2019-04-27T16:30:00Z", - "t1s": 0, - "t2s": 0, - "t1": 47, - "t2": 51 - }, - "2329": { - "d": 36, - "dB": "2019-05-04T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 51, - "t2": 59 - }, - "2332": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 3, - "t2s": 1, - "t1": 57, - "t2": 51 - }, - "2343": { - "d": 38, - "dB": "2019-05-18T18:45:00Z", - "t1s": 2, - "t2s": 2, - "t1": 51, - "t2": 72 - }, - "3036": { - "d": 31, - "dB": "2019-04-06T15:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 18, - "t2": 7 - }, - "3043": { - "d": 32, - "dB": "2019-04-12T17:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 7, - "t2": 42 - }, - "3052": { - "d": 33, - "dB": "2019-04-19T17:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 7, - "t2": 20 - }, - "3065": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 5, - "t2": 7 - }, - "3077": { - "d": 35, - "dB": "2019-05-05T13:00:00Z", - "t1s": 3, - "t2s": 0, - "t1": 8, - "t2": 7 - }, - "3085": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 41 - }, - "3105": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 1, - "t1": 7, - "t2": 10 - }, - "3469": { - "d": 31, - "dB": "2019-04-16T18:45:00Z", - "t1s": 0, - "t2s": 2, - "t1": 45, - "t2": 70 - }, - "3481": { - "d": 32, - "dB": "2019-03-31T13:05:00Z", - "t1s": 1, - "t2s": 2, - "t1": 70, - "t2": 25 - }, - "3492": { - "d": 33, - "dB": "2019-04-03T18:45:00Z", - "t1s": 2, - "t2s": 0, - "t1": 40, - "t2": 70 - }, - "3499": { - "d": 34, - "dB": "2019-04-13T14:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 23, - "t2": 70 - }, - "3510": { - "d": 35, - "dB": "2019-04-21T15:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 70, - "t2": 21 - }, - "3521": { - "d": 36, - "dB": "2019-04-27T14:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 71, - "t2": 70 - }, - "3530": { - "d": 37, - "dB": "2019-05-04T16:30:00Z", - "t1s": 2, - "t2s": 3, - "t1": 70, - "t2": 26 - }, - "3544": { - "d": 38, - "dB": "2019-05-12T14:00:00Z", - "t1s": 0, - "t2s": 2, - "t1": 31, - "t2": 70 - }, - "3067": { - "d": 34, - "dB": "2019-04-28T19:00:00Z", - "t1s": 1, - "t2s": 2, - "t1": 9, - "t2": 8 - }, - "3088": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 19, - "t2": 8 - }, - "3035": { - "d": 31, - "dB": "2019-04-06T18:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 14, - "t2": 13 - }, - "3080": { - "d": 35, - "dB": "2019-05-03T18:45:00Z", - "t1s": 1, - "t2s": 1, - "t1": 41, - "t2": 9 - }, - "3087": { - "d": 36, - "dB": "2019-05-12T19:00:00Z", - "t1s": 0, - "t2s": 3, - "t1": 9, - "t2": 18 - }, - "3101": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 5, - "t1": 10, - "t2": 9 - }, - "3106": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 1, - "t2s": 0, - "t1": 9, - "t2": 15 - }, - "3042": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 5, - "t2": 16 - }, - "3056": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 0, - "t2s": 1, - "t1": 19, - "t2": 5 - }, - "3084": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 3, - "t2s": 2, - "t1": 5, - "t2": 68 - }, - "3095": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 4, - "t2s": 0, - "t1": 18, - "t2": 5 - }, - "2284": { - "d": 32, - "dB": "2019-04-14T16:30:00Z", - "t1s": 0, - "t2s": 1, - "t1": 53, - "t2": 64 - }, - "2301": { - "d": 33, - "dB": "2019-04-21T16:30:00Z", - "t1s": 2, - "t2s": 1, - "t1": 64, - "t2": 47 - }, - "2305": { - "d": 34, - "dB": "2019-04-25T18:30:00Z", - "t1s": 0, - "t2s": 1, - "t1": 52, - "t2": 64 - }, - "2321": { - "d": 35, - "dB": "2019-04-28T16:30:00Z", - "t1s": 1, - "t2s": 1, - "t1": 64, - "t2": 73 - }, - "2326": { - "d": 36, - "dB": "2019-05-05T14:15:00Z", - "t1s": 3, - "t2s": 2, - "t1": 62, - "t2": 64 - }, - "2339": { - "d": 37, - "dB": "2019-05-12T16:30:00Z", - "t1s": 1, - "t2s": 0, - "t1": 64, - "t2": 66 - }, - "2345": { - "d": 38, - "dB": "2019-05-18T14:15:00Z", - "t1s": 2, - "t2s": 2, - "t1": 58, - "t2": 64 - }, - "3047": { - "d": 32, - "dB": "2019-04-14T13:00:00Z", - "t1s": 2, - "t2s": 1, - "t1": 15, - "t2": 10 - }, - "3061": { - "d": 33, - "dB": "2019-04-21T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 10, - "t2": 12 - }, - "3081": { - "d": 35, - "dB": "2019-05-05T13:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 10, - "t2": 20 - }, - "3082": { - "d": 36, - "dB": "2019-05-11T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 10 - }, - "3108": { - "d": 38, - "dB": "2019-05-24T19:05:00Z", - "t1s": 2, - "t2s": 0, - "t1": 19, - "t2": 13 - }, - "3040": { - "d": 31, - "dB": "2019-04-07T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 68, - "t2": 12 - }, - "3074": { - "d": 35, - "dB": "2019-05-05T19:00:00Z", - "t1s": 2, - "t2s": 2, - "t1": 18, - "t2": 12 - }, - "3094": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 5, - "t2s": 0, - "t1": 12, - "t2": 16 - }, - "3046": { - "d": 32, - "dB": "2019-04-13T18:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 13, - "t2": 68 - }, - "3096": { - "d": 37, - "dB": "2019-05-18T19:00:00Z", - "t1s": 2, - "t2s": 0, - "t1": 13, - "t2": 42 - }, - "3037": { - "d": 31, - "dB": "2019-04-07T15:00:00Z", - "t1s": 1, - "t2s": 0, - "t1": 19, - "t2": 15 - }, - "3060": { - "d": 33, - "dB": "2019-04-20T18:00:00Z", - "t1s": 1, - "t2s": 3, - "t1": 41, - "t2": 15 - }, - "3076": { - "d": 35, - "dB": "2019-05-05T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 15, - "t2": 42 - }, - "3054": { - "d": 33, - "dB": "2019-04-19T18:45:00Z", - "t1s": 2, - "t2s": 1, - "t1": 18, - "t2": 16 - }, - "3063": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 1, - "t2s": 1, - "t1": 16, - "t2": 68 - }, - "3062": { - "d": 34, - "dB": "2019-04-28T13:00:00Z", - "t1s": 0, - "t2s": 0, - "t1": 42, - "t2": 41 - } - }, - "Ne": { - "5044": { - "d": 3, - "dB": "2019-08-09T18:00:00Z", - "t1": 100, - "t2": 2 - }, - "3922": { - "d": 1, - "dB": "2019-08-10T18:00:00Z", - "t1": 16, - "t2": 3 - }, - "3923": { - "d": 1, - "dB": "2019-08-10T18:00:00Z", - "t1": 7, - "t2": 4 - }, - "3925": { - "d": 1, - "dB": "2019-08-11T13:00:00Z", - "t1": 12, - "t2": 8 - }, - "3924": { - "d": 1, - "dB": "2019-08-10T15:30:00Z", - "t1": 9, - "t2": 68 - }, - "3919": { - "d": 1, - "dB": "2019-08-10T18:00:00Z", - "t1": 75, - "t2": 10 - }, - "3926": { - "d": 1, - "dB": "2019-08-11T15:00:00Z", - "t1": 41, - "t2": 11 - }, - "3918": { - "d": 1, - "dB": "2019-08-09T18:45:00Z", - "t1": 13, - "t2": 18 - }, - "3920": { - "d": 1, - "dB": "2019-08-10T18:00:00Z", - "t1": 15, - "t2": 20 - }, - "3921": { - "d": 1, - "dB": "2019-08-10T18:00:00Z", - "t1": 19, - "t2": 42 - }, - "3927": { - "d": 1, - "dB": "2019-08-11T19:00:00Z", - "t1": 2, - "t2": 67 - } - }, - "k": "16ae6e" -} diff --git a/src/test/resources/__files/sportsgambler.serie-a.20210406.html b/src/test/resources/__files/sportsgambler.serie-a.20210406.html deleted file mode 100644 index e2a9dd4..0000000 --- a/src/test/resources/__files/sportsgambler.serie-a.20210406.html +++ /dev/null @@ -1,3220 +0,0 @@ - - - - - - - - Serie A Injuries & Suspensions | Italian Serie A Injury News - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - -
-
- - - - - -
- -
- - - -
- - -
- - -
- - -
- - - -
- -
- - -

Serie A Injuries & Suspensions

-
-
- football_red-card_italy_serie-a_juventus_cuadrado. -
-
-

The Italian first division continues to be one of the best football leagues in Europe, with the top flight in Italy featuring famous teams such as Juventus, AC Milan, Inter Milan, Napoli and Roma.

- -

Many betting customers enjoy betting on this league and it’s important to have the latest Serie A injury news. Should a key player be missing for a big game, it could make all the difference to the overall result. That is why it’s important to know the Italian Serie A injuries.

- -

You might find that players are either injured, suspended or rested for a particular clash and having the confirmed lineups can be helpful. You can also view the league fixtures, results and standings on this page to give you all the information you need.

- -
-
-

- ItalySerie A Injuries & Suspensions - -

- -
- -
-

AC Milan

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Brahim Díaz - M - 18 - 2 - 1 - Ankle injury - Late April - -
- - -
- -
- -
- - Alessio Romagnoli - D - 20 - 1 - 0 - Calf Injury - Mid April - -
- - -
- -
- -
- - Davide Calabria - D - 23 - 2 - 1 - Meniscus injury - Late May - -
- - -
- -
- -
- - Rafael Leão - F - 21 - 5 - 5 - Hamstring - Mid April - -
- - -
- -
- -
- - Mario Mandzukic - F - 0 - 0 - 0 - Muscle injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Parma vs AC Milan - - - - - - 1:4.75 - X:3.80 - 2:1.70 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Atalanta

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Hans Hateboer - D - 16 - 1 - 0 - Foot injury - Early April - -
- - -
- -
- -
- - Hans Hateboer - D - 16 - 1 - 0 - Foot injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Fiorentina vs Atalanta - - - - - - 1:5.00 - X:4.20 - 2:1.61 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
- -
-

Bologna

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Aaron Hickey - M - 11 - 0 - 0 - Shoulder injury - Late April - -
- - -
- -
- -
- - Lukasz Skorupski - G - 20 - 0 - 0 - COVID-19 - A few weeks - -
- - -
- -
- -
- - F. Javier Santander - F - 0 - 0 - 0 - Knee injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Roma vs Bologna - - - - - - 1:1.65 - X:4.20 - 2:4.75 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Cagliari

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Alessio Cragno - G - 28 - 0 - 0 - COVID-19 - A few weeks - -
- - -
- -
- -
- - A. Tripaldelli - D - 9 - 0 - 0 - Back injury - Late April - -
- - -
- -
- -
- - Luca Ceppitelli - D - 12 - 0 - 0 - Calf Injury - Late April - -
- - -
- -
- -
- - Riccardo Sottil - F - 19 - 1 - 1 - Thigh injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Inter Milan vs Cagliari - - - - - - 1:1.22 - X:6.00 - 2:13.00 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Crotone

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Pedro Pereira - D - 26 - 0 - 2 - Disciplinary - 1 Game - -
- - -
- - - - - bet365 - - - - - - Next Game: Spezia vs Crotone - - - - - - 1:1.75 - X:4.00 - 2:4.00 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Fiorentina

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Franck Ribéry - M - 22 - 2 - 5 - Straight red - 1 Game - -
- - -
- -
- -
- - Alexander Kokorin - F - 0 - 0 - 0 - Muscle injury - Mid April - -
- - -
- -
- -
- - Igor - D - 15 - 0 - 0 - Groin injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Fiorentina vs Atalanta - - - - - - 1:5.00 - X:4.20 - 2:1.61 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Genoa

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Kevin Strootman - M - 12 - 0 - 3 - Disciplinary - 1 Game - -
- - -
- -
- -
- - Luca Pellegrini - D - 11 - 0 - 1 - Hamstring - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Juventus vs Genoa - - - - - - 1:1.22 - X:6.00 - 2:12.00 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Hellas Verona

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Matteo Lovato - D - 14 - 0 - 0 - Disciplinary - 1 Game - -
- - -
- -
- -
- - Ronaldo Vieira - M - 4 - 0 - 0 - Muscle injury - Early April - -
- - -
- -
- -
- - Nikola Kalinic - F - 11 - 1 - 0 - Muscle injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Hellas Verona vs Lazio - - - - - - 1:3.50 - X:3.40 - 2:2.05 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Inter Milan

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Alessandro Bastoni - D - 25 - 0 - 3 - Disciplinary - 1 Game - -
- - -
- -
- -
- - Marcelo Brozovic - M - 25 - 1 - 6 - Disciplinary - 1 Game - -
- - -
- -
- -
- - Ivan Perisic - F - 25 - 2 - 5 - Muscle injury - A few weeks - -
- - -
- - - - - bet365 - - - - - - Next Game: Inter Milan vs Sassuolo - - - - - - 1:1.33 - X:5.25 - 2:9.00 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Juventus

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - F. Bernardeschi - M - 24 - 0 - 2 - COVID-19 - A few weeks - -
- - -
- -
- -
- - Leonardo Bonucci - D - 21 - 2 - 0 - COVID-19 - A few weeks - -
- - -
- -
- -
- - Merih Demiral - D - 14 - 0 - 1 - COVID-19 - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Juventus vs Napoli - - - - - - 1:1.65 - X:4.00 - 2:4.75 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Lazio

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Joaquin Correa - M - 22 - 3 - 3 - Red card - 1 Game - -
- - -
- -
- -
- - Manuel Lazzari - M - 22 - 2 - 4 - Straight red - 1 Game - -
- - -
- -
- -
- - Luiz Felipe - D - 10 - 0 - 0 - Ankle injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Hellas Verona vs Lazio - - - - - - 1:3.50 - X:3.40 - 2:2.05 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Napoli

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Diego Demme - M - 16 - 2 - 3 - Muscle injury - A few weeks - -
- - -
- -
- -
- - Faouzi Ghoulam - M - 11 - 0 - 0 - Knee injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Juventus vs Napoli - - - - - - 1:1.65 - X:4.00 - 2:4.75 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Parma

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - J. F. Brunetta - F - 8 - 0 - 2 - Hamstring - Late April - -
- - -
- -
- -
- - Simon Sohm - M - 13 - 0 - 0 - Ankle injury - Late April - -
- - -
- -
- -
- - Yann Karamoh - F - 23 - 2 - 1 - Calf Injury - Late April - -
- - -
- -
- -
- - Joshua Zirkzee - F - 0 - 0 - 0 - Ankle injury - Late April - -
- - -
- -
- -
- - Roberto Inglese - F - 14 - 0 - 1 - Ankle injury - Early April - -
- - -
- -
- -
- - Simone Iacoponi - D - 16 - 0 - 0 - Knee injury - Early April - -
- - -
- -
- -
- - Lautaro Valenti - D - 5 - 0 - 0 - Muscle injury - Early April - -
- - -
- -
- -
- - H. N. Caviglia - M - 0 - 0 - 0 - Knee injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Parma vs AC Milan - - - - - - 1:4.75 - X:3.80 - 2:1.70 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Roma

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Bryan Cristante - M - 26 - 0 - 2 - Disciplinary - 1 Game - -
- - -
- -
- -
- - Marash Kumbulla - D - 16 - 1 - 0 - Knee injury - Late April - -
- - -
- -
- -
- - Roger Ibañez - D - 24 - 0 - 0 - Head injury - A few weeks - -
- - -
- -
- -
- - Henrikh Mkhitaryan - M - 25 - 9 - 8 - Calf Injury - Early April - -
- - -
- -
- -
- - Nicolò Zaniolo - M - 0 - 0 - 0 - ACL injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Roma vs Bologna - - - - - - 1:1.65 - X:4.20 - 2:4.75 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Sampdoria

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Adrien Silva - M - 18 - 0 - 0 - Red card - 1 Game - -
- - -
- -
- -
- - Ernesto Torregrossa - F - 5 - 1 - 0 - Muscle injury - A few weeks - -
- - -
- -
- -
- - Albin Ekdal - M - 27 - 2 - 1 - Muscle injury - A few weeks - -
- - -
- - - - - bet365 - - - - - - Next Game: Sampdoria vs Napoli - - - - - - 1:4.75 - X:3.60 - 2:1.72 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Sassuolo

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Gregoire Defrel - F - 20 - 2 - 2 - Muscle injury - A few weeks - -
- - -
- -
- -
- - Kaan Ayhan - D - 17 - 0 - 0 - COVID-19 - A few weeks - -
- - -
- -
- -
- - Domenico Berardi - F - 22 - 11 - 4 - Muscle injury - A few weeks - -
- - -
- -
- -
- - Mehdi Bourabia - M - 12 - 1 - 0 - Muscle injury - Early April - -
- - -
- -
- -
- - Filippo Romagna - D - 0 - 0 - 0 - Knee injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Inter Milan vs Sassuolo - - - - - - 1:1.33 - X:5.25 - 2:9.00 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Spezia

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Juan Ramos - M - 1 - 0 - 0 - COVID-19 - A few weeks - -
- - -
- -
- -
- - Riccardo Saponara - M - 7 - 0 - 0 - Ankle injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Spezia vs Crotone - - - - - - 1:1.75 - X:4.00 - 2:4.00 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Torino

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Salvatore Sirigu - G - 25 - 0 - 0 - COVID-19 - A few weeks - -
- - -
- -
- -
- - Lyanco Vojnovic - D - 21 - 0 - 0 - Phy discomfort - A few weeks - -
- - -
- -
- -
- - W. Stephane Singo - D - 19 - 1 - 2 - Muscle injury - A few weeks - -
- - -
- - - - - bet365 - - - - - - Next Game: Udinese vs Torino - - - - - - 1:2.20 - X:3.20 - 2:3.40 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-

Udinese

- -
- Type - Name - Position - Matches - Goals - Assists - Info - Expected Return - -
- -
- -
- - Ignacio Pussetto - F - 11 - 3 - 1 - Knee injury - Early April - -
- - -
- -
- -
- - Mato Jajalo - M - 0 - 0 - 0 - Meniscus injury - Early April - -
- - -
- - - - - bet365 - - - - - - Next Game: Udinese vs Torino - - - - - - 1:2.20 - X:3.20 - 2:3.40 - - Bet Now! - - - - - - T&Cs apply, Gamble Responsibly 18+ - -
-
-
-
-
-

What Serie A Players are Injured?

- -

Whether you’re looking to bet on the games involving Juventus, Inter Milan, Roma, Lazio, AC Milan or Napoli, it’s important to be aware of the Serie A injuries and our Italian football injury news documents the players who are missing for all the clubs in this division. You can get the report on a frequent basis and we’ll update the team-by-team list according to whether extra players are out and the ones who have recovered in time to play.

- -

Italian Serie A Suspensions & Bans 

- -

When the football season gets under way, there are certain to be an accumulation of yellow cards that sees Italian Serie A suspensions along the way, while red cards will also lead to players missing the next game. In addition to Serie A injuries, you can also get information regarding all the player bans in the injury report and team list at Sportsgambler.com and find out which games they are likely to miss. This will also help to shape the predicted lineups that we provide.

- -

Serie A Injury Table & Betting Tips

- -

We are keen to provide an up-to-date Serie A injury table and the report means that you can see the players who are missing for every top flight club in Italy. We will even detail the nature of each injury and how long they are missing for, with some injured players out for just one match, while others have long-term injuries which could mean a lengthy absence. There are also Serie A betting tips which are available at Sportsgambler.com.

- -
-
-
-
- football_red-card_italy_serie-a_juventus_cuadrado. -
-
-

The Latest Italian Serie A Injuries

- -

The Italian first division continues to be one of the best football leagues in Europe, with the top flight in Italy featuring famous teams such as Juventus, AC Milan, Inter Milan, Napoli and Roma.

- -

Many betting customers enjoy betting on this league and it’s important to have the latest Serie A injury news. Should a key player be missing for a big game, it could make all the difference to the overall result. That is why it’s important to know the Italian Serie A injuries.

- -

You might find that players are either injured, suspended or rested for a particular clash and having the confirmed lineups can be helpful. You can also view the league fixtures, results and standings on this page to give you all the information you need.

- -

What Serie A Players are Injured?

- -

Whether you’re looking to bet on the games involving Juventus, Inter Milan, Roma, Lazio, AC Milan or Napoli, it’s important to be aware of the Serie A injuries and our Italian football injury news documents the players who are missing for all the clubs in this division. You can get the report on a frequent basis and we’ll update the team-by-team list according to whether extra players are out and the ones who have recovered in time to play.

- -

Italian Serie A Suspensions & Bans 

- -

When the football season gets under way, there are certain to be an accumulation of yellow cards that sees Italian Serie A suspensions along the way, while red cards will also lead to players missing the next game. In addition to Serie A injuries, you can also get information regarding all the player bans in the injury report and team list at Sportsgambler.com and find out which games they are likely to miss. This will also help to shape the predicted lineups that we provide.

- -

Serie A Injury Table & Betting Tips

- -

We are keen to provide an up-to-date Serie A injury table and the report means that you can see the players who are missing for every top flight club in Italy. We will even detail the nature of each injury and how long they are missing for, with some injured players out for just one match, while others have long-term injuries which could mean a lengthy absence. There are also Serie A betting tips which are available at Sportsgambler.com.

- -
-
- - - - - -
- - -
- - - - -
- -
- - - - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From e34ceaa662d4fdf8d693f33dfe7601e48eeca076 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 11 Aug 2021 18:54:47 +0200 Subject: [PATCH 11/13] Manage mercato ending --- src/main/java/org/blondin/mpg/Main.java | 3 +- src/test/java/org/blondin/mpg/MainTest.java | 15 +++++-- ...ashboard.MLAX7HMK-status-3-mercatoEnd.json | 45 +++++++++++++++++++ 3 files changed, 58 insertions(+), 5 deletions(-) create mode 100644 src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-mercatoEnd.json diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 9289e5f..754fcc4 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -104,8 +104,7 @@ static void processLeague(League league, ApiClients apiClients, Config config) { LOG.info("\nMercato round is closed, come back soon for the next !\n"); return; } - if (league.getCurrentTeamStatus() == 2) { - // TODO : To analyse + if (league.getCurrentTeamStatus() == 3) { LOG.info("\nMercato will be ending, ready for your first match ?\n"); return; } diff --git a/src/test/java/org/blondin/mpg/MainTest.java b/src/test/java/org/blondin/mpg/MainTest.java index c6b9226..9f9e5d6 100644 --- a/src/test/java/org/blondin/mpg/MainTest.java +++ b/src/test/java/org/blondin/mpg/MainTest.java @@ -55,15 +55,24 @@ public void testRealWithBadCredentials() throws Exception { Assert.fail("Credentials are invalid"); } catch (UnsupportedOperationException e) { // Credentials in sample file are fake - Assert.assertEquals("Bad credentials", - "Unsupported status code: 401 Unauthorized / Content: {\"success\":false,\"error\":\"incorrectPasswordUser\",\"code\":819}", - e.getMessage()); + Assert.assertTrue("Bad credentials", e.getMessage().contains("Forbidden URL")); } catch (ProcessingException e) { // Proxy not configured or real URL not accessible Assert.assertEquals("No network", "java.net.UnknownHostException: api.mpg.football", e.getMessage()); } } + @Test + public void testMercatoEnd() throws Exception { + stubFor(post("/user/sign-in") + .willReturn(aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.user-signIn.fake.json"))); + stubFor(get("/dashboard/leagues").willReturn( + aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.dashboard.MLAX7HMK-status-3-mercatoEnd.json"))); + Config config = spy(getConfig()); + executeMainProcess(config); + Assert.assertTrue(getLogOut(), getLogOut().contains("Mercato will be ending, ready for your first match")); + } + @Test public void testWaitMercatoNextTurnWithConnectionReset() throws Exception { // CONNECTION_RESET_BY_PEER doesn't work on Windows (block response), EMPTY_RESPONSE throws a SocketException too diff --git a/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-mercatoEnd.json b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-mercatoEnd.json new file mode 100644 index 0000000..51d604f --- /dev/null +++ b/src/test/resources/__files/mpg.dashboard.MLAX7HMK-status-3-mercatoEnd.json @@ -0,0 +1,45 @@ +{ + "leaguesDivisionsItems": [ + { + "leagueId": "mpg_league_MLAX7HMK", + "name": "Ici c'est Billiers !", + "adminId": "user_953561", + "status": 3, + "season": 3, + "mode": 1, + "createdAt": "2020-08-22T08:22:40Z", + "mercatoState": { + "mercatoTurnDate": "2021-08-11T16:20:26Z", + "nextMercatoTurn": "2021-08-16T12:00:00Z", + "reviveUsersSentAt": "2021-08-11T16:20:26Z", + "teamsStatuses": { + "mpg_team_MLAX7HMK_3_1_0": 2, + "mpg_team_MLAX7HMK_3_1_1": 3, + "mpg_team_MLAX7HMK_3_1_2": 2, + "mpg_team_MLAX7HMK_3_1_3": 3, + "mpg_team_MLAX7HMK_3_1_4": 1, + "mpg_team_MLAX7HMK_3_1_5": 2, + "mpg_team_MLAX7HMK_3_1_6": 3, + "mpg_team_MLAX7HMK_3_1_7": 2, + "mpg_team_MLAX7HMK_3_1_8": 3, + "mpg_team_MLAX7HMK_3_1_9": 1 + }, + "turn": 4 + }, + "championshipId": 1, + "rating": "mpg", + "imageUrl": "https://s3.eu-west-1.amazonaws.com/image.mpg/9db725b3-fe27-42b4-9575-55cfbeef30d2.png", + "totalDivisions": 1, + "totalUsers": 10, + "totalMissedPosts": 0, + "mercatoStartDate": "2021-08-11T12:00:00Z", + "mercatoStartIn": -17369, + "divisionNumber": 1, + "divisionStatus": 3, + "divisionId": "mpg_division_MLAX7HMK_3_1", + "divisionTotalUsers": 10, + "currentTeamStatus": 3 + } + ], + "defaultOrder": true +} From 970d7779b24066dfc1b26756fc0286bd7d5555c9 Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 11 Aug 2021 19:22:56 +0200 Subject: [PATCH 12/13] Fix trading propositions + quality flaws --- src/main/java/org/blondin/mpg/Main.java | 5 ++-- .../java/org/blondin/mpg/root/MpgClient.java | 28 +++++++++++-------- .../org/blondin/mpg/root/model/Player.java | 9 ------ .../blondin/mpg/root/model/PlayerStatus.java | 26 ----------------- .../java/org/blondin/mpg/root/model/Team.java | 5 ++++ .../org/blondin/mpg/root/MpgClientTest.java | 2 ++ .../__files/mpg.team.MLEFEX6G.20210804.json | 5 ++++ 7 files changed, 31 insertions(+), 49 deletions(-) delete mode 100644 src/main/java/org/blondin/mpg/root/model/PlayerStatus.java diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 754fcc4..45af116 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -28,7 +28,6 @@ import org.blondin.mpg.root.model.LeagueStatus; import org.blondin.mpg.root.model.Mode; import org.blondin.mpg.root.model.Player; -import org.blondin.mpg.root.model.PlayerStatus; import org.blondin.mpg.root.model.PoolPlayers; import org.blondin.mpg.root.model.Position; import org.blondin.mpg.root.model.SelectedBonus; @@ -210,8 +209,8 @@ static void processGames(League league, ApiClients apiClients, Config config) { removeOutPlayers(playersAvailable, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship()), false); calculateEfficiency(playersAvailable, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, false); - Integer currentPlayersBuy = team.getSquad().values().stream().filter(p -> p.getStatus().equals(PlayerStatus.PROPOSAL)) - .map(Player::getPricePaid).collect(Collectors.summingInt(Integer::intValue)); + + Integer currentPlayersBuy = team.getBids().stream().map(Player::getPricePaid).collect(Collectors.summingInt(Integer::intValue)); writeTransactionsProposal(playersTeam, playersAvailable, team.getBudget() - currentPlayersBuy, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship()), config); } diff --git a/src/main/java/org/blondin/mpg/root/MpgClient.java b/src/main/java/org/blondin/mpg/root/MpgClient.java index 079883b..758073a 100644 --- a/src/main/java/org/blondin/mpg/root/MpgClient.java +++ b/src/main/java/org/blondin/mpg/root/MpgClient.java @@ -10,6 +10,7 @@ import org.apache.commons.lang3.StringUtils; import org.blondin.mpg.AbstractClient; import org.blondin.mpg.config.Config; +import org.blondin.mpg.root.model.AvailablePlayers; import org.blondin.mpg.root.model.ChampionshipType; import org.blondin.mpg.root.model.Clubs; import org.blondin.mpg.root.model.Coach; @@ -18,7 +19,6 @@ import org.blondin.mpg.root.model.Division; import org.blondin.mpg.root.model.PoolPlayers; import org.blondin.mpg.root.model.Team; -import org.blondin.mpg.root.model.AvailablePlayers; import org.blondin.mpg.root.model.UserSignIn; /** @@ -26,6 +26,12 @@ */ public class MpgClient extends AbstractClient { + private static final String PREFIX_PATH_DIVISION = "division/"; + + private static final String PREFIX_ID_DIVISION = "mpg_division_"; + + private static final String ERROR_MESSAGE_LEAGUE = "League id '%s' should start with '%s'"; + private final MultivaluedMap headers = new MultivaluedHashMap<>(); private EnumMap cachePlayers = new EnumMap<>(ChampionshipType.class); @@ -59,31 +65,31 @@ public Dashboard getDashboard() { } public Division getDivision(String leagueDivisionId) { - if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { - throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); + if (!StringUtils.startsWith(leagueDivisionId, PREFIX_ID_DIVISION)) { + throw new UnsupportedOperationException(String.format(ERROR_MESSAGE_LEAGUE, leagueDivisionId, PREFIX_ID_DIVISION)); } - return get("division/" + leagueDivisionId + "", headers, Division.class); + return get(PREFIX_PATH_DIVISION + leagueDivisionId + "", headers, Division.class); } public Team getTeam(String leagueTeamId) { if (!StringUtils.startsWith(leagueTeamId, "mpg_team_")) { - throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_team_'", leagueTeamId)); + throw new UnsupportedOperationException(String.format(ERROR_MESSAGE_LEAGUE, leagueTeamId, "mpg_team_")); } return get("/team/" + leagueTeamId, headers, Team.class); } public Coach getCoach(String leagueDivisionId) { - if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { - throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); + if (!StringUtils.startsWith(leagueDivisionId, PREFIX_ID_DIVISION)) { + throw new UnsupportedOperationException(String.format(ERROR_MESSAGE_LEAGUE, leagueDivisionId, PREFIX_ID_DIVISION)); } - return get("division/" + leagueDivisionId + "/coach", headers, Coach.class); + return get(PREFIX_PATH_DIVISION + leagueDivisionId + "/coach", headers, Coach.class); } public AvailablePlayers getAvailablePlayers(String leagueDivisionId) { - if (!StringUtils.startsWith(leagueDivisionId, "mpg_division_")) { - throw new UnsupportedOperationException(String.format("League id '%s' should start with 'mpg_division_'", leagueDivisionId)); + if (!StringUtils.startsWith(leagueDivisionId, PREFIX_ID_DIVISION)) { + throw new UnsupportedOperationException(String.format(ERROR_MESSAGE_LEAGUE, leagueDivisionId, PREFIX_ID_DIVISION)); } - return get("division/" + leagueDivisionId + "/available-players", headers, AvailablePlayers.class); + return get(PREFIX_PATH_DIVISION + leagueDivisionId + "/available-players", headers, AvailablePlayers.class); } public PoolPlayers getPoolPlayers(ChampionshipType championship) { diff --git a/src/main/java/org/blondin/mpg/root/model/Player.java b/src/main/java/org/blondin/mpg/root/model/Player.java index 3e4cda6..0dea00b 100644 --- a/src/main/java/org/blondin/mpg/root/model/Player.java +++ b/src/main/java/org/blondin/mpg/root/model/Player.java @@ -17,7 +17,6 @@ public class Player { private int pricePaid; private String clubId; private String clubName; - private PlayerStatus status; private double efficiency; public String getId() { @@ -75,12 +74,4 @@ public void setEfficiency(double efficiency) { this.efficiency = efficiency; } - public PlayerStatus getStatus() { - if (true) { - // TODO: Should be checked with real use case from mobile app API - return PlayerStatus.BUY; - } - return status; - } - } diff --git a/src/main/java/org/blondin/mpg/root/model/PlayerStatus.java b/src/main/java/org/blondin/mpg/root/model/PlayerStatus.java deleted file mode 100644 index bd2d75f..0000000 --- a/src/main/java/org/blondin/mpg/root/model/PlayerStatus.java +++ /dev/null @@ -1,26 +0,0 @@ - -package org.blondin.mpg.root.model; - -import com.fasterxml.jackson.annotation.JsonCreator; - -public enum PlayerStatus { - - BUY(2), PROPOSAL(1); - - private final int value; - - private PlayerStatus(final int value) { - this.value = value; - } - - @JsonCreator - public static PlayerStatus getNameByValue(final int value) { - for (final PlayerStatus s : PlayerStatus.values()) { - if (s.value == value) { - return s; - } - } - throw new UnsupportedOperationException(String.format("Player status not supported: %s", value)); - } - -} diff --git a/src/main/java/org/blondin/mpg/root/model/Team.java b/src/main/java/org/blondin/mpg/root/model/Team.java index edbd6ab..d084768 100644 --- a/src/main/java/org/blondin/mpg/root/model/Team.java +++ b/src/main/java/org/blondin/mpg/root/model/Team.java @@ -1,5 +1,6 @@ package org.blondin.mpg.root.model; +import java.util.List; import java.util.Map; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; @@ -10,6 +11,7 @@ public class Team { private String name; private int budget; private Map squad; + private List bids; private Map bonuses; public Map getBonuses() { @@ -32,4 +34,7 @@ public Map getSquad() { return squad; } + public List getBids() { + return bids; + } } diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index 26e1c51..b6fe3b3 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -128,6 +128,8 @@ public void testMockTeam() throws Exception { Player p = team.getSquad().get("mpg_championship_player_220359"); Assert.assertNotNull(p); Assert.assertEquals(32, p.getPricePaid()); + Assert.assertNotNull(team.getBids()); + Assert.assertEquals(1, team.getBids().size()); } @Test diff --git a/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json b/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json index 068950d..01a90f2 100644 --- a/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json +++ b/src/test/resources/__files/mpg.team.MLEFEX6G.20210804.json @@ -134,6 +134,11 @@ } }, "bids": [ + { + "id": "mpg_championship_player_489889", + "price": 1, + "bidDate": "2021-08-11T17:04:37Z" + } ], "bonuses": { "removeGoal": 1, From 134fe48d824491f1b63e05785443397245c7c1bd Mon Sep 17 00:00:00 2001 From: Alix Lourme Date: Wed, 11 Aug 2021 19:32:14 +0200 Subject: [PATCH 13/13] Fix quality flows --- src/main/java/org/blondin/mpg/Main.java | 4 ++-- .../java/org/blondin/mpg/root/model/AvailablePlayers.java | 8 +++++--- src/test/java/org/blondin/mpg/root/MpgClientTest.java | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/blondin/mpg/Main.java b/src/main/java/org/blondin/mpg/Main.java index 45af116..9caab48 100644 --- a/src/main/java/org/blondin/mpg/Main.java +++ b/src/main/java/org/blondin/mpg/Main.java @@ -117,7 +117,7 @@ static void processLeague(League league, ApiClients apiClients, Config config) { static void processMercatoLeague(League league, ApiClients apiClients, Config config) { LOG.info("\nProposal for your mercato:\n"); - List players = apiClients.getMpg().getAvailablePlayers(league.getDivisionId()).getAvailablePlayers(); + List players = apiClients.getMpg().getAvailablePlayers(league.getDivisionId()).getList(); completePlayersClub(players, apiClients.getMpg().getClubs()); calculateEfficiency(players, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, false, true); processMercato(players, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship())); @@ -204,7 +204,7 @@ static void processGames(League league, ApiClients apiClients, Config config) { if (cd.getLastDayReached() < cd.getDay()) { LOG.info("\nWARNING: Last day stats have not fully reached! Please retry tomorrow"); } - List playersAvailable = apiClients.getMpg().getAvailablePlayers(league.getDivisionId()).getAvailablePlayers(); + List playersAvailable = apiClients.getMpg().getAvailablePlayers(league.getDivisionId()).getList(); completePlayersClub(playersAvailable, apiClients.getMpg().getClubs()); removeOutPlayers(playersAvailable, apiClients.getOutPlayers(), ChampionshipTypeWrapper.toOut(league.getChampionship()), false); calculateEfficiency(playersAvailable, apiClients.getStats(), ChampionshipTypeWrapper.toStats(league.getChampionship()), config, diff --git a/src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java b/src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java index 2c959dc..b4de0c8 100644 --- a/src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java +++ b/src/main/java/org/blondin/mpg/root/model/AvailablePlayers.java @@ -4,14 +4,16 @@ import java.util.List; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) public class AvailablePlayers { - private List availablePlayers; + @JsonProperty("availablePlayers") + private List list; - public List getAvailablePlayers() { - return availablePlayers; + public List getList() { + return list; } } diff --git a/src/test/java/org/blondin/mpg/root/MpgClientTest.java b/src/test/java/org/blondin/mpg/root/MpgClientTest.java index b6fe3b3..0606feb 100644 --- a/src/test/java/org/blondin/mpg/root/MpgClientTest.java +++ b/src/test/java/org/blondin/mpg/root/MpgClientTest.java @@ -191,6 +191,6 @@ public void testMockAvailablePlayers() throws Exception { aResponse().withHeader("Content-Type", "application/json").withBodyFile("mpg.division.available.players.MLEFEX6G.20210804.json"))); MpgClient mpgClient = MpgClient.build(getConfig(), "http://localhost:" + server.port()); AvailablePlayers tb = mpgClient.getAvailablePlayers("mpg_division_MLEFEX6G_3_1"); - Assert.assertTrue(tb.getAvailablePlayers().size() > 10); + Assert.assertTrue(tb.getList().size() > 10); } }